@twinalyze/web-analytics 1.0.13 → 1.0.15

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.
@@ -0,0 +1,51 @@
1
+ (()=>{var Iu=Object.create;var Zs=Object.defineProperty;var bu=Object.getOwnPropertyDescriptor;var Du=Object.getOwnPropertyNames;var Ku=Object.getPrototypeOf,Lu=Object.prototype.hasOwnProperty;var zs=(B=>typeof require!="undefined"?require:typeof Proxy!="undefined"?new Proxy(B,{get:(s,f)=>(typeof require!="undefined"?require:s)[f]}):B)(function(B){if(typeof require!="undefined")return require.apply(this,arguments);throw Error('Dynamic require of "'+B+'" is not supported')});var hA=(B,s)=>()=>(s||B((s={exports:{}}).exports,s),s.exports);var Su=(B,s,f,c)=>{if(s&&typeof s=="object"||typeof s=="function")for(let x of Du(s))!Lu.call(B,x)&&x!==f&&Zs(B,x,{get:()=>s[x],enumerable:!(c=bu(s,x))||c.enumerable});return B};var js=(B,s,f)=>(f=B!=null?Iu(Ku(B)):{},Su(s||!B||!B.__esModule?Zs(f,"default",{value:B,enumerable:!0}):f,B));var $s=hA(()=>{});var QA=hA((B0,Aa)=>{(function(B,s){typeof B0=="object"?Aa.exports=B0=s():typeof define=="function"&&define.amd?define([],s):B.CryptoJS=s()})(B0,function(){var B=B||(function(s,f){var c;if(typeof window!="undefined"&&window.crypto&&(c=window.crypto),typeof self!="undefined"&&self.crypto&&(c=self.crypto),typeof globalThis!="undefined"&&globalThis.crypto&&(c=globalThis.crypto),!c&&typeof window!="undefined"&&window.msCrypto&&(c=window.msCrypto),!c&&typeof global!="undefined"&&global.crypto&&(c=global.crypto),!c&&typeof zs=="function")try{c=$s()}catch{}var x=function(){if(c){if(typeof c.getRandomValues=="function")try{return c.getRandomValues(new Uint32Array(1))[0]}catch{}if(typeof c.randomBytes=="function")try{return c.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},d=Object.create||(function(){function h(){}return function(F){var K;return h.prototype=F,K=new h,h.prototype=null,K}})(),Q={},o=Q.lib={},w=o.Base=(function(){return{extend:function(h){var F=d(this);return h&&F.mixIn(h),(!F.hasOwnProperty("init")||this.init===F.init)&&(F.init=function(){F.$super.init.apply(this,arguments)}),F.init.prototype=F,F.$super=this,F},create:function(){var h=this.extend();return h.init.apply(h,arguments),h},init:function(){},mixIn:function(h){for(var F in h)h.hasOwnProperty(F)&&(this[F]=h[F]);h.hasOwnProperty("toString")&&(this.toString=h.toString)},clone:function(){return this.init.prototype.extend(this)}}})(),U=o.WordArray=w.extend({init:function(h,F){h=this.words=h||[],F!=f?this.sigBytes=F:this.sigBytes=h.length*4},toString:function(h){return(h||v).stringify(this)},concat:function(h){var F=this.words,K=h.words,I=this.sigBytes,L=h.sigBytes;if(this.clamp(),I%4)for(var S=0;S<L;S++){var Z=K[S>>>2]>>>24-S%4*8&255;F[I+S>>>2]|=Z<<24-(I+S)%4*8}else for(var J=0;J<L;J+=4)F[I+J>>>2]=K[J>>>2];return this.sigBytes+=L,this},clamp:function(){var h=this.words,F=this.sigBytes;h[F>>>2]&=4294967295<<32-F%4*8,h.length=s.ceil(F/4)},clone:function(){var h=w.clone.call(this);return h.words=this.words.slice(0),h},random:function(h){for(var F=[],K=0;K<h;K+=4)F.push(x());return new U.init(F,h)}}),u=Q.enc={},v=u.Hex={stringify:function(h){for(var F=h.words,K=h.sigBytes,I=[],L=0;L<K;L++){var S=F[L>>>2]>>>24-L%4*8&255;I.push((S>>>4).toString(16)),I.push((S&15).toString(16))}return I.join("")},parse:function(h){for(var F=h.length,K=[],I=0;I<F;I+=2)K[I>>>3]|=parseInt(h.substr(I,2),16)<<24-I%8*4;return new U.init(K,F/2)}},C=u.Latin1={stringify:function(h){for(var F=h.words,K=h.sigBytes,I=[],L=0;L<K;L++){var S=F[L>>>2]>>>24-L%4*8&255;I.push(String.fromCharCode(S))}return I.join("")},parse:function(h){for(var F=h.length,K=[],I=0;I<F;I++)K[I>>>2]|=(h.charCodeAt(I)&255)<<24-I%4*8;return new U.init(K,F)}},E=u.Utf8={stringify:function(h){try{return decodeURIComponent(escape(C.stringify(h)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(h){return C.parse(unescape(encodeURIComponent(h)))}},p=o.BufferedBlockAlgorithm=w.extend({reset:function(){this._data=new U.init,this._nDataBytes=0},_append:function(h){typeof h=="string"&&(h=E.parse(h)),this._data.concat(h),this._nDataBytes+=h.sigBytes},_process:function(h){var F,K=this._data,I=K.words,L=K.sigBytes,S=this.blockSize,Z=S*4,J=L/Z;h?J=s.ceil(J):J=s.max((J|0)-this._minBufferSize,0);var z=J*S,eA=s.min(z*4,L);if(z){for(var O=0;O<z;O+=S)this._doProcessBlock(I,O);F=I.splice(0,z),K.sigBytes-=eA}return new U.init(F,eA)},clone:function(){var h=w.clone.call(this);return h._data=this._data.clone(),h},_minBufferSize:0}),b=o.Hasher=p.extend({cfg:w.extend(),init:function(h){this.cfg=this.cfg.extend(h),this.reset()},reset:function(){p.reset.call(this),this._doReset()},update:function(h){return this._append(h),this._process(),this},finalize:function(h){h&&this._append(h);var F=this._doFinalize();return F},blockSize:512/32,_createHelper:function(h){return function(F,K){return new h.init(K).finalize(F)}},_createHmacHelper:function(h){return function(F,K){return new D.HMAC.init(h,K).finalize(F)}}}),D=Q.algo={};return Q})(Math);return B})});var ut=hA((o0,ea)=>{(function(B,s){typeof o0=="object"?ea.exports=o0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(o0,function(B){return(function(s){var f=B,c=f.lib,x=c.Base,d=c.WordArray,Q=f.x64={},o=Q.Word=x.extend({init:function(U,u){this.high=U,this.low=u}}),w=Q.WordArray=x.extend({init:function(U,u){U=this.words=U||[],u!=s?this.sigBytes=u:this.sigBytes=U.length*8},toX32:function(){for(var U=this.words,u=U.length,v=[],C=0;C<u;C++){var E=U[C];v.push(E.high),v.push(E.low)}return d.create(v,this.sigBytes)},clone:function(){for(var U=x.clone.call(this),u=U.words=this.words.slice(0),v=u.length,C=0;C<v;C++)u[C]=u[C].clone();return U}})})(),B})});var ta=hA((c0,ra)=>{(function(B,s){typeof c0=="object"?ra.exports=c0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(c0,function(B){return(function(){if(typeof ArrayBuffer=="function"){var s=B,f=s.lib,c=f.WordArray,x=c.init,d=c.init=function(Q){if(Q instanceof ArrayBuffer&&(Q=new Uint8Array(Q)),(Q instanceof Int8Array||typeof Uint8ClampedArray!="undefined"&&Q instanceof Uint8ClampedArray||Q instanceof Int16Array||Q instanceof Uint16Array||Q instanceof Int32Array||Q instanceof Uint32Array||Q instanceof Float32Array||Q instanceof Float64Array)&&(Q=new Uint8Array(Q.buffer,Q.byteOffset,Q.byteLength)),Q instanceof Uint8Array){for(var o=Q.byteLength,w=[],U=0;U<o;U++)w[U>>>2]|=Q[U]<<24-U%4*8;x.call(this,w,o)}else x.apply(this,arguments)};d.prototype=c}})(),B.lib.WordArray})});var ia=hA((f0,na)=>{(function(B,s){typeof f0=="object"?na.exports=f0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(f0,function(B){return(function(){var s=B,f=s.lib,c=f.WordArray,x=s.enc,d=x.Utf16=x.Utf16BE={stringify:function(o){for(var w=o.words,U=o.sigBytes,u=[],v=0;v<U;v+=2){var C=w[v>>>2]>>>16-v%4*8&65535;u.push(String.fromCharCode(C))}return u.join("")},parse:function(o){for(var w=o.length,U=[],u=0;u<w;u++)U[u>>>1]|=o.charCodeAt(u)<<16-u%2*16;return c.create(U,w*2)}};x.Utf16LE={stringify:function(o){for(var w=o.words,U=o.sigBytes,u=[],v=0;v<U;v+=2){var C=Q(w[v>>>2]>>>16-v%4*8&65535);u.push(String.fromCharCode(C))}return u.join("")},parse:function(o){for(var w=o.length,U=[],u=0;u<w;u++)U[u>>>1]|=Q(o.charCodeAt(u)<<16-u%2*16);return c.create(U,w*2)}};function Q(o){return o<<8&4278255360|o>>>8&16711935}})(),B.enc.Utf16})});var Ar=hA((l0,sa)=>{(function(B,s){typeof l0=="object"?sa.exports=l0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(l0,function(B){return(function(){var s=B,f=s.lib,c=f.WordArray,x=s.enc,d=x.Base64={stringify:function(o){var w=o.words,U=o.sigBytes,u=this._map;o.clamp();for(var v=[],C=0;C<U;C+=3)for(var E=w[C>>>2]>>>24-C%4*8&255,p=w[C+1>>>2]>>>24-(C+1)%4*8&255,b=w[C+2>>>2]>>>24-(C+2)%4*8&255,D=E<<16|p<<8|b,h=0;h<4&&C+h*.75<U;h++)v.push(u.charAt(D>>>6*(3-h)&63));var F=u.charAt(64);if(F)for(;v.length%4;)v.push(F);return v.join("")},parse:function(o){var w=o.length,U=this._map,u=this._reverseMap;if(!u){u=this._reverseMap=[];for(var v=0;v<U.length;v++)u[U.charCodeAt(v)]=v}var C=U.charAt(64);if(C){var E=o.indexOf(C);E!==-1&&(w=E)}return Q(o,w,u)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="};function Q(o,w,U){for(var u=[],v=0,C=0;C<w;C++)if(C%4){var E=U[o.charCodeAt(C-1)]<<C%4*2,p=U[o.charCodeAt(C)]>>>6-C%4*2,b=E|p;u[v>>>2]|=b<<24-v%4*8,v++}return c.create(u,v)}})(),B.enc.Base64})});var Ba=hA((u0,aa)=>{(function(B,s){typeof u0=="object"?aa.exports=u0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(u0,function(B){return(function(){var s=B,f=s.lib,c=f.WordArray,x=s.enc,d=x.Base64url={stringify:function(o,w){w===void 0&&(w=!0);var U=o.words,u=o.sigBytes,v=w?this._safe_map:this._map;o.clamp();for(var C=[],E=0;E<u;E+=3)for(var p=U[E>>>2]>>>24-E%4*8&255,b=U[E+1>>>2]>>>24-(E+1)%4*8&255,D=U[E+2>>>2]>>>24-(E+2)%4*8&255,h=p<<16|b<<8|D,F=0;F<4&&E+F*.75<u;F++)C.push(v.charAt(h>>>6*(3-F)&63));var K=v.charAt(64);if(K)for(;C.length%4;)C.push(K);return C.join("")},parse:function(o,w){w===void 0&&(w=!0);var U=o.length,u=w?this._safe_map:this._map,v=this._reverseMap;if(!v){v=this._reverseMap=[];for(var C=0;C<u.length;C++)v[u.charCodeAt(C)]=C}var E=u.charAt(64);if(E){var p=o.indexOf(E);p!==-1&&(U=p)}return Q(o,U,v)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"};function Q(o,w,U){for(var u=[],v=0,C=0;C<w;C++)if(C%4){var E=U[o.charCodeAt(C-1)]<<C%4*2,p=U[o.charCodeAt(C)]>>>6-C%4*2,b=E|p;u[v>>>2]|=b<<24-v%4*8,v++}return c.create(u,v)}})(),B.enc.Base64url})});var er=hA((g0,oa)=>{(function(B,s){typeof g0=="object"?oa.exports=g0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(g0,function(B){return(function(s){var f=B,c=f.lib,x=c.WordArray,d=c.Hasher,Q=f.algo,o=[];(function(){for(var E=0;E<64;E++)o[E]=s.abs(s.sin(E+1))*4294967296|0})();var w=Q.MD5=d.extend({_doReset:function(){this._hash=new x.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(E,p){for(var b=0;b<16;b++){var D=p+b,h=E[D];E[D]=(h<<8|h>>>24)&16711935|(h<<24|h>>>8)&4278255360}var F=this._hash.words,K=E[p+0],I=E[p+1],L=E[p+2],S=E[p+3],Z=E[p+4],J=E[p+5],z=E[p+6],eA=E[p+7],O=E[p+8],Y=E[p+9],rA=E[p+10],X=E[p+11],BA=E[p+12],aA=E[p+13],lA=E[p+14],xA=E[p+15],R=F[0],P=F[1],W=F[2],V=F[3];R=U(R,P,W,V,K,7,o[0]),V=U(V,R,P,W,I,12,o[1]),W=U(W,V,R,P,L,17,o[2]),P=U(P,W,V,R,S,22,o[3]),R=U(R,P,W,V,Z,7,o[4]),V=U(V,R,P,W,J,12,o[5]),W=U(W,V,R,P,z,17,o[6]),P=U(P,W,V,R,eA,22,o[7]),R=U(R,P,W,V,O,7,o[8]),V=U(V,R,P,W,Y,12,o[9]),W=U(W,V,R,P,rA,17,o[10]),P=U(P,W,V,R,X,22,o[11]),R=U(R,P,W,V,BA,7,o[12]),V=U(V,R,P,W,aA,12,o[13]),W=U(W,V,R,P,lA,17,o[14]),P=U(P,W,V,R,xA,22,o[15]),R=u(R,P,W,V,I,5,o[16]),V=u(V,R,P,W,z,9,o[17]),W=u(W,V,R,P,X,14,o[18]),P=u(P,W,V,R,K,20,o[19]),R=u(R,P,W,V,J,5,o[20]),V=u(V,R,P,W,rA,9,o[21]),W=u(W,V,R,P,xA,14,o[22]),P=u(P,W,V,R,Z,20,o[23]),R=u(R,P,W,V,Y,5,o[24]),V=u(V,R,P,W,lA,9,o[25]),W=u(W,V,R,P,S,14,o[26]),P=u(P,W,V,R,O,20,o[27]),R=u(R,P,W,V,aA,5,o[28]),V=u(V,R,P,W,L,9,o[29]),W=u(W,V,R,P,eA,14,o[30]),P=u(P,W,V,R,BA,20,o[31]),R=v(R,P,W,V,J,4,o[32]),V=v(V,R,P,W,O,11,o[33]),W=v(W,V,R,P,X,16,o[34]),P=v(P,W,V,R,lA,23,o[35]),R=v(R,P,W,V,I,4,o[36]),V=v(V,R,P,W,Z,11,o[37]),W=v(W,V,R,P,eA,16,o[38]),P=v(P,W,V,R,rA,23,o[39]),R=v(R,P,W,V,aA,4,o[40]),V=v(V,R,P,W,K,11,o[41]),W=v(W,V,R,P,S,16,o[42]),P=v(P,W,V,R,z,23,o[43]),R=v(R,P,W,V,Y,4,o[44]),V=v(V,R,P,W,BA,11,o[45]),W=v(W,V,R,P,xA,16,o[46]),P=v(P,W,V,R,L,23,o[47]),R=C(R,P,W,V,K,6,o[48]),V=C(V,R,P,W,eA,10,o[49]),W=C(W,V,R,P,lA,15,o[50]),P=C(P,W,V,R,J,21,o[51]),R=C(R,P,W,V,BA,6,o[52]),V=C(V,R,P,W,S,10,o[53]),W=C(W,V,R,P,rA,15,o[54]),P=C(P,W,V,R,I,21,o[55]),R=C(R,P,W,V,O,6,o[56]),V=C(V,R,P,W,xA,10,o[57]),W=C(W,V,R,P,z,15,o[58]),P=C(P,W,V,R,aA,21,o[59]),R=C(R,P,W,V,Z,6,o[60]),V=C(V,R,P,W,X,10,o[61]),W=C(W,V,R,P,L,15,o[62]),P=C(P,W,V,R,Y,21,o[63]),F[0]=F[0]+R|0,F[1]=F[1]+P|0,F[2]=F[2]+W|0,F[3]=F[3]+V|0},_doFinalize:function(){var E=this._data,p=E.words,b=this._nDataBytes*8,D=E.sigBytes*8;p[D>>>5]|=128<<24-D%32;var h=s.floor(b/4294967296),F=b;p[(D+64>>>9<<4)+15]=(h<<8|h>>>24)&16711935|(h<<24|h>>>8)&4278255360,p[(D+64>>>9<<4)+14]=(F<<8|F>>>24)&16711935|(F<<24|F>>>8)&4278255360,E.sigBytes=(p.length+1)*4,this._process();for(var K=this._hash,I=K.words,L=0;L<4;L++){var S=I[L];I[L]=(S<<8|S>>>24)&16711935|(S<<24|S>>>8)&4278255360}return K},clone:function(){var E=d.clone.call(this);return E._hash=this._hash.clone(),E}});function U(E,p,b,D,h,F,K){var I=E+(p&b|~p&D)+h+K;return(I<<F|I>>>32-F)+p}function u(E,p,b,D,h,F,K){var I=E+(p&D|b&~D)+h+K;return(I<<F|I>>>32-F)+p}function v(E,p,b,D,h,F,K){var I=E+(p^b^D)+h+K;return(I<<F|I>>>32-F)+p}function C(E,p,b,D,h,F,K){var I=E+(b^(p|~D))+h+K;return(I<<F|I>>>32-F)+p}f.MD5=d._createHelper(w),f.HmacMD5=d._createHmacHelper(w)})(Math),B.MD5})});var Gn=hA((w0,ca)=>{(function(B,s){typeof w0=="object"?ca.exports=w0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(w0,function(B){return(function(){var s=B,f=s.lib,c=f.WordArray,x=f.Hasher,d=s.algo,Q=[],o=d.SHA1=x.extend({_doReset:function(){this._hash=new c.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(w,U){for(var u=this._hash.words,v=u[0],C=u[1],E=u[2],p=u[3],b=u[4],D=0;D<80;D++){if(D<16)Q[D]=w[U+D]|0;else{var h=Q[D-3]^Q[D-8]^Q[D-14]^Q[D-16];Q[D]=h<<1|h>>>31}var F=(v<<5|v>>>27)+b+Q[D];D<20?F+=(C&E|~C&p)+1518500249:D<40?F+=(C^E^p)+1859775393:D<60?F+=(C&E|C&p|E&p)-1894007588:F+=(C^E^p)-899497514,b=p,p=E,E=C<<30|C>>>2,C=v,v=F}u[0]=u[0]+v|0,u[1]=u[1]+C|0,u[2]=u[2]+E|0,u[3]=u[3]+p|0,u[4]=u[4]+b|0},_doFinalize:function(){var w=this._data,U=w.words,u=this._nDataBytes*8,v=w.sigBytes*8;return U[v>>>5]|=128<<24-v%32,U[(v+64>>>9<<4)+14]=Math.floor(u/4294967296),U[(v+64>>>9<<4)+15]=u,w.sigBytes=U.length*4,this._process(),this._hash},clone:function(){var w=x.clone.call(this);return w._hash=this._hash.clone(),w}});s.SHA1=x._createHelper(o),s.HmacSHA1=x._createHmacHelper(o)})(),B.SHA1})});var h0=hA((C0,fa)=>{(function(B,s){typeof C0=="object"?fa.exports=C0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(C0,function(B){return(function(s){var f=B,c=f.lib,x=c.WordArray,d=c.Hasher,Q=f.algo,o=[],w=[];(function(){function v(b){for(var D=s.sqrt(b),h=2;h<=D;h++)if(!(b%h))return!1;return!0}function C(b){return(b-(b|0))*4294967296|0}for(var E=2,p=0;p<64;)v(E)&&(p<8&&(o[p]=C(s.pow(E,1/2))),w[p]=C(s.pow(E,1/3)),p++),E++})();var U=[],u=Q.SHA256=d.extend({_doReset:function(){this._hash=new x.init(o.slice(0))},_doProcessBlock:function(v,C){for(var E=this._hash.words,p=E[0],b=E[1],D=E[2],h=E[3],F=E[4],K=E[5],I=E[6],L=E[7],S=0;S<64;S++){if(S<16)U[S]=v[C+S]|0;else{var Z=U[S-15],J=(Z<<25|Z>>>7)^(Z<<14|Z>>>18)^Z>>>3,z=U[S-2],eA=(z<<15|z>>>17)^(z<<13|z>>>19)^z>>>10;U[S]=J+U[S-7]+eA+U[S-16]}var O=F&K^~F&I,Y=p&b^p&D^b&D,rA=(p<<30|p>>>2)^(p<<19|p>>>13)^(p<<10|p>>>22),X=(F<<26|F>>>6)^(F<<21|F>>>11)^(F<<7|F>>>25),BA=L+X+O+w[S]+U[S],aA=rA+Y;L=I,I=K,K=F,F=h+BA|0,h=D,D=b,b=p,p=BA+aA|0}E[0]=E[0]+p|0,E[1]=E[1]+b|0,E[2]=E[2]+D|0,E[3]=E[3]+h|0,E[4]=E[4]+F|0,E[5]=E[5]+K|0,E[6]=E[6]+I|0,E[7]=E[7]+L|0},_doFinalize:function(){var v=this._data,C=v.words,E=this._nDataBytes*8,p=v.sigBytes*8;return C[p>>>5]|=128<<24-p%32,C[(p+64>>>9<<4)+14]=s.floor(E/4294967296),C[(p+64>>>9<<4)+15]=E,v.sigBytes=C.length*4,this._process(),this._hash},clone:function(){var v=d.clone.call(this);return v._hash=this._hash.clone(),v}});f.SHA256=d._createHelper(u),f.HmacSHA256=d._createHmacHelper(u)})(Math),B.SHA256})});var ua=hA((x0,la)=>{(function(B,s,f){typeof x0=="object"?la.exports=x0=s(QA(),h0()):typeof define=="function"&&define.amd?define(["./core","./sha256"],s):s(B.CryptoJS)})(x0,function(B){return(function(){var s=B,f=s.lib,c=f.WordArray,x=s.algo,d=x.SHA256,Q=x.SHA224=d.extend({_doReset:function(){this._hash=new c.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var o=d._doFinalize.call(this);return o.sigBytes-=4,o}});s.SHA224=d._createHelper(Q),s.HmacSHA224=d._createHmacHelper(Q)})(),B.SHA224})});var Nn=hA((Q0,ga)=>{(function(B,s,f){typeof Q0=="object"?ga.exports=Q0=s(QA(),ut()):typeof define=="function"&&define.amd?define(["./core","./x64-core"],s):s(B.CryptoJS)})(Q0,function(B){return(function(){var s=B,f=s.lib,c=f.Hasher,x=s.x64,d=x.Word,Q=x.WordArray,o=s.algo;function w(){return d.create.apply(d,arguments)}var U=[w(1116352408,3609767458),w(1899447441,602891725),w(3049323471,3964484399),w(3921009573,2173295548),w(961987163,4081628472),w(1508970993,3053834265),w(2453635748,2937671579),w(2870763221,3664609560),w(3624381080,2734883394),w(310598401,1164996542),w(607225278,1323610764),w(1426881987,3590304994),w(1925078388,4068182383),w(2162078206,991336113),w(2614888103,633803317),w(3248222580,3479774868),w(3835390401,2666613458),w(4022224774,944711139),w(264347078,2341262773),w(604807628,2007800933),w(770255983,1495990901),w(1249150122,1856431235),w(1555081692,3175218132),w(1996064986,2198950837),w(2554220882,3999719339),w(2821834349,766784016),w(2952996808,2566594879),w(3210313671,3203337956),w(3336571891,1034457026),w(3584528711,2466948901),w(113926993,3758326383),w(338241895,168717936),w(666307205,1188179964),w(773529912,1546045734),w(1294757372,1522805485),w(1396182291,2643833823),w(1695183700,2343527390),w(1986661051,1014477480),w(2177026350,1206759142),w(2456956037,344077627),w(2730485921,1290863460),w(2820302411,3158454273),w(3259730800,3505952657),w(3345764771,106217008),w(3516065817,3606008344),w(3600352804,1432725776),w(4094571909,1467031594),w(275423344,851169720),w(430227734,3100823752),w(506948616,1363258195),w(659060556,3750685593),w(883997877,3785050280),w(958139571,3318307427),w(1322822218,3812723403),w(1537002063,2003034995),w(1747873779,3602036899),w(1955562222,1575990012),w(2024104815,1125592928),w(2227730452,2716904306),w(2361852424,442776044),w(2428436474,593698344),w(2756734187,3733110249),w(3204031479,2999351573),w(3329325298,3815920427),w(3391569614,3928383900),w(3515267271,566280711),w(3940187606,3454069534),w(4118630271,4000239992),w(116418474,1914138554),w(174292421,2731055270),w(289380356,3203993006),w(460393269,320620315),w(685471733,587496836),w(852142971,1086792851),w(1017036298,365543100),w(1126000580,2618297676),w(1288033470,3409855158),w(1501505948,4234509866),w(1607167915,987167468),w(1816402316,1246189591)],u=[];(function(){for(var C=0;C<80;C++)u[C]=w()})();var v=o.SHA512=c.extend({_doReset:function(){this._hash=new Q.init([new d.init(1779033703,4089235720),new d.init(3144134277,2227873595),new d.init(1013904242,4271175723),new d.init(2773480762,1595750129),new d.init(1359893119,2917565137),new d.init(2600822924,725511199),new d.init(528734635,4215389547),new d.init(1541459225,327033209)])},_doProcessBlock:function(C,E){for(var p=this._hash.words,b=p[0],D=p[1],h=p[2],F=p[3],K=p[4],I=p[5],L=p[6],S=p[7],Z=b.high,J=b.low,z=D.high,eA=D.low,O=h.high,Y=h.low,rA=F.high,X=F.low,BA=K.high,aA=K.low,lA=I.high,xA=I.low,R=L.high,P=L.low,W=S.high,V=S.low,mA=Z,pA=J,TA=z,gA=eA,Se=O,_e=Y,vr=rA,Te=X,ne=BA,PA=aA,sr=lA,Oe=xA,ar=R,qA=P,Br=W,Re=V,XA=0;XA<80;XA++){var ZA,zA,Me=u[XA];if(XA<16)zA=Me.high=C[E+XA*2]|0,ZA=Me.low=C[E+XA*2+1]|0;else{var or=u[XA-15],ae=or.high,cr=or.low,pt=(ae>>>1|cr<<31)^(ae>>>8|cr<<24)^ae>>>7,pr=(cr>>>1|ae<<31)^(cr>>>8|ae<<24)^(cr>>>7|ae<<25),ke=u[XA-2],he=ke.high,Be=ke.low,WA=(he>>>19|Be<<13)^(he<<3|Be>>>29)^he>>>6,Ge=(Be>>>19|he<<13)^(Be<<3|he>>>29)^(Be>>>6|he<<26),Ne=u[XA-7],Ve=Ne.high,rn=Ne.low,xe=u[XA-16],tn=xe.high,fr=xe.low;ZA=pr+rn,zA=pt+Ve+(ZA>>>0<pr>>>0?1:0),ZA=ZA+Ge,zA=zA+WA+(ZA>>>0<Ge>>>0?1:0),ZA=ZA+fr,zA=zA+tn+(ZA>>>0<fr>>>0?1:0),Me.high=zA,Me.low=ZA}var Er=ne&sr^~ne&ar,Hr=PA&Oe^~PA&qA,Zr=mA&TA^mA&Se^TA&Se,zr=pA&gA^pA&_e^gA&_e,lr=(mA>>>28|pA<<4)^(mA<<30|pA>>>2)^(mA<<25|pA>>>7),yr=(pA>>>28|mA<<4)^(pA<<30|mA>>>2)^(pA<<25|mA>>>7),mr=(ne>>>14|PA<<18)^(ne>>>18|PA<<14)^(ne<<23|PA>>>9),Ir=(PA>>>14|ne<<18)^(PA>>>18|ne<<14)^(PA<<23|ne>>>9),br=U[XA],Et=br.high,Ht=br.low,JA=Re+Ir,ue=Br+mr+(JA>>>0<Re>>>0?1:0),JA=JA+Hr,ue=ue+Er+(JA>>>0<Hr>>>0?1:0),JA=JA+Ht,ue=ue+Et+(JA>>>0<Ht>>>0?1:0),JA=JA+ZA,ue=ue+zA+(JA>>>0<ZA>>>0?1:0),CA=yr+zr,Dr=lr+Zr+(CA>>>0<yr>>>0?1:0);Br=ar,Re=qA,ar=sr,qA=Oe,sr=ne,Oe=PA,PA=Te+JA|0,ne=vr+ue+(PA>>>0<Te>>>0?1:0)|0,vr=Se,Te=_e,Se=TA,_e=gA,TA=mA,gA=pA,pA=JA+CA|0,mA=ue+Dr+(pA>>>0<JA>>>0?1:0)|0}J=b.low=J+pA,b.high=Z+mA+(J>>>0<pA>>>0?1:0),eA=D.low=eA+gA,D.high=z+TA+(eA>>>0<gA>>>0?1:0),Y=h.low=Y+_e,h.high=O+Se+(Y>>>0<_e>>>0?1:0),X=F.low=X+Te,F.high=rA+vr+(X>>>0<Te>>>0?1:0),aA=K.low=aA+PA,K.high=BA+ne+(aA>>>0<PA>>>0?1:0),xA=I.low=xA+Oe,I.high=lA+sr+(xA>>>0<Oe>>>0?1:0),P=L.low=P+qA,L.high=R+ar+(P>>>0<qA>>>0?1:0),V=S.low=V+Re,S.high=W+Br+(V>>>0<Re>>>0?1:0)},_doFinalize:function(){var C=this._data,E=C.words,p=this._nDataBytes*8,b=C.sigBytes*8;E[b>>>5]|=128<<24-b%32,E[(b+128>>>10<<5)+30]=Math.floor(p/4294967296),E[(b+128>>>10<<5)+31]=p,C.sigBytes=E.length*4,this._process();var D=this._hash.toX32();return D},clone:function(){var C=c.clone.call(this);return C._hash=this._hash.clone(),C},blockSize:1024/32});s.SHA512=c._createHelper(v),s.HmacSHA512=c._createHmacHelper(v)})(),B.SHA512})});var Ca=hA((d0,wa)=>{(function(B,s,f){typeof d0=="object"?wa.exports=d0=s(QA(),ut(),Nn()):typeof define=="function"&&define.amd?define(["./core","./x64-core","./sha512"],s):s(B.CryptoJS)})(d0,function(B){return(function(){var s=B,f=s.x64,c=f.Word,x=f.WordArray,d=s.algo,Q=d.SHA512,o=d.SHA384=Q.extend({_doReset:function(){this._hash=new x.init([new c.init(3418070365,3238371032),new c.init(1654270250,914150663),new c.init(2438529370,812702999),new c.init(355462360,4144912697),new c.init(1731405415,4290775857),new c.init(2394180231,1750603025),new c.init(3675008525,1694076839),new c.init(1203062813,3204075428)])},_doFinalize:function(){var w=Q._doFinalize.call(this);return w.sigBytes-=16,w}});s.SHA384=Q._createHelper(o),s.HmacSHA384=Q._createHmacHelper(o)})(),B.SHA384})});var xa=hA((F0,ha)=>{(function(B,s,f){typeof F0=="object"?ha.exports=F0=s(QA(),ut()):typeof define=="function"&&define.amd?define(["./core","./x64-core"],s):s(B.CryptoJS)})(F0,function(B){return(function(s){var f=B,c=f.lib,x=c.WordArray,d=c.Hasher,Q=f.x64,o=Q.Word,w=f.algo,U=[],u=[],v=[];(function(){for(var p=1,b=0,D=0;D<24;D++){U[p+5*b]=(D+1)*(D+2)/2%64;var h=b%5,F=(2*p+3*b)%5;p=h,b=F}for(var p=0;p<5;p++)for(var b=0;b<5;b++)u[p+5*b]=b+(2*p+3*b)%5*5;for(var K=1,I=0;I<24;I++){for(var L=0,S=0,Z=0;Z<7;Z++){if(K&1){var J=(1<<Z)-1;J<32?S^=1<<J:L^=1<<J-32}K&128?K=K<<1^113:K<<=1}v[I]=o.create(L,S)}})();var C=[];(function(){for(var p=0;p<25;p++)C[p]=o.create()})();var E=w.SHA3=d.extend({cfg:d.cfg.extend({outputLength:512}),_doReset:function(){for(var p=this._state=[],b=0;b<25;b++)p[b]=new o.init;this.blockSize=(1600-2*this.cfg.outputLength)/32},_doProcessBlock:function(p,b){for(var D=this._state,h=this.blockSize/2,F=0;F<h;F++){var K=p[b+2*F],I=p[b+2*F+1];K=(K<<8|K>>>24)&16711935|(K<<24|K>>>8)&4278255360,I=(I<<8|I>>>24)&16711935|(I<<24|I>>>8)&4278255360;var L=D[F];L.high^=I,L.low^=K}for(var S=0;S<24;S++){for(var Z=0;Z<5;Z++){for(var J=0,z=0,eA=0;eA<5;eA++){var L=D[Z+5*eA];J^=L.high,z^=L.low}var O=C[Z];O.high=J,O.low=z}for(var Z=0;Z<5;Z++)for(var Y=C[(Z+4)%5],rA=C[(Z+1)%5],X=rA.high,BA=rA.low,J=Y.high^(X<<1|BA>>>31),z=Y.low^(BA<<1|X>>>31),eA=0;eA<5;eA++){var L=D[Z+5*eA];L.high^=J,L.low^=z}for(var aA=1;aA<25;aA++){var J,z,L=D[aA],lA=L.high,xA=L.low,R=U[aA];R<32?(J=lA<<R|xA>>>32-R,z=xA<<R|lA>>>32-R):(J=xA<<R-32|lA>>>64-R,z=lA<<R-32|xA>>>64-R);var P=C[u[aA]];P.high=J,P.low=z}var W=C[0],V=D[0];W.high=V.high,W.low=V.low;for(var Z=0;Z<5;Z++)for(var eA=0;eA<5;eA++){var aA=Z+5*eA,L=D[aA],mA=C[aA],pA=C[(Z+1)%5+5*eA],TA=C[(Z+2)%5+5*eA];L.high=mA.high^~pA.high&TA.high,L.low=mA.low^~pA.low&TA.low}var L=D[0],gA=v[S];L.high^=gA.high,L.low^=gA.low}},_doFinalize:function(){var p=this._data,b=p.words,D=this._nDataBytes*8,h=p.sigBytes*8,F=this.blockSize*32;b[h>>>5]|=1<<24-h%32,b[(s.ceil((h+1)/F)*F>>>5)-1]|=128,p.sigBytes=b.length*4,this._process();for(var K=this._state,I=this.cfg.outputLength/8,L=I/8,S=[],Z=0;Z<L;Z++){var J=K[Z],z=J.high,eA=J.low;z=(z<<8|z>>>24)&16711935|(z<<24|z>>>8)&4278255360,eA=(eA<<8|eA>>>24)&16711935|(eA<<24|eA>>>8)&4278255360,S.push(eA),S.push(z)}return new x.init(S,I)},clone:function(){for(var p=d.clone.call(this),b=p._state=this._state.slice(0),D=0;D<25;D++)b[D]=b[D].clone();return p}});f.SHA3=d._createHelper(E),f.HmacSHA3=d._createHmacHelper(E)})(Math),B.SHA3})});var da=hA((U0,Qa)=>{(function(B,s){typeof U0=="object"?Qa.exports=U0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(U0,function(B){return(function(s){var f=B,c=f.lib,x=c.WordArray,d=c.Hasher,Q=f.algo,o=x.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),w=x.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),U=x.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),u=x.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),v=x.create([0,1518500249,1859775393,2400959708,2840853838]),C=x.create([1352829926,1548603684,1836072691,2053994217,0]),E=Q.RIPEMD160=d.extend({_doReset:function(){this._hash=x.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(I,L){for(var S=0;S<16;S++){var Z=L+S,J=I[Z];I[Z]=(J<<8|J>>>24)&16711935|(J<<24|J>>>8)&4278255360}var z=this._hash.words,eA=v.words,O=C.words,Y=o.words,rA=w.words,X=U.words,BA=u.words,aA,lA,xA,R,P,W,V,mA,pA,TA;W=aA=z[0],V=lA=z[1],mA=xA=z[2],pA=R=z[3],TA=P=z[4];for(var gA,S=0;S<80;S+=1)gA=aA+I[L+Y[S]]|0,S<16?gA+=p(lA,xA,R)+eA[0]:S<32?gA+=b(lA,xA,R)+eA[1]:S<48?gA+=D(lA,xA,R)+eA[2]:S<64?gA+=h(lA,xA,R)+eA[3]:gA+=F(lA,xA,R)+eA[4],gA=gA|0,gA=K(gA,X[S]),gA=gA+P|0,aA=P,P=R,R=K(xA,10),xA=lA,lA=gA,gA=W+I[L+rA[S]]|0,S<16?gA+=F(V,mA,pA)+O[0]:S<32?gA+=h(V,mA,pA)+O[1]:S<48?gA+=D(V,mA,pA)+O[2]:S<64?gA+=b(V,mA,pA)+O[3]:gA+=p(V,mA,pA)+O[4],gA=gA|0,gA=K(gA,BA[S]),gA=gA+TA|0,W=TA,TA=pA,pA=K(mA,10),mA=V,V=gA;gA=z[1]+xA+pA|0,z[1]=z[2]+R+TA|0,z[2]=z[3]+P+W|0,z[3]=z[4]+aA+V|0,z[4]=z[0]+lA+mA|0,z[0]=gA},_doFinalize:function(){var I=this._data,L=I.words,S=this._nDataBytes*8,Z=I.sigBytes*8;L[Z>>>5]|=128<<24-Z%32,L[(Z+64>>>9<<4)+14]=(S<<8|S>>>24)&16711935|(S<<24|S>>>8)&4278255360,I.sigBytes=(L.length+1)*4,this._process();for(var J=this._hash,z=J.words,eA=0;eA<5;eA++){var O=z[eA];z[eA]=(O<<8|O>>>24)&16711935|(O<<24|O>>>8)&4278255360}return J},clone:function(){var I=d.clone.call(this);return I._hash=this._hash.clone(),I}});function p(I,L,S){return I^L^S}function b(I,L,S){return I&L|~I&S}function D(I,L,S){return(I|~L)^S}function h(I,L,S){return I&S|L&~S}function F(I,L,S){return I^(L|~S)}function K(I,L){return I<<L|I>>>32-L}f.RIPEMD160=d._createHelper(E),f.HmacRIPEMD160=d._createHmacHelper(E)})(Math),B.RIPEMD160})});var p0=hA((v0,Fa)=>{(function(B,s){typeof v0=="object"?Fa.exports=v0=s(QA()):typeof define=="function"&&define.amd?define(["./core"],s):s(B.CryptoJS)})(v0,function(B){(function(){var s=B,f=s.lib,c=f.Base,x=s.enc,d=x.Utf8,Q=s.algo,o=Q.HMAC=c.extend({init:function(w,U){w=this._hasher=new w.init,typeof U=="string"&&(U=d.parse(U));var u=w.blockSize,v=u*4;U.sigBytes>v&&(U=w.finalize(U)),U.clamp();for(var C=this._oKey=U.clone(),E=this._iKey=U.clone(),p=C.words,b=E.words,D=0;D<u;D++)p[D]^=1549556828,b[D]^=909522486;C.sigBytes=E.sigBytes=v,this.reset()},reset:function(){var w=this._hasher;w.reset(),w.update(this._iKey)},update:function(w){return this._hasher.update(w),this},finalize:function(w){var U=this._hasher,u=U.finalize(w);U.reset();var v=U.finalize(this._oKey.clone().concat(u));return v}})})()})});var va=hA((E0,Ua)=>{(function(B,s,f){typeof E0=="object"?Ua.exports=E0=s(QA(),h0(),p0()):typeof define=="function"&&define.amd?define(["./core","./sha256","./hmac"],s):s(B.CryptoJS)})(E0,function(B){return(function(){var s=B,f=s.lib,c=f.Base,x=f.WordArray,d=s.algo,Q=d.SHA256,o=d.HMAC,w=d.PBKDF2=c.extend({cfg:c.extend({keySize:128/32,hasher:Q,iterations:25e4}),init:function(U){this.cfg=this.cfg.extend(U)},compute:function(U,u){for(var v=this.cfg,C=o.create(v.hasher,U),E=x.create(),p=x.create([1]),b=E.words,D=p.words,h=v.keySize,F=v.iterations;b.length<h;){var K=C.update(u).finalize(p);C.reset();for(var I=K.words,L=I.length,S=K,Z=1;Z<F;Z++){S=C.finalize(S),C.reset();for(var J=S.words,z=0;z<L;z++)I[z]^=J[z]}E.concat(K),D[0]++}return E.sigBytes=h*4,E}});s.PBKDF2=function(U,u,v){return w.create(v).compute(U,u)}})(),B.PBKDF2})});var De=hA((H0,pa)=>{(function(B,s,f){typeof H0=="object"?pa.exports=H0=s(QA(),Gn(),p0()):typeof define=="function"&&define.amd?define(["./core","./sha1","./hmac"],s):s(B.CryptoJS)})(H0,function(B){return(function(){var s=B,f=s.lib,c=f.Base,x=f.WordArray,d=s.algo,Q=d.MD5,o=d.EvpKDF=c.extend({cfg:c.extend({keySize:128/32,hasher:Q,iterations:1}),init:function(w){this.cfg=this.cfg.extend(w)},compute:function(w,U){for(var u,v=this.cfg,C=v.hasher.create(),E=x.create(),p=E.words,b=v.keySize,D=v.iterations;p.length<b;){u&&C.update(u),u=C.update(w).finalize(U),C.reset();for(var h=1;h<D;h++)u=C.finalize(u),C.reset();E.concat(u)}return E.sigBytes=b*4,E}});s.EvpKDF=function(w,U,u){return o.create(u).compute(w,U)}})(),B.EvpKDF})});var RA=hA((y0,Ea)=>{(function(B,s,f){typeof y0=="object"?Ea.exports=y0=s(QA(),De()):typeof define=="function"&&define.amd?define(["./core","./evpkdf"],s):s(B.CryptoJS)})(y0,function(B){B.lib.Cipher||(function(s){var f=B,c=f.lib,x=c.Base,d=c.WordArray,Q=c.BufferedBlockAlgorithm,o=f.enc,w=o.Utf8,U=o.Base64,u=f.algo,v=u.EvpKDF,C=c.Cipher=Q.extend({cfg:x.extend(),createEncryptor:function(O,Y){return this.create(this._ENC_XFORM_MODE,O,Y)},createDecryptor:function(O,Y){return this.create(this._DEC_XFORM_MODE,O,Y)},init:function(O,Y,rA){this.cfg=this.cfg.extend(rA),this._xformMode=O,this._key=Y,this.reset()},reset:function(){Q.reset.call(this),this._doReset()},process:function(O){return this._append(O),this._process()},finalize:function(O){O&&this._append(O);var Y=this._doFinalize();return Y},keySize:128/32,ivSize:128/32,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:(function(){function O(Y){return typeof Y=="string"?eA:Z}return function(Y){return{encrypt:function(rA,X,BA){return O(X).encrypt(Y,rA,X,BA)},decrypt:function(rA,X,BA){return O(X).decrypt(Y,rA,X,BA)}}}})()}),E=c.StreamCipher=C.extend({_doFinalize:function(){var O=this._process(!0);return O},blockSize:1}),p=f.mode={},b=c.BlockCipherMode=x.extend({createEncryptor:function(O,Y){return this.Encryptor.create(O,Y)},createDecryptor:function(O,Y){return this.Decryptor.create(O,Y)},init:function(O,Y){this._cipher=O,this._iv=Y}}),D=p.CBC=(function(){var O=b.extend();O.Encryptor=O.extend({processBlock:function(rA,X){var BA=this._cipher,aA=BA.blockSize;Y.call(this,rA,X,aA),BA.encryptBlock(rA,X),this._prevBlock=rA.slice(X,X+aA)}}),O.Decryptor=O.extend({processBlock:function(rA,X){var BA=this._cipher,aA=BA.blockSize,lA=rA.slice(X,X+aA);BA.decryptBlock(rA,X),Y.call(this,rA,X,aA),this._prevBlock=lA}});function Y(rA,X,BA){var aA,lA=this._iv;lA?(aA=lA,this._iv=s):aA=this._prevBlock;for(var xA=0;xA<BA;xA++)rA[X+xA]^=aA[xA]}return O})(),h=f.pad={},F=h.Pkcs7={pad:function(O,Y){for(var rA=Y*4,X=rA-O.sigBytes%rA,BA=X<<24|X<<16|X<<8|X,aA=[],lA=0;lA<X;lA+=4)aA.push(BA);var xA=d.create(aA,X);O.concat(xA)},unpad:function(O){var Y=O.words[O.sigBytes-1>>>2]&255;O.sigBytes-=Y}},K=c.BlockCipher=C.extend({cfg:C.cfg.extend({mode:D,padding:F}),reset:function(){var O;C.reset.call(this);var Y=this.cfg,rA=Y.iv,X=Y.mode;this._xformMode==this._ENC_XFORM_MODE?O=X.createEncryptor:(O=X.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==O?this._mode.init(this,rA&&rA.words):(this._mode=O.call(X,this,rA&&rA.words),this._mode.__creator=O)},_doProcessBlock:function(O,Y){this._mode.processBlock(O,Y)},_doFinalize:function(){var O,Y=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(Y.pad(this._data,this.blockSize),O=this._process(!0)):(O=this._process(!0),Y.unpad(O)),O},blockSize:128/32}),I=c.CipherParams=x.extend({init:function(O){this.mixIn(O)},toString:function(O){return(O||this.formatter).stringify(this)}}),L=f.format={},S=L.OpenSSL={stringify:function(O){var Y,rA=O.ciphertext,X=O.salt;return X?Y=d.create([1398893684,1701076831]).concat(X).concat(rA):Y=rA,Y.toString(U)},parse:function(O){var Y,rA=U.parse(O),X=rA.words;return X[0]==1398893684&&X[1]==1701076831&&(Y=d.create(X.slice(2,4)),X.splice(0,4),rA.sigBytes-=16),I.create({ciphertext:rA,salt:Y})}},Z=c.SerializableCipher=x.extend({cfg:x.extend({format:S}),encrypt:function(O,Y,rA,X){X=this.cfg.extend(X);var BA=O.createEncryptor(rA,X),aA=BA.finalize(Y),lA=BA.cfg;return I.create({ciphertext:aA,key:rA,iv:lA.iv,algorithm:O,mode:lA.mode,padding:lA.padding,blockSize:O.blockSize,formatter:X.format})},decrypt:function(O,Y,rA,X){X=this.cfg.extend(X),Y=this._parse(Y,X.format);var BA=O.createDecryptor(rA,X).finalize(Y.ciphertext);return BA},_parse:function(O,Y){return typeof O=="string"?Y.parse(O,this):O}}),J=f.kdf={},z=J.OpenSSL={execute:function(O,Y,rA,X,BA){if(X||(X=d.random(64/8)),BA)var aA=v.create({keySize:Y+rA,hasher:BA}).compute(O,X);else var aA=v.create({keySize:Y+rA}).compute(O,X);var lA=d.create(aA.words.slice(Y),rA*4);return aA.sigBytes=Y*4,I.create({key:aA,iv:lA,salt:X})}},eA=c.PasswordBasedCipher=Z.extend({cfg:Z.cfg.extend({kdf:z}),encrypt:function(O,Y,rA,X){X=this.cfg.extend(X);var BA=X.kdf.execute(rA,O.keySize,O.ivSize,X.salt,X.hasher);X.iv=BA.iv;var aA=Z.encrypt.call(this,O,Y,BA.key,X);return aA.mixIn(BA),aA},decrypt:function(O,Y,rA,X){X=this.cfg.extend(X),Y=this._parse(Y,X.format);var BA=X.kdf.execute(rA,O.keySize,O.ivSize,Y.salt,X.hasher);X.iv=BA.iv;var aA=Z.decrypt.call(this,O,Y,BA.key,X);return aA}})})()})});var ya=hA((m0,Ha)=>{(function(B,s,f){typeof m0=="object"?Ha.exports=m0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(m0,function(B){return B.mode.CFB=(function(){var s=B.lib.BlockCipherMode.extend();s.Encryptor=s.extend({processBlock:function(c,x){var d=this._cipher,Q=d.blockSize;f.call(this,c,x,Q,d),this._prevBlock=c.slice(x,x+Q)}}),s.Decryptor=s.extend({processBlock:function(c,x){var d=this._cipher,Q=d.blockSize,o=c.slice(x,x+Q);f.call(this,c,x,Q,d),this._prevBlock=o}});function f(c,x,d,Q){var o,w=this._iv;w?(o=w.slice(0),this._iv=void 0):o=this._prevBlock,Q.encryptBlock(o,0);for(var U=0;U<d;U++)c[x+U]^=o[U]}return s})(),B.mode.CFB})});var Ia=hA((I0,ma)=>{(function(B,s,f){typeof I0=="object"?ma.exports=I0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(I0,function(B){return B.mode.CTR=(function(){var s=B.lib.BlockCipherMode.extend(),f=s.Encryptor=s.extend({processBlock:function(c,x){var d=this._cipher,Q=d.blockSize,o=this._iv,w=this._counter;o&&(w=this._counter=o.slice(0),this._iv=void 0);var U=w.slice(0);d.encryptBlock(U,0),w[Q-1]=w[Q-1]+1|0;for(var u=0;u<Q;u++)c[x+u]^=U[u]}});return s.Decryptor=f,s})(),B.mode.CTR})});var Da=hA((b0,ba)=>{(function(B,s,f){typeof b0=="object"?ba.exports=b0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(b0,function(B){return B.mode.CTRGladman=(function(){var s=B.lib.BlockCipherMode.extend();function f(d){if((d>>24&255)===255){var Q=d>>16&255,o=d>>8&255,w=d&255;Q===255?(Q=0,o===255?(o=0,w===255?w=0:++w):++o):++Q,d=0,d+=Q<<16,d+=o<<8,d+=w}else d+=1<<24;return d}function c(d){return(d[0]=f(d[0]))===0&&(d[1]=f(d[1])),d}var x=s.Encryptor=s.extend({processBlock:function(d,Q){var o=this._cipher,w=o.blockSize,U=this._iv,u=this._counter;U&&(u=this._counter=U.slice(0),this._iv=void 0),c(u);var v=u.slice(0);o.encryptBlock(v,0);for(var C=0;C<w;C++)d[Q+C]^=v[C]}});return s.Decryptor=x,s})(),B.mode.CTRGladman})});var La=hA((D0,Ka)=>{(function(B,s,f){typeof D0=="object"?Ka.exports=D0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(D0,function(B){return B.mode.OFB=(function(){var s=B.lib.BlockCipherMode.extend(),f=s.Encryptor=s.extend({processBlock:function(c,x){var d=this._cipher,Q=d.blockSize,o=this._iv,w=this._keystream;o&&(w=this._keystream=o.slice(0),this._iv=void 0),d.encryptBlock(w,0);for(var U=0;U<Q;U++)c[x+U]^=w[U]}});return s.Decryptor=f,s})(),B.mode.OFB})});var _a=hA((K0,Sa)=>{(function(B,s,f){typeof K0=="object"?Sa.exports=K0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(K0,function(B){return B.mode.ECB=(function(){var s=B.lib.BlockCipherMode.extend();return s.Encryptor=s.extend({processBlock:function(f,c){this._cipher.encryptBlock(f,c)}}),s.Decryptor=s.extend({processBlock:function(f,c){this._cipher.decryptBlock(f,c)}}),s})(),B.mode.ECB})});var Oa=hA((L0,Ta)=>{(function(B,s,f){typeof L0=="object"?Ta.exports=L0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(L0,function(B){return B.pad.AnsiX923={pad:function(s,f){var c=s.sigBytes,x=f*4,d=x-c%x,Q=c+d-1;s.clamp(),s.words[Q>>>2]|=d<<24-Q%4*8,s.sigBytes+=d},unpad:function(s){var f=s.words[s.sigBytes-1>>>2]&255;s.sigBytes-=f}},B.pad.Ansix923})});var Ma=hA((S0,Ra)=>{(function(B,s,f){typeof S0=="object"?Ra.exports=S0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(S0,function(B){return B.pad.Iso10126={pad:function(s,f){var c=f*4,x=c-s.sigBytes%c;s.concat(B.lib.WordArray.random(x-1)).concat(B.lib.WordArray.create([x<<24],1))},unpad:function(s){var f=s.words[s.sigBytes-1>>>2]&255;s.sigBytes-=f}},B.pad.Iso10126})});var Ga=hA((_0,ka)=>{(function(B,s,f){typeof _0=="object"?ka.exports=_0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(_0,function(B){return B.pad.Iso97971={pad:function(s,f){s.concat(B.lib.WordArray.create([2147483648],1)),B.pad.ZeroPadding.pad(s,f)},unpad:function(s){B.pad.ZeroPadding.unpad(s),s.sigBytes--}},B.pad.Iso97971})});var Va=hA((T0,Na)=>{(function(B,s,f){typeof T0=="object"?Na.exports=T0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(T0,function(B){return B.pad.ZeroPadding={pad:function(s,f){var c=f*4;s.clamp(),s.sigBytes+=c-(s.sigBytes%c||c)},unpad:function(s){for(var f=s.words,c=s.sigBytes-1,c=s.sigBytes-1;c>=0;c--)if(f[c>>>2]>>>24-c%4*8&255){s.sigBytes=c+1;break}}},B.pad.ZeroPadding})});var Xa=hA((O0,Pa)=>{(function(B,s,f){typeof O0=="object"?Pa.exports=O0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(O0,function(B){return B.pad.NoPadding={pad:function(){},unpad:function(){}},B.pad.NoPadding})});var Ja=hA((R0,Wa)=>{(function(B,s,f){typeof R0=="object"?Wa.exports=R0=s(QA(),RA()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],s):s(B.CryptoJS)})(R0,function(B){return(function(s){var f=B,c=f.lib,x=c.CipherParams,d=f.enc,Q=d.Hex,o=f.format,w=o.Hex={stringify:function(U){return U.ciphertext.toString(Q)},parse:function(U){var u=Q.parse(U);return x.create({ciphertext:u})}}})(),B.format.Hex})});var qa=hA((M0,Ya)=>{(function(B,s,f){typeof M0=="object"?Ya.exports=M0=s(QA(),Ar(),er(),De(),RA()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],s):s(B.CryptoJS)})(M0,function(B){return(function(){var s=B,f=s.lib,c=f.BlockCipher,x=s.algo,d=[],Q=[],o=[],w=[],U=[],u=[],v=[],C=[],E=[],p=[];(function(){for(var h=[],F=0;F<256;F++)F<128?h[F]=F<<1:h[F]=F<<1^283;for(var K=0,I=0,F=0;F<256;F++){var L=I^I<<1^I<<2^I<<3^I<<4;L=L>>>8^L&255^99,d[K]=L,Q[L]=K;var S=h[K],Z=h[S],J=h[Z],z=h[L]*257^L*16843008;o[K]=z<<24|z>>>8,w[K]=z<<16|z>>>16,U[K]=z<<8|z>>>24,u[K]=z;var z=J*16843009^Z*65537^S*257^K*16843008;v[L]=z<<24|z>>>8,C[L]=z<<16|z>>>16,E[L]=z<<8|z>>>24,p[L]=z,K?(K=S^h[h[h[J^S]]],I^=h[h[I]]):K=I=1}})();var b=[0,1,2,4,8,16,32,64,128,27,54],D=x.AES=c.extend({_doReset:function(){var h;if(!(this._nRounds&&this._keyPriorReset===this._key)){for(var F=this._keyPriorReset=this._key,K=F.words,I=F.sigBytes/4,L=this._nRounds=I+6,S=(L+1)*4,Z=this._keySchedule=[],J=0;J<S;J++)J<I?Z[J]=K[J]:(h=Z[J-1],J%I?I>6&&J%I==4&&(h=d[h>>>24]<<24|d[h>>>16&255]<<16|d[h>>>8&255]<<8|d[h&255]):(h=h<<8|h>>>24,h=d[h>>>24]<<24|d[h>>>16&255]<<16|d[h>>>8&255]<<8|d[h&255],h^=b[J/I|0]<<24),Z[J]=Z[J-I]^h);for(var z=this._invKeySchedule=[],eA=0;eA<S;eA++){var J=S-eA;if(eA%4)var h=Z[J];else var h=Z[J-4];eA<4||J<=4?z[eA]=h:z[eA]=v[d[h>>>24]]^C[d[h>>>16&255]]^E[d[h>>>8&255]]^p[d[h&255]]}}},encryptBlock:function(h,F){this._doCryptBlock(h,F,this._keySchedule,o,w,U,u,d)},decryptBlock:function(h,F){var K=h[F+1];h[F+1]=h[F+3],h[F+3]=K,this._doCryptBlock(h,F,this._invKeySchedule,v,C,E,p,Q);var K=h[F+1];h[F+1]=h[F+3],h[F+3]=K},_doCryptBlock:function(h,F,K,I,L,S,Z,J){for(var z=this._nRounds,eA=h[F]^K[0],O=h[F+1]^K[1],Y=h[F+2]^K[2],rA=h[F+3]^K[3],X=4,BA=1;BA<z;BA++){var aA=I[eA>>>24]^L[O>>>16&255]^S[Y>>>8&255]^Z[rA&255]^K[X++],lA=I[O>>>24]^L[Y>>>16&255]^S[rA>>>8&255]^Z[eA&255]^K[X++],xA=I[Y>>>24]^L[rA>>>16&255]^S[eA>>>8&255]^Z[O&255]^K[X++],R=I[rA>>>24]^L[eA>>>16&255]^S[O>>>8&255]^Z[Y&255]^K[X++];eA=aA,O=lA,Y=xA,rA=R}var aA=(J[eA>>>24]<<24|J[O>>>16&255]<<16|J[Y>>>8&255]<<8|J[rA&255])^K[X++],lA=(J[O>>>24]<<24|J[Y>>>16&255]<<16|J[rA>>>8&255]<<8|J[eA&255])^K[X++],xA=(J[Y>>>24]<<24|J[rA>>>16&255]<<16|J[eA>>>8&255]<<8|J[O&255])^K[X++],R=(J[rA>>>24]<<24|J[eA>>>16&255]<<16|J[O>>>8&255]<<8|J[Y&255])^K[X++];h[F]=aA,h[F+1]=lA,h[F+2]=xA,h[F+3]=R},keySize:256/32});s.AES=c._createHelper(D)})(),B.AES})});var za=hA((k0,Za)=>{(function(B,s,f){typeof k0=="object"?Za.exports=k0=s(QA(),Ar(),er(),De(),RA()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],s):s(B.CryptoJS)})(k0,function(B){return(function(){var s=B,f=s.lib,c=f.WordArray,x=f.BlockCipher,d=s.algo,Q=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],o=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],w=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],U=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],u=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],v=d.DES=x.extend({_doReset:function(){for(var b=this._key,D=b.words,h=[],F=0;F<56;F++){var K=Q[F]-1;h[F]=D[K>>>5]>>>31-K%32&1}for(var I=this._subKeys=[],L=0;L<16;L++){for(var S=I[L]=[],Z=w[L],F=0;F<24;F++)S[F/6|0]|=h[(o[F]-1+Z)%28]<<31-F%6,S[4+(F/6|0)]|=h[28+(o[F+24]-1+Z)%28]<<31-F%6;S[0]=S[0]<<1|S[0]>>>31;for(var F=1;F<7;F++)S[F]=S[F]>>>(F-1)*4+3;S[7]=S[7]<<5|S[7]>>>27}for(var J=this._invSubKeys=[],F=0;F<16;F++)J[F]=I[15-F]},encryptBlock:function(b,D){this._doCryptBlock(b,D,this._subKeys)},decryptBlock:function(b,D){this._doCryptBlock(b,D,this._invSubKeys)},_doCryptBlock:function(b,D,h){this._lBlock=b[D],this._rBlock=b[D+1],C.call(this,4,252645135),C.call(this,16,65535),E.call(this,2,858993459),E.call(this,8,16711935),C.call(this,1,1431655765);for(var F=0;F<16;F++){for(var K=h[F],I=this._lBlock,L=this._rBlock,S=0,Z=0;Z<8;Z++)S|=U[Z][((L^K[Z])&u[Z])>>>0];this._lBlock=L,this._rBlock=I^S}var J=this._lBlock;this._lBlock=this._rBlock,this._rBlock=J,C.call(this,1,1431655765),E.call(this,8,16711935),E.call(this,2,858993459),C.call(this,16,65535),C.call(this,4,252645135),b[D]=this._lBlock,b[D+1]=this._rBlock},keySize:64/32,ivSize:64/32,blockSize:64/32});function C(b,D){var h=(this._lBlock>>>b^this._rBlock)&D;this._rBlock^=h,this._lBlock^=h<<b}function E(b,D){var h=(this._rBlock>>>b^this._lBlock)&D;this._lBlock^=h,this._rBlock^=h<<b}s.DES=x._createHelper(v);var p=d.TripleDES=x.extend({_doReset:function(){var b=this._key,D=b.words;if(D.length!==2&&D.length!==4&&D.length<6)throw new Error("Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.");var h=D.slice(0,2),F=D.length<4?D.slice(0,2):D.slice(2,4),K=D.length<6?D.slice(0,2):D.slice(4,6);this._des1=v.createEncryptor(c.create(h)),this._des2=v.createEncryptor(c.create(F)),this._des3=v.createEncryptor(c.create(K))},encryptBlock:function(b,D){this._des1.encryptBlock(b,D),this._des2.decryptBlock(b,D),this._des3.encryptBlock(b,D)},decryptBlock:function(b,D){this._des3.decryptBlock(b,D),this._des2.encryptBlock(b,D),this._des1.decryptBlock(b,D)},keySize:192/32,ivSize:64/32,blockSize:64/32});s.TripleDES=x._createHelper(p)})(),B.TripleDES})});var $a=hA((G0,ja)=>{(function(B,s,f){typeof G0=="object"?ja.exports=G0=s(QA(),Ar(),er(),De(),RA()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],s):s(B.CryptoJS)})(G0,function(B){return(function(){var s=B,f=s.lib,c=f.StreamCipher,x=s.algo,d=x.RC4=c.extend({_doReset:function(){for(var w=this._key,U=w.words,u=w.sigBytes,v=this._S=[],C=0;C<256;C++)v[C]=C;for(var C=0,E=0;C<256;C++){var p=C%u,b=U[p>>>2]>>>24-p%4*8&255;E=(E+v[C]+b)%256;var D=v[C];v[C]=v[E],v[E]=D}this._i=this._j=0},_doProcessBlock:function(w,U){w[U]^=Q.call(this)},keySize:256/32,ivSize:0});function Q(){for(var w=this._S,U=this._i,u=this._j,v=0,C=0;C<4;C++){U=(U+1)%256,u=(u+w[U])%256;var E=w[U];w[U]=w[u],w[u]=E,v|=w[(w[U]+w[u])%256]<<24-C*8}return this._i=U,this._j=u,v}s.RC4=c._createHelper(d);var o=x.RC4Drop=d.extend({cfg:d.cfg.extend({drop:192}),_doReset:function(){d._doReset.call(this);for(var w=this.cfg.drop;w>0;w--)Q.call(this)}});s.RC4Drop=c._createHelper(o)})(),B.RC4})});var eB=hA((N0,AB)=>{(function(B,s,f){typeof N0=="object"?AB.exports=N0=s(QA(),Ar(),er(),De(),RA()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],s):s(B.CryptoJS)})(N0,function(B){return(function(){var s=B,f=s.lib,c=f.StreamCipher,x=s.algo,d=[],Q=[],o=[],w=x.Rabbit=c.extend({_doReset:function(){for(var u=this._key.words,v=this.cfg.iv,C=0;C<4;C++)u[C]=(u[C]<<8|u[C]>>>24)&16711935|(u[C]<<24|u[C]>>>8)&4278255360;var E=this._X=[u[0],u[3]<<16|u[2]>>>16,u[1],u[0]<<16|u[3]>>>16,u[2],u[1]<<16|u[0]>>>16,u[3],u[2]<<16|u[1]>>>16],p=this._C=[u[2]<<16|u[2]>>>16,u[0]&4294901760|u[1]&65535,u[3]<<16|u[3]>>>16,u[1]&4294901760|u[2]&65535,u[0]<<16|u[0]>>>16,u[2]&4294901760|u[3]&65535,u[1]<<16|u[1]>>>16,u[3]&4294901760|u[0]&65535];this._b=0;for(var C=0;C<4;C++)U.call(this);for(var C=0;C<8;C++)p[C]^=E[C+4&7];if(v){var b=v.words,D=b[0],h=b[1],F=(D<<8|D>>>24)&16711935|(D<<24|D>>>8)&4278255360,K=(h<<8|h>>>24)&16711935|(h<<24|h>>>8)&4278255360,I=F>>>16|K&4294901760,L=K<<16|F&65535;p[0]^=F,p[1]^=I,p[2]^=K,p[3]^=L,p[4]^=F,p[5]^=I,p[6]^=K,p[7]^=L;for(var C=0;C<4;C++)U.call(this)}},_doProcessBlock:function(u,v){var C=this._X;U.call(this),d[0]=C[0]^C[5]>>>16^C[3]<<16,d[1]=C[2]^C[7]>>>16^C[5]<<16,d[2]=C[4]^C[1]>>>16^C[7]<<16,d[3]=C[6]^C[3]>>>16^C[1]<<16;for(var E=0;E<4;E++)d[E]=(d[E]<<8|d[E]>>>24)&16711935|(d[E]<<24|d[E]>>>8)&4278255360,u[v+E]^=d[E]},blockSize:128/32,ivSize:64/32});function U(){for(var u=this._X,v=this._C,C=0;C<8;C++)Q[C]=v[C];v[0]=v[0]+1295307597+this._b|0,v[1]=v[1]+3545052371+(v[0]>>>0<Q[0]>>>0?1:0)|0,v[2]=v[2]+886263092+(v[1]>>>0<Q[1]>>>0?1:0)|0,v[3]=v[3]+1295307597+(v[2]>>>0<Q[2]>>>0?1:0)|0,v[4]=v[4]+3545052371+(v[3]>>>0<Q[3]>>>0?1:0)|0,v[5]=v[5]+886263092+(v[4]>>>0<Q[4]>>>0?1:0)|0,v[6]=v[6]+1295307597+(v[5]>>>0<Q[5]>>>0?1:0)|0,v[7]=v[7]+3545052371+(v[6]>>>0<Q[6]>>>0?1:0)|0,this._b=v[7]>>>0<Q[7]>>>0?1:0;for(var C=0;C<8;C++){var E=u[C]+v[C],p=E&65535,b=E>>>16,D=((p*p>>>17)+p*b>>>15)+b*b,h=((E&4294901760)*E|0)+((E&65535)*E|0);o[C]=D^h}u[0]=o[0]+(o[7]<<16|o[7]>>>16)+(o[6]<<16|o[6]>>>16)|0,u[1]=o[1]+(o[0]<<8|o[0]>>>24)+o[7]|0,u[2]=o[2]+(o[1]<<16|o[1]>>>16)+(o[0]<<16|o[0]>>>16)|0,u[3]=o[3]+(o[2]<<8|o[2]>>>24)+o[1]|0,u[4]=o[4]+(o[3]<<16|o[3]>>>16)+(o[2]<<16|o[2]>>>16)|0,u[5]=o[5]+(o[4]<<8|o[4]>>>24)+o[3]|0,u[6]=o[6]+(o[5]<<16|o[5]>>>16)+(o[4]<<16|o[4]>>>16)|0,u[7]=o[7]+(o[6]<<8|o[6]>>>24)+o[5]|0}s.Rabbit=c._createHelper(w)})(),B.Rabbit})});var tB=hA((V0,rB)=>{(function(B,s,f){typeof V0=="object"?rB.exports=V0=s(QA(),Ar(),er(),De(),RA()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],s):s(B.CryptoJS)})(V0,function(B){return(function(){var s=B,f=s.lib,c=f.StreamCipher,x=s.algo,d=[],Q=[],o=[],w=x.RabbitLegacy=c.extend({_doReset:function(){var u=this._key.words,v=this.cfg.iv,C=this._X=[u[0],u[3]<<16|u[2]>>>16,u[1],u[0]<<16|u[3]>>>16,u[2],u[1]<<16|u[0]>>>16,u[3],u[2]<<16|u[1]>>>16],E=this._C=[u[2]<<16|u[2]>>>16,u[0]&4294901760|u[1]&65535,u[3]<<16|u[3]>>>16,u[1]&4294901760|u[2]&65535,u[0]<<16|u[0]>>>16,u[2]&4294901760|u[3]&65535,u[1]<<16|u[1]>>>16,u[3]&4294901760|u[0]&65535];this._b=0;for(var p=0;p<4;p++)U.call(this);for(var p=0;p<8;p++)E[p]^=C[p+4&7];if(v){var b=v.words,D=b[0],h=b[1],F=(D<<8|D>>>24)&16711935|(D<<24|D>>>8)&4278255360,K=(h<<8|h>>>24)&16711935|(h<<24|h>>>8)&4278255360,I=F>>>16|K&4294901760,L=K<<16|F&65535;E[0]^=F,E[1]^=I,E[2]^=K,E[3]^=L,E[4]^=F,E[5]^=I,E[6]^=K,E[7]^=L;for(var p=0;p<4;p++)U.call(this)}},_doProcessBlock:function(u,v){var C=this._X;U.call(this),d[0]=C[0]^C[5]>>>16^C[3]<<16,d[1]=C[2]^C[7]>>>16^C[5]<<16,d[2]=C[4]^C[1]>>>16^C[7]<<16,d[3]=C[6]^C[3]>>>16^C[1]<<16;for(var E=0;E<4;E++)d[E]=(d[E]<<8|d[E]>>>24)&16711935|(d[E]<<24|d[E]>>>8)&4278255360,u[v+E]^=d[E]},blockSize:128/32,ivSize:64/32});function U(){for(var u=this._X,v=this._C,C=0;C<8;C++)Q[C]=v[C];v[0]=v[0]+1295307597+this._b|0,v[1]=v[1]+3545052371+(v[0]>>>0<Q[0]>>>0?1:0)|0,v[2]=v[2]+886263092+(v[1]>>>0<Q[1]>>>0?1:0)|0,v[3]=v[3]+1295307597+(v[2]>>>0<Q[2]>>>0?1:0)|0,v[4]=v[4]+3545052371+(v[3]>>>0<Q[3]>>>0?1:0)|0,v[5]=v[5]+886263092+(v[4]>>>0<Q[4]>>>0?1:0)|0,v[6]=v[6]+1295307597+(v[5]>>>0<Q[5]>>>0?1:0)|0,v[7]=v[7]+3545052371+(v[6]>>>0<Q[6]>>>0?1:0)|0,this._b=v[7]>>>0<Q[7]>>>0?1:0;for(var C=0;C<8;C++){var E=u[C]+v[C],p=E&65535,b=E>>>16,D=((p*p>>>17)+p*b>>>15)+b*b,h=((E&4294901760)*E|0)+((E&65535)*E|0);o[C]=D^h}u[0]=o[0]+(o[7]<<16|o[7]>>>16)+(o[6]<<16|o[6]>>>16)|0,u[1]=o[1]+(o[0]<<8|o[0]>>>24)+o[7]|0,u[2]=o[2]+(o[1]<<16|o[1]>>>16)+(o[0]<<16|o[0]>>>16)|0,u[3]=o[3]+(o[2]<<8|o[2]>>>24)+o[1]|0,u[4]=o[4]+(o[3]<<16|o[3]>>>16)+(o[2]<<16|o[2]>>>16)|0,u[5]=o[5]+(o[4]<<8|o[4]>>>24)+o[3]|0,u[6]=o[6]+(o[5]<<16|o[5]>>>16)+(o[4]<<16|o[4]>>>16)|0,u[7]=o[7]+(o[6]<<8|o[6]>>>24)+o[5]|0}s.RabbitLegacy=c._createHelper(w)})(),B.RabbitLegacy})});var iB=hA((P0,nB)=>{(function(B,s,f){typeof P0=="object"?nB.exports=P0=s(QA(),Ar(),er(),De(),RA()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],s):s(B.CryptoJS)})(P0,function(B){return(function(){var s=B,f=s.lib,c=f.BlockCipher,x=s.algo;let d=16,Q=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],o=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]];var w={pbox:[],sbox:[]};function U(p,b){let D=b>>24&255,h=b>>16&255,F=b>>8&255,K=b&255,I=p.sbox[0][D]+p.sbox[1][h];return I=I^p.sbox[2][F],I=I+p.sbox[3][K],I}function u(p,b,D){let h=b,F=D,K;for(let I=0;I<d;++I)h=h^p.pbox[I],F=U(p,h)^F,K=h,h=F,F=K;return K=h,h=F,F=K,F=F^p.pbox[d],h=h^p.pbox[d+1],{left:h,right:F}}function v(p,b,D){let h=b,F=D,K;for(let I=d+1;I>1;--I)h=h^p.pbox[I],F=U(p,h)^F,K=h,h=F,F=K;return K=h,h=F,F=K,F=F^p.pbox[1],h=h^p.pbox[0],{left:h,right:F}}function C(p,b,D){for(let L=0;L<4;L++){p.sbox[L]=[];for(let S=0;S<256;S++)p.sbox[L][S]=o[L][S]}let h=0;for(let L=0;L<d+2;L++)p.pbox[L]=Q[L]^b[h],h++,h>=D&&(h=0);let F=0,K=0,I=0;for(let L=0;L<d+2;L+=2)I=u(p,F,K),F=I.left,K=I.right,p.pbox[L]=F,p.pbox[L+1]=K;for(let L=0;L<4;L++)for(let S=0;S<256;S+=2)I=u(p,F,K),F=I.left,K=I.right,p.sbox[L][S]=F,p.sbox[L][S+1]=K;return!0}var E=x.Blowfish=c.extend({_doReset:function(){if(this._keyPriorReset!==this._key){var p=this._keyPriorReset=this._key,b=p.words,D=p.sigBytes/4;C(w,b,D)}},encryptBlock:function(p,b){var D=u(w,p[b],p[b+1]);p[b]=D.left,p[b+1]=D.right},decryptBlock:function(p,b){var D=v(w,p[b],p[b+1]);p[b]=D.left,p[b+1]=D.right},blockSize:64/32,keySize:128/32,ivSize:64/32});s.Blowfish=c._createHelper(E)})(),B.Blowfish})});var aB=hA((X0,sB)=>{(function(B,s,f){typeof X0=="object"?sB.exports=X0=s(QA(),ut(),ta(),ia(),Ar(),Ba(),er(),Gn(),h0(),ua(),Nn(),Ca(),xa(),da(),p0(),va(),De(),RA(),ya(),Ia(),Da(),La(),_a(),Oa(),Ma(),Ga(),Va(),Xa(),Ja(),qa(),za(),$a(),eB(),tB(),iB()):typeof define=="function"&&define.amd?define(["./core","./x64-core","./lib-typedarrays","./enc-utf16","./enc-base64","./enc-base64url","./md5","./sha1","./sha256","./sha224","./sha512","./sha384","./sha3","./ripemd160","./hmac","./pbkdf2","./evpkdf","./cipher-core","./mode-cfb","./mode-ctr","./mode-ctr-gladman","./mode-ofb","./mode-ecb","./pad-ansix923","./pad-iso10126","./pad-iso97971","./pad-zeropadding","./pad-nopadding","./format-hex","./aes","./tripledes","./rc4","./rabbit","./rabbit-legacy","./blowfish"],s):B.CryptoJS=s(B.CryptoJS)})(X0,function(B){return B})});var BB=hA((Vn,Pn)=>{(function(B,s){typeof Vn=="object"&&typeof Pn!="undefined"?Pn.exports=s():typeof define=="function"&&define.amd?define(s):(B=typeof globalThis!="undefined"?globalThis:B||self,B.html2canvas=s())})(Vn,(function(){"use strict";var B=function(e,A){return B=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])},B(e,A)};function s(e,A){if(typeof A!="function"&&A!==null)throw new TypeError("Class extends value "+String(A)+" is not a constructor or null");B(e,A);function t(){this.constructor=e}e.prototype=A===null?Object.create(A):(t.prototype=A.prototype,new t)}var f=function(){return f=Object.assign||function(A){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(A[i]=t[i])}return A},f.apply(this,arguments)};function c(e,A,t,r){function n(i){return i instanceof t?i:new t(function(a){a(i)})}return new(t||(t=Promise))(function(i,a){function g(y){try{H(r.next(y))}catch(m){a(m)}}function l(y){try{H(r.throw(y))}catch(m){a(m)}}function H(y){y.done?i(y.value):n(y.value).then(g,l)}H((r=r.apply(e,A||[])).next())})}function x(e,A){var t={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},r,n,i,a;return a={next:g(0),throw:g(1),return:g(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function g(H){return function(y){return l([H,y])}}function l(H){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,n&&(i=H[0]&2?n.return:H[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,H[1])).done)return i;switch(n=0,i&&(H=[H[0]&2,i.value]),H[0]){case 0:case 1:i=H;break;case 4:return t.label++,{value:H[1],done:!1};case 5:t.label++,n=H[1],H=[0];continue;case 7:H=t.ops.pop(),t.trys.pop();continue;default:if(i=t.trys,!(i=i.length>0&&i[i.length-1])&&(H[0]===6||H[0]===2)){t=0;continue}if(H[0]===3&&(!i||H[1]>i[0]&&H[1]<i[3])){t.label=H[1];break}if(H[0]===6&&t.label<i[1]){t.label=i[1],i=H;break}if(i&&t.label<i[2]){t.label=i[2],t.ops.push(H);break}i[2]&&t.ops.pop(),t.trys.pop();continue}H=A.call(e,t)}catch(y){H=[6,y],n=0}finally{r=i=0}if(H[0]&5)throw H[1];return{value:H[0]?H[1]:void 0,done:!0}}}function d(e,A,t){if(t||arguments.length===2)for(var r=0,n=A.length,i;r<n;r++)(i||!(r in A))&&(i||(i=Array.prototype.slice.call(A,0,r)),i[r]=A[r]);return e.concat(i||A)}for(var Q=(function(){function e(A,t,r,n){this.left=A,this.top=t,this.width=r,this.height=n}return e.prototype.add=function(A,t,r,n){return new e(this.left+A,this.top+t,this.width+r,this.height+n)},e.fromClientRect=function(A,t){return new e(t.left+A.windowBounds.left,t.top+A.windowBounds.top,t.width,t.height)},e.fromDOMRectList=function(A,t){var r=Array.from(t).find(function(n){return n.width!==0});return r?new e(r.left+A.windowBounds.left,r.top+A.windowBounds.top,r.width,r.height):e.EMPTY},e.EMPTY=new e(0,0,0,0),e})(),o=function(e,A){return Q.fromClientRect(e,A.getBoundingClientRect())},w=function(e){var A=e.body,t=e.documentElement;if(!A||!t)throw new Error("Unable to get document size");var r=Math.max(Math.max(A.scrollWidth,t.scrollWidth),Math.max(A.offsetWidth,t.offsetWidth),Math.max(A.clientWidth,t.clientWidth)),n=Math.max(Math.max(A.scrollHeight,t.scrollHeight),Math.max(A.offsetHeight,t.offsetHeight),Math.max(A.clientHeight,t.clientHeight));return new Q(0,0,r,n)},U=function(e){for(var A=[],t=0,r=e.length;t<r;){var n=e.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var i=e.charCodeAt(t++);(i&64512)===56320?A.push(((n&1023)<<10)+(i&1023)+65536):(A.push(n),t--)}else A.push(n)}return A},u=function(){for(var e=[],A=0;A<arguments.length;A++)e[A]=arguments[A];if(String.fromCodePoint)return String.fromCodePoint.apply(String,e);var t=e.length;if(!t)return"";for(var r=[],n=-1,i="";++n<t;){var a=e[n];a<=65535?r.push(a):(a-=65536,r.push((a>>10)+55296,a%1024+56320)),(n+1===t||r.length>16384)&&(i+=String.fromCharCode.apply(String,r),r.length=0)}return i},v="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",C=typeof Uint8Array=="undefined"?[]:new Uint8Array(256),E=0;E<v.length;E++)C[v.charCodeAt(E)]=E;for(var p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",b=typeof Uint8Array=="undefined"?[]:new Uint8Array(256),D=0;D<p.length;D++)b[p.charCodeAt(D)]=D;for(var h=function(e){var A=e.length*.75,t=e.length,r,n=0,i,a,g,l;e[e.length-1]==="="&&(A--,e[e.length-2]==="="&&A--);var H=typeof ArrayBuffer!="undefined"&&typeof Uint8Array!="undefined"&&typeof Uint8Array.prototype.slice!="undefined"?new ArrayBuffer(A):new Array(A),y=Array.isArray(H)?H:new Uint8Array(H);for(r=0;r<t;r+=4)i=b[e.charCodeAt(r)],a=b[e.charCodeAt(r+1)],g=b[e.charCodeAt(r+2)],l=b[e.charCodeAt(r+3)],y[n++]=i<<2|a>>4,y[n++]=(a&15)<<4|g>>2,y[n++]=(g&3)<<6|l&63;return H},F=function(e){for(var A=e.length,t=[],r=0;r<A;r+=2)t.push(e[r+1]<<8|e[r]);return t},K=function(e){for(var A=e.length,t=[],r=0;r<A;r+=4)t.push(e[r+3]<<24|e[r+2]<<16|e[r+1]<<8|e[r]);return t},I=5,L=11,S=2,Z=L-I,J=65536>>I,z=1<<I,eA=z-1,O=1024>>I,Y=J+O,rA=Y,X=32,BA=rA+X,aA=65536>>L,lA=1<<Z,xA=lA-1,R=function(e,A,t){return e.slice?e.slice(A,t):new Uint16Array(Array.prototype.slice.call(e,A,t))},P=function(e,A,t){return e.slice?e.slice(A,t):new Uint32Array(Array.prototype.slice.call(e,A,t))},W=function(e,A){var t=h(e),r=Array.isArray(t)?K(t):new Uint32Array(t),n=Array.isArray(t)?F(t):new Uint16Array(t),i=24,a=R(n,i/2,r[4]/2),g=r[5]===2?R(n,(i+r[4])/2):P(r,Math.ceil((i+r[4])/4));return new V(r[0],r[1],r[2],r[3],a,g)},V=(function(){function e(A,t,r,n,i,a){this.initialValue=A,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=i,this.data=a}return e.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return t=this.index[A>>I],t=(t<<S)+(A&eA),this.data[t];if(A<=65535)return t=this.index[J+(A-55296>>I)],t=(t<<S)+(A&eA),this.data[t];if(A<this.highStart)return t=BA-aA+(A>>L),t=this.index[t],t+=A>>I&xA,t=this.index[t],t=(t<<S)+(A&eA),this.data[t];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},e})(),mA="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",pA=typeof Uint8Array=="undefined"?[]:new Uint8Array(256),TA=0;TA<mA.length;TA++)pA[mA.charCodeAt(TA)]=TA;var gA="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA==",Se=50,_e=1,vr=2,Te=3,ne=4,PA=5,sr=7,Oe=8,ar=9,qA=10,Br=11,Re=12,XA=13,ZA=14,zA=15,Me=16,or=17,ae=18,cr=19,pt=20,pr=21,ke=22,he=23,Be=24,WA=25,Ge=26,Ne=27,Ve=28,rn=29,xe=30,tn=31,fr=32,Er=33,Hr=34,Zr=35,zr=36,lr=37,yr=38,mr=39,Ir=40,br=41,Et=42,Ht=43,JA=[9001,65288],ue="!",CA="\xD7",Dr="\xF7",nn=W(gA),He=[xe,zr],sn=[_e,vr,Te,PA],oi=[qA,Oe],ci=[Ne,Ge],DB=sn.concat(oi),fi=[yr,mr,Ir,Hr,Zr],KB=[zA,XA],LB=function(e,A){A===void 0&&(A="strict");var t=[],r=[],n=[];return e.forEach(function(i,a){var g=nn.get(i);if(g>Se?(n.push(!0),g-=Se):n.push(!1),["normal","auto","loose"].indexOf(A)!==-1&&[8208,8211,12316,12448].indexOf(i)!==-1)return r.push(a),t.push(Me);if(g===ne||g===Br){if(a===0)return r.push(a),t.push(xe);var l=t[a-1];return DB.indexOf(l)===-1?(r.push(r[a-1]),t.push(l)):(r.push(a),t.push(xe))}if(r.push(a),g===tn)return t.push(A==="strict"?pr:lr);if(g===Et||g===rn)return t.push(xe);if(g===Ht)return i>=131072&&i<=196605||i>=196608&&i<=262141?t.push(lr):t.push(xe);t.push(g)}),[r,t,n]},an=function(e,A,t,r){var n=r[t];if(Array.isArray(e)?e.indexOf(n)!==-1:e===n)for(var i=t;i<=r.length;){i++;var a=r[i];if(a===A)return!0;if(a!==qA)break}if(n===qA)for(var i=t;i>0;){i--;var g=r[i];if(Array.isArray(e)?e.indexOf(g)!==-1:e===g)for(var l=t;l<=r.length;){l++;var a=r[l];if(a===A)return!0;if(a!==qA)break}if(g!==qA)break}return!1},li=function(e,A){for(var t=e;t>=0;){var r=A[t];if(r===qA)t--;else return r}return 0},SB=function(e,A,t,r,n){if(t[r]===0)return CA;var i=r-1;if(Array.isArray(n)&&n[i]===!0)return CA;var a=i-1,g=i+1,l=A[i],H=a>=0?A[a]:0,y=A[g];if(l===vr&&y===Te)return CA;if(sn.indexOf(l)!==-1)return ue;if(sn.indexOf(y)!==-1||oi.indexOf(y)!==-1)return CA;if(li(i,A)===Oe)return Dr;if(nn.get(e[i])===Br||(l===fr||l===Er)&&nn.get(e[g])===Br||l===sr||y===sr||l===ar||[qA,XA,zA].indexOf(l)===-1&&y===ar||[or,ae,cr,Be,Ve].indexOf(y)!==-1||li(i,A)===ke||an(he,ke,i,A)||an([or,ae],pr,i,A)||an(Re,Re,i,A))return CA;if(l===qA)return Dr;if(l===he||y===he)return CA;if(y===Me||l===Me)return Dr;if([XA,zA,pr].indexOf(y)!==-1||l===ZA||H===zr&&KB.indexOf(l)!==-1||l===Ve&&y===zr||y===pt||He.indexOf(y)!==-1&&l===WA||He.indexOf(l)!==-1&&y===WA||l===Ne&&[lr,fr,Er].indexOf(y)!==-1||[lr,fr,Er].indexOf(l)!==-1&&y===Ge||He.indexOf(l)!==-1&&ci.indexOf(y)!==-1||ci.indexOf(l)!==-1&&He.indexOf(y)!==-1||[Ne,Ge].indexOf(l)!==-1&&(y===WA||[ke,zA].indexOf(y)!==-1&&A[g+1]===WA)||[ke,zA].indexOf(l)!==-1&&y===WA||l===WA&&[WA,Ve,Be].indexOf(y)!==-1)return CA;if([WA,Ve,Be,or,ae].indexOf(y)!==-1)for(var m=i;m>=0;){var _=A[m];if(_===WA)return CA;if([Ve,Be].indexOf(_)!==-1)m--;else break}if([Ne,Ge].indexOf(y)!==-1)for(var m=[or,ae].indexOf(l)!==-1?a:i;m>=0;){var _=A[m];if(_===WA)return CA;if([Ve,Be].indexOf(_)!==-1)m--;else break}if(yr===l&&[yr,mr,Hr,Zr].indexOf(y)!==-1||[mr,Hr].indexOf(l)!==-1&&[mr,Ir].indexOf(y)!==-1||[Ir,Zr].indexOf(l)!==-1&&y===Ir||fi.indexOf(l)!==-1&&[pt,Ge].indexOf(y)!==-1||fi.indexOf(y)!==-1&&l===Ne||He.indexOf(l)!==-1&&He.indexOf(y)!==-1||l===Be&&He.indexOf(y)!==-1||He.concat(WA).indexOf(l)!==-1&&y===ke&&JA.indexOf(e[g])===-1||He.concat(WA).indexOf(y)!==-1&&l===ae)return CA;if(l===br&&y===br){for(var tA=t[i],q=1;tA>0&&(tA--,A[tA]===br);)q++;if(q%2!==0)return CA}return l===fr&&y===Er?CA:Dr},_B=function(e,A){A||(A={lineBreak:"normal",wordBreak:"normal"});var t=LB(e,A.lineBreak),r=t[0],n=t[1],i=t[2];(A.wordBreak==="break-all"||A.wordBreak==="break-word")&&(n=n.map(function(g){return[WA,xe,Et].indexOf(g)!==-1?lr:g}));var a=A.wordBreak==="keep-all"?i.map(function(g,l){return g&&e[l]>=19968&&e[l]<=40959}):void 0;return[r,n,a]},TB=(function(){function e(A,t,r,n){this.codePoints=A,this.required=t===ue,this.start=r,this.end=n}return e.prototype.slice=function(){return u.apply(void 0,this.codePoints.slice(this.start,this.end))},e})(),OB=function(e,A){var t=U(e),r=_B(t,A),n=r[0],i=r[1],a=r[2],g=t.length,l=0,H=0;return{next:function(){if(H>=g)return{done:!0,value:null};for(var y=CA;H<g&&(y=SB(t,i,n,++H,a))===CA;);if(y!==CA||H===g){var m=new TB(t,y,l,H);return l=H,{value:m,done:!1}}return{done:!0,value:null}}}},RB=1,MB=2,jr=4,ui=8,yt=10,gi=47,$r=92,kB=9,GB=32,mt=34,At=61,NB=35,VB=36,PB=37,It=39,bt=40,et=41,XB=95,jA=45,WB=33,JB=60,YB=62,qB=64,ZB=91,zB=93,jB=61,$B=123,Dt=63,Ao=125,wi=124,eo=126,ro=128,Ci=65533,Bn=42,ur=43,to=44,no=58,io=59,rt=46,so=0,ao=8,Bo=11,oo=14,co=31,fo=127,Qe=-1,hi=48,xi=97,Qi=101,lo=102,uo=117,go=122,di=65,Fi=69,Ui=70,wo=85,Co=90,VA=function(e){return e>=hi&&e<=57},ho=function(e){return e>=55296&&e<=57343},Kr=function(e){return VA(e)||e>=di&&e<=Ui||e>=xi&&e<=lo},xo=function(e){return e>=xi&&e<=go},Qo=function(e){return e>=di&&e<=Co},Fo=function(e){return xo(e)||Qo(e)},Uo=function(e){return e>=ro},Kt=function(e){return e===yt||e===kB||e===GB},Lt=function(e){return Fo(e)||Uo(e)||e===XB},vi=function(e){return Lt(e)||VA(e)||e===jA},vo=function(e){return e>=so&&e<=ao||e===Bo||e>=oo&&e<=co||e===fo},Pe=function(e,A){return e!==$r?!1:A!==yt},St=function(e,A,t){return e===jA?Lt(A)||Pe(A,t):Lt(e)?!0:!!(e===$r&&Pe(e,A))},on=function(e,A,t){return e===ur||e===jA?VA(A)?!0:A===rt&&VA(t):VA(e===rt?A:e)},po=function(e){var A=0,t=1;(e[A]===ur||e[A]===jA)&&(e[A]===jA&&(t=-1),A++);for(var r=[];VA(e[A]);)r.push(e[A++]);var n=r.length?parseInt(u.apply(void 0,r),10):0;e[A]===rt&&A++;for(var i=[];VA(e[A]);)i.push(e[A++]);var a=i.length,g=a?parseInt(u.apply(void 0,i),10):0;(e[A]===Fi||e[A]===Qi)&&A++;var l=1;(e[A]===ur||e[A]===jA)&&(e[A]===jA&&(l=-1),A++);for(var H=[];VA(e[A]);)H.push(e[A++]);var y=H.length?parseInt(u.apply(void 0,H),10):0;return t*(n+g*Math.pow(10,-a))*Math.pow(10,l*y)},Eo={type:2},Ho={type:3},yo={type:4},mo={type:13},Io={type:8},bo={type:21},Do={type:9},Ko={type:10},Lo={type:11},So={type:12},_o={type:14},_t={type:23},To={type:1},Oo={type:25},Ro={type:24},Mo={type:26},ko={type:27},Go={type:28},No={type:29},Vo={type:31},cn={type:32},pi=(function(){function e(){this._value=[]}return e.prototype.write=function(A){this._value=this._value.concat(U(A))},e.prototype.read=function(){for(var A=[],t=this.consumeToken();t!==cn;)A.push(t),t=this.consumeToken();return A},e.prototype.consumeToken=function(){var A=this.consumeCodePoint();switch(A){case mt:return this.consumeStringToken(mt);case NB:var t=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);if(vi(t)||Pe(r,n)){var i=St(t,r,n)?MB:RB,a=this.consumeName();return{type:5,value:a,flags:i}}break;case VB:if(this.peekCodePoint(0)===At)return this.consumeCodePoint(),mo;break;case It:return this.consumeStringToken(It);case bt:return Eo;case et:return Ho;case Bn:if(this.peekCodePoint(0)===At)return this.consumeCodePoint(),_o;break;case ur:if(on(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case to:return yo;case jA:var g=A,l=this.peekCodePoint(0),H=this.peekCodePoint(1);if(on(g,l,H))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(St(g,l,H))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(l===jA&&H===YB)return this.consumeCodePoint(),this.consumeCodePoint(),Ro;break;case rt:if(on(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case gi:if(this.peekCodePoint(0)===Bn)for(this.consumeCodePoint();;){var y=this.consumeCodePoint();if(y===Bn&&(y=this.consumeCodePoint(),y===gi))return this.consumeToken();if(y===Qe)return this.consumeToken()}break;case no:return Mo;case io:return ko;case JB:if(this.peekCodePoint(0)===WB&&this.peekCodePoint(1)===jA&&this.peekCodePoint(2)===jA)return this.consumeCodePoint(),this.consumeCodePoint(),Oo;break;case qB:var m=this.peekCodePoint(0),_=this.peekCodePoint(1),tA=this.peekCodePoint(2);if(St(m,_,tA)){var a=this.consumeName();return{type:7,value:a}}break;case ZB:return Go;case $r:if(Pe(A,this.peekCodePoint(0)))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();break;case zB:return No;case jB:if(this.peekCodePoint(0)===At)return this.consumeCodePoint(),Io;break;case $B:return Lo;case Ao:return So;case uo:case wo:var q=this.peekCodePoint(0),j=this.peekCodePoint(1);return q===ur&&(Kr(j)||j===Dt)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken();case wi:if(this.peekCodePoint(0)===At)return this.consumeCodePoint(),Do;if(this.peekCodePoint(0)===wi)return this.consumeCodePoint(),bo;break;case eo:if(this.peekCodePoint(0)===At)return this.consumeCodePoint(),Ko;break;case Qe:return cn}return Kt(A)?(this.consumeWhiteSpace(),Vo):VA(A)?(this.reconsumeCodePoint(A),this.consumeNumericToken()):Lt(A)?(this.reconsumeCodePoint(A),this.consumeIdentLikeToken()):{type:6,value:u(A)}},e.prototype.consumeCodePoint=function(){var A=this._value.shift();return typeof A=="undefined"?-1:A},e.prototype.reconsumeCodePoint=function(A){this._value.unshift(A)},e.prototype.peekCodePoint=function(A){return A>=this._value.length?-1:this._value[A]},e.prototype.consumeUnicodeRangeToken=function(){for(var A=[],t=this.consumeCodePoint();Kr(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();for(var r=!1;t===Dt&&A.length<6;)A.push(t),t=this.consumeCodePoint(),r=!0;if(r){var n=parseInt(u.apply(void 0,A.map(function(l){return l===Dt?hi:l})),16),i=parseInt(u.apply(void 0,A.map(function(l){return l===Dt?Ui:l})),16);return{type:30,start:n,end:i}}var a=parseInt(u.apply(void 0,A),16);if(this.peekCodePoint(0)===jA&&Kr(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();for(var g=[];Kr(t)&&g.length<6;)g.push(t),t=this.consumeCodePoint();var i=parseInt(u.apply(void 0,g),16);return{type:30,start:a,end:i}}else return{type:30,start:a,end:a}},e.prototype.consumeIdentLikeToken=function(){var A=this.consumeName();return A.toLowerCase()==="url"&&this.peekCodePoint(0)===bt?(this.consumeCodePoint(),this.consumeUrlToken()):this.peekCodePoint(0)===bt?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}},e.prototype.consumeUrlToken=function(){var A=[];if(this.consumeWhiteSpace(),this.peekCodePoint(0)===Qe)return{type:22,value:""};var t=this.peekCodePoint(0);if(t===It||t===mt){var r=this.consumeStringToken(this.consumeCodePoint());return r.type===0&&(this.consumeWhiteSpace(),this.peekCodePoint(0)===Qe||this.peekCodePoint(0)===et)?(this.consumeCodePoint(),{type:22,value:r.value}):(this.consumeBadUrlRemnants(),_t)}for(;;){var n=this.consumeCodePoint();if(n===Qe||n===et)return{type:22,value:u.apply(void 0,A)};if(Kt(n))return this.consumeWhiteSpace(),this.peekCodePoint(0)===Qe||this.peekCodePoint(0)===et?(this.consumeCodePoint(),{type:22,value:u.apply(void 0,A)}):(this.consumeBadUrlRemnants(),_t);if(n===mt||n===It||n===bt||vo(n))return this.consumeBadUrlRemnants(),_t;if(n===$r)if(Pe(n,this.peekCodePoint(0)))A.push(this.consumeEscapedCodePoint());else return this.consumeBadUrlRemnants(),_t;else A.push(n)}},e.prototype.consumeWhiteSpace=function(){for(;Kt(this.peekCodePoint(0));)this.consumeCodePoint()},e.prototype.consumeBadUrlRemnants=function(){for(;;){var A=this.consumeCodePoint();if(A===et||A===Qe)return;Pe(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},e.prototype.consumeStringSlice=function(A){for(var t=5e4,r="";A>0;){var n=Math.min(t,A);r+=u.apply(void 0,this._value.splice(0,n)),A-=n}return this._value.shift(),r},e.prototype.consumeStringToken=function(A){var t="",r=0;do{var n=this._value[r];if(n===Qe||n===void 0||n===A)return t+=this.consumeStringSlice(r),{type:0,value:t};if(n===yt)return this._value.splice(0,r),To;if(n===$r){var i=this._value[r+1];i!==Qe&&i!==void 0&&(i===yt?(t+=this.consumeStringSlice(r),r=-1,this._value.shift()):Pe(n,i)&&(t+=this.consumeStringSlice(r),t+=u(this.consumeEscapedCodePoint()),r=-1))}r++}while(!0)},e.prototype.consumeNumber=function(){var A=[],t=jr,r=this.peekCodePoint(0);for((r===ur||r===jA)&&A.push(this.consumeCodePoint());VA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());r=this.peekCodePoint(0);var n=this.peekCodePoint(1);if(r===rt&&VA(n))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=ui;VA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());r=this.peekCodePoint(0),n=this.peekCodePoint(1);var i=this.peekCodePoint(2);if((r===Fi||r===Qi)&&((n===ur||n===jA)&&VA(i)||VA(n)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=ui;VA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());return[po(A),t]},e.prototype.consumeNumericToken=function(){var A=this.consumeNumber(),t=A[0],r=A[1],n=this.peekCodePoint(0),i=this.peekCodePoint(1),a=this.peekCodePoint(2);if(St(n,i,a)){var g=this.consumeName();return{type:15,number:t,flags:r,unit:g}}return n===PB?(this.consumeCodePoint(),{type:16,number:t,flags:r}):{type:17,number:t,flags:r}},e.prototype.consumeEscapedCodePoint=function(){var A=this.consumeCodePoint();if(Kr(A)){for(var t=u(A);Kr(this.peekCodePoint(0))&&t.length<6;)t+=u(this.consumeCodePoint());Kt(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(t,16);return r===0||ho(r)||r>1114111?Ci:r}return A===Qe?Ci:A},e.prototype.consumeName=function(){for(var A="";;){var t=this.consumeCodePoint();if(vi(t))A+=u(t);else if(Pe(t,this.peekCodePoint(0)))A+=u(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(t),A}},e})(),Ei=(function(){function e(A){this._tokens=A}return e.create=function(A){var t=new pi;return t.write(A),new e(t.read())},e.parseValue=function(A){return e.create(A).parseComponentValue()},e.parseValues=function(A){return e.create(A).parseComponentValues()},e.prototype.parseComponentValue=function(){for(var A=this.consumeToken();A.type===31;)A=this.consumeToken();if(A.type===32)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(A);var t=this.consumeComponentValue();do A=this.consumeToken();while(A.type===31);if(A.type===32)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},e.prototype.parseComponentValues=function(){for(var A=[];;){var t=this.consumeComponentValue();if(t.type===32)return A;A.push(t),A.push()}},e.prototype.consumeComponentValue=function(){var A=this.consumeToken();switch(A.type){case 11:case 28:case 2:return this.consumeSimpleBlock(A.type);case 19:return this.consumeFunction(A)}return A},e.prototype.consumeSimpleBlock=function(A){for(var t={type:A,values:[]},r=this.consumeToken();;){if(r.type===32||Xo(r,A))return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue()),r=this.consumeToken()}},e.prototype.consumeFunction=function(A){for(var t={name:A.value,values:[],type:18};;){var r=this.consumeToken();if(r.type===32||r.type===3)return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue())}},e.prototype.consumeToken=function(){var A=this._tokens.shift();return typeof A=="undefined"?cn:A},e.prototype.reconsumeToken=function(A){this._tokens.unshift(A)},e})(),tt=function(e){return e.type===15},Lr=function(e){return e.type===17},EA=function(e){return e.type===20},Po=function(e){return e.type===0},fn=function(e,A){return EA(e)&&e.value===A},Hi=function(e){return e.type!==31},Sr=function(e){return e.type!==31&&e.type!==4},de=function(e){var A=[],t=[];return e.forEach(function(r){if(r.type===4){if(t.length===0)throw new Error("Error parsing function args, zero tokens for arg");A.push(t),t=[];return}r.type!==31&&t.push(r)}),t.length&&A.push(t),A},Xo=function(e,A){return A===11&&e.type===12||A===28&&e.type===29?!0:A===2&&e.type===3},Xe=function(e){return e.type===17||e.type===15},LA=function(e){return e.type===16||Xe(e)},yi=function(e){return e.length>1?[e[0],e[1]]:[e[0]]},kA={type:17,number:0,flags:jr},ln={type:16,number:50,flags:jr},We={type:16,number:100,flags:jr},nt=function(e,A,t){var r=e[0],n=e[1];return[IA(r,A),IA(typeof n!="undefined"?n:r,t)]},IA=function(e,A){if(e.type===16)return e.number/100*A;if(tt(e))switch(e.unit){case"rem":case"em":return 16*e.number;default:return e.number}return e.number},mi="deg",Ii="grad",bi="rad",Di="turn",Tt={name:"angle",parse:function(e,A){if(A.type===15)switch(A.unit){case mi:return Math.PI*A.number/180;case Ii:return Math.PI/200*A.number;case bi:return A.number;case Di:return Math.PI*2*A.number}throw new Error("Unsupported angle type")}},Ki=function(e){return e.type===15&&(e.unit===mi||e.unit===Ii||e.unit===bi||e.unit===Di)},Li=function(e){var A=e.filter(EA).map(function(t){return t.value}).join(" ");switch(A){case"to bottom right":case"to right bottom":case"left top":case"top left":return[kA,kA];case"to top":case"bottom":return oe(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[kA,We];case"to right":case"left":return oe(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[We,We];case"to bottom":case"top":return oe(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[We,kA];case"to left":case"right":return oe(270)}return 0},oe=function(e){return Math.PI*e/180},Je={name:"color",parse:function(e,A){if(A.type===18){var t=Wo[A.name];if(typeof t=="undefined")throw new Error('Attempting to parse an unsupported color function "'+A.name+'"');return t(e,A.values)}if(A.type===5){if(A.value.length===3){var r=A.value.substring(0,1),n=A.value.substring(1,2),i=A.value.substring(2,3);return qe(parseInt(r+r,16),parseInt(n+n,16),parseInt(i+i,16),1)}if(A.value.length===4){var r=A.value.substring(0,1),n=A.value.substring(1,2),i=A.value.substring(2,3),a=A.value.substring(3,4);return qe(parseInt(r+r,16),parseInt(n+n,16),parseInt(i+i,16),parseInt(a+a,16)/255)}if(A.value.length===6){var r=A.value.substring(0,2),n=A.value.substring(2,4),i=A.value.substring(4,6);return qe(parseInt(r,16),parseInt(n,16),parseInt(i,16),1)}if(A.value.length===8){var r=A.value.substring(0,2),n=A.value.substring(2,4),i=A.value.substring(4,6),a=A.value.substring(6,8);return qe(parseInt(r,16),parseInt(n,16),parseInt(i,16),parseInt(a,16)/255)}}if(A.type===20){var g=ye[A.value.toUpperCase()];if(typeof g!="undefined")return g}return ye.TRANSPARENT}},Ye=function(e){return(255&e)===0},MA=function(e){var A=255&e,t=255&e>>8,r=255&e>>16,n=255&e>>24;return A<255?"rgba("+n+","+r+","+t+","+A/255+")":"rgb("+n+","+r+","+t+")"},qe=function(e,A,t,r){return(e<<24|A<<16|t<<8|Math.round(r*255)<<0)>>>0},Si=function(e,A){if(e.type===17)return e.number;if(e.type===16){var t=A===3?1:255;return A===3?e.number/100*t:Math.round(e.number/100*t)}return 0},_i=function(e,A){var t=A.filter(Sr);if(t.length===3){var r=t.map(Si),n=r[0],i=r[1],a=r[2];return qe(n,i,a,1)}if(t.length===4){var g=t.map(Si),n=g[0],i=g[1],a=g[2],l=g[3];return qe(n,i,a,l)}return 0};function un(e,A,t){return t<0&&(t+=1),t>=1&&(t-=1),t<1/6?(A-e)*t*6+e:t<1/2?A:t<2/3?(A-e)*6*(2/3-t)+e:e}var Ti=function(e,A){var t=A.filter(Sr),r=t[0],n=t[1],i=t[2],a=t[3],g=(r.type===17?oe(r.number):Tt.parse(e,r))/(Math.PI*2),l=LA(n)?n.number/100:0,H=LA(i)?i.number/100:0,y=typeof a!="undefined"&&LA(a)?IA(a,1):1;if(l===0)return qe(H*255,H*255,H*255,1);var m=H<=.5?H*(l+1):H+l-H*l,_=H*2-m,tA=un(_,m,g+1/3),q=un(_,m,g),j=un(_,m,g-1/3);return qe(tA*255,q*255,j*255,y)},Wo={hsl:Ti,hsla:Ti,rgb:_i,rgba:_i},it=function(e,A){return Je.parse(e,Ei.create(A).parseComponentValue())},ye={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},Jo={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(e,A){return A.map(function(t){if(EA(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},Yo={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Ot=function(e,A){var t=Je.parse(e,A[0]),r=A[1];return r&&LA(r)?{color:t,stop:r}:{color:t,stop:null}},Oi=function(e,A){var t=e[0],r=e[e.length-1];t.stop===null&&(t.stop=kA),r.stop===null&&(r.stop=We);for(var n=[],i=0,a=0;a<e.length;a++){var g=e[a].stop;if(g!==null){var l=IA(g,A);l>i?n.push(l):n.push(i),i=l}else n.push(null)}for(var H=null,a=0;a<n.length;a++){var y=n[a];if(y===null)H===null&&(H=a);else if(H!==null){for(var m=a-H,_=n[H-1],tA=(y-_)/(m+1),q=1;q<=m;q++)n[H+q-1]=tA*q;H=null}}return e.map(function(j,uA){var sA=j.color;return{color:sA,stop:Math.max(Math.min(1,n[uA]/A),0)}})},qo=function(e,A,t){var r=A/2,n=t/2,i=IA(e[0],A)-r,a=n-IA(e[1],t);return(Math.atan2(a,i)+Math.PI*2)%(Math.PI*2)},Zo=function(e,A,t){var r=typeof e=="number"?e:qo(e,A,t),n=Math.abs(A*Math.sin(r))+Math.abs(t*Math.cos(r)),i=A/2,a=t/2,g=n/2,l=Math.sin(r-Math.PI/2)*g,H=Math.cos(r-Math.PI/2)*g;return[n,i-H,i+H,a-l,a+l]},ge=function(e,A){return Math.sqrt(e*e+A*A)},Ri=function(e,A,t,r,n){var i=[[0,0],[0,A],[e,0],[e,A]];return i.reduce(function(a,g){var l=g[0],H=g[1],y=ge(t-l,r-H);return(n?y<a.optimumDistance:y>a.optimumDistance)?{optimumCorner:g,optimumDistance:y}:a},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner},zo=function(e,A,t,r,n){var i=0,a=0;switch(e.size){case 0:e.shape===0?i=a=Math.min(Math.abs(A),Math.abs(A-r),Math.abs(t),Math.abs(t-n)):e.shape===1&&(i=Math.min(Math.abs(A),Math.abs(A-r)),a=Math.min(Math.abs(t),Math.abs(t-n)));break;case 2:if(e.shape===0)i=a=Math.min(ge(A,t),ge(A,t-n),ge(A-r,t),ge(A-r,t-n));else if(e.shape===1){var g=Math.min(Math.abs(t),Math.abs(t-n))/Math.min(Math.abs(A),Math.abs(A-r)),l=Ri(r,n,A,t,!0),H=l[0],y=l[1];i=ge(H-A,(y-t)/g),a=g*i}break;case 1:e.shape===0?i=a=Math.max(Math.abs(A),Math.abs(A-r),Math.abs(t),Math.abs(t-n)):e.shape===1&&(i=Math.max(Math.abs(A),Math.abs(A-r)),a=Math.max(Math.abs(t),Math.abs(t-n)));break;case 3:if(e.shape===0)i=a=Math.max(ge(A,t),ge(A,t-n),ge(A-r,t),ge(A-r,t-n));else if(e.shape===1){var g=Math.max(Math.abs(t),Math.abs(t-n))/Math.max(Math.abs(A),Math.abs(A-r)),m=Ri(r,n,A,t,!1),H=m[0],y=m[1];i=ge(H-A,(y-t)/g),a=g*i}break}return Array.isArray(e.size)&&(i=IA(e.size[0],r),a=e.size.length===2?IA(e.size[1],n):i),[i,a]},jo=function(e,A){var t=oe(180),r=[];return de(A).forEach(function(n,i){if(i===0){var a=n[0];if(a.type===20&&a.value==="to"){t=Li(n);return}else if(Ki(a)){t=Tt.parse(e,a);return}}var g=Ot(e,n);r.push(g)}),{angle:t,stops:r,type:1}},Rt=function(e,A){var t=oe(180),r=[];return de(A).forEach(function(n,i){if(i===0){var a=n[0];if(a.type===20&&["top","left","right","bottom"].indexOf(a.value)!==-1){t=Li(n);return}else if(Ki(a)){t=(Tt.parse(e,a)+oe(270))%oe(360);return}}var g=Ot(e,n);r.push(g)}),{angle:t,stops:r,type:1}},$o=function(e,A){var t=oe(180),r=[],n=1,i=0,a=3,g=[];return de(A).forEach(function(l,H){var y=l[0];if(H===0){if(EA(y)&&y.value==="linear"){n=1;return}else if(EA(y)&&y.value==="radial"){n=2;return}}if(y.type===18){if(y.name==="from"){var m=Je.parse(e,y.values[0]);r.push({stop:kA,color:m})}else if(y.name==="to"){var m=Je.parse(e,y.values[0]);r.push({stop:We,color:m})}else if(y.name==="color-stop"){var _=y.values.filter(Sr);if(_.length===2){var m=Je.parse(e,_[1]),tA=_[0];Lr(tA)&&r.push({stop:{type:16,number:tA.number*100,flags:tA.flags},color:m})}}}}),n===1?{angle:(t+oe(180))%oe(360),stops:r,type:n}:{size:a,shape:i,stops:r,position:g,type:n}},Mi="closest-side",ki="farthest-side",Gi="closest-corner",Ni="farthest-corner",Vi="circle",Pi="ellipse",Xi="cover",Wi="contain",Ac=function(e,A){var t=0,r=3,n=[],i=[];return de(A).forEach(function(a,g){var l=!0;if(g===0){var H=!1;l=a.reduce(function(m,_){if(H)if(EA(_))switch(_.value){case"center":return i.push(ln),m;case"top":case"left":return i.push(kA),m;case"right":case"bottom":return i.push(We),m}else(LA(_)||Xe(_))&&i.push(_);else if(EA(_))switch(_.value){case Vi:return t=0,!1;case Pi:return t=1,!1;case"at":return H=!0,!1;case Mi:return r=0,!1;case Xi:case ki:return r=1,!1;case Wi:case Gi:return r=2,!1;case Ni:return r=3,!1}else if(Xe(_)||LA(_))return Array.isArray(r)||(r=[]),r.push(_),!1;return m},l)}if(l){var y=Ot(e,a);n.push(y)}}),{size:r,shape:t,stops:n,position:i,type:2}},Mt=function(e,A){var t=0,r=3,n=[],i=[];return de(A).forEach(function(a,g){var l=!0;if(g===0?l=a.reduce(function(y,m){if(EA(m))switch(m.value){case"center":return i.push(ln),!1;case"top":case"left":return i.push(kA),!1;case"right":case"bottom":return i.push(We),!1}else if(LA(m)||Xe(m))return i.push(m),!1;return y},l):g===1&&(l=a.reduce(function(y,m){if(EA(m))switch(m.value){case Vi:return t=0,!1;case Pi:return t=1,!1;case Wi:case Mi:return r=0,!1;case ki:return r=1,!1;case Gi:return r=2,!1;case Xi:case Ni:return r=3,!1}else if(Xe(m)||LA(m))return Array.isArray(r)||(r=[]),r.push(m),!1;return y},l)),l){var H=Ot(e,a);n.push(H)}}),{size:r,shape:t,stops:n,position:i,type:2}},ec=function(e){return e.type===1},rc=function(e){return e.type===2},gn={name:"image",parse:function(e,A){if(A.type===22){var t={url:A.value,type:0};return e.cache.addImage(A.value),t}if(A.type===18){var r=Ji[A.name];if(typeof r=="undefined")throw new Error('Attempting to parse an unsupported image function "'+A.name+'"');return r(e,A.values)}throw new Error("Unsupported image type "+A.type)}};function tc(e){return!(e.type===20&&e.value==="none")&&(e.type!==18||!!Ji[e.name])}var Ji={"linear-gradient":jo,"-moz-linear-gradient":Rt,"-ms-linear-gradient":Rt,"-o-linear-gradient":Rt,"-webkit-linear-gradient":Rt,"radial-gradient":Ac,"-moz-radial-gradient":Mt,"-ms-radial-gradient":Mt,"-o-radial-gradient":Mt,"-webkit-radial-gradient":Mt,"-webkit-gradient":$o},nc={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(e,A){if(A.length===0)return[];var t=A[0];return t.type===20&&t.value==="none"?[]:A.filter(function(r){return Sr(r)&&tc(r)}).map(function(r){return gn.parse(e,r)})}},ic={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(e,A){return A.map(function(t){if(EA(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},sc={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(e,A){return de(A).map(function(t){return t.filter(LA)}).map(yi)}},ac={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(e,A){return de(A).map(function(t){return t.filter(EA).map(function(r){return r.value}).join(" ")}).map(Bc)}},Bc=function(e){switch(e){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},_r;(function(e){e.AUTO="auto",e.CONTAIN="contain",e.COVER="cover"})(_r||(_r={}));var oc={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(e,A){return de(A).map(function(t){return t.filter(cc)})}},cc=function(e){return EA(e)||LA(e)},kt=function(e){return{name:"border-"+e+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},fc=kt("top"),lc=kt("right"),uc=kt("bottom"),gc=kt("left"),Gt=function(e){return{name:"border-radius-"+e,initialValue:"0 0",prefix:!1,type:1,parse:function(A,t){return yi(t.filter(LA))}}},wc=Gt("top-left"),Cc=Gt("top-right"),hc=Gt("bottom-right"),xc=Gt("bottom-left"),Nt=function(e){return{name:"border-"+e+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(A,t){switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},Qc=Nt("top"),dc=Nt("right"),Fc=Nt("bottom"),Uc=Nt("left"),Vt=function(e){return{name:"border-"+e+"-width",initialValue:"0",type:0,prefix:!1,parse:function(A,t){return tt(t)?t.number:0}}},vc=Vt("top"),pc=Vt("right"),Ec=Vt("bottom"),Hc=Vt("left"),yc={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},mc={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(e,A){return A==="rtl"?1:0}},Ic={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(e,A){return A.filter(EA).reduce(function(t,r){return t|bc(r.value)},0)}},bc=function(e){switch(e){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},Dc={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(e,A){switch(A){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Kc={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(e,A){return A.type===20&&A.value==="normal"?0:A.type===17||A.type===15?A.number:0}},Pt;(function(e){e.NORMAL="normal",e.STRICT="strict"})(Pt||(Pt={}));var Lc={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(e,A){return A==="strict"?Pt.STRICT:Pt.NORMAL}},Sc={name:"line-height",initialValue:"normal",prefix:!1,type:4},Yi=function(e,A){return EA(e)&&e.value==="normal"?1.2*A:e.type===17?A*e.number:LA(e)?IA(e,A):A},_c={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(e,A){return A.type===20&&A.value==="none"?null:gn.parse(e,A)}},Tc={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(e,A){return A==="inside"?0:1}},wn={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(e,A){switch(A){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},Xt=function(e){return{name:"margin-"+e,initialValue:"0",prefix:!1,type:4}},Oc=Xt("top"),Rc=Xt("right"),Mc=Xt("bottom"),kc=Xt("left"),Gc={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(e,A){return A.filter(EA).map(function(t){switch(t.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})}},Nc={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(e,A){return A==="break-word"?"break-word":"normal"}},Wt=function(e){return{name:"padding-"+e,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},Vc=Wt("top"),Pc=Wt("right"),Xc=Wt("bottom"),Wc=Wt("left"),Jc={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(e,A){switch(A){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},Yc={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(e,A){switch(A){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},qc={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(e,A){return A.length===1&&fn(A[0],"none")?[]:de(A).map(function(t){for(var r={color:ye.TRANSPARENT,offsetX:kA,offsetY:kA,blur:kA},n=0,i=0;i<t.length;i++){var a=t[i];Xe(a)?(n===0?r.offsetX=a:n===1?r.offsetY=a:r.blur=a,n++):r.color=Je.parse(e,a)}return r})}},Zc={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(e,A){switch(A){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},zc={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(e,A){if(A.type===20&&A.value==="none")return null;if(A.type===18){var t=Af[A.name];if(typeof t=="undefined")throw new Error('Attempting to parse an unsupported transform function "'+A.name+'"');return t(A.values)}return null}},jc=function(e){var A=e.filter(function(t){return t.type===17}).map(function(t){return t.number});return A.length===6?A:null},$c=function(e){var A=e.filter(function(l){return l.type===17}).map(function(l){return l.number}),t=A[0],r=A[1];A[2],A[3];var n=A[4],i=A[5];A[6],A[7],A[8],A[9],A[10],A[11];var a=A[12],g=A[13];return A[14],A[15],A.length===16?[t,r,n,i,a,g]:null},Af={matrix:jc,matrix3d:$c},qi={type:16,number:50,flags:jr},ef=[qi,qi],rf={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(e,A){var t=A.filter(LA);return t.length!==2?ef:[t[0],t[1]]}},tf={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(e,A){switch(A){case"hidden":return 1;case"collapse":return 2;default:return 0}}},st;(function(e){e.NORMAL="normal",e.BREAK_ALL="break-all",e.KEEP_ALL="keep-all"})(st||(st={}));for(var nf={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:function(e,A){switch(A){case"break-all":return st.BREAK_ALL;case"keep-all":return st.KEEP_ALL;default:return st.NORMAL}}},sf={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(e,A){if(A.type===20)return{auto:!0,order:0};if(Lr(A))return{auto:!1,order:A.number};throw new Error("Invalid z-index number parsed")}},Zi={name:"time",parse:function(e,A){if(A.type===15)switch(A.unit.toLowerCase()){case"s":return 1e3*A.number;case"ms":return A.number}throw new Error("Unsupported time type")}},af={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(e,A){return Lr(A)?A.number:1}},Bf={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},of={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(e,A){return A.filter(EA).map(function(t){switch(t.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(t){return t!==0})}},cf={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(e,A){var t=[],r=[];return A.forEach(function(n){switch(n.type){case 20:case 0:t.push(n.value);break;case 17:t.push(n.number.toString());break;case 4:r.push(t.join(" ")),t.length=0;break}}),t.length&&r.push(t.join(" ")),r.map(function(n){return n.indexOf(" ")===-1?n:"'"+n+"'"})}},ff={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},lf={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(e,A){return Lr(A)?A.number:EA(A)&&A.value==="bold"?700:400}},uf={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(e,A){return A.filter(EA).map(function(t){return t.value})}},gf={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(e,A){switch(A){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},OA=function(e,A){return(e&A)!==0},wf={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(e,A){if(A.length===0)return[];var t=A[0];return t.type===20&&t.value==="none"?[]:A}},Cf={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(e,A){if(A.length===0)return null;var t=A[0];if(t.type===20&&t.value==="none")return null;for(var r=[],n=A.filter(Hi),i=0;i<n.length;i++){var a=n[i],g=n[i+1];if(a.type===20){var l=g&&Lr(g)?g.number:1;r.push({counter:a.value,increment:l})}}return r}},hf={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(e,A){if(A.length===0)return[];for(var t=[],r=A.filter(Hi),n=0;n<r.length;n++){var i=r[n],a=r[n+1];if(EA(i)&&i.value!=="none"){var g=a&&Lr(a)?a.number:0;t.push({counter:i.value,reset:g})}}return t}},xf={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(e,A){return A.filter(tt).map(function(t){return Zi.parse(e,t)})}},Qf={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(e,A){if(A.length===0)return null;var t=A[0];if(t.type===20&&t.value==="none")return null;var r=[],n=A.filter(Po);if(n.length%2!==0)return null;for(var i=0;i<n.length;i+=2){var a=n[i].value,g=n[i+1].value;r.push({open:a,close:g})}return r}},zi=function(e,A,t){if(!e)return"";var r=e[Math.min(A,e.length-1)];return r?t?r.open:r.close:""},df={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(e,A){return A.length===1&&fn(A[0],"none")?[]:de(A).map(function(t){for(var r={color:255,offsetX:kA,offsetY:kA,blur:kA,spread:kA,inset:!1},n=0,i=0;i<t.length;i++){var a=t[i];fn(a,"inset")?r.inset=!0:Xe(a)?(n===0?r.offsetX=a:n===1?r.offsetY=a:n===2?r.blur=a:r.spread=a,n++):r.color=Je.parse(e,a)}return r})}},Ff={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(e,A){var t=[0,1,2],r=[];return A.filter(EA).forEach(function(n){switch(n.value){case"stroke":r.push(1);break;case"fill":r.push(0);break;case"markers":r.push(2);break}}),t.forEach(function(n){r.indexOf(n)===-1&&r.push(n)}),r}},Uf={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},vf={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(e,A){return tt(A)?A.number:0}},pf=(function(){function e(A,t){var r,n;this.animationDuration=nA(A,xf,t.animationDuration),this.backgroundClip=nA(A,Jo,t.backgroundClip),this.backgroundColor=nA(A,Yo,t.backgroundColor),this.backgroundImage=nA(A,nc,t.backgroundImage),this.backgroundOrigin=nA(A,ic,t.backgroundOrigin),this.backgroundPosition=nA(A,sc,t.backgroundPosition),this.backgroundRepeat=nA(A,ac,t.backgroundRepeat),this.backgroundSize=nA(A,oc,t.backgroundSize),this.borderTopColor=nA(A,fc,t.borderTopColor),this.borderRightColor=nA(A,lc,t.borderRightColor),this.borderBottomColor=nA(A,uc,t.borderBottomColor),this.borderLeftColor=nA(A,gc,t.borderLeftColor),this.borderTopLeftRadius=nA(A,wc,t.borderTopLeftRadius),this.borderTopRightRadius=nA(A,Cc,t.borderTopRightRadius),this.borderBottomRightRadius=nA(A,hc,t.borderBottomRightRadius),this.borderBottomLeftRadius=nA(A,xc,t.borderBottomLeftRadius),this.borderTopStyle=nA(A,Qc,t.borderTopStyle),this.borderRightStyle=nA(A,dc,t.borderRightStyle),this.borderBottomStyle=nA(A,Fc,t.borderBottomStyle),this.borderLeftStyle=nA(A,Uc,t.borderLeftStyle),this.borderTopWidth=nA(A,vc,t.borderTopWidth),this.borderRightWidth=nA(A,pc,t.borderRightWidth),this.borderBottomWidth=nA(A,Ec,t.borderBottomWidth),this.borderLeftWidth=nA(A,Hc,t.borderLeftWidth),this.boxShadow=nA(A,df,t.boxShadow),this.color=nA(A,yc,t.color),this.direction=nA(A,mc,t.direction),this.display=nA(A,Ic,t.display),this.float=nA(A,Dc,t.cssFloat),this.fontFamily=nA(A,cf,t.fontFamily),this.fontSize=nA(A,ff,t.fontSize),this.fontStyle=nA(A,gf,t.fontStyle),this.fontVariant=nA(A,uf,t.fontVariant),this.fontWeight=nA(A,lf,t.fontWeight),this.letterSpacing=nA(A,Kc,t.letterSpacing),this.lineBreak=nA(A,Lc,t.lineBreak),this.lineHeight=nA(A,Sc,t.lineHeight),this.listStyleImage=nA(A,_c,t.listStyleImage),this.listStylePosition=nA(A,Tc,t.listStylePosition),this.listStyleType=nA(A,wn,t.listStyleType),this.marginTop=nA(A,Oc,t.marginTop),this.marginRight=nA(A,Rc,t.marginRight),this.marginBottom=nA(A,Mc,t.marginBottom),this.marginLeft=nA(A,kc,t.marginLeft),this.opacity=nA(A,af,t.opacity);var i=nA(A,Gc,t.overflow);this.overflowX=i[0],this.overflowY=i[i.length>1?1:0],this.overflowWrap=nA(A,Nc,t.overflowWrap),this.paddingTop=nA(A,Vc,t.paddingTop),this.paddingRight=nA(A,Pc,t.paddingRight),this.paddingBottom=nA(A,Xc,t.paddingBottom),this.paddingLeft=nA(A,Wc,t.paddingLeft),this.paintOrder=nA(A,Ff,t.paintOrder),this.position=nA(A,Yc,t.position),this.textAlign=nA(A,Jc,t.textAlign),this.textDecorationColor=nA(A,Bf,(r=t.textDecorationColor)!==null&&r!==void 0?r:t.color),this.textDecorationLine=nA(A,of,(n=t.textDecorationLine)!==null&&n!==void 0?n:t.textDecoration),this.textShadow=nA(A,qc,t.textShadow),this.textTransform=nA(A,Zc,t.textTransform),this.transform=nA(A,zc,t.transform),this.transformOrigin=nA(A,rf,t.transformOrigin),this.visibility=nA(A,tf,t.visibility),this.webkitTextStrokeColor=nA(A,Uf,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=nA(A,vf,t.webkitTextStrokeWidth),this.wordBreak=nA(A,nf,t.wordBreak),this.zIndex=nA(A,sf,t.zIndex)}return e.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},e.prototype.isTransparent=function(){return Ye(this.backgroundColor)},e.prototype.isTransformed=function(){return this.transform!==null},e.prototype.isPositioned=function(){return this.position!==0},e.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},e.prototype.isFloating=function(){return this.float!==0},e.prototype.isInlineLevel=function(){return OA(this.display,4)||OA(this.display,33554432)||OA(this.display,268435456)||OA(this.display,536870912)||OA(this.display,67108864)||OA(this.display,134217728)},e})(),Ef=(function(){function e(A,t){this.content=nA(A,wf,t.content),this.quotes=nA(A,Qf,t.quotes)}return e})(),ji=(function(){function e(A,t){this.counterIncrement=nA(A,Cf,t.counterIncrement),this.counterReset=nA(A,hf,t.counterReset)}return e})(),nA=function(e,A,t){var r=new pi,n=t!==null&&typeof t!="undefined"?t.toString():A.initialValue;r.write(n);var i=new Ei(r.read());switch(A.type){case 2:var a=i.parseComponentValue();return A.parse(e,EA(a)?a.value:A.initialValue);case 0:return A.parse(e,i.parseComponentValue());case 1:return A.parse(e,i.parseComponentValues());case 4:return i.parseComponentValue();case 3:switch(A.format){case"angle":return Tt.parse(e,i.parseComponentValue());case"color":return Je.parse(e,i.parseComponentValue());case"image":return gn.parse(e,i.parseComponentValue());case"length":var g=i.parseComponentValue();return Xe(g)?g:kA;case"length-percentage":var l=i.parseComponentValue();return LA(l)?l:kA;case"time":return Zi.parse(e,i.parseComponentValue())}break}},Hf="data-html2canvas-debug",yf=function(e){var A=e.getAttribute(Hf);switch(A){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},Cn=function(e,A){var t=yf(e);return t===1||A===t},Fe=(function(){function e(A,t){if(this.context=A,this.textNodes=[],this.elements=[],this.flags=0,Cn(t,3))debugger;this.styles=new pf(A,window.getComputedStyle(t,null)),bn(t)&&(this.styles.animationDuration.some(function(r){return r>0})&&(t.style.animationDuration="0s"),this.styles.transform!==null&&(t.style.transform="none")),this.bounds=o(this.context,t),Cn(t,4)&&(this.flags|=16)}return e})(),mf="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",$i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",at=typeof Uint8Array=="undefined"?[]:new Uint8Array(256),Jt=0;Jt<$i.length;Jt++)at[$i.charCodeAt(Jt)]=Jt;for(var If=function(e){var A=e.length*.75,t=e.length,r,n=0,i,a,g,l;e[e.length-1]==="="&&(A--,e[e.length-2]==="="&&A--);var H=typeof ArrayBuffer!="undefined"&&typeof Uint8Array!="undefined"&&typeof Uint8Array.prototype.slice!="undefined"?new ArrayBuffer(A):new Array(A),y=Array.isArray(H)?H:new Uint8Array(H);for(r=0;r<t;r+=4)i=at[e.charCodeAt(r)],a=at[e.charCodeAt(r+1)],g=at[e.charCodeAt(r+2)],l=at[e.charCodeAt(r+3)],y[n++]=i<<2|a>>4,y[n++]=(a&15)<<4|g>>2,y[n++]=(g&3)<<6|l&63;return H},bf=function(e){for(var A=e.length,t=[],r=0;r<A;r+=2)t.push(e[r+1]<<8|e[r]);return t},Df=function(e){for(var A=e.length,t=[],r=0;r<A;r+=4)t.push(e[r+3]<<24|e[r+2]<<16|e[r+1]<<8|e[r]);return t},gr=5,hn=11,xn=2,Kf=hn-gr,As=65536>>gr,Lf=1<<gr,Qn=Lf-1,Sf=1024>>gr,_f=As+Sf,Tf=_f,Of=32,Rf=Tf+Of,Mf=65536>>hn,kf=1<<Kf,Gf=kf-1,es=function(e,A,t){return e.slice?e.slice(A,t):new Uint16Array(Array.prototype.slice.call(e,A,t))},Nf=function(e,A,t){return e.slice?e.slice(A,t):new Uint32Array(Array.prototype.slice.call(e,A,t))},Vf=function(e,A){var t=If(e),r=Array.isArray(t)?Df(t):new Uint32Array(t),n=Array.isArray(t)?bf(t):new Uint16Array(t),i=24,a=es(n,i/2,r[4]/2),g=r[5]===2?es(n,(i+r[4])/2):Nf(r,Math.ceil((i+r[4])/4));return new Pf(r[0],r[1],r[2],r[3],a,g)},Pf=(function(){function e(A,t,r,n,i,a){this.initialValue=A,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=i,this.data=a}return e.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return t=this.index[A>>gr],t=(t<<xn)+(A&Qn),this.data[t];if(A<=65535)return t=this.index[As+(A-55296>>gr)],t=(t<<xn)+(A&Qn),this.data[t];if(A<this.highStart)return t=Rf-Mf+(A>>hn),t=this.index[t],t+=A>>gr&Gf,t=this.index[t],t=(t<<xn)+(A&Qn),this.data[t];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},e})(),rs="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Xf=typeof Uint8Array=="undefined"?[]:new Uint8Array(256),Yt=0;Yt<rs.length;Yt++)Xf[rs.charCodeAt(Yt)]=Yt;var Wf=1,dn=2,Fn=3,ts=4,ns=5,Jf=7,is=8,Un=9,vn=10,ss=11,as=12,Bs=13,os=14,pn=15,Yf=function(e){for(var A=[],t=0,r=e.length;t<r;){var n=e.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var i=e.charCodeAt(t++);(i&64512)===56320?A.push(((n&1023)<<10)+(i&1023)+65536):(A.push(n),t--)}else A.push(n)}return A},qf=function(){for(var e=[],A=0;A<arguments.length;A++)e[A]=arguments[A];if(String.fromCodePoint)return String.fromCodePoint.apply(String,e);var t=e.length;if(!t)return"";for(var r=[],n=-1,i="";++n<t;){var a=e[n];a<=65535?r.push(a):(a-=65536,r.push((a>>10)+55296,a%1024+56320)),(n+1===t||r.length>16384)&&(i+=String.fromCharCode.apply(String,r),r.length=0)}return i},Zf=Vf(mf),ce="\xD7",En="\xF7",zf=function(e){return Zf.get(e)},jf=function(e,A,t){var r=t-2,n=A[r],i=A[t-1],a=A[t];if(i===dn&&a===Fn)return ce;if(i===dn||i===Fn||i===ts||a===dn||a===Fn||a===ts)return En;if(i===is&&[is,Un,ss,as].indexOf(a)!==-1||(i===ss||i===Un)&&(a===Un||a===vn)||(i===as||i===vn)&&a===vn||a===Bs||a===ns||a===Jf||i===Wf)return ce;if(i===Bs&&a===os){for(;n===ns;)n=A[--r];if(n===os)return ce}if(i===pn&&a===pn){for(var g=0;n===pn;)g++,n=A[--r];if(g%2===0)return ce}return En},$f=function(e){var A=Yf(e),t=A.length,r=0,n=0,i=A.map(zf);return{next:function(){if(r>=t)return{done:!0,value:null};for(var a=ce;r<t&&(a=jf(A,i,++r))===ce;);if(a!==ce||r===t){var g=qf.apply(null,A.slice(n,r));return n=r,{value:g,done:!1}}return{done:!0,value:null}}}},Al=function(e){for(var A=$f(e),t=[],r;!(r=A.next()).done;)r.value&&t.push(r.value.slice());return t},el=function(e){var A=123;if(e.createRange){var t=e.createRange();if(t.getBoundingClientRect){var r=e.createElement("boundtest");r.style.height=A+"px",r.style.display="block",e.body.appendChild(r),t.selectNode(r);var n=t.getBoundingClientRect(),i=Math.round(n.height);if(e.body.removeChild(r),i===A)return!0}}return!1},rl=function(e){var A=e.createElement("boundtest");A.style.width="50px",A.style.display="block",A.style.fontSize="12px",A.style.letterSpacing="0px",A.style.wordSpacing="0px",e.body.appendChild(A);var t=e.createRange();A.innerHTML=typeof"".repeat=="function"?"&#128104;".repeat(10):"";var r=A.firstChild,n=U(r.data).map(function(l){return u(l)}),i=0,a={},g=n.every(function(l,H){t.setStart(r,i),t.setEnd(r,i+l.length);var y=t.getBoundingClientRect();i+=l.length;var m=y.x>a.x||y.y>a.y;return a=y,H===0?!0:m});return e.body.removeChild(A),g},tl=function(){return typeof new Image().crossOrigin!="undefined"},nl=function(){return typeof new XMLHttpRequest().responseType=="string"},il=function(e){var A=new Image,t=e.createElement("canvas"),r=t.getContext("2d");if(!r)return!1;A.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(A,0,0),t.toDataURL()}catch{return!1}return!0},cs=function(e){return e[0]===0&&e[1]===255&&e[2]===0&&e[3]===255},sl=function(e){var A=e.createElement("canvas"),t=100;A.width=t,A.height=t;var r=A.getContext("2d");if(!r)return Promise.reject(!1);r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,t,t);var n=new Image,i=A.toDataURL();n.src=i;var a=Hn(t,t,0,0,n);return r.fillStyle="red",r.fillRect(0,0,t,t),fs(a).then(function(g){r.drawImage(g,0,0);var l=r.getImageData(0,0,t,t).data;r.fillStyle="red",r.fillRect(0,0,t,t);var H=e.createElement("div");return H.style.backgroundImage="url("+i+")",H.style.height=t+"px",cs(l)?fs(Hn(t,t,0,0,H)):Promise.reject(!1)}).then(function(g){return r.drawImage(g,0,0),cs(r.getImageData(0,0,t,t).data)}).catch(function(){return!1})},Hn=function(e,A,t,r,n){var i="http://www.w3.org/2000/svg",a=document.createElementNS(i,"svg"),g=document.createElementNS(i,"foreignObject");return a.setAttributeNS(null,"width",e.toString()),a.setAttributeNS(null,"height",A.toString()),g.setAttributeNS(null,"width","100%"),g.setAttributeNS(null,"height","100%"),g.setAttributeNS(null,"x",t.toString()),g.setAttributeNS(null,"y",r.toString()),g.setAttributeNS(null,"externalResourcesRequired","true"),a.appendChild(g),g.appendChild(n),a},fs=function(e){return new Promise(function(A,t){var r=new Image;r.onload=function(){return A(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(e))})},GA={get SUPPORT_RANGE_BOUNDS(){var e=el(document);return Object.defineProperty(GA,"SUPPORT_RANGE_BOUNDS",{value:e}),e},get SUPPORT_WORD_BREAKING(){var e=GA.SUPPORT_RANGE_BOUNDS&&rl(document);return Object.defineProperty(GA,"SUPPORT_WORD_BREAKING",{value:e}),e},get SUPPORT_SVG_DRAWING(){var e=il(document);return Object.defineProperty(GA,"SUPPORT_SVG_DRAWING",{value:e}),e},get SUPPORT_FOREIGNOBJECT_DRAWING(){var e=typeof Array.from=="function"&&typeof window.fetch=="function"?sl(document):Promise.resolve(!1);return Object.defineProperty(GA,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:e}),e},get SUPPORT_CORS_IMAGES(){var e=tl();return Object.defineProperty(GA,"SUPPORT_CORS_IMAGES",{value:e}),e},get SUPPORT_RESPONSE_TYPE(){var e=nl();return Object.defineProperty(GA,"SUPPORT_RESPONSE_TYPE",{value:e}),e},get SUPPORT_CORS_XHR(){var e="withCredentials"in new XMLHttpRequest;return Object.defineProperty(GA,"SUPPORT_CORS_XHR",{value:e}),e},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var e=!!(typeof Intl!="undefined"&&Intl.Segmenter);return Object.defineProperty(GA,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:e}),e}},Bt=(function(){function e(A,t){this.text=A,this.bounds=t}return e})(),al=function(e,A,t,r){var n=cl(A,t),i=[],a=0;return n.forEach(function(g){if(t.textDecorationLine.length||g.trim().length>0)if(GA.SUPPORT_RANGE_BOUNDS){var l=ls(r,a,g.length).getClientRects();if(l.length>1){var H=yn(g),y=0;H.forEach(function(_){i.push(new Bt(_,Q.fromDOMRectList(e,ls(r,y+a,_.length).getClientRects()))),y+=_.length})}else i.push(new Bt(g,Q.fromDOMRectList(e,l)))}else{var m=r.splitText(g.length);i.push(new Bt(g,Bl(e,r))),r=m}else GA.SUPPORT_RANGE_BOUNDS||(r=r.splitText(g.length));a+=g.length}),i},Bl=function(e,A){var t=A.ownerDocument;if(t){var r=t.createElement("html2canvaswrapper");r.appendChild(A.cloneNode(!0));var n=A.parentNode;if(n){n.replaceChild(r,A);var i=o(e,r);return r.firstChild&&n.replaceChild(r.firstChild,r),i}}return Q.EMPTY},ls=function(e,A,t){var r=e.ownerDocument;if(!r)throw new Error("Node has no owner document");var n=r.createRange();return n.setStart(e,A),n.setEnd(e,A+t),n},yn=function(e){if(GA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var A=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(A.segment(e)).map(function(t){return t.segment})}return Al(e)},ol=function(e,A){if(GA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(e)).map(function(r){return r.segment})}return ll(e,A)},cl=function(e,A){return A.letterSpacing!==0?yn(e):ol(e,A)},fl=[32,160,4961,65792,65793,4153,4241],ll=function(e,A){for(var t=OB(e,{lineBreak:A.lineBreak,wordBreak:A.overflowWrap==="break-word"?"break-word":A.wordBreak}),r=[],n,i=function(){if(n.value){var a=n.value.slice(),g=U(a),l="";g.forEach(function(H){fl.indexOf(H)===-1?l+=u(H):(l.length&&r.push(l),r.push(u(H)),l="")}),l.length&&r.push(l)}};!(n=t.next()).done;)i();return r},ul=(function(){function e(A,t,r){this.text=gl(t.data,r.textTransform),this.textBounds=al(A,this.text,r,t)}return e})(),gl=function(e,A){switch(A){case 1:return e.toLowerCase();case 3:return e.replace(wl,Cl);case 2:return e.toUpperCase();default:return e}},wl=/(^|\s|:|-|\(|\))([a-z])/g,Cl=function(e,A,t){return e.length>0?A+t.toUpperCase():e},us=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;return n.src=r.currentSrc||r.src,n.intrinsicWidth=r.naturalWidth,n.intrinsicHeight=r.naturalHeight,n.context.cache.addImage(n.src),n}return A})(Fe),gs=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;return n.canvas=r,n.intrinsicWidth=r.width,n.intrinsicHeight=r.height,n}return A})(Fe),ws=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this,i=new XMLSerializer,a=o(t,r);return r.setAttribute("width",a.width+"px"),r.setAttribute("height",a.height+"px"),n.svg="data:image/svg+xml,"+encodeURIComponent(i.serializeToString(r)),n.intrinsicWidth=r.width.baseVal.value,n.intrinsicHeight=r.height.baseVal.value,n.context.cache.addImage(n.svg),n}return A})(Fe),Cs=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;return n.value=r.value,n}return A})(Fe),mn=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;return n.start=r.start,n.reversed=typeof r.reversed=="boolean"&&r.reversed===!0,n}return A})(Fe),hl=[{type:15,flags:0,unit:"px",number:3}],xl=[{type:16,flags:0,number:50}],Ql=function(e){return e.width>e.height?new Q(e.left+(e.width-e.height)/2,e.top,e.height,e.height):e.width<e.height?new Q(e.left,e.top+(e.height-e.width)/2,e.width,e.width):e},dl=function(e){var A=e.type===Fl?new Array(e.value.length+1).join("\u2022"):e.value;return A.length===0?e.placeholder||"":A},qt="checkbox",Zt="radio",Fl="password",hs=707406591,In=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;switch(n.type=r.type.toLowerCase(),n.checked=r.checked,n.value=dl(r),(n.type===qt||n.type===Zt)&&(n.styles.backgroundColor=3739148031,n.styles.borderTopColor=n.styles.borderRightColor=n.styles.borderBottomColor=n.styles.borderLeftColor=2779096575,n.styles.borderTopWidth=n.styles.borderRightWidth=n.styles.borderBottomWidth=n.styles.borderLeftWidth=1,n.styles.borderTopStyle=n.styles.borderRightStyle=n.styles.borderBottomStyle=n.styles.borderLeftStyle=1,n.styles.backgroundClip=[0],n.styles.backgroundOrigin=[0],n.bounds=Ql(n.bounds)),n.type){case qt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=hl;break;case Zt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=xl;break}return n}return A})(Fe),xs=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this,i=r.options[r.selectedIndex||0];return n.value=i&&i.text||"",n}return A})(Fe),Qs=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;return n.value=r.value,n}return A})(Fe),ds=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;n.src=r.src,n.width=parseInt(r.width,10)||0,n.height=parseInt(r.height,10)||0,n.backgroundColor=n.styles.backgroundColor;try{if(r.contentWindow&&r.contentWindow.document&&r.contentWindow.document.documentElement){n.tree=Us(t,r.contentWindow.document.documentElement);var i=r.contentWindow.document.documentElement?it(t,getComputedStyle(r.contentWindow.document.documentElement).backgroundColor):ye.TRANSPARENT,a=r.contentWindow.document.body?it(t,getComputedStyle(r.contentWindow.document.body).backgroundColor):ye.TRANSPARENT;n.backgroundColor=Ye(i)?Ye(a)?n.styles.backgroundColor:a:i}}catch{}return n}return A})(Fe),Ul=["OL","UL","MENU"],zt=function(e,A,t,r){for(var n=A.firstChild,i=void 0;n;n=i)if(i=n.nextSibling,vs(n)&&n.data.trim().length>0)t.textNodes.push(new ul(e,n,t.styles));else if(Tr(n))if(Is(n)&&n.assignedNodes)n.assignedNodes().forEach(function(g){return zt(e,g,t,r)});else{var a=Fs(e,n);a.styles.isVisible()&&(vl(n,a,r)?a.flags|=4:pl(a.styles)&&(a.flags|=2),Ul.indexOf(n.tagName)!==-1&&(a.flags|=8),t.elements.push(a),n.slot,n.shadowRoot?zt(e,n.shadowRoot,a,r):!$t(n)&&!ps(n)&&!A0(n)&&zt(e,n,a,r))}},Fs=function(e,A){return Kn(A)?new us(e,A):Es(A)?new gs(e,A):ps(A)?new ws(e,A):El(A)?new Cs(e,A):Hl(A)?new mn(e,A):yl(A)?new In(e,A):A0(A)?new xs(e,A):$t(A)?new Qs(e,A):ys(A)?new ds(e,A):new Fe(e,A)},Us=function(e,A){var t=Fs(e,A);return t.flags|=4,zt(e,A,t,t),t},vl=function(e,A,t){return A.styles.isPositionedWithZIndex()||A.styles.opacity<1||A.styles.isTransformed()||Dn(e)&&t.styles.isTransparent()},pl=function(e){return e.isPositioned()||e.isFloating()},vs=function(e){return e.nodeType===Node.TEXT_NODE},Tr=function(e){return e.nodeType===Node.ELEMENT_NODE},bn=function(e){return Tr(e)&&typeof e.style!="undefined"&&!jt(e)},jt=function(e){return typeof e.className=="object"},El=function(e){return e.tagName==="LI"},Hl=function(e){return e.tagName==="OL"},yl=function(e){return e.tagName==="INPUT"},ml=function(e){return e.tagName==="HTML"},ps=function(e){return e.tagName==="svg"},Dn=function(e){return e.tagName==="BODY"},Es=function(e){return e.tagName==="CANVAS"},Hs=function(e){return e.tagName==="VIDEO"},Kn=function(e){return e.tagName==="IMG"},ys=function(e){return e.tagName==="IFRAME"},ms=function(e){return e.tagName==="STYLE"},Il=function(e){return e.tagName==="SCRIPT"},$t=function(e){return e.tagName==="TEXTAREA"},A0=function(e){return e.tagName==="SELECT"},Is=function(e){return e.tagName==="SLOT"},bs=function(e){return e.tagName.indexOf("-")>0},bl=(function(){function e(){this.counters={}}return e.prototype.getCounterValue=function(A){var t=this.counters[A];return t&&t.length?t[t.length-1]:1},e.prototype.getCounterValues=function(A){var t=this.counters[A];return t||[]},e.prototype.pop=function(A){var t=this;A.forEach(function(r){return t.counters[r].pop()})},e.prototype.parse=function(A){var t=this,r=A.counterIncrement,n=A.counterReset,i=!0;r!==null&&r.forEach(function(g){var l=t.counters[g.counter];l&&g.increment!==0&&(i=!1,l.length||l.push(1),l[Math.max(0,l.length-1)]+=g.increment)});var a=[];return i&&n.forEach(function(g){var l=t.counters[g.counter];a.push(g.counter),l||(l=t.counters[g.counter]=[]),l.push(g.reset)}),a},e})(),Ds={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Ks={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["\u0554","\u0553","\u0552","\u0551","\u0550","\u054F","\u054E","\u054D","\u054C","\u054B","\u054A","\u0549","\u0548","\u0547","\u0546","\u0545","\u0544","\u0543","\u0542","\u0541","\u0540","\u053F","\u053E","\u053D","\u053C","\u053B","\u053A","\u0539","\u0538","\u0537","\u0536","\u0535","\u0534","\u0533","\u0532","\u0531"]},Dl={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["\u05D9\u05F3","\u05D8\u05F3","\u05D7\u05F3","\u05D6\u05F3","\u05D5\u05F3","\u05D4\u05F3","\u05D3\u05F3","\u05D2\u05F3","\u05D1\u05F3","\u05D0\u05F3","\u05EA","\u05E9","\u05E8","\u05E7","\u05E6","\u05E4","\u05E2","\u05E1","\u05E0","\u05DE","\u05DC","\u05DB","\u05D9\u05D8","\u05D9\u05D7","\u05D9\u05D6","\u05D8\u05D6","\u05D8\u05D5","\u05D9","\u05D8","\u05D7","\u05D6","\u05D5","\u05D4","\u05D3","\u05D2","\u05D1","\u05D0"]},Kl={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["\u10F5","\u10F0","\u10EF","\u10F4","\u10EE","\u10ED","\u10EC","\u10EB","\u10EA","\u10E9","\u10E8","\u10E7","\u10E6","\u10E5","\u10E4","\u10F3","\u10E2","\u10E1","\u10E0","\u10DF","\u10DE","\u10DD","\u10F2","\u10DC","\u10DB","\u10DA","\u10D9","\u10D8","\u10D7","\u10F1","\u10D6","\u10D5","\u10D4","\u10D3","\u10D2","\u10D1","\u10D0"]},Or=function(e,A,t,r,n,i){return e<A||e>t?ct(e,n,i.length>0):r.integers.reduce(function(a,g,l){for(;e>=g;)e-=g,a+=r.values[l];return a},"")+i},Ls=function(e,A,t,r){var n="";do t||e--,n=r(e)+n,e/=A;while(e*A>=A);return n},DA=function(e,A,t,r,n){var i=t-A+1;return(e<0?"-":"")+(Ls(Math.abs(e),i,r,function(a){return u(Math.floor(a%i)+A)})+n)},wr=function(e,A,t){t===void 0&&(t=". ");var r=A.length;return Ls(Math.abs(e),r,!1,function(n){return A[Math.floor(n%r)]})+t},Rr=1,Ze=2,ze=4,ot=8,me=function(e,A,t,r,n,i){if(e<-9999||e>9999)return ct(e,4,n.length>0);var a=Math.abs(e),g=n;if(a===0)return A[0]+g;for(var l=0;a>0&&l<=4;l++){var H=a%10;H===0&&OA(i,Rr)&&g!==""?g=A[H]+g:H>1||H===1&&l===0||H===1&&l===1&&OA(i,Ze)||H===1&&l===1&&OA(i,ze)&&e>100||H===1&&l>1&&OA(i,ot)?g=A[H]+(l>0?t[l-1]:"")+g:H===1&&l>0&&(g=t[l-1]+g),a=Math.floor(a/10)}return(e<0?r:"")+g},Ss="\u5341\u767E\u5343\u842C",_s="\u62FE\u4F70\u4EDF\u842C",Ts="\u30DE\u30A4\u30CA\u30B9",Ln="\uB9C8\uC774\uB108\uC2A4",ct=function(e,A,t){var r=t?". ":"",n=t?"\u3001":"",i=t?", ":"",a=t?" ":"";switch(A){case 0:return"\u2022"+a;case 1:return"\u25E6"+a;case 2:return"\u25FE"+a;case 5:var g=DA(e,48,57,!0,r);return g.length<4?"0"+g:g;case 4:return wr(e,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",n);case 6:return Or(e,1,3999,Ds,3,r).toLowerCase();case 7:return Or(e,1,3999,Ds,3,r);case 8:return DA(e,945,969,!1,r);case 9:return DA(e,97,122,!1,r);case 10:return DA(e,65,90,!1,r);case 11:return DA(e,1632,1641,!0,r);case 12:case 49:return Or(e,1,9999,Ks,3,r);case 35:return Or(e,1,9999,Ks,3,r).toLowerCase();case 13:return DA(e,2534,2543,!0,r);case 14:case 30:return DA(e,6112,6121,!0,r);case 15:return wr(e,"\u5B50\u4E11\u5BC5\u536F\u8FB0\u5DF3\u5348\u672A\u7533\u9149\u620C\u4EA5",n);case 16:return wr(e,"\u7532\u4E59\u4E19\u4E01\u620A\u5DF1\u5E9A\u8F9B\u58EC\u7678",n);case 17:case 48:return me(e,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Ss,"\u8CA0",n,Ze|ze|ot);case 47:return me(e,"\u96F6\u58F9\u8CB3\u53C3\u8086\u4F0D\u9678\u67D2\u634C\u7396",_s,"\u8CA0",n,Rr|Ze|ze|ot);case 42:return me(e,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Ss,"\u8D1F",n,Ze|ze|ot);case 41:return me(e,"\u96F6\u58F9\u8D30\u53C1\u8086\u4F0D\u9646\u67D2\u634C\u7396",_s,"\u8D1F",n,Rr|Ze|ze|ot);case 26:return me(e,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u4E07",Ts,n,0);case 25:return me(e,"\u96F6\u58F1\u5F10\u53C2\u56DB\u4F0D\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343\u4E07",Ts,n,Rr|Ze|ze);case 31:return me(e,"\uC601\uC77C\uC774\uC0BC\uC0AC\uC624\uC721\uCE60\uD314\uAD6C","\uC2ED\uBC31\uCC9C\uB9CC",Ln,i,Rr|Ze|ze);case 33:return me(e,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u842C",Ln,i,0);case 32:return me(e,"\u96F6\u58F9\u8CB3\u53C3\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343",Ln,i,Rr|Ze|ze);case 18:return DA(e,2406,2415,!0,r);case 20:return Or(e,1,19999,Kl,3,r);case 21:return DA(e,2790,2799,!0,r);case 22:return DA(e,2662,2671,!0,r);case 22:return Or(e,1,10999,Dl,3,r);case 23:return wr(e,"\u3042\u3044\u3046\u3048\u304A\u304B\u304D\u304F\u3051\u3053\u3055\u3057\u3059\u305B\u305D\u305F\u3061\u3064\u3066\u3068\u306A\u306B\u306C\u306D\u306E\u306F\u3072\u3075\u3078\u307B\u307E\u307F\u3080\u3081\u3082\u3084\u3086\u3088\u3089\u308A\u308B\u308C\u308D\u308F\u3090\u3091\u3092\u3093");case 24:return wr(e,"\u3044\u308D\u306F\u306B\u307B\u3078\u3068\u3061\u308A\u306C\u308B\u3092\u308F\u304B\u3088\u305F\u308C\u305D\u3064\u306D\u306A\u3089\u3080\u3046\u3090\u306E\u304A\u304F\u3084\u307E\u3051\u3075\u3053\u3048\u3066\u3042\u3055\u304D\u3086\u3081\u307F\u3057\u3091\u3072\u3082\u305B\u3059");case 27:return DA(e,3302,3311,!0,r);case 28:return wr(e,"\u30A2\u30A4\u30A6\u30A8\u30AA\u30AB\u30AD\u30AF\u30B1\u30B3\u30B5\u30B7\u30B9\u30BB\u30BD\u30BF\u30C1\u30C4\u30C6\u30C8\u30CA\u30CB\u30CC\u30CD\u30CE\u30CF\u30D2\u30D5\u30D8\u30DB\u30DE\u30DF\u30E0\u30E1\u30E2\u30E4\u30E6\u30E8\u30E9\u30EA\u30EB\u30EC\u30ED\u30EF\u30F0\u30F1\u30F2\u30F3",n);case 29:return wr(e,"\u30A4\u30ED\u30CF\u30CB\u30DB\u30D8\u30C8\u30C1\u30EA\u30CC\u30EB\u30F2\u30EF\u30AB\u30E8\u30BF\u30EC\u30BD\u30C4\u30CD\u30CA\u30E9\u30E0\u30A6\u30F0\u30CE\u30AA\u30AF\u30E4\u30DE\u30B1\u30D5\u30B3\u30A8\u30C6\u30A2\u30B5\u30AD\u30E6\u30E1\u30DF\u30B7\u30F1\u30D2\u30E2\u30BB\u30B9",n);case 34:return DA(e,3792,3801,!0,r);case 37:return DA(e,6160,6169,!0,r);case 38:return DA(e,4160,4169,!0,r);case 39:return DA(e,2918,2927,!0,r);case 40:return DA(e,1776,1785,!0,r);case 43:return DA(e,3046,3055,!0,r);case 44:return DA(e,3174,3183,!0,r);case 45:return DA(e,3664,3673,!0,r);case 46:return DA(e,3872,3881,!0,r);default:return DA(e,48,57,!0,r)}},Os="data-html2canvas-ignore",Rs=(function(){function e(A,t,r){if(this.context=A,this.options=r,this.scrolledElements=[],this.referenceElement=t,this.counters=new bl,this.quoteDepth=0,!t.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}return e.prototype.toIFrame=function(A,t){var r=this,n=Ll(A,t);if(!n.contentWindow)return Promise.reject("Unable to find iframe window");var i=A.defaultView.pageXOffset,a=A.defaultView.pageYOffset,g=n.contentWindow,l=g.document,H=Tl(n).then(function(){return c(r,void 0,void 0,function(){var y,m;return x(this,function(_){switch(_.label){case 0:return this.scrolledElements.forEach(kl),g&&(g.scrollTo(t.left,t.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(g.scrollY!==t.top||g.scrollX!==t.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(g.scrollX-t.left,g.scrollY-t.top,0,0))),y=this.options.onclone,m=this.clonedReferenceElement,typeof m=="undefined"?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:l.fonts&&l.fonts.ready?[4,l.fonts.ready]:[3,2];case 1:_.sent(),_.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,_l(l)]:[3,4];case 3:_.sent(),_.label=4;case 4:return typeof y=="function"?[2,Promise.resolve().then(function(){return y(l,m)}).then(function(){return n})]:[2,n]}})})});return l.open(),l.write(Rl(document.doctype)+"<html></html>"),Ml(this.referenceElement.ownerDocument,i,a),l.replaceChild(l.adoptNode(this.documentElement),l.documentElement),l.close(),H},e.prototype.createElementClone=function(A){if(Cn(A,2))debugger;if(Es(A))return this.createCanvasClone(A);if(Hs(A))return this.createVideoClone(A);if(ms(A))return this.createStyleClone(A);var t=A.cloneNode(!1);return Kn(t)&&(Kn(A)&&A.currentSrc&&A.currentSrc!==A.src&&(t.src=A.currentSrc,t.srcset=""),t.loading==="lazy"&&(t.loading="eager")),bs(t)?this.createCustomElementClone(t):t},e.prototype.createCustomElementClone=function(A){var t=document.createElement("html2canvascustomelement");return Sn(A.style,t),t},e.prototype.createStyleClone=function(A){try{var t=A.sheet;if(t&&t.cssRules){var r=[].slice.call(t.cssRules,0).reduce(function(i,a){return a&&typeof a.cssText=="string"?i+a.cssText:i},""),n=A.cloneNode(!1);return n.textContent=r,n}}catch(i){if(this.context.logger.error("Unable to access cssRules property",i),i.name!=="SecurityError")throw i}return A.cloneNode(!1)},e.prototype.createCanvasClone=function(A){var t;if(this.options.inlineImages&&A.ownerDocument){var r=A.ownerDocument.createElement("img");try{return r.src=A.toDataURL(),r}catch{this.context.logger.info("Unable to inline canvas contents, canvas is tainted",A)}}var n=A.cloneNode(!1);try{n.width=A.width,n.height=A.height;var i=A.getContext("2d"),a=n.getContext("2d");if(a)if(!this.options.allowTaint&&i)a.putImageData(i.getImageData(0,0,A.width,A.height),0,0);else{var g=(t=A.getContext("webgl2"))!==null&&t!==void 0?t:A.getContext("webgl");if(g){var l=g.getContextAttributes();(l==null?void 0:l.preserveDrawingBuffer)===!1&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",A)}a.drawImage(A,0,0)}return n}catch{this.context.logger.info("Unable to clone canvas as it is tainted",A)}return n},e.prototype.createVideoClone=function(A){var t=A.ownerDocument.createElement("canvas");t.width=A.offsetWidth,t.height=A.offsetHeight;var r=t.getContext("2d");try{return r&&(r.drawImage(A,0,0,t.width,t.height),this.options.allowTaint||r.getImageData(0,0,t.width,t.height)),t}catch{this.context.logger.info("Unable to clone video as it is tainted",A)}var n=A.ownerDocument.createElement("canvas");return n.width=A.offsetWidth,n.height=A.offsetHeight,n},e.prototype.appendChildNode=function(A,t,r){(!Tr(t)||!Il(t)&&!t.hasAttribute(Os)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(t)))&&(!this.options.copyStyles||!Tr(t)||!ms(t))&&A.appendChild(this.cloneNode(t,r))},e.prototype.cloneChildNodes=function(A,t,r){for(var n=this,i=A.shadowRoot?A.shadowRoot.firstChild:A.firstChild;i;i=i.nextSibling)if(Tr(i)&&Is(i)&&typeof i.assignedNodes=="function"){var a=i.assignedNodes();a.length&&a.forEach(function(g){return n.appendChildNode(t,g,r)})}else this.appendChildNode(t,i,r)},e.prototype.cloneNode=function(A,t){if(vs(A))return document.createTextNode(A.data);if(!A.ownerDocument)return A.cloneNode(!1);var r=A.ownerDocument.defaultView;if(r&&Tr(A)&&(bn(A)||jt(A))){var n=this.createElementClone(A);n.style.transitionProperty="none";var i=r.getComputedStyle(A),a=r.getComputedStyle(A,":before"),g=r.getComputedStyle(A,":after");this.referenceElement===A&&bn(n)&&(this.clonedReferenceElement=n),Dn(n)&&Vl(n);var l=this.counters.parse(new ji(this.context,i)),H=this.resolvePseudoContent(A,n,a,ft.BEFORE);bs(A)&&(t=!0),Hs(A)||this.cloneChildNodes(A,n,t),H&&n.insertBefore(H,n.firstChild);var y=this.resolvePseudoContent(A,n,g,ft.AFTER);return y&&n.appendChild(y),this.counters.pop(l),(i&&(this.options.copyStyles||jt(A))&&!ys(A)||t)&&Sn(i,n),(A.scrollTop!==0||A.scrollLeft!==0)&&this.scrolledElements.push([n,A.scrollLeft,A.scrollTop]),($t(A)||A0(A))&&($t(n)||A0(n))&&(n.value=A.value),n}return A.cloneNode(!1)},e.prototype.resolvePseudoContent=function(A,t,r,n){var i=this;if(r){var a=r.content,g=t.ownerDocument;if(!(!g||!a||a==="none"||a==="-moz-alt-content"||r.display==="none")){this.counters.parse(new ji(this.context,r));var l=new Ef(this.context,r),H=g.createElement("html2canvaspseudoelement");Sn(r,H),l.content.forEach(function(m){if(m.type===0)H.appendChild(g.createTextNode(m.value));else if(m.type===22){var _=g.createElement("img");_.src=m.value,_.style.opacity="1",H.appendChild(_)}else if(m.type===18){if(m.name==="attr"){var tA=m.values.filter(EA);tA.length&&H.appendChild(g.createTextNode(A.getAttribute(tA[0].value)||""))}else if(m.name==="counter"){var q=m.values.filter(Sr),j=q[0],uA=q[1];if(j&&EA(j)){var sA=i.counters.getCounterValue(j.value),iA=uA&&EA(uA)?wn.parse(i.context,uA.value):3;H.appendChild(g.createTextNode(ct(sA,iA,!1)))}}else if(m.name==="counters"){var UA=m.values.filter(Sr),j=UA[0],wA=UA[1],uA=UA[2];if(j&&EA(j)){var oA=i.counters.getCounterValues(j.value),AA=uA&&EA(uA)?wn.parse(i.context,uA.value):3,dA=wA&&wA.type===0?wA.value:"",FA=oA.map(function($A){return ct($A,AA,!1)}).join(dA);H.appendChild(g.createTextNode(FA))}}}else if(m.type===20)switch(m.value){case"open-quote":H.appendChild(g.createTextNode(zi(l.quotes,i.quoteDepth++,!0)));break;case"close-quote":H.appendChild(g.createTextNode(zi(l.quotes,--i.quoteDepth,!1)));break;default:H.appendChild(g.createTextNode(m.value))}}),H.className=_n+" "+Tn;var y=n===ft.BEFORE?" "+_n:" "+Tn;return jt(t)?t.className.baseValue+=y:t.className+=y,H}}},e.destroy=function(A){return A.parentNode?(A.parentNode.removeChild(A),!0):!1},e})(),ft;(function(e){e[e.BEFORE=0]="BEFORE",e[e.AFTER=1]="AFTER"})(ft||(ft={}));var Ll=function(e,A){var t=e.createElement("iframe");return t.className="html2canvas-container",t.style.visibility="hidden",t.style.position="fixed",t.style.left="-10000px",t.style.top="0px",t.style.border="0",t.width=A.width.toString(),t.height=A.height.toString(),t.scrolling="no",t.setAttribute(Os,"true"),e.body.appendChild(t),t},Sl=function(e){return new Promise(function(A){if(e.complete){A();return}if(!e.src){A();return}e.onload=A,e.onerror=A})},_l=function(e){return Promise.all([].slice.call(e.images,0).map(Sl))},Tl=function(e){return new Promise(function(A,t){var r=e.contentWindow;if(!r)return t("No window assigned for iframe");var n=r.document;r.onload=e.onload=function(){r.onload=e.onload=null;var i=setInterval(function(){n.body.childNodes.length>0&&n.readyState==="complete"&&(clearInterval(i),A(e))},50)}})},Ol=["all","d","content"],Sn=function(e,A){for(var t=e.length-1;t>=0;t--){var r=e.item(t);Ol.indexOf(r)===-1&&A.style.setProperty(r,e.getPropertyValue(r))}return A},Rl=function(e){var A="";return e&&(A+="<!DOCTYPE ",e.name&&(A+=e.name),e.internalSubset&&(A+=e.internalSubset),e.publicId&&(A+='"'+e.publicId+'"'),e.systemId&&(A+='"'+e.systemId+'"'),A+=">"),A},Ml=function(e,A,t){e&&e.defaultView&&(A!==e.defaultView.pageXOffset||t!==e.defaultView.pageYOffset)&&e.defaultView.scrollTo(A,t)},kl=function(e){var A=e[0],t=e[1],r=e[2];A.scrollLeft=t,A.scrollTop=r},Gl=":before",Nl=":after",_n="___html2canvas___pseudoelement_before",Tn="___html2canvas___pseudoelement_after",Ms=`{
2
+ content: "" !important;
3
+ display: none !important;
4
+ }`,Vl=function(e){Pl(e,"."+_n+Gl+Ms+`
5
+ .`+Tn+Nl+Ms)},Pl=function(e,A){var t=e.ownerDocument;if(t){var r=t.createElement("style");r.textContent=A,e.appendChild(r)}},ks=(function(){function e(){}return e.getOrigin=function(A){var t=e._link;return t?(t.href=A,t.href=t.href,t.protocol+t.hostname+t.port):"about:blank"},e.isSameOrigin=function(A){return e.getOrigin(A)===e._origin},e.setContext=function(A){e._link=A.document.createElement("a"),e._origin=e.getOrigin(A.location.href)},e._origin="about:blank",e})(),Xl=(function(){function e(A,t){this.context=A,this._options=t,this._cache={}}return e.prototype.addImage=function(A){var t=Promise.resolve();return this.has(A)||(Rn(A)||ql(A))&&(this._cache[A]=this.loadImage(A)).catch(function(){}),t},e.prototype.match=function(A){return this._cache[A]},e.prototype.loadImage=function(A){return c(this,void 0,void 0,function(){var t,r,n,i,a=this;return x(this,function(g){switch(g.label){case 0:return t=ks.isSameOrigin(A),r=!On(A)&&this._options.useCORS===!0&&GA.SUPPORT_CORS_IMAGES&&!t,n=!On(A)&&!t&&!Rn(A)&&typeof this._options.proxy=="string"&&GA.SUPPORT_CORS_XHR&&!r,!t&&this._options.allowTaint===!1&&!On(A)&&!Rn(A)&&!n&&!r?[2]:(i=A,n?[4,this.proxy(i)]:[3,2]);case 1:i=g.sent(),g.label=2;case 2:return this.context.logger.debug("Added image "+A.substring(0,256)),[4,new Promise(function(l,H){var y=new Image;y.onload=function(){return l(y)},y.onerror=H,(Zl(i)||r)&&(y.crossOrigin="anonymous"),y.src=i,y.complete===!0&&setTimeout(function(){return l(y)},500),a._options.imageTimeout>0&&setTimeout(function(){return H("Timed out ("+a._options.imageTimeout+"ms) loading image")},a._options.imageTimeout)})];case 3:return[2,g.sent()]}})})},e.prototype.has=function(A){return typeof this._cache[A]!="undefined"},e.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},e.prototype.proxy=function(A){var t=this,r=this._options.proxy;if(!r)throw new Error("No proxy defined");var n=A.substring(0,256);return new Promise(function(i,a){var g=GA.SUPPORT_RESPONSE_TYPE?"blob":"text",l=new XMLHttpRequest;l.onload=function(){if(l.status===200)if(g==="text")i(l.response);else{var m=new FileReader;m.addEventListener("load",function(){return i(m.result)},!1),m.addEventListener("error",function(_){return a(_)},!1),m.readAsDataURL(l.response)}else a("Failed to proxy resource "+n+" with status code "+l.status)},l.onerror=a;var H=r.indexOf("?")>-1?"&":"?";if(l.open("GET",""+r+H+"url="+encodeURIComponent(A)+"&responseType="+g),g!=="text"&&l instanceof XMLHttpRequest&&(l.responseType=g),t._options.imageTimeout){var y=t._options.imageTimeout;l.timeout=y,l.ontimeout=function(){return a("Timed out ("+y+"ms) proxying "+n)}}l.send()})},e})(),Wl=/^data:image\/svg\+xml/i,Jl=/^data:image\/.*;base64,/i,Yl=/^data:image\/.*/i,ql=function(e){return GA.SUPPORT_SVG_DRAWING||!zl(e)},On=function(e){return Yl.test(e)},Zl=function(e){return Jl.test(e)},Rn=function(e){return e.substr(0,4)==="blob"},zl=function(e){return e.substr(-3).toLowerCase()==="svg"||Wl.test(e)},$=(function(){function e(A,t){this.type=0,this.x=A,this.y=t}return e.prototype.add=function(A,t){return new e(this.x+A,this.y+t)},e})(),Mr=function(e,A,t){return new $(e.x+(A.x-e.x)*t,e.y+(A.y-e.y)*t)},e0=(function(){function e(A,t,r,n){this.type=1,this.start=A,this.startControl=t,this.endControl=r,this.end=n}return e.prototype.subdivide=function(A,t){var r=Mr(this.start,this.startControl,A),n=Mr(this.startControl,this.endControl,A),i=Mr(this.endControl,this.end,A),a=Mr(r,n,A),g=Mr(n,i,A),l=Mr(a,g,A);return t?new e(this.start,r,a,l):new e(l,g,i,this.end)},e.prototype.add=function(A,t){return new e(this.start.add(A,t),this.startControl.add(A,t),this.endControl.add(A,t),this.end.add(A,t))},e.prototype.reverse=function(){return new e(this.end,this.endControl,this.startControl,this.start)},e})(),fe=function(e){return e.type===1},jl=(function(){function e(A){var t=A.styles,r=A.bounds,n=nt(t.borderTopLeftRadius,r.width,r.height),i=n[0],a=n[1],g=nt(t.borderTopRightRadius,r.width,r.height),l=g[0],H=g[1],y=nt(t.borderBottomRightRadius,r.width,r.height),m=y[0],_=y[1],tA=nt(t.borderBottomLeftRadius,r.width,r.height),q=tA[0],j=tA[1],uA=[];uA.push((i+l)/r.width),uA.push((q+m)/r.width),uA.push((a+j)/r.height),uA.push((H+_)/r.height);var sA=Math.max.apply(Math,uA);sA>1&&(i/=sA,a/=sA,l/=sA,H/=sA,m/=sA,_/=sA,q/=sA,j/=sA);var iA=r.width-l,UA=r.height-_,wA=r.width-m,oA=r.height-j,AA=t.borderTopWidth,dA=t.borderRightWidth,FA=t.borderBottomWidth,cA=t.borderLeftWidth,SA=IA(t.paddingTop,A.bounds.width),$A=IA(t.paddingRight,A.bounds.width),ie=IA(t.paddingBottom,A.bounds.width),HA=IA(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=i>0||a>0?bA(r.left+cA/3,r.top+AA/3,i-cA/3,a-AA/3,vA.TOP_LEFT):new $(r.left+cA/3,r.top+AA/3),this.topRightBorderDoubleOuterBox=i>0||a>0?bA(r.left+iA,r.top+AA/3,l-dA/3,H-AA/3,vA.TOP_RIGHT):new $(r.left+r.width-dA/3,r.top+AA/3),this.bottomRightBorderDoubleOuterBox=m>0||_>0?bA(r.left+wA,r.top+UA,m-dA/3,_-FA/3,vA.BOTTOM_RIGHT):new $(r.left+r.width-dA/3,r.top+r.height-FA/3),this.bottomLeftBorderDoubleOuterBox=q>0||j>0?bA(r.left+cA/3,r.top+oA,q-cA/3,j-FA/3,vA.BOTTOM_LEFT):new $(r.left+cA/3,r.top+r.height-FA/3),this.topLeftBorderDoubleInnerBox=i>0||a>0?bA(r.left+cA*2/3,r.top+AA*2/3,i-cA*2/3,a-AA*2/3,vA.TOP_LEFT):new $(r.left+cA*2/3,r.top+AA*2/3),this.topRightBorderDoubleInnerBox=i>0||a>0?bA(r.left+iA,r.top+AA*2/3,l-dA*2/3,H-AA*2/3,vA.TOP_RIGHT):new $(r.left+r.width-dA*2/3,r.top+AA*2/3),this.bottomRightBorderDoubleInnerBox=m>0||_>0?bA(r.left+wA,r.top+UA,m-dA*2/3,_-FA*2/3,vA.BOTTOM_RIGHT):new $(r.left+r.width-dA*2/3,r.top+r.height-FA*2/3),this.bottomLeftBorderDoubleInnerBox=q>0||j>0?bA(r.left+cA*2/3,r.top+oA,q-cA*2/3,j-FA*2/3,vA.BOTTOM_LEFT):new $(r.left+cA*2/3,r.top+r.height-FA*2/3),this.topLeftBorderStroke=i>0||a>0?bA(r.left+cA/2,r.top+AA/2,i-cA/2,a-AA/2,vA.TOP_LEFT):new $(r.left+cA/2,r.top+AA/2),this.topRightBorderStroke=i>0||a>0?bA(r.left+iA,r.top+AA/2,l-dA/2,H-AA/2,vA.TOP_RIGHT):new $(r.left+r.width-dA/2,r.top+AA/2),this.bottomRightBorderStroke=m>0||_>0?bA(r.left+wA,r.top+UA,m-dA/2,_-FA/2,vA.BOTTOM_RIGHT):new $(r.left+r.width-dA/2,r.top+r.height-FA/2),this.bottomLeftBorderStroke=q>0||j>0?bA(r.left+cA/2,r.top+oA,q-cA/2,j-FA/2,vA.BOTTOM_LEFT):new $(r.left+cA/2,r.top+r.height-FA/2),this.topLeftBorderBox=i>0||a>0?bA(r.left,r.top,i,a,vA.TOP_LEFT):new $(r.left,r.top),this.topRightBorderBox=l>0||H>0?bA(r.left+iA,r.top,l,H,vA.TOP_RIGHT):new $(r.left+r.width,r.top),this.bottomRightBorderBox=m>0||_>0?bA(r.left+wA,r.top+UA,m,_,vA.BOTTOM_RIGHT):new $(r.left+r.width,r.top+r.height),this.bottomLeftBorderBox=q>0||j>0?bA(r.left,r.top+oA,q,j,vA.BOTTOM_LEFT):new $(r.left,r.top+r.height),this.topLeftPaddingBox=i>0||a>0?bA(r.left+cA,r.top+AA,Math.max(0,i-cA),Math.max(0,a-AA),vA.TOP_LEFT):new $(r.left+cA,r.top+AA),this.topRightPaddingBox=l>0||H>0?bA(r.left+Math.min(iA,r.width-dA),r.top+AA,iA>r.width+dA?0:Math.max(0,l-dA),Math.max(0,H-AA),vA.TOP_RIGHT):new $(r.left+r.width-dA,r.top+AA),this.bottomRightPaddingBox=m>0||_>0?bA(r.left+Math.min(wA,r.width-cA),r.top+Math.min(UA,r.height-FA),Math.max(0,m-dA),Math.max(0,_-FA),vA.BOTTOM_RIGHT):new $(r.left+r.width-dA,r.top+r.height-FA),this.bottomLeftPaddingBox=q>0||j>0?bA(r.left+cA,r.top+Math.min(oA,r.height-FA),Math.max(0,q-cA),Math.max(0,j-FA),vA.BOTTOM_LEFT):new $(r.left+cA,r.top+r.height-FA),this.topLeftContentBox=i>0||a>0?bA(r.left+cA+HA,r.top+AA+SA,Math.max(0,i-(cA+HA)),Math.max(0,a-(AA+SA)),vA.TOP_LEFT):new $(r.left+cA+HA,r.top+AA+SA),this.topRightContentBox=l>0||H>0?bA(r.left+Math.min(iA,r.width+cA+HA),r.top+AA+SA,iA>r.width+cA+HA?0:l-cA+HA,H-(AA+SA),vA.TOP_RIGHT):new $(r.left+r.width-(dA+$A),r.top+AA+SA),this.bottomRightContentBox=m>0||_>0?bA(r.left+Math.min(wA,r.width-(cA+HA)),r.top+Math.min(UA,r.height+AA+SA),Math.max(0,m-(dA+$A)),_-(FA+ie),vA.BOTTOM_RIGHT):new $(r.left+r.width-(dA+$A),r.top+r.height-(FA+ie)),this.bottomLeftContentBox=q>0||j>0?bA(r.left+cA+HA,r.top+oA,Math.max(0,q-(cA+HA)),j-(FA+ie),vA.BOTTOM_LEFT):new $(r.left+cA+HA,r.top+r.height-(FA+ie))}return e})(),vA;(function(e){e[e.TOP_LEFT=0]="TOP_LEFT",e[e.TOP_RIGHT=1]="TOP_RIGHT",e[e.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",e[e.BOTTOM_LEFT=3]="BOTTOM_LEFT"})(vA||(vA={}));var bA=function(e,A,t,r,n){var i=4*((Math.sqrt(2)-1)/3),a=t*i,g=r*i,l=e+t,H=A+r;switch(n){case vA.TOP_LEFT:return new e0(new $(e,H),new $(e,H-g),new $(l-a,A),new $(l,A));case vA.TOP_RIGHT:return new e0(new $(e,A),new $(e+a,A),new $(l,H-g),new $(l,H));case vA.BOTTOM_RIGHT:return new e0(new $(l,A),new $(l,A+g),new $(e+a,H),new $(e,H));case vA.BOTTOM_LEFT:default:return new e0(new $(l,H),new $(l-a,H),new $(e,A+g),new $(e,A))}},r0=function(e){return[e.topLeftBorderBox,e.topRightBorderBox,e.bottomRightBorderBox,e.bottomLeftBorderBox]},$l=function(e){return[e.topLeftContentBox,e.topRightContentBox,e.bottomRightContentBox,e.bottomLeftContentBox]},t0=function(e){return[e.topLeftPaddingBox,e.topRightPaddingBox,e.bottomRightPaddingBox,e.bottomLeftPaddingBox]},Au=(function(){function e(A,t,r){this.offsetX=A,this.offsetY=t,this.matrix=r,this.type=0,this.target=6}return e})(),n0=(function(){function e(A,t){this.path=A,this.target=t,this.type=1}return e})(),eu=(function(){function e(A){this.opacity=A,this.type=2,this.target=6}return e})(),ru=function(e){return e.type===0},Gs=function(e){return e.type===1},tu=function(e){return e.type===2},Ns=function(e,A){return e.length===A.length?e.some(function(t,r){return t===A[r]}):!1},nu=function(e,A,t,r,n){return e.map(function(i,a){switch(a){case 0:return i.add(A,t);case 1:return i.add(A+r,t);case 2:return i.add(A+r,t+n);case 3:return i.add(A,t+n)}return i})},Vs=(function(){function e(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return e})(),Ps=(function(){function e(A,t){if(this.container=A,this.parent=t,this.effects=[],this.curves=new jl(this.container),this.container.styles.opacity<1&&this.effects.push(new eu(this.container.styles.opacity)),this.container.styles.transform!==null){var r=this.container.bounds.left+this.container.styles.transformOrigin[0].number,n=this.container.bounds.top+this.container.styles.transformOrigin[1].number,i=this.container.styles.transform;this.effects.push(new Au(r,n,i))}if(this.container.styles.overflowX!==0){var a=r0(this.curves),g=t0(this.curves);Ns(a,g)?this.effects.push(new n0(a,6)):(this.effects.push(new n0(a,2)),this.effects.push(new n0(g,4)))}}return e.prototype.getEffects=function(A){for(var t=[2,3].indexOf(this.container.styles.position)===-1,r=this.parent,n=this.effects.slice(0);r;){var i=r.effects.filter(function(l){return!Gs(l)});if(t||r.container.styles.position!==0||!r.parent){if(n.unshift.apply(n,i),t=[2,3].indexOf(r.container.styles.position)===-1,r.container.styles.overflowX!==0){var a=r0(r.curves),g=t0(r.curves);Ns(a,g)||n.unshift(new n0(g,6))}}else n.unshift.apply(n,i);r=r.parent}return n.filter(function(l){return OA(l.target,A)})},e})(),Mn=function(e,A,t,r){e.container.elements.forEach(function(n){var i=OA(n.flags,4),a=OA(n.flags,2),g=new Ps(n,e);OA(n.styles.display,2048)&&r.push(g);var l=OA(n.flags,8)?[]:r;if(i||a){var H=i||n.styles.isPositioned()?t:A,y=new Vs(g);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){var m=n.styles.zIndex.order;if(m<0){var _=0;H.negativeZIndex.some(function(q,j){return m>q.element.container.styles.zIndex.order?(_=j,!1):_>0}),H.negativeZIndex.splice(_,0,y)}else if(m>0){var tA=0;H.positiveZIndex.some(function(q,j){return m>=q.element.container.styles.zIndex.order?(tA=j+1,!1):tA>0}),H.positiveZIndex.splice(tA,0,y)}else H.zeroOrAutoZIndexOrTransformedOrOpacity.push(y)}else n.styles.isFloating()?H.nonPositionedFloats.push(y):H.nonPositionedInlineLevel.push(y);Mn(g,y,i?y:t,l)}else n.styles.isInlineLevel()?A.inlineLevel.push(g):A.nonInlineLevel.push(g),Mn(g,A,t,l);OA(n.flags,8)&&Xs(n,l)})},Xs=function(e,A){for(var t=e instanceof mn?e.start:1,r=e instanceof mn?e.reversed:!1,n=0;n<A.length;n++){var i=A[n];i.container instanceof Cs&&typeof i.container.value=="number"&&i.container.value!==0&&(t=i.container.value),i.listValue=ct(t,i.container.styles.listStyleType,!0),t+=r?-1:1}},iu=function(e){var A=new Ps(e,null),t=new Vs(A),r=[];return Mn(A,t,t,r),Xs(A.container,r),t},Ws=function(e,A){switch(A){case 0:return le(e.topLeftBorderBox,e.topLeftPaddingBox,e.topRightBorderBox,e.topRightPaddingBox);case 1:return le(e.topRightBorderBox,e.topRightPaddingBox,e.bottomRightBorderBox,e.bottomRightPaddingBox);case 2:return le(e.bottomRightBorderBox,e.bottomRightPaddingBox,e.bottomLeftBorderBox,e.bottomLeftPaddingBox);default:return le(e.bottomLeftBorderBox,e.bottomLeftPaddingBox,e.topLeftBorderBox,e.topLeftPaddingBox)}},su=function(e,A){switch(A){case 0:return le(e.topLeftBorderBox,e.topLeftBorderDoubleOuterBox,e.topRightBorderBox,e.topRightBorderDoubleOuterBox);case 1:return le(e.topRightBorderBox,e.topRightBorderDoubleOuterBox,e.bottomRightBorderBox,e.bottomRightBorderDoubleOuterBox);case 2:return le(e.bottomRightBorderBox,e.bottomRightBorderDoubleOuterBox,e.bottomLeftBorderBox,e.bottomLeftBorderDoubleOuterBox);default:return le(e.bottomLeftBorderBox,e.bottomLeftBorderDoubleOuterBox,e.topLeftBorderBox,e.topLeftBorderDoubleOuterBox)}},au=function(e,A){switch(A){case 0:return le(e.topLeftBorderDoubleInnerBox,e.topLeftPaddingBox,e.topRightBorderDoubleInnerBox,e.topRightPaddingBox);case 1:return le(e.topRightBorderDoubleInnerBox,e.topRightPaddingBox,e.bottomRightBorderDoubleInnerBox,e.bottomRightPaddingBox);case 2:return le(e.bottomRightBorderDoubleInnerBox,e.bottomRightPaddingBox,e.bottomLeftBorderDoubleInnerBox,e.bottomLeftPaddingBox);default:return le(e.bottomLeftBorderDoubleInnerBox,e.bottomLeftPaddingBox,e.topLeftBorderDoubleInnerBox,e.topLeftPaddingBox)}},Bu=function(e,A){switch(A){case 0:return i0(e.topLeftBorderStroke,e.topRightBorderStroke);case 1:return i0(e.topRightBorderStroke,e.bottomRightBorderStroke);case 2:return i0(e.bottomRightBorderStroke,e.bottomLeftBorderStroke);default:return i0(e.bottomLeftBorderStroke,e.topLeftBorderStroke)}},i0=function(e,A){var t=[];return fe(e)?t.push(e.subdivide(.5,!1)):t.push(e),fe(A)?t.push(A.subdivide(.5,!0)):t.push(A),t},le=function(e,A,t,r){var n=[];return fe(e)?n.push(e.subdivide(.5,!1)):n.push(e),fe(t)?n.push(t.subdivide(.5,!0)):n.push(t),fe(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),fe(A)?n.push(A.subdivide(.5,!1).reverse()):n.push(A),n},Js=function(e){var A=e.bounds,t=e.styles;return A.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},s0=function(e){var A=e.styles,t=e.bounds,r=IA(A.paddingLeft,t.width),n=IA(A.paddingRight,t.width),i=IA(A.paddingTop,t.width),a=IA(A.paddingBottom,t.width);return t.add(r+A.borderLeftWidth,i+A.borderTopWidth,-(A.borderRightWidth+A.borderLeftWidth+r+n),-(A.borderTopWidth+A.borderBottomWidth+i+a))},ou=function(e,A){return e===0?A.bounds:e===2?s0(A):Js(A)},cu=function(e,A){return e===0?A.bounds:e===2?s0(A):Js(A)},kn=function(e,A,t){var r=ou(Gr(e.styles.backgroundOrigin,A),e),n=cu(Gr(e.styles.backgroundClip,A),e),i=fu(Gr(e.styles.backgroundSize,A),t,r),a=i[0],g=i[1],l=nt(Gr(e.styles.backgroundPosition,A),r.width-a,r.height-g),H=lu(Gr(e.styles.backgroundRepeat,A),l,i,r,n),y=Math.round(r.left+l[0]),m=Math.round(r.top+l[1]);return[H,y,m,a,g]},kr=function(e){return EA(e)&&e.value===_r.AUTO},a0=function(e){return typeof e=="number"},fu=function(e,A,t){var r=A[0],n=A[1],i=A[2],a=e[0],g=e[1];if(!a)return[0,0];if(LA(a)&&g&&LA(g))return[IA(a,t.width),IA(g,t.height)];var l=a0(i);if(EA(a)&&(a.value===_r.CONTAIN||a.value===_r.COVER)){if(a0(i)){var H=t.width/t.height;return H<i!=(a.value===_r.COVER)?[t.width,t.width/i]:[t.height*i,t.height]}return[t.width,t.height]}var y=a0(r),m=a0(n),_=y||m;if(kr(a)&&(!g||kr(g))){if(y&&m)return[r,n];if(!l&&!_)return[t.width,t.height];if(_&&l){var tA=y?r:n*i,q=m?n:r/i;return[tA,q]}var j=y?r:t.width,uA=m?n:t.height;return[j,uA]}if(l){var sA=0,iA=0;return LA(a)?sA=IA(a,t.width):LA(g)&&(iA=IA(g,t.height)),kr(a)?sA=iA*i:(!g||kr(g))&&(iA=sA/i),[sA,iA]}var UA=null,wA=null;if(LA(a)?UA=IA(a,t.width):g&&LA(g)&&(wA=IA(g,t.height)),UA!==null&&(!g||kr(g))&&(wA=y&&m?UA/r*n:t.height),wA!==null&&kr(a)&&(UA=y&&m?wA/n*r:t.width),UA!==null&&wA!==null)return[UA,wA];throw new Error("Unable to calculate background-size for element")},Gr=function(e,A){var t=e[A];return typeof t=="undefined"?e[0]:t},lu=function(e,A,t,r,n){var i=A[0],a=A[1],g=t[0],l=t[1];switch(e){case 2:return[new $(Math.round(r.left),Math.round(r.top+a)),new $(Math.round(r.left+r.width),Math.round(r.top+a)),new $(Math.round(r.left+r.width),Math.round(l+r.top+a)),new $(Math.round(r.left),Math.round(l+r.top+a))];case 3:return[new $(Math.round(r.left+i),Math.round(r.top)),new $(Math.round(r.left+i+g),Math.round(r.top)),new $(Math.round(r.left+i+g),Math.round(r.height+r.top)),new $(Math.round(r.left+i),Math.round(r.height+r.top))];case 1:return[new $(Math.round(r.left+i),Math.round(r.top+a)),new $(Math.round(r.left+i+g),Math.round(r.top+a)),new $(Math.round(r.left+i+g),Math.round(r.top+a+l)),new $(Math.round(r.left+i),Math.round(r.top+a+l))];default:return[new $(Math.round(n.left),Math.round(n.top)),new $(Math.round(n.left+n.width),Math.round(n.top)),new $(Math.round(n.left+n.width),Math.round(n.height+n.top)),new $(Math.round(n.left),Math.round(n.height+n.top))]}},uu="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Ys="Hidden Text",gu=(function(){function e(A){this._data={},this._document=A}return e.prototype.parseMetrics=function(A,t){var r=this._document.createElement("div"),n=this._document.createElement("img"),i=this._document.createElement("span"),a=this._document.body;r.style.visibility="hidden",r.style.fontFamily=A,r.style.fontSize=t,r.style.margin="0",r.style.padding="0",r.style.whiteSpace="nowrap",a.appendChild(r),n.src=uu,n.width=1,n.height=1,n.style.margin="0",n.style.padding="0",n.style.verticalAlign="baseline",i.style.fontFamily=A,i.style.fontSize=t,i.style.margin="0",i.style.padding="0",i.appendChild(this._document.createTextNode(Ys)),r.appendChild(i),r.appendChild(n);var g=n.offsetTop-i.offsetTop+2;r.removeChild(i),r.appendChild(this._document.createTextNode(Ys)),r.style.lineHeight="normal",n.style.verticalAlign="super";var l=n.offsetTop-r.offsetTop+2;return a.removeChild(r),{baseline:g,middle:l}},e.prototype.getMetrics=function(A,t){var r=A+" "+t;return typeof this._data[r]=="undefined"&&(this._data[r]=this.parseMetrics(A,t)),this._data[r]},e})(),qs=(function(){function e(A,t){this.context=A,this.options=t}return e})(),wu=1e4,Cu=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;return n._activeEffects=[],n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),r.canvas||(n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px"),n.fontMetrics=new gu(document),n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.ctx.textBaseline="bottom",n._activeEffects=[],n.context.logger.debug("Canvas renderer initialized ("+r.width+"x"+r.height+") with scale "+r.scale),n}return A.prototype.applyEffects=function(t){for(var r=this;this._activeEffects.length;)this.popEffect();t.forEach(function(n){return r.applyEffect(n)})},A.prototype.applyEffect=function(t){this.ctx.save(),tu(t)&&(this.ctx.globalAlpha=t.opacity),ru(t)&&(this.ctx.translate(t.offsetX,t.offsetY),this.ctx.transform(t.matrix[0],t.matrix[1],t.matrix[2],t.matrix[3],t.matrix[4],t.matrix[5]),this.ctx.translate(-t.offsetX,-t.offsetY)),Gs(t)&&(this.path(t.path),this.ctx.clip()),this._activeEffects.push(t)},A.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},A.prototype.renderStack=function(t){return c(this,void 0,void 0,function(){var r;return x(this,function(n){switch(n.label){case 0:return r=t.element.container.styles,r.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:n.sent(),n.label=2;case 2:return[2]}})})},A.prototype.renderNode=function(t){return c(this,void 0,void 0,function(){return x(this,function(r){switch(r.label){case 0:if(OA(t.container.flags,16))debugger;return t.container.styles.isVisible()?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return r.sent(),[4,this.renderNodeContent(t)];case 2:r.sent(),r.label=3;case 3:return[2]}})})},A.prototype.renderTextWithLetterSpacing=function(t,r,n){var i=this;if(r===0)this.ctx.fillText(t.text,t.bounds.left,t.bounds.top+n);else{var a=yn(t.text);a.reduce(function(g,l){return i.ctx.fillText(l,g,t.bounds.top+n),g+i.ctx.measureText(l).width},t.bounds.left)}},A.prototype.createFontStyle=function(t){var r=t.fontVariant.filter(function(a){return a==="normal"||a==="small-caps"}).join(""),n=Fu(t.fontFamily).join(", "),i=tt(t.fontSize)?""+t.fontSize.number+t.fontSize.unit:t.fontSize.number+"px";return[[t.fontStyle,r,t.fontWeight,i,n].join(" "),n,i]},A.prototype.renderTextNode=function(t,r){return c(this,void 0,void 0,function(){var n,i,a,g,l,H,y,m,_=this;return x(this,function(tA){return n=this.createFontStyle(r),i=n[0],a=n[1],g=n[2],this.ctx.font=i,this.ctx.direction=r.direction===1?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",l=this.fontMetrics.getMetrics(a,g),H=l.baseline,y=l.middle,m=r.paintOrder,t.textBounds.forEach(function(q){m.forEach(function(j){switch(j){case 0:_.ctx.fillStyle=MA(r.color),_.renderTextWithLetterSpacing(q,r.letterSpacing,H);var uA=r.textShadow;uA.length&&q.text.trim().length&&(uA.slice(0).reverse().forEach(function(sA){_.ctx.shadowColor=MA(sA.color),_.ctx.shadowOffsetX=sA.offsetX.number*_.options.scale,_.ctx.shadowOffsetY=sA.offsetY.number*_.options.scale,_.ctx.shadowBlur=sA.blur.number,_.renderTextWithLetterSpacing(q,r.letterSpacing,H)}),_.ctx.shadowColor="",_.ctx.shadowOffsetX=0,_.ctx.shadowOffsetY=0,_.ctx.shadowBlur=0),r.textDecorationLine.length&&(_.ctx.fillStyle=MA(r.textDecorationColor||r.color),r.textDecorationLine.forEach(function(sA){switch(sA){case 1:_.ctx.fillRect(q.bounds.left,Math.round(q.bounds.top+H),q.bounds.width,1);break;case 2:_.ctx.fillRect(q.bounds.left,Math.round(q.bounds.top),q.bounds.width,1);break;case 3:_.ctx.fillRect(q.bounds.left,Math.ceil(q.bounds.top+y),q.bounds.width,1);break}}));break;case 1:r.webkitTextStrokeWidth&&q.text.trim().length&&(_.ctx.strokeStyle=MA(r.webkitTextStrokeColor),_.ctx.lineWidth=r.webkitTextStrokeWidth,_.ctx.lineJoin=window.chrome?"miter":"round",_.ctx.strokeText(q.text,q.bounds.left,q.bounds.top+H)),_.ctx.strokeStyle="",_.ctx.lineWidth=0,_.ctx.lineJoin="miter";break}})}),[2]})})},A.prototype.renderReplacedElement=function(t,r,n){if(n&&t.intrinsicWidth>0&&t.intrinsicHeight>0){var i=s0(t),a=t0(r);this.path(a),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(n,0,0,t.intrinsicWidth,t.intrinsicHeight,i.left,i.top,i.width,i.height),this.ctx.restore()}},A.prototype.renderNodeContent=function(t){return c(this,void 0,void 0,function(){var r,n,i,a,g,l,iA,iA,H,y,m,_,wA,tA,q,oA,j,uA,sA,iA,UA,wA,oA;return x(this,function(AA){switch(AA.label){case 0:this.applyEffects(t.getEffects(4)),r=t.container,n=t.curves,i=r.styles,a=0,g=r.textNodes,AA.label=1;case 1:return a<g.length?(l=g[a],[4,this.renderTextNode(l,i)]):[3,4];case 2:AA.sent(),AA.label=3;case 3:return a++,[3,1];case 4:if(!(r instanceof us))return[3,8];AA.label=5;case 5:return AA.trys.push([5,7,,8]),[4,this.context.cache.match(r.src)];case 6:return iA=AA.sent(),this.renderReplacedElement(r,n,iA),[3,8];case 7:return AA.sent(),this.context.logger.error("Error loading image "+r.src),[3,8];case 8:if(r instanceof gs&&this.renderReplacedElement(r,n,r.canvas),!(r instanceof ws))return[3,12];AA.label=9;case 9:return AA.trys.push([9,11,,12]),[4,this.context.cache.match(r.svg)];case 10:return iA=AA.sent(),this.renderReplacedElement(r,n,iA),[3,12];case 11:return AA.sent(),this.context.logger.error("Error loading svg "+r.svg.substring(0,255)),[3,12];case 12:return r instanceof ds&&r.tree?(H=new A(this.context,{scale:this.options.scale,backgroundColor:r.backgroundColor,x:0,y:0,width:r.width,height:r.height}),[4,H.render(r.tree)]):[3,14];case 13:y=AA.sent(),r.width&&r.height&&this.ctx.drawImage(y,0,0,r.width,r.height,r.bounds.left,r.bounds.top,r.bounds.width,r.bounds.height),AA.label=14;case 14:if(r instanceof In&&(m=Math.min(r.bounds.width,r.bounds.height),r.type===qt?r.checked&&(this.ctx.save(),this.path([new $(r.bounds.left+m*.39363,r.bounds.top+m*.79),new $(r.bounds.left+m*.16,r.bounds.top+m*.5549),new $(r.bounds.left+m*.27347,r.bounds.top+m*.44071),new $(r.bounds.left+m*.39694,r.bounds.top+m*.5649),new $(r.bounds.left+m*.72983,r.bounds.top+m*.23),new $(r.bounds.left+m*.84,r.bounds.top+m*.34085),new $(r.bounds.left+m*.39363,r.bounds.top+m*.79)]),this.ctx.fillStyle=MA(hs),this.ctx.fill(),this.ctx.restore()):r.type===Zt&&r.checked&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.arc(r.bounds.left+m/2,r.bounds.top+m/2,m/4,0,Math.PI*2,!0),this.ctx.fillStyle=MA(hs),this.ctx.fill(),this.ctx.restore())),hu(r)&&r.value.length){switch(_=this.createFontStyle(i),wA=_[0],tA=_[1],q=this.fontMetrics.getMetrics(wA,tA).baseline,this.ctx.font=wA,this.ctx.fillStyle=MA(i.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=Qu(r.styles.textAlign),oA=s0(r),j=0,r.styles.textAlign){case 1:j+=oA.width/2;break;case 2:j+=oA.width;break}uA=oA.add(j,0,0,-oA.height/2+1),this.ctx.save(),this.path([new $(oA.left,oA.top),new $(oA.left+oA.width,oA.top),new $(oA.left+oA.width,oA.top+oA.height),new $(oA.left,oA.top+oA.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new Bt(r.value,uA),i.letterSpacing,q),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!OA(r.styles.display,2048))return[3,20];if(r.styles.listStyleImage===null)return[3,19];if(sA=r.styles.listStyleImage,sA.type!==0)return[3,18];iA=void 0,UA=sA.url,AA.label=15;case 15:return AA.trys.push([15,17,,18]),[4,this.context.cache.match(UA)];case 16:return iA=AA.sent(),this.ctx.drawImage(iA,r.bounds.left-(iA.width+10),r.bounds.top),[3,18];case 17:return AA.sent(),this.context.logger.error("Error loading list-style-image "+UA),[3,18];case 18:return[3,20];case 19:t.listValue&&r.styles.listStyleType!==-1&&(wA=this.createFontStyle(i)[0],this.ctx.font=wA,this.ctx.fillStyle=MA(i.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",oA=new Q(r.bounds.left,r.bounds.top+IA(r.styles.paddingTop,r.bounds.width),r.bounds.width,Yi(i.lineHeight,i.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new Bt(t.listValue,oA),i.letterSpacing,Yi(i.lineHeight,i.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),AA.label=20;case 20:return[2]}})})},A.prototype.renderStackContent=function(t){return c(this,void 0,void 0,function(){var r,n,sA,i,a,sA,g,l,sA,H,y,sA,m,_,sA,tA,q,sA,j,uA,sA;return x(this,function(iA){switch(iA.label){case 0:if(OA(t.element.container.flags,16))debugger;return[4,this.renderNodeBackgroundAndBorders(t.element)];case 1:iA.sent(),r=0,n=t.negativeZIndex,iA.label=2;case 2:return r<n.length?(sA=n[r],[4,this.renderStack(sA)]):[3,5];case 3:iA.sent(),iA.label=4;case 4:return r++,[3,2];case 5:return[4,this.renderNodeContent(t.element)];case 6:iA.sent(),i=0,a=t.nonInlineLevel,iA.label=7;case 7:return i<a.length?(sA=a[i],[4,this.renderNode(sA)]):[3,10];case 8:iA.sent(),iA.label=9;case 9:return i++,[3,7];case 10:g=0,l=t.nonPositionedFloats,iA.label=11;case 11:return g<l.length?(sA=l[g],[4,this.renderStack(sA)]):[3,14];case 12:iA.sent(),iA.label=13;case 13:return g++,[3,11];case 14:H=0,y=t.nonPositionedInlineLevel,iA.label=15;case 15:return H<y.length?(sA=y[H],[4,this.renderStack(sA)]):[3,18];case 16:iA.sent(),iA.label=17;case 17:return H++,[3,15];case 18:m=0,_=t.inlineLevel,iA.label=19;case 19:return m<_.length?(sA=_[m],[4,this.renderNode(sA)]):[3,22];case 20:iA.sent(),iA.label=21;case 21:return m++,[3,19];case 22:tA=0,q=t.zeroOrAutoZIndexOrTransformedOrOpacity,iA.label=23;case 23:return tA<q.length?(sA=q[tA],[4,this.renderStack(sA)]):[3,26];case 24:iA.sent(),iA.label=25;case 25:return tA++,[3,23];case 26:j=0,uA=t.positiveZIndex,iA.label=27;case 27:return j<uA.length?(sA=uA[j],[4,this.renderStack(sA)]):[3,30];case 28:iA.sent(),iA.label=29;case 29:return j++,[3,27];case 30:return[2]}})})},A.prototype.mask=function(t){this.ctx.beginPath(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.canvas.width,0),this.ctx.lineTo(this.canvas.width,this.canvas.height),this.ctx.lineTo(0,this.canvas.height),this.ctx.lineTo(0,0),this.formatPath(t.slice(0).reverse()),this.ctx.closePath()},A.prototype.path=function(t){this.ctx.beginPath(),this.formatPath(t),this.ctx.closePath()},A.prototype.formatPath=function(t){var r=this;t.forEach(function(n,i){var a=fe(n)?n.start:n;i===0?r.ctx.moveTo(a.x,a.y):r.ctx.lineTo(a.x,a.y),fe(n)&&r.ctx.bezierCurveTo(n.startControl.x,n.startControl.y,n.endControl.x,n.endControl.y,n.end.x,n.end.y)})},A.prototype.renderRepeat=function(t,r,n,i){this.path(t),this.ctx.fillStyle=r,this.ctx.translate(n,i),this.ctx.fill(),this.ctx.translate(-n,-i)},A.prototype.resizeImage=function(t,r,n){var i;if(t.width===r&&t.height===n)return t;var a=(i=this.canvas.ownerDocument)!==null&&i!==void 0?i:document,g=a.createElement("canvas");g.width=Math.max(1,r),g.height=Math.max(1,n);var l=g.getContext("2d");return l.drawImage(t,0,0,t.width,t.height,0,0,r,n),g},A.prototype.renderBackgroundImage=function(t){return c(this,void 0,void 0,function(){var r,n,i,a,g,l;return x(this,function(H){switch(H.label){case 0:r=t.styles.backgroundImage.length-1,n=function(y){var m,_,tA,SA,Ae,ee,HA,NA,FA,q,SA,Ae,ee,HA,NA,j,uA,sA,iA,UA,wA,oA,AA,dA,FA,cA,SA,$A,ie,HA,NA,je,Ae,ee,Cr,Ue,$e,hr,xr,Ie,Qr,be;return x(this,function(Nr){switch(Nr.label){case 0:if(y.type!==0)return[3,5];m=void 0,_=y.url,Nr.label=1;case 1:return Nr.trys.push([1,3,,4]),[4,i.context.cache.match(_)];case 2:return m=Nr.sent(),[3,4];case 3:return Nr.sent(),i.context.logger.error("Error loading background-image "+_),[3,4];case 4:return m&&(tA=kn(t,r,[m.width,m.height,m.width/m.height]),SA=tA[0],Ae=tA[1],ee=tA[2],HA=tA[3],NA=tA[4],FA=i.ctx.createPattern(i.resizeImage(m,HA,NA),"repeat"),i.renderRepeat(SA,FA,Ae,ee)),[3,6];case 5:ec(y)?(q=kn(t,r,[null,null,null]),SA=q[0],Ae=q[1],ee=q[2],HA=q[3],NA=q[4],j=Zo(y.angle,HA,NA),uA=j[0],sA=j[1],iA=j[2],UA=j[3],wA=j[4],oA=document.createElement("canvas"),oA.width=HA,oA.height=NA,AA=oA.getContext("2d"),dA=AA.createLinearGradient(sA,UA,iA,wA),Oi(y.stops,uA).forEach(function(lt){return dA.addColorStop(lt.stop,MA(lt.color))}),AA.fillStyle=dA,AA.fillRect(0,0,HA,NA),HA>0&&NA>0&&(FA=i.ctx.createPattern(oA,"repeat"),i.renderRepeat(SA,FA,Ae,ee))):rc(y)&&(cA=kn(t,r,[null,null,null]),SA=cA[0],$A=cA[1],ie=cA[2],HA=cA[3],NA=cA[4],je=y.position.length===0?[ln]:y.position,Ae=IA(je[0],HA),ee=IA(je[je.length-1],NA),Cr=zo(y,Ae,ee,HA,NA),Ue=Cr[0],$e=Cr[1],Ue>0&&$e>0&&(hr=i.ctx.createRadialGradient($A+Ae,ie+ee,0,$A+Ae,ie+ee,Ue),Oi(y.stops,Ue*2).forEach(function(lt){return hr.addColorStop(lt.stop,MA(lt.color))}),i.path(SA),i.ctx.fillStyle=hr,Ue!==$e?(xr=t.bounds.left+.5*t.bounds.width,Ie=t.bounds.top+.5*t.bounds.height,Qr=$e/Ue,be=1/Qr,i.ctx.save(),i.ctx.translate(xr,Ie),i.ctx.transform(1,0,0,Qr,0,0),i.ctx.translate(-xr,-Ie),i.ctx.fillRect($A,be*(ie-Ie)+Ie,HA,NA*be),i.ctx.restore()):i.ctx.fill())),Nr.label=6;case 6:return r--,[2]}})},i=this,a=0,g=t.styles.backgroundImage.slice(0).reverse(),H.label=1;case 1:return a<g.length?(l=g[a],[5,n(l)]):[3,4];case 2:H.sent(),H.label=3;case 3:return a++,[3,1];case 4:return[2]}})})},A.prototype.renderSolidBorder=function(t,r,n){return c(this,void 0,void 0,function(){return x(this,function(i){return this.path(Ws(n,r)),this.ctx.fillStyle=MA(t),this.ctx.fill(),[2]})})},A.prototype.renderDoubleBorder=function(t,r,n,i){return c(this,void 0,void 0,function(){var a,g;return x(this,function(l){switch(l.label){case 0:return r<3?[4,this.renderSolidBorder(t,n,i)]:[3,2];case 1:return l.sent(),[2];case 2:return a=su(i,n),this.path(a),this.ctx.fillStyle=MA(t),this.ctx.fill(),g=au(i,n),this.path(g),this.ctx.fill(),[2]}})})},A.prototype.renderNodeBackgroundAndBorders=function(t){return c(this,void 0,void 0,function(){var r,n,i,a,g,l,H,y,m=this;return x(this,function(_){switch(_.label){case 0:return this.applyEffects(t.getEffects(2)),r=t.container.styles,n=!Ye(r.backgroundColor)||r.backgroundImage.length,i=[{style:r.borderTopStyle,color:r.borderTopColor,width:r.borderTopWidth},{style:r.borderRightStyle,color:r.borderRightColor,width:r.borderRightWidth},{style:r.borderBottomStyle,color:r.borderBottomColor,width:r.borderBottomWidth},{style:r.borderLeftStyle,color:r.borderLeftColor,width:r.borderLeftWidth}],a=xu(Gr(r.backgroundClip,0),t.curves),n||r.boxShadow.length?(this.ctx.save(),this.path(a),this.ctx.clip(),Ye(r.backgroundColor)||(this.ctx.fillStyle=MA(r.backgroundColor),this.ctx.fill()),[4,this.renderBackgroundImage(t.container)]):[3,2];case 1:_.sent(),this.ctx.restore(),r.boxShadow.slice(0).reverse().forEach(function(tA){m.ctx.save();var q=r0(t.curves),j=tA.inset?0:wu,uA=nu(q,-j+(tA.inset?1:-1)*tA.spread.number,(tA.inset?1:-1)*tA.spread.number,tA.spread.number*(tA.inset?-2:2),tA.spread.number*(tA.inset?-2:2));tA.inset?(m.path(q),m.ctx.clip(),m.mask(uA)):(m.mask(q),m.ctx.clip(),m.path(uA)),m.ctx.shadowOffsetX=tA.offsetX.number+j,m.ctx.shadowOffsetY=tA.offsetY.number,m.ctx.shadowColor=MA(tA.color),m.ctx.shadowBlur=tA.blur.number,m.ctx.fillStyle=tA.inset?MA(tA.color):"rgba(0,0,0,1)",m.ctx.fill(),m.ctx.restore()}),_.label=2;case 2:g=0,l=0,H=i,_.label=3;case 3:return l<H.length?(y=H[l],y.style!==0&&!Ye(y.color)&&y.width>0?y.style!==2?[3,5]:[4,this.renderDashedDottedBorder(y.color,y.width,g,t.curves,2)]:[3,11]):[3,13];case 4:return _.sent(),[3,11];case 5:return y.style!==3?[3,7]:[4,this.renderDashedDottedBorder(y.color,y.width,g,t.curves,3)];case 6:return _.sent(),[3,11];case 7:return y.style!==4?[3,9]:[4,this.renderDoubleBorder(y.color,y.width,g,t.curves)];case 8:return _.sent(),[3,11];case 9:return[4,this.renderSolidBorder(y.color,g,t.curves)];case 10:_.sent(),_.label=11;case 11:g++,_.label=12;case 12:return l++,[3,3];case 13:return[2]}})})},A.prototype.renderDashedDottedBorder=function(t,r,n,i,a){return c(this,void 0,void 0,function(){var g,l,H,y,m,_,tA,q,j,uA,sA,iA,UA,wA,oA,AA,oA,AA;return x(this,function(dA){return this.ctx.save(),g=Bu(i,n),l=Ws(i,n),a===2&&(this.path(l),this.ctx.clip()),fe(l[0])?(H=l[0].start.x,y=l[0].start.y):(H=l[0].x,y=l[0].y),fe(l[1])?(m=l[1].end.x,_=l[1].end.y):(m=l[1].x,_=l[1].y),n===0||n===2?tA=Math.abs(H-m):tA=Math.abs(y-_),this.ctx.beginPath(),a===3?this.formatPath(g):this.formatPath(l.slice(0,2)),q=r<3?r*3:r*2,j=r<3?r*2:r,a===3&&(q=r,j=r),uA=!0,tA<=q*2?uA=!1:tA<=q*2+j?(sA=tA/(2*q+j),q*=sA,j*=sA):(iA=Math.floor((tA+j)/(q+j)),UA=(tA-iA*q)/(iA-1),wA=(tA-(iA+1)*q)/iA,j=wA<=0||Math.abs(j-UA)<Math.abs(j-wA)?UA:wA),uA&&(a===3?this.ctx.setLineDash([0,q+j]):this.ctx.setLineDash([q,j])),a===3?(this.ctx.lineCap="round",this.ctx.lineWidth=r):this.ctx.lineWidth=r*2+1.1,this.ctx.strokeStyle=MA(t),this.ctx.stroke(),this.ctx.setLineDash([]),a===2&&(fe(l[0])&&(oA=l[3],AA=l[0],this.ctx.beginPath(),this.formatPath([new $(oA.end.x,oA.end.y),new $(AA.start.x,AA.start.y)]),this.ctx.stroke()),fe(l[1])&&(oA=l[1],AA=l[2],this.ctx.beginPath(),this.formatPath([new $(oA.end.x,oA.end.y),new $(AA.start.x,AA.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},A.prototype.render=function(t){return c(this,void 0,void 0,function(){var r;return x(this,function(n){switch(n.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=MA(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),r=iu(t),[4,this.renderStack(r)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}})})},A})(qs),hu=function(e){return e instanceof Qs||e instanceof xs?!0:e instanceof In&&e.type!==Zt&&e.type!==qt},xu=function(e,A){switch(e){case 0:return r0(A);case 2:return $l(A);default:return t0(A)}},Qu=function(e){switch(e){case 1:return"center";case 2:return"right";default:return"left"}},du=["-apple-system","system-ui"],Fu=function(e){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?e.filter(function(A){return du.indexOf(A)===-1}):e},Uu=(function(e){s(A,e);function A(t,r){var n=e.call(this,t,r)||this;return n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),n.options=r,n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px",n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized ("+r.width+"x"+r.height+" at "+r.x+","+r.y+") with scale "+r.scale),n}return A.prototype.render=function(t){return c(this,void 0,void 0,function(){var r,n;return x(this,function(i){switch(i.label){case 0:return r=Hn(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,t),[4,vu(r)];case 1:return n=i.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=MA(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(n,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},A})(qs),vu=function(e){return new Promise(function(A,t){var r=new Image;r.onload=function(){A(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(e))})},pu=(function(){function e(A){var t=A.id,r=A.enabled;this.id=t,this.enabled=r,this.start=Date.now()}return e.prototype.debug=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&(typeof window!="undefined"&&window.console&&typeof console.debug=="function"?console.debug.apply(console,d([this.id,this.getTime()+"ms"],A)):this.info.apply(this,A))},e.prototype.getTime=function(){return Date.now()-this.start},e.prototype.info=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&typeof window!="undefined"&&window.console&&typeof console.info=="function"&&console.info.apply(console,d([this.id,this.getTime()+"ms"],A))},e.prototype.warn=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&(typeof window!="undefined"&&window.console&&typeof console.warn=="function"?console.warn.apply(console,d([this.id,this.getTime()+"ms"],A)):this.info.apply(this,A))},e.prototype.error=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&(typeof window!="undefined"&&window.console&&typeof console.error=="function"?console.error.apply(console,d([this.id,this.getTime()+"ms"],A)):this.info.apply(this,A))},e.instances={},e})(),Eu=(function(){function e(A,t){var r;this.windowBounds=t,this.instanceName="#"+e.instanceCount++,this.logger=new pu({id:this.instanceName,enabled:A.logging}),this.cache=(r=A.cache)!==null&&r!==void 0?r:new Xl(this,A)}return e.instanceCount=1,e})(),Hu=function(e,A){return A===void 0&&(A={}),yu(e,A)};typeof window!="undefined"&&ks.setContext(window);var yu=function(e,A){return c(void 0,void 0,void 0,function(){var t,r,n,i,a,g,l,H,y,m,_,tA,q,j,uA,sA,iA,UA,wA,oA,dA,AA,dA,FA,cA,SA,$A,ie,HA,NA,je,Ae,ee,Cr,Ue,$e,hr,xr,Ie,Qr;return x(this,function(be){switch(be.label){case 0:if(!e||typeof e!="object")return[2,Promise.reject("Invalid element provided as first argument")];if(t=e.ownerDocument,!t)throw new Error("Element is not attached to a Document");if(r=t.defaultView,!r)throw new Error("Document is not attached to a Window");return n={allowTaint:(FA=A.allowTaint)!==null&&FA!==void 0?FA:!1,imageTimeout:(cA=A.imageTimeout)!==null&&cA!==void 0?cA:15e3,proxy:A.proxy,useCORS:(SA=A.useCORS)!==null&&SA!==void 0?SA:!1},i=f({logging:($A=A.logging)!==null&&$A!==void 0?$A:!0,cache:A.cache},n),a={windowWidth:(ie=A.windowWidth)!==null&&ie!==void 0?ie:r.innerWidth,windowHeight:(HA=A.windowHeight)!==null&&HA!==void 0?HA:r.innerHeight,scrollX:(NA=A.scrollX)!==null&&NA!==void 0?NA:r.pageXOffset,scrollY:(je=A.scrollY)!==null&&je!==void 0?je:r.pageYOffset},g=new Q(a.scrollX,a.scrollY,a.windowWidth,a.windowHeight),l=new Eu(i,g),H=(Ae=A.foreignObjectRendering)!==null&&Ae!==void 0?Ae:!1,y={allowTaint:(ee=A.allowTaint)!==null&&ee!==void 0?ee:!1,onclone:A.onclone,ignoreElements:A.ignoreElements,inlineImages:H,copyStyles:H},l.logger.debug("Starting document clone with size "+g.width+"x"+g.height+" scrolled to "+-g.left+","+-g.top),m=new Rs(l,e,y),_=m.clonedReferenceElement,_?[4,m.toIFrame(t,g)]:[2,Promise.reject("Unable to find element in cloned iframe")];case 1:return tA=be.sent(),q=Dn(_)||ml(_)?w(_.ownerDocument):o(l,_),j=q.width,uA=q.height,sA=q.left,iA=q.top,UA=mu(l,_,A.backgroundColor),wA={canvas:A.canvas,backgroundColor:UA,scale:(Ue=(Cr=A.scale)!==null&&Cr!==void 0?Cr:r.devicePixelRatio)!==null&&Ue!==void 0?Ue:1,x:(($e=A.x)!==null&&$e!==void 0?$e:0)+sA,y:((hr=A.y)!==null&&hr!==void 0?hr:0)+iA,width:(xr=A.width)!==null&&xr!==void 0?xr:Math.ceil(j),height:(Ie=A.height)!==null&&Ie!==void 0?Ie:Math.ceil(uA)},H?(l.logger.debug("Document cloned, using foreign object rendering"),dA=new Uu(l,wA),[4,dA.render(_)]):[3,3];case 2:return oA=be.sent(),[3,5];case 3:return l.logger.debug("Document cloned, element located at "+sA+","+iA+" with size "+j+"x"+uA+" using computed rendering"),l.logger.debug("Starting DOM parsing"),AA=Us(l,_),UA===AA.styles.backgroundColor&&(AA.styles.backgroundColor=ye.TRANSPARENT),l.logger.debug("Starting renderer for element at "+wA.x+","+wA.y+" with size "+wA.width+"x"+wA.height),dA=new Cu(l,wA),[4,dA.render(AA)];case 4:oA=be.sent(),be.label=5;case 5:return(!((Qr=A.removeContainer)!==null&&Qr!==void 0)||Qr)&&(Rs.destroy(tA)||l.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),l.logger.debug("Finished rendering"),[2,oA]}})})},mu=function(e,A,t){var r=A.ownerDocument,n=r.documentElement?it(e,getComputedStyle(r.documentElement).backgroundColor):ye.TRANSPARENT,i=r.body?it(e,getComputedStyle(r.body).backgroundColor):ye.TRANSPARENT,a=typeof t=="string"?it(e,t):t===null?ye.TRANSPARENT:4294967295;return A===r.documentElement?Ye(n)?Ye(i)?a:i:n:a};return Hu}))});var vt=js(aB()),IB=js(BB());var _u="2.0.7",Tu=500,oB="user-agent",Wr="",cB="?",KA={FUNCTION:"function",OBJECT:"object",STRING:"string",UNDEFINED:"undefined"},te="browser",Le="cpu",pe="device",Ce="engine",se="os",Jr="result",k="name",T="type",G="vendor",N="version",YA="architecture",Ft="major",M="model",Z0="console",fA="mobile",yA="tablet",_A="smarttv",ve="wearable",W0="xr",dt="embedded",Vr="inapp",ti="brands",Fr="formFactors",ni="fullVersionList",Yr="platform",ii="platformVersion",An="bitness",ir="sec-ch-ua",Ou=ir+"-full-version-list",Ru=ir+"-arch",Mu=ir+"-"+An,ku=ir+"-form-factors",Gu=ir+"-"+fA,Nu=ir+"-"+M,pB=ir+"-"+Yr,Vu=pB+"-version",EB=[ti,ni,fA,M,Yr,ii,YA,Fr,An],J0="Amazon",Pr="Apple",fB="ASUS",lB="BlackBerry",dr="Google",uB="Huawei",Xn="Lenovo",gB="Honor",Y0="LG",Wn="Microsoft",Jn="Motorola",wB="Nvidia",CB="OnePlus",Yn="OPPO",gt="Samsung",hB="Sharp",wt="Sony",qn="Xiaomi",Zn="Zebra",xB="Chrome",QB="Chromium",rr="Chromecast",z0="Edge",Ct="Firefox",ht="Opera",zn="Facebook",dB="Sogou",Xr="Mobile ",xt=" Browser",$n="Windows",Pu=typeof window!==KA.UNDEFINED,re=Pu&&window.navigator?window.navigator:void 0,Ur=re&&re.userAgentData?re.userAgentData:void 0,Xu=function(B,s){var f={},c=s;if(!j0(s)){c={};for(var x in s)for(var d in s[x])c[d]=s[x][d].concat(c[d]?c[d]:[])}for(var Q in B)f[Q]=c[Q]&&c[Q].length%2===0?c[Q].concat(B[Q]):B[Q];return f},en=function(B){for(var s={},f=0;f<B.length;f++)s[B[f].toUpperCase()]=B[f];return s},Ai=function(B,s){if(typeof B===KA.OBJECT&&B.length>0){for(var f in B)if(tr(s)==tr(B[f]))return!0;return!1}return Ut(B)?tr(s)==tr(B):!1},j0=function(B,s){for(var f in B)return/^(browser|cpu|device|engine|os)$/.test(f)||(s?j0(B[f]):!1)},Ut=function(B){return typeof B===KA.STRING},jn=function(B){if(B){for(var s=[],f=qr(/\\?\"/g,B).split(","),c=0;c<f.length;c++)if(f[c].indexOf(";")>-1){var x=$0(f[c]).split(";v=");s[c]={brand:x[0],version:x[1]}}else s[c]=$0(f[c]);return s}},tr=function(B){return Ut(B)?B.toLowerCase():B},ei=function(B){return Ut(B)?qr(/[^\d\.]/g,B).split(".")[0]:void 0},Ke=function(B){for(var s in B)if(B.hasOwnProperty(s)){var f=B[s];typeof f==KA.OBJECT&&f.length==2?this[f[0]]=f[1]:this[f]=void 0}return this},qr=function(B,s){return Ut(s)?s.replace(B,Wr):s},Qt=function(B){return qr(/\\?\"/g,B)},$0=function(B,s){return B=qr(/^\s\s*/,String(B)),typeof s===KA.UNDEFINED?B:B.substring(0,s)},ri=function(B,s){if(!(!B||!s))for(var f=0,c,x,d,Q,o,w;f<s.length&&!o;){var U=s[f],u=s[f+1];for(c=x=0;c<U.length&&!o&&U[c];)if(o=U[c++].exec(B),o)for(d=0;d<u.length;d++)w=o[++x],Q=u[d],typeof Q===KA.OBJECT&&Q.length>0?Q.length===2?typeof Q[1]==KA.FUNCTION?this[Q[0]]=Q[1].call(this,w):this[Q[0]]=Q[1]:Q.length>=3&&(typeof Q[1]===KA.FUNCTION&&!(Q[1].exec&&Q[1].test)?Q.length>3?this[Q[0]]=w?Q[1].apply(this,Q.slice(2)):void 0:this[Q[0]]=w?Q[1].call(this,w,Q[2]):void 0:Q.length==3?this[Q[0]]=w?w.replace(Q[1],Q[2]):void 0:Q.length==4?this[Q[0]]=w?Q[3].call(this,w.replace(Q[1],Q[2])):void 0:Q.length>4&&(this[Q[0]]=w?Q[3].apply(this,[w.replace(Q[1],Q[2])].concat(Q.slice(4))):void 0)):this[Q]=w||void 0;f+=2}},we=function(B,s){for(var f in s)if(typeof s[f]===KA.OBJECT&&s[f].length>0){for(var c=0;c<s[f].length;c++)if(Ai(s[f][c],B))return f===cB?void 0:f}else if(Ai(s[f],B))return f===cB?void 0:f;return s.hasOwnProperty("*")?s["*"]:B},FB={ME:"4.90","NT 3.51":"3.51","NT 4.0":"4.0",2e3:["5.0","5.01"],XP:["5.1","5.2"],Vista:"6.0",7:"6.1",8:"6.2","8.1":"6.3",10:["6.4","10.0"],NT:""},UB={embedded:"Automotive",mobile:"Mobile",tablet:["Tablet","EInk"],smarttv:"TV",wearable:"Watch",xr:["VR","XR"],"?":["Desktop","Unknown"],"*":void 0},Wu={Chrome:"Google Chrome",Edge:"Microsoft Edge","Edge WebView2":"Microsoft Edge WebView2","Chrome WebView":"Android WebView","Chrome Headless":"HeadlessChrome","Huawei Browser":"HuaweiBrowser","MIUI Browser":"Miui Browser","Opera Mobi":"OperaMobile",Yandex:"YaBrowser"},vB={browser:[[/\b(?:crmo|crios)\/([\w\.]+)/i],[N,[k,Xr+"Chrome"]],[/webview.+edge\/([\w\.]+)/i],[N,[k,z0+" WebView"]],[/edg(?:e|ios|a)?\/([\w\.]+)/i],[N,[k,"Edge"]],[/(opera mini)\/([-\w\.]+)/i,/(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i,/(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i],[k,N],[/opios[\/ ]+([\w\.]+)/i],[N,[k,ht+" Mini"]],[/\bop(?:rg)?x\/([\w\.]+)/i],[N,[k,ht+" GX"]],[/\bopr\/([\w\.]+)/i],[N,[k,ht]],[/\bb[ai]*d(?:uhd|[ub]*[aekoprswx]{5,6})[\/ ]?([\w\.]+)/i],[N,[k,"Baidu"]],[/\b(?:mxbrowser|mxios|myie2)\/?([-\w\.]*)\b/i],[N,[k,"Maxthon"]],[/(kindle)\/([\w\.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer|sleipnir)[\/ ]?([\w\.]*)/i,/(avant|iemobile|slim(?:browser|boat|jet))[\/ ]?([\d\.]*)/i,/(?:ms|\()(ie) ([\w\.]+)/i,/(atlas|flock|rockmelt|midori|epiphany|silk|skyfire|ovibrowser|bolt|iron|vivaldi|iridium|phantomjs|bowser|qupzilla|falkon|rekonq|puffin|brave|whale(?!.+naver)|qqbrowserlite|duckduckgo|klar|helio|(?=comodo_)?dragon|otter|dooble|(?:lg |qute)browser|palemoon)\/([-\w\.]+)/i,/(heytap|ovi|115|surf|qwant)browser\/([\d\.]+)/i,/(qwant)(?:ios|mobile)\/([\d\.]+)/i,/(ecosia|weibo)(?:__| \w+@)([\d\.]+)/i],[k,N],[/quark(?:pc)?\/([-\w\.]+)/i],[N,[k,"Quark"]],[/\bddg\/([\w\.]+)/i],[N,[k,"DuckDuckGo"]],[/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i],[N,[k,"UCBrowser"]],[/microm.+\bqbcore\/([\w\.]+)/i,/\bqbcore\/([\w\.]+).+microm/i,/micromessenger\/([\w\.]+)/i],[N,[k,"WeChat"]],[/konqueror\/([\w\.]+)/i],[N,[k,"Konqueror"]],[/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i],[N,[k,"IE"]],[/ya(?:search)?browser\/([\w\.]+)/i],[N,[k,"Yandex"]],[/slbrowser\/([\w\.]+)/i],[N,[k,"Smart "+Xn+xt]],[/(avast|avg)\/([\w\.]+)/i],[[k,/(.+)/,"$1 Secure"+xt],N],[/\bfocus\/([\w\.]+)/i],[N,[k,Ct+" Focus"]],[/\bopt\/([\w\.]+)/i],[N,[k,ht+" Touch"]],[/coc_coc\w+\/([\w\.]+)/i],[N,[k,"Coc Coc"]],[/dolfin\/([\w\.]+)/i],[N,[k,"Dolphin"]],[/coast\/([\w\.]+)/i],[N,[k,ht+" Coast"]],[/miuibrowser\/([\w\.]+)/i],[N,[k,"MIUI"+xt]],[/fxios\/([\w\.-]+)/i],[N,[k,Xr+Ct]],[/\bqihoobrowser\/?([\w\.]*)/i],[N,[k,"360"]],[/\b(qq)\/([\w\.]+)/i],[[k,/(.+)/,"$1Browser"],N],[/(oculus|sailfish|huawei|vivo|pico)browser\/([\w\.]+)/i],[[k,/(.+)/,"$1"+xt],N],[/samsungbrowser\/([\w\.]+)/i],[N,[k,gt+" Internet"]],[/metasr[\/ ]?([\d\.]+)/i],[N,[k,dB+" Explorer"]],[/(sogou)mo\w+\/([\d\.]+)/i],[[k,dB+" Mobile"],N],[/(electron)\/([\w\.]+) safari/i,/(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i,/m?(qqbrowser|2345(?=browser|chrome|explorer))\w*[\/ ]?v?([\w\.]+)/i],[k,N],[/(lbbrowser|rekonq|steam(?= (clie|tenf|gameo)))/i],[k],[/ome\/([\w\.]+) \w* ?(iron) saf/i,/ome\/([\w\.]+).+qihu (360)[es]e/i],[N,k],[/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i],[[k,zn],N,[T,Vr]],[/(kakao(?:talk|story))[\/ ]([\w\.]+)/i,/(naver)\(.*?(\d+\.[\w\.]+).*\)/i,/(daum)apps[\/ ]([\w\.]+)/i,/safari (line)\/([\w\.]+)/i,/\b(line)\/([\w\.]+)\/iab/i,/(alipay)client\/([\w\.]+)/i,/(twitter)(?:and| f.+e\/([\w\.]+))/i,/(bing)(?:web|sapphire)\/([\w\.]+)/i,/(instagram|snapchat|klarna)[\/ ]([-\w\.]+)/i],[k,N,[T,Vr]],[/\bgsa\/([\w\.]+) .*safari\//i],[N,[k,"GSA"],[T,Vr]],[/musical_ly(?:.+app_?version\/|_)([\w\.]+)/i],[N,[k,"TikTok"],[T,Vr]],[/\[(linkedin)app\]/i],[k,[T,Vr]],[/(zalo(?:app)?)[\/\sa-z]*([\w\.-]+)/i],[[k,/(.+)/,"Zalo"],N,[T,Vr]],[/(chromium)[\/ ]([-\w\.]+)/i],[k,N],[/headlesschrome(?:\/([\w\.]+)| )/i],[N,[k,xB+" Headless"]],[/wv\).+chrome\/([\w\.]+).+edgw\//i],[N,[k,z0+" WebView2"]],[/ wv\).+(chrome)\/([\w\.]+)/i],[[k,xB+" WebView"],N],[/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i],[N,[k,"Android"+xt]],[/chrome\/([\w\.]+) mobile/i],[N,[k,Xr+"Chrome"]],[/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i],[k,N],[/version\/([\w\.\,]+) .*mobile(?:\/\w+ | ?)safari/i],[N,[k,Xr+"Safari"]],[/iphone .*mobile(?:\/\w+ | ?)safari/i],[[k,Xr+"Safari"]],[/version\/([\w\.\,]+) .*(safari)/i],[N,k],[/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i],[k,[N,"1"]],[/(webkit|khtml)\/([\w\.]+)/i],[k,N],[/(?:mobile|tablet);.*(firefox)\/([\w\.-]+)/i],[[k,Xr+Ct],N],[/(navigator|netscape\d?)\/([-\w\.]+)/i],[[k,"Netscape"],N],[/(wolvic|librewolf)\/([\w\.]+)/i],[k,N],[/mobile vr; rv:([\w\.]+)\).+firefox/i],[N,[k,Ct+" Reality"]],[/ekiohf.+(flow)\/([\w\.]+)/i,/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror)[\/ ]?([\w\.\+]+)/i,/(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|basilisk|waterfox)\/([-\w\.]+)$/i,/(firefox)\/([\w\.]+)/i,/(mozilla)\/([\w\.]+(?= .+rv\:.+gecko\/\d+)|[0-4][\w\.]+(?!.+compatible))/i,/(amaya|dillo|doris|icab|ladybird|lynx|mosaic|netsurf|obigo|polaris|w3m|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i,/\b(links) \(([\w\.]+)/i],[k,[N,/_/g,"."]],[/(cobalt)\/([\w\.]+)/i],[k,[N,/[^\d\.]+./,Wr]]],cpu:[[/\b((amd|x|x86[-_]?|wow|win)64)\b/i],[[YA,"amd64"]],[/(ia32(?=;))/i,/\b((i[346]|x)86)(pc)?\b/i],[[YA,"ia32"]],[/\b(aarch64|arm(v?[89]e?l?|_?64))\b/i],[[YA,"arm64"]],[/\b(arm(v[67])?ht?n?[fl]p?)\b/i],[[YA,"armhf"]],[/( (ce|mobile); ppc;|\/[\w\.]+arm\b)/i],[[YA,"arm"]],[/ sun4\w[;\)]/i],[[YA,"sparc"]],[/\b(avr32|ia64(?=;)|68k(?=\))|\barm(?=v([1-7]|[5-7]1)l?|;|eabi)|(irix|mips|sparc)(64)?\b|pa-risc)/i,/((ppc|powerpc)(64)?)( mac|;|\))/i,/(?:osf1|[freopnt]{3,4}bsd) (alpha)/i],[[YA,/ower/,Wr,tr]],[/mc680.0/i],[[YA,"68k"]],[/winnt.+\[axp/i],[[YA,"alpha"]]],device:[[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i],[M,[G,gt],[T,yA]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?[\d]+a?|galaxy nexus)/i,/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,/sec-(sgh\w+)/i],[M,[G,gt],[T,fA]],[/(?:\/|\()(ip(?:hone|od)[\w, ]*)[\/\);]/i],[M,[G,Pr],[T,fA]],[/\b(?:ios|apple\w+)\/.+[\(\/](ipad)/i,/\b(ipad)[\d,]*[;\] ].+(mac |i(pad)?)os/i],[M,[G,Pr],[T,yA]],[/(macintosh);/i],[M,[G,Pr]],[/\b(sh-?[altvz]?\d\d[a-ekm]?)/i],[M,[G,hB],[T,fA]],[/\b((?:brt|eln|hey2?|gdi|jdn)-a?[lnw]09|(?:ag[rm]3?|jdn2|kob2)-a?[lw]0[09]hn)(?: bui|\)|;)/i],[M,[G,gB],[T,yA]],[/honor([-\w ]+)[;\)]/i],[M,[G,gB],[T,fA]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?|605hw|bg2-u03|(?:gem|fdr|m2|ple|t1)-[7a]0[1-4][lu]|t1-a2[13][lw]|mediapad[\w\. ]*(?= bui|\)))\b(?!.+d\/s)/i],[M,[G,uB],[T,yA]],[/(?:huawei) ?([-\w ]+)[;\)]/i,/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i],[M,[G,uB],[T,fA]],[/oid[^\)]+; (2[\dbc]{4}(182|283|rp\w{2})[cgl]|m2105k81a?c)(?: bui|\))/i,/\b(?:xiao)?((?:red)?mi[-_ ]?pad[\w- ]*)(?: bui|\))/i],[[M,/_/g," "],[G,qn],[T,yA]],[/\b; (\w+) build\/hm\1/i,/\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i,/oid[^\)]+; (redmi[\-_ ]?(?:note|k)?[\w_ ]+|m?[12]\d[01]\d\w{3,6}|poco[\w ]+|(shark )?\w{3}-[ah]0|qin ?[1-3](s\+|ultra| pro)?)( bui|; wv|\))/i,/\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note|max|cc)?[_ ]?(?:\d{0,2}\w?)[_ ]?(?:plus|se|lite|pro)?( 5g|lte)?)(?: bui|\))/i,/ ([\w ]+) miui\/v?\d/i],[[M,/_/g," "],[G,qn],[T,fA]],[/droid.+; (cph2[3-6]\d[13579]|((gm|hd)19|(ac|be|in|kb)20|(d[en]|eb|le|mt)21|ne22)[0-2]\d|p[g-k]\w[1m]10)\b/i,/(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i],[M,[G,CB],[T,fA]],[/; (\w+) bui.+ oppo/i,/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i],[M,[G,Yn],[T,fA]],[/\b(opd2(\d{3}a?))(?: bui|\))/i],[M,[G,we,{OnePlus:["203","304","403","404","413","415"],"*":Yn}],[T,yA]],[/(vivo (5r?|6|8l?|go|one|s|x[il]?[2-4]?)[\w\+ ]*)(?: bui|\))/i],[M,[G,"BLU"],[T,fA]],[/; vivo (\w+)(?: bui|\))/i,/\b(v[12]\d{3}\w?[at])(?: bui|;)/i],[M,[G,"Vivo"],[T,fA]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i],[M,[G,"Realme"],[T,fA]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])( bui|;|\)|\/)/i,/lenovo ?(b[68]0[08]0-?[hf]?|tab(?:[\w- ]+?)|tb[\w-]{6,7})( bui|;|\)|\/)/i],[M,[G,Xn],[T,yA]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i],[M,[G,Xn],[T,fA]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i,/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,/((?:moto(?! 360)[-\w\(\) ]+|xt\d{3,4}[cgkosw\+]?[-\d]*|nexus 6)(?= bui|\)))/i],[M,[G,Jn],[T,fA]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i],[M,[G,Jn],[T,yA]],[/((?=lg)?[vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i],[M,[G,Y0],[T,yA]],[/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i,/\blg[-e;\/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,/\blg-?([\d\w]+) bui/i],[M,[G,Y0],[T,fA]],[/(nokia) (t[12][01])/i],[G,M,[T,yA]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,/nokia[-_ ]?(([-\w\. ]*?))( bui|\)|;|\/)/i],[[M,/_/g," "],[T,fA],[G,"Nokia"]],[/(pixel (c|tablet))\b/i],[M,[G,dr],[T,yA]],[/droid.+;(?: google)? (g(01[13]a|020[aem]|025[jn]|1b60|1f8f|2ybb|4s1m|576d|5nz6|8hhn|8vou|a02099|c15s|d1yq|e2ae|ec77|gh2x|kv4x|p4bc|pj41|r83y|tt9q|ur25|wvk6)|pixel[\d ]*a?( pro)?( xl)?( fold)?( \(5g\))?)( bui|\))/i],[M,[G,dr],[T,fA]],[/(google) (pixelbook( go)?)/i],[G,M],[/droid.+; (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-\w\w\d\d)(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i],[M,[G,wt],[T,fA]],[/sony tablet [ps]/i,/\b(?:sony)?sgp\w+(?: bui|\))/i],[[M,"Xperia Tablet"],[G,wt],[T,yA]],[/(alexa)webm/i,/(kf[a-z]{2}wi|aeo(?!bc)\w\w)( bui|\))/i,/(kf[a-z]+)( bui|\)).+silk\//i],[M,[G,J0],[T,yA]],[/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i],[[M,/(.+)/g,"Fire Phone $1"],[G,J0],[T,fA]],[/(playbook);[-\w\),; ]+(rim)/i],[M,G,[T,yA]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,/(?:blackberry|\(bb10;) (\w+)/i],[M,[G,lB],[T,fA]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i],[M,[G,fB],[T,yA]],[/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i],[M,[G,fB],[T,fA]],[/(nexus 9)/i],[M,[G,"HTC"],[T,yA]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,/(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i],[G,[M,/_/g," "],[T,fA]],[/tcl (xess p17aa)/i,/droid [\w\.]+; ((?:8[14]9[16]|9(?:0(?:48|60|8[01])|1(?:3[27]|66)|2(?:6[69]|9[56])|466))[gqswx])(_\w(\w|\w\w))?(\)| bui)/i],[M,[G,"TCL"],[T,yA]],[/droid [\w\.]+; (418(?:7d|8v)|5087z|5102l|61(?:02[dh]|25[adfh]|27[ai]|56[dh]|59k|65[ah])|a509dl|t(?:43(?:0w|1[adepqu])|50(?:6d|7[adju])|6(?:09dl|10k|12b|71[efho]|76[hjk])|7(?:66[ahju]|67[hw]|7[045][bh]|71[hk]|73o|76[ho]|79w|81[hks]?|82h|90[bhsy]|99b)|810[hs]))(_\w(\w|\w\w))?(\)| bui)/i],[M,[G,"TCL"],[T,fA]],[/(itel) ((\w+))/i],[[G,tr],M,[T,we,{tablet:["p10001l","w7001"],"*":"mobile"}]],[/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i],[M,[G,"Acer"],[T,yA]],[/droid.+; (m[1-5] note) bui/i,/\bmz-([-\w]{2,})/i],[M,[G,"Meizu"],[T,fA]],[/; ((?:power )?armor(?:[\w ]{0,8}))(?: bui|\))/i],[M,[G,"Ulefone"],[T,fA]],[/; (energy ?\w+)(?: bui|\))/i,/; energizer ([\w ]+)(?: bui|\))/i],[M,[G,"Energizer"],[T,fA]],[/; cat (b35);/i,/; (b15q?|s22 flip|s48c|s62 pro)(?: bui|\))/i],[M,[G,"Cat"],[T,fA]],[/((?:new )?andromax[\w- ]+)(?: bui|\))/i],[M,[G,"Smartfren"],[T,fA]],[/droid.+; (a(in)?(0(15|59|6[35])|142)p?)/i],[M,[G,"Nothing"],[T,fA]],[/; (x67 5g|tikeasy \w+|ac[1789]\d\w+)( b|\))/i,/archos ?(5|gamepad2?|([\w ]*[t1789]|hello) ?\d+[\w ]*)( b|\))/i],[M,[G,"Archos"],[T,yA]],[/archos ([\w ]+)( b|\))/i,/; (ac[3-6]\d\w{2,8})( b|\))/i],[M,[G,"Archos"],[T,fA]],[/; (n159v)/i],[M,[G,"HMD"],[T,fA]],[/(imo) (tab \w+)/i,/(infinix|tecno) (x1101b?|p904|dp(7c|8d|10a)( pro)?|p70[1-3]a?|p904|t1101)/i],[G,M,[T,yA]],[/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus(?! zenw)|dell|jolla|meizu|motorola|polytron|tecno|micromax|advan)[-_ ]?([-\w]*)/i,/; (blu|hmd|imo|infinix|lava|oneplus|tcl|wiko)[_ ]([\w\+ ]+?)(?: bui|\)|; r)/i,/(hp) ([\w ]+\w)/i,/(microsoft); (lumia[\w ]+)/i,/(oppo) ?([\w ]+) bui/i,/(hisense) ([ehv][\w ]+)\)/i,/droid[^;]+; (philips)[_ ]([sv-x][\d]{3,4}[xz]?)/i],[G,M,[T,fA]],[/(kobo)\s(ereader|touch)/i,/(hp).+(touchpad(?!.+tablet)|tablet)/i,/(kindle)\/([\w\.]+)/i],[G,M,[T,yA]],[/(surface duo)/i],[M,[G,Wn],[T,yA]],[/droid [\d\.]+; (fp\du?)(?: b|\))/i],[M,[G,"Fairphone"],[T,fA]],[/((?:tegranote|shield t(?!.+d tv))[\w- ]*?)(?: b|\))/i],[M,[G,wB],[T,yA]],[/(sprint) (\w+)/i],[G,M,[T,fA]],[/(kin\.[onetw]{3})/i],[[M,/\./g," "],[G,Wn],[T,fA]],[/droid.+; ([c6]+|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i],[M,[G,Zn],[T,yA]],[/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i],[M,[G,Zn],[T,fA]],[/(philips)[\w ]+tv/i,/smart-tv.+(samsung)/i],[G,[T,_A]],[/hbbtv.+maple;(\d+)/i],[[M,/^/,"SmartTV"],[G,gt],[T,_A]],[/(vizio)(?: |.+model\/)(\w+-\w+)/i,/tcast.+(lg)e?. ([-\w]+)/i],[G,M,[T,_A]],[/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i],[[G,Y0],[T,_A]],[/(apple) ?tv/i],[G,[M,Pr+" TV"],[T,_A]],[/crkey.*devicetype\/chromecast/i],[[M,rr+" Third Generation"],[G,dr],[T,_A]],[/crkey.*devicetype\/([^/]*)/i],[[M,/^/,"Chromecast "],[G,dr],[T,_A]],[/fuchsia.*crkey/i],[[M,rr+" Nest Hub"],[G,dr],[T,_A]],[/crkey/i],[[M,rr],[G,dr],[T,_A]],[/(portaltv)/i],[M,[G,zn],[T,_A]],[/droid.+aft(\w+)( bui|\))/i],[M,[G,J0],[T,_A]],[/(shield \w+ tv)/i],[M,[G,wB],[T,_A]],[/\(dtv[\);].+(aquos)/i,/(aquos-tv[\w ]+)\)/i],[M,[G,hB],[T,_A]],[/(bravia[\w ]+)( bui|\))/i],[M,[G,wt],[T,_A]],[/(mi(tv|box)-?\w+) bui/i],[M,[G,qn],[T,_A]],[/Hbbtv.*(technisat) (.*);/i],[G,M,[T,_A]],[/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i,/hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i],[[G,/.+\/(\w+)/,"$1",we,{LG:"lge"}],[M,$0],[T,_A]],[/(playstation \w+)/i],[M,[G,wt],[T,Z0]],[/\b(xbox(?: one)?(?!; xbox))[\); ]/i],[M,[G,Wn],[T,Z0]],[/(ouya)/i,/(nintendo) (\w+)/i,/(retroid) (pocket ([^\)]+))/i,/(valve).+(steam deck)/i,/droid.+; ((shield|rgcube|gr0006))( bui|\))/i],[[G,we,{Nvidia:"Shield",Anbernic:"RGCUBE",Logitech:"GR0006"}],M,[T,Z0]],[/\b(sm-[lr]\d\d[0156][fnuw]?s?|gear live)\b/i],[M,[G,gt],[T,ve]],[/((pebble))app/i,/(asus|google|lg|oppo|xiaomi) ((pixel |zen)?watch[\w ]*)( bui|\))/i],[G,M,[T,ve]],[/(ow(?:19|20)?we?[1-3]{1,3})/i],[M,[G,Yn],[T,ve]],[/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i],[M,[G,Pr],[T,ve]],[/(opwwe\d{3})/i],[M,[G,CB],[T,ve]],[/(moto 360)/i],[M,[G,Jn],[T,ve]],[/(smartwatch 3)/i],[M,[G,wt],[T,ve]],[/(g watch r)/i],[M,[G,Y0],[T,ve]],[/droid.+; (wt63?0{2,3})\)/i],[M,[G,Zn],[T,ve]],[/droid.+; (glass) \d/i],[M,[G,dr],[T,W0]],[/(pico) ([\w ]+) os\d/i],[G,M,[T,W0]],[/(quest( \d| pro)?s?).+vr/i],[M,[G,zn],[T,W0]],[/mobile vr; rv.+firefox/i],[[T,W0]],[/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i],[G,[T,dt]],[/(aeobc)\b/i],[M,[G,J0],[T,dt]],[/(homepod).+mac os/i],[M,[G,Pr],[T,dt]],[/windows iot/i],[[T,dt]],[/droid.+; ([\w- ]+) (4k|android|smart|google)[- ]?tv/i],[M,[T,_A]],[/\b((4k|android|smart|opera)[- ]?tv|tv; rv:|large screen[\w ]+safari)\b/i],[[T,_A]],[/droid .+?; ([^;]+?)(?: bui|; wv\)|\) applew|; hmsc).+?(mobile|vr|\d) safari/i],[M,[T,we,{mobile:"Mobile",xr:"VR","*":yA}]],[/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i],[[T,yA]],[/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i],[[T,fA]],[/droid .+?; ([\w\. -]+)( bui|\))/i],[M,[G,"Generic"]]],engine:[[/windows.+ edge\/([\w\.]+)/i],[N,[k,z0+"HTML"]],[/(arkweb)\/([\w\.]+)/i],[k,N],[/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i],[N,[k,"Blink"]],[/(presto)\/([\w\.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna|servo)\/([\w\.]+)/i,/ekioh(flow)\/([\w\.]+)/i,/(khtml|tasman|links)[\/ ]\(?([\w\.]+)/i,/(icab)[\/ ]([23]\.[\d\.]+)/i,/\b(libweb)/i],[k,N],[/ladybird\//i],[[k,"LibWeb"]],[/rv\:([\w\.]{1,9})\b.+(gecko)/i],[N,k]],os:[[/(windows nt) (6\.[23]); arm/i],[[k,/N/,"R"],[N,we,FB]],[/(windows (?:phone|mobile|iot))(?: os)?[\/ ]?([\d\.]*( se)?)/i,/(windows)[\/ ](1[01]|2000|3\.1|7|8(\.1)?|9[58]|me|server 20\d\d( r2)?|vista|xp)/i],[k,N],[/windows nt ?([\d\.\)]*)(?!.+xbox)/i,/\bwin(?=3| ?9|n)(?:nt| 9x )?([\d\.;]*)/i],[[N,/(;|\))/g,"",we,FB],[k,$n]],[/(windows ce)\/?([\d\.]*)/i],[k,N],[/[adehimnop]{4,7}\b(?:.*os ([\w]+) like mac|; opera)/i,/(?:ios;fbsv|ios(?=.+ip(?:ad|hone)|.+apple ?tv)|ip(?:ad|hone)(?: |.+i(?:pad)?)os|apple ?tv.+ios)[\/ ]([\w\.]+)/i,/\btvos ?([\w\.]+)/i,/cfnetwork\/.+darwin/i],[[N,/_/g,"."],[k,"iOS"]],[/(mac os x) ?([\w\. ]*)/i,/(macintosh|mac_powerpc\b)(?!.+(haiku|morphos))/i],[[k,"macOS"],[N,/_/g,"."]],[/android ([\d\.]+).*crkey/i],[N,[k,rr+" Android"]],[/fuchsia.*crkey\/([\d\.]+)/i],[N,[k,rr+" Fuchsia"]],[/crkey\/([\d\.]+).*devicetype\/smartspeaker/i],[N,[k,rr+" SmartSpeaker"]],[/linux.*crkey\/([\d\.]+)/i],[N,[k,rr+" Linux"]],[/crkey\/([\d\.]+)/i],[N,[k,rr]],[/droid ([\w\.]+)\b.+(android[- ]x86)/i],[N,k],[/(ubuntu) ([\w\.]+) like android/i],[[k,/(.+)/,"$1 Touch"],N],[/(harmonyos)[\/ ]?([\d\.]*)/i,/(android|bada|blackberry|kaios|maemo|meego|openharmony|qnx|rim tablet os|sailfish|series40|symbian|tizen)\w*[-\/\.; ]?([\d\.]*)/i],[k,N],[/\(bb(10);/i],[N,[k,lB]],[/(?:symbian ?os|symbos|s60(?=;)|series ?60)[-\/ ]?([\w\.]*)/i],[N,[k,"Symbian"]],[/mozilla\/[\d\.]+ \((?:mobile|tablet|tv|mobile; [\w ]+); rv:.+ gecko\/([\w\.]+)/i],[N,[k,Ct+" OS"]],[/\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i,/webos(?:[ \/]?|\.tv-20(?=2[2-9]))(\d[\d\.]*)/i],[N,[k,"webOS"]],[/web0s;.+?(?:chr[o0]me|safari)\/(\d+)/i],[[N,we,{25:"120",24:"108",23:"94",22:"87",6:"79",5:"68",4:"53",3:"38",2:"538",1:"537","*":"TV"}],[k,"webOS"]],[/watch(?: ?os[,\/]|\d,\d\/)([\d\.]+)/i],[N,[k,"watchOS"]],[/(cros) [\w]+(?:\)| ([\w\.]+)\b)/i],[[k,"Chrome OS"],N],[/panasonic;(viera)/i,/(netrange)mmh/i,/(nettv)\/(\d+\.[\w\.]+)/i,/(nintendo|playstation) (\w+)/i,/(xbox); +xbox ([^\);]+)/i,/(pico) .+os([\w\.]+)/i,/\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i,/linux.+(mint)[\/\(\) ]?([\w\.]*)/i,/(mageia|vectorlinux|fuchsia|arcaos|arch(?= ?linux))[;l ]([\d\.]*)/i,/([kxln]?ubuntu|debian|suse|opensuse|gentoo|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire|knoppix)(?: gnu[\/ ]linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i,/((?:open)?solaris)[-\/ ]?([\w\.]*)/i,/\b(aix)[; ]([1-9\.]{0,4})/i,/(hurd|linux|morphos)(?: (?:arm|x86|ppc)\w*| ?)([\w\.]*)/i,/(gnu) ?([\w\.]*)/i,/\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i,/(haiku) ?(r\d)?/i],[k,N],[/(sunos) ?([\d\.]*)/i],[[k,"Solaris"],N],[/\b(beos|os\/2|amigaos|openvms|hp-ux|serenityos)/i,/(unix) ?([\w\.]*)/i],[k,N]]},q0=(function(){var B={init:{},isIgnore:{},isIgnoreRgx:{},toString:{}};return Ke.call(B.init,[[te,[k,N,Ft,T]],[Le,[YA]],[pe,[T,M,G]],[Ce,[k,N]],[se,[k,N]]]),Ke.call(B.isIgnore,[[te,[N,Ft]],[Ce,[N]],[se,[N]]]),Ke.call(B.isIgnoreRgx,[[te,/ ?browser$/i],[se,/ ?os$/i]]),Ke.call(B.toString,[[te,[k,N]],[Le,[YA]],[pe,[G,M]],[Ce,[k,N]],[se,[k,N]]]),B})(),Ju=function(B,s){var f=q0.init[s],c=q0.isIgnore[s]||0,x=q0.isIgnoreRgx[s]||0,d=q0.toString[s]||0;function Q(){Ke.call(this,f)}return Q.prototype.getItem=function(){return B},Q.prototype.withClientHints=function(){return Ur?Ur.getHighEntropyValues(EB).then(function(o){return B.setCH(new HB(o,!1)).parseCH().get()}):B.parseCH().get()},Q.prototype.withFeatureCheck=function(){return B.detectFeature().get()},s!=Jr&&(Q.prototype.is=function(o){var w=!1;for(var U in this)if(this.hasOwnProperty(U)&&!Ai(c,U)&&tr(x?qr(x,this[U]):this[U])==tr(x?qr(x,o):o)){if(w=!0,o!=KA.UNDEFINED)break}else if(o==KA.UNDEFINED&&w){w=!w;break}return w},Q.prototype.toString=function(){var o=Wr;for(var w in d)typeof this[d[w]]!==KA.UNDEFINED&&(o+=(o?" ":Wr)+this[d[w]]);return o||KA.UNDEFINED}),Q.prototype.then=function(o){var w=this,U=function(){for(var v in w)w.hasOwnProperty(v)&&(this[v]=w[v])};U.prototype={is:Q.prototype.is,toString:Q.prototype.toString,withClientHints:Q.prototype.withClientHints,withFeatureCheck:Q.prototype.withFeatureCheck};var u=new U;return o(u),u},new Q};function HB(B,s){if(B=B||{},Ke.call(this,EB),s)Ke.call(this,[[ti,jn(B[ir])],[ni,jn(B[Ou])],[fA,/\?1/.test(B[Gu])],[M,Qt(B[Nu])],[Yr,Qt(B[pB])],[ii,Qt(B[Vu])],[YA,Qt(B[Ru])],[Fr,jn(B[ku])],[An,Qt(B[Mu])]]);else for(var f in B)this.hasOwnProperty(f)&&typeof B[f]!==KA.UNDEFINED&&(this[f]=B[f])}function nr(B,s,f,c){return Ke.call(this,[["itemType",B],["ua",s],["uaCH",c],["rgxMap",f],["data",Ju(this,B)]]),this}nr.prototype.get=function(B){return B?this.data.hasOwnProperty(B)?this.data[B]:void 0:this.data};nr.prototype.set=function(B,s){return this.data[B]=s,this};nr.prototype.setCH=function(B){return this.uaCH=B,this};nr.prototype.detectFeature=function(){if(re&&re.userAgent==this.ua)switch(this.itemType){case te:re.brave&&typeof re.brave.isBrave==KA.FUNCTION&&this.set(k,"Brave");break;case pe:!this.get(T)&&Ur&&Ur[fA]&&this.set(T,fA),this.get(M)=="Macintosh"&&re&&typeof re.standalone!==KA.UNDEFINED&&re.maxTouchPoints&&re.maxTouchPoints>2&&this.set(M,"iPad").set(T,yA);break;case se:!this.get(k)&&Ur&&Ur[Yr]&&this.set(k,Ur[Yr]);break;case Jr:var B=this.data,s=function(f){return B[f].getItem().detectFeature().get()};this.set(te,s(te)).set(Le,s(Le)).set(pe,s(pe)).set(Ce,s(Ce)).set(se,s(se))}return this};nr.prototype.parseUA=function(){switch(this.itemType!=Jr&&ri.call(this.data,this.ua,this.rgxMap),this.itemType){case te:this.set(Ft,ei(this.get(N)));break;case se:if(this.get(k)=="iOS"&&this.get(N)=="18.6"){var B=/\) Version\/([\d\.]+)/.exec(this.ua);B&&parseInt(B[1].substring(0,2),10)>=26&&this.set(N,B[1])}break}return this};nr.prototype.parseCH=function(){var B=this.uaCH,s=this.rgxMap;switch(this.itemType){case te:case Ce:var f=B[ni]||B[ti],c;if(f)for(var x=0;x<f.length;x++){var d=f[x].brand||f[x],Q=f[x].version;this.itemType==te&&!/not.a.brand/i.test(d)&&(!c||/Chrom/.test(c)&&d!=QB||c==z0&&/WebView2/.test(d))&&(d=we(d,Wu),c=this.get(k),c&&!/Chrom/.test(c)&&/Chrom/.test(d)||this.set(k,d).set(N,Q).set(Ft,ei(Q)),c=d),this.itemType==Ce&&d==QB&&this.set(N,Q)}break;case Le:var o=B[YA];o&&(o&&B[An]=="64"&&(o+="64"),ri.call(this.data,o+";",s));break;case pe:if(B[fA]&&this.set(T,fA),B[M]&&(this.set(M,B[M]),!this.get(T)||!this.get(G))){var w={};ri.call(w,"droid 9; "+B[M]+")",s),!this.get(T)&&w.type&&this.set(T,w.type),!this.get(G)&&w.vendor&&this.set(G,w.vendor)}if(B[Fr]){var U;if(typeof B[Fr]!="string")for(var u=0;!U&&u<B[Fr].length;)U=we(B[Fr][u++],UB);else U=we(B[Fr],UB);this.set(T,U)}break;case se:var v=B[Yr];if(v){var C=B[ii];v==$n&&(C=parseInt(ei(C),10)>=13?"11":"10"),this.set(k,v).set(N,C)}this.get(k)==$n&&B[M]=="Xbox"&&this.set(k,"Xbox").set(N,void 0);break;case Jr:var E=this.data,p=function(b){return E[b].getItem().setCH(B).parseCH().get()};this.set(te,p(te)).set(Le,p(Le)).set(pe,p(pe)).set(Ce,p(Ce)).set(se,p(se))}return this};function Ee(B,s,f){if(typeof B===KA.OBJECT?(j0(B,!0)?(typeof s===KA.OBJECT&&(f=s),s=B):(f=B,s=void 0),B=void 0):typeof B===KA.STRING&&!j0(s,!0)&&(f=s,s=void 0),f)if(typeof f.append===KA.FUNCTION){var c={};f.forEach(function(u,v){c[String(v).toLowerCase()]=u}),f=c}else{var x={};for(var d in f)f.hasOwnProperty(d)&&(x[String(d).toLowerCase()]=f[d]);f=x}if(!(this instanceof Ee))return new Ee(B,s,f).getResult();var Q=typeof B===KA.STRING?B:f&&f[oB]?f[oB]:re&&re.userAgent?re.userAgent:Wr,o=new HB(f,!0),w=s?Xu(vB,s):vB,U=function(u){return u==Jr?function(){return new nr(u,Q,w,o).set("ua",Q).set(te,this.getBrowser()).set(Le,this.getCPU()).set(pe,this.getDevice()).set(Ce,this.getEngine()).set(se,this.getOS()).get()}:function(){return new nr(u,Q,w[u],o).parseUA().get()}};return Ke.call(this,[["getBrowser",U(te)],["getCPU",U(Le)],["getDevice",U(pe)],["getEngine",U(Ce)],["getOS",U(se)],["getResult",U(Jr)],["getUA",function(){return Q}],["setUA",function(u){return Ut(u)&&(Q=$0(u,Tu)),this}]]).setUA(Q),this}Ee.VERSION=_u;Ee.BROWSER=en([k,N,Ft,T]);Ee.CPU=en([YA]);Ee.DEVICE=en([M,G,T,Z0,fA,_A,yA,ve,dt]);Ee.ENGINE=Ee.OS=en([k,N]);var qu=Ee;function yB(){return typeof crypto!="undefined"&&crypto.randomUUID?crypto.randomUUID():Math.random().toString(16).slice(2)+Date.now().toString(16)}var Zu=()=>"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,B=>{let s=Math.random()*16|0;return(B==="x"?s:s&3|8).toString(16)}),si=B=>B===null||typeof B!="object"?JSON.stringify(B):Array.isArray(B)?"["+B.map(si).join(",")+"]":"{"+Object.keys(B).sort().map(f=>JSON.stringify(f)+":"+si(B[f])).join(",")+"}",ai=class{constructor(){this.cfg=null,this.deviceId=null,this.sessionId=null,this.sessionReady=!1,this._booting=!1,this._disabled=!1,this.pendingEvents=[],this.batchQueue=[],this.scrollFired=!1,this._initialized=!1,this._flushTimer=null,this.indexId=0,this._indexKey=null,this._lastShotAt=0,this._shotInFlight=!1,this.batchConfig={eventsBatchSize:5,flushIntervalMs:5e3,sessionTimeout:36e5}}init(s){var x,d,Q;if(typeof window=="undefined"||this._initialized)return;this._initialized=!0;let f={enabled:!1,apiUrl:(d=(x=s.screenActivity)==null?void 0:x.apiUrl)!=null?d:`${s.socketUrl}/api/app/screenActivity/screenActivityDetails_post`,captureOn:["pageView","elementClick","formStart","formSubmit","scrollDepth","searchResultsView","customEvent"],throttleMs:2e3,jpegQuality:.7},c=typeof s.screenActivity=="object"?{...f,...s.screenActivity}:{...f};if(this.cfg={apiKey:s.apiKey,secretKey:s.secretKey,version:s.version,apiBaseUrl:s.apiBaseUrl||s.endpoint||s.socketUrl||"https://api.twinalyze.com",debug:s.debug!==!1,encrypt:s.encrypt!==!1,persistSession:s.persistSession!==!1,sessionKey:"twinalyze_session_id",source:s.source||"web",indexId:(Q=s.indexId)!=null?Q:null,enhancedMeasurement:{pageViews:!0,scrolls:!0,outboundClicks:!0,siteSearch:{params:["q","s","search","query"]},formInteractions:!0,fileDownloads:{extensions:["pdf","zip","apk","doc","docx","xls","xlsx","ppt","pptx"]},...s.enhancedMeasurement||{}},screenActivity:c},!this.cfg.apiKey){console.log("[Twinalyze] \u274C Missing apiKey");return}this.deviceId=this._getOrCreateDeviceId(),this.cfg.persistSession&&(this.sessionId=sessionStorage.getItem(this.cfg.sessionKey)||null),this._setupEnhancedMeasurement(),this._startFlow()}track(s,f={}){var c;if(!this._disabled&&!(this.cfg&&this.cfg.manualEventStatus===!1)){if((c=this.cfg)!=null&&c.debug&&console.log("[Twinalyze][CUSTOM]",s,f),!this.sessionReady){this.pendingEvents.push({eventName:s,properties:{...this._pageContext(),...f},ts:Date.now(),eventType:"manual"});return}this._emitEventAdd(s,{...this._pageContext(),...f},"manual")}}async _startFlow(){if(!this._disabled&&!this._booting){this._booting=!0;try{let s=await this._fetchApi("/api/web/sdk/init",{});if(this.cfg.debug&&console.log("[Twinalyze][FLOW] initRes:",s),!s||s.success===!1){this._disabled=!0,this.sessionReady=!1,this.cfg.screenActivity.enabled=!1,this.cfg.debug&&console.log("[Twinalyze][FLOW] \u{1F6D1} STOP (init failed)");return}let f=s.data||{};this.cfg.screenActivity.enabled=!!f.debugScreenshotCapture,f.eventData?(this.cfg.autoEventStatus=f.eventData.autoEventStatus!==!1,this.cfg.manualEventStatus=f.eventData.manualEventStatus!==!1):(this.cfg.autoEventStatus=!0,this.cfg.manualEventStatus=!0),f.eventsBatchConfig&&(this.batchConfig={eventsBatchSize:f.eventsBatchConfig.eventsBatchSize||5,flushIntervalMs:f.eventsBatchConfig.flushIntervalMs||5e3,sessionTimeout:f.eventsBatchConfig.sessionTimeout||36e5}),this.sessionId||(this.sessionId=`sess_${yB()}`,this.cfg.persistSession&&sessionStorage.setItem(this.cfg.sessionKey,this.sessionId)),this._initIndexId();let c={properties:this._userProperties(),deviceProperties:this._deviceProperties()},x=await this._fetchApi("/api/web/sdk/identify",c);if(this.cfg.debug&&console.log("[Twinalyze][FLOW] identifyRes:",x),!x||x.success===!1){this._disabled=!0,this.sessionReady=!1,this.cfg.debug&&console.log("[Twinalyze][FLOW] \u{1F6D1} STOP (identify failed)");return}this.sessionReady=!0,this._flushTimer&&clearInterval(this._flushTimer),this._flushTimer=setInterval(()=>this._flushBatchQueue(),this.batchConfig.flushIntervalMs),this.pendingEvents.length>0&&this.pendingEvents.splice(0,this.pendingEvents.length).forEach(Q=>this._emitEventAdd(Q.eventName,Q.properties||{},Q.eventType||"auto"))}finally{this._booting=!1}}}async _fetchApi(s,f){let c=`${this.cfg.apiBaseUrl}${s}`,x=Zu(),d=new Date().toISOString(),Q=f?JSON.stringify(f):"{}",o=si(f||{}),w=vt.default.SHA256(o).toString(vt.default.enc.Hex),u=["POST",s,d,x,this.deviceId,w].join(`
6
+ `),v=this.cfg.secretKey||"",C=vt.default.HmacSHA256(u,v).toString(vt.default.enc.Hex);this.cfg.debug&&console.log("[Twinalyze][API] Request signing trace:",{endpoint:s,nonce:x,timestamp:d,canonicalBody:o,bodyHash:w,baseString:u,signature:C});let E={"Content-Type":"application/json","x-deviceId":this.deviceId,"x-api-key":this.cfg.apiKey,"x-analytics-sdk-version":this.cfg.version||"1.0.0","x-ad-analytics-sdk-version":"1.0.0","x-app-package-name":window.location.href,"x-platform":"javascript","x-app-version-name":"1.0.0","x-app-version-mode":this.cfg.debug?"debug":"release","x-sdk-version":"v1.0.15","x-timestamp":d,"x-nonce":x,"x-signature":C};try{return await(await fetch(c,{method:"POST",headers:E,body:Q})).json()}catch(p){return this.cfg.debug&&console.log(`[Twinalyze][API] Error calling ${s}:`,p),null}}async _waitForRenderStable(){var f;await new Promise(c=>requestAnimationFrame(()=>requestAnimationFrame(c)));try{(f=document.fonts)!=null&&f.ready&&await document.fonts.ready}catch{}let s=Array.from(document.images||[]).filter(c=>!c.complete);await Promise.allSettled(s.map(c=>new Promise(x=>{c.addEventListener("load",x,{once:!0}),c.addEventListener("error",x,{once:!0})})))}async _captureViewportJpegBlob(){var d,Q,o;await this._waitForRenderStable();let s=(((d=this.cfg.screenActivity)==null?void 0:d.capture)||"viewport")==="viewport",f=Math.min(2,window.devicePixelRatio||1),c=await(0,IB.default)(document.documentElement,{useCORS:!0,allowTaint:!1,backgroundColor:"#ffffff",logging:!1,...s?{x:window.scrollX,y:window.scrollY,width:window.innerWidth,height:window.innerHeight}:{x:0,y:0,width:document.documentElement.scrollWidth,height:document.documentElement.scrollHeight},scale:f,onclone:w=>{let U=w.createElement("style");U.textContent=`
7
+ * { animation: none !important; transition: none !important; caret-color: transparent !important; }
8
+ `,w.head.appendChild(U)}}),x=(o=(Q=this.cfg.screenActivity)==null?void 0:Q.maxWidth)!=null?o:1280;if(c.width>x){let w=x/c.width,U=document.createElement("canvas");return U.width=Math.round(c.width*w),U.height=Math.round(c.height*w),U.getContext("2d").drawImage(c,0,0,U.width,U.height),await new Promise(u=>{var v,C;return U.toBlob(u,"image/jpeg",(C=(v=this.cfg.screenActivity)==null?void 0:v.jpegQuality)!=null?C:.7)})}return await new Promise(w=>{var U,u;return c.toBlob(w,"image/jpeg",(u=(U=this.cfg.screenActivity)==null?void 0:U.jpegQuality)!=null?u:.7)})}async _uploadScreenActivity({eventName:s,properties:f}){var d,Q,o;if(!((d=this.cfg.screenActivity)!=null&&d.enabled)||!this.sessionReady)return;let c=Date.now(),x=(o=(Q=this.cfg.screenActivity)==null?void 0:Q.throttleMs)!=null?o:2e3;if(!(c-this._lastShotAt<x)&&!this._shotInFlight){this._shotInFlight=!0,this._lastShotAt=c;try{let w=await this._captureViewportJpegBlob();if(!w)return;let U=new FormData;U.append("apiKey",this.cfg.apiKey),U.append("screenName",document.title||"unknown"),U.append("identifier",JSON.stringify(f||{})),U.append("description",s||"event"),U.append("image",w,`shot_${Date.now()}.jpg`),await fetch(this.cfg.screenActivity.apiUrl,{method:"POST",body:U,keepalive:!0})}catch(w){this.cfg.debug&&console.log("[Twinalyze][SCREENSHOT] error:",(w==null?void 0:w.message)||w)}finally{this._shotInFlight=!1}}}_emitEventAdd(s,f={},c="auto"){if(!this.sessionReady)return;this._indexKey==null&&this._initIndexId();let x=this._nextIndexId(),d={uniqueSessionId:this.sessionId,date:new Date().toISOString(),eventType:c,eventName:s,properties:{...f,eventName:s},indexId:x,source:this.cfg.source};this.batchQueue.push(d),this._uploadScreenActivity({eventName:s,properties:f}),this.cfg.debug&&console.log("[Twinalyze][EVENT_QUEUED]",s,f,x),this.batchQueue.length>=this.batchConfig.eventsBatchSize&&this._flushBatchQueue()}async _flushBatchQueue(){if(!this.sessionReady||!this.batchQueue.length)return;let s=this.batchQueue.splice(0,this.batchQueue.length);this.cfg.debug&&console.log(`[Twinalyze][FLUSHING] ${s.length} events...`);let f={eventsBatch:[{events:s.map(x=>({appInfo:{appVersion:this.cfg.version||"1.0.0",platform:"javascript"},date:x.date,eventName:x.eventName,eventType:x.eventType,indexId:x.indexId,properties:x.properties})),startDate:s[0].date,uniqueSessionId:this.sessionId}]},c=await this._fetchApi("/api/web/sdk/eventsBatch",f);this.cfg.debug&&console.log("[Twinalyze][FLUSH_RES]",c),(!c||c.success===!1)&&this.cfg.debug&&console.log("[Twinalyze][FLUSH_FAIL] events dropped")}_trackAuto(s,f={}){var c;if(!this._disabled&&!(this.cfg&&this.cfg.autoEventStatus===!1)){if((c=this.cfg)!=null&&c.debug&&console.log("[Twinalyze][AUTO]",s,f),!this.sessionReady){this.pendingEvents.push({eventName:s,properties:f,ts:Date.now(),eventType:"auto"});return}this._emitEventAdd(s,f,"auto")}}_setupEnhancedMeasurement(){let s=this.cfg.enhancedMeasurement||{};if(s.pageViews){let f=this._pageViewInfo();this._trackAuto("pageView",f);let c=()=>{this.scrollFired=!1;let Q=this._pageViewInfo();this._trackAuto("pageView",Q),this._fireSiteSearch()},x=history.pushState,d=history.replaceState;history.pushState=(...Q)=>{x.apply(history,Q),c()},history.replaceState=(...Q)=>{d.apply(history,Q),c()},window.addEventListener("popstate",c)}if(s.scrolls&&window.addEventListener("scroll",()=>{if(this.scrollFired)return;let f=document.documentElement,c=window.scrollY||f.scrollTop,x=f.scrollHeight-f.clientHeight;if(x<=0)return;let d=Math.round(c/x*100);d>=90&&(this.scrollFired=!0,this._trackAuto("scrollDepth",{scrollPercent:d,...this._pageContext()}))},{passive:!0}),s.outboundClicks&&document.addEventListener("click",f=>{var w,U,u;let c=this._getClickTarget(f);if(!c)return;let x=c.el,d=(x.tagName||"").toLowerCase(),Q=this._getTextFromElement(x),o={clickType:c.kind,elementTag:d,elementText:Q||"not_found",elementId:x.id||null,elementName:((w=x.getAttribute)==null?void 0:w.call(x,"name"))||null,elementRole:((U=x.getAttribute)==null?void 0:U.call(x,"role"))||null,elementClass:x.className&&typeof x.className=="string"?x.className.slice(0,120):null,elementSelector:this._cssPath(x),...this._pageContext&&this._pageContext()||{}};if(c.kind==="link"){let v=x.getAttribute("href")||"";if(/^(javascript:|mailto:|tel:)/i.test(v))return;let C;try{C=new URL(x.href)}catch{return}o.linkUrl=C.href,o.linkDomain=C.hostname,o.linkPath=C.pathname,o.isOutbound=C.hostname!==location.hostname}c.kind==="button"&&(o.buttonType=((u=x.getAttribute)==null?void 0:u.call(x,"type"))||null,o.disabled=!!x.disabled),this._trackAuto("elementClick",o)},!0),s.siteSearch&&this._fireSiteSearch(),s.formInteractions){let f=new WeakSet;document.addEventListener("focusin",c=>{let x=c.target&&c.target.closest?c.target.closest("form"):null;!x||f.has(x)||(f.add(x),this._trackAuto("formStart",{formId:x.id||void 0,formName:x.getAttribute("name")||void 0,formActionUrl:x.action||void 0,...this._pageContext()}))}),document.addEventListener("submit",c=>{let x=c.target;x&&this._trackAuto("formSubmit",{formId:x.id||void 0,formName:x.getAttribute("name")||void 0,formActionUrl:x.action||void 0,formDestinationUrl:location.href,formStatus:"success",...this._pageContext()})},!0)}if(s.fileDownloads&&s.fileDownloads.extensions){let f=s.fileDownloads.extensions.map(c=>String(c).toLowerCase());document.addEventListener("click",c=>{let x=c.target&&c.target.closest?c.target.closest("a"):null;if(!x||!x.href)return;let d=x.href.split("?")[0].toLowerCase(),Q=d.split(".").pop()||"";f.includes(Q)&&this._trackAuto("fileDownload",{linkUrl:x.href,fileExtension:Q,fileName:d.split("/").pop(),...this._pageContext()})},!0)}}_fireSiteSearch(){let s=this.cfg.enhancedMeasurement||{};if(!s.siteSearch)return;let f=s.siteSearch.params||["q","s","search","query"],c=new URLSearchParams(location.search),x=f.find(Q=>c.get(Q)),d=x?c.get(x):null;d&&d.trim()&&this._trackAuto("searchResultsView",{searchTerm:d.trim(),searchKey:x,searchUrl:location.href,...this._pageContext()})}_getTextFromElement(s){var d,Q;if(!s)return null;let f=(d=s.getAttribute)==null?void 0:d.call(s,"aria-label");if(f&&f.trim())return f.trim();let c=(Q=s.getAttribute)==null?void 0:Q.call(s,"title");if(c&&c.trim())return c.trim();let x=(s.innerText||s.textContent||"").trim();return x?x.length>80?x.slice(0,80):x:null}_cssPath(s){if(!s||!s.tagName)return null;let f=[],c=s,x=0;for(;c&&c.nodeType===1&&x<5;){let d=c.tagName.toLowerCase();if(c.id){d+=`#${c.id}`,f.unshift(d);break}let Q=c.className&&typeof c.className=="string"?c.className.trim().split(/\s+/).slice(0,2).join("."):"";Q&&(d+=`.${Q}`),f.unshift(d),c=c.parentElement,x++}return f.join(" > ")}_getClickTarget(s){let f=typeof s.composedPath=="function"?s.composedPath():null,c=f&&f.length?f[0]:s.target,x=(U,u)=>U&&U.closest?U.closest(u):null,d=x(c,"a[href]");if(d)return{el:d,kind:"link"};let Q=x(c,'button, input[type="button"], input[type="submit"], input[type="reset"], [role="button"]');if(Q)return{el:Q,kind:"button"};let o=x(c,'[role="menuitem"], [role="menuitemradio"], [role="menuitemcheckbox"], [role="option"]');if(o)return{el:o,kind:"dropdown_item"};let w=x(c,'[role="link"], [tabindex]:not([tabindex="-1"]), [aria-haspopup], [contenteditable="true"]');return w?{el:w,kind:"interactive"}:null}_deviceProperties(){var d,Q,o,w,U,u,v,C;let f=new qu(navigator.userAgent).getResult(),c=navigator.connection||navigator.mozConnection||navigator.webkitConnection,x=(Q=(d=window.matchMedia)==null?void 0:d.call(window,"(prefers-color-scheme: dark)"))!=null&&Q.matches?"dark":"light";return{device_type:((o=f.device)==null?void 0:o.type)||(matchMedia("(pointer:coarse)").matches?"mobile":"desktop"),os_name:((w=f.os)==null?void 0:w.name)||"not_found",os_version:((U=f.os)==null?void 0:U.version)||"not_found",browser_name:((u=f.browser)==null?void 0:u.name)||"not_found",browser_version:((v=f.browser)==null?void 0:v.version)||"not_found",sdk:"web",sdk_version:((C=this.cfg)==null?void 0:C.version)||"not_found",device_screen_mode:x,screen_w:String(screen.width),screen_h:String(screen.height),viewport_w:String(window.innerWidth),viewport_h:String(window.innerHeight),density:String(window.devicePixelRatio||1),color_depth:String(screen.colorDepth||"not_found"),device_language:navigator.language||"not_found",timezone:Intl.DateTimeFormat().resolvedOptions().timeZone||"not_found",cores:navigator.hardwareConcurrency!=null?String(navigator.hardwareConcurrency):"not_found",memory_gb:navigator.deviceMemory!=null?String(navigator.deviceMemory):"not_found",touch_points:navigator.maxTouchPoints!=null?String(navigator.maxTouchPoints):"0",is_data_on:navigator.onLine?"true":"false",connection_effective_type:(c==null?void 0:c.effectiveType)||"not_found",connection_downlink:(c==null?void 0:c.downlink)!=null?String(c.downlink):"not_found",connection_rtt:(c==null?void 0:c.rtt)!=null?String(c.rtt):"not_found",connection_save_data:(c==null?void 0:c.saveData)!=null?String(c.saveData):"not_found",user_agent:navigator.userAgent}}_userProperties(){let s=new URL(location.href),f=s.searchParams,c=d=>f.get(d),x="not_found";return{landing_url:s.href,utm_source:c("utm_source")||x,utm_medium:c("utm_medium")||x,utm_campaign:c("utm_campaign")||x,utm_term:c("utm_term")||x,utm_content:c("utm_content")||x,gclid:c("gclid")||x,fbclid:c("fbclid")||x,msclkid:c("msclkid")||x,language_pref:navigator.language||x}}_initIndexId(){this._indexKey=`twinalyze_index_${this.sessionId}`,this.indexId=parseInt(sessionStorage.getItem(this._indexKey)||"0",10),Number.isNaN(this.indexId)&&(this.indexId=0)}_nextIndexId(){return this.indexId+=1,this._indexKey&&sessionStorage.setItem(this._indexKey,String(this.indexId)),this.indexId}_getOrCreateDeviceId(){let s="twinalyze_device_id",f=localStorage.getItem(s);if(f)return f;let c=yB();return localStorage.setItem(s,c),c}_pageContext(){let s="twinalyze_last_page_location",f=location.href,c=location.hostname,x=location.pathname,d=document.title,o=sessionStorage.getItem(s)||document.referrer||null,w="direct";if(o)try{w=new URL(o).hostname===c?"internal":"external"}catch{w="external"}return{pageDomain:c,pageUrl:f,pagePath:x,pageTitle:d,referrerUrl:o,referrerType:w}}_pageViewInfo(){let s="twinalyze_last_page_location",f="twinalyze_page_counter",c="twinalyze_last_counted_path",x=this._pageContext(),d=x.pagePath,Q=sessionStorage.getItem(c),o=parseInt(sessionStorage.getItem(f)||"0",10);return Number.isNaN(o)&&(o=0),Q!==d?(o+=1,sessionStorage.setItem(f,String(o)),sessionStorage.setItem(c,d)):sessionStorage.setItem(f,String(o)),sessionStorage.setItem(s,x.pageUrl),{pageCount:o,...x}}},mB=new ai,zu=["init","track"],ju=Object.fromEntries(zu.map(B=>[B,mB[B].bind(mB)]));var bB=ju;var Bi=bB;typeof window!="undefined"&&(window.twinalyze=Bi,window.TwinalyzeAnalytics=Bi);var ig=Bi;})();
9
+ /*! Bundled license information:
10
+
11
+ crypto-js/ripemd160.js:
12
+ (** @preserve
13
+ (c) 2012 by Cédric Mesnil. All rights reserved.
14
+
15
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
16
+
17
+ - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18
+ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
21
+ *)
22
+
23
+ crypto-js/mode-ctr-gladman.js:
24
+ (** @preserve
25
+ * Counter block mode compatible with Dr Brian Gladman fileenc.c
26
+ * derived from CryptoJS.mode.CTR
27
+ * Jan Hruby jhruby.web@gmail.com
28
+ *)
29
+
30
+ html2canvas/dist/html2canvas.js:
31
+ (*!
32
+ * html2canvas 1.4.1 <https://html2canvas.hertzen.com>
33
+ * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>
34
+ * Released under MIT License
35
+ *)
36
+ (*! *****************************************************************************
37
+ Copyright (c) Microsoft Corporation.
38
+
39
+ Permission to use, copy, modify, and/or distribute this software for any
40
+ purpose with or without fee is hereby granted.
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
43
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
44
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
45
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
46
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
47
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
48
+ PERFORMANCE OF THIS SOFTWARE.
49
+ ***************************************************************************** *)
50
+ */
51
+ //# sourceMappingURL=cdn.global.min.global.js.map