chunk-78adc46a.49feed3c.js 1.5 MB

123456
  1. (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-78adc46a"],{"00dc":function(e,t,r){(function(e){var i=r("58a2"),n=r("c24d"),a=r("561d");function s(t){var r=new e(n[t].prime,"hex"),i=new e(n[t].gen,"hex");return new a(r,i)}var o={binary:!0,hex:!0,base64:!0};function h(t,r,n,s){return e.isBuffer(r)||void 0===o[r]?h(t,"binary",r,n):(r=r||"binary",s=s||"binary",n=n||new e([2]),e.isBuffer(n)||(n=new e(n,s)),"number"===typeof t?new a(i(t,n),n,!0):(e.isBuffer(t)||(t=new e(t,r)),new a(t,n,!0)))}t.DiffieHellmanGroup=t.createDiffieHellmanGroup=t.getDiffieHellman=s,t.createDiffieHellman=t.DiffieHellman=h}).call(this,r("b639").Buffer)},"0106":function(e,t,r){(function(e){(function(e,t){"use strict";function i(e,t){if(!e)throw new Error(t||"Assertion failed")}function n(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}function a(e,t,r){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(r=t,t=10),this._init(e||0,t||10,r||"be"))}var s;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{s="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:r(22).Buffer}catch(C){}function o(e,t){var r=e.charCodeAt(t);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function h(e,t,r){var i=o(e,r);return r-1>=t&&(i|=o(e,r-1)<<4),i}function l(e,t,r,i){for(var n=0,a=Math.min(e.length,r),s=t;s<a;s++){var o=e.charCodeAt(s)-48;n*=i,n+=o>=49?o-49+10:o>=17?o-17+10:o}return n}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n<e.length&&(16===t?this._parseHex(e,n,r):(this._parseBase(e,t,n),"le"===r&&this._initArray(this.toArray(),t,r)))},a.prototype._initNumber=function(e,t,r){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(i(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),t,r)},a.prototype._initArray=function(e,t,r){if(i("number"===typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var a,s,o=0;if("be"===r)for(n=e.length-1,a=0;n>=0;n-=3)s=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);else if("le"===r)for(n=0,a=0;n<e.length;n+=3)s=e[n]|e[n+1]<<8|e[n+2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var n,a=0,s=0;if("be"===r)for(i=e.length-1;i>=t;i-=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8;else{var o=e.length-t;for(i=o%2===0?t+1:t;i<e.length;i+=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8}this.strip()},a.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var a=e.length-r,s=a%i,o=Math.min(a,a-s)+r,h=0,c=r;c<o;c+=i)h=l(e,c,c+i,t),this.imuln(n),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var u=1;for(h=l(e,c,e.length,t),c=0;c<s;c++)u*=t;this.imuln(u),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this.strip()},a.prototype.copy=function(e){e.words=new Array(this.length);for(var t=0;t<this.length;t++)e.words[t]=this.words[t];e.length=this.length,e.negative=this.negative,e.red=this.red},a.prototype.clone=function(){var e=new a(null);return this.copy(e),e},a.prototype._expand=function(e){while(this.length<e)this.words[this.length++]=0;return this},a.prototype.strip=function(){while(this.length>1&&0===this.words[this.length-1])this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],f=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function d(e){for(var t=new Array(e.bitLength()),r=0;r<t.length;r++){var i=r/26|0,n=r%26;t[r]=(e.words[i]&1<<n)>>>n}return t}function p(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],a=0|t.words[0],s=n*a,o=67108863&s,h=s/67108864|0;r.words[0]=o;for(var l=1;l<i;l++){for(var c=h>>>26,u=67108863&h,f=Math.min(l,t.length-1),d=Math.max(0,l-e.length+1);d<=f;d++){var p=l-d|0;n=0|e.words[p],a=0|t.words[d],s=n*a+u,c+=s/67108864|0,u=67108863&s}r.words[l]=0|u,h=0|c}return 0!==h?r.words[l]=0|h:r.length--,r.strip()}a.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,a=0,s=0;s<this.length;s++){var o=this.words[s],h=(16777215&(o<<n|a)).toString(16);a=o>>>24-n&16777215,r=0!==a||s!==this.length-1?c[6-h.length]+h+r:h+r,n+=2,n>=26&&(n-=26,s--)}0!==a&&(r=a.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var l=u[e],d=f[e];r="";var p=this.clone();p.negative=0;while(!p.isZero()){var m=p.modn(d).toString(e);p=p.idivn(d),r=p.isZero()?m+r:c[l-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return i("undefined"!==typeof s),this.toArrayLike(s,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,r){var n=this.byteLength(),a=r||Math.max(1,n);i(n<=a,"byte array longer than desired length"),i(a>0,"Requested array length <= 0"),this.strip();var s,o,h="le"===t,l=new e(a),c=this.clone();if(h){for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[o]=s;for(;o<a;o++)l[o]=0}else{for(o=0;o<a-n;o++)l[o]=0;for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[a-o-1]=s}return l},Math.clz32?a.prototype._countBits=function(e){return 32-Math.clz32(e)}:a.prototype._countBits=function(e){var t=e,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;t<this.length;t++){var r=this._zeroBits(this.words[t]);if(e+=r,26!==r)break}return e},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(e){return 0!==this.negative?this.abs().inotn(e).iaddn(1):this.clone()},a.prototype.fromTwos=function(e){return this.testn(e-1)?this.notn(e).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(e){while(this.length<e.length)this.words[this.length++]=0;for(var t=0;t<e.length;t++)this.words[t]=this.words[t]|e.words[t];return this.strip()},a.prototype.ior=function(e){return i(0===(this.negative|e.negative)),this.iuor(e)},a.prototype.or=function(e){return this.length>e.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;r<t.length;r++)this.words[r]=this.words[r]&e.words[r];return this.length=t.length,this.strip()},a.prototype.iand=function(e){return i(0===(this.negative|e.negative)),this.iuand(e)},a.prototype.and=function(e){return this.length>e.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;i<r.length;i++)this.words[i]=t.words[i]^r.words[i];if(this!==t)for(;i<t.length;i++)this.words[i]=t.words[i];return this.length=t.length,this.strip()},a.prototype.ixor=function(e){return i(0===(this.negative|e.negative)),this.iuxor(e)},a.prototype.xor=function(e){return this.length>e.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n<t;n++)this.words[n]=67108863&~this.words[n];return r>0&&(this.words[n]=~this.words[n]&67108863>>26-r),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<<n:this.words[r]&~(1<<n),this.strip()},a.prototype.iadd=function(e){var t,r,i;if(0!==this.negative&&0===e.negative)return this.negative=0,t=this.isub(e),this.negative^=1,this._normSign();if(0===this.negative&&0!==e.negative)return e.negative=0,t=this.isub(e),e.negative=1,t._normSign();this.length>e.length?(r=this,i=e):(r=e,i=this);for(var n=0,a=0;a<i.length;a++)t=(0|r.words[a])+(0|i.words[a])+n,this.words[a]=67108863&t,n=t>>>26;for(;0!==n&&a<r.length;a++)t=(0|r.words[a])+n,this.words[a]=67108863&t,n=t>>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(e){var t;return 0!==e.negative&&0===this.negative?(e.negative=0,t=this.sub(e),e.negative^=1,t):0===e.negative&&0!==this.negative?(this.negative=0,t=e.sub(this),this.negative=1,t):this.length>e.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var a=0,s=0;s<i.length;s++)t=(0|r.words[s])-(0|i.words[s])+a,a=t>>26,this.words[s]=67108863&t;for(;0!==a&&s<r.length;s++)t=(0|r.words[s])+a,a=t>>26,this.words[s]=67108863&t;if(0===a&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this.strip()},a.prototype.sub=function(e){return this.clone().isub(e)};var m=function(e,t,r){var i,n,a,s=e.words,o=t.words,h=r.words,l=0,c=0|s[0],u=8191&c,f=c>>>13,d=0|s[1],p=8191&d,m=d>>>13,g=0|s[2],b=8191&g,v=g>>>13,y=0|s[3],w=8191&y,M=y>>>13,_=0|s[4],S=8191&_,k=_>>>13,A=0|s[5],x=8191&A,C=A>>>13,E=0|s[6],T=8191&E,R=E>>>13,I=0|s[7],P=8191&I,O=I>>>13,F=0|s[8],L=8191&F,D=F>>>13,N=0|s[9],B=8191&N,U=N>>>13,j=0|o[0],q=8191&j,z=j>>>13,H=0|o[1],G=8191&H,W=H>>>13,X=0|o[2],V=8191&X,K=X>>>13,Y=0|o[3],Z=8191&Y,$=Y>>>13,J=0|o[4],Q=8191&J,ee=J>>>13,te=0|o[5],re=8191&te,ie=te>>>13,ne=0|o[6],ae=8191&ne,se=ne>>>13,oe=0|o[7],he=8191&oe,le=oe>>>13,ce=0|o[8],ue=8191&ce,fe=ce>>>13,de=0|o[9],pe=8191&de,me=de>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(u,q),n=Math.imul(u,z),n=n+Math.imul(f,q)|0,a=Math.imul(f,z);var ge=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,q),n=Math.imul(p,z),n=n+Math.imul(m,q)|0,a=Math.imul(m,z),i=i+Math.imul(u,G)|0,n=n+Math.imul(u,W)|0,n=n+Math.imul(f,G)|0,a=a+Math.imul(f,W)|0;var be=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(b,q),n=Math.imul(b,z),n=n+Math.imul(v,q)|0,a=Math.imul(v,z),i=i+Math.imul(p,G)|0,n=n+Math.imul(p,W)|0,n=n+Math.imul(m,G)|0,a=a+Math.imul(m,W)|0,i=i+Math.imul(u,V)|0,n=n+Math.imul(u,K)|0,n=n+Math.imul(f,V)|0,a=a+Math.imul(f,K)|0;var ve=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(w,q),n=Math.imul(w,z),n=n+Math.imul(M,q)|0,a=Math.imul(M,z),i=i+Math.imul(b,G)|0,n=n+Math.imul(b,W)|0,n=n+Math.imul(v,G)|0,a=a+Math.imul(v,W)|0,i=i+Math.imul(p,V)|0,n=n+Math.imul(p,K)|0,n=n+Math.imul(m,V)|0,a=a+Math.imul(m,K)|0,i=i+Math.imul(u,Z)|0,n=n+Math.imul(u,$)|0,n=n+Math.imul(f,Z)|0,a=a+Math.imul(f,$)|0;var ye=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(S,q),n=Math.imul(S,z),n=n+Math.imul(k,q)|0,a=Math.imul(k,z),i=i+Math.imul(w,G)|0,n=n+Math.imul(w,W)|0,n=n+Math.imul(M,G)|0,a=a+Math.imul(M,W)|0,i=i+Math.imul(b,V)|0,n=n+Math.imul(b,K)|0,n=n+Math.imul(v,V)|0,a=a+Math.imul(v,K)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,$)|0,n=n+Math.imul(m,Z)|0,a=a+Math.imul(m,$)|0,i=i+Math.imul(u,Q)|0,n=n+Math.imul(u,ee)|0,n=n+Math.imul(f,Q)|0,a=a+Math.imul(f,ee)|0;var we=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(x,q),n=Math.imul(x,z),n=n+Math.imul(C,q)|0,a=Math.imul(C,z),i=i+Math.imul(S,G)|0,n=n+Math.imul(S,W)|0,n=n+Math.imul(k,G)|0,a=a+Math.imul(k,W)|0,i=i+Math.imul(w,V)|0,n=n+Math.imul(w,K)|0,n=n+Math.imul(M,V)|0,a=a+Math.imul(M,K)|0,i=i+Math.imul(b,Z)|0,n=n+Math.imul(b,$)|0,n=n+Math.imul(v,Z)|0,a=a+Math.imul(v,$)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,a=a+Math.imul(m,ee)|0,i=i+Math.imul(u,re)|0,n=n+Math.imul(u,ie)|0,n=n+Math.imul(f,re)|0,a=a+Math.imul(f,ie)|0;var Me=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(T,q),n=Math.imul(T,z),n=n+Math.imul(R,q)|0,a=Math.imul(R,z),i=i+Math.imul(x,G)|0,n=n+Math.imul(x,W)|0,n=n+Math.imul(C,G)|0,a=a+Math.imul(C,W)|0,i=i+Math.imul(S,V)|0,n=n+Math.imul(S,K)|0,n=n+Math.imul(k,V)|0,a=a+Math.imul(k,K)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,$)|0,n=n+Math.imul(M,Z)|0,a=a+Math.imul(M,$)|0,i=i+Math.imul(b,Q)|0,n=n+Math.imul(b,ee)|0,n=n+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,a=a+Math.imul(m,ie)|0,i=i+Math.imul(u,ae)|0,n=n+Math.imul(u,se)|0,n=n+Math.imul(f,ae)|0,a=a+Math.imul(f,se)|0;var _e=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul(P,q),n=Math.imul(P,z),n=n+Math.imul(O,q)|0,a=Math.imul(O,z),i=i+Math.imul(T,G)|0,n=n+Math.imul(T,W)|0,n=n+Math.imul(R,G)|0,a=a+Math.imul(R,W)|0,i=i+Math.imul(x,V)|0,n=n+Math.imul(x,K)|0,n=n+Math.imul(C,V)|0,a=a+Math.imul(C,K)|0,i=i+Math.imul(S,Z)|0,n=n+Math.imul(S,$)|0,n=n+Math.imul(k,Z)|0,a=a+Math.imul(k,$)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(M,Q)|0,a=a+Math.imul(M,ee)|0,i=i+Math.imul(b,re)|0,n=n+Math.imul(b,ie)|0,n=n+Math.imul(v,re)|0,a=a+Math.imul(v,ie)|0,i=i+Math.imul(p,ae)|0,n=n+Math.imul(p,se)|0,n=n+Math.imul(m,ae)|0,a=a+Math.imul(m,se)|0,i=i+Math.imul(u,he)|0,n=n+Math.imul(u,le)|0,n=n+Math.imul(f,he)|0,a=a+Math.imul(f,le)|0;var Se=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(L,q),n=Math.imul(L,z),n=n+Math.imul(D,q)|0,a=Math.imul(D,z),i=i+Math.imul(P,G)|0,n=n+Math.imul(P,W)|0,n=n+Math.imul(O,G)|0,a=a+Math.imul(O,W)|0,i=i+Math.imul(T,V)|0,n=n+Math.imul(T,K)|0,n=n+Math.imul(R,V)|0,a=a+Math.imul(R,K)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,$)|0,n=n+Math.imul(C,Z)|0,a=a+Math.imul(C,$)|0,i=i+Math.imul(S,Q)|0,n=n+Math.imul(S,ee)|0,n=n+Math.imul(k,Q)|0,a=a+Math.imul(k,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(M,re)|0,a=a+Math.imul(M,ie)|0,i=i+Math.imul(b,ae)|0,n=n+Math.imul(b,se)|0,n=n+Math.imul(v,ae)|0,a=a+Math.imul(v,se)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,le)|0,n=n+Math.imul(m,he)|0,a=a+Math.imul(m,le)|0,i=i+Math.imul(u,ue)|0,n=n+Math.imul(u,fe)|0,n=n+Math.imul(f,ue)|0,a=a+Math.imul(f,fe)|0;var ke=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(B,q),n=Math.imul(B,z),n=n+Math.imul(U,q)|0,a=Math.imul(U,z),i=i+Math.imul(L,G)|0,n=n+Math.imul(L,W)|0,n=n+Math.imul(D,G)|0,a=a+Math.imul(D,W)|0,i=i+Math.imul(P,V)|0,n=n+Math.imul(P,K)|0,n=n+Math.imul(O,V)|0,a=a+Math.imul(O,K)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,$)|0,n=n+Math.imul(R,Z)|0,a=a+Math.imul(R,$)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(C,Q)|0,a=a+Math.imul(C,ee)|0,i=i+Math.imul(S,re)|0,n=n+Math.imul(S,ie)|0,n=n+Math.imul(k,re)|0,a=a+Math.imul(k,ie)|0,i=i+Math.imul(w,ae)|0,n=n+Math.imul(w,se)|0,n=n+Math.imul(M,ae)|0,a=a+Math.imul(M,se)|0,i=i+Math.imul(b,he)|0,n=n+Math.imul(b,le)|0,n=n+Math.imul(v,he)|0,a=a+Math.imul(v,le)|0,i=i+Math.imul(p,ue)|0,n=n+Math.imul(p,fe)|0,n=n+Math.imul(m,ue)|0,a=a+Math.imul(m,fe)|0,i=i+Math.imul(u,pe)|0,n=n+Math.imul(u,me)|0,n=n+Math.imul(f,pe)|0,a=a+Math.imul(f,me)|0;var Ae=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(B,G),n=Math.imul(B,W),n=n+Math.imul(U,G)|0,a=Math.imul(U,W),i=i+Math.imul(L,V)|0,n=n+Math.imul(L,K)|0,n=n+Math.imul(D,V)|0,a=a+Math.imul(D,K)|0,i=i+Math.imul(P,Z)|0,n=n+Math.imul(P,$)|0,n=n+Math.imul(O,Z)|0,a=a+Math.imul(O,$)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(R,Q)|0,a=a+Math.imul(R,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(C,re)|0,a=a+Math.imul(C,ie)|0,i=i+Math.imul(S,ae)|0,n=n+Math.imul(S,se)|0,n=n+Math.imul(k,ae)|0,a=a+Math.imul(k,se)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,le)|0,n=n+Math.imul(M,he)|0,a=a+Math.imul(M,le)|0,i=i+Math.imul(b,ue)|0,n=n+Math.imul(b,fe)|0,n=n+Math.imul(v,ue)|0,a=a+Math.imul(v,fe)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,a=a+Math.imul(m,me)|0;var xe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(B,V),n=Math.imul(B,K),n=n+Math.imul(U,V)|0,a=Math.imul(U,K),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,$)|0,n=n+Math.imul(D,Z)|0,a=a+Math.imul(D,$)|0,i=i+Math.imul(P,Q)|0,n=n+Math.imul(P,ee)|0,n=n+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(R,re)|0,a=a+Math.imul(R,ie)|0,i=i+Math.imul(x,ae)|0,n=n+Math.imul(x,se)|0,n=n+Math.imul(C,ae)|0,a=a+Math.imul(C,se)|0,i=i+Math.imul(S,he)|0,n=n+Math.imul(S,le)|0,n=n+Math.imul(k,he)|0,a=a+Math.imul(k,le)|0,i=i+Math.imul(w,ue)|0,n=n+Math.imul(w,fe)|0,n=n+Math.imul(M,ue)|0,a=a+Math.imul(M,fe)|0,i=i+Math.imul(b,pe)|0,n=n+Math.imul(b,me)|0,n=n+Math.imul(v,pe)|0,a=a+Math.imul(v,me)|0;var Ce=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(B,Z),n=Math.imul(B,$),n=n+Math.imul(U,Z)|0,a=Math.imul(U,$),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(D,Q)|0,a=a+Math.imul(D,ee)|0,i=i+Math.imul(P,re)|0,n=n+Math.imul(P,ie)|0,n=n+Math.imul(O,re)|0,a=a+Math.imul(O,ie)|0,i=i+Math.imul(T,ae)|0,n=n+Math.imul(T,se)|0,n=n+Math.imul(R,ae)|0,a=a+Math.imul(R,se)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,le)|0,n=n+Math.imul(C,he)|0,a=a+Math.imul(C,le)|0,i=i+Math.imul(S,ue)|0,n=n+Math.imul(S,fe)|0,n=n+Math.imul(k,ue)|0,a=a+Math.imul(k,fe)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(M,pe)|0,a=a+Math.imul(M,me)|0;var Ee=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(B,Q),n=Math.imul(B,ee),n=n+Math.imul(U,Q)|0,a=Math.imul(U,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(D,re)|0,a=a+Math.imul(D,ie)|0,i=i+Math.imul(P,ae)|0,n=n+Math.imul(P,se)|0,n=n+Math.imul(O,ae)|0,a=a+Math.imul(O,se)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,le)|0,n=n+Math.imul(R,he)|0,a=a+Math.imul(R,le)|0,i=i+Math.imul(x,ue)|0,n=n+Math.imul(x,fe)|0,n=n+Math.imul(C,ue)|0,a=a+Math.imul(C,fe)|0,i=i+Math.imul(S,pe)|0,n=n+Math.imul(S,me)|0,n=n+Math.imul(k,pe)|0,a=a+Math.imul(k,me)|0;var Te=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(B,re),n=Math.imul(B,ie),n=n+Math.imul(U,re)|0,a=Math.imul(U,ie),i=i+Math.imul(L,ae)|0,n=n+Math.imul(L,se)|0,n=n+Math.imul(D,ae)|0,a=a+Math.imul(D,se)|0,i=i+Math.imul(P,he)|0,n=n+Math.imul(P,le)|0,n=n+Math.imul(O,he)|0,a=a+Math.imul(O,le)|0,i=i+Math.imul(T,ue)|0,n=n+Math.imul(T,fe)|0,n=n+Math.imul(R,ue)|0,a=a+Math.imul(R,fe)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(C,pe)|0,a=a+Math.imul(C,me)|0;var Re=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Re>>>26)|0,Re&=67108863,i=Math.imul(B,ae),n=Math.imul(B,se),n=n+Math.imul(U,ae)|0,a=Math.imul(U,se),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,le)|0,n=n+Math.imul(D,he)|0,a=a+Math.imul(D,le)|0,i=i+Math.imul(P,ue)|0,n=n+Math.imul(P,fe)|0,n=n+Math.imul(O,ue)|0,a=a+Math.imul(O,fe)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(R,pe)|0,a=a+Math.imul(R,me)|0;var Ie=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(B,he),n=Math.imul(B,le),n=n+Math.imul(U,he)|0,a=Math.imul(U,le),i=i+Math.imul(L,ue)|0,n=n+Math.imul(L,fe)|0,n=n+Math.imul(D,ue)|0,a=a+Math.imul(D,fe)|0,i=i+Math.imul(P,pe)|0,n=n+Math.imul(P,me)|0,n=n+Math.imul(O,pe)|0,a=a+Math.imul(O,me)|0;var Pe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(B,ue),n=Math.imul(B,fe),n=n+Math.imul(U,ue)|0,a=Math.imul(U,fe),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(D,pe)|0,a=a+Math.imul(D,me)|0;var Oe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(B,pe),n=Math.imul(B,me),n=n+Math.imul(U,pe)|0,a=Math.imul(U,me);var Fe=(l+i|0)+((8191&n)<<13)|0;return l=(a+(n>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,h[0]=ge,h[1]=be,h[2]=ve,h[3]=ye,h[4]=we,h[5]=Me,h[6]=_e,h[7]=Se,h[8]=ke,h[9]=Ae,h[10]=xe,h[11]=Ce,h[12]=Ee,h[13]=Te,h[14]=Re,h[15]=Ie,h[16]=Pe,h[17]=Oe,h[18]=Fe,0!==l&&(h[19]=l,r.length++),r};function g(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,a=0;a<r.length-1;a++){var s=n;n=0;for(var o=67108863&i,h=Math.min(a,t.length-1),l=Math.max(0,a-e.length+1);l<=h;l++){var c=a-l,u=0|e.words[c],f=0|t.words[l],d=u*f,p=67108863&d;s=s+(d/67108864|0)|0,p=p+o|0,o=67108863&p,s=s+(p>>>26)|0,n+=s>>>26,s&=67108863}r.words[a]=o,i=s,s=n}return 0!==i?r.words[a]=i:r.length--,r.strip()}function b(e,t,r){var i=new v;return i.mulp(e,t,r)}function v(e,t){this.x=e,this.y=t}Math.imul||(m=p),a.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?m(this,e,t):i<63?p(this,e,t):i<1024?g(this,e,t):b(this,e,t),r},v.prototype.makeRBT=function(e){for(var t=new Array(e),r=a.prototype._countBits(e)-1,i=0;i<e;i++)t[i]=this.revBin(i,r,e);return t},v.prototype.revBin=function(e,t,r){if(0===e||e===r-1)return e;for(var i=0,n=0;n<t;n++)i|=(1&e)<<t-n-1,e>>=1;return i},v.prototype.permute=function(e,t,r,i,n,a){for(var s=0;s<a;s++)i[s]=t[e[s]],n[s]=r[e[s]]},v.prototype.transform=function(e,t,r,i,n,a){this.permute(a,e,t,r,i,n);for(var s=1;s<n;s<<=1)for(var o=s<<1,h=Math.cos(2*Math.PI/o),l=Math.sin(2*Math.PI/o),c=0;c<n;c+=o)for(var u=h,f=l,d=0;d<s;d++){var p=r[c+d],m=i[c+d],g=r[c+d+s],b=i[c+d+s],v=u*g-f*b;b=u*b+f*g,g=v,r[c+d]=p+g,i[c+d]=m+b,r[c+d+s]=p-g,i[c+d+s]=m-b,d!==o&&(v=h*u-l*f,f=h*f+l*u,u=v)}},v.prototype.guessLen13b=function(e,t){var r=1|Math.max(t,e),i=1&r,n=0;for(r=r/2|0;r;r>>>=1)n++;return 1<<n+1+i},v.prototype.conjugate=function(e,t,r){if(!(r<=1))for(var i=0;i<r/2;i++){var n=e[i];e[i]=e[r-i-1],e[r-i-1]=n,n=t[i],t[i]=-t[r-i-1],t[r-i-1]=-n}},v.prototype.normalize13b=function(e,t){for(var r=0,i=0;i<t/2;i++){var n=8192*Math.round(e[2*i+1]/t)+Math.round(e[2*i]/t)+r;e[i]=67108863&n,r=n<67108864?0:n/67108864|0}return e},v.prototype.convert13b=function(e,t,r,n){for(var a=0,s=0;s<t;s++)a+=0|e[s],r[2*s]=8191&a,a>>>=13,r[2*s+1]=8191&a,a>>>=13;for(s=2*t;s<n;++s)r[s]=0;i(0===a),i(0===(-8192&a))},v.prototype.stub=function(e){for(var t=new Array(e),r=0;r<e;r++)t[r]=0;return t},v.prototype.mulp=function(e,t,r){var i=2*this.guessLen13b(e.length,t.length),n=this.makeRBT(i),a=this.stub(i),s=new Array(i),o=new Array(i),h=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),f=r.words;f.length=i,this.convert13b(e.words,e.length,s,i),this.convert13b(t.words,t.length,l,i),this.transform(s,a,o,h,i,n),this.transform(l,a,c,u,i,n);for(var d=0;d<i;d++){var p=o[d]*c[d]-h[d]*u[d];h[d]=o[d]*u[d]+h[d]*c[d],o[d]=p}return this.conjugate(o,h,i),this.transform(o,h,f,a,i,n),this.conjugate(f,a,i),this.normalize13b(f,i),r.negative=e.negative^t.negative,r.length=e.length+t.length,r.strip()},a.prototype.mul=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),this.mulTo(e,t)},a.prototype.mulf=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),b(this,e,t)},a.prototype.imul=function(e){return this.clone().mulTo(e,this)},a.prototype.imuln=function(e){i("number"===typeof e),i(e<67108864);for(var t=0,r=0;r<this.length;r++){var n=(0|this.words[r])*e,a=(67108863&n)+(67108863&t);t>>=26,t+=n/67108864|0,t+=a>>>26,this.words[r]=67108863&a}return 0!==t&&(this.words[r]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=d(e);if(0===t.length)return new a(1);for(var r=this,i=0;i<t.length;i++,r=r.sqr())if(0!==t[i])break;if(++i<t.length)for(var n=r.sqr();i<t.length;i++,n=n.sqr())0!==t[i]&&(r=r.mul(n));return r},a.prototype.iushln=function(e){i("number"===typeof e&&e>=0);var t,r=e%26,n=(e-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var s=0;for(t=0;t<this.length;t++){var o=this.words[t]&a,h=(0|this.words[t])-o<<r;this.words[t]=h|s,s=o>>>26-r}s&&(this.words[t]=s,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t<n;t++)this.words[t]=0;this.length+=n}return this.strip()},a.prototype.ishln=function(e){return i(0===this.negative),this.iushln(e)},a.prototype.iushrn=function(e,t,r){var n;i("number"===typeof e&&e>=0),n=t?(t-t%26)/26:0;var a=e%26,s=Math.min((e-a)/26,this.length),o=67108863^67108863>>>a<<a,h=r;if(n-=s,n=Math.max(0,n),h){for(var l=0;l<s;l++)h.words[l]=this.words[l];h.length=s}if(0===s);else if(this.length>s)for(this.length-=s,l=0;l<this.length;l++)this.words[l]=this.words[l+s];else this.words[0]=0,this.length=1;var c=0;for(l=this.length-1;l>=0&&(0!==c||l>=n);l--){var u=0|this.words[l];this.words[l]=c<<26-a|u>>>a,c=u&o}return h&&0!==c&&(h.words[h.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return!1;var a=this.words[r];return!!(a&n)},a.prototype.imaskn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<<t;this.words[this.length-1]&=n}return this.strip()},a.prototype.maskn=function(e){return this.clone().imaskn(e)},a.prototype.iaddn=function(e){return i("number"===typeof e),i(e<67108864),e<0?this.isubn(-e):0!==this.negative?1===this.length&&(0|this.words[0])<e?(this.words[0]=e-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(e),this.negative=1,this):this._iaddn(e)},a.prototype._iaddn=function(e){this.words[0]+=e;for(var t=0;t<this.length&&this.words[t]>=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t<this.length&&this.words[t]<0;t++)this.words[t]+=67108864,this.words[t+1]-=1;return this.strip()},a.prototype.addn=function(e){return this.clone().iaddn(e)},a.prototype.subn=function(e){return this.clone().isubn(e)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(e,t,r){var n,a,s=e.length+r;this._expand(s);var o=0;for(n=0;n<e.length;n++){a=(0|this.words[n+r])+o;var h=(0|e.words[n])*t;a-=67108863&h,o=(a>>26)-(h/67108864|0),this.words[n+r]=67108863&a}for(;n<this.length-r;n++)a=(0|this.words[n+r])+o,o=a>>26,this.words[n+r]=67108863&a;if(0===o)return this.strip();for(i(-1===o),o=0,n=0;n<this.length;n++)a=-(0|this.words[n])+o,o=a>>26,this.words[n]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,s=0|n.words[n.length-1],o=this._countBits(s);r=26-o,0!==r&&(n=n.ushln(r),i.iushln(r),s=0|n.words[n.length-1]);var h,l=i.length-n.length;if("mod"!==t){h=new a(null),h.length=l+1,h.words=new Array(h.length);for(var c=0;c<h.length;c++)h.words[c]=0}var u=i.clone()._ishlnsubmul(n,1,l);0===u.negative&&(i=u,h&&(h.words[l]=1));for(var f=l-1;f>=0;f--){var d=67108864*(0|i.words[n.length+f])+(0|i.words[n.length+f-1]);d=Math.min(d/s|0,67108863),i._ishlnsubmul(n,d,f);while(0!==i.negative)d--,i.negative=0,i._ishlnsubmul(n,1,f),i.isZero()||(i.negative^=1);h&&(h.words[f]=d)}return h&&h.strip(),i.strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:h||null,mod:i}},a.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(o=this.neg().divmod(e,t),"mod"!==t&&(n=o.div.neg()),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.iadd(e)),{div:n,mod:s}):0===this.negative&&0!==e.negative?(o=this.divmod(e.neg(),t),"mod"!==t&&(n=o.div.neg()),{div:n,mod:o.mod}):0!==(this.negative&e.negative)?(o=this.neg().divmod(e.neg(),t),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.isub(e)),{div:o.div,mod:s}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var n,s,o},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),a=r.cmp(i);return a<0||1===n&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){i(e<=67108863);for(var t=(1<<26)%e,r=0,n=this.length-1;n>=0;n--)r=(t*r+(0|this.words[n]))%e;return r},a.prototype.idivn=function(e){i(e<=67108863);for(var t=0,r=this.length-1;r>=0;r--){var n=(0|this.words[r])+67108864*t;this.words[r]=n/e|0,t=n%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new a(1),s=new a(0),o=new a(0),h=new a(1),l=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++l;var c=r.clone(),u=t.clone();while(!t.isZero()){for(var f=0,d=1;0===(t.words[0]&d)&&f<26;++f,d<<=1);if(f>0){t.iushrn(f);while(f-- >0)(n.isOdd()||s.isOdd())&&(n.iadd(c),s.isub(u)),n.iushrn(1),s.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(o.isOdd()||h.isOdd())&&(o.iadd(c),h.isub(u)),o.iushrn(1),h.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(o),s.isub(h)):(r.isub(t),o.isub(n),h.isub(s))}return{a:o,b:h,gcd:r.iushln(l)}},a.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,s=new a(1),o=new a(0),h=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var l=0,c=1;0===(t.words[0]&c)&&l<26;++l,c<<=1);if(l>0){t.iushrn(l);while(l-- >0)s.isOdd()&&s.iadd(h),s.iushrn(1)}for(var u=0,f=1;0===(r.words[0]&f)&&u<26;++u,f<<=1);if(u>0){r.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(h),o.iushrn(1)}t.cmp(r)>=0?(t.isub(r),s.isub(o)):(r.isub(t),o.isub(s))}return n=0===t.cmpn(1)?s:o,n.cmpn(0)<0&&n.iadd(e),n},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var a=t;t=r,r=a}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return this._expand(r+1),this.words[r]|=n,this;for(var a=n,s=r;0!==a&&s<this.length;s++){var o=0|this.words[s];o+=a,a=o>>>26,o&=67108863,this.words[s]=o}return 0!==a&&(this.words[s]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:n<e?-1:1}return 0!==this.negative?0|-t:t},a.prototype.cmp=function(e){if(0!==this.negative&&0===e.negative)return-1;if(0===this.negative&&0!==e.negative)return 1;var t=this.ucmp(e);return 0!==this.negative?0|-t:t},a.prototype.ucmp=function(e){if(this.length>e.length)return 1;if(this.length<e.length)return-1;for(var t=0,r=this.length-1;r>=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){i<n?t=-1:i>n&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new A(e)},a.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var y={k256:null,p224:null,p192:null,p25519:null};function w(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function M(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function _(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function S(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function k(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function A(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){A.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}w.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},w.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t<this.n?-1:r.ucmp(this.p);return 0===i?(r.words[0]=0,r.length=1):i>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(e,t){e.iushrn(this.n,0,t)},w.prototype.imulK=function(e){return e.imul(this.k)},n(M,w),M.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n<i;n++)t.words[n]=e.words[n];if(t.length=i,e.length<=9)return e.words[0]=0,void(e.length=1);var a=e.words[9];for(t.words[t.length++]=a&r,n=10;n<e.length;n++){var s=0|e.words[n];e.words[n-10]=(s&r)<<4|a>>>22,a=s}a>>>=22,e.words[n-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},M.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r<e.length;r++){var i=0|e.words[r];t+=977*i,e.words[r]=67108863&t,t=64*i+(t/67108864|0)}return 0===e.words[e.length-1]&&(e.length--,0===e.words[e.length-1]&&e.length--),e},n(_,w),n(S,w),n(k,w),k.prototype.imulK=function(e){for(var t=0,r=0;r<e.length;r++){var i=19*(0|e.words[r])+t,n=67108863&i;i>>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(y[e])return y[e];var t;if("k256"===e)t=new M;else if("p224"===e)t=new _;else if("p192"===e)t=new S;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new k}return y[e]=t,t},A.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},A.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},A.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},A.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},A.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},A.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},A.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},A.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},A.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},A.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},A.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},A.prototype.isqr=function(e){return this.imul(e,e.clone())},A.prototype.sqr=function(e){return this.mul(e,e)},A.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new a(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),s=0;while(!n.isZero()&&0===n.andln(1))s++,n.iushrn(1);i(!n.isZero());var o=new a(1).toRed(this),h=o.redNeg(),l=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new a(2*c*c).toRed(this);while(0!==this.pow(c,l).cmp(h))c.redIAdd(h);var u=this.pow(c,n),f=this.pow(e,n.addn(1).iushrn(1)),d=this.pow(e,n),p=s;while(0!==d.cmp(o)){for(var m=d,g=0;0!==m.cmp(o);g++)m=m.redSqr();i(g<p);var b=this.pow(u,new a(1).iushln(p-g-1));f=f.redMul(b),u=b.redSqr(),d=d.redMul(u),p=g}return f},A.prototype.invm=function(e){var t=e._invmp(this.m);return 0!==t.negative?(t.negative=0,this.imod(t).redNeg()):this.imod(t)},A.prototype.pow=function(e,t){if(t.isZero())return new a(1).toRed(this);if(0===t.cmpn(1))return e.clone();var r=4,i=new Array(1<<r);i[0]=new a(1).toRed(this),i[1]=e;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],e);var s=i[0],o=0,h=0,l=t.bitLength()%26;for(0===l&&(l=26),n=t.length-1;n>=0;n--){for(var c=t.words[n],u=l-1;u>=0;u--){var f=c>>u&1;s!==i[0]&&(s=this.sqr(s)),0!==f||0!==o?(o<<=1,o|=f,h++,(h===r||0===n&&0===u)&&(s=this.mul(s,i[o]),h=0,o=0)):h=0}l=26}return s},A.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},A.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new x(e)},n(x,A),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),a=n;return n.cmp(this.m)>=0?a=n.isub(this.m):n.cmpn(0)<0&&(a=n.iadd(this.m)),a._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},x.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}})(e,this)}).call(this,r("62e4")(e))},"0145":function(e,t){t.encrypt=function(e,t){return e._cipher.encryptBlock(t)},t.decrypt=function(e,t){return e._cipher.decryptBlock(t)}},"0184":function(e,t,r){"use strict";var i=r("da3e");function n(e){this.options=e,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0}e.exports=n,n.prototype._init=function(){},n.prototype.update=function(e){return 0===e.length?[]:"decrypt"===this.type?this._updateDecrypt(e):this._updateEncrypt(e)},n.prototype._buffer=function(e,t){for(var r=Math.min(this.buffer.length-this.bufferOff,e.length-t),i=0;i<r;i++)this.buffer[this.bufferOff+i]=e[t+i];return this.bufferOff+=r,r},n.prototype._flushBuffer=function(e,t){return this._update(this.buffer,0,e,t),this.bufferOff=0,this.blockSize},n.prototype._updateEncrypt=function(e){var t=0,r=0,i=(this.bufferOff+e.length)/this.blockSize|0,n=new Array(i*this.blockSize);0!==this.bufferOff&&(t+=this._buffer(e,t),this.bufferOff===this.buffer.length&&(r+=this._flushBuffer(n,r)));for(var a=e.length-(e.length-t)%this.blockSize;t<a;t+=this.blockSize)this._update(e,t,n,r),r+=this.blockSize;for(;t<e.length;t++,this.bufferOff++)this.buffer[this.bufferOff]=e[t];return n},n.prototype._updateDecrypt=function(e){for(var t=0,r=0,i=Math.ceil((this.bufferOff+e.length)/this.blockSize)-1,n=new Array(i*this.blockSize);i>0;i--)t+=this._buffer(e,t),r+=this._flushBuffer(n,r);return t+=this._buffer(e,t),n},n.prototype.final=function(e){var t,r;return e&&(t=this.update(e)),r="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),t?t.concat(r):r},n.prototype._pad=function(e,t){if(0===t)return!1;while(t<e.length)e[t++]=0;return!0},n.prototype._finalEncrypt=function(){if(!this._pad(this.buffer,this.bufferOff))return[];var e=new Array(this.blockSize);return this._update(this.buffer,0,e,0),e},n.prototype._unpad=function(e){return e},n.prototype._finalDecrypt=function(){i.equal(this.bufferOff,this.blockSize,"Not enough data to decrypt");var e=new Array(this.blockSize);return this._flushBuffer(e,0),this._unpad(e)}},"01b0":function(e,t,r){"use strict";r.r(t),function(e,t,i){r("55dd"),r("f3e2"),r("6c7b"),r("96cf");var n=r("1da1"),a=(r("6aa2"),r("2397"),r("df1b"),r("ba16"),r("9253"),r("d185"),r("78ce"),r("262f"),r("34ef"),r("5df3"),r("f400"),r("d4ec")),s=r("bee2"),o=r("3835"),h=(r("9865"),r("ac6a"),r("456d"),r("53ca"));(function(){if("undefined"!==typeof e);else if("undefined"!==typeof window)window.global=window;else{if("undefined"===typeof self)throw new Error("cannot export Go (neither global, window nor self is defined)");self.global=self}if(e.require||(e.require=r("1fd5")),!e.fs&&e.require){var l=r("3e8f");"object"===Object(h["a"])(l)&&null!==l&&0!==Object.keys(l).length&&(e.fs=l)}var c=function(){var e=new Error("not implemented");return e.code="ENOSYS",e};if(!e.fs){var u="";e.fs={constants:{O_WRONLY:-1,O_RDWR:-1,O_CREAT:-1,O_TRUNC:-1,O_APPEND:-1,O_EXCL:-1},writeSync:function(e,t){u+=p.decode(t);var r=u.lastIndexOf("\n");return-1!=r&&(console.log(u.substr(0,r)),u=u.substr(r+1)),t.length},write:function(e,t,r,i,n,a){if(0===r&&i===t.length&&null===n){var s=this.writeSync(e,t);a(null,s)}else a(c())},chmod:function(e,t,r){r(c())},chown:function(e,t,r,i){i(c())},close:function(e,t){t(c())},fchmod:function(e,t,r){r(c())},fchown:function(e,t,r,i){i(c())},fstat:function(e,t){t(c())},fsync:function(e,t){t(null)},ftruncate:function(e,t,r){r(c())},lchown:function(e,t,r,i){i(c())},link:function(e,t,r){r(c())},lstat:function(e,t){t(c())},mkdir:function(e,t,r){r(c())},open:function(e,t,r,i){i(c())},read:function(e,t,r,i,n,a){a(c())},readdir:function(e,t){t(c())},readlink:function(e,t){t(c())},rename:function(e,t,r){r(c())},rmdir:function(e,t){t(c())},stat:function(e,t){t(c())},symlink:function(e,t,r){r(c())},truncate:function(e,t,r){r(c())},unlink:function(e,t){t(c())},utimes:function(e,t,r,i){i(c())}}}if(e.process||(e.process={getuid:function(){return-1},getgid:function(){return-1},geteuid:function(){return-1},getegid:function(){return-1},getgroups:function(){throw c()},pid:-1,ppid:-1,umask:function(){throw c()},cwd:function(){throw c()},chdir:function(){throw c()}}),!e.crypto&&e.require){var f=r("1c46");e.crypto={getRandomValues:function(e){f.randomFillSync(e)}}}if(!e.crypto)throw new Error("global.crypto is not available, polyfill required (getRandomValues only)");if(e.performance||(e.performance={now:function(){var e=t.hrtime(),r=Object(o["a"])(e,2),i=r[0],n=r[1];return 1e3*i+n/1e6}}),!e.TextEncoder&&e.require&&(e.TextEncoder=r("eed9").TextEncoder),!e.TextEncoder)throw new Error("global.TextEncoder is not available, polyfill required");if(!e.TextDecoder&&e.require&&(e.TextDecoder=r("eed9").TextDecoder),!e.TextDecoder)throw new Error("global.TextDecoder is not available, polyfill required");var d=new TextEncoder("utf-8"),p=new TextDecoder("utf-8");if(e.Go=function(){function t(){var e=this;Object(a["a"])(this,t),this.argv=["js"],this.env={},this.exit=function(e){0!==e&&console.warn("exit code:",e)},this._exitPromise=new Promise((function(t){e._resolveExitPromise=t})),this._pendingEvent=null,this._scheduledTimeouts=new Map,this._nextCallbackTimeoutID=1;var r=function(t,r){e.mem.setUint32(t+0,r,!0),e.mem.setUint32(t+4,Math.floor(r/4294967296),!0)},i=function(t){var r=e.mem.getUint32(t+0,!0),i=e.mem.getInt32(t+4,!0);return r+4294967296*i},n=function(t){var r=e.mem.getFloat64(t,!0);if(0!==r){if(!isNaN(r))return r;var i=e.mem.getUint32(t,!0);return e._values[i]}},s=function(t,r){var i=2146959360;if("number"===typeof r&&0!==r)return isNaN(r)?(e.mem.setUint32(t+4,i,!0),void e.mem.setUint32(t,0,!0)):void e.mem.setFloat64(t,r,!0);if(void 0!==r){var n=e._ids.get(r);void 0===n&&(n=e._idPool.pop(),void 0===n&&(n=e._values.length),e._values[n]=r,e._goRefCounts[n]=0,e._ids.set(r,n)),e._goRefCounts[n]++;var a=0;switch(Object(h["a"])(r)){case"object":null!==r&&(a=1);break;case"string":a=2;break;case"symbol":a=3;break;case"function":a=4;break}e.mem.setUint32(t+4,i|a,!0),e.mem.setUint32(t,n,!0)}else e.mem.setFloat64(t,0,!0)},o=function(t){var r=i(t+0),n=i(t+8);return new Uint8Array(e._inst.exports.mem.buffer,r,n)},l=function(e){for(var t=i(e+0),r=i(e+8),a=new Array(r),s=0;s<r;s++)a[s]=n(t+8*s);return a},c=function(t){var r=i(t+0),n=i(t+8);return p.decode(new DataView(e._inst.exports.mem.buffer,r,n))},u=Date.now()-performance.now();this.importObject={go:{"runtime.wasmExit":function(t){t>>>=0;var r=e.mem.getInt32(t+8,!0);e.exited=!0,delete e._inst,delete e._values,delete e._goRefCounts,delete e._ids,delete e._idPool,e.exit(r)},"runtime.wasmWrite":function(t){t>>>=0;var r=i(t+8),n=i(t+16),a=e.mem.getInt32(t+24,!0);fs.writeSync(r,new Uint8Array(e._inst.exports.mem.buffer,n,a))},"runtime.resetMemoryDataView":function(t){e.mem=new DataView(e._inst.exports.mem.buffer)},"runtime.nanotime1":function(e){e>>>=0,r(e+8,1e6*(u+performance.now()))},"runtime.walltime":function(t){t>>>=0;var i=(new Date).getTime();r(t+8,i/1e3),e.mem.setInt32(t+16,i%1e3*1e6,!0)},"runtime.scheduleTimeoutEvent":function(t){t>>>=0;var r=e._nextCallbackTimeoutID;e._nextCallbackTimeoutID++,e._scheduledTimeouts.set(r,setTimeout((function(){e._resume();while(e._scheduledTimeouts.has(r))console.warn("scheduleTimeoutEvent: missed timeout event"),e._resume()}),i(t+8)+1)),e.mem.setInt32(t+16,r,!0)},"runtime.clearTimeoutEvent":function(t){t>>>=0;var r=e.mem.getInt32(t+8,!0);clearTimeout(e._scheduledTimeouts.get(r)),e._scheduledTimeouts.delete(r)},"runtime.getRandomData":function(e){e>>>=0,crypto.getRandomValues(o(e+8))},"syscall/js.finalizeRef":function(t){t>>>=0;var r=e.mem.getUint32(t+8,!0);if(e._goRefCounts[r]--,0===e._goRefCounts[r]){var i=e._values[r];e._values[r]=null,e._ids.delete(i),e._idPool.push(r)}},"syscall/js.stringVal":function(e){e>>>=0,s(e+24,c(e+8))},"syscall/js.valueGet":function(t){t>>>=0;var r=Reflect.get(n(t+8),c(t+16));t=e._inst.exports.getsp()>>>0,s(t+32,r)},"syscall/js.valueSet":function(e){e>>>=0,Reflect.set(n(e+8),c(e+16),n(e+32))},"syscall/js.valueDelete":function(e){e>>>=0,Reflect.deleteProperty(n(e+8),c(e+16))},"syscall/js.valueIndex":function(e){e>>>=0,s(e+24,Reflect.get(n(e+8),i(e+16)))},"syscall/js.valueSetIndex":function(e){e>>>=0,Reflect.set(n(e+8),i(e+16),n(e+24))},"syscall/js.valueCall":function(t){t>>>=0;try{var r=n(t+8),i=Reflect.get(r,c(t+16)),a=l(t+32),o=Reflect.apply(i,r,a);t=e._inst.exports.getsp()>>>0,s(t+56,o),e.mem.setUint8(t+64,1)}catch(h){t=e._inst.exports.getsp()>>>0,s(t+56,h),e.mem.setUint8(t+64,0)}},"syscall/js.valueInvoke":function(t){t>>>=0;try{var r=n(t+8),i=l(t+16),a=Reflect.apply(r,void 0,i);t=e._inst.exports.getsp()>>>0,s(t+40,a),e.mem.setUint8(t+48,1)}catch(o){t=e._inst.exports.getsp()>>>0,s(t+40,o),e.mem.setUint8(t+48,0)}},"syscall/js.valueNew":function(t){t>>>=0;try{var r=n(t+8),i=l(t+16),a=Reflect.construct(r,i);t=e._inst.exports.getsp()>>>0,s(t+40,a),e.mem.setUint8(t+48,1)}catch(o){t=e._inst.exports.getsp()>>>0,s(t+40,o),e.mem.setUint8(t+48,0)}},"syscall/js.valueLength":function(e){e>>>=0,r(e+16,parseInt(n(e+8).length))},"syscall/js.valuePrepareString":function(e){e>>>=0;var t=d.encode(String(n(e+8)));s(e+16,t),r(e+24,t.length)},"syscall/js.valueLoadString":function(e){e>>>=0;var t=n(e+8);o(e+16).set(t)},"syscall/js.valueInstanceOf":function(t){t>>>=0,e.mem.setUint8(t+24,n(t+8)instanceof n(t+16)?1:0)},"syscall/js.copyBytesToGo":function(t){t>>>=0;var i=o(t+8),a=n(t+32);if(a instanceof Uint8Array||a instanceof Uint8ClampedArray){var s=a.subarray(0,i.length);i.set(s),r(t+40,s.length),e.mem.setUint8(t+48,1)}else e.mem.setUint8(t+48,0)},"syscall/js.copyBytesToJS":function(t){t>>>=0;var i=n(t+8),a=o(t+16);if(i instanceof Uint8Array||i instanceof Uint8ClampedArray){var s=a.subarray(0,i.length);i.set(s),r(t+40,s.length),e.mem.setUint8(t+48,1)}else e.mem.setUint8(t+48,0)},debug:function(e){console.log(e)}}}}return Object(s["a"])(t,[{key:"run",value:function(){var t=Object(n["a"])(regeneratorRuntime.mark((function t(r){var i,n,a,s,o,h,l,c=this;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(r instanceof WebAssembly.Instance){t.next=2;break}throw new Error("Go.run: WebAssembly.Instance expected");case 2:if(this._inst=r,this.mem=new DataView(this._inst.exports.mem.buffer),this._values=[NaN,0,null,!0,!1,e,this],this._goRefCounts=new Array(this._values.length).fill(1/0),this._ids=new Map([[0,1],[null,2],[!0,3],[!1,4],[e,5],[this,6]]),this._idPool=[],this.exited=!1,i=4096,n=function(e){var t=i,r=d.encode(e+"\0");return new Uint8Array(c.mem.buffer,i,r.length).set(r),i+=r.length,i%8!==0&&(i+=8-i%8),t},a=this.argv.length,s=[],this.argv.forEach((function(e){s.push(n(e))})),s.push(0),o=Object.keys(this.env).sort(),o.forEach((function(e){s.push(n("".concat(e,"=").concat(c.env[e])))})),s.push(0),h=i,s.forEach((function(e){c.mem.setUint32(i,e,!0),c.mem.setUint32(i+4,0,!0),i+=8})),l=12288,!(i>=l)){t.next=23;break}throw new Error("total length of command line and environment variables exceeds limit");case 23:return this._inst.exports.run(a,h),this.exited&&this._resolveExitPromise(),t.next=27,this._exitPromise;case 27:case"end":return t.stop()}}),t,this)})));function r(e){return t.apply(this,arguments)}return r}()},{key:"_resume",value:function(){if(this.exited)throw new Error("Go program has already exited");this._inst.exports.resume(),this.exited&&this._resolveExitPromise()}},{key:"_makeFuncWrapper",value:function(e){var t=this;return function(){var r={id:e,this:this,args:arguments};return t._pendingEvent=r,t._resume(),r.result}}}]),t}(),e.require&&e.require.main===i&&e.process&&e.process.versions&&!e.process.versions.electron){t.argv.length<3&&(console.error("usage: go_js_wasm_exec [wasm binary] [arguments]"),t.exit(1));var m=new Go;m.argv=t.argv.slice(2),m.env=Object.assign({TMPDIR:r("3c43").tmpdir()},Object({NODE_ENV:"production",BASE_URL:""})),m.exit=t.exit,WebAssembly.instantiate(fs.readFileSync(t.argv[2]),m.importObject).then((function(e){return t.on("exit",(function(e){0!==e||m.exited||(m._pendingEvent={id:0},m._resume())})),m.run(e.instance)})).catch((function(e){console.error(e),t.exit(1)}))}})()}.call(this,r("c8ba"),r("f28c"),r("dd40")(e))},"0211":function(e,t,r){"use strict";const i=t;i._reverse=function(e){const t={};return Object.keys(e).forEach((function(r){(0|r)==r&&(r|=0);const i=e[r];t[i]=r})),t},i.der=r("8b71")},"0507":function(e,t,r){("undefined"!==typeof window?window:{}).pdfjsWorker=r("55db")},"05f0":function(e,t,r){"use strict";var i=r("d113").codes.ERR_INVALID_OPT_VALUE;function n(e,t,r){return null!=e.highWaterMark?e.highWaterMark:t?e[r]:null}function a(e,t,r,a){var s=n(t,a,r);if(null!=s){if(!isFinite(s)||Math.floor(s)!==s||s<0){var o=a?r:"highWaterMark";throw new i(o,s)}return Math.floor(s)}return e.objectMode?16:16384}e.exports={getHighWaterMark:a}},"0632":function(e,t,r){
  2. /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
  3. var i=r("b639"),n=i.Buffer;function a(e,t){for(var r in e)t[r]=e[r]}function s(e,t,r){return n(e,t,r)}n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow?e.exports=i:(a(i,t),t.Buffer=s),s.prototype=Object.create(n.prototype),a(n,s),s.from=function(e,t,r){if("number"===typeof e)throw new TypeError("Argument must not be a number");return n(e,t,r)},s.alloc=function(e,t,r){if("number"!==typeof e)throw new TypeError("Argument must be a number");var i=n(e);return void 0!==t?"string"===typeof r?i.fill(t,r):i.fill(t):i.fill(0),i},s.allocUnsafe=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return n(e)},s.allocUnsafeSlow=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return i.SlowBuffer(e)}},"07f2":function(e,t,r){"use strict";var i=r("c3c0"),n=r("6eed8");function a(){if(!(this instanceof a))return new a;n.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}i.inherits(a,n),e.exports=a,a.blockSize=512,a.outSize=224,a.hmacStrength=192,a.padLength=64,a.prototype._digest=function(e){return"hex"===e?i.toHex32(this.h.slice(0,7),"big"):i.split32(this.h.slice(0,7),"big")}},"087f":function(e,t,r){var i=r("3fb5"),n=r("b672"),a=r("8707").Buffer,s=[1518500249,1859775393,-1894007588,-899497514],o=new Array(80);function h(){this.init(),this._w=o,n.call(this,64,56)}function l(e){return e<<5|e>>>27}function c(e){return e<<30|e>>>2}function u(e,t,r,i){return 0===e?t&r|~t&i:2===e?t&r|t&i|r&i:t^r^i}i(h,n),h.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},h.prototype._update=function(e){for(var t=this._w,r=0|this._a,i=0|this._b,n=0|this._c,a=0|this._d,o=0|this._e,h=0;h<16;++h)t[h]=e.readInt32BE(4*h);for(;h<80;++h)t[h]=t[h-3]^t[h-8]^t[h-14]^t[h-16];for(var f=0;f<80;++f){var d=~~(f/20),p=l(r)+u(d,i,n,a)+o+t[f]+s[d]|0;o=a,a=n,n=c(i),i=r,r=p}this._a=r+this._a|0,this._b=i+this._b|0,this._c=n+this._c|0,this._d=a+this._d|0,this._e=o+this._e|0},h.prototype._hash=function(){var e=a.allocUnsafe(20);return e.writeInt32BE(0|this._a,0),e.writeInt32BE(0|this._b,4),e.writeInt32BE(0|this._c,8),e.writeInt32BE(0|this._d,12),e.writeInt32BE(0|this._e,16),e},e.exports=h},"0960":function(e,t,r){e.exports=r("b19a")},"09dc":function(e,t,r){"use strict";e.exports=c;var i=r("9d8a").codes,n=i.ERR_METHOD_NOT_IMPLEMENTED,a=i.ERR_MULTIPLE_CALLBACK,s=i.ERR_TRANSFORM_ALREADY_TRANSFORMING,o=i.ERR_TRANSFORM_WITH_LENGTH_0,h=r("e666");function l(e,t){var r=this._transformState;r.transforming=!1;var i=r.writecb;if(null===i)return this.emit("error",new a);r.writechunk=null,r.writecb=null,null!=t&&this.push(t),i(e);var n=this._readableState;n.reading=!1,(n.needReadable||n.length<n.highWaterMark)&&this._read(n.highWaterMark)}function c(e){if(!(this instanceof c))return new c(e);h.call(this,e),this._transformState={afterTransform:l.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,e&&("function"===typeof e.transform&&(this._transform=e.transform),"function"===typeof e.flush&&(this._flush=e.flush)),this.on("prefinish",u)}function u(){var e=this;"function"!==typeof this._flush||this._readableState.destroyed?f(this,null,null):this._flush((function(t,r){f(e,t,r)}))}function f(e,t,r){if(t)return e.emit("error",t);if(null!=r&&e.push(r),e._writableState.length)throw new o;if(e._transformState.transforming)throw new s;return e.push(null)}r("3fb5")(c,h),c.prototype.push=function(e,t){return this._transformState.needTransform=!1,h.prototype.push.call(this,e,t)},c.prototype._transform=function(e,t,r){r(new n("_transform()"))},c.prototype._write=function(e,t,r){var i=this._transformState;if(i.writecb=r,i.writechunk=e,i.writeencoding=t,!i.transforming){var n=this._readableState;(i.needTransform||n.needReadable||n.length<n.highWaterMark)&&this._read(n.highWaterMark)}},c.prototype._read=function(e){var t=this._transformState;null===t.writechunk||t.transforming?t.needTransform=!0:(t.transforming=!0,this._transform(t.writechunk,t.writeencoding,t.afterTransform))},c.prototype._destroy=function(e,t){h.prototype._destroy.call(this,e,(function(e){t(e)}))}},"09f5":function(e,t,r){var i=r("39f5b"),n=r("8707").Buffer,a=r("6430"),s=r("3fb5");function o(e,t,r,s){a.call(this),this._cipher=new i.AES(t),this._prev=n.from(r),this._cache=n.allocUnsafe(0),this._secCache=n.allocUnsafe(0),this._decrypt=s,this._mode=e}s(o,a),o.prototype._update=function(e){return this._mode.encrypt(this,e,this._decrypt)},o.prototype._final=function(){this._cipher.scrub()},e.exports=o},"09fa":function(e,t,r){var i=r("4588"),n=r("9def");e.exports=function(e){if(void 0===e)return 0;var t=i(e),r=n(t);if(t!==r)throw RangeError("Wrong length!");return r}},"0a70":function(e,t,r){},"0ae3":function(e,t,r){"use strict";e.exports=n;var i=r("09dc");function n(e){if(!(this instanceof n))return new n(e);i.call(this,e)}r("3fb5")(n,i),n.prototype._transform=function(e,t,r){r(null,e)}},"0be8":function(e,t){t["des-ecb"]={key:8,iv:0},t["des-cbc"]=t.des={key:8,iv:8},t["des-ede3-cbc"]=t.des3={key:24,iv:8},t["des-ede3"]={key:24,iv:0},t["des-ede-cbc"]={key:16,iv:8},t["des-ede"]={key:16,iv:0}},"0cbb":function(e,t,r){"use strict";var i,n=t,a=r("7d92"),s=r("4136"),o=r("f3a3"),h=o.assert;function l(e){"short"===e.type?this.curve=new s.short(e):"edwards"===e.type?this.curve=new s.edwards(e):this.curve=new s.mont(e),this.g=this.curve.g,this.n=this.curve.n,this.hash=e.hash,h(this.g.validate(),"Invalid curve"),h(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function c(e,t){Object.defineProperty(n,e,{configurable:!0,enumerable:!0,get:function(){var r=new l(t);return Object.defineProperty(n,e,{configurable:!0,enumerable:!0,value:r}),r}})}n.PresetCurve=l,c("p192",{type:"short",prime:"p192",p:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",a:"ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",b:"64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",n:"ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",hash:a.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),c("p224",{type:"short",prime:"p224",p:"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",a:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",b:"b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",n:"ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",hash:a.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),c("p256",{type:"short",prime:null,p:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",a:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",b:"5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",n:"ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",hash:a.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),c("p384",{type:"short",prime:null,p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",a:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",b:"b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",n:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",hash:a.sha384,gRed:!1,g:["aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7","3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"]}),c("p521",{type:"short",prime:null,p:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",a:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",b:"00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",n:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",hash:a.sha512,gRed:!1,g:["000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66","00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"]}),c("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:a.sha256,gRed:!1,g:["9"]}),c("ed25519",{type:"edwards",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"-1",c:"1",d:"52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:a.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{i=r("409b")}catch(u){i=void 0}c("secp256k1",{type:"short",prime:"k256",p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",a:"0",b:"7",n:"ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",h:"1",hash:a.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",i]})},"0da4":function(e,t,r){"use strict";var i=r("da3e"),n=r("3fb5"),a={};function s(e){i.equal(e.length,8,"Invalid IV length"),this.iv=new Array(8);for(var t=0;t<this.iv.length;t++)this.iv[t]=e[t]}function o(e){function t(t){e.call(this,t),this._cbcInit()}n(t,e);for(var r=Object.keys(a),i=0;i<r.length;i++){var s=r[i];t.prototype[s]=a[s]}return t.create=function(e){return new t(e)},t}t.instantiate=o,a._cbcInit=function(){var e=new s(this.options.iv);this._cbcState=e},a._update=function(e,t,r,i){var n=this._cbcState,a=this.constructor.super_.prototype,s=n.iv;if("encrypt"===this.type){for(var o=0;o<this.blockSize;o++)s[o]^=e[t+o];a._update.call(this,s,0,r,i);for(o=0;o<this.blockSize;o++)s[o]=r[i+o]}else{a._update.call(this,e,t,r,i);for(o=0;o<this.blockSize;o++)r[i+o]^=s[o];for(o=0;o<this.blockSize;o++)s[o]=e[t+o]}}},"0f2c":function(e,t,r){var i=r("2aee"),n=r("f460"),a=r("83d5"),s=r("0106"),o=r("a958"),h=r("98e6"),l=r("5291"),c=r("8707").Buffer;function u(e,t){var r=e.modulus.byteLength(),i=h("sha1").update(c.alloc(0)).digest(),s=i.length;if(0!==t[0])throw new Error("decryption error");var o=t.slice(1,s+1),l=t.slice(s+1),u=a(o,n(l,s)),f=a(l,n(u,r-s-1));if(d(i,f.slice(0,s)))throw new Error("decryption error");var p=s;while(0===f[p])p++;if(1!==f[p++])throw new Error("decryption error");return f.slice(p)}function f(e,t,r){var i=t.slice(0,2),n=2,a=0;while(0!==t[n++])if(n>=t.length){a++;break}var s=t.slice(2,n-1);if(("0002"!==i.toString("hex")&&!r||"0001"!==i.toString("hex")&&r)&&a++,s.length<8&&a++,a)throw new Error("decryption error");return t.slice(n)}function d(e,t){e=c.from(e),t=c.from(t);var r=0,i=e.length;e.length!==t.length&&(r++,i=Math.min(e.length,t.length));var n=-1;while(++n<i)r+=e[n]^t[n];return r}e.exports=function(e,t,r){var n;n=e.padding?e.padding:r?1:4;var a,h=i(e),d=h.modulus.byteLength();if(t.length>d||new s(t).cmp(h.modulus)>=0)throw new Error("decryption error");a=r?l(new s(t),h):o(t,h);var p=c.alloc(d-a.length);if(a=c.concat([p,a],d),4===n)return u(h,a);if(1===n)return f(h,a,r);if(3===n)return a;throw new Error("unknown padding")}},"0f88":function(e,t,r){var i,n=r("7726"),a=r("32e9"),s=r("ca5a"),o=s("typed_array"),h=s("view"),l=!(!n.ArrayBuffer||!n.DataView),c=l,u=0,f=9,d="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");while(u<f)(i=n[d[u++]])?(a(i.prototype,o,!0),a(i.prototype,h,!0)):c=!1;e.exports={ABV:l,CONSTR:c,TYPED:o,VIEW:h}},10:function(e,t){},11:function(e,t){},"116d":function(e,t,r){e.exports=r("b4e8")},"11dc":function(e,t,r){"use strict";(function(t,i){var n=65536,a=4294967295;function s(){throw new Error("Secure random number generation is not supported by this browser.\nUse Chrome, Firefox or Internet Explorer 11")}var o=r("8707").Buffer,h=t.crypto||t.msCrypto;function l(e,t){if(e>a)throw new RangeError("requested too many random bytes");var r=o.allocUnsafe(e);if(e>0)if(e>n)for(var s=0;s<e;s+=n)h.getRandomValues(r.slice(s,s+n));else h.getRandomValues(r);return"function"===typeof t?i.nextTick((function(){t(null,r)})):r}h&&h.getRandomValues?e.exports=l:e.exports=s}).call(this,r("c8ba"),r("f28c"))},12:function(e,t){},13:function(e,t){},"13e2":function(e,t,r){"use strict";var i=r("c3c0"),n=r("edc9"),a=r("aa56"),s=i.rotl32,o=i.sum32,h=i.sum32_5,l=a.ft_1,c=n.BlockHash,u=[1518500249,1859775393,2400959708,3395469782];function f(){if(!(this instanceof f))return new f;c.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}i.inherits(f,c),e.exports=f,f.blockSize=512,f.outSize=160,f.hmacStrength=80,f.padLength=64,f.prototype._update=function(e,t){for(var r=this.W,i=0;i<16;i++)r[i]=e[t+i];for(;i<r.length;i++)r[i]=s(r[i-3]^r[i-8]^r[i-14]^r[i-16],1);var n=this.h[0],a=this.h[1],c=this.h[2],f=this.h[3],d=this.h[4];for(i=0;i<r.length;i++){var p=~~(i/20),m=h(s(n,5),l(p,a,c,f),d,r[i],u[p]);d=f,f=c,c=s(a,30),a=n,n=m}this.h[0]=o(this.h[0],n),this.h[1]=o(this.h[1],a),this.h[2]=o(this.h[2],c),this.h[3]=o(this.h[3],f),this.h[4]=o(this.h[4],d)},f.prototype._digest=function(e){return"hex"===e?i.toHex32(this.h,"big"):i.split32(this.h,"big")}},14:function(e,t){},"14c7":function(e,t,r){"use strict";r("4632")},15:function(e,t){},1545:function(e,t,r){"use strict";t.utils=r("5ee7"),t.Cipher=r("0184"),t.DES=r("4e2b"),t.CBC=r("0da4"),t.EDE=r("1fec")},"15f0":function(e,t){"function"===typeof Object.create?e.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}},16:function(e,t){},17:function(e,t){},18:function(e,t){},19:function(e,t){},"19ea":function(e,t,r){"use strict";(function(t,i){function n(e){var t=this;this.next=null,this.entry=null,this.finish=function(){W(t,e)}}var a;e.exports=E,E.WritableState=C;var s={deprecate:r("b7d1")},o=r("5bbb"),h=r("b639").Buffer,l=t.Uint8Array||function(){};function c(e){return h.from(e)}function u(e){return h.isBuffer(e)||e instanceof l}var f,d=r("493f"),p=r("b9b5"),m=p.getHighWaterMark,g=r("9d8a").codes,b=g.ERR_INVALID_ARG_TYPE,v=g.ERR_METHOD_NOT_IMPLEMENTED,y=g.ERR_MULTIPLE_CALLBACK,w=g.ERR_STREAM_CANNOT_PIPE,M=g.ERR_STREAM_DESTROYED,_=g.ERR_STREAM_NULL_VALUES,S=g.ERR_STREAM_WRITE_AFTER_END,k=g.ERR_UNKNOWN_ENCODING,A=d.errorOrDestroy;function x(){}function C(e,t,i){a=a||r("e666"),e=e||{},"boolean"!==typeof i&&(i=t instanceof a),this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.writableObjectMode),this.highWaterMark=m(this,e,"writableHighWaterMark",i),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var s=!1===e.decodeStrings;this.decodeStrings=!s,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){D(t,e)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==e.emitClose,this.autoDestroy=!!e.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new n(this)}function E(e){a=a||r("e666");var t=this instanceof a;if(!t&&!f.call(E,this))return new E(e);this._writableState=new C(e,this,t),this.writable=!0,e&&("function"===typeof e.write&&(this._write=e.write),"function"===typeof e.writev&&(this._writev=e.writev),"function"===typeof e.destroy&&(this._destroy=e.destroy),"function"===typeof e.final&&(this._final=e.final)),o.call(this)}function T(e,t){var r=new S;A(e,r),i.nextTick(t,r)}function R(e,t,r,n){var a;return null===r?a=new _:"string"===typeof r||t.objectMode||(a=new b("chunk",["string","Buffer"],r)),!a||(A(e,a),i.nextTick(n,a),!1)}function I(e,t,r){return e.objectMode||!1===e.decodeStrings||"string"!==typeof t||(t=h.from(t,r)),t}function P(e,t,r,i,n,a){if(!r){var s=I(t,i,n);i!==s&&(r=!0,n="buffer",i=s)}var o=t.objectMode?1:i.length;t.length+=o;var h=t.length<t.highWaterMark;if(h||(t.needDrain=!0),t.writing||t.corked){var l=t.lastBufferedRequest;t.lastBufferedRequest={chunk:i,encoding:n,isBuf:r,callback:a,next:null},l?l.next=t.lastBufferedRequest:t.bufferedRequest=t.lastBufferedRequest,t.bufferedRequestCount+=1}else O(e,t,!1,o,i,n,a);return h}function O(e,t,r,i,n,a,s){t.writelen=i,t.writecb=s,t.writing=!0,t.sync=!0,t.destroyed?t.onwrite(new M("write")):r?e._writev(n,t.onwrite):e._write(n,a,t.onwrite),t.sync=!1}function F(e,t,r,n,a){--t.pendingcb,r?(i.nextTick(a,n),i.nextTick(H,e,t),e._writableState.errorEmitted=!0,A(e,n)):(a(n),e._writableState.errorEmitted=!0,A(e,n),H(e,t))}function L(e){e.writing=!1,e.writecb=null,e.length-=e.writelen,e.writelen=0}function D(e,t){var r=e._writableState,n=r.sync,a=r.writecb;if("function"!==typeof a)throw new y;if(L(r),t)F(e,r,n,t,a);else{var s=j(r)||e.destroyed;s||r.corked||r.bufferProcessing||!r.bufferedRequest||U(e,r),n?i.nextTick(N,e,r,s,a):N(e,r,s,a)}}function N(e,t,r,i){r||B(e,t),t.pendingcb--,i(),H(e,t)}function B(e,t){0===t.length&&t.needDrain&&(t.needDrain=!1,e.emit("drain"))}function U(e,t){t.bufferProcessing=!0;var r=t.bufferedRequest;if(e._writev&&r&&r.next){var i=t.bufferedRequestCount,a=new Array(i),s=t.corkedRequestsFree;s.entry=r;var o=0,h=!0;while(r)a[o]=r,r.isBuf||(h=!1),r=r.next,o+=1;a.allBuffers=h,O(e,t,!0,t.length,a,"",s.finish),t.pendingcb++,t.lastBufferedRequest=null,s.next?(t.corkedRequestsFree=s.next,s.next=null):t.corkedRequestsFree=new n(t),t.bufferedRequestCount=0}else{while(r){var l=r.chunk,c=r.encoding,u=r.callback,f=t.objectMode?1:l.length;if(O(e,t,!1,f,l,c,u),r=r.next,t.bufferedRequestCount--,t.writing)break}null===r&&(t.lastBufferedRequest=null)}t.bufferedRequest=r,t.bufferProcessing=!1}function j(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function q(e,t){e._final((function(r){t.pendingcb--,r&&A(e,r),t.prefinished=!0,e.emit("prefinish"),H(e,t)}))}function z(e,t){t.prefinished||t.finalCalled||("function"!==typeof e._final||t.destroyed?(t.prefinished=!0,e.emit("prefinish")):(t.pendingcb++,t.finalCalled=!0,i.nextTick(q,e,t)))}function H(e,t){var r=j(t);if(r&&(z(e,t),0===t.pendingcb&&(t.finished=!0,e.emit("finish"),t.autoDestroy))){var i=e._readableState;(!i||i.autoDestroy&&i.endEmitted)&&e.destroy()}return r}function G(e,t,r){t.ending=!0,H(e,t),r&&(t.finished?i.nextTick(r):e.once("finish",r)),t.ended=!0,e.writable=!1}function W(e,t,r){var i=e.entry;e.entry=null;while(i){var n=i.callback;t.pendingcb--,n(r),i=i.next}t.corkedRequestsFree.next=e}r("3fb5")(E,o),C.prototype.getBuffer=function(){var e=this.bufferedRequest,t=[];while(e)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(C.prototype,"buffer",{get:s.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}(),"function"===typeof Symbol&&Symbol.hasInstance&&"function"===typeof Function.prototype[Symbol.hasInstance]?(f=Function.prototype[Symbol.hasInstance],Object.defineProperty(E,Symbol.hasInstance,{value:function(e){return!!f.call(this,e)||this===E&&(e&&e._writableState instanceof C)}})):f=function(e){return e instanceof this},E.prototype.pipe=function(){A(this,new w)},E.prototype.write=function(e,t,r){var i=this._writableState,n=!1,a=!i.objectMode&&u(e);return a&&!h.isBuffer(e)&&(e=c(e)),"function"===typeof t&&(r=t,t=null),a?t="buffer":t||(t=i.defaultEncoding),"function"!==typeof r&&(r=x),i.ending?T(this,r):(a||R(this,i,e,r))&&(i.pendingcb++,n=P(this,i,a,e,t,r)),n},E.prototype.cork=function(){this._writableState.corked++},E.prototype.uncork=function(){var e=this._writableState;e.corked&&(e.corked--,e.writing||e.corked||e.bufferProcessing||!e.bufferedRequest||U(this,e))},E.prototype.setDefaultEncoding=function(e){if("string"===typeof e&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new k(e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(E.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(E.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),E.prototype._write=function(e,t,r){r(new v("_write()"))},E.prototype._writev=null,E.prototype.end=function(e,t,r){var i=this._writableState;return"function"===typeof e?(r=e,e=null,t=null):"function"===typeof t&&(r=t,t=null),null!==e&&void 0!==e&&this.write(e,t),i.corked&&(i.corked=1,this.uncork()),i.ending||G(this,i,r),this},Object.defineProperty(E.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(E.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),E.prototype.destroy=d.destroy,E.prototype._undestroy=d.undestroy,E.prototype._destroy=function(e,t){t(e)}}).call(this,r("c8ba"),r("f28c"))},"1a2a":function(e,t,r){"use strict";var i=r("3fb5"),n=r("d424"),a=r("6430"),s=r("8707").Buffer,o=r("5a76"),h=r("b5ca"),l=r("69f2"),c=s.alloc(128);function u(e,t){a.call(this,"digest"),"string"===typeof t&&(t=s.from(t));var r="sha512"===e||"sha384"===e?128:64;if(this._alg=e,this._key=t,t.length>r){var i="rmd160"===e?new h:l(e);t=i.update(t).digest()}else t.length<r&&(t=s.concat([t,c],r));for(var n=this._ipad=s.allocUnsafe(r),o=this._opad=s.allocUnsafe(r),u=0;u<r;u++)n[u]=54^t[u],o[u]=92^t[u];this._hash="rmd160"===e?new h:l(e),this._hash.update(n)}i(u,a),u.prototype._update=function(e){this._hash.update(e)},u.prototype._final=function(){var e=this._hash.digest(),t="rmd160"===this._alg?new h:l(this._alg);return t.update(this._opad).update(e).digest()},e.exports=function(e,t){return e=e.toLowerCase(),"rmd160"===e||"ripemd160"===e?new u("rmd160",t):"md5"===e?new n(o,t):new u(e,t)}},"1c46":function(e,t,r){"use strict";t.randomBytes=t.rng=t.pseudoRandomBytes=t.prng=r("11dc"),t.createHash=t.Hash=r("98e6"),t.createHmac=t.Hmac=r("1a2a");var i=r("116d"),n=Object.keys(i),a=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(n);t.getHashes=function(){return a};var s=r("a099");t.pbkdf2=s.pbkdf2,t.pbkdf2Sync=s.pbkdf2Sync;var o=r("956a");t.Cipher=o.Cipher,t.createCipher=o.createCipher,t.Cipheriv=o.Cipheriv,t.createCipheriv=o.createCipheriv,t.Decipher=o.Decipher,t.createDecipher=o.createDecipher,t.Decipheriv=o.Decipheriv,t.createDecipheriv=o.createDecipheriv,t.getCiphers=o.getCiphers,t.listCiphers=o.listCiphers;var h=r("00dc");t.DiffieHellmanGroup=h.DiffieHellmanGroup,t.createDiffieHellmanGroup=h.createDiffieHellmanGroup,t.getDiffieHellman=h.getDiffieHellman,t.createDiffieHellman=h.createDiffieHellman,t.DiffieHellman=h.DiffieHellman;var l=r("b692");t.createSign=l.createSign,t.Sign=l.Sign,t.createVerify=l.createVerify,t.Verify=l.Verify,t.createECDH=r("e1d30");var c=r("6442");t.publicEncrypt=c.publicEncrypt,t.privateEncrypt=c.privateEncrypt,t.publicDecrypt=c.publicDecrypt,t.privateDecrypt=c.privateDecrypt;var u=r("75cc");t.randomFill=u.randomFill,t.randomFillSync=u.randomFillSync,t.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},t.constants={DH_CHECK_P_NOT_SAFE_PRIME:2,DH_CHECK_P_NOT_PRIME:1,DH_UNABLE_TO_CHECK_GENERATOR:4,DH_NOT_SUITABLE_GENERATOR:8,NPN_ENABLED:1,ALPN_ENABLED:1,RSA_PKCS1_PADDING:1,RSA_SSLV23_PADDING:2,RSA_NO_PADDING:3,RSA_PKCS1_OAEP_PADDING:4,RSA_X931_PADDING:5,RSA_PKCS1_PSS_PADDING:6,POINT_CONVERSION_COMPRESSED:2,POINT_CONVERSION_UNCOMPRESSED:4,POINT_CONVERSION_HYBRID:6}},"1da1":function(e,t,r){"use strict";function i(e,t,r,i,n,a,s){try{var o=e[a](s),h=o.value}catch(l){return void r(l)}o.done?t(h):Promise.resolve(h).then(i,n)}function n(e){return function(){var t=this,r=arguments;return new Promise((function(n,a){var s=e.apply(t,r);function o(e){i(s,n,a,o,h,"next",e)}function h(e){i(s,n,a,o,h,"throw",e)}o(void 0)}))}}r.d(t,"a",(function(){return n}))},"1e3c":function(e,t,r){var i=r("6430"),n=r("1545"),a=r("3fb5"),s=r("8707").Buffer,o={"des-ede3-cbc":n.CBC.instantiate(n.EDE),"des-ede3":n.EDE,"des-ede-cbc":n.CBC.instantiate(n.EDE),"des-ede":n.EDE,"des-cbc":n.CBC.instantiate(n.DES),"des-ecb":n.DES};function h(e){i.call(this);var t,r=e.mode.toLowerCase(),n=o[r];t=e.decrypt?"decrypt":"encrypt";var a=e.key;s.isBuffer(a)||(a=s.from(a)),"des-ede"!==r&&"des-ede-cbc"!==r||(a=s.concat([a,a.slice(0,8)]));var h=e.iv;s.isBuffer(h)||(h=s.from(h)),this._des=n.create({key:a,iv:h,type:t})}o.des=o["des-cbc"],o.des3=o["des-ede3-cbc"],e.exports=h,a(h,i),h.prototype._update=function(e){return s.from(this._des.update(e))},h.prototype._final=function(){return s.from(this._des.final())}},"1fd5":function(e,t){function r(e){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}r.keys=function(){return[]},r.resolve=r,e.exports=r,r.id="1fd5"},"1fec":function(e,t,r){"use strict";var i=r("da3e"),n=r("3fb5"),a=r("0184"),s=r("4e2b");function o(e,t){i.equal(t.length,24,"Invalid key length");var r=t.slice(0,8),n=t.slice(8,16),a=t.slice(16,24);this.ciphers="encrypt"===e?[s.create({type:"encrypt",key:r}),s.create({type:"decrypt",key:n}),s.create({type:"encrypt",key:a})]:[s.create({type:"decrypt",key:a}),s.create({type:"encrypt",key:n}),s.create({type:"decrypt",key:r})]}function h(e){a.call(this,e);var t=new o(this.type,this.options.key);this._edeState=t}n(h,a),e.exports=h,h.create=function(e){return new h(e)},h.prototype._update=function(e,t,r,i){var n=this._edeState;n.ciphers[0]._update(e,t,r,i),n.ciphers[1]._update(r,i,r,i),n.ciphers[2]._update(r,i,r,i)},h.prototype._pad=s.prototype._pad,h.prototype._unpad=s.prototype._unpad},20:function(e,t){},"206d":function(e,t,r){(function(t){var i,n,a=r("8707").Buffer,s=r("7d2a"),o=r("9f9d"),h=r("e07b"),l=r("8be6"),c=t.crypto&&t.crypto.subtle,u={sha:"SHA-1","sha-1":"SHA-1",sha1:"SHA-1",sha256:"SHA-256","sha-256":"SHA-256",sha384:"SHA-384","sha-384":"SHA-384","sha-512":"SHA-512",sha512:"SHA-512"},f=[];function d(e){if(t.process&&!t.process.browser)return Promise.resolve(!1);if(!c||!c.importKey||!c.deriveBits)return Promise.resolve(!1);if(void 0!==f[e])return f[e];i=i||a.alloc(8);var r=m(i,i,10,128,e).then((function(){return!0})).catch((function(){return!1}));return f[e]=r,r}function p(){return n||(n=t.process&&t.process.nextTick?t.process.nextTick:t.queueMicrotask?t.queueMicrotask:t.setImmediate?t.setImmediate:t.setTimeout,n)}function m(e,t,r,i,n){return c.importKey("raw",e,{name:"PBKDF2"},!1,["deriveBits"]).then((function(e){return c.deriveBits({name:"PBKDF2",salt:t,iterations:r,hash:{name:n}},e,i<<3)})).then((function(e){return a.from(e)}))}function g(e,t){e.then((function(e){p()((function(){t(null,e)}))}),(function(e){p()((function(){t(e)}))}))}e.exports=function(e,r,i,n,a,c){"function"===typeof a&&(c=a,a=void 0),a=a||"sha1";var f=u[a.toLowerCase()];if(f&&"function"===typeof t.Promise){if(s(i,n),e=l(e,o,"Password"),r=l(r,o,"Salt"),"function"!==typeof c)throw new Error("No callback provided to pbkdf2");g(d(f).then((function(t){return t?m(e,r,i,n,f):h(e,r,i,n,a)})),c)}else p()((function(){var t;try{t=h(e,r,i,n,a)}catch(s){return c(s)}c(null,t)}))}}).call(this,r("c8ba"))},"20f6":function(e,t,r){"use strict";const i=t;i.der=r("cfbd"),i.pem=r("8df7")},21:function(e,t){},2137:function(e,t,r){"use strict";var i=r("c3c0"),n=r("da3e");function a(e,t,r){if(!(this instanceof a))return new a(e,t,r);this.Hash=e,this.blockSize=e.blockSize/8,this.outSize=e.outSize/8,this.inner=null,this.outer=null,this._init(i.toArray(t,r))}e.exports=a,a.prototype._init=function(e){e.length>this.blockSize&&(e=(new this.Hash).update(e).digest()),n(e.length<=this.blockSize);for(var t=e.length;t<this.blockSize;t++)e.push(0);for(t=0;t<e.length;t++)e[t]^=54;for(this.inner=(new this.Hash).update(e),t=0;t<e.length;t++)e[t]^=106;this.outer=(new this.Hash).update(e)},a.prototype.update=function(e,t){return this.inner.update(e,t),this},a.prototype.digest=function(e){return this.outer.update(this.inner.digest()),this.outer.digest(e)}},22:function(e,t){},"22ab":function(e,t,r){"use strict";function i(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,i)}return r}function n(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?i(Object(r),!0).forEach((function(t){a(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):i(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function a(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var r=0;r<t.length;r++){var i=t[r];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function h(e,t,r){return t&&o(e.prototype,t),r&&o(e,r),e}var l=r("b639"),c=l.Buffer,u=r(17),f=u.inspect,d=f&&f.custom||"inspect";function p(e,t,r){c.prototype.copy.call(e,t,r)}e.exports=function(){function e(){s(this,e),this.head=null,this.tail=null,this.length=0}return h(e,[{key:"push",value:function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length}},{key:"unshift",value:function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length}},{key:"shift",value:function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(e){if(0===this.length)return"";var t=this.head,r=""+t.data;while(t=t.next)r+=e+t.data;return r}},{key:"concat",value:function(e){if(0===this.length)return c.alloc(0);var t=c.allocUnsafe(e>>>0),r=this.head,i=0;while(r)p(r.data,t,i),i+=r.data.length,r=r.next;return t}},{key:"consume",value:function(e,t){var r;return e<this.head.data.length?(r=this.head.data.slice(0,e),this.head.data=this.head.data.slice(e)):r=e===this.head.data.length?this.shift():t?this._getString(e):this._getBuffer(e),r}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(e){var t=this.head,r=1,i=t.data;e-=i.length;while(t=t.next){var n=t.data,a=e>n.length?n.length:e;if(a===n.length?i+=n:i+=n.slice(0,e),e-=a,0===e){a===n.length?(++r,t.next?this.head=t.next:this.head=this.tail=null):(this.head=t,t.data=n.slice(a));break}++r}return this.length-=r,i}},{key:"_getBuffer",value:function(e){var t=c.allocUnsafe(e),r=this.head,i=1;r.data.copy(t),e-=r.data.length;while(r=r.next){var n=r.data,a=e>n.length?n.length:e;if(n.copy(t,t.length-e,0,a),e-=a,0===e){a===n.length?(++i,r.next?this.head=r.next:this.head=this.tail=null):(this.head=r,r.data=n.slice(a));break}++i}return this.length-=i,t}},{key:d,value:function(e,t){return f(this,n({},t,{depth:0,customInspect:!1}))}}]),e}()},2397:function(e,t,r){var i=r("5ca1"),n=r("2aeb"),a=r("d8e8"),s=r("cb7c"),o=r("d3f4"),h=r("79e5"),l=r("f0c1"),c=(r("7726").Reflect||{}).construct,u=h((function(){function e(){}return!(c((function(){}),[],e)instanceof e)})),f=!h((function(){c((function(){}))}));i(i.S+i.F*(u||f),"Reflect",{construct:function(e,t){a(e),s(t);var r=arguments.length<3?e:a(arguments[2]);if(f&&!u)return c(e,t,r);if(e==r){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var i=[null];return i.push.apply(i,t),new(l.apply(e,i))}var h=r.prototype,d=n(o(h)?h:Object.prototype),p=Function.apply.call(e,d,t);return o(p)?p:d}})},"262f":function(e,t,r){var i=r("5ca1");i(i.G+i.W+i.F*!r("0f88").ABV,{DataView:r("ed0b").DataView})},"27bf":function(e,t,r){"use strict";e.exports=s;var i=r("b19a"),n=Object.create(r("3a7c"));function a(e,t){var r=this._transformState;r.transforming=!1;var i=r.writecb;if(!i)return this.emit("error",new Error("write callback called multiple times"));r.writechunk=null,r.writecb=null,null!=t&&this.push(t),i(e);var n=this._readableState;n.reading=!1,(n.needReadable||n.length<n.highWaterMark)&&this._read(n.highWaterMark)}function s(e){if(!(this instanceof s))return new s(e);i.call(this,e),this._transformState={afterTransform:a.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,e&&("function"===typeof e.transform&&(this._transform=e.transform),"function"===typeof e.flush&&(this._flush=e.flush)),this.on("prefinish",o)}function o(){var e=this;"function"===typeof this._flush?this._flush((function(t,r){h(e,t,r)})):h(this,null,null)}function h(e,t,r){if(t)return e.emit("error",t);if(null!=r&&e.push(r),e._writableState.length)throw new Error("Calling transform done when ws.length != 0");if(e._transformState.transforming)throw new Error("Calling transform done when still transforming");return e.push(null)}n.inherits=r("3fb5"),n.inherits(s,i),s.prototype.push=function(e,t){return this._transformState.needTransform=!1,i.prototype.push.call(this,e,t)},s.prototype._transform=function(e,t,r){throw new Error("_transform() is not implemented")},s.prototype._write=function(e,t,r){var i=this._transformState;if(i.writecb=r,i.writechunk=e,i.writeencoding=t,!i.transforming){var n=this._readableState;(i.needTransform||n.needReadable||n.length<n.highWaterMark)&&this._read(n.highWaterMark)}},s.prototype._read=function(e){var t=this._transformState;null!==t.writechunk&&t.writecb&&!t.transforming?(t.transforming=!0,this._transform(t.writechunk,t.writeencoding,t.afterTransform)):t.needTransform=!0},s.prototype._destroy=function(e,t){var r=this;i.prototype._destroy.call(this,e,(function(e){t(e),r.emit("close")}))}},2801:function(e){e.exports=JSON.parse('{"_args":[["elliptic@6.5.4","D:\\\\project\\\\gaoyixia"]],"_development":true,"_from":"elliptic@6.5.4","_id":"elliptic@6.5.4","_inBundle":false,"_integrity":"sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==","_location":"/elliptic","_phantomChildren":{},"_requested":{"type":"version","registry":true,"raw":"elliptic@6.5.4","name":"elliptic","escapedName":"elliptic","rawSpec":"6.5.4","saveSpec":null,"fetchSpec":"6.5.4"},"_requiredBy":["/browserify-sign","/create-ecdh"],"_resolved":"https://registry.npmmirror.com/elliptic/-/elliptic-6.5.4.tgz","_spec":"6.5.4","_where":"D:\\\\project\\\\gaoyixia","author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dependencies":{"bn.js":"^4.11.9","brorand":"^1.1.0","hash.js":"^1.0.0","hmac-drbg":"^1.0.1","inherits":"^2.0.4","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"},"description":"EC cryptography","devDependencies":{"brfs":"^2.0.2","coveralls":"^3.1.0","eslint":"^7.6.0","grunt":"^1.2.1","grunt-browserify":"^5.3.0","grunt-cli":"^1.3.2","grunt-contrib-connect":"^3.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-saucelabs":"^9.0.1","istanbul":"^0.4.5","mocha":"^8.0.1"},"files":["lib"],"homepage":"https://github.com/indutny/elliptic","keywords":["EC","Elliptic","curve","Cryptography"],"license":"MIT","main":"lib/elliptic.js","name":"elliptic","repository":{"type":"git","url":"git+ssh://git@github.com/indutny/elliptic.git"},"scripts":{"lint":"eslint lib test","lint:fix":"npm run lint -- --fix","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","version":"grunt dist && git add dist/"},"version":"6.5.4"}')},"2aee":function(e,t,r){var i=r("4111"),n=r("d70e"),a=r("4dd0"),s=r("fda6"),o=r("a099"),h=r("8707").Buffer;function l(e){var t;"object"!==typeof e||h.isBuffer(e)||(t=e.passphrase,e=e.key),"string"===typeof e&&(e=h.from(e));var r,n,s=a(e,t),o=s.tag,l=s.data;switch(o){case"CERTIFICATE":n=i.certificate.decode(l,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(n||(n=i.PublicKey.decode(l,"der")),r=n.algorithm.algorithm.join("."),r){case"1.2.840.113549.1.1.1":return i.RSAPublicKey.decode(n.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return n.subjectPrivateKey=n.subjectPublicKey,{type:"ec",data:n};case"1.2.840.10040.4.1":return n.algorithm.params.pub_key=i.DSAparam.decode(n.subjectPublicKey.data,"der"),{type:"dsa",data:n.algorithm.params};default:throw new Error("unknown key id "+r)}case"ENCRYPTED PRIVATE KEY":l=i.EncryptedPrivateKey.decode(l,"der"),l=c(l,t);case"PRIVATE KEY":switch(n=i.PrivateKey.decode(l,"der"),r=n.algorithm.algorithm.join("."),r){case"1.2.840.113549.1.1.1":return i.RSAPrivateKey.decode(n.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:n.algorithm.curve,privateKey:i.ECPrivateKey.decode(n.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return n.algorithm.params.priv_key=i.DSAparam.decode(n.subjectPrivateKey,"der"),{type:"dsa",params:n.algorithm.params};default:throw new Error("unknown key id "+r)}case"RSA PUBLIC KEY":return i.RSAPublicKey.decode(l,"der");case"RSA PRIVATE KEY":return i.RSAPrivateKey.decode(l,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:i.DSAPrivateKey.decode(l,"der")};case"EC PRIVATE KEY":return l=i.ECPrivateKey.decode(l,"der"),{curve:l.parameters.value,privateKey:l.privateKey};default:throw new Error("unknown key type "+o)}}function c(e,t){var r=e.algorithm.decrypt.kde.kdeparams.salt,i=parseInt(e.algorithm.decrypt.kde.kdeparams.iters.toString(),10),a=n[e.algorithm.decrypt.cipher.algo.join(".")],l=e.algorithm.decrypt.cipher.iv,c=e.subjectPrivateKey,u=parseInt(a.split("-")[1],10)/8,f=o.pbkdf2Sync(t,r,i,u,"sha1"),d=s.createDecipheriv(a,f,l),p=[];return p.push(d.update(c)),p.push(d.final()),h.concat(p)}e.exports=l,l.signature=i.signature},"2b8c4":function(e,t,r){},"2c63":function(e,t,r){e.exports=r("dc14")},3:function(e,t){},3300:function(e,t,r){"use strict";var i=r("f3a3"),n=r("80af"),a=r("3fb5"),s=r("ea53"),o=i.assert;function h(e){s.call(this,"short",e),this.a=new n(e.a,16).toRed(this.red),this.b=new n(e.b,16).toRed(this.red),this.tinv=this.two.redInvm(),this.zeroA=0===this.a.fromRed().cmpn(0),this.threeA=0===this.a.fromRed().sub(this.p).cmpn(-3),this.endo=this._getEndomorphism(e),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function l(e,t,r,i){s.BasePoint.call(this,e,"affine"),null===t&&null===r?(this.x=null,this.y=null,this.inf=!0):(this.x=new n(t,16),this.y=new n(r,16),i&&(this.x.forceRed(this.curve.red),this.y.forceRed(this.curve.red)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.inf=!1)}function c(e,t,r,i){s.BasePoint.call(this,e,"jacobian"),null===t&&null===r&&null===i?(this.x=this.curve.one,this.y=this.curve.one,this.z=new n(0)):(this.x=new n(t,16),this.y=new n(r,16),this.z=new n(i,16)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.zOne=this.z===this.curve.one}a(h,s),e.exports=h,h.prototype._getEndomorphism=function(e){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var t,r,i;if(e.beta)t=new n(e.beta,16).toRed(this.red);else{var a=this._getEndoRoots(this.p);t=a[0].cmp(a[1])<0?a[0]:a[1],t=t.toRed(this.red)}if(e.lambda)r=new n(e.lambda,16);else{var s=this._getEndoRoots(this.n);0===this.g.mul(s[0]).x.cmp(this.g.x.redMul(t))?r=s[0]:(r=s[1],o(0===this.g.mul(r).x.cmp(this.g.x.redMul(t))))}return i=e.basis?e.basis.map((function(e){return{a:new n(e.a,16),b:new n(e.b,16)}})):this._getEndoBasis(r),{beta:t,lambda:r,basis:i}}},h.prototype._getEndoRoots=function(e){var t=e===this.p?this.red:n.mont(e),r=new n(2).toRed(t).redInvm(),i=r.redNeg(),a=new n(3).toRed(t).redNeg().redSqrt().redMul(r),s=i.redAdd(a).fromRed(),o=i.redSub(a).fromRed();return[s,o]},h.prototype._getEndoBasis=function(e){var t,r,i,a,s,o,h,l,c,u=this.n.ushrn(Math.floor(this.n.bitLength()/2)),f=e,d=this.n.clone(),p=new n(1),m=new n(0),g=new n(0),b=new n(1),v=0;while(0!==f.cmpn(0)){var y=d.div(f);l=d.sub(y.mul(f)),c=g.sub(y.mul(p));var w=b.sub(y.mul(m));if(!i&&l.cmp(u)<0)t=h.neg(),r=p,i=l.neg(),a=c;else if(i&&2===++v)break;h=l,d=f,f=l,g=p,p=c,b=m,m=w}s=l.neg(),o=c;var M=i.sqr().add(a.sqr()),_=s.sqr().add(o.sqr());return _.cmp(M)>=0&&(s=t,o=r),i.negative&&(i=i.neg(),a=a.neg()),s.negative&&(s=s.neg(),o=o.neg()),[{a:i,b:a},{a:s,b:o}]},h.prototype._endoSplit=function(e){var t=this.endo.basis,r=t[0],i=t[1],n=i.b.mul(e).divRound(this.n),a=r.b.neg().mul(e).divRound(this.n),s=n.mul(r.a),o=a.mul(i.a),h=n.mul(r.b),l=a.mul(i.b),c=e.sub(s).sub(o),u=h.add(l).neg();return{k1:c,k2:u}},h.prototype.pointFromX=function(e,t){e=new n(e,16),e.red||(e=e.toRed(this.red));var r=e.redSqr().redMul(e).redIAdd(e.redMul(this.a)).redIAdd(this.b),i=r.redSqrt();if(0!==i.redSqr().redSub(r).cmp(this.zero))throw new Error("invalid point");var a=i.fromRed().isOdd();return(t&&!a||!t&&a)&&(i=i.redNeg()),this.point(e,i)},h.prototype.validate=function(e){if(e.inf)return!0;var t=e.x,r=e.y,i=this.a.redMul(t),n=t.redSqr().redMul(t).redIAdd(i).redIAdd(this.b);return 0===r.redSqr().redISub(n).cmpn(0)},h.prototype._endoWnafMulAdd=function(e,t,r){for(var i=this._endoWnafT1,n=this._endoWnafT2,a=0;a<e.length;a++){var s=this._endoSplit(t[a]),o=e[a],h=o._getBeta();s.k1.negative&&(s.k1.ineg(),o=o.neg(!0)),s.k2.negative&&(s.k2.ineg(),h=h.neg(!0)),i[2*a]=o,i[2*a+1]=h,n[2*a]=s.k1,n[2*a+1]=s.k2}for(var l=this._wnafMulAdd(1,i,n,2*a,r),c=0;c<2*a;c++)i[c]=null,n[c]=null;return l},a(l,s.BasePoint),h.prototype.point=function(e,t,r){return new l(this,e,t,r)},h.prototype.pointFromJSON=function(e,t){return l.fromJSON(this,e,t)},l.prototype._getBeta=function(){if(this.curve.endo){var e=this.precomputed;if(e&&e.beta)return e.beta;var t=this.curve.point(this.x.redMul(this.curve.endo.beta),this.y);if(e){var r=this.curve,i=function(e){return r.point(e.x.redMul(r.endo.beta),e.y)};e.beta=t,t.precomputed={beta:null,naf:e.naf&&{wnd:e.naf.wnd,points:e.naf.points.map(i)},doubles:e.doubles&&{step:e.doubles.step,points:e.doubles.points.map(i)}}}return t}},l.prototype.toJSON=function(){return this.precomputed?[this.x,this.y,this.precomputed&&{doubles:this.precomputed.doubles&&{step:this.precomputed.doubles.step,points:this.precomputed.doubles.points.slice(1)},naf:this.precomputed.naf&&{wnd:this.precomputed.naf.wnd,points:this.precomputed.naf.points.slice(1)}}]:[this.x,this.y]},l.fromJSON=function(e,t,r){"string"===typeof t&&(t=JSON.parse(t));var i=e.point(t[0],t[1],r);if(!t[2])return i;function n(t){return e.point(t[0],t[1],r)}var a=t[2];return i.precomputed={beta:null,doubles:a.doubles&&{step:a.doubles.step,points:[i].concat(a.doubles.points.map(n))},naf:a.naf&&{wnd:a.naf.wnd,points:[i].concat(a.naf.points.map(n))}},i},l.prototype.inspect=function(){return this.isInfinity()?"<EC Point Infinity>":"<EC Point x: "+this.x.fromRed().toString(16,2)+" y: "+this.y.fromRed().toString(16,2)+">"},l.prototype.isInfinity=function(){return this.inf},l.prototype.add=function(e){if(this.inf)return e;if(e.inf)return this;if(this.eq(e))return this.dbl();if(this.neg().eq(e))return this.curve.point(null,null);if(0===this.x.cmp(e.x))return this.curve.point(null,null);var t=this.y.redSub(e.y);0!==t.cmpn(0)&&(t=t.redMul(this.x.redSub(e.x).redInvm()));var r=t.redSqr().redISub(this.x).redISub(e.x),i=t.redMul(this.x.redSub(r)).redISub(this.y);return this.curve.point(r,i)},l.prototype.dbl=function(){if(this.inf)return this;var e=this.y.redAdd(this.y);if(0===e.cmpn(0))return this.curve.point(null,null);var t=this.curve.a,r=this.x.redSqr(),i=e.redInvm(),n=r.redAdd(r).redIAdd(r).redIAdd(t).redMul(i),a=n.redSqr().redISub(this.x.redAdd(this.x)),s=n.redMul(this.x.redSub(a)).redISub(this.y);return this.curve.point(a,s)},l.prototype.getX=function(){return this.x.fromRed()},l.prototype.getY=function(){return this.y.fromRed()},l.prototype.mul=function(e){return e=new n(e,16),this.isInfinity()?this:this._hasDoubles(e)?this.curve._fixedNafMul(this,e):this.curve.endo?this.curve._endoWnafMulAdd([this],[e]):this.curve._wnafMul(this,e)},l.prototype.mulAdd=function(e,t,r){var i=[this,t],n=[e,r];return this.curve.endo?this.curve._endoWnafMulAdd(i,n):this.curve._wnafMulAdd(1,i,n,2)},l.prototype.jmulAdd=function(e,t,r){var i=[this,t],n=[e,r];return this.curve.endo?this.curve._endoWnafMulAdd(i,n,!0):this.curve._wnafMulAdd(1,i,n,2,!0)},l.prototype.eq=function(e){return this===e||this.inf===e.inf&&(this.inf||0===this.x.cmp(e.x)&&0===this.y.cmp(e.y))},l.prototype.neg=function(e){if(this.inf)return this;var t=this.curve.point(this.x,this.y.redNeg());if(e&&this.precomputed){var r=this.precomputed,i=function(e){return e.neg()};t.precomputed={naf:r.naf&&{wnd:r.naf.wnd,points:r.naf.points.map(i)},doubles:r.doubles&&{step:r.doubles.step,points:r.doubles.points.map(i)}}}return t},l.prototype.toJ=function(){if(this.inf)return this.curve.jpoint(null,null,null);var e=this.curve.jpoint(this.x,this.y,this.curve.one);return e},a(c,s.BasePoint),h.prototype.jpoint=function(e,t,r){return new c(this,e,t,r)},c.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var e=this.z.redInvm(),t=e.redSqr(),r=this.x.redMul(t),i=this.y.redMul(t).redMul(e);return this.curve.point(r,i)},c.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},c.prototype.add=function(e){if(this.isInfinity())return e;if(e.isInfinity())return this;var t=e.z.redSqr(),r=this.z.redSqr(),i=this.x.redMul(t),n=e.x.redMul(r),a=this.y.redMul(t.redMul(e.z)),s=e.y.redMul(r.redMul(this.z)),o=i.redSub(n),h=a.redSub(s);if(0===o.cmpn(0))return 0!==h.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var l=o.redSqr(),c=l.redMul(o),u=i.redMul(l),f=h.redSqr().redIAdd(c).redISub(u).redISub(u),d=h.redMul(u.redISub(f)).redISub(a.redMul(c)),p=this.z.redMul(e.z).redMul(o);return this.curve.jpoint(f,d,p)},c.prototype.mixedAdd=function(e){if(this.isInfinity())return e.toJ();if(e.isInfinity())return this;var t=this.z.redSqr(),r=this.x,i=e.x.redMul(t),n=this.y,a=e.y.redMul(t).redMul(this.z),s=r.redSub(i),o=n.redSub(a);if(0===s.cmpn(0))return 0!==o.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var h=s.redSqr(),l=h.redMul(s),c=r.redMul(h),u=o.redSqr().redIAdd(l).redISub(c).redISub(c),f=o.redMul(c.redISub(u)).redISub(n.redMul(l)),d=this.z.redMul(s);return this.curve.jpoint(u,f,d)},c.prototype.dblp=function(e){if(0===e)return this;if(this.isInfinity())return this;if(!e)return this.dbl();var t;if(this.curve.zeroA||this.curve.threeA){var r=this;for(t=0;t<e;t++)r=r.dbl();return r}var i=this.curve.a,n=this.curve.tinv,a=this.x,s=this.y,o=this.z,h=o.redSqr().redSqr(),l=s.redAdd(s);for(t=0;t<e;t++){var c=a.redSqr(),u=l.redSqr(),f=u.redSqr(),d=c.redAdd(c).redIAdd(c).redIAdd(i.redMul(h)),p=a.redMul(u),m=d.redSqr().redISub(p.redAdd(p)),g=p.redISub(m),b=d.redMul(g);b=b.redIAdd(b).redISub(f);var v=l.redMul(o);t+1<e&&(h=h.redMul(f)),a=m,o=v,l=b}return this.curve.jpoint(a,l.redMul(n),o)},c.prototype.dbl=function(){return this.isInfinity()?this:this.curve.zeroA?this._zeroDbl():this.curve.threeA?this._threeDbl():this._dbl()},c.prototype._zeroDbl=function(){var e,t,r;if(this.zOne){var i=this.x.redSqr(),n=this.y.redSqr(),a=n.redSqr(),s=this.x.redAdd(n).redSqr().redISub(i).redISub(a);s=s.redIAdd(s);var o=i.redAdd(i).redIAdd(i),h=o.redSqr().redISub(s).redISub(s),l=a.redIAdd(a);l=l.redIAdd(l),l=l.redIAdd(l),e=h,t=o.redMul(s.redISub(h)).redISub(l),r=this.y.redAdd(this.y)}else{var c=this.x.redSqr(),u=this.y.redSqr(),f=u.redSqr(),d=this.x.redAdd(u).redSqr().redISub(c).redISub(f);d=d.redIAdd(d);var p=c.redAdd(c).redIAdd(c),m=p.redSqr(),g=f.redIAdd(f);g=g.redIAdd(g),g=g.redIAdd(g),e=m.redISub(d).redISub(d),t=p.redMul(d.redISub(e)).redISub(g),r=this.y.redMul(this.z),r=r.redIAdd(r)}return this.curve.jpoint(e,t,r)},c.prototype._threeDbl=function(){var e,t,r;if(this.zOne){var i=this.x.redSqr(),n=this.y.redSqr(),a=n.redSqr(),s=this.x.redAdd(n).redSqr().redISub(i).redISub(a);s=s.redIAdd(s);var o=i.redAdd(i).redIAdd(i).redIAdd(this.curve.a),h=o.redSqr().redISub(s).redISub(s);e=h;var l=a.redIAdd(a);l=l.redIAdd(l),l=l.redIAdd(l),t=o.redMul(s.redISub(h)).redISub(l),r=this.y.redAdd(this.y)}else{var c=this.z.redSqr(),u=this.y.redSqr(),f=this.x.redMul(u),d=this.x.redSub(c).redMul(this.x.redAdd(c));d=d.redAdd(d).redIAdd(d);var p=f.redIAdd(f);p=p.redIAdd(p);var m=p.redAdd(p);e=d.redSqr().redISub(m),r=this.y.redAdd(this.z).redSqr().redISub(u).redISub(c);var g=u.redSqr();g=g.redIAdd(g),g=g.redIAdd(g),g=g.redIAdd(g),t=d.redMul(p.redISub(e)).redISub(g)}return this.curve.jpoint(e,t,r)},c.prototype._dbl=function(){var e=this.curve.a,t=this.x,r=this.y,i=this.z,n=i.redSqr().redSqr(),a=t.redSqr(),s=r.redSqr(),o=a.redAdd(a).redIAdd(a).redIAdd(e.redMul(n)),h=t.redAdd(t);h=h.redIAdd(h);var l=h.redMul(s),c=o.redSqr().redISub(l.redAdd(l)),u=l.redISub(c),f=s.redSqr();f=f.redIAdd(f),f=f.redIAdd(f),f=f.redIAdd(f);var d=o.redMul(u).redISub(f),p=r.redAdd(r).redMul(i);return this.curve.jpoint(c,d,p)},c.prototype.trpl=function(){if(!this.curve.zeroA)return this.dbl().add(this);var e=this.x.redSqr(),t=this.y.redSqr(),r=this.z.redSqr(),i=t.redSqr(),n=e.redAdd(e).redIAdd(e),a=n.redSqr(),s=this.x.redAdd(t).redSqr().redISub(e).redISub(i);s=s.redIAdd(s),s=s.redAdd(s).redIAdd(s),s=s.redISub(a);var o=s.redSqr(),h=i.redIAdd(i);h=h.redIAdd(h),h=h.redIAdd(h),h=h.redIAdd(h);var l=n.redIAdd(s).redSqr().redISub(a).redISub(o).redISub(h),c=t.redMul(l);c=c.redIAdd(c),c=c.redIAdd(c);var u=this.x.redMul(o).redISub(c);u=u.redIAdd(u),u=u.redIAdd(u);var f=this.y.redMul(l.redMul(h.redISub(l)).redISub(s.redMul(o)));f=f.redIAdd(f),f=f.redIAdd(f),f=f.redIAdd(f);var d=this.z.redAdd(s).redSqr().redISub(r).redISub(o);return this.curve.jpoint(u,f,d)},c.prototype.mul=function(e,t){return e=new n(e,t),this.curve._wnafMul(this,e)},c.prototype.eq=function(e){if("affine"===e.type)return this.eq(e.toJ());if(this===e)return!0;var t=this.z.redSqr(),r=e.z.redSqr();if(0!==this.x.redMul(r).redISub(e.x.redMul(t)).cmpn(0))return!1;var i=t.redMul(this.z),n=r.redMul(e.z);return 0===this.y.redMul(n).redISub(e.y.redMul(i)).cmpn(0)},c.prototype.eqXToP=function(e){var t=this.z.redSqr(),r=e.toRed(this.curve.red).redMul(t);if(0===this.x.cmp(r))return!0;for(var i=e.clone(),n=this.curve.redN.redMul(t);;){if(i.iadd(this.curve.n),i.cmp(this.curve.p)>=0)return!1;if(r.redIAdd(n),0===this.x.cmp(r))return!0}},c.prototype.inspect=function(){return this.isInfinity()?"<EC JPoint Infinity>":"<EC JPoint x: "+this.x.toString(16,2)+" y: "+this.y.toString(16,2)+" z: "+this.z.toString(16,2)+">"},c.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},3337:function(e,t,r){"use strict";var i=t;i.version=r("2801").version,i.utils=r("f3a3"),i.rand=r("fdac"),i.curve=r("4136"),i.curves=r("0cbb"),i.ec=r("b9a8"),i.eddsa=r("945d")},"334a":function(e,t,r){t=e.exports=r("4250"),t.Stream=t,t.Readable=t,t.Writable=r("19ea"),t.Duplex=r("e666"),t.Transform=r("09dc"),t.PassThrough=r("0ae3"),t.finished=r("ee93"),t.pipeline=r("fbd5")},"343e":function(e,t,r){"use strict";const i=t;i.der=r("3768"),i.pem=r("85b3")},"34d5":function(e,t,r){t=e.exports=r("cf35"),t.Stream=t,t.Readable=t,t.Writable=r("49ce"),t.Duplex=r("5e7d"),t.Transform=r("f1c8"),t.PassThrough=r("9d28"),t.finished=r("42a7"),t.pipeline=r("ac4f")},"34ef":function(e,t,r){r("ec30")("Uint8",1,(function(e){return function(t,r,i){return e(this,t,r,i)}}))},3505:function(e,t,r){var i=r("8707").Buffer,n=r("8c8a");function a(e,t,r){var a=t.length,s=n(t,e._cache);return e._cache=e._cache.slice(a),e._prev=i.concat([e._prev,r?t:s]),s}t.encrypt=function(e,t,r){var n,s=i.allocUnsafe(0);while(t.length){if(0===e._cache.length&&(e._cache=e._cipher.encryptBlock(e._prev),e._prev=i.allocUnsafe(0)),!(e._cache.length<=t.length)){s=i.concat([s,a(e,t,r)]);break}n=e._cache.length,s=i.concat([s,a(e,t.slice(0,n),r)]),t=t.slice(n)}return s}},"36bd":function(e,t,r){"use strict";var i=r("4bf8"),n=r("77f1"),a=r("9def");e.exports=function(e){var t=i(this),r=a(t.length),s=arguments.length,o=n(s>1?arguments[1]:void 0,r),h=s>2?arguments[2]:void 0,l=void 0===h?r:n(h,r);while(l>o)t[o++]=e;return t}},3768:function(e,t,r){"use strict";const i=r("3fb5"),n=r("c591").Buffer,a=r("8360"),s=r("8b71");function o(e){this.enc="der",this.name=e.name,this.entity=e,this.tree=new h,this.tree._init(e.body)}function h(e){a.call(this,"der",e)}function l(e){return e<10?"0"+e:e}function c(e,t,r,i){let n;if("seqof"===e?e="seq":"setof"===e&&(e="set"),s.tagByName.hasOwnProperty(e))n=s.tagByName[e];else{if("number"!==typeof e||(0|e)!==e)return i.error("Unknown tag: "+e);n=e}return n>=31?i.error("Multi-octet tag encoding unsupported"):(t||(n|=32),n|=s.tagClassByName[r||"universal"]<<6,n)}e.exports=o,o.prototype.encode=function(e,t){return this.tree._encode(e,t).join()},i(h,a),h.prototype._encodeComposite=function(e,t,r,i){const a=c(e,t,r,this.reporter);if(i.length<128){const e=n.alloc(2);return e[0]=a,e[1]=i.length,this._createEncoderBuffer([e,i])}let s=1;for(let n=i.length;n>=256;n>>=8)s++;const o=n.alloc(2+s);o[0]=a,o[1]=128|s;for(let n=1+s,h=i.length;h>0;n--,h>>=8)o[n]=255&h;return this._createEncoderBuffer([o,i])},h.prototype._encodeStr=function(e,t){if("bitstr"===t)return this._createEncoderBuffer([0|e.unused,e.data]);if("bmpstr"===t){const t=n.alloc(2*e.length);for(let r=0;r<e.length;r++)t.writeUInt16BE(e.charCodeAt(r),2*r);return this._createEncoderBuffer(t)}return"numstr"===t?this._isNumstr(e)?this._createEncoderBuffer(e):this.reporter.error("Encoding of string type: numstr supports only digits and space"):"printstr"===t?this._isPrintstr(e)?this._createEncoderBuffer(e):this.reporter.error("Encoding of string type: printstr supports only latin upper and lower case letters, digits, space, apostrophe, left and rigth parenthesis, plus sign, comma, hyphen, dot, slash, colon, equal sign, question mark"):/str$/.test(t)||"objDesc"===t?this._createEncoderBuffer(e):this.reporter.error("Encoding of string type: "+t+" unsupported")},h.prototype._encodeObjid=function(e,t,r){if("string"===typeof e){if(!t)return this.reporter.error("string objid given, but no values map found");if(!t.hasOwnProperty(e))return this.reporter.error("objid not found in values map");e=t[e].split(/[\s.]+/g);for(let t=0;t<e.length;t++)e[t]|=0}else if(Array.isArray(e)){e=e.slice();for(let t=0;t<e.length;t++)e[t]|=0}if(!Array.isArray(e))return this.reporter.error("objid() should be either array or string, got: "+JSON.stringify(e));if(!r){if(e[1]>=40)return this.reporter.error("Second objid identifier OOB");e.splice(0,2,40*e[0]+e[1])}let i=0;for(let n=0;n<e.length;n++){let t=e[n];for(i++;t>=128;t>>=7)i++}const a=n.alloc(i);let s=a.length-1;for(let n=e.length-1;n>=0;n--){let t=e[n];a[s--]=127&t;while((t>>=7)>0)a[s--]=128|127&t}return this._createEncoderBuffer(a)},h.prototype._encodeTime=function(e,t){let r;const i=new Date(e);return"gentime"===t?r=[l(i.getUTCFullYear()),l(i.getUTCMonth()+1),l(i.getUTCDate()),l(i.getUTCHours()),l(i.getUTCMinutes()),l(i.getUTCSeconds()),"Z"].join(""):"utctime"===t?r=[l(i.getUTCFullYear()%100),l(i.getUTCMonth()+1),l(i.getUTCDate()),l(i.getUTCHours()),l(i.getUTCMinutes()),l(i.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+t+" time is not supported yet"),this._encodeStr(r,"octstr")},h.prototype._encodeNull=function(){return this._createEncoderBuffer("")},h.prototype._encodeInt=function(e,t){if("string"===typeof e){if(!t)return this.reporter.error("String int or enum given, but no values map");if(!t.hasOwnProperty(e))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(e));e=t[e]}if("number"!==typeof e&&!n.isBuffer(e)){const t=e.toArray();!e.sign&&128&t[0]&&t.unshift(0),e=n.from(t)}if(n.isBuffer(e)){let t=e.length;0===e.length&&t++;const r=n.alloc(t);return e.copy(r),0===e.length&&(r[0]=0),this._createEncoderBuffer(r)}if(e<128)return this._createEncoderBuffer(e);if(e<256)return this._createEncoderBuffer([0,e]);let r=1;for(let n=e;n>=256;n>>=8)r++;const i=new Array(r);for(let n=i.length-1;n>=0;n--)i[n]=255&e,e>>=8;return 128&i[0]&&i.unshift(0),this._createEncoderBuffer(n.from(i))},h.prototype._encodeBool=function(e){return this._createEncoderBuffer(e?255:0)},h.prototype._use=function(e,t){return"function"===typeof e&&(e=e(t)),e._getEncoder("der").tree},h.prototype._skipDefault=function(e,t,r){const i=this._baseState;let n;if(null===i["default"])return!1;const a=e.join();if(void 0===i.defaultBuffer&&(i.defaultBuffer=this._encodeValue(i["default"],t,r).join()),a.length!==i.defaultBuffer.length)return!1;for(n=0;n<a.length;n++)if(a[n]!==i.defaultBuffer[n])return!1;return!0}},"37e6":function(e,t,r){(function(e){(function(e,t){"use strict";function i(e,t){if(!e)throw new Error(t||"Assertion failed")}function n(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}function a(e,t,r){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(r=t,t=10),this._init(e||0,t||10,r||"be"))}var s;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{s="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:r(21).Buffer}catch(C){}function o(e,t){var r=e.charCodeAt(t);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function h(e,t,r){var i=o(e,r);return r-1>=t&&(i|=o(e,r-1)<<4),i}function l(e,t,r,i){for(var n=0,a=Math.min(e.length,r),s=t;s<a;s++){var o=e.charCodeAt(s)-48;n*=i,n+=o>=49?o-49+10:o>=17?o-17+10:o}return n}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n<e.length&&(16===t?this._parseHex(e,n,r):(this._parseBase(e,t,n),"le"===r&&this._initArray(this.toArray(),t,r)))},a.prototype._initNumber=function(e,t,r){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(i(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),t,r)},a.prototype._initArray=function(e,t,r){if(i("number"===typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var a,s,o=0;if("be"===r)for(n=e.length-1,a=0;n>=0;n-=3)s=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);else if("le"===r)for(n=0,a=0;n<e.length;n+=3)s=e[n]|e[n+1]<<8|e[n+2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var n,a=0,s=0;if("be"===r)for(i=e.length-1;i>=t;i-=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8;else{var o=e.length-t;for(i=o%2===0?t+1:t;i<e.length;i+=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8}this.strip()},a.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var a=e.length-r,s=a%i,o=Math.min(a,a-s)+r,h=0,c=r;c<o;c+=i)h=l(e,c,c+i,t),this.imuln(n),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var u=1;for(h=l(e,c,e.length,t),c=0;c<s;c++)u*=t;this.imuln(u),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this.strip()},a.prototype.copy=function(e){e.words=new Array(this.length);for(var t=0;t<this.length;t++)e.words[t]=this.words[t];e.length=this.length,e.negative=this.negative,e.red=this.red},a.prototype.clone=function(){var e=new a(null);return this.copy(e),e},a.prototype._expand=function(e){while(this.length<e)this.words[this.length++]=0;return this},a.prototype.strip=function(){while(this.length>1&&0===this.words[this.length-1])this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],f=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function d(e){for(var t=new Array(e.bitLength()),r=0;r<t.length;r++){var i=r/26|0,n=r%26;t[r]=(e.words[i]&1<<n)>>>n}return t}function p(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],a=0|t.words[0],s=n*a,o=67108863&s,h=s/67108864|0;r.words[0]=o;for(var l=1;l<i;l++){for(var c=h>>>26,u=67108863&h,f=Math.min(l,t.length-1),d=Math.max(0,l-e.length+1);d<=f;d++){var p=l-d|0;n=0|e.words[p],a=0|t.words[d],s=n*a+u,c+=s/67108864|0,u=67108863&s}r.words[l]=0|u,h=0|c}return 0!==h?r.words[l]=0|h:r.length--,r.strip()}a.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,a=0,s=0;s<this.length;s++){var o=this.words[s],h=(16777215&(o<<n|a)).toString(16);a=o>>>24-n&16777215,r=0!==a||s!==this.length-1?c[6-h.length]+h+r:h+r,n+=2,n>=26&&(n-=26,s--)}0!==a&&(r=a.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var l=u[e],d=f[e];r="";var p=this.clone();p.negative=0;while(!p.isZero()){var m=p.modn(d).toString(e);p=p.idivn(d),r=p.isZero()?m+r:c[l-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return i("undefined"!==typeof s),this.toArrayLike(s,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,r){var n=this.byteLength(),a=r||Math.max(1,n);i(n<=a,"byte array longer than desired length"),i(a>0,"Requested array length <= 0"),this.strip();var s,o,h="le"===t,l=new e(a),c=this.clone();if(h){for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[o]=s;for(;o<a;o++)l[o]=0}else{for(o=0;o<a-n;o++)l[o]=0;for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[a-o-1]=s}return l},Math.clz32?a.prototype._countBits=function(e){return 32-Math.clz32(e)}:a.prototype._countBits=function(e){var t=e,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;t<this.length;t++){var r=this._zeroBits(this.words[t]);if(e+=r,26!==r)break}return e},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(e){return 0!==this.negative?this.abs().inotn(e).iaddn(1):this.clone()},a.prototype.fromTwos=function(e){return this.testn(e-1)?this.notn(e).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(e){while(this.length<e.length)this.words[this.length++]=0;for(var t=0;t<e.length;t++)this.words[t]=this.words[t]|e.words[t];return this.strip()},a.prototype.ior=function(e){return i(0===(this.negative|e.negative)),this.iuor(e)},a.prototype.or=function(e){return this.length>e.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;r<t.length;r++)this.words[r]=this.words[r]&e.words[r];return this.length=t.length,this.strip()},a.prototype.iand=function(e){return i(0===(this.negative|e.negative)),this.iuand(e)},a.prototype.and=function(e){return this.length>e.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;i<r.length;i++)this.words[i]=t.words[i]^r.words[i];if(this!==t)for(;i<t.length;i++)this.words[i]=t.words[i];return this.length=t.length,this.strip()},a.prototype.ixor=function(e){return i(0===(this.negative|e.negative)),this.iuxor(e)},a.prototype.xor=function(e){return this.length>e.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n<t;n++)this.words[n]=67108863&~this.words[n];return r>0&&(this.words[n]=~this.words[n]&67108863>>26-r),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<<n:this.words[r]&~(1<<n),this.strip()},a.prototype.iadd=function(e){var t,r,i;if(0!==this.negative&&0===e.negative)return this.negative=0,t=this.isub(e),this.negative^=1,this._normSign();if(0===this.negative&&0!==e.negative)return e.negative=0,t=this.isub(e),e.negative=1,t._normSign();this.length>e.length?(r=this,i=e):(r=e,i=this);for(var n=0,a=0;a<i.length;a++)t=(0|r.words[a])+(0|i.words[a])+n,this.words[a]=67108863&t,n=t>>>26;for(;0!==n&&a<r.length;a++)t=(0|r.words[a])+n,this.words[a]=67108863&t,n=t>>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(e){var t;return 0!==e.negative&&0===this.negative?(e.negative=0,t=this.sub(e),e.negative^=1,t):0===e.negative&&0!==this.negative?(this.negative=0,t=e.sub(this),this.negative=1,t):this.length>e.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var a=0,s=0;s<i.length;s++)t=(0|r.words[s])-(0|i.words[s])+a,a=t>>26,this.words[s]=67108863&t;for(;0!==a&&s<r.length;s++)t=(0|r.words[s])+a,a=t>>26,this.words[s]=67108863&t;if(0===a&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this.strip()},a.prototype.sub=function(e){return this.clone().isub(e)};var m=function(e,t,r){var i,n,a,s=e.words,o=t.words,h=r.words,l=0,c=0|s[0],u=8191&c,f=c>>>13,d=0|s[1],p=8191&d,m=d>>>13,g=0|s[2],b=8191&g,v=g>>>13,y=0|s[3],w=8191&y,M=y>>>13,_=0|s[4],S=8191&_,k=_>>>13,A=0|s[5],x=8191&A,C=A>>>13,E=0|s[6],T=8191&E,R=E>>>13,I=0|s[7],P=8191&I,O=I>>>13,F=0|s[8],L=8191&F,D=F>>>13,N=0|s[9],B=8191&N,U=N>>>13,j=0|o[0],q=8191&j,z=j>>>13,H=0|o[1],G=8191&H,W=H>>>13,X=0|o[2],V=8191&X,K=X>>>13,Y=0|o[3],Z=8191&Y,$=Y>>>13,J=0|o[4],Q=8191&J,ee=J>>>13,te=0|o[5],re=8191&te,ie=te>>>13,ne=0|o[6],ae=8191&ne,se=ne>>>13,oe=0|o[7],he=8191&oe,le=oe>>>13,ce=0|o[8],ue=8191&ce,fe=ce>>>13,de=0|o[9],pe=8191&de,me=de>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(u,q),n=Math.imul(u,z),n=n+Math.imul(f,q)|0,a=Math.imul(f,z);var ge=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,q),n=Math.imul(p,z),n=n+Math.imul(m,q)|0,a=Math.imul(m,z),i=i+Math.imul(u,G)|0,n=n+Math.imul(u,W)|0,n=n+Math.imul(f,G)|0,a=a+Math.imul(f,W)|0;var be=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(b,q),n=Math.imul(b,z),n=n+Math.imul(v,q)|0,a=Math.imul(v,z),i=i+Math.imul(p,G)|0,n=n+Math.imul(p,W)|0,n=n+Math.imul(m,G)|0,a=a+Math.imul(m,W)|0,i=i+Math.imul(u,V)|0,n=n+Math.imul(u,K)|0,n=n+Math.imul(f,V)|0,a=a+Math.imul(f,K)|0;var ve=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(w,q),n=Math.imul(w,z),n=n+Math.imul(M,q)|0,a=Math.imul(M,z),i=i+Math.imul(b,G)|0,n=n+Math.imul(b,W)|0,n=n+Math.imul(v,G)|0,a=a+Math.imul(v,W)|0,i=i+Math.imul(p,V)|0,n=n+Math.imul(p,K)|0,n=n+Math.imul(m,V)|0,a=a+Math.imul(m,K)|0,i=i+Math.imul(u,Z)|0,n=n+Math.imul(u,$)|0,n=n+Math.imul(f,Z)|0,a=a+Math.imul(f,$)|0;var ye=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(S,q),n=Math.imul(S,z),n=n+Math.imul(k,q)|0,a=Math.imul(k,z),i=i+Math.imul(w,G)|0,n=n+Math.imul(w,W)|0,n=n+Math.imul(M,G)|0,a=a+Math.imul(M,W)|0,i=i+Math.imul(b,V)|0,n=n+Math.imul(b,K)|0,n=n+Math.imul(v,V)|0,a=a+Math.imul(v,K)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,$)|0,n=n+Math.imul(m,Z)|0,a=a+Math.imul(m,$)|0,i=i+Math.imul(u,Q)|0,n=n+Math.imul(u,ee)|0,n=n+Math.imul(f,Q)|0,a=a+Math.imul(f,ee)|0;var we=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(x,q),n=Math.imul(x,z),n=n+Math.imul(C,q)|0,a=Math.imul(C,z),i=i+Math.imul(S,G)|0,n=n+Math.imul(S,W)|0,n=n+Math.imul(k,G)|0,a=a+Math.imul(k,W)|0,i=i+Math.imul(w,V)|0,n=n+Math.imul(w,K)|0,n=n+Math.imul(M,V)|0,a=a+Math.imul(M,K)|0,i=i+Math.imul(b,Z)|0,n=n+Math.imul(b,$)|0,n=n+Math.imul(v,Z)|0,a=a+Math.imul(v,$)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,a=a+Math.imul(m,ee)|0,i=i+Math.imul(u,re)|0,n=n+Math.imul(u,ie)|0,n=n+Math.imul(f,re)|0,a=a+Math.imul(f,ie)|0;var Me=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(T,q),n=Math.imul(T,z),n=n+Math.imul(R,q)|0,a=Math.imul(R,z),i=i+Math.imul(x,G)|0,n=n+Math.imul(x,W)|0,n=n+Math.imul(C,G)|0,a=a+Math.imul(C,W)|0,i=i+Math.imul(S,V)|0,n=n+Math.imul(S,K)|0,n=n+Math.imul(k,V)|0,a=a+Math.imul(k,K)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,$)|0,n=n+Math.imul(M,Z)|0,a=a+Math.imul(M,$)|0,i=i+Math.imul(b,Q)|0,n=n+Math.imul(b,ee)|0,n=n+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,a=a+Math.imul(m,ie)|0,i=i+Math.imul(u,ae)|0,n=n+Math.imul(u,se)|0,n=n+Math.imul(f,ae)|0,a=a+Math.imul(f,se)|0;var _e=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul(P,q),n=Math.imul(P,z),n=n+Math.imul(O,q)|0,a=Math.imul(O,z),i=i+Math.imul(T,G)|0,n=n+Math.imul(T,W)|0,n=n+Math.imul(R,G)|0,a=a+Math.imul(R,W)|0,i=i+Math.imul(x,V)|0,n=n+Math.imul(x,K)|0,n=n+Math.imul(C,V)|0,a=a+Math.imul(C,K)|0,i=i+Math.imul(S,Z)|0,n=n+Math.imul(S,$)|0,n=n+Math.imul(k,Z)|0,a=a+Math.imul(k,$)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(M,Q)|0,a=a+Math.imul(M,ee)|0,i=i+Math.imul(b,re)|0,n=n+Math.imul(b,ie)|0,n=n+Math.imul(v,re)|0,a=a+Math.imul(v,ie)|0,i=i+Math.imul(p,ae)|0,n=n+Math.imul(p,se)|0,n=n+Math.imul(m,ae)|0,a=a+Math.imul(m,se)|0,i=i+Math.imul(u,he)|0,n=n+Math.imul(u,le)|0,n=n+Math.imul(f,he)|0,a=a+Math.imul(f,le)|0;var Se=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(L,q),n=Math.imul(L,z),n=n+Math.imul(D,q)|0,a=Math.imul(D,z),i=i+Math.imul(P,G)|0,n=n+Math.imul(P,W)|0,n=n+Math.imul(O,G)|0,a=a+Math.imul(O,W)|0,i=i+Math.imul(T,V)|0,n=n+Math.imul(T,K)|0,n=n+Math.imul(R,V)|0,a=a+Math.imul(R,K)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,$)|0,n=n+Math.imul(C,Z)|0,a=a+Math.imul(C,$)|0,i=i+Math.imul(S,Q)|0,n=n+Math.imul(S,ee)|0,n=n+Math.imul(k,Q)|0,a=a+Math.imul(k,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(M,re)|0,a=a+Math.imul(M,ie)|0,i=i+Math.imul(b,ae)|0,n=n+Math.imul(b,se)|0,n=n+Math.imul(v,ae)|0,a=a+Math.imul(v,se)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,le)|0,n=n+Math.imul(m,he)|0,a=a+Math.imul(m,le)|0,i=i+Math.imul(u,ue)|0,n=n+Math.imul(u,fe)|0,n=n+Math.imul(f,ue)|0,a=a+Math.imul(f,fe)|0;var ke=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(B,q),n=Math.imul(B,z),n=n+Math.imul(U,q)|0,a=Math.imul(U,z),i=i+Math.imul(L,G)|0,n=n+Math.imul(L,W)|0,n=n+Math.imul(D,G)|0,a=a+Math.imul(D,W)|0,i=i+Math.imul(P,V)|0,n=n+Math.imul(P,K)|0,n=n+Math.imul(O,V)|0,a=a+Math.imul(O,K)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,$)|0,n=n+Math.imul(R,Z)|0,a=a+Math.imul(R,$)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(C,Q)|0,a=a+Math.imul(C,ee)|0,i=i+Math.imul(S,re)|0,n=n+Math.imul(S,ie)|0,n=n+Math.imul(k,re)|0,a=a+Math.imul(k,ie)|0,i=i+Math.imul(w,ae)|0,n=n+Math.imul(w,se)|0,n=n+Math.imul(M,ae)|0,a=a+Math.imul(M,se)|0,i=i+Math.imul(b,he)|0,n=n+Math.imul(b,le)|0,n=n+Math.imul(v,he)|0,a=a+Math.imul(v,le)|0,i=i+Math.imul(p,ue)|0,n=n+Math.imul(p,fe)|0,n=n+Math.imul(m,ue)|0,a=a+Math.imul(m,fe)|0,i=i+Math.imul(u,pe)|0,n=n+Math.imul(u,me)|0,n=n+Math.imul(f,pe)|0,a=a+Math.imul(f,me)|0;var Ae=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(B,G),n=Math.imul(B,W),n=n+Math.imul(U,G)|0,a=Math.imul(U,W),i=i+Math.imul(L,V)|0,n=n+Math.imul(L,K)|0,n=n+Math.imul(D,V)|0,a=a+Math.imul(D,K)|0,i=i+Math.imul(P,Z)|0,n=n+Math.imul(P,$)|0,n=n+Math.imul(O,Z)|0,a=a+Math.imul(O,$)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(R,Q)|0,a=a+Math.imul(R,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(C,re)|0,a=a+Math.imul(C,ie)|0,i=i+Math.imul(S,ae)|0,n=n+Math.imul(S,se)|0,n=n+Math.imul(k,ae)|0,a=a+Math.imul(k,se)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,le)|0,n=n+Math.imul(M,he)|0,a=a+Math.imul(M,le)|0,i=i+Math.imul(b,ue)|0,n=n+Math.imul(b,fe)|0,n=n+Math.imul(v,ue)|0,a=a+Math.imul(v,fe)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,a=a+Math.imul(m,me)|0;var xe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(B,V),n=Math.imul(B,K),n=n+Math.imul(U,V)|0,a=Math.imul(U,K),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,$)|0,n=n+Math.imul(D,Z)|0,a=a+Math.imul(D,$)|0,i=i+Math.imul(P,Q)|0,n=n+Math.imul(P,ee)|0,n=n+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(R,re)|0,a=a+Math.imul(R,ie)|0,i=i+Math.imul(x,ae)|0,n=n+Math.imul(x,se)|0,n=n+Math.imul(C,ae)|0,a=a+Math.imul(C,se)|0,i=i+Math.imul(S,he)|0,n=n+Math.imul(S,le)|0,n=n+Math.imul(k,he)|0,a=a+Math.imul(k,le)|0,i=i+Math.imul(w,ue)|0,n=n+Math.imul(w,fe)|0,n=n+Math.imul(M,ue)|0,a=a+Math.imul(M,fe)|0,i=i+Math.imul(b,pe)|0,n=n+Math.imul(b,me)|0,n=n+Math.imul(v,pe)|0,a=a+Math.imul(v,me)|0;var Ce=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(B,Z),n=Math.imul(B,$),n=n+Math.imul(U,Z)|0,a=Math.imul(U,$),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(D,Q)|0,a=a+Math.imul(D,ee)|0,i=i+Math.imul(P,re)|0,n=n+Math.imul(P,ie)|0,n=n+Math.imul(O,re)|0,a=a+Math.imul(O,ie)|0,i=i+Math.imul(T,ae)|0,n=n+Math.imul(T,se)|0,n=n+Math.imul(R,ae)|0,a=a+Math.imul(R,se)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,le)|0,n=n+Math.imul(C,he)|0,a=a+Math.imul(C,le)|0,i=i+Math.imul(S,ue)|0,n=n+Math.imul(S,fe)|0,n=n+Math.imul(k,ue)|0,a=a+Math.imul(k,fe)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(M,pe)|0,a=a+Math.imul(M,me)|0;var Ee=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(B,Q),n=Math.imul(B,ee),n=n+Math.imul(U,Q)|0,a=Math.imul(U,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(D,re)|0,a=a+Math.imul(D,ie)|0,i=i+Math.imul(P,ae)|0,n=n+Math.imul(P,se)|0,n=n+Math.imul(O,ae)|0,a=a+Math.imul(O,se)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,le)|0,n=n+Math.imul(R,he)|0,a=a+Math.imul(R,le)|0,i=i+Math.imul(x,ue)|0,n=n+Math.imul(x,fe)|0,n=n+Math.imul(C,ue)|0,a=a+Math.imul(C,fe)|0,i=i+Math.imul(S,pe)|0,n=n+Math.imul(S,me)|0,n=n+Math.imul(k,pe)|0,a=a+Math.imul(k,me)|0;var Te=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(B,re),n=Math.imul(B,ie),n=n+Math.imul(U,re)|0,a=Math.imul(U,ie),i=i+Math.imul(L,ae)|0,n=n+Math.imul(L,se)|0,n=n+Math.imul(D,ae)|0,a=a+Math.imul(D,se)|0,i=i+Math.imul(P,he)|0,n=n+Math.imul(P,le)|0,n=n+Math.imul(O,he)|0,a=a+Math.imul(O,le)|0,i=i+Math.imul(T,ue)|0,n=n+Math.imul(T,fe)|0,n=n+Math.imul(R,ue)|0,a=a+Math.imul(R,fe)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(C,pe)|0,a=a+Math.imul(C,me)|0;var Re=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Re>>>26)|0,Re&=67108863,i=Math.imul(B,ae),n=Math.imul(B,se),n=n+Math.imul(U,ae)|0,a=Math.imul(U,se),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,le)|0,n=n+Math.imul(D,he)|0,a=a+Math.imul(D,le)|0,i=i+Math.imul(P,ue)|0,n=n+Math.imul(P,fe)|0,n=n+Math.imul(O,ue)|0,a=a+Math.imul(O,fe)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(R,pe)|0,a=a+Math.imul(R,me)|0;var Ie=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(B,he),n=Math.imul(B,le),n=n+Math.imul(U,he)|0,a=Math.imul(U,le),i=i+Math.imul(L,ue)|0,n=n+Math.imul(L,fe)|0,n=n+Math.imul(D,ue)|0,a=a+Math.imul(D,fe)|0,i=i+Math.imul(P,pe)|0,n=n+Math.imul(P,me)|0,n=n+Math.imul(O,pe)|0,a=a+Math.imul(O,me)|0;var Pe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(B,ue),n=Math.imul(B,fe),n=n+Math.imul(U,ue)|0,a=Math.imul(U,fe),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(D,pe)|0,a=a+Math.imul(D,me)|0;var Oe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(B,pe),n=Math.imul(B,me),n=n+Math.imul(U,pe)|0,a=Math.imul(U,me);var Fe=(l+i|0)+((8191&n)<<13)|0;return l=(a+(n>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,h[0]=ge,h[1]=be,h[2]=ve,h[3]=ye,h[4]=we,h[5]=Me,h[6]=_e,h[7]=Se,h[8]=ke,h[9]=Ae,h[10]=xe,h[11]=Ce,h[12]=Ee,h[13]=Te,h[14]=Re,h[15]=Ie,h[16]=Pe,h[17]=Oe,h[18]=Fe,0!==l&&(h[19]=l,r.length++),r};function g(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,a=0;a<r.length-1;a++){var s=n;n=0;for(var o=67108863&i,h=Math.min(a,t.length-1),l=Math.max(0,a-e.length+1);l<=h;l++){var c=a-l,u=0|e.words[c],f=0|t.words[l],d=u*f,p=67108863&d;s=s+(d/67108864|0)|0,p=p+o|0,o=67108863&p,s=s+(p>>>26)|0,n+=s>>>26,s&=67108863}r.words[a]=o,i=s,s=n}return 0!==i?r.words[a]=i:r.length--,r.strip()}function b(e,t,r){var i=new v;return i.mulp(e,t,r)}function v(e,t){this.x=e,this.y=t}Math.imul||(m=p),a.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?m(this,e,t):i<63?p(this,e,t):i<1024?g(this,e,t):b(this,e,t),r},v.prototype.makeRBT=function(e){for(var t=new Array(e),r=a.prototype._countBits(e)-1,i=0;i<e;i++)t[i]=this.revBin(i,r,e);return t},v.prototype.revBin=function(e,t,r){if(0===e||e===r-1)return e;for(var i=0,n=0;n<t;n++)i|=(1&e)<<t-n-1,e>>=1;return i},v.prototype.permute=function(e,t,r,i,n,a){for(var s=0;s<a;s++)i[s]=t[e[s]],n[s]=r[e[s]]},v.prototype.transform=function(e,t,r,i,n,a){this.permute(a,e,t,r,i,n);for(var s=1;s<n;s<<=1)for(var o=s<<1,h=Math.cos(2*Math.PI/o),l=Math.sin(2*Math.PI/o),c=0;c<n;c+=o)for(var u=h,f=l,d=0;d<s;d++){var p=r[c+d],m=i[c+d],g=r[c+d+s],b=i[c+d+s],v=u*g-f*b;b=u*b+f*g,g=v,r[c+d]=p+g,i[c+d]=m+b,r[c+d+s]=p-g,i[c+d+s]=m-b,d!==o&&(v=h*u-l*f,f=h*f+l*u,u=v)}},v.prototype.guessLen13b=function(e,t){var r=1|Math.max(t,e),i=1&r,n=0;for(r=r/2|0;r;r>>>=1)n++;return 1<<n+1+i},v.prototype.conjugate=function(e,t,r){if(!(r<=1))for(var i=0;i<r/2;i++){var n=e[i];e[i]=e[r-i-1],e[r-i-1]=n,n=t[i],t[i]=-t[r-i-1],t[r-i-1]=-n}},v.prototype.normalize13b=function(e,t){for(var r=0,i=0;i<t/2;i++){var n=8192*Math.round(e[2*i+1]/t)+Math.round(e[2*i]/t)+r;e[i]=67108863&n,r=n<67108864?0:n/67108864|0}return e},v.prototype.convert13b=function(e,t,r,n){for(var a=0,s=0;s<t;s++)a+=0|e[s],r[2*s]=8191&a,a>>>=13,r[2*s+1]=8191&a,a>>>=13;for(s=2*t;s<n;++s)r[s]=0;i(0===a),i(0===(-8192&a))},v.prototype.stub=function(e){for(var t=new Array(e),r=0;r<e;r++)t[r]=0;return t},v.prototype.mulp=function(e,t,r){var i=2*this.guessLen13b(e.length,t.length),n=this.makeRBT(i),a=this.stub(i),s=new Array(i),o=new Array(i),h=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),f=r.words;f.length=i,this.convert13b(e.words,e.length,s,i),this.convert13b(t.words,t.length,l,i),this.transform(s,a,o,h,i,n),this.transform(l,a,c,u,i,n);for(var d=0;d<i;d++){var p=o[d]*c[d]-h[d]*u[d];h[d]=o[d]*u[d]+h[d]*c[d],o[d]=p}return this.conjugate(o,h,i),this.transform(o,h,f,a,i,n),this.conjugate(f,a,i),this.normalize13b(f,i),r.negative=e.negative^t.negative,r.length=e.length+t.length,r.strip()},a.prototype.mul=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),this.mulTo(e,t)},a.prototype.mulf=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),b(this,e,t)},a.prototype.imul=function(e){return this.clone().mulTo(e,this)},a.prototype.imuln=function(e){i("number"===typeof e),i(e<67108864);for(var t=0,r=0;r<this.length;r++){var n=(0|this.words[r])*e,a=(67108863&n)+(67108863&t);t>>=26,t+=n/67108864|0,t+=a>>>26,this.words[r]=67108863&a}return 0!==t&&(this.words[r]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=d(e);if(0===t.length)return new a(1);for(var r=this,i=0;i<t.length;i++,r=r.sqr())if(0!==t[i])break;if(++i<t.length)for(var n=r.sqr();i<t.length;i++,n=n.sqr())0!==t[i]&&(r=r.mul(n));return r},a.prototype.iushln=function(e){i("number"===typeof e&&e>=0);var t,r=e%26,n=(e-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var s=0;for(t=0;t<this.length;t++){var o=this.words[t]&a,h=(0|this.words[t])-o<<r;this.words[t]=h|s,s=o>>>26-r}s&&(this.words[t]=s,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t<n;t++)this.words[t]=0;this.length+=n}return this.strip()},a.prototype.ishln=function(e){return i(0===this.negative),this.iushln(e)},a.prototype.iushrn=function(e,t,r){var n;i("number"===typeof e&&e>=0),n=t?(t-t%26)/26:0;var a=e%26,s=Math.min((e-a)/26,this.length),o=67108863^67108863>>>a<<a,h=r;if(n-=s,n=Math.max(0,n),h){for(var l=0;l<s;l++)h.words[l]=this.words[l];h.length=s}if(0===s);else if(this.length>s)for(this.length-=s,l=0;l<this.length;l++)this.words[l]=this.words[l+s];else this.words[0]=0,this.length=1;var c=0;for(l=this.length-1;l>=0&&(0!==c||l>=n);l--){var u=0|this.words[l];this.words[l]=c<<26-a|u>>>a,c=u&o}return h&&0!==c&&(h.words[h.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return!1;var a=this.words[r];return!!(a&n)},a.prototype.imaskn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<<t;this.words[this.length-1]&=n}return this.strip()},a.prototype.maskn=function(e){return this.clone().imaskn(e)},a.prototype.iaddn=function(e){return i("number"===typeof e),i(e<67108864),e<0?this.isubn(-e):0!==this.negative?1===this.length&&(0|this.words[0])<e?(this.words[0]=e-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(e),this.negative=1,this):this._iaddn(e)},a.prototype._iaddn=function(e){this.words[0]+=e;for(var t=0;t<this.length&&this.words[t]>=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t<this.length&&this.words[t]<0;t++)this.words[t]+=67108864,this.words[t+1]-=1;return this.strip()},a.prototype.addn=function(e){return this.clone().iaddn(e)},a.prototype.subn=function(e){return this.clone().isubn(e)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(e,t,r){var n,a,s=e.length+r;this._expand(s);var o=0;for(n=0;n<e.length;n++){a=(0|this.words[n+r])+o;var h=(0|e.words[n])*t;a-=67108863&h,o=(a>>26)-(h/67108864|0),this.words[n+r]=67108863&a}for(;n<this.length-r;n++)a=(0|this.words[n+r])+o,o=a>>26,this.words[n+r]=67108863&a;if(0===o)return this.strip();for(i(-1===o),o=0,n=0;n<this.length;n++)a=-(0|this.words[n])+o,o=a>>26,this.words[n]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,s=0|n.words[n.length-1],o=this._countBits(s);r=26-o,0!==r&&(n=n.ushln(r),i.iushln(r),s=0|n.words[n.length-1]);var h,l=i.length-n.length;if("mod"!==t){h=new a(null),h.length=l+1,h.words=new Array(h.length);for(var c=0;c<h.length;c++)h.words[c]=0}var u=i.clone()._ishlnsubmul(n,1,l);0===u.negative&&(i=u,h&&(h.words[l]=1));for(var f=l-1;f>=0;f--){var d=67108864*(0|i.words[n.length+f])+(0|i.words[n.length+f-1]);d=Math.min(d/s|0,67108863),i._ishlnsubmul(n,d,f);while(0!==i.negative)d--,i.negative=0,i._ishlnsubmul(n,1,f),i.isZero()||(i.negative^=1);h&&(h.words[f]=d)}return h&&h.strip(),i.strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:h||null,mod:i}},a.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(o=this.neg().divmod(e,t),"mod"!==t&&(n=o.div.neg()),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.iadd(e)),{div:n,mod:s}):0===this.negative&&0!==e.negative?(o=this.divmod(e.neg(),t),"mod"!==t&&(n=o.div.neg()),{div:n,mod:o.mod}):0!==(this.negative&e.negative)?(o=this.neg().divmod(e.neg(),t),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.isub(e)),{div:o.div,mod:s}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var n,s,o},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),a=r.cmp(i);return a<0||1===n&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){i(e<=67108863);for(var t=(1<<26)%e,r=0,n=this.length-1;n>=0;n--)r=(t*r+(0|this.words[n]))%e;return r},a.prototype.idivn=function(e){i(e<=67108863);for(var t=0,r=this.length-1;r>=0;r--){var n=(0|this.words[r])+67108864*t;this.words[r]=n/e|0,t=n%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new a(1),s=new a(0),o=new a(0),h=new a(1),l=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++l;var c=r.clone(),u=t.clone();while(!t.isZero()){for(var f=0,d=1;0===(t.words[0]&d)&&f<26;++f,d<<=1);if(f>0){t.iushrn(f);while(f-- >0)(n.isOdd()||s.isOdd())&&(n.iadd(c),s.isub(u)),n.iushrn(1),s.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(o.isOdd()||h.isOdd())&&(o.iadd(c),h.isub(u)),o.iushrn(1),h.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(o),s.isub(h)):(r.isub(t),o.isub(n),h.isub(s))}return{a:o,b:h,gcd:r.iushln(l)}},a.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,s=new a(1),o=new a(0),h=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var l=0,c=1;0===(t.words[0]&c)&&l<26;++l,c<<=1);if(l>0){t.iushrn(l);while(l-- >0)s.isOdd()&&s.iadd(h),s.iushrn(1)}for(var u=0,f=1;0===(r.words[0]&f)&&u<26;++u,f<<=1);if(u>0){r.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(h),o.iushrn(1)}t.cmp(r)>=0?(t.isub(r),s.isub(o)):(r.isub(t),o.isub(s))}return n=0===t.cmpn(1)?s:o,n.cmpn(0)<0&&n.iadd(e),n},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var a=t;t=r,r=a}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return this._expand(r+1),this.words[r]|=n,this;for(var a=n,s=r;0!==a&&s<this.length;s++){var o=0|this.words[s];o+=a,a=o>>>26,o&=67108863,this.words[s]=o}return 0!==a&&(this.words[s]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:n<e?-1:1}return 0!==this.negative?0|-t:t},a.prototype.cmp=function(e){if(0!==this.negative&&0===e.negative)return-1;if(0===this.negative&&0!==e.negative)return 1;var t=this.ucmp(e);return 0!==this.negative?0|-t:t},a.prototype.ucmp=function(e){if(this.length>e.length)return 1;if(this.length<e.length)return-1;for(var t=0,r=this.length-1;r>=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){i<n?t=-1:i>n&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new A(e)},a.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var y={k256:null,p224:null,p192:null,p25519:null};function w(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function M(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function _(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function S(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function k(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function A(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){A.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}w.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},w.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t<this.n?-1:r.ucmp(this.p);return 0===i?(r.words[0]=0,r.length=1):i>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(e,t){e.iushrn(this.n,0,t)},w.prototype.imulK=function(e){return e.imul(this.k)},n(M,w),M.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n<i;n++)t.words[n]=e.words[n];if(t.length=i,e.length<=9)return e.words[0]=0,void(e.length=1);var a=e.words[9];for(t.words[t.length++]=a&r,n=10;n<e.length;n++){var s=0|e.words[n];e.words[n-10]=(s&r)<<4|a>>>22,a=s}a>>>=22,e.words[n-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},M.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r<e.length;r++){var i=0|e.words[r];t+=977*i,e.words[r]=67108863&t,t=64*i+(t/67108864|0)}return 0===e.words[e.length-1]&&(e.length--,0===e.words[e.length-1]&&e.length--),e},n(_,w),n(S,w),n(k,w),k.prototype.imulK=function(e){for(var t=0,r=0;r<e.length;r++){var i=19*(0|e.words[r])+t,n=67108863&i;i>>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(y[e])return y[e];var t;if("k256"===e)t=new M;else if("p224"===e)t=new _;else if("p192"===e)t=new S;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new k}return y[e]=t,t},A.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},A.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},A.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},A.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},A.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},A.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},A.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},A.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},A.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},A.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},A.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},A.prototype.isqr=function(e){return this.imul(e,e.clone())},A.prototype.sqr=function(e){return this.mul(e,e)},A.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new a(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),s=0;while(!n.isZero()&&0===n.andln(1))s++,n.iushrn(1);i(!n.isZero());var o=new a(1).toRed(this),h=o.redNeg(),l=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new a(2*c*c).toRed(this);while(0!==this.pow(c,l).cmp(h))c.redIAdd(h);var u=this.pow(c,n),f=this.pow(e,n.addn(1).iushrn(1)),d=this.pow(e,n),p=s;while(0!==d.cmp(o)){for(var m=d,g=0;0!==m.cmp(o);g++)m=m.redSqr();i(g<p);var b=this.pow(u,new a(1).iushln(p-g-1));f=f.redMul(b),u=b.redSqr(),d=d.redMul(u),p=g}return f},A.prototype.invm=function(e){var t=e._invmp(this.m);return 0!==t.negative?(t.negative=0,this.imod(t).redNeg()):this.imod(t)},A.prototype.pow=function(e,t){if(t.isZero())return new a(1).toRed(this);if(0===t.cmpn(1))return e.clone();var r=4,i=new Array(1<<r);i[0]=new a(1).toRed(this),i[1]=e;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],e);var s=i[0],o=0,h=0,l=t.bitLength()%26;for(0===l&&(l=26),n=t.length-1;n>=0;n--){for(var c=t.words[n],u=l-1;u>=0;u--){var f=c>>u&1;s!==i[0]&&(s=this.sqr(s)),0!==f||0!==o?(o<<=1,o|=f,h++,(h===r||0===n&&0===u)&&(s=this.mul(s,i[o]),h=0,o=0)):h=0}l=26}return s},A.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},A.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new x(e)},n(x,A),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),a=n;return n.cmp(this.m)>=0?a=n.isub(this.m):n.cmpn(0)<0&&(a=n.iadd(this.m)),a._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},x.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}})(e,this)}).call(this,r("62e4")(e))},"380f":function(e,t,r){"use strict";var i=r("f3a3"),n=i.assert,a=i.parseBytes,s=i.cachedProperty;function o(e,t){this.eddsa=e,this._secret=a(t.secret),e.isPoint(t.pub)?this._pub=t.pub:this._pubBytes=a(t.pub)}o.fromPublic=function(e,t){return t instanceof o?t:new o(e,{pub:t})},o.fromSecret=function(e,t){return t instanceof o?t:new o(e,{secret:t})},o.prototype.secret=function(){return this._secret},s(o,"pubBytes",(function(){return this.eddsa.encodePoint(this.pub())})),s(o,"pub",(function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())})),s(o,"privBytes",(function(){var e=this.eddsa,t=this.hash(),r=e.encodingLength-1,i=t.slice(0,e.encodingLength);return i[0]&=248,i[r]&=127,i[r]|=64,i})),s(o,"priv",(function(){return this.eddsa.decodeInt(this.privBytes())})),s(o,"hash",(function(){return this.eddsa.hash().update(this.secret()).digest()})),s(o,"messagePrefix",(function(){return this.hash().slice(this.eddsa.encodingLength)})),o.prototype.sign=function(e){return n(this._secret,"KeyPair can only verify"),this.eddsa.sign(e,this)},o.prototype.verify=function(e,t){return this.eddsa.verify(e,t,this)},o.prototype.getSecret=function(e){return n(this._secret,"KeyPair is public only"),i.encode(this.secret(),e)},o.prototype.getPublic=function(e){return i.encode(this.pubBytes(),e)},e.exports=o},"399f":function(e,t,r){(function(e){(function(e,t){"use strict";function i(e,t){if(!e)throw new Error(t||"Assertion failed")}function n(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}function a(e,t,r){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(r=t,t=10),this._init(e||0,t||10,r||"be"))}var s;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{s="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:r(18).Buffer}catch(R){}function o(e,t){var r=e.charCodeAt(t);return r>=48&&r<=57?r-48:r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:void i(!1,"Invalid character in "+e)}function h(e,t,r){var i=o(e,r);return r-1>=t&&(i|=o(e,r-1)<<4),i}function l(e,t,r,n){for(var a=0,s=0,o=Math.min(e.length,r),h=t;h<o;h++){var l=e.charCodeAt(h)-48;a*=n,s=l>=49?l-49+10:l>=17?l-17+10:l,i(l>=0&&s<n,"Invalid character"),a+=s}return a}function c(e,t){e.words=t.words,e.length=t.length,e.negative=t.negative,e.red=t.red}if(a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n<e.length&&(16===t?this._parseHex(e,n,r):(this._parseBase(e,t,n),"le"===r&&this._initArray(this.toArray(),t,r)))},a.prototype._initNumber=function(e,t,r){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(i(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),t,r)},a.prototype._initArray=function(e,t,r){if(i("number"===typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var a,s,o=0;if("be"===r)for(n=e.length-1,a=0;n>=0;n-=3)s=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);else if("le"===r)for(n=0,a=0;n<e.length;n+=3)s=e[n]|e[n+1]<<8|e[n+2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);return this._strip()},a.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var n,a=0,s=0;if("be"===r)for(i=e.length-1;i>=t;i-=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8;else{var o=e.length-t;for(i=o%2===0?t+1:t;i<e.length;i+=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8}this._strip()},a.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var a=e.length-r,s=a%i,o=Math.min(a,a-s)+r,h=0,c=r;c<o;c+=i)h=l(e,c,c+i,t),this.imuln(n),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var u=1;for(h=l(e,c,e.length,t),c=0;c<s;c++)u*=t;this.imuln(u),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this._strip()},a.prototype.copy=function(e){e.words=new Array(this.length);for(var t=0;t<this.length;t++)e.words[t]=this.words[t];e.length=this.length,e.negative=this.negative,e.red=this.red},a.prototype._move=function(e){c(e,this)},a.prototype.clone=function(){var e=new a(null);return this.copy(e),e},a.prototype._expand=function(e){while(this.length<e)this.words[this.length++]=0;return this},a.prototype._strip=function(){while(this.length>1&&0===this.words[this.length-1])this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},"undefined"!==typeof Symbol&&"function"===typeof Symbol.for)try{a.prototype[Symbol.for("nodejs.util.inspect.custom")]=u}catch(R){a.prototype.inspect=u}else a.prototype.inspect=u;function u(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"}var f=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],d=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],p=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];a.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,a=0,s=0;s<this.length;s++){var o=this.words[s],h=(16777215&(o<<n|a)).toString(16);a=o>>>24-n&16777215,n+=2,n>=26&&(n-=26,s--),r=0!==a||s!==this.length-1?f[6-h.length]+h+r:h+r}0!==a&&(r=a.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var l=d[e],c=p[e];r="";var u=this.clone();u.negative=0;while(!u.isZero()){var m=u.modrn(c).toString(e);u=u.idivn(c),r=u.isZero()?m+r:f[l-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16,2)},s&&(a.prototype.toBuffer=function(e,t){return this.toArrayLike(s,e,t)}),a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)};var m=function(e,t){return e.allocUnsafe?e.allocUnsafe(t):new e(t)};function g(e){for(var t=new Array(e.bitLength()),r=0;r<t.length;r++){var i=r/26|0,n=r%26;t[r]=e.words[i]>>>n&1}return t}function b(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],a=0|t.words[0],s=n*a,o=67108863&s,h=s/67108864|0;r.words[0]=o;for(var l=1;l<i;l++){for(var c=h>>>26,u=67108863&h,f=Math.min(l,t.length-1),d=Math.max(0,l-e.length+1);d<=f;d++){var p=l-d|0;n=0|e.words[p],a=0|t.words[d],s=n*a+u,c+=s/67108864|0,u=67108863&s}r.words[l]=0|u,h=0|c}return 0!==h?r.words[l]=0|h:r.length--,r._strip()}a.prototype.toArrayLike=function(e,t,r){this._strip();var n=this.byteLength(),a=r||Math.max(1,n);i(n<=a,"byte array longer than desired length"),i(a>0,"Requested array length <= 0");var s=m(e,a),o="le"===t?"LE":"BE";return this["_toArrayLike"+o](s,n),s},a.prototype._toArrayLikeLE=function(e,t){for(var r=0,i=0,n=0,a=0;n<this.length;n++){var s=this.words[n]<<a|i;e[r++]=255&s,r<e.length&&(e[r++]=s>>8&255),r<e.length&&(e[r++]=s>>16&255),6===a?(r<e.length&&(e[r++]=s>>24&255),i=0,a=0):(i=s>>>24,a+=2)}if(r<e.length){e[r++]=i;while(r<e.length)e[r++]=0}},a.prototype._toArrayLikeBE=function(e,t){for(var r=e.length-1,i=0,n=0,a=0;n<this.length;n++){var s=this.words[n]<<a|i;e[r--]=255&s,r>=0&&(e[r--]=s>>8&255),r>=0&&(e[r--]=s>>16&255),6===a?(r>=0&&(e[r--]=s>>24&255),i=0,a=0):(i=s>>>24,a+=2)}if(r>=0){e[r--]=i;while(r>=0)e[r--]=0}},Math.clz32?a.prototype._countBits=function(e){return 32-Math.clz32(e)}:a.prototype._countBits=function(e){var t=e,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;t<this.length;t++){var r=this._zeroBits(this.words[t]);if(e+=r,26!==r)break}return e},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(e){return 0!==this.negative?this.abs().inotn(e).iaddn(1):this.clone()},a.prototype.fromTwos=function(e){return this.testn(e-1)?this.notn(e).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(e){while(this.length<e.length)this.words[this.length++]=0;for(var t=0;t<e.length;t++)this.words[t]=this.words[t]|e.words[t];return this._strip()},a.prototype.ior=function(e){return i(0===(this.negative|e.negative)),this.iuor(e)},a.prototype.or=function(e){return this.length>e.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;r<t.length;r++)this.words[r]=this.words[r]&e.words[r];return this.length=t.length,this._strip()},a.prototype.iand=function(e){return i(0===(this.negative|e.negative)),this.iuand(e)},a.prototype.and=function(e){return this.length>e.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;i<r.length;i++)this.words[i]=t.words[i]^r.words[i];if(this!==t)for(;i<t.length;i++)this.words[i]=t.words[i];return this.length=t.length,this._strip()},a.prototype.ixor=function(e){return i(0===(this.negative|e.negative)),this.iuxor(e)},a.prototype.xor=function(e){return this.length>e.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n<t;n++)this.words[n]=67108863&~this.words[n];return r>0&&(this.words[n]=~this.words[n]&67108863>>26-r),this._strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<<n:this.words[r]&~(1<<n),this._strip()},a.prototype.iadd=function(e){var t,r,i;if(0!==this.negative&&0===e.negative)return this.negative=0,t=this.isub(e),this.negative^=1,this._normSign();if(0===this.negative&&0!==e.negative)return e.negative=0,t=this.isub(e),e.negative=1,t._normSign();this.length>e.length?(r=this,i=e):(r=e,i=this);for(var n=0,a=0;a<i.length;a++)t=(0|r.words[a])+(0|i.words[a])+n,this.words[a]=67108863&t,n=t>>>26;for(;0!==n&&a<r.length;a++)t=(0|r.words[a])+n,this.words[a]=67108863&t,n=t>>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(e){var t;return 0!==e.negative&&0===this.negative?(e.negative=0,t=this.sub(e),e.negative^=1,t):0===e.negative&&0!==this.negative?(this.negative=0,t=e.sub(this),this.negative=1,t):this.length>e.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var a=0,s=0;s<i.length;s++)t=(0|r.words[s])-(0|i.words[s])+a,a=t>>26,this.words[s]=67108863&t;for(;0!==a&&s<r.length;s++)t=(0|r.words[s])+a,a=t>>26,this.words[s]=67108863&t;if(0===a&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this._strip()},a.prototype.sub=function(e){return this.clone().isub(e)};var v=function(e,t,r){var i,n,a,s=e.words,o=t.words,h=r.words,l=0,c=0|s[0],u=8191&c,f=c>>>13,d=0|s[1],p=8191&d,m=d>>>13,g=0|s[2],b=8191&g,v=g>>>13,y=0|s[3],w=8191&y,M=y>>>13,_=0|s[4],S=8191&_,k=_>>>13,A=0|s[5],x=8191&A,C=A>>>13,E=0|s[6],T=8191&E,R=E>>>13,I=0|s[7],P=8191&I,O=I>>>13,F=0|s[8],L=8191&F,D=F>>>13,N=0|s[9],B=8191&N,U=N>>>13,j=0|o[0],q=8191&j,z=j>>>13,H=0|o[1],G=8191&H,W=H>>>13,X=0|o[2],V=8191&X,K=X>>>13,Y=0|o[3],Z=8191&Y,$=Y>>>13,J=0|o[4],Q=8191&J,ee=J>>>13,te=0|o[5],re=8191&te,ie=te>>>13,ne=0|o[6],ae=8191&ne,se=ne>>>13,oe=0|o[7],he=8191&oe,le=oe>>>13,ce=0|o[8],ue=8191&ce,fe=ce>>>13,de=0|o[9],pe=8191&de,me=de>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(u,q),n=Math.imul(u,z),n=n+Math.imul(f,q)|0,a=Math.imul(f,z);var ge=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,q),n=Math.imul(p,z),n=n+Math.imul(m,q)|0,a=Math.imul(m,z),i=i+Math.imul(u,G)|0,n=n+Math.imul(u,W)|0,n=n+Math.imul(f,G)|0,a=a+Math.imul(f,W)|0;var be=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(b,q),n=Math.imul(b,z),n=n+Math.imul(v,q)|0,a=Math.imul(v,z),i=i+Math.imul(p,G)|0,n=n+Math.imul(p,W)|0,n=n+Math.imul(m,G)|0,a=a+Math.imul(m,W)|0,i=i+Math.imul(u,V)|0,n=n+Math.imul(u,K)|0,n=n+Math.imul(f,V)|0,a=a+Math.imul(f,K)|0;var ve=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(w,q),n=Math.imul(w,z),n=n+Math.imul(M,q)|0,a=Math.imul(M,z),i=i+Math.imul(b,G)|0,n=n+Math.imul(b,W)|0,n=n+Math.imul(v,G)|0,a=a+Math.imul(v,W)|0,i=i+Math.imul(p,V)|0,n=n+Math.imul(p,K)|0,n=n+Math.imul(m,V)|0,a=a+Math.imul(m,K)|0,i=i+Math.imul(u,Z)|0,n=n+Math.imul(u,$)|0,n=n+Math.imul(f,Z)|0,a=a+Math.imul(f,$)|0;var ye=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(S,q),n=Math.imul(S,z),n=n+Math.imul(k,q)|0,a=Math.imul(k,z),i=i+Math.imul(w,G)|0,n=n+Math.imul(w,W)|0,n=n+Math.imul(M,G)|0,a=a+Math.imul(M,W)|0,i=i+Math.imul(b,V)|0,n=n+Math.imul(b,K)|0,n=n+Math.imul(v,V)|0,a=a+Math.imul(v,K)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,$)|0,n=n+Math.imul(m,Z)|0,a=a+Math.imul(m,$)|0,i=i+Math.imul(u,Q)|0,n=n+Math.imul(u,ee)|0,n=n+Math.imul(f,Q)|0,a=a+Math.imul(f,ee)|0;var we=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(x,q),n=Math.imul(x,z),n=n+Math.imul(C,q)|0,a=Math.imul(C,z),i=i+Math.imul(S,G)|0,n=n+Math.imul(S,W)|0,n=n+Math.imul(k,G)|0,a=a+Math.imul(k,W)|0,i=i+Math.imul(w,V)|0,n=n+Math.imul(w,K)|0,n=n+Math.imul(M,V)|0,a=a+Math.imul(M,K)|0,i=i+Math.imul(b,Z)|0,n=n+Math.imul(b,$)|0,n=n+Math.imul(v,Z)|0,a=a+Math.imul(v,$)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,a=a+Math.imul(m,ee)|0,i=i+Math.imul(u,re)|0,n=n+Math.imul(u,ie)|0,n=n+Math.imul(f,re)|0,a=a+Math.imul(f,ie)|0;var Me=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(T,q),n=Math.imul(T,z),n=n+Math.imul(R,q)|0,a=Math.imul(R,z),i=i+Math.imul(x,G)|0,n=n+Math.imul(x,W)|0,n=n+Math.imul(C,G)|0,a=a+Math.imul(C,W)|0,i=i+Math.imul(S,V)|0,n=n+Math.imul(S,K)|0,n=n+Math.imul(k,V)|0,a=a+Math.imul(k,K)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,$)|0,n=n+Math.imul(M,Z)|0,a=a+Math.imul(M,$)|0,i=i+Math.imul(b,Q)|0,n=n+Math.imul(b,ee)|0,n=n+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,a=a+Math.imul(m,ie)|0,i=i+Math.imul(u,ae)|0,n=n+Math.imul(u,se)|0,n=n+Math.imul(f,ae)|0,a=a+Math.imul(f,se)|0;var _e=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul(P,q),n=Math.imul(P,z),n=n+Math.imul(O,q)|0,a=Math.imul(O,z),i=i+Math.imul(T,G)|0,n=n+Math.imul(T,W)|0,n=n+Math.imul(R,G)|0,a=a+Math.imul(R,W)|0,i=i+Math.imul(x,V)|0,n=n+Math.imul(x,K)|0,n=n+Math.imul(C,V)|0,a=a+Math.imul(C,K)|0,i=i+Math.imul(S,Z)|0,n=n+Math.imul(S,$)|0,n=n+Math.imul(k,Z)|0,a=a+Math.imul(k,$)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(M,Q)|0,a=a+Math.imul(M,ee)|0,i=i+Math.imul(b,re)|0,n=n+Math.imul(b,ie)|0,n=n+Math.imul(v,re)|0,a=a+Math.imul(v,ie)|0,i=i+Math.imul(p,ae)|0,n=n+Math.imul(p,se)|0,n=n+Math.imul(m,ae)|0,a=a+Math.imul(m,se)|0,i=i+Math.imul(u,he)|0,n=n+Math.imul(u,le)|0,n=n+Math.imul(f,he)|0,a=a+Math.imul(f,le)|0;var Se=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(L,q),n=Math.imul(L,z),n=n+Math.imul(D,q)|0,a=Math.imul(D,z),i=i+Math.imul(P,G)|0,n=n+Math.imul(P,W)|0,n=n+Math.imul(O,G)|0,a=a+Math.imul(O,W)|0,i=i+Math.imul(T,V)|0,n=n+Math.imul(T,K)|0,n=n+Math.imul(R,V)|0,a=a+Math.imul(R,K)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,$)|0,n=n+Math.imul(C,Z)|0,a=a+Math.imul(C,$)|0,i=i+Math.imul(S,Q)|0,n=n+Math.imul(S,ee)|0,n=n+Math.imul(k,Q)|0,a=a+Math.imul(k,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(M,re)|0,a=a+Math.imul(M,ie)|0,i=i+Math.imul(b,ae)|0,n=n+Math.imul(b,se)|0,n=n+Math.imul(v,ae)|0,a=a+Math.imul(v,se)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,le)|0,n=n+Math.imul(m,he)|0,a=a+Math.imul(m,le)|0,i=i+Math.imul(u,ue)|0,n=n+Math.imul(u,fe)|0,n=n+Math.imul(f,ue)|0,a=a+Math.imul(f,fe)|0;var ke=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(B,q),n=Math.imul(B,z),n=n+Math.imul(U,q)|0,a=Math.imul(U,z),i=i+Math.imul(L,G)|0,n=n+Math.imul(L,W)|0,n=n+Math.imul(D,G)|0,a=a+Math.imul(D,W)|0,i=i+Math.imul(P,V)|0,n=n+Math.imul(P,K)|0,n=n+Math.imul(O,V)|0,a=a+Math.imul(O,K)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,$)|0,n=n+Math.imul(R,Z)|0,a=a+Math.imul(R,$)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(C,Q)|0,a=a+Math.imul(C,ee)|0,i=i+Math.imul(S,re)|0,n=n+Math.imul(S,ie)|0,n=n+Math.imul(k,re)|0,a=a+Math.imul(k,ie)|0,i=i+Math.imul(w,ae)|0,n=n+Math.imul(w,se)|0,n=n+Math.imul(M,ae)|0,a=a+Math.imul(M,se)|0,i=i+Math.imul(b,he)|0,n=n+Math.imul(b,le)|0,n=n+Math.imul(v,he)|0,a=a+Math.imul(v,le)|0,i=i+Math.imul(p,ue)|0,n=n+Math.imul(p,fe)|0,n=n+Math.imul(m,ue)|0,a=a+Math.imul(m,fe)|0,i=i+Math.imul(u,pe)|0,n=n+Math.imul(u,me)|0,n=n+Math.imul(f,pe)|0,a=a+Math.imul(f,me)|0;var Ae=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(B,G),n=Math.imul(B,W),n=n+Math.imul(U,G)|0,a=Math.imul(U,W),i=i+Math.imul(L,V)|0,n=n+Math.imul(L,K)|0,n=n+Math.imul(D,V)|0,a=a+Math.imul(D,K)|0,i=i+Math.imul(P,Z)|0,n=n+Math.imul(P,$)|0,n=n+Math.imul(O,Z)|0,a=a+Math.imul(O,$)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(R,Q)|0,a=a+Math.imul(R,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(C,re)|0,a=a+Math.imul(C,ie)|0,i=i+Math.imul(S,ae)|0,n=n+Math.imul(S,se)|0,n=n+Math.imul(k,ae)|0,a=a+Math.imul(k,se)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,le)|0,n=n+Math.imul(M,he)|0,a=a+Math.imul(M,le)|0,i=i+Math.imul(b,ue)|0,n=n+Math.imul(b,fe)|0,n=n+Math.imul(v,ue)|0,a=a+Math.imul(v,fe)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,a=a+Math.imul(m,me)|0;var xe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(B,V),n=Math.imul(B,K),n=n+Math.imul(U,V)|0,a=Math.imul(U,K),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,$)|0,n=n+Math.imul(D,Z)|0,a=a+Math.imul(D,$)|0,i=i+Math.imul(P,Q)|0,n=n+Math.imul(P,ee)|0,n=n+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(R,re)|0,a=a+Math.imul(R,ie)|0,i=i+Math.imul(x,ae)|0,n=n+Math.imul(x,se)|0,n=n+Math.imul(C,ae)|0,a=a+Math.imul(C,se)|0,i=i+Math.imul(S,he)|0,n=n+Math.imul(S,le)|0,n=n+Math.imul(k,he)|0,a=a+Math.imul(k,le)|0,i=i+Math.imul(w,ue)|0,n=n+Math.imul(w,fe)|0,n=n+Math.imul(M,ue)|0,a=a+Math.imul(M,fe)|0,i=i+Math.imul(b,pe)|0,n=n+Math.imul(b,me)|0,n=n+Math.imul(v,pe)|0,a=a+Math.imul(v,me)|0;var Ce=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(B,Z),n=Math.imul(B,$),n=n+Math.imul(U,Z)|0,a=Math.imul(U,$),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(D,Q)|0,a=a+Math.imul(D,ee)|0,i=i+Math.imul(P,re)|0,n=n+Math.imul(P,ie)|0,n=n+Math.imul(O,re)|0,a=a+Math.imul(O,ie)|0,i=i+Math.imul(T,ae)|0,n=n+Math.imul(T,se)|0,n=n+Math.imul(R,ae)|0,a=a+Math.imul(R,se)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,le)|0,n=n+Math.imul(C,he)|0,a=a+Math.imul(C,le)|0,i=i+Math.imul(S,ue)|0,n=n+Math.imul(S,fe)|0,n=n+Math.imul(k,ue)|0,a=a+Math.imul(k,fe)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(M,pe)|0,a=a+Math.imul(M,me)|0;var Ee=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(B,Q),n=Math.imul(B,ee),n=n+Math.imul(U,Q)|0,a=Math.imul(U,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(D,re)|0,a=a+Math.imul(D,ie)|0,i=i+Math.imul(P,ae)|0,n=n+Math.imul(P,se)|0,n=n+Math.imul(O,ae)|0,a=a+Math.imul(O,se)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,le)|0,n=n+Math.imul(R,he)|0,a=a+Math.imul(R,le)|0,i=i+Math.imul(x,ue)|0,n=n+Math.imul(x,fe)|0,n=n+Math.imul(C,ue)|0,a=a+Math.imul(C,fe)|0,i=i+Math.imul(S,pe)|0,n=n+Math.imul(S,me)|0,n=n+Math.imul(k,pe)|0,a=a+Math.imul(k,me)|0;var Te=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(B,re),n=Math.imul(B,ie),n=n+Math.imul(U,re)|0,a=Math.imul(U,ie),i=i+Math.imul(L,ae)|0,n=n+Math.imul(L,se)|0,n=n+Math.imul(D,ae)|0,a=a+Math.imul(D,se)|0,i=i+Math.imul(P,he)|0,n=n+Math.imul(P,le)|0,n=n+Math.imul(O,he)|0,a=a+Math.imul(O,le)|0,i=i+Math.imul(T,ue)|0,n=n+Math.imul(T,fe)|0,n=n+Math.imul(R,ue)|0,a=a+Math.imul(R,fe)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(C,pe)|0,a=a+Math.imul(C,me)|0;var Re=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Re>>>26)|0,Re&=67108863,i=Math.imul(B,ae),n=Math.imul(B,se),n=n+Math.imul(U,ae)|0,a=Math.imul(U,se),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,le)|0,n=n+Math.imul(D,he)|0,a=a+Math.imul(D,le)|0,i=i+Math.imul(P,ue)|0,n=n+Math.imul(P,fe)|0,n=n+Math.imul(O,ue)|0,a=a+Math.imul(O,fe)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(R,pe)|0,a=a+Math.imul(R,me)|0;var Ie=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(B,he),n=Math.imul(B,le),n=n+Math.imul(U,he)|0,a=Math.imul(U,le),i=i+Math.imul(L,ue)|0,n=n+Math.imul(L,fe)|0,n=n+Math.imul(D,ue)|0,a=a+Math.imul(D,fe)|0,i=i+Math.imul(P,pe)|0,n=n+Math.imul(P,me)|0,n=n+Math.imul(O,pe)|0,a=a+Math.imul(O,me)|0;var Pe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(B,ue),n=Math.imul(B,fe),n=n+Math.imul(U,ue)|0,a=Math.imul(U,fe),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(D,pe)|0,a=a+Math.imul(D,me)|0;var Oe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(B,pe),n=Math.imul(B,me),n=n+Math.imul(U,pe)|0,a=Math.imul(U,me);var Fe=(l+i|0)+((8191&n)<<13)|0;return l=(a+(n>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,h[0]=ge,h[1]=be,h[2]=ve,h[3]=ye,h[4]=we,h[5]=Me,h[6]=_e,h[7]=Se,h[8]=ke,h[9]=Ae,h[10]=xe,h[11]=Ce,h[12]=Ee,h[13]=Te,h[14]=Re,h[15]=Ie,h[16]=Pe,h[17]=Oe,h[18]=Fe,0!==l&&(h[19]=l,r.length++),r};function y(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,a=0;a<r.length-1;a++){var s=n;n=0;for(var o=67108863&i,h=Math.min(a,t.length-1),l=Math.max(0,a-e.length+1);l<=h;l++){var c=a-l,u=0|e.words[c],f=0|t.words[l],d=u*f,p=67108863&d;s=s+(d/67108864|0)|0,p=p+o|0,o=67108863&p,s=s+(p>>>26)|0,n+=s>>>26,s&=67108863}r.words[a]=o,i=s,s=n}return 0!==i?r.words[a]=i:r.length--,r._strip()}function w(e,t,r){return y(e,t,r)}function M(e,t){this.x=e,this.y=t}Math.imul||(v=b),a.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?v(this,e,t):i<63?b(this,e,t):i<1024?y(this,e,t):w(this,e,t),r},M.prototype.makeRBT=function(e){for(var t=new Array(e),r=a.prototype._countBits(e)-1,i=0;i<e;i++)t[i]=this.revBin(i,r,e);return t},M.prototype.revBin=function(e,t,r){if(0===e||e===r-1)return e;for(var i=0,n=0;n<t;n++)i|=(1&e)<<t-n-1,e>>=1;return i},M.prototype.permute=function(e,t,r,i,n,a){for(var s=0;s<a;s++)i[s]=t[e[s]],n[s]=r[e[s]]},M.prototype.transform=function(e,t,r,i,n,a){this.permute(a,e,t,r,i,n);for(var s=1;s<n;s<<=1)for(var o=s<<1,h=Math.cos(2*Math.PI/o),l=Math.sin(2*Math.PI/o),c=0;c<n;c+=o)for(var u=h,f=l,d=0;d<s;d++){var p=r[c+d],m=i[c+d],g=r[c+d+s],b=i[c+d+s],v=u*g-f*b;b=u*b+f*g,g=v,r[c+d]=p+g,i[c+d]=m+b,r[c+d+s]=p-g,i[c+d+s]=m-b,d!==o&&(v=h*u-l*f,f=h*f+l*u,u=v)}},M.prototype.guessLen13b=function(e,t){var r=1|Math.max(t,e),i=1&r,n=0;for(r=r/2|0;r;r>>>=1)n++;return 1<<n+1+i},M.prototype.conjugate=function(e,t,r){if(!(r<=1))for(var i=0;i<r/2;i++){var n=e[i];e[i]=e[r-i-1],e[r-i-1]=n,n=t[i],t[i]=-t[r-i-1],t[r-i-1]=-n}},M.prototype.normalize13b=function(e,t){for(var r=0,i=0;i<t/2;i++){var n=8192*Math.round(e[2*i+1]/t)+Math.round(e[2*i]/t)+r;e[i]=67108863&n,r=n<67108864?0:n/67108864|0}return e},M.prototype.convert13b=function(e,t,r,n){for(var a=0,s=0;s<t;s++)a+=0|e[s],r[2*s]=8191&a,a>>>=13,r[2*s+1]=8191&a,a>>>=13;for(s=2*t;s<n;++s)r[s]=0;i(0===a),i(0===(-8192&a))},M.prototype.stub=function(e){for(var t=new Array(e),r=0;r<e;r++)t[r]=0;return t},M.prototype.mulp=function(e,t,r){var i=2*this.guessLen13b(e.length,t.length),n=this.makeRBT(i),a=this.stub(i),s=new Array(i),o=new Array(i),h=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),f=r.words;f.length=i,this.convert13b(e.words,e.length,s,i),this.convert13b(t.words,t.length,l,i),this.transform(s,a,o,h,i,n),this.transform(l,a,c,u,i,n);for(var d=0;d<i;d++){var p=o[d]*c[d]-h[d]*u[d];h[d]=o[d]*u[d]+h[d]*c[d],o[d]=p}return this.conjugate(o,h,i),this.transform(o,h,f,a,i,n),this.conjugate(f,a,i),this.normalize13b(f,i),r.negative=e.negative^t.negative,r.length=e.length+t.length,r._strip()},a.prototype.mul=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),this.mulTo(e,t)},a.prototype.mulf=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),w(this,e,t)},a.prototype.imul=function(e){return this.clone().mulTo(e,this)},a.prototype.imuln=function(e){var t=e<0;t&&(e=-e),i("number"===typeof e),i(e<67108864);for(var r=0,n=0;n<this.length;n++){var a=(0|this.words[n])*e,s=(67108863&a)+(67108863&r);r>>=26,r+=a/67108864|0,r+=s>>>26,this.words[n]=67108863&s}return 0!==r&&(this.words[n]=r,this.length++),t?this.ineg():this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=g(e);if(0===t.length)return new a(1);for(var r=this,i=0;i<t.length;i++,r=r.sqr())if(0!==t[i])break;if(++i<t.length)for(var n=r.sqr();i<t.length;i++,n=n.sqr())0!==t[i]&&(r=r.mul(n));return r},a.prototype.iushln=function(e){i("number"===typeof e&&e>=0);var t,r=e%26,n=(e-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var s=0;for(t=0;t<this.length;t++){var o=this.words[t]&a,h=(0|this.words[t])-o<<r;this.words[t]=h|s,s=o>>>26-r}s&&(this.words[t]=s,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t<n;t++)this.words[t]=0;this.length+=n}return this._strip()},a.prototype.ishln=function(e){return i(0===this.negative),this.iushln(e)},a.prototype.iushrn=function(e,t,r){var n;i("number"===typeof e&&e>=0),n=t?(t-t%26)/26:0;var a=e%26,s=Math.min((e-a)/26,this.length),o=67108863^67108863>>>a<<a,h=r;if(n-=s,n=Math.max(0,n),h){for(var l=0;l<s;l++)h.words[l]=this.words[l];h.length=s}if(0===s);else if(this.length>s)for(this.length-=s,l=0;l<this.length;l++)this.words[l]=this.words[l+s];else this.words[0]=0,this.length=1;var c=0;for(l=this.length-1;l>=0&&(0!==c||l>=n);l--){var u=0|this.words[l];this.words[l]=c<<26-a|u>>>a,c=u&o}return h&&0!==c&&(h.words[h.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},a.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return!1;var a=this.words[r];return!!(a&n)},a.prototype.imaskn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<<t;this.words[this.length-1]&=n}return this._strip()},a.prototype.maskn=function(e){return this.clone().imaskn(e)},a.prototype.iaddn=function(e){return i("number"===typeof e),i(e<67108864),e<0?this.isubn(-e):0!==this.negative?1===this.length&&(0|this.words[0])<=e?(this.words[0]=e-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(e),this.negative=1,this):this._iaddn(e)},a.prototype._iaddn=function(e){this.words[0]+=e;for(var t=0;t<this.length&&this.words[t]>=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t<this.length&&this.words[t]<0;t++)this.words[t]+=67108864,this.words[t+1]-=1;return this._strip()},a.prototype.addn=function(e){return this.clone().iaddn(e)},a.prototype.subn=function(e){return this.clone().isubn(e)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(e,t,r){var n,a,s=e.length+r;this._expand(s);var o=0;for(n=0;n<e.length;n++){a=(0|this.words[n+r])+o;var h=(0|e.words[n])*t;a-=67108863&h,o=(a>>26)-(h/67108864|0),this.words[n+r]=67108863&a}for(;n<this.length-r;n++)a=(0|this.words[n+r])+o,o=a>>26,this.words[n+r]=67108863&a;if(0===o)return this._strip();for(i(-1===o),o=0,n=0;n<this.length;n++)a=-(0|this.words[n])+o,o=a>>26,this.words[n]=67108863&a;return this.negative=1,this._strip()},a.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,s=0|n.words[n.length-1],o=this._countBits(s);r=26-o,0!==r&&(n=n.ushln(r),i.iushln(r),s=0|n.words[n.length-1]);var h,l=i.length-n.length;if("mod"!==t){h=new a(null),h.length=l+1,h.words=new Array(h.length);for(var c=0;c<h.length;c++)h.words[c]=0}var u=i.clone()._ishlnsubmul(n,1,l);0===u.negative&&(i=u,h&&(h.words[l]=1));for(var f=l-1;f>=0;f--){var d=67108864*(0|i.words[n.length+f])+(0|i.words[n.length+f-1]);d=Math.min(d/s|0,67108863),i._ishlnsubmul(n,d,f);while(0!==i.negative)d--,i.negative=0,i._ishlnsubmul(n,1,f),i.isZero()||(i.negative^=1);h&&(h.words[f]=d)}return h&&h._strip(),i._strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:h||null,mod:i}},a.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(o=this.neg().divmod(e,t),"mod"!==t&&(n=o.div.neg()),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.iadd(e)),{div:n,mod:s}):0===this.negative&&0!==e.negative?(o=this.divmod(e.neg(),t),"mod"!==t&&(n=o.div.neg()),{div:n,mod:o.mod}):0!==(this.negative&e.negative)?(o=this.neg().divmod(e.neg(),t),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.isub(e)),{div:o.div,mod:s}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modrn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modrn(e.words[0]))}:this._wordDiv(e,t);var n,s,o},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),a=r.cmp(i);return a<0||1===n&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modrn=function(e){var t=e<0;t&&(e=-e),i(e<=67108863);for(var r=(1<<26)%e,n=0,a=this.length-1;a>=0;a--)n=(r*n+(0|this.words[a]))%e;return t?-n:n},a.prototype.modn=function(e){return this.modrn(e)},a.prototype.idivn=function(e){var t=e<0;t&&(e=-e),i(e<=67108863);for(var r=0,n=this.length-1;n>=0;n--){var a=(0|this.words[n])+67108864*r;this.words[n]=a/e|0,r=a%e}return this._strip(),t?this.ineg():this},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new a(1),s=new a(0),o=new a(0),h=new a(1),l=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++l;var c=r.clone(),u=t.clone();while(!t.isZero()){for(var f=0,d=1;0===(t.words[0]&d)&&f<26;++f,d<<=1);if(f>0){t.iushrn(f);while(f-- >0)(n.isOdd()||s.isOdd())&&(n.iadd(c),s.isub(u)),n.iushrn(1),s.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(o.isOdd()||h.isOdd())&&(o.iadd(c),h.isub(u)),o.iushrn(1),h.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(o),s.isub(h)):(r.isub(t),o.isub(n),h.isub(s))}return{a:o,b:h,gcd:r.iushln(l)}},a.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,s=new a(1),o=new a(0),h=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var l=0,c=1;0===(t.words[0]&c)&&l<26;++l,c<<=1);if(l>0){t.iushrn(l);while(l-- >0)s.isOdd()&&s.iadd(h),s.iushrn(1)}for(var u=0,f=1;0===(r.words[0]&f)&&u<26;++u,f<<=1);if(u>0){r.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(h),o.iushrn(1)}t.cmp(r)>=0?(t.isub(r),s.isub(o)):(r.isub(t),o.isub(s))}return n=0===t.cmpn(1)?s:o,n.cmpn(0)<0&&n.iadd(e),n},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var a=t;t=r,r=a}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return this._expand(r+1),this.words[r]|=n,this;for(var a=n,s=r;0!==a&&s<this.length;s++){var o=0|this.words[s];o+=a,a=o>>>26,o&=67108863,this.words[s]=o}return 0!==a&&(this.words[s]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this._strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:n<e?-1:1}return 0!==this.negative?0|-t:t},a.prototype.cmp=function(e){if(0!==this.negative&&0===e.negative)return-1;if(0===this.negative&&0!==e.negative)return 1;var t=this.ucmp(e);return 0!==this.negative?0|-t:t},a.prototype.ucmp=function(e){if(this.length>e.length)return 1;if(this.length<e.length)return-1;for(var t=0,r=this.length-1;r>=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){i<n?t=-1:i>n&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new E(e)},a.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var _={k256:null,p224:null,p192:null,p25519:null};function S(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function k(){S.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function A(){S.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function x(){S.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function C(){S.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function E(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function T(e){E.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}S.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},S.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t<this.n?-1:r.ucmp(this.p);return 0===i?(r.words[0]=0,r.length=1):i>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},S.prototype.split=function(e,t){e.iushrn(this.n,0,t)},S.prototype.imulK=function(e){return e.imul(this.k)},n(k,S),k.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n<i;n++)t.words[n]=e.words[n];if(t.length=i,e.length<=9)return e.words[0]=0,void(e.length=1);var a=e.words[9];for(t.words[t.length++]=a&r,n=10;n<e.length;n++){var s=0|e.words[n];e.words[n-10]=(s&r)<<4|a>>>22,a=s}a>>>=22,e.words[n-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},k.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r<e.length;r++){var i=0|e.words[r];t+=977*i,e.words[r]=67108863&t,t=64*i+(t/67108864|0)}return 0===e.words[e.length-1]&&(e.length--,0===e.words[e.length-1]&&e.length--),e},n(A,S),n(x,S),n(C,S),C.prototype.imulK=function(e){for(var t=0,r=0;r<e.length;r++){var i=19*(0|e.words[r])+t,n=67108863&i;i>>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(_[e])return _[e];var t;if("k256"===e)t=new k;else if("p224"===e)t=new A;else if("p192"===e)t=new x;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new C}return _[e]=t,t},E.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},E.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},E.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):(c(e,e.umod(this.m)._forceRed(this)),e)},E.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},E.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},E.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},E.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},E.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},E.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},E.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},E.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},E.prototype.isqr=function(e){return this.imul(e,e.clone())},E.prototype.sqr=function(e){return this.mul(e,e)},E.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new a(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),s=0;while(!n.isZero()&&0===n.andln(1))s++,n.iushrn(1);i(!n.isZero());var o=new a(1).toRed(this),h=o.redNeg(),l=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new a(2*c*c).toRed(this);while(0!==this.pow(c,l).cmp(h))c.redIAdd(h);var u=this.pow(c,n),f=this.pow(e,n.addn(1).iushrn(1)),d=this.pow(e,n),p=s;while(0!==d.cmp(o)){for(var m=d,g=0;0!==m.cmp(o);g++)m=m.redSqr();i(g<p);var b=this.pow(u,new a(1).iushln(p-g-1));f=f.redMul(b),u=b.redSqr(),d=d.redMul(u),p=g}return f},E.prototype.invm=function(e){var t=e._invmp(this.m);return 0!==t.negative?(t.negative=0,this.imod(t).redNeg()):this.imod(t)},E.prototype.pow=function(e,t){if(t.isZero())return new a(1).toRed(this);if(0===t.cmpn(1))return e.clone();var r=4,i=new Array(1<<r);i[0]=new a(1).toRed(this),i[1]=e;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],e);var s=i[0],o=0,h=0,l=t.bitLength()%26;for(0===l&&(l=26),n=t.length-1;n>=0;n--){for(var c=t.words[n],u=l-1;u>=0;u--){var f=c>>u&1;s!==i[0]&&(s=this.sqr(s)),0!==f||0!==o?(o<<=1,o|=f,h++,(h===r||0===n&&0===u)&&(s=this.mul(s,i[o]),h=0,o=0)):h=0}l=26}return s},E.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},E.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new T(e)},n(T,E),T.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},T.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},T.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),a=n;return n.cmp(this.m)>=0?a=n.isub(this.m):n.cmpn(0)<0&&(a=n.iadd(this.m)),a._forceRed(this)},T.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},T.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}})(e,this)}).call(this,r("62e4")(e))},"39a9":function(e,t,r){
  4. /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
  5. var i=r("b639"),n=i.Buffer;function a(e,t){for(var r in e)t[r]=e[r]}function s(e,t,r){return n(e,t,r)}n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow?e.exports=i:(a(i,t),t.Buffer=s),s.prototype=Object.create(n.prototype),a(n,s),s.from=function(e,t,r){if("number"===typeof e)throw new TypeError("Argument must not be a number");return n(e,t,r)},s.alloc=function(e,t,r){if("number"!==typeof e)throw new TypeError("Argument must be a number");var i=n(e);return void 0!==t?"string"===typeof r?i.fill(t,r):i.fill(t):i.fill(0),i},s.allocUnsafe=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return n(e)},s.allocUnsafeSlow=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return i.SlowBuffer(e)}},"39f5b":function(e,t,r){var i=r("8707").Buffer;function n(e){i.isBuffer(e)||(e=i.from(e));for(var t=e.length/4|0,r=new Array(t),n=0;n<t;n++)r[n]=e.readUInt32BE(4*n);return r}function a(e){for(var t=0;t<e.length;e++)e[t]=0}function s(e,t,r,i,n){for(var a,s,o,h,l=r[0],c=r[1],u=r[2],f=r[3],d=e[0]^t[0],p=e[1]^t[1],m=e[2]^t[2],g=e[3]^t[3],b=4,v=1;v<n;v++)a=l[d>>>24]^c[p>>>16&255]^u[m>>>8&255]^f[255&g]^t[b++],s=l[p>>>24]^c[m>>>16&255]^u[g>>>8&255]^f[255&d]^t[b++],o=l[m>>>24]^c[g>>>16&255]^u[d>>>8&255]^f[255&p]^t[b++],h=l[g>>>24]^c[d>>>16&255]^u[p>>>8&255]^f[255&m]^t[b++],d=a,p=s,m=o,g=h;return a=(i[d>>>24]<<24|i[p>>>16&255]<<16|i[m>>>8&255]<<8|i[255&g])^t[b++],s=(i[p>>>24]<<24|i[m>>>16&255]<<16|i[g>>>8&255]<<8|i[255&d])^t[b++],o=(i[m>>>24]<<24|i[g>>>16&255]<<16|i[d>>>8&255]<<8|i[255&p])^t[b++],h=(i[g>>>24]<<24|i[d>>>16&255]<<16|i[p>>>8&255]<<8|i[255&m])^t[b++],a>>>=0,s>>>=0,o>>>=0,h>>>=0,[a,s,o,h]}var o=[0,1,2,4,8,16,32,64,128,27,54],h=function(){for(var e=new Array(256),t=0;t<256;t++)e[t]=t<128?t<<1:t<<1^283;for(var r=[],i=[],n=[[],[],[],[]],a=[[],[],[],[]],s=0,o=0,h=0;h<256;++h){var l=o^o<<1^o<<2^o<<3^o<<4;l=l>>>8^255&l^99,r[s]=l,i[l]=s;var c=e[s],u=e[c],f=e[u],d=257*e[l]^16843008*l;n[0][s]=d<<24|d>>>8,n[1][s]=d<<16|d>>>16,n[2][s]=d<<8|d>>>24,n[3][s]=d,d=16843009*f^65537*u^257*c^16843008*s,a[0][l]=d<<24|d>>>8,a[1][l]=d<<16|d>>>16,a[2][l]=d<<8|d>>>24,a[3][l]=d,0===s?s=o=1:(s=c^e[e[e[f^c]]],o^=e[e[o]])}return{SBOX:r,INV_SBOX:i,SUB_MIX:n,INV_SUB_MIX:a}}();function l(e){this._key=n(e),this._reset()}l.blockSize=16,l.keySize=32,l.prototype.blockSize=l.blockSize,l.prototype.keySize=l.keySize,l.prototype._reset=function(){for(var e=this._key,t=e.length,r=t+6,i=4*(r+1),n=[],a=0;a<t;a++)n[a]=e[a];for(a=t;a<i;a++){var s=n[a-1];a%t===0?(s=s<<8|s>>>24,s=h.SBOX[s>>>24]<<24|h.SBOX[s>>>16&255]<<16|h.SBOX[s>>>8&255]<<8|h.SBOX[255&s],s^=o[a/t|0]<<24):t>6&&a%t===4&&(s=h.SBOX[s>>>24]<<24|h.SBOX[s>>>16&255]<<16|h.SBOX[s>>>8&255]<<8|h.SBOX[255&s]),n[a]=n[a-t]^s}for(var l=[],c=0;c<i;c++){var u=i-c,f=n[u-(c%4?0:4)];l[c]=c<4||u<=4?f:h.INV_SUB_MIX[0][h.SBOX[f>>>24]]^h.INV_SUB_MIX[1][h.SBOX[f>>>16&255]]^h.INV_SUB_MIX[2][h.SBOX[f>>>8&255]]^h.INV_SUB_MIX[3][h.SBOX[255&f]]}this._nRounds=r,this._keySchedule=n,this._invKeySchedule=l},l.prototype.encryptBlockRaw=function(e){return e=n(e),s(e,this._keySchedule,h.SUB_MIX,h.SBOX,this._nRounds)},l.prototype.encryptBlock=function(e){var t=this.encryptBlockRaw(e),r=i.allocUnsafe(16);return r.writeUInt32BE(t[0],0),r.writeUInt32BE(t[1],4),r.writeUInt32BE(t[2],8),r.writeUInt32BE(t[3],12),r},l.prototype.decryptBlock=function(e){e=n(e);var t=e[1];e[1]=e[3],e[3]=t;var r=s(e,this._invKeySchedule,h.INV_SUB_MIX,h.INV_SBOX,this._nRounds),a=i.allocUnsafe(16);return a.writeUInt32BE(r[0],0),a.writeUInt32BE(r[3],4),a.writeUInt32BE(r[2],8),a.writeUInt32BE(r[1],12),a},l.prototype.scrub=function(){a(this._keySchedule),a(this._invKeySchedule),a(this._key)},e.exports.AES=l},"3a7c":function(e,t,r){function i(e){return Array.isArray?Array.isArray(e):"[object Array]"===b(e)}function n(e){return"boolean"===typeof e}function a(e){return null===e}function s(e){return null==e}function o(e){return"number"===typeof e}function h(e){return"string"===typeof e}function l(e){return"symbol"===typeof e}function c(e){return void 0===e}function u(e){return"[object RegExp]"===b(e)}function f(e){return"object"===typeof e&&null!==e}function d(e){return"[object Date]"===b(e)}function p(e){return"[object Error]"===b(e)||e instanceof Error}function m(e){return"function"===typeof e}function g(e){return null===e||"boolean"===typeof e||"number"===typeof e||"string"===typeof e||"symbol"===typeof e||"undefined"===typeof e}function b(e){return Object.prototype.toString.call(e)}t.isArray=i,t.isBoolean=n,t.isNull=a,t.isNullOrUndefined=s,t.isNumber=o,t.isString=h,t.isSymbol=l,t.isUndefined=c,t.isRegExp=u,t.isObject=f,t.isDate=d,t.isError=p,t.isFunction=m,t.isPrimitive=g,t.isBuffer=r("b639").Buffer.isBuffer},"3c43":function(e,t){t.endianness=function(){return"LE"},t.hostname=function(){return"undefined"!==typeof location?location.hostname:""},t.loadavg=function(){return[]},t.uptime=function(){return 0},t.freemem=function(){return Number.MAX_VALUE},t.totalmem=function(){return Number.MAX_VALUE},t.cpus=function(){return[]},t.type=function(){return"Browser"},t.release=function(){return"undefined"!==typeof navigator?navigator.appVersion:""},t.networkInterfaces=t.getNetworkInterfaces=function(){return{}},t.arch=function(){return"javascript"},t.platform=function(){return"browser"},t.tmpdir=t.tmpDir=function(){return"/tmp"},t.EOL="\n",t.homedir=function(){return"/"}},"3daf":function(e,t,r){"use strict";var i=r("f3a3"),n=r("80af"),a=r("3fb5"),s=r("ea53"),o=i.assert;function h(e){this.twisted=1!==(0|e.a),this.mOneA=this.twisted&&-1===(0|e.a),this.extended=this.mOneA,s.call(this,"edwards",e),this.a=new n(e.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new n(e.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new n(e.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),o(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1===(0|e.c)}function l(e,t,r,i,a){s.BasePoint.call(this,e,"projective"),null===t&&null===r&&null===i?(this.x=this.curve.zero,this.y=this.curve.one,this.z=this.curve.one,this.t=this.curve.zero,this.zOne=!0):(this.x=new n(t,16),this.y=new n(r,16),this.z=i?new n(i,16):this.curve.one,this.t=a&&new n(a,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.t&&!this.t.red&&(this.t=this.t.toRed(this.curve.red)),this.zOne=this.z===this.curve.one,this.curve.extended&&!this.t&&(this.t=this.x.redMul(this.y),this.zOne||(this.t=this.t.redMul(this.z.redInvm()))))}a(h,s),e.exports=h,h.prototype._mulA=function(e){return this.mOneA?e.redNeg():this.a.redMul(e)},h.prototype._mulC=function(e){return this.oneC?e:this.c.redMul(e)},h.prototype.jpoint=function(e,t,r,i){return this.point(e,t,r,i)},h.prototype.pointFromX=function(e,t){e=new n(e,16),e.red||(e=e.toRed(this.red));var r=e.redSqr(),i=this.c2.redSub(this.a.redMul(r)),a=this.one.redSub(this.c2.redMul(this.d).redMul(r)),s=i.redMul(a.redInvm()),o=s.redSqrt();if(0!==o.redSqr().redSub(s).cmp(this.zero))throw new Error("invalid point");var h=o.fromRed().isOdd();return(t&&!h||!t&&h)&&(o=o.redNeg()),this.point(e,o)},h.prototype.pointFromY=function(e,t){e=new n(e,16),e.red||(e=e.toRed(this.red));var r=e.redSqr(),i=r.redSub(this.c2),a=r.redMul(this.d).redMul(this.c2).redSub(this.a),s=i.redMul(a.redInvm());if(0===s.cmp(this.zero)){if(t)throw new Error("invalid point");return this.point(this.zero,e)}var o=s.redSqrt();if(0!==o.redSqr().redSub(s).cmp(this.zero))throw new Error("invalid point");return o.fromRed().isOdd()!==t&&(o=o.redNeg()),this.point(o,e)},h.prototype.validate=function(e){if(e.isInfinity())return!0;e.normalize();var t=e.x.redSqr(),r=e.y.redSqr(),i=t.redMul(this.a).redAdd(r),n=this.c2.redMul(this.one.redAdd(this.d.redMul(t).redMul(r)));return 0===i.cmp(n)},a(l,s.BasePoint),h.prototype.pointFromJSON=function(e){return l.fromJSON(this,e)},h.prototype.point=function(e,t,r,i){return new l(this,e,t,r,i)},l.fromJSON=function(e,t){return new l(e,t[0],t[1],t[2])},l.prototype.inspect=function(){return this.isInfinity()?"<EC Point Infinity>":"<EC Point x: "+this.x.fromRed().toString(16,2)+" y: "+this.y.fromRed().toString(16,2)+" z: "+this.z.fromRed().toString(16,2)+">"},l.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},l.prototype._extDbl=function(){var e=this.x.redSqr(),t=this.y.redSqr(),r=this.z.redSqr();r=r.redIAdd(r);var i=this.curve._mulA(e),n=this.x.redAdd(this.y).redSqr().redISub(e).redISub(t),a=i.redAdd(t),s=a.redSub(r),o=i.redSub(t),h=n.redMul(s),l=a.redMul(o),c=n.redMul(o),u=s.redMul(a);return this.curve.point(h,l,u,c)},l.prototype._projDbl=function(){var e,t,r,i,n,a,s=this.x.redAdd(this.y).redSqr(),o=this.x.redSqr(),h=this.y.redSqr();if(this.curve.twisted){i=this.curve._mulA(o);var l=i.redAdd(h);this.zOne?(e=s.redSub(o).redSub(h).redMul(l.redSub(this.curve.two)),t=l.redMul(i.redSub(h)),r=l.redSqr().redSub(l).redSub(l)):(n=this.z.redSqr(),a=l.redSub(n).redISub(n),e=s.redSub(o).redISub(h).redMul(a),t=l.redMul(i.redSub(h)),r=l.redMul(a))}else i=o.redAdd(h),n=this.curve._mulC(this.z).redSqr(),a=i.redSub(n).redSub(n),e=this.curve._mulC(s.redISub(i)).redMul(a),t=this.curve._mulC(i).redMul(o.redISub(h)),r=i.redMul(a);return this.curve.point(e,t,r)},l.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},l.prototype._extAdd=function(e){var t=this.y.redSub(this.x).redMul(e.y.redSub(e.x)),r=this.y.redAdd(this.x).redMul(e.y.redAdd(e.x)),i=this.t.redMul(this.curve.dd).redMul(e.t),n=this.z.redMul(e.z.redAdd(e.z)),a=r.redSub(t),s=n.redSub(i),o=n.redAdd(i),h=r.redAdd(t),l=a.redMul(s),c=o.redMul(h),u=a.redMul(h),f=s.redMul(o);return this.curve.point(l,c,f,u)},l.prototype._projAdd=function(e){var t,r,i=this.z.redMul(e.z),n=i.redSqr(),a=this.x.redMul(e.x),s=this.y.redMul(e.y),o=this.curve.d.redMul(a).redMul(s),h=n.redSub(o),l=n.redAdd(o),c=this.x.redAdd(this.y).redMul(e.x.redAdd(e.y)).redISub(a).redISub(s),u=i.redMul(h).redMul(c);return this.curve.twisted?(t=i.redMul(l).redMul(s.redSub(this.curve._mulA(a))),r=h.redMul(l)):(t=i.redMul(l).redMul(s.redSub(a)),r=this.curve._mulC(h).redMul(l)),this.curve.point(u,t,r)},l.prototype.add=function(e){return this.isInfinity()?e:e.isInfinity()?this:this.curve.extended?this._extAdd(e):this._projAdd(e)},l.prototype.mul=function(e){return this._hasDoubles(e)?this.curve._fixedNafMul(this,e):this.curve._wnafMul(this,e)},l.prototype.mulAdd=function(e,t,r){return this.curve._wnafMulAdd(1,[this,t],[e,r],2,!1)},l.prototype.jmulAdd=function(e,t,r){return this.curve._wnafMulAdd(1,[this,t],[e,r],2,!0)},l.prototype.normalize=function(){if(this.zOne)return this;var e=this.z.redInvm();return this.x=this.x.redMul(e),this.y=this.y.redMul(e),this.t&&(this.t=this.t.redMul(e)),this.z=this.curve.one,this.zOne=!0,this},l.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},l.prototype.getX=function(){return this.normalize(),this.x.fromRed()},l.prototype.getY=function(){return this.normalize(),this.y.fromRed()},l.prototype.eq=function(e){return this===e||0===this.getX().cmp(e.getX())&&0===this.getY().cmp(e.getY())},l.prototype.eqXToP=function(e){var t=e.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(t))return!0;for(var r=e.clone(),i=this.curve.redN.redMul(this.z);;){if(r.iadd(this.curve.n),r.cmp(this.curve.p)>=0)return!1;if(t.redIAdd(i),0===this.x.cmp(t))return!0}},l.prototype.toP=l.prototype.normalize,l.prototype.mixedAdd=l.prototype.add},"3e8f":function(e,t){},"3f62":function(e,t,r){var i=r("8707").Buffer,n=i.alloc(16,0);function a(e){return[e.readUInt32BE(0),e.readUInt32BE(4),e.readUInt32BE(8),e.readUInt32BE(12)]}function s(e){var t=i.allocUnsafe(16);return t.writeUInt32BE(e[0]>>>0,0),t.writeUInt32BE(e[1]>>>0,4),t.writeUInt32BE(e[2]>>>0,8),t.writeUInt32BE(e[3]>>>0,12),t}function o(e){this.h=e,this.state=i.alloc(16,0),this.cache=i.allocUnsafe(0)}o.prototype.ghash=function(e){var t=-1;while(++t<e.length)this.state[t]^=e[t];this._multiply()},o.prototype._multiply=function(){var e,t,r,i=a(this.h),n=[0,0,0,0],o=-1;while(++o<128){for(t=0!==(this.state[~~(o/8)]&1<<7-o%8),t&&(n[0]^=i[0],n[1]^=i[1],n[2]^=i[2],n[3]^=i[3]),r=0!==(1&i[3]),e=3;e>0;e--)i[e]=i[e]>>>1|(1&i[e-1])<<31;i[0]=i[0]>>>1,r&&(i[0]=i[0]^225<<24)}this.state=s(n)},o.prototype.update=function(e){var t;this.cache=i.concat([this.cache,e]);while(this.cache.length>=16)t=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(t)},o.prototype.final=function(e,t){return this.cache.length&&this.ghash(i.concat([this.cache,n],16)),this.ghash(s([0,e,0,t])),this.state},e.exports=o},"3fb5":function(e,t){"function"===typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}}},4:function(e,t){},"409b":function(e,t){e.exports={doubles:{step:4,points:[["e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a","f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821"],["8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508","11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf"],["175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739","d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695"],["363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640","4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9"],["8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c","4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36"],["723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda","96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f"],["eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa","5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999"],["100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0","cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09"],["e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d","9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d"],["feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d","e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088"],["da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1","9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d"],["53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0","5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8"],["8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047","10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a"],["385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862","283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453"],["6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7","7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160"],["3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd","56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0"],["85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83","7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6"],["948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a","53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589"],["6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8","bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17"],["e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d","4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda"],["e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725","7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd"],["213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754","4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2"],["4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c","17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6"],["fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6","6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f"],["76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39","c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01"],["c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891","893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3"],["d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b","febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f"],["b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03","2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7"],["e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d","eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78"],["a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070","7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1"],["90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4","e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150"],["8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da","662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82"],["e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11","1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc"],["8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e","efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b"],["e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41","2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51"],["b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef","67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45"],["d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8","db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120"],["324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d","648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84"],["4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96","35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d"],["9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd","ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d"],["6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5","9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8"],["a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266","40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8"],["7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71","34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac"],["928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac","c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f"],["85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751","1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962"],["ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e","493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907"],["827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241","c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec"],["eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3","be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d"],["e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f","4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414"],["1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19","aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd"],["146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be","b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0"],["fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9","6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811"],["da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2","8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1"],["a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13","7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c"],["174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c","ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73"],["959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba","2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd"],["d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151","e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405"],["64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073","d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589"],["8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458","38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e"],["13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b","69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27"],["bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366","d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1"],["8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa","40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482"],["8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0","620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945"],["dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787","7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573"],["f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e","ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82"]]},naf:{wnd:7,points:[["f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9","388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672"],["2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4","d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6"],["5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc","6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da"],["acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe","cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37"],["774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb","d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b"],["f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8","ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81"],["d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e","581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58"],["defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34","4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77"],["2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c","85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a"],["352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5","321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c"],["2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f","2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67"],["9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714","73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402"],["daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729","a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55"],["c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db","2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482"],["6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4","e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82"],["1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5","b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396"],["605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479","2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49"],["62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d","80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf"],["80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f","1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a"],["7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb","d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7"],["d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9","eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933"],["49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963","758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a"],["77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74","958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6"],["f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530","e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37"],["463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b","5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e"],["f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247","cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6"],["caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1","cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476"],["2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120","4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40"],["7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435","91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61"],["754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18","673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683"],["e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8","59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5"],["186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb","3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b"],["df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f","55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417"],["5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143","efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868"],["290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba","e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a"],["af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45","f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6"],["766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a","744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996"],["59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e","c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e"],["f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8","e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d"],["7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c","30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2"],["948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519","e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e"],["7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab","100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437"],["3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca","ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311"],["d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf","8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4"],["1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610","68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575"],["733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4","f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d"],["15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c","d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d"],["a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940","edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629"],["e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980","a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06"],["311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3","66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374"],["34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf","9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee"],["f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63","4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1"],["d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448","fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b"],["32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf","5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661"],["7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5","8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6"],["ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6","8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e"],["16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5","5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d"],["eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99","f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc"],["78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51","f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4"],["494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5","42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c"],["a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5","204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b"],["c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997","4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913"],["841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881","73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154"],["5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5","39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865"],["36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66","d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc"],["336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726","ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224"],["8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede","6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e"],["1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94","60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6"],["85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31","3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511"],["29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51","b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b"],["a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252","ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2"],["4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5","cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c"],["d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b","6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3"],["ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4","322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d"],["af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f","6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700"],["e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889","2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4"],["591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246","b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196"],["11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984","998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4"],["3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a","b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257"],["cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030","bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13"],["c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197","6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096"],["c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593","c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38"],["a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef","21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f"],["347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38","60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448"],["da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a","49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a"],["c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111","5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4"],["4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502","7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437"],["3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea","be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7"],["cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26","8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d"],["b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986","39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a"],["d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e","62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54"],["48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4","25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77"],["dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda","ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517"],["6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859","cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10"],["e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f","f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125"],["eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c","6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e"],["13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942","fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1"],["ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a","1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2"],["b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80","5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423"],["ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d","438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8"],["8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1","cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758"],["52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63","c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375"],["e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352","6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d"],["7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193","ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec"],["5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00","9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0"],["32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58","ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c"],["e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7","d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4"],["8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8","c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f"],["4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e","67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649"],["3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d","cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826"],["674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b","299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5"],["d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f","f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87"],["30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6","462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b"],["be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297","62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc"],["93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a","7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c"],["b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c","ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f"],["d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52","4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a"],["d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb","bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46"],["463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065","bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f"],["7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917","603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03"],["74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9","cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08"],["30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3","553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8"],["9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57","712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373"],["176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66","ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3"],["75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8","9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8"],["809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721","9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1"],["1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180","4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9"]]}}},4111:function(e,t,r){"use strict";var i=r("7f7a");t.certificate=r("56b5");var n=i.define("RSAPrivateKey",(function(){this.seq().obj(this.key("version").int(),this.key("modulus").int(),this.key("publicExponent").int(),this.key("privateExponent").int(),this.key("prime1").int(),this.key("prime2").int(),this.key("exponent1").int(),this.key("exponent2").int(),this.key("coefficient").int())}));t.RSAPrivateKey=n;var a=i.define("RSAPublicKey",(function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())}));t.RSAPublicKey=a;var s=i.define("SubjectPublicKeyInfo",(function(){this.seq().obj(this.key("algorithm").use(o),this.key("subjectPublicKey").bitstr())}));t.PublicKey=s;var o=i.define("AlgorithmIdentifier",(function(){this.seq().obj(this.key("algorithm").objid(),this.key("none").null_().optional(),this.key("curve").objid().optional(),this.key("params").seq().obj(this.key("p").int(),this.key("q").int(),this.key("g").int()).optional())})),h=i.define("PrivateKeyInfo",(function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(o),this.key("subjectPrivateKey").octstr())}));t.PrivateKey=h;var l=i.define("EncryptedPrivateKeyInfo",(function(){this.seq().obj(this.key("algorithm").seq().obj(this.key("id").objid(),this.key("decrypt").seq().obj(this.key("kde").seq().obj(this.key("id").objid(),this.key("kdeparams").seq().obj(this.key("salt").octstr(),this.key("iters").int())),this.key("cipher").seq().obj(this.key("algo").objid(),this.key("iv").octstr()))),this.key("subjectPrivateKey").octstr())}));t.EncryptedPrivateKey=l;var c=i.define("DSAPrivateKey",(function(){this.seq().obj(this.key("version").int(),this.key("p").int(),this.key("q").int(),this.key("g").int(),this.key("pub_key").int(),this.key("priv_key").int())}));t.DSAPrivateKey=c,t.DSAparam=i.define("DSAparam",(function(){this.int()}));var u=i.define("ECPrivateKey",(function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(f),this.key("publicKey").optional().explicit(1).bitstr())}));t.ECPrivateKey=u;var f=i.define("ECParameters",(function(){this.choice({namedCurve:this.objid()})}));t.signature=i.define("signature",(function(){this.seq().obj(this.key("r").int(),this.key("s").int())}))},4136:function(e,t,r){"use strict";var i=t;i.base=r("ea53"),i.short=r("3300"),i.mont=r("676f"),i.edwards=r("3daf")},4186:function(e,t,r){"use strict";(function(t){var i;function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var a=r("ee93"),s=Symbol("lastResolve"),o=Symbol("lastReject"),h=Symbol("error"),l=Symbol("ended"),c=Symbol("lastPromise"),u=Symbol("handlePromise"),f=Symbol("stream");function d(e,t){return{value:e,done:t}}function p(e){var t=e[s];if(null!==t){var r=e[f].read();null!==r&&(e[c]=null,e[s]=null,e[o]=null,t(d(r,!1)))}}function m(e){t.nextTick(p,e)}function g(e,t){return function(r,i){e.then((function(){t[l]?r(d(void 0,!0)):t[u](r,i)}),i)}}var b=Object.getPrototypeOf((function(){})),v=Object.setPrototypeOf((i={get stream(){return this[f]},next:function(){var e=this,r=this[h];if(null!==r)return Promise.reject(r);if(this[l])return Promise.resolve(d(void 0,!0));if(this[f].destroyed)return new Promise((function(r,i){t.nextTick((function(){e[h]?i(e[h]):r(d(void 0,!0))}))}));var i,n=this[c];if(n)i=new Promise(g(n,this));else{var a=this[f].read();if(null!==a)return Promise.resolve(d(a,!1));i=new Promise(this[u])}return this[c]=i,i}},n(i,Symbol.asyncIterator,(function(){return this})),n(i,"return",(function(){var e=this;return new Promise((function(t,r){e[f].destroy(null,(function(e){e?r(e):t(d(void 0,!0))}))}))})),i),b),y=function(e){var t,r=Object.create(v,(t={},n(t,f,{value:e,writable:!0}),n(t,s,{value:null,writable:!0}),n(t,o,{value:null,writable:!0}),n(t,h,{value:null,writable:!0}),n(t,l,{value:e._readableState.endEmitted,writable:!0}),n(t,u,{value:function(e,t){var i=r[f].read();i?(r[c]=null,r[s]=null,r[o]=null,e(d(i,!1))):(r[s]=e,r[o]=t)},writable:!0}),t));return r[c]=null,a(e,(function(e){if(e&&"ERR_STREAM_PREMATURE_CLOSE"!==e.code){var t=r[o];return null!==t&&(r[c]=null,r[s]=null,r[o]=null,t(e)),void(r[h]=e)}var i=r[s];null!==i&&(r[c]=null,r[s]=null,r[o]=null,i(d(void 0,!0))),r[l]=!0})),e.on("readable",m.bind(null,r)),r};e.exports=y}).call(this,r("f28c"))},"41df":function(e,t,r){"use strict";const i=t;i.Reporter=r("d1c8").Reporter,i.DecoderBuffer=r("6283").DecoderBuffer,i.EncoderBuffer=r("6283").EncoderBuffer,i.Node=r("8360")},4228:function(e,t,r){var i=r("82f0"),n=r("8707").Buffer,a=r("bac2"),s=r("09f5"),o=r("6430"),h=r("39f5b"),l=r("ae84"),c=r("3fb5");function u(e,t,r){o.call(this),this._cache=new f,this._last=void 0,this._cipher=new h.AES(t),this._prev=n.from(r),this._mode=e,this._autopadding=!0}function f(){this.cache=n.allocUnsafe(0)}function d(e){var t=e[15];if(t<1||t>16)throw new Error("unable to decrypt data");var r=-1;while(++r<t)if(e[r+(16-t)]!==t)throw new Error("unable to decrypt data");if(16!==t)return e.slice(0,16-t)}function p(e,t,r){var o=a[e.toLowerCase()];if(!o)throw new TypeError("invalid suite type");if("string"===typeof r&&(r=n.from(r)),"GCM"!==o.mode&&r.length!==o.iv)throw new TypeError("invalid iv length "+r.length);if("string"===typeof t&&(t=n.from(t)),t.length!==o.key/8)throw new TypeError("invalid key length "+t.length);return"stream"===o.type?new s(o.module,t,r,!0):"auth"===o.type?new i(o.module,t,r,!0):new u(o.module,t,r)}function m(e,t){var r=a[e.toLowerCase()];if(!r)throw new TypeError("invalid suite type");var i=l(t,!1,r.key,r.iv);return p(e,i.key,i.iv)}c(u,o),u.prototype._update=function(e){var t,r;this._cache.add(e);var i=[];while(t=this._cache.get(this._autopadding))r=this._mode.decrypt(this,t),i.push(r);return n.concat(i)},u.prototype._final=function(){var e=this._cache.flush();if(this._autopadding)return d(this._mode.decrypt(this,e));if(e)throw new Error("data not multiple of block length")},u.prototype.setAutoPadding=function(e){return this._autopadding=!!e,this},f.prototype.add=function(e){this.cache=n.concat([this.cache,e])},f.prototype.get=function(e){var t;if(e){if(this.cache.length>16)return t=this.cache.slice(0,16),this.cache=this.cache.slice(16),t}else if(this.cache.length>=16)return t=this.cache.slice(0,16),this.cache=this.cache.slice(16),t;return null},f.prototype.flush=function(){if(this.cache.length)return this.cache},t.createDecipher=m,t.createDecipheriv=p},4250:function(e,t,r){"use strict";(function(t,i){var n;e.exports=T,T.ReadableState=E;r("faa1").EventEmitter;var a=function(e,t){return e.listeners(t).length},s=r("5bbb"),o=r("b639").Buffer,h=t.Uint8Array||function(){};function l(e){return o.from(e)}function c(e){return o.isBuffer(e)||e instanceof h}var u,f=r(9);u=f&&f.debuglog?f.debuglog("stream"):function(){};var d,p,m,g=r("96a5"),b=r("493f"),v=r("b9b5"),y=v.getHighWaterMark,w=r("9d8a").codes,M=w.ERR_INVALID_ARG_TYPE,_=w.ERR_STREAM_PUSH_AFTER_EOF,S=w.ERR_METHOD_NOT_IMPLEMENTED,k=w.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;r("3fb5")(T,s);var A=b.errorOrDestroy,x=["error","close","destroy","pause","resume"];function C(e,t,r){if("function"===typeof e.prependListener)return e.prependListener(t,r);e._events&&e._events[t]?Array.isArray(e._events[t])?e._events[t].unshift(r):e._events[t]=[r,e._events[t]]:e.on(t,r)}function E(e,t,i){n=n||r("e666"),e=e||{},"boolean"!==typeof i&&(i=t instanceof n),this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.readableObjectMode),this.highWaterMark=y(this,e,"readableHighWaterMark",i),this.buffer=new g,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==e.emitClose,this.autoDestroy=!!e.autoDestroy,this.destroyed=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(d||(d=r("7d72").StringDecoder),this.decoder=new d(e.encoding),this.encoding=e.encoding)}function T(e){if(n=n||r("e666"),!(this instanceof T))return new T(e);var t=this instanceof n;this._readableState=new E(e,this,t),this.readable=!0,e&&("function"===typeof e.read&&(this._read=e.read),"function"===typeof e.destroy&&(this._destroy=e.destroy)),s.call(this)}function R(e,t,r,i,n){u("readableAddChunk",t);var a,s=e._readableState;if(null===t)s.reading=!1,D(e,s);else if(n||(a=P(s,t)),a)A(e,a);else if(s.objectMode||t&&t.length>0)if("string"===typeof t||s.objectMode||Object.getPrototypeOf(t)===o.prototype||(t=l(t)),i)s.endEmitted?A(e,new k):I(e,s,t,!0);else if(s.ended)A(e,new _);else{if(s.destroyed)return!1;s.reading=!1,s.decoder&&!r?(t=s.decoder.write(t),s.objectMode||0!==t.length?I(e,s,t,!1):U(e,s)):I(e,s,t,!1)}else i||(s.reading=!1,U(e,s));return!s.ended&&(s.length<s.highWaterMark||0===s.length)}function I(e,t,r,i){t.flowing&&0===t.length&&!t.sync?(t.awaitDrain=0,e.emit("data",r)):(t.length+=t.objectMode?1:r.length,i?t.buffer.unshift(r):t.buffer.push(r),t.needReadable&&N(e)),U(e,t)}function P(e,t){var r;return c(t)||"string"===typeof t||void 0===t||e.objectMode||(r=new M("chunk",["string","Buffer","Uint8Array"],t)),r}Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(e){this._readableState&&(this._readableState.destroyed=e)}}),T.prototype.destroy=b.destroy,T.prototype._undestroy=b.undestroy,T.prototype._destroy=function(e,t){t(e)},T.prototype.push=function(e,t){var r,i=this._readableState;return i.objectMode?r=!0:"string"===typeof e&&(t=t||i.defaultEncoding,t!==i.encoding&&(e=o.from(e,t),t=""),r=!0),R(this,e,t,!1,r)},T.prototype.unshift=function(e){return R(this,e,null,!0,!1)},T.prototype.isPaused=function(){return!1===this._readableState.flowing},T.prototype.setEncoding=function(e){d||(d=r("7d72").StringDecoder);var t=new d(e);this._readableState.decoder=t,this._readableState.encoding=this._readableState.decoder.encoding;var i=this._readableState.buffer.head,n="";while(null!==i)n+=t.write(i.data),i=i.next;return this._readableState.buffer.clear(),""!==n&&this._readableState.buffer.push(n),this._readableState.length=n.length,this};var O=1073741824;function F(e){return e>=O?e=O:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}function L(e,t){return e<=0||0===t.length&&t.ended?0:t.objectMode?1:e!==e?t.flowing&&t.length?t.buffer.head.data.length:t.length:(e>t.highWaterMark&&(t.highWaterMark=F(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function D(e,t){if(u("onEofChunk"),!t.ended){if(t.decoder){var r=t.decoder.end();r&&r.length&&(t.buffer.push(r),t.length+=t.objectMode?1:r.length)}t.ended=!0,t.sync?N(e):(t.needReadable=!1,t.emittedReadable||(t.emittedReadable=!0,B(e)))}}function N(e){var t=e._readableState;u("emitReadable",t.needReadable,t.emittedReadable),t.needReadable=!1,t.emittedReadable||(u("emitReadable",t.flowing),t.emittedReadable=!0,i.nextTick(B,e))}function B(e){var t=e._readableState;u("emitReadable_",t.destroyed,t.length,t.ended),t.destroyed||!t.length&&!t.ended||(e.emit("readable"),t.emittedReadable=!1),t.needReadable=!t.flowing&&!t.ended&&t.length<=t.highWaterMark,X(e)}function U(e,t){t.readingMore||(t.readingMore=!0,i.nextTick(j,e,t))}function j(e,t){while(!t.reading&&!t.ended&&(t.length<t.highWaterMark||t.flowing&&0===t.length)){var r=t.length;if(u("maybeReadMore read 0"),e.read(0),r===t.length)break}t.readingMore=!1}function q(e){return function(){var t=e._readableState;u("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&a(e,"data")&&(t.flowing=!0,X(e))}}function z(e){var t=e._readableState;t.readableListening=e.listenerCount("readable")>0,t.resumeScheduled&&!t.paused?t.flowing=!0:e.listenerCount("data")>0&&e.resume()}function H(e){u("readable nexttick read 0"),e.read(0)}function G(e,t){t.resumeScheduled||(t.resumeScheduled=!0,i.nextTick(W,e,t))}function W(e,t){u("resume",t.reading),t.reading||e.read(0),t.resumeScheduled=!1,e.emit("resume"),X(e),t.flowing&&!t.reading&&e.read(0)}function X(e){var t=e._readableState;u("flow",t.flowing);while(t.flowing&&null!==e.read());}function V(e,t){return 0===t.length?null:(t.objectMode?r=t.buffer.shift():!e||e>=t.length?(r=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.first():t.buffer.concat(t.length),t.buffer.clear()):r=t.buffer.consume(e,t.decoder),r);var r}function K(e){var t=e._readableState;u("endReadable",t.endEmitted),t.endEmitted||(t.ended=!0,i.nextTick(Y,t,e))}function Y(e,t){if(u("endReadableNT",e.endEmitted,e.length),!e.endEmitted&&0===e.length&&(e.endEmitted=!0,t.readable=!1,t.emit("end"),e.autoDestroy)){var r=t._writableState;(!r||r.autoDestroy&&r.finished)&&t.destroy()}}function Z(e,t){for(var r=0,i=e.length;r<i;r++)if(e[r]===t)return r;return-1}T.prototype.read=function(e){u("read",e),e=parseInt(e,10);var t=this._readableState,r=e;if(0!==e&&(t.emittedReadable=!1),0===e&&t.needReadable&&((0!==t.highWaterMark?t.length>=t.highWaterMark:t.length>0)||t.ended))return u("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?K(this):N(this),null;if(e=L(e,t),0===e&&t.ended)return 0===t.length&&K(this),null;var i,n=t.needReadable;return u("need readable",n),(0===t.length||t.length-e<t.highWaterMark)&&(n=!0,u("length less than watermark",n)),t.ended||t.reading?(n=!1,u("reading or ended",n)):n&&(u("do read"),t.reading=!0,t.sync=!0,0===t.length&&(t.needReadable=!0),this._read(t.highWaterMark),t.sync=!1,t.reading||(e=L(r,t))),i=e>0?V(e,t):null,null===i?(t.needReadable=t.length<=t.highWaterMark,e=0):(t.length-=e,t.awaitDrain=0),0===t.length&&(t.ended||(t.needReadable=!0),r!==e&&t.ended&&K(this)),null!==i&&this.emit("data",i),i},T.prototype._read=function(e){A(this,new S("_read()"))},T.prototype.pipe=function(e,t){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=e;break;case 1:n.pipes=[n.pipes,e];break;default:n.pipes.push(e);break}n.pipesCount+=1,u("pipe count=%d opts=%j",n.pipesCount,t);var s=(!t||!1!==t.end)&&e!==i.stdout&&e!==i.stderr,o=s?l:v;function h(e,t){u("onunpipe"),e===r&&t&&!1===t.hasUnpiped&&(t.hasUnpiped=!0,d())}function l(){u("onend"),e.end()}n.endEmitted?i.nextTick(o):r.once("end",o),e.on("unpipe",h);var c=q(r);e.on("drain",c);var f=!1;function d(){u("cleanup"),e.removeListener("close",g),e.removeListener("finish",b),e.removeListener("drain",c),e.removeListener("error",m),e.removeListener("unpipe",h),r.removeListener("end",l),r.removeListener("end",v),r.removeListener("data",p),f=!0,!n.awaitDrain||e._writableState&&!e._writableState.needDrain||c()}function p(t){u("ondata");var i=e.write(t);u("dest.write",i),!1===i&&((1===n.pipesCount&&n.pipes===e||n.pipesCount>1&&-1!==Z(n.pipes,e))&&!f&&(u("false write response, pause",n.awaitDrain),n.awaitDrain++),r.pause())}function m(t){u("onerror",t),v(),e.removeListener("error",m),0===a(e,"error")&&A(e,t)}function g(){e.removeListener("finish",b),v()}function b(){u("onfinish"),e.removeListener("close",g),v()}function v(){u("unpipe"),r.unpipe(e)}return r.on("data",p),C(e,"error",m),e.once("close",g),e.once("finish",b),e.emit("pipe",r),n.flowing||(u("pipe resume"),r.resume()),e},T.prototype.unpipe=function(e){var t=this._readableState,r={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes||(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,r)),this;if(!e){var i=t.pipes,n=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var a=0;a<n;a++)i[a].emit("unpipe",this,{hasUnpiped:!1});return this}var s=Z(t.pipes,e);return-1===s||(t.pipes.splice(s,1),t.pipesCount-=1,1===t.pipesCount&&(t.pipes=t.pipes[0]),e.emit("unpipe",this,r)),this},T.prototype.on=function(e,t){var r=s.prototype.on.call(this,e,t),n=this._readableState;return"data"===e?(n.readableListening=this.listenerCount("readable")>0,!1!==n.flowing&&this.resume()):"readable"===e&&(n.endEmitted||n.readableListening||(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,u("on readable",n.length,n.reading),n.length?N(this):n.reading||i.nextTick(H,this))),r},T.prototype.addListener=T.prototype.on,T.prototype.removeListener=function(e,t){var r=s.prototype.removeListener.call(this,e,t);return"readable"===e&&i.nextTick(z,this),r},T.prototype.removeAllListeners=function(e){var t=s.prototype.removeAllListeners.apply(this,arguments);return"readable"!==e&&void 0!==e||i.nextTick(z,this),t},T.prototype.resume=function(){var e=this._readableState;return e.flowing||(u("resume"),e.flowing=!e.readableListening,G(this,e)),e.paused=!1,this},T.prototype.pause=function(){return u("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(u("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},T.prototype.wrap=function(e){var t=this,r=this._readableState,i=!1;for(var n in e.on("end",(function(){if(u("wrapped end"),r.decoder&&!r.ended){var e=r.decoder.end();e&&e.length&&t.push(e)}t.push(null)})),e.on("data",(function(n){if(u("wrapped data"),r.decoder&&(n=r.decoder.write(n)),(!r.objectMode||null!==n&&void 0!==n)&&(r.objectMode||n&&n.length)){var a=t.push(n);a||(i=!0,e.pause())}})),e)void 0===this[n]&&"function"===typeof e[n]&&(this[n]=function(t){return function(){return e[t].apply(e,arguments)}}(n));for(var a=0;a<x.length;a++)e.on(x[a],this.emit.bind(this,x[a]));return this._read=function(t){u("wrapped _read",t),i&&(i=!1,e.resume())},this},"function"===typeof Symbol&&(T.prototype[Symbol.asyncIterator]=function(){return void 0===p&&(p=r("4186")),p(this)}),Object.defineProperty(T.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Object.defineProperty(T.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}}),Object.defineProperty(T.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(e){this._readableState&&(this._readableState.flowing=e)}}),T._fromList=V,Object.defineProperty(T.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}}),"function"===typeof Symbol&&(T.from=function(e,t){return void 0===m&&(m=r("919c")),m(T,e,t)})}).call(this,r("c8ba"),r("f28c"))},"429b":function(e,t,r){e.exports=r("faa1").EventEmitter},"42a7":function(e,t,r){"use strict";var i=r("d113").codes.ERR_STREAM_PREMATURE_CLOSE;function n(e){var t=!1;return function(){if(!t){t=!0;for(var r=arguments.length,i=new Array(r),n=0;n<r;n++)i[n]=arguments[n];e.apply(this,i)}}}function a(){}function s(e){return e.setHeader&&"function"===typeof e.abort}function o(e,t,r){if("function"===typeof t)return o(e,null,t);t||(t={}),r=n(r||a);var h=t.readable||!1!==t.readable&&e.readable,l=t.writable||!1!==t.writable&&e.writable,c=function(){e.writable||f()},u=e._writableState&&e._writableState.finished,f=function(){l=!1,u=!0,h||r.call(e)},d=e._readableState&&e._readableState.endEmitted,p=function(){h=!1,d=!0,l||r.call(e)},m=function(t){r.call(e,t)},g=function(){var t;return h&&!d?(e._readableState&&e._readableState.ended||(t=new i),r.call(e,t)):l&&!u?(e._writableState&&e._writableState.ended||(t=new i),r.call(e,t)):void 0},b=function(){e.req.on("finish",f)};return s(e)?(e.on("complete",f),e.on("abort",g),e.req?b():e.on("request",b)):l&&!e._writableState&&(e.on("end",c),e.on("close",c)),e.on("end",p),e.on("finish",f),!1!==t.error&&e.on("error",m),e.on("close",g),function(){e.removeListener("complete",f),e.removeListener("abort",g),e.removeListener("request",b),e.req&&e.req.removeListener("finish",f),e.removeListener("end",c),e.removeListener("close",c),e.removeListener("finish",f),e.removeListener("end",p),e.removeListener("error",m),e.removeListener("close",g)}}e.exports=o},"44a3":function(e,t,r){"use strict";var i=r("80af"),n=r("f3a3"),a=n.assert,s=n.cachedProperty,o=n.parseBytes;function h(e,t){this.eddsa=e,"object"!==typeof t&&(t=o(t)),Array.isArray(t)&&(t={R:t.slice(0,e.encodingLength),S:t.slice(e.encodingLength)}),a(t.R&&t.S,"Signature without R or S"),e.isPoint(t.R)&&(this._R=t.R),t.S instanceof i&&(this._S=t.S),this._Rencoded=Array.isArray(t.R)?t.R:t.Rencoded,this._Sencoded=Array.isArray(t.S)?t.S:t.Sencoded}s(h,"S",(function(){return this.eddsa.decodeInt(this.Sencoded())})),s(h,"R",(function(){return this.eddsa.decodePoint(this.Rencoded())})),s(h,"Rencoded",(function(){return this.eddsa.encodePoint(this.R())})),s(h,"Sencoded",(function(){return this.eddsa.encodeInt(this.S())})),h.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},h.prototype.toHex=function(){return n.encode(this.toBytes(),"hex").toUpperCase()},e.exports=h},4632:function(e,t,r){},4681:function(e,t,r){"use strict";var i=r("966d");function n(e,t){var r=this,n=this._readableState&&this._readableState.destroyed,a=this._writableState&&this._writableState.destroyed;return n||a?(t?t(e):!e||this._writableState&&this._writableState.errorEmitted||i.nextTick(s,this,e),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,(function(e){!t&&e?(i.nextTick(s,r,e),r._writableState&&(r._writableState.errorEmitted=!0)):t&&t(e)})),this)}function a(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}function s(e,t){e.emit("error",t)}e.exports={destroy:n,undestroy:a}},"48e6":function(e,t,r){(function(e){(function(e,t){"use strict";function i(e,t){if(!e)throw new Error(t||"Assertion failed")}function n(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}function a(e,t,r){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(r=t,t=10),this._init(e||0,t||10,r||"be"))}var s;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{s="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:r(13).Buffer}catch(C){}function o(e,t){var r=e.charCodeAt(t);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function h(e,t,r){var i=o(e,r);return r-1>=t&&(i|=o(e,r-1)<<4),i}function l(e,t,r,i){for(var n=0,a=Math.min(e.length,r),s=t;s<a;s++){var o=e.charCodeAt(s)-48;n*=i,n+=o>=49?o-49+10:o>=17?o-17+10:o}return n}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n<e.length&&(16===t?this._parseHex(e,n,r):(this._parseBase(e,t,n),"le"===r&&this._initArray(this.toArray(),t,r)))},a.prototype._initNumber=function(e,t,r){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(i(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),t,r)},a.prototype._initArray=function(e,t,r){if(i("number"===typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var a,s,o=0;if("be"===r)for(n=e.length-1,a=0;n>=0;n-=3)s=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);else if("le"===r)for(n=0,a=0;n<e.length;n+=3)s=e[n]|e[n+1]<<8|e[n+2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var n,a=0,s=0;if("be"===r)for(i=e.length-1;i>=t;i-=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8;else{var o=e.length-t;for(i=o%2===0?t+1:t;i<e.length;i+=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8}this.strip()},a.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var a=e.length-r,s=a%i,o=Math.min(a,a-s)+r,h=0,c=r;c<o;c+=i)h=l(e,c,c+i,t),this.imuln(n),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var u=1;for(h=l(e,c,e.length,t),c=0;c<s;c++)u*=t;this.imuln(u),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this.strip()},a.prototype.copy=function(e){e.words=new Array(this.length);for(var t=0;t<this.length;t++)e.words[t]=this.words[t];e.length=this.length,e.negative=this.negative,e.red=this.red},a.prototype.clone=function(){var e=new a(null);return this.copy(e),e},a.prototype._expand=function(e){while(this.length<e)this.words[this.length++]=0;return this},a.prototype.strip=function(){while(this.length>1&&0===this.words[this.length-1])this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],f=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function d(e){for(var t=new Array(e.bitLength()),r=0;r<t.length;r++){var i=r/26|0,n=r%26;t[r]=(e.words[i]&1<<n)>>>n}return t}function p(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],a=0|t.words[0],s=n*a,o=67108863&s,h=s/67108864|0;r.words[0]=o;for(var l=1;l<i;l++){for(var c=h>>>26,u=67108863&h,f=Math.min(l,t.length-1),d=Math.max(0,l-e.length+1);d<=f;d++){var p=l-d|0;n=0|e.words[p],a=0|t.words[d],s=n*a+u,c+=s/67108864|0,u=67108863&s}r.words[l]=0|u,h=0|c}return 0!==h?r.words[l]=0|h:r.length--,r.strip()}a.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,a=0,s=0;s<this.length;s++){var o=this.words[s],h=(16777215&(o<<n|a)).toString(16);a=o>>>24-n&16777215,r=0!==a||s!==this.length-1?c[6-h.length]+h+r:h+r,n+=2,n>=26&&(n-=26,s--)}0!==a&&(r=a.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var l=u[e],d=f[e];r="";var p=this.clone();p.negative=0;while(!p.isZero()){var m=p.modn(d).toString(e);p=p.idivn(d),r=p.isZero()?m+r:c[l-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return i("undefined"!==typeof s),this.toArrayLike(s,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,r){var n=this.byteLength(),a=r||Math.max(1,n);i(n<=a,"byte array longer than desired length"),i(a>0,"Requested array length <= 0"),this.strip();var s,o,h="le"===t,l=new e(a),c=this.clone();if(h){for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[o]=s;for(;o<a;o++)l[o]=0}else{for(o=0;o<a-n;o++)l[o]=0;for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[a-o-1]=s}return l},Math.clz32?a.prototype._countBits=function(e){return 32-Math.clz32(e)}:a.prototype._countBits=function(e){var t=e,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;t<this.length;t++){var r=this._zeroBits(this.words[t]);if(e+=r,26!==r)break}return e},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(e){return 0!==this.negative?this.abs().inotn(e).iaddn(1):this.clone()},a.prototype.fromTwos=function(e){return this.testn(e-1)?this.notn(e).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(e){while(this.length<e.length)this.words[this.length++]=0;for(var t=0;t<e.length;t++)this.words[t]=this.words[t]|e.words[t];return this.strip()},a.prototype.ior=function(e){return i(0===(this.negative|e.negative)),this.iuor(e)},a.prototype.or=function(e){return this.length>e.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;r<t.length;r++)this.words[r]=this.words[r]&e.words[r];return this.length=t.length,this.strip()},a.prototype.iand=function(e){return i(0===(this.negative|e.negative)),this.iuand(e)},a.prototype.and=function(e){return this.length>e.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;i<r.length;i++)this.words[i]=t.words[i]^r.words[i];if(this!==t)for(;i<t.length;i++)this.words[i]=t.words[i];return this.length=t.length,this.strip()},a.prototype.ixor=function(e){return i(0===(this.negative|e.negative)),this.iuxor(e)},a.prototype.xor=function(e){return this.length>e.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n<t;n++)this.words[n]=67108863&~this.words[n];return r>0&&(this.words[n]=~this.words[n]&67108863>>26-r),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<<n:this.words[r]&~(1<<n),this.strip()},a.prototype.iadd=function(e){var t,r,i;if(0!==this.negative&&0===e.negative)return this.negative=0,t=this.isub(e),this.negative^=1,this._normSign();if(0===this.negative&&0!==e.negative)return e.negative=0,t=this.isub(e),e.negative=1,t._normSign();this.length>e.length?(r=this,i=e):(r=e,i=this);for(var n=0,a=0;a<i.length;a++)t=(0|r.words[a])+(0|i.words[a])+n,this.words[a]=67108863&t,n=t>>>26;for(;0!==n&&a<r.length;a++)t=(0|r.words[a])+n,this.words[a]=67108863&t,n=t>>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(e){var t;return 0!==e.negative&&0===this.negative?(e.negative=0,t=this.sub(e),e.negative^=1,t):0===e.negative&&0!==this.negative?(this.negative=0,t=e.sub(this),this.negative=1,t):this.length>e.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var a=0,s=0;s<i.length;s++)t=(0|r.words[s])-(0|i.words[s])+a,a=t>>26,this.words[s]=67108863&t;for(;0!==a&&s<r.length;s++)t=(0|r.words[s])+a,a=t>>26,this.words[s]=67108863&t;if(0===a&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this.strip()},a.prototype.sub=function(e){return this.clone().isub(e)};var m=function(e,t,r){var i,n,a,s=e.words,o=t.words,h=r.words,l=0,c=0|s[0],u=8191&c,f=c>>>13,d=0|s[1],p=8191&d,m=d>>>13,g=0|s[2],b=8191&g,v=g>>>13,y=0|s[3],w=8191&y,M=y>>>13,_=0|s[4],S=8191&_,k=_>>>13,A=0|s[5],x=8191&A,C=A>>>13,E=0|s[6],T=8191&E,R=E>>>13,I=0|s[7],P=8191&I,O=I>>>13,F=0|s[8],L=8191&F,D=F>>>13,N=0|s[9],B=8191&N,U=N>>>13,j=0|o[0],q=8191&j,z=j>>>13,H=0|o[1],G=8191&H,W=H>>>13,X=0|o[2],V=8191&X,K=X>>>13,Y=0|o[3],Z=8191&Y,$=Y>>>13,J=0|o[4],Q=8191&J,ee=J>>>13,te=0|o[5],re=8191&te,ie=te>>>13,ne=0|o[6],ae=8191&ne,se=ne>>>13,oe=0|o[7],he=8191&oe,le=oe>>>13,ce=0|o[8],ue=8191&ce,fe=ce>>>13,de=0|o[9],pe=8191&de,me=de>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(u,q),n=Math.imul(u,z),n=n+Math.imul(f,q)|0,a=Math.imul(f,z);var ge=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,q),n=Math.imul(p,z),n=n+Math.imul(m,q)|0,a=Math.imul(m,z),i=i+Math.imul(u,G)|0,n=n+Math.imul(u,W)|0,n=n+Math.imul(f,G)|0,a=a+Math.imul(f,W)|0;var be=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(b,q),n=Math.imul(b,z),n=n+Math.imul(v,q)|0,a=Math.imul(v,z),i=i+Math.imul(p,G)|0,n=n+Math.imul(p,W)|0,n=n+Math.imul(m,G)|0,a=a+Math.imul(m,W)|0,i=i+Math.imul(u,V)|0,n=n+Math.imul(u,K)|0,n=n+Math.imul(f,V)|0,a=a+Math.imul(f,K)|0;var ve=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(w,q),n=Math.imul(w,z),n=n+Math.imul(M,q)|0,a=Math.imul(M,z),i=i+Math.imul(b,G)|0,n=n+Math.imul(b,W)|0,n=n+Math.imul(v,G)|0,a=a+Math.imul(v,W)|0,i=i+Math.imul(p,V)|0,n=n+Math.imul(p,K)|0,n=n+Math.imul(m,V)|0,a=a+Math.imul(m,K)|0,i=i+Math.imul(u,Z)|0,n=n+Math.imul(u,$)|0,n=n+Math.imul(f,Z)|0,a=a+Math.imul(f,$)|0;var ye=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(S,q),n=Math.imul(S,z),n=n+Math.imul(k,q)|0,a=Math.imul(k,z),i=i+Math.imul(w,G)|0,n=n+Math.imul(w,W)|0,n=n+Math.imul(M,G)|0,a=a+Math.imul(M,W)|0,i=i+Math.imul(b,V)|0,n=n+Math.imul(b,K)|0,n=n+Math.imul(v,V)|0,a=a+Math.imul(v,K)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,$)|0,n=n+Math.imul(m,Z)|0,a=a+Math.imul(m,$)|0,i=i+Math.imul(u,Q)|0,n=n+Math.imul(u,ee)|0,n=n+Math.imul(f,Q)|0,a=a+Math.imul(f,ee)|0;var we=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(x,q),n=Math.imul(x,z),n=n+Math.imul(C,q)|0,a=Math.imul(C,z),i=i+Math.imul(S,G)|0,n=n+Math.imul(S,W)|0,n=n+Math.imul(k,G)|0,a=a+Math.imul(k,W)|0,i=i+Math.imul(w,V)|0,n=n+Math.imul(w,K)|0,n=n+Math.imul(M,V)|0,a=a+Math.imul(M,K)|0,i=i+Math.imul(b,Z)|0,n=n+Math.imul(b,$)|0,n=n+Math.imul(v,Z)|0,a=a+Math.imul(v,$)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,a=a+Math.imul(m,ee)|0,i=i+Math.imul(u,re)|0,n=n+Math.imul(u,ie)|0,n=n+Math.imul(f,re)|0,a=a+Math.imul(f,ie)|0;var Me=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(T,q),n=Math.imul(T,z),n=n+Math.imul(R,q)|0,a=Math.imul(R,z),i=i+Math.imul(x,G)|0,n=n+Math.imul(x,W)|0,n=n+Math.imul(C,G)|0,a=a+Math.imul(C,W)|0,i=i+Math.imul(S,V)|0,n=n+Math.imul(S,K)|0,n=n+Math.imul(k,V)|0,a=a+Math.imul(k,K)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,$)|0,n=n+Math.imul(M,Z)|0,a=a+Math.imul(M,$)|0,i=i+Math.imul(b,Q)|0,n=n+Math.imul(b,ee)|0,n=n+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,a=a+Math.imul(m,ie)|0,i=i+Math.imul(u,ae)|0,n=n+Math.imul(u,se)|0,n=n+Math.imul(f,ae)|0,a=a+Math.imul(f,se)|0;var _e=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul(P,q),n=Math.imul(P,z),n=n+Math.imul(O,q)|0,a=Math.imul(O,z),i=i+Math.imul(T,G)|0,n=n+Math.imul(T,W)|0,n=n+Math.imul(R,G)|0,a=a+Math.imul(R,W)|0,i=i+Math.imul(x,V)|0,n=n+Math.imul(x,K)|0,n=n+Math.imul(C,V)|0,a=a+Math.imul(C,K)|0,i=i+Math.imul(S,Z)|0,n=n+Math.imul(S,$)|0,n=n+Math.imul(k,Z)|0,a=a+Math.imul(k,$)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(M,Q)|0,a=a+Math.imul(M,ee)|0,i=i+Math.imul(b,re)|0,n=n+Math.imul(b,ie)|0,n=n+Math.imul(v,re)|0,a=a+Math.imul(v,ie)|0,i=i+Math.imul(p,ae)|0,n=n+Math.imul(p,se)|0,n=n+Math.imul(m,ae)|0,a=a+Math.imul(m,se)|0,i=i+Math.imul(u,he)|0,n=n+Math.imul(u,le)|0,n=n+Math.imul(f,he)|0,a=a+Math.imul(f,le)|0;var Se=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(L,q),n=Math.imul(L,z),n=n+Math.imul(D,q)|0,a=Math.imul(D,z),i=i+Math.imul(P,G)|0,n=n+Math.imul(P,W)|0,n=n+Math.imul(O,G)|0,a=a+Math.imul(O,W)|0,i=i+Math.imul(T,V)|0,n=n+Math.imul(T,K)|0,n=n+Math.imul(R,V)|0,a=a+Math.imul(R,K)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,$)|0,n=n+Math.imul(C,Z)|0,a=a+Math.imul(C,$)|0,i=i+Math.imul(S,Q)|0,n=n+Math.imul(S,ee)|0,n=n+Math.imul(k,Q)|0,a=a+Math.imul(k,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(M,re)|0,a=a+Math.imul(M,ie)|0,i=i+Math.imul(b,ae)|0,n=n+Math.imul(b,se)|0,n=n+Math.imul(v,ae)|0,a=a+Math.imul(v,se)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,le)|0,n=n+Math.imul(m,he)|0,a=a+Math.imul(m,le)|0,i=i+Math.imul(u,ue)|0,n=n+Math.imul(u,fe)|0,n=n+Math.imul(f,ue)|0,a=a+Math.imul(f,fe)|0;var ke=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(B,q),n=Math.imul(B,z),n=n+Math.imul(U,q)|0,a=Math.imul(U,z),i=i+Math.imul(L,G)|0,n=n+Math.imul(L,W)|0,n=n+Math.imul(D,G)|0,a=a+Math.imul(D,W)|0,i=i+Math.imul(P,V)|0,n=n+Math.imul(P,K)|0,n=n+Math.imul(O,V)|0,a=a+Math.imul(O,K)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,$)|0,n=n+Math.imul(R,Z)|0,a=a+Math.imul(R,$)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(C,Q)|0,a=a+Math.imul(C,ee)|0,i=i+Math.imul(S,re)|0,n=n+Math.imul(S,ie)|0,n=n+Math.imul(k,re)|0,a=a+Math.imul(k,ie)|0,i=i+Math.imul(w,ae)|0,n=n+Math.imul(w,se)|0,n=n+Math.imul(M,ae)|0,a=a+Math.imul(M,se)|0,i=i+Math.imul(b,he)|0,n=n+Math.imul(b,le)|0,n=n+Math.imul(v,he)|0,a=a+Math.imul(v,le)|0,i=i+Math.imul(p,ue)|0,n=n+Math.imul(p,fe)|0,n=n+Math.imul(m,ue)|0,a=a+Math.imul(m,fe)|0,i=i+Math.imul(u,pe)|0,n=n+Math.imul(u,me)|0,n=n+Math.imul(f,pe)|0,a=a+Math.imul(f,me)|0;var Ae=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(B,G),n=Math.imul(B,W),n=n+Math.imul(U,G)|0,a=Math.imul(U,W),i=i+Math.imul(L,V)|0,n=n+Math.imul(L,K)|0,n=n+Math.imul(D,V)|0,a=a+Math.imul(D,K)|0,i=i+Math.imul(P,Z)|0,n=n+Math.imul(P,$)|0,n=n+Math.imul(O,Z)|0,a=a+Math.imul(O,$)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(R,Q)|0,a=a+Math.imul(R,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(C,re)|0,a=a+Math.imul(C,ie)|0,i=i+Math.imul(S,ae)|0,n=n+Math.imul(S,se)|0,n=n+Math.imul(k,ae)|0,a=a+Math.imul(k,se)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,le)|0,n=n+Math.imul(M,he)|0,a=a+Math.imul(M,le)|0,i=i+Math.imul(b,ue)|0,n=n+Math.imul(b,fe)|0,n=n+Math.imul(v,ue)|0,a=a+Math.imul(v,fe)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,a=a+Math.imul(m,me)|0;var xe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(B,V),n=Math.imul(B,K),n=n+Math.imul(U,V)|0,a=Math.imul(U,K),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,$)|0,n=n+Math.imul(D,Z)|0,a=a+Math.imul(D,$)|0,i=i+Math.imul(P,Q)|0,n=n+Math.imul(P,ee)|0,n=n+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(R,re)|0,a=a+Math.imul(R,ie)|0,i=i+Math.imul(x,ae)|0,n=n+Math.imul(x,se)|0,n=n+Math.imul(C,ae)|0,a=a+Math.imul(C,se)|0,i=i+Math.imul(S,he)|0,n=n+Math.imul(S,le)|0,n=n+Math.imul(k,he)|0,a=a+Math.imul(k,le)|0,i=i+Math.imul(w,ue)|0,n=n+Math.imul(w,fe)|0,n=n+Math.imul(M,ue)|0,a=a+Math.imul(M,fe)|0,i=i+Math.imul(b,pe)|0,n=n+Math.imul(b,me)|0,n=n+Math.imul(v,pe)|0,a=a+Math.imul(v,me)|0;var Ce=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(B,Z),n=Math.imul(B,$),n=n+Math.imul(U,Z)|0,a=Math.imul(U,$),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(D,Q)|0,a=a+Math.imul(D,ee)|0,i=i+Math.imul(P,re)|0,n=n+Math.imul(P,ie)|0,n=n+Math.imul(O,re)|0,a=a+Math.imul(O,ie)|0,i=i+Math.imul(T,ae)|0,n=n+Math.imul(T,se)|0,n=n+Math.imul(R,ae)|0,a=a+Math.imul(R,se)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,le)|0,n=n+Math.imul(C,he)|0,a=a+Math.imul(C,le)|0,i=i+Math.imul(S,ue)|0,n=n+Math.imul(S,fe)|0,n=n+Math.imul(k,ue)|0,a=a+Math.imul(k,fe)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(M,pe)|0,a=a+Math.imul(M,me)|0;var Ee=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(B,Q),n=Math.imul(B,ee),n=n+Math.imul(U,Q)|0,a=Math.imul(U,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(D,re)|0,a=a+Math.imul(D,ie)|0,i=i+Math.imul(P,ae)|0,n=n+Math.imul(P,se)|0,n=n+Math.imul(O,ae)|0,a=a+Math.imul(O,se)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,le)|0,n=n+Math.imul(R,he)|0,a=a+Math.imul(R,le)|0,i=i+Math.imul(x,ue)|0,n=n+Math.imul(x,fe)|0,n=n+Math.imul(C,ue)|0,a=a+Math.imul(C,fe)|0,i=i+Math.imul(S,pe)|0,n=n+Math.imul(S,me)|0,n=n+Math.imul(k,pe)|0,a=a+Math.imul(k,me)|0;var Te=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(B,re),n=Math.imul(B,ie),n=n+Math.imul(U,re)|0,a=Math.imul(U,ie),i=i+Math.imul(L,ae)|0,n=n+Math.imul(L,se)|0,n=n+Math.imul(D,ae)|0,a=a+Math.imul(D,se)|0,i=i+Math.imul(P,he)|0,n=n+Math.imul(P,le)|0,n=n+Math.imul(O,he)|0,a=a+Math.imul(O,le)|0,i=i+Math.imul(T,ue)|0,n=n+Math.imul(T,fe)|0,n=n+Math.imul(R,ue)|0,a=a+Math.imul(R,fe)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(C,pe)|0,a=a+Math.imul(C,me)|0;var Re=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Re>>>26)|0,Re&=67108863,i=Math.imul(B,ae),n=Math.imul(B,se),n=n+Math.imul(U,ae)|0,a=Math.imul(U,se),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,le)|0,n=n+Math.imul(D,he)|0,a=a+Math.imul(D,le)|0,i=i+Math.imul(P,ue)|0,n=n+Math.imul(P,fe)|0,n=n+Math.imul(O,ue)|0,a=a+Math.imul(O,fe)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(R,pe)|0,a=a+Math.imul(R,me)|0;var Ie=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(B,he),n=Math.imul(B,le),n=n+Math.imul(U,he)|0,a=Math.imul(U,le),i=i+Math.imul(L,ue)|0,n=n+Math.imul(L,fe)|0,n=n+Math.imul(D,ue)|0,a=a+Math.imul(D,fe)|0,i=i+Math.imul(P,pe)|0,n=n+Math.imul(P,me)|0,n=n+Math.imul(O,pe)|0,a=a+Math.imul(O,me)|0;var Pe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(B,ue),n=Math.imul(B,fe),n=n+Math.imul(U,ue)|0,a=Math.imul(U,fe),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(D,pe)|0,a=a+Math.imul(D,me)|0;var Oe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(B,pe),n=Math.imul(B,me),n=n+Math.imul(U,pe)|0,a=Math.imul(U,me);var Fe=(l+i|0)+((8191&n)<<13)|0;return l=(a+(n>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,h[0]=ge,h[1]=be,h[2]=ve,h[3]=ye,h[4]=we,h[5]=Me,h[6]=_e,h[7]=Se,h[8]=ke,h[9]=Ae,h[10]=xe,h[11]=Ce,h[12]=Ee,h[13]=Te,h[14]=Re,h[15]=Ie,h[16]=Pe,h[17]=Oe,h[18]=Fe,0!==l&&(h[19]=l,r.length++),r};function g(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,a=0;a<r.length-1;a++){var s=n;n=0;for(var o=67108863&i,h=Math.min(a,t.length-1),l=Math.max(0,a-e.length+1);l<=h;l++){var c=a-l,u=0|e.words[c],f=0|t.words[l],d=u*f,p=67108863&d;s=s+(d/67108864|0)|0,p=p+o|0,o=67108863&p,s=s+(p>>>26)|0,n+=s>>>26,s&=67108863}r.words[a]=o,i=s,s=n}return 0!==i?r.words[a]=i:r.length--,r.strip()}function b(e,t,r){var i=new v;return i.mulp(e,t,r)}function v(e,t){this.x=e,this.y=t}Math.imul||(m=p),a.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?m(this,e,t):i<63?p(this,e,t):i<1024?g(this,e,t):b(this,e,t),r},v.prototype.makeRBT=function(e){for(var t=new Array(e),r=a.prototype._countBits(e)-1,i=0;i<e;i++)t[i]=this.revBin(i,r,e);return t},v.prototype.revBin=function(e,t,r){if(0===e||e===r-1)return e;for(var i=0,n=0;n<t;n++)i|=(1&e)<<t-n-1,e>>=1;return i},v.prototype.permute=function(e,t,r,i,n,a){for(var s=0;s<a;s++)i[s]=t[e[s]],n[s]=r[e[s]]},v.prototype.transform=function(e,t,r,i,n,a){this.permute(a,e,t,r,i,n);for(var s=1;s<n;s<<=1)for(var o=s<<1,h=Math.cos(2*Math.PI/o),l=Math.sin(2*Math.PI/o),c=0;c<n;c+=o)for(var u=h,f=l,d=0;d<s;d++){var p=r[c+d],m=i[c+d],g=r[c+d+s],b=i[c+d+s],v=u*g-f*b;b=u*b+f*g,g=v,r[c+d]=p+g,i[c+d]=m+b,r[c+d+s]=p-g,i[c+d+s]=m-b,d!==o&&(v=h*u-l*f,f=h*f+l*u,u=v)}},v.prototype.guessLen13b=function(e,t){var r=1|Math.max(t,e),i=1&r,n=0;for(r=r/2|0;r;r>>>=1)n++;return 1<<n+1+i},v.prototype.conjugate=function(e,t,r){if(!(r<=1))for(var i=0;i<r/2;i++){var n=e[i];e[i]=e[r-i-1],e[r-i-1]=n,n=t[i],t[i]=-t[r-i-1],t[r-i-1]=-n}},v.prototype.normalize13b=function(e,t){for(var r=0,i=0;i<t/2;i++){var n=8192*Math.round(e[2*i+1]/t)+Math.round(e[2*i]/t)+r;e[i]=67108863&n,r=n<67108864?0:n/67108864|0}return e},v.prototype.convert13b=function(e,t,r,n){for(var a=0,s=0;s<t;s++)a+=0|e[s],r[2*s]=8191&a,a>>>=13,r[2*s+1]=8191&a,a>>>=13;for(s=2*t;s<n;++s)r[s]=0;i(0===a),i(0===(-8192&a))},v.prototype.stub=function(e){for(var t=new Array(e),r=0;r<e;r++)t[r]=0;return t},v.prototype.mulp=function(e,t,r){var i=2*this.guessLen13b(e.length,t.length),n=this.makeRBT(i),a=this.stub(i),s=new Array(i),o=new Array(i),h=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),f=r.words;f.length=i,this.convert13b(e.words,e.length,s,i),this.convert13b(t.words,t.length,l,i),this.transform(s,a,o,h,i,n),this.transform(l,a,c,u,i,n);for(var d=0;d<i;d++){var p=o[d]*c[d]-h[d]*u[d];h[d]=o[d]*u[d]+h[d]*c[d],o[d]=p}return this.conjugate(o,h,i),this.transform(o,h,f,a,i,n),this.conjugate(f,a,i),this.normalize13b(f,i),r.negative=e.negative^t.negative,r.length=e.length+t.length,r.strip()},a.prototype.mul=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),this.mulTo(e,t)},a.prototype.mulf=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),b(this,e,t)},a.prototype.imul=function(e){return this.clone().mulTo(e,this)},a.prototype.imuln=function(e){i("number"===typeof e),i(e<67108864);for(var t=0,r=0;r<this.length;r++){var n=(0|this.words[r])*e,a=(67108863&n)+(67108863&t);t>>=26,t+=n/67108864|0,t+=a>>>26,this.words[r]=67108863&a}return 0!==t&&(this.words[r]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=d(e);if(0===t.length)return new a(1);for(var r=this,i=0;i<t.length;i++,r=r.sqr())if(0!==t[i])break;if(++i<t.length)for(var n=r.sqr();i<t.length;i++,n=n.sqr())0!==t[i]&&(r=r.mul(n));return r},a.prototype.iushln=function(e){i("number"===typeof e&&e>=0);var t,r=e%26,n=(e-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var s=0;for(t=0;t<this.length;t++){var o=this.words[t]&a,h=(0|this.words[t])-o<<r;this.words[t]=h|s,s=o>>>26-r}s&&(this.words[t]=s,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t<n;t++)this.words[t]=0;this.length+=n}return this.strip()},a.prototype.ishln=function(e){return i(0===this.negative),this.iushln(e)},a.prototype.iushrn=function(e,t,r){var n;i("number"===typeof e&&e>=0),n=t?(t-t%26)/26:0;var a=e%26,s=Math.min((e-a)/26,this.length),o=67108863^67108863>>>a<<a,h=r;if(n-=s,n=Math.max(0,n),h){for(var l=0;l<s;l++)h.words[l]=this.words[l];h.length=s}if(0===s);else if(this.length>s)for(this.length-=s,l=0;l<this.length;l++)this.words[l]=this.words[l+s];else this.words[0]=0,this.length=1;var c=0;for(l=this.length-1;l>=0&&(0!==c||l>=n);l--){var u=0|this.words[l];this.words[l]=c<<26-a|u>>>a,c=u&o}return h&&0!==c&&(h.words[h.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return!1;var a=this.words[r];return!!(a&n)},a.prototype.imaskn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<<t;this.words[this.length-1]&=n}return this.strip()},a.prototype.maskn=function(e){return this.clone().imaskn(e)},a.prototype.iaddn=function(e){return i("number"===typeof e),i(e<67108864),e<0?this.isubn(-e):0!==this.negative?1===this.length&&(0|this.words[0])<e?(this.words[0]=e-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(e),this.negative=1,this):this._iaddn(e)},a.prototype._iaddn=function(e){this.words[0]+=e;for(var t=0;t<this.length&&this.words[t]>=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t<this.length&&this.words[t]<0;t++)this.words[t]+=67108864,this.words[t+1]-=1;return this.strip()},a.prototype.addn=function(e){return this.clone().iaddn(e)},a.prototype.subn=function(e){return this.clone().isubn(e)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(e,t,r){var n,a,s=e.length+r;this._expand(s);var o=0;for(n=0;n<e.length;n++){a=(0|this.words[n+r])+o;var h=(0|e.words[n])*t;a-=67108863&h,o=(a>>26)-(h/67108864|0),this.words[n+r]=67108863&a}for(;n<this.length-r;n++)a=(0|this.words[n+r])+o,o=a>>26,this.words[n+r]=67108863&a;if(0===o)return this.strip();for(i(-1===o),o=0,n=0;n<this.length;n++)a=-(0|this.words[n])+o,o=a>>26,this.words[n]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,s=0|n.words[n.length-1],o=this._countBits(s);r=26-o,0!==r&&(n=n.ushln(r),i.iushln(r),s=0|n.words[n.length-1]);var h,l=i.length-n.length;if("mod"!==t){h=new a(null),h.length=l+1,h.words=new Array(h.length);for(var c=0;c<h.length;c++)h.words[c]=0}var u=i.clone()._ishlnsubmul(n,1,l);0===u.negative&&(i=u,h&&(h.words[l]=1));for(var f=l-1;f>=0;f--){var d=67108864*(0|i.words[n.length+f])+(0|i.words[n.length+f-1]);d=Math.min(d/s|0,67108863),i._ishlnsubmul(n,d,f);while(0!==i.negative)d--,i.negative=0,i._ishlnsubmul(n,1,f),i.isZero()||(i.negative^=1);h&&(h.words[f]=d)}return h&&h.strip(),i.strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:h||null,mod:i}},a.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(o=this.neg().divmod(e,t),"mod"!==t&&(n=o.div.neg()),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.iadd(e)),{div:n,mod:s}):0===this.negative&&0!==e.negative?(o=this.divmod(e.neg(),t),"mod"!==t&&(n=o.div.neg()),{div:n,mod:o.mod}):0!==(this.negative&e.negative)?(o=this.neg().divmod(e.neg(),t),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.isub(e)),{div:o.div,mod:s}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var n,s,o},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),a=r.cmp(i);return a<0||1===n&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){i(e<=67108863);for(var t=(1<<26)%e,r=0,n=this.length-1;n>=0;n--)r=(t*r+(0|this.words[n]))%e;return r},a.prototype.idivn=function(e){i(e<=67108863);for(var t=0,r=this.length-1;r>=0;r--){var n=(0|this.words[r])+67108864*t;this.words[r]=n/e|0,t=n%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new a(1),s=new a(0),o=new a(0),h=new a(1),l=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++l;var c=r.clone(),u=t.clone();while(!t.isZero()){for(var f=0,d=1;0===(t.words[0]&d)&&f<26;++f,d<<=1);if(f>0){t.iushrn(f);while(f-- >0)(n.isOdd()||s.isOdd())&&(n.iadd(c),s.isub(u)),n.iushrn(1),s.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(o.isOdd()||h.isOdd())&&(o.iadd(c),h.isub(u)),o.iushrn(1),h.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(o),s.isub(h)):(r.isub(t),o.isub(n),h.isub(s))}return{a:o,b:h,gcd:r.iushln(l)}},a.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,s=new a(1),o=new a(0),h=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var l=0,c=1;0===(t.words[0]&c)&&l<26;++l,c<<=1);if(l>0){t.iushrn(l);while(l-- >0)s.isOdd()&&s.iadd(h),s.iushrn(1)}for(var u=0,f=1;0===(r.words[0]&f)&&u<26;++u,f<<=1);if(u>0){r.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(h),o.iushrn(1)}t.cmp(r)>=0?(t.isub(r),s.isub(o)):(r.isub(t),o.isub(s))}return n=0===t.cmpn(1)?s:o,n.cmpn(0)<0&&n.iadd(e),n},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var a=t;t=r,r=a}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return this._expand(r+1),this.words[r]|=n,this;for(var a=n,s=r;0!==a&&s<this.length;s++){var o=0|this.words[s];o+=a,a=o>>>26,o&=67108863,this.words[s]=o}return 0!==a&&(this.words[s]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:n<e?-1:1}return 0!==this.negative?0|-t:t},a.prototype.cmp=function(e){if(0!==this.negative&&0===e.negative)return-1;if(0===this.negative&&0!==e.negative)return 1;var t=this.ucmp(e);return 0!==this.negative?0|-t:t},a.prototype.ucmp=function(e){if(this.length>e.length)return 1;if(this.length<e.length)return-1;for(var t=0,r=this.length-1;r>=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){i<n?t=-1:i>n&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new A(e)},a.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var y={k256:null,p224:null,p192:null,p25519:null};function w(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function M(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function _(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function S(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function k(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function A(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){A.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}w.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},w.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t<this.n?-1:r.ucmp(this.p);return 0===i?(r.words[0]=0,r.length=1):i>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(e,t){e.iushrn(this.n,0,t)},w.prototype.imulK=function(e){return e.imul(this.k)},n(M,w),M.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n<i;n++)t.words[n]=e.words[n];if(t.length=i,e.length<=9)return e.words[0]=0,void(e.length=1);var a=e.words[9];for(t.words[t.length++]=a&r,n=10;n<e.length;n++){var s=0|e.words[n];e.words[n-10]=(s&r)<<4|a>>>22,a=s}a>>>=22,e.words[n-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},M.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r<e.length;r++){var i=0|e.words[r];t+=977*i,e.words[r]=67108863&t,t=64*i+(t/67108864|0)}return 0===e.words[e.length-1]&&(e.length--,0===e.words[e.length-1]&&e.length--),e},n(_,w),n(S,w),n(k,w),k.prototype.imulK=function(e){for(var t=0,r=0;r<e.length;r++){var i=19*(0|e.words[r])+t,n=67108863&i;i>>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(y[e])return y[e];var t;if("k256"===e)t=new M;else if("p224"===e)t=new _;else if("p192"===e)t=new S;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new k}return y[e]=t,t},A.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},A.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},A.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},A.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},A.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},A.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},A.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},A.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},A.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},A.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},A.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},A.prototype.isqr=function(e){return this.imul(e,e.clone())},A.prototype.sqr=function(e){return this.mul(e,e)},A.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new a(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),s=0;while(!n.isZero()&&0===n.andln(1))s++,n.iushrn(1);i(!n.isZero());var o=new a(1).toRed(this),h=o.redNeg(),l=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new a(2*c*c).toRed(this);while(0!==this.pow(c,l).cmp(h))c.redIAdd(h);var u=this.pow(c,n),f=this.pow(e,n.addn(1).iushrn(1)),d=this.pow(e,n),p=s;while(0!==d.cmp(o)){for(var m=d,g=0;0!==m.cmp(o);g++)m=m.redSqr();i(g<p);var b=this.pow(u,new a(1).iushln(p-g-1));f=f.redMul(b),u=b.redSqr(),d=d.redMul(u),p=g}return f},A.prototype.invm=function(e){var t=e._invmp(this.m);return 0!==t.negative?(t.negative=0,this.imod(t).redNeg()):this.imod(t)},A.prototype.pow=function(e,t){if(t.isZero())return new a(1).toRed(this);if(0===t.cmpn(1))return e.clone();var r=4,i=new Array(1<<r);i[0]=new a(1).toRed(this),i[1]=e;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],e);var s=i[0],o=0,h=0,l=t.bitLength()%26;for(0===l&&(l=26),n=t.length-1;n>=0;n--){for(var c=t.words[n],u=l-1;u>=0;u--){var f=c>>u&1;s!==i[0]&&(s=this.sqr(s)),0!==f||0!==o?(o<<=1,o|=f,h++,(h===r||0===n&&0===u)&&(s=this.mul(s,i[o]),h=0,o=0)):h=0}l=26}return s},A.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},A.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new x(e)},n(x,A),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),a=n;return n.cmp(this.m)>=0?a=n.isub(this.m):n.cmpn(0)<0&&(a=n.iadd(this.m)),a._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},x.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}})(e,this)}).call(this,r("62e4")(e))},"493f":function(e,t,r){"use strict";(function(t){function r(e,r){var a=this,o=this._readableState&&this._readableState.destroyed,h=this._writableState&&this._writableState.destroyed;return o||h?(r?r(e):e&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,t.nextTick(s,this,e)):t.nextTick(s,this,e)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,(function(e){!r&&e?a._writableState?a._writableState.errorEmitted?t.nextTick(n,a):(a._writableState.errorEmitted=!0,t.nextTick(i,a,e)):t.nextTick(i,a,e):r?(t.nextTick(n,a),r(e)):t.nextTick(n,a)})),this)}function i(e,t){s(e,t),n(e)}function n(e){e._writableState&&!e._writableState.emitClose||e._readableState&&!e._readableState.emitClose||e.emit("close")}function a(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}function s(e,t){e.emit("error",t)}function o(e,t){var r=e._readableState,i=e._writableState;r&&r.autoDestroy||i&&i.autoDestroy?e.destroy(t):e.emit("error",t)}e.exports={destroy:r,undestroy:a,errorOrDestroy:o}}).call(this,r("f28c"))},"49ce":function(e,t,r){"use strict";(function(t,i){function n(e){var t=this;this.next=null,this.entry=null,this.finish=function(){W(t,e)}}var a;e.exports=E,E.WritableState=C;var s={deprecate:r("b7d1")},o=r("f12a"),h=r("b639").Buffer,l=t.Uint8Array||function(){};function c(e){return h.from(e)}function u(e){return h.isBuffer(e)||e instanceof l}var f,d=r("9019"),p=r("05f0"),m=p.getHighWaterMark,g=r("d113").codes,b=g.ERR_INVALID_ARG_TYPE,v=g.ERR_METHOD_NOT_IMPLEMENTED,y=g.ERR_MULTIPLE_CALLBACK,w=g.ERR_STREAM_CANNOT_PIPE,M=g.ERR_STREAM_DESTROYED,_=g.ERR_STREAM_NULL_VALUES,S=g.ERR_STREAM_WRITE_AFTER_END,k=g.ERR_UNKNOWN_ENCODING,A=d.errorOrDestroy;function x(){}function C(e,t,i){a=a||r("5e7d"),e=e||{},"boolean"!==typeof i&&(i=t instanceof a),this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.writableObjectMode),this.highWaterMark=m(this,e,"writableHighWaterMark",i),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var s=!1===e.decodeStrings;this.decodeStrings=!s,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){D(t,e)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==e.emitClose,this.autoDestroy=!!e.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new n(this)}function E(e){a=a||r("5e7d");var t=this instanceof a;if(!t&&!f.call(E,this))return new E(e);this._writableState=new C(e,this,t),this.writable=!0,e&&("function"===typeof e.write&&(this._write=e.write),"function"===typeof e.writev&&(this._writev=e.writev),"function"===typeof e.destroy&&(this._destroy=e.destroy),"function"===typeof e.final&&(this._final=e.final)),o.call(this)}function T(e,t){var r=new S;A(e,r),i.nextTick(t,r)}function R(e,t,r,n){var a;return null===r?a=new _:"string"===typeof r||t.objectMode||(a=new b("chunk",["string","Buffer"],r)),!a||(A(e,a),i.nextTick(n,a),!1)}function I(e,t,r){return e.objectMode||!1===e.decodeStrings||"string"!==typeof t||(t=h.from(t,r)),t}function P(e,t,r,i,n,a){if(!r){var s=I(t,i,n);i!==s&&(r=!0,n="buffer",i=s)}var o=t.objectMode?1:i.length;t.length+=o;var h=t.length<t.highWaterMark;if(h||(t.needDrain=!0),t.writing||t.corked){var l=t.lastBufferedRequest;t.lastBufferedRequest={chunk:i,encoding:n,isBuf:r,callback:a,next:null},l?l.next=t.lastBufferedRequest:t.bufferedRequest=t.lastBufferedRequest,t.bufferedRequestCount+=1}else O(e,t,!1,o,i,n,a);return h}function O(e,t,r,i,n,a,s){t.writelen=i,t.writecb=s,t.writing=!0,t.sync=!0,t.destroyed?t.onwrite(new M("write")):r?e._writev(n,t.onwrite):e._write(n,a,t.onwrite),t.sync=!1}function F(e,t,r,n,a){--t.pendingcb,r?(i.nextTick(a,n),i.nextTick(H,e,t),e._writableState.errorEmitted=!0,A(e,n)):(a(n),e._writableState.errorEmitted=!0,A(e,n),H(e,t))}function L(e){e.writing=!1,e.writecb=null,e.length-=e.writelen,e.writelen=0}function D(e,t){var r=e._writableState,n=r.sync,a=r.writecb;if("function"!==typeof a)throw new y;if(L(r),t)F(e,r,n,t,a);else{var s=j(r)||e.destroyed;s||r.corked||r.bufferProcessing||!r.bufferedRequest||U(e,r),n?i.nextTick(N,e,r,s,a):N(e,r,s,a)}}function N(e,t,r,i){r||B(e,t),t.pendingcb--,i(),H(e,t)}function B(e,t){0===t.length&&t.needDrain&&(t.needDrain=!1,e.emit("drain"))}function U(e,t){t.bufferProcessing=!0;var r=t.bufferedRequest;if(e._writev&&r&&r.next){var i=t.bufferedRequestCount,a=new Array(i),s=t.corkedRequestsFree;s.entry=r;var o=0,h=!0;while(r)a[o]=r,r.isBuf||(h=!1),r=r.next,o+=1;a.allBuffers=h,O(e,t,!0,t.length,a,"",s.finish),t.pendingcb++,t.lastBufferedRequest=null,s.next?(t.corkedRequestsFree=s.next,s.next=null):t.corkedRequestsFree=new n(t),t.bufferedRequestCount=0}else{while(r){var l=r.chunk,c=r.encoding,u=r.callback,f=t.objectMode?1:l.length;if(O(e,t,!1,f,l,c,u),r=r.next,t.bufferedRequestCount--,t.writing)break}null===r&&(t.lastBufferedRequest=null)}t.bufferedRequest=r,t.bufferProcessing=!1}function j(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function q(e,t){e._final((function(r){t.pendingcb--,r&&A(e,r),t.prefinished=!0,e.emit("prefinish"),H(e,t)}))}function z(e,t){t.prefinished||t.finalCalled||("function"!==typeof e._final||t.destroyed?(t.prefinished=!0,e.emit("prefinish")):(t.pendingcb++,t.finalCalled=!0,i.nextTick(q,e,t)))}function H(e,t){var r=j(t);if(r&&(z(e,t),0===t.pendingcb&&(t.finished=!0,e.emit("finish"),t.autoDestroy))){var i=e._readableState;(!i||i.autoDestroy&&i.endEmitted)&&e.destroy()}return r}function G(e,t,r){t.ending=!0,H(e,t),r&&(t.finished?i.nextTick(r):e.once("finish",r)),t.ended=!0,e.writable=!1}function W(e,t,r){var i=e.entry;e.entry=null;while(i){var n=i.callback;t.pendingcb--,n(r),i=i.next}t.corkedRequestsFree.next=e}r("3fb5")(E,o),C.prototype.getBuffer=function(){var e=this.bufferedRequest,t=[];while(e)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(C.prototype,"buffer",{get:s.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}(),"function"===typeof Symbol&&Symbol.hasInstance&&"function"===typeof Function.prototype[Symbol.hasInstance]?(f=Function.prototype[Symbol.hasInstance],Object.defineProperty(E,Symbol.hasInstance,{value:function(e){return!!f.call(this,e)||this===E&&(e&&e._writableState instanceof C)}})):f=function(e){return e instanceof this},E.prototype.pipe=function(){A(this,new w)},E.prototype.write=function(e,t,r){var i=this._writableState,n=!1,a=!i.objectMode&&u(e);return a&&!h.isBuffer(e)&&(e=c(e)),"function"===typeof t&&(r=t,t=null),a?t="buffer":t||(t=i.defaultEncoding),"function"!==typeof r&&(r=x),i.ending?T(this,r):(a||R(this,i,e,r))&&(i.pendingcb++,n=P(this,i,a,e,t,r)),n},E.prototype.cork=function(){this._writableState.corked++},E.prototype.uncork=function(){var e=this._writableState;e.corked&&(e.corked--,e.writing||e.corked||e.bufferProcessing||!e.bufferedRequest||U(this,e))},E.prototype.setDefaultEncoding=function(e){if("string"===typeof e&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new k(e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(E.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(E.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),E.prototype._write=function(e,t,r){r(new v("_write()"))},E.prototype._writev=null,E.prototype.end=function(e,t,r){var i=this._writableState;return"function"===typeof e?(r=e,e=null,t=null):"function"===typeof t&&(r=t,t=null),null!==e&&void 0!==e&&this.write(e,t),i.corked&&(i.corked=1,this.uncork()),i.ending||G(this,i,r),this},Object.defineProperty(E.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(E.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),E.prototype.destroy=d.destroy,E.prototype._undestroy=d.undestroy,E.prototype._destroy=function(e,t){t(e)}}).call(this,r("c8ba"),r("f28c"))},"4dd0":function(e,t,r){var i=/Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m,n=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,a=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,s=r("ae84"),o=r("fda6"),h=r("8707").Buffer;e.exports=function(e,t){var r,l=e.toString(),c=l.match(i);if(c){var u="aes"+c[1],f=h.from(c[2],"hex"),d=h.from(c[3].replace(/[\r\n]/g,""),"base64"),p=s(t,f.slice(0,8),parseInt(c[1],10)).key,m=[],g=o.createDecipheriv(u,p,f);m.push(g.update(d)),m.push(g.final()),r=h.concat(m)}else{var b=l.match(a);r=h.from(b[2].replace(/[\r\n]/g,""),"base64")}var v=l.match(n)[1];return{tag:v,data:r}}},"4e2b":function(e,t,r){"use strict";var i=r("da3e"),n=r("3fb5"),a=r("5ee7"),s=r("0184");function o(){this.tmp=new Array(2),this.keys=null}function h(e){s.call(this,e);var t=new o;this._desState=t,this.deriveKeys(t,e.key)}n(h,s),e.exports=h,h.create=function(e){return new h(e)};var l=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];h.prototype.deriveKeys=function(e,t){e.keys=new Array(32),i.equal(t.length,this.blockSize,"Invalid key length");var r=a.readUInt32BE(t,0),n=a.readUInt32BE(t,4);a.pc1(r,n,e.tmp,0),r=e.tmp[0],n=e.tmp[1];for(var s=0;s<e.keys.length;s+=2){var o=l[s>>>1];r=a.r28shl(r,o),n=a.r28shl(n,o),a.pc2(r,n,e.keys,s)}},h.prototype._update=function(e,t,r,i){var n=this._desState,s=a.readUInt32BE(e,t),o=a.readUInt32BE(e,t+4);a.ip(s,o,n.tmp,0),s=n.tmp[0],o=n.tmp[1],"encrypt"===this.type?this._encrypt(n,s,o,n.tmp,0):this._decrypt(n,s,o,n.tmp,0),s=n.tmp[0],o=n.tmp[1],a.writeUInt32BE(r,s,i),a.writeUInt32BE(r,o,i+4)},h.prototype._pad=function(e,t){for(var r=e.length-t,i=t;i<e.length;i++)e[i]=r;return!0},h.prototype._unpad=function(e){for(var t=e[e.length-1],r=e.length-t;r<e.length;r++)i.equal(e[r],t);return e.slice(0,e.length-t)},h.prototype._encrypt=function(e,t,r,i,n){for(var s=t,o=r,h=0;h<e.keys.length;h+=2){var l=e.keys[h],c=e.keys[h+1];a.expand(o,e.tmp,0),l^=e.tmp[0],c^=e.tmp[1];var u=a.substitute(l,c),f=a.permute(u),d=o;o=(s^f)>>>0,s=d}a.rip(o,s,i,n)},h.prototype._decrypt=function(e,t,r,i,n){for(var s=r,o=t,h=e.keys.length-2;h>=0;h-=2){var l=e.keys[h],c=e.keys[h+1];a.expand(s,e.tmp,0),l^=e.tmp[0],c^=e.tmp[1];var u=a.substitute(l,c),f=a.permute(u),d=s;s=(o^f)>>>0,o=d}a.rip(s,o,i,n)}},"4fd1":function(e,t,r){var i=r("3fb5"),n=r("b672"),a=r("8707").Buffer,s=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591],o=new Array(160);function h(){this.init(),this._w=o,n.call(this,128,112)}function l(e,t,r){return r^e&(t^r)}function c(e,t,r){return e&t|r&(e|t)}function u(e,t){return(e>>>28|t<<4)^(t>>>2|e<<30)^(t>>>7|e<<25)}function f(e,t){return(e>>>14|t<<18)^(e>>>18|t<<14)^(t>>>9|e<<23)}function d(e,t){return(e>>>1|t<<31)^(e>>>8|t<<24)^e>>>7}function p(e,t){return(e>>>1|t<<31)^(e>>>8|t<<24)^(e>>>7|t<<25)}function m(e,t){return(e>>>19|t<<13)^(t>>>29|e<<3)^e>>>6}function g(e,t){return(e>>>19|t<<13)^(t>>>29|e<<3)^(e>>>6|t<<26)}function b(e,t){return e>>>0<t>>>0?1:0}i(h,n),h.prototype.init=function(){return this._ah=1779033703,this._bh=3144134277,this._ch=1013904242,this._dh=2773480762,this._eh=1359893119,this._fh=2600822924,this._gh=528734635,this._hh=1541459225,this._al=4089235720,this._bl=2227873595,this._cl=4271175723,this._dl=1595750129,this._el=2917565137,this._fl=725511199,this._gl=4215389547,this._hl=327033209,this},h.prototype._update=function(e){for(var t=this._w,r=0|this._ah,i=0|this._bh,n=0|this._ch,a=0|this._dh,o=0|this._eh,h=0|this._fh,v=0|this._gh,y=0|this._hh,w=0|this._al,M=0|this._bl,_=0|this._cl,S=0|this._dl,k=0|this._el,A=0|this._fl,x=0|this._gl,C=0|this._hl,E=0;E<32;E+=2)t[E]=e.readInt32BE(4*E),t[E+1]=e.readInt32BE(4*E+4);for(;E<160;E+=2){var T=t[E-30],R=t[E-30+1],I=d(T,R),P=p(R,T);T=t[E-4],R=t[E-4+1];var O=m(T,R),F=g(R,T),L=t[E-14],D=t[E-14+1],N=t[E-32],B=t[E-32+1],U=P+D|0,j=I+L+b(U,P)|0;U=U+F|0,j=j+O+b(U,F)|0,U=U+B|0,j=j+N+b(U,B)|0,t[E]=j,t[E+1]=U}for(var q=0;q<160;q+=2){j=t[q],U=t[q+1];var z=c(r,i,n),H=c(w,M,_),G=u(r,w),W=u(w,r),X=f(o,k),V=f(k,o),K=s[q],Y=s[q+1],Z=l(o,h,v),$=l(k,A,x),J=C+V|0,Q=y+X+b(J,C)|0;J=J+$|0,Q=Q+Z+b(J,$)|0,J=J+Y|0,Q=Q+K+b(J,Y)|0,J=J+U|0,Q=Q+j+b(J,U)|0;var ee=W+H|0,te=G+z+b(ee,W)|0;y=v,C=x,v=h,x=A,h=o,A=k,k=S+J|0,o=a+Q+b(k,S)|0,a=n,S=_,n=i,_=M,i=r,M=w,w=J+ee|0,r=Q+te+b(w,J)|0}this._al=this._al+w|0,this._bl=this._bl+M|0,this._cl=this._cl+_|0,this._dl=this._dl+S|0,this._el=this._el+k|0,this._fl=this._fl+A|0,this._gl=this._gl+x|0,this._hl=this._hl+C|0,this._ah=this._ah+r+b(this._al,w)|0,this._bh=this._bh+i+b(this._bl,M)|0,this._ch=this._ch+n+b(this._cl,_)|0,this._dh=this._dh+a+b(this._dl,S)|0,this._eh=this._eh+o+b(this._el,k)|0,this._fh=this._fh+h+b(this._fl,A)|0,this._gh=this._gh+v+b(this._gl,x)|0,this._hh=this._hh+y+b(this._hl,C)|0},h.prototype._hash=function(){var e=a.allocUnsafe(64);function t(t,r,i){e.writeInt32BE(t,i),e.writeInt32BE(r,i+4)}return t(this._ah,this._al,0),t(this._bh,this._bl,8),t(this._ch,this._cl,16),t(this._dh,this._dl,24),t(this._eh,this._el,32),t(this._fh,this._fl,40),t(this._gh,this._gl,48),t(this._hh,this._hl,56),e},e.exports=h},5:function(e,t){},5165:function(e,t,r){(function(e){var i=r("8c8a");function n(e){return e._prev=e._cipher.encryptBlock(e._prev),e._prev}t.encrypt=function(t,r){while(t._cache.length<r.length)t._cache=e.concat([t._cache,n(t)]);var a=t._cache.slice(0,r.length);return t._cache=t._cache.slice(r.length),i(r,a)}}).call(this,r("b639").Buffer)},5239:function(e,t,r){var i=r("8707").Buffer;function n(e,t,r){var i,n,s,o=-1,h=8,l=0;while(++o<h)i=e._cipher.encryptBlock(e._prev),n=t&1<<7-o?128:0,s=i[0]^n,l+=(128&s)>>o%8,e._prev=a(e._prev,r?n:s);return l}function a(e,t){var r=e.length,n=-1,a=i.allocUnsafe(e.length);e=i.concat([e,i.from([t])]);while(++n<r)a[n]=e[n]<<1|e[n+1]>>7;return a}t.encrypt=function(e,t,r){var a=t.length,s=i.allocUnsafe(a),o=-1;while(++o<a)s[o]=n(e,t[o],r);return s}},5291:function(e,t,r){var i=r("0106"),n=r("8707").Buffer;function a(e,t){return n.from(e.toRed(i.mont(t.modulus)).redPow(new i(t.publicExponent)).fromRed().toArray())}e.exports=a},"55db":function(e,t,r){(function(t){(function(t,r){e.exports=r()})(0,(function(){return function(e){var t={};function r(i){if(t[i])return t[i].exports;var n=t[i]={i:i,l:!1,exports:{}};return e[i].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,i){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},r.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(r.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)r.d(i,n,function(t){return e[t]}.bind(null,n));return i},r.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=0)}([function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"WorkerMessageHandler",{enumerable:!0,get:function(){return i.WorkerMessageHandler}});var i=r(1)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WorkerMessageHandler=t.WorkerTask=void 0;var i=r(2),n=r(5),a=r(6),s=r(27),o=r(4),h=r(46),l=r(47),c=r(8);class u{constructor(e){this.name=e,this.terminated=!1,this._capability=(0,i.createPromiseCapability)()}get finished(){return this._capability.promise}finish(){this._capability.resolve()}terminate(){this.terminated=!0}ensureNotTerminated(){if(this.terminated)throw new Error("Worker task was terminated")}}t.WorkerTask=u;class f{static setup(e,t){var r=!1;e.on("test",(function(t){if(r)return;if(r=!0,!(t instanceof Uint8Array))return void e.send("test",null);const i=255===t[0];e.postMessageTransfers=i,e.send("test",{supportTransfers:i})})),e.on("configure",(function(e){(0,i.setVerbosityLevel)(e.verbosity)})),e.on("GetDocRequest",(function(e){return f.createDocumentHandler(e,t)}))}static createDocumentHandler(e,t){var r,o=!1,f=null,d=[];const p=(0,i.getVerbosityLevel)(),m=e.apiVersion,g="2.6.347";if(m!==g)throw new Error(`The API version "${m}" does not match the Worker version "${g}".`);const b=[];for(const i in[])b.push(i);if(b.length)throw new Error("The `Array.prototype` contains unexpected enumerable properties: "+b.join(", ")+"; thus breaking e.g. `for...in` iteration of `Array`s.");if("undefined"===typeof ReadableStream||"undefined"===typeof Promise.allSettled)throw new Error("The browser/environment lacks native support for critical functionality used by the PDF.js library (e.g. `ReadableStream` and/or `Promise.allSettled`); please use an ES5-compatible build instead.");var v=e.docId,y=e.docBaseUrl,w=e.docId+"_worker",M=new h.MessageHandler(w,v,t);function _(){if(o)throw new Error("Worker was terminated")}function S(e){d.push(e)}function k(e){e.finish();var t=d.indexOf(e);d.splice(t,1)}async function A(e){await r.ensureDoc("checkHeader"),await r.ensureDoc("parseStartXRef"),await r.ensureDoc("parse",[e]),e||await r.ensureDoc("checkFirstPage");const[t,i]=await Promise.all([r.ensureDoc("numPages"),r.ensureDoc("fingerprint")]);return{numPages:t,fingerprint:i}}function x(e,t){var r=(0,i.createPromiseCapability)();let n;var s=e.source;if(s.data){try{n=new a.LocalPdfManager(v,s.data,s.password,t,y),r.resolve(n)}catch(m){r.reject(m)}return r.promise}var o,h=[];try{o=new l.PDFWorkerStream(M)}catch(m){return r.reject(m),r.promise}var c=o.getFullReader();c.headersReady.then((function(){if(c.isRangeSupported){var e=s.disableAutoFetch||c.isStreamingSupported;n=new a.NetworkPdfManager(v,o,{msgHandler:M,password:s.password,length:c.contentLength,disableAutoFetch:e,rangeChunkSize:s.rangeChunkSize},t,y);for(let e=0;e<h.length;e++)n.sendProgressiveData(h[e]);h=[],r.resolve(n),f=null}})).catch((function(e){r.reject(e),f=null}));var u=0,d=function(){var e=(0,i.arraysToBytes)(h);s.length&&e.length!==s.length&&(0,i.warn)("reported HTTP length is different from actual");try{n=new a.LocalPdfManager(v,e,s.password,t,y),r.resolve(n)}catch(m){r.reject(m)}h=[]},p=new Promise((function(e,t){var r=function({value:e,done:a}){try{if(_(),a)return n||d(),void(f=null);u+=(0,i.arrayByteLength)(e),c.isStreamingSupported||M.send("DocProgress",{loaded:u,total:Math.max(u,c.contentLength||0)}),n?n.sendProgressiveData(e):h.push(e),c.read().then(r,t)}catch(s){t(s)}};c.read().then(r,t)}));return p.catch((function(e){r.reject(e),f=null})),f=function(e){o.cancelAllRequests(e)},r.promise}function C(e){function t(e){_(),M.send("GetDoc",{pdfInfo:e})}function n(e){if(_(),e instanceof i.PasswordException){var t=new u("PasswordException: response "+e.code);S(t),M.sendWithPromise("PasswordRequest",e).then((function({password:e}){k(t),r.updatePassword(e),a()})).catch((function(){k(t),M.send("DocException",e)}))}else e instanceof i.InvalidPDFException||e instanceof i.MissingPDFException||e instanceof i.UnexpectedResponseException||e instanceof i.UnknownErrorException?M.send("DocException",e):M.send("DocException",new i.UnknownErrorException(e.message,e.toString()))}function a(){_(),A(!1).then(t,(function(e){_(),e instanceof c.XRefParseException?(r.requestLoadedStream(),r.onLoadedStream().then((function(){_(),A(!0).then(t,n)}))):n(e)}))}_();var s={maxImageSize:e.maxImageSize,disableFontFace:e.disableFontFace,ignoreErrors:e.ignoreErrors,isEvalSupported:e.isEvalSupported,fontExtraProperties:e.fontExtraProperties};x(e,s).then((function(e){if(o)throw e.terminate(new i.AbortException("Worker was terminated.")),new Error("Worker was terminated");r=e,r.onLoadedStream().then((function(e){M.send("DataLoaded",{length:e.bytes.byteLength})}))})).then(a,n)}return M.postMessageTransfers=e.postMessageTransfers,M.on("GetPage",(function(e){return r.getPage(e.pageIndex).then((function(e){return Promise.all([r.ensure(e,"rotate"),r.ensure(e,"ref"),r.ensure(e,"userUnit"),r.ensure(e,"view")]).then((function([e,t,r,i]){return{rotate:e,ref:t,userUnit:r,view:i}}))}))})),M.on("GetPageIndex",(function({ref:e}){const t=n.Ref.get(e.num,e.gen);return r.ensureCatalog("getPageIndex",[t])})),M.on("GetDestinations",(function(e){return r.ensureCatalog("destinations")})),M.on("GetDestination",(function(e){return r.ensureCatalog("getDestination",[e.id])})),M.on("GetPageLabels",(function(e){return r.ensureCatalog("pageLabels")})),M.on("GetPageLayout",(function(e){return r.ensureCatalog("pageLayout")})),M.on("GetPageMode",(function(e){return r.ensureCatalog("pageMode")})),M.on("GetViewerPreferences",(function(e){return r.ensureCatalog("viewerPreferences")})),M.on("GetOpenAction",(function(e){return r.ensureCatalog("openAction")})),M.on("GetAttachments",(function(e){return r.ensureCatalog("attachments")})),M.on("GetJavaScript",(function(e){return r.ensureCatalog("javaScript")})),M.on("GetOutline",(function(e){return r.ensureCatalog("documentOutline")})),M.on("GetOptionalContentConfig",(function(e){return r.ensureCatalog("optionalContentConfig")})),M.on("GetPermissions",(function(e){return r.ensureCatalog("permissions")})),M.on("GetMetadata",(function(e){return Promise.all([r.ensureDoc("documentInfo"),r.ensureCatalog("metadata")])})),M.on("GetData",(function(e){return r.requestLoadedStream(),r.onLoadedStream().then((function(e){return e.bytes}))})),M.on("GetStats",(function(e){return r.ensureXRef("stats")})),M.on("GetAnnotations",(function({pageIndex:e,intent:t}){return r.getPage(e).then((function(e){return e.getAnnotationsData(t)}))})),M.on("SaveDocument",(function({numPages:e,annotationStorage:t,filename:n}){r.requestLoadedStream();const a=[r.onLoadedStream()],o=r.pdfDocument;for(let i=0;i<e;i++)a.push(r.getPage(i).then((function(e){const r=new u("Save: page "+i);return e.save(M,r,t)})));return Promise.all(a).then(([e,...t])=>{let r=[];for(const i of t)r=i.filter(e=>null!==e).reduce((e,t)=>e.concat(t),r);if(0===r.length)return e.bytes;const a=o.xref;let h=Object.create(null);if(a.trailer){const e=Object.create(null),t=a.trailer.get("Info")||null;t&&t.forEach((t,r)=>{(0,i.isString)(t)&&(0,i.isString)(r)&&(e[t]=(0,i.stringToPDFString)(r))}),h={rootRef:a.trailer.getRaw("Root")||null,encrypt:a.trailer.getRaw("Encrypt")||null,newRef:a.getNewRef(),infoRef:a.trailer.getRaw("Info")||null,info:e,fileIds:a.trailer.getRaw("ID")||null,startXRef:o.startXRef,filename:n}}return a.resetNewRef(),(0,s.incrementalUpdate)(e.bytes,h,r)})})),M.on("GetOperatorList",(function(e,t){var n=e.pageIndex;r.getPage(n).then((function(r){var a=new u("GetOperatorList: page "+n);S(a);const s=p>=i.VerbosityLevel.INFOS?Date.now():0;r.getOperatorList({handler:M,sink:t,task:a,intent:e.intent,renderInteractiveForms:e.renderInteractiveForms,annotationStorage:e.annotationStorage}).then((function(e){k(a),s&&(0,i.info)(`page=${n+1} - getOperatorList: time=${Date.now()-s}ms, len=${e.length}`),t.close()}),(function(e){k(a),a.terminated||(M.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorOperatorList}),t.error(e))}))}))}),this),M.on("GetTextContent",(function(e,t){var n=e.pageIndex;t.onPull=function(e){},t.onCancel=function(e){},r.getPage(n).then((function(r){var a=new u("GetTextContent: page "+n);S(a);const s=p>=i.VerbosityLevel.INFOS?Date.now():0;r.extractTextContent({handler:M,task:a,sink:t,normalizeWhitespace:e.normalizeWhitespace,combineTextItems:e.combineTextItems}).then((function(){k(a),s&&(0,i.info)(`page=${n+1} - getTextContent: time=`+(Date.now()-s)+"ms"),t.close()}),(function(e){k(a),a.terminated||t.error(e)}))}))})),M.on("FontFallback",(function(e){return r.fontFallback(e.id,M)})),M.on("Cleanup",(function(e){return r.cleanup(!0)})),M.on("Terminate",(function(e){o=!0;const t=[];if(r){r.terminate(new i.AbortException("Worker was terminated."));const e=r.cleanup();t.push(e),r=null}else(0,n.clearPrimitiveCaches)();return f&&f(new i.AbortException("Worker was terminated.")),d.forEach((function(e){t.push(e.finished),e.terminate()})),Promise.all(t).then((function(){M.destroy(),M=null}))})),M.on("Ready",(function(t){C(e),e=null})),w}static initializeFromPort(e){var t=new h.MessageHandler("worker","main",e);f.setup(t,e),t.send("ready",null)}}function d(e){return"function"===typeof e.postMessage&&"onmessage"in e}t.WorkerMessageHandler=f,"undefined"===typeof window&&!o.isNodeJS&&"undefined"!==typeof self&&d(self)&&f.initializeFromPort(self)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.arrayByteLength=X,t.arraysToBytes=V,t.assert=T,t.bytesToString=G,t.createPromiseCapability=fe,t.escapeString=ie,t.getModificationDate=ue,t.getVerbosityLevel=A,t.info=x,t.isArrayBuffer=le,t.isArrayEqual=ce,t.isBool=se,t.isNum=oe,t.isString=he,t.isSameOrigin=R,t.createValidAbsoluteUrl=P,t.removeNullCharacters=H,t.setVerbosityLevel=k,t.shadow=O,t.string32=K,t.stringToBytes=W,t.stringToPDFString=re,t.stringToUTF8String=ne,t.utf8StringToString=ae,t.warn=C,t.unreachable=E,t.IsEvalSupportedCached=t.IsLittleEndianCached=t.createObjectURL=t.FormatError=t.Util=t.UnknownErrorException=t.UnexpectedResponseException=t.TextRenderingMode=t.StreamType=t.PermissionFlag=t.PasswordResponses=t.PasswordException=t.MissingPDFException=t.InvalidPDFException=t.AbortException=t.CMapCompressionType=t.ImageKind=t.FontType=t.AnnotationType=t.AnnotationStateModelType=t.AnnotationReviewState=t.AnnotationReplyType=t.AnnotationMarkedState=t.AnnotationFlag=t.AnnotationFieldFlag=t.AnnotationBorderStyleType=t.UNSUPPORTED_FEATURES=t.VerbosityLevel=t.OPS=t.IDENTITY_MATRIX=t.FONT_IDENTITY_MATRIX=t.BaseException=void 0,r(3);const i=[1,0,0,1,0,0];t.IDENTITY_MATRIX=i;const n=[.001,0,0,.001,0,0];t.FONT_IDENTITY_MATRIX=n;const a={PRINT:4,MODIFY_CONTENTS:8,COPY:16,MODIFY_ANNOTATIONS:32,FILL_INTERACTIVE_FORMS:256,COPY_FOR_ACCESSIBILITY:512,ASSEMBLE:1024,PRINT_HIGH_QUALITY:2048};t.PermissionFlag=a;const s={FILL:0,STROKE:1,FILL_STROKE:2,INVISIBLE:3,FILL_ADD_TO_PATH:4,STROKE_ADD_TO_PATH:5,FILL_STROKE_ADD_TO_PATH:6,ADD_TO_PATH:7,FILL_STROKE_MASK:3,ADD_TO_PATH_FLAG:4};t.TextRenderingMode=s;const o={GRAYSCALE_1BPP:1,RGB_24BPP:2,RGBA_32BPP:3};t.ImageKind=o;const h={TEXT:1,LINK:2,FREETEXT:3,LINE:4,SQUARE:5,CIRCLE:6,POLYGON:7,POLYLINE:8,HIGHLIGHT:9,UNDERLINE:10,SQUIGGLY:11,STRIKEOUT:12,STAMP:13,CARET:14,INK:15,POPUP:16,FILEATTACHMENT:17,SOUND:18,MOVIE:19,WIDGET:20,SCREEN:21,PRINTERMARK:22,TRAPNET:23,WATERMARK:24,THREED:25,REDACT:26};t.AnnotationType=h;const l={MARKED:"Marked",REVIEW:"Review"};t.AnnotationStateModelType=l;const c={MARKED:"Marked",UNMARKED:"Unmarked"};t.AnnotationMarkedState=c;const u={ACCEPTED:"Accepted",REJECTED:"Rejected",CANCELLED:"Cancelled",COMPLETED:"Completed",NONE:"None"};t.AnnotationReviewState=u;const f={GROUP:"Group",REPLY:"R"};t.AnnotationReplyType=f;const d={INVISIBLE:1,HIDDEN:2,PRINT:4,NOZOOM:8,NOROTATE:16,NOVIEW:32,READONLY:64,LOCKED:128,TOGGLENOVIEW:256,LOCKEDCONTENTS:512};t.AnnotationFlag=d;const p={READONLY:1,REQUIRED:2,NOEXPORT:4,MULTILINE:4096,PASSWORD:8192,NOTOGGLETOOFF:16384,RADIO:32768,PUSHBUTTON:65536,COMBO:131072,EDIT:262144,SORT:524288,FILESELECT:1048576,MULTISELECT:2097152,DONOTSPELLCHECK:4194304,DONOTSCROLL:8388608,COMB:16777216,RICHTEXT:33554432,RADIOSINUNISON:33554432,COMMITONSELCHANGE:67108864};t.AnnotationFieldFlag=p;const m={SOLID:1,DASHED:2,BEVELED:3,INSET:4,UNDERLINE:5};t.AnnotationBorderStyleType=m;const g={UNKNOWN:"UNKNOWN",FLATE:"FLATE",LZW:"LZW",DCT:"DCT",JPX:"JPX",JBIG:"JBIG",A85:"A85",AHX:"AHX",CCF:"CCF",RLX:"RLX"};t.StreamType=g;const b={UNKNOWN:"UNKNOWN",TYPE1:"TYPE1",TYPE1C:"TYPE1C",CIDFONTTYPE0:"CIDFONTTYPE0",CIDFONTTYPE0C:"CIDFONTTYPE0C",TRUETYPE:"TRUETYPE",CIDFONTTYPE2:"CIDFONTTYPE2",TYPE3:"TYPE3",OPENTYPE:"OPENTYPE",TYPE0:"TYPE0",MMTYPE1:"MMTYPE1"};t.FontType=b;const v={ERRORS:0,WARNINGS:1,INFOS:5};t.VerbosityLevel=v;const y={NONE:0,BINARY:1,STREAM:2};t.CMapCompressionType=y;const w={dependency:1,setLineWidth:2,setLineCap:3,setLineJoin:4,setMiterLimit:5,setDash:6,setRenderingIntent:7,setFlatness:8,setGState:9,save:10,restore:11,transform:12,moveTo:13,lineTo:14,curveTo:15,curveTo2:16,curveTo3:17,closePath:18,rectangle:19,stroke:20,closeStroke:21,fill:22,eoFill:23,fillStroke:24,eoFillStroke:25,closeFillStroke:26,closeEOFillStroke:27,endPath:28,clip:29,eoClip:30,beginText:31,endText:32,setCharSpacing:33,setWordSpacing:34,setHScale:35,setLeading:36,setFont:37,setTextRenderingMode:38,setTextRise:39,moveText:40,setLeadingMoveText:41,setTextMatrix:42,nextLine:43,showText:44,showSpacedText:45,nextLineShowText:46,nextLineSetSpacingShowText:47,setCharWidth:48,setCharWidthAndBounds:49,setStrokeColorSpace:50,setFillColorSpace:51,setStrokeColor:52,setStrokeColorN:53,setFillColor:54,setFillColorN:55,setStrokeGray:56,setFillGray:57,setStrokeRGBColor:58,setFillRGBColor:59,setStrokeCMYKColor:60,setFillCMYKColor:61,shadingFill:62,beginInlineImage:63,beginImageData:64,endInlineImage:65,paintXObject:66,markPoint:67,markPointProps:68,beginMarkedContent:69,beginMarkedContentProps:70,endMarkedContent:71,beginCompat:72,endCompat:73,paintFormXObjectBegin:74,paintFormXObjectEnd:75,beginGroup:76,endGroup:77,beginAnnotations:78,endAnnotations:79,beginAnnotation:80,endAnnotation:81,paintJpegXObject:82,paintImageMaskXObject:83,paintImageMaskXObjectGroup:84,paintImageXObject:85,paintInlineImageXObject:86,paintInlineImageXObjectGroup:87,paintImageXObjectRepeat:88,paintImageMaskXObjectRepeat:89,paintSolidColorImageMask:90,constructPath:91};t.OPS=w;const M={unknown:"unknown",forms:"forms",javaScript:"javaScript",smask:"smask",shadingPattern:"shadingPattern",font:"font",errorTilingPattern:"errorTilingPattern",errorExtGState:"errorExtGState",errorXObject:"errorXObject",errorFontLoadType3:"errorFontLoadType3",errorFontState:"errorFontState",errorFontMissing:"errorFontMissing",errorFontTranslate:"errorFontTranslate",errorColorSpace:"errorColorSpace",errorOperatorList:"errorOperatorList",errorFontToUnicode:"errorFontToUnicode",errorFontLoadNative:"errorFontLoadNative",errorFontGetPath:"errorFontGetPath",errorMarkedContent:"errorMarkedContent"};t.UNSUPPORTED_FEATURES=M;const _={NEED_PASSWORD:1,INCORRECT_PASSWORD:2};t.PasswordResponses=_;let S=v.WARNINGS;function k(e){Number.isInteger(e)&&(S=e)}function A(){return S}function x(e){S>=v.INFOS&&console.log("Info: "+e)}function C(e){S>=v.WARNINGS&&console.log("Warning: "+e)}function E(e){throw new Error(e)}function T(e,t){e||E(t)}function R(e,t){let r;try{if(r=new URL(e),!r.origin||"null"===r.origin)return!1}catch(n){return!1}const i=new URL(t,r);return r.origin===i.origin}function I(e){if(!e)return!1;switch(e.protocol){case"http:":case"https:":case"ftp:":case"mailto:":case"tel:":return!0;default:return!1}}function P(e,t){if(!e)return null;try{const r=t?new URL(e,t):new URL(e);if(I(r))return r}catch(r){}return null}function O(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!1}),r}const F=function(){function e(t){this.constructor===e&&E("Cannot initialize BaseException."),this.message=t,this.name=this.constructor.name}return e.prototype=new Error,e.constructor=e,e}();t.BaseException=F;class L extends F{constructor(e,t){super(e),this.code=t}}t.PasswordException=L;class D extends F{constructor(e,t){super(e),this.details=t}}t.UnknownErrorException=D;class N extends F{}t.InvalidPDFException=N;class B extends F{}t.MissingPDFException=B;class U extends F{constructor(e,t){super(e),this.status=t}}t.UnexpectedResponseException=U;class j extends F{}t.FormatError=j;class q extends F{}t.AbortException=q;const z=/\x00/g;function H(e){return"string"!==typeof e?(C("The argument for removeNullCharacters must be a string."),e):e.replace(z,"")}function G(e){T(null!==e&&"object"===typeof e&&void 0!==e.length,"Invalid argument for bytesToString");const t=e.length,r=8192;if(t<r)return String.fromCharCode.apply(null,e);const i=[];for(let n=0;n<t;n+=r){const a=Math.min(n+r,t),s=e.subarray(n,a);i.push(String.fromCharCode.apply(null,s))}return i.join("")}function W(e){T("string"===typeof e,"Invalid argument for stringToBytes");const t=e.length,r=new Uint8Array(t);for(let i=0;i<t;++i)r[i]=255&e.charCodeAt(i);return r}function X(e){return void 0!==e.length?e.length:(T(void 0!==e.byteLength,"arrayByteLength - invalid argument."),e.byteLength)}function V(e){const t=e.length;if(1===t&&e[0]instanceof Uint8Array)return e[0];let r=0;for(let a=0;a<t;a++)r+=X(e[a]);let i=0;const n=new Uint8Array(r);for(let a=0;a<t;a++){let t=e[a];t instanceof Uint8Array||(t="string"===typeof t?W(t):new Uint8Array(t));const r=t.byteLength;n.set(t,i),i+=r}return n}function K(e){return String.fromCharCode(e>>24&255,e>>16&255,e>>8&255,255&e)}function Y(){const e=new Uint8Array(4);e[0]=1;const t=new Uint32Array(e.buffer,0,1);return 1===t[0]}const Z={get value(){return O(this,"value",Y())}};function $(){try{return new Function(""),!0}catch(e){return!1}}t.IsLittleEndianCached=Z;const J={get value(){return O(this,"value",$())}};t.IsEvalSupportedCached=J;const Q=["rgb(",0,",",0,",",0,")"];class ee{static makeCssRgb(e,t,r){return Q[1]=e,Q[3]=t,Q[5]=r,Q.join("")}static transform(e,t){return[e[0]*t[0]+e[2]*t[1],e[1]*t[0]+e[3]*t[1],e[0]*t[2]+e[2]*t[3],e[1]*t[2]+e[3]*t[3],e[0]*t[4]+e[2]*t[5]+e[4],e[1]*t[4]+e[3]*t[5]+e[5]]}static applyTransform(e,t){const r=e[0]*t[0]+e[1]*t[2]+t[4],i=e[0]*t[1]+e[1]*t[3]+t[5];return[r,i]}static applyInverseTransform(e,t){const r=t[0]*t[3]-t[1]*t[2],i=(e[0]*t[3]-e[1]*t[2]+t[2]*t[5]-t[4]*t[3])/r,n=(-e[0]*t[1]+e[1]*t[0]+t[4]*t[1]-t[5]*t[0])/r;return[i,n]}static getAxialAlignedBoundingBox(e,t){const r=ee.applyTransform(e,t),i=ee.applyTransform(e.slice(2,4),t),n=ee.applyTransform([e[0],e[3]],t),a=ee.applyTransform([e[2],e[1]],t);return[Math.min(r[0],i[0],n[0],a[0]),Math.min(r[1],i[1],n[1],a[1]),Math.max(r[0],i[0],n[0],a[0]),Math.max(r[1],i[1],n[1],a[1])]}static inverseTransform(e){const t=e[0]*e[3]-e[1]*e[2];return[e[3]/t,-e[1]/t,-e[2]/t,e[0]/t,(e[2]*e[5]-e[4]*e[3])/t,(e[4]*e[1]-e[5]*e[0])/t]}static apply3dTransform(e,t){return[e[0]*t[0]+e[1]*t[1]+e[2]*t[2],e[3]*t[0]+e[4]*t[1]+e[5]*t[2],e[6]*t[0]+e[7]*t[1]+e[8]*t[2]]}static singularValueDecompose2dScale(e){const t=[e[0],e[2],e[1],e[3]],r=e[0]*t[0]+e[1]*t[2],i=e[0]*t[1]+e[1]*t[3],n=e[2]*t[0]+e[3]*t[2],a=e[2]*t[1]+e[3]*t[3],s=(r+a)/2,o=Math.sqrt((r+a)*(r+a)-4*(r*a-n*i))/2,h=s+o||1,l=s-o||1;return[Math.sqrt(h),Math.sqrt(l)]}static normalizeRect(e){const t=e.slice(0);return e[0]>e[2]&&(t[0]=e[2],t[2]=e[0]),e[1]>e[3]&&(t[1]=e[3],t[3]=e[1]),t}static intersect(e,t){function r(e,t){return e-t}const i=[e[0],e[2],t[0],t[2]].sort(r),n=[e[1],e[3],t[1],t[3]].sort(r),a=[];return e=ee.normalizeRect(e),t=ee.normalizeRect(t),i[0]===e[0]&&i[1]===t[0]||i[0]===t[0]&&i[1]===e[0]?(a[0]=i[1],a[2]=i[2],n[0]===e[1]&&n[1]===t[1]||n[0]===t[1]&&n[1]===e[1]?(a[1]=n[1],a[3]=n[2],a):null):null}}t.Util=ee;const te=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,711,710,729,733,731,730,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8226,8224,8225,8230,8212,8211,402,8260,8249,8250,8722,8240,8222,8220,8221,8216,8217,8218,8482,64257,64258,321,338,352,376,381,305,322,339,353,382,0,8364];function re(e){const t=e.length,r=[];if("þ"===e[0]&&"ÿ"===e[1])for(let i=2;i<t;i+=2)r.push(String.fromCharCode(e.charCodeAt(i)<<8|e.charCodeAt(i+1)));else if("ÿ"===e[0]&&"þ"===e[1])for(let i=2;i<t;i+=2)r.push(String.fromCharCode(e.charCodeAt(i+1)<<8|e.charCodeAt(i)));else for(let i=0;i<t;++i){const t=te[e.charCodeAt(i)];r.push(t?String.fromCharCode(t):e.charAt(i))}return r.join("")}function ie(e){return e.replace(/([\(\)\\])/g,"\\$1")}function ne(e){return decodeURIComponent(escape(e))}function ae(e){return unescape(encodeURIComponent(e))}function se(e){return"boolean"===typeof e}function oe(e){return"number"===typeof e}function he(e){return"string"===typeof e}function le(e){return"object"===typeof e&&null!==e&&void 0!==e.byteLength}function ce(e,t){return e.length===t.length&&e.every((function(e,r){return e===t[r]}))}function ue(e=new Date(Date.now())){const t=[e.getUTCFullYear().toString(),(e.getUTCMonth()+1).toString().padStart(2,"0"),(e.getUTCDate()+1).toString().padStart(2,"0"),e.getUTCHours().toString().padStart(2,"0"),e.getUTCMinutes().toString().padStart(2,"0"),e.getUTCSeconds().toString().padStart(2,"0")];return t.join("")}function fe(){const e=Object.create(null);let t=!1;return Object.defineProperty(e,"settled",{get(){return t}}),e.promise=new Promise((function(r,i){e.resolve=function(e){t=!0,r(e)},e.reject=function(e){t=!0,i(e)}})),e}const de=function(){const e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";return function(t,r,i=!1){if(!i&&URL.createObjectURL){const e=new Blob([t],{type:r});return URL.createObjectURL(e)}let n=`data:${r};base64,`;for(let a=0,s=t.length;a<s;a+=3){const r=255&t[a],i=255&t[a+1],o=255&t[a+2],h=r>>2,l=(3&r)<<4|i>>4,c=a+1<s?(15&i)<<2|o>>6:64,u=a+2<s?63&o:64;n+=e[h]+e[l]+e[c]+e[u]}return n}}();t.createObjectURL=de},function(e,t,r){"use strict";r(4)},function(e,r,i){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isNodeJS=void 0;const n="object"===typeof t&&t+""==="[object process]"&&!t.versions.nw&&!(t.versions.electron&&t.type&&"browser"!==t.type);r.isNodeJS=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clearPrimitiveCaches=b,t.isEOF=c,t.isCmd=f,t.isDict=d,t.isName=u,t.isRef=p,t.isRefsEqual=m,t.isStream=g,t.RefSetCache=t.RefSet=t.Ref=t.Name=t.Dict=t.Cmd=t.EOF=void 0;r(2);var i={};t.EOF=i;var n=function(){let e=Object.create(null);function t(e){this.name=e}return t.prototype={},t.get=function(r){var i=e[r];return i||(e[r]=new t(r))},t._clearCache=function(){e=Object.create(null)},t}();t.Name=n;var a=function(){let e=Object.create(null);function t(e){this.cmd=e}return t.prototype={},t.get=function(r){var i=e[r];return i||(e[r]=new t(r))},t._clearCache=function(){e=Object.create(null)},t}();t.Cmd=a;var s=function(){var e=function(){return e};function t(t){this._map=Object.create(null),this.xref=t,this.objId=null,this.suppressEncryption=!1,this.__nonSerializable__=e}return t.prototype={assignXref:function(e){this.xref=e},get size(){return Object.keys(this._map).length},get(e,t,r){let i=this._map[e];return void 0===i&&void 0!==t&&(i=this._map[t],void 0===i&&void 0!==r&&(i=this._map[r])),i instanceof o&&this.xref?this.xref.fetch(i,this.suppressEncryption):i},async getAsync(e,t,r){let i=this._map[e];return void 0===i&&void 0!==t&&(i=this._map[t],void 0===i&&void 0!==r&&(i=this._map[r])),i instanceof o&&this.xref?this.xref.fetchAsync(i,this.suppressEncryption):i},getArray(e,t,r){let i=this.get(e,t,r);if(!Array.isArray(i)||!this.xref)return i;i=i.slice();for(let n=0,a=i.length;n<a;n++)i[n]instanceof o&&(i[n]=this.xref.fetch(i[n],this.suppressEncryption));return i},getRaw:function(e){return this._map[e]},getKeys:function(){return Object.keys(this._map)},getRawValues:function(){return Object.values(this._map)},set:function(e,t){this._map[e]=t},has:function(e){return void 0!==this._map[e]},forEach:function(e){for(var t in this._map)e(t,this.get(t))}},t.empty=new t(null),t.merge=function({xref:e,dictArray:r,mergeSubDicts:i=!1}){const n=new t(e);if(!i){for(const e of r)if(e instanceof t)for(const[t,r]of Object.entries(e._map))void 0===n._map[t]&&(n._map[t]=r);return n.size>0?n:t.empty}const a=new Map;for(const s of r)if(s instanceof t)for(const[e,t]of Object.entries(s._map)){let r=a.get(e);void 0===r&&(r=[],a.set(e,r)),r.push(t)}for(const[s,o]of a){if(1===o.length||!(o[0]instanceof t)){n._map[s]=o[0];continue}const r=new t(e);for(const e of o)if(e instanceof t)for(const[t,i]of Object.entries(e._map))void 0===r._map[t]&&(r._map[t]=i);r.size>0&&(n._map[s]=r)}return a.clear(),n.size>0?n:t.empty},t}();t.Dict=s;var o=function(){let e=Object.create(null);function t(e,t){this.num=e,this.gen=t}return t.prototype={toString:function(){return 0===this.gen?this.num+"R":`${this.num}R${this.gen}`}},t.get=function(r,i){const n=0===i?r+"R":`${r}R${i}`,a=e[n];return a||(e[n]=new t(r,i))},t._clearCache=function(){e=Object.create(null)},t}();t.Ref=o;class h{constructor(){this._set=new Set}has(e){return this._set.has(e.toString())}put(e){this._set.add(e.toString())}remove(e){this._set.delete(e.toString())}}t.RefSet=h;class l{constructor(){this._map=new Map}get size(){return this._map.size}get(e){return this._map.get(e.toString())}has(e){return this._map.has(e.toString())}put(e,t){this._map.set(e.toString(),t)}putAlias(e,t){this._map.set(e.toString(),this.get(t))}forEach(e){for(const t of this._map.values())e(t)}clear(){this._map.clear()}}function c(e){return e===i}function u(e,t){return e instanceof n&&(void 0===t||e.name===t)}function f(e,t){return e instanceof a&&(void 0===t||e.cmd===t)}function d(e,t){return e instanceof s&&(void 0===t||u(e.get("Type"),t))}function p(e){return e instanceof o}function m(e,t){return e.num===t.num&&e.gen===t.gen}function g(e){return"object"===typeof e&&null!==e&&void 0!==e.getBytes}function b(){a._clearCache(),n._clearCache(),o._clearCache()}t.RefSetCache=l},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.NetworkPdfManager=t.LocalPdfManager=void 0;var i=r(2),n=r(7),a=r(8),s=r(9),o=r(12);class h{constructor(){this.constructor===h&&(0,i.unreachable)("Cannot initialize BasePdfManager.")}get docId(){return this._docId}get password(){return this._password}get docBaseUrl(){let e=null;if(this._docBaseUrl){const t=(0,i.createValidAbsoluteUrl)(this._docBaseUrl);t?e=t.href:(0,i.warn)(`Invalid absolute docBaseUrl: "${this._docBaseUrl}".`)}return(0,i.shadow)(this,"docBaseUrl",e)}onLoadedStream(){(0,i.unreachable)("Abstract method `onLoadedStream` called")}ensureDoc(e,t){return this.ensure(this.pdfDocument,e,t)}ensureXRef(e,t){return this.ensure(this.pdfDocument.xref,e,t)}ensureCatalog(e,t){return this.ensure(this.pdfDocument.catalog,e,t)}getPage(e){return this.pdfDocument.getPage(e)}fontFallback(e,t){return this.pdfDocument.fontFallback(e,t)}cleanup(e=!1){return this.pdfDocument.cleanup(e)}async ensure(e,t,r){(0,i.unreachable)("Abstract method `ensure` called")}requestRange(e,t){(0,i.unreachable)("Abstract method `requestRange` called")}requestLoadedStream(){(0,i.unreachable)("Abstract method `requestLoadedStream` called")}sendProgressiveData(e){(0,i.unreachable)("Abstract method `sendProgressiveData` called")}updatePassword(e){this._password=e}terminate(e){(0,i.unreachable)("Abstract method `terminate` called")}}class l extends h{constructor(e,t,r,i,n){super(),this._docId=e,this._password=r,this._docBaseUrl=n,this.evaluatorOptions=i;const a=new o.Stream(t);this.pdfDocument=new s.PDFDocument(this,a),this._loadedStreamPromise=Promise.resolve(a)}async ensure(e,t,r){const i=e[t];return"function"===typeof i?i.apply(e,r):i}requestRange(e,t){return Promise.resolve()}requestLoadedStream(){}onLoadedStream(){return this._loadedStreamPromise}terminate(e){}}t.LocalPdfManager=l;class c extends h{constructor(e,t,r,i,a){super(),this._docId=e,this._password=r.password,this._docBaseUrl=a,this.msgHandler=r.msgHandler,this.evaluatorOptions=i,this.streamManager=new n.ChunkedStreamManager(t,{msgHandler:r.msgHandler,length:r.length,disableAutoFetch:r.disableAutoFetch,rangeChunkSize:r.rangeChunkSize}),this.pdfDocument=new s.PDFDocument(this,this.streamManager.getStream())}async ensure(e,t,r){try{const i=e[t];return"function"===typeof i?i.apply(e,r):i}catch(i){if(!(i instanceof a.MissingDataException))throw i;return await this.requestRange(i.begin,i.end),this.ensure(e,t,r)}}requestRange(e,t){return this.streamManager.requestRange(e,t)}requestLoadedStream(){this.streamManager.requestAllChunks()}sendProgressiveData(e){this.streamManager.onReceiveData({chunk:e})}onLoadedStream(){return this.streamManager.onLoadedStream()}terminate(e){this.streamManager.abort(e)}}t.NetworkPdfManager=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ChunkedStreamManager=t.ChunkedStream=void 0;var i=r(2),n=r(8);class a{constructor(e,t,r){this.bytes=new Uint8Array(e),this.start=0,this.pos=0,this.end=e,this.chunkSize=t,this._loadedChunks=new Set,this.numChunks=Math.ceil(e/t),this.manager=r,this.progressiveDataLength=0,this.lastSuccessfulEnsureByteChunk=-1}getMissingChunks(){const e=[];for(let t=0,r=this.numChunks;t<r;++t)this._loadedChunks.has(t)||e.push(t);return e}getBaseStreams(){return[this]}get numChunksLoaded(){return this._loadedChunks.size}allChunksLoaded(){return this.numChunksLoaded===this.numChunks}onReceiveData(e,t){const r=this.chunkSize;if(e%r!==0)throw new Error("Bad begin offset: "+e);const i=e+t.byteLength;if(i%r!==0&&i!==this.bytes.length)throw new Error("Bad end offset: "+i);this.bytes.set(new Uint8Array(t),e);const n=Math.floor(e/r),a=Math.floor((i-1)/r)+1;for(let s=n;s<a;++s)this._loadedChunks.add(s)}onReceiveProgressiveData(e){let t=this.progressiveDataLength;const r=Math.floor(t/this.chunkSize);this.bytes.set(new Uint8Array(e),t),t+=e.byteLength,this.progressiveDataLength=t;const i=t>=this.end?this.numChunks:Math.floor(t/this.chunkSize);for(let n=r;n<i;++n)this._loadedChunks.add(n)}ensureByte(e){if(e<this.progressiveDataLength)return;const t=Math.floor(e/this.chunkSize);if(t!==this.lastSuccessfulEnsureByteChunk){if(!this._loadedChunks.has(t))throw new n.MissingDataException(e,e+1);this.lastSuccessfulEnsureByteChunk=t}}ensureRange(e,t){if(e>=t)return;if(t<=this.progressiveDataLength)return;const r=this.chunkSize,i=Math.floor(e/r),a=Math.floor((t-1)/r)+1;for(let s=i;s<a;++s)if(!this._loadedChunks.has(s))throw new n.MissingDataException(e,t)}nextEmptyChunk(e){const t=this.numChunks;for(let r=0;r<t;++r){const i=(e+r)%t;if(!this._loadedChunks.has(i))return i}return null}hasChunk(e){return this._loadedChunks.has(e)}get length(){return this.end-this.start}get isEmpty(){return 0===this.length}getByte(){const e=this.pos;return e>=this.end?-1:(e>=this.progressiveDataLength&&this.ensureByte(e),this.bytes[this.pos++])}getUint16(){const e=this.getByte(),t=this.getByte();return-1===e||-1===t?-1:(e<<8)+t}getInt32(){const e=this.getByte(),t=this.getByte(),r=this.getByte(),i=this.getByte();return(e<<24)+(t<<16)+(r<<8)+i}getBytes(e,t=!1){const r=this.bytes,i=this.pos,n=this.end;if(!e){n>this.progressiveDataLength&&this.ensureRange(i,n);const e=r.subarray(i,n);return t?new Uint8ClampedArray(e):e}let a=i+e;a>n&&(a=n),a>this.progressiveDataLength&&this.ensureRange(i,a),this.pos=a;const s=r.subarray(i,a);return t?new Uint8ClampedArray(s):s}peekByte(){const e=this.getByte();return-1!==e&&this.pos--,e}peekBytes(e,t=!1){const r=this.getBytes(e,t);return this.pos-=r.length,r}getByteRange(e,t){return e<0&&(e=0),t>this.end&&(t=this.end),t>this.progressiveDataLength&&this.ensureRange(e,t),this.bytes.subarray(e,t)}skip(e){e||(e=1),this.pos+=e}reset(){this.pos=this.start}moveStart(){this.start=this.pos}makeSubStream(e,t,r){function i(){}t?e+t>this.progressiveDataLength&&this.ensureRange(e,e+t):e>=this.progressiveDataLength&&this.ensureByte(e),i.prototype=Object.create(this),i.prototype.getMissingChunks=function(){const e=this.chunkSize,t=Math.floor(this.start/e),r=Math.floor((this.end-1)/e)+1,i=[];for(let n=t;n<r;++n)this._loadedChunks.has(n)||i.push(n);return i},i.prototype.allChunksLoaded=function(){return this.numChunksLoaded===this.numChunks||0===this.getMissingChunks().length};const n=new i;return n.pos=n.start=e,n.end=e+t||this.end,n.dict=r,n}}t.ChunkedStream=a;class s{constructor(e,t){this.length=t.length,this.chunkSize=t.rangeChunkSize,this.stream=new a(this.length,this.chunkSize,this),this.pdfNetworkStream=e,this.disableAutoFetch=t.disableAutoFetch,this.msgHandler=t.msgHandler,this.currRequestId=0,this._chunksNeededByRequest=new Map,this._requestsByChunk=new Map,this._promisesByRequest=new Map,this.progressiveDataLength=0,this.aborted=!1,this._loadedStreamCapability=(0,i.createPromiseCapability)()}onLoadedStream(){return this._loadedStreamCapability.promise}sendRequest(e,t){const r=this.pdfNetworkStream.getRangeReader(e,t);r.isStreamingSupported||(r.onProgress=this.onProgress.bind(this));let n=[],a=0;const s=new Promise((e,t)=>{const s=o=>{try{if(!o.done){const e=o.value;return n.push(e),a+=(0,i.arrayByteLength)(e),r.isStreamingSupported&&this.onProgress({loaded:a}),void r.read().then(s,t)}const h=(0,i.arraysToBytes)(n);n=null,e(h)}catch(h){t(h)}};r.read().then(s,t)});s.then(t=>{this.aborted||this.onReceiveData({chunk:t,begin:e})})}requestAllChunks(){const e=this.stream.getMissingChunks();return this._requestChunks(e),this._loadedStreamCapability.promise}_requestChunks(e){const t=this.currRequestId++,r=new Set;this._chunksNeededByRequest.set(t,r);for(const i of e)this.stream.hasChunk(i)||r.add(i);if(0===r.size)return Promise.resolve();const n=(0,i.createPromiseCapability)();this._promisesByRequest.set(t,n);const a=[];for(const i of r){let e=this._requestsByChunk.get(i);e||(e=[],this._requestsByChunk.set(i,e),a.push(i)),e.push(t)}if(a.length>0){const e=this.groupChunks(a);for(const t of e){const e=t.beginChunk*this.chunkSize,r=Math.min(t.endChunk*this.chunkSize,this.length);this.sendRequest(e,r)}}return n.promise.catch(e=>{if(!this.aborted)throw e})}getStream(){return this.stream}requestRange(e,t){t=Math.min(t,this.length);const r=this.getBeginChunk(e),i=this.getEndChunk(t),n=[];for(let a=r;a<i;++a)n.push(a);return this._requestChunks(n)}requestRanges(e=[]){const t=[];for(const r of e){const e=this.getBeginChunk(r.begin),i=this.getEndChunk(r.end);for(let r=e;r<i;++r)t.includes(r)||t.push(r)}return t.sort((function(e,t){return e-t})),this._requestChunks(t)}groupChunks(e){const t=[];let r=-1,i=-1;for(let n=0,a=e.length;n<a;++n){const a=e[n];r<0&&(r=a),i>=0&&i+1!==a&&(t.push({beginChunk:r,endChunk:i+1}),r=a),n+1===e.length&&t.push({beginChunk:r,endChunk:a+1}),i=a}return t}onProgress(e){this.msgHandler.send("DocProgress",{loaded:this.stream.numChunksLoaded*this.chunkSize+e.loaded,total:this.length})}onReceiveData(e){const t=e.chunk,r=void 0===e.begin,i=r?this.progressiveDataLength:e.begin,n=i+t.byteLength,a=Math.floor(i/this.chunkSize),s=n<this.length?Math.floor(n/this.chunkSize):Math.ceil(n/this.chunkSize);r?(this.stream.onReceiveProgressiveData(t),this.progressiveDataLength=n):this.stream.onReceiveData(i,t),this.stream.allChunksLoaded()&&this._loadedStreamCapability.resolve(this.stream);const o=[];for(let h=a;h<s;++h){const e=this._requestsByChunk.get(h);if(e){this._requestsByChunk.delete(h);for(const t of e){const e=this._chunksNeededByRequest.get(t);e.has(h)&&e.delete(h),e.size>0||o.push(t)}}}if(!this.disableAutoFetch&&0===this._requestsByChunk.size){let e;if(1===this.stream.numChunksLoaded){const t=this.stream.numChunks-1;this.stream.hasChunk(t)||(e=t)}else e=this.stream.nextEmptyChunk(s);Number.isInteger(e)&&this._requestChunks([e])}for(const h of o){const e=this._promisesByRequest.get(h);this._promisesByRequest.delete(h),e.resolve()}this.msgHandler.send("DocProgress",{loaded:this.stream.numChunksLoaded*this.chunkSize,total:this.length})}onError(e){this._loadedStreamCapability.reject(e)}getBeginChunk(e){return Math.floor(e/this.chunkSize)}getEndChunk(e){return Math.floor((e-1)/this.chunkSize)+1}abort(e){this.aborted=!0,this.pdfNetworkStream&&this.pdfNetworkStream.cancelAllRequests(e);for(const t of this._promisesByRequest.values())t.reject(e)}}t.ChunkedStreamManager=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getLookupTableFactory=n,t.getInheritableProperty=h,t.toRomanNumerals=c,t.log2=u,t.readInt8=f,t.readUint16=d,t.readUint32=p,t.isWhiteSpace=m,t.XRefParseException=t.XRefEntryException=t.MissingDataException=void 0;var i=r(2);function n(e){let t;return function(){return e&&(t=Object.create(null),e(t),e=null),t}}class a extends i.BaseException{constructor(e,t){super(`Missing data [${e}, ${t})`),this.begin=e,this.end=t}}t.MissingDataException=a;class s extends i.BaseException{}t.XRefEntryException=s;class o extends i.BaseException{}function h({dict:e,key:t,getArray:r=!1,stopWhenFound:n=!0}){const a=100;let s,o=0;while(e){const h=r?e.getArray(t):e.get(t);if(void 0!==h){if(n)return h;s||(s=[]),s.push(h)}if(++o>a){(0,i.warn)(`getInheritableProperty: maximum loop count exceeded for "${t}"`);break}e=e.get("Parent")}return s}t.XRefParseException=o;const l=["","C","CC","CCC","CD","D","DC","DCC","DCCC","CM","","X","XX","XXX","XL","L","LX","LXX","LXXX","XC","","I","II","III","IV","V","VI","VII","VIII","IX"];function c(e,t=!1){(0,i.assert)(Number.isInteger(e)&&e>0,"The number should be a positive integer.");const r=[];let n;while(e>=1e3)e-=1e3,r.push("M");n=e/100|0,e%=100,r.push(l[n]),n=e/10|0,e%=10,r.push(l[10+n]),r.push(l[20+e]);const a=r.join("");return t?a.toLowerCase():a}function u(e){return e<=0?0:Math.ceil(Math.log2(e))}function f(e,t){return e[t]<<24>>24}function d(e,t){return e[t]<<8|e[t+1]}function p(e,t){return(e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3])>>>0}function m(e){return 32===e||9===e||13===e||10===e}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PDFDocument=t.Page=void 0;var i=r(2),n=r(10),a=r(5),s=r(8),o=r(12),h=r(25),l=r(22),c=r(11),u=r(26),f=r(28);const d=1,p=[0,0,612,792];function m(e,t){return"display"===t&&e.viewable||"print"===t&&e.printable}class g{constructor({pdfManager:e,xref:t,pageIndex:r,pageDict:i,ref:n,globalIdFactory:a,fontCache:s,builtInCMapCache:o,globalImageCache:h}){this.pdfManager=e,this.pageIndex=r,this.pageDict=i,this.xref=t,this.ref=n,this.fontCache=s,this.builtInCMapCache=o,this.globalImageCache=h,this.evaluatorOptions=e.evaluatorOptions,this.resourcesPromise=null;const l={obj:0};this._localIdFactory=class extends a{static createObjId(){return`p${r}_${++l.obj}`}}}_getInheritableProperty(e,t=!1){const r=(0,s.getInheritableProperty)({dict:this.pageDict,key:e,getArray:t,stopWhenFound:!1});return Array.isArray(r)?1!==r.length&&(0,a.isDict)(r[0])?a.Dict.merge({xref:this.xref,dictArray:r}):r[0]:r}get content(){return this.pageDict.get("Contents")}get resources(){return(0,i.shadow)(this,"resources",this._getInheritableProperty("Resources")||a.Dict.empty)}_getBoundingBox(e){const t=this._getInheritableProperty(e,!0);if(Array.isArray(t)&&4===t.length){if(t[2]-t[0]!==0&&t[3]-t[1]!==0)return t;(0,i.warn)(`Empty /${e} entry.`)}return null}get mediaBox(){return(0,i.shadow)(this,"mediaBox",this._getBoundingBox("MediaBox")||p)}get cropBox(){return(0,i.shadow)(this,"cropBox",this._getBoundingBox("CropBox")||this.mediaBox)}get userUnit(){let e=this.pageDict.get("UserUnit");return(!(0,i.isNum)(e)||e<=0)&&(e=d),(0,i.shadow)(this,"userUnit",e)}get view(){const{cropBox:e,mediaBox:t}=this;let r;if(e===t||(0,i.isArrayEqual)(e,t))r=t;else{const n=i.Util.intersect(e,t);n&&n[2]-n[0]!==0&&n[3]-n[1]!==0?r=n:(0,i.warn)("Empty /CropBox and /MediaBox intersection.")}return(0,i.shadow)(this,"view",r||t)}get rotate(){let e=this._getInheritableProperty("Rotate")||0;return e%90!==0?e=0:e>=360?e%=360:e<0&&(e=(e%360+360)%360),(0,i.shadow)(this,"rotate",e)}getContentStream(){const e=this.content;let t;if(Array.isArray(e)){const r=this.xref,i=[];for(const t of e)i.push(r.fetchIfRef(t));t=new o.StreamsSequenceStream(i)}else t=(0,a.isStream)(e)?e:new o.NullStream;return t}save(e,t,r){const n=new f.PartialEvaluator({xref:this.xref,handler:e,pageIndex:this.pageIndex,idFactory:this._localIdFactory,fontCache:this.fontCache,builtInCMapCache:this.builtInCMapCache,globalImageCache:this.globalImageCache,options:this.evaluatorOptions});return this._parsedAnnotations.then((function(e){const a=[];for(const s of e)m(s,"print")&&a.push(s.save(n,t,r).catch((function(e){return(0,i.warn)(`save - ignoring annotation data during "${t.name}" task: "${e}".`),null})));return Promise.all(a)}))}loadResources(e){return this.resourcesPromise||(this.resourcesPromise=this.pdfManager.ensure(this,"resources")),this.resourcesPromise.then(()=>{const t=new n.ObjectLoader(this.resources,e,this.xref);return t.load()})}getOperatorList({handler:e,sink:t,task:r,intent:n,renderInteractiveForms:a,annotationStorage:s}){const o=this.pdfManager.ensure(this,"getContentStream"),h=this.loadResources(["ExtGState","ColorSpace","Pattern","Shading","XObject","Font"]),l=new f.PartialEvaluator({xref:this.xref,handler:e,pageIndex:this.pageIndex,idFactory:this._localIdFactory,fontCache:this.fontCache,builtInCMapCache:this.builtInCMapCache,globalImageCache:this.globalImageCache,options:this.evaluatorOptions}),c=Promise.all([o,h]),d=c.then(([i])=>{const a=new u.OperatorList(n,t);return e.send("StartRenderPage",{transparency:l.hasBlendModes(this.resources),pageIndex:this.pageIndex,intent:n}),l.getOperatorList({stream:i,task:r,resources:this.resources,operatorList:a}).then((function(){return a}))});return Promise.all([d,this._parsedAnnotations]).then((function([e,t]){if(0===t.length)return e.flush(!0),{length:e.totalLength};const o=[];for(const h of t)m(h,n)&&o.push(h.getOperatorList(l,r,a,s).catch((function(e){return(0,i.warn)(`getOperatorList - ignoring annotation data during "${r.name}" task: "${e}".`),null})));return Promise.all(o).then((function(t){e.addOp(i.OPS.beginAnnotations,[]);for(const r of t)e.addOpList(r);return e.addOp(i.OPS.endAnnotations,[]),e.flush(!0),{length:e.totalLength}}))}))}extractTextContent({handler:e,task:t,normalizeWhitespace:r,sink:i,combineTextItems:n}){const a=this.pdfManager.ensure(this,"getContentStream"),s=this.loadResources(["ExtGState","XObject","Font"]),o=Promise.all([a,s]);return o.then(([a])=>{const s=new f.PartialEvaluator({xref:this.xref,handler:e,pageIndex:this.pageIndex,idFactory:this._localIdFactory,fontCache:this.fontCache,builtInCMapCache:this.builtInCMapCache,globalImageCache:this.globalImageCache,options:this.evaluatorOptions});return s.getTextContent({stream:a,task:t,resources:this.resources,normalizeWhitespace:r,combineTextItems:n,sink:i})})}getAnnotationsData(e){return this._parsedAnnotations.then((function(t){const r=[];for(let i=0,n=t.length;i<n;i++)e&&!m(t[i],e)||r.push(t[i].data);return r}))}get annotations(){return(0,i.shadow)(this,"annotations",this._getInheritableProperty("Annots")||[])}get _parsedAnnotations(){const e=this.pdfManager.ensure(this,"annotations").then(()=>{const e=[];for(const t of this.annotations)e.push(h.AnnotationFactory.create(this.xref,t,this.pdfManager,this._localIdFactory).catch((function(e){return(0,i.warn)(`_parsedAnnotations: "${e}".`),null})));return Promise.all(e).then((function(e){return e.filter(e=>!!e)}))});return(0,i.shadow)(this,"_parsedAnnotations",e)}}t.Page=g;const b=new Uint8Array([37,80,68,70,45]),v=new Uint8Array([115,116,97,114,116,120,114,101,102]),y=new Uint8Array([101,110,100,111,98,106]),w=1024,M="\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0",_=/^[1-9]\.[0-9]$/;function S(e,t,r=1024,i=!1){const n=t.length,a=e.peekBytes(r),s=a.length-n;if(s<=0)return!1;if(i){const r=n-1;let i=a.length-1;while(i>=r){let s=0;while(s<n&&a[i-s]===t[r-s])s++;if(s>=n)return e.pos+=i-r,!0;i--}}else{let r=0;while(r<=s){let i=0;while(i<n&&a[r+i]===t[i])i++;if(i>=n)return e.pos+=r,!0;r++}}return!1}class k{constructor(e,t){let r;if((0,a.isStream)(t))r=t;else{if(!(0,i.isArrayBuffer)(t))throw new Error("PDFDocument: Unknown argument type");r=new o.Stream(t)}if(r.length<=0)throw new i.InvalidPDFException("The PDF file is empty, i.e. its size is zero bytes.");this.pdfManager=e,this.stream=r,this.xref=new n.XRef(r,e),this._pagePromises=[],this._version=null;const s={font:0};this._globalIdFactory=class{static getDocId(){return"g_"+e.docId}static createFontId(){return"f"+ ++s.font}static createObjId(){(0,i.unreachable)("Abstract method `createObjId` called.")}}}parse(e){this.xref.parse(e),this.catalog=new n.Catalog(this.pdfManager,this.xref),this.catalog.version&&(this._version=this.catalog.version)}get linearization(){let e=null;try{e=c.Linearization.create(this.stream)}catch(t){if(t instanceof s.MissingDataException)throw t;(0,i.info)(t)}return(0,i.shadow)(this,"linearization",e)}get startXRef(){const e=this.stream;let t=0;if(this.linearization)e.reset(),S(e,y)&&(t=e.pos+6-e.start);else{const r=1024,i=v.length;let n=!1,a=e.end;while(!n&&a>0)a-=r-i,a<0&&(a=0),e.pos=a,n=S(e,v,r,!0);if(n){let r;e.skip(9);do{r=e.getByte()}while((0,s.isWhiteSpace)(r));let i="";while(r>=32&&r<=57)i+=String.fromCharCode(r),r=e.getByte();t=parseInt(i,10),isNaN(t)&&(t=0)}}return(0,i.shadow)(this,"startXRef",t)}checkHeader(){const e=this.stream;if(e.reset(),!S(e,b))return;e.moveStart();const t=12;let r,i="";while((r=e.getByte())>32){if(i.length>=t)break;i+=String.fromCharCode(r)}this._version||(this._version=i.substring(5))}parseStartXRef(){this.xref.setStartXRef(this.startXRef)}get numPages(){const e=this.linearization,t=e?e.numPages:this.catalog.numPages;return(0,i.shadow)(this,"numPages",t)}_hasOnlyDocumentSignatures(e,t=0){const r=10;return e.every(e=>{if(e=this.xref.fetchIfRef(e),e.has("Kids"))return++t>r?((0,i.warn)("_hasOnlyDocumentSignatures: maximum recursion depth reached"),!1):this._hasOnlyDocumentSignatures(e.get("Kids"),t);const n=(0,a.isName)(e.get("FT"),"Sig"),s=e.get("Rect"),o=Array.isArray(s)&&s.every(e=>0===e);return n&&o})}get formInfo(){const e={hasAcroForm:!1,hasXfa:!1},t=this.catalog.acroForm;if(!t)return(0,i.shadow)(this,"formInfo",e);try{const r=t.get("XFA"),i=Array.isArray(r)&&r.length>0||(0,a.isStream)(r)&&!r.isEmpty;e.hasXfa=i;const n=t.get("Fields"),s=Array.isArray(n)&&n.length>0,o=t.get("SigFlags"),h=!!(1&o)&&this._hasOnlyDocumentSignatures(n);e.hasAcroForm=s&&!h}catch(r){if(r instanceof s.MissingDataException)throw r;(0,i.info)("Cannot fetch form information.")}return(0,i.shadow)(this,"formInfo",e)}get documentInfo(){const e={Title:i.isString,Author:i.isString,Subject:i.isString,Keywords:i.isString,Creator:i.isString,Producer:i.isString,CreationDate:i.isString,ModDate:i.isString,Trapped:a.isName};let t=this._version;"string"===typeof t&&_.test(t)||((0,i.warn)("Invalid PDF header version number: "+t),t=null);const r={PDFFormatVersion:t,IsLinearized:!!this.linearization,IsAcroFormPresent:this.formInfo.hasAcroForm,IsXFAPresent:this.formInfo.hasXfa,IsCollectionPresent:!!this.catalog.collection};let n;try{n=this.xref.trailer.get("Info")}catch(o){if(o instanceof s.MissingDataException)throw o;(0,i.info)("The document information dictionary is invalid.")}if((0,a.isDict)(n))for(const s of n.getKeys()){const t=n.get(s);if(e[s])e[s](t)?r[s]="string"!==typeof t?t:(0,i.stringToPDFString)(t):(0,i.info)(`Bad value in document info for "${s}".`);else if("string"===typeof s){let e;if((0,i.isString)(t))e=(0,i.stringToPDFString)(t);else{if(!((0,a.isName)(t)||(0,i.isNum)(t)||(0,i.isBool)(t))){(0,i.info)(`Unsupported value in document info for (custom) "${s}".`);continue}e=t}r.Custom||(r.Custom=Object.create(null)),r.Custom[s]=e}}return(0,i.shadow)(this,"documentInfo",r)}get fingerprint(){let e;const t=this.xref.trailer.get("ID");e=Array.isArray(t)&&t[0]&&(0,i.isString)(t[0])&&t[0]!==M?(0,i.stringToBytes)(t[0]):(0,l.calculateMD5)(this.stream.getByteRange(0,w),0,w);const r=[];for(let i=0,n=e.length;i<n;i++){const t=e[i].toString(16);r.push(t.padStart(2,"0"))}return(0,i.shadow)(this,"fingerprint",r.join(""))}_getLinearizationPage(e){const{catalog:t,linearization:r}=this,n=a.Ref.get(r.objectNumberFirst,0);return this.xref.fetchAsync(n).then(e=>{if((0,a.isDict)(e,"Page")||(0,a.isDict)(e)&&!e.has("Type")&&e.has("Contents"))return n&&!t.pageKidsCountCache.has(n)&&t.pageKidsCountCache.put(n,1),[e,n];throw new i.FormatError("The Linearization dictionary doesn't point to a valid Page dictionary.")}).catch(r=>((0,i.info)(r),t.getPageDict(e)))}getPage(e){if(void 0!==this._pagePromises[e])return this._pagePromises[e];const{catalog:t,linearization:r}=this,i=r&&r.pageFirst===e?this._getLinearizationPage(e):t.getPageDict(e);return this._pagePromises[e]=i.then(([r,i])=>new g({pdfManager:this.pdfManager,xref:this.xref,pageIndex:e,pageDict:r,ref:i,globalIdFactory:this._globalIdFactory,fontCache:t.fontCache,builtInCMapCache:t.builtInCMapCache,globalImageCache:t.globalImageCache}))}checkFirstPage(){return this.getPage(0).catch(async e=>{if(e instanceof s.XRefEntryException)throw this._pagePromises.length=0,await this.cleanup(),new s.XRefParseException})}fontFallback(e,t){return this.catalog.fontFallback(e,t)}async cleanup(e=!1){return this.catalog?this.catalog.cleanup(e):(0,a.clearPrimitiveCaches)()}}t.PDFDocument=k},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FileSpec=t.XRef=t.ObjectLoader=t.Catalog=void 0;var i=r(2),n=r(5),a=r(11),s=r(8),o=r(22),h=r(23),l=r(24);function c(e){return(0,n.isDict)(e)?e.get("D"):e}class u{constructor(e,t){if(this.pdfManager=e,this.xref=t,this._catDict=t.getCatalogObj(),!(0,n.isDict)(this._catDict))throw new i.FormatError("Catalog object is not a dictionary.");this.fontCache=new n.RefSetCache,this.builtInCMapCache=new Map,this.globalImageCache=new l.GlobalImageCache,this.pageKidsCountCache=new n.RefSetCache}get version(){const e=this._catDict.get("Version");return(0,n.isName)(e)?(0,i.shadow)(this,"version",e.name):(0,i.shadow)(this,"version",null)}get collection(){let e=null;try{const t=this._catDict.get("Collection");(0,n.isDict)(t)&&t.size>0&&(e=t)}catch(t){if(t instanceof s.MissingDataException)throw t;(0,i.info)("Cannot fetch Collection entry; assuming no collection is present.")}return(0,i.shadow)(this,"collection",e)}get acroForm(){let e=null;try{const t=this._catDict.get("AcroForm");(0,n.isDict)(t)&&t.size>0&&(e=t)}catch(t){if(t instanceof s.MissingDataException)throw t;(0,i.info)("Cannot fetch AcroForm entry; assuming no forms are present.")}return(0,i.shadow)(this,"acroForm",e)}get metadata(){const e=this._catDict.getRaw("Metadata");if(!(0,n.isRef)(e))return(0,i.shadow)(this,"metadata",null);const t=!(this.xref.encrypt&&this.xref.encrypt.encryptMetadata),r=this.xref.fetch(e,t);let a;if(r&&(0,n.isDict)(r.dict)){const e=r.dict.get("Type"),t=r.dict.get("Subtype");if((0,n.isName)(e,"Metadata")&&(0,n.isName)(t,"XML"))try{a=(0,i.stringToUTF8String)((0,i.bytesToString)(r.getBytes()))}catch(o){if(o instanceof s.MissingDataException)throw o;(0,i.info)("Skipping invalid metadata.")}}return(0,i.shadow)(this,"metadata",a)}get toplevelPagesDict(){const e=this._catDict.get("Pages");if(!(0,n.isDict)(e))throw new i.FormatError("Invalid top-level pages dictionary.");return(0,i.shadow)(this,"toplevelPagesDict",e)}get documentOutline(){let e=null;try{e=this._readDocumentOutline()}catch(t){if(t instanceof s.MissingDataException)throw t;(0,i.warn)("Unable to read document outline.")}return(0,i.shadow)(this,"documentOutline",e)}_readDocumentOutline(){let e=this._catDict.get("Outlines");if(!(0,n.isDict)(e))return null;if(e=e.getRaw("First"),!(0,n.isRef)(e))return null;const t={items:[]},r=[{obj:e,parent:t}],a=new n.RefSet;a.put(e);const s=this.xref,o=new Uint8ClampedArray(3);while(r.length>0){const t=r.shift(),l=s.fetchIfRef(t.obj);if(null===l)continue;if(!l.has("Title"))throw new i.FormatError("Invalid outline item encountered.");const c={url:null,dest:null};u.parseDestDictionary({destDict:l,resultObj:c,docBaseUrl:this.pdfManager.docBaseUrl});const f=l.get("Title"),d=l.get("F")||0,p=l.getArray("C"),m=l.get("Count");let g=o;!Array.isArray(p)||3!==p.length||0===p[0]&&0===p[1]&&0===p[2]||(g=h.ColorSpace.singletons.rgb.getRgb(p,0));const b={dest:c.dest,url:c.url,unsafeUrl:c.unsafeUrl,newWindow:c.newWindow,title:(0,i.stringToPDFString)(f),color:g,count:Number.isInteger(m)?m:void 0,bold:!!(2&d),italic:!!(1&d),items:[]};t.parent.items.push(b),e=l.getRaw("First"),(0,n.isRef)(e)&&!a.has(e)&&(r.push({obj:e,parent:b}),a.put(e)),e=l.getRaw("Next"),(0,n.isRef)(e)&&!a.has(e)&&(r.push({obj:e,parent:t.parent}),a.put(e))}return t.items.length>0?t.items:null}get permissions(){let e=null;try{e=this._readPermissions()}catch(t){if(t instanceof s.MissingDataException)throw t;(0,i.warn)("Unable to read permissions.")}return(0,i.shadow)(this,"permissions",e)}_readPermissions(){const e=this.xref.trailer.get("Encrypt");if(!(0,n.isDict)(e))return null;let t=e.get("P");if(!(0,i.isNum)(t))return null;t+=2**32;const r=[];for(const n in i.PermissionFlag){const e=i.PermissionFlag[n];t&e&&r.push(e)}return r}get optionalContentConfig(){let e=null;try{const t=this._catDict.get("OCProperties");if(!t)return(0,i.shadow)(this,"optionalContentConfig",null);const r=t.get("D");if(!r)return(0,i.shadow)(this,"optionalContentConfig",null);const a=t.get("OCGs");if(!Array.isArray(a))return(0,i.shadow)(this,"optionalContentConfig",null);const s=[],o=[];for(const e of a){if(!(0,n.isRef)(e))continue;o.push(e);const t=this.xref.fetchIfRef(e);s.push({id:e.toString(),name:(0,i.isString)(t.get("Name"))?(0,i.stringToPDFString)(t.get("Name")):null,intent:(0,i.isString)(t.get("Intent"))?(0,i.stringToPDFString)(t.get("Intent")):null})}e=this._readOptionalContentConfig(r,o),e.groups=s}catch(t){if(t instanceof s.MissingDataException)throw t;(0,i.warn)("Unable to read optional content config: "+t)}return(0,i.shadow)(this,"optionalContentConfig",e)}_readOptionalContentConfig(e,t){function r(e){const r=[];if(Array.isArray(e))for(const i of e)(0,n.isRef)(i)&&t.includes(i)&&r.push(i.toString());return r}function a(e,r=0){if(!Array.isArray(e))return null;const i=[];for(const o of e){if((0,n.isRef)(o)&&t.includes(o)){h.put(o),i.push(o.toString());continue}const e=s(o,r);e&&i.push(e)}if(r>0)return i;const a=[];for(const n of t)h.has(n)||a.push(n.toString());return a.length&&i.push({name:null,order:a}),i}function s(e,t){if(++t>l)return(0,i.warn)("parseNestedOrder - reached MAX_NESTED_LEVELS."),null;const r=o.fetchIfRef(e);if(!Array.isArray(r))return null;const n=o.fetchIfRef(r[0]);if("string"!==typeof n)return null;const s=a(r.slice(1),t);return s&&s.length?{name:(0,i.stringToPDFString)(n),order:s}:null}const o=this.xref,h=new n.RefSet,l=10;return{name:(0,i.isString)(e.get("Name"))?(0,i.stringToPDFString)(e.get("Name")):null,creator:(0,i.isString)(e.get("Creator"))?(0,i.stringToPDFString)(e.get("Creator")):null,baseState:(0,n.isName)(e.get("BaseState"))?e.get("BaseState").name:null,on:r(e.get("ON")),off:r(e.get("OFF")),order:a(e.get("Order")),groups:null}}get numPages(){const e=this.toplevelPagesDict.get("Count");if(!Number.isInteger(e))throw new i.FormatError("Page count in top-level pages dictionary is not an integer.");return(0,i.shadow)(this,"numPages",e)}get destinations(){const e=this._readDests(),t=Object.create(null);if(e instanceof p){const r=e.getAll();for(const e in r)t[e]=c(r[e])}else e instanceof n.Dict&&e.forEach((function(e,r){r&&(t[e]=c(r))}));return(0,i.shadow)(this,"destinations",t)}getDestination(e){const t=this._readDests();return t instanceof p||t instanceof n.Dict?c(t.get(e)||null):null}_readDests(){const e=this._catDict.get("Names");return e&&e.has("Dests")?new p(e.getRaw("Dests"),this.xref):this._catDict.has("Dests")?this._catDict.get("Dests"):void 0}get pageLabels(){let e=null;try{e=this._readPageLabels()}catch(t){if(t instanceof s.MissingDataException)throw t;(0,i.warn)("Unable to read page labels.")}return(0,i.shadow)(this,"pageLabels",e)}_readPageLabels(){const e=this._catDict.getRaw("PageLabels");if(!e)return null;const t=new Array(this.numPages);let r=null,a="";const o=new m(e,this.xref),h=o.getAll();let l="",c=1;for(let u=0,f=this.numPages;u<f;u++){if(u in h){const e=h[u];if(!(0,n.isDict)(e))throw new i.FormatError("PageLabel is not a dictionary.");if(e.has("Type")&&!(0,n.isName)(e.get("Type"),"PageLabel"))throw new i.FormatError("Invalid type in PageLabel dictionary.");if(e.has("S")){const t=e.get("S");if(!(0,n.isName)(t))throw new i.FormatError("Invalid style in PageLabel dictionary.");r=t.name}else r=null;if(e.has("P")){const t=e.get("P");if(!(0,i.isString)(t))throw new i.FormatError("Invalid prefix in PageLabel dictionary.");a=(0,i.stringToPDFString)(t)}else a="";if(e.has("St")){const t=e.get("St");if(!(Number.isInteger(t)&&t>=1))throw new i.FormatError("Invalid start in PageLabel dictionary.");c=t}else c=1}switch(r){case"D":l=c;break;case"R":case"r":l=(0,s.toRomanNumerals)(c,"r"===r);break;case"A":case"a":const e=26,t=65,n=97,a="a"===r?n:t,o=c-1,h=String.fromCharCode(a+o%e),u=[];for(let r=0,i=o/e|0;r<=i;r++)u.push(h);l=u.join("");break;default:if(r)throw new i.FormatError(`Invalid style "${r}" in PageLabel dictionary.`);l=""}t[u]=a+l,c++}return t}get pageLayout(){const e=this._catDict.get("PageLayout");let t="";if((0,n.isName)(e))switch(e.name){case"SinglePage":case"OneColumn":case"TwoColumnLeft":case"TwoColumnRight":case"TwoPageLeft":case"TwoPageRight":t=e.name}return(0,i.shadow)(this,"pageLayout",t)}get pageMode(){const e=this._catDict.get("PageMode");let t="UseNone";if((0,n.isName)(e))switch(e.name){case"UseNone":case"UseOutlines":case"UseThumbs":case"FullScreen":case"UseOC":case"UseAttachments":t=e.name}return(0,i.shadow)(this,"pageMode",t)}get viewerPreferences(){const e={HideToolbar:i.isBool,HideMenubar:i.isBool,HideWindowUI:i.isBool,FitWindow:i.isBool,CenterWindow:i.isBool,DisplayDocTitle:i.isBool,NonFullScreenPageMode:n.isName,Direction:n.isName,ViewArea:n.isName,ViewClip:n.isName,PrintArea:n.isName,PrintClip:n.isName,PrintScaling:n.isName,Duplex:n.isName,PickTrayByPDFSize:i.isBool,PrintPageRange:Array.isArray,NumCopies:Number.isInteger},t=this._catDict.get("ViewerPreferences");let r=null;if((0,n.isDict)(t))for(const n in e){if(!t.has(n))continue;const a=t.get(n);if(!e[n](a)){(0,i.info)(`Bad value in ViewerPreferences for "${n}".`);continue}let s;switch(n){case"NonFullScreenPageMode":switch(a.name){case"UseNone":case"UseOutlines":case"UseThumbs":case"UseOC":s=a.name;break;default:s="UseNone"}break;case"Direction":switch(a.name){case"L2R":case"R2L":s=a.name;break;default:s="L2R"}break;case"ViewArea":case"ViewClip":case"PrintArea":case"PrintClip":switch(a.name){case"MediaBox":case"CropBox":case"BleedBox":case"TrimBox":case"ArtBox":s=a.name;break;default:s="CropBox"}break;case"PrintScaling":switch(a.name){case"None":case"AppDefault":s=a.name;break;default:s="AppDefault"}break;case"Duplex":switch(a.name){case"Simplex":case"DuplexFlipShortEdge":case"DuplexFlipLongEdge":s=a.name;break;default:s="None"}break;case"PrintPageRange":const e=a.length;if(e%2!==0)break;const t=a.every((e,t,r)=>Number.isInteger(e)&&e>0&&(0===t||e>=r[t-1])&&e<=this.numPages);t&&(s=a);break;case"NumCopies":a>0&&(s=a);break;default:if("boolean"!==typeof a)throw new i.FormatError("viewerPreferences - expected a boolean value for: "+n);s=a}void 0!==s?(r||(r=Object.create(null)),r[n]=s):(0,i.info)(`Bad value in ViewerPreferences for "${n}".`)}return(0,i.shadow)(this,"viewerPreferences",r)}get openAction(){const e=this._catDict.get("OpenAction");let t=null;if((0,n.isDict)(e)){const r=new n.Dict(this.xref);r.set("A",e);const i={url:null,dest:null,action:null};u.parseDestDictionary({destDict:r,resultObj:i}),Array.isArray(i.dest)?(t||(t=Object.create(null)),t.dest=i.dest):i.action&&(t||(t=Object.create(null)),t.action=i.action)}else Array.isArray(e)&&(t||(t=Object.create(null)),t.dest=e);return(0,i.shadow)(this,"openAction",t)}get attachments(){const e=this._catDict.get("Names");let t=null;if(e&&e.has("EmbeddedFiles")){const r=new p(e.getRaw("EmbeddedFiles"),this.xref),n=r.getAll();for(const e in n){const r=new g(n[e],this.xref);t||(t=Object.create(null)),t[(0,i.stringToPDFString)(e)]=r.serializable}}return(0,i.shadow)(this,"attachments",t)}get javaScript(){const e=this._catDict.get("Names");let t=null;function r(e){const r=e.get("S");if(!(0,n.isName)(r,"JavaScript"))return;let a=e.get("JS");if((0,n.isStream)(a))a=(0,i.bytesToString)(a.getBytes());else if(!(0,i.isString)(a))return;t||(t=[]),t.push((0,i.stringToPDFString)(a))}if(e&&e.has("JavaScript")){const t=new p(e.getRaw("JavaScript"),this.xref),i=t.getAll();for(const e in i){const t=i[e];(0,n.isDict)(t)&&r(t)}}const a=this._catDict.get("OpenAction");return(0,n.isDict)(a)&&(0,n.isName)(a.get("S"),"JavaScript")&&r(a),(0,i.shadow)(this,"javaScript",t)}fontFallback(e,t){const r=[];return this.fontCache.forEach((function(e){r.push(e)})),Promise.all(r).then(r=>{for(const i of r)if(i.loadedName===e)return void i.fallback(t)})}cleanup(e=!1){(0,n.clearPrimitiveCaches)(),this.globalImageCache.clear(e),this.pageKidsCountCache.clear();const t=[];return this.fontCache.forEach((function(e){t.push(e)})),Promise.all(t).then(e=>{for(const{dict:t}of e)delete t.translated;this.fontCache.clear(),this.builtInCMapCache.clear()})}getPageDict(e){const t=(0,i.createPromiseCapability)(),r=[this._catDict.getRaw("Pages")],a=new n.RefSet,s=this.xref,o=this.pageKidsCountCache;let h,l=0;function c(){while(r.length){const u=r.pop();if((0,n.isRef)(u)){if(h=o.get(u),h>0&&l+h<e){l+=h;continue}return a.has(u)?void t.reject(new i.FormatError("Pages tree contains circular reference.")):(a.put(u),void s.fetchAsync(u).then((function(i){(0,n.isDict)(i,"Page")||(0,n.isDict)(i)&&!i.has("Kids")?e===l?(u&&!o.has(u)&&o.put(u,1),t.resolve([i,u])):(l++,c()):(r.push(i),c())}),t.reject))}if(!(0,n.isDict)(u))return void t.reject(new i.FormatError("Page dictionary kid reference points to wrong type of object."));if(h=u.get("Count"),Number.isInteger(h)&&h>=0){const t=u.objId;if(t&&!o.has(t)&&o.put(t,h),l+h<=e){l+=h;continue}}const f=u.get("Kids");if(!Array.isArray(f)){if((0,n.isName)(u.get("Type"),"Page")||!u.has("Type")&&u.has("Contents")){if(l===e)return void t.resolve([u,null]);l++;continue}return void t.reject(new i.FormatError("Page dictionary kids object is not an array."))}for(let e=f.length-1;e>=0;e--)r.push(f[e])}t.reject(new Error(`Page index ${e} not found.`))}return c(),t.promise}getPageIndex(e){const t=this.xref;function r(r){let a,s=0;return t.fetchAsync(r).then((function(t){if((0,n.isRefsEqual)(r,e)&&!(0,n.isDict)(t,"Page")&&(!(0,n.isDict)(t)||t.has("Type")||!t.has("Contents")))throw new i.FormatError("The reference does not point to a /Page dictionary.");if(!t)return null;if(!(0,n.isDict)(t))throw new i.FormatError("Node must be a dictionary.");return a=t.getRaw("Parent"),t.getAsync("Parent")})).then((function(e){if(!e)return null;if(!(0,n.isDict)(e))throw new i.FormatError("Parent must be a dictionary.");return e.getAsync("Kids")})).then((function(e){if(!e)return null;const o=[];let h=!1;for(let a=0,l=e.length;a<l;a++){const l=e[a];if(!(0,n.isRef)(l))throw new i.FormatError("Kid must be a reference.");if((0,n.isRefsEqual)(l,r)){h=!0;break}o.push(t.fetchAsync(l).then((function(e){if(!(0,n.isDict)(e))throw new i.FormatError("Kid node must be a dictionary.");e.has("Count")?s+=e.get("Count"):s++})))}if(!h)throw new i.FormatError("Kid reference not found in parent's kids.");return Promise.all(o).then((function(){return[s,a]}))}))}let a=0;function s(e){return r(e).then((function(e){if(!e)return a;const[t,r]=e;return a+=t,s(r)}))}return s(e)}static parseDestDictionary(e){function t(e){return e.startsWith("www.")?"http://"+e:e}function r(e){try{return(0,i.stringToUTF8String)(e)}catch(t){return e}}const a=e.destDict;if(!(0,n.isDict)(a))return void(0,i.warn)("parseDestDictionary: `destDict` must be a dictionary.");const s=e.resultObj;if("object"!==typeof s)return void(0,i.warn)("parseDestDictionary: `resultObj` must be an object.");const o=e.docBaseUrl||null;let h,l,c=a.get("A");if(!(0,n.isDict)(c)&&a.has("Dest")&&(c=a.get("Dest")),(0,n.isDict)(c)){const e=c.get("S");if(!(0,n.isName)(e))return void(0,i.warn)("parseDestDictionary: Invalid type in Action dictionary.");const r=e.name;switch(r){case"URI":h=c.get("URI"),(0,n.isName)(h)?h="/"+h.name:(0,i.isString)(h)&&(h=t(h));break;case"GoTo":l=c.get("D");break;case"Launch":case"GoToR":const e=c.get("F");(0,n.isDict)(e)?h=e.get("F")||null:(0,i.isString)(e)&&(h=e);let a=c.get("D");if(a&&((0,n.isName)(a)&&(a=a.name),(0,i.isString)(h))){const e=h.split("#")[0];(0,i.isString)(a)?h=e+"#"+a:Array.isArray(a)&&(h=e+"#"+JSON.stringify(a))}const o=c.get("NewWindow");(0,i.isBool)(o)&&(s.newWindow=o);break;case"Named":const u=c.get("N");(0,n.isName)(u)&&(s.action=u.name);break;case"JavaScript":const f=c.get("JS");let d;if((0,n.isStream)(f)?d=(0,i.bytesToString)(f.getBytes()):(0,i.isString)(f)&&(d=f),d){const e=["app.launchURL","window.open"],t=new RegExp("^\\s*("+e.join("|").split(".").join("\\.")+")\\((?:'|\")([^'\"]*)(?:'|\")(?:,\\s*(\\w+)\\)|\\))","i"),r=t.exec((0,i.stringToPDFString)(d));if(r&&r[2]){h=r[2],"true"===r[3]&&"app.launchURL"===r[1]&&(s.newWindow=!0);break}}default:(0,i.warn)(`parseDestDictionary: unsupported action type "${r}".`);break}}else a.has("Dest")&&(l=a.get("Dest"));if((0,i.isString)(h)){h=r(h);const e=(0,i.createValidAbsoluteUrl)(h,o);e&&(s.url=e.href),s.unsafeUrl=h}l&&((0,n.isName)(l)&&(l=l.name),((0,i.isString)(l)||Array.isArray(l))&&(s.dest=l))}}t.Catalog=u;var f=function(){function e(e,t){this.stream=e,this.pdfManager=t,this.entries=[],this.xrefstms=Object.create(null),this._cacheMap=new Map,this.stats={streamTypes:Object.create(null),fontTypes:Object.create(null)},this._newRefNum=null}return e.prototype={getNewRef:function(){return null===this._newRefNum&&(this._newRefNum=this.entries.length),n.Ref.get(this._newRefNum++,0)},resetNewRef:function(){this._newRefNum=null},setStartXRef:function(e){this.startXRefQueue=[e]},parse:function(e){var t;let r,a;e?((0,i.warn)("Indexing all PDF objects"),t=this.indexObjects()):t=this.readXRef(),t.assignXref(this),this.trailer=t;try{r=t.get("Encrypt")}catch(c){if(c instanceof s.MissingDataException)throw c;(0,i.warn)(`XRef.parse - Invalid "Encrypt" reference: "${c}".`)}if((0,n.isDict)(r)){var h=t.get("ID"),l=h&&h.length?h[0]:"";r.suppressEncryption=!0,this.encrypt=new o.CipherTransformFactory(r,l,this.pdfManager.password)}try{a=t.get("Root")}catch(c){if(c instanceof s.MissingDataException)throw c;(0,i.warn)(`XRef.parse - Invalid "Root" reference: "${c}".`)}if(!(0,n.isDict)(a)||!a.has("Pages")){if(!e)throw new s.XRefParseException;throw new i.FormatError("Invalid root reference")}this.root=a},processXRefTable:function(e){"tableState"in this||(this.tableState={entryNum:0,streamPos:e.lexer.stream.pos,parserBuf1:e.buf1,parserBuf2:e.buf2});var t=this.readXRefTable(e);if(!(0,n.isCmd)(t,"trailer"))throw new i.FormatError("Invalid XRef table: could not find trailer dictionary");var r=e.getObj();if(!(0,n.isDict)(r)&&r.dict&&(r=r.dict),!(0,n.isDict)(r))throw new i.FormatError("Invalid XRef table: could not parse trailer dictionary");return delete this.tableState,r},readXRefTable:function(e){var t,r=e.lexer.stream,a=this.tableState;r.pos=a.streamPos,e.buf1=a.parserBuf1,e.buf2=a.parserBuf2;while(1){if(!("firstEntryNum"in a)||!("entryCount"in a)){if((0,n.isCmd)(t=e.getObj(),"trailer"))break;a.firstEntryNum=t,a.entryCount=e.getObj()}var s=a.firstEntryNum,o=a.entryCount;if(!Number.isInteger(s)||!Number.isInteger(o))throw new i.FormatError("Invalid XRef table: wrong types in subsection header");for(var h=a.entryNum;h<o;h++){a.streamPos=r.pos,a.entryNum=h,a.parserBuf1=e.buf1,a.parserBuf2=e.buf2;var l={};l.offset=e.getObj(),l.gen=e.getObj();var c=e.getObj();if(c instanceof n.Cmd)switch(c.cmd){case"f":l.free=!0;break;case"n":l.uncompressed=!0;break}if(!Number.isInteger(l.offset)||!Number.isInteger(l.gen)||!l.free&&!l.uncompressed)throw new i.FormatError(`Invalid entry in XRef subsection: ${s}, ${o}`);0===h&&l.free&&1===s&&(s=0),this.entries[h+s]||(this.entries[h+s]=l)}a.entryNum=0,a.streamPos=r.pos,a.parserBuf1=e.buf1,a.parserBuf2=e.buf2,delete a.firstEntryNum,delete a.entryCount}if(this.entries[0]&&!this.entries[0].free)throw new i.FormatError("Invalid XRef table: unexpected first object");return t},processXRefStream:function(e){if(!("streamState"in this)){var t=e.dict,r=t.get("W"),i=t.get("Index");i||(i=[0,t.get("Size")]),this.streamState={entryRanges:i,byteWidths:r,entryNum:0,streamPos:e.pos}}return this.readXRefStream(e),delete this.streamState,e.dict},readXRefStream:function(e){var t,r,n=this.streamState;e.pos=n.streamPos;var a=n.byteWidths,s=a[0],o=a[1],h=a[2],l=n.entryRanges;while(l.length>0){var c=l[0],u=l[1];if(!Number.isInteger(c)||!Number.isInteger(u))throw new i.FormatError(`Invalid XRef range fields: ${c}, ${u}`);if(!Number.isInteger(s)||!Number.isInteger(o)||!Number.isInteger(h))throw new i.FormatError(`Invalid XRef entry fields length: ${c}, ${u}`);for(t=n.entryNum;t<u;++t){n.entryNum=t,n.streamPos=e.pos;var f=0,d=0,p=0;for(r=0;r<s;++r)f=f<<8|e.getByte();for(0===s&&(f=1),r=0;r<o;++r)d=d<<8|e.getByte();for(r=0;r<h;++r)p=p<<8|e.getByte();var m={};switch(m.offset=d,m.gen=p,f){case 0:m.free=!0;break;case 1:m.uncompressed=!0;break;case 2:break;default:throw new i.FormatError("Invalid XRef entry type: "+f)}this.entries[c+t]||(this.entries[c+t]=m)}n.entryNum=0,n.streamPos=e.pos,l.splice(0,2)}},indexObjects:function(){var e=9,t=10,r=13,o=32,h=37,l=60;function c(e,i){var n="",a=e[i];while(a!==t&&a!==r&&a!==l){if(++i>=e.length)break;n+=String.fromCharCode(a),a=e[i]}return n}function u(e,t,r){var i=r.length,n=e.length,a=0;while(t<n){var s=0;while(s<i&&e[t+s]===r[s])++s;if(s>=i)break;t++,a++}return a}var f=/^(\d+)\s+(\d+)\s+obj\b/;const d=/\bendobj[\b\s]$/,p=/\s+(\d+\s+\d+\s+obj[\b\s<])$/,m=25;var g=new Uint8Array([116,114,97,105,108,101,114]),b=new Uint8Array([115,116,97,114,116,120,114,101,102]);const v=new Uint8Array([111,98,106]);var y=new Uint8Array([47,88,82,101,102]);this.entries.length=0;var w=this.stream;w.pos=0;var M,_,S=w.getBytes(),k=w.start,A=S.length,x=[],C=[];while(k<A){var E=S[k];if(E!==e&&E!==t&&E!==r&&E!==o)if(E!==h){var T,R=c(S,k);if(R.startsWith("xref")&&(4===R.length||/\s/.test(R[4])))k+=u(S,k,g),x.push(k),k+=u(S,k,b);else if(T=f.exec(R)){const e=0|T[1],t=0|T[2];this.entries[e]&&this.entries[e].gen!==t||(this.entries[e]={offset:k-w.start,gen:t,uncompressed:!0});let r,n=k+R.length;while(n<S.length){const e=n+u(S,n,v)+4;r=e-k;const t=Math.max(e-m,n),a=(0,i.bytesToString)(S.subarray(t,e));if(d.test(a))break;{const e=p.exec(a);if(e&&e[1]){(0,i.warn)('indexObjects: Found new "obj" inside of another "obj", caused by missing "endobj" -- trying to recover.'),r-=e[1].length;break}}n=e}const a=S.subarray(k,k+r);var I=u(a,0,y);I<r&&a[I+5]<64&&(C.push(k-w.start),this.xrefstms[k-w.start]=1),k+=r}else R.startsWith("trailer")&&(7===R.length||/\s/.test(R[7]))?(x.push(k),k+=u(S,k,b)):k+=R.length+1}else do{if(++k,k>=A)break;E=S[k]}while(E!==t&&E!==r);else++k}for(M=0,_=C.length;M<_;++M)this.startXRefQueue.push(C[M]),this.readXRef(!0);let P;for(M=0,_=x.length;M<_;++M){w.pos=x[M];const e=new a.Parser({lexer:new a.Lexer(w),xref:this,allowStreams:!0,recoveryMode:!0});var O=e.getObj();if(!(0,n.isCmd)(O,"trailer"))continue;const t=e.getObj();if(!(0,n.isDict)(t))continue;let r;try{r=t.get("Root")}catch(F){if(F instanceof s.MissingDataException)throw F;continue}if((0,n.isDict)(r)&&r.has("Pages")){if(t.has("ID"))return t;P=t}}if(P)return P;throw new i.InvalidPDFException("Invalid PDF structure.")},readXRef:function(e){var t=this.stream;const r=Object.create(null);try{while(this.startXRefQueue.length){var o=this.startXRefQueue[0];if(r[o]){(0,i.warn)("readXRef - skipping XRef table since it was already parsed."),this.startXRefQueue.shift();continue}r[o]=!0,t.pos=o+t.start;const e=new a.Parser({lexer:new a.Lexer(t),xref:this,allowStreams:!0});var h,l=e.getObj();if((0,n.isCmd)(l,"xref")){if(h=this.processXRefTable(e),this.topDict||(this.topDict=h),l=h.get("XRefStm"),Number.isInteger(l)){var c=l;c in this.xrefstms||(this.xrefstms[c]=1,this.startXRefQueue.push(c))}}else{if(!Number.isInteger(l))throw new i.FormatError("Invalid XRef stream header");if(!Number.isInteger(e.getObj())||!(0,n.isCmd)(e.getObj(),"obj")||!(0,n.isStream)(l=e.getObj()))throw new i.FormatError("Invalid XRef stream");if(h=this.processXRefStream(l),this.topDict||(this.topDict=h),!h)throw new i.FormatError("Failed to read XRef stream")}l=h.get("Prev"),Number.isInteger(l)?this.startXRefQueue.push(l):(0,n.isRef)(l)&&this.startXRefQueue.push(l.num),this.startXRefQueue.shift()}return this.topDict}catch(u){if(u instanceof s.MissingDataException)throw u;(0,i.info)("(while reading XRef): "+u)}if(!e)throw new s.XRefParseException},getEntry:function(e){var t=this.entries[e];return t&&!t.free&&t.offset?t:null},fetchIfRef:function(e,t){return e instanceof n.Ref?this.fetch(e,t):e},fetch:function(e,t){if(!(e instanceof n.Ref))throw new Error("ref object is not a reference");const r=e.num,i=this._cacheMap.get(r);if(void 0!==i)return i instanceof n.Dict&&!i.objId&&(i.objId=e.toString()),i;let a=this.getEntry(r);return null===a?(this._cacheMap.set(r,a),a):(a=a.uncompressed?this.fetchUncompressed(e,a,t):this.fetchCompressed(e,a,t),(0,n.isDict)(a)?a.objId=e.toString():(0,n.isStream)(a)&&(a.dict.objId=e.toString()),a)},fetchUncompressed(e,t,r=!1){var i=e.gen,o=e.num;if(t.gen!==i)throw new s.XRefEntryException("Inconsistent generation in XRef: "+e);var h=this.stream.makeSubStream(t.offset+this.stream.start);const l=new a.Parser({lexer:new a.Lexer(h),xref:this,allowStreams:!0});var c=l.getObj(),u=l.getObj(),f=l.getObj();if(c!==o||u!==i||!(f instanceof n.Cmd))throw new s.XRefEntryException("Bad (uncompressed) XRef entry: "+e);if("obj"!==f.cmd){if(f.cmd.startsWith("obj")&&(o=parseInt(f.cmd.substring(3),10),!Number.isNaN(o)))return o;throw new s.XRefEntryException("Bad (uncompressed) XRef entry: "+e)}return t=this.encrypt&&!r?l.getObj(this.encrypt.createCipherTransform(o,i)):l.getObj(),(0,n.isStream)(t)||this._cacheMap.set(o,t),t},fetchCompressed(e,t,r=!1){const o=t.offset,h=this.fetch(n.Ref.get(o,0));if(!(0,n.isStream)(h))throw new i.FormatError("bad ObjStm stream");const l=h.dict.get("First"),c=h.dict.get("N");if(!Number.isInteger(l)||!Number.isInteger(c))throw new i.FormatError("invalid first and n parameters for ObjStm stream");const u=new a.Parser({lexer:new a.Lexer(h),xref:this,allowStreams:!0}),f=new Array(c);for(let n=0;n<c;++n){const e=u.getObj();if(!Number.isInteger(e))throw new i.FormatError("invalid object number in the ObjStm stream: "+e);const t=u.getObj();if(!Number.isInteger(t))throw new i.FormatError("invalid object offset in the ObjStm stream: "+t);f[n]=e}const d=new Array(c);for(let i=0;i<c;++i){const e=u.getObj();if(d[i]=e,u.buf1 instanceof n.Cmd&&"endobj"===u.buf1.cmd&&u.shift(),(0,n.isStream)(e))continue;const t=f[i],r=this.entries[t];r&&r.offset===o&&r.gen===i&&this._cacheMap.set(t,e)}if(t=d[t.gen],void 0===t)throw new s.XRefEntryException("Bad (compressed) XRef entry: "+e);return t},async fetchIfRefAsync(e,t){return e instanceof n.Ref?this.fetchAsync(e,t):e},async fetchAsync(e,t){try{return this.fetch(e,t)}catch(r){if(!(r instanceof s.MissingDataException))throw r;return await this.pdfManager.requestRange(r.begin,r.end),this.fetchAsync(e,t)}},getCatalogObj:function(){return this.root}},e}();t.XRef=f;class d{constructor(e,t,r){this.constructor===d&&(0,i.unreachable)("Cannot initialize NameOrNumberTree."),this.root=e,this.xref=t,this._type=r}getAll(){const e=Object.create(null);if(!this.root)return e;const t=this.xref,r=new n.RefSet;r.put(this.root);const a=[this.root];while(a.length>0){const s=t.fetchIfRef(a.shift());if(!(0,n.isDict)(s))continue;if(s.has("Kids")){const e=s.get("Kids");for(let t=0,n=e.length;t<n;t++){const n=e[t];if(r.has(n))throw new i.FormatError(`Duplicate entry in "${this._type}" tree.`);a.push(n),r.put(n)}continue}const o=s.get(this._type);if(Array.isArray(o))for(let r=0,i=o.length;r<i;r+=2)e[t.fetchIfRef(o[r])]=t.fetchIfRef(o[r+1])}return e}get(e){if(!this.root)return null;const t=this.xref;let r=t.fetchIfRef(this.root),n=0;const a=10;while(r.has("Kids")){if(++n>a)return(0,i.warn)(`Search depth limit reached for "${this._type}" tree.`),null;const s=r.get("Kids");if(!Array.isArray(s))return null;let o=0,h=s.length-1;while(o<=h){const i=o+h>>1,n=t.fetchIfRef(s[i]),a=n.get("Limits");if(e<t.fetchIfRef(a[0]))h=i-1;else{if(!(e>t.fetchIfRef(a[1]))){r=t.fetchIfRef(s[i]);break}o=i+1}}if(o>h)return null}const s=r.get(this._type);if(Array.isArray(s)){let r=0,n=s.length-2;while(r<=n){const i=r+n>>1,a=i+(1&i),o=t.fetchIfRef(s[a]);if(e<o)n=a-2;else{if(!(e>o))return t.fetchIfRef(s[a+1]);r=a+2}}(0,i.info)(`Falling back to an exhaustive search, for key "${e}", in "${this._type}" tree.`);for(let a=0,o=s.length;a<o;a+=2){const r=t.fetchIfRef(s[a]);if(r===e)return(0,i.warn)(`The "${e}" key was found at an incorrect, i.e. out-of-order, position in "${this._type}" tree.`),t.fetchIfRef(s[a+1])}}return null}}class p extends d{constructor(e,t){super(e,t,"Names")}}class m extends d{constructor(e,t){super(e,t,"Nums")}}var g=function(){function e(e,t){e&&(0,n.isDict)(e)&&(this.xref=t,this.root=e,e.has("FS")&&(this.fs=e.get("FS")),this.description=e.has("Desc")?(0,i.stringToPDFString)(e.get("Desc")):"",e.has("RF")&&(0,i.warn)("Related file specifications are not supported"),this.contentAvailable=!0,e.has("EF")||(this.contentAvailable=!1,(0,i.warn)("Non-embedded file specifications are not supported")))}function t(e){return e.has("UF")?e.get("UF"):e.has("F")?e.get("F"):e.has("Unix")?e.get("Unix"):e.has("Mac")?e.get("Mac"):e.has("DOS")?e.get("DOS"):null}return e.prototype={get filename(){if(!this._filename&&this.root){var e=t(this.root)||"unnamed";this._filename=(0,i.stringToPDFString)(e).replace(/\\\\/g,"\\").replace(/\\\//g,"/").replace(/\\/g,"/")}return this._filename},get content(){if(!this.contentAvailable)return null;!this.contentRef&&this.root&&(this.contentRef=t(this.root.get("EF")));var e=null;if(this.contentRef){var r=this.xref,a=r.fetchIfRef(this.contentRef);a&&(0,n.isStream)(a)?e=a.getBytes():(0,i.warn)("Embedded file specification points to non-existing/invalid content")}else(0,i.warn)("Embedded file specification does not have a content");return e},get serializable(){return{filename:this.filename,content:this.content}}},e}();t.FileSpec=g;const b=function(){function e(e){return e instanceof n.Ref||e instanceof n.Dict||Array.isArray(e)||(0,n.isStream)(e)}function t(t,r){if(t instanceof n.Dict)t=t.getRawValues();else if((0,n.isStream)(t))t=t.dict.getRawValues();else if(!Array.isArray(t))return;for(const i of t)e(i)&&r.push(i)}function r(e,t,r){this.dict=e,this.keys=t,this.xref=r,this.refSet=null}return r.prototype={async load(){if(!this.xref.stream.allChunksLoaded||this.xref.stream.allChunksLoaded())return;const{keys:e,dict:t}=this;this.refSet=new n.RefSet;const r=[];for(let i=0,n=e.length;i<n;i++){const n=t.getRaw(e[i]);void 0!==n&&r.push(n)}return this._walk(r)},async _walk(e){const r=[],i=[];while(e.length){let o=e.pop();if(o instanceof n.Ref){if(this.refSet.has(o))continue;try{this.refSet.put(o),o=this.xref.fetch(o)}catch(a){if(!(a instanceof s.MissingDataException))throw a;r.push(o),i.push({begin:a.begin,end:a.end})}}if(o&&o.getBaseStreams){const e=o.getBaseStreams();let t=!1;for(let r=0,n=e.length;r<n;r++){const n=e[r];n.allChunksLoaded&&!n.allChunksLoaded()&&(t=!0,i.push({begin:n.start,end:n.end}))}t&&r.push(o)}t(o,e)}if(i.length){await this.xref.stream.manager.requestRanges(i);for(let e=0,t=r.length;e<t;e++){const t=r[e];t instanceof n.Ref&&this.refSet.remove(t)}return this._walk(r)}this.refSet=null}},r}();t.ObjectLoader=b},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Parser=t.Linearization=t.Lexer=void 0;var i=r(12),n=r(2),a=r(5),s=r(8),o=r(13),h=r(15),l=r(18),c=r(20);const u=1e3,f=5552;function d(e){const t=e.length;let r=1,i=0;for(let n=0;n<t;++n)r+=255&e[n],i+=r;return i%65521<<16|r%65521}class p{constructor({lexer:e,xref:t,allowStreams:r=!1,recoveryMode:i=!1}){this.lexer=e,this.xref=t,this.allowStreams=r,this.recoveryMode=i,this.imageCache=Object.create(null),this.refill()}refill(){this.buf1=this.lexer.getObj(),this.buf2=this.lexer.getObj()}shift(){this.buf2 instanceof a.Cmd&&"ID"===this.buf2.cmd?(this.buf1=this.buf2,this.buf2=null):(this.buf1=this.buf2,this.buf2=this.lexer.getObj())}tryShift(){try{return this.shift(),!0}catch(e){if(e instanceof s.MissingDataException)throw e;return!1}}getObj(e=null){const t=this.buf1;if(this.shift(),t instanceof a.Cmd)switch(t.cmd){case"BI":return this.makeInlineImage(e);case"[":const r=[];while(!(0,a.isCmd)(this.buf1,"]")&&!(0,a.isEOF)(this.buf1))r.push(this.getObj(e));if((0,a.isEOF)(this.buf1)){if(!this.recoveryMode)throw new n.FormatError("End of file inside array");return r}return this.shift(),r;case"<<":const i=new a.Dict(this.xref);while(!(0,a.isCmd)(this.buf1,">>")&&!(0,a.isEOF)(this.buf1)){if(!(0,a.isName)(this.buf1)){(0,n.info)("Malformed dictionary: key must be a name object"),this.shift();continue}const t=this.buf1.name;if(this.shift(),(0,a.isEOF)(this.buf1))break;i.set(t,this.getObj(e))}if((0,a.isEOF)(this.buf1)){if(!this.recoveryMode)throw new n.FormatError("End of file inside dictionary");return i}return(0,a.isCmd)(this.buf2,"stream")?this.allowStreams?this.makeStream(i,e):i:(this.shift(),i);default:return t}if(Number.isInteger(t)){if(Number.isInteger(this.buf1)&&(0,a.isCmd)(this.buf2,"R")){const e=a.Ref.get(t,this.buf1);return this.shift(),this.shift(),e}return t}return"string"===typeof t&&e?e.decryptString(t):t}findDefaultInlineStreamEnd(e){const t=69,r=73,i=32,o=10,h=13,l=0,c=this.lexer,u=e.pos,f=10;let d,p,m=0;while(-1!==(d=e.getByte()))if(0===m)m=d===t?1:0;else if(1===m)m=d===r?2:0;else if((0,n.assert)(2===m,"findDefaultInlineStreamEnd - invalid state."),d===i||d===o||d===h){p=e.pos;const t=e.peekBytes(f);for(let e=0,r=t.length;e<r;e++)if(d=t[e],(d!==l||t[e+1]===l)&&d!==o&&d!==h&&(d<i||d>127)){m=0;break}if(2!==m)continue;if(c.knownCommands){const e=c.peekObj();e instanceof a.Cmd&&!c.knownCommands[e.cmd]&&(m=0)}else(0,n.warn)("findDefaultInlineStreamEnd - `lexer.knownCommands` is undefined.");if(2===m)break}else m=0;-1===d&&((0,n.warn)("findDefaultInlineStreamEnd: Reached the end of the stream without finding a valid EI marker"),p&&((0,n.warn)('... trying to recover by using the last "EI" occurrence.'),e.skip(-(e.pos-p))));let g=4;return e.skip(-g),d=e.peekByte(),e.skip(g),(0,s.isWhiteSpace)(d)||g--,e.pos-g-u}findDCTDecodeInlineStreamEnd(e){const t=e.pos;let r,i,a=!1;while(-1!==(r=e.getByte()))if(255===r){switch(e.getByte()){case 0:break;case 255:e.skip(-1);break;case 217:a=!0;break;case 192:case 193:case 194:case 195:case 197:case 198:case 199:case 201:case 202:case 203:case 205:case 206:case 207:case 196:case 204:case 218:case 219:case 220:case 221:case 222:case 223:case 224:case 225:case 226:case 227:case 228:case 229:case 230:case 231:case 232:case 233:case 234:case 235:case 236:case 237:case 238:case 239:case 254:i=e.getUint16(),i>2?e.skip(i-2):e.skip(-2);break}if(a)break}const s=e.pos-t;return-1===r?((0,n.warn)("Inline DCTDecode image stream: EOI marker not found, searching for /EI/ instead."),e.skip(-s),this.findDefaultInlineStreamEnd(e)):(this.inlineStreamSkipEI(e),s)}findASCII85DecodeInlineStreamEnd(e){const t=126,r=62,i=e.pos;let a;while(-1!==(a=e.getByte()))if(a===t){const t=e.pos;a=e.peekByte();while((0,s.isWhiteSpace)(a))e.skip(),a=e.peekByte();if(a===r){e.skip();break}if(e.pos>t){const t=e.peekBytes(2);if(69===t[0]&&73===t[1])break}}const o=e.pos-i;return-1===a?((0,n.warn)("Inline ASCII85Decode image stream: EOD marker not found, searching for /EI/ instead."),e.skip(-o),this.findDefaultInlineStreamEnd(e)):(this.inlineStreamSkipEI(e),o)}findASCIIHexDecodeInlineStreamEnd(e){const t=62,r=e.pos;let i;while(-1!==(i=e.getByte()))if(i===t)break;const a=e.pos-r;return-1===i?((0,n.warn)("Inline ASCIIHexDecode image stream: EOD marker not found, searching for /EI/ instead."),e.skip(-a),this.findDefaultInlineStreamEnd(e)):(this.inlineStreamSkipEI(e),a)}inlineStreamSkipEI(e){const t=69,r=73;let i,n=0;while(-1!==(i=e.getByte()))if(0===n)n=i===t?1:0;else if(1===n)n=i===r?2:0;else if(2===n)break}makeInlineImage(e){const t=this.lexer,r=t.stream,i=new a.Dict(this.xref);let s;while(!(0,a.isCmd)(this.buf1,"ID")&&!(0,a.isEOF)(this.buf1)){if(!(0,a.isName)(this.buf1))throw new n.FormatError("Dictionary key must be a name object");const t=this.buf1.name;if(this.shift(),(0,a.isEOF)(this.buf1))break;i.set(t,this.getObj(e))}-1!==t.beginInlineImagePos&&(s=r.pos-t.beginInlineImagePos);const o=i.get("Filter","F");let h;if((0,a.isName)(o))h=o.name;else if(Array.isArray(o)){const e=this.xref.fetchIfRef(o[0]);(0,a.isName)(e)&&(h=e.name)}const l=r.pos;let c;c="DCTDecode"===h||"DCT"===h?this.findDCTDecodeInlineStreamEnd(r):"ASCII85Decode"===h||"A85"===h?this.findASCII85DecodeInlineStreamEnd(r):"ASCIIHexDecode"===h||"AHx"===h?this.findASCIIHexDecodeInlineStreamEnd(r):this.findDefaultInlineStreamEnd(r);let p,m=r.makeSubStream(l,c,i);if(c<u&&s<f){const e=m.getBytes();m.reset();const i=r.pos;r.pos=t.beginInlineImagePos;const n=r.getBytes(s);r.pos=i,p=d(e)+"_"+d(n);const o=this.imageCache[p];if(void 0!==o)return this.buf2=a.Cmd.get("EI"),this.shift(),o.reset(),o}return e&&(m=e.createStream(m,c)),m=this.filter(m,i,c),m.dict=i,void 0!==p&&(m.cacheKey=`inline_${c}_${p}`,this.imageCache[p]=m),this.buf2=a.Cmd.get("EI"),this.shift(),m}_findStreamLength(e,t){const{stream:r}=this.lexer;r.pos=e;const i=2048,n=t.length;while(r.pos<r.end){const a=r.peekBytes(i),s=a.length-n;if(s<=0)break;let o=0;while(o<s){let i=0;while(i<n&&a[o+i]===t[i])i++;if(i>=n)return r.pos+=o,r.pos-e;o++}r.pos+=s}return-1}makeStream(e,t){const r=this.lexer;let i=r.stream;r.skipToNextLine();const o=i.pos-1;let h=e.get("Length");if(Number.isInteger(h)||((0,n.info)(`Bad length "${h}" in stream`),h=0),i.pos=o+h,r.nextChar(),this.tryShift()&&(0,a.isCmd)(this.buf2,"endstream"))this.shift();else{const e=new Uint8Array([101,110,100,115,116,114,101,97,109]);let t=this._findStreamLength(o,e);if(t<0){const r=1;for(let a=1;a<=r;a++){const r=e.length-a,h=e.slice(0,r),l=this._findStreamLength(o,h);if(l>=0){const e=i.peekBytes(r+1)[r];if(!(0,s.isWhiteSpace)(e))break;(0,n.info)(`Found "${(0,n.bytesToString)(h)}" when searching for endstream command.`),t=l;break}}if(t<0)throw new n.FormatError("Missing endstream command.")}h=t,r.nextChar(),this.shift(),this.shift()}return this.shift(),i=i.makeSubStream(o,h,e),t&&(i=t.createStream(i,h)),i=this.filter(i,e,h),i.dict=e,i}filter(e,t,r){let i=t.get("Filter","F"),s=t.get("DecodeParms","DP");if((0,a.isName)(i))return Array.isArray(s)&&(0,n.warn)("/DecodeParms should not contain an Array, when /Filter contains a Name."),this.makeFilter(e,i.name,r,s);let o=r;if(Array.isArray(i)){const t=i,r=s;for(let h=0,l=t.length;h<l;++h){if(i=this.xref.fetchIfRef(t[h]),!(0,a.isName)(i))throw new n.FormatError(`Bad filter name "${i}"`);s=null,Array.isArray(r)&&h in r&&(s=this.xref.fetchIfRef(r[h])),e=this.makeFilter(e,i.name,o,s),o=null}}return e}makeFilter(e,t,r,a){if(0===r)return(0,n.warn)(`Empty "${t}" stream.`),new i.NullStream;try{const s=this.xref.stats.streamTypes;if("FlateDecode"===t||"Fl"===t)return s[n.StreamType.FLATE]=!0,a?new i.PredictorStream(new i.FlateStream(e,r),r,a):new i.FlateStream(e,r);if("LZWDecode"===t||"LZW"===t){s[n.StreamType.LZW]=!0;let t=1;return a?(a.has("EarlyChange")&&(t=a.get("EarlyChange")),new i.PredictorStream(new i.LZWStream(e,r,t),r,a)):new i.LZWStream(e,r,t)}return"DCTDecode"===t||"DCT"===t?(s[n.StreamType.DCT]=!0,new l.JpegStream(e,r,e.dict,a)):"JPXDecode"===t||"JPX"===t?(s[n.StreamType.JPX]=!0,new c.JpxStream(e,r,e.dict,a)):"ASCII85Decode"===t||"A85"===t?(s[n.StreamType.A85]=!0,new i.Ascii85Stream(e,r)):"ASCIIHexDecode"===t||"AHx"===t?(s[n.StreamType.AHX]=!0,new i.AsciiHexStream(e,r)):"CCITTFaxDecode"===t||"CCF"===t?(s[n.StreamType.CCF]=!0,new o.CCITTFaxStream(e,r,a)):"RunLengthDecode"===t||"RL"===t?(s[n.StreamType.RLX]=!0,new i.RunLengthStream(e,r)):"JBIG2Decode"===t?(s[n.StreamType.JBIG]=!0,new h.Jbig2Stream(e,r,e.dict,a)):((0,n.warn)(`Filter "${t}" is not supported.`),e)}catch(u){if(u instanceof s.MissingDataException)throw u;return(0,n.warn)(`Invalid stream: "${u}"`),new i.NullStream}}}t.Parser=p;const m=[1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];function g(e){return e>=48&&e<=57?15&e:e>=65&&e<=70||e>=97&&e<=102?9+(15&e):-1}class b{constructor(e,t=null){this.stream=e,this.nextChar(),this.strBuf=[],this.knownCommands=t,this._hexStringNumWarn=0,this.beginInlineImagePos=-1}nextChar(){return this.currentChar=this.stream.getByte()}peekChar(){return this.stream.peekByte()}getNumber(){let e=this.currentChar,t=!1,r=0,i=0;if(45===e?(i=-1,e=this.nextChar(),45===e&&(e=this.nextChar())):43===e&&(i=1,e=this.nextChar()),10===e||13===e)do{e=this.nextChar()}while(10===e||13===e);if(46===e&&(r=10,e=this.nextChar()),e<48||e>57){if(10===r&&0===i&&((0,s.isWhiteSpace)(e)||-1===e))return(0,n.warn)("Lexer.getNumber - treating a single decimal point as zero."),0;throw new n.FormatError(`Invalid number: ${String.fromCharCode(e)} (charCode ${e})`)}i=i||1;let a=e-48,o=0,h=1;while((e=this.nextChar())>=0)if(e>=48&&e<=57){const i=e-48;t?o=10*o+i:(0!==r&&(r*=10),a=10*a+i)}else if(46===e){if(0!==r)break;r=1}else if(45===e)(0,n.warn)("Badly formatted number: minus sign in the middle");else{if(69!==e&&101!==e)break;if(e=this.peekChar(),43===e||45===e)h=45===e?-1:1,this.nextChar();else if(e<48||e>57)break;t=!0}return 0!==r&&(a/=r),t&&(a*=10**(h*o)),i*a}getString(){let e=1,t=!1;const r=this.strBuf;r.length=0;let i=this.nextChar();while(1){let a=!1;switch(0|i){case-1:(0,n.warn)("Unterminated string"),t=!0;break;case 40:++e,r.push("(");break;case 41:0===--e?(this.nextChar(),t=!0):r.push(")");break;case 92:switch(i=this.nextChar(),i){case-1:(0,n.warn)("Unterminated string"),t=!0;break;case 110:r.push("\n");break;case 114:r.push("\r");break;case 116:r.push("\t");break;case 98:r.push("\b");break;case 102:r.push("\f");break;case 92:case 40:case 41:r.push(String.fromCharCode(i));break;case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:let e=15&i;i=this.nextChar(),a=!0,i>=48&&i<=55&&(e=(e<<3)+(15&i),i=this.nextChar(),i>=48&&i<=55&&(a=!1,e=(e<<3)+(15&i))),r.push(String.fromCharCode(e));break;case 13:10===this.peekChar()&&this.nextChar();break;case 10:break;default:r.push(String.fromCharCode(i));break}break;default:r.push(String.fromCharCode(i));break}if(t)break;a||(i=this.nextChar())}return r.join("")}getName(){let e,t;const r=this.strBuf;r.length=0;while((e=this.nextChar())>=0&&!m[e])if(35===e){if(e=this.nextChar(),m[e]){(0,n.warn)("Lexer_getName: NUMBER SIGN (#) should be followed by a hexadecimal number."),r.push("#");break}const i=g(e);if(-1!==i){t=e,e=this.nextChar();const a=g(e);if(-1===a){if((0,n.warn)(`Lexer_getName: Illegal digit (${String.fromCharCode(e)}) in hexadecimal number.`),r.push("#",String.fromCharCode(t)),m[e])break;r.push(String.fromCharCode(e));continue}r.push(String.fromCharCode(i<<4|a))}else r.push("#",String.fromCharCode(e))}else r.push(String.fromCharCode(e));return r.length>127&&(0,n.warn)("Name token is longer than allowed by the spec: "+r.length),a.Name.get(r.join(""))}_hexStringWarn(e){const t=5;this._hexStringNumWarn++!==t?this._hexStringNumWarn>t||(0,n.warn)("getHexString - ignoring invalid character: "+e):(0,n.warn)("getHexString - ignoring additional invalid characters.")}getHexString(){const e=this.strBuf;e.length=0;let t,r,i=this.currentChar,a=!0;this._hexStringNumWarn=0;while(1){if(i<0){(0,n.warn)("Unterminated hex string");break}if(62===i){this.nextChar();break}if(1!==m[i]){if(a){if(t=g(i),-1===t){this._hexStringWarn(i),i=this.nextChar();continue}}else{if(r=g(i),-1===r){this._hexStringWarn(i),i=this.nextChar();continue}e.push(String.fromCharCode(t<<4|r))}a=!a,i=this.nextChar()}else i=this.nextChar()}return e.join("")}getObj(){let e=!1,t=this.currentChar;while(1){if(t<0)return a.EOF;if(e)10!==t&&13!==t||(e=!1);else if(37===t)e=!0;else if(1!==m[t])break;t=this.nextChar()}switch(0|t){case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:case 43:case 45:case 46:return this.getNumber();case 40:return this.getString();case 47:return this.getName();case 91:return this.nextChar(),a.Cmd.get("[");case 93:return this.nextChar(),a.Cmd.get("]");case 60:return t=this.nextChar(),60===t?(this.nextChar(),a.Cmd.get("<<")):this.getHexString();case 62:return t=this.nextChar(),62===t?(this.nextChar(),a.Cmd.get(">>")):a.Cmd.get(">");case 123:return this.nextChar(),a.Cmd.get("{");case 125:return this.nextChar(),a.Cmd.get("}");case 41:throw this.nextChar(),new n.FormatError("Illegal character: "+t)}let r=String.fromCharCode(t);const i=this.knownCommands;let s=i&&void 0!==i[r];while((t=this.nextChar())>=0&&!m[t]){const e=r+String.fromCharCode(t);if(s&&void 0===i[e])break;if(128===r.length)throw new n.FormatError("Command token too long: "+r.length);r=e,s=i&&void 0!==i[r]}return"true"===r||"false"!==r&&("null"===r?null:("BI"===r&&(this.beginInlineImagePos=this.stream.pos),a.Cmd.get(r)))}peekObj(){const e=this.stream.pos,t=this.currentChar,r=this.beginInlineImagePos;let i;try{i=this.getObj()}catch(a){if(a instanceof s.MissingDataException)throw a;(0,n.warn)("peekObj: "+a)}return this.stream.pos=e,this.currentChar=t,this.beginInlineImagePos=r,i}skipToNextLine(){let e=this.currentChar;while(e>=0){if(13===e){e=this.nextChar(),10===e&&this.nextChar();break}if(10===e){this.nextChar();break}e=this.nextChar()}}}t.Lexer=b;class v{static create(e){function t(e,t,r=!1){const i=e.get(t);if(Number.isInteger(i)&&(r?i>=0:i>0))return i;throw new Error(`The "${t}" parameter in the linearization dictionary is invalid.`)}function r(e){const t=e.get("H");let r;if(Array.isArray(t)&&(2===(r=t.length)||4===r)){for(let e=0;e<r;e++){const r=t[e];if(!(Number.isInteger(r)&&r>0))throw new Error(`Hint (${e}) in the linearization dictionary is invalid.`)}return t}throw new Error("Hint array in the linearization dictionary is invalid.")}const i=new p({lexer:new b(e),xref:null}),s=i.getObj(),o=i.getObj(),h=i.getObj(),l=i.getObj();let c,u;if(!(Number.isInteger(s)&&Number.isInteger(o)&&(0,a.isCmd)(h,"obj")&&(0,a.isDict)(l)&&(0,n.isNum)(c=l.get("Linearized"))&&c>0))return null;if((u=t(l,"L"))!==e.length)throw new Error('The "L" parameter in the linearization dictionary does not equal the stream length.');return{length:u,hints:r(l),objectNumberFirst:t(l,"O"),endFirst:t(l,"E"),numPages:t(l,"N"),mainXRefEntriesOffset:t(l,"T"),pageFirst:l.has("P")?t(l,"P",!0):0}}}t.Linearization=v},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LZWStream=t.StringStream=t.StreamsSequenceStream=t.Stream=t.RunLengthStream=t.PredictorStream=t.NullStream=t.FlateStream=t.DecodeStream=t.DecryptStream=t.AsciiHexStream=t.Ascii85Stream=void 0;var i=r(2),n=r(5),a=r(8),s=function(){function e(e,t,r,i){this.bytes=e instanceof Uint8Array?e:new Uint8Array(e),this.start=t||0,this.pos=this.start,this.end=t+r||this.bytes.length,this.dict=i}return e.prototype={get length(){return this.end-this.start},get isEmpty(){return 0===this.length},getByte:function(){return this.pos>=this.end?-1:this.bytes[this.pos++]},getUint16:function(){var e=this.getByte(),t=this.getByte();return-1===e||-1===t?-1:(e<<8)+t},getInt32:function(){var e=this.getByte(),t=this.getByte(),r=this.getByte(),i=this.getByte();return(e<<24)+(t<<16)+(r<<8)+i},getBytes(e,t=!1){var r=this.bytes,i=this.pos,n=this.end;if(!e){const e=r.subarray(i,n);return t?new Uint8ClampedArray(e):e}var a=i+e;a>n&&(a=n),this.pos=a;const s=r.subarray(i,a);return t?new Uint8ClampedArray(s):s},peekByte:function(){var e=this.getByte();return-1!==e&&this.pos--,e},peekBytes(e,t=!1){var r=this.getBytes(e,t);return this.pos-=r.length,r},getByteRange(e,t){return e<0&&(e=0),t>this.end&&(t=this.end),this.bytes.subarray(e,t)},skip:function(e){e||(e=1),this.pos+=e},reset:function(){this.pos=this.start},moveStart:function(){this.start=this.pos},makeSubStream:function(t,r,i){return new e(this.bytes.buffer,t,r,i)}},e}();t.Stream=s;var o=function(){function e(e){const t=(0,i.stringToBytes)(e);s.call(this,t)}return e.prototype=s.prototype,e}();t.StringStream=o;var h=function(){var e=new Uint8Array(0);function t(t){if(this._rawMinBufferLength=t||0,this.pos=0,this.bufferLength=0,this.eof=!1,this.buffer=e,this.minBufferLength=512,t)while(this.minBufferLength<t)this.minBufferLength*=2}return t.prototype={get isEmpty(){while(!this.eof&&0===this.bufferLength)this.readBlock();return 0===this.bufferLength},ensureBuffer:function(e){var t=this.buffer;if(e<=t.byteLength)return t;var r=this.minBufferLength;while(r<e)r*=2;var i=new Uint8Array(r);return i.set(t),this.buffer=i},getByte:function(){var e=this.pos;while(this.bufferLength<=e){if(this.eof)return-1;this.readBlock()}return this.buffer[this.pos++]},getUint16:function(){var e=this.getByte(),t=this.getByte();return-1===e||-1===t?-1:(e<<8)+t},getInt32:function(){var e=this.getByte(),t=this.getByte(),r=this.getByte(),i=this.getByte();return(e<<24)+(t<<16)+(r<<8)+i},getBytes(e,t=!1){var r,i=this.pos;if(e){this.ensureBuffer(i+e),r=i+e;while(!this.eof&&this.bufferLength<r)this.readBlock();var n=this.bufferLength;r>n&&(r=n)}else{while(!this.eof)this.readBlock();r=this.bufferLength}this.pos=r;const a=this.buffer.subarray(i,r);return!t||a instanceof Uint8ClampedArray?a:new Uint8ClampedArray(a)},peekByte:function(){var e=this.getByte();return-1!==e&&this.pos--,e},peekBytes(e,t=!1){var r=this.getBytes(e,t);return this.pos-=r.length,r},makeSubStream:function(e,t,r){var i=e+t;while(this.bufferLength<=i&&!this.eof)this.readBlock();return new s(this.buffer,e,t,r)},getByteRange(e,t){(0,i.unreachable)("Should not call DecodeStream.getByteRange")},skip:function(e){e||(e=1),this.pos+=e},reset:function(){this.pos=0},getBaseStreams:function(){return this.str&&this.str.getBaseStreams?this.str.getBaseStreams():[]}},t}();t.DecodeStream=h;var l=function(){function e(e){this.streams=e;let t=0;for(let r=0,i=e.length;r<i;r++){const i=e[r];t+=i instanceof h?i._rawMinBufferLength:i.length}h.call(this,t)}return e.prototype=Object.create(h.prototype),e.prototype.readBlock=function(){var e=this.streams;if(0!==e.length){var t=e.shift(),r=t.getBytes(),i=this.bufferLength,n=i+r.length,a=this.ensureBuffer(n);a.set(r,i),this.bufferLength=n}else this.eof=!0},e.prototype.getBaseStreams=function(){for(var e=[],t=0,r=this.streams.length;t<r;t++){var i=this.streams[t];i.getBaseStreams&&e.push(...i.getBaseStreams())}return e},e}();t.StreamsSequenceStream=l;var c=function(){var e=new Int32Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),t=new Int32Array([3,4,5,6,7,8,9,10,65547,65549,65551,65553,131091,131095,131099,131103,196643,196651,196659,196667,262211,262227,262243,262259,327811,327843,327875,327907,258,258,258]),r=new Int32Array([1,2,3,4,65541,65543,131081,131085,196625,196633,262177,262193,327745,327777,393345,393409,459009,459137,524801,525057,590849,591361,657409,658433,724993,727041,794625,798721,868353,876545]),n=[new Int32Array([459008,524368,524304,524568,459024,524400,524336,590016,459016,524384,524320,589984,524288,524416,524352,590048,459012,524376,524312,589968,459028,524408,524344,590032,459020,524392,524328,59e4,524296,524424,524360,590064,459010,524372,524308,524572,459026,524404,524340,590024,459018,524388,524324,589992,524292,524420,524356,590056,459014,524380,524316,589976,459030,524412,524348,590040,459022,524396,524332,590008,524300,524428,524364,590072,459009,524370,524306,524570,459025,524402,524338,590020,459017,524386,524322,589988,524290,524418,524354,590052,459013,524378,524314,589972,459029,524410,524346,590036,459021,524394,524330,590004,524298,524426,524362,590068,459011,524374,524310,524574,459027,524406,524342,590028,459019,524390,524326,589996,524294,524422,524358,590060,459015,524382,524318,589980,459031,524414,524350,590044,459023,524398,524334,590012,524302,524430,524366,590076,459008,524369,524305,524569,459024,524401,524337,590018,459016,524385,524321,589986,524289,524417,524353,590050,459012,524377,524313,589970,459028,524409,524345,590034,459020,524393,524329,590002,524297,524425,524361,590066,459010,524373,524309,524573,459026,524405,524341,590026,459018,524389,524325,589994,524293,524421,524357,590058,459014,524381,524317,589978,459030,524413,524349,590042,459022,524397,524333,590010,524301,524429,524365,590074,459009,524371,524307,524571,459025,524403,524339,590022,459017,524387,524323,589990,524291,524419,524355,590054,459013,524379,524315,589974,459029,524411,524347,590038,459021,524395,524331,590006,524299,524427,524363,590070,459011,524375,524311,524575,459027,524407,524343,590030,459019,524391,524327,589998,524295,524423,524359,590062,459015,524383,524319,589982,459031,524415,524351,590046,459023,524399,524335,590014,524303,524431,524367,590078,459008,524368,524304,524568,459024,524400,524336,590017,459016,524384,524320,589985,524288,524416,524352,590049,459012,524376,524312,589969,459028,524408,524344,590033,459020,524392,524328,590001,524296,524424,524360,590065,459010,524372,524308,524572,459026,524404,524340,590025,459018,524388,524324,589993,524292,524420,524356,590057,459014,524380,524316,589977,459030,524412,524348,590041,459022,524396,524332,590009,524300,524428,524364,590073,459009,524370,524306,524570,459025,524402,524338,590021,459017,524386,524322,589989,524290,524418,524354,590053,459013,524378,524314,589973,459029,524410,524346,590037,459021,524394,524330,590005,524298,524426,524362,590069,459011,524374,524310,524574,459027,524406,524342,590029,459019,524390,524326,589997,524294,524422,524358,590061,459015,524382,524318,589981,459031,524414,524350,590045,459023,524398,524334,590013,524302,524430,524366,590077,459008,524369,524305,524569,459024,524401,524337,590019,459016,524385,524321,589987,524289,524417,524353,590051,459012,524377,524313,589971,459028,524409,524345,590035,459020,524393,524329,590003,524297,524425,524361,590067,459010,524373,524309,524573,459026,524405,524341,590027,459018,524389,524325,589995,524293,524421,524357,590059,459014,524381,524317,589979,459030,524413,524349,590043,459022,524397,524333,590011,524301,524429,524365,590075,459009,524371,524307,524571,459025,524403,524339,590023,459017,524387,524323,589991,524291,524419,524355,590055,459013,524379,524315,589975,459029,524411,524347,590039,459021,524395,524331,590007,524299,524427,524363,590071,459011,524375,524311,524575,459027,524407,524343,590031,459019,524391,524327,589999,524295,524423,524359,590063,459015,524383,524319,589983,459031,524415,524351,590047,459023,524399,524335,590015,524303,524431,524367,590079]),9],a=[new Int32Array([327680,327696,327688,327704,327684,327700,327692,327708,327682,327698,327690,327706,327686,327702,327694,0,327681,327697,327689,327705,327685,327701,327693,327709,327683,327699,327691,327707,327687,327703,327695,0]),5];function s(e,t){this.str=e,this.dict=e.dict;var r=e.getByte(),n=e.getByte();if(-1===r||-1===n)throw new i.FormatError(`Invalid header in flate stream: ${r}, ${n}`);if(8!==(15&r))throw new i.FormatError(`Unknown compression method in flate stream: ${r}, ${n}`);if(((r<<8)+n)%31!==0)throw new i.FormatError(`Bad FCHECK in flate stream: ${r}, ${n}`);if(32&n)throw new i.FormatError(`FDICT bit set in flate stream: ${r}, ${n}`);this.codeSize=0,this.codeBuf=0,h.call(this,t)}return s.prototype=Object.create(h.prototype),s.prototype.getBits=function(e){var t,r=this.str,n=this.codeSize,a=this.codeBuf;while(n<e){if(-1===(t=r.getByte()))throw new i.FormatError("Bad encoding in flate stream");a|=t<<n,n+=8}return t=a&(1<<e)-1,this.codeBuf=a>>e,this.codeSize=n-=e,t},s.prototype.getCode=function(e){var t,r=this.str,n=e[0],a=e[1],s=this.codeSize,o=this.codeBuf;while(s<a){if(-1===(t=r.getByte()))break;o|=t<<s,s+=8}var h=n[o&(1<<a)-1],l=h>>16,c=65535&h;if(l<1||s<l)throw new i.FormatError("Bad encoding in flate stream");return this.codeBuf=o>>l,this.codeSize=s-l,c},s.prototype.generateHuffmanTable=function(e){var t,r=e.length,i=0;for(t=0;t<r;++t)e[t]>i&&(i=e[t]);for(var n=1<<i,a=new Int32Array(n),s=1,o=0,h=2;s<=i;++s,o<<=1,h<<=1)for(var l=0;l<r;++l)if(e[l]===s){var c=0,u=o;for(t=0;t<s;++t)c=c<<1|1&u,u>>=1;for(t=c;t<n;t+=h)a[t]=s<<16|l;++o}return[a,i]},s.prototype.readBlock=function(){var s,o,h=this.str,l=this.getBits(3);if(1&l&&(this.eof=!0),l>>=1,0!==l){var c,u;if(1===l)c=n,u=a;else{if(2!==l)throw new i.FormatError("Unknown block type in flate stream");var f,d=this.getBits(5)+257,p=this.getBits(5)+1,m=this.getBits(4)+4,g=new Uint8Array(e.length);for(f=0;f<m;++f)g[e[f]]=this.getBits(3);var b=this.generateHuffmanTable(g);o=0,f=0;var v,y,w,M=d+p,_=new Uint8Array(M);while(f<M){var S=this.getCode(b);if(16===S)v=2,y=3,w=o;else if(17===S)v=3,y=3,w=o=0;else{if(18!==S){_[f++]=o=S;continue}v=7,y=11,w=o=0}var k=this.getBits(v)+y;while(k-- >0)_[f++]=w}c=this.generateHuffmanTable(_.subarray(0,d)),u=this.generateHuffmanTable(_.subarray(d,M))}s=this.buffer;var A=s?s.length:0,x=this.bufferLength;while(1){var C=this.getCode(c);if(C<256)x+1>=A&&(s=this.ensureBuffer(x+1),A=s.length),s[x++]=C;else{if(256===C)return void(this.bufferLength=x);C-=257,C=t[C];var E=C>>16;E>0&&(E=this.getBits(E)),o=(65535&C)+E,C=this.getCode(u),C=r[C],E=C>>16,E>0&&(E=this.getBits(E));var T=(65535&C)+E;x+o>=A&&(s=this.ensureBuffer(x+o),A=s.length);for(var R=0;R<o;++R,++x)s[x]=s[x-T]}}}else{var I;if(-1===(I=h.getByte()))throw new i.FormatError("Bad block header in flate stream");var P=I;if(-1===(I=h.getByte()))throw new i.FormatError("Bad block header in flate stream");if(P|=I<<8,-1===(I=h.getByte()))throw new i.FormatError("Bad block header in flate stream");var O=I;if(-1===(I=h.getByte()))throw new i.FormatError("Bad block header in flate stream");if(O|=I<<8,O!==(65535&~P)&&(0!==P||0!==O))throw new i.FormatError("Bad uncompressed block length in flate stream");this.codeBuf=0,this.codeSize=0;const e=this.bufferLength,t=e+P;if(s=this.ensureBuffer(t),this.bufferLength=t,0===P)-1===h.peekByte()&&(this.eof=!0);else{const t=h.getBytes(P);s.set(t,e),t.length<P&&(this.eof=!0)}}},s}();t.FlateStream=c;var u=function(){function e(e,t,r){if(!(0,n.isDict)(r))return e;var a=this.predictor=r.get("Predictor")||1;if(a<=1)return e;if(2!==a&&(a<10||a>15))throw new i.FormatError("Unsupported predictor: "+a);this.readBlock=2===a?this.readBlockTiff:this.readBlockPng,this.str=e,this.dict=e.dict;var s=this.colors=r.get("Colors")||1,o=this.bits=r.get("BitsPerComponent")||8,l=this.columns=r.get("Columns")||1;return this.pixBytes=s*o+7>>3,this.rowBytes=l*s*o+7>>3,h.call(this,t),this}return e.prototype=Object.create(h.prototype),e.prototype.readBlockTiff=function(){var e=this.rowBytes,t=this.bufferLength,r=this.ensureBuffer(t+e),i=this.bits,n=this.colors,a=this.str.getBytes(e);if(this.eof=!a.length,!this.eof){var s,o=0,h=0,l=0,c=0,u=t;if(1===i&&1===n)for(s=0;s<e;++s){var f=a[s]^o;f^=f>>1,f^=f>>2,f^=f>>4,o=(1&f)<<7,r[u++]=f}else if(8===i){for(s=0;s<n;++s)r[u++]=a[s];for(;s<e;++s)r[u]=r[u-n]+a[s],u++}else if(16===i){var d=2*n;for(s=0;s<d;++s)r[u++]=a[s];for(;s<e;s+=2){var p=((255&a[s])<<8)+(255&a[s+1])+((255&r[u-d])<<8)+(255&r[u-d+1]);r[u++]=p>>8&255,r[u++]=255&p}}else{var m=new Uint8Array(n+1),g=(1<<i)-1,b=0,v=t,y=this.columns;for(s=0;s<y;++s)for(var w=0;w<n;++w)l<i&&(o=o<<8|255&a[b++],l+=8),m[w]=m[w]+(o>>l-i)&g,l-=i,h=h<<i|m[w],c+=i,c>=8&&(r[v++]=h>>c-8&255,c-=8);c>0&&(r[v++]=(h<<8-c)+(o&(1<<8-c)-1))}this.bufferLength+=e}},e.prototype.readBlockPng=function(){var e=this.rowBytes,t=this.pixBytes,r=this.str.getByte(),n=this.str.getBytes(e);if(this.eof=!n.length,!this.eof){var a=this.bufferLength,s=this.ensureBuffer(a+e),o=s.subarray(a-e,a);0===o.length&&(o=new Uint8Array(e));var h,l,c,u=a;switch(r){case 0:for(h=0;h<e;++h)s[u++]=n[h];break;case 1:for(h=0;h<t;++h)s[u++]=n[h];for(;h<e;++h)s[u]=s[u-t]+n[h]&255,u++;break;case 2:for(h=0;h<e;++h)s[u++]=o[h]+n[h]&255;break;case 3:for(h=0;h<t;++h)s[u++]=(o[h]>>1)+n[h];for(;h<e;++h)s[u]=(o[h]+s[u-t]>>1)+n[h]&255,u++;break;case 4:for(h=0;h<t;++h)l=o[h],c=n[h],s[u++]=l+c;for(;h<e;++h){l=o[h];var f=o[h-t],d=s[u-t],p=d+l-f,m=p-d;m<0&&(m=-m);var g=p-l;g<0&&(g=-g);var b=p-f;b<0&&(b=-b),c=n[h],s[u++]=m<=g&&m<=b?d+c:g<=b?l+c:f+c}break;default:throw new i.FormatError("Unsupported predictor: "+r)}this.bufferLength+=e}},e}();t.PredictorStream=u;var f=function(){function e(e,t,r){this.str=e,this.dict=e.dict,this.decrypt=r,this.nextChunk=null,this.initialized=!1,h.call(this,t)}var t=512;return e.prototype=Object.create(h.prototype),e.prototype.readBlock=function(){var e;if(this.initialized?e=this.nextChunk:(e=this.str.getBytes(t),this.initialized=!0),e&&0!==e.length){this.nextChunk=this.str.getBytes(t);var r=this.nextChunk&&this.nextChunk.length>0,i=this.decrypt;e=i(e,!r);var n,a=this.bufferLength,s=e.length,o=this.ensureBuffer(a+s);for(n=0;n<s;n++)o[a++]=e[n];this.bufferLength=a}else this.eof=!0},e}();t.DecryptStream=f;var d=function(){function e(e,t){this.str=e,this.dict=e.dict,this.input=new Uint8Array(5),t&&(t*=.8),h.call(this,t)}return e.prototype=Object.create(h.prototype),e.prototype.readBlock=function(){var e=126,t=122,r=-1,i=this.str,n=i.getByte();while((0,a.isWhiteSpace)(n))n=i.getByte();if(n!==r&&n!==e){var s,o,h=this.bufferLength;if(n===t){for(s=this.ensureBuffer(h+4),o=0;o<4;++o)s[h+o]=0;this.bufferLength+=4}else{var l=this.input;for(l[0]=n,o=1;o<5;++o){n=i.getByte();while((0,a.isWhiteSpace)(n))n=i.getByte();if(l[o]=n,n===r||n===e)break}if(s=this.ensureBuffer(h+o-1),this.bufferLength+=o-1,o<5){for(;o<5;++o)l[o]=117;this.eof=!0}var c=0;for(o=0;o<5;++o)c=85*c+(l[o]-33);for(o=3;o>=0;--o)s[h+o]=255&c,c>>=8}}else this.eof=!0},e}();t.Ascii85Stream=d;var p=function(){function e(e,t){this.str=e,this.dict=e.dict,this.firstDigit=-1,t&&(t*=.5),h.call(this,t)}return e.prototype=Object.create(h.prototype),e.prototype.readBlock=function(){var e=8e3,t=this.str.getBytes(e);if(t.length){for(var r=t.length+1>>1,i=this.ensureBuffer(this.bufferLength+r),n=this.bufferLength,a=this.firstDigit,s=0,o=t.length;s<o;s++){var h,l=t[s];if(l>=48&&l<=57)h=15&l;else{if(!(l>=65&&l<=70||l>=97&&l<=102)){if(62===l){this.eof=!0;break}continue}h=9+(15&l)}a<0?a=h:(i[n++]=a<<4|h,a=-1)}a>=0&&this.eof&&(i[n++]=a<<4,a=-1),this.firstDigit=a,this.bufferLength=n}else this.eof=!0},e}();t.AsciiHexStream=p;var m=function(){function e(e,t){this.str=e,this.dict=e.dict,h.call(this,t)}return e.prototype=Object.create(h.prototype),e.prototype.readBlock=function(){var e=this.str.getBytes(2);if(!e||e.length<2||128===e[0])this.eof=!0;else{var t,r=this.bufferLength,i=e[0];if(i<128){if(t=this.ensureBuffer(r+i+1),t[r++]=e[1],i>0){var n=this.str.getBytes(i);t.set(n,r),r+=i}}else{i=257-i;var a=e[1];t=this.ensureBuffer(r+i+1);for(var s=0;s<i;s++)t[r++]=a}this.bufferLength=r}},e}();t.RunLengthStream=m;var g=function(){function e(e,t,r){this.str=e,this.dict=e.dict,this.cachedData=0,this.bitsCached=0;for(var i=4096,n={earlyChange:r,codeLength:9,nextCode:258,dictionaryValues:new Uint8Array(i),dictionaryLengths:new Uint16Array(i),dictionaryPrevCodes:new Uint16Array(i),currentSequence:new Uint8Array(i),currentSequenceLength:0},a=0;a<256;++a)n.dictionaryValues[a]=a,n.dictionaryLengths[a]=1;this.lzwState=n,h.call(this,t)}return e.prototype=Object.create(h.prototype),e.prototype.readBits=function(e){var t=this.bitsCached,r=this.cachedData;while(t<e){var i=this.str.getByte();if(-1===i)return this.eof=!0,null;r=r<<8|i,t+=8}return this.bitsCached=t-=e,this.cachedData=r,this.lastCode=null,r>>>t&(1<<e)-1},e.prototype.readBlock=function(){var e,t,r,i=512,n=2*i,a=i,s=this.lzwState;if(s){var o=s.earlyChange,h=s.nextCode,l=s.dictionaryValues,c=s.dictionaryLengths,u=s.dictionaryPrevCodes,f=s.codeLength,d=s.prevCode,p=s.currentSequence,m=s.currentSequenceLength,g=0,b=this.bufferLength,v=this.ensureBuffer(this.bufferLength+n);for(e=0;e<i;e++){var y=this.readBits(f),w=m>0;if(y<256)p[0]=y,m=1;else{if(!(y>=258)){if(256===y){f=9,h=258,m=0;continue}this.eof=!0,delete this.lzwState;break}if(y<h)for(m=c[y],t=m-1,r=y;t>=0;t--)p[t]=l[r],r=u[r];else p[m++]=p[0]}if(w&&(u[h]=d,c[h]=c[d]+1,l[h]=p[0],h++,f=h+o&h+o-1?f:0|Math.min(Math.log(h+o)/.6931471805599453+1,12)),d=y,g+=m,n<g){do{n+=a}while(n<g);v=this.ensureBuffer(this.bufferLength+n)}for(t=0;t<m;t++)v[b++]=p[t]}s.nextCode=h,s.codeLength=f,s.prevCode=d,s.currentSequenceLength=m,this.bufferLength=b}},e}();t.LZWStream=g;var b=function(){function e(){s.call(this,new Uint8Array(0))}return e.prototype=s.prototype,e}();t.NullStream=b},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CCITTFaxStream=void 0;var i=r(5),n=r(14),a=r(12),s=function(){function e(e,t,r){this.str=e,this.dict=e.dict,(0,i.isDict)(r)||(r=i.Dict.empty);const s={next(){return e.getByte()}};this.ccittFaxDecoder=new n.CCITTFaxDecoder(s,{K:r.get("K"),EndOfLine:r.get("EndOfLine"),EncodedByteAlign:r.get("EncodedByteAlign"),Columns:r.get("Columns"),Rows:r.get("Rows"),EndOfBlock:r.get("EndOfBlock"),BlackIs1:r.get("BlackIs1")}),a.DecodeStream.call(this,t)}return e.prototype=Object.create(a.DecodeStream.prototype),e.prototype.readBlock=function(){while(!this.eof){const e=this.ccittFaxDecoder.readNextChar();if(-1===e)return void(this.eof=!0);this.ensureBuffer(this.bufferLength+1),this.buffer[this.bufferLength++]=e}},e}();t.CCITTFaxStream=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CCITTFaxDecoder=void 0;var i=r(2);const n=function(){const e=-2,t=-1,r=0,n=1,a=2,s=3,o=4,h=5,l=6,c=7,u=8,f=[[-1,-1],[-1,-1],[7,u],[7,c],[6,l],[6,l],[6,h],[6,h],[4,r],[4,r],[4,r],[4,r],[4,r],[4,r],[4,r],[4,r],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,n],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,o],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[3,s],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a],[1,a]],d=[[-1,-1],[12,e],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[12,1984],[12,2048],[12,2112],[12,2176],[12,2240],[12,2304],[11,1856],[11,1856],[11,1920],[11,1920],[12,2368],[12,2432],[12,2496],[12,2560]],p=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[8,29],[8,29],[8,30],[8,30],[8,45],[8,45],[8,46],[8,46],[7,22],[7,22],[7,22],[7,22],[7,23],[7,23],[7,23],[7,23],[8,47],[8,47],[8,48],[8,48],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[7,20],[7,20],[7,20],[7,20],[8,33],[8,33],[8,34],[8,34],[8,35],[8,35],[8,36],[8,36],[8,37],[8,37],[8,38],[8,38],[7,19],[7,19],[7,19],[7,19],[8,31],[8,31],[8,32],[8,32],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[8,53],[8,53],[8,54],[8,54],[7,26],[7,26],[7,26],[7,26],[8,39],[8,39],[8,40],[8,40],[8,41],[8,41],[8,42],[8,42],[8,43],[8,43],[8,44],[8,44],[7,21],[7,21],[7,21],[7,21],[7,28],[7,28],[7,28],[7,28],[8,61],[8,61],[8,62],[8,62],[8,63],[8,63],[8,0],[8,0],[8,320],[8,320],[8,384],[8,384],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[7,27],[7,27],[7,27],[7,27],[8,59],[8,59],[8,60],[8,60],[9,1472],[9,1536],[9,1600],[9,1728],[7,18],[7,18],[7,18],[7,18],[7,24],[7,24],[7,24],[7,24],[8,49],[8,49],[8,50],[8,50],[8,51],[8,51],[8,52],[8,52],[7,25],[7,25],[7,25],[7,25],[8,55],[8,55],[8,56],[8,56],[8,57],[8,57],[8,58],[8,58],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[8,448],[8,448],[8,512],[8,512],[9,704],[9,768],[8,640],[8,640],[8,576],[8,576],[9,832],[9,896],[9,960],[9,1024],[9,1088],[9,1152],[9,1216],[9,1280],[9,1344],[9,1408],[7,256],[7,256],[7,256],[7,256],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7]],m=[[-1,-1],[-1,-1],[12,e],[12,e],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[11,1792],[11,1792],[12,1984],[12,1984],[12,2048],[12,2048],[12,2112],[12,2112],[12,2176],[12,2176],[12,2240],[12,2240],[12,2304],[12,2304],[11,1856],[11,1856],[11,1856],[11,1856],[11,1920],[11,1920],[11,1920],[11,1920],[12,2368],[12,2368],[12,2432],[12,2432],[12,2496],[12,2496],[12,2560],[12,2560],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[12,52],[12,52],[13,640],[13,704],[13,768],[13,832],[12,55],[12,55],[12,56],[12,56],[13,1280],[13,1344],[13,1408],[13,1472],[12,59],[12,59],[12,60],[12,60],[13,1536],[13,1600],[11,24],[11,24],[11,24],[11,24],[11,25],[11,25],[11,25],[11,25],[13,1664],[13,1728],[12,320],[12,320],[12,384],[12,384],[12,448],[12,448],[13,512],[13,576],[12,53],[12,53],[12,54],[12,54],[13,896],[13,960],[13,1024],[13,1088],[13,1152],[13,1216],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64]],g=[[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[11,23],[11,23],[12,50],[12,51],[12,44],[12,45],[12,46],[12,47],[12,57],[12,58],[12,61],[12,256],[10,16],[10,16],[10,16],[10,16],[10,17],[10,17],[10,17],[10,17],[12,48],[12,49],[12,62],[12,63],[12,30],[12,31],[12,32],[12,33],[12,40],[12,41],[11,22],[11,22],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[12,128],[12,192],[12,26],[12,27],[12,28],[12,29],[11,19],[11,19],[11,20],[11,20],[12,34],[12,35],[12,36],[12,37],[12,38],[12,39],[11,21],[11,21],[12,42],[12,43],[10,0],[10,0],[10,0],[10,0],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12]],b=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[6,9],[6,8],[5,7],[5,7],[4,6],[4,6],[4,6],[4,6],[4,5],[4,5],[4,5],[4,5],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2]];function v(e,t={}){if(!e||"function"!==typeof e.next)throw new Error('CCITTFaxDecoder - invalid "source" parameter.');this.source=e,this.eof=!1,this.encoding=t.K||0,this.eoline=t.EndOfLine||!1,this.byteAlign=t.EncodedByteAlign||!1,this.columns=t.Columns||1728,this.rows=t.Rows||0;let r,i=t.EndOfBlock;null!==i&&void 0!==i||(i=!0),this.eoblock=i,this.black=t.BlackIs1||!1,this.codingLine=new Uint32Array(this.columns+1),this.refLine=new Uint32Array(this.columns+2),this.codingLine[0]=this.columns,this.codingPos=0,this.row=0,this.nextLine2D=this.encoding<0,this.inputBits=0,this.inputBuf=0,this.outputBits=0,this.rowsDone=!1;while(0===(r=this._lookBits(12)))this._eatBits(1);1===r&&this._eatBits(12),this.encoding>0&&(this.nextLine2D=!this._lookBits(1),this._eatBits(1))}return v.prototype={readNextChar(){if(this.eof)return-1;const e=this.refLine,f=this.codingLine,d=this.columns;let p,m,g,b,v;if(0===this.outputBits){if(this.rowsDone&&(this.eof=!0),this.eof)return-1;let g,v,y;if(this.err=!1,this.nextLine2D){for(b=0;f[b]<d;++b)e[b]=f[b];e[b++]=d,e[b]=d,f[0]=0,this.codingPos=0,p=0,m=0;while(f[this.codingPos]<d)switch(g=this._getTwoDimCode(),g){case r:this._addPixels(e[p+1],m),e[p+1]<d&&(p+=2);break;case n:if(g=v=0,m){do{g+=y=this._getBlackCode()}while(y>=64);do{v+=y=this._getWhiteCode()}while(y>=64)}else{do{g+=y=this._getWhiteCode()}while(y>=64);do{v+=y=this._getBlackCode()}while(y>=64)}this._addPixels(f[this.codingPos]+g,m),f[this.codingPos]<d&&this._addPixels(f[this.codingPos]+v,1^m);while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2;break;case c:if(this._addPixels(e[p]+3,m),m^=1,f[this.codingPos]<d){++p;while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2}break;case h:if(this._addPixels(e[p]+2,m),m^=1,f[this.codingPos]<d){++p;while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2}break;case s:if(this._addPixels(e[p]+1,m),m^=1,f[this.codingPos]<d){++p;while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2}break;case a:if(this._addPixels(e[p],m),m^=1,f[this.codingPos]<d){++p;while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2}break;case u:if(this._addPixelsNeg(e[p]-3,m),m^=1,f[this.codingPos]<d){p>0?--p:++p;while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2}break;case l:if(this._addPixelsNeg(e[p]-2,m),m^=1,f[this.codingPos]<d){p>0?--p:++p;while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2}break;case o:if(this._addPixelsNeg(e[p]-1,m),m^=1,f[this.codingPos]<d){p>0?--p:++p;while(e[p]<=f[this.codingPos]&&e[p]<d)p+=2}break;case t:this._addPixels(d,0),this.eof=!0;break;default:(0,i.info)("bad 2d code"),this._addPixels(d,0),this.err=!0}}else{f[0]=0,this.codingPos=0,m=0;while(f[this.codingPos]<d){if(g=0,m)do{g+=y=this._getBlackCode()}while(y>=64);else do{g+=y=this._getWhiteCode()}while(y>=64);this._addPixels(f[this.codingPos]+g,m),m^=1}}let w=!1;if(this.byteAlign&&(this.inputBits&=-8),this.eoblock||this.row!==this.rows-1){if(g=this._lookBits(12),this.eoline)while(g!==t&&1!==g)this._eatBits(1),g=this._lookBits(12);else while(0===g)this._eatBits(1),g=this._lookBits(12);1===g?(this._eatBits(12),w=!0):g===t&&(this.eof=!0)}else this.rowsDone=!0;if(!this.eof&&this.encoding>0&&!this.rowsDone&&(this.nextLine2D=!this._lookBits(1),this._eatBits(1)),this.eoblock&&w&&this.byteAlign){if(g=this._lookBits(12),1===g){if(this._eatBits(12),this.encoding>0&&(this._lookBits(1),this._eatBits(1)),this.encoding>=0)for(b=0;b<4;++b)g=this._lookBits(12),1!==g&&(0,i.info)("bad rtc code: "+g),this._eatBits(12),this.encoding>0&&(this._lookBits(1),this._eatBits(1));this.eof=!0}}else if(this.err&&this.eoline){while(1){if(g=this._lookBits(13),g===t)return this.eof=!0,-1;if(g>>1===1)break;this._eatBits(1)}this._eatBits(12),this.encoding>0&&(this._eatBits(1),this.nextLine2D=!(1&g))}f[0]>0?this.outputBits=f[this.codingPos=0]:this.outputBits=f[this.codingPos=1],this.row++}if(this.outputBits>=8)v=1&this.codingPos?0:255,this.outputBits-=8,0===this.outputBits&&f[this.codingPos]<d&&(this.codingPos++,this.outputBits=f[this.codingPos]-f[this.codingPos-1]);else{g=8,v=0;do{this.outputBits>g?(v<<=g,1&this.codingPos||(v|=255>>8-g),this.outputBits-=g,g=0):(v<<=this.outputBits,1&this.codingPos||(v|=255>>8-this.outputBits),g-=this.outputBits,this.outputBits=0,f[this.codingPos]<d?(this.codingPos++,this.outputBits=f[this.codingPos]-f[this.codingPos-1]):g>0&&(v<<=g,g=0))}while(g)}return this.black&&(v^=255),v},_addPixels(e,t){const r=this.codingLine;let n=this.codingPos;e>r[n]&&(e>this.columns&&((0,i.info)("row is wrong length"),this.err=!0,e=this.columns),1&n^t&&++n,r[n]=e),this.codingPos=n},_addPixelsNeg(e,t){const r=this.codingLine;let n=this.codingPos;if(e>r[n])e>this.columns&&((0,i.info)("row is wrong length"),this.err=!0,e=this.columns),1&n^t&&++n,r[n]=e;else if(e<r[n]){e<0&&((0,i.info)("invalid code"),this.err=!0,e=0);while(n>0&&e<r[n-1])--n;r[n]=e}this.codingPos=n},_findTableCode(e,r,i,n){const a=n||0;for(let s=e;s<=r;++s){let e=this._lookBits(s);if(e===t)return[!0,1,!1];if(s<r&&(e<<=r-s),!a||e>=a){const t=i[e-a];if(t[0]===s)return this._eatBits(s),[!0,t[1],!0]}}return[!1,0,!1]},_getTwoDimCode(){let e,r=0;if(this.eoblock){if(r=this._lookBits(7),e=f[r],e&&e[0]>0)return this._eatBits(e[0]),e[1]}else{const e=this._findTableCode(1,7,f);if(e[0]&&e[2])return e[1]}return(0,i.info)("Bad two dim code"),t},_getWhiteCode(){let e,r=0;if(this.eoblock){if(r=this._lookBits(12),r===t)return 1;if(e=r>>5===0?d[r]:p[r>>3],e[0]>0)return this._eatBits(e[0]),e[1]}else{let e=this._findTableCode(1,9,p);if(e[0])return e[1];if(e=this._findTableCode(11,12,d),e[0])return e[1]}return(0,i.info)("bad white code"),this._eatBits(1),1},_getBlackCode(){let e,r;if(this.eoblock){if(e=this._lookBits(13),e===t)return 1;if(r=e>>7===0?m[e]:e>>9===0&&e>>7!==0?g[(e>>1)-64]:b[e>>7],r[0]>0)return this._eatBits(r[0]),r[1]}else{let e=this._findTableCode(2,6,b);if(e[0])return e[1];if(e=this._findTableCode(7,12,g,64),e[0])return e[1];if(e=this._findTableCode(10,13,m),e[0])return e[1]}return(0,i.info)("bad black code"),this._eatBits(1),1},_lookBits(e){let r;while(this.inputBits<e){if(-1===(r=this.source.next()))return 0===this.inputBits?t:this.inputBuf<<e-this.inputBits&65535>>16-e;this.inputBuf=this.inputBuf<<8|r,this.inputBits+=8}return this.inputBuf>>this.inputBits-e&65535>>16-e},_eatBits(e){(this.inputBits-=e)<0&&(this.inputBits=0)}},v}();t.CCITTFaxDecoder=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Jbig2Stream=void 0;var i=r(5),n=r(12),a=r(16),s=r(2);const o=function(){function e(e,t,r,i){this.stream=e,this.maybeLength=t,this.dict=r,this.params=i,n.DecodeStream.call(this,t)}return e.prototype=Object.create(n.DecodeStream.prototype),Object.defineProperty(e.prototype,"bytes",{get(){return(0,s.shadow)(this,"bytes",this.stream.getBytes(this.maybeLength))},configurable:!0}),e.prototype.ensureBuffer=function(e){},e.prototype.readBlock=function(){if(this.eof)return;const e=new a.Jbig2Image,t=[];if((0,i.isDict)(this.params)){const e=this.params.get("JBIG2Globals");if((0,i.isStream)(e)){const r=e.getBytes();t.push({data:r,start:0,end:r.length})}}t.push({data:this.bytes,start:0,end:this.bytes.length});const r=e.parseChunks(t),n=r.length;for(let i=0;i<n;i++)r[i]^=255;this.buffer=r,this.bufferLength=n,this.eof=!0},e}();t.Jbig2Stream=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Jbig2Image=void 0;var i=r(2),n=r(8),a=r(17),s=r(14);class o extends i.BaseException{constructor(e){super("JBIG2 error: "+e)}}var h=function(){function e(){}function t(e,t,r){this.data=e,this.start=t,this.end=r}function r(e,t,r){var i=e.getContexts(t),n=1;function a(e){for(var t=0,a=0;a<e;a++){var s=r.readBit(i,n);n=n<256?n<<1|s:511&(n<<1|s)|256,t=t<<1|s}return t>>>0}var s=a(1),o=a(1)?a(1)?a(1)?a(1)?a(1)?a(32)+4436:a(12)+340:a(8)+84:a(6)+20:a(4)+4:a(2);return 0===s?o:o>0?-o:null}function h(e,t,r){for(var i=e.getContexts("IAID"),n=1,a=0;a<r;a++){var s=t.readBit(i,n);n=n<<1|s}return r<31?n&(1<<r)-1:2147483647&n}e.prototype={getContexts(e){return e in this?this[e]:this[e]=new Int8Array(65536)}},t.prototype={get decoder(){var e=new a.ArithmeticDecoder(this.data,this.start,this.end);return(0,i.shadow)(this,"decoder",e)},get contextCache(){var t=new e;return(0,i.shadow)(this,"contextCache",t)}};var l=["SymbolDictionary",null,null,null,"IntermediateTextRegion",null,"ImmediateTextRegion","ImmediateLosslessTextRegion",null,null,null,null,null,null,null,null,"PatternDictionary",null,null,null,"IntermediateHalftoneRegion",null,"ImmediateHalftoneRegion","ImmediateLosslessHalftoneRegion",null,null,null,null,null,null,null,null,null,null,null,null,"IntermediateGenericRegion",null,"ImmediateGenericRegion","ImmediateLosslessGenericRegion","IntermediateGenericRefinementRegion",null,"ImmediateGenericRefinementRegion","ImmediateLosslessGenericRefinementRegion",null,null,null,null,"PageInformation","EndOfPage","EndOfStripe","EndOfFile","Profiles","Tables",null,null,null,null,null,null,null,null,"Extension"],c=[[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:2,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-2,y:0},{x:-1,y:0}],[{x:-3,y:-1},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}]],u=[{coding:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:-1,y:1},{x:0,y:1},{x:1,y:1}]},{coding:[{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:0,y:1},{x:1,y:1}]}],f=[39717,1941,229,405],d=[32,8];function p(e,t,r){var i,n,a,s,o,h,l,c=r.decoder,u=r.contextCache.getContexts("GB"),f=[],d=31735;for(n=0;n<t;n++)for(o=f[n]=new Uint8Array(e),h=n<1?o:f[n-1],l=n<2?o:f[n-2],i=l[0]<<13|l[1]<<12|l[2]<<11|h[0]<<7|h[1]<<6|h[2]<<5|h[3]<<4,a=0;a<e;a++)o[a]=s=c.readBit(u,i),i=(i&d)<<1|(a+3<e?l[a+3]<<11:0)|(a+4<e?h[a+4]<<4:0)|s;return f}function m(e,t,r,i,n,a,s,o){if(e){const e=new D(o.data,o.start,o.end);return q(e,t,r,!1)}if(0===i&&!a&&!n&&4===s.length&&3===s[0].x&&-1===s[0].y&&-3===s[1].x&&-1===s[1].y&&2===s[2].x&&-2===s[2].y&&-2===s[3].x&&-2===s[3].y)return p(t,r,o);var h=!!a,l=c[i].concat(s);l.sort((function(e,t){return e.y-t.y||e.x-t.x}));var u,d,m=l.length,g=new Int8Array(m),b=new Int8Array(m),v=[],y=0,w=0,M=0,_=0;for(d=0;d<m;d++)g[d]=l[d].x,b[d]=l[d].y,w=Math.min(w,l[d].x),M=Math.max(M,l[d].x),_=Math.min(_,l[d].y),d<m-1&&l[d].y===l[d+1].y&&l[d].x===l[d+1].x-1?y|=1<<m-1-d:v.push(d);var S=v.length,k=new Int8Array(S),A=new Int8Array(S),x=new Uint16Array(S);for(u=0;u<S;u++)d=v[u],k[u]=l[d].x,A[u]=l[d].y,x[u]=1<<m-1-d;for(var C,E,T,R,I,P=-w,O=-_,F=t-M,L=f[i],N=new Uint8Array(t),B=[],U=o.decoder,j=o.contextCache.getContexts("GB"),z=0,H=0,G=0;G<r;G++){if(n){var W=U.readBit(j,L);if(z^=W,z){B.push(N);continue}}for(N=new Uint8Array(N),B.push(N),C=0;C<t;C++)if(h&&a[G][C])N[C]=0;else{if(C>=P&&C<F&&G>=O)for(H=H<<1&y,d=0;d<S;d++)E=G+A[d],T=C+k[d],R=B[E][T],R&&(R=x[d],H|=R);else for(H=0,I=m-1,d=0;d<m;d++,I--)T=C+g[d],T>=0&&T<t&&(E=G+b[d],E>=0&&(R=B[E][T],R&&(H|=R<<I)));var X=U.readBit(j,H);N[C]=X}}return B}function g(e,t,r,i,n,a,s,h,l){var c=u[r].coding;0===r&&(c=c.concat([h[0]]));var f,p=c.length,m=new Int32Array(p),g=new Int32Array(p);for(f=0;f<p;f++)m[f]=c[f].x,g[f]=c[f].y;var b=u[r].reference;0===r&&(b=b.concat([h[1]]));var v=b.length,y=new Int32Array(v),w=new Int32Array(v);for(f=0;f<v;f++)y[f]=b[f].x,w[f]=b[f].y;for(var M=i[0].length,_=i.length,S=d[r],k=[],A=l.decoder,x=l.contextCache.getContexts("GR"),C=0,E=0;E<t;E++){if(s){var T=A.readBit(x,S);if(C^=T,C)throw new o("prediction is not supported")}var R=new Uint8Array(e);k.push(R);for(var I=0;I<e;I++){var P,O,F=0;for(f=0;f<p;f++)P=E+g[f],O=I+m[f],P<0||O<0||O>=e?F<<=1:F=F<<1|k[P][O];for(f=0;f<v;f++)P=E+w[f]-a,O=I+y[f]-n,P<0||P>=_||O<0||O>=M?F<<=1:F=F<<1|i[P][O];var L=A.readBit(x,F);R[I]=L}}return k}function b(e,t,i,a,s,l,c,u,f,d,p,b){if(e&&t)throw new o("symbol refinement with Huffman is not supported");var y=[],w=0,M=(0,n.log2)(i.length+a),_=p.decoder,S=p.contextCache;let k,A;e&&(k=L(1),A=[],M=Math.max(M,1));while(y.length<a){var x=e?l.tableDeltaHeight.decode(b):r(S,"IADH",_);w+=x;let n=0,a=0;const s=e?A.length:0;while(1){var C,E=e?l.tableDeltaWidth.decode(b):r(S,"IADW",_);if(null===E)break;if(n+=E,a+=n,t){var T=r(S,"IAAI",_);if(T>1)C=v(e,t,n,w,0,T,1,i.concat(y),M,0,0,1,0,l,f,d,p,0,b);else{var R=h(S,_,M),I=r(S,"IARDX",_),P=r(S,"IARDY",_),O=R<i.length?i[R]:y[R-i.length];C=g(n,w,f,O,I,P,!1,d,p)}y.push(C)}else e?A.push(n):(C=m(!1,n,w,c,!1,null,u,p),y.push(C))}if(e&&!t){const e=l.tableBitmapSize.decode(b);let t;if(b.byteAlign(),0===e)t=j(b,a,w);else{const r=b.end,i=b.position+e;b.end=i,t=q(b,a,w,!1),b.end=r,b.position=i}const r=A.length;if(s===r-1)y.push(t);else{let e,i,n,a,o,h=0;for(e=s;e<r;e++){for(a=A[e],n=h+a,o=[],i=0;i<w;i++)o.push(t[i].subarray(h,n));y.push(o),h=n}}}}var F=[],D=[],N=!1,B=i.length+a;while(D.length<B){var U=e?k.decode(b):r(S,"IAEX",_);while(U--)D.push(N);N=!N}for(var z=0,H=i.length;z<H;z++)D[z]&&F.push(i[z]);for(var G=0;G<a;z++,G++)D[z]&&F.push(y[G]);return F}function v(e,t,i,n,a,s,l,c,u,f,d,p,m,b,v,y,w,M,_){if(e&&t)throw new o("refinement with Huffman is not supported");var S,k,A=[];for(S=0;S<n;S++){if(k=new Uint8Array(i),a)for(var x=0;x<i;x++)k[x]=a;A.push(k)}var C=w.decoder,E=w.contextCache,T=e?-b.tableDeltaT.decode(_):-r(E,"IADT",C),R=0;S=0;while(S<s){var I=e?b.tableDeltaT.decode(_):r(E,"IADT",C);T+=I;var P=e?b.tableFirstS.decode(_):r(E,"IAFS",C);R+=P;var O=R;do{let n=0;l>1&&(n=e?_.readBits(M):r(E,"IAIT",C));var F=l*T+n,L=e?b.symbolIDTable.decode(_):h(E,C,u),D=t&&(e?_.readBit():r(E,"IARI",C)),N=c[L],B=N[0].length,U=N.length;if(D){var j=r(E,"IARDW",C),q=r(E,"IARDH",C),z=r(E,"IARDX",C),H=r(E,"IARDY",C);B+=j,U+=q,N=g(B,U,v,N,(j>>1)+z,(q>>1)+H,!1,y,w)}var G,W,X,V=F-(1&p?0:U-1),K=O-(2&p?B-1:0);if(f){for(G=0;G<U;G++)if(k=A[K+G],k){X=N[G];var Y=Math.min(i-V,B);switch(m){case 0:for(W=0;W<Y;W++)k[V+W]|=X[W];break;case 2:for(W=0;W<Y;W++)k[V+W]^=X[W];break;default:throw new o(`operator ${m} is not supported`)}}O+=U-1}else{for(W=0;W<U;W++)if(k=A[V+W],k)switch(X=N[W],m){case 0:for(G=0;G<B;G++)k[K+G]|=X[G];break;case 2:for(G=0;G<B;G++)k[K+G]^=X[G];break;default:throw new o(`operator ${m} is not supported`)}O+=B-1}S++;var Z=e?b.tableDeltaS.decode(_):r(E,"IADS",C);if(null===Z)break;O+=Z+d}while(1)}return A}function y(e,t,r,i,n,a){const s=[];e||(s.push({x:-t,y:0}),0===n&&(s.push({x:-3,y:-1}),s.push({x:2,y:-2}),s.push({x:-2,y:-2})));const o=(i+1)*t,h=m(e,o,r,n,!1,null,s,a),l=[];for(let c=0;c<=i;c++){const e=[],i=t*c,n=i+t;for(let t=0;t<r;t++)e.push(h[t].subarray(i,n));l.push(e)}return l}function w(e,t,r,i,a,s,h,l,c,u,f,d,p,g,b){const v=null;if(h)throw new o("skip is not supported");if(0!==l)throw new o("operator "+l+" is not supported in halftone region");const y=[];let w,M,_;for(w=0;w<a;w++){if(_=new Uint8Array(i),s)for(M=0;M<i;M++)_[M]=s;y.push(_)}const S=t.length,k=t[0],A=k[0].length,x=k.length,C=(0,n.log2)(S),E=[];e||(E.push({x:r<=1?3:2,y:-1}),0===r&&(E.push({x:-3,y:-1}),E.push({x:2,y:-2}),E.push({x:-2,y:-2})));const T=[];let R,I,P,O,F,L,N,B,U,j,z;for(e&&(R=new D(b.data,b.start,b.end)),w=C-1;w>=0;w--)I=e?q(R,c,u,!0):m(!1,c,u,r,!1,v,E,b),T[w]=I;for(P=0;P<u;P++)for(O=0;O<c;O++){for(F=0,L=0,M=C-1;M>=0;M--)F=T[M][P][O]^F,L|=F<<M;if(N=t[L],B=f+P*g+O*p>>8,U=d+P*p-O*g>>8,B>=0&&B+A<=i&&U>=0&&U+x<=a)for(w=0;w<x;w++)for(z=y[U+w],j=N[w],M=0;M<A;M++)z[B+M]|=j[M];else{let e,t;for(w=0;w<x;w++)if(t=U+w,!(t<0||t>=a))for(z=y[t],j=N[w],M=0;M<A;M++)e=B+M,e>=0&&e<i&&(z[e]|=j[M])}}return y}function M(e,t){var r={};r.number=(0,n.readUint32)(e,t);var i=e[t+4],a=63&i;if(!l[a])throw new o("invalid segment type: "+a);r.type=a,r.typeName=l[a],r.deferredNonRetain=!!(128&i);var s=!!(64&i),h=e[t+5],c=h>>5&7,u=[31&h],f=t+6;if(7===h){c=536870911&(0,n.readUint32)(e,f-1),f+=3;var d=c+7>>3;u[0]=e[f++];while(--d>0)u.push(e[f++])}else if(5===h||6===h)throw new o("invalid referred-to flags");r.retainBits=u;let p=4;r.number<=256?p=1:r.number<=65536&&(p=2);var m,g,b=[];for(m=0;m<c;m++){let t;t=1===p?e[f]:2===p?(0,n.readUint16)(e,f):(0,n.readUint32)(e,f),b.push(t),f+=p}if(r.referredTo=b,s?(r.pageAssociation=(0,n.readUint32)(e,f),f+=4):r.pageAssociation=e[f++],r.length=(0,n.readUint32)(e,f),f+=4,4294967295===r.length){if(38!==a)throw new o("invalid unknown segment length");var v=S(e,f),y=e[f+k],w=!!(1&y),M=6,_=new Uint8Array(M);for(w||(_[0]=255,_[1]=172),_[2]=v.height>>>24&255,_[3]=v.height>>16&255,_[4]=v.height>>8&255,_[5]=255&v.height,m=f,g=e.length;m<g;m++){var A=0;while(A<M&&_[A]===e[m+A])A++;if(A===M){r.length=m+M;break}}if(4294967295===r.length)throw new o("segment end was not found")}return r.headerEnd=f,r}function _(e,t,r,i){var n=[],a=r;while(a<i){var s=M(t,a);a=s.headerEnd;var o={header:s,data:t};if(e.randomAccess||(o.start=a,a+=s.length,o.end=a),n.push(o),51===s.type)break}if(e.randomAccess)for(var h=0,l=n.length;h<l;h++)n[h].start=a,a+=n[h].header.length,n[h].end=a;return n}function S(e,t){return{width:(0,n.readUint32)(e,t),height:(0,n.readUint32)(e,t+4),x:(0,n.readUint32)(e,t+8),y:(0,n.readUint32)(e,t+12),combinationOperator:7&e[t+16]}}var k=17;function A(e,t){var r,i,a,s,h=e.header,l=e.data,c=e.start,u=e.end;switch(h.type){case 0:var f={},d=(0,n.readUint16)(l,c);if(f.huffman=!!(1&d),f.refinement=!!(2&d),f.huffmanDHSelector=d>>2&3,f.huffmanDWSelector=d>>4&3,f.bitmapSizeSelector=d>>6&1,f.aggregationInstancesSelector=d>>7&1,f.bitmapCodingContextUsed=!!(256&d),f.bitmapCodingContextRetained=!!(512&d),f.template=d>>10&3,f.refinementTemplate=d>>12&1,c+=2,!f.huffman){for(s=0===f.template?4:1,i=[],a=0;a<s;a++)i.push({x:(0,n.readInt8)(l,c),y:(0,n.readInt8)(l,c+1)}),c+=2;f.at=i}if(f.refinement&&!f.refinementTemplate){for(i=[],a=0;a<2;a++)i.push({x:(0,n.readInt8)(l,c),y:(0,n.readInt8)(l,c+1)}),c+=2;f.refinementAt=i}f.numberOfExportedSymbols=(0,n.readUint32)(l,c),c+=4,f.numberOfNewSymbols=(0,n.readUint32)(l,c),c+=4,r=[f,h.number,h.referredTo,l,c,u];break;case 6:case 7:var p={};p.info=S(l,c),c+=k;var m=(0,n.readUint16)(l,c);if(c+=2,p.huffman=!!(1&m),p.refinement=!!(2&m),p.logStripSize=m>>2&3,p.stripSize=1<<p.logStripSize,p.referenceCorner=m>>4&3,p.transposed=!!(64&m),p.combinationOperator=m>>7&3,p.defaultPixelValue=m>>9&1,p.dsOffset=m<<17>>27,p.refinementTemplate=m>>15&1,p.huffman){var g=(0,n.readUint16)(l,c);c+=2,p.huffmanFS=3&g,p.huffmanDS=g>>2&3,p.huffmanDT=g>>4&3,p.huffmanRefinementDW=g>>6&3,p.huffmanRefinementDH=g>>8&3,p.huffmanRefinementDX=g>>10&3,p.huffmanRefinementDY=g>>12&3,p.huffmanRefinementSizeSelector=!!(16384&g)}if(p.refinement&&!p.refinementTemplate){for(i=[],a=0;a<2;a++)i.push({x:(0,n.readInt8)(l,c),y:(0,n.readInt8)(l,c+1)}),c+=2;p.refinementAt=i}p.numberOfSymbolInstances=(0,n.readUint32)(l,c),c+=4,r=[p,h.referredTo,l,c,u];break;case 16:const e={},t=l[c++];e.mmr=!!(1&t),e.template=t>>1&3,e.patternWidth=l[c++],e.patternHeight=l[c++],e.maxPatternIndex=(0,n.readUint32)(l,c),c+=4,r=[e,h.number,l,c,u];break;case 22:case 23:const M={};M.info=S(l,c),c+=k;const _=l[c++];M.mmr=!!(1&_),M.template=_>>1&3,M.enableSkip=!!(8&_),M.combinationOperator=_>>4&7,M.defaultPixelValue=_>>7&1,M.gridWidth=(0,n.readUint32)(l,c),c+=4,M.gridHeight=(0,n.readUint32)(l,c),c+=4,M.gridOffsetX=4294967295&(0,n.readUint32)(l,c),c+=4,M.gridOffsetY=4294967295&(0,n.readUint32)(l,c),c+=4,M.gridVectorX=(0,n.readUint16)(l,c),c+=2,M.gridVectorY=(0,n.readUint16)(l,c),c+=2,r=[M,h.referredTo,l,c,u];break;case 38:case 39:var b={};b.info=S(l,c),c+=k;var v=l[c++];if(b.mmr=!!(1&v),b.template=v>>1&3,b.prediction=!!(8&v),!b.mmr){for(s=0===b.template?4:1,i=[],a=0;a<s;a++)i.push({x:(0,n.readInt8)(l,c),y:(0,n.readInt8)(l,c+1)}),c+=2;b.at=i}r=[b,l,c,u];break;case 48:var y={width:(0,n.readUint32)(l,c),height:(0,n.readUint32)(l,c+4),resolutionX:(0,n.readUint32)(l,c+8),resolutionY:(0,n.readUint32)(l,c+12)};4294967295===y.height&&delete y.height;var w=l[c+16];(0,n.readUint16)(l,c+17),y.lossless=!!(1&w),y.refinement=!!(2&w),y.defaultPixelValue=w>>2&1,y.combinationOperator=w>>3&3,y.requiresBuffer=!!(32&w),y.combinationOperatorOverride=!!(64&w),r=[y];break;case 49:break;case 50:break;case 51:break;case 53:r=[h.number,l,c,u];break;case 62:break;default:throw new o(`segment type ${h.typeName}(${h.type}) is not implemented`)}var M="on"+h.typeName;M in t&&t[M].apply(t,r)}function x(e,t){for(var r=0,i=e.length;r<i;r++)A(e[r],t)}function C(e){for(var t=new T,r=0,i=e.length;r<i;r++){var n=e[r],a=_({},n.data,n.start,n.end);x(a,t)}return t.buffer}function E(e){const t=e.length;let r=0;if(151!==e[r]||74!==e[r+1]||66!==e[r+2]||50!==e[r+3]||13!==e[r+4]||10!==e[r+5]||26!==e[r+6]||10!==e[r+7])throw new o("parseJbig2 - invalid header.");const i=Object.create(null);r+=8;const a=e[r++];i.randomAccess=!(1&a),2&a||(i.numberOfPages=(0,n.readUint32)(e,r),r+=4);const s=_(i,e,r,t),h=new T;x(s,h);const{width:l,height:c}=h.currentPageInfo,u=h.buffer,f=new Uint8ClampedArray(l*c);let d=0,p=0;for(let n=0;n<c;n++){let e,t=0;for(let r=0;r<l;r++)t||(t=128,e=u[p++]),f[d++]=e&t?0:255,t>>=1}return{imgData:f,width:l,height:c}}function T(){}function R(e){2===e.length?(this.isOOB=!0,this.rangeLow=0,this.prefixLength=e[0],this.rangeLength=0,this.prefixCode=e[1],this.isLowerRange=!1):(this.isOOB=!1,this.rangeLow=e[0],this.prefixLength=e[1],this.rangeLength=e[2],this.prefixCode=e[3],this.isLowerRange="lower"===e[4])}function I(e){this.children=[],e?(this.isLeaf=!0,this.rangeLength=e.rangeLength,this.rangeLow=e.rangeLow,this.isLowerRange=e.isLowerRange,this.isOOB=e.isOOB):this.isLeaf=!1}function P(e,t){t||this.assignPrefixCodes(e),this.rootNode=new I(null);for(let r=0,i=e.length;r<i;r++){const t=e[r];t.prefixLength>0&&this.rootNode.buildTree(t,t.prefixLength-1)}}function O(e,t,r){const i=e[t],a=4294967295&(0,n.readUint32)(e,t+1),s=4294967295&(0,n.readUint32)(e,t+5),o=new D(e,t+9,r),h=1+(i>>1&7),l=1+(i>>4&7),c=[];let u,f,d=a;do{u=o.readBits(h),f=o.readBits(l),c.push(new R([d,u,f,0])),d+=1<<f}while(d<s);return u=o.readBits(h),c.push(new R([a-1,u,32,0,"lower"])),u=o.readBits(h),c.push(new R([s,u,32,0])),1&i&&(u=o.readBits(h),c.push(new R([u,0]))),new P(c,!1)}T.prototype={onPageInformation:function(e){this.currentPageInfo=e;var t=e.width+7>>3,r=new Uint8ClampedArray(t*e.height);if(e.defaultPixelValue)for(var i=0,n=r.length;i<n;i++)r[i]=255;this.buffer=r},drawBitmap:function(e,t){var r,i,n,a,s=this.currentPageInfo,h=e.width,l=e.height,c=s.width+7>>3,u=s.combinationOperatorOverride?e.combinationOperator:s.combinationOperator,f=this.buffer,d=128>>(7&e.x),p=e.y*c+(e.x>>3);switch(u){case 0:for(r=0;r<l;r++){for(n=d,a=p,i=0;i<h;i++)t[r][i]&&(f[a]|=n),n>>=1,n||(n=128,a++);p+=c}break;case 2:for(r=0;r<l;r++){for(n=d,a=p,i=0;i<h;i++)t[r][i]&&(f[a]^=n),n>>=1,n||(n=128,a++);p+=c}break;default:throw new o(`operator ${u} is not supported`)}},onImmediateGenericRegion:function(e,r,i,n){var a=e.info,s=new t(r,i,n),o=m(e.mmr,a.width,a.height,e.template,e.prediction,null,e.at,s);this.drawBitmap(a,o)},onImmediateLosslessGenericRegion:function(){this.onImmediateGenericRegion.apply(this,arguments)},onSymbolDictionary:function(e,r,i,n,a,s){let o,h;e.huffman&&(o=U(e,i,this.customTables),h=new D(n,a,s));var l=this.symbols;l||(this.symbols=l={});for(var c=[],u=0,f=i.length;u<f;u++){const e=l[i[u]];e&&(c=c.concat(e))}var d=new t(n,a,s);l[r]=b(e.huffman,e.refinement,c,e.numberOfNewSymbols,e.numberOfExportedSymbols,o,e.template,e.at,e.refinementTemplate,e.refinementAt,d,h)},onImmediateTextRegion:function(e,r,i,a,s){var o=e.info;let h,l;for(var c=this.symbols,u=[],f=0,d=r.length;f<d;f++){const e=c[r[f]];e&&(u=u.concat(e))}var p=(0,n.log2)(u.length);e.huffman&&(l=new D(i,a,s),h=B(e,r,this.customTables,u.length,l));var m=new t(i,a,s),g=v(e.huffman,e.refinement,o.width,o.height,e.defaultPixelValue,e.numberOfSymbolInstances,e.stripSize,u,p,e.transposed,e.dsOffset,e.referenceCorner,e.combinationOperator,h,e.refinementTemplate,e.refinementAt,m,e.logStripSize,l);this.drawBitmap(o,g)},onImmediateLosslessTextRegion:function(){this.onImmediateTextRegion.apply(this,arguments)},onPatternDictionary(e,r,i,n,a){let s=this.patterns;s||(this.patterns=s={});const o=new t(i,n,a);s[r]=y(e.mmr,e.patternWidth,e.patternHeight,e.maxPatternIndex,e.template,o)},onImmediateHalftoneRegion(e,r,i,n,a){const s=this.patterns[r[0]],o=e.info,h=new t(i,n,a),l=w(e.mmr,s,e.template,o.width,o.height,e.defaultPixelValue,e.enableSkip,e.combinationOperator,e.gridWidth,e.gridHeight,e.gridOffsetX,e.gridOffsetY,e.gridVectorX,e.gridVectorY,h);this.drawBitmap(o,l)},onImmediateLosslessHalftoneRegion(){this.onImmediateHalftoneRegion.apply(this,arguments)},onTables(e,t,r,i){let n=this.customTables;n||(this.customTables=n={}),n[e]=O(t,r,i)}},I.prototype={buildTree(e,t){const r=e.prefixCode>>t&1;if(t<=0)this.children[r]=new I(e);else{let i=this.children[r];i||(this.children[r]=i=new I(null)),i.buildTree(e,t-1)}},decodeNode(e){if(this.isLeaf){if(this.isOOB)return null;const t=e.readBits(this.rangeLength);return this.rangeLow+(this.isLowerRange?-t:t)}const t=this.children[e.readBit()];if(!t)throw new o("invalid Huffman data");return t.decodeNode(e)}},P.prototype={decode(e){return this.rootNode.decodeNode(e)},assignPrefixCodes(e){const t=e.length;let r=0;for(let l=0;l<t;l++)r=Math.max(r,e[l].prefixLength);const i=new Uint32Array(r+1);for(let l=0;l<t;l++)i[e[l].prefixLength]++;let n,a,s,o=1,h=0;i[0]=0;while(o<=r){h=h+i[o-1]<<1,n=h,a=0;while(a<t)s=e[a],s.prefixLength===o&&(s.prefixCode=n,n++),a++;o++}}};const F={};function L(e){let t,r=F[e];if(r)return r;switch(e){case 1:t=[[0,1,4,0],[16,2,8,2],[272,3,16,6],[65808,3,32,7]];break;case 2:t=[[0,1,0,0],[1,2,0,2],[2,3,0,6],[3,4,3,14],[11,5,6,30],[75,6,32,62],[6,63]];break;case 3:t=[[-256,8,8,254],[0,1,0,0],[1,2,0,2],[2,3,0,6],[3,4,3,14],[11,5,6,30],[-257,8,32,255,"lower"],[75,7,32,126],[6,62]];break;case 4:t=[[1,1,0,0],[2,2,0,2],[3,3,0,6],[4,4,3,14],[12,5,6,30],[76,5,32,31]];break;case 5:t=[[-255,7,8,126],[1,1,0,0],[2,2,0,2],[3,3,0,6],[4,4,3,14],[12,5,6,30],[-256,7,32,127,"lower"],[76,6,32,62]];break;case 6:t=[[-2048,5,10,28],[-1024,4,9,8],[-512,4,8,9],[-256,4,7,10],[-128,5,6,29],[-64,5,5,30],[-32,4,5,11],[0,2,7,0],[128,3,7,2],[256,3,8,3],[512,4,9,12],[1024,4,10,13],[-2049,6,32,62,"lower"],[2048,6,32,63]];break;case 7:t=[[-1024,4,9,8],[-512,3,8,0],[-256,4,7,9],[-128,5,6,26],[-64,5,5,27],[-32,4,5,10],[0,4,5,11],[32,5,5,28],[64,5,6,29],[128,4,7,12],[256,3,8,1],[512,3,9,2],[1024,3,10,3],[-1025,5,32,30,"lower"],[2048,5,32,31]];break;case 8:t=[[-15,8,3,252],[-7,9,1,508],[-5,8,1,253],[-3,9,0,509],[-2,7,0,124],[-1,4,0,10],[0,2,1,0],[2,5,0,26],[3,6,0,58],[4,3,4,4],[20,6,1,59],[22,4,4,11],[38,4,5,12],[70,5,6,27],[134,5,7,28],[262,6,7,60],[390,7,8,125],[646,6,10,61],[-16,9,32,510,"lower"],[1670,9,32,511],[2,1]];break;case 9:t=[[-31,8,4,252],[-15,9,2,508],[-11,8,2,253],[-7,9,1,509],[-5,7,1,124],[-3,4,1,10],[-1,3,1,2],[1,3,1,3],[3,5,1,26],[5,6,1,58],[7,3,5,4],[39,6,2,59],[43,4,5,11],[75,4,6,12],[139,5,7,27],[267,5,8,28],[523,6,8,60],[779,7,9,125],[1291,6,11,61],[-32,9,32,510,"lower"],[3339,9,32,511],[2,0]];break;case 10:t=[[-21,7,4,122],[-5,8,0,252],[-4,7,0,123],[-3,5,0,24],[-2,2,2,0],[2,5,0,25],[3,6,0,54],[4,7,0,124],[5,8,0,253],[6,2,6,1],[70,5,5,26],[102,6,5,55],[134,6,6,56],[198,6,7,57],[326,6,8,58],[582,6,9,59],[1094,6,10,60],[2118,7,11,125],[-22,8,32,254,"lower"],[4166,8,32,255],[2,2]];break;case 11:t=[[1,1,0,0],[2,2,1,2],[4,4,0,12],[5,4,1,13],[7,5,1,28],[9,5,2,29],[13,6,2,60],[17,7,2,122],[21,7,3,123],[29,7,4,124],[45,7,5,125],[77,7,6,126],[141,7,32,127]];break;case 12:t=[[1,1,0,0],[2,2,0,2],[3,3,1,6],[5,5,0,28],[6,5,1,29],[8,6,1,60],[10,7,0,122],[11,7,1,123],[13,7,2,124],[17,7,3,125],[25,7,4,126],[41,8,5,254],[73,8,32,255]];break;case 13:t=[[1,1,0,0],[2,3,0,4],[3,4,0,12],[4,5,0,28],[5,4,1,13],[7,3,3,5],[15,6,1,58],[17,6,2,59],[21,6,3,60],[29,6,4,61],[45,6,5,62],[77,7,6,126],[141,7,32,127]];break;case 14:t=[[-2,3,0,4],[-1,3,0,5],[0,1,0,0],[1,3,0,6],[2,3,0,7]];break;case 15:t=[[-24,7,4,124],[-8,6,2,60],[-4,5,1,28],[-2,4,0,12],[-1,3,0,4],[0,1,0,0],[1,3,0,5],[2,4,0,13],[3,5,1,29],[5,6,2,61],[9,7,4,125],[-25,7,32,126,"lower"],[25,7,32,127]];break;default:throw new o(`standard table B.${e} does not exist`)}for(let i=0,n=t.length;i<n;i++)t[i]=new R(t[i]);return r=new P(t,!0),F[e]=r,r}function D(e,t,r){this.data=e,this.start=t,this.end=r,this.position=t,this.shift=-1,this.currentByte=0}function N(e,t,r){let i=0;for(let n=0,a=t.length;n<a;n++){const a=r[t[n]];if(a){if(e===i)return a;i++}}throw new o("can't find custom Huffman table")}function B(e,t,r,i,n){const a=[];for(let o=0;o<=34;o++){const e=n.readBits(4);a.push(new R([o,e,0,0]))}const s=new P(a,!1);a.length=0;for(let d=0;d<i;){const e=s.decode(n);if(e>=32){let t,r,i;switch(e){case 32:if(0===d)throw new o("no previous value in symbol ID table");r=n.readBits(2)+3,t=a[d-1].prefixLength;break;case 33:r=n.readBits(3)+3,t=0;break;case 34:r=n.readBits(7)+11,t=0;break;default:throw new o("invalid code length in symbol ID table")}for(i=0;i<r;i++)a.push(new R([d,t,0,0])),d++}else a.push(new R([d,e,0,0])),d++}n.byteAlign();const h=new P(a,!1);let l,c,u,f=0;switch(e.huffmanFS){case 0:case 1:l=L(e.huffmanFS+6);break;case 3:l=N(f,t,r),f++;break;default:throw new o("invalid Huffman FS selector")}switch(e.huffmanDS){case 0:case 1:case 2:c=L(e.huffmanDS+8);break;case 3:c=N(f,t,r),f++;break;default:throw new o("invalid Huffman DS selector")}switch(e.huffmanDT){case 0:case 1:case 2:u=L(e.huffmanDT+11);break;case 3:u=N(f,t,r),f++;break;default:throw new o("invalid Huffman DT selector")}if(e.refinement)throw new o("refinement with Huffman is not supported");return{symbolIDTable:h,tableFirstS:l,tableDeltaS:c,tableDeltaT:u}}function U(e,t,r){let i,n,a,s,h=0;switch(e.huffmanDHSelector){case 0:case 1:i=L(e.huffmanDHSelector+4);break;case 3:i=N(h,t,r),h++;break;default:throw new o("invalid Huffman DH selector")}switch(e.huffmanDWSelector){case 0:case 1:n=L(e.huffmanDWSelector+2);break;case 3:n=N(h,t,r),h++;break;default:throw new o("invalid Huffman DW selector")}return e.bitmapSizeSelector?(a=N(h,t,r),h++):a=L(1),s=e.aggregationInstancesSelector?N(h,t,r):L(1),{tableDeltaHeight:i,tableDeltaWidth:n,tableBitmapSize:a,tableAggregateInstances:s}}function j(e,t,r){const i=[];for(let n=0;n<r;n++){const r=new Uint8Array(t);i.push(r);for(let i=0;i<t;i++)r[i]=e.readBit();e.byteAlign()}return i}function q(e,t,r,i){const n={K:-1,Columns:t,Rows:r,BlackIs1:!0,EndOfBlock:i},a=new s.CCITTFaxDecoder(e,n),o=[];let h,l=!1;for(let s=0;s<r;s++){const e=new Uint8Array(t);o.push(e);let r=-1;for(let i=0;i<t;i++)r<0&&(h=a.readNextChar(),-1===h&&(h=0,l=!0),r=7),e[i]=h>>r&1,r--}if(i&&!l){const e=5;for(let t=0;t<e;t++)if(-1===a.readNextChar())break}return o}function z(){}return D.prototype={readBit(){if(this.shift<0){if(this.position>=this.end)throw new o("end of data while reading bit");this.currentByte=this.data[this.position++],this.shift=7}const e=this.currentByte>>this.shift&1;return this.shift--,e},readBits(e){let t,r=0;for(t=e-1;t>=0;t--)r|=this.readBit()<<t;return r},byteAlign(){this.shift=-1},next(){return this.position>=this.end?-1:this.data[this.position++]}},z.prototype={parseChunks(e){return C(e)},parse(e){const{imgData:t,width:r,height:i}=E(e);return this.width=r,this.height=i,t}},z}();t.Jbig2Image=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ArithmeticDecoder=void 0;const i=[{qe:22017,nmps:1,nlps:1,switchFlag:1},{qe:13313,nmps:2,nlps:6,switchFlag:0},{qe:6145,nmps:3,nlps:9,switchFlag:0},{qe:2753,nmps:4,nlps:12,switchFlag:0},{qe:1313,nmps:5,nlps:29,switchFlag:0},{qe:545,nmps:38,nlps:33,switchFlag:0},{qe:22017,nmps:7,nlps:6,switchFlag:1},{qe:21505,nmps:8,nlps:14,switchFlag:0},{qe:18433,nmps:9,nlps:14,switchFlag:0},{qe:14337,nmps:10,nlps:14,switchFlag:0},{qe:12289,nmps:11,nlps:17,switchFlag:0},{qe:9217,nmps:12,nlps:18,switchFlag:0},{qe:7169,nmps:13,nlps:20,switchFlag:0},{qe:5633,nmps:29,nlps:21,switchFlag:0},{qe:22017,nmps:15,nlps:14,switchFlag:1},{qe:21505,nmps:16,nlps:14,switchFlag:0},{qe:20737,nmps:17,nlps:15,switchFlag:0},{qe:18433,nmps:18,nlps:16,switchFlag:0},{qe:14337,nmps:19,nlps:17,switchFlag:0},{qe:13313,nmps:20,nlps:18,switchFlag:0},{qe:12289,nmps:21,nlps:19,switchFlag:0},{qe:10241,nmps:22,nlps:19,switchFlag:0},{qe:9217,nmps:23,nlps:20,switchFlag:0},{qe:8705,nmps:24,nlps:21,switchFlag:0},{qe:7169,nmps:25,nlps:22,switchFlag:0},{qe:6145,nmps:26,nlps:23,switchFlag:0},{qe:5633,nmps:27,nlps:24,switchFlag:0},{qe:5121,nmps:28,nlps:25,switchFlag:0},{qe:4609,nmps:29,nlps:26,switchFlag:0},{qe:4353,nmps:30,nlps:27,switchFlag:0},{qe:2753,nmps:31,nlps:28,switchFlag:0},{qe:2497,nmps:32,nlps:29,switchFlag:0},{qe:2209,nmps:33,nlps:30,switchFlag:0},{qe:1313,nmps:34,nlps:31,switchFlag:0},{qe:1089,nmps:35,nlps:32,switchFlag:0},{qe:673,nmps:36,nlps:33,switchFlag:0},{qe:545,nmps:37,nlps:34,switchFlag:0},{qe:321,nmps:38,nlps:35,switchFlag:0},{qe:273,nmps:39,nlps:36,switchFlag:0},{qe:133,nmps:40,nlps:37,switchFlag:0},{qe:73,nmps:41,nlps:38,switchFlag:0},{qe:37,nmps:42,nlps:39,switchFlag:0},{qe:21,nmps:43,nlps:40,switchFlag:0},{qe:9,nmps:44,nlps:41,switchFlag:0},{qe:5,nmps:45,nlps:42,switchFlag:0},{qe:1,nmps:45,nlps:43,switchFlag:0},{qe:22017,nmps:46,nlps:46,switchFlag:0}];class n{constructor(e,t,r){this.data=e,this.bp=t,this.dataEnd=r,this.chigh=e[t],this.clow=0,this.byteIn(),this.chigh=this.chigh<<7&65535|this.clow>>9&127,this.clow=this.clow<<7&65535,this.ct-=7,this.a=32768}byteIn(){const e=this.data;let t=this.bp;255===e[t]?e[t+1]>143?(this.clow+=65280,this.ct=8):(t++,this.clow+=e[t]<<9,this.ct=7,this.bp=t):(t++,this.clow+=t<this.dataEnd?e[t]<<8:65280,this.ct=8,this.bp=t),this.clow>65535&&(this.chigh+=this.clow>>16,this.clow&=65535)}readBit(e,t){let r=e[t]>>1,n=1&e[t];const a=i[r],s=a.qe;let o,h=this.a-s;if(this.chigh<s)h<s?(h=s,o=n,r=a.nmps):(h=s,o=1^n,1===a.switchFlag&&(n=o),r=a.nlps);else{if(this.chigh-=s,0!==(32768&h))return this.a=h,n;h<s?(o=1^n,1===a.switchFlag&&(n=o),r=a.nlps):(o=n,r=a.nmps)}do{0===this.ct&&this.byteIn(),h<<=1,this.chigh=this.chigh<<1&65535|this.clow>>15&1,this.clow=this.clow<<1&65535,this.ct--}while(0===(32768&h));return this.a=h,e[t]=r<<1|n,o}}t.ArithmeticDecoder=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.JpegStream=void 0;var i=r(12),n=r(5),a=r(19),s=r(2);const o=function(){function e(e,t,r,n){let a;while(-1!==(a=e.getByte()))if(255===a){e.skip(-1);break}this.stream=e,this.maybeLength=t,this.dict=r,this.params=n,i.DecodeStream.call(this,t)}return e.prototype=Object.create(i.DecodeStream.prototype),Object.defineProperty(e.prototype,"bytes",{get:function(){return(0,s.shadow)(this,"bytes",this.stream.getBytes(this.maybeLength))},configurable:!0}),e.prototype.ensureBuffer=function(e){},e.prototype.readBlock=function(){if(this.eof)return;const e={decodeTransform:void 0,colorTransform:void 0},t=this.dict.getArray("Decode","D");if(this.forceRGB&&Array.isArray(t)){const r=this.dict.get("BitsPerComponent")||8,i=t.length,n=new Int32Array(i);let a=!1;const s=(1<<r)-1;for(let e=0;e<i;e+=2)n[e]=256*(t[e+1]-t[e])|0,n[e+1]=t[e]*s|0,256===n[e]&&0===n[e+1]||(a=!0);a&&(e.decodeTransform=n)}if((0,n.isDict)(this.params)){const t=this.params.get("ColorTransform");Number.isInteger(t)&&(e.colorTransform=t)}const r=new a.JpegImage(e);r.parse(this.bytes);const i=r.getData({width:this.drawWidth,height:this.drawHeight,forceRGB:this.forceRGB,isSourcePDF:!0});this.buffer=i,this.bufferLength=i.length,this.eof=!0},e}();t.JpegStream=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.JpegImage=void 0;var i=r(2),n=r(8);class a extends i.BaseException{constructor(e){super("JPEG error: "+e)}}class s extends i.BaseException{constructor(e,t){super(e),this.scanLines=t}}class o extends i.BaseException{}var h=function(){var e=new Uint8Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),t=4017,r=799,h=3406,l=2276,c=1567,u=3784,f=5793,d=2896;function p({decodeTransform:e=null,colorTransform:t=-1}={}){this._decodeTransform=e,this._colorTransform=t}function m(e,t){var r,i,n=0,a=[],s=16;while(s>0&&!e[s-1])s--;a.push({children:[],index:0});var o,h=a[0];for(r=0;r<s;r++){for(i=0;i<e[r];i++){h=a.pop(),h.children[h.index]=t[n];while(h.index>0)h=a.pop();h.index++,a.push(h);while(a.length<=r)a.push(o={children:[],index:0}),h.children[h.index]=o.children,h=o;n++}r+1<s&&(a.push(o={children:[],index:0}),h.children[h.index]=o.children,h=o)}return a[0].children}function g(e,t,r){return 64*((e.blocksPerLine+1)*t+r)}function b(t,r,h,l,c,u,f,d,p,m=!1){var b=h.mcusPerLine,v=h.progressive;const y=r;let M=0,_=0;function S(){if(_>0)return _--,M>>_&1;if(M=t[r++],255===M){var e=t[r++];if(e){if(220===e&&m){r+=2;const e=(0,n.readUint16)(t,r);if(r+=2,e>0&&e!==h.scanLines)throw new s("Found DNL marker (0xFFDC) while parsing scan data",e)}else if(217===e){if(m){const e=L*(8===h.precision?8:0);if(e>0&&Math.round(h.scanLines/e)>=10)throw new s("Found EOI marker (0xFFD9) while parsing scan data, possibly caused by incorrect `scanLines` parameter",e)}throw new o("Found EOI marker (0xFFD9) while parsing scan data")}throw new a("unexpected marker "+(M<<8|e).toString(16))}}return _=7,M>>>7}function k(e){var t=e;while(1){switch(t=t[S()],typeof t){case"number":return t;case"object":continue}throw new a("invalid huffman sequence")}}function A(e){var t=0;while(e>0)t=t<<1|S(),e--;return t}function x(e){if(1===e)return 1===S()?1:-1;var t=A(e);return t>=1<<e-1?t:t+(-1<<e)+1}function C(t,r){var i=k(t.huffmanTableDC),n=0===i?0:x(i);t.blockData[r]=t.pred+=n;var a=1;while(a<64){var s=k(t.huffmanTableAC),o=15&s,h=s>>4;if(0!==o){a+=h;var l=e[a];t.blockData[r+l]=x(o),a++}else{if(h<15)break;a+=16}}}function E(e,t){var r=k(e.huffmanTableDC),i=0===r?0:x(r)<<p;e.blockData[t]=e.pred+=i}function T(e,t){e.blockData[t]|=S()<<p}var R=0;function I(t,r){if(R>0)R--;else{var i=u,n=f;while(i<=n){var a=k(t.huffmanTableAC),s=15&a,o=a>>4;if(0!==s){i+=o;var h=e[i];t.blockData[r+h]=x(s)*(1<<p),i++}else{if(o<15){R=A(o)+(1<<o)-1;break}i+=16}}}}var P,O=0;function F(t,r){var i,n,s=u,o=f,h=0;while(s<=o){const o=r+e[s],l=t.blockData[o]<0?-1:1;switch(O){case 0:if(n=k(t.huffmanTableAC),i=15&n,h=n>>4,0===i)h<15?(R=A(h)+(1<<h),O=4):(h=16,O=1);else{if(1!==i)throw new a("invalid ACn encoding");P=x(i),O=h?2:3}continue;case 1:case 2:t.blockData[o]?t.blockData[o]+=l*(S()<<p):(h--,0===h&&(O=2===O?3:0));break;case 3:t.blockData[o]?t.blockData[o]+=l*(S()<<p):(t.blockData[o]=P<<p,O=0);break;case 4:t.blockData[o]&&(t.blockData[o]+=l*(S()<<p));break}s++}4===O&&(R--,0===R&&(O=0))}let L=0;function D(e,t,r,i,n){var a=r/b|0,s=r%b;L=a*e.v+i;var o=s*e.h+n;const h=g(e,L,o);t(e,h)}function N(e,t,r){L=r/e.blocksPerLine|0;var i=r%e.blocksPerLine;const n=g(e,L,i);t(e,n)}var B,U,j,q,z,H,G=l.length;H=v?0===u?0===d?E:T:0===d?I:F:C;var W,X,V,K,Y=0;X=1===G?l[0].blocksPerLine*l[0].blocksPerColumn:b*h.mcusPerColumn;while(Y<=X){var Z=c?Math.min(X-Y,c):X;if(Z>0){for(U=0;U<G;U++)l[U].pred=0;if(R=0,1===G)for(B=l[0],z=0;z<Z;z++)N(B,H,Y),Y++;else for(z=0;z<Z;z++){for(U=0;U<G;U++)for(B=l[U],V=B.h,K=B.v,j=0;j<K;j++)for(q=0;q<V;q++)D(B,H,Y,j,q);Y++}}if(_=0,W=w(t,r),!W)break;if(W.invalid){const e=Z>0?"unexpected":"excessive";(0,i.warn)(`decodeScan - ${e} MCU data, current marker is: ${W.invalid}`),r=W.offset}if(!(W.marker>=65488&&W.marker<=65495))break;r+=2}return r-y}function v(e,i,n){var s,o,p,m,g,b,v,y,w,M,_,S,k,A,x,C,E,T=e.quantizationTable,R=e.blockData;if(!T)throw new a("missing required Quantization Table.");for(var I=0;I<64;I+=8)w=R[i+I],M=R[i+I+1],_=R[i+I+2],S=R[i+I+3],k=R[i+I+4],A=R[i+I+5],x=R[i+I+6],C=R[i+I+7],w*=T[I],0!==(M|_|S|k|A|x|C)?(M*=T[I+1],_*=T[I+2],S*=T[I+3],k*=T[I+4],A*=T[I+5],x*=T[I+6],C*=T[I+7],s=f*w+128>>8,o=f*k+128>>8,p=_,m=x,g=d*(M-C)+128>>8,y=d*(M+C)+128>>8,b=S<<4,v=A<<4,s=s+o+1>>1,o=s-o,E=p*u+m*c+128>>8,p=p*c-m*u+128>>8,m=E,g=g+v+1>>1,v=g-v,y=y+b+1>>1,b=y-b,s=s+m+1>>1,m=s-m,o=o+p+1>>1,p=o-p,E=g*l+y*h+2048>>12,g=g*h-y*l+2048>>12,y=E,E=b*r+v*t+2048>>12,b=b*t-v*r+2048>>12,v=E,n[I]=s+y,n[I+7]=s-y,n[I+1]=o+v,n[I+6]=o-v,n[I+2]=p+b,n[I+5]=p-b,n[I+3]=m+g,n[I+4]=m-g):(E=f*w+512>>10,n[I]=E,n[I+1]=E,n[I+2]=E,n[I+3]=E,n[I+4]=E,n[I+5]=E,n[I+6]=E,n[I+7]=E);for(var P=0;P<8;++P)w=n[P],M=n[P+8],_=n[P+16],S=n[P+24],k=n[P+32],A=n[P+40],x=n[P+48],C=n[P+56],0!==(M|_|S|k|A|x|C)?(s=f*w+2048>>12,o=f*k+2048>>12,p=_,m=x,g=d*(M-C)+2048>>12,y=d*(M+C)+2048>>12,b=S,v=A,s=4112+(s+o+1>>1),o=s-o,E=p*u+m*c+2048>>12,p=p*c-m*u+2048>>12,m=E,g=g+v+1>>1,v=g-v,y=y+b+1>>1,b=y-b,s=s+m+1>>1,m=s-m,o=o+p+1>>1,p=o-p,E=g*l+y*h+2048>>12,g=g*h-y*l+2048>>12,y=E,E=b*r+v*t+2048>>12,b=b*t-v*r+2048>>12,v=E,w=s+y,C=s-y,M=o+v,x=o-v,_=p+b,A=p-b,S=m+g,k=m-g,w<16?w=0:w>=4080?w=255:w>>=4,M<16?M=0:M>=4080?M=255:M>>=4,_<16?_=0:_>=4080?_=255:_>>=4,S<16?S=0:S>=4080?S=255:S>>=4,k<16?k=0:k>=4080?k=255:k>>=4,A<16?A=0:A>=4080?A=255:A>>=4,x<16?x=0:x>=4080?x=255:x>>=4,C<16?C=0:C>=4080?C=255:C>>=4,R[i+P]=w,R[i+P+8]=M,R[i+P+16]=_,R[i+P+24]=S,R[i+P+32]=k,R[i+P+40]=A,R[i+P+48]=x,R[i+P+56]=C):(E=f*w+8192>>14,E=E<-2040?0:E>=2024?255:E+2056>>4,R[i+P]=E,R[i+P+8]=E,R[i+P+16]=E,R[i+P+24]=E,R[i+P+32]=E,R[i+P+40]=E,R[i+P+48]=E,R[i+P+56]=E)}function y(e,t){for(var r=t.blocksPerLine,i=t.blocksPerColumn,n=new Int16Array(64),a=0;a<i;a++)for(var s=0;s<r;s++){var o=g(t,a,s);v(t,o,n)}return t.blockData}function w(e,t,r=t){const i=e.length-1;var a=r<t?r:t;if(t>=i)return null;var s=(0,n.readUint16)(e,t);if(s>=65472&&s<=65534)return{invalid:null,marker:s,offset:t};var o=(0,n.readUint16)(e,a);while(!(o>=65472&&o<=65534)){if(++a>=i)return null;o=(0,n.readUint16)(e,a)}return{invalid:s.toString(16),marker:o,offset:a}}return p.prototype={parse(t,{dnlScanLines:r=null}={}){function h(){const e=(0,n.readUint16)(t,f);f+=2;let r=f+e-2;var a=w(t,r,f);a&&a.invalid&&((0,i.warn)("readDataBlock - incorrect length, current marker is: "+a.invalid),r=a.offset);var s=t.subarray(f,r);return f+=s.length,s}function l(e){for(var t=Math.ceil(e.samplesPerLine/8/e.maxH),r=Math.ceil(e.scanLines/8/e.maxV),i=0;i<e.components.length;i++){H=e.components[i];var n=Math.ceil(Math.ceil(e.samplesPerLine/8)*H.h/e.maxH),a=Math.ceil(Math.ceil(e.scanLines/8)*H.v/e.maxV),s=t*H.h,o=r*H.v,h=64*o*(s+1);H.blockData=new Int16Array(h),H.blocksPerLine=n,H.blocksPerColumn=a}e.mcusPerLine=t,e.mcusPerColumn=r}var c,u,f=0,d=null,p=null;let g=0;var v=[],M=[],_=[];let S=(0,n.readUint16)(t,f);if(f+=2,65496!==S)throw new a("SOI not found");S=(0,n.readUint16)(t,f),f+=2;e:while(65497!==S){var k,A,x;switch(S){case 65504:case 65505:case 65506:case 65507:case 65508:case 65509:case 65510:case 65511:case 65512:case 65513:case 65514:case 65515:case 65516:case 65517:case 65518:case 65519:case 65534:var C=h();65504===S&&74===C[0]&&70===C[1]&&73===C[2]&&70===C[3]&&0===C[4]&&(d={version:{major:C[5],minor:C[6]},densityUnits:C[7],xDensity:C[8]<<8|C[9],yDensity:C[10]<<8|C[11],thumbWidth:C[12],thumbHeight:C[13],thumbData:C.subarray(14,14+3*C[12]*C[13])}),65518===S&&65===C[0]&&100===C[1]&&111===C[2]&&98===C[3]&&101===C[4]&&(p={version:C[5]<<8|C[6],flags0:C[7]<<8|C[8],flags1:C[9]<<8|C[10],transformCode:C[11]});break;case 65499:const y=(0,n.readUint16)(t,f);f+=2;var E,T=y+f-2;while(f<T){var R=t[f++],I=new Uint16Array(64);if(R>>4===0)for(A=0;A<64;A++)E=e[A],I[E]=t[f++];else{if(R>>4!==1)throw new a("DQT - invalid table spec");for(A=0;A<64;A++)E=e[A],I[E]=(0,n.readUint16)(t,f),f+=2}v[15&R]=I}break;case 65472:case 65473:case 65474:if(c)throw new a("Only single frame JPEGs supported");f+=2,c={},c.extended=65473===S,c.progressive=65474===S,c.precision=t[f++];const J=(0,n.readUint16)(t,f);f+=2,c.scanLines=r||J,c.samplesPerLine=(0,n.readUint16)(t,f),f+=2,c.components=[],c.componentIds={};var P,O=t[f++],F=0,L=0;for(k=0;k<O;k++){P=t[f];var D=t[f+1]>>4,N=15&t[f+1];F<D&&(F=D),L<N&&(L=N);var B=t[f+2];x=c.components.push({h:D,v:N,quantizationId:B,quantizationTable:null}),c.componentIds[P]=x-1,f+=3}c.maxH=F,c.maxV=L,l(c);break;case 65476:const ee=(0,n.readUint16)(t,f);for(f+=2,k=2;k<ee;){var U=t[f++],j=new Uint8Array(16),q=0;for(A=0;A<16;A++,f++)q+=j[A]=t[f];var z=new Uint8Array(q);for(A=0;A<q;A++,f++)z[A]=t[f];k+=17+q,(U>>4===0?_:M)[15&U]=m(j,z)}break;case 65501:f+=2,u=(0,n.readUint16)(t,f),f+=2;break;case 65498:const te=1===++g&&!r;f+=2;var H,G=t[f++],W=[];for(k=0;k<G;k++){const e=t[f++];var X=c.componentIds[e];H=c.components[X],H.index=e;var V=t[f++];H.huffmanTableDC=_[V>>4],H.huffmanTableAC=M[15&V],W.push(H)}var K=t[f++],Y=t[f++],Z=t[f++];try{var $=b(t,f,c,W,u,K,Y,Z>>4,15&Z,te);f+=$}catch(Q){if(Q instanceof s)return(0,i.warn)(Q.message+" -- attempting to re-parse the JPEG image."),this.parse(t,{dnlScanLines:Q.scanLines});if(Q instanceof o){(0,i.warn)(Q.message+" -- ignoring the rest of the image data.");break e}throw Q}break;case 65500:f+=4;break;case 65535:255!==t[f]&&f--;break;default:const re=w(t,f-2,f-3);if(re&&re.invalid){(0,i.warn)("JpegImage.parse - unexpected data, current marker is: "+re.invalid),f=re.offset;break}if(f>=t.length-1){(0,i.warn)("JpegImage.parse - reached the end of the image data without finding an EOI marker (0xFFD9).");break e}throw new a("JpegImage.parse - unknown marker: "+S.toString(16))}S=(0,n.readUint16)(t,f),f+=2}for(this.width=c.samplesPerLine,this.height=c.scanLines,this.jfif=d,this.adobe=p,this.components=[],k=0;k<c.components.length;k++){H=c.components[k];var J=v[H.quantizationId];J&&(H.quantizationTable=J),this.components.push({index:H.index,output:y(c,H),scaleX:H.h/c.maxH,scaleY:H.v/c.maxV,blocksPerLine:H.blocksPerLine,blocksPerColumn:H.blocksPerColumn})}this.numComponents=this.components.length},_getLinearizedBlockData(e,t,r=!1){var i,n,a,s,o,h,l,c,u,f,d,p=this.width/e,m=this.height/t,g=0,b=this.components.length,v=e*t*b,y=new Uint8ClampedArray(v),w=new Uint32Array(e),M=4294967288;let _;for(l=0;l<b;l++){if(i=this.components[l],n=i.scaleX*p,a=i.scaleY*m,g=l,d=i.output,s=i.blocksPerLine+1<<3,n!==_){for(o=0;o<e;o++)c=0|o*n,w[o]=(c&M)<<3|7&c;_=n}for(h=0;h<t;h++)for(c=0|h*a,f=s*(c&M)|(7&c)<<3,o=0;o<e;o++)y[g]=d[f+w[o]],g+=b}let S=this._decodeTransform;if(r||4!==b||S||(S=new Int32Array([-256,255,-256,255,-256,255,-256,255])),S)for(l=0;l<v;)for(c=0,u=0;c<b;c++,l++,u+=2)y[l]=(y[l]*S[u]>>8)+S[u+1];return y},get _isColorConversionNeeded(){return this.adobe?!!this.adobe.transformCode:3===this.numComponents?0!==this._colorTransform&&(82!==this.components[0].index||71!==this.components[1].index||66!==this.components[2].index):1===this._colorTransform},_convertYccToRgb:function(e){for(var t,r,i,n=0,a=e.length;n<a;n+=3)t=e[n],r=e[n+1],i=e[n+2],e[n]=t-179.456+1.402*i,e[n+1]=t+135.459-.344*r-.714*i,e[n+2]=t-226.816+1.772*r;return e},_convertYcckToRgb:function(e){for(var t,r,i,n,a=0,s=0,o=e.length;s<o;s+=4)t=e[s],r=e[s+1],i=e[s+2],n=e[s+3],e[a++]=r*(-660635669420364e-19*r+.000437130475926232*i-54080610064599e-18*t+.00048449797120281*n-.154362151871126)-122.67195406894+i*(-.000957964378445773*i+.000817076911346625*t-.00477271405408747*n+1.53380253221734)+t*(.000961250184130688*t-.00266257332283933*n+.48357088451265)+n*(-.000336197177618394*n+.484791561490776),e[a++]=107.268039397724+r*(219927104525741e-19*r-.000640992018297945*i+.000659397001245577*t+.000426105652938837*n-.176491792462875)+i*(-.000778269941513683*i+.00130872261408275*t+.000770482631801132*n-.151051492775562)+t*(.00126935368114843*t-.00265090189010898*n+.25802910206845)+n*(-.000318913117588328*n-.213742400323665),e[a++]=r*(-.000570115196973677*r-263409051004589e-19*i+.0020741088115012*t-.00288260236853442*n+.814272968359295)-20.810012546947+i*(-153496057440975e-19*i-.000132689043961446*t+.000560833691242812*n-.195152027534049)+t*(.00174418132927582*t-.00255243321439347*n+.116935020465145)+n*(-.000343531996510555*n+.24165260232407);return e.subarray(0,a)},_convertYcckToCmyk:function(e){for(var t,r,i,n=0,a=e.length;n<a;n+=4)t=e[n],r=e[n+1],i=e[n+2],e[n]=434.456-t-1.402*i,e[n+1]=119.541-t+.344*r+.714*i,e[n+2]=481.816-t-1.772*r;return e},_convertCmykToRgb:function(e){for(var t,r,i,n,a=0,s=0,o=e.length;s<o;s+=4)t=e[s],r=e[s+1],i=e[s+2],n=e[s+3],e[a++]=255+t*(-6747147073602441e-20*t+.0008379262121013727*r+.0002894718188643294*i+.003264231057537806*n-1.1185611867203937)+r*(26374107616089405e-21*r-8626949158638572e-20*i-.0002748769067499491*n-.02155688794978967)+i*(-3878099212869363e-20*i-.0003267808279485286*n+.0686742238595345)-n*(.0003361971776183937*n+.7430659151342254),e[a++]=255+t*(.00013596372813588848*t+.000924537132573585*r+.00010567359618683593*i+.0004791864687436512*n-.3109689587515875)+r*(-.00023545346108370344*r+.0002702845253534714*i+.0020200308977307156*n-.7488052167015494)+i*(6834815998235662e-20*i+.00015168452363460973*n-.09751927774728933)-n*(.0003189131175883281*n+.7364883807733168),e[a++]=255+t*(13598650411385307e-21*t+.00012423956175490851*r+.0004751985097583589*i-36729317476630422e-22*n-.05562186980264034)+r*(.00016141380598724676*r+.0009692239130725186*i+.0007782692450036253*n-.44015232367526463)+i*(5.068882914068769e-7*i+.0017778369011375071*n-.7591454649749609)-n*(.0003435319965105553*n+.7063770186160144);return e.subarray(0,a)},getData({width:e,height:t,forceRGB:r=!1,isSourcePDF:i=!1}){if(this.numComponents>4)throw new a("Unsupported color mode");var n=this._getLinearizedBlockData(e,t,i);if(1===this.numComponents&&r){for(var s=n.length,o=new Uint8ClampedArray(3*s),h=0,l=0;l<s;l++){var c=n[l];o[h++]=c,o[h++]=c,o[h++]=c}return o}if(3===this.numComponents&&this._isColorConversionNeeded)return this._convertYccToRgb(n);if(4===this.numComponents){if(this._isColorConversionNeeded)return r?this._convertYcckToRgb(n):this._convertYcckToCmyk(n);if(r)return this._convertCmykToRgb(n)}return n}},p}();t.JpegImage=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.JpxStream=void 0;var i=r(12),n=r(21),a=r(2);const s=function(){function e(e,t,r,n){this.stream=e,this.maybeLength=t,this.dict=r,this.params=n,i.DecodeStream.call(this,t)}return e.prototype=Object.create(i.DecodeStream.prototype),Object.defineProperty(e.prototype,"bytes",{get:function(){return(0,a.shadow)(this,"bytes",this.stream.getBytes(this.maybeLength))},configurable:!0}),e.prototype.ensureBuffer=function(e){},e.prototype.readBlock=function(){if(this.eof)return;const e=new n.JpxImage;e.parse(this.bytes);const t=e.width,r=e.height,i=e.componentsCount,a=e.tiles.length;if(1===a)this.buffer=e.tiles[0].items;else{const n=new Uint8ClampedArray(t*r*i);for(let r=0;r<a;r++){const a=e.tiles[r],s=a.width,o=a.height,h=a.left,l=a.top,c=a.items;let u=0,f=(t*l+h)*i;const d=t*i,p=s*i;for(let e=0;e<o;e++){const e=c.subarray(u,u+p);n.set(e,f),u+=p,f+=d}}this.buffer=n}this.bufferLength=this.buffer.length,this.eof=!0},e}();t.JpxStream=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.JpxImage=void 0;var i=r(2),n=r(8),a=r(17);class s extends i.BaseException{constructor(e){super("JPX error: "+e)}}var o=function(){var e={LL:0,LH:1,HL:1,HH:2};function t(){this.failOnCorruptedImage=!1}function r(e,t){e.x0=Math.ceil(t.XOsiz/e.XRsiz),e.x1=Math.ceil(t.Xsiz/e.XRsiz),e.y0=Math.ceil(t.YOsiz/e.YRsiz),e.y1=Math.ceil(t.Ysiz/e.YRsiz),e.width=e.x1-e.x0,e.height=e.y1-e.y0}function o(e,t){for(var r,i=e.SIZ,n=[],a=Math.ceil((i.Xsiz-i.XTOsiz)/i.XTsiz),s=Math.ceil((i.Ysiz-i.YTOsiz)/i.YTsiz),o=0;o<s;o++)for(var h=0;h<a;h++)r={},r.tx0=Math.max(i.XTOsiz+h*i.XTsiz,i.XOsiz),r.ty0=Math.max(i.YTOsiz+o*i.YTsiz,i.YOsiz),r.tx1=Math.min(i.XTOsiz+(h+1)*i.XTsiz,i.Xsiz),r.ty1=Math.min(i.YTOsiz+(o+1)*i.YTsiz,i.Ysiz),r.width=r.tx1-r.tx0,r.height=r.ty1-r.ty0,r.components=[],n.push(r);e.tiles=n;for(var l=i.Csiz,c=0,u=l;c<u;c++)for(var f=t[c],d=0,p=n.length;d<p;d++){var m={};r=n[d],m.tcx0=Math.ceil(r.tx0/f.XRsiz),m.tcy0=Math.ceil(r.ty0/f.YRsiz),m.tcx1=Math.ceil(r.tx1/f.XRsiz),m.tcy1=Math.ceil(r.ty1/f.YRsiz),m.width=m.tcx1-m.tcx0,m.height=m.tcy1-m.tcy0,r.components[c]=m}}function h(e,t,r){var i=t.codingStyleParameters,n={};return i.entropyCoderWithCustomPrecincts?(n.PPx=i.precinctsSizes[r].PPx,n.PPy=i.precinctsSizes[r].PPy):(n.PPx=15,n.PPy=15),n.xcb_=r>0?Math.min(i.xcb,n.PPx-1):Math.min(i.xcb,n.PPx),n.ycb_=r>0?Math.min(i.ycb,n.PPy-1):Math.min(i.ycb,n.PPy),n}function l(e,t,r){var i=1<<r.PPx,n=1<<r.PPy,a=0===t.resLevel,s=1<<r.PPx+(a?0:-1),o=1<<r.PPy+(a?0:-1),h=t.trx1>t.trx0?Math.ceil(t.trx1/i)-Math.floor(t.trx0/i):0,l=t.try1>t.try0?Math.ceil(t.try1/n)-Math.floor(t.try0/n):0,c=h*l;t.precinctParameters={precinctWidth:i,precinctHeight:n,numprecinctswide:h,numprecinctshigh:l,numprecincts:c,precinctWidthInSubband:s,precinctHeightInSubband:o}}function c(e,t,r){var i,n,a,s,o=r.xcb_,h=r.ycb_,l=1<<o,c=1<<h,u=t.tbx0>>o,f=t.tby0>>h,d=t.tbx1+l-1>>o,p=t.tby1+c-1>>h,m=t.resolution.precinctParameters,g=[],b=[];for(n=f;n<p;n++)for(i=u;i<d;i++){a={cbx:i,cby:n,tbx0:l*i,tby0:c*n,tbx1:l*(i+1),tby1:c*(n+1)},a.tbx0_=Math.max(t.tbx0,a.tbx0),a.tby0_=Math.max(t.tby0,a.tby0),a.tbx1_=Math.min(t.tbx1,a.tbx1),a.tby1_=Math.min(t.tby1,a.tby1);var v=Math.floor((a.tbx0_-t.tbx0)/m.precinctWidthInSubband),y=Math.floor((a.tby0_-t.tby0)/m.precinctHeightInSubband);if(s=v+y*m.numprecinctswide,a.precinctNumber=s,a.subbandType=t.type,a.Lblock=3,!(a.tbx1_<=a.tbx0_||a.tby1_<=a.tby0_)){g.push(a);var w=b[s];void 0!==w?(i<w.cbxMin?w.cbxMin=i:i>w.cbxMax&&(w.cbxMax=i),n<w.cbyMin?w.cbxMin=n:n>w.cbyMax&&(w.cbyMax=n)):b[s]=w={cbxMin:i,cbyMin:n,cbxMax:i,cbyMax:n},a.precinct=w}}t.codeblockParameters={codeblockWidth:o,codeblockHeight:h,numcodeblockwide:d-u+1,numcodeblockhigh:p-f+1},t.codeblocks=g,t.precincts=b}function u(e,t,r){for(var i=[],n=e.subbands,a=0,s=n.length;a<s;a++)for(var o=n[a],h=o.codeblocks,l=0,c=h.length;l<c;l++){var u=h[l];u.precinctNumber===t&&i.push(u)}return{layerNumber:r,codeblocks:i}}function f(e){for(var t=e.SIZ,r=e.currentTile.index,i=e.tiles[r],n=i.codingStyleDefaultParameters.layersCount,a=t.Csiz,o=0,h=0;h<a;h++)o=Math.max(o,i.components[h].codingStyleParameters.decompositionLevelsCount);var l=0,c=0,f=0,d=0;this.nextPacket=function(){for(;l<n;l++){for(;c<=o;c++){for(;f<a;f++){var e=i.components[f];if(!(c>e.codingStyleParameters.decompositionLevelsCount)){for(var t=e.resolutions[c],r=t.precinctParameters.numprecincts;d<r;){var h=u(t,d,l);return d++,h}d=0}}f=0}c=0}throw new s("Out of packets")}}function d(e){for(var t=e.SIZ,r=e.currentTile.index,i=e.tiles[r],n=i.codingStyleDefaultParameters.layersCount,a=t.Csiz,o=0,h=0;h<a;h++)o=Math.max(o,i.components[h].codingStyleParameters.decompositionLevelsCount);var l=0,c=0,f=0,d=0;this.nextPacket=function(){for(;l<=o;l++){for(;c<n;c++){for(;f<a;f++){var e=i.components[f];if(!(l>e.codingStyleParameters.decompositionLevelsCount)){for(var t=e.resolutions[l],r=t.precinctParameters.numprecincts;d<r;){var h=u(t,d,c);return d++,h}d=0}}f=0}c=0}throw new s("Out of packets")}}function p(e){var t,r,i,n,a=e.SIZ,o=e.currentTile.index,h=e.tiles[o],l=h.codingStyleDefaultParameters.layersCount,c=a.Csiz,f=0;for(i=0;i<c;i++){const e=h.components[i];f=Math.max(f,e.codingStyleParameters.decompositionLevelsCount)}var d=new Int32Array(f+1);for(r=0;r<=f;++r){var p=0;for(i=0;i<c;++i){var m=h.components[i].resolutions;r<m.length&&(p=Math.max(p,m[r].precinctParameters.numprecincts))}d[r]=p}t=0,r=0,i=0,n=0,this.nextPacket=function(){for(;r<=f;r++){for(;n<d[r];n++){for(;i<c;i++){const s=h.components[i];if(!(r>s.codingStyleParameters.decompositionLevelsCount)){var e=s.resolutions[r],a=e.precinctParameters.numprecincts;if(!(n>=a)){for(;t<l;){var o=u(e,n,t);return t++,o}t=0}}}i=0}n=0}throw new s("Out of packets")}}function m(e){var t=e.SIZ,r=e.currentTile.index,i=e.tiles[r],n=i.codingStyleDefaultParameters.layersCount,a=t.Csiz,o=v(i),h=o,l=0,c=0,f=0,d=0,p=0;this.nextPacket=function(){for(;p<h.maxNumHigh;p++){for(;d<h.maxNumWide;d++){for(;f<a;f++){for(var e=i.components[f],t=e.codingStyleParameters.decompositionLevelsCount;c<=t;c++){var r=e.resolutions[c],m=o.components[f].resolutions[c],g=b(d,p,m,h,r);if(null!==g){for(;l<n;){var v=u(r,g,l);return l++,v}l=0}}c=0}f=0}d=0}throw new s("Out of packets")}}function g(e){var t=e.SIZ,r=e.currentTile.index,i=e.tiles[r],n=i.codingStyleDefaultParameters.layersCount,a=t.Csiz,o=v(i),h=0,l=0,c=0,f=0,d=0;this.nextPacket=function(){for(;c<a;++c){for(var e=i.components[c],t=o.components[c],r=e.codingStyleParameters.decompositionLevelsCount;d<t.maxNumHigh;d++){for(;f<t.maxNumWide;f++){for(;l<=r;l++){var p=e.resolutions[l],m=t.resolutions[l],g=b(f,d,m,t,p);if(null!==g){for(;h<n;){var v=u(p,g,h);return h++,v}h=0}}l=0}f=0}d=0}throw new s("Out of packets")}}function b(e,t,r,i,n){var a=e*i.minWidth,s=t*i.minHeight;if(a%r.width!==0||s%r.height!==0)return null;var o=s/r.width*n.precinctParameters.numprecinctswide;return a/r.height+o}function v(e){for(var t=e.components.length,r=Number.MAX_VALUE,i=Number.MAX_VALUE,n=0,a=0,s=new Array(t),o=0;o<t;o++){for(var h=e.components[o],l=h.codingStyleParameters.decompositionLevelsCount,c=new Array(l+1),u=Number.MAX_VALUE,f=Number.MAX_VALUE,d=0,p=0,m=1,g=l;g>=0;--g){var b=h.resolutions[g],v=m*b.precinctParameters.precinctWidth,y=m*b.precinctParameters.precinctHeight;u=Math.min(u,v),f=Math.min(f,y),d=Math.max(d,b.precinctParameters.numprecinctswide),p=Math.max(p,b.precinctParameters.numprecinctshigh),c[g]={width:v,height:y},m<<=1}r=Math.min(r,u),i=Math.min(i,f),n=Math.max(n,d),a=Math.max(a,p),s[o]={resolutions:c,minWidth:u,minHeight:f,maxNumWide:d,maxNumHigh:p}}return{components:s,minWidth:r,minHeight:i,maxNumWide:n,maxNumHigh:a}}function y(e){for(var t=e.SIZ,r=e.currentTile.index,i=e.tiles[r],n=t.Csiz,a=0;a<n;a++){for(var o=i.components[a],u=o.codingStyleParameters.decompositionLevelsCount,b=[],v=[],y=0;y<=u;y++){var w,M=h(e,o,y),_={},S=1<<u-y;if(_.trx0=Math.ceil(o.tcx0/S),_.try0=Math.ceil(o.tcy0/S),_.trx1=Math.ceil(o.tcx1/S),_.try1=Math.ceil(o.tcy1/S),_.resLevel=y,l(e,_,M),b.push(_),0===y)w={},w.type="LL",w.tbx0=Math.ceil(o.tcx0/S),w.tby0=Math.ceil(o.tcy0/S),w.tbx1=Math.ceil(o.tcx1/S),w.tby1=Math.ceil(o.tcy1/S),w.resolution=_,c(e,w,M),v.push(w),_.subbands=[w];else{var k=1<<u-y+1,A=[];w={},w.type="HL",w.tbx0=Math.ceil(o.tcx0/k-.5),w.tby0=Math.ceil(o.tcy0/k),w.tbx1=Math.ceil(o.tcx1/k-.5),w.tby1=Math.ceil(o.tcy1/k),w.resolution=_,c(e,w,M),v.push(w),A.push(w),w={},w.type="LH",w.tbx0=Math.ceil(o.tcx0/k),w.tby0=Math.ceil(o.tcy0/k-.5),w.tbx1=Math.ceil(o.tcx1/k),w.tby1=Math.ceil(o.tcy1/k-.5),w.resolution=_,c(e,w,M),v.push(w),A.push(w),w={},w.type="HH",w.tbx0=Math.ceil(o.tcx0/k-.5),w.tby0=Math.ceil(o.tcy0/k-.5),w.tbx1=Math.ceil(o.tcx1/k-.5),w.tby1=Math.ceil(o.tcy1/k-.5),w.resolution=_,c(e,w,M),v.push(w),A.push(w),_.subbands=A}}o.resolutions=b,o.subbands=v}var x=i.codingStyleDefaultParameters.progressionOrder;switch(x){case 0:i.packetsIterator=new f(e);break;case 1:i.packetsIterator=new d(e);break;case 2:i.packetsIterator=new p(e);break;case 3:i.packetsIterator=new m(e);break;case 4:i.packetsIterator=new g(e);break;default:throw new s("Unsupported progression order "+x)}}function w(e,t,r,i){var a,s=0,o=0,h=!1;function l(e){while(o<e){var i=t[r+s];s++,h?(a=a<<7|i,o+=7,h=!1):(a=a<<8|i,o+=8),255===i&&(h=!0)}return o-=e,a>>>o&(1<<e)-1}function c(e){return 255===t[r+s-1]&&t[r+s]===e?(u(1),!0):255===t[r+s]&&t[r+s+1]===e&&(u(2),!0)}function u(e){s+=e}function f(){o=0,h&&(s++,h=!1)}function d(){if(0===l(1))return 1;if(0===l(1))return 2;var e=l(2);return e<3?e+3:(e=l(5),e<31?e+6:(e=l(7),e+37))}var p=e.currentTile.index,m=e.tiles[p],g=e.COD.sopMarkerUsed,b=e.COD.ephMarkerUsed,v=m.packetsIterator;while(s<i){f(),g&&c(145)&&u(4);var y=v.nextPacket();if(l(1)){for(var w,M=y.layerNumber,_=[],S=0,k=y.codeblocks.length;S<k;S++){w=y.codeblocks[S];var C,E=w.precinct,T=w.cbx-E.cbxMin,R=w.cby-E.cbyMin,I=!1,P=!1;if(void 0!==w.included)I=!!l(1);else{var O,F;if(E=w.precinct,void 0!==E.inclusionTree)O=E.inclusionTree;else{var L=E.cbxMax-E.cbxMin+1,D=E.cbyMax-E.cbyMin+1;O=new x(L,D,M),F=new A(L,D),E.inclusionTree=O,E.zeroBitPlanesTree=F}if(O.reset(T,R,M))while(1){if(!l(1)){O.incrementValue(M);break}if(C=!O.nextLevel(),C){w.included=!0,I=P=!0;break}}}if(I){if(P){F=E.zeroBitPlanesTree,F.reset(T,R);while(1)if(l(1)){if(C=!F.nextLevel(),C)break}else F.incrementValue();w.zeroBitPlanes=F.value}var N=d();while(l(1))w.Lblock++;var B=(0,n.log2)(N),U=(N<1<<B?B-1:B)+w.Lblock,j=l(U);_.push({codeblock:w,codingpasses:N,dataLength:j})}}f(),b&&c(146);while(_.length>0){var q=_.shift();w=q.codeblock,void 0===w.data&&(w.data=[]),w.data.push({data:t,start:r+s,end:r+s+q.dataLength,codingpasses:q.codingpasses}),s+=q.dataLength}}}return s}function M(e,t,r,i,n,s,o,h){for(var l=i.tbx0,c=i.tby0,u=i.tbx1-i.tbx0,f=i.codeblocks,d="H"===i.type.charAt(0)?1:0,p="H"===i.type.charAt(1)?t:0,m=0,g=f.length;m<g;++m){var b=f[m],v=b.tbx1_-b.tbx0_,y=b.tby1_-b.tby0_;if(0!==v&&0!==y&&void 0!==b.data){var w,M;w=new C(v,y,b.subbandType,b.zeroBitPlanes,s),M=2;var _,S,k,A=b.data,x=0,E=0;for(_=0,S=A.length;_<S;_++)k=A[_],x+=k.end-k.start,E+=k.codingpasses;var T=new Uint8Array(x),R=0;for(_=0,S=A.length;_<S;_++){k=A[_];var I=k.data.subarray(k.start,k.end);T.set(I,R),R+=I.length}var P=new a.ArithmeticDecoder(T,0,x);for(w.setDecoder(P),_=0;_<E;_++){switch(M){case 0:w.runSignificancePropagationPass();break;case 1:w.runMagnitudeRefinementPass();break;case 2:w.runCleanupPass(),h&&w.checkSegmentationSymbol();break}M=(M+1)%3}var O,F,L,D=b.tbx0_-l+(b.tby0_-c)*u,N=w.coefficentsSign,B=w.coefficentsMagnitude,U=w.bitsDecoded,j=o?0:.5;R=0;var q="LL"!==i.type;for(_=0;_<y;_++){var z=D/u|0,H=2*z*(t-u)+d+p;for(O=0;O<v;O++){if(F=B[R],0!==F){F=(F+j)*n,0!==N[R]&&(F=-F),L=U[R];var G=q?H+(D<<1):D;e[G]=o&&L>=s?F:F*(1<<s-L)}D++,R++}D+=u-v}}}}function _(t,r,i){for(var n=r.components[i],a=n.codingStyleParameters,s=n.quantizationParameters,o=a.decompositionLevelsCount,h=s.SPqcds,l=s.scalarExpounded,c=s.guardBits,u=a.segmentationSymbolUsed,f=t.components[i].precision,d=a.reversibleTransformation,p=d?new R:new T,m=[],g=0,b=0;b<=o;b++){for(var v=n.resolutions[b],y=v.trx1-v.trx0,w=v.try1-v.try0,_=new Float32Array(y*w),S=0,k=v.subbands.length;S<k;S++){var A,x;l?(A=h[g].mu,x=h[g].epsilon,g++):(A=h[0].mu,x=h[0].epsilon+(b>0?1-b:0));var C=v.subbands[S],E=e[C.type],I=d?1:2**(f+E-x)*(1+A/2048),P=c+x-1;M(_,y,w,C,I,P,d,u)}m.push({width:y,height:w,items:_})}var O=p.calculate(m,n.tcx0,n.tcy0);return{left:n.tcx0,top:n.tcy0,width:O.width,height:O.height,items:O.items}}function S(e){for(var t=e.SIZ,r=e.components,i=t.Csiz,n=[],a=0,s=e.tiles.length;a<s;a++){var o,h=e.tiles[a],l=[];for(o=0;o<i;o++)l[o]=_(e,h,o);var c,u,f,d,p,m,g,b=l[0],v=new Uint8ClampedArray(b.items.length*i),y={left:b.left,top:b.top,width:b.width,height:b.height,items:v},w=0;if(h.codingStyleDefaultParameters.multipleComponentTransform){var M=4===i,S=l[0].items,k=l[1].items,A=l[2].items,x=M?l[3].items:null;c=r[0].precision-8,u=.5+(128<<c);var C=h.components[0],E=i-3;if(d=S.length,C.codingStyleParameters.reversibleTransformation)for(f=0;f<d;f++,w+=E){p=S[f]+u,m=k[f],g=A[f];const e=p-(g+m>>2);v[w++]=e+g>>c,v[w++]=e>>c,v[w++]=e+m>>c}else for(f=0;f<d;f++,w+=E)p=S[f]+u,m=k[f],g=A[f],v[w++]=p+1.402*g>>c,v[w++]=p-.34413*m-.71414*g>>c,v[w++]=p+1.772*m>>c;if(M)for(f=0,w=3;f<d;f++,w+=4)v[w]=x[f]+u>>c}else for(o=0;o<i;o++){var T=l[o].items;for(c=r[o].precision-8,u=.5+(128<<c),w=o,f=0,d=T.length;f<d;f++)v[w]=T[f]+u>>c,w+=i}n.push(y)}return n}function k(e,t){for(var r=e.SIZ,i=r.Csiz,n=e.tiles[t],a=0;a<i;a++){var s=n.components[a],o=void 0!==e.currentTile.QCC[a]?e.currentTile.QCC[a]:e.currentTile.QCD;s.quantizationParameters=o;var h=void 0!==e.currentTile.COC[a]?e.currentTile.COC[a]:e.currentTile.COD;s.codingStyleParameters=h}n.codingStyleDefaultParameters=e.currentTile.COD}t.prototype={parse:function(e){var t=(0,n.readUint16)(e,0);if(65359!==t){var r=0,a=e.length;while(r<a){var o=8,h=(0,n.readUint32)(e,r),l=(0,n.readUint32)(e,r+4);if(r+=o,1===h&&(h=4294967296*(0,n.readUint32)(e,r)+(0,n.readUint32)(e,r+4),r+=8,o+=8),0===h&&(h=a-r+o),h<o)throw new s("Invalid box field size");var c=h-o,u=!0;switch(l){case 1785737832:u=!1;break;case 1668246642:var f=e[r];if(1===f){var d=(0,n.readUint32)(e,r+3);switch(d){case 16:case 17:case 18:break;default:(0,i.warn)("Unknown colorspace "+d);break}}else 2===f&&(0,i.info)("ICC profile not supported");break;case 1785737827:this.parseCodestream(e,r,r+c);break;case 1783636e3:218793738!==(0,n.readUint32)(e,r)&&(0,i.warn)("Invalid JP2 signature");break;case 1783634458:case 1718909296:case 1920099697:case 1919251232:case 1768449138:break;default:var p=String.fromCharCode(l>>24&255,l>>16&255,l>>8&255,255&l);(0,i.warn)("Unsupported header type "+l+" ("+p+")");break}u&&(r+=c)}}else this.parseCodestream(e,0,e.length)},parseImageProperties:function(e){var t=e.getByte();while(t>=0){var r=t;t=e.getByte();var i=r<<8|t;if(65361===i){e.skip(4);var n=e.getInt32()>>>0,a=e.getInt32()>>>0,o=e.getInt32()>>>0,h=e.getInt32()>>>0;e.skip(16);var l=e.getUint16();return this.width=n-o,this.height=a-h,this.componentsCount=l,void(this.bitsPerComponent=8)}}throw new s("No size marker found in JPX stream")},parseCodestream:function(e,t,a){var h={},l=!1;try{var c=t;while(c+1<a){var u=(0,n.readUint16)(e,c);c+=2;var f,d,p,m,g,b,v=0;switch(u){case 65359:h.mainHeader=!0;break;case 65497:break;case 65361:v=(0,n.readUint16)(e,c);var M={};M.Xsiz=(0,n.readUint32)(e,c+4),M.Ysiz=(0,n.readUint32)(e,c+8),M.XOsiz=(0,n.readUint32)(e,c+12),M.YOsiz=(0,n.readUint32)(e,c+16),M.XTsiz=(0,n.readUint32)(e,c+20),M.YTsiz=(0,n.readUint32)(e,c+24),M.XTOsiz=(0,n.readUint32)(e,c+28),M.YTOsiz=(0,n.readUint32)(e,c+32);var _=(0,n.readUint16)(e,c+36);M.Csiz=_;var A=[];f=c+38;for(var x=0;x<_;x++){var C={precision:1+(127&e[f]),isSigned:!!(128&e[f]),XRsiz:e[f+1],YRsiz:e[f+2]};f+=3,r(C,M),A.push(C)}h.SIZ=M,h.components=A,o(h,A),h.QCC=[],h.COC=[];break;case 65372:v=(0,n.readUint16)(e,c);var E={};switch(f=c+2,d=e[f++],31&d){case 0:m=8,g=!0;break;case 1:m=16,g=!1;break;case 2:m=16,g=!0;break;default:throw new Error("Invalid SQcd value "+d)}E.noQuantization=8===m,E.scalarExpounded=g,E.guardBits=d>>5,p=[];while(f<v+c){var T={};8===m?(T.epsilon=e[f++]>>3,T.mu=0):(T.epsilon=e[f]>>3,T.mu=(7&e[f])<<8|e[f+1],f+=2),p.push(T)}E.SPqcds=p,h.mainHeader?h.QCD=E:(h.currentTile.QCD=E,h.currentTile.QCC=[]);break;case 65373:v=(0,n.readUint16)(e,c);var R,I={};switch(f=c+2,h.SIZ.Csiz<257?R=e[f++]:(R=(0,n.readUint16)(e,f),f+=2),d=e[f++],31&d){case 0:m=8,g=!0;break;case 1:m=16,g=!1;break;case 2:m=16,g=!0;break;default:throw new Error("Invalid SQcd value "+d)}I.noQuantization=8===m,I.scalarExpounded=g,I.guardBits=d>>5,p=[];while(f<v+c)T={},8===m?(T.epsilon=e[f++]>>3,T.mu=0):(T.epsilon=e[f]>>3,T.mu=(7&e[f])<<8|e[f+1],f+=2),p.push(T);I.SPqcds=p,h.mainHeader?h.QCC[R]=I:h.currentTile.QCC[R]=I;break;case 65362:v=(0,n.readUint16)(e,c);var P={};f=c+2;var O=e[f++];P.entropyCoderWithCustomPrecincts=!!(1&O),P.sopMarkerUsed=!!(2&O),P.ephMarkerUsed=!!(4&O),P.progressionOrder=e[f++],P.layersCount=(0,n.readUint16)(e,f),f+=2,P.multipleComponentTransform=e[f++],P.decompositionLevelsCount=e[f++],P.xcb=2+(15&e[f++]),P.ycb=2+(15&e[f++]);var F=e[f++];if(P.selectiveArithmeticCodingBypass=!!(1&F),P.resetContextProbabilities=!!(2&F),P.terminationOnEachCodingPass=!!(4&F),P.verticallyStripe=!!(8&F),P.predictableTermination=!!(16&F),P.segmentationSymbolUsed=!!(32&F),P.reversibleTransformation=e[f++],P.entropyCoderWithCustomPrecincts){var L=[];while(f<v+c){var D=e[f++];L.push({PPx:15&D,PPy:D>>4})}P.precinctsSizes=L}var N=[];if(P.selectiveArithmeticCodingBypass&&N.push("selectiveArithmeticCodingBypass"),P.resetContextProbabilities&&N.push("resetContextProbabilities"),P.terminationOnEachCodingPass&&N.push("terminationOnEachCodingPass"),P.verticallyStripe&&N.push("verticallyStripe"),P.predictableTermination&&N.push("predictableTermination"),N.length>0)throw l=!0,new Error("Unsupported COD options ("+N.join(", ")+")");h.mainHeader?h.COD=P:(h.currentTile.COD=P,h.currentTile.COC=[]);break;case 65424:v=(0,n.readUint16)(e,c),b={},b.index=(0,n.readUint16)(e,c+2),b.length=(0,n.readUint32)(e,c+4),b.dataEnd=b.length+c-2,b.partIndex=e[c+8],b.partsCount=e[c+9],h.mainHeader=!1,0===b.partIndex&&(b.COD=h.COD,b.COC=h.COC.slice(0),b.QCD=h.QCD,b.QCC=h.QCC.slice(0)),h.currentTile=b;break;case 65427:b=h.currentTile,0===b.partIndex&&(k(h,b.index),y(h)),v=b.dataEnd-c,w(h,e,c,v);break;case 65365:case 65367:case 65368:case 65380:v=(0,n.readUint16)(e,c);break;case 65363:throw new Error("Codestream code 0xFF53 (COC) is not implemented");default:throw new Error("Unknown codestream code: "+u.toString(16))}c+=v}}catch(B){if(l||this.failOnCorruptedImage)throw new s(B.message);(0,i.warn)("JPX: Trying to recover from: "+B.message)}this.tiles=S(h),this.width=h.SIZ.Xsiz-h.SIZ.XOsiz,this.height=h.SIZ.Ysiz-h.SIZ.YOsiz,this.componentsCount=h.SIZ.Csiz}};var A=function(){function e(e,t){var r=(0,n.log2)(Math.max(e,t))+1;this.levels=[];for(var i=0;i<r;i++){var a={width:e,height:t,items:[]};this.levels.push(a),e=Math.ceil(e/2),t=Math.ceil(t/2)}}return e.prototype={reset:function(e,t){var r,i=0,n=0;while(i<this.levels.length){r=this.levels[i];var a=e+t*r.width;if(void 0!==r.items[a]){n=r.items[a];break}r.index=a,e>>=1,t>>=1,i++}i--,r=this.levels[i],r.items[r.index]=n,this.currentLevel=i,delete this.value},incrementValue:function(){var e=this.levels[this.currentLevel];e.items[e.index]++},nextLevel:function(){var e=this.currentLevel,t=this.levels[e],r=t.items[t.index];return e--,e<0?(this.value=r,!1):(this.currentLevel=e,t=this.levels[e],t.items[t.index]=r,!0)}},e}(),x=function(){function e(e,t,r){var i=(0,n.log2)(Math.max(e,t))+1;this.levels=[];for(var a=0;a<i;a++){for(var s=new Uint8Array(e*t),o=0,h=s.length;o<h;o++)s[o]=r;var l={width:e,height:t,items:s};this.levels.push(l),e=Math.ceil(e/2),t=Math.ceil(t/2)}}return e.prototype={reset:function(e,t,r){var i=0;while(i<this.levels.length){var n=this.levels[i],a=e+t*n.width;n.index=a;var s=n.items[a];if(255===s)break;if(s>r)return this.currentLevel=i,this.propagateValues(),!1;e>>=1,t>>=1,i++}return this.currentLevel=i-1,!0},incrementValue:function(e){var t=this.levels[this.currentLevel];t.items[t.index]=e+1,this.propagateValues()},propagateValues:function(){var e=this.currentLevel,t=this.levels[e],r=t.items[t.index];while(--e>=0)t=this.levels[e],t.items[t.index]=r},nextLevel:function(){var e=this.currentLevel,t=this.levels[e],r=t.items[t.index];return t.items[t.index]=255,e--,!(e<0)&&(this.currentLevel=e,t=this.levels[e],t.items[t.index]=r,!0)}},e}(),C=function(){var e=17,t=18,r=new Uint8Array([0,5,8,0,3,7,8,0,4,7,8,0,0,0,0,0,1,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8]),i=new Uint8Array([0,3,4,0,5,7,7,0,8,8,8,0,0,0,0,0,1,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8]),n=new Uint8Array([0,1,2,0,1,2,2,0,2,2,2,0,0,0,0,0,3,4,5,0,4,5,5,0,5,5,5,0,0,0,0,0,6,7,7,0,7,7,7,0,7,7,7,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8]);function a(e,t,a,s,o){let h;this.width=e,this.height=t,h="HH"===a?n:"HL"===a?i:r,this.contextLabelTable=h;var l=e*t;let c;this.neighborsSignificance=new Uint8Array(l),this.coefficentsSign=new Uint8Array(l),c=o>14?new Uint32Array(l):o>6?new Uint16Array(l):new Uint8Array(l),this.coefficentsMagnitude=c,this.processingFlags=new Uint8Array(l);var u=new Uint8Array(l);if(0!==s)for(var f=0;f<l;f++)u[f]=s;this.bitsDecoded=u,this.reset()}return a.prototype={setDecoder:function(e){this.decoder=e},reset:function(){this.contexts=new Int8Array(19),this.contexts[0]=8,this.contexts[e]=92,this.contexts[t]=6},setNeighborsSignificance:function(e,t,r){var i,n=this.neighborsSignificance,a=this.width,s=this.height,o=t>0,h=t+1<a;e>0&&(i=r-a,o&&(n[i-1]+=16),h&&(n[i+1]+=16),n[i]+=4),e+1<s&&(i=r+a,o&&(n[i-1]+=16),h&&(n[i+1]+=16),n[i]+=4),o&&(n[r-1]+=1),h&&(n[r+1]+=1),n[r]|=128},runSignificancePropagationPass:function(){for(var e=this.decoder,t=this.width,r=this.height,i=this.coefficentsMagnitude,n=this.coefficentsSign,a=this.neighborsSignificance,s=this.processingFlags,o=this.contexts,h=this.contextLabelTable,l=this.bitsDecoded,c=-2,u=1,f=2,d=0;d<r;d+=4)for(var p=0;p<t;p++)for(var m=d*t+p,g=0;g<4;g++,m+=t){var b=d+g;if(b>=r)break;if(s[m]&=c,!i[m]&&a[m]){var v=h[a[m]],y=e.readBit(o,v);if(y){var w=this.decodeSignBit(b,p,m);n[m]=w,i[m]=1,this.setNeighborsSignificance(b,p,m),s[m]|=f}l[m]++,s[m]|=u}}},decodeSignBit:function(e,t,r){var i,n,a,s,o,h,l=this.width,c=this.height,u=this.coefficentsMagnitude,f=this.coefficentsSign;s=t>0&&0!==u[r-1],t+1<l&&0!==u[r+1]?(a=f[r+1],s?(n=f[r-1],i=1-a-n):i=1-a-a):s?(n=f[r-1],i=1-n-n):i=0;var d=3*i;return s=e>0&&0!==u[r-l],e+1<c&&0!==u[r+l]?(a=f[r+l],s?(n=f[r-l],i=1-a-n+d):i=1-a-a+d):s?(n=f[r-l],i=1-n-n+d):i=d,i>=0?(o=9+i,h=this.decoder.readBit(this.contexts,o)):(o=9-i,h=1^this.decoder.readBit(this.contexts,o)),h},runMagnitudeRefinementPass:function(){for(var e,t=this.decoder,r=this.width,i=this.height,n=this.coefficentsMagnitude,a=this.neighborsSignificance,s=this.contexts,o=this.bitsDecoded,h=this.processingFlags,l=1,c=2,u=r*i,f=4*r,d=0;d<u;d=e){e=Math.min(u,d+f);for(var p=0;p<r;p++)for(var m=d+p;m<e;m+=r)if(n[m]&&0===(h[m]&l)){var g=16;if(0!==(h[m]&c)){h[m]^=c;var b=127&a[m];g=0===b?15:14}var v=t.readBit(s,g);n[m]=n[m]<<1|v,o[m]++,h[m]|=l}}},runCleanupPass:function(){for(var r,i=this.decoder,n=this.width,a=this.height,s=this.neighborsSignificance,o=this.coefficentsMagnitude,h=this.coefficentsSign,l=this.contexts,c=this.contextLabelTable,u=this.bitsDecoded,f=this.processingFlags,d=1,p=2,m=n,g=2*n,b=3*n,v=0;v<a;v=r){r=Math.min(v+4,a);for(var y=v*n,w=v+3<a,M=0;M<n;M++){var _,S=y+M,k=w&&0===f[S]&&0===f[S+m]&&0===f[S+g]&&0===f[S+b]&&0===s[S]&&0===s[S+m]&&0===s[S+g]&&0===s[S+b],A=0,x=S,C=v;if(k){var E=i.readBit(l,t);if(!E){u[S]++,u[S+m]++,u[S+g]++,u[S+b]++;continue}A=i.readBit(l,e)<<1|i.readBit(l,e),0!==A&&(C=v+A,x+=A*n),_=this.decodeSignBit(C,M,x),h[x]=_,o[x]=1,this.setNeighborsSignificance(C,M,x),f[x]|=p,x=S;for(var T=v;T<=C;T++,x+=n)u[x]++;A++}for(C=v+A;C<r;C++,x+=n)if(!o[x]&&0===(f[x]&d)){var R=c[s[x]],I=i.readBit(l,R);1===I&&(_=this.decodeSignBit(C,M,x),h[x]=_,o[x]=1,this.setNeighborsSignificance(C,M,x),f[x]|=p),u[x]++}}}},checkSegmentationSymbol:function(){var t=this.decoder,r=this.contexts,i=t.readBit(r,e)<<3|t.readBit(r,e)<<2|t.readBit(r,e)<<1|t.readBit(r,e);if(10!==i)throw new s("Invalid segmentation symbol")}},a}(),E=function(){function e(){}return e.prototype.calculate=function(e,t,r){for(var i=e[0],n=1,a=e.length;n<a;n++)i=this.iterate(i,e[n],t,r);return i},e.prototype.extend=function(e,t,r){var i=t-1,n=t+1,a=t+r-2,s=t+r;e[i--]=e[n++],e[s++]=e[a--],e[i--]=e[n++],e[s++]=e[a--],e[i--]=e[n++],e[s++]=e[a--],e[i]=e[n],e[s]=e[a]},e.prototype.iterate=function(e,t,r,i){var n,a,s,o,h,l,c=e.width,u=e.height,f=e.items,d=t.width,p=t.height,m=t.items;for(s=0,n=0;n<u;n++)for(o=2*n*d,a=0;a<c;a++,s++,o+=2)m[o]=f[s];f=e.items=null;var g=4,b=new Float32Array(d+2*g);if(1===d){if(0!==(1&r))for(l=0,s=0;l<p;l++,s+=d)m[s]*=.5}else for(l=0,s=0;l<p;l++,s+=d)b.set(m.subarray(s,s+d),g),this.extend(b,g,d),this.filter(b,g,d),m.set(b.subarray(g,g+d),s);var v=16,y=[];for(n=0;n<v;n++)y.push(new Float32Array(p+2*g));var w,M=0;if(e=g+p,1===p){if(0!==(1&i))for(h=0;h<d;h++)m[h]*=.5}else for(h=0;h<d;h++){if(0===M){for(v=Math.min(d-h,v),s=h,o=g;o<e;s+=d,o++)for(w=0;w<v;w++)y[w][o]=m[s+w];M=v}M--;var _=y[M];if(this.extend(_,g,p),this.filter(_,g,p),0===M)for(s=h-v+1,o=g;o<e;s+=d,o++)for(w=0;w<v;w++)m[s+w]=y[w][o]}return{width:d,height:p,items:m}},e}(),T=function(){function e(){E.call(this)}return e.prototype=Object.create(E.prototype),e.prototype.filter=function(e,t,r){var i,n,a,s,o=r>>1;t|=0;var h=-1.586134342059924,l=-.052980118572961,c=.882911075530934,u=.443506852043971,f=1.230174104914001,d=1/f;for(i=t-3,n=o+4;n--;i+=2)e[i]*=d;for(i=t-2,a=u*e[i-1],n=o+3;n--;i+=2){if(s=u*e[i+1],e[i]=f*e[i]-a-s,!n--)break;i+=2,a=u*e[i+1],e[i]=f*e[i]-a-s}for(i=t-1,a=c*e[i-1],n=o+2;n--;i+=2){if(s=c*e[i+1],e[i]-=a+s,!n--)break;i+=2,a=c*e[i+1],e[i]-=a+s}for(i=t,a=l*e[i-1],n=o+1;n--;i+=2){if(s=l*e[i+1],e[i]-=a+s,!n--)break;i+=2,a=l*e[i+1],e[i]-=a+s}if(0!==o)for(i=t+1,a=h*e[i-1],n=o;n--;i+=2){if(s=h*e[i+1],e[i]-=a+s,!n--)break;i+=2,a=h*e[i+1],e[i]-=a+s}},e}(),R=function(){function e(){E.call(this)}return e.prototype=Object.create(E.prototype),e.prototype.filter=function(e,t,r){var i,n,a=r>>1;for(t|=0,i=t,n=a+1;n--;i+=2)e[i]-=e[i-1]+e[i+1]+2>>2;for(i=t+1,n=a;n--;i+=2)e[i]+=e[i-1]+e[i+1]>>1},e}();return t}();t.JpxImage=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.calculateSHA512=t.calculateSHA384=t.calculateSHA256=t.calculateMD5=t.PDF20=t.PDF17=t.CipherTransformFactory=t.ARCFourCipher=t.AES256Cipher=t.AES128Cipher=void 0;var i=r(2),n=r(5),a=r(12),s=function(){function e(e){this.a=0,this.b=0;var t,r,i=new Uint8Array(256),n=0,a=e.length;for(t=0;t<256;++t)i[t]=t;for(t=0;t<256;++t)r=i[t],n=n+r+e[t%a]&255,i[t]=i[n],i[n]=r;this.s=i}return e.prototype={encryptBlock:function(e){var t,r,i,n=e.length,a=this.a,s=this.b,o=this.s,h=new Uint8Array(n);for(t=0;t<n;++t)a=a+1&255,r=o[a],s=s+r&255,i=o[s],o[a]=i,o[s]=r,h[t]=e[t]^o[r+i&255];return this.a=a,this.b=s,h}},e.prototype.decryptBlock=e.prototype.encryptBlock,e.prototype.encrypt=e.prototype.encryptBlock,e}();t.ARCFourCipher=s;var o=function(){var e=new Uint8Array([7,12,17,22,7,12,17,22,7,12,17,22,7,12,17,22,5,9,14,20,5,9,14,20,5,9,14,20,5,9,14,20,4,11,16,23,4,11,16,23,4,11,16,23,4,11,16,23,6,10,15,21,6,10,15,21,6,10,15,21,6,10,15,21]),t=new Int32Array([-680876936,-389564586,606105819,-1044525330,-176418897,1200080426,-1473231341,-45705983,1770035416,-1958414417,-42063,-1990404162,1804603682,-40341101,-1502002290,1236535329,-165796510,-1069501632,643717713,-373897302,-701558691,38016083,-660478335,-405537848,568446438,-1019803690,-187363961,1163531501,-1444681467,-51403784,1735328473,-1926607734,-378558,-2022574463,1839030562,-35309556,-1530992060,1272893353,-155497632,-1094730640,681279174,-358537222,-722521979,76029189,-640364487,-421815835,530742520,-995338651,-198630844,1126891415,-1416354905,-57434055,1700485571,-1894986606,-1051523,-2054922799,1873313359,-30611744,-1560198380,1309151649,-145523070,-1120210379,718787259,-343485551]);function r(r,i,n){var a,s,o,h=1732584193,l=-271733879,c=-1732584194,u=271733878,f=n+72&-64,d=new Uint8Array(f);for(a=0;a<n;++a)d[a]=r[i++];d[a++]=128,o=f-8;while(a<o)d[a++]=0;d[a++]=n<<3&255,d[a++]=n>>5&255,d[a++]=n>>13&255,d[a++]=n>>21&255,d[a++]=n>>>29&255,d[a++]=0,d[a++]=0,d[a++]=0;var p=new Int32Array(16);for(a=0;a<f;){for(s=0;s<16;++s,a+=4)p[s]=d[a]|d[a+1]<<8|d[a+2]<<16|d[a+3]<<24;var m,g,b=h,v=l,y=c,w=u;for(s=0;s<64;++s){s<16?(m=v&y|~v&w,g=s):s<32?(m=w&v|~w&y,g=5*s+1&15):s<48?(m=v^y^w,g=3*s+5&15):(m=y^(v|~w),g=7*s&15);var M=w,_=b+m+t[s]+p[g]|0,S=e[s];w=y,y=v,v=v+(_<<S|_>>>32-S)|0,b=M}h=h+b|0,l=l+v|0,c=c+y|0,u=u+w|0}return new Uint8Array([255&h,h>>8&255,h>>16&255,h>>>24&255,255&l,l>>8&255,l>>16&255,l>>>24&255,255&c,c>>8&255,c>>16&255,c>>>24&255,255&u,u>>8&255,u>>16&255,u>>>24&255])}return r}();t.calculateMD5=o;var h=function(){function e(e,t){this.high=0|e,this.low=0|t}return e.prototype={and:function(e){this.high&=e.high,this.low&=e.low},xor:function(e){this.high^=e.high,this.low^=e.low},or:function(e){this.high|=e.high,this.low|=e.low},shiftRight:function(e){e>=32?(this.low=this.high>>>e-32|0,this.high=0):(this.low=this.low>>>e|this.high<<32-e,this.high=this.high>>>e|0)},shiftLeft:function(e){e>=32?(this.high=this.low<<e-32,this.low=0):(this.high=this.high<<e|this.low>>>32-e,this.low=this.low<<e)},rotateRight:function(e){var t,r;32&e?(r=this.low,t=this.high):(t=this.low,r=this.high),e&=31,this.low=t>>>e|r<<32-e,this.high=r>>>e|t<<32-e},not:function(){this.high=~this.high,this.low=~this.low},add:function(e){var t=(this.low>>>0)+(e.low>>>0),r=(this.high>>>0)+(e.high>>>0);t>4294967295&&(r+=1),this.low=0|t,this.high=0|r},copyTo:function(e,t){e[t]=this.high>>>24&255,e[t+1]=this.high>>16&255,e[t+2]=this.high>>8&255,e[t+3]=255&this.high,e[t+4]=this.low>>>24&255,e[t+5]=this.low>>16&255,e[t+6]=this.low>>8&255,e[t+7]=255&this.low},assign:function(e){this.high=e.high,this.low=e.low}},e}(),l=function(){function e(e,t){return e>>>t|e<<32-t}function t(e,t,r){return e&t^~e&r}function r(e,t,r){return e&t^e&r^t&r}function i(t){return e(t,2)^e(t,13)^e(t,22)}function n(t){return e(t,6)^e(t,11)^e(t,25)}function a(t){return e(t,7)^e(t,18)^t>>>3}function s(t){return e(t,17)^e(t,19)^t>>>10}var o=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function h(e,h,l){var c,u,f,d=1779033703,p=3144134277,m=1013904242,g=2773480762,b=1359893119,v=2600822924,y=528734635,w=1541459225,M=64*Math.ceil((l+9)/64),_=new Uint8Array(M);for(c=0;c<l;++c)_[c]=e[h++];_[c++]=128,f=M-8;while(c<f)_[c++]=0;_[c++]=0,_[c++]=0,_[c++]=0,_[c++]=l>>>29&255,_[c++]=l>>21&255,_[c++]=l>>13&255,_[c++]=l>>5&255,_[c++]=l<<3&255;var S=new Uint32Array(64);for(c=0;c<M;){for(u=0;u<16;++u)S[u]=_[c]<<24|_[c+1]<<16|_[c+2]<<8|_[c+3],c+=4;for(u=16;u<64;++u)S[u]=s(S[u-2])+S[u-7]+a(S[u-15])+S[u-16]|0;var k,A,x=d,C=p,E=m,T=g,R=b,I=v,P=y,O=w;for(u=0;u<64;++u)k=O+n(R)+t(R,I,P)+o[u]+S[u],A=i(x)+r(x,C,E),O=P,P=I,I=R,R=T+k|0,T=E,E=C,C=x,x=k+A|0;d=d+x|0,p=p+C|0,m=m+E|0,g=g+T|0,b=b+R|0,v=v+I|0,y=y+P|0,w=w+O|0}return new Uint8Array([d>>24&255,d>>16&255,d>>8&255,255&d,p>>24&255,p>>16&255,p>>8&255,255&p,m>>24&255,m>>16&255,m>>8&255,255&m,g>>24&255,g>>16&255,g>>8&255,255&g,b>>24&255,b>>16&255,b>>8&255,255&b,v>>24&255,v>>16&255,v>>8&255,255&v,y>>24&255,y>>16&255,y>>8&255,255&y,w>>24&255,w>>16&255,w>>8&255,255&w])}return h}();t.calculateSHA256=l;var c=function(){function e(e,t,r,i,n){e.assign(t),e.and(r),n.assign(t),n.not(),n.and(i),e.xor(n)}function t(e,t,r,i,n){e.assign(t),e.and(r),n.assign(t),n.and(i),e.xor(n),n.assign(r),n.and(i),e.xor(n)}function r(e,t,r){e.assign(t),e.rotateRight(28),r.assign(t),r.rotateRight(34),e.xor(r),r.assign(t),r.rotateRight(39),e.xor(r)}function i(e,t,r){e.assign(t),e.rotateRight(14),r.assign(t),r.rotateRight(18),e.xor(r),r.assign(t),r.rotateRight(41),e.xor(r)}function n(e,t,r){e.assign(t),e.rotateRight(1),r.assign(t),r.rotateRight(8),e.xor(r),r.assign(t),r.shiftRight(7),e.xor(r)}function a(e,t,r){e.assign(t),e.rotateRight(19),r.assign(t),r.rotateRight(61),e.xor(r),r.assign(t),r.shiftRight(6),e.xor(r)}var s=[new h(1116352408,3609767458),new h(1899447441,602891725),new h(3049323471,3964484399),new h(3921009573,2173295548),new h(961987163,4081628472),new h(1508970993,3053834265),new h(2453635748,2937671579),new h(2870763221,3664609560),new h(3624381080,2734883394),new h(310598401,1164996542),new h(607225278,1323610764),new h(1426881987,3590304994),new h(1925078388,4068182383),new h(2162078206,991336113),new h(2614888103,633803317),new h(3248222580,3479774868),new h(3835390401,2666613458),new h(4022224774,944711139),new h(264347078,2341262773),new h(604807628,2007800933),new h(770255983,1495990901),new h(1249150122,1856431235),new h(1555081692,3175218132),new h(1996064986,2198950837),new h(2554220882,3999719339),new h(2821834349,766784016),new h(2952996808,2566594879),new h(3210313671,3203337956),new h(3336571891,1034457026),new h(3584528711,2466948901),new h(113926993,3758326383),new h(338241895,168717936),new h(666307205,1188179964),new h(773529912,1546045734),new h(1294757372,1522805485),new h(1396182291,2643833823),new h(1695183700,2343527390),new h(1986661051,1014477480),new h(2177026350,1206759142),new h(2456956037,344077627),new h(2730485921,1290863460),new h(2820302411,3158454273),new h(3259730800,3505952657),new h(3345764771,106217008),new h(3516065817,3606008344),new h(3600352804,1432725776),new h(4094571909,1467031594),new h(275423344,851169720),new h(430227734,3100823752),new h(506948616,1363258195),new h(659060556,3750685593),new h(883997877,3785050280),new h(958139571,3318307427),new h(1322822218,3812723403),new h(1537002063,2003034995),new h(1747873779,3602036899),new h(1955562222,1575990012),new h(2024104815,1125592928),new h(2227730452,2716904306),new h(2361852424,442776044),new h(2428436474,593698344),new h(2756734187,3733110249),new h(3204031479,2999351573),new h(3329325298,3815920427),new h(3391569614,3928383900),new h(3515267271,566280711),new h(3940187606,3454069534),new h(4118630271,4000239992),new h(116418474,1914138554),new h(174292421,2731055270),new h(289380356,3203993006),new h(460393269,320620315),new h(685471733,587496836),new h(852142971,1086792851),new h(1017036298,365543100),new h(1126000580,2618297676),new h(1288033470,3409855158),new h(1501505948,4234509866),new h(1607167915,987167468),new h(1816402316,1246189591)];function o(o,l,c,u){var f,d,p,m,g,b,v,y;u=!!u,u?(f=new h(3418070365,3238371032),d=new h(1654270250,914150663),p=new h(2438529370,812702999),m=new h(355462360,4144912697),g=new h(1731405415,4290775857),b=new h(2394180231,1750603025),v=new h(3675008525,1694076839),y=new h(1203062813,3204075428)):(f=new h(1779033703,4089235720),d=new h(3144134277,2227873595),p=new h(1013904242,4271175723),m=new h(2773480762,1595750129),g=new h(1359893119,2917565137),b=new h(2600822924,725511199),v=new h(528734635,4215389547),y=new h(1541459225,327033209));var w,M,_,S=128*Math.ceil((c+17)/128),k=new Uint8Array(S);for(w=0;w<c;++w)k[w]=o[l++];k[w++]=128,_=S-16;while(w<_)k[w++]=0;k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=0,k[w++]=c>>>29&255,k[w++]=c>>21&255,k[w++]=c>>13&255,k[w++]=c>>5&255,k[w++]=c<<3&255;var A=new Array(80);for(w=0;w<80;w++)A[w]=new h(0,0);var x,C,E=new h(0,0),T=new h(0,0),R=new h(0,0),I=new h(0,0),P=new h(0,0),O=new h(0,0),F=new h(0,0),L=new h(0,0),D=new h(0,0),N=new h(0,0),B=new h(0,0),U=new h(0,0);for(w=0;w<S;){for(M=0;M<16;++M)A[M].high=k[w]<<24|k[w+1]<<16|k[w+2]<<8|k[w+3],A[M].low=k[w+4]<<24|k[w+5]<<16|k[w+6]<<8|k[w+7],w+=8;for(M=16;M<80;++M)x=A[M],a(x,A[M-2],U),x.add(A[M-7]),n(B,A[M-15],U),x.add(B),x.add(A[M-16]);for(E.assign(f),T.assign(d),R.assign(p),I.assign(m),P.assign(g),O.assign(b),F.assign(v),L.assign(y),M=0;M<80;++M)D.assign(L),i(B,P,U),D.add(B),e(B,P,O,F,U),D.add(B),D.add(s[M]),D.add(A[M]),r(N,E,U),t(B,E,T,R,U),N.add(B),x=L,L=F,F=O,O=P,I.add(D),P=I,I=R,R=T,T=E,x.assign(D),x.add(N),E=x;f.add(E),d.add(T),p.add(R),m.add(I),g.add(P),b.add(O),v.add(F),y.add(L)}return u?(C=new Uint8Array(48),f.copyTo(C,0),d.copyTo(C,8),p.copyTo(C,16),m.copyTo(C,24),g.copyTo(C,32),b.copyTo(C,40)):(C=new Uint8Array(64),f.copyTo(C,0),d.copyTo(C,8),p.copyTo(C,16),m.copyTo(C,24),g.copyTo(C,32),b.copyTo(C,40),v.copyTo(C,48),y.copyTo(C,56)),C}return o}();t.calculateSHA512=c;var u=function(){function e(e,t,r){return c(e,t,r,!0)}return e}();t.calculateSHA384=u;var f=function(){function e(){}return e.prototype={decryptBlock:function(e){return e},encrypt:function(e){return e}},e}();class d{constructor(){this.constructor===d&&(0,i.unreachable)("Cannot initialize AESBaseCipher."),this._s=new Uint8Array([99,124,119,123,242,107,111,197,48,1,103,43,254,215,171,118,202,130,201,125,250,89,71,240,173,212,162,175,156,164,114,192,183,253,147,38,54,63,247,204,52,165,229,241,113,216,49,21,4,199,35,195,24,150,5,154,7,18,128,226,235,39,178,117,9,131,44,26,27,110,90,160,82,59,214,179,41,227,47,132,83,209,0,237,32,252,177,91,106,203,190,57,74,76,88,207,208,239,170,251,67,77,51,133,69,249,2,127,80,60,159,168,81,163,64,143,146,157,56,245,188,182,218,33,16,255,243,210,205,12,19,236,95,151,68,23,196,167,126,61,100,93,25,115,96,129,79,220,34,42,144,136,70,238,184,20,222,94,11,219,224,50,58,10,73,6,36,92,194,211,172,98,145,149,228,121,231,200,55,109,141,213,78,169,108,86,244,234,101,122,174,8,186,120,37,46,28,166,180,198,232,221,116,31,75,189,139,138,112,62,181,102,72,3,246,14,97,53,87,185,134,193,29,158,225,248,152,17,105,217,142,148,155,30,135,233,206,85,40,223,140,161,137,13,191,230,66,104,65,153,45,15,176,84,187,22]),this._inv_s=new Uint8Array([82,9,106,213,48,54,165,56,191,64,163,158,129,243,215,251,124,227,57,130,155,47,255,135,52,142,67,68,196,222,233,203,84,123,148,50,166,194,35,61,238,76,149,11,66,250,195,78,8,46,161,102,40,217,36,178,118,91,162,73,109,139,209,37,114,248,246,100,134,104,152,22,212,164,92,204,93,101,182,146,108,112,72,80,253,237,185,218,94,21,70,87,167,141,157,132,144,216,171,0,140,188,211,10,247,228,88,5,184,179,69,6,208,44,30,143,202,63,15,2,193,175,189,3,1,19,138,107,58,145,17,65,79,103,220,234,151,242,207,206,240,180,230,115,150,172,116,34,231,173,53,133,226,249,55,232,28,117,223,110,71,241,26,113,29,41,197,137,111,183,98,14,170,24,190,27,252,86,62,75,198,210,121,32,154,219,192,254,120,205,90,244,31,221,168,51,136,7,199,49,177,18,16,89,39,128,236,95,96,81,127,169,25,181,74,13,45,229,122,159,147,201,156,239,160,224,59,77,174,42,245,176,200,235,187,60,131,83,153,97,23,43,4,126,186,119,214,38,225,105,20,99,85,33,12,125]),this._mix=new Uint32Array([0,235474187,470948374,303765277,941896748,908933415,607530554,708780849,1883793496,2118214995,1817866830,1649639237,1215061108,1181045119,1417561698,1517767529,3767586992,4003061179,4236429990,4069246893,3635733660,3602770327,3299278474,3400528769,2430122216,2664543715,2362090238,2193862645,2835123396,2801107407,3035535058,3135740889,3678124923,3576870512,3341394285,3374361702,3810496343,3977675356,4279080257,4043610186,2876494627,2776292904,3076639029,3110650942,2472011535,2640243204,2403728665,2169303058,1001089995,899835584,666464733,699432150,59727847,226906860,530400753,294930682,1273168787,1172967064,1475418501,1509430414,1942435775,2110667444,1876241833,1641816226,2910219766,2743034109,2976151520,3211623147,2505202138,2606453969,2302690252,2269728455,3711829422,3543599269,3240894392,3475313331,3843699074,3943906441,4178062228,4144047775,1306967366,1139781709,1374988112,1610459739,1975683434,2076935265,1775276924,1742315127,1034867998,866637845,566021896,800440835,92987698,193195065,429456164,395441711,1984812685,2017778566,1784663195,1683407248,1315562145,1080094634,1383856311,1551037884,101039829,135050206,437757123,337553864,1042385657,807962610,573804783,742039012,2531067453,2564033334,2328828971,2227573024,2935566865,2700099354,3001755655,3168937228,3868552805,3902563182,4203181171,4102977912,3736164937,3501741890,3265478751,3433712980,1106041591,1340463100,1576976609,1408749034,2043211483,2009195472,1708848333,1809054150,832877231,1068351396,766945465,599762354,159417987,126454664,361929877,463180190,2709260871,2943682380,3178106961,3009879386,2572697195,2538681184,2236228733,2336434550,3509871135,3745345300,3441850377,3274667266,3910161971,3877198648,4110568485,4211818798,2597806476,2497604743,2261089178,2295101073,2733856160,2902087851,3202437046,2968011453,3936291284,3835036895,4136440770,4169408201,3535486456,3702665459,3467192302,3231722213,2051518780,1951317047,1716890410,1750902305,1113818384,1282050075,1584504582,1350078989,168810852,67556463,371049330,404016761,841739592,1008918595,775550814,540080725,3969562369,3801332234,4035489047,4269907996,3569255213,3669462566,3366754619,3332740144,2631065433,2463879762,2160117071,2395588676,2767645557,2868897406,3102011747,3069049960,202008497,33778362,270040487,504459436,875451293,975658646,675039627,641025152,2084704233,1917518562,1615861247,1851332852,1147550661,1248802510,1484005843,1451044056,933301370,967311729,733156972,632953703,260388950,25965917,328671808,496906059,1206477858,1239443753,1543208500,1441952575,2144161806,1908694277,1675577880,1842759443,3610369226,3644379585,3408119516,3307916247,4011190502,3776767469,4077384432,4245618683,2809771154,2842737049,3144396420,3043140495,2673705150,2438237621,2203032232,2370213795]),this._mixCol=new Uint8Array(256);for(let e=0;e<256;e++)this._mixCol[e]=e<128?e<<1:e<<1^27;this.buffer=new Uint8Array(16),this.bufferPosition=0}_expandKey(e){(0,i.unreachable)("Cannot call `_expandKey` on the base class")}_decrypt(e,t){let r,i,n;const a=new Uint8Array(16);a.set(e);for(let s=0,o=this._keySize;s<16;++s,++o)a[s]^=t[o];for(let s=this._cyclesOfRepetition-1;s>=1;--s){r=a[13],a[13]=a[9],a[9]=a[5],a[5]=a[1],a[1]=r,r=a[14],i=a[10],a[14]=a[6],a[10]=a[2],a[6]=r,a[2]=i,r=a[15],i=a[11],n=a[7],a[15]=a[3],a[11]=r,a[7]=i,a[3]=n;for(let e=0;e<16;++e)a[e]=this._inv_s[a[e]];for(let e=0,r=16*s;e<16;++e,++r)a[e]^=t[r];for(let e=0;e<16;e+=4){const t=this._mix[a[e]],i=this._mix[a[e+1]],n=this._mix[a[e+2]],s=this._mix[a[e+3]];r=t^i>>>8^i<<24^n>>>16^n<<16^s>>>24^s<<8,a[e]=r>>>24&255,a[e+1]=r>>16&255,a[e+2]=r>>8&255,a[e+3]=255&r}}r=a[13],a[13]=a[9],a[9]=a[5],a[5]=a[1],a[1]=r,r=a[14],i=a[10],a[14]=a[6],a[10]=a[2],a[6]=r,a[2]=i,r=a[15],i=a[11],n=a[7],a[15]=a[3],a[11]=r,a[7]=i,a[3]=n;for(let s=0;s<16;++s)a[s]=this._inv_s[a[s]],a[s]^=t[s];return a}_encrypt(e,t){const r=this._s;let i,n,a;const s=new Uint8Array(16);s.set(e);for(let o=0;o<16;++o)s[o]^=t[o];for(let o=1;o<this._cyclesOfRepetition;o++){for(let e=0;e<16;++e)s[e]=r[s[e]];a=s[1],s[1]=s[5],s[5]=s[9],s[9]=s[13],s[13]=a,a=s[2],n=s[6],s[2]=s[10],s[6]=s[14],s[10]=a,s[14]=n,a=s[3],n=s[7],i=s[11],s[3]=s[15],s[7]=a,s[11]=n,s[15]=i;for(let e=0;e<16;e+=4){const t=s[e+0],r=s[e+1],n=s[e+2],a=s[e+3];i=t^r^n^a,s[e+0]^=i^this._mixCol[t^r],s[e+1]^=i^this._mixCol[r^n],s[e+2]^=i^this._mixCol[n^a],s[e+3]^=i^this._mixCol[a^t]}for(let e=0,r=16*o;e<16;++e,++r)s[e]^=t[r]}for(let o=0;o<16;++o)s[o]=r[s[o]];a=s[1],s[1]=s[5],s[5]=s[9],s[9]=s[13],s[13]=a,a=s[2],n=s[6],s[2]=s[10],s[6]=s[14],s[10]=a,s[14]=n,a=s[3],n=s[7],i=s[11],s[3]=s[15],s[7]=a,s[11]=n,s[15]=i;for(let o=0,h=this._keySize;o<16;++o,++h)s[o]^=t[h];return s}_decryptBlock2(e,t){const r=e.length;let i=this.buffer,n=this.bufferPosition;const a=[];let s=this.iv;for(let l=0;l<r;++l){if(i[n]=e[l],++n,n<16)continue;const t=this._decrypt(i,this._key);for(let e=0;e<16;++e)t[e]^=s[e];s=i,a.push(t),i=new Uint8Array(16),n=0}if(this.buffer=i,this.bufferLength=n,this.iv=s,0===a.length)return new Uint8Array(0);let o=16*a.length;if(t){const e=a[a.length-1];let t=e[15];if(t<=16){for(let r=15,i=16-t;r>=i;--r)if(e[r]!==t){t=0;break}o-=t,a[a.length-1]=e.subarray(0,16-t)}}const h=new Uint8Array(o);for(let l=0,c=0,u=a.length;l<u;++l,c+=16)h.set(a[l],c);return h}decryptBlock(e,t,r=null){const i=e.length,n=this.buffer;let a=this.bufferPosition;if(r)this.iv=r;else{for(let t=0;a<16&&t<i;++t,++a)n[a]=e[t];if(a<16)return this.bufferLength=a,new Uint8Array(0);this.iv=n,e=e.subarray(16)}return this.buffer=new Uint8Array(16),this.bufferLength=0,this.decryptBlock=this._decryptBlock2,this.decryptBlock(e,t)}encrypt(e,t){const r=e.length;let i=this.buffer,n=this.bufferPosition;const a=[];t||(t=new Uint8Array(16));for(let h=0;h<r;++h){if(i[n]=e[h],++n,n<16)continue;for(let e=0;e<16;++e)i[e]^=t[e];const r=this._encrypt(i,this._key);t=r,a.push(r),i=new Uint8Array(16),n=0}if(this.buffer=i,this.bufferLength=n,this.iv=t,0===a.length)return new Uint8Array(0);const s=16*a.length,o=new Uint8Array(s);for(let h=0,l=0,c=a.length;h<c;++h,l+=16)o.set(a[h],l);return o}}class p extends d{constructor(e){super(),this._cyclesOfRepetition=10,this._keySize=160,this._rcon=new Uint8Array([141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141]),this._key=this._expandKey(e)}_expandKey(e){const t=176,r=this._s,i=this._rcon,n=new Uint8Array(t);n.set(e);for(let a=16,s=1;a<t;++s){let e=n[a-3],t=n[a-2],o=n[a-1],h=n[a-4];e=r[e],t=r[t],o=r[o],h=r[h],e^=i[s];for(let r=0;r<4;++r)n[a]=e^=n[a-16],a++,n[a]=t^=n[a-16],a++,n[a]=o^=n[a-16],a++,n[a]=h^=n[a-16],a++}return n}}t.AES128Cipher=p;class m extends d{constructor(e){super(),this._cyclesOfRepetition=14,this._keySize=224,this._key=this._expandKey(e)}_expandKey(e){const t=240,r=this._s,i=new Uint8Array(t);i.set(e);let n,a,s,o,h=1;for(let l=32,c=1;l<t;++c){l%32===16?(n=r[n],a=r[a],s=r[s],o=r[o]):l%32===0&&(n=i[l-3],a=i[l-2],s=i[l-1],o=i[l-4],n=r[n],a=r[a],s=r[s],o=r[o],n^=h,(h<<=1)>=256&&(h=255&(27^h)));for(let e=0;e<4;++e)i[l]=n^=i[l-32],l++,i[l]=a^=i[l-32],l++,i[l]=s^=i[l-32],l++,i[l]=o^=i[l-32],l++}return i}}t.AES256Cipher=m;var g=function(){function e(e,t){if(e.length!==t.length)return!1;for(var r=0;r<e.length;r++)if(e[r]!==t[r])return!1;return!0}function t(){}return t.prototype={checkOwnerPassword:function(t,r,i,n){var a=new Uint8Array(t.length+56);a.set(t,0),a.set(r,t.length),a.set(i,t.length+r.length);var s=l(a,0,a.length);return e(s,n)},checkUserPassword:function(t,r,i){var n=new Uint8Array(t.length+8);n.set(t,0),n.set(r,t.length);var a=l(n,0,n.length);return e(a,i)},getOwnerKey:function(e,t,r,i){var n=new Uint8Array(e.length+56);n.set(e,0),n.set(t,e.length),n.set(r,e.length+t.length);var a=l(n,0,n.length),s=new m(a);return s.decryptBlock(i,!1,new Uint8Array(16))},getUserKey:function(e,t,r){var i=new Uint8Array(e.length+8);i.set(e,0),i.set(t,e.length);var n=l(i,0,i.length),a=new m(n);return a.decryptBlock(r,!1,new Uint8Array(16))}},t}();t.PDF17=g;var b=function(){function e(e,t){var r=new Uint8Array(e.length+t.length);return r.set(e,0),r.set(t,e.length),r}function t(t,r,i){var n=l(r,0,r.length).subarray(0,32),a=[0],s=0;while(s<64||a[a.length-1]>s-32){var o=t.length+n.length+i.length,h=new Uint8Array(64*o),f=e(t,n);f=e(f,i);for(var d=0,m=0;d<64;d++,m+=o)h.set(f,m);var g=new p(n.subarray(0,16));a=g.encrypt(h,n.subarray(16,32));for(var b=0,v=0;v<16;v++)b*=1,b%=3,b+=(a[v]>>>0)%3,b%=3;0===b?n=l(a,0,a.length):1===b?n=u(a,0,a.length):2===b&&(n=c(a,0,a.length)),s++}return n.subarray(0,32)}function r(){}function i(e,t){if(e.length!==t.length)return!1;for(var r=0;r<e.length;r++)if(e[r]!==t[r])return!1;return!0}return r.prototype={hash:function(e,r,i){return t(e,r,i)},checkOwnerPassword:function(e,r,n,a){var s=new Uint8Array(e.length+56);s.set(e,0),s.set(r,e.length),s.set(n,e.length+r.length);var o=t(e,s,n);return i(o,a)},checkUserPassword:function(e,r,n){var a=new Uint8Array(e.length+8);a.set(e,0),a.set(r,e.length);var s=t(e,a,[]);return i(s,n)},getOwnerKey:function(e,r,i,n){var a=new Uint8Array(e.length+56);a.set(e,0),a.set(r,e.length),a.set(i,e.length+r.length);var s=t(e,a,i),o=new m(s);return o.decryptBlock(n,!1,new Uint8Array(16))},getUserKey:function(e,r,i){var n=new Uint8Array(e.length+8);n.set(e,0),n.set(r,e.length);var a=t(e,n,[]),s=new m(a);return s.decryptBlock(i,!1,new Uint8Array(16))}},r}();t.PDF20=b;var v=function(){function e(e,t){this.StringCipherConstructor=e,this.StreamCipherConstructor=t}return e.prototype={createStream:function(e,t){var r=new this.StreamCipherConstructor;return new a.DecryptStream(e,t,(function(e,t){return r.decryptBlock(e,t)}))},decryptString:function(e){var t=new this.StringCipherConstructor,r=(0,i.stringToBytes)(e);return r=t.decryptBlock(r,!0),(0,i.bytesToString)(r)},encryptString:function(e){const t=new this.StringCipherConstructor;if(t instanceof d){const r=e.length,n=16-r%16;16!==n&&(e=e.padEnd(16*Math.ceil(r/16),String.fromCharCode(n)));const a=new Uint8Array(16);if("undefined"!==typeof crypto)crypto.getRandomValues(a);else for(let e=0;e<16;e++)a[e]=Math.floor(256*Math.random());let s=(0,i.stringToBytes)(e);s=t.encrypt(s,a);const o=new Uint8Array(16+s.length);return o.set(a),o.set(s,16),(0,i.bytesToString)(o)}let r=(0,i.stringToBytes)(e);return r=t.encrypt(r),(0,i.bytesToString)(r)}},e}(),y=function(){var e=new Uint8Array([40,191,78,94,78,117,138,65,100,0,78,86,255,250,1,8,46,46,0,182,208,104,62,128,47,12,169,254,100,83,105,122]);function t(e,t,r,i,n,a,s,o,h,l,c,u){if(t){var f=Math.min(127,t.length);t=t.subarray(0,f)}else t=[];var d;return d=6===e?new b:new g,d.checkUserPassword(t,o,s)?d.getUserKey(t,h,c):t.length&&d.checkOwnerPassword(t,i,a,r)?d.getOwnerKey(t,n,a,l):null}function r(t,r,i,n,a,h,l,c){var u,f,d=40+i.length+t.length,p=new Uint8Array(d),m=0;if(r)for(f=Math.min(32,r.length);m<f;++m)p[m]=r[m];u=0;while(m<32)p[m++]=e[u++];for(u=0,f=i.length;u<f;++u)p[m++]=i[u];for(p[m++]=255&a,p[m++]=a>>8&255,p[m++]=a>>16&255,p[m++]=a>>>24&255,u=0,f=t.length;u<f;++u)p[m++]=t[u];h>=4&&!c&&(p[m++]=255,p[m++]=255,p[m++]=255,p[m++]=255);var g=o(p,0,m),b=l>>3;if(h>=3)for(u=0;u<50;++u)g=o(g,0,b);var v,y,w=g.subarray(0,b);if(h>=3){for(m=0;m<32;++m)p[m]=e[m];for(u=0,f=t.length;u<f;++u)p[m++]=t[u];v=new s(w),y=v.encryptBlock(o(p,0,m)),f=w.length;var M,_=new Uint8Array(f);for(u=1;u<=19;++u){for(M=0;M<f;++M)_[M]=w[M]^u;v=new s(_),y=v.encryptBlock(y)}for(u=0,f=y.length;u<f;++u)if(n[u]!==y[u])return null}else for(v=new s(w),y=v.encryptBlock(e),u=0,f=y.length;u<f;++u)if(n[u]!==y[u])return null;return w}function a(t,r,i,n){var a,h,l=new Uint8Array(32),c=0;for(h=Math.min(32,t.length);c<h;++c)l[c]=t[c];a=0;while(c<32)l[c++]=e[a++];var u,f,d=o(l,0,c),p=n>>3;if(i>=3)for(a=0;a<50;++a)d=o(d,0,d.length);if(i>=3){f=r;var m,g=new Uint8Array(p);for(a=19;a>=0;a--){for(m=0;m<p;++m)g[m]=d[m]^a;u=new s(g),f=u.encryptBlock(f)}}else u=new s(d.subarray(0,p)),f=u.encryptBlock(r);return f}var h=n.Name.get("Identity");function l(e,s,o){var l=e.get("Filter");if(!(0,n.isName)(l,"Standard"))throw new i.FormatError("unknown encryption method");this.dict=e;var c=e.get("V");if(!Number.isInteger(c)||1!==c&&2!==c&&4!==c&&5!==c)throw new i.FormatError("unsupported encryption algorithm");this.algorithm=c;var u=e.get("Length");if(!u)if(c<=3)u=40;else{var f=e.get("CF"),d=e.get("StmF");if((0,n.isDict)(f)&&(0,n.isName)(d)){f.suppressEncryption=!0;var p=f.get(d.name);u=p&&p.get("Length")||128,u<40&&(u<<=3)}}if(!Number.isInteger(u)||u<40||u%8!==0)throw new i.FormatError("invalid key length");var m=(0,i.stringToBytes)(e.get("O")).subarray(0,32),g=(0,i.stringToBytes)(e.get("U")).subarray(0,32),b=e.get("P"),v=e.get("R"),y=(4===c||5===c)&&!1!==e.get("EncryptMetadata");this.encryptMetadata=y;var w,M,_=(0,i.stringToBytes)(s);if(o){if(6===v)try{o=(0,i.utf8StringToString)(o)}catch(O){(0,i.warn)("CipherTransformFactory: Unable to convert UTF8 encoded password.")}w=(0,i.stringToBytes)(o)}if(5!==c)M=r(_,w,m,g,b,v,u,y);else{var S=(0,i.stringToBytes)(e.get("O")).subarray(32,40),k=(0,i.stringToBytes)(e.get("O")).subarray(40,48),A=(0,i.stringToBytes)(e.get("U")).subarray(0,48),x=(0,i.stringToBytes)(e.get("U")).subarray(32,40),C=(0,i.stringToBytes)(e.get("U")).subarray(40,48),E=(0,i.stringToBytes)(e.get("OE")),T=(0,i.stringToBytes)(e.get("UE")),R=(0,i.stringToBytes)(e.get("Perms"));M=t(v,w,m,S,k,A,g,x,C,E,T,R)}if(!M&&!o)throw new i.PasswordException("No password given",i.PasswordResponses.NEED_PASSWORD);if(!M&&o){var I=a(w,m,v,u);M=r(_,I,m,g,b,v,u,y)}if(!M)throw new i.PasswordException("Incorrect Password",i.PasswordResponses.INCORRECT_PASSWORD);if(this.encryptionKey=M,c>=4){var P=e.get("CF");(0,n.isDict)(P)&&(P.suppressEncryption=!0),this.cf=P,this.stmf=e.get("StmF")||h,this.strf=e.get("StrF")||h,this.eff=e.get("EFF")||this.stmf}}function c(e,t,r,i){var n,a,s=new Uint8Array(r.length+9);for(n=0,a=r.length;n<a;++n)s[n]=r[n];s[n++]=255&e,s[n++]=e>>8&255,s[n++]=e>>16&255,s[n++]=255&t,s[n++]=t>>8&255,i&&(s[n++]=115,s[n++]=65,s[n++]=108,s[n++]=84);var h=o(s,0,n);return h.subarray(0,Math.min(r.length+5,16))}function u(e,t,r,a,o){if(!(0,n.isName)(t))throw new i.FormatError("Invalid crypt filter name.");var h,l=e.get(t.name);if(null!==l&&void 0!==l&&(h=l.get("CFM")),!h||"None"===h.name)return function(){return new f};if("V2"===h.name)return function(){return new s(c(r,a,o,!1))};if("AESV2"===h.name)return function(){return new p(c(r,a,o,!0))};if("AESV3"===h.name)return function(){return new m(o)};throw new i.FormatError("Unknown crypto method")}return l.prototype={createCipherTransform:function(e,t){if(4===this.algorithm||5===this.algorithm)return new v(u(this.cf,this.stmf,e,t,this.encryptionKey),u(this.cf,this.strf,e,t,this.encryptionKey));var r=c(e,t,this.encryptionKey,!1),i=function(){return new s(r)};return new v(i,i)}},l}();t.CipherTransformFactory=y},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ColorSpace=void 0;var i=r(2),n=r(5),a=r(8);function s(e,t,r,i,n,a,s){const o=3;s=1!==s?0:s;const h=r/n,l=i/a;let c,u=0;const f=new Uint16Array(n),d=r*o;for(let p=0;p<n;p++)f[p]=Math.floor(p*h)*o;for(let p=0;p<a;p++){const r=Math.floor(p*l)*d;for(let i=0;i<n;i++)c=r+f[i],t[u++]=e[c++],t[u++]=e[c++],t[u++]=e[c++],u+=s}}class o{constructor(e,t){this.constructor===o&&(0,i.unreachable)("Cannot initialize ColorSpace."),this.name=e,this.numComps=t}getRgb(e,t){const r=new Uint8ClampedArray(3);return this.getRgbItem(e,t,r,0),r}getRgbItem(e,t,r,n){(0,i.unreachable)("Should not call ColorSpace.getRgbItem")}getRgbBuffer(e,t,r,n,a,s,o){(0,i.unreachable)("Should not call ColorSpace.getRgbBuffer")}getOutputLength(e,t){(0,i.unreachable)("Should not call ColorSpace.getOutputLength")}isPassthrough(e){return!1}isDefaultDecode(e,t){return o.isDefaultDecode(e,this.numComps)}fillRgb(e,t,r,i,n,a,o,h,l){const c=t*r;let u=null;const f=1<<o,d=r!==n||t!==i;if(this.isPassthrough(o))u=h;else if(1===this.numComps&&c>f&&"DeviceGray"!==this.name&&"DeviceRGB"!==this.name){const t=o<=8?new Uint8Array(f):new Uint16Array(f);for(let e=0;e<f;e++)t[e]=e;const r=new Uint8ClampedArray(3*f);if(this.getRgbBuffer(t,0,f,r,0,o,0),d){u=new Uint8Array(3*c);let e=0;for(let t=0;t<c;++t){const i=3*h[t];u[e++]=r[i],u[e++]=r[i+1],u[e++]=r[i+2]}}else{let t=0;for(let i=0;i<c;++i){const n=3*h[i];e[t++]=r[n],e[t++]=r[n+1],e[t++]=r[n+2],t+=l}}}else d?(u=new Uint8ClampedArray(3*c),this.getRgbBuffer(h,0,c,u,0,o,0)):this.getRgbBuffer(h,0,i*a,e,0,o,l);if(u)if(d)s(u,e,t,r,i,n,l);else{let t=0,r=0;for(let n=0,s=i*a;n<s;n++)e[t++]=u[r++],e[t++]=u[r++],e[t++]=u[r++],t+=l}}get usesZeroToOneRange(){return(0,i.shadow)(this,"usesZeroToOneRange",!0)}static _cache(e,t,r,i){if(!r)throw new Error('ColorSpace._cache - expected "localColorSpaceCache" argument.');if(!i)throw new Error('ColorSpace._cache - expected "parsedColorSpace" argument.');let a,s;e instanceof n.Ref&&(s=e,e=t.fetch(e)),e instanceof n.Name&&(a=e.name),(a||s)&&r.set(a,s,i)}static getCached(e,t,r){if(!r)throw new Error('ColorSpace.getCached - expected "localColorSpaceCache" argument.');if(e instanceof n.Ref){const n=r.getByRef(e);if(n)return n;try{e=t.fetch(e)}catch(i){if(i instanceof a.MissingDataException)throw i}}if(e instanceof n.Name){const t=r.getByName(e.name);if(t)return t}return null}static async parseAsync({cs:e,xref:t,resources:r=null,pdfFunctionFactory:i,localColorSpaceCache:n}){const a=this._parse(e,t,r,i);return this._cache(e,t,n,a),a}static parse({cs:e,xref:t,resources:r=null,pdfFunctionFactory:i,localColorSpaceCache:n}){const a=this.getCached(e,t,n);if(a)return a;const s=this._parse(e,t,r,i);return this._cache(e,t,n,s),s}static _parse(e,t,r=null,a){if(e=t.fetchIfRef(e),(0,n.isName)(e))switch(e.name){case"DeviceGray":case"G":return this.singletons.gray;case"DeviceRGB":case"RGB":return this.singletons.rgb;case"DeviceCMYK":case"CMYK":return this.singletons.cmyk;case"Pattern":return new l(null);default:if((0,n.isDict)(r)){const i=r.get("ColorSpace");if((0,n.isDict)(i)){const s=i.get(e.name);if(s){if((0,n.isName)(s))return this._parse(s,t,r,a);e=s;break}}}throw new i.FormatError("Unrecognized ColorSpace: "+e.name)}if(Array.isArray(e)){const n=t.fetchIfRef(e[0]).name;let s,o,u,f,d,b;switch(n){case"DeviceGray":case"G":return this.singletons.gray;case"DeviceRGB":case"RGB":return this.singletons.rgb;case"DeviceCMYK":case"CMYK":return this.singletons.cmyk;case"CalGray":return s=t.fetchIfRef(e[1]),f=s.getArray("WhitePoint"),d=s.getArray("BlackPoint"),b=s.get("Gamma"),new p(f,d,b);case"CalRGB":s=t.fetchIfRef(e[1]),f=s.getArray("WhitePoint"),d=s.getArray("BlackPoint"),b=s.getArray("Gamma");const v=s.getArray("Matrix");return new m(f,d,b,v);case"ICCBased":const y=t.fetchIfRef(e[1]),w=y.dict;o=w.get("N");const M=w.get("Alternate");if(M){const e=this._parse(M,t,r,a);if(e.numComps===o)return e;(0,i.warn)("ICCBased color space: Ignoring incorrect /Alternate entry.")}if(1===o)return this.singletons.gray;if(3===o)return this.singletons.rgb;if(4===o)return this.singletons.cmyk;break;case"Pattern":return u=e[1]||null,u&&(u=this._parse(u,t,r,a)),new l(u);case"Indexed":case"I":u=this._parse(e[1],t,r,a);const _=t.fetchIfRef(e[2])+1,S=t.fetchIfRef(e[3]);return new c(u,_,S);case"Separation":case"DeviceN":const k=t.fetchIfRef(e[1]);o=Array.isArray(k)?k.length:1,u=this._parse(e[2],t,r,a);const A=a.create(e[3]);return new h(o,u,A);case"Lab":s=t.fetchIfRef(e[1]),f=s.getArray("WhitePoint"),d=s.getArray("BlackPoint");const x=s.getArray("Range");return new g(f,d,x);default:throw new i.FormatError("Unimplemented ColorSpace object: "+n)}}throw new i.FormatError("Unrecognized ColorSpace object: "+e)}static isDefaultDecode(e,t){if(!Array.isArray(e))return!0;if(2*t!==e.length)return(0,i.warn)("The decode map is not the correct length"),!0;for(let r=0,i=e.length;r<i;r+=2)if(0!==e[r]||1!==e[r+1])return!1;return!0}static get singletons(){return(0,i.shadow)(this,"singletons",{get gray(){return(0,i.shadow)(this,"gray",new u)},get rgb(){return(0,i.shadow)(this,"rgb",new f)},get cmyk(){return(0,i.shadow)(this,"cmyk",new d)}})}}t.ColorSpace=o;class h extends o{constructor(e,t,r){super("Alternate",e),this.base=t,this.tintFn=r,this.tmpBuf=new Float32Array(t.numComps)}getRgbItem(e,t,r,i){const n=this.tmpBuf;this.tintFn(e,t,n,0),this.base.getRgbItem(n,0,r,i)}getRgbBuffer(e,t,r,i,n,a,s){const o=this.tintFn,h=this.base,l=1/((1<<a)-1),c=h.numComps,u=h.usesZeroToOneRange,f=(h.isPassthrough(8)||!u)&&0===s;let d=f?n:0;const p=f?i:new Uint8ClampedArray(c*r),m=this.numComps,g=new Float32Array(m),b=new Float32Array(c);let v,y;for(v=0;v<r;v++){for(y=0;y<m;y++)g[y]=e[t++]*l;if(o(g,0,b,0),u)for(y=0;y<c;y++)p[d++]=255*b[y];else h.getRgbItem(b,0,p,d),d+=c}f||h.getRgbBuffer(p,0,r,i,n,8,s)}getOutputLength(e,t){return this.base.getOutputLength(e*this.base.numComps/this.numComps,t)}}class l extends o{constructor(e){super("Pattern",null),this.base=e}isDefaultDecode(e,t){(0,i.unreachable)("Should not call PatternCS.isDefaultDecode")}}class c extends o{constructor(e,t,r){super("Indexed",1),this.base=e,this.highVal=t;const a=e.numComps*t;if(this.lookup=new Uint8Array(a),(0,n.isStream)(r)){const e=r.getBytes(a);this.lookup.set(e)}else{if("string"!==typeof r)throw new i.FormatError("IndexedCS - unrecognized lookup table: "+r);for(let e=0;e<a;++e)this.lookup[e]=255&r.charCodeAt(e)}}getRgbItem(e,t,r,i){const n=this.base.numComps,a=e[t]*n;this.base.getRgbBuffer(this.lookup,a,1,r,i,8,0)}getRgbBuffer(e,t,r,i,n,a,s){const o=this.base,h=o.numComps,l=o.getOutputLength(h,s),c=this.lookup;for(let u=0;u<r;++u){const r=e[t++]*h;o.getRgbBuffer(c,r,1,i,n,8,s),n+=l}}getOutputLength(e,t){return this.base.getOutputLength(e*this.base.numComps,t)}isDefaultDecode(e,t){return!Array.isArray(e)||(2!==e.length?((0,i.warn)("Decode map length is not correct"),!0):!Number.isInteger(t)||t<1?((0,i.warn)("Bits per component is not correct"),!0):0===e[0]&&e[1]===(1<<t)-1)}}class u extends o{constructor(){super("DeviceGray",1)}getRgbItem(e,t,r,i){const n=255*e[t];r[i]=r[i+1]=r[i+2]=n}getRgbBuffer(e,t,r,i,n,a,s){const o=255/((1<<a)-1);let h=t,l=n;for(let c=0;c<r;++c){const t=o*e[h++];i[l++]=t,i[l++]=t,i[l++]=t,l+=s}}getOutputLength(e,t){return e*(3+t)}}class f extends o{constructor(){super("DeviceRGB",3)}getRgbItem(e,t,r,i){r[i]=255*e[t],r[i+1]=255*e[t+1],r[i+2]=255*e[t+2]}getRgbBuffer(e,t,r,i,n,a,s){if(8===a&&0===s)return void i.set(e.subarray(t,t+3*r),n);const o=255/((1<<a)-1);let h=t,l=n;for(let c=0;c<r;++c)i[l++]=o*e[h++],i[l++]=o*e[h++],i[l++]=o*e[h++],l+=s}getOutputLength(e,t){return e*(3+t)/3|0}isPassthrough(e){return 8===e}}const d=function(){function e(e,t,r,i,n){const a=e[t]*r,s=e[t+1]*r,o=e[t+2]*r,h=e[t+3]*r;i[n]=255+a*(-4.387332384609988*a+54.48615194189176*s+18.82290502165302*o+212.25662451639585*h-285.2331026137004)+s*(1.7149763477362134*s-5.6096736904047315*o+-17.873870861415444*h-5.497006427196366)+o*(-2.5217340131683033*o-21.248923337353073*h+17.5119270841813)+h*(-21.86122147463605*h-189.48180835922747),i[n+1]=255+a*(8.841041422036149*a+60.118027045597366*s+6.871425592049007*o+31.159100130055922*h-79.2970844816548)+s*(-15.310361306967817*s+17.575251261109482*o+131.35250912493976*h-190.9453302588951)+o*(4.444339102852739*o+9.8632861493405*h-24.86741582555878)+h*(-20.737325471181034*h-187.80453709719578),i[n+2]=255+a*(.8842522430003296*a+8.078677503112928*s+30.89978309703729*o-.23883238689178934*h-14.183576799673286)+s*(10.49593273432072*s+63.02378494754052*o+50.606957656360734*h-112.23884253719248)+o*(.03296041114873217*o+115.60384449646641*h-193.58209356861505)+h*(-22.33816807309886*h-180.12613974708367)}class t extends o{constructor(){super("DeviceCMYK",4)}getRgbItem(t,r,i,n){e(t,r,1,i,n)}getRgbBuffer(t,r,i,n,a,s,o){const h=1/((1<<s)-1);for(let l=0;l<i;l++)e(t,r,h,n,a),r+=4,a+=3+o}getOutputLength(e,t){return e/4*(3+t)|0}}return t}(),p=function(){function e(e,t,r,i,n,a){const s=t[r]*a,o=s**e.G,h=e.YW*o,l=Math.max(295.8*h**.3333333333333333-40.8,0);i[n]=l,i[n+1]=l,i[n+2]=l}class t extends o{constructor(e,t,r){if(super("CalGray",1),!e)throw new i.FormatError("WhitePoint missing - required for color space CalGray");if(t=t||[0,0,0],r=r||1,this.XW=e[0],this.YW=e[1],this.ZW=e[2],this.XB=t[0],this.YB=t[1],this.ZB=t[2],this.G=r,this.XW<0||this.ZW<0||1!==this.YW)throw new i.FormatError("Invalid WhitePoint components for "+this.name+", no fallback available");(this.XB<0||this.YB<0||this.ZB<0)&&((0,i.info)(`Invalid BlackPoint for ${this.name}, falling back to default.`),this.XB=this.YB=this.ZB=0),0===this.XB&&0===this.YB&&0===this.ZB||(0,i.warn)(`${this.name}, BlackPoint: XB: ${this.XB}, YB: ${this.YB}, ZB: ${this.ZB}, only default values are supported.`),this.G<1&&((0,i.info)(`Invalid Gamma: ${this.G} for ${this.name}, falling back to default.`),this.G=1)}getRgbItem(t,r,i,n){e(this,t,r,i,n,1)}getRgbBuffer(t,r,i,n,a,s,o){const h=1/((1<<s)-1);for(let l=0;l<i;++l)e(this,t,r,n,a,h),r+=1,a+=3+o}getOutputLength(e,t){return e*(3+t)}}return t}(),m=function(){const e=new Float32Array([.8951,.2664,-.1614,-.7502,1.7135,.0367,.0389,-.0685,1.0296]),t=new Float32Array([.9869929,-.1470543,.1599627,.4323053,.5183603,.0492912,-.0085287,.0400428,.9684867]),r=new Float32Array([3.2404542,-1.5371385,-.4985314,-.969266,1.8760108,.041556,.0556434,-.2040259,1.0572252]),n=new Float32Array([1,1,1]),a=new Float32Array(3),s=new Float32Array(3),h=new Float32Array(3),l=(24/116)**3/8;function c(e,t,r){r[0]=e[0]*t[0]+e[1]*t[1]+e[2]*t[2],r[1]=e[3]*t[0]+e[4]*t[1]+e[5]*t[2],r[2]=e[6]*t[0]+e[7]*t[1]+e[8]*t[2]}function u(e,t,r){r[0]=1*t[0]/e[0],r[1]=1*t[1]/e[1],r[2]=1*t[2]/e[2]}function f(e,t,r){const i=.95047,n=1,a=1.08883;r[0]=t[0]*i/e[0],r[1]=t[1]*n/e[1],r[2]=t[2]*a/e[2]}function d(e){return e<=.0031308?p(0,1,12.92*e):e>=.99554525?1:p(0,1,1.055*e**(1/2.4)-.055)}function p(e,t,r){return Math.max(e,Math.min(t,r))}function m(e){return e<0?-m(-e):e>8?((e+16)/116)**3:e*l}function g(e,t,r){if(0===e[0]&&0===e[1]&&0===e[2])return r[0]=t[0],r[1]=t[1],void(r[2]=t[2]);const i=m(0),n=i,a=m(e[0]),s=i,o=m(e[1]),h=i,l=m(e[2]),c=(1-n)/(1-a),u=1-c,f=(1-s)/(1-o),d=1-f,p=(1-h)/(1-l),g=1-p;r[0]=t[0]*c+u,r[1]=t[1]*f+d,r[2]=t[2]*p+g}function b(r,i,n){if(1===r[0]&&1===r[2])return n[0]=i[0],n[1]=i[1],void(n[2]=i[2]);const s=n;c(e,i,s);const o=a;u(r,s,o),c(t,o,n)}function v(r,i,n){const s=n;c(e,i,s);const o=a;f(r,s,o),c(t,o,n)}function y(e,t,i,a,o,l){const u=p(0,1,t[i]*l),f=p(0,1,t[i+1]*l),m=p(0,1,t[i+2]*l),y=1===u?1:u**e.GR,w=1===f?1:f**e.GG,M=1===m?1:m**e.GB,_=e.MXA*y+e.MXB*w+e.MXC*M,S=e.MYA*y+e.MYB*w+e.MYC*M,k=e.MZA*y+e.MZB*w+e.MZC*M,A=s;A[0]=_,A[1]=S,A[2]=k;const x=h;b(e.whitePoint,A,x);const C=s;g(e.blackPoint,x,C);const E=h;v(n,C,E);const T=s;c(r,E,T),a[o]=255*d(T[0]),a[o+1]=255*d(T[1]),a[o+2]=255*d(T[2])}class w extends o{constructor(e,t,r,n){if(super("CalRGB",3),!e)throw new i.FormatError("WhitePoint missing - required for color space CalRGB");t=t||new Float32Array(3),r=r||new Float32Array([1,1,1]),n=n||new Float32Array([1,0,0,0,1,0,0,0,1]);const a=e[0],s=e[1],o=e[2];this.whitePoint=e;const h=t[0],l=t[1],c=t[2];if(this.blackPoint=t,this.GR=r[0],this.GG=r[1],this.GB=r[2],this.MXA=n[0],this.MYA=n[1],this.MZA=n[2],this.MXB=n[3],this.MYB=n[4],this.MZB=n[5],this.MXC=n[6],this.MYC=n[7],this.MZC=n[8],a<0||o<0||1!==s)throw new i.FormatError("Invalid WhitePoint components for "+this.name+", no fallback available");(h<0||l<0||c<0)&&((0,i.info)(`Invalid BlackPoint for ${this.name} [${h}, ${l}, ${c}], falling back to default.`),this.blackPoint=new Float32Array(3)),(this.GR<0||this.GG<0||this.GB<0)&&((0,i.info)(`Invalid Gamma [${this.GR}, ${this.GG}, ${this.GB}] for `+this.name+", falling back to default."),this.GR=this.GG=this.GB=1)}getRgbItem(e,t,r,i){y(this,e,t,r,i,1)}getRgbBuffer(e,t,r,i,n,a,s){const o=1/((1<<a)-1);for(let h=0;h<r;++h)y(this,e,t,i,n,o),t+=3,n+=3+s}getOutputLength(e,t){return e*(3+t)/3|0}}return w}(),g=function(){function e(e){let t;return t=e>=6/29?e*e*e:108/841*(e-4/29),t}function t(e,t,r,i){return r+e*(i-r)/t}function r(r,i,n,a,s,o){let h=i[n],l=i[n+1],c=i[n+2];!1!==a&&(h=t(h,a,0,100),l=t(l,a,r.amin,r.amax),c=t(c,a,r.bmin,r.bmax)),l>r.amax?l=r.amax:l<r.amin&&(l=r.amin),c>r.bmax?c=r.bmax:c<r.bmin&&(c=r.bmin);const u=(h+16)/116,f=u+l/500,d=u-c/200,p=r.XW*e(f),m=r.YW*e(u),g=r.ZW*e(d);let b,v,y;r.ZW<1?(b=3.1339*p+-1.617*m+-.4906*g,v=-.9785*p+1.916*m+.0333*g,y=.072*p+-.229*m+1.4057*g):(b=3.2406*p+-1.5372*m+-.4986*g,v=-.9689*p+1.8758*m+.0415*g,y=.0557*p+-.204*m+1.057*g),s[o]=255*Math.sqrt(b),s[o+1]=255*Math.sqrt(v),s[o+2]=255*Math.sqrt(y)}class n extends o{constructor(e,t,r){if(super("Lab",3),!e)throw new i.FormatError("WhitePoint missing - required for color space Lab");if(t=t||[0,0,0],r=r||[-100,100,-100,100],this.XW=e[0],this.YW=e[1],this.ZW=e[2],this.amin=r[0],this.amax=r[1],this.bmin=r[2],this.bmax=r[3],this.XB=t[0],this.YB=t[1],this.ZB=t[2],this.XW<0||this.ZW<0||1!==this.YW)throw new i.FormatError("Invalid WhitePoint components, no fallback available");(this.XB<0||this.YB<0||this.ZB<0)&&((0,i.info)("Invalid BlackPoint, falling back to default"),this.XB=this.YB=this.ZB=0),(this.amin>this.amax||this.bmin>this.bmax)&&((0,i.info)("Invalid Range, falling back to defaults"),this.amin=-100,this.amax=100,this.bmin=-100,this.bmax=100)}getRgbItem(e,t,i,n){r(this,e,t,!1,i,n)}getRgbBuffer(e,t,i,n,a,s,o){const h=(1<<s)-1;for(let l=0;l<i;l++)r(this,e,t,h,n,a),t+=3,a+=3+o}getOutputLength(e,t){return e*(3+t)/3|0}isDefaultDecode(e,t){return!0}get usesZeroToOneRange(){return(0,i.shadow)(this,"usesZeroToOneRange",!1)}}return n}()},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GlobalImageCache=t.LocalGStateCache=t.LocalFunctionCache=t.LocalColorSpaceCache=t.LocalImageCache=void 0;var i=r(2),n=r(5);class a{constructor(e){this.constructor===a&&(0,i.unreachable)("Cannot initialize BaseLocalCache."),e&&e.onlyRefs||(this._nameRefMap=new Map,this._imageMap=new Map),this._imageCache=new n.RefSetCache}getByName(e){const t=this._nameRefMap.get(e);return t?this.getByRef(t):this._imageMap.get(e)||null}getByRef(e){return this._imageCache.get(e)||null}set(e,t,r){(0,i.unreachable)("Abstract method `set` called.")}}class s extends a{set(e,t=null,r){if(!e)throw new Error('LocalImageCache.set - expected "name" argument.');if(t){if(this._imageCache.has(t))return;return this._nameRefMap.set(e,t),void this._imageCache.put(t,r)}this._imageMap.has(e)||this._imageMap.set(e,r)}}t.LocalImageCache=s;class o extends a{set(e=null,t=null,r){if(!e&&!t)throw new Error('LocalColorSpaceCache.set - expected "name" and/or "ref" argument.');if(t){if(this._imageCache.has(t))return;return e&&this._nameRefMap.set(e,t),void this._imageCache.put(t,r)}this._imageMap.has(e)||this._imageMap.set(e,r)}}t.LocalColorSpaceCache=o;class h extends a{constructor(e){super({onlyRefs:!0})}getByName(e){(0,i.unreachable)("Should not call `getByName` method.")}set(e=null,t,r){if(!t)throw new Error('LocalFunctionCache.set - expected "ref" argument.');this._imageCache.has(t)||this._imageCache.put(t,r)}}t.LocalFunctionCache=h;class l extends a{set(e,t=null,r){if(!e)throw new Error('LocalGStateCache.set - expected "name" argument.');if(t){if(this._imageCache.has(t))return;return this._nameRefMap.set(e,t),void this._imageCache.put(t,r)}this._imageMap.has(e)||this._imageMap.set(e,r)}}t.LocalGStateCache=l;class c{static get NUM_PAGES_THRESHOLD(){return(0,i.shadow)(this,"NUM_PAGES_THRESHOLD",2)}static get MAX_IMAGES_TO_CACHE(){return(0,i.shadow)(this,"MAX_IMAGES_TO_CACHE",10)}constructor(){this._refCache=new n.RefSetCache,this._imageCache=new n.RefSetCache}shouldCache(e,t){const r=this._refCache.get(e),i=r?r.size+(r.has(t)?0:1):1;return!(i<c.NUM_PAGES_THRESHOLD)&&!(!this._imageCache.has(e)&&this._imageCache.size>=c.MAX_IMAGES_TO_CACHE)}addPageIndex(e,t){let r=this._refCache.get(e);r||(r=new Set,this._refCache.put(e,r)),r.add(t)}getData(e,t){const r=this._refCache.get(e);return r?r.size<c.NUM_PAGES_THRESHOLD?null:this._imageCache.has(e)?(r.add(t),this._imageCache.get(e)):null:null}setData(e,t){if(!this._refCache.has(e))throw new Error('GlobalImageCache.setData - expected "addPageIndex" to have been called.');this._imageCache.has(e)||(this._imageCache.size>=c.MAX_IMAGES_TO_CACHE?(0,i.info)("GlobalImageCache.setData - ignoring image above MAX_IMAGES_TO_CACHE."):this._imageCache.put(e,t))}clear(e=!1){e||this._refCache.clear(),this._imageCache.clear()}}t.GlobalImageCache=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getQuadPoints=f,t.MarkupAnnotation=t.AnnotationFactory=t.AnnotationBorderStyle=t.Annotation=void 0;var i=r(2),n=r(10),a=r(5),s=r(23),o=r(8),h=r(26),l=r(12),c=r(27);class u{static create(e,t,r,i){return r.ensureCatalog("acroForm").then(n=>r.ensure(this,"_create",[e,t,r,i,n]))}static _create(e,t,r,n,s){const h=e.fetchIfRef(t);if(!(0,a.isDict)(h))return;const l=(0,a.isRef)(t)?t.toString():"annot_"+n.createObjId();let c=h.get("Subtype");c=(0,a.isName)(c)?c.name:null;const u={xref:e,ref:t,dict:h,subtype:c,id:l,pdfManager:r,acroForm:s instanceof a.Dict?s:a.Dict.empty};switch(c){case"Link":return new _(u);case"Text":return new M(u);case"Widget":let e=(0,o.getInheritableProperty)({dict:h,key:"FT"});switch(e=(0,a.isName)(e)?e.name:null,e){case"Tx":return new v(u);case"Btn":return new y(u);case"Ch":return new w(u)}return(0,i.warn)('Unimplemented widget field type "'+e+'", falling back to base field type.'),new b(u);case"Popup":return new S(u);case"FreeText":return new k(u);case"Line":return new A(u);case"Square":return new x(u);case"Circle":return new C(u);case"PolyLine":return new E(u);case"Polygon":return new T(u);case"Caret":return new R(u);case"Ink":return new I(u);case"Highlight":return new P(u);case"Underline":return new O(u);case"Squiggly":return new F(u);case"StrikeOut":return new L(u);case"Stamp":return new D(u);case"FileAttachment":return new N(u);default:return c?(0,i.warn)('Unimplemented annotation type "'+c+'", falling back to base annotation.'):(0,i.warn)("Annotation is missing the required /Subtype."),new p(u)}}}function f(e,t){if(!e.has("QuadPoints"))return null;const r=e.getArray("QuadPoints");if(!Array.isArray(r)||r.length%8>0)return null;const i=[];for(let n=0,a=r.length/8;n<a;n++){i.push([]);for(let e=8*n,a=8*n+8;e<a;e+=2){const a=r[e],s=r[e+1];if(a<t[0]||a>t[2]||s<t[1]||s>t[3])return null;i[n].push({x:a,y:s})}}return i}function d(e,t,r){const[n,a,s,o]=i.Util.getAxialAlignedBoundingBox(t,r);if(n===s||a===o)return[1,0,0,1,e[0],e[1]];const h=(e[2]-e[0])/(s-n),l=(e[3]-e[1])/(o-a);return[h,0,0,l,e[0]-n*h,e[1]-a*l]}t.AnnotationFactory=u;class p{constructor(e){const t=e.dict;this.setContents(t.get("Contents")),this.setModificationDate(t.get("M")),this.setFlags(t.get("F")),this.setRectangle(t.getArray("Rect")),this.setColor(t.getArray("C")),this.setBorderStyle(t),this.setAppearance(t),this.data={annotationFlags:this.flags,borderStyle:this.borderStyle,color:this.color,contents:this.contents,hasAppearance:!!this.appearance,id:e.id,modificationDate:this.modificationDate,rect:this.rectangle,subtype:e.subtype}}_hasFlag(e,t){return!!(e&t)}_isViewable(e){return!this._hasFlag(e,i.AnnotationFlag.INVISIBLE)&&!this._hasFlag(e,i.AnnotationFlag.HIDDEN)&&!this._hasFlag(e,i.AnnotationFlag.NOVIEW)}_isPrintable(e){return this._hasFlag(e,i.AnnotationFlag.PRINT)&&!this._hasFlag(e,i.AnnotationFlag.INVISIBLE)&&!this._hasFlag(e,i.AnnotationFlag.HIDDEN)}get viewable(){return 0===this.flags||this._isViewable(this.flags)}get printable(){return 0!==this.flags&&this._isPrintable(this.flags)}setContents(e){this.contents=(0,i.stringToPDFString)(e||"")}setModificationDate(e){this.modificationDate=(0,i.isString)(e)?e:null}setFlags(e){this.flags=Number.isInteger(e)&&e>0?e:0}hasFlag(e){return this._hasFlag(this.flags,e)}setRectangle(e){Array.isArray(e)&&4===e.length?this.rectangle=i.Util.normalizeRect(e):this.rectangle=[0,0,0,0]}setColor(e){const t=new Uint8ClampedArray(3);if(Array.isArray(e))switch(e.length){case 0:this.color=null;break;case 1:s.ColorSpace.singletons.gray.getRgbItem(e,0,t,0),this.color=t;break;case 3:s.ColorSpace.singletons.rgb.getRgbItem(e,0,t,0),this.color=t;break;case 4:s.ColorSpace.singletons.cmyk.getRgbItem(e,0,t,0),this.color=t;break;default:this.color=t;break}else this.color=t}setBorderStyle(e){if(this.borderStyle=new m,(0,a.isDict)(e))if(e.has("BS")){const t=e.get("BS"),r=t.get("Type");r&&!(0,a.isName)(r,"Border")||(this.borderStyle.setWidth(t.get("W"),this.rectangle),this.borderStyle.setStyle(t.get("S")),this.borderStyle.setDashArray(t.getArray("D")))}else if(e.has("Border")){const t=e.getArray("Border");Array.isArray(t)&&t.length>=3&&(this.borderStyle.setHorizontalCornerRadius(t[0]),this.borderStyle.setVerticalCornerRadius(t[1]),this.borderStyle.setWidth(t[2],this.rectangle),4===t.length&&this.borderStyle.setDashArray(t[3]))}else this.borderStyle.setWidth(0)}setAppearance(e){this.appearance=null;const t=e.get("AP");if(!(0,a.isDict)(t))return;const r=t.get("N");if((0,a.isStream)(r))return void(this.appearance=r);if(!(0,a.isDict)(r))return;const i=e.get("AS");(0,a.isName)(i)&&r.has(i.name)&&(this.appearance=r.get(i.name))}loadResources(e){return this.appearance.dict.getAsync("Resources").then(t=>{if(!t)return;const r=new n.ObjectLoader(t,e,t.xref);return r.load().then((function(){return t}))})}getOperatorList(e,t,r,n){if(!this.appearance)return Promise.resolve(new h.OperatorList);const a=this.appearance,s=this.data,o=a.dict,l=this.loadResources(["ExtGState","ColorSpace","Pattern","Shading","XObject","Font"]),c=o.getArray("BBox")||[0,0,1,1],u=o.getArray("Matrix")||[1,0,0,1,0,0],f=d(s.rect,c,u);return l.then(r=>{const n=new h.OperatorList;return n.addOp(i.OPS.beginAnnotation,[s.rect,f,u]),e.getOperatorList({stream:a,task:t,resources:r,operatorList:n}).then(()=>(n.addOp(i.OPS.endAnnotation,[]),a.reset(),n))})}async save(e,t,r){return null}}t.Annotation=p;class m{constructor(){this.width=1,this.style=i.AnnotationBorderStyleType.SOLID,this.dashArray=[3],this.horizontalCornerRadius=0,this.verticalCornerRadius=0}setWidth(e,t=[0,0,0,0]){if((0,a.isName)(e))this.width=0;else if(Number.isInteger(e)){if(e>0){const r=(t[2]-t[0])/2,n=(t[3]-t[1])/2;r>0&&n>0&&(e>r||e>n)&&((0,i.warn)("AnnotationBorderStyle.setWidth - ignoring width: "+e),e=1)}this.width=e}}setStyle(e){if((0,a.isName)(e))switch(e.name){case"S":this.style=i.AnnotationBorderStyleType.SOLID;break;case"D":this.style=i.AnnotationBorderStyleType.DASHED;break;case"B":this.style=i.AnnotationBorderStyleType.BEVELED;break;case"I":this.style=i.AnnotationBorderStyleType.INSET;break;case"U":this.style=i.AnnotationBorderStyleType.UNDERLINE;break;default:break}}setDashArray(e){if(Array.isArray(e)&&e.length>0){let t=!0,r=!0;for(const i of e){const e=+i>=0;if(!e){t=!1;break}i>0&&(r=!1)}t&&!r?this.dashArray=e:this.width=0}else e&&(this.width=0)}setHorizontalCornerRadius(e){Number.isInteger(e)&&(this.horizontalCornerRadius=e)}setVerticalCornerRadius(e){Number.isInteger(e)&&(this.verticalCornerRadius=e)}}t.AnnotationBorderStyle=m;class g extends p{constructor(e){super(e);const t=e.dict;if(t.has("IRT")){const e=t.getRaw("IRT");this.data.inReplyTo=(0,a.isRef)(e)?e.toString():null;const r=t.get("RT");this.data.replyType=(0,a.isName)(r)?r.name:i.AnnotationReplyType.REPLY}if(this.data.replyType===i.AnnotationReplyType.GROUP){const e=t.get("IRT");this.data.title=(0,i.stringToPDFString)(e.get("T")||""),this.setContents(e.get("Contents")),this.data.contents=this.contents,e.has("CreationDate")?(this.setCreationDate(e.get("CreationDate")),this.data.creationDate=this.creationDate):this.data.creationDate=null,e.has("M")?(this.setModificationDate(e.get("M")),this.data.modificationDate=this.modificationDate):this.data.modificationDate=null,this.data.hasPopup=e.has("Popup"),e.has("C")?(this.setColor(e.getArray("C")),this.data.color=this.color):this.data.color=null}else this.data.title=(0,i.stringToPDFString)(t.get("T")||""),this.setCreationDate(t.get("CreationDate")),this.data.creationDate=this.creationDate,this.data.hasPopup=t.has("Popup"),t.has("C")||(this.data.color=null)}setCreationDate(e){this.creationDate=(0,i.isString)(e)?e:null}}t.MarkupAnnotation=g;class b extends p{constructor(e){super(e);const t=e.dict,r=this.data;this.ref=e.ref,r.annotationType=i.AnnotationType.WIDGET,r.fieldName=this._constructFieldName(t);const n=(0,o.getInheritableProperty)({dict:t,key:"V",getArray:!0});r.fieldValue=this._decodeFormValue(n),r.alternativeText=(0,i.stringToPDFString)(t.get("TU")||""),r.defaultAppearance=(0,o.getInheritableProperty)({dict:t,key:"DA"})||e.acroForm.get("DA")||"";const s=(0,o.getInheritableProperty)({dict:t,key:"FT"});r.fieldType=(0,a.isName)(s)?s.name:null,this.fieldResources=(0,o.getInheritableProperty)({dict:t,key:"DR"})||e.acroForm.get("DR")||a.Dict.empty,r.fieldFlags=(0,o.getInheritableProperty)({dict:t,key:"Ff"}),(!Number.isInteger(r.fieldFlags)||r.fieldFlags<0)&&(r.fieldFlags=0),r.readOnly=this.hasFieldFlag(i.AnnotationFieldFlag.READONLY),"Sig"===r.fieldType&&(r.fieldValue=null,this.setFlags(i.AnnotationFlag.HIDDEN))}_constructFieldName(e){if(!e.has("T")&&!e.has("Parent"))return(0,i.warn)("Unknown field name, falling back to empty field name."),"";if(!e.has("Parent"))return(0,i.stringToPDFString)(e.get("T"));const t=[];e.has("T")&&t.unshift((0,i.stringToPDFString)(e.get("T")));let r=e;while(r.has("Parent")){if(r=r.get("Parent"),!(0,a.isDict)(r))break;r.has("T")&&t.unshift((0,i.stringToPDFString)(r.get("T")))}return t.join(".")}_decodeFormValue(e){return Array.isArray(e)?e.filter(e=>(0,i.isString)(e)).map(e=>(0,i.stringToPDFString)(e)):(0,a.isName)(e)?(0,i.stringToPDFString)(e.name):(0,i.isString)(e)?(0,i.stringToPDFString)(e):null}hasFieldFlag(e){return!!(this.data.fieldFlags&e)}getOperatorList(e,t,r,n){return r?Promise.resolve(new h.OperatorList):this._hasText?this._getAppearance(e,t,n).then(a=>{if(this.appearance&&null===a)return super.getOperatorList(e,t,r,n);const s=new h.OperatorList;if(!this.data.defaultAppearance||null===a)return s;const o=[1,0,0,1,0,0],c=[0,0,this.data.rect[2]-this.data.rect[0],this.data.rect[3]-this.data.rect[1]],u=d(this.data.rect,c,o);s.addOp(i.OPS.beginAnnotation,[this.data.rect,u,o]);const f=new l.StringStream(a);return e.getOperatorList({stream:f,task:t,resources:this.fieldResources,operatorList:s}).then((function(){return s.addOp(i.OPS.endAnnotation,[]),s}))}):super.getOperatorList(e,t,r,n)}async save(e,t,r){if(this.data.fieldValue===r[this.data.id])return null;let n=await this._getAppearance(e,t,r);if(null===n)return null;const s=e.xref.fetchIfRef(this.ref);if(!(0,a.isDict)(s))return null;const o=[0,0,this.data.rect[2]-this.data.rect[0],this.data.rect[3]-this.data.rect[1]],h=e.xref.getNewRef(),l=new a.Dict(e.xref);l.set("N",h);const u=r[this.data.id],f=e.xref.encrypt;let d=null,p=null;f&&(d=f.createCipherTransform(this.ref.num,this.ref.gen),p=f.createCipherTransform(h.num,h.gen),n=p.encryptString(n)),s.set("V",u),s.set("AP",l),s.set("M","D:"+(0,i.getModificationDate)());const m=new a.Dict(e.xref);m.set("Length",n.length),m.set("Subtype",a.Name.get("Form")),m.set("Resources",this.fieldResources),m.set("BBox",o);const g=[`${this.ref.num} ${this.ref.gen} obj\n`];(0,c.writeDict)(s,g,d),g.push("\nendobj\n");const b=[`${h.num} ${h.gen} obj\n`];return(0,c.writeDict)(m,b,p),b.push(" stream\n"),b.push(n),b.push("\nendstream\nendobj\n"),[{ref:this.ref,data:g.join("")},{ref:h,data:b.join("")}]}async _getAppearance(e,t,r){const n=this.hasFieldFlag(i.AnnotationFieldFlag.PASSWORD);if(!r||n)return null;const a=r[this.data.id];if(""===a)return"";const s=2,o=s,h=this.data.rect[3]-this.data.rect[1],l=this.data.rect[2]-this.data.rect[0],c=await this._getFontData(e,t),[u,f]=c;let d=c[2];d=this._computeFontSize(u,f,d,h);let p=u.descent;isNaN(p)&&(p=0);const m=s+Math.abs(p)*d,g=this.data.defaultAppearance,b=this.data.textAlignment;if(this.data.comb)return this._getCombAppearance(g,a,l,o,m);if(this.data.multiLine)return this._getMultilineAppearance(g,a,u,d,l,h,b,o,m);if(0===b||b>2)return"/Tx BMC q BT "+g+` 1 0 0 1 ${o} ${m} Tm (${(0,i.escapeString)(a)}) Tj ET Q EMC`;const v=this._renderText(a,u,d,l,b,o,m);return"/Tx BMC q BT "+g+" 1 0 0 1 0 0 Tm "+v+" ET Q EMC"}async _getFontData(e,t){const r=new h.OperatorList,i={fontSize:0,font:null,fontName:null,clone(){return this}};return await e.getOperatorList({stream:new l.StringStream(this.data.defaultAppearance),task:t,resources:this.fieldResources,operatorList:r,initialState:i}),[i.font,i.fontName,i.fontSize]}_computeFontSize(e,t,r,i){if(null===r||0===r){const n=e.charsToGlyphs("M",!0)[0].width/1e3,a=.7*n;r=Math.max(1,Math.floor(i/(1.5*a)));let s=new RegExp(`/${t}\\s+[0-9.]+\\s+Tf`);-1===this.data.defaultAppearance.search(s)&&(s=new RegExp(`/${t}\\s+Tf`)),this.data.defaultAppearance=this.data.defaultAppearance.replace(s,`/${t} ${r} Tf`)}return r}_renderText(e,t,r,n,a,s,o){const h=t.charsToGlyphs(e),l=r/1e3;let c,u=0;for(const i of h)u+=i.width*l;return c=1===a?(n-u)/2:2===a?n-u-s:s,c=c.toFixed(2),o=o.toFixed(2),`${c} ${o} Td (${(0,i.escapeString)(e)}) Tj`}}class v extends b{constructor(e){super(e),this._hasText=!0;const t=e.dict;(0,i.isString)(this.data.fieldValue)||(this.data.fieldValue="");let r=(0,o.getInheritableProperty)({dict:t,key:"Q"});(!Number.isInteger(r)||r<0||r>2)&&(r=null),this.data.textAlignment=r;let n=(0,o.getInheritableProperty)({dict:t,key:"MaxLen"});(!Number.isInteger(n)||n<0)&&(n=null),this.data.maxLen=n,this.data.multiLine=this.hasFieldFlag(i.AnnotationFieldFlag.MULTILINE),this.data.comb=this.hasFieldFlag(i.AnnotationFieldFlag.COMB)&&!this.hasFieldFlag(i.AnnotationFieldFlag.MULTILINE)&&!this.hasFieldFlag(i.AnnotationFieldFlag.PASSWORD)&&!this.hasFieldFlag(i.AnnotationFieldFlag.FILESELECT)&&null!==this.data.maxLen}_getCombAppearance(e,t,r,n,a){const s=(r/this.data.maxLen).toFixed(2),o=[];for(const l of t)o.push(`(${(0,i.escapeString)(l)}) Tj`);const h=o.join(` ${s} 0 Td `);return"/Tx BMC q BT "+e+` 1 0 0 1 ${n} ${a} Tm ${h} ET Q EMC`}_getMultilineAppearance(e,t,r,i,n,a,s,o,h){const l=t.split(/\r\n|\r|\n/),c=[],u=n-2*o;for(const d of l){const e=this._splitLine(d,r,i,u);for(const t of e){const e=0===c.length?o:0;c.push(this._renderText(t,r,i,n,s,e,-i))}}const f=c.join("\n");return"/Tx BMC q BT "+e+` 1 0 0 1 0 ${a} Tm ${f} ET Q EMC`}_splitLine(e,t,r,i){if(e.length<=1)return[e];const n=r/1e3,a=t.charsToGlyphs(" ",!0)[0].width*n,s=[];let o=-1,h=0,l=0;for(let c=0,u=e.length;c<u;c++){const r=e.charAt(c);if(" "===r)l+a>i?(s.push(e.substring(h,c)),h=c,l=a,o=-1):(l+=a,o=c);else{const a=t.charsToGlyphs(r,!1)[0].width*n;l+a>i?-1!==o?(s.push(e.substring(h,o+1)),h=c=o+1,o=-1,l=0):(s.push(e.substring(h,c)),h=c,l=a):l+=a}}return h<e.length&&s.push(e.substring(h,e.length)),s}}class y extends b{constructor(e){super(e),this.checkedAppearance=null,this.uncheckedAppearance=null,this.data.checkBox=!this.hasFieldFlag(i.AnnotationFieldFlag.RADIO)&&!this.hasFieldFlag(i.AnnotationFieldFlag.PUSHBUTTON),this.data.radioButton=this.hasFieldFlag(i.AnnotationFieldFlag.RADIO)&&!this.hasFieldFlag(i.AnnotationFieldFlag.PUSHBUTTON),this.data.pushButton=this.hasFieldFlag(i.AnnotationFieldFlag.PUSHBUTTON),this.data.checkBox?this._processCheckBox(e):this.data.radioButton?this._processRadioButton(e):this.data.pushButton?this._processPushButton(e):(0,i.warn)("Invalid field flags for button widget annotation")}getOperatorList(e,t,r,i){if(this.data.pushButton)return super.getOperatorList(e,t,!1,i);if(i){const n=i[this.data.id]||!1;let a;if(a=n?this.checkedAppearance:this.uncheckedAppearance,a){const n=this.appearance;this.appearance=a;const s=super.getOperatorList(e,t,r,i);return this.appearance=n,s}return Promise.resolve(new h.OperatorList)}return super.getOperatorList(e,t,r,i)}async save(e,t,r){return this.data.checkBox?this._saveCheckbox(e,t,r):this.data.radioButton?this._saveRadioButton(e,t,r):super.save(e,t,r)}async _saveCheckbox(e,t,r){const n=this.data.fieldValue&&"Off"!==this.data.fieldValue,s=r[this.data.id];if(n===s)return null;const o=e.xref.fetchIfRef(this.ref);if(!(0,a.isDict)(o))return null;const h=a.Name.get(s?this.data.exportValue:"Off");o.set("V",h),o.set("AS",h),o.set("M","D:"+(0,i.getModificationDate)());const l=e.xref.encrypt;let u=null;l&&(u=l.createCipherTransform(this.ref.num,this.ref.gen));const f=[`${this.ref.num} ${this.ref.gen} obj\n`];return(0,c.writeDict)(o,f,u),f.push("\nendobj\n"),[{ref:this.ref,data:f.join("")}]}async _saveRadioButton(e,t,r){const n=this.data.fieldValue===this.data.buttonValue,s=r[this.data.id];if(n===s)return null;const o=e.xref.fetchIfRef(this.ref);if(!(0,a.isDict)(o))return null;const h=a.Name.get(s?this.data.buttonValue:"Off");let l=null;const u=e.xref.encrypt;if(s)if((0,a.isRef)(this.parent)){const t=e.xref.fetch(this.parent);let r=null;u&&(r=u.createCipherTransform(this.parent.num,this.parent.gen)),t.set("V",h),l=[`${this.parent.num} ${this.parent.gen} obj\n`],(0,c.writeDict)(t,l,r),l.push("\nendobj\n")}else(0,a.isDict)(this.parent)&&this.parent.set("V",h);o.set("AS",h),o.set("M","D:"+(0,i.getModificationDate)());let f=null;u&&(f=u.createCipherTransform(this.ref.num,this.ref.gen));const d=[`${this.ref.num} ${this.ref.gen} obj\n`];(0,c.writeDict)(o,d,f),d.push("\nendobj\n");const p=[{ref:this.ref,data:d.join("")}];return null!==l&&p.push({ref:this.parent,data:l.join("")}),p}_processCheckBox(e){const t=e.dict.get("AP");if(!(0,a.isDict)(t))return;const r=t.get("N");if(!(0,a.isDict)(r))return;const i=r.getKeys();i.includes("Off")||i.push("Off"),2===i.length&&(this.data.exportValue="Off"===i[0]?i[1]:i[0],this.checkedAppearance=r.get(this.data.exportValue),this.uncheckedAppearance=r.get("Off")||null)}_processRadioButton(e){this.data.fieldValue=this.data.buttonValue=null;const t=e.dict.get("Parent");if((0,a.isDict)(t)&&t.has("V")){const r=t.get("V");(0,a.isName)(r)&&(this.parent=e.dict.getRaw("Parent"),this.data.fieldValue=this._decodeFormValue(r))}const r=e.dict.get("AP");if(!(0,a.isDict)(r))return;const i=r.get("N");if((0,a.isDict)(i)){for(const e of i.getKeys())if("Off"!==e){this.data.buttonValue=e;break}this.checkedAppearance=i.get(this.data.buttonValue),this.uncheckedAppearance=i.get("Off")||null}}_processPushButton(e){e.dict.has("A")?n.Catalog.parseDestDictionary({destDict:e.dict,resultObj:this.data,docBaseUrl:e.pdfManager.docBaseUrl}):(0,i.warn)("Push buttons without action dictionaries are not supported")}}class w extends b{constructor(e){super(e),this.data.options=[];const t=(0,o.getInheritableProperty)({dict:e.dict,key:"Opt"});if(Array.isArray(t)){const r=e.xref;for(let e=0,i=t.length;e<i;e++){const i=r.fetchIfRef(t[e]),n=Array.isArray(i);this.data.options[e]={exportValue:this._decodeFormValue(n?r.fetchIfRef(i[0]):i),displayValue:this._decodeFormValue(n?r.fetchIfRef(i[1]):i)}}}(0,i.isString)(this.data.fieldValue)?this.data.fieldValue=[this.data.fieldValue]:this.data.fieldValue||(this.data.fieldValue=[]),this.data.combo=this.hasFieldFlag(i.AnnotationFieldFlag.COMBO),this.data.multiSelect=this.hasFieldFlag(i.AnnotationFieldFlag.MULTISELECT),this._hasText=!0}}class M extends g{constructor(e){const t=22;super(e);const r=e.dict;this.data.annotationType=i.AnnotationType.TEXT,this.data.hasAppearance?this.data.name="NoIcon":(this.data.rect[1]=this.data.rect[3]-t,this.data.rect[2]=this.data.rect[0]+t,this.data.name=r.has("Name")?r.get("Name").name:"Note"),r.has("State")?(this.data.state=r.get("State")||null,this.data.stateModel=r.get("StateModel")||null):(this.data.state=null,this.data.stateModel=null)}}class _ extends p{constructor(e){super(e),this.data.annotationType=i.AnnotationType.LINK;const t=f(e.dict,this.rectangle);t&&(this.data.quadPoints=t),n.Catalog.parseDestDictionary({destDict:e.dict,resultObj:this.data,docBaseUrl:e.pdfManager.docBaseUrl})}}class S extends p{constructor(e){super(e),this.data.annotationType=i.AnnotationType.POPUP;let t=e.dict.get("Parent");if(!t)return void(0,i.warn)("Popup annotation has a missing or invalid parent annotation.");const r=t.get("Subtype");this.data.parentType=(0,a.isName)(r)?r.name:null;const n=e.dict.getRaw("Parent");this.data.parentId=(0,a.isRef)(n)?n.toString():null;const s=t.get("RT");if((0,a.isName)(s,i.AnnotationReplyType.GROUP)&&(t=t.get("IRT")),t.has("M")?(this.setModificationDate(t.get("M")),this.data.modificationDate=this.modificationDate):this.data.modificationDate=null,t.has("C")?(this.setColor(t.getArray("C")),this.data.color=this.color):this.data.color=null,!this.viewable){const e=t.get("F");this._isViewable(e)&&this.setFlags(e)}this.data.title=(0,i.stringToPDFString)(t.get("T")||""),this.data.contents=(0,i.stringToPDFString)(t.get("Contents")||"")}}class k extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.FREETEXT}}class A extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.LINE,this.data.lineCoordinates=i.Util.normalizeRect(e.dict.getArray("L"))}}class x extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.SQUARE}}class C extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.CIRCLE}}class E extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.POLYLINE;const t=e.dict.getArray("Vertices");this.data.vertices=[];for(let r=0,i=t.length;r<i;r+=2)this.data.vertices.push({x:t[r],y:t[r+1]})}}class T extends E{constructor(e){super(e),this.data.annotationType=i.AnnotationType.POLYGON}}class R extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.CARET}}class I extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.INK;const t=e.xref,r=e.dict.getArray("InkList");this.data.inkLists=[];for(let i=0,n=r.length;i<n;++i){this.data.inkLists.push([]);for(let e=0,n=r[i].length;e<n;e+=2)this.data.inkLists[i].push({x:t.fetchIfRef(r[i][e]),y:t.fetchIfRef(r[i][e+1])})}}}class P extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.HIGHLIGHT;const t=f(e.dict,this.rectangle);t&&(this.data.quadPoints=t)}}class O extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.UNDERLINE;const t=f(e.dict,this.rectangle);t&&(this.data.quadPoints=t)}}class F extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.SQUIGGLY;const t=f(e.dict,this.rectangle);t&&(this.data.quadPoints=t)}}class L extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.STRIKEOUT;const t=f(e.dict,this.rectangle);t&&(this.data.quadPoints=t)}}class D extends g{constructor(e){super(e),this.data.annotationType=i.AnnotationType.STAMP}}class N extends g{constructor(e){super(e);const t=new n.FileSpec(e.dict.get("FS"),e.xref);this.data.annotationType=i.AnnotationType.FILEATTACHMENT,this.data.file=t.serializable}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OperatorList=void 0;var i=r(2),n=function(){function e(e,t,r,i,n){for(var a=e,s=0,o=t.length-1;s<o;s++){var h=t[s];a=a[h]||(a[h]=[])}a[t[t.length-1]]={checkFn:r,iterateFn:i,processFn:n}}function t(e,t,r,n){for(var a=e+2,s=0;s<t;s++){var o=n[a+4*s],h=1===o.length&&o[0];if(!h||1!==h.width||1!==h.height||h.data.length&&(1!==h.data.length||0!==h.data[0]))break;r[a+4*s]=i.OPS.paintSolidColorImageMask}return t-s}var r=[];function n(e){this.queue=e,this.state=null,this.context={iCurr:0,fnArray:e.fnArray,argsArray:e.argsArray},this.match=null,this.lastProcessed=0}return e(r,[i.OPS.save,i.OPS.transform,i.OPS.paintInlineImageXObject,i.OPS.restore],null,(function(e,t){var r=e.fnArray,n=e.iCurr-3,a=(t-n)%4;switch(a){case 0:return r[t]===i.OPS.save;case 1:return r[t]===i.OPS.transform;case 2:return r[t]===i.OPS.paintInlineImageXObject;case 3:return r[t]===i.OPS.restore}throw new Error("iterateInlineImageGroup - invalid pos: "+a)}),(function(e,t){var r=10,n=200,a=1e3,s=1,o=e.fnArray,h=e.argsArray,l=e.iCurr,c=l-3,u=l-2,f=l-1,d=Math.min(Math.floor((t-c)/4),n);if(d<r)return t-(t-c)%4;var p,m=0,g=[],b=0,v=s,y=s;for(p=0;p<d;p++){var w=h[u+(p<<2)],M=h[f+(p<<2)][0];v+M.width>a&&(m=Math.max(m,v),y+=b+2*s,v=0,b=0),g.push({transform:w,x:v,y:y,w:M.width,h:M.height}),v+=M.width+2*s,b=Math.max(b,M.height)}var _=Math.max(m,v)+s,S=y+b+s,k=new Uint8ClampedArray(_*S*4),A=_<<2;for(p=0;p<d;p++){var x=h[f+(p<<2)][0].data,C=g[p].w<<2,E=0,T=g[p].x+g[p].y*_<<2;k.set(x.subarray(0,C),T-A);for(var R=0,I=g[p].h;R<I;R++)k.set(x.subarray(E,E+C),T),E+=C,T+=A;k.set(x.subarray(E-C,E),T);while(T>=0)x[T-4]=x[T],x[T-3]=x[T+1],x[T-2]=x[T+2],x[T-1]=x[T+3],x[T+C]=x[T+C-4],x[T+C+1]=x[T+C-3],x[T+C+2]=x[T+C-2],x[T+C+3]=x[T+C-1],T-=A}return o.splice(c,4*d,i.OPS.paintInlineImageXObjectGroup),h.splice(c,4*d,[{width:_,height:S,kind:i.ImageKind.RGBA_32BPP,data:k},g]),c+1})),e(r,[i.OPS.save,i.OPS.transform,i.OPS.paintImageMaskXObject,i.OPS.restore],null,(function(e,t){var r=e.fnArray,n=e.iCurr-3,a=(t-n)%4;switch(a){case 0:return r[t]===i.OPS.save;case 1:return r[t]===i.OPS.transform;case 2:return r[t]===i.OPS.paintImageMaskXObject;case 3:return r[t]===i.OPS.restore}throw new Error("iterateImageMaskGroup - invalid pos: "+a)}),(function(e,r){var n,a=10,s=100,o=1e3,h=e.fnArray,l=e.argsArray,c=e.iCurr,u=c-3,f=c-2,d=c-1,p=Math.floor((r-u)/4);if(p=t(u,p,h,l),p<a)return r-(r-u)%4;var m,g,b=!1,v=l[d][0];const y=l[f][0],w=l[f][1],M=l[f][2],_=l[f][3];if(w===M){b=!0,m=f+4;var S=d+4;for(n=1;n<p;n++,m+=4,S+=4)if(g=l[m],l[S][0]!==v||g[0]!==y||g[1]!==w||g[2]!==M||g[3]!==_){n<a?b=!1:p=n;break}}if(b){p=Math.min(p,o);var k=new Float32Array(2*p);for(m=f,n=0;n<p;n++,m+=4)g=l[m],k[n<<1]=g[4],k[1+(n<<1)]=g[5];h.splice(u,4*p,i.OPS.paintImageMaskXObjectRepeat),l.splice(u,4*p,[v,y,w,M,_,k])}else{p=Math.min(p,s);var A=[];for(n=0;n<p;n++){g=l[f+(n<<2)];var x=l[d+(n<<2)][0];A.push({data:x.data,width:x.width,height:x.height,transform:g})}h.splice(u,4*p,i.OPS.paintImageMaskXObjectGroup),l.splice(u,4*p,[A])}return u+1})),e(r,[i.OPS.save,i.OPS.transform,i.OPS.paintImageXObject,i.OPS.restore],(function(e){var t=e.argsArray,r=e.iCurr-2;return 0===t[r][1]&&0===t[r][2]}),(function(e,t){var r=e.fnArray,n=e.argsArray,a=e.iCurr-3,s=(t-a)%4;switch(s){case 0:return r[t]===i.OPS.save;case 1:if(r[t]!==i.OPS.transform)return!1;var o=e.iCurr-2,h=n[o][0],l=n[o][3];return n[t][0]===h&&0===n[t][1]&&0===n[t][2]&&n[t][3]===l;case 2:if(r[t]!==i.OPS.paintImageXObject)return!1;var c=e.iCurr-1,u=n[c][0];return n[t][0]===u;case 3:return r[t]===i.OPS.restore}throw new Error("iterateImageGroup - invalid pos: "+s)}),(function(e,t){var r=3,n=1e3,a=e.fnArray,s=e.argsArray,o=e.iCurr,h=o-3,l=o-2,c=o-1,u=s[c][0],f=s[l][0],d=s[l][3],p=Math.min(Math.floor((t-h)/4),n);if(p<r)return t-(t-h)%4;for(var m=new Float32Array(2*p),g=l,b=0;b<p;b++,g+=4){var v=s[g];m[b<<1]=v[4],m[1+(b<<1)]=v[5]}var y=[u,f,d,m];return a.splice(h,4*p,i.OPS.paintImageXObjectRepeat),s.splice(h,4*p,y),h+1})),e(r,[i.OPS.beginText,i.OPS.setFont,i.OPS.setTextMatrix,i.OPS.showText,i.OPS.endText],null,(function(e,t){var r=e.fnArray,n=e.argsArray,a=e.iCurr-4,s=(t-a)%5;switch(s){case 0:return r[t]===i.OPS.beginText;case 1:return r[t]===i.OPS.setFont;case 2:return r[t]===i.OPS.setTextMatrix;case 3:if(r[t]!==i.OPS.showText)return!1;var o=e.iCurr-3,h=n[o][0],l=n[o][1];return n[t][0]===h&&n[t][1]===l;case 4:return r[t]===i.OPS.endText}throw new Error("iterateShowTextGroup - invalid pos: "+s)}),(function(e,t){var r=3,i=1e3,n=e.fnArray,a=e.argsArray,s=e.iCurr,o=s-4,h=s-3,l=s-2,c=s-1,u=s,f=a[h][0],d=a[h][1],p=Math.min(Math.floor((t-o)/5),i);if(p<r)return t-(t-o)%5;var m=o;o>=4&&n[o-4]===n[h]&&n[o-3]===n[l]&&n[o-2]===n[c]&&n[o-1]===n[u]&&a[o-4][0]===f&&a[o-4][1]===d&&(p++,m-=5);for(var g=m+4,b=1;b<p;b++)n.splice(g,3),a.splice(g,3),g+=2;return g+1})),n.prototype={_optimize(){const e=this.queue.fnArray;let t=this.lastProcessed,i=e.length,n=this.state,a=this.match;if(!n&&!a&&t+1===i&&!r[e[t]])return void(this.lastProcessed=i);const s=this.context;while(t<i){if(a){const r=(0,a.iterateFn)(s,t);if(r){t++;continue}if(t=(0,a.processFn)(s,t+1),i=e.length,a=null,n=null,t>=i)break}n=(n||r)[e[t]],n&&!Array.isArray(n)?(s.iCurr=t,t++,!n.checkFn||(0,n.checkFn)(s)?(a=n,n=null):n=null):t++}this.state=n,this.match=a,this.lastProcessed=t},push(e,t){this.queue.fnArray.push(e),this.queue.argsArray.push(t),this._optimize()},flush(){while(this.match){const e=this.queue.fnArray.length;this.lastProcessed=(0,this.match.processFn)(this.context,e),this.match=null,this.state=null,this._optimize()}},reset(){this.state=null,this.match=null,this.lastProcessed=0}},n}(),a=function(){function e(e){this.queue=e}return e.prototype={push(e,t){this.queue.fnArray.push(e),this.queue.argsArray.push(t)},flush(){},reset(){}},e}(),s=function(){var e=1e3,t=e-5;function r(e,t){this._streamSink=t,this.fnArray=[],this.argsArray=[],this.optimizer=t&&"oplist"!==e?new n(this):new a(this),this.dependencies=new Set,this._totalLength=0,this.weight=0,this._resolved=t?null:Promise.resolve()}return r.prototype={get length(){return this.argsArray.length},get ready(){return this._resolved||this._streamSink.ready},get totalLength(){return this._totalLength+this.length},addOp(r,n){this.optimizer.push(r,n),this.weight++,this._streamSink&&(this.weight>=e||this.weight>=t&&(r===i.OPS.restore||r===i.OPS.endText))&&this.flush()},addDependency(e){this.dependencies.has(e)||(this.dependencies.add(e),this.addOp(i.OPS.dependency,[e]))},addDependencies(e){for(const t of e)this.addDependency(t)},addOpList(e){if(e instanceof r){for(const t of e.dependencies)this.dependencies.add(t);for(var t=0,n=e.length;t<n;t++)this.addOp(e.fnArray[t],e.argsArray[t])}else(0,i.warn)('addOpList - ignoring invalid "opList" parameter.')},getIR(){return{fnArray:this.fnArray,argsArray:this.argsArray,length:this.length}},get _transfers(){const e=[],{fnArray:t,argsArray:r,length:n}=this;for(let a=0;a<n;a++)switch(t[a]){case i.OPS.paintInlineImageXObject:case i.OPS.paintInlineImageXObjectGroup:case i.OPS.paintImageMaskXObject:const t=r[a][0];t.cached||e.push(t.data.buffer);break}return e},flush(e=!1){this.optimizer.flush();const t=this.length;this._totalLength+=t,this._streamSink.enqueue({fnArray:this.fnArray,argsArray:this.argsArray,lastChunk:e,length:t},1,this._transfers),this.dependencies.clear(),this.fnArray.length=0,this.argsArray.length=0,this.weight=0,this.optimizer.reset()}},r}();t.OperatorList=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.writeDict=s,t.incrementalUpdate=p;var i=r(2),n=r(5),a=r(22);function s(e,t,r){t.push("<<");for(const i of e.getKeys())t.push(` /${i} `),c(e.getRaw(i),t,r);t.push(">>")}function o(e,t,r){s(e.dict,t,r),t.push(" stream\n");let n=(0,i.bytesToString)(e.getBytes());null!==r&&(n=r.encryptString(n)),t.push(n),t.push("\nendstream\n")}function h(e,t,r){t.push("[");let i=!0;for(const n of e)i?i=!1:t.push(" "),c(n,t,r);t.push("]")}function l(e){if(Number.isInteger(e))return e.toString();const t=Math.round(100*e);return t%100===0?(t/100).toString():t%10===0?e.toFixed(1):e.toFixed(2)}function c(e,t,r){(0,n.isName)(e)?t.push("/"+e.name):(0,n.isRef)(e)?t.push(`${e.num} ${e.gen} R`):Array.isArray(e)?h(e,t,r):"string"===typeof e?(null!==r&&(e=r.encryptString(e)),t.push(`(${(0,i.escapeString)(e)})`)):"number"===typeof e?t.push(l(e)):(0,n.isDict)(e)?s(e,t,r):(0,n.isStream)(e)&&o(e,t,r)}function u(e,t,r,i){for(let n=t+r-1;n>r-1;n--)i[n]=255&e,e>>=8;return r+t}function f(e,t,r){for(let i=0,n=e.length;i<n;i++)r[t+i]=255&e.charCodeAt(i)}function d(e,t){const r=Math.floor(Date.now()/1e3),n=t.filename||"",s=[r.toString(),n,e.toString()];let o=s.reduce((e,t)=>e+t.length,0);for(const i of Object.values(t.info))s.push(i),o+=i.length;const h=new Uint8Array(o);let l=0;for(const i of s)f(i,l,h),l+=i.length;return(0,i.bytesToString)((0,a.calculateMD5)(h))}function p(e,t,r){const i=new n.Dict(null),a=t.newRef;let o,h;const l=e[e.length-1];10===l||13===l?(o=[],h=e.length):(o=["\n"],h=e.length+1),i.set("Size",a.num+1),i.set("Prev",t.startXRef),i.set("Type",n.Name.get("XRef")),null!==t.rootRef&&i.set("Root",t.rootRef),null!==t.infoRef&&i.set("Info",t.infoRef),null!==t.encrypt&&i.set("Encrypt",t.encrypt),r.push({ref:a,data:""}),r=r.sort((e,t)=>e.ref.num-t.ref.num);const c=[[0,1,65535]],p=[0,1];let m=0;for(const{ref:n,data:s}of r)m=Math.max(m,h),c.push([1,h,Math.min(n.gen,65535)]),h+=s.length,p.push(n.num),p.push(1),o.push(s);if(i.set("Index",p),0!==t.fileIds.length){const e=d(h,t);i.set("ID",[t.fileIds[0],e])}const g=Math.ceil(Math.log2(m)/8),b=[1,g,2],v=b[0]+b[1]+b[2],y=v*c.length;i.set("W",b),i.set("Length",y),o.push(`${a.num} ${a.gen} obj\n`),s(i,o,null),o.push(" stream\n");const w=o.reduce((e,t)=>e+t.length,0),M=`\nendstream\nendobj\nstartxref\n${h}\n%%EOF\n`,_=new Uint8Array(e.length+w+y+M.length);_.set(e);let S=e.length;for(const n of o)f(n,S,_),S+=n.length;for(const[n,s,f]of c)S=u(n,b[0],S,_),S=u(s,b[1],S,_),S=u(f,b[2],S,_);return f(M,S,_),_}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PartialEvaluator=void 0;var i=r(2),n=r(29),a=r(5),s=r(30),o=r(33),h=r(8),l=r(36),c=r(35),u=r(39),f=r(40),d=r(11),p=r(24),m=r(42),g=r(23),b=r(12),v=r(34),y=r(43),w=r(44),M=r(26),_=r(45);const S=Object.freeze({maxImageSize:-1,disableFontFace:!1,ignoreErrors:!1,isEvalSupported:!0,fontExtraProperties:!1}),k={TILING:1,SHADING:2},A=Promise.resolve();function x(e,t=!1){if(Array.isArray(e)){for(let t=0,r=e.length;t<r;t++){const r=x(e[t],!0);if(r)return r}return(0,i.warn)("Unsupported blend mode Array: "+e),"source-over"}if(!(0,a.isName)(e))return t?null:"source-over";switch(e.name){case"Normal":case"Compatible":return"source-over";case"Multiply":return"multiply";case"Screen":return"screen";case"Overlay":return"overlay";case"Darken":return"darken";case"Lighten":return"lighten";case"ColorDodge":return"color-dodge";case"ColorBurn":return"color-burn";case"HardLight":return"hard-light";case"SoftLight":return"soft-light";case"Difference":return"difference";case"Exclusion":return"exclusion";case"Hue":return"hue";case"Saturation":return"saturation";case"Color":return"color";case"Luminosity":return"luminosity"}return t?null:((0,i.warn)("Unsupported blend mode: "+e.name),"source-over")}class C{static get TIME_SLOT_DURATION_MS(){return(0,i.shadow)(this,"TIME_SLOT_DURATION_MS",20)}static get CHECK_TIME_EVERY(){return(0,i.shadow)(this,"CHECK_TIME_EVERY",100)}constructor(){this.reset()}check(){return!(++this.checked<C.CHECK_TIME_EVERY)&&(this.checked=0,this.endTime<=Date.now())}reset(){this.endTime=Date.now()+C.TIME_SLOT_DURATION_MS,this.checked=0}}class E{constructor({xref:e,handler:t,pageIndex:r,idFactory:i,fontCache:n,builtInCMapCache:a,globalImageCache:s,options:o=null}){this.xref=e,this.handler=t,this.pageIndex=r,this.idFactory=i,this.fontCache=n,this.builtInCMapCache=a,this.globalImageCache=s,this.options=o||S,this.parsingType3Font=!1,this._fetchBuiltInCMapBound=this.fetchBuiltInCMap.bind(this)}get _pdfFunctionFactory(){const e=new f.PDFFunctionFactory({xref:this.xref,isEvalSupported:this.options.isEvalSupported});return(0,i.shadow)(this,"_pdfFunctionFactory",e)}clone(e=S){var t=Object.create(this);return t.options=e,t}hasBlendModes(e){if(!(e instanceof a.Dict))return!1;const t=new a.RefSet;e.objId&&t.put(e.objId);var r=[e],n=this.xref;while(r.length){var s=r.shift(),o=s.get("ExtGState");if(o instanceof a.Dict)for(let e of o.getRawValues()){if(e instanceof a.Ref){if(t.has(e))continue;try{e=n.fetch(e)}catch(u){if(u instanceof h.MissingDataException)throw u;t.put(e),(0,i.info)(`hasBlendModes - ignoring ExtGState: "${u}".`);continue}}if(!(e instanceof a.Dict))continue;e.objId&&t.put(e.objId);const r=e.get("BM");if(r instanceof a.Name){if("Normal"!==r.name)return!0}else if(void 0!==r&&Array.isArray(r))for(const e of r)if(e instanceof a.Name&&"Normal"!==e.name)return!0}var l=s.get("XObject");if(l instanceof a.Dict)for(let e of l.getRawValues()){if(e instanceof a.Ref){if(t.has(e))continue;try{e=n.fetch(e)}catch(u){if(u instanceof h.MissingDataException)throw u;t.put(e),(0,i.info)(`hasBlendModes - ignoring XObject: "${u}".`);continue}}if((0,a.isStream)(e)){e.dict.objId&&t.put(e.dict.objId);var c=e.dict.get("Resources");c instanceof a.Dict&&(c.objId&&t.has(c.objId)||(r.push(c),c.objId&&t.put(c.objId)))}}}return!1}async fetchBuiltInCMap(e){const t=this.builtInCMapCache.get(e);if(t)return t;const r=this.handler.sendWithStream("FetchBuiltInCMap",{name:e}),n=r.getReader(),a=await new Promise((function(e,t){function r(){n.read().then((function({value:t,done:i}){i||(e(t),r())}),t)}r()}));return a.compressionType!==i.CMapCompressionType.NONE&&this.builtInCMapCache.set(e,a),a}async buildFormXObject(e,t,r,n,s,o,h){var l=t.dict,c=l.getArray("Matrix"),u=l.getArray("BBox");u=Array.isArray(u)&&4===u.length?i.Util.normalizeRect(u):null;let f=null;l.has("OC")&&(f=await this.parseMarkedContentProps(l.get("OC"),e),n.addOp(i.OPS.beginMarkedContentProps,["OC",f]));var d=l.get("Group");if(d){var p={matrix:c,bbox:u,smask:r,isolated:!1,knockout:!1},m=d.get("S"),b=null;if((0,a.isName)(m,"Transparency")&&(p.isolated=d.get("I")||!1,p.knockout=d.get("K")||!1,d.has("CS"))){const t=d.getRaw("CS"),r=g.ColorSpace.getCached(t,this.xref,h);b=r||await this.parseColorSpace({cs:t,resources:e,localColorSpaceCache:h})}r&&r.backdrop&&(b=b||g.ColorSpace.singletons.rgb,r.backdrop=b.getRgb(r.backdrop,0)),n.addOp(i.OPS.beginGroup,[p])}return n.addOp(i.OPS.paintFormXObjectBegin,[c,u]),this.getOperatorList({stream:t,task:s,resources:l.get("Resources")||e,operatorList:n,initialState:o}).then((function(){n.addOp(i.OPS.paintFormXObjectEnd,[]),d&&n.addOp(i.OPS.endGroup,[p]),f&&n.addOp(i.OPS.endMarkedContent,[])}))}_sendImgData(e,t,r=!1){const i=t?[t.data.buffer]:null;return this.parsingType3Font||r?this.handler.send("commonobj",[e,"Image",t],i):this.handler.send("obj",[e,this.pageIndex,"Image",t],i)}async buildPaintImageXObject({resources:e,image:t,isInline:r=!1,operatorList:n,cacheKey:a,localImageCache:s,localColorSpaceCache:o}){var h=t.dict;const l=h.objId;var c=h.get("Width","W"),u=h.get("Height","H");if(!c||!(0,i.isNum)(c)||!u||!(0,i.isNum)(u))return void(0,i.warn)("Image dimensions are missing, or not numbers.");var f=this.options.maxImageSize;if(-1!==f&&c*u>f)return void(0,i.warn)("Image exceeded maximum allowed size and was removed.");var d,p,m=h.get("ImageMask","IM")||!1;if(m){var g=h.get("Width","W"),v=h.get("Height","H"),y=g+7>>3,w=t.getBytes(y*v,!0),M=h.getArray("Decode","D");return d=_.PDFImage.createMask({imgArray:w,width:g,height:v,imageIsFromDecodeStream:t instanceof b.DecodeStream,inverseDecode:!!M&&M[0]>0}),d.cached=!!a,p=[d],n.addOp(i.OPS.paintImageMaskXObject,p),void(a&&s.set(a,l,{fn:i.OPS.paintImageMaskXObject,args:p}))}var S=h.get("SMask","SM")||!1,k=h.get("Mask")||!1,A=200;if(r&&!S&&!k&&c+u<A){const a=new _.PDFImage({xref:this.xref,res:e,image:t,isInline:r,pdfFunctionFactory:this._pdfFunctionFactory,localColorSpaceCache:o});return d=a.createImageData(!0),void n.addOp(i.OPS.paintInlineImageXObject,[d])}let x="img_"+this.idFactory.createObjId(),C=!1;this.parsingType3Font?x=`${this.idFactory.getDocId()}_type3_${x}`:l&&(C=this.globalImageCache.shouldCache(l,this.pageIndex),C&&(x=`${this.idFactory.getDocId()}_${x}`)),n.addDependency(x),p=[x,c,u],_.PDFImage.buildImage({xref:this.xref,res:e,image:t,isInline:r,pdfFunctionFactory:this._pdfFunctionFactory,localColorSpaceCache:o}).then(e=>(d=e.createImageData(!1),this._sendImgData(x,d,C))).catch(e=>((0,i.warn)(`Unable to decode image "${x}": "${e}".`),this._sendImgData(x,null,C))),n.addOp(i.OPS.paintImageXObject,p),a&&(s.set(a,l,{fn:i.OPS.paintImageXObject,args:p}),l&&((0,i.assert)(!r,"Cannot cache an inline image globally."),this.globalImageCache.addPageIndex(l,this.pageIndex),C&&this.globalImageCache.setData(l,{objId:x,fn:i.OPS.paintImageXObject,args:p})))}handleSMask(e,t,r,i,n,a){var s=e.get("G"),o={subtype:e.get("S").name,backdrop:e.get("BC")},h=e.get("TR");if((0,f.isPDFFunction)(h)){const e=this._pdfFunctionFactory.create(h);for(var l=new Uint8Array(256),c=new Float32Array(1),u=0;u<256;u++)c[0]=u/255,e(c,0,c,0),l[u]=255*c[0]|0;o.transferMap=l}return this.buildFormXObject(t,s,o,r,i,n.state.clone(),a)}handleTransferFunction(e){let t;if(Array.isArray(e))t=e;else{if(!(0,f.isPDFFunction)(e))return null;t=[e]}const r=[];let i=0,n=0;for(const s of t){const e=this.xref.fetchIfRef(s);if(i++,(0,a.isName)(e,"Identity")){r.push(null);continue}if(!(0,f.isPDFFunction)(e))return null;const t=this._pdfFunctionFactory.create(e),o=new Uint8Array(256),h=new Float32Array(1);for(let r=0;r<256;r++)h[0]=r/255,t(h,0,h,0),o[r]=255*h[0]|0;r.push(o),n++}return 1!==i&&4!==i||0===n?null:r}handleTilingType(e,t,r,n,s,o,h){const l=new M.OperatorList,c=a.Dict.merge({xref:this.xref,dictArray:[s.get("Resources"),r]});return this.getOperatorList({stream:n,task:h,resources:c,operatorList:l}).then((function(){return(0,u.getTilingPatternIR)({fnArray:l.fnArray,argsArray:l.argsArray},s,t)})).then((function(t){o.addDependencies(l.dependencies),o.addOp(e,t)}),e=>{if(!(e instanceof i.AbortException)){if(this.options.ignoreErrors)return this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorTilingPattern}),void(0,i.warn)(`handleTilingType - ignoring pattern: "${e}".`);throw e}})}handleSetFont(e,t,r,n,a,o){var h,l=0;return t&&(t=t.slice(),h=t[0].name,l=t[1]),this.loadFont(h,r,e).then(t=>t.font.isType3Font?t.loadType3Data(this,e,a).then((function(){return n.addDependencies(t.type3Dependencies),t})).catch(e=>(this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorFontLoadType3}),new T({loadedName:"g_font_error",font:new s.ErrorFont("Type3 font load error: "+e),dict:t.font,extraProperties:this.options.fontExtraProperties}))):t).then(e=>(o.font=e.font,o.fontSize=l,o.fontName=h,e.send(this.handler),e.loadedName))}handleText(e,t){const r=t.font,n=r.charsToGlyphs(e);if(r.data){const e=!!(t.textRenderingMode&i.TextRenderingMode.ADD_TO_PATH_FLAG);(e||"Pattern"===t.fillColorSpace.name||r.disableFontFace||this.options.disableFontFace)&&E.buildFontPaths(r,n,this.handler)}return n}ensureStateFont(e){if(e.font)return;const t=new i.FormatError("Missing setFont (Tf) operator before text rendering operator.");if(this.options.ignoreErrors)return this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorFontState}),void(0,i.warn)(`ensureStateFont: "${t}".`);throw t}async setGState({resources:e,gState:t,operatorList:r,cacheKey:n,task:s,stateManager:o,localGStateCache:h,localColorSpaceCache:l}){const c=t.objId;let u=!0;for(var f=[],d=t.getKeys(),p=Promise.resolve(),m=0,g=d.length;m<g;m++){const n=d[m],h=t.get(n);switch(n){case"Type":break;case"LW":case"LC":case"LJ":case"ML":case"D":case"RI":case"FL":case"CA":case"ca":f.push([n,h]);break;case"Font":u=!1,p=p.then(()=>this.handleSetFont(e,null,h[0],r,s,o.state).then((function(e){r.addDependency(e),f.push([n,[e,h[1]]])})));break;case"BM":f.push([n,x(h)]);break;case"SMask":if((0,a.isName)(h,"None")){f.push([n,!1]);break}(0,a.isDict)(h)?(u=!1,p=p.then(()=>this.handleSMask(h,e,r,s,o,l)),f.push([n,!0])):(0,i.warn)("Unsupported SMask type");break;case"TR":const t=this.handleTransferFunction(h);f.push([n,t]);break;case"OP":case"op":case"OPM":case"BG":case"BG2":case"UCR":case"UCR2":case"TR2":case"HT":case"SM":case"SA":case"AIS":case"TK":(0,i.info)("graphic state operator "+n);break;default:(0,i.info)("Unknown graphic state operator "+n);break}}return p.then((function(){f.length>0&&r.addOp(i.OPS.setGState,[f]),u&&h.set(n,c,f)}))}loadFont(e,t,r){const n=()=>Promise.resolve(new T({loadedName:"g_font_error",font:new s.ErrorFont(`Font "${e}" is not available.`),dict:t,extraProperties:this.options.fontExtraProperties}));var o,h=this.xref;if(t){if(!(0,a.isRef)(t))throw new i.FormatError('The "font" object should be a reference.');o=t}else{var l=r.get("Font");l&&(o=l.getRaw(e))}if(!o){const r=`Font "${e||t&&t.toString()}" is not available`;if(!this.options.ignoreErrors&&!this.parsingType3Font)return(0,i.warn)(r+"."),n();this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorFontMissing}),(0,i.warn)(r+" -- attempting to fallback to a default font."),o=E.fallbackFontDict}if(this.fontCache.has(o))return this.fontCache.get(o);if(t=h.fetchIfRef(o),!(0,a.isDict)(t))return n();if(t.translated)return t.translated;var c=(0,i.createPromiseCapability)(),u=this.preEvaluateFont(t);const{descriptor:f,hash:d}=u;var p,m,g=(0,a.isRef)(o);if(g&&(p="f"+o.toString()),d&&(0,a.isDict)(f)){f.fontAliases||(f.fontAliases=Object.create(null));var b=f.fontAliases;if(b[d]){var v=b[d].aliasRef;if(g&&v&&this.fontCache.has(v))return this.fontCache.putAlias(o,v),this.fontCache.get(o)}else b[d]={fontID:this.idFactory.createFontId()};g&&(b[d].aliasRef=o),p=b[d].fontID}g?this.fontCache.put(o,c.promise):(p||(p=this.idFactory.createFontId()),this.fontCache.put("id_"+p,c.promise)),(0,i.assert)(p&&p.startsWith("f"),'The "fontID" must be (correctly) defined.'),t.loadedName=`${this.idFactory.getDocId()}_${p}`,t.translated=c.promise;try{m=this.translateFont(u)}catch(y){m=Promise.reject(y)}return m.then(e=>{if(void 0!==e.fontType){var r=h.stats.fontTypes;r[e.fontType]=!0}c.resolve(new T({loadedName:t.loadedName,font:e,dict:t,extraProperties:this.options.fontExtraProperties}))}).catch(e=>{this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorFontTranslate});try{var r=f&&f.get("FontFile3"),n=r&&r.get("Subtype"),a=(0,s.getFontType)(u.type,n&&n.name),o=h.stats.fontTypes;o[a]=!0}catch(l){}c.resolve(new T({loadedName:t.loadedName,font:new s.ErrorFont(e instanceof Error?e.message:e),dict:t,extraProperties:this.options.fontExtraProperties}))}),c.promise}buildPath(e,t,r,n=!1){var a=e.length-1;if(r||(r=[]),a<0||e.fnArray[a]!==i.OPS.constructPath)n&&((0,i.warn)(`Encountered path operator "${t}" inside of a text object.`),e.addOp(i.OPS.save,null)),e.addOp(i.OPS.constructPath,[[t],r]),n&&e.addOp(i.OPS.restore,null);else{var s=e.argsArray[a];s[0].push(t),Array.prototype.push.apply(s[1],r)}}parseColorSpace({cs:e,resources:t,localColorSpaceCache:r}){return g.ColorSpace.parseAsync({cs:e,xref:this.xref,resources:t,pdfFunctionFactory:this._pdfFunctionFactory,localColorSpaceCache:r}).catch(e=>{if(e instanceof i.AbortException)return null;if(this.options.ignoreErrors)return this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorColorSpace}),(0,i.warn)(`parseColorSpace - ignoring ColorSpace: "${e}".`),null;throw e})}async handleColorN(e,t,r,n,s,o,h,l){var c,f=r[r.length-1];if((0,a.isName)(f)&&(c=s.get(f.name))){var d=(0,a.isStream)(c)?c.dict:c,p=d.get("PatternType");if(p===k.TILING){var m=n.base?n.base.getRgb(r,0):null;return this.handleTilingType(t,m,o,c,d,e,h)}if(p===k.SHADING){var g=d.get("Shading"),b=d.getArray("Matrix");return c=u.Pattern.parseShading(g,b,this.xref,o,this.handler,this._pdfFunctionFactory,l),void e.addOp(t,c.getIR())}throw new i.FormatError("Unknown PatternType: "+p)}throw new i.FormatError("Unknown PatternName: "+f)}async parseMarkedContentProps(e,t){let r;if((0,a.isName)(e)){const i=t.get("Properties");r=i.get(e.name)}else{if(!(0,a.isDict)(e))throw new i.FormatError("Optional content properties malformed.");r=e}const n=r.get("Type").name;if("OCG"===n)return{type:n,id:r.objId};if("OCMD"===n){const e=r.get("OCGs");if(Array.isArray(e)||(0,a.isDict)(e)){const t=[];Array.isArray(e)?r.get("OCGs").forEach(e=>{t.push(e.toString())}):t.push(e.objId);let i=null;return r.get("VE")&&(i=!0),{type:n,ids:t,policy:(0,a.isName)(r.get("P"))?r.get("P").name:null,expression:i}}if((0,a.isRef)(e))return{type:n,id:e.toString()}}return null}getOperatorList({stream:e,task:t,resources:r,operatorList:n,initialState:s=null}){if(r=r||a.Dict.empty,s=s||new P,!n)throw new Error('getOperatorList: missing "operatorList" parameter');var o=this,h=this.xref;let l=!1;const c=new p.LocalImageCache,f=new p.LocalColorSpaceCache,d=new p.LocalGStateCache;var m=r.get("XObject")||a.Dict.empty,b=r.get("Pattern")||a.Dict.empty,v=new R(s),y=new O(e,h,v),w=new C;function M(e){for(var t=0,r=y.savedStatesDepth;t<r;t++)n.addOp(i.OPS.restore,[])}return new Promise((function e(s,p){const _=function(t){Promise.all([t,n.ready]).then((function(){try{e(s,p)}catch(t){p(t)}}),p)};t.ensureNotTerminated(),w.reset();var S,k,x,C,E,T={};while(!(S=w.check())){if(T.args=null,!y.read(T))break;var R=T.args,I=T.fn;switch(0|I){case i.OPS.paintXObject:if(E=R[0].name,E){const e=c.getByName(E);if(e){n.addOp(e.fn,e.args),R=null;continue}}return void _(new Promise((function(e,s){if(!E)throw new i.FormatError("XObject must be referred to by name.");let l=m.getRaw(E);if(l instanceof a.Ref){const t=c.getByRef(l);if(t)return n.addOp(t.fn,t.args),void e();const r=o.globalImageCache.getData(l,o.pageIndex);if(r)return n.addDependency(r.objId),n.addOp(r.fn,r.args),void e();l=h.fetch(l)}if(!(0,a.isStream)(l))throw new i.FormatError("XObject should be a stream");const u=l.dict.get("Subtype");if(!(0,a.isName)(u))throw new i.FormatError("XObject should have a Name subtype");if("Form"===u.name)return v.save(),void o.buildFormXObject(r,l,null,n,t,v.state.clone(),f).then((function(){v.restore(),e()}),s);if("Image"!==u.name){if("PS"!==u.name)throw new i.FormatError("Unhandled XObject subtype "+u.name);(0,i.info)("Ignored XObject subtype PS"),e()}else o.buildPaintImageXObject({resources:r,image:l,operatorList:n,cacheKey:E,localImageCache:c,localColorSpaceCache:f}).then(e,s)})).catch((function(e){if(!(e instanceof i.AbortException)){if(o.options.ignoreErrors)return o.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorXObject}),void(0,i.warn)(`getOperatorList - ignoring XObject: "${e}".`);throw e}})));case i.OPS.setFont:var P=R[1];return void _(o.handleSetFont(r,R,null,n,t,v.state).then((function(e){n.addDependency(e),n.addOp(i.OPS.setFont,[e,P])})));case i.OPS.beginText:l=!0;break;case i.OPS.endText:l=!1;break;case i.OPS.endInlineImage:var O=R[0].cacheKey;if(O){const e=c.getByName(O);if(e){n.addOp(e.fn,e.args),R=null;continue}}return void _(o.buildPaintImageXObject({resources:r,image:R[0],isInline:!0,operatorList:n,cacheKey:O,localImageCache:c,localColorSpaceCache:f}));case i.OPS.showText:if(!v.state.font){o.ensureStateFont(v.state);continue}R[0]=o.handleText(R[0],v.state);break;case i.OPS.showSpacedText:if(!v.state.font){o.ensureStateFont(v.state);continue}var F=R[0],L=[],D=F.length,N=v.state;for(k=0;k<D;++k){var B=F[k];(0,i.isString)(B)?Array.prototype.push.apply(L,o.handleText(B,N)):(0,i.isNum)(B)&&L.push(B)}R[0]=L,I=i.OPS.showText;break;case i.OPS.nextLineShowText:if(!v.state.font){o.ensureStateFont(v.state);continue}n.addOp(i.OPS.nextLine),R[0]=o.handleText(R[0],v.state),I=i.OPS.showText;break;case i.OPS.nextLineSetSpacingShowText:if(!v.state.font){o.ensureStateFont(v.state);continue}n.addOp(i.OPS.nextLine),n.addOp(i.OPS.setWordSpacing,[R.shift()]),n.addOp(i.OPS.setCharSpacing,[R.shift()]),R[0]=o.handleText(R[0],v.state),I=i.OPS.showText;break;case i.OPS.setTextRenderingMode:v.state.textRenderingMode=R[0];break;case i.OPS.setFillColorSpace:{const e=g.ColorSpace.getCached(R[0],h,f);if(e){v.state.fillColorSpace=e;continue}return void _(o.parseColorSpace({cs:R[0],resources:r,localColorSpaceCache:f}).then((function(e){e&&(v.state.fillColorSpace=e)})))}case i.OPS.setStrokeColorSpace:{const e=g.ColorSpace.getCached(R[0],h,f);if(e){v.state.strokeColorSpace=e;continue}return void _(o.parseColorSpace({cs:R[0],resources:r,localColorSpaceCache:f}).then((function(e){e&&(v.state.strokeColorSpace=e)})))}case i.OPS.setFillColor:C=v.state.fillColorSpace,R=C.getRgb(R,0),I=i.OPS.setFillRGBColor;break;case i.OPS.setStrokeColor:C=v.state.strokeColorSpace,R=C.getRgb(R,0),I=i.OPS.setStrokeRGBColor;break;case i.OPS.setFillGray:v.state.fillColorSpace=g.ColorSpace.singletons.gray,R=g.ColorSpace.singletons.gray.getRgb(R,0),I=i.OPS.setFillRGBColor;break;case i.OPS.setStrokeGray:v.state.strokeColorSpace=g.ColorSpace.singletons.gray,R=g.ColorSpace.singletons.gray.getRgb(R,0),I=i.OPS.setStrokeRGBColor;break;case i.OPS.setFillCMYKColor:v.state.fillColorSpace=g.ColorSpace.singletons.cmyk,R=g.ColorSpace.singletons.cmyk.getRgb(R,0),I=i.OPS.setFillRGBColor;break;case i.OPS.setStrokeCMYKColor:v.state.strokeColorSpace=g.ColorSpace.singletons.cmyk,R=g.ColorSpace.singletons.cmyk.getRgb(R,0),I=i.OPS.setStrokeRGBColor;break;case i.OPS.setFillRGBColor:v.state.fillColorSpace=g.ColorSpace.singletons.rgb,R=g.ColorSpace.singletons.rgb.getRgb(R,0);break;case i.OPS.setStrokeRGBColor:v.state.strokeColorSpace=g.ColorSpace.singletons.rgb,R=g.ColorSpace.singletons.rgb.getRgb(R,0);break;case i.OPS.setFillColorN:if(C=v.state.fillColorSpace,"Pattern"===C.name)return void _(o.handleColorN(n,i.OPS.setFillColorN,R,C,b,r,t,f));R=C.getRgb(R,0),I=i.OPS.setFillRGBColor;break;case i.OPS.setStrokeColorN:if(C=v.state.strokeColorSpace,"Pattern"===C.name)return void _(o.handleColorN(n,i.OPS.setStrokeColorN,R,C,b,r,t,f));R=C.getRgb(R,0),I=i.OPS.setStrokeRGBColor;break;case i.OPS.shadingFill:var U=r.get("Shading");if(!U)throw new i.FormatError("No shading resource found");var j=U.get(R[0].name);if(!j)throw new i.FormatError("No shading object found");var q=u.Pattern.parseShading(j,null,h,r,o.handler,o._pdfFunctionFactory,f),z=q.getIR();R=[z],I=i.OPS.shadingFill;break;case i.OPS.setGState:if(E=R[0].name,E){const e=d.getByName(E);if(e){e.length>0&&n.addOp(i.OPS.setGState,[e]),R=null;continue}}return void _(new Promise((function(e,s){if(!E)throw new i.FormatError("GState must be referred to by name.");const h=r.get("ExtGState");if(!(h instanceof a.Dict))throw new i.FormatError("ExtGState should be a dictionary.");const l=h.get(E);if(!(l instanceof a.Dict))throw new i.FormatError("GState should be a dictionary.");o.setGState({resources:r,gState:l,operatorList:n,cacheKey:E,task:t,stateManager:v,localGStateCache:d,localColorSpaceCache:f}).then(e,s)})).catch((function(e){if(!(e instanceof i.AbortException)){if(o.options.ignoreErrors)return o.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorExtGState}),void(0,i.warn)(`getOperatorList - ignoring ExtGState: "${e}".`);throw e}})));case i.OPS.moveTo:case i.OPS.lineTo:case i.OPS.curveTo:case i.OPS.curveTo2:case i.OPS.curveTo3:case i.OPS.closePath:case i.OPS.rectangle:o.buildPath(n,I,R,l);continue;case i.OPS.markPoint:case i.OPS.markPointProps:case i.OPS.beginCompat:case i.OPS.endCompat:continue;case i.OPS.beginMarkedContentProps:if(!(0,a.isName)(R[0])){(0,i.warn)("Expected name for beginMarkedContentProps arg0="+R[0]);continue}if("OC"===R[0].name)return void _(o.parseMarkedContentProps(R[1],r).then(e=>{n.addOp(i.OPS.beginMarkedContentProps,["OC",e])}).catch(e=>{if(!(e instanceof i.AbortException)){if(o.options.ignoreErrors)return o.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorMarkedContent}),void(0,i.warn)(`getOperatorList - ignoring beginMarkedContentProps: "${e}".`);throw e}}));R=[R[0].name];break;case i.OPS.beginMarkedContent:case i.OPS.endMarkedContent:default:if(null!==R){for(k=0,x=R.length;k<x;k++)if(R[k]instanceof a.Dict)break;if(k<x){(0,i.warn)("getOperatorList - ignoring operator: "+I);continue}}}n.addOp(I,R)}S?_(A):(M(),s())})).catch(e=>{if(!(e instanceof i.AbortException)){if(this.options.ignoreErrors)return this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorOperatorList}),(0,i.warn)(`getOperatorList - ignoring errors during "${t.name}" task: "${e}".`),void M();throw e}})}getTextContent({stream:e,task:t,resources:r,stateManager:n=null,normalizeWhitespace:s=!1,combineTextItems:o=!1,sink:h,seenStyles:c=Object.create(null)}){r=r||a.Dict.empty,n=n||new R(new I);var u=/\s/g,f={items:[],styles:Object.create(null)},d={initialized:!1,str:[],width:0,height:0,vertical:!1,lastAdvanceWidth:0,lastAdvanceHeight:0,textAdvanceScale:0,spaceWidth:0,fakeSpaceMin:1/0,fakeMultiSpaceMin:1/0,fakeMultiSpaceMax:-0,textRunBreakAllowed:!1,transform:null,fontName:null},g=.3,b=1.5,v=4,y=this,w=this.xref,M=null;const _=new p.LocalImageCache,S=new p.LocalGStateCache;var k,x=new O(e,w,n);function E(){if(d.initialized)return d;var e=k.font;e.loadedName in c||(c[e.loadedName]=!0,f.styles[e.loadedName]={fontFamily:e.fallbackName,ascent:e.ascent,descent:e.descent,vertical:e.vertical}),d.fontName=e.loadedName;var t=[k.fontSize*k.textHScale,0,0,k.fontSize,0,k.textRise];if(e.isType3Font&&k.fontSize<=1&&!(0,i.isArrayEqual)(k.fontMatrix,i.FONT_IDENTITY_MATRIX)){const r=e.bbox[3]-e.bbox[1];r>0&&(t[3]*=r*k.fontMatrix[3])}var r=i.Util.transform(k.ctm,i.Util.transform(k.textMatrix,t));d.transform=r,e.vertical?(d.width=Math.sqrt(r[0]*r[0]+r[1]*r[1]),d.height=0,d.vertical=!0):(d.width=0,d.height=Math.sqrt(r[2]*r[2]+r[3]*r[3]),d.vertical=!1);var n=k.textLineMatrix[0],a=k.textLineMatrix[1],s=Math.sqrt(n*n+a*a);n=k.ctm[0],a=k.ctm[1];var o=Math.sqrt(n*n+a*a);d.textAdvanceScale=o*s,d.lastAdvanceWidth=0,d.lastAdvanceHeight=0;var h=e.spaceWidth/1e3*k.fontSize;return h?(d.spaceWidth=h,d.fakeSpaceMin=h*g,d.fakeMultiSpaceMin=h*b,d.fakeMultiSpaceMax=h*v,d.textRunBreakAllowed=!e.isMonospace):(d.spaceWidth=0,d.fakeSpaceMin=1/0,d.fakeMultiSpaceMin=1/0,d.fakeMultiSpaceMax=0,d.textRunBreakAllowed=!1),d.initialized=!0,d}function T(e){var t,r=0,i=e.length;while(r<i&&(t=e.charCodeAt(r))>=32&&t<=127)r++;return r<i?e.replace(u," "):e}function P(e){var t=e.str.join(""),r=(0,m.bidi)(t,-1,e.vertical);return{str:s?T(r.str):r.str,dir:r.dir,width:e.width,height:e.height,transform:e.transform,fontName:e.fontName}}function F(e,t){return y.loadFont(e,t,r).then((function(e){k.font=e.font,k.fontMatrix=e.font.fontMatrix||i.FONT_IDENTITY_MATRIX}))}function L(e){for(var t=k.font,r=E(),i=0,n=0,a=t.charsToGlyphs(e),s=0;s<a.length;s++){var o=a[s],h=null;h=t.vertical&&o.vmetric?o.vmetric[0]:o.width;var c=o.unicode,u=(0,l.getNormalizedUnicodes)();void 0!==u[c]&&(c=u[c]),c=(0,l.reverseIfRtl)(c);var f=k.charSpacing;if(o.isSpace){var d=k.wordSpacing;f+=d,d>0&&D(d,r.str)}var p=0,m=0;if(t.vertical){var g=h*k.fontMatrix[0];m=g*k.fontSize+f,n+=m}else{var b=h*k.fontMatrix[0];p=(b*k.fontSize+f)*k.textHScale,i+=p}k.translateTextMatrix(p,m),r.str.push(c)}return t.vertical?(r.lastAdvanceHeight=n,r.height+=Math.abs(n)):(r.lastAdvanceWidth=i,r.width+=i),r}function D(e,t){if(!(e<d.fakeSpaceMin))if(e<d.fakeMultiSpaceMin)t.push(" ");else{var r=Math.round(e/d.spaceWidth);while(r-- >0)t.push(" ")}}function N(){d.initialized&&(d.vertical?d.height*=d.textAdvanceScale:d.width*=d.textAdvanceScale,f.items.push(P(d)),d.initialized=!1,d.str.length=0)}function B(){const e=f.items.length;e>0&&(h.enqueue(f,e),f.items=[],f.styles=Object.create(null))}var U=new C;return new Promise((function e(l,u){const p=function(t){B(),Promise.all([t,h.ready]).then((function(){try{e(l,u)}catch(t){u(t)}}),u)};t.ensureNotTerminated(),U.reset();var m,g={},b=[];while(!(m=U.check())){if(b.length=0,g.args=b,!x.read(g))break;k=n.state;var v,C,T=g.fn;switch(b=g.args,0|T){case i.OPS.setFont:var I=b[0].name,P=b[1];if(k.font&&I===k.fontName&&P===k.fontSize)break;return N(),k.fontName=I,k.fontSize=P,void p(F(I,null));case i.OPS.setTextRise:N(),k.textRise=b[0];break;case i.OPS.setHScale:N(),k.textHScale=b[0]/100;break;case i.OPS.setLeading:N(),k.leading=b[0];break;case i.OPS.moveText:var O=!!k.font&&0===(k.font.vertical?b[0]:b[1]);if(v=b[0]-b[1],o&&O&&d.initialized&&v>0&&v<=d.fakeMultiSpaceMax){k.translateTextLineMatrix(b[0],b[1]),d.width+=b[0]-d.lastAdvanceWidth,d.height+=b[1]-d.lastAdvanceHeight,C=b[0]-d.lastAdvanceWidth-(b[1]-d.lastAdvanceHeight),D(C,d.str);break}N(),k.translateTextLineMatrix(b[0],b[1]),k.textMatrix=k.textLineMatrix.slice();break;case i.OPS.setLeadingMoveText:N(),k.leading=-b[1],k.translateTextLineMatrix(b[0],b[1]),k.textMatrix=k.textLineMatrix.slice();break;case i.OPS.nextLine:N(),k.carriageReturn();break;case i.OPS.setTextMatrix:if(v=k.calcTextLineMatrixAdvance(b[0],b[1],b[2],b[3],b[4],b[5]),o&&null!==v&&d.initialized&&v.value>0&&v.value<=d.fakeMultiSpaceMax){k.translateTextLineMatrix(v.width,v.height),d.width+=v.width-d.lastAdvanceWidth,d.height+=v.height-d.lastAdvanceHeight,C=v.width-d.lastAdvanceWidth-(v.height-d.lastAdvanceHeight),D(C,d.str);break}N(),k.setTextMatrix(b[0],b[1],b[2],b[3],b[4],b[5]),k.setTextLineMatrix(b[0],b[1],b[2],b[3],b[4],b[5]);break;case i.OPS.setCharSpacing:k.charSpacing=b[0];break;case i.OPS.setWordSpacing:k.wordSpacing=b[0];break;case i.OPS.beginText:N(),k.textMatrix=i.IDENTITY_MATRIX.slice(),k.textLineMatrix=i.IDENTITY_MATRIX.slice();break;case i.OPS.showSpacedText:if(!n.state.font){y.ensureStateFont(n.state);continue}for(var j,q=b[0],z=0,H=q.length;z<H;z++)if("string"===typeof q[z])L(q[z]);else if((0,i.isNum)(q[z])){E(),v=q[z]*k.fontSize/1e3;var G=!1;k.font.vertical?(j=v,k.translateTextMatrix(0,j),G=d.textRunBreakAllowed&&v>d.fakeMultiSpaceMax,G||(d.height+=j)):(v=-v,j=v*k.textHScale,k.translateTextMatrix(j,0),G=d.textRunBreakAllowed&&v>d.fakeMultiSpaceMax,G||(d.width+=j)),G?N():v>0&&D(v,d.str)}break;case i.OPS.showText:if(!n.state.font){y.ensureStateFont(n.state);continue}L(b[0]);break;case i.OPS.nextLineShowText:if(!n.state.font){y.ensureStateFont(n.state);continue}N(),k.carriageReturn(),L(b[0]);break;case i.OPS.nextLineSetSpacingShowText:if(!n.state.font){y.ensureStateFont(n.state);continue}N(),k.wordSpacing=b[0],k.charSpacing=b[1],k.carriageReturn(),L(b[2]);break;case i.OPS.paintXObject:N(),M||(M=r.get("XObject")||a.Dict.empty);var W=b[0].name;if(W&&_.getByName(W))break;return void p(new Promise((function(e,l){if(!W)throw new i.FormatError("XObject must be referred to by name.");let u=M.getRaw(W);if(u instanceof a.Ref){if(_.getByRef(u))return void e();u=w.fetch(u)}if(!(0,a.isStream)(u))throw new i.FormatError("XObject should be a stream");const f=u.dict.get("Subtype");if(!(0,a.isName)(f))throw new i.FormatError("XObject should have a Name subtype");if("Form"!==f.name)return _.set(W,u.dict.objId,!0),void e();const d=n.state.clone(),p=new R(d),m=u.dict.getArray("Matrix");Array.isArray(m)&&6===m.length&&p.transform(m),B();const g={enqueueInvoked:!1,enqueue(e,t){this.enqueueInvoked=!0,h.enqueue(e,t)},get desiredSize(){return h.desiredSize},get ready(){return h.ready}};y.getTextContent({stream:u,task:t,resources:u.dict.get("Resources")||r,stateManager:p,normalizeWhitespace:s,combineTextItems:o,sink:g,seenStyles:c}).then((function(){g.enqueueInvoked||_.set(W,u.dict.objId,!0),e()}),l)})).catch((function(e){if(!(e instanceof i.AbortException)){if(!y.options.ignoreErrors)throw e;(0,i.warn)(`getTextContent - ignoring XObject: "${e}".`)}})));case i.OPS.setGState:if(W=b[0].name,W&&S.getByName(W))break;return void p(new Promise((function(e,t){if(!W)throw new i.FormatError("GState must be referred to by name.");const n=r.get("ExtGState");if(!(n instanceof a.Dict))throw new i.FormatError("ExtGState should be a dictionary.");const s=n.get(W);if(!(s instanceof a.Dict))throw new i.FormatError("GState should be a dictionary.");const o=s.get("Font");if(!o)return S.set(W,s.objId,!0),void e();N(),k.fontName=null,k.fontSize=o[1],F(null,o[0]).then(e,t)})).catch((function(e){if(!(e instanceof i.AbortException)){if(!y.options.ignoreErrors)throw e;(0,i.warn)(`getTextContent - ignoring ExtGState: "${e}".`)}})))}if(f.items.length>=h.desiredSize){m=!0;break}}m?p(A):(N(),B(),l())})).catch(e=>{if(!(e instanceof i.AbortException)){if(this.options.ignoreErrors)return(0,i.warn)(`getTextContent - ignoring errors during "${t.name}" task: "${e}".`),N(),void B();throw e}})}extractDataStructures(e,t,r){const n=this.xref;let h;var l=e.get("ToUnicode")||t.get("ToUnicode"),c=l?this.readToUnicode(l):Promise.resolve(void 0);if(r.composite){var u=e.get("CIDSystemInfo");(0,a.isDict)(u)&&(r.cidSystemInfo={registry:(0,i.stringToPDFString)(u.get("Registry")),ordering:(0,i.stringToPDFString)(u.get("Ordering")),supplement:u.get("Supplement")});var f=e.get("CIDToGIDMap");(0,a.isStream)(f)&&(h=f.getBytes())}var d,p=[],m=null;if(e.has("Encoding")){if(d=e.get("Encoding"),(0,a.isDict)(d)){if(m=d.get("BaseEncoding"),m=(0,a.isName)(m)?m.name:null,d.has("Differences"))for(var g=d.get("Differences"),b=0,v=0,y=g.length;v<y;v++){var w=n.fetchIfRef(g[v]);if((0,i.isNum)(w))b=w;else{if(!(0,a.isName)(w))throw new i.FormatError("Invalid entry in 'Differences' array: "+w);p[b++]=w.name}}}else{if(!(0,a.isName)(d))throw new i.FormatError("Encoding is not a Name nor a Dict");m=d.name}"MacRomanEncoding"!==m&&"MacExpertEncoding"!==m&&"WinAnsiEncoding"!==m&&(m=null)}if(m)r.defaultEncoding=(0,o.getEncoding)(m).slice();else{var M=!!(r.flags&s.FontFlags.Symbolic),_=!!(r.flags&s.FontFlags.Nonsymbolic);d=o.StandardEncoding,"TrueType"!==r.type||_||(d=o.WinAnsiEncoding),M&&(d=o.MacRomanEncoding,r.file||(/Symbol/i.test(r.name)?d=o.SymbolSetEncoding:/Dingbats|Wingdings/i.test(r.name)&&(d=o.ZapfDingbatsEncoding))),r.defaultEncoding=d}return r.differences=p,r.baseEncodingName=m,r.hasEncoding=!!m||p.length>0,r.dict=e,c.then(e=>(r.toUnicode=e,this.buildToUnicode(r))).then(e=>(r.toUnicode=e,h&&(r.cidToGidMap=this.readCidToGidMap(h,e)),r))}_buildSimpleFontToUnicode(e,t=!1){(0,i.assert)(!e.composite,"Must be a simple font.");const r=[],n=e.defaultEncoding.slice(),a=e.baseEncodingName,h=e.differences;for(const i in h){const e=h[i];".notdef"!==e&&(n[i]=e)}const c=(0,v.getGlyphsUnicode)();for(const i in n){let s=n[i];if(""!==s)if(void 0!==c[s])r[i]=String.fromCharCode(c[s]);else{let n=0;switch(s[0]){case"G":3===s.length&&(n=parseInt(s.substring(1),16));break;case"g":5===s.length&&(n=parseInt(s.substring(1),16));break;case"C":case"c":if(s.length>=3&&s.length<=4){const r=s.substring(1);if(t){n=parseInt(r,16);break}if(n=+r,Number.isNaN(n)&&Number.isInteger(parseInt(r,16)))return this._buildSimpleFontToUnicode(e,!0)}break;default:const r=(0,l.getUnicodeForGlyph)(s,c);-1!==r&&(n=r)}if(n>0&&n<=1114111&&Number.isInteger(n)){if(a&&n===+i){const e=(0,o.getEncoding)(a);if(e&&(s=e[i])){r[i]=String.fromCharCode(c[s]);continue}}r[i]=String.fromCodePoint(n)}}}return new s.ToUnicodeMap(r)}buildToUnicode(e){if(e.hasIncludedToUnicodeMap=!!e.toUnicode&&e.toUnicode.length>0,e.hasIncludedToUnicodeMap)return!e.composite&&e.hasEncoding&&(e.fallbackToUnicode=this._buildSimpleFontToUnicode(e)),Promise.resolve(e.toUnicode);if(!e.composite)return Promise.resolve(this._buildSimpleFontToUnicode(e));if(e.composite&&(e.cMap.builtInCMap&&!(e.cMap instanceof n.IdentityCMap)||"Adobe"===e.cidSystemInfo.registry&&("GB1"===e.cidSystemInfo.ordering||"CNS1"===e.cidSystemInfo.ordering||"Japan1"===e.cidSystemInfo.ordering||"Korea1"===e.cidSystemInfo.ordering))){const t=e.cidSystemInfo.registry,r=e.cidSystemInfo.ordering,o=a.Name.get(t+"-"+r+"-UCS2");return n.CMapFactory.create({encoding:o,fetchBuiltInCMap:this._fetchBuiltInCMapBound,useCMap:null}).then((function(t){const r=e.cMap,n=[];return r.forEach((function(e,r){if(r>65535)throw new i.FormatError("Max size of CID is 65,535");const a=t.lookup(r);a&&(n[e]=String.fromCharCode((a.charCodeAt(0)<<8)+a.charCodeAt(1)))})),new s.ToUnicodeMap(n)}))}return Promise.resolve(new s.IdentityToUnicodeMap(e.firstChar,e.lastChar))}readToUnicode(e){var t=e;return(0,a.isName)(t)?n.CMapFactory.create({encoding:t,fetchBuiltInCMap:this._fetchBuiltInCMapBound,useCMap:null}).then((function(e){return e instanceof n.IdentityCMap?new s.IdentityToUnicodeMap(0,65535):new s.ToUnicodeMap(e.getMap())})):(0,a.isStream)(t)?n.CMapFactory.create({encoding:t,fetchBuiltInCMap:this._fetchBuiltInCMapBound,useCMap:null}).then((function(e){if(e instanceof n.IdentityCMap)return new s.IdentityToUnicodeMap(0,65535);var t=new Array(e.length);return e.forEach((function(e,r){for(var i=[],n=0;n<r.length;n+=2){var a=r.charCodeAt(n)<<8|r.charCodeAt(n+1);if(55296===(63488&a)){n+=2;var s=r.charCodeAt(n)<<8|r.charCodeAt(n+1);i.push(((1023&a)<<10)+(1023&s)+65536)}else i.push(a)}t[e]=String.fromCodePoint.apply(String,i)})),new s.ToUnicodeMap(t)}),e=>{if(e instanceof i.AbortException)return null;if(this.options.ignoreErrors)return this.handler.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.errorFontToUnicode}),(0,i.warn)(`readToUnicode - ignoring ToUnicode data: "${e}".`),null;throw e}):Promise.resolve(null)}readCidToGidMap(e,t){for(var r=[],i=0,n=e.length;i<n;i++){var a=e[i++]<<8|e[i];const n=i>>1;(0!==a||t.has(n))&&(r[n]=a)}return r}extractWidths(e,t,r){var i,n,o,h,l,c,u,f,d=this.xref,p=[],m=0,g=[];if(r.composite){if(m=e.has("DW")?e.get("DW"):1e3,f=e.get("W"),f)for(n=0,o=f.length;n<o;n++)if(c=d.fetchIfRef(f[n++]),u=d.fetchIfRef(f[n]),Array.isArray(u))for(h=0,l=u.length;h<l;h++)p[c++]=d.fetchIfRef(u[h]);else{var b=d.fetchIfRef(f[++n]);for(h=c;h<=u;h++)p[h]=b}if(r.vertical){var v=e.getArray("DW2")||[880,-1e3];if(i=[v[1],.5*m,v[0]],v=e.get("W2"),v)for(n=0,o=v.length;n<o;n++)if(c=d.fetchIfRef(v[n++]),u=d.fetchIfRef(v[n]),Array.isArray(u))for(h=0,l=u.length;h<l;h++)g[c++]=[d.fetchIfRef(u[h++]),d.fetchIfRef(u[h++]),d.fetchIfRef(u[h])];else{var y=[d.fetchIfRef(v[++n]),d.fetchIfRef(v[++n]),d.fetchIfRef(v[++n])];for(h=c;h<=u;h++)g[h]=y}}}else{var w=r.firstChar;if(f=e.get("Widths"),f){for(h=w,n=0,o=f.length;n<o;n++)p[h++]=d.fetchIfRef(f[n]);m=parseFloat(t.get("MissingWidth"))||0}else{var M=e.get("BaseFont");if((0,a.isName)(M)){var _=this.getBaseFontMetrics(M.name);p=this.buildCharCodeToWidth(_.widths,r),m=_.defaultWidth}}}var S=!0,k=m;for(var A in p){var x=p[A];if(x)if(k){if(k!==x){S=!1;break}}else k=x}S&&(r.flags|=s.FontFlags.FixedPitch),r.defaultWidth=m,r.widths=p,r.defaultVMetrics=i,r.vmetrics=g}isSerifFont(e){var t=e.split("-")[0];return t in(0,c.getSerifFonts)()||-1!==t.search(/serif/gi)}getBaseFontMetrics(e){var t=0,r=[],n=!1,a=(0,c.getStdFontMap)(),s=a[e]||e,o=(0,y.getMetrics)();s in o||(s=this.isSerifFont(e)?"Times-Roman":"Helvetica");var h=o[s];return(0,i.isNum)(h)?(t=h,n=!0):r=h(),{defaultWidth:t,monospace:n,widths:r}}buildCharCodeToWidth(e,t){for(var r=Object.create(null),i=t.differences,n=t.defaultEncoding,a=0;a<256;a++)a in i&&e[i[a]]?r[a]=e[i[a]]:a in n&&e[n[a]]&&(r[a]=e[n[a]]);return r}preEvaluateFont(e){var t=e,r=e.get("Subtype");if(!(0,a.isName)(r))throw new i.FormatError("invalid font Subtype");var n,s=!1;if("Type0"===r.name){var o=e.get("DescendantFonts");if(!o)throw new i.FormatError("Descendant fonts are not specified");if(e=Array.isArray(o)?this.xref.fetchIfRef(o[0]):o,r=e.get("Subtype"),!(0,a.isName)(r))throw new i.FormatError("invalid font Subtype");s=!0}var h=e.get("FontDescriptor");if(h){var l=new w.MurmurHash3_64,c=t.getRaw("Encoding");if((0,a.isName)(c))l.update(c.name);else if((0,a.isRef)(c))l.update(c.toString());else if((0,a.isDict)(c))for(const e of c.getRawValues())if((0,a.isName)(e))l.update(e.name);else if((0,a.isRef)(e))l.update(e.toString());else if(Array.isArray(e)){for(var u=e.length,f=new Array(u),d=0;d<u;d++){var p=e[d];(0,a.isName)(p)?f[d]=p.name:((0,i.isNum)(p)||(0,a.isRef)(p))&&(f[d]=p.toString())}l.update(f.join())}const r=e.get("FirstChar")||0,o=e.get("LastChar")||(s?65535:255);l.update(`${r}-${o}`);var m=e.get("ToUnicode")||t.get("ToUnicode");if((0,a.isStream)(m)){var g=m.str||m;n=g.buffer?new Uint8Array(g.buffer.buffer,0,g.bufferLength):new Uint8Array(g.bytes.buffer,g.start,g.end-g.start),l.update(n)}else(0,a.isName)(m)&&l.update(m.name);var b=e.get("Widths")||t.get("Widths");b&&(n=new Uint8Array(new Uint32Array(b).buffer),l.update(n))}return{descriptor:h,dict:e,baseDict:t,composite:s,type:r.name,hash:l?l.hexdigest():""}}translateFont(e){var t,r=e.baseDict,o=e.dict,h=e.composite,l=e.descriptor,u=e.type,f=h?65535:255;const d=o.get("FirstChar")||0,p=o.get("LastChar")||f;if(!l){if("Type3"!==u){var m=o.get("BaseFont");if(!(0,a.isName)(m))throw new i.FormatError("Base font is not specified");m=m.name.replace(/[,_]/g,"-");var g=this.getBaseFontMetrics(m),b=m.split("-")[0],v=(this.isSerifFont(b)?s.FontFlags.Serif:0)|(g.monospace?s.FontFlags.FixedPitch:0)|((0,c.getSymbolsFonts)()[b]?s.FontFlags.Symbolic:s.FontFlags.Nonsymbolic);t={type:u,name:m,widths:g.widths,defaultWidth:g.defaultWidth,flags:v,firstChar:d,lastChar:p};const e=o.get("Widths");return this.extractDataStructures(o,o,t).then(t=>{if(e){const r=[];let i=d;for(let t=0,n=e.length;t<n;t++)r[i++]=this.xref.fetchIfRef(e[t]);t.widths=r}else t.widths=this.buildCharCodeToWidth(g.widths,t);return new s.Font(m,null,t)})}l=new a.Dict(null),l.set("FontName",a.Name.get(u)),l.set("FontBBox",o.getArray("FontBBox")||[0,0,0,0])}var y=l.get("FontName"),w=o.get("BaseFont");if((0,i.isString)(y)&&(y=a.Name.get(y)),(0,i.isString)(w)&&(w=a.Name.get(w)),"Type3"!==u){var M=y&&y.name,_=w&&w.name;M!==_&&((0,i.info)(`The FontDescriptor's FontName is "${M}" but should be the same as the Font's BaseFont "${_}".`),M&&_&&_.startsWith(M)&&(y=w))}if(y=y||w,!(0,a.isName)(y))throw new i.FormatError("invalid font name");var S,k=l.get("FontFile","FontFile2","FontFile3");if(k&&k.dict){var A=k.dict.get("Subtype");A&&(A=A.name);var x=k.dict.get("Length1"),C=k.dict.get("Length2"),E=k.dict.get("Length3")}if(t={type:u,name:y.name,subtype:A,file:k,length1:x,length2:C,length3:E,loadedName:r.loadedName,composite:h,fixedPitch:!1,fontMatrix:o.getArray("FontMatrix")||i.FONT_IDENTITY_MATRIX,firstChar:d||0,lastChar:p||f,bbox:l.getArray("FontBBox"),ascent:l.get("Ascent"),descent:l.get("Descent"),xHeight:l.get("XHeight"),capHeight:l.get("CapHeight"),flags:l.get("Flags"),italicAngle:l.get("ItalicAngle"),isType3Font:!1},h){var T=r.get("Encoding");(0,a.isName)(T)&&(t.cidEncoding=T.name),S=n.CMapFactory.create({encoding:T,fetchBuiltInCMap:this._fetchBuiltInCMapBound,useCMap:null}).then((function(e){t.cMap=e,t.vertical=t.cMap.vertical}))}else S=Promise.resolve(void 0);return S.then(()=>this.extractDataStructures(o,r,t)).then(e=>(this.extractWidths(o,l,e),"Type3"===u&&(e.isType3Font=!0),new s.Font(y.name,k,e)))}static buildFontPaths(e,t,r){function i(t){e.renderer.hasBuiltPath(t)||r.send("commonobj",[`${e.loadedName}_path_${t}`,"FontPath",e.renderer.getPathJs(t)])}for(const n of t){i(n.fontChar);const e=n.accent;e&&e.fontChar&&i(e.fontChar)}}static get fallbackFontDict(){const e=new a.Dict;return e.set("BaseFont",a.Name.get("PDFJS-FallbackFont")),e.set("Type",a.Name.get("FallbackType")),e.set("Subtype",a.Name.get("FallbackType")),e.set("Encoding",a.Name.get("WinAnsiEncoding")),(0,i.shadow)(this,"fallbackFontDict",e)}}t.PartialEvaluator=E;class T{constructor({loadedName:e,font:t,dict:r,extraProperties:i=!1}){this.loadedName=e,this.font=t,this.dict=r,this._extraProperties=i,this.type3Loaded=null,this.type3Dependencies=t.isType3Font?new Set:null,this.sent=!1}send(e){this.sent||(this.sent=!0,e.send("commonobj",[this.loadedName,"Font",this.font.exportData(this._extraProperties)]))}fallback(e){if(!this.font.data)return;this.font.disableFontFace=!0;const t=this.font.glyphCacheValues;E.buildFontPaths(this.font,t,e)}loadType3Data(e,t,r){if(this.type3Loaded)return this.type3Loaded;if(!this.font.isType3Font)throw new Error("Must be a Type3 font.");var n=Object.create(e.options);n.ignoreErrors=!1;var a=e.clone(n);a.parsingType3Font=!0;const s=this.font,o=this.type3Dependencies;var h=Promise.resolve(),l=this.dict.get("CharProcs"),c=this.dict.get("Resources")||t,u=Object.create(null);for(const f of l.getKeys())h=h.then((function(){var e=l.get(f),t=new M.OperatorList;return a.getOperatorList({stream:e,task:r,resources:c,operatorList:t}).then((function(){u[f]=t.getIR();for(const e of t.dependencies)o.add(e)})).catch((function(e){(0,i.warn)(`Type3 font resource "${f}" is not available.`);const t=new M.OperatorList;u[f]=t.getIR()}))}));return this.type3Loaded=h.then((function(){s.charProcOperatorList=u})),this.type3Loaded}}class R{constructor(e){this.state=e,this.stateStack=[]}save(){var e=this.state;this.stateStack.push(this.state),this.state=e.clone()}restore(){var e=this.stateStack.pop();e&&(this.state=e)}transform(e){this.state.ctm=i.Util.transform(this.state.ctm,e)}}class I{constructor(){this.ctm=new Float32Array(i.IDENTITY_MATRIX),this.fontName=null,this.fontSize=0,this.font=null,this.fontMatrix=i.FONT_IDENTITY_MATRIX,this.textMatrix=i.IDENTITY_MATRIX.slice(),this.textLineMatrix=i.IDENTITY_MATRIX.slice(),this.charSpacing=0,this.wordSpacing=0,this.leading=0,this.textHScale=1,this.textRise=0}setTextMatrix(e,t,r,i,n,a){var s=this.textMatrix;s[0]=e,s[1]=t,s[2]=r,s[3]=i,s[4]=n,s[5]=a}setTextLineMatrix(e,t,r,i,n,a){var s=this.textLineMatrix;s[0]=e,s[1]=t,s[2]=r,s[3]=i,s[4]=n,s[5]=a}translateTextMatrix(e,t){var r=this.textMatrix;r[4]=r[0]*e+r[2]*t+r[4],r[5]=r[1]*e+r[3]*t+r[5]}translateTextLineMatrix(e,t){var r=this.textLineMatrix;r[4]=r[0]*e+r[2]*t+r[4],r[5]=r[1]*e+r[3]*t+r[5]}calcTextLineMatrixAdvance(e,t,r,i,n,a){var s=this.font;if(!s)return null;var o=this.textLineMatrix;if(e!==o[0]||t!==o[1]||r!==o[2]||i!==o[3])return null;var h=n-o[4],l=a-o[5];if(s.vertical&&0!==h||!s.vertical&&0!==l)return null;var c,u,f=e*i-t*r;return s.vertical?(c=-l*r/f,u=l*e/f):(c=h*i/f,u=-h*t/f),{width:c,height:u,value:s.vertical?u:c}}calcRenderMatrix(e){var t=[this.fontSize*this.textHScale,0,0,this.fontSize,0,this.textRise];return i.Util.transform(e,i.Util.transform(this.textMatrix,t))}carriageReturn(){this.translateTextLineMatrix(0,-this.leading),this.textMatrix=this.textLineMatrix.slice()}clone(){var e=Object.create(this);return e.textMatrix=this.textMatrix.slice(),e.textLineMatrix=this.textLineMatrix.slice(),e.fontMatrix=this.fontMatrix.slice(),e}}class P{constructor(){this.ctm=new Float32Array(i.IDENTITY_MATRIX),this.font=null,this.textRenderingMode=i.TextRenderingMode.FILL,this.fillColorSpace=g.ColorSpace.singletons.gray,this.strokeColorSpace=g.ColorSpace.singletons.gray}clone(){return Object.create(this)}}class O{static get opMap(){const e=(0,h.getLookupTableFactory)((function(e){e.w={id:i.OPS.setLineWidth,numArgs:1,variableArgs:!1},e.J={id:i.OPS.setLineCap,numArgs:1,variableArgs:!1},e.j={id:i.OPS.setLineJoin,numArgs:1,variableArgs:!1},e.M={id:i.OPS.setMiterLimit,numArgs:1,variableArgs:!1},e.d={id:i.OPS.setDash,numArgs:2,variableArgs:!1},e.ri={id:i.OPS.setRenderingIntent,numArgs:1,variableArgs:!1},e.i={id:i.OPS.setFlatness,numArgs:1,variableArgs:!1},e.gs={id:i.OPS.setGState,numArgs:1,variableArgs:!1},e.q={id:i.OPS.save,numArgs:0,variableArgs:!1},e.Q={id:i.OPS.restore,numArgs:0,variableArgs:!1},e.cm={id:i.OPS.transform,numArgs:6,variableArgs:!1},e.m={id:i.OPS.moveTo,numArgs:2,variableArgs:!1},e.l={id:i.OPS.lineTo,numArgs:2,variableArgs:!1},e.c={id:i.OPS.curveTo,numArgs:6,variableArgs:!1},e.v={id:i.OPS.curveTo2,numArgs:4,variableArgs:!1},e.y={id:i.OPS.curveTo3,numArgs:4,variableArgs:!1},e.h={id:i.OPS.closePath,numArgs:0,variableArgs:!1},e.re={id:i.OPS.rectangle,numArgs:4,variableArgs:!1},e.S={id:i.OPS.stroke,numArgs:0,variableArgs:!1},e.s={id:i.OPS.closeStroke,numArgs:0,variableArgs:!1},e.f={id:i.OPS.fill,numArgs:0,variableArgs:!1},e.F={id:i.OPS.fill,numArgs:0,variableArgs:!1},e["f*"]={id:i.OPS.eoFill,numArgs:0,variableArgs:!1},e.B={id:i.OPS.fillStroke,numArgs:0,variableArgs:!1},e["B*"]={id:i.OPS.eoFillStroke,numArgs:0,variableArgs:!1},e.b={id:i.OPS.closeFillStroke,numArgs:0,variableArgs:!1},e["b*"]={id:i.OPS.closeEOFillStroke,numArgs:0,variableArgs:!1},e.n={id:i.OPS.endPath,numArgs:0,variableArgs:!1},e.W={id:i.OPS.clip,numArgs:0,variableArgs:!1},e["W*"]={id:i.OPS.eoClip,numArgs:0,variableArgs:!1},e.BT={id:i.OPS.beginText,numArgs:0,variableArgs:!1},e.ET={id:i.OPS.endText,numArgs:0,variableArgs:!1},e.Tc={id:i.OPS.setCharSpacing,numArgs:1,variableArgs:!1},e.Tw={id:i.OPS.setWordSpacing,numArgs:1,variableArgs:!1},e.Tz={id:i.OPS.setHScale,numArgs:1,variableArgs:!1},e.TL={id:i.OPS.setLeading,numArgs:1,variableArgs:!1},e.Tf={id:i.OPS.setFont,numArgs:2,variableArgs:!1},e.Tr={id:i.OPS.setTextRenderingMode,numArgs:1,variableArgs:!1},e.Ts={id:i.OPS.setTextRise,numArgs:1,variableArgs:!1},e.Td={id:i.OPS.moveText,numArgs:2,variableArgs:!1},e.TD={id:i.OPS.setLeadingMoveText,numArgs:2,variableArgs:!1},e.Tm={id:i.OPS.setTextMatrix,numArgs:6,variableArgs:!1},e["T*"]={id:i.OPS.nextLine,numArgs:0,variableArgs:!1},e.Tj={id:i.OPS.showText,numArgs:1,variableArgs:!1},e.TJ={id:i.OPS.showSpacedText,numArgs:1,variableArgs:!1},e["'"]={id:i.OPS.nextLineShowText,numArgs:1,variableArgs:!1},e['"']={id:i.OPS.nextLineSetSpacingShowText,numArgs:3,variableArgs:!1},e.d0={id:i.OPS.setCharWidth,numArgs:2,variableArgs:!1},e.d1={id:i.OPS.setCharWidthAndBounds,numArgs:6,variableArgs:!1},e.CS={id:i.OPS.setStrokeColorSpace,numArgs:1,variableArgs:!1},e.cs={id:i.OPS.setFillColorSpace,numArgs:1,variableArgs:!1},e.SC={id:i.OPS.setStrokeColor,numArgs:4,variableArgs:!0},e.SCN={id:i.OPS.setStrokeColorN,numArgs:33,variableArgs:!0},e.sc={id:i.OPS.setFillColor,numArgs:4,variableArgs:!0},e.scn={id:i.OPS.setFillColorN,numArgs:33,variableArgs:!0},e.G={id:i.OPS.setStrokeGray,numArgs:1,variableArgs:!1},e.g={id:i.OPS.setFillGray,numArgs:1,variableArgs:!1},e.RG={id:i.OPS.setStrokeRGBColor,numArgs:3,variableArgs:!1},e.rg={id:i.OPS.setFillRGBColor,numArgs:3,variableArgs:!1},e.K={id:i.OPS.setStrokeCMYKColor,numArgs:4,variableArgs:!1},e.k={id:i.OPS.setFillCMYKColor,numArgs:4,variableArgs:!1},e.sh={id:i.OPS.shadingFill,numArgs:1,variableArgs:!1},e.BI={id:i.OPS.beginInlineImage,numArgs:0,variableArgs:!1},e.ID={id:i.OPS.beginImageData,numArgs:0,variableArgs:!1},e.EI={id:i.OPS.endInlineImage,numArgs:1,variableArgs:!1},e.Do={id:i.OPS.paintXObject,numArgs:1,variableArgs:!1},e.MP={id:i.OPS.markPoint,numArgs:1,variableArgs:!1},e.DP={id:i.OPS.markPointProps,numArgs:2,variableArgs:!1},e.BMC={id:i.OPS.beginMarkedContent,numArgs:1,variableArgs:!1},e.BDC={id:i.OPS.beginMarkedContentProps,numArgs:2,variableArgs:!1},e.EMC={id:i.OPS.endMarkedContent,numArgs:0,variableArgs:!1},e.BX={id:i.OPS.beginCompat,numArgs:0,variableArgs:!1},e.EX={id:i.OPS.endCompat,numArgs:0,variableArgs:!1},e.BM=null,e.BD=null,e.true=null,e.fa=null,e.fal=null,e.fals=null,e.false=null,e.nu=null,e.nul=null,e.null=null}));return(0,i.shadow)(this,"opMap",e())}static get MAX_INVALID_PATH_OPS(){return(0,i.shadow)(this,"MAX_INVALID_PATH_OPS",20)}constructor(e,t,r){this.parser=new d.Parser({lexer:new d.Lexer(e,O.opMap),xref:t}),this.stateManager=r,this.nonProcessedArgs=[],this._numInvalidPathOPS=0}get savedStatesDepth(){return this.stateManager.stateStack.length}read(e){var t=e.args;while(1){var r=this.parser.getObj();if(r instanceof a.Cmd){var n=r.cmd,s=O.opMap[n];if(!s){(0,i.warn)(`Unknown command "${n}".`);continue}var o=s.id,h=s.numArgs,l=null!==t?t.length:0;if(s.variableArgs)l>h&&(0,i.info)(`Command ${n}: expected [0, ${h}] args, but received ${l} args.`);else{if(l!==h){var c=this.nonProcessedArgs;while(l>h)c.push(t.shift()),l--;while(l<h&&0!==c.length)null===t&&(t=[]),t.unshift(c.pop()),l++}if(l<h){const e=`command ${n}: expected ${h} args, but received ${l} args.`;if(o>=i.OPS.moveTo&&o<=i.OPS.endPath&&++this._numInvalidPathOPS>O.MAX_INVALID_PATH_OPS)throw new i.FormatError("Invalid "+e);(0,i.warn)("Skipping "+e),null!==t&&(t.length=0);continue}}return this.preprocessCommand(o,t),e.fn=o,e.args=t,!0}if(r===a.EOF)return!1;if(null!==r&&(null===t&&(t=[]),t.push(r),t.length>33))throw new i.FormatError("Too many arguments")}}preprocessCommand(e,t){switch(0|e){case i.OPS.save:this.stateManager.save();break;case i.OPS.restore:this.stateManager.restore();break;case i.OPS.transform:this.stateManager.transform(t);break}}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CMapFactory=t.IdentityCMap=t.CMap=void 0;var i=r(2),n=r(5),a=r(11),s=r(8),o=r(12),h=["Adobe-GB1-UCS2","Adobe-CNS1-UCS2","Adobe-Japan1-UCS2","Adobe-Korea1-UCS2","78-EUC-H","78-EUC-V","78-H","78-RKSJ-H","78-RKSJ-V","78-V","78ms-RKSJ-H","78ms-RKSJ-V","83pv-RKSJ-H","90ms-RKSJ-H","90ms-RKSJ-V","90msp-RKSJ-H","90msp-RKSJ-V","90pv-RKSJ-H","90pv-RKSJ-V","Add-H","Add-RKSJ-H","Add-RKSJ-V","Add-V","Adobe-CNS1-0","Adobe-CNS1-1","Adobe-CNS1-2","Adobe-CNS1-3","Adobe-CNS1-4","Adobe-CNS1-5","Adobe-CNS1-6","Adobe-GB1-0","Adobe-GB1-1","Adobe-GB1-2","Adobe-GB1-3","Adobe-GB1-4","Adobe-GB1-5","Adobe-Japan1-0","Adobe-Japan1-1","Adobe-Japan1-2","Adobe-Japan1-3","Adobe-Japan1-4","Adobe-Japan1-5","Adobe-Japan1-6","Adobe-Korea1-0","Adobe-Korea1-1","Adobe-Korea1-2","B5-H","B5-V","B5pc-H","B5pc-V","CNS-EUC-H","CNS-EUC-V","CNS1-H","CNS1-V","CNS2-H","CNS2-V","ETHK-B5-H","ETHK-B5-V","ETen-B5-H","ETen-B5-V","ETenms-B5-H","ETenms-B5-V","EUC-H","EUC-V","Ext-H","Ext-RKSJ-H","Ext-RKSJ-V","Ext-V","GB-EUC-H","GB-EUC-V","GB-H","GB-V","GBK-EUC-H","GBK-EUC-V","GBK2K-H","GBK2K-V","GBKp-EUC-H","GBKp-EUC-V","GBT-EUC-H","GBT-EUC-V","GBT-H","GBT-V","GBTpc-EUC-H","GBTpc-EUC-V","GBpc-EUC-H","GBpc-EUC-V","H","HKdla-B5-H","HKdla-B5-V","HKdlb-B5-H","HKdlb-B5-V","HKgccs-B5-H","HKgccs-B5-V","HKm314-B5-H","HKm314-B5-V","HKm471-B5-H","HKm471-B5-V","HKscs-B5-H","HKscs-B5-V","Hankaku","Hiragana","KSC-EUC-H","KSC-EUC-V","KSC-H","KSC-Johab-H","KSC-Johab-V","KSC-V","KSCms-UHC-H","KSCms-UHC-HW-H","KSCms-UHC-HW-V","KSCms-UHC-V","KSCpc-EUC-H","KSCpc-EUC-V","Katakana","NWP-H","NWP-V","RKSJ-H","RKSJ-V","Roman","UniCNS-UCS2-H","UniCNS-UCS2-V","UniCNS-UTF16-H","UniCNS-UTF16-V","UniCNS-UTF32-H","UniCNS-UTF32-V","UniCNS-UTF8-H","UniCNS-UTF8-V","UniGB-UCS2-H","UniGB-UCS2-V","UniGB-UTF16-H","UniGB-UTF16-V","UniGB-UTF32-H","UniGB-UTF32-V","UniGB-UTF8-H","UniGB-UTF8-V","UniJIS-UCS2-H","UniJIS-UCS2-HW-H","UniJIS-UCS2-HW-V","UniJIS-UCS2-V","UniJIS-UTF16-H","UniJIS-UTF16-V","UniJIS-UTF32-H","UniJIS-UTF32-V","UniJIS-UTF8-H","UniJIS-UTF8-V","UniJIS2004-UTF16-H","UniJIS2004-UTF16-V","UniJIS2004-UTF32-H","UniJIS2004-UTF32-V","UniJIS2004-UTF8-H","UniJIS2004-UTF8-V","UniJISPro-UCS2-HW-V","UniJISPro-UCS2-V","UniJISPro-UTF8-V","UniJISX0213-UTF32-H","UniJISX0213-UTF32-V","UniJISX02132004-UTF32-H","UniJISX02132004-UTF32-V","UniKS-UCS2-H","UniKS-UCS2-V","UniKS-UTF16-H","UniKS-UTF16-V","UniKS-UTF32-H","UniKS-UTF32-V","UniKS-UTF8-H","UniKS-UTF8-V","V","WP-Symbol"];const l=2**24-1;class c{constructor(e=!1){this.codespaceRanges=[[],[],[],[]],this.numCodespaceRanges=0,this._map=[],this.name="",this.vertical=!1,this.useCMap=null,this.builtInCMap=e}addCodespaceRange(e,t,r){this.codespaceRanges[e-1].push(t,r),this.numCodespaceRanges++}mapCidRange(e,t,r){if(t-e>l)throw new Error("mapCidRange - ignoring data above MAX_MAP_RANGE.");while(e<=t)this._map[e++]=r++}mapBfRange(e,t,r){if(t-e>l)throw new Error("mapBfRange - ignoring data above MAX_MAP_RANGE.");var i=r.length-1;while(e<=t)this._map[e++]=r,r=r.substring(0,i)+String.fromCharCode(r.charCodeAt(i)+1)}mapBfRangeToArray(e,t,r){if(t-e>l)throw new Error("mapBfRangeToArray - ignoring data above MAX_MAP_RANGE.");const i=r.length;let n=0;while(e<=t&&n<i)this._map[e]=r[n++],++e}mapOne(e,t){this._map[e]=t}lookup(e){return this._map[e]}contains(e){return void 0!==this._map[e]}forEach(e){const t=this._map,r=t.length;if(r<=65536)for(let i=0;i<r;i++)void 0!==t[i]&&e(i,t[i]);else for(const i in t)e(i,t[i])}charCodeOf(e){const t=this._map;if(t.length<=65536)return t.indexOf(e);for(const r in t)if(t[r]===e)return 0|r;return-1}getMap(){return this._map}readCharCode(e,t,r){let i=0;const n=this.codespaceRanges;for(let a=0,s=n.length;a<s;a++){i=(i<<8|e.charCodeAt(t+a))>>>0;const s=n[a];for(let e=0,t=s.length;e<t;){const t=s[e++],n=s[e++];if(i>=t&&i<=n)return r.charcode=i,void(r.length=a+1)}}r.charcode=0,r.length=1}get length(){return this._map.length}get isIdentityCMap(){if("Identity-H"!==this.name&&"Identity-V"!==this.name)return!1;if(65536!==this._map.length)return!1;for(let e=0;e<65536;e++)if(this._map[e]!==e)return!1;return!0}}t.CMap=c;class u extends c{constructor(e,t){super(),this.vertical=e,this.addCodespaceRange(t,0,65535)}mapCidRange(e,t,r){(0,i.unreachable)("should not call mapCidRange")}mapBfRange(e,t,r){(0,i.unreachable)("should not call mapBfRange")}mapBfRangeToArray(e,t,r){(0,i.unreachable)("should not call mapBfRangeToArray")}mapOne(e,t){(0,i.unreachable)("should not call mapCidOne")}lookup(e){return Number.isInteger(e)&&e<=65535?e:void 0}contains(e){return Number.isInteger(e)&&e<=65535}forEach(e){for(let t=0;t<=65535;t++)e(t,t)}charCodeOf(e){return Number.isInteger(e)&&e<=65535?e:-1}getMap(){const e=new Array(65536);for(let t=0;t<=65535;t++)e[t]=t;return e}get length(){return 65536}get isIdentityCMap(){(0,i.unreachable)("should not access .isIdentityCMap")}}t.IdentityCMap=u;var f=function(){function e(e,t){for(var r=0,i=0;i<=t;i++)r=r<<8|e[i];return r>>>0}function t(e,t){return 1===t?String.fromCharCode(e[0],e[1]):3===t?String.fromCharCode(e[0],e[1],e[2],e[3]):String.fromCharCode.apply(null,e.subarray(0,t+1))}function r(e,t,r){for(var i=0,n=r;n>=0;n--)i+=e[n]+t[n],e[n]=255&i,i>>=8}function n(e,t){for(var r=1,i=t;i>=0&&r>0;i--)r+=e[i],e[i]=255&r,r>>=8}var a=16,s=19;function o(e){this.buffer=e,this.pos=0,this.end=e.length,this.tmpBuf=new Uint8Array(s)}function h(i,s,h){return new Promise((function(l,c){var u=new o(i),f=u.readByte();s.vertical=!!(1&f);var d,p,m=null,g=new Uint8Array(a),b=new Uint8Array(a),v=new Uint8Array(a),y=new Uint8Array(a),w=new Uint8Array(a);while((p=u.readByte())>=0){var M=p>>5;if(7!==M){var _=!!(16&p),S=15&p;if(S+1>a)throw new Error("processBinaryCMap: Invalid dataSize.");var k,A=1,x=u.readNumber();switch(M){case 0:for(u.readHex(g,S),u.readHexNumber(b,S),r(b,g,S),s.addCodespaceRange(S+1,e(g,S),e(b,S)),k=1;k<x;k++)n(b,S),u.readHexNumber(g,S),r(g,b,S),u.readHexNumber(b,S),r(b,g,S),s.addCodespaceRange(S+1,e(g,S),e(b,S));break;case 1:for(u.readHex(g,S),u.readHexNumber(b,S),r(b,g,S),u.readNumber(),k=1;k<x;k++)n(b,S),u.readHexNumber(g,S),r(g,b,S),u.readHexNumber(b,S),r(b,g,S),u.readNumber();break;case 2:for(u.readHex(v,S),d=u.readNumber(),s.mapOne(e(v,S),d),k=1;k<x;k++)n(v,S),_||(u.readHexNumber(w,S),r(v,w,S)),d=u.readSigned()+(d+1),s.mapOne(e(v,S),d);break;case 3:for(u.readHex(g,S),u.readHexNumber(b,S),r(b,g,S),d=u.readNumber(),s.mapCidRange(e(g,S),e(b,S),d),k=1;k<x;k++)n(b,S),_?g.set(b):(u.readHexNumber(g,S),r(g,b,S)),u.readHexNumber(b,S),r(b,g,S),d=u.readNumber(),s.mapCidRange(e(g,S),e(b,S),d);break;case 4:for(u.readHex(v,A),u.readHex(y,S),s.mapOne(e(v,A),t(y,S)),k=1;k<x;k++)n(v,A),_||(u.readHexNumber(w,A),r(v,w,A)),n(y,S),u.readHexSigned(w,S),r(y,w,S),s.mapOne(e(v,A),t(y,S));break;case 5:for(u.readHex(g,A),u.readHexNumber(b,A),r(b,g,A),u.readHex(y,S),s.mapBfRange(e(g,A),e(b,A),t(y,S)),k=1;k<x;k++)n(b,A),_?g.set(b):(u.readHexNumber(g,A),r(g,b,A)),u.readHexNumber(b,A),r(b,g,A),u.readHex(y,S),s.mapBfRange(e(g,A),e(b,A),t(y,S));break;default:return void c(new Error("processBinaryCMap: Unknown type: "+M))}}else switch(31&p){case 0:u.readString();break;case 1:m=u.readString();break}}l(m?h(m):s)}))}function l(){}return o.prototype={readByte(){return this.pos>=this.end?-1:this.buffer[this.pos++]},readNumber(){var e,t=0;do{var r=this.readByte();if(r<0)throw new i.FormatError("unexpected EOF in bcmap");e=!(128&r),t=t<<7|127&r}while(!e);return t},readSigned(){var e=this.readNumber();return 1&e?~(e>>>1):e>>>1},readHex(e,t){e.set(this.buffer.subarray(this.pos,this.pos+t+1)),this.pos+=t+1},readHexNumber(e,t){var r,n=this.tmpBuf,a=0;do{var s=this.readByte();if(s<0)throw new i.FormatError("unexpected EOF in bcmap");r=!(128&s),n[a++]=127&s}while(!r);var o=t,h=0,l=0;while(o>=0){while(l<8&&n.length>0)h=n[--a]<<l|h,l+=7;e[o]=255&h,o--,h>>=8,l-=8}},readHexSigned(e,t){this.readHexNumber(e,t);for(var r=1&e[t]?255:0,i=0,n=0;n<=t;n++)i=(1&i)<<8|e[n],e[n]=i>>1^r},readString(){for(var e=this.readNumber(),t="",r=0;r<e;r++)t+=String.fromCharCode(this.readNumber());return t}},l.prototype={process:h},l}(),d=function(){function e(e){for(var t=0,r=0;r<e.length;r++)t=t<<8|e.charCodeAt(r);return t>>>0}function t(e){if(!(0,i.isString)(e))throw new i.FormatError("Malformed CMap: expected string.")}function r(e){if(!Number.isInteger(e))throw new i.FormatError("Malformed CMap: expected int.")}function l(r,i){while(1){var a=i.getObj();if((0,n.isEOF)(a))break;if((0,n.isCmd)(a,"endbfchar"))return;t(a);var s=e(a);a=i.getObj(),t(a);var o=a;r.mapOne(s,o)}}function d(r,a){while(1){var s=a.getObj();if((0,n.isEOF)(s))break;if((0,n.isCmd)(s,"endbfrange"))return;t(s);var o=e(s);s=a.getObj(),t(s);var h=e(s);if(s=a.getObj(),Number.isInteger(s)||(0,i.isString)(s)){var l=Number.isInteger(s)?String.fromCharCode(s):s;r.mapBfRange(o,h,l)}else{if(!(0,n.isCmd)(s,"["))break;s=a.getObj();var c=[];while(!(0,n.isCmd)(s,"]")&&!(0,n.isEOF)(s))c.push(s),s=a.getObj();r.mapBfRangeToArray(o,h,c)}}throw new i.FormatError("Invalid bf range.")}function p(i,a){while(1){var s=a.getObj();if((0,n.isEOF)(s))break;if((0,n.isCmd)(s,"endcidchar"))return;t(s);var o=e(s);s=a.getObj(),r(s);var h=s;i.mapOne(o,h)}}function m(i,a){while(1){var s=a.getObj();if((0,n.isEOF)(s))break;if((0,n.isCmd)(s,"endcidrange"))return;t(s);var o=e(s);s=a.getObj(),t(s);var h=e(s);s=a.getObj(),r(s);var l=s;i.mapCidRange(o,h,l)}}function g(t,r){while(1){var a=r.getObj();if((0,n.isEOF)(a))break;if((0,n.isCmd)(a,"endcodespacerange"))return;if(!(0,i.isString)(a))break;var s=e(a);if(a=r.getObj(),!(0,i.isString)(a))break;var o=e(a);t.addCodespaceRange(a.length,s,o)}throw new i.FormatError("Invalid codespace range.")}function b(e,t){var r=t.getObj();Number.isInteger(r)&&(e.vertical=!!r)}function v(e,t){var r=t.getObj();(0,n.isName)(r)&&(0,i.isString)(r.name)&&(e.name=r.name)}function y(e,t,r,a){var o,h;e:while(1)try{var c=t.getObj();if((0,n.isEOF)(c))break;if((0,n.isName)(c))"WMode"===c.name?b(e,t):"CMapName"===c.name&&v(e,t),o=c;else if((0,n.isCmd)(c))switch(c.cmd){case"endcmap":break e;case"usecmap":(0,n.isName)(o)&&(h=o.name);break;case"begincodespacerange":g(e,t);break;case"beginbfchar":l(e,t);break;case"begincidchar":p(e,t);break;case"beginbfrange":d(e,t);break;case"begincidrange":m(e,t);break}}catch(u){if(u instanceof s.MissingDataException)throw u;(0,i.warn)("Invalid cMap data: "+u);continue}return!a&&h&&(a=h),a?w(e,r,a):Promise.resolve(e)}function w(e,t,r){return M(r,t).then((function(t){if(e.useCMap=t,0===e.numCodespaceRanges){for(var r=e.useCMap.codespaceRanges,i=0;i<r.length;i++)e.codespaceRanges[i]=r[i].slice();e.numCodespaceRanges=e.useCMap.numCodespaceRanges}return e.useCMap.forEach((function(t,r){e.contains(t)||e.mapOne(t,e.useCMap.lookup(t))})),e}))}function M(e,t){return"Identity-H"===e?Promise.resolve(new u(!1,2)):"Identity-V"===e?Promise.resolve(new u(!0,2)):h.includes(e)?t?t(e).then((function(e){var r=e.cMapData,n=e.compressionType,s=new c(!0);if(n===i.CMapCompressionType.BINARY)return(new f).process(r,s,(function(e){return w(s,t,e)}));if(n===i.CMapCompressionType.NONE){var h=new a.Lexer(new o.Stream(r));return y(s,h,t,null)}return Promise.reject(new Error("TODO: Only BINARY/NONE CMap compression is currently supported."))})):Promise.reject(new Error("Built-in CMap parameters are not provided.")):Promise.reject(new Error("Unknown CMap name: "+e))}return{async create(e){var t=e.encoding,r=e.fetchBuiltInCMap,i=e.useCMap;if((0,n.isName)(t))return M(t.name,r);if((0,n.isStream)(t)){var s=new c,o=new a.Lexer(t);return y(s,o,r,i).then((function(e){return e.isIdentityCMap?M(e.name,r):e}))}throw new Error("Encoding required.")}}}();t.CMapFactory=d},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getFontType=S,t.IdentityToUnicodeMap=t.ToUnicodeMap=t.FontFlags=t.Font=t.ErrorFont=t.SEAC_ANALYSIS_ENABLED=void 0;var i=r(2),n=r(31),a=r(34),s=r(33),o=r(35),h=r(36),l=r(8),c=r(37),u=r(29),f=r(12),d=r(38);const p=[[57344,63743],[1048576,1114109]];var m=1e3,g=!0;t.SEAC_ANALYSIS_ENABLED=g;const b=["ascent","bbox","black","bold","charProcOperatorList","composite","data","defaultVMetrics","defaultWidth","descent","fallbackName","fontMatrix","fontType","isMonospace","isSerifFont","isType3Font","italic","loadedName","mimetype","missingFile","name","remeasure","subtype","type","vertical"],v=["cMap","defaultEncoding","differences","isSymbolicFont","seacMap","toFontChar","toUnicode","vmetrics","widths"];var y={FixedPitch:1,Serif:2,Symbolic:4,Script:8,Nonsymbolic:32,Italic:64,AllCap:65536,SmallCap:131072,ForceBold:262144};t.FontFlags=y;var w=[".notdef",".null","nonmarkingreturn","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quotesingle","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","grave","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","Adieresis","Aring","Ccedilla","Eacute","Ntilde","Odieresis","Udieresis","aacute","agrave","acircumflex","adieresis","atilde","aring","ccedilla","eacute","egrave","ecircumflex","edieresis","iacute","igrave","icircumflex","idieresis","ntilde","oacute","ograve","ocircumflex","odieresis","otilde","uacute","ugrave","ucircumflex","udieresis","dagger","degree","cent","sterling","section","bullet","paragraph","germandbls","registered","copyright","trademark","acute","dieresis","notequal","AE","Oslash","infinity","plusminus","lessequal","greaterequal","yen","mu","partialdiff","summation","product","pi","integral","ordfeminine","ordmasculine","Omega","ae","oslash","questiondown","exclamdown","logicalnot","radical","florin","approxequal","Delta","guillemotleft","guillemotright","ellipsis","nonbreakingspace","Agrave","Atilde","Otilde","OE","oe","endash","emdash","quotedblleft","quotedblright","quoteleft","quoteright","divide","lozenge","ydieresis","Ydieresis","fraction","currency","guilsinglleft","guilsinglright","fi","fl","daggerdbl","periodcentered","quotesinglbase","quotedblbase","perthousand","Acircumflex","Ecircumflex","Aacute","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Oacute","Ocircumflex","apple","Ograve","Uacute","Ucircumflex","Ugrave","dotlessi","circumflex","tilde","macron","breve","dotaccent","ring","cedilla","hungarumlaut","ogonek","caron","Lslash","lslash","Scaron","scaron","Zcaron","zcaron","brokenbar","Eth","eth","Yacute","yacute","Thorn","thorn","minus","multiply","onesuperior","twosuperior","threesuperior","onehalf","onequarter","threequarters","franc","Gbreve","gbreve","Idotaccent","Scedilla","scedilla","Cacute","cacute","Ccaron","ccaron","dcroat"];function M(e){if(e.fontMatrix&&e.fontMatrix[0]!==i.FONT_IDENTITY_MATRIX[0]){var t=.001/e.fontMatrix[0],r=e.widths;for(var n in r)r[n]*=t;e.defaultWidth*=t}}function _(e,t){if(!e.hasIncludedToUnicodeMap&&!e.hasEncoding&&t!==e.defaultEncoding&&!(e.toUnicode instanceof C)){var r=[],i=(0,a.getGlyphsUnicode)();for(var n in t){var s=t[n],o=(0,h.getUnicodeForGlyph)(s,i);-1!==o&&(r[n]=String.fromCharCode(o))}e.toUnicode.amend(r)}}function S(e,t){switch(e){case"Type1":return"Type1C"===t?i.FontType.TYPE1C:i.FontType.TYPE1;case"CIDFontType0":return"CIDFontType0C"===t?i.FontType.CIDFONTTYPE0C:i.FontType.CIDFONTTYPE0;case"OpenType":return i.FontType.OPENTYPE;case"TrueType":return i.FontType.TRUETYPE;case"CIDFontType2":return i.FontType.CIDFONTTYPE2;case"MMType1":return i.FontType.MMTYPE1;case"Type0":return i.FontType.TYPE0;default:return i.FontType.UNKNOWN}}function k(e,t){if(void 0!==t[e])return e;var r=(0,h.getUnicodeForGlyph)(e,t);if(-1!==r)for(var n in t)if(t[n]===r)return n;return(0,i.info)("Unable to recover a standard glyph name for: "+e),e}var A=function(){function e(e,t,r,i,n,a,s,o){this.fontChar=e,this.unicode=t,this.accent=r,this.width=i,this.vmetric=n,this.operatorListId=a,this.isSpace=s,this.isInFont=o}return e.prototype.matchesForCache=function(e,t,r,i,n,a,s,o){return this.fontChar===e&&this.unicode===t&&this.accent===r&&this.width===i&&this.vmetric===n&&this.operatorListId===a&&this.isSpace===s&&this.isInFont===o},e}(),x=function(){function e(e=[]){this._map=e}return e.prototype={get length(){return this._map.length},forEach(e){for(var t in this._map)e(t,this._map[t].charCodeAt(0))},has(e){return void 0!==this._map[e]},get(e){return this._map[e]},charCodeOf(e){const t=this._map;if(t.length<=65536)return t.indexOf(e);for(const r in t)if(t[r]===e)return 0|r;return-1},amend(e){for(var t in e)this._map[t]=e[t]}},e}();t.ToUnicodeMap=x;var C=function(){function e(e,t){this.firstChar=e,this.lastChar=t}return e.prototype={get length(){return this.lastChar+1-this.firstChar},forEach(e){for(var t=this.firstChar,r=this.lastChar;t<=r;t++)e(t,t)},has(e){return this.firstChar<=e&&e<=this.lastChar},get(e){if(this.firstChar<=e&&e<=this.lastChar)return String.fromCharCode(e)},charCodeOf(e){return Number.isInteger(e)&&e>=this.firstChar&&e<=this.lastChar?e:-1},amend(e){(0,i.unreachable)("Should not call amend()")}},e}();t.IdentityToUnicodeMap=C;var E=function(){function e(e,t,r){e[t]=r>>8&255,e[t+1]=255&r}function t(e,t,r){e[t]=r>>24&255,e[t+1]=r>>16&255,e[t+2]=r>>8&255,e[t+3]=255&r}function r(e,t,r){var i,n;if(r instanceof Uint8Array)e.set(r,t);else if("string"===typeof r)for(i=0,n=r.length;i<n;i++)e[t++]=255&r.charCodeAt(i);else for(i=0,n=r.length;i<n;i++)e[t++]=255&r[i]}function n(e){this.sfnt=e,this.tables=Object.create(null)}n.getSearchParams=function(e,t){var r=1,i=0;while((r^e)>r)r<<=1,i++;var n=r*t;return{range:n,entry:i,rangeShift:t*e-n}};var a=12,s=16;return n.prototype={toArray:function(){var o=this.sfnt,h=this.tables,c=Object.keys(h);c.sort();var u,f,d,p,m,g=c.length,b=a+g*s,v=[b];for(u=0;u<g;u++){p=h[c[u]];var y=(p.length+3&-4)>>>0;b+=y,v.push(b)}var w=new Uint8Array(b);for(u=0;u<g;u++)p=h[c[u]],r(w,v[u],p);"true"===o&&(o=(0,i.string32)(65536)),w[0]=255&o.charCodeAt(0),w[1]=255&o.charCodeAt(1),w[2]=255&o.charCodeAt(2),w[3]=255&o.charCodeAt(3),e(w,4,g);var M=n.getSearchParams(g,16);for(e(w,6,M.range),e(w,8,M.entry),e(w,10,M.rangeShift),b=a,u=0;u<g;u++){m=c[u],w[b]=255&m.charCodeAt(0),w[b+1]=255&m.charCodeAt(1),w[b+2]=255&m.charCodeAt(2),w[b+3]=255&m.charCodeAt(3);var _=0;for(f=v[u],d=v[u+1];f<d;f+=4){var S=(0,l.readUint32)(w,f);_=_+S>>>0}t(w,b+4,_),t(w,b+8,v[u]),t(w,b+12,h[m].length),b+=s}return w},addTable:function(e,t){if(e in this.tables)throw new Error("Table "+e+" already exists");this.tables[e]=t}},n}(),T=function(){function e(e,t,r){var n;this.name=e,this.loadedName=r.loadedName,this.isType3Font=r.isType3Font,this.missingFile=!1,this.glyphCache=Object.create(null),this.isSerifFont=!!(r.flags&y.Serif),this.isSymbolicFont=!!(r.flags&y.Symbolic),this.isMonospace=!!(r.flags&y.FixedPitch);var a=r.type,s=r.subtype;this.type=a,this.subtype=s;let o="sans-serif";if(this.isMonospace?o="monospace":this.isSerifFont&&(o="serif"),this.fallbackName=o,this.differences=r.differences,this.widths=r.widths,this.defaultWidth=r.defaultWidth,this.composite=r.composite,this.cMap=r.cMap,this.ascent=r.ascent/m,this.descent=r.descent/m,this.fontMatrix=r.fontMatrix,this.bbox=r.bbox,this.defaultEncoding=r.defaultEncoding,this.toUnicode=r.toUnicode,this.fallbackToUnicode=r.fallbackToUnicode||new x,this.toFontChar=[],"Type3"!==r.type){if(this.cidEncoding=r.cidEncoding,this.vertical=!!r.vertical,this.vertical&&(this.vmetrics=r.vmetrics,this.defaultVMetrics=r.defaultVMetrics),!t||t.isEmpty)return t&&(0,i.warn)('Font file is empty in "'+e+'" ('+this.loadedName+")"),void this.fallbackToSystemFont();[a,s]=U(t,r),a===this.type&&s===this.subtype||(0,i.info)(`Inconsistent font file Type/SubType, expected: ${this.type}/${this.subtype} but found: ${a}/${s}.`);try{var h;switch(a){case"MMType1":(0,i.info)("MMType1 font ("+e+"), falling back to Type1.");case"Type1":case"CIDFontType0":this.mimetype="font/opentype";var l="Type1C"===s||"CIDFontType0C"===s?new O(t,r):new P(e,t,r);M(r),h=this.convert(e,l,r);break;case"OpenType":case"TrueType":case"CIDFontType2":this.mimetype="font/opentype",h=this.checkAndRepair(e,t,r),this.isOpenType&&(M(r),a="OpenType");break;default:throw new i.FormatError(`Font ${a} is not supported`)}}catch(c){return(0,i.warn)(c),void this.fallbackToSystemFont()}this.data=h,this.fontType=S(a,s),this.fontMatrix=r.fontMatrix,this.widths=r.widths,this.defaultWidth=r.defaultWidth,this.toUnicode=r.toUnicode,this.seacMap=r.seacMap}else{for(n=0;n<256;n++)this.toFontChar[n]=this.differences[n]||r.defaultEncoding[n];this.fontType=i.FontType.TYPE3}}function t(e,t){return(e<<8)+t}function r(e,t,r){e[t+1]=r,e[t]=r>>>8}function d(e,t){var r=(e<<8)+t;return 32768&r?r-65536:r}function T(e,t,r,i){return(e<<24)+(t<<16)+(r<<8)+i}function R(e){return String.fromCharCode(e>>8&255,255&e)}function I(e){return e>32767?e=32767:e<-32768&&(e=-32768),String.fromCharCode(e>>8&255,255&e)}function F(e){var t=e.peekBytes(4);return 65536===(0,l.readUint32)(t,0)||"true"===(0,i.bytesToString)(t)}function L(e){const t=e.peekBytes(4);return"ttcf"===(0,i.bytesToString)(t)}function D(e){var t=e.peekBytes(4);return"OTTO"===(0,i.bytesToString)(t)}function N(e){var t=e.peekBytes(2);return 37===t[0]&&33===t[1]||128===t[0]&&1===t[1]}function B(e){const t=e.peekBytes(4);return t[0]>=1&&t[3]>=1&&t[3]<=4}function U(e,{type:t,subtype:r,composite:n}){let a,s;return F(e)||L(e)?a=n?"CIDFontType2":"TrueType":D(e)?a=n?"CIDFontType2":"OpenType":N(e)?a=n?"CIDFontType0":"MMType1"===t?"MMType1":"Type1":B(e)?n?(a="CIDFontType0",s="CIDFontType0C"):(a="MMType1"===t?"MMType1":"Type1",s="Type1C"):((0,i.warn)("getFontFileType: Unable to detect correct font file Type/Subtype."),a=t,s=r),[a,s]}function j(e,t,r){for(var i,n=[],a=0,s=e.length;a<s;a++)i=(0,h.getUnicodeForGlyph)(e[a],t),-1!==i&&(n[a]=i);for(var o in r)i=(0,h.getUnicodeForGlyph)(r[o],t),-1!==i&&(n[+o]=i);return n}function q(e,t,r){var n=Object.create(null),a=[],s=0,o=p[s][0],h=p[s][1];for(var l in e){l|=0;var c=e[l];if(t(c)){if(o>h){if(s++,s>=p.length){(0,i.warn)("Ran out of space in font private use area.");break}o=p[s][0],h=p[s][1]}var u=o++;0===c&&(c=r),n[u]=c,a[l]=u}}return{toFontChar:a,charCodeToGlyphId:n,nextAvailableFontCharCode:o}}function z(e,t){var r=[];for(var i in e)e[i]>=t||r.push({fontCharCode:0|i,glyphId:e[i]});0===r.length&&r.push({fontCharCode:0,glyphId:0}),r.sort((function(e,t){return e.fontCharCode-t.fontCharCode}));for(var n=[],a=r.length,s=0;s<a;){var o=r[s].fontCharCode,h=[r[s].glyphId];++s;var l=o;while(s<a&&l+1===r[s].fontCharCode)if(h.push(r[s].glyphId),++l,++s,65535===l)break;n.push([o,l,h])}return n}function H(e,t){var r,n,a,s,o=z(e,t),h=o[o.length-1][1]>65535?2:1,l="\0\0"+R(h)+"\0\0"+(0,i.string32)(4+8*h);for(r=o.length-1;r>=0;--r)if(o[r][0]<=65535)break;var c=r+1;o[r][0]<65535&&65535===o[r][1]&&(o[r][1]=65534);var u,f,d,p,m=o[r][1]<65535?1:0,g=c+m,b=E.getSearchParams(g,2),v="",y="",w="",M="",_="",S=0;for(r=0,n=c;r<n;r++){u=o[r],f=u[0],d=u[1],v+=R(f),y+=R(d),p=u[2];var k=!0;for(a=1,s=p.length;a<s;++a)if(p[a]!==p[a-1]+1){k=!1;break}if(k){var A=p[0];w+=R(A-f&65535),M+=R(0)}else{var x=2*(g-r)+2*S;for(S+=d-f+1,w+=R(0),M+=R(x),a=0,s=p.length;a<s;++a)_+=R(p[a])}}m>0&&(y+="ÿÿ",v+="ÿÿ",w+="\0",M+="\0\0");var C="\0\0"+R(2*g)+R(b.range)+R(b.entry)+R(b.rangeShift)+y+"\0\0"+v+w+M+_,T="",I="";if(h>1){for(l+="\0\0\n"+(0,i.string32)(4+8*h+4+C.length),T="",r=0,n=o.length;r<n;r++){u=o[r],f=u[0],p=u[2];var P=p[0];for(a=1,s=p.length;a<s;++a)p[a]!==p[a-1]+1&&(d=u[0]+a-1,T+=(0,i.string32)(f)+(0,i.string32)(d)+(0,i.string32)(P),f=d+1,P=p[a]);T+=(0,i.string32)(f)+(0,i.string32)(u[1])+(0,i.string32)(P)}I="\0\f\0\0"+(0,i.string32)(T.length+16)+"\0\0\0\0"+(0,i.string32)(T.length/12)}return l+"\0"+R(C.length+4)+C+I+T}function G(e,t){t.pos=(t.start||0)+e.offset;var r=t.getUint16();t.skip(60);var i=t.getUint16();if(r<4&&768&i)return!1;var n=t.getUint16(),a=t.getUint16();if(n>a)return!1;t.skip(6);var s=t.getUint16();return 0!==s&&(e.data[8]=e.data[9]=0,!0)}function W(e,t,r){r=r||{unitsPerEm:0,yMax:0,yMin:0,ascent:0,descent:0};var n=0,a=0,s=0,o=0,l=null,c=0;if(t){for(var u in t){u|=0,(l>u||!l)&&(l=u),c<u&&(c=u);var f=(0,h.getUnicodeRangeFor)(u);if(f<32)n|=1<<f;else if(f<64)a|=1<<f-32;else if(f<96)s|=1<<f-64;else{if(!(f<123))throw new i.FormatError("Unicode ranges Bits > 123 are reserved for internal usage");o|=1<<f-96}}c>65535&&(c=65535)}else l=0,c=255;var d=e.bbox||[0,0,0,0],p=r.unitsPerEm||1/(e.fontMatrix||i.FONT_IDENTITY_MATRIX)[0],g=e.ascentScaled?1:p/m,b=r.ascent||Math.round(g*(e.ascent||d[3])),v=r.descent||Math.round(g*(e.descent||d[1]));v>0&&e.descent>0&&d[1]<0&&(v=-v);var y=r.yMax||b,w=-r.yMin||-v;return"\0$ô\0\0\0Š»\0\0\0ŒŠ»\0\0ß\x001\0\0\0\0"+String.fromCharCode(e.fixedPitch?9:0)+"\0\0\0\0\0\0"+(0,i.string32)(n)+(0,i.string32)(a)+(0,i.string32)(s)+(0,i.string32)(o)+"*21*"+R(e.italicAngle?1:0)+R(l||e.firstChar)+R(c||e.lastChar)+R(b)+R(v)+"\0d"+R(y)+R(w)+"\0\0\0\0\0\0\0\0"+R(e.xHeight)+R(e.capHeight)+R(0)+R(l||e.firstChar)+"\0"}function X(e){var t=Math.floor(65536*e.italicAngle);return"\0\0\0"+(0,i.string32)(t)+"\0\0\0\0"+(0,i.string32)(e.fixedPitch)+"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}function V(e,t){t||(t=[[],[]]);var r,i,n,a,s,o=[t[0][0]||"Original licence",t[0][1]||e,t[0][2]||"Unknown",t[0][3]||"uniqueID",t[0][4]||e,t[0][5]||"Version 0.11",t[0][6]||"",t[0][7]||"Unknown",t[0][8]||"Unknown",t[0][9]||"Unknown"],h=[];for(r=0,i=o.length;r<i;r++){s=t[1][r]||o[r];var l=[];for(n=0,a=s.length;n<a;n++)l.push(R(s.charCodeAt(n)));h.push(l.join(""))}var c=[o,h],u=["\0","\0"],f=["\0\0","\0"],d=["\0\0","\t"],p=o.length*u.length,m="\0\0"+R(p)+R(12*p+6),g=0;for(r=0,i=u.length;r<i;r++){var b=c[r];for(n=0,a=b.length;n<a;n++){s=b[n];var v=u[r]+f[r]+d[r]+R(n)+R(s.length)+R(g);m+=v,g+=s.length}}return m+=o.join("")+h.join(""),m}return e.prototype={name:null,font:null,mimetype:null,disableFontFace:!1,get renderer(){var e=c.FontRendererFactory.create(this,g);return(0,i.shadow)(this,"renderer",e)},exportData(e=!1){const t=e?[...b,...v]:b,r=Object.create(null);let i,n;for(i of t)n=this[i],void 0!==n&&(r[i]=n);return r},fallbackToSystemFont:function(){this.missingFile=!0;var e=this.name,t=this.type,r=this.subtype;let n=e.replace(/[,_]/g,"-").replace(/\s/g,"");var l=(0,o.getStdFontMap)(),c=(0,o.getNonStdFontMap)(),u=!!l[n]||!(!c[n]||!l[c[n]]);if(n=l[n]||c[n]||n,this.bold=-1!==n.search(/bold/gi),this.italic=-1!==n.search(/oblique/gi)||-1!==n.search(/italic/gi),this.black=-1!==e.search(/Black/g),this.remeasure=Object.keys(this.widths).length>0,u&&"CIDFontType2"===t&&this.cidEncoding.startsWith("Identity-")){const t=(0,o.getGlyphMapForStandardFonts)(),r=[];for(const e in t)r[+e]=t[e];if(/Arial-?Black/i.test(e)){var f=(0,o.getSupplementalGlyphMapForArialBlack)();for(const e in f)r[+e]=f[e]}else if(/Calibri/i.test(e)){const e=(0,o.getSupplementalGlyphMapForCalibri)();for(const t in e)r[+t]=e[t]}var d=this.toUnicode instanceof C;d||this.toUnicode.forEach((function(e,t){r[+e]=t})),this.toFontChar=r,this.toUnicode=new x(r)}else if(/Symbol/i.test(n))this.toFontChar=j(s.SymbolSetEncoding,(0,a.getGlyphsUnicode)(),this.differences);else if(/Dingbats/i.test(n))/Wingdings/i.test(e)&&(0,i.warn)("Non-embedded Wingdings font, falling back to ZapfDingbats."),this.toFontChar=j(s.ZapfDingbatsEncoding,(0,a.getDingbatsGlyphsUnicode)(),this.differences);else if(u)this.toFontChar=j(this.defaultEncoding,(0,a.getGlyphsUnicode)(),this.differences);else{const t=(0,a.getGlyphsUnicode)(),r=[];if(this.toUnicode.forEach((e,i)=>{if(!this.composite){var n=this.differences[e]||this.defaultEncoding[e];const r=(0,h.getUnicodeForGlyph)(n,t);-1!==r&&(i=r)}r[+e]=i}),this.composite&&this.toUnicode instanceof C&&/Verdana/i.test(e)){const e=(0,o.getGlyphMapForStandardFonts)();for(const t in e)r[+t]=e[t]}this.toFontChar=r}this.loadedName=n.split("-")[0],this.fontType=S(t,r)},checkAndRepair:function(e,o,h){const l=["OS/2","cmap","head","hhea","hmtx","maxp","name","post","loca","glyf","fpgm","prep","cvt ","CFF "];function c(e,t){const r=Object.create(null);r["OS/2"]=null,r.cmap=null,r.head=null,r.hhea=null,r.hmtx=null,r.maxp=null,r.name=null,r.post=null;for(let i=0;i<t;i++){const t=p(e);l.includes(t.tag)&&(0!==t.length&&(r[t.tag]=t))}return r}function p(e){var t=(0,i.bytesToString)(e.getBytes(4)),r=e.getInt32()>>>0,n=e.getInt32()>>>0,a=e.getInt32()>>>0,s=e.pos;e.pos=e.start?e.start:0,e.skip(n);var o=e.getBytes(a);return e.pos=s,"head"===t&&(o[8]=o[9]=o[10]=o[11]=0,o[17]|=32),{tag:t,checksum:r,length:a,offset:n,data:o}}function m(e){return{version:(0,i.bytesToString)(e.getBytes(4)),numTables:e.getUint16(),searchRange:e.getUint16(),entrySelector:e.getUint16(),rangeShift:e.getUint16()}}function b(e){const t=(0,i.bytesToString)(e.getBytes(4));(0,i.assert)("ttcf"===t,"Must be a TrueType Collection font.");const r=e.getUint16(),n=e.getUint16(),a=e.getInt32()>>>0,s=[];for(let i=0;i<a;i++)s.push(e.getInt32()>>>0);const o={ttcTag:t,majorVersion:r,minorVersion:n,numFonts:a,offsetTable:s};switch(r){case 1:return o;case 2:return o.dsigTag=e.getInt32()>>>0,o.dsigLength=e.getInt32()>>>0,o.dsigOffset=e.getInt32()>>>0,o}throw new i.FormatError(`Invalid TrueType Collection majorVersion: ${r}.`)}function v(e,t){const{numFonts:r,offsetTable:n}=b(e);for(let a=0;a<r;a++){e.pos=(e.start||0)+n[a];const r=m(e),s=c(e,r.numTables);if(!s.name)throw new i.FormatError('TrueType Collection font must contain a "name" table.');const o=R(s.name);for(let e=0,i=o.length;e<i;e++)for(let n=0,a=o[e].length;n<a;n++){const i=o[e][n];if(i&&i.replace(/\s/g,"")===t)return{header:r,tables:s}}}throw new i.FormatError(`TrueType Collection does not contain "${t}" font.`)}function y(e,t,r,n){if(!e)return(0,i.warn)("No cmap table available."),{platformId:-1,encodingId:-1,mappings:[],hasShortCmap:!1};var a,s=(t.start?t.start:0)+e.offset;t.pos=s,t.skip(2);for(var o,h=t.getUint16(),l=!1,c=0;c<h;c++){var u=t.getUint16(),f=t.getUint16(),d=t.getInt32()>>>0,p=!1;if((!o||o.platformId!==u||o.encodingId!==f)&&(0!==u||0!==f&&1!==f&&3!==f?1===u&&0===f?p=!0:3!==u||1!==f||!n&&o?r&&3===u&&0===f&&(p=!0,l=!0):(p=!0,r||(l=!0)):p=!0,p&&(o={platformId:u,encodingId:f,offset:d}),l))break}if(o&&(t.pos=s+o.offset),!o||-1===t.peekByte())return(0,i.warn)("Could not find a preferred cmap table."),{platformId:-1,encodingId:-1,mappings:[],hasShortCmap:!1};var m=t.getUint16();t.skip(4);var g,b,v=!1,y=[];if(0===m){for(g=0;g<256;g++){var w=t.getByte();w&&y.push({charCode:g,glyphId:w})}v=!0}else if(4===m){var M=t.getUint16()>>1;t.skip(6);var _,S=[];for(_=0;_<M;_++)S.push({end:t.getUint16()});for(t.skip(2),_=0;_<M;_++)S[_].start=t.getUint16();for(_=0;_<M;_++)S[_].delta=t.getUint16();var k=0;for(_=0;_<M;_++){a=S[_];var A=t.getUint16();if(A){var x=(A>>1)-(M-_);a.offsetIndex=x,k=Math.max(k,x+a.end-a.start+1)}else a.offsetIndex=-1}var C=[];for(g=0;g<k;g++)C.push(t.getUint16());for(_=0;_<M;_++){a=S[_],s=a.start;var E=a.end,T=a.delta;for(x=a.offsetIndex,g=s;g<=E;g++)65535!==g&&(b=x<0?g:C[x+g-s],b=b+T&65535,y.push({charCode:g,glyphId:b}))}}else{if(6!==m)return(0,i.warn)("cmap table has unsupported format: "+m),{platformId:-1,encodingId:-1,mappings:[],hasShortCmap:!1};var R=t.getUint16(),I=t.getUint16();for(g=0;g<I;g++){b=t.getUint16();var P=R+g;y.push({charCode:P,glyphId:b})}}for(y.sort((function(e,t){return e.charCode-t.charCode})),c=1;c<y.length;c++)y[c-1].charCode===y[c].charCode&&(y.splice(c,1),c--);return{platformId:o.platformId,encodingId:o.encodingId,mappings:y,hasShortCmap:v}}function _(e,t,r,n,a){if(t){e.pos=(e.start?e.start:0)+t.offset,e.pos+=4,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=2,e.pos+=8,e.pos+=2;var s=e.getUint16();s>n&&((0,i.info)("The numOfMetrics ("+s+") should not be greater than the numGlyphs ("+n+")"),s=n,t.data[34]=(65280&s)>>8,t.data[35]=255&s);var o=n-s,h=o-(r.length-4*s>>1);if(h>0){var l=new Uint8Array(r.length+2*h);l.set(r.data),a&&(l[r.length]=r.data[2],l[r.length+1]=r.data[3]),r.data=l}}else r&&(r.data=null)}function S(e,t,i,n,a,s){var o={length:0,sizeOfInstructions:0};if(i-t<=12)return o;var h=e.subarray(t,i),l=d(h[0],h[1]);if(l<0)return l=-1,r(h,0,l),n.set(h,a),o.length=h.length,o;var c,u=10,f=0;for(c=0;c<l;c++){var p=h[u]<<8|h[u+1];f=p+1,u+=2}var m=u,g=h[u]<<8|h[u+1];o.sizeOfInstructions=g,u+=2+g;var b=u,v=0;for(c=0;c<f;c++){var y=h[u++];192&y&&(h[u-1]=63&y);let e=2;2&y?e=1:16&y&&(e=0);let t=2;4&y?t=1:32&y&&(t=0);const r=e+t;if(v+=r,8&y){var w=h[u++];c+=w,v+=w*r}}if(0===v)return o;var M=u+v;return M>h.length?o:!s&&g>0?(n.set(h.subarray(0,m),a),n.set([0,0],a+m),n.set(h.subarray(b,M),a+m+2),M-=g,h.length-M>3&&(M=M+3&-4),o.length=M,o):h.length-M>3?(M=M+3&-4,n.set(h.subarray(0,M),a),o.length=M,o):(n.set(h,a),o.length=h.length,o)}function A(e,r,n){var a=e.data,s=T(a[0],a[1],a[2],a[3]);s>>16!==1&&((0,i.info)("Attempting to fix invalid version in head table: "+s),a[0]=0,a[1]=1,a[2]=0,a[3]=0);var o=t(a[50],a[51]);if(o<0||o>1){(0,i.info)("Attempting to fix invalid indexToLocFormat in head table: "+o);var h=r+1;if(n===h<<1)a[50]=0,a[51]=0;else{if(n!==h<<2)throw new i.FormatError("Could not fix indexToLocFormat: "+o);a[50]=0,a[51]=1}}}function x(e,t,r,i,n,a,s){var o,h,l;i?(o=4,h=function(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]},l=function(e,t,r){e[t]=r>>>24&255,e[t+1]=r>>16&255,e[t+2]=r>>8&255,e[t+3]=255&r}):(o=2,h=function(e,t){return e[t]<<9|e[t+1]<<1},l=function(e,t,r){e[t]=r>>9&255,e[t+1]=r>>1&255});var c=a?r+1:r,u=o*(1+c),f=new Uint8Array(u);f.set(e.data.subarray(0,u)),e.data=f;var d,p,m=t.data,g=m.length,b=new Uint8Array(g);const v=[];for(d=0,p=0;d<r+1;d++,p+=o){let e=h(f,p);e>g&&(e=g),v.push({index:d,offset:e,endOffset:0})}for(v.sort((e,t)=>e.offset-t.offset),d=0;d<r;d++)v[d].endOffset=v[d+1].offset;v.sort((e,t)=>e.index-t.index);var y=Object.create(null),w=0;for(l(f,0,w),d=0,p=o;d<r;d++,p+=o){var M=S(m,v[d].offset,v[d].endOffset,b,w,n),_=M.length;0===_&&(y[d]=!0),M.sizeOfInstructions>s&&(s=M.sizeOfInstructions),w+=_,l(f,p,w)}if(0===w){var k=new Uint8Array([0,1,0,0,0,0,0,0,0,0,0,0,0,0,49,0]);for(d=0,p=o;d<c;d++,p+=o)l(f,p,k.length);t.data=k}else if(a){var A=h(f,o);b.length>A+w?t.data=b.subarray(0,A+w):(t.data=new Uint8Array(A+w),t.data.set(b.subarray(0,w))),t.data.set(b.subarray(0,A),w),l(e.data,f.length-o,w+A)}else t.data=b.subarray(0,w);return{missingGlyphs:y,maxSizeOfInstructions:s}}function C(e,t,r){var n=(o.start?o.start:0)+e.offset;o.pos=n;var a,s=e.length,h=n+s,l=o.getInt32();o.skip(28);var c,u=!0;switch(l){case 65536:a=w;break;case 131072:var f=o.getUint16();if(f!==r){u=!1;break}var d=[];for(c=0;c<f;++c){var p=o.getUint16();if(p>=32768){u=!1;break}d.push(p)}if(!u)break;var m=[],g=[];while(o.pos<h){var b=o.getByte();for(g.length=b,c=0;c<b;++c)g[c]=String.fromCharCode(o.getByte());m.push(g.join(""))}for(a=[],c=0;c<f;++c){var v=d[c];v<258?a.push(w[v]):a.push(m[v-258])}break;case 196608:break;default:(0,i.warn)("Unknown/unsupported post table version "+l),u=!1,t.defaultEncoding&&(a=t.defaultEncoding);break}return t.glyphNames=a,u}function R(e){var t=(o.start?o.start:0)+e.offset;o.pos=t;var r=[[],[]],n=e.length,a=t+n,s=o.getUint16(),h=6;if(0!==s||n<h)return r;var l,c,u=o.getUint16(),f=o.getUint16(),d=[],p=12;for(l=0;l<u&&o.pos+p<=a;l++){var m={platform:o.getUint16(),encoding:o.getUint16(),language:o.getUint16(),name:o.getUint16(),length:o.getUint16(),offset:o.getUint16()};(1===m.platform&&0===m.encoding&&0===m.language||3===m.platform&&1===m.encoding&&1033===m.language)&&d.push(m)}for(l=0,c=d.length;l<c;l++){var g=d[l];if(!(g.length<=0)){var b=t+f+g.offset;if(!(b+g.length>a)){o.pos=b;var v=g.name;if(g.encoding){for(var y="",w=0,M=g.length;w<M;w+=2)y+=String.fromCharCode(o.getUint16());r[1][v]=y}else r[0][v]=(0,i.bytesToString)(o.getBytes(g.length))}}}return r}var I=[0,0,0,0,0,0,0,0,-2,-2,-2,-2,0,0,-2,-5,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,1,-1,-999,0,1,0,-1,-2,0,-1,-2,-1,-1,0,-1,-1,0,0,-999,-999,-1,-1,-1,-1,-2,-999,-2,-2,-999,0,-2,-2,0,0,-2,0,-2,0,0,0,-2,-1,-1,1,1,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,0,-999,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-999,-999,-999,-999,-999,-1,-1,-2,-2,0,0,0,0,-1,-1,-999,-2,-2,0,0,-1,-2,-2,0,0,0,-1,-1,-1,-2];function P(e,t){for(var r,n,a,s,o,h=e.data,l=0,c=0,u=0,f=[],d=[],p=[],m=t.tooComplexToFollowFunctions,g=!1,b=0,v=0,y=h.length;l<y;){var w=h[l++];if(64===w)if(n=h[l++],g||v)l+=n;else for(r=0;r<n;r++)f.push(h[l++]);else if(65===w)if(n=h[l++],g||v)l+=2*n;else for(r=0;r<n;r++)a=h[l++],f.push(a<<8|h[l++]);else if(176===(248&w))if(n=w-176+1,g||v)l+=n;else for(r=0;r<n;r++)f.push(h[l++]);else if(184===(248&w))if(n=w-184+1,g||v)l+=2*n;else for(r=0;r<n;r++)a=h[l++],f.push(a<<8|h[l++]);else if(43!==w||m)if(44!==w||m){if(45===w)if(g)g=!1,c=l;else{if(o=d.pop(),!o)return(0,i.warn)("TT: ENDF bad stack"),void(t.hintsValid=!1);s=p.pop(),h=o.data,l=o.i,t.functionsStackDeltas[s]=f.length-o.stackTop}else if(137===w)(g||v)&&((0,i.warn)("TT: nested IDEFs not allowed"),m=!0),g=!0,u=l;else if(88===w)++b;else if(27===w)v=b;else if(89===w)v===b&&(v=0),--b;else if(28===w&&!g&&!v){var M=f[f.length-1];M>0&&(l+=M-1)}}else(g||v)&&((0,i.warn)("TT: nested FDEFs not allowed"),m=!0),g=!0,u=l,s=f.pop(),t.functionsDefined[s]={data:h,i:l};else if(!g&&!v)if(s=f[f.length-1],isNaN(s))(0,i.info)("TT: CALL empty stack (or invalid entry).");else if(t.functionsUsed[s]=!0,s in t.functionsStackDeltas){const e=f.length+t.functionsStackDeltas[s];if(e<0)return(0,i.warn)("TT: CALL invalid functions stack delta."),void(t.hintsValid=!1);f.length=e}else if(s in t.functionsDefined&&!p.includes(s)){if(d.push({data:h,i:l,stackTop:f.length-1}),p.push(s),o=t.functionsDefined[s],!o)return(0,i.warn)("TT: CALL non-existent function"),void(t.hintsValid=!1);h=o.data,l=o.i}if(!g&&!v){let e=0;w<=142?e=I[w]:w>=192&&w<=223?e=-1:w>=224&&(e=-2),w>=113&&w<=117&&(n=f.pop(),isNaN(n)||(e=2*-n));while(e<0&&f.length>0)f.pop(),e++;while(e>0)f.push(NaN),e--}}t.tooComplexToFollowFunctions=m;var _=[h];l>h.length&&_.push(new Uint8Array(l-h.length)),u>c&&((0,i.warn)("TT: complementing a missing function tail"),_.push(new Uint8Array([34,45]))),D(e,_)}function F(e,t){if(!e.tooComplexToFollowFunctions){if(e.functionsDefined.length>t)return(0,i.warn)("TT: more functions defined than expected"),void(e.hintsValid=!1);for(var r=0,n=e.functionsUsed.length;r<n;r++){if(r>t)return(0,i.warn)("TT: invalid function id: "+r),void(e.hintsValid=!1);if(e.functionsUsed[r]&&!e.functionsDefined[r])return(0,i.warn)("TT: undefined function: "+r),void(e.hintsValid=!1)}}}function D(e,t){if(t.length>1){var r,i,n=0;for(r=0,i=t.length;r<i;r++)n+=t[r].length;n=n+3&-4;var a=new Uint8Array(n),s=0;for(r=0,i=t.length;r<i;r++)a.set(t[r],s),s+=t[r].length;e.data=a,e.length=n}}function N(e,t,r,i){var n={functionsDefined:[],functionsUsed:[],functionsStackDeltas:[],tooComplexToFollowFunctions:!1,hintsValid:!0};if(e&&P(e,n),t&&P(t,n),e&&F(n,i),r&&1&r.length){var a=new Uint8Array(r.length+1);a.set(r.data),r.data=a}return n.hintsValid}let B,U,j,z;if(o=new f.Stream(new Uint8Array(o.getBytes())),L(o)){const e=v(o,this.name);B=e.header,U=e.tables}else B=m(o),U=c(o,B.numTables);var K=!U["CFF "];if(K){if(!U.loca)throw new i.FormatError('Required "loca" table is not found');U.glyf||((0,i.warn)('Required "glyf" table is not found -- trying to recover.'),U.glyf={tag:"glyf",data:new Uint8Array(0)}),this.isOpenType=!1}else{const t=h.composite&&((h.cidToGidMap||[]).length>0||!(h.cMap instanceof u.IdentityCMap));if("OTTO"===B.version&&!t||!U.head||!U.hhea||!U.maxp||!U.post)return z=new f.Stream(U["CFF "].data),j=new O(z,h),M(h),this.convert(e,j,h);delete U.glyf,delete U.loca,delete U.fpgm,delete U.prep,delete U["cvt "],this.isOpenType=!0}if(!U.maxp)throw new i.FormatError('Required "maxp" table is not found');o.pos=(o.start||0)+U.maxp.offset;var Y=o.getInt32();const Z=o.getUint16();let $=Z+1,J=!0;$>65535&&(J=!1,$=Z,(0,i.warn)("Not enough space in glyfs to duplicate first glyph."));var Q=0,ee=0;if(Y>=65536&&U.maxp.length>=22){o.pos+=8;var te=o.getUint16();te>2&&(U.maxp.data[14]=0,U.maxp.data[15]=2),o.pos+=4,Q=o.getUint16(),o.pos+=4,ee=o.getUint16()}U.maxp.data[4]=$>>8,U.maxp.data[5]=255&$;var re=N(U.fpgm,U.prep,U["cvt "],Q);if(re||(delete U.fpgm,delete U.prep,delete U["cvt "]),_(o,U.hhea,U.hmtx,$,J),!U.head)throw new i.FormatError('Required "head" table is not found');A(U.head,Z,K?U.loca.length:0);var ie=Object.create(null);if(K){var ne=t(U.head.data[50],U.head.data[51]),ae=x(U.loca,U.glyf,Z,ne,re,J,ee);ie=ae.missingGlyphs,Y>=65536&&U.maxp.length>=22&&(U.maxp.data[26]=ae.maxSizeOfInstructions>>8,U.maxp.data[27]=255&ae.maxSizeOfInstructions)}if(!U.hhea)throw new i.FormatError('Required "hhea" table is not found');0===U.hhea.data[10]&&0===U.hhea.data[11]&&(U.hhea.data[10]=255,U.hhea.data[11]=255);var se={unitsPerEm:t(U.head.data[18],U.head.data[19]),yMax:t(U.head.data[42],U.head.data[43]),yMin:d(U.head.data[38],U.head.data[39]),ascent:t(U.hhea.data[4],U.hhea.data[5]),descent:d(U.hhea.data[6],U.hhea.data[7])};this.ascent=se.ascent/se.unitsPerEm,this.descent=se.descent/se.unitsPerEm,U.post&&C(U.post,h,Z),U.post={tag:"post",data:X(h)};const oe=[];function he(e){return!ie[e]}if(h.composite){var le=h.cidToGidMap||[],ce=0===le.length;h.cMap.forEach((function(e,t){if(t>65535)throw new i.FormatError("Max size of CID is 65,535");var r=-1;ce?r=t:void 0!==le[t]&&(r=le[t]),r>=0&&r<Z&&he(r)&&(oe[e]=r)}))}else{var ue=y(U.cmap,o,this.isSymbolicFont,h.hasEncoding),fe=ue.platformId,de=ue.encodingId,pe=ue.mappings,me=pe.length;let e=[];if(!h.hasEncoding||"MacRomanEncoding"!==h.baseEncodingName&&"WinAnsiEncoding"!==h.baseEncodingName||(e=(0,s.getEncoding)(h.baseEncodingName)),h.hasEncoding&&!this.isSymbolicFont&&(3===fe&&1===de||1===fe&&0===de)){var ge=(0,a.getGlyphsUnicode)();for(let t=0;t<256;t++){var be,ve;if(be=this.differences&&t in this.differences?this.differences[t]:t in e&&""!==e[t]?e[t]:s.StandardEncoding[t],be){var ye;ve=k(be,ge),3===fe&&1===de?ye=ge[ve]:1===fe&&0===de&&(ye=s.MacRomanEncoding.indexOf(ve));for(let e=0;e<me;++e)if(pe[e].charCode===ye){oe[t]=pe[e].glyphId;break}}}}else if(0===fe)for(let t=0;t<me;++t)oe[pe[t].charCode]=pe[t].glyphId;else for(let t=0;t<me;++t){let e=pe[t].charCode;3===fe&&e>=61440&&e<=61695&&(e&=255),oe[e]=pe[t].glyphId}if(h.glyphNames&&e.length)for(let t=0;t<256;++t)if(void 0===oe[t]&&e[t]){be=e[t];const r=h.glyphNames.indexOf(be);r>0&&he(r)&&(oe[t]=r)}}0===oe.length&&(oe[0]=0);let we=$-1;J||(we=0);var Me=q(oe,he,we);if(this.toFontChar=Me.toFontChar,U.cmap={tag:"cmap",data:H(Me.charCodeToGlyphId,$)},U["OS/2"]&&G(U["OS/2"],o)||(U["OS/2"]={tag:"OS/2",data:W(h,Me.charCodeToGlyphId,se)}),!K)try{z=new f.Stream(U["CFF "].data);var _e=new n.CFFParser(z,h,g);j=_e.parse(),j.duplicateFirstGlyph();var Se=new n.CFFCompiler(j);U["CFF "].data=Se.compile()}catch(Ce){(0,i.warn)("Failed to compile font "+h.loadedName)}if(U.name){var ke=R(U.name);U.name.data=V(e,ke)}else U.name={tag:"name",data:V(this.name)};var Ae=new E(B.version);for(var xe in U)Ae.addTable(xe,U[xe].data);return Ae.toArray()},convert:function(e,t,r){r.fixedPitch=!1,r.builtInEncoding&&_(r,r.builtInEncoding);let n=1;t instanceof O&&(n=t.numGlyphs-1);var a=t.getGlyphMapping(r),o=q(a,t.hasGlyphId.bind(t),n);this.toFontChar=o.toFontChar;var h=t.numGlyphs;function l(e,t){var r=null;for(var i in e)t===e[i]&&(r||(r=[]),r.push(0|i));return r}function c(e,t){for(var r in e)if(t===e[r])return 0|r;return o.charCodeToGlyphId[o.nextAvailableFontCharCode]=t,o.nextAvailableFontCharCode++}var u=t.seacs;if(g&&u&&u.length){var f=r.fontMatrix||i.FONT_IDENTITY_MATRIX,d=t.getCharset(),p=Object.create(null);for(var m in u){m|=0;var b=u[m],v=s.StandardEncoding[b[2]],y=s.StandardEncoding[b[3]],w=d.indexOf(v),M=d.indexOf(y);if(!(w<0||M<0)){var S={x:b[0]*f[0]+b[1]*f[2]+f[4],y:b[0]*f[1]+b[1]*f[3]+f[5]},k=l(a,m);if(k)for(let e=0,t=k.length;e<t;e++){var A=k[e],x=o.charCodeToGlyphId,C=c(x,w),T=c(x,M);p[A]={baseFontCharCode:C,accentFontCharCode:T,accentOffset:S}}}}r.seacMap=p}var P=1/(r.fontMatrix||i.FONT_IDENTITY_MATRIX)[0],F=new E("OTTO");return F.addTable("CFF ",t.data),F.addTable("OS/2",W(r,o.charCodeToGlyphId)),F.addTable("cmap",H(o.charCodeToGlyphId,h)),F.addTable("head","\0\0\0\0\0\0\0\0\0\0_<õ\0\0"+I(P)+"\0\0\0\0ž\v~'\0\0\0\0ž\v~'\0\0"+I(r.descent)+"ÿ"+I(r.ascent)+R(r.italicAngle?2:0)+"\0\0\0\0\0\0\0"),F.addTable("hhea","\0\0\0"+I(r.ascent)+I(r.descent)+"\0\0ÿÿ\0\0\0\0\0\0"+I(r.capHeight)+I(Math.tan(r.italicAngle)*r.xHeight)+"\0\0\0\0\0\0\0\0\0\0\0\0"+R(h)),F.addTable("hmtx",function(){var e=t.charstrings,r=t.cff?t.cff.widths:null,i="\0\0\0\0";for(let t=1,s=h;t<s;t++){var n=0;if(e){var a=e[t-1];n="width"in a?a.width:0}else r&&(n=Math.ceil(r[t]||0));i+=R(n)+R(0)}return i}()),F.addTable("maxp","\0\0P\0"+R(h)),F.addTable("name",V(e)),F.addTable("post",X(r)),F.toArray()},get spaceWidth(){for(var e,t=["space","minus","one","i","I"],r=0,n=t.length;r<n;r++){var s=t[r];if(s in this.widths){e=this.widths[s];break}var o=(0,a.getGlyphsUnicode)(),h=o[s],l=0;if(this.composite&&this.cMap.contains(h)&&(l=this.cMap.lookup(h)),!l&&this.toUnicode&&(l=this.toUnicode.charCodeOf(h)),l<=0&&(l=h),e=this.widths[l],e)break}return e=e||this.defaultWidth,(0,i.shadow)(this,"spaceWidth",e)},charToGlyph:function(e,t){var r,n,a,s=e;this.cMap&&this.cMap.contains(e)&&(s=this.cMap.lookup(e)),n=this.widths[s],n=(0,i.isNum)(n)?n:this.defaultWidth;var o=this.vmetrics&&this.vmetrics[s];let l=this.toUnicode.get(e)||this.fallbackToUnicode.get(e)||e;"number"===typeof l&&(l=String.fromCharCode(l));var c=e in this.toFontChar;if(r=this.toFontChar[e]||e,this.missingFile){const t=this.differences[e]||this.defaultEncoding[e];".notdef"!==t&&""!==t||"Type1"!==this.type||(r=32),r=(0,h.mapSpecialUnicodeValues)(r)}this.isType3Font&&(a=r);var u=null;if(this.seacMap&&this.seacMap[e]){c=!0;var f=this.seacMap[e];r=f.baseFontCharCode,u={fontChar:String.fromCodePoint(f.accentFontCharCode),offset:f.accentOffset}}let d="";"number"===typeof r&&(r<=1114111?d=String.fromCodePoint(r):(0,i.warn)("charToGlyph - invalid fontCharCode: "+r));var p=this.glyphCache[e];return p&&p.matchesForCache(d,l,u,n,o,a,t,c)||(p=new A(d,l,u,n,o,a,t,c),this.glyphCache[e]=p),p},charsToGlyphs:function(e){var t,r,i,n=this.charsCache;if(n&&(t=n[e],t))return t;n||(n=this.charsCache=Object.create(null)),t=[];var a,s=e,o=0;if(this.cMap){var h=Object.create(null);while(o<e.length){this.cMap.readCharCode(e,o,h),i=h.charcode;var l=h.length;o+=l;var c=1===l&&32===e.charCodeAt(o-1);r=this.charToGlyph(i,c),t.push(r)}}else for(o=0,a=e.length;o<a;++o)i=e.charCodeAt(o),r=this.charToGlyph(i,32===i),t.push(r);return n[s]=t},get glyphCacheValues(){return Object.values(this.glyphCache)}},e}();t.Font=T;var R=function(){function e(e){this.error=e,this.loadedName="g_font_error",this.missingFile=!0}return e.prototype={charsToGlyphs:function(){return[]},exportData(e=!1){return{error:this.error}}},e}();function I(e,t,r){var i,n,o,h=Object.create(null),l=!!(e.flags&y.Symbolic);if(e.baseEncodingName)for(o=(0,s.getEncoding)(e.baseEncodingName),n=0;n<o.length;n++)i=r.indexOf(o[n]),h[n]=i>=0?i:0;else if(l)for(n in t)h[n]=t[n];else for(o=s.StandardEncoding,n=0;n<o.length;n++)i=r.indexOf(o[n]),h[n]=i>=0?i:0;var c,u=e.differences;if(u)for(n in u){var f=u[n];if(i=r.indexOf(f),-1===i){c||(c=(0,a.getGlyphsUnicode)());var d=k(f,c);d!==f&&(i=r.indexOf(d))}h[n]=i>=0?i:0}return h}t.ErrorFont=R;var P=function(){function e(e,t,r){var i,n=e.length,a=t.length,s=n-a,o=r,h=!1;while(o<s){i=0;while(i<a&&e[o+i]===t[i])i++;if(i>=a){o+=i;while(o<n&&(0,l.isWhiteSpace)(e[o]))o++;h=!0;break}o++}return{found:h,length:o}}function t(t,r){var n,a,s,o=[101,101,120,101,99],h=t.pos;try{n=t.getBytes(r),a=n.length}catch(p){if(p instanceof l.MissingDataException)throw p}if(a===r&&(s=e(n,o,r-2*o.length),s.found&&s.length===r))return{stream:new f.Stream(n),length:r};(0,i.warn)('Invalid "Length1" property in Type1 font -- trying to recover.'),t.pos=h;var c,u=2048;while(1){var d=t.peekBytes(u);if(s=e(d,o,0),0===s.length)break;if(t.pos+=s.length,s.found){c=t.pos-h;break}}return t.pos=h,c?{stream:new f.Stream(t.getBytes(c)),length:c}:((0,i.warn)('Unable to recover "Length1" property in Type1 font -- using as is.'),{stream:new f.Stream(t.getBytes(r)),length:r})}function r(e,t){var r=e.getBytes();return{stream:new f.Stream(r),length:r.length}}function a(e,i,n){var a=6,s=n.length1,o=n.length2,h=i.peekBytes(a),l=128===h[0]&&1===h[1];l&&(i.skip(a),s=h[5]<<24|h[4]<<16|h[3]<<8|h[2]);var c=t(i,s),u=new d.Type1Parser(c.stream,!1,g);u.extractFontHeader(n),l&&(h=i.getBytes(a),o=h[5]<<24|h[4]<<16|h[3]<<8|h[2]);var f=r(i,o),p=new d.Type1Parser(f.stream,!0,g),m=p.extractFontProgram(n);for(const t in m.properties)n[t]=m.properties[t];var b=m.charstrings,v=this.getType2Charstrings(b),y=this.getType2Subrs(m.subrs);this.charstrings=b,this.data=this.wrap(e,v,this.charstrings,y,n),this.seacs=this.getSeacs(m.charstrings)}return a.prototype={get numGlyphs(){return this.charstrings.length+1},getCharset:function(){for(var e=[".notdef"],t=this.charstrings,r=0;r<t.length;r++)e.push(t[r].glyphName);return e},getGlyphMapping:function(e){var t=this.charstrings;if(e.composite){const r=Object.create(null);for(let i=0,n=t.length;i<n;i++){const t=e.cMap.charCodeOf(i);r[t]=i+1}return r}var r,i=[".notdef"];for(r=0;r<t.length;r++)i.push(t[r].glyphName);var n=e.builtInEncoding;if(n){var a=Object.create(null);for(var s in n)r=i.indexOf(n[s]),r>=0&&(a[s]=r)}return I(e,a,i)},hasGlyphId:function(e){if(e<0||e>=this.numGlyphs)return!1;if(0===e)return!0;var t=this.charstrings[e-1];return t.charstring.length>0},getSeacs:function(e){var t,r,i=[];for(t=0,r=e.length;t<r;t++){var n=e[t];n.seac&&(i[t+1]=n.seac)}return i},getType2Charstrings:function(e){for(var t=[],r=0,i=e.length;r<i;r++)t.push(e[r].charstring);return t},getType2Subrs:function(e){var t=0,r=e.length;t=r<1133?107:r<33769?1131:32768;var i,n=[];for(i=0;i<t;i++)n.push([11]);for(i=0;i<r;i++)n.push(e[i]);return n},wrap:function(e,t,r,i,a){var s=new n.CFF;s.header=new n.CFFHeader(1,0,4,4),s.names=[e];var o=new n.CFFTopDict;o.setByName("version",391),o.setByName("Notice",392),o.setByName("FullName",393),o.setByName("FamilyName",394),o.setByName("Weight",395),o.setByName("Encoding",null),o.setByName("FontMatrix",a.fontMatrix),o.setByName("FontBBox",a.bbox),o.setByName("charset",null),o.setByName("CharStrings",null),o.setByName("Private",null),s.topDict=o;var h=new n.CFFStrings;h.add("Version 0.11"),h.add("See original notice"),h.add(e),h.add(e),h.add("Medium"),s.strings=h,s.globalSubrIndex=new n.CFFIndex;var l,c,u=t.length,f=[".notdef"];for(l=0;l<u;l++){const e=r[l].glyphName,t=n.CFFStandardStrings.indexOf(e);-1===t&&h.add(e),f.push(e)}s.charset=new n.CFFCharset(!1,0,f);var d=new n.CFFIndex;for(d.add([139,14]),l=0;l<u;l++)d.add(t[l]);s.charStrings=d;var p=new n.CFFPrivateDict;p.setByName("Subrs",null);var m=["BlueValues","OtherBlues","FamilyBlues","FamilyOtherBlues","StemSnapH","StemSnapV","BlueShift","BlueFuzz","BlueScale","LanguageGroup","ExpansionFactor","ForceBold","StdHW","StdVW"];for(l=0,c=m.length;l<c;l++){var g=m[l];if(g in a.privateData){var b=a.privateData[g];if(Array.isArray(b))for(var v=b.length-1;v>0;v--)b[v]-=b[v-1];p.setByName(g,b)}}s.topDict.privateDict=p;var y=new n.CFFIndex;for(l=0,c=i.length;l<c;l++)y.add(i[l]);p.subrsIndex=y;var w=new n.CFFCompiler(s);return w.compile()}},a}(),O=function(){function e(e,t){this.properties=t;var r=new n.CFFParser(e,t,g);this.cff=r.parse(),this.cff.duplicateFirstGlyph();var a=new n.CFFCompiler(this.cff);this.seacs=this.cff.seacs;try{this.data=a.compile()}catch(s){(0,i.warn)("Failed to compile font "+t.loadedName),this.data=e}}return e.prototype={get numGlyphs(){return this.cff.charStrings.count},getCharset:function(){return this.cff.charset.charset},getGlyphMapping:function(){var e,t,r=this.cff,i=this.properties,n=r.charset.charset;if(i.composite){let s;if(e=Object.create(null),r.isCIDFont)for(t=0;t<n.length;t++){var a=n[t];s=i.cMap.charCodeOf(a),e[s]=t}else for(t=0;t<r.charStrings.count;t++)s=i.cMap.charCodeOf(t),e[s]=t;return e}var s=r.encoding?r.encoding.encoding:null;return e=I(i,s,n),e},hasGlyphId:function(e){return this.cff.hasGlyphId(e)}},e}()},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CFFFDSelect=t.CFFCompiler=t.CFFPrivateDict=t.CFFTopDict=t.CFFCharset=t.CFFIndex=t.CFFStrings=t.CFFHeader=t.CFF=t.CFFParser=t.CFFStandardStrings=void 0;var i=r(2),n=r(32),a=r(33),s=10,o=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall","001.000","001.001","001.002","001.003","Black","Bold","Book","Light","Medium","Regular","Roman","Semibold"];t.CFFStandardStrings=o;const h=391;var l=function(){var e=[null,{id:"hstem",min:2,stackClearing:!0,stem:!0},null,{id:"vstem",min:2,stackClearing:!0,stem:!0},{id:"vmoveto",min:1,stackClearing:!0},{id:"rlineto",min:2,resetStack:!0},{id:"hlineto",min:1,resetStack:!0},{id:"vlineto",min:1,resetStack:!0},{id:"rrcurveto",min:6,resetStack:!0},null,{id:"callsubr",min:1,undefStack:!0},{id:"return",min:0,undefStack:!0},null,null,{id:"endchar",min:0,stackClearing:!0},null,null,null,{id:"hstemhm",min:2,stackClearing:!0,stem:!0},{id:"hintmask",min:0,stackClearing:!0},{id:"cntrmask",min:0,stackClearing:!0},{id:"rmoveto",min:2,stackClearing:!0},{id:"hmoveto",min:1,stackClearing:!0},{id:"vstemhm",min:2,stackClearing:!0,stem:!0},{id:"rcurveline",min:8,resetStack:!0},{id:"rlinecurve",min:8,resetStack:!0},{id:"vvcurveto",min:4,resetStack:!0},{id:"hhcurveto",min:4,resetStack:!0},null,{id:"callgsubr",min:1,undefStack:!0},{id:"vhcurveto",min:4,resetStack:!0},{id:"hvcurveto",min:4,resetStack:!0}],t=[null,null,null,{id:"and",min:2,stackDelta:-1},{id:"or",min:2,stackDelta:-1},{id:"not",min:1,stackDelta:0},null,null,null,{id:"abs",min:1,stackDelta:0},{id:"add",min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]+e[t-1]}},{id:"sub",min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]-e[t-1]}},{id:"div",min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]/e[t-1]}},null,{id:"neg",min:1,stackDelta:0,stackFn:function(e,t){e[t-1]=-e[t-1]}},{id:"eq",min:2,stackDelta:-1},null,null,{id:"drop",min:1,stackDelta:-1},null,{id:"put",min:2,stackDelta:-2},{id:"get",min:1,stackDelta:0},{id:"ifelse",min:4,stackDelta:-3},{id:"random",min:0,stackDelta:1},{id:"mul",min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]*e[t-1]}},null,{id:"sqrt",min:1,stackDelta:0},{id:"dup",min:1,stackDelta:1},{id:"exch",min:2,stackDelta:0},{id:"index",min:2,stackDelta:0},{id:"roll",min:3,stackDelta:-2},null,null,null,{id:"hflex",min:7,resetStack:!0},{id:"flex",min:13,resetStack:!0},{id:"hflex1",min:9,resetStack:!0},{id:"flex1",min:11,resetStack:!0}];class r{constructor(e,t,r){this.bytes=e.getBytes(),this.properties=t,this.seacAnalysisEnabled=!!r}parse(){var e=this.properties,t=new c;this.cff=t;var r=this.parseHeader(),i=this.parseIndex(r.endPos),n=this.parseIndex(i.endPos),a=this.parseIndex(n.endPos),s=this.parseIndex(a.endPos),o=this.parseDict(n.obj.get(0)),h=this.createDict(m,o,t.strings);t.header=r.obj,t.names=this.parseNameIndex(i.obj),t.strings=this.parseStringIndex(a.obj),t.topDict=h,t.globalSubrIndex=s.obj,this.parsePrivateDict(t.topDict),t.isCIDFont=h.hasName("ROS");var l=h.getByName("CharStrings"),u=this.parseIndex(l).obj,f=h.getByName("FontMatrix");f&&(e.fontMatrix=f);var d,p,g=h.getByName("FontBBox");if(g&&(e.ascent=Math.max(g[3],g[1]),e.descent=Math.min(g[1],g[3]),e.ascentScaled=!0),t.isCIDFont){for(var b=this.parseIndex(h.getByName("FDArray")).obj,v=0,y=b.count;v<y;++v){var w=b.get(v),M=this.createDict(m,this.parseDict(w),t.strings);this.parsePrivateDict(M),t.fdArray.push(M)}p=null,d=this.parseCharsets(h.getByName("charset"),u.count,t.strings,!0),t.fdSelect=this.parseFDSelect(h.getByName("FDSelect"),u.count)}else d=this.parseCharsets(h.getByName("charset"),u.count,t.strings,!1),p=this.parseEncoding(h.getByName("Encoding"),e,t.strings,d.charset);t.charset=d,t.encoding=p;var _=this.parseCharStrings({charStrings:u,localSubrIndex:h.privateDict.subrsIndex,globalSubrIndex:s.obj,fdSelect:t.fdSelect,fdArray:t.fdArray,privateDict:h.privateDict});return t.charStrings=_.charStrings,t.seacs=_.seacs,t.widths=_.widths,t}parseHeader(){var e=this.bytes,t=e.length,r=0;while(r<t&&1!==e[r])++r;if(r>=t)throw new i.FormatError("Invalid CFF header");0!==r&&((0,i.info)("cff data is shifted"),e=e.subarray(r),this.bytes=e);var n=e[0],a=e[1],s=e[2],o=e[3],h=new u(n,a,s,o);return{obj:h,endPos:s}}parseDict(e){var t=0;function r(){var r=e[t++];return 30===r?n():28===r?(r=e[t++],r=(r<<24|e[t++]<<16)>>16,r):29===r?(r=e[t++],r=r<<8|e[t++],r=r<<8|e[t++],r=r<<8|e[t++],r):r>=32&&r<=246?r-139:r>=247&&r<=250?256*(r-247)+e[t++]+108:r>=251&&r<=254?-256*(r-251)-e[t++]-108:((0,i.warn)('CFFParser_parseDict: "'+r+'" is a reserved command.'),NaN)}function n(){var r="",i=15;const n=["0","1","2","3","4","5","6","7","8","9",".","E","E-",null,"-"];var a=e.length;while(t<a){var s=e[t++],o=s>>4,h=15&s;if(o===i)break;if(r+=n[o],h===i)break;r+=n[h]}return parseFloat(r)}var a=[],s=[];t=0;var o=e.length;while(t<o){var h=e[t];h<=21?(12===h&&(h=h<<8|e[++t]),s.push([h,a]),a=[],++t):a.push(r())}return s}parseIndex(e){var t,r,i=new d,n=this.bytes,a=n[e++]<<8|n[e++],s=[],o=e;if(0!==a){var h=n[e++],l=e+(a+1)*h-1;for(t=0,r=a+1;t<r;++t){for(var c=0,u=0;u<h;++u)c<<=8,c+=n[e++];s.push(l+c)}o=s[a]}for(t=0,r=s.length-1;t<r;++t){var f=s[t],p=s[t+1];i.add(n.subarray(f,p))}return{obj:i,endPos:o}}parseNameIndex(e){for(var t=[],r=0,n=e.count;r<n;++r){var a=e.get(r);t.push((0,i.bytesToString)(a))}return t}parseStringIndex(e){for(var t=new f,r=0,n=e.count;r<n;++r){var a=e.get(r);t.add((0,i.bytesToString)(a))}return t}createDict(e,t,r){for(var i=new e(r),n=0,a=t.length;n<a;++n){var s=t[n],o=s[0],h=s[1];i.setByKey(o,h)}return i}parseCharString(r,n,a,o){if(!n||r.callDepth>s)return!1;for(var h=r.stackSize,l=r.stack,c=n.length,u=0;u<c;){var f=n[u++],d=null;if(12===f){var p=n[u++];0===p?(n[u-2]=139,n[u-1]=22,h=0):d=t[p]}else if(28===f)l[h]=(n[u]<<24|n[u+1]<<16)>>16,u+=2,h++;else if(14===f){if(h>=4&&(h-=4,this.seacAnalysisEnabled))return r.seac=l.slice(h,h+4),!1;d=e[f]}else if(f>=32&&f<=246)l[h]=f-139,h++;else if(f>=247&&f<=254)l[h]=f<251?(f-247<<8)+n[u]+108:-(f-251<<8)-n[u]-108,u++,h++;else if(255===f)l[h]=(n[u]<<24|n[u+1]<<16|n[u+2]<<8|n[u+3])/65536,u+=4,h++;else if(19===f||20===f)r.hints+=h>>1,u+=r.hints+7>>3,h%=2,d=e[f];else{if(10===f||29===f){var m;if(m=10===f?a:o,!m)return d=e[f],(0,i.warn)("Missing subrsIndex for "+d.id),!1;var g=32768;m.count<1240?g=107:m.count<33900&&(g=1131);var b=l[--h]+g;if(b<0||b>=m.count||isNaN(b))return d=e[f],(0,i.warn)("Out of bounds subrIndex for "+d.id),!1;r.stackSize=h,r.callDepth++;var v=this.parseCharString(r,m.get(b),a,o);if(!v)return!1;r.callDepth--,h=r.stackSize;continue}if(11===f)return r.stackSize=h,!0;d=e[f]}if(d){if(d.stem&&(r.hints+=h>>1,3===f||23===f?r.hasVStems=!0:!r.hasVStems||1!==f&&18!==f||((0,i.warn)("CFF stem hints are in wrong order"),n[u-1]=1===f?3:23)),"min"in d&&!r.undefStack&&h<d.min)return(0,i.warn)("Not enough parameters for "+d.id+"; actual: "+h+", expected: "+d.min),!1;r.firstStackClearing&&d.stackClearing&&(r.firstStackClearing=!1,h-=d.min,h>=2&&d.stem?h%=2:h>1&&(0,i.warn)("Found too many parameters for stack-clearing command"),h>0&&l[h-1]>=0&&(r.width=l[h-1])),"stackDelta"in d?("stackFn"in d&&d.stackFn(l,h),h+=d.stackDelta):d.stackClearing?h=0:d.resetStack?(h=0,r.undefStack=!1):d.undefStack&&(h=0,r.undefStack=!0,r.firstStackClearing=!1)}}return r.stackSize=h,!0}parseCharStrings({charStrings:e,localSubrIndex:t,globalSubrIndex:r,fdSelect:n,fdArray:a,privateDict:s}){for(var o=[],h=[],l=e.count,c=0;c<l;c++){var u=e.get(c),f={callDepth:0,stackSize:0,stack:[],undefStack:!0,hints:0,firstStackClearing:!0,seac:null,width:null,hasVStems:!1},d=!0,p=null,m=s;if(n&&a.length){var g=n.getFDIndex(c);-1===g&&((0,i.warn)("Glyph index is not in fd select."),d=!1),g>=a.length&&((0,i.warn)("Invalid fd index for glyph index."),d=!1),d&&(m=a[g].privateDict,p=m.subrsIndex)}else t&&(p=t);if(d&&(d=this.parseCharString(f,u,p,r)),null!==f.width){const e=m.getByName("nominalWidthX");h[c]=e+f.width}else{const e=m.getByName("defaultWidthX");h[c]=e}null!==f.seac&&(o[c]=f.seac),d||e.set(c,new Uint8Array([14]))}return{charStrings:e,seacs:o,widths:h}}emptyPrivateDictionary(e){var t=this.createDict(g,[],e.strings);e.setByKey(18,[0,0]),e.privateDict=t}parsePrivateDict(e){if(e.hasName("Private")){var t=e.getByName("Private");if(Array.isArray(t)&&2===t.length){var r=t[0],i=t[1];if(0===r||i>=this.bytes.length)this.emptyPrivateDictionary(e);else{var n=i+r,a=this.bytes.subarray(i,n),s=this.parseDict(a),o=this.createDict(g,s,e.strings);if(e.privateDict=o,o.getByName("Subrs")){var h=o.getByName("Subrs"),l=i+h;if(0===h||l>=this.bytes.length)this.emptyPrivateDictionary(e);else{var c=this.parseIndex(l);o.subrsIndex=c.obj}}}}else e.removeByName("Private")}else this.emptyPrivateDictionary(e)}parseCharsets(e,t,r,a){if(0===e)return new v(!0,b.ISO_ADOBE,n.ISOAdobeCharset);if(1===e)return new v(!0,b.EXPERT,n.ExpertCharset);if(2===e)return new v(!0,b.EXPERT_SUBSET,n.ExpertSubsetCharset);var s=this.bytes,o=e,h=s[e++];const l=[a?0:".notdef"];var c,u,f;switch(t-=1,h){case 0:for(f=0;f<t;f++)c=s[e++]<<8|s[e++],l.push(a?c:r.get(c));break;case 1:while(l.length<=t)for(c=s[e++]<<8|s[e++],u=s[e++],f=0;f<=u;f++)l.push(a?c++:r.get(c++));break;case 2:while(l.length<=t)for(c=s[e++]<<8|s[e++],u=s[e++]<<8|s[e++],f=0;f<=u;f++)l.push(a?c++:r.get(c++));break;default:throw new i.FormatError("Unknown charset format")}var d=e,p=s.subarray(o,d);return new v(!1,h,l,p)}parseEncoding(e,t,r,n){var s,o,h,l=Object.create(null),c=this.bytes,u=!1,f=null;function d(){var t=c[e++];for(o=0;o<t;o++){var i=c[e++],a=(c[e++]<<8)+(255&c[e++]);l[i]=n.indexOf(r.get(a))}}if(0===e||1===e){u=!0,s=e;var p=e?a.ExpertEncoding:a.StandardEncoding;for(o=0,h=n.length;o<h;o++){var m=p.indexOf(n[o]);-1!==m&&(l[m]=o)}}else{var g=e;switch(s=c[e++],127&s){case 0:var b=c[e++];for(o=1;o<=b;o++)l[c[e++]]=o;break;case 1:var v=c[e++],w=1;for(o=0;o<v;o++)for(var M=c[e++],_=c[e++],S=M;S<=M+_;S++)l[S]=w++;break;default:throw new i.FormatError(`Unknown encoding format: ${s} in CFF`)}var k=e;128&s&&(c[g]&=127,d()),f=c.subarray(g,k)}return s&=127,new y(u,s,l,f)}parseFDSelect(e,t){var r,n=this.bytes,a=n[e++],s=[];switch(a){case 0:for(r=0;r<t;++r){var o=n[e++];s.push(o)}break;case 3:var h=n[e++]<<8|n[e++];for(r=0;r<h;++r){var l=n[e++]<<8|n[e++];0===r&&0!==l&&((0,i.warn)("parseFDSelect: The first range must have a first GID of 0 -- trying to recover."),l=0);for(var c=n[e++],u=n[e]<<8|n[e+1],f=l;f<u;++f)s.push(c)}e+=2;break;default:throw new i.FormatError(`parseFDSelect: Unknown format "${a}".`)}if(s.length!==t)throw new i.FormatError("parseFDSelect: Invalid font data.");return new w(a,s)}}return r}();t.CFFParser=l;class c{constructor(){this.header=null,this.names=[],this.topDict=null,this.strings=new f,this.globalSubrIndex=null,this.encoding=null,this.charset=null,this.charStrings=null,this.fdArray=[],this.fdSelect=null,this.isCIDFont=!1}duplicateFirstGlyph(){if(this.charStrings.count>=65535)(0,i.warn)("Not enough space in charstrings to duplicate first glyph.");else{var e=this.charStrings.get(0);this.charStrings.add(e),this.isCIDFont&&this.fdSelect.fdSelect.push(this.fdSelect.fdSelect[0])}}hasGlyphId(e){if(e<0||e>=this.charStrings.count)return!1;var t=this.charStrings.get(e);return t.length>0}}t.CFF=c;class u{constructor(e,t,r,i){this.major=e,this.minor=t,this.hdrSize=r,this.offSize=i}}t.CFFHeader=u;class f{constructor(){this.strings=[]}get(e){return e>=0&&e<=h-1?o[e]:e-h<=this.strings.length?this.strings[e-h]:o[0]}getSID(e){let t=o.indexOf(e);return-1!==t?t:(t=this.strings.indexOf(e),-1!==t?t+h:-1)}add(e){this.strings.push(e)}get count(){return this.strings.length}}t.CFFStrings=f;class d{constructor(){this.objects=[],this.length=0}add(e){this.length+=e.length,this.objects.push(e)}set(e,t){this.length+=t.length-this.objects[e].length,this.objects[e]=t}get(e){return this.objects[e]}get count(){return this.objects.length}}t.CFFIndex=d;class p{constructor(e,t){this.keyToNameMap=e.keyToNameMap,this.nameToKeyMap=e.nameToKeyMap,this.defaults=e.defaults,this.types=e.types,this.opcodes=e.opcodes,this.order=e.order,this.strings=t,this.values=Object.create(null)}setByKey(e,t){if(!(e in this.keyToNameMap))return!1;var r=t.length;if(0===r)return!0;for(var n=0;n<r;n++)if(isNaN(t[n]))return(0,i.warn)('Invalid CFFDict value: "'+t+'" for key "'+e+'".'),!0;var a=this.types[e];return"num"!==a&&"sid"!==a&&"offset"!==a||(t=t[0]),this.values[e]=t,!0}setByName(e,t){if(!(e in this.nameToKeyMap))throw new i.FormatError(`Invalid dictionary name "${e}"`);this.values[this.nameToKeyMap[e]]=t}hasName(e){return this.nameToKeyMap[e]in this.values}getByName(e){if(!(e in this.nameToKeyMap))throw new i.FormatError(`Invalid dictionary name ${e}"`);var t=this.nameToKeyMap[e];return t in this.values?this.values[t]:this.defaults[t]}removeByName(e){delete this.values[this.nameToKeyMap[e]]}static createTables(e){for(var t={keyToNameMap:{},nameToKeyMap:{},defaults:{},types:{},opcodes:{},order:[]},r=0,i=e.length;r<i;++r){var n=e[r],a=Array.isArray(n[0])?(n[0][0]<<8)+n[0][1]:n[0];t.keyToNameMap[a]=n[1],t.nameToKeyMap[n[1]]=a,t.types[a]=n[2],t.defaults[a]=n[3],t.opcodes[a]=Array.isArray(n[0])?n[0]:[n[0]],t.order.push(a)}return t}}var m=function(){var e=[[[12,30],"ROS",["sid","sid","num"],null],[[12,20],"SyntheticBase","num",null],[0,"version","sid",null],[1,"Notice","sid",null],[[12,0],"Copyright","sid",null],[2,"FullName","sid",null],[3,"FamilyName","sid",null],[4,"Weight","sid",null],[[12,1],"isFixedPitch","num",0],[[12,2],"ItalicAngle","num",0],[[12,3],"UnderlinePosition","num",-100],[[12,4],"UnderlineThickness","num",50],[[12,5],"PaintType","num",0],[[12,6],"CharstringType","num",2],[[12,7],"FontMatrix",["num","num","num","num","num","num"],[.001,0,0,.001,0,0]],[13,"UniqueID","num",null],[5,"FontBBox",["num","num","num","num"],[0,0,0,0]],[[12,8],"StrokeWidth","num",0],[14,"XUID","array",null],[15,"charset","offset",0],[16,"Encoding","offset",0],[17,"CharStrings","offset",0],[18,"Private",["offset","offset"],null],[[12,21],"PostScript","sid",null],[[12,22],"BaseFontName","sid",null],[[12,23],"BaseFontBlend","delta",null],[[12,31],"CIDFontVersion","num",0],[[12,32],"CIDFontRevision","num",0],[[12,33],"CIDFontType","num",0],[[12,34],"CIDCount","num",8720],[[12,35],"UIDBase","num",null],[[12,37],"FDSelect","offset",null],[[12,36],"FDArray","offset",null],[[12,38],"FontName","sid",null]],t=null;class r extends p{constructor(r){null===t&&(t=p.createTables(e)),super(t,r),this.privateDict=null}}return r}();t.CFFTopDict=m;var g=function(){var e=[[6,"BlueValues","delta",null],[7,"OtherBlues","delta",null],[8,"FamilyBlues","delta",null],[9,"FamilyOtherBlues","delta",null],[[12,9],"BlueScale","num",.039625],[[12,10],"BlueShift","num",7],[[12,11],"BlueFuzz","num",1],[10,"StdHW","num",null],[11,"StdVW","num",null],[[12,12],"StemSnapH","delta",null],[[12,13],"StemSnapV","delta",null],[[12,14],"ForceBold","num",0],[[12,17],"LanguageGroup","num",0],[[12,18],"ExpansionFactor","num",.06],[[12,19],"initialRandomSeed","num",0],[20,"defaultWidthX","num",0],[21,"nominalWidthX","num",0],[19,"Subrs","offset",null]],t=null;class r extends p{constructor(r){null===t&&(t=p.createTables(e)),super(t,r),this.subrsIndex=null}}return r}();t.CFFPrivateDict=g;var b={ISO_ADOBE:0,EXPERT:1,EXPERT_SUBSET:2};class v{constructor(e,t,r,i){this.predefined=e,this.format=t,this.charset=r,this.raw=i}}t.CFFCharset=v;class y{constructor(e,t,r,i){this.predefined=e,this.format=t,this.encoding=r,this.raw=i}}class w{constructor(e,t){this.format=e,this.fdSelect=t}getFDIndex(e){return e<0||e>=this.fdSelect.length?-1:this.fdSelect[e]}}t.CFFFDSelect=w;class M{constructor(){this.offsets=Object.create(null)}isTracking(e){return e in this.offsets}track(e,t){if(e in this.offsets)throw new i.FormatError("Already tracking location of "+e);this.offsets[e]=t}offset(e){for(var t in this.offsets)this.offsets[t]+=e}setEntryLocation(e,t,r){if(!(e in this.offsets))throw new i.FormatError("Not tracking location of "+e);for(var n=r.data,a=this.offsets[e],s=5,o=0,h=t.length;o<h;++o){var l=o*s+a,c=l+1,u=l+2,f=l+3,d=l+4;if(29!==n[l]||0!==n[c]||0!==n[u]||0!==n[f]||0!==n[d])throw new i.FormatError("writing to an offset that is not empty");var p=t[o];n[l]=29,n[c]=p>>24&255,n[u]=p>>16&255,n[f]=p>>8&255,n[d]=255&p}}}class _{constructor(e){this.cff=e}compile(){var e=this.cff,t={data:[],length:0,add:function(e){this.data=this.data.concat(e),this.length=this.data.length}},r=this.compileHeader(e.header);t.add(r);var n=this.compileNameIndex(e.names);if(t.add(n),e.isCIDFont&&e.topDict.hasName("FontMatrix")){var a=e.topDict.getByName("FontMatrix");e.topDict.removeByName("FontMatrix");for(var s=0,o=e.fdArray.length;s<o;s++){var h=e.fdArray[s],l=a.slice(0);h.hasName("FontMatrix")&&(l=i.Util.transform(l,h.getByName("FontMatrix"))),h.setByName("FontMatrix",l)}}e.topDict.setByName("charset",0);var c=this.compileTopDicts([e.topDict],t.length,e.isCIDFont);t.add(c.output);var u=c.trackers[0],f=this.compileStringIndex(e.strings.strings);t.add(f);var d=this.compileIndex(e.globalSubrIndex);if(t.add(d),e.encoding&&e.topDict.hasName("Encoding"))if(e.encoding.predefined)u.setEntryLocation("Encoding",[e.encoding.format],t);else{var p=this.compileEncoding(e.encoding);u.setEntryLocation("Encoding",[t.length],t),t.add(p)}var m=this.compileCharset(e.charset,e.charStrings.count,e.strings,e.isCIDFont);u.setEntryLocation("charset",[t.length],t),t.add(m);var g=this.compileCharStrings(e.charStrings);if(u.setEntryLocation("CharStrings",[t.length],t),t.add(g),e.isCIDFont){u.setEntryLocation("FDSelect",[t.length],t);var b=this.compileFDSelect(e.fdSelect);t.add(b),c=this.compileTopDicts(e.fdArray,t.length,!0),u.setEntryLocation("FDArray",[t.length],t),t.add(c.output);var v=c.trackers;this.compilePrivateDicts(e.fdArray,v,t)}return this.compilePrivateDicts([e.topDict],[u],t),t.add([0]),t.data}encodeNumber(e){return Number.isInteger(e)?this.encodeInteger(e):this.encodeFloat(e)}static get EncodeFloatRegExp(){return(0,i.shadow)(this,"EncodeFloatRegExp",/\.(\d*?)(?:9{5,20}|0{5,20})\d{0,2}(?:e(.+)|$)/)}encodeFloat(e){var t=e.toString(),r=_.EncodeFloatRegExp.exec(t);if(r){var i=parseFloat("1e"+((r[2]?+r[2]:0)+r[1].length));t=(Math.round(e*i)/i).toString()}var n,a,s="";for(n=0,a=t.length;n<a;++n){var o=t[n];s+="e"===o?"-"===t[++n]?"c":"b":"."===o?"a":"-"===o?"e":o}s+=1&s.length?"f":"ff";var h=[30];for(n=0,a=s.length;n<a;n+=2)h.push(parseInt(s.substring(n,n+2),16));return h}encodeInteger(e){var t;return e>=-107&&e<=107?t=[e+139]:e>=108&&e<=1131?(e-=108,t=[247+(e>>8),255&e]):e>=-1131&&e<=-108?(e=-e-108,t=[251+(e>>8),255&e]):t=e>=-32768&&e<=32767?[28,e>>8&255,255&e]:[29,e>>24&255,e>>16&255,e>>8&255,255&e],t}compileHeader(e){return[e.major,e.minor,e.hdrSize,e.offSize]}compileNameIndex(e){for(var t=new d,r=0,n=e.length;r<n;++r){for(var a=e[r],s=Math.min(a.length,127),o=new Array(s),h=0;h<s;h++){var l=a[h];(l<"!"||l>"~"||"["===l||"]"===l||"("===l||")"===l||"{"===l||"}"===l||"<"===l||">"===l||"/"===l||"%"===l)&&(l="_"),o[h]=l}o=o.join(""),""===o&&(o="Bad_Font_Name"),t.add((0,i.stringToBytes)(o))}return this.compileIndex(t)}compileTopDicts(e,t,r){for(var i=[],n=new d,a=0,s=e.length;a<s;++a){var o=e[a];r&&(o.removeByName("CIDFontVersion"),o.removeByName("CIDFontRevision"),o.removeByName("CIDFontType"),o.removeByName("CIDCount"),o.removeByName("UIDBase"));var h=new M,l=this.compileDict(o,h);i.push(h),n.add(l),h.offset(t)}return n=this.compileIndex(n,i),{trackers:i,output:n}}compilePrivateDicts(e,t,r){for(var n=0,a=e.length;n<a;++n){var s=e[n],o=s.privateDict;if(!o||!s.hasName("Private"))throw new i.FormatError("There must be a private dictionary.");var h=new M,l=this.compileDict(o,h),c=r.length;if(h.offset(c),l.length||(c=0),t[n].setEntryLocation("Private",[l.length,c],r),r.add(l),o.subrsIndex&&o.hasName("Subrs")){var u=this.compileIndex(o.subrsIndex);h.setEntryLocation("Subrs",[l.length],r),r.add(u)}}}compileDict(e,t){for(var r=[],n=e.order,a=0;a<n.length;++a){var s=n[a];if(s in e.values){var o=e.values[s],h=e.types[s];if(Array.isArray(h)||(h=[h]),Array.isArray(o)||(o=[o]),0!==o.length){for(var l=0,c=h.length;l<c;++l){var u=h[l],f=o[l];switch(u){case"num":case"sid":r=r.concat(this.encodeNumber(f));break;case"offset":var d=e.keyToNameMap[s];t.isTracking(d)||t.track(d,r.length),r=r.concat([29,0,0,0,0]);break;case"array":case"delta":r=r.concat(this.encodeNumber(f));for(var p=1,m=o.length;p<m;++p)r=r.concat(this.encodeNumber(o[p]));break;default:throw new i.FormatError("Unknown data type of "+u)}}r=r.concat(e.opcodes[s])}}}return r}compileStringIndex(e){for(var t=new d,r=0,n=e.length;r<n;++r)t.add((0,i.stringToBytes)(e[r]));return this.compileIndex(t)}compileGlobalSubrIndex(){var e=this.cff.globalSubrIndex;this.out.writeByteArray(this.compileIndex(e))}compileCharStrings(e){for(var t=new d,r=0;r<e.count;r++){var i=e.get(r);0!==i.length?t.add(i):t.add(new Uint8Array([139,14]))}return this.compileIndex(t)}compileCharset(e,t,r,n){let a;const s=t-1;if(n)a=new Uint8Array([2,0,0,s>>8&255,255&s]);else{const t=1+2*s;a=new Uint8Array(t),a[0]=0;let n=0;const o=e.charset.length;let h=!1;for(let s=1;s<a.length;s+=2){let t=0;if(n<o){const a=e.charset[n++];t=r.getSID(a),-1===t&&(t=0,h||(h=!0,(0,i.warn)(`Couldn't find ${a} in CFF strings`)))}a[s]=t>>8&255,a[s+1]=255&t}}return this.compileTypedArray(a)}compileEncoding(e){return this.compileTypedArray(e.raw)}compileFDSelect(e){const t=e.format;let r,i;switch(t){case 0:for(r=new Uint8Array(1+e.fdSelect.length),r[0]=t,i=0;i<e.fdSelect.length;i++)r[i+1]=e.fdSelect[i];break;case 3:const n=0;let a=e.fdSelect[0];const s=[t,0,0,n>>8&255,255&n,a];for(i=1;i<e.fdSelect.length;i++){const t=e.fdSelect[i];t!==a&&(s.push(i>>8&255,255&i,t),a=t)}const o=(s.length-3)/3;s[1]=o>>8&255,s[2]=255&o,s.push(i>>8&255,255&i),r=new Uint8Array(s);break}return this.compileTypedArray(r)}compileTypedArray(e){for(var t=[],r=0,i=e.length;r<i;++r)t[r]=e[r];return t}compileIndex(e,t=[]){var r=e.objects,i=r.length;if(0===i)return[0,0,0];var n,a,s=[i>>8&255,255&i],o=1;for(n=0;n<i;++n)o+=r[n].length;a=o<256?1:o<65536?2:o<16777216?3:4,s.push(a);var h=1;for(n=0;n<i+1;n++)1===a?s.push(255&h):2===a?s.push(h>>8&255,255&h):3===a?s.push(h>>16&255,h>>8&255,255&h):s.push(h>>>24&255,h>>16&255,h>>8&255,255&h),r[n]&&(h+=r[n].length);for(n=0;n<i;n++){t[n]&&t[n].offset(s.length);for(var l=0,c=r[n].length;l<c;l++)s.push(r[n][l])}return s}}t.CFFCompiler=_},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ExpertSubsetCharset=t.ExpertCharset=t.ISOAdobeCharset=void 0;const i=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron"];t.ISOAdobeCharset=i;const n=[".notdef","space","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","fi","fl","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"];t.ExpertCharset=n;const a=[".notdef","space","dollaroldstyle","dollarsuperior","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","fi","fl","ffi","ffl","parenleftinferior","parenrightinferior","hyphensuperior","colonmonetary","onefitted","rupiah","centoldstyle","figuredash","hypheninferior","onequarter","onehalf","threequarters","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior"];t.ExpertSubsetCharset=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getEncoding=c,t.ExpertEncoding=t.ZapfDingbatsEncoding=t.SymbolSetEncoding=t.MacRomanEncoding=t.StandardEncoding=t.WinAnsiEncoding=void 0;const i=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclamsmall","Hungarumlautsmall","","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","","asuperior","bsuperior","centsuperior","dsuperior","esuperior","","","","isuperior","","","lsuperior","msuperior","nsuperior","osuperior","","","rsuperior","ssuperior","tsuperior","","ff","fi","fl","ffi","ffl","parenleftinferior","","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdownsmall","centoldstyle","Lslashsmall","","","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","","Dotaccentsmall","","","Macronsmall","","","figuredash","hypheninferior","","","Ogoneksmall","Ringsmall","Cedillasmall","","","","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","","","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"];t.ExpertEncoding=i;const n=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclamsmall","Hungarumlautsmall","centoldstyle","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","","threequartersemdash","","questionsmall","","","","","Ethsmall","","","onequarter","onehalf","threequarters","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","","","","","","","ff","fi","fl","ffi","ffl","parenleftinferior","","parenrightinferior","Circumflexsmall","hypheninferior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","","","asuperior","centsuperior","","","","","Aacutesmall","Agravesmall","Acircumflexsmall","Adieresissmall","Atildesmall","Aringsmall","Ccedillasmall","Eacutesmall","Egravesmall","Ecircumflexsmall","Edieresissmall","Iacutesmall","Igravesmall","Icircumflexsmall","Idieresissmall","Ntildesmall","Oacutesmall","Ogravesmall","Ocircumflexsmall","Odieresissmall","Otildesmall","Uacutesmall","Ugravesmall","Ucircumflexsmall","Udieresissmall","","eightsuperior","fourinferior","threeinferior","sixinferior","eightinferior","seveninferior","Scaronsmall","","centinferior","twoinferior","","Dieresissmall","","Caronsmall","osuperior","fiveinferior","","commainferior","periodinferior","Yacutesmall","","dollarinferior","","","Thornsmall","","nineinferior","zeroinferior","Zcaronsmall","AEsmall","Oslashsmall","questiondownsmall","oneinferior","Lslashsmall","","","","","","","Cedillasmall","","","","","","OEsmall","figuredash","hyphensuperior","","","","","exclamdownsmall","","Ydieresissmall","","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","ninesuperior","zerosuperior","","esuperior","rsuperior","tsuperior","","","isuperior","ssuperior","dsuperior","","","","","","lsuperior","Ogoneksmall","Brevesmall","Macronsmall","bsuperior","nsuperior","msuperior","commasuperior","periodsuperior","Dotaccentsmall","Ringsmall","","","",""],a=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quotesingle","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","grave","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","","Adieresis","Aring","Ccedilla","Eacute","Ntilde","Odieresis","Udieresis","aacute","agrave","acircumflex","adieresis","atilde","aring","ccedilla","eacute","egrave","ecircumflex","edieresis","iacute","igrave","icircumflex","idieresis","ntilde","oacute","ograve","ocircumflex","odieresis","otilde","uacute","ugrave","ucircumflex","udieresis","dagger","degree","cent","sterling","section","bullet","paragraph","germandbls","registered","copyright","trademark","acute","dieresis","notequal","AE","Oslash","infinity","plusminus","lessequal","greaterequal","yen","mu","partialdiff","summation","product","pi","integral","ordfeminine","ordmasculine","Omega","ae","oslash","questiondown","exclamdown","logicalnot","radical","florin","approxequal","Delta","guillemotleft","guillemotright","ellipsis","space","Agrave","Atilde","Otilde","OE","oe","endash","emdash","quotedblleft","quotedblright","quoteleft","quoteright","divide","lozenge","ydieresis","Ydieresis","fraction","currency","guilsinglleft","guilsinglright","fi","fl","daggerdbl","periodcentered","quotesinglbase","quotedblbase","perthousand","Acircumflex","Ecircumflex","Aacute","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Oacute","Ocircumflex","apple","Ograve","Uacute","Ucircumflex","Ugrave","dotlessi","circumflex","tilde","macron","breve","dotaccent","ring","cedilla","hungarumlaut","ogonek","caron"];t.MacRomanEncoding=a;const s=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","","endash","dagger","daggerdbl","periodcentered","","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","","questiondown","","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","","ring","cedilla","","hungarumlaut","ogonek","caron","emdash","","","","","","","","","","","","","","","","","AE","","ordfeminine","","","","","Lslash","Oslash","OE","ordmasculine","","","","","","ae","","","","dotlessi","","","lslash","oslash","oe","germandbls","","","",""];t.StandardEncoding=s;const o=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quotesingle","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","grave","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","bullet","Euro","bullet","quotesinglbase","florin","quotedblbase","ellipsis","dagger","daggerdbl","circumflex","perthousand","Scaron","guilsinglleft","OE","bullet","Zcaron","bullet","bullet","quoteleft","quoteright","quotedblleft","quotedblright","bullet","endash","emdash","tilde","trademark","scaron","guilsinglright","oe","bullet","zcaron","Ydieresis","space","exclamdown","cent","sterling","currency","yen","brokenbar","section","dieresis","copyright","ordfeminine","guillemotleft","logicalnot","hyphen","registered","macron","degree","plusminus","twosuperior","threesuperior","acute","mu","paragraph","periodcentered","cedilla","onesuperior","ordmasculine","guillemotright","onequarter","onehalf","threequarters","questiondown","Agrave","Aacute","Acircumflex","Atilde","Adieresis","Aring","AE","Ccedilla","Egrave","Eacute","Ecircumflex","Edieresis","Igrave","Iacute","Icircumflex","Idieresis","Eth","Ntilde","Ograve","Oacute","Ocircumflex","Otilde","Odieresis","multiply","Oslash","Ugrave","Uacute","Ucircumflex","Udieresis","Yacute","Thorn","germandbls","agrave","aacute","acircumflex","atilde","adieresis","aring","ae","ccedilla","egrave","eacute","ecircumflex","edieresis","igrave","iacute","icircumflex","idieresis","eth","ntilde","ograve","oacute","ocircumflex","otilde","odieresis","divide","oslash","ugrave","uacute","ucircumflex","udieresis","yacute","thorn","ydieresis"];t.WinAnsiEncoding=o;const h=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","universal","numbersign","existential","percent","ampersand","suchthat","parenleft","parenright","asteriskmath","plus","comma","minus","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","congruent","Alpha","Beta","Chi","Delta","Epsilon","Phi","Gamma","Eta","Iota","theta1","Kappa","Lambda","Mu","Nu","Omicron","Pi","Theta","Rho","Sigma","Tau","Upsilon","sigma1","Omega","Xi","Psi","Zeta","bracketleft","therefore","bracketright","perpendicular","underscore","radicalex","alpha","beta","chi","delta","epsilon","phi","gamma","eta","iota","phi1","kappa","lambda","mu","nu","omicron","pi","theta","rho","sigma","tau","upsilon","omega1","omega","xi","psi","zeta","braceleft","bar","braceright","similar","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Euro","Upsilon1","minute","lessequal","fraction","infinity","florin","club","diamond","heart","spade","arrowboth","arrowleft","arrowup","arrowright","arrowdown","degree","plusminus","second","greaterequal","multiply","proportional","partialdiff","bullet","divide","notequal","equivalence","approxequal","ellipsis","arrowvertex","arrowhorizex","carriagereturn","aleph","Ifraktur","Rfraktur","weierstrass","circlemultiply","circleplus","emptyset","intersection","union","propersuperset","reflexsuperset","notsubset","propersubset","reflexsubset","element","notelement","angle","gradient","registerserif","copyrightserif","trademarkserif","product","radical","dotmath","logicalnot","logicaland","logicalor","arrowdblboth","arrowdblleft","arrowdblup","arrowdblright","arrowdbldown","lozenge","angleleft","registersans","copyrightsans","trademarksans","summation","parenlefttp","parenleftex","parenleftbt","bracketlefttp","bracketleftex","bracketleftbt","bracelefttp","braceleftmid","braceleftbt","braceex","","angleright","integral","integraltp","integralex","integralbt","parenrighttp","parenrightex","parenrightbt","bracketrighttp","bracketrightex","bracketrightbt","bracerighttp","bracerightmid","bracerightbt",""];t.SymbolSetEncoding=h;const l=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","a1","a2","a202","a3","a4","a5","a119","a118","a117","a11","a12","a13","a14","a15","a16","a105","a17","a18","a19","a20","a21","a22","a23","a24","a25","a26","a27","a28","a6","a7","a8","a9","a10","a29","a30","a31","a32","a33","a34","a35","a36","a37","a38","a39","a40","a41","a42","a43","a44","a45","a46","a47","a48","a49","a50","a51","a52","a53","a54","a55","a56","a57","a58","a59","a60","a61","a62","a63","a64","a65","a66","a67","a68","a69","a70","a71","a72","a73","a74","a203","a75","a204","a76","a77","a78","a79","a81","a82","a83","a84","a97","a98","a99","a100","","a89","a90","a93","a94","a91","a92","a205","a85","a206","a86","a87","a88","a95","a96","","","","","","","","","","","","","","","","","","","","a101","a102","a103","a104","a106","a107","a108","a112","a111","a110","a109","a120","a121","a122","a123","a124","a125","a126","a127","a128","a129","a130","a131","a132","a133","a134","a135","a136","a137","a138","a139","a140","a141","a142","a143","a144","a145","a146","a147","a148","a149","a150","a151","a152","a153","a154","a155","a156","a157","a158","a159","a160","a161","a163","a164","a196","a165","a192","a166","a167","a168","a169","a170","a171","a172","a173","a162","a174","a175","a176","a177","a178","a179","a193","a180","a199","a181","a200","a182","","a201","a183","a184","a197","a185","a194","a198","a186","a195","a187","a188","a189","a190","a191",""];function c(e){switch(e){case"WinAnsiEncoding":return o;case"StandardEncoding":return s;case"MacRomanEncoding":return a;case"SymbolSetEncoding":return h;case"ZapfDingbatsEncoding":return l;case"ExpertEncoding":return i;case"MacExpertEncoding":return n;default:return null}}t.ZapfDingbatsEncoding=l},function(e,t,r){var i=r(8).getLookupTableFactory,n=i((function(e){e.A=65,e.AE=198,e.AEacute=508,e.AEmacron=482,e.AEsmall=63462,e.Aacute=193,e.Aacutesmall=63457,e.Abreve=258,e.Abreveacute=7854,e.Abrevecyrillic=1232,e.Abrevedotbelow=7862,e.Abrevegrave=7856,e.Abrevehookabove=7858,e.Abrevetilde=7860,e.Acaron=461,e.Acircle=9398,e.Acircumflex=194,e.Acircumflexacute=7844,e.Acircumflexdotbelow=7852,e.Acircumflexgrave=7846,e.Acircumflexhookabove=7848,e.Acircumflexsmall=63458,e.Acircumflextilde=7850,e.Acute=63177,e.Acutesmall=63412,e.Acyrillic=1040,e.Adblgrave=512,e.Adieresis=196,e.Adieresiscyrillic=1234,e.Adieresismacron=478,e.Adieresissmall=63460,e.Adotbelow=7840,e.Adotmacron=480,e.Agrave=192,e.Agravesmall=63456,e.Ahookabove=7842,e.Aiecyrillic=1236,e.Ainvertedbreve=514,e.Alpha=913,e.Alphatonos=902,e.Amacron=256,e.Amonospace=65313,e.Aogonek=260,e.Aring=197,e.Aringacute=506,e.Aringbelow=7680,e.Aringsmall=63461,e.Asmall=63329,e.Atilde=195,e.Atildesmall=63459,e.Aybarmenian=1329,e.B=66,e.Bcircle=9399,e.Bdotaccent=7682,e.Bdotbelow=7684,e.Becyrillic=1041,e.Benarmenian=1330,e.Beta=914,e.Bhook=385,e.Blinebelow=7686,e.Bmonospace=65314,e.Brevesmall=63220,e.Bsmall=63330,e.Btopbar=386,e.C=67,e.Caarmenian=1342,e.Cacute=262,e.Caron=63178,e.Caronsmall=63221,e.Ccaron=268,e.Ccedilla=199,e.Ccedillaacute=7688,e.Ccedillasmall=63463,e.Ccircle=9400,e.Ccircumflex=264,e.Cdot=266,e.Cdotaccent=266,e.Cedillasmall=63416,e.Chaarmenian=1353,e.Cheabkhasiancyrillic=1212,e.Checyrillic=1063,e.Chedescenderabkhasiancyrillic=1214,e.Chedescendercyrillic=1206,e.Chedieresiscyrillic=1268,e.Cheharmenian=1347,e.Chekhakassiancyrillic=1227,e.Cheverticalstrokecyrillic=1208,e.Chi=935,e.Chook=391,e.Circumflexsmall=63222,e.Cmonospace=65315,e.Coarmenian=1361,e.Csmall=63331,e.D=68,e.DZ=497,e.DZcaron=452,e.Daarmenian=1332,e.Dafrican=393,e.Dcaron=270,e.Dcedilla=7696,e.Dcircle=9401,e.Dcircumflexbelow=7698,e.Dcroat=272,e.Ddotaccent=7690,e.Ddotbelow=7692,e.Decyrillic=1044,e.Deicoptic=1006,e.Delta=8710,e.Deltagreek=916,e.Dhook=394,e.Dieresis=63179,e.DieresisAcute=63180,e.DieresisGrave=63181,e.Dieresissmall=63400,e.Digammagreek=988,e.Djecyrillic=1026,e.Dlinebelow=7694,e.Dmonospace=65316,e.Dotaccentsmall=63223,e.Dslash=272,e.Dsmall=63332,e.Dtopbar=395,e.Dz=498,e.Dzcaron=453,e.Dzeabkhasiancyrillic=1248,e.Dzecyrillic=1029,e.Dzhecyrillic=1039,e.E=69,e.Eacute=201,e.Eacutesmall=63465,e.Ebreve=276,e.Ecaron=282,e.Ecedillabreve=7708,e.Echarmenian=1333,e.Ecircle=9402,e.Ecircumflex=202,e.Ecircumflexacute=7870,e.Ecircumflexbelow=7704,e.Ecircumflexdotbelow=7878,e.Ecircumflexgrave=7872,e.Ecircumflexhookabove=7874,e.Ecircumflexsmall=63466,e.Ecircumflextilde=7876,e.Ecyrillic=1028,e.Edblgrave=516,e.Edieresis=203,e.Edieresissmall=63467,e.Edot=278,e.Edotaccent=278,e.Edotbelow=7864,e.Efcyrillic=1060,e.Egrave=200,e.Egravesmall=63464,e.Eharmenian=1335,e.Ehookabove=7866,e.Eightroman=8551,e.Einvertedbreve=518,e.Eiotifiedcyrillic=1124,e.Elcyrillic=1051,e.Elevenroman=8554,e.Emacron=274,e.Emacronacute=7702,e.Emacrongrave=7700,e.Emcyrillic=1052,e.Emonospace=65317,e.Encyrillic=1053,e.Endescendercyrillic=1186,e.Eng=330,e.Enghecyrillic=1188,e.Enhookcyrillic=1223,e.Eogonek=280,e.Eopen=400,e.Epsilon=917,e.Epsilontonos=904,e.Ercyrillic=1056,e.Ereversed=398,e.Ereversedcyrillic=1069,e.Escyrillic=1057,e.Esdescendercyrillic=1194,e.Esh=425,e.Esmall=63333,e.Eta=919,e.Etarmenian=1336,e.Etatonos=905,e.Eth=208,e.Ethsmall=63472,e.Etilde=7868,e.Etildebelow=7706,e.Euro=8364,e.Ezh=439,e.Ezhcaron=494,e.Ezhreversed=440,e.F=70,e.Fcircle=9403,e.Fdotaccent=7710,e.Feharmenian=1366,e.Feicoptic=996,e.Fhook=401,e.Fitacyrillic=1138,e.Fiveroman=8548,e.Fmonospace=65318,e.Fourroman=8547,e.Fsmall=63334,e.G=71,e.GBsquare=13191,e.Gacute=500,e.Gamma=915,e.Gammaafrican=404,e.Gangiacoptic=1002,e.Gbreve=286,e.Gcaron=486,e.Gcedilla=290,e.Gcircle=9404,e.Gcircumflex=284,e.Gcommaaccent=290,e.Gdot=288,e.Gdotaccent=288,e.Gecyrillic=1043,e.Ghadarmenian=1346,e.Ghemiddlehookcyrillic=1172,e.Ghestrokecyrillic=1170,e.Gheupturncyrillic=1168,e.Ghook=403,e.Gimarmenian=1331,e.Gjecyrillic=1027,e.Gmacron=7712,e.Gmonospace=65319,e.Grave=63182,e.Gravesmall=63328,e.Gsmall=63335,e.Gsmallhook=667,e.Gstroke=484,e.H=72,e.H18533=9679,e.H18543=9642,e.H18551=9643,e.H22073=9633,e.HPsquare=13259,e.Haabkhasiancyrillic=1192,e.Hadescendercyrillic=1202,e.Hardsigncyrillic=1066,e.Hbar=294,e.Hbrevebelow=7722,e.Hcedilla=7720,e.Hcircle=9405,e.Hcircumflex=292,e.Hdieresis=7718,e.Hdotaccent=7714,e.Hdotbelow=7716,e.Hmonospace=65320,e.Hoarmenian=1344,e.Horicoptic=1e3,e.Hsmall=63336,e.Hungarumlaut=63183,e.Hungarumlautsmall=63224,e.Hzsquare=13200,e.I=73,e.IAcyrillic=1071,e.IJ=306,e.IUcyrillic=1070,e.Iacute=205,e.Iacutesmall=63469,e.Ibreve=300,e.Icaron=463,e.Icircle=9406,e.Icircumflex=206,e.Icircumflexsmall=63470,e.Icyrillic=1030,e.Idblgrave=520,e.Idieresis=207,e.Idieresisacute=7726,e.Idieresiscyrillic=1252,e.Idieresissmall=63471,e.Idot=304,e.Idotaccent=304,e.Idotbelow=7882,e.Iebrevecyrillic=1238,e.Iecyrillic=1045,e.Ifraktur=8465,e.Igrave=204,e.Igravesmall=63468,e.Ihookabove=7880,e.Iicyrillic=1048,e.Iinvertedbreve=522,e.Iishortcyrillic=1049,e.Imacron=298,e.Imacroncyrillic=1250,e.Imonospace=65321,e.Iniarmenian=1339,e.Iocyrillic=1025,e.Iogonek=302,e.Iota=921,e.Iotaafrican=406,e.Iotadieresis=938,e.Iotatonos=906,e.Ismall=63337,e.Istroke=407,e.Itilde=296,e.Itildebelow=7724,e.Izhitsacyrillic=1140,e.Izhitsadblgravecyrillic=1142,e.J=74,e.Jaarmenian=1345,e.Jcircle=9407,e.Jcircumflex=308,e.Jecyrillic=1032,e.Jheharmenian=1355,e.Jmonospace=65322,e.Jsmall=63338,e.K=75,e.KBsquare=13189,e.KKsquare=13261,e.Kabashkircyrillic=1184,e.Kacute=7728,e.Kacyrillic=1050,e.Kadescendercyrillic=1178,e.Kahookcyrillic=1219,e.Kappa=922,e.Kastrokecyrillic=1182,e.Kaverticalstrokecyrillic=1180,e.Kcaron=488,e.Kcedilla=310,e.Kcircle=9408,e.Kcommaaccent=310,e.Kdotbelow=7730,e.Keharmenian=1364,e.Kenarmenian=1343,e.Khacyrillic=1061,e.Kheicoptic=998,e.Khook=408,e.Kjecyrillic=1036,e.Klinebelow=7732,e.Kmonospace=65323,e.Koppacyrillic=1152,e.Koppagreek=990,e.Ksicyrillic=1134,e.Ksmall=63339,e.L=76,e.LJ=455,e.LL=63167,e.Lacute=313,e.Lambda=923,e.Lcaron=317,e.Lcedilla=315,e.Lcircle=9409,e.Lcircumflexbelow=7740,e.Lcommaaccent=315,e.Ldot=319,e.Ldotaccent=319,e.Ldotbelow=7734,e.Ldotbelowmacron=7736,e.Liwnarmenian=1340,e.Lj=456,e.Ljecyrillic=1033,e.Llinebelow=7738,e.Lmonospace=65324,e.Lslash=321,e.Lslashsmall=63225,e.Lsmall=63340,e.M=77,e.MBsquare=13190,e.Macron=63184,e.Macronsmall=63407,e.Macute=7742,e.Mcircle=9410,e.Mdotaccent=7744,e.Mdotbelow=7746,e.Menarmenian=1348,e.Mmonospace=65325,e.Msmall=63341,e.Mturned=412,e.Mu=924,e.N=78,e.NJ=458,e.Nacute=323,e.Ncaron=327,e.Ncedilla=325,e.Ncircle=9411,e.Ncircumflexbelow=7754,e.Ncommaaccent=325,e.Ndotaccent=7748,e.Ndotbelow=7750,e.Nhookleft=413,e.Nineroman=8552,e.Nj=459,e.Njecyrillic=1034,e.Nlinebelow=7752,e.Nmonospace=65326,e.Nowarmenian=1350,e.Nsmall=63342,e.Ntilde=209,e.Ntildesmall=63473,e.Nu=925,e.O=79,e.OE=338,e.OEsmall=63226,e.Oacute=211,e.Oacutesmall=63475,e.Obarredcyrillic=1256,e.Obarreddieresiscyrillic=1258,e.Obreve=334,e.Ocaron=465,e.Ocenteredtilde=415,e.Ocircle=9412,e.Ocircumflex=212,e.Ocircumflexacute=7888,e.Ocircumflexdotbelow=7896,e.Ocircumflexgrave=7890,e.Ocircumflexhookabove=7892,e.Ocircumflexsmall=63476,e.Ocircumflextilde=7894,e.Ocyrillic=1054,e.Odblacute=336,e.Odblgrave=524,e.Odieresis=214,e.Odieresiscyrillic=1254,e.Odieresissmall=63478,e.Odotbelow=7884,e.Ogoneksmall=63227,e.Ograve=210,e.Ogravesmall=63474,e.Oharmenian=1365,e.Ohm=8486,e.Ohookabove=7886,e.Ohorn=416,e.Ohornacute=7898,e.Ohorndotbelow=7906,e.Ohorngrave=7900,e.Ohornhookabove=7902,e.Ohorntilde=7904,e.Ohungarumlaut=336,e.Oi=418,e.Oinvertedbreve=526,e.Omacron=332,e.Omacronacute=7762,e.Omacrongrave=7760,e.Omega=8486,e.Omegacyrillic=1120,e.Omegagreek=937,e.Omegaroundcyrillic=1146,e.Omegatitlocyrillic=1148,e.Omegatonos=911,e.Omicron=927,e.Omicrontonos=908,e.Omonospace=65327,e.Oneroman=8544,e.Oogonek=490,e.Oogonekmacron=492,e.Oopen=390,e.Oslash=216,e.Oslashacute=510,e.Oslashsmall=63480,e.Osmall=63343,e.Ostrokeacute=510,e.Otcyrillic=1150,e.Otilde=213,e.Otildeacute=7756,e.Otildedieresis=7758,e.Otildesmall=63477,e.P=80,e.Pacute=7764,e.Pcircle=9413,e.Pdotaccent=7766,e.Pecyrillic=1055,e.Peharmenian=1354,e.Pemiddlehookcyrillic=1190,e.Phi=934,e.Phook=420,e.Pi=928,e.Piwrarmenian=1363,e.Pmonospace=65328,e.Psi=936,e.Psicyrillic=1136,e.Psmall=63344,e.Q=81,e.Qcircle=9414,e.Qmonospace=65329,e.Qsmall=63345,e.R=82,e.Raarmenian=1356,e.Racute=340,e.Rcaron=344,e.Rcedilla=342,e.Rcircle=9415,e.Rcommaaccent=342,e.Rdblgrave=528,e.Rdotaccent=7768,e.Rdotbelow=7770,e.Rdotbelowmacron=7772,e.Reharmenian=1360,e.Rfraktur=8476,e.Rho=929,e.Ringsmall=63228,e.Rinvertedbreve=530,e.Rlinebelow=7774,e.Rmonospace=65330,e.Rsmall=63346,e.Rsmallinverted=641,e.Rsmallinvertedsuperior=694,e.S=83,e.SF010000=9484,e.SF020000=9492,e.SF030000=9488,e.SF040000=9496,e.SF050000=9532,e.SF060000=9516,e.SF070000=9524,e.SF080000=9500,e.SF090000=9508,e.SF100000=9472,e.SF110000=9474,e.SF190000=9569,e.SF200000=9570,e.SF210000=9558,e.SF220000=9557,e.SF230000=9571,e.SF240000=9553,e.SF250000=9559,e.SF260000=9565,e.SF270000=9564,e.SF280000=9563,e.SF360000=9566,e.SF370000=9567,e.SF380000=9562,e.SF390000=9556,e.SF400000=9577,e.SF410000=9574,e.SF420000=9568,e.SF430000=9552,e.SF440000=9580,e.SF450000=9575,e.SF460000=9576,e.SF470000=9572,e.SF480000=9573,e.SF490000=9561,e.SF500000=9560,e.SF510000=9554,e.SF520000=9555,e.SF530000=9579,e.SF540000=9578,e.Sacute=346,e.Sacutedotaccent=7780,e.Sampigreek=992,e.Scaron=352,e.Scarondotaccent=7782,e.Scaronsmall=63229,e.Scedilla=350,e.Schwa=399,e.Schwacyrillic=1240,e.Schwadieresiscyrillic=1242,e.Scircle=9416,e.Scircumflex=348,e.Scommaaccent=536,e.Sdotaccent=7776,e.Sdotbelow=7778,e.Sdotbelowdotaccent=7784,e.Seharmenian=1357,e.Sevenroman=8550,e.Shaarmenian=1351,e.Shacyrillic=1064,e.Shchacyrillic=1065,e.Sheicoptic=994,e.Shhacyrillic=1210,e.Shimacoptic=1004,e.Sigma=931,e.Sixroman=8549,e.Smonospace=65331,e.Softsigncyrillic=1068,e.Ssmall=63347,e.Stigmagreek=986,e.T=84,e.Tau=932,e.Tbar=358,e.Tcaron=356,e.Tcedilla=354,e.Tcircle=9417,e.Tcircumflexbelow=7792,e.Tcommaaccent=354,e.Tdotaccent=7786,e.Tdotbelow=7788,e.Tecyrillic=1058,e.Tedescendercyrillic=1196,e.Tenroman=8553,e.Tetsecyrillic=1204,e.Theta=920,e.Thook=428,e.Thorn=222,e.Thornsmall=63486,e.Threeroman=8546,e.Tildesmall=63230,e.Tiwnarmenian=1359,e.Tlinebelow=7790,e.Tmonospace=65332,e.Toarmenian=1337,e.Tonefive=444,e.Tonesix=388,e.Tonetwo=423,e.Tretroflexhook=430,e.Tsecyrillic=1062,e.Tshecyrillic=1035,e.Tsmall=63348,e.Twelveroman=8555,e.Tworoman=8545,e.U=85,e.Uacute=218,e.Uacutesmall=63482,e.Ubreve=364,e.Ucaron=467,e.Ucircle=9418,e.Ucircumflex=219,e.Ucircumflexbelow=7798,e.Ucircumflexsmall=63483,e.Ucyrillic=1059,e.Udblacute=368,e.Udblgrave=532,e.Udieresis=220,e.Udieresisacute=471,e.Udieresisbelow=7794,e.Udieresiscaron=473,e.Udieresiscyrillic=1264,e.Udieresisgrave=475,e.Udieresismacron=469,e.Udieresissmall=63484,e.Udotbelow=7908,e.Ugrave=217,e.Ugravesmall=63481,e.Uhookabove=7910,e.Uhorn=431,e.Uhornacute=7912,e.Uhorndotbelow=7920,e.Uhorngrave=7914,e.Uhornhookabove=7916,e.Uhorntilde=7918,e.Uhungarumlaut=368,e.Uhungarumlautcyrillic=1266,e.Uinvertedbreve=534,e.Ukcyrillic=1144,e.Umacron=362,e.Umacroncyrillic=1262,e.Umacrondieresis=7802,e.Umonospace=65333,e.Uogonek=370,e.Upsilon=933,e.Upsilon1=978,e.Upsilonacutehooksymbolgreek=979,e.Upsilonafrican=433,e.Upsilondieresis=939,e.Upsilondieresishooksymbolgreek=980,e.Upsilonhooksymbol=978,e.Upsilontonos=910,e.Uring=366,e.Ushortcyrillic=1038,e.Usmall=63349,e.Ustraightcyrillic=1198,e.Ustraightstrokecyrillic=1200,e.Utilde=360,e.Utildeacute=7800,e.Utildebelow=7796,e.V=86,e.Vcircle=9419,e.Vdotbelow=7806,e.Vecyrillic=1042,e.Vewarmenian=1358,e.Vhook=434,e.Vmonospace=65334,e.Voarmenian=1352,e.Vsmall=63350,e.Vtilde=7804,e.W=87,e.Wacute=7810,e.Wcircle=9420,e.Wcircumflex=372,e.Wdieresis=7812,e.Wdotaccent=7814,e.Wdotbelow=7816,e.Wgrave=7808,e.Wmonospace=65335,e.Wsmall=63351,e.X=88,e.Xcircle=9421,e.Xdieresis=7820,e.Xdotaccent=7818,e.Xeharmenian=1341,e.Xi=926,e.Xmonospace=65336,e.Xsmall=63352,e.Y=89,e.Yacute=221,e.Yacutesmall=63485,e.Yatcyrillic=1122,e.Ycircle=9422,e.Ycircumflex=374,e.Ydieresis=376,e.Ydieresissmall=63487,e.Ydotaccent=7822,e.Ydotbelow=7924,e.Yericyrillic=1067,e.Yerudieresiscyrillic=1272,e.Ygrave=7922,e.Yhook=435,e.Yhookabove=7926,e.Yiarmenian=1349,e.Yicyrillic=1031,e.Yiwnarmenian=1362,e.Ymonospace=65337,e.Ysmall=63353,e.Ytilde=7928,e.Yusbigcyrillic=1130,e.Yusbigiotifiedcyrillic=1132,e.Yuslittlecyrillic=1126,e.Yuslittleiotifiedcyrillic=1128,e.Z=90,e.Zaarmenian=1334,e.Zacute=377,e.Zcaron=381,e.Zcaronsmall=63231,e.Zcircle=9423,e.Zcircumflex=7824,e.Zdot=379,e.Zdotaccent=379,e.Zdotbelow=7826,e.Zecyrillic=1047,e.Zedescendercyrillic=1176,e.Zedieresiscyrillic=1246,e.Zeta=918,e.Zhearmenian=1338,e.Zhebrevecyrillic=1217,e.Zhecyrillic=1046,e.Zhedescendercyrillic=1174,e.Zhedieresiscyrillic=1244,e.Zlinebelow=7828,e.Zmonospace=65338,e.Zsmall=63354,e.Zstroke=437,e.a=97,e.aabengali=2438,e.aacute=225,e.aadeva=2310,e.aagujarati=2694,e.aagurmukhi=2566,e.aamatragurmukhi=2622,e.aarusquare=13059,e.aavowelsignbengali=2494,e.aavowelsigndeva=2366,e.aavowelsigngujarati=2750,e.abbreviationmarkarmenian=1375,e.abbreviationsigndeva=2416,e.abengali=2437,e.abopomofo=12570,e.abreve=259,e.abreveacute=7855,e.abrevecyrillic=1233,e.abrevedotbelow=7863,e.abrevegrave=7857,e.abrevehookabove=7859,e.abrevetilde=7861,e.acaron=462,e.acircle=9424,e.acircumflex=226,e.acircumflexacute=7845,e.acircumflexdotbelow=7853,e.acircumflexgrave=7847,e.acircumflexhookabove=7849,e.acircumflextilde=7851,e.acute=180,e.acutebelowcmb=791,e.acutecmb=769,e.acutecomb=769,e.acutedeva=2388,e.acutelowmod=719,e.acutetonecmb=833,e.acyrillic=1072,e.adblgrave=513,e.addakgurmukhi=2673,e.adeva=2309,e.adieresis=228,e.adieresiscyrillic=1235,e.adieresismacron=479,e.adotbelow=7841,e.adotmacron=481,e.ae=230,e.aeacute=509,e.aekorean=12624,e.aemacron=483,e.afii00208=8213,e.afii08941=8356,e.afii10017=1040,e.afii10018=1041,e.afii10019=1042,e.afii10020=1043,e.afii10021=1044,e.afii10022=1045,e.afii10023=1025,e.afii10024=1046,e.afii10025=1047,e.afii10026=1048,e.afii10027=1049,e.afii10028=1050,e.afii10029=1051,e.afii10030=1052;e.afii10031=1053,e.afii10032=1054,e.afii10033=1055,e.afii10034=1056,e.afii10035=1057,e.afii10036=1058,e.afii10037=1059,e.afii10038=1060,e.afii10039=1061,e.afii10040=1062,e.afii10041=1063,e.afii10042=1064,e.afii10043=1065,e.afii10044=1066,e.afii10045=1067,e.afii10046=1068,e.afii10047=1069,e.afii10048=1070,e.afii10049=1071,e.afii10050=1168,e.afii10051=1026,e.afii10052=1027,e.afii10053=1028,e.afii10054=1029,e.afii10055=1030,e.afii10056=1031,e.afii10057=1032,e.afii10058=1033,e.afii10059=1034,e.afii10060=1035,e.afii10061=1036,e.afii10062=1038,e.afii10063=63172,e.afii10064=63173,e.afii10065=1072,e.afii10066=1073,e.afii10067=1074,e.afii10068=1075,e.afii10069=1076,e.afii10070=1077,e.afii10071=1105,e.afii10072=1078,e.afii10073=1079,e.afii10074=1080,e.afii10075=1081,e.afii10076=1082,e.afii10077=1083,e.afii10078=1084,e.afii10079=1085,e.afii10080=1086,e.afii10081=1087,e.afii10082=1088,e.afii10083=1089,e.afii10084=1090,e.afii10085=1091,e.afii10086=1092,e.afii10087=1093,e.afii10088=1094,e.afii10089=1095,e.afii10090=1096,e.afii10091=1097,e.afii10092=1098,e.afii10093=1099,e.afii10094=1100,e.afii10095=1101,e.afii10096=1102,e.afii10097=1103,e.afii10098=1169,e.afii10099=1106,e.afii10100=1107,e.afii10101=1108,e.afii10102=1109,e.afii10103=1110,e.afii10104=1111,e.afii10105=1112,e.afii10106=1113,e.afii10107=1114,e.afii10108=1115,e.afii10109=1116,e.afii10110=1118,e.afii10145=1039,e.afii10146=1122,e.afii10147=1138,e.afii10148=1140,e.afii10192=63174,e.afii10193=1119,e.afii10194=1123,e.afii10195=1139,e.afii10196=1141,e.afii10831=63175,e.afii10832=63176,e.afii10846=1241,e.afii299=8206,e.afii300=8207,e.afii301=8205,e.afii57381=1642,e.afii57388=1548,e.afii57392=1632,e.afii57393=1633,e.afii57394=1634,e.afii57395=1635,e.afii57396=1636,e.afii57397=1637,e.afii57398=1638,e.afii57399=1639,e.afii57400=1640,e.afii57401=1641,e.afii57403=1563,e.afii57407=1567,e.afii57409=1569,e.afii57410=1570,e.afii57411=1571,e.afii57412=1572,e.afii57413=1573,e.afii57414=1574,e.afii57415=1575,e.afii57416=1576,e.afii57417=1577,e.afii57418=1578,e.afii57419=1579,e.afii57420=1580,e.afii57421=1581,e.afii57422=1582,e.afii57423=1583,e.afii57424=1584,e.afii57425=1585,e.afii57426=1586,e.afii57427=1587,e.afii57428=1588,e.afii57429=1589,e.afii57430=1590,e.afii57431=1591,e.afii57432=1592,e.afii57433=1593,e.afii57434=1594,e.afii57440=1600,e.afii57441=1601,e.afii57442=1602,e.afii57443=1603,e.afii57444=1604,e.afii57445=1605,e.afii57446=1606,e.afii57448=1608,e.afii57449=1609,e.afii57450=1610,e.afii57451=1611,e.afii57452=1612,e.afii57453=1613,e.afii57454=1614,e.afii57455=1615,e.afii57456=1616,e.afii57457=1617,e.afii57458=1618,e.afii57470=1607,e.afii57505=1700,e.afii57506=1662,e.afii57507=1670,e.afii57508=1688,e.afii57509=1711,e.afii57511=1657,e.afii57512=1672,e.afii57513=1681,e.afii57514=1722,e.afii57519=1746,e.afii57534=1749,e.afii57636=8362,e.afii57645=1470,e.afii57658=1475,e.afii57664=1488,e.afii57665=1489,e.afii57666=1490,e.afii57667=1491,e.afii57668=1492,e.afii57669=1493,e.afii57670=1494,e.afii57671=1495,e.afii57672=1496,e.afii57673=1497,e.afii57674=1498,e.afii57675=1499,e.afii57676=1500,e.afii57677=1501,e.afii57678=1502,e.afii57679=1503,e.afii57680=1504,e.afii57681=1505,e.afii57682=1506,e.afii57683=1507,e.afii57684=1508,e.afii57685=1509,e.afii57686=1510,e.afii57687=1511,e.afii57688=1512,e.afii57689=1513,e.afii57690=1514,e.afii57694=64298,e.afii57695=64299,e.afii57700=64331,e.afii57705=64287,e.afii57716=1520,e.afii57717=1521,e.afii57718=1522,e.afii57723=64309,e.afii57793=1460,e.afii57794=1461,e.afii57795=1462,e.afii57796=1467,e.afii57797=1464,e.afii57798=1463,e.afii57799=1456,e.afii57800=1458,e.afii57801=1457,e.afii57802=1459,e.afii57803=1474,e.afii57804=1473,e.afii57806=1465,e.afii57807=1468,e.afii57839=1469,e.afii57841=1471,e.afii57842=1472,e.afii57929=700,e.afii61248=8453,e.afii61289=8467,e.afii61352=8470,e.afii61573=8236,e.afii61574=8237,e.afii61575=8238,e.afii61664=8204,e.afii63167=1645,e.afii64937=701,e.agrave=224,e.agujarati=2693,e.agurmukhi=2565,e.ahiragana=12354,e.ahookabove=7843,e.aibengali=2448,e.aibopomofo=12574,e.aideva=2320,e.aiecyrillic=1237,e.aigujarati=2704,e.aigurmukhi=2576,e.aimatragurmukhi=2632,e.ainarabic=1593,e.ainfinalarabic=65226,e.aininitialarabic=65227,e.ainmedialarabic=65228,e.ainvertedbreve=515,e.aivowelsignbengali=2504,e.aivowelsigndeva=2376,e.aivowelsigngujarati=2760,e.akatakana=12450,e.akatakanahalfwidth=65393,e.akorean=12623,e.alef=1488,e.alefarabic=1575,e.alefdageshhebrew=64304,e.aleffinalarabic=65166,e.alefhamzaabovearabic=1571,e.alefhamzaabovefinalarabic=65156,e.alefhamzabelowarabic=1573,e.alefhamzabelowfinalarabic=65160,e.alefhebrew=1488,e.aleflamedhebrew=64335,e.alefmaddaabovearabic=1570,e.alefmaddaabovefinalarabic=65154,e.alefmaksuraarabic=1609,e.alefmaksurafinalarabic=65264,e.alefmaksurainitialarabic=65267,e.alefmaksuramedialarabic=65268,e.alefpatahhebrew=64302,e.alefqamatshebrew=64303,e.aleph=8501,e.allequal=8780,e.alpha=945,e.alphatonos=940,e.amacron=257,e.amonospace=65345,e.ampersand=38,e.ampersandmonospace=65286,e.ampersandsmall=63270,e.amsquare=13250,e.anbopomofo=12578,e.angbopomofo=12580,e.angbracketleft=12296,e.angbracketright=12297,e.angkhankhuthai=3674,e.angle=8736,e.anglebracketleft=12296,e.anglebracketleftvertical=65087,e.anglebracketright=12297,e.anglebracketrightvertical=65088,e.angleleft=9001,e.angleright=9002,e.angstrom=8491,e.anoteleia=903,e.anudattadeva=2386,e.anusvarabengali=2434,e.anusvaradeva=2306,e.anusvaragujarati=2690,e.aogonek=261,e.apaatosquare=13056,e.aparen=9372,e.apostrophearmenian=1370,e.apostrophemod=700,e.apple=63743,e.approaches=8784,e.approxequal=8776,e.approxequalorimage=8786,e.approximatelyequal=8773,e.araeaekorean=12686,e.araeakorean=12685,e.arc=8978,e.arighthalfring=7834,e.aring=229,e.aringacute=507,e.aringbelow=7681,e.arrowboth=8596,e.arrowdashdown=8675,e.arrowdashleft=8672,e.arrowdashright=8674,e.arrowdashup=8673,e.arrowdblboth=8660,e.arrowdbldown=8659,e.arrowdblleft=8656,e.arrowdblright=8658,e.arrowdblup=8657,e.arrowdown=8595,e.arrowdownleft=8601,e.arrowdownright=8600,e.arrowdownwhite=8681,e.arrowheaddownmod=709,e.arrowheadleftmod=706,e.arrowheadrightmod=707,e.arrowheadupmod=708,e.arrowhorizex=63719,e.arrowleft=8592,e.arrowleftdbl=8656,e.arrowleftdblstroke=8653,e.arrowleftoverright=8646,e.arrowleftwhite=8678,e.arrowright=8594,e.arrowrightdblstroke=8655,e.arrowrightheavy=10142,e.arrowrightoverleft=8644,e.arrowrightwhite=8680,e.arrowtableft=8676,e.arrowtabright=8677,e.arrowup=8593,e.arrowupdn=8597,e.arrowupdnbse=8616,e.arrowupdownbase=8616,e.arrowupleft=8598,e.arrowupleftofdown=8645,e.arrowupright=8599,e.arrowupwhite=8679,e.arrowvertex=63718,e.asciicircum=94,e.asciicircummonospace=65342,e.asciitilde=126,e.asciitildemonospace=65374,e.ascript=593,e.ascriptturned=594,e.asmallhiragana=12353,e.asmallkatakana=12449,e.asmallkatakanahalfwidth=65383,e.asterisk=42,e.asteriskaltonearabic=1645,e.asteriskarabic=1645,e.asteriskmath=8727,e.asteriskmonospace=65290,e.asterisksmall=65121,e.asterism=8258,e.asuperior=63209,e.asymptoticallyequal=8771,e.at=64,e.atilde=227,e.atmonospace=65312,e.atsmall=65131,e.aturned=592,e.aubengali=2452,e.aubopomofo=12576,e.audeva=2324,e.augujarati=2708,e.augurmukhi=2580,e.aulengthmarkbengali=2519,e.aumatragurmukhi=2636,e.auvowelsignbengali=2508,e.auvowelsigndeva=2380,e.auvowelsigngujarati=2764,e.avagrahadeva=2365,e.aybarmenian=1377,e.ayin=1506,e.ayinaltonehebrew=64288,e.ayinhebrew=1506,e.b=98,e.babengali=2476,e.backslash=92,e.backslashmonospace=65340,e.badeva=2348,e.bagujarati=2732,e.bagurmukhi=2604,e.bahiragana=12400,e.bahtthai=3647,e.bakatakana=12496,e.bar=124,e.barmonospace=65372,e.bbopomofo=12549,e.bcircle=9425,e.bdotaccent=7683,e.bdotbelow=7685,e.beamedsixteenthnotes=9836,e.because=8757,e.becyrillic=1073,e.beharabic=1576,e.behfinalarabic=65168,e.behinitialarabic=65169,e.behiragana=12409,e.behmedialarabic=65170,e.behmeeminitialarabic=64671,e.behmeemisolatedarabic=64520,e.behnoonfinalarabic=64621,e.bekatakana=12505,e.benarmenian=1378,e.bet=1489,e.beta=946,e.betasymbolgreek=976,e.betdagesh=64305,e.betdageshhebrew=64305,e.bethebrew=1489,e.betrafehebrew=64332,e.bhabengali=2477,e.bhadeva=2349,e.bhagujarati=2733,e.bhagurmukhi=2605,e.bhook=595,e.bihiragana=12403,e.bikatakana=12499,e.bilabialclick=664,e.bindigurmukhi=2562,e.birusquare=13105,e.blackcircle=9679,e.blackdiamond=9670,e.blackdownpointingtriangle=9660,e.blackleftpointingpointer=9668,e.blackleftpointingtriangle=9664,e.blacklenticularbracketleft=12304,e.blacklenticularbracketleftvertical=65083,e.blacklenticularbracketright=12305,e.blacklenticularbracketrightvertical=65084,e.blacklowerlefttriangle=9699,e.blacklowerrighttriangle=9698,e.blackrectangle=9644,e.blackrightpointingpointer=9658,e.blackrightpointingtriangle=9654,e.blacksmallsquare=9642,e.blacksmilingface=9787,e.blacksquare=9632,e.blackstar=9733,e.blackupperlefttriangle=9700,e.blackupperrighttriangle=9701,e.blackuppointingsmalltriangle=9652,e.blackuppointingtriangle=9650,e.blank=9251,e.blinebelow=7687,e.block=9608,e.bmonospace=65346,e.bobaimaithai=3610,e.bohiragana=12412,e.bokatakana=12508,e.bparen=9373,e.bqsquare=13251,e.braceex=63732,e.braceleft=123,e.braceleftbt=63731,e.braceleftmid=63730,e.braceleftmonospace=65371,e.braceleftsmall=65115,e.bracelefttp=63729,e.braceleftvertical=65079,e.braceright=125,e.bracerightbt=63742,e.bracerightmid=63741,e.bracerightmonospace=65373,e.bracerightsmall=65116,e.bracerighttp=63740,e.bracerightvertical=65080,e.bracketleft=91,e.bracketleftbt=63728,e.bracketleftex=63727,e.bracketleftmonospace=65339,e.bracketlefttp=63726,e.bracketright=93,e.bracketrightbt=63739,e.bracketrightex=63738,e.bracketrightmonospace=65341,e.bracketrighttp=63737,e.breve=728,e.brevebelowcmb=814,e.brevecmb=774,e.breveinvertedbelowcmb=815,e.breveinvertedcmb=785,e.breveinverteddoublecmb=865,e.bridgebelowcmb=810,e.bridgeinvertedbelowcmb=826,e.brokenbar=166,e.bstroke=384,e.bsuperior=63210,e.btopbar=387,e.buhiragana=12406,e.bukatakana=12502,e.bullet=8226,e.bulletinverse=9688,e.bulletoperator=8729,e.bullseye=9678,e.c=99,e.caarmenian=1390,e.cabengali=2458,e.cacute=263,e.cadeva=2330,e.cagujarati=2714,e.cagurmukhi=2586,e.calsquare=13192,e.candrabindubengali=2433,e.candrabinducmb=784,e.candrabindudeva=2305,e.candrabindugujarati=2689,e.capslock=8682,e.careof=8453,e.caron=711,e.caronbelowcmb=812,e.caroncmb=780,e.carriagereturn=8629,e.cbopomofo=12568,e.ccaron=269,e.ccedilla=231,e.ccedillaacute=7689,e.ccircle=9426,e.ccircumflex=265,e.ccurl=597,e.cdot=267,e.cdotaccent=267,e.cdsquare=13253,e.cedilla=184,e.cedillacmb=807,e.cent=162,e.centigrade=8451,e.centinferior=63199,e.centmonospace=65504,e.centoldstyle=63394,e.centsuperior=63200,e.chaarmenian=1401,e.chabengali=2459,e.chadeva=2331,e.chagujarati=2715,e.chagurmukhi=2587,e.chbopomofo=12564,e.cheabkhasiancyrillic=1213,e.checkmark=10003,e.checyrillic=1095,e.chedescenderabkhasiancyrillic=1215,e.chedescendercyrillic=1207,e.chedieresiscyrillic=1269,e.cheharmenian=1395,e.chekhakassiancyrillic=1228,e.cheverticalstrokecyrillic=1209,e.chi=967,e.chieuchacirclekorean=12919,e.chieuchaparenkorean=12823,e.chieuchcirclekorean=12905,e.chieuchkorean=12618,e.chieuchparenkorean=12809,e.chochangthai=3594,e.chochanthai=3592,e.chochingthai=3593,e.chochoethai=3596,e.chook=392,e.cieucacirclekorean=12918,e.cieucaparenkorean=12822,e.cieuccirclekorean=12904,e.cieuckorean=12616,e.cieucparenkorean=12808,e.cieucuparenkorean=12828,e.circle=9675,e.circlecopyrt=169,e.circlemultiply=8855,e.circleot=8857,e.circleplus=8853,e.circlepostalmark=12342,e.circlewithlefthalfblack=9680,e.circlewithrighthalfblack=9681,e.circumflex=710,e.circumflexbelowcmb=813,e.circumflexcmb=770,e.clear=8999,e.clickalveolar=450,e.clickdental=448,e.clicklateral=449,e.clickretroflex=451,e.club=9827,e.clubsuitblack=9827,e.clubsuitwhite=9831,e.cmcubedsquare=13220,e.cmonospace=65347,e.cmsquaredsquare=13216,e.coarmenian=1409,e.colon=58,e.colonmonetary=8353,e.colonmonospace=65306,e.colonsign=8353,e.colonsmall=65109,e.colontriangularhalfmod=721,e.colontriangularmod=720,e.comma=44,e.commaabovecmb=787,e.commaaboverightcmb=789,e.commaaccent=63171,e.commaarabic=1548,e.commaarmenian=1373,e.commainferior=63201,e.commamonospace=65292,e.commareversedabovecmb=788,e.commareversedmod=701,e.commasmall=65104,e.commasuperior=63202,e.commaturnedabovecmb=786,e.commaturnedmod=699,e.compass=9788,e.congruent=8773,e.contourintegral=8750,e.control=8963,e.controlACK=6,e.controlBEL=7,e.controlBS=8,e.controlCAN=24,e.controlCR=13,e.controlDC1=17,e.controlDC2=18,e.controlDC3=19,e.controlDC4=20,e.controlDEL=127,e.controlDLE=16,e.controlEM=25,e.controlENQ=5,e.controlEOT=4,e.controlESC=27,e.controlETB=23,e.controlETX=3,e.controlFF=12,e.controlFS=28,e.controlGS=29,e.controlHT=9,e.controlLF=10,e.controlNAK=21,e.controlNULL=0,e.controlRS=30,e.controlSI=15,e.controlSO=14,e.controlSOT=2,e.controlSTX=1,e.controlSUB=26,e.controlSYN=22,e.controlUS=31,e.controlVT=11,e.copyright=169,e.copyrightsans=63721,e.copyrightserif=63193,e.cornerbracketleft=12300,e.cornerbracketlefthalfwidth=65378,e.cornerbracketleftvertical=65089,e.cornerbracketright=12301,e.cornerbracketrighthalfwidth=65379,e.cornerbracketrightvertical=65090,e.corporationsquare=13183,e.cosquare=13255,e.coverkgsquare=13254,e.cparen=9374,e.cruzeiro=8354,e.cstretched=663,e.curlyand=8911,e.curlyor=8910,e.currency=164,e.cyrBreve=63185,e.cyrFlex=63186,e.cyrbreve=63188,e.cyrflex=63189,e.d=100,e.daarmenian=1380,e.dabengali=2470,e.dadarabic=1590,e.dadeva=2342,e.dadfinalarabic=65214,e.dadinitialarabic=65215,e.dadmedialarabic=65216,e.dagesh=1468,e.dageshhebrew=1468,e.dagger=8224,e.daggerdbl=8225,e.dagujarati=2726,e.dagurmukhi=2598,e.dahiragana=12384,e.dakatakana=12480,e.dalarabic=1583,e.dalet=1491,e.daletdagesh=64307,e.daletdageshhebrew=64307,e.dalethebrew=1491,e.dalfinalarabic=65194,e.dammaarabic=1615,e.dammalowarabic=1615,e.dammatanaltonearabic=1612,e.dammatanarabic=1612,e.danda=2404,e.dargahebrew=1447,e.dargalefthebrew=1447,e.dasiapneumatacyrilliccmb=1157,e.dblGrave=63187,e.dblanglebracketleft=12298,e.dblanglebracketleftvertical=65085,e.dblanglebracketright=12299,e.dblanglebracketrightvertical=65086,e.dblarchinvertedbelowcmb=811,e.dblarrowleft=8660,e.dblarrowright=8658,e.dbldanda=2405,e.dblgrave=63190,e.dblgravecmb=783,e.dblintegral=8748,e.dbllowline=8215,e.dbllowlinecmb=819,e.dbloverlinecmb=831,e.dblprimemod=698,e.dblverticalbar=8214,e.dblverticallineabovecmb=782,e.dbopomofo=12553,e.dbsquare=13256,e.dcaron=271,e.dcedilla=7697,e.dcircle=9427,e.dcircumflexbelow=7699,e.dcroat=273,e.ddabengali=2465,e.ddadeva=2337,e.ddagujarati=2721,e.ddagurmukhi=2593,e.ddalarabic=1672,e.ddalfinalarabic=64393,e.dddhadeva=2396,e.ddhabengali=2466,e.ddhadeva=2338,e.ddhagujarati=2722,e.ddhagurmukhi=2594,e.ddotaccent=7691,e.ddotbelow=7693,e.decimalseparatorarabic=1643,e.decimalseparatorpersian=1643,e.decyrillic=1076,e.degree=176,e.dehihebrew=1453,e.dehiragana=12391,e.deicoptic=1007,e.dekatakana=12487,e.deleteleft=9003,e.deleteright=8998,e.delta=948,e.deltaturned=397,e.denominatorminusonenumeratorbengali=2552,e.dezh=676,e.dhabengali=2471,e.dhadeva=2343,e.dhagujarati=2727,e.dhagurmukhi=2599,e.dhook=599,e.dialytikatonos=901,e.dialytikatonoscmb=836,e.diamond=9830,e.diamondsuitwhite=9826,e.dieresis=168,e.dieresisacute=63191,e.dieresisbelowcmb=804,e.dieresiscmb=776,e.dieresisgrave=63192,e.dieresistonos=901,e.dihiragana=12386,e.dikatakana=12482,e.dittomark=12291,e.divide=247,e.divides=8739,e.divisionslash=8725,e.djecyrillic=1106,e.dkshade=9619,e.dlinebelow=7695,e.dlsquare=13207,e.dmacron=273,e.dmonospace=65348,e.dnblock=9604,e.dochadathai=3598,e.dodekthai=3604,e.dohiragana=12393,e.dokatakana=12489,e.dollar=36;e.dollarinferior=63203,e.dollarmonospace=65284,e.dollaroldstyle=63268,e.dollarsmall=65129,e.dollarsuperior=63204,e.dong=8363,e.dorusquare=13094,e.dotaccent=729,e.dotaccentcmb=775,e.dotbelowcmb=803,e.dotbelowcomb=803,e.dotkatakana=12539,e.dotlessi=305,e.dotlessj=63166,e.dotlessjstrokehook=644,e.dotmath=8901,e.dottedcircle=9676,e.doubleyodpatah=64287,e.doubleyodpatahhebrew=64287,e.downtackbelowcmb=798,e.downtackmod=725,e.dparen=9375,e.dsuperior=63211,e.dtail=598,e.dtopbar=396,e.duhiragana=12389,e.dukatakana=12485,e.dz=499,e.dzaltone=675,e.dzcaron=454,e.dzcurl=677,e.dzeabkhasiancyrillic=1249,e.dzecyrillic=1109,e.dzhecyrillic=1119,e.e=101,e.eacute=233,e.earth=9793,e.ebengali=2447,e.ebopomofo=12572,e.ebreve=277,e.ecandradeva=2317,e.ecandragujarati=2701,e.ecandravowelsigndeva=2373,e.ecandravowelsigngujarati=2757,e.ecaron=283,e.ecedillabreve=7709,e.echarmenian=1381,e.echyiwnarmenian=1415,e.ecircle=9428,e.ecircumflex=234,e.ecircumflexacute=7871,e.ecircumflexbelow=7705,e.ecircumflexdotbelow=7879,e.ecircumflexgrave=7873,e.ecircumflexhookabove=7875,e.ecircumflextilde=7877,e.ecyrillic=1108,e.edblgrave=517,e.edeva=2319,e.edieresis=235,e.edot=279,e.edotaccent=279,e.edotbelow=7865,e.eegurmukhi=2575,e.eematragurmukhi=2631,e.efcyrillic=1092,e.egrave=232,e.egujarati=2703,e.eharmenian=1383,e.ehbopomofo=12573,e.ehiragana=12360,e.ehookabove=7867,e.eibopomofo=12575,e.eight=56,e.eightarabic=1640,e.eightbengali=2542,e.eightcircle=9319,e.eightcircleinversesansserif=10129,e.eightdeva=2414,e.eighteencircle=9329,e.eighteenparen=9349,e.eighteenperiod=9369,e.eightgujarati=2798,e.eightgurmukhi=2670,e.eighthackarabic=1640,e.eighthangzhou=12328,e.eighthnotebeamed=9835,e.eightideographicparen=12839,e.eightinferior=8328,e.eightmonospace=65304,e.eightoldstyle=63288,e.eightparen=9339,e.eightperiod=9359,e.eightpersian=1784,e.eightroman=8567,e.eightsuperior=8312,e.eightthai=3672,e.einvertedbreve=519,e.eiotifiedcyrillic=1125,e.ekatakana=12456,e.ekatakanahalfwidth=65396,e.ekonkargurmukhi=2676,e.ekorean=12628,e.elcyrillic=1083,e.element=8712,e.elevencircle=9322,e.elevenparen=9342,e.elevenperiod=9362,e.elevenroman=8570,e.ellipsis=8230,e.ellipsisvertical=8942,e.emacron=275,e.emacronacute=7703,e.emacrongrave=7701,e.emcyrillic=1084,e.emdash=8212,e.emdashvertical=65073,e.emonospace=65349,e.emphasismarkarmenian=1371,e.emptyset=8709,e.enbopomofo=12579,e.encyrillic=1085,e.endash=8211,e.endashvertical=65074,e.endescendercyrillic=1187,e.eng=331,e.engbopomofo=12581,e.enghecyrillic=1189,e.enhookcyrillic=1224,e.enspace=8194,e.eogonek=281,e.eokorean=12627,e.eopen=603,e.eopenclosed=666,e.eopenreversed=604,e.eopenreversedclosed=606,e.eopenreversedhook=605,e.eparen=9376,e.epsilon=949,e.epsilontonos=941,e.equal=61,e.equalmonospace=65309,e.equalsmall=65126,e.equalsuperior=8316,e.equivalence=8801,e.erbopomofo=12582,e.ercyrillic=1088,e.ereversed=600,e.ereversedcyrillic=1101,e.escyrillic=1089,e.esdescendercyrillic=1195,e.esh=643,e.eshcurl=646,e.eshortdeva=2318,e.eshortvowelsigndeva=2374,e.eshreversedloop=426,e.eshsquatreversed=645,e.esmallhiragana=12359,e.esmallkatakana=12455,e.esmallkatakanahalfwidth=65386,e.estimated=8494,e.esuperior=63212,e.eta=951,e.etarmenian=1384,e.etatonos=942,e.eth=240,e.etilde=7869,e.etildebelow=7707,e.etnahtafoukhhebrew=1425,e.etnahtafoukhlefthebrew=1425,e.etnahtahebrew=1425,e.etnahtalefthebrew=1425,e.eturned=477,e.eukorean=12641,e.euro=8364,e.evowelsignbengali=2503,e.evowelsigndeva=2375,e.evowelsigngujarati=2759,e.exclam=33,e.exclamarmenian=1372,e.exclamdbl=8252,e.exclamdown=161,e.exclamdownsmall=63393,e.exclammonospace=65281,e.exclamsmall=63265,e.existential=8707,e.ezh=658,e.ezhcaron=495,e.ezhcurl=659,e.ezhreversed=441,e.ezhtail=442,e.f=102,e.fadeva=2398,e.fagurmukhi=2654,e.fahrenheit=8457,e.fathaarabic=1614,e.fathalowarabic=1614,e.fathatanarabic=1611,e.fbopomofo=12552,e.fcircle=9429,e.fdotaccent=7711,e.feharabic=1601,e.feharmenian=1414,e.fehfinalarabic=65234,e.fehinitialarabic=65235,e.fehmedialarabic=65236,e.feicoptic=997,e.female=9792,e.ff=64256,e.f_f=64256,e.ffi=64259,e.ffl=64260,e.fi=64257,e.fifteencircle=9326,e.fifteenparen=9346,e.fifteenperiod=9366,e.figuredash=8210,e.filledbox=9632,e.filledrect=9644,e.finalkaf=1498,e.finalkafdagesh=64314,e.finalkafdageshhebrew=64314,e.finalkafhebrew=1498,e.finalmem=1501,e.finalmemhebrew=1501,e.finalnun=1503,e.finalnunhebrew=1503,e.finalpe=1507,e.finalpehebrew=1507,e.finaltsadi=1509,e.finaltsadihebrew=1509,e.firsttonechinese=713,e.fisheye=9673,e.fitacyrillic=1139,e.five=53,e.fivearabic=1637,e.fivebengali=2539,e.fivecircle=9316,e.fivecircleinversesansserif=10126,e.fivedeva=2411,e.fiveeighths=8541,e.fivegujarati=2795,e.fivegurmukhi=2667,e.fivehackarabic=1637,e.fivehangzhou=12325,e.fiveideographicparen=12836,e.fiveinferior=8325,e.fivemonospace=65301,e.fiveoldstyle=63285,e.fiveparen=9336,e.fiveperiod=9356,e.fivepersian=1781,e.fiveroman=8564,e.fivesuperior=8309,e.fivethai=3669,e.fl=64258,e.florin=402,e.fmonospace=65350,e.fmsquare=13209,e.fofanthai=3615,e.fofathai=3613,e.fongmanthai=3663,e.forall=8704,e.four=52,e.fourarabic=1636,e.fourbengali=2538,e.fourcircle=9315,e.fourcircleinversesansserif=10125,e.fourdeva=2410,e.fourgujarati=2794,e.fourgurmukhi=2666,e.fourhackarabic=1636,e.fourhangzhou=12324,e.fourideographicparen=12835,e.fourinferior=8324,e.fourmonospace=65300,e.fournumeratorbengali=2551,e.fouroldstyle=63284,e.fourparen=9335,e.fourperiod=9355,e.fourpersian=1780,e.fourroman=8563,e.foursuperior=8308,e.fourteencircle=9325,e.fourteenparen=9345,e.fourteenperiod=9365,e.fourthai=3668,e.fourthtonechinese=715,e.fparen=9377,e.fraction=8260,e.franc=8355,e.g=103,e.gabengali=2455,e.gacute=501,e.gadeva=2327,e.gafarabic=1711,e.gaffinalarabic=64403,e.gafinitialarabic=64404,e.gafmedialarabic=64405,e.gagujarati=2711,e.gagurmukhi=2583,e.gahiragana=12364,e.gakatakana=12460,e.gamma=947,e.gammalatinsmall=611,e.gammasuperior=736,e.gangiacoptic=1003,e.gbopomofo=12557,e.gbreve=287,e.gcaron=487,e.gcedilla=291,e.gcircle=9430,e.gcircumflex=285,e.gcommaaccent=291,e.gdot=289,e.gdotaccent=289,e.gecyrillic=1075,e.gehiragana=12370,e.gekatakana=12466,e.geometricallyequal=8785,e.gereshaccenthebrew=1436,e.gereshhebrew=1523,e.gereshmuqdamhebrew=1437,e.germandbls=223,e.gershayimaccenthebrew=1438,e.gershayimhebrew=1524,e.getamark=12307,e.ghabengali=2456,e.ghadarmenian=1394,e.ghadeva=2328,e.ghagujarati=2712,e.ghagurmukhi=2584,e.ghainarabic=1594,e.ghainfinalarabic=65230,e.ghaininitialarabic=65231,e.ghainmedialarabic=65232,e.ghemiddlehookcyrillic=1173,e.ghestrokecyrillic=1171,e.gheupturncyrillic=1169,e.ghhadeva=2394,e.ghhagurmukhi=2650,e.ghook=608,e.ghzsquare=13203,e.gihiragana=12366,e.gikatakana=12462,e.gimarmenian=1379,e.gimel=1490,e.gimeldagesh=64306,e.gimeldageshhebrew=64306,e.gimelhebrew=1490,e.gjecyrillic=1107,e.glottalinvertedstroke=446,e.glottalstop=660,e.glottalstopinverted=662,e.glottalstopmod=704,e.glottalstopreversed=661,e.glottalstopreversedmod=705,e.glottalstopreversedsuperior=740,e.glottalstopstroke=673,e.glottalstopstrokereversed=674,e.gmacron=7713,e.gmonospace=65351,e.gohiragana=12372,e.gokatakana=12468,e.gparen=9378,e.gpasquare=13228,e.gradient=8711,e.grave=96,e.gravebelowcmb=790,e.gravecmb=768,e.gravecomb=768,e.gravedeva=2387,e.gravelowmod=718,e.gravemonospace=65344,e.gravetonecmb=832,e.greater=62,e.greaterequal=8805,e.greaterequalorless=8923,e.greatermonospace=65310,e.greaterorequivalent=8819,e.greaterorless=8823,e.greateroverequal=8807,e.greatersmall=65125,e.gscript=609,e.gstroke=485,e.guhiragana=12368,e.guillemotleft=171,e.guillemotright=187,e.guilsinglleft=8249,e.guilsinglright=8250,e.gukatakana=12464,e.guramusquare=13080,e.gysquare=13257,e.h=104,e.haabkhasiancyrillic=1193,e.haaltonearabic=1729,e.habengali=2489,e.hadescendercyrillic=1203,e.hadeva=2361,e.hagujarati=2745,e.hagurmukhi=2617,e.haharabic=1581,e.hahfinalarabic=65186,e.hahinitialarabic=65187,e.hahiragana=12399,e.hahmedialarabic=65188,e.haitusquare=13098,e.hakatakana=12495,e.hakatakanahalfwidth=65418,e.halantgurmukhi=2637,e.hamzaarabic=1569,e.hamzalowarabic=1569,e.hangulfiller=12644,e.hardsigncyrillic=1098,e.harpoonleftbarbup=8636,e.harpoonrightbarbup=8640,e.hasquare=13258,e.hatafpatah=1458,e.hatafpatah16=1458,e.hatafpatah23=1458,e.hatafpatah2f=1458,e.hatafpatahhebrew=1458,e.hatafpatahnarrowhebrew=1458,e.hatafpatahquarterhebrew=1458,e.hatafpatahwidehebrew=1458,e.hatafqamats=1459,e.hatafqamats1b=1459,e.hatafqamats28=1459,e.hatafqamats34=1459,e.hatafqamatshebrew=1459,e.hatafqamatsnarrowhebrew=1459,e.hatafqamatsquarterhebrew=1459,e.hatafqamatswidehebrew=1459,e.hatafsegol=1457,e.hatafsegol17=1457,e.hatafsegol24=1457,e.hatafsegol30=1457,e.hatafsegolhebrew=1457,e.hatafsegolnarrowhebrew=1457,e.hatafsegolquarterhebrew=1457,e.hatafsegolwidehebrew=1457,e.hbar=295,e.hbopomofo=12559,e.hbrevebelow=7723,e.hcedilla=7721,e.hcircle=9431,e.hcircumflex=293,e.hdieresis=7719,e.hdotaccent=7715,e.hdotbelow=7717,e.he=1492,e.heart=9829,e.heartsuitblack=9829,e.heartsuitwhite=9825,e.hedagesh=64308,e.hedageshhebrew=64308,e.hehaltonearabic=1729,e.heharabic=1607,e.hehebrew=1492,e.hehfinalaltonearabic=64423,e.hehfinalalttwoarabic=65258,e.hehfinalarabic=65258,e.hehhamzaabovefinalarabic=64421,e.hehhamzaaboveisolatedarabic=64420,e.hehinitialaltonearabic=64424,e.hehinitialarabic=65259,e.hehiragana=12408,e.hehmedialaltonearabic=64425,e.hehmedialarabic=65260,e.heiseierasquare=13179,e.hekatakana=12504,e.hekatakanahalfwidth=65421,e.hekutaarusquare=13110,e.henghook=615,e.herutusquare=13113,e.het=1495,e.hethebrew=1495,e.hhook=614,e.hhooksuperior=689,e.hieuhacirclekorean=12923,e.hieuhaparenkorean=12827,e.hieuhcirclekorean=12909,e.hieuhkorean=12622,e.hieuhparenkorean=12813,e.hihiragana=12402,e.hikatakana=12498,e.hikatakanahalfwidth=65419,e.hiriq=1460,e.hiriq14=1460,e.hiriq21=1460,e.hiriq2d=1460,e.hiriqhebrew=1460,e.hiriqnarrowhebrew=1460,e.hiriqquarterhebrew=1460,e.hiriqwidehebrew=1460,e.hlinebelow=7830,e.hmonospace=65352,e.hoarmenian=1392,e.hohipthai=3627,e.hohiragana=12411,e.hokatakana=12507,e.hokatakanahalfwidth=65422,e.holam=1465,e.holam19=1465,e.holam26=1465,e.holam32=1465,e.holamhebrew=1465,e.holamnarrowhebrew=1465,e.holamquarterhebrew=1465,e.holamwidehebrew=1465,e.honokhukthai=3630,e.hookabovecomb=777,e.hookcmb=777,e.hookpalatalizedbelowcmb=801,e.hookretroflexbelowcmb=802,e.hoonsquare=13122,e.horicoptic=1001,e.horizontalbar=8213,e.horncmb=795,e.hotsprings=9832,e.house=8962,e.hparen=9379,e.hsuperior=688,e.hturned=613,e.huhiragana=12405,e.huiitosquare=13107,e.hukatakana=12501,e.hukatakanahalfwidth=65420,e.hungarumlaut=733,e.hungarumlautcmb=779,e.hv=405,e.hyphen=45,e.hypheninferior=63205,e.hyphenmonospace=65293,e.hyphensmall=65123,e.hyphensuperior=63206,e.hyphentwo=8208,e.i=105,e.iacute=237,e.iacyrillic=1103,e.ibengali=2439,e.ibopomofo=12583,e.ibreve=301,e.icaron=464,e.icircle=9432,e.icircumflex=238,e.icyrillic=1110,e.idblgrave=521,e.ideographearthcircle=12943,e.ideographfirecircle=12939,e.ideographicallianceparen=12863,e.ideographiccallparen=12858,e.ideographiccentrecircle=12965,e.ideographicclose=12294,e.ideographiccomma=12289,e.ideographiccommaleft=65380,e.ideographiccongratulationparen=12855,e.ideographiccorrectcircle=12963,e.ideographicearthparen=12847,e.ideographicenterpriseparen=12861,e.ideographicexcellentcircle=12957,e.ideographicfestivalparen=12864,e.ideographicfinancialcircle=12950,e.ideographicfinancialparen=12854,e.ideographicfireparen=12843,e.ideographichaveparen=12850,e.ideographichighcircle=12964,e.ideographiciterationmark=12293,e.ideographiclaborcircle=12952,e.ideographiclaborparen=12856,e.ideographicleftcircle=12967,e.ideographiclowcircle=12966,e.ideographicmedicinecircle=12969,e.ideographicmetalparen=12846,e.ideographicmoonparen=12842,e.ideographicnameparen=12852,e.ideographicperiod=12290,e.ideographicprintcircle=12958,e.ideographicreachparen=12867,e.ideographicrepresentparen=12857,e.ideographicresourceparen=12862,e.ideographicrightcircle=12968,e.ideographicsecretcircle=12953,e.ideographicselfparen=12866,e.ideographicsocietyparen=12851,e.ideographicspace=12288,e.ideographicspecialparen=12853,e.ideographicstockparen=12849,e.ideographicstudyparen=12859,e.ideographicsunparen=12848,e.ideographicsuperviseparen=12860,e.ideographicwaterparen=12844,e.ideographicwoodparen=12845,e.ideographiczero=12295,e.ideographmetalcircle=12942,e.ideographmooncircle=12938,e.ideographnamecircle=12948,e.ideographsuncircle=12944,e.ideographwatercircle=12940,e.ideographwoodcircle=12941,e.ideva=2311,e.idieresis=239,e.idieresisacute=7727,e.idieresiscyrillic=1253,e.idotbelow=7883,e.iebrevecyrillic=1239,e.iecyrillic=1077,e.ieungacirclekorean=12917,e.ieungaparenkorean=12821,e.ieungcirclekorean=12903,e.ieungkorean=12615,e.ieungparenkorean=12807,e.igrave=236,e.igujarati=2695,e.igurmukhi=2567,e.ihiragana=12356,e.ihookabove=7881,e.iibengali=2440,e.iicyrillic=1080,e.iideva=2312,e.iigujarati=2696,e.iigurmukhi=2568,e.iimatragurmukhi=2624,e.iinvertedbreve=523,e.iishortcyrillic=1081,e.iivowelsignbengali=2496,e.iivowelsigndeva=2368,e.iivowelsigngujarati=2752,e.ij=307,e.ikatakana=12452,e.ikatakanahalfwidth=65394,e.ikorean=12643,e.ilde=732,e.iluyhebrew=1452,e.imacron=299,e.imacroncyrillic=1251,e.imageorapproximatelyequal=8787,e.imatragurmukhi=2623,e.imonospace=65353,e.increment=8710,e.infinity=8734,e.iniarmenian=1387,e.integral=8747,e.integralbottom=8993,e.integralbt=8993,e.integralex=63733,e.integraltop=8992,e.integraltp=8992,e.intersection=8745,e.intisquare=13061,e.invbullet=9688,e.invcircle=9689,e.invsmileface=9787,e.iocyrillic=1105,e.iogonek=303,e.iota=953,e.iotadieresis=970,e.iotadieresistonos=912,e.iotalatin=617,e.iotatonos=943,e.iparen=9380,e.irigurmukhi=2674,e.ismallhiragana=12355,e.ismallkatakana=12451,e.ismallkatakanahalfwidth=65384,e.issharbengali=2554,e.istroke=616,e.isuperior=63213,e.iterationhiragana=12445,e.iterationkatakana=12541,e.itilde=297,e.itildebelow=7725,e.iubopomofo=12585,e.iucyrillic=1102,e.ivowelsignbengali=2495,e.ivowelsigndeva=2367,e.ivowelsigngujarati=2751,e.izhitsacyrillic=1141,e.izhitsadblgravecyrillic=1143,e.j=106,e.jaarmenian=1393,e.jabengali=2460,e.jadeva=2332,e.jagujarati=2716,e.jagurmukhi=2588,e.jbopomofo=12560,e.jcaron=496,e.jcircle=9433,e.jcircumflex=309,e.jcrossedtail=669,e.jdotlessstroke=607,e.jecyrillic=1112,e.jeemarabic=1580,e.jeemfinalarabic=65182,e.jeeminitialarabic=65183,e.jeemmedialarabic=65184,e.jeharabic=1688,e.jehfinalarabic=64395,e.jhabengali=2461,e.jhadeva=2333,e.jhagujarati=2717,e.jhagurmukhi=2589,e.jheharmenian=1403,e.jis=12292,e.jmonospace=65354,e.jparen=9381,e.jsuperior=690,e.k=107,e.kabashkircyrillic=1185,e.kabengali=2453,e.kacute=7729,e.kacyrillic=1082,e.kadescendercyrillic=1179,e.kadeva=2325,e.kaf=1499,e.kafarabic=1603,e.kafdagesh=64315,e.kafdageshhebrew=64315,e.kaffinalarabic=65242,e.kafhebrew=1499,e.kafinitialarabic=65243,e.kafmedialarabic=65244,e.kafrafehebrew=64333,e.kagujarati=2709,e.kagurmukhi=2581,e.kahiragana=12363,e.kahookcyrillic=1220,e.kakatakana=12459,e.kakatakanahalfwidth=65398,e.kappa=954,e.kappasymbolgreek=1008,e.kapyeounmieumkorean=12657,e.kapyeounphieuphkorean=12676,e.kapyeounpieupkorean=12664,e.kapyeounssangpieupkorean=12665,e.karoriisquare=13069,e.kashidaautoarabic=1600,e.kashidaautonosidebearingarabic=1600,e.kasmallkatakana=12533,e.kasquare=13188,e.kasraarabic=1616,e.kasratanarabic=1613,e.kastrokecyrillic=1183,e.katahiraprolongmarkhalfwidth=65392,e.kaverticalstrokecyrillic=1181,e.kbopomofo=12558,e.kcalsquare=13193,e.kcaron=489,e.kcedilla=311,e.kcircle=9434,e.kcommaaccent=311,e.kdotbelow=7731,e.keharmenian=1412,e.kehiragana=12369,e.kekatakana=12465,e.kekatakanahalfwidth=65401,e.kenarmenian=1391,e.kesmallkatakana=12534,e.kgreenlandic=312,e.khabengali=2454,e.khacyrillic=1093,e.khadeva=2326,e.khagujarati=2710,e.khagurmukhi=2582,e.khaharabic=1582,e.khahfinalarabic=65190,e.khahinitialarabic=65191,e.khahmedialarabic=65192,e.kheicoptic=999,e.khhadeva=2393,e.khhagurmukhi=2649,e.khieukhacirclekorean=12920,e.khieukhaparenkorean=12824,e.khieukhcirclekorean=12906,e.khieukhkorean=12619,e.khieukhparenkorean=12810,e.khokhaithai=3586,e.khokhonthai=3589,e.khokhuatthai=3587,e.khokhwaithai=3588,e.khomutthai=3675,e.khook=409,e.khorakhangthai=3590,e.khzsquare=13201,e.kihiragana=12365,e.kikatakana=12461,e.kikatakanahalfwidth=65399,e.kiroguramusquare=13077,e.kiromeetorusquare=13078,e.kirosquare=13076,e.kiyeokacirclekorean=12910,e.kiyeokaparenkorean=12814,e.kiyeokcirclekorean=12896,e.kiyeokkorean=12593,e.kiyeokparenkorean=12800,e.kiyeoksioskorean=12595,e.kjecyrillic=1116,e.klinebelow=7733,e.klsquare=13208,e.kmcubedsquare=13222;e.kmonospace=65355,e.kmsquaredsquare=13218,e.kohiragana=12371,e.kohmsquare=13248,e.kokaithai=3585,e.kokatakana=12467,e.kokatakanahalfwidth=65402,e.kooposquare=13086,e.koppacyrillic=1153,e.koreanstandardsymbol=12927,e.koroniscmb=835,e.kparen=9382,e.kpasquare=13226,e.ksicyrillic=1135,e.ktsquare=13263,e.kturned=670,e.kuhiragana=12367,e.kukatakana=12463,e.kukatakanahalfwidth=65400,e.kvsquare=13240,e.kwsquare=13246,e.l=108,e.labengali=2482,e.lacute=314,e.ladeva=2354,e.lagujarati=2738,e.lagurmukhi=2610,e.lakkhangyaothai=3653,e.lamaleffinalarabic=65276,e.lamalefhamzaabovefinalarabic=65272,e.lamalefhamzaaboveisolatedarabic=65271,e.lamalefhamzabelowfinalarabic=65274,e.lamalefhamzabelowisolatedarabic=65273,e.lamalefisolatedarabic=65275,e.lamalefmaddaabovefinalarabic=65270,e.lamalefmaddaaboveisolatedarabic=65269,e.lamarabic=1604,e.lambda=955,e.lambdastroke=411,e.lamed=1500,e.lameddagesh=64316,e.lameddageshhebrew=64316,e.lamedhebrew=1500,e.lamfinalarabic=65246,e.lamhahinitialarabic=64714,e.laminitialarabic=65247,e.lamjeeminitialarabic=64713,e.lamkhahinitialarabic=64715,e.lamlamhehisolatedarabic=65010,e.lammedialarabic=65248,e.lammeemhahinitialarabic=64904,e.lammeeminitialarabic=64716,e.largecircle=9711,e.lbar=410,e.lbelt=620,e.lbopomofo=12556,e.lcaron=318,e.lcedilla=316,e.lcircle=9435,e.lcircumflexbelow=7741,e.lcommaaccent=316,e.ldot=320,e.ldotaccent=320,e.ldotbelow=7735,e.ldotbelowmacron=7737,e.leftangleabovecmb=794,e.lefttackbelowcmb=792,e.less=60,e.lessequal=8804,e.lessequalorgreater=8922,e.lessmonospace=65308,e.lessorequivalent=8818,e.lessorgreater=8822,e.lessoverequal=8806,e.lesssmall=65124,e.lezh=622,e.lfblock=9612,e.lhookretroflex=621,e.lira=8356,e.liwnarmenian=1388,e.lj=457,e.ljecyrillic=1113,e.ll=63168,e.lladeva=2355,e.llagujarati=2739,e.llinebelow=7739,e.llladeva=2356,e.llvocalicbengali=2529,e.llvocalicdeva=2401,e.llvocalicvowelsignbengali=2531,e.llvocalicvowelsigndeva=2403,e.lmiddletilde=619,e.lmonospace=65356,e.lmsquare=13264,e.lochulathai=3628,e.logicaland=8743,e.logicalnot=172,e.logicalnotreversed=8976,e.logicalor=8744,e.lolingthai=3621,e.longs=383,e.lowlinecenterline=65102,e.lowlinecmb=818,e.lowlinedashed=65101,e.lozenge=9674,e.lparen=9383,e.lslash=322,e.lsquare=8467,e.lsuperior=63214,e.ltshade=9617,e.luthai=3622,e.lvocalicbengali=2444,e.lvocalicdeva=2316,e.lvocalicvowelsignbengali=2530,e.lvocalicvowelsigndeva=2402,e.lxsquare=13267,e.m=109,e.mabengali=2478,e.macron=175,e.macronbelowcmb=817,e.macroncmb=772,e.macronlowmod=717,e.macronmonospace=65507,e.macute=7743,e.madeva=2350,e.magujarati=2734,e.magurmukhi=2606,e.mahapakhhebrew=1444,e.mahapakhlefthebrew=1444,e.mahiragana=12414,e.maichattawalowleftthai=63637,e.maichattawalowrightthai=63636,e.maichattawathai=3659,e.maichattawaupperleftthai=63635,e.maieklowleftthai=63628,e.maieklowrightthai=63627,e.maiekthai=3656,e.maiekupperleftthai=63626,e.maihanakatleftthai=63620,e.maihanakatthai=3633,e.maitaikhuleftthai=63625,e.maitaikhuthai=3655,e.maitholowleftthai=63631,e.maitholowrightthai=63630,e.maithothai=3657,e.maithoupperleftthai=63629,e.maitrilowleftthai=63634,e.maitrilowrightthai=63633,e.maitrithai=3658,e.maitriupperleftthai=63632,e.maiyamokthai=3654,e.makatakana=12510,e.makatakanahalfwidth=65423,e.male=9794,e.mansyonsquare=13127,e.maqafhebrew=1470,e.mars=9794,e.masoracirclehebrew=1455,e.masquare=13187,e.mbopomofo=12551,e.mbsquare=13268,e.mcircle=9436,e.mcubedsquare=13221,e.mdotaccent=7745,e.mdotbelow=7747,e.meemarabic=1605,e.meemfinalarabic=65250,e.meeminitialarabic=65251,e.meemmedialarabic=65252,e.meemmeeminitialarabic=64721,e.meemmeemisolatedarabic=64584,e.meetorusquare=13133,e.mehiragana=12417,e.meizierasquare=13182,e.mekatakana=12513,e.mekatakanahalfwidth=65426,e.mem=1502,e.memdagesh=64318,e.memdageshhebrew=64318,e.memhebrew=1502,e.menarmenian=1396,e.merkhahebrew=1445,e.merkhakefulahebrew=1446,e.merkhakefulalefthebrew=1446,e.merkhalefthebrew=1445,e.mhook=625,e.mhzsquare=13202,e.middledotkatakanahalfwidth=65381,e.middot=183,e.mieumacirclekorean=12914,e.mieumaparenkorean=12818,e.mieumcirclekorean=12900,e.mieumkorean=12609,e.mieumpansioskorean=12656,e.mieumparenkorean=12804,e.mieumpieupkorean=12654,e.mieumsioskorean=12655,e.mihiragana=12415,e.mikatakana=12511,e.mikatakanahalfwidth=65424,e.minus=8722,e.minusbelowcmb=800,e.minuscircle=8854,e.minusmod=727,e.minusplus=8723,e.minute=8242,e.miribaarusquare=13130,e.mirisquare=13129,e.mlonglegturned=624,e.mlsquare=13206,e.mmcubedsquare=13219,e.mmonospace=65357,e.mmsquaredsquare=13215,e.mohiragana=12418,e.mohmsquare=13249,e.mokatakana=12514,e.mokatakanahalfwidth=65427,e.molsquare=13270,e.momathai=3617,e.moverssquare=13223,e.moverssquaredsquare=13224,e.mparen=9384,e.mpasquare=13227,e.mssquare=13235,e.msuperior=63215,e.mturned=623,e.mu=181,e.mu1=181,e.muasquare=13186,e.muchgreater=8811,e.muchless=8810,e.mufsquare=13196,e.mugreek=956,e.mugsquare=13197,e.muhiragana=12416,e.mukatakana=12512,e.mukatakanahalfwidth=65425,e.mulsquare=13205,e.multiply=215,e.mumsquare=13211,e.munahhebrew=1443,e.munahlefthebrew=1443,e.musicalnote=9834,e.musicalnotedbl=9835,e.musicflatsign=9837,e.musicsharpsign=9839,e.mussquare=13234,e.muvsquare=13238,e.muwsquare=13244,e.mvmegasquare=13241,e.mvsquare=13239,e.mwmegasquare=13247,e.mwsquare=13245,e.n=110,e.nabengali=2472,e.nabla=8711,e.nacute=324,e.nadeva=2344,e.nagujarati=2728,e.nagurmukhi=2600,e.nahiragana=12394,e.nakatakana=12490,e.nakatakanahalfwidth=65413,e.napostrophe=329,e.nasquare=13185,e.nbopomofo=12555,e.nbspace=160,e.ncaron=328,e.ncedilla=326,e.ncircle=9437,e.ncircumflexbelow=7755,e.ncommaaccent=326,e.ndotaccent=7749,e.ndotbelow=7751,e.nehiragana=12397,e.nekatakana=12493,e.nekatakanahalfwidth=65416,e.newsheqelsign=8362,e.nfsquare=13195,e.ngabengali=2457,e.ngadeva=2329,e.ngagujarati=2713,e.ngagurmukhi=2585,e.ngonguthai=3591,e.nhiragana=12435,e.nhookleft=626,e.nhookretroflex=627,e.nieunacirclekorean=12911,e.nieunaparenkorean=12815,e.nieuncieuckorean=12597,e.nieuncirclekorean=12897,e.nieunhieuhkorean=12598,e.nieunkorean=12596,e.nieunpansioskorean=12648,e.nieunparenkorean=12801,e.nieunsioskorean=12647,e.nieuntikeutkorean=12646,e.nihiragana=12395,e.nikatakana=12491,e.nikatakanahalfwidth=65414,e.nikhahitleftthai=63641,e.nikhahitthai=3661,e.nine=57,e.ninearabic=1641,e.ninebengali=2543,e.ninecircle=9320,e.ninecircleinversesansserif=10130,e.ninedeva=2415,e.ninegujarati=2799,e.ninegurmukhi=2671,e.ninehackarabic=1641,e.ninehangzhou=12329,e.nineideographicparen=12840,e.nineinferior=8329,e.ninemonospace=65305,e.nineoldstyle=63289,e.nineparen=9340,e.nineperiod=9360,e.ninepersian=1785,e.nineroman=8568,e.ninesuperior=8313,e.nineteencircle=9330,e.nineteenparen=9350,e.nineteenperiod=9370,e.ninethai=3673,e.nj=460,e.njecyrillic=1114,e.nkatakana=12531,e.nkatakanahalfwidth=65437,e.nlegrightlong=414,e.nlinebelow=7753,e.nmonospace=65358,e.nmsquare=13210,e.nnabengali=2467,e.nnadeva=2339,e.nnagujarati=2723,e.nnagurmukhi=2595,e.nnnadeva=2345,e.nohiragana=12398,e.nokatakana=12494,e.nokatakanahalfwidth=65417,e.nonbreakingspace=160,e.nonenthai=3603,e.nonuthai=3609,e.noonarabic=1606,e.noonfinalarabic=65254,e.noonghunnaarabic=1722,e.noonghunnafinalarabic=64415,e.nooninitialarabic=65255,e.noonjeeminitialarabic=64722,e.noonjeemisolatedarabic=64587,e.noonmedialarabic=65256,e.noonmeeminitialarabic=64725,e.noonmeemisolatedarabic=64590,e.noonnoonfinalarabic=64653,e.notcontains=8716,e.notelement=8713,e.notelementof=8713,e.notequal=8800,e.notgreater=8815,e.notgreaternorequal=8817,e.notgreaternorless=8825,e.notidentical=8802,e.notless=8814,e.notlessnorequal=8816,e.notparallel=8742,e.notprecedes=8832,e.notsubset=8836,e.notsucceeds=8833,e.notsuperset=8837,e.nowarmenian=1398,e.nparen=9385,e.nssquare=13233,e.nsuperior=8319,e.ntilde=241,e.nu=957,e.nuhiragana=12396,e.nukatakana=12492,e.nukatakanahalfwidth=65415,e.nuktabengali=2492,e.nuktadeva=2364,e.nuktagujarati=2748,e.nuktagurmukhi=2620,e.numbersign=35,e.numbersignmonospace=65283,e.numbersignsmall=65119,e.numeralsigngreek=884,e.numeralsignlowergreek=885,e.numero=8470,e.nun=1504,e.nundagesh=64320,e.nundageshhebrew=64320,e.nunhebrew=1504,e.nvsquare=13237,e.nwsquare=13243,e.nyabengali=2462,e.nyadeva=2334,e.nyagujarati=2718,e.nyagurmukhi=2590,e.o=111,e.oacute=243,e.oangthai=3629,e.obarred=629,e.obarredcyrillic=1257,e.obarreddieresiscyrillic=1259,e.obengali=2451,e.obopomofo=12571,e.obreve=335,e.ocandradeva=2321,e.ocandragujarati=2705,e.ocandravowelsigndeva=2377,e.ocandravowelsigngujarati=2761,e.ocaron=466,e.ocircle=9438,e.ocircumflex=244,e.ocircumflexacute=7889,e.ocircumflexdotbelow=7897,e.ocircumflexgrave=7891,e.ocircumflexhookabove=7893,e.ocircumflextilde=7895,e.ocyrillic=1086,e.odblacute=337,e.odblgrave=525,e.odeva=2323,e.odieresis=246,e.odieresiscyrillic=1255,e.odotbelow=7885,e.oe=339,e.oekorean=12634,e.ogonek=731,e.ogonekcmb=808,e.ograve=242,e.ogujarati=2707,e.oharmenian=1413,e.ohiragana=12362,e.ohookabove=7887,e.ohorn=417,e.ohornacute=7899,e.ohorndotbelow=7907,e.ohorngrave=7901,e.ohornhookabove=7903,e.ohorntilde=7905,e.ohungarumlaut=337,e.oi=419,e.oinvertedbreve=527,e.okatakana=12458,e.okatakanahalfwidth=65397,e.okorean=12631,e.olehebrew=1451,e.omacron=333,e.omacronacute=7763,e.omacrongrave=7761,e.omdeva=2384,e.omega=969,e.omega1=982,e.omegacyrillic=1121,e.omegalatinclosed=631,e.omegaroundcyrillic=1147,e.omegatitlocyrillic=1149,e.omegatonos=974,e.omgujarati=2768,e.omicron=959,e.omicrontonos=972,e.omonospace=65359,e.one=49,e.onearabic=1633,e.onebengali=2535,e.onecircle=9312,e.onecircleinversesansserif=10122,e.onedeva=2407,e.onedotenleader=8228,e.oneeighth=8539,e.onefitted=63196,e.onegujarati=2791,e.onegurmukhi=2663,e.onehackarabic=1633,e.onehalf=189,e.onehangzhou=12321,e.oneideographicparen=12832,e.oneinferior=8321,e.onemonospace=65297,e.onenumeratorbengali=2548,e.oneoldstyle=63281,e.oneparen=9332,e.oneperiod=9352,e.onepersian=1777,e.onequarter=188,e.oneroman=8560,e.onesuperior=185,e.onethai=3665,e.onethird=8531,e.oogonek=491,e.oogonekmacron=493,e.oogurmukhi=2579,e.oomatragurmukhi=2635,e.oopen=596,e.oparen=9386,e.openbullet=9702,e.option=8997,e.ordfeminine=170,e.ordmasculine=186,e.orthogonal=8735,e.oshortdeva=2322,e.oshortvowelsigndeva=2378,e.oslash=248,e.oslashacute=511,e.osmallhiragana=12361,e.osmallkatakana=12457,e.osmallkatakanahalfwidth=65387,e.ostrokeacute=511,e.osuperior=63216,e.otcyrillic=1151,e.otilde=245,e.otildeacute=7757,e.otildedieresis=7759,e.oubopomofo=12577,e.overline=8254,e.overlinecenterline=65098,e.overlinecmb=773,e.overlinedashed=65097,e.overlinedblwavy=65100,e.overlinewavy=65099,e.overscore=175,e.ovowelsignbengali=2507,e.ovowelsigndeva=2379,e.ovowelsigngujarati=2763,e.p=112,e.paampssquare=13184,e.paasentosquare=13099,e.pabengali=2474,e.pacute=7765,e.padeva=2346,e.pagedown=8671,e.pageup=8670,e.pagujarati=2730,e.pagurmukhi=2602,e.pahiragana=12401,e.paiyannoithai=3631,e.pakatakana=12497,e.palatalizationcyrilliccmb=1156,e.palochkacyrillic=1216,e.pansioskorean=12671,e.paragraph=182,e.parallel=8741,e.parenleft=40,e.parenleftaltonearabic=64830,e.parenleftbt=63725,e.parenleftex=63724,e.parenleftinferior=8333,e.parenleftmonospace=65288,e.parenleftsmall=65113,e.parenleftsuperior=8317,e.parenlefttp=63723,e.parenleftvertical=65077,e.parenright=41,e.parenrightaltonearabic=64831,e.parenrightbt=63736,e.parenrightex=63735,e.parenrightinferior=8334,e.parenrightmonospace=65289,e.parenrightsmall=65114,e.parenrightsuperior=8318,e.parenrighttp=63734,e.parenrightvertical=65078,e.partialdiff=8706,e.paseqhebrew=1472,e.pashtahebrew=1433,e.pasquare=13225,e.patah=1463,e.patah11=1463,e.patah1d=1463,e.patah2a=1463,e.patahhebrew=1463,e.patahnarrowhebrew=1463,e.patahquarterhebrew=1463,e.patahwidehebrew=1463,e.pazerhebrew=1441,e.pbopomofo=12550,e.pcircle=9439,e.pdotaccent=7767,e.pe=1508,e.pecyrillic=1087,e.pedagesh=64324,e.pedageshhebrew=64324,e.peezisquare=13115,e.pefinaldageshhebrew=64323,e.peharabic=1662,e.peharmenian=1402,e.pehebrew=1508,e.pehfinalarabic=64343,e.pehinitialarabic=64344,e.pehiragana=12410,e.pehmedialarabic=64345,e.pekatakana=12506,e.pemiddlehookcyrillic=1191,e.perafehebrew=64334,e.percent=37,e.percentarabic=1642,e.percentmonospace=65285,e.percentsmall=65130,e.period=46,e.periodarmenian=1417,e.periodcentered=183,e.periodhalfwidth=65377,e.periodinferior=63207,e.periodmonospace=65294,e.periodsmall=65106,e.periodsuperior=63208,e.perispomenigreekcmb=834,e.perpendicular=8869,e.perthousand=8240,e.peseta=8359,e.pfsquare=13194,e.phabengali=2475,e.phadeva=2347,e.phagujarati=2731,e.phagurmukhi=2603,e.phi=966,e.phi1=981,e.phieuphacirclekorean=12922,e.phieuphaparenkorean=12826,e.phieuphcirclekorean=12908,e.phieuphkorean=12621,e.phieuphparenkorean=12812,e.philatin=632,e.phinthuthai=3642,e.phisymbolgreek=981,e.phook=421,e.phophanthai=3614,e.phophungthai=3612,e.phosamphaothai=3616,e.pi=960,e.pieupacirclekorean=12915,e.pieupaparenkorean=12819,e.pieupcieuckorean=12662,e.pieupcirclekorean=12901,e.pieupkiyeokkorean=12658,e.pieupkorean=12610,e.pieupparenkorean=12805,e.pieupsioskiyeokkorean=12660,e.pieupsioskorean=12612,e.pieupsiostikeutkorean=12661,e.pieupthieuthkorean=12663,e.pieuptikeutkorean=12659,e.pihiragana=12404,e.pikatakana=12500,e.pisymbolgreek=982,e.piwrarmenian=1411,e.plus=43,e.plusbelowcmb=799,e.pluscircle=8853,e.plusminus=177,e.plusmod=726,e.plusmonospace=65291,e.plussmall=65122,e.plussuperior=8314,e.pmonospace=65360,e.pmsquare=13272,e.pohiragana=12413,e.pointingindexdownwhite=9759,e.pointingindexleftwhite=9756,e.pointingindexrightwhite=9758,e.pointingindexupwhite=9757,e.pokatakana=12509,e.poplathai=3611,e.postalmark=12306,e.postalmarkface=12320,e.pparen=9387,e.precedes=8826,e.prescription=8478,e.primemod=697,e.primereversed=8245,e.product=8719,e.projective=8965,e.prolongedkana=12540,e.propellor=8984,e.propersubset=8834,e.propersuperset=8835,e.proportion=8759,e.proportional=8733,e.psi=968,e.psicyrillic=1137,e.psilipneumatacyrilliccmb=1158,e.pssquare=13232,e.puhiragana=12407,e.pukatakana=12503,e.pvsquare=13236,e.pwsquare=13242,e.q=113,e.qadeva=2392,e.qadmahebrew=1448,e.qafarabic=1602,e.qaffinalarabic=65238,e.qafinitialarabic=65239,e.qafmedialarabic=65240,e.qamats=1464,e.qamats10=1464,e.qamats1a=1464,e.qamats1c=1464,e.qamats27=1464,e.qamats29=1464,e.qamats33=1464,e.qamatsde=1464,e.qamatshebrew=1464,e.qamatsnarrowhebrew=1464,e.qamatsqatanhebrew=1464,e.qamatsqatannarrowhebrew=1464,e.qamatsqatanquarterhebrew=1464,e.qamatsqatanwidehebrew=1464,e.qamatsquarterhebrew=1464,e.qamatswidehebrew=1464,e.qarneyparahebrew=1439,e.qbopomofo=12561,e.qcircle=9440,e.qhook=672,e.qmonospace=65361,e.qof=1511,e.qofdagesh=64327,e.qofdageshhebrew=64327,e.qofhebrew=1511,e.qparen=9388,e.quarternote=9833,e.qubuts=1467,e.qubuts18=1467,e.qubuts25=1467,e.qubuts31=1467,e.qubutshebrew=1467,e.qubutsnarrowhebrew=1467,e.qubutsquarterhebrew=1467,e.qubutswidehebrew=1467,e.question=63,e.questionarabic=1567,e.questionarmenian=1374,e.questiondown=191,e.questiondownsmall=63423,e.questiongreek=894,e.questionmonospace=65311,e.questionsmall=63295,e.quotedbl=34,e.quotedblbase=8222,e.quotedblleft=8220,e.quotedblmonospace=65282,e.quotedblprime=12318,e.quotedblprimereversed=12317,e.quotedblright=8221,e.quoteleft=8216,e.quoteleftreversed=8219,e.quotereversed=8219,e.quoteright=8217,e.quoterightn=329,e.quotesinglbase=8218,e.quotesingle=39,e.quotesinglemonospace=65287,e.r=114,e.raarmenian=1404,e.rabengali=2480,e.racute=341,e.radeva=2352,e.radical=8730,e.radicalex=63717,e.radoverssquare=13230,e.radoverssquaredsquare=13231,e.radsquare=13229,e.rafe=1471,e.rafehebrew=1471,e.ragujarati=2736,e.ragurmukhi=2608,e.rahiragana=12425,e.rakatakana=12521,e.rakatakanahalfwidth=65431,e.ralowerdiagonalbengali=2545,e.ramiddlediagonalbengali=2544,e.ramshorn=612,e.ratio=8758,e.rbopomofo=12566,e.rcaron=345,e.rcedilla=343,e.rcircle=9441,e.rcommaaccent=343,e.rdblgrave=529,e.rdotaccent=7769,e.rdotbelow=7771,e.rdotbelowmacron=7773,e.referencemark=8251,e.reflexsubset=8838,e.reflexsuperset=8839,e.registered=174,e.registersans=63720,e.registerserif=63194,e.reharabic=1585,e.reharmenian=1408,e.rehfinalarabic=65198,e.rehiragana=12428,e.rekatakana=12524,e.rekatakanahalfwidth=65434,e.resh=1512,e.reshdageshhebrew=64328,e.reshhebrew=1512,e.reversedtilde=8765,e.reviahebrew=1431;e.reviamugrashhebrew=1431,e.revlogicalnot=8976,e.rfishhook=638,e.rfishhookreversed=639,e.rhabengali=2525,e.rhadeva=2397,e.rho=961,e.rhook=637,e.rhookturned=635,e.rhookturnedsuperior=693,e.rhosymbolgreek=1009,e.rhotichookmod=734,e.rieulacirclekorean=12913,e.rieulaparenkorean=12817,e.rieulcirclekorean=12899,e.rieulhieuhkorean=12608,e.rieulkiyeokkorean=12602,e.rieulkiyeoksioskorean=12649,e.rieulkorean=12601,e.rieulmieumkorean=12603,e.rieulpansioskorean=12652,e.rieulparenkorean=12803,e.rieulphieuphkorean=12607,e.rieulpieupkorean=12604,e.rieulpieupsioskorean=12651,e.rieulsioskorean=12605,e.rieulthieuthkorean=12606,e.rieultikeutkorean=12650,e.rieulyeorinhieuhkorean=12653,e.rightangle=8735,e.righttackbelowcmb=793,e.righttriangle=8895,e.rihiragana=12426,e.rikatakana=12522,e.rikatakanahalfwidth=65432,e.ring=730,e.ringbelowcmb=805,e.ringcmb=778,e.ringhalfleft=703,e.ringhalfleftarmenian=1369,e.ringhalfleftbelowcmb=796,e.ringhalfleftcentered=723,e.ringhalfright=702,e.ringhalfrightbelowcmb=825,e.ringhalfrightcentered=722,e.rinvertedbreve=531,e.rittorusquare=13137,e.rlinebelow=7775,e.rlongleg=636,e.rlonglegturned=634,e.rmonospace=65362,e.rohiragana=12429,e.rokatakana=12525,e.rokatakanahalfwidth=65435,e.roruathai=3619,e.rparen=9389,e.rrabengali=2524,e.rradeva=2353,e.rragurmukhi=2652,e.rreharabic=1681,e.rrehfinalarabic=64397,e.rrvocalicbengali=2528,e.rrvocalicdeva=2400,e.rrvocalicgujarati=2784,e.rrvocalicvowelsignbengali=2500,e.rrvocalicvowelsigndeva=2372,e.rrvocalicvowelsigngujarati=2756,e.rsuperior=63217,e.rtblock=9616,e.rturned=633,e.rturnedsuperior=692,e.ruhiragana=12427,e.rukatakana=12523,e.rukatakanahalfwidth=65433,e.rupeemarkbengali=2546,e.rupeesignbengali=2547,e.rupiah=63197,e.ruthai=3620,e.rvocalicbengali=2443,e.rvocalicdeva=2315,e.rvocalicgujarati=2699,e.rvocalicvowelsignbengali=2499,e.rvocalicvowelsigndeva=2371,e.rvocalicvowelsigngujarati=2755,e.s=115,e.sabengali=2488,e.sacute=347,e.sacutedotaccent=7781,e.sadarabic=1589,e.sadeva=2360,e.sadfinalarabic=65210,e.sadinitialarabic=65211,e.sadmedialarabic=65212,e.sagujarati=2744,e.sagurmukhi=2616,e.sahiragana=12373,e.sakatakana=12469,e.sakatakanahalfwidth=65403,e.sallallahoualayhewasallamarabic=65018,e.samekh=1505,e.samekhdagesh=64321,e.samekhdageshhebrew=64321,e.samekhhebrew=1505,e.saraaathai=3634,e.saraaethai=3649,e.saraaimaimalaithai=3652,e.saraaimaimuanthai=3651,e.saraamthai=3635,e.saraathai=3632,e.saraethai=3648,e.saraiileftthai=63622,e.saraiithai=3637,e.saraileftthai=63621,e.saraithai=3636,e.saraothai=3650,e.saraueeleftthai=63624,e.saraueethai=3639,e.saraueleftthai=63623,e.sarauethai=3638,e.sarauthai=3640,e.sarauuthai=3641,e.sbopomofo=12569,e.scaron=353,e.scarondotaccent=7783,e.scedilla=351,e.schwa=601,e.schwacyrillic=1241,e.schwadieresiscyrillic=1243,e.schwahook=602,e.scircle=9442,e.scircumflex=349,e.scommaaccent=537,e.sdotaccent=7777,e.sdotbelow=7779,e.sdotbelowdotaccent=7785,e.seagullbelowcmb=828,e.second=8243,e.secondtonechinese=714,e.section=167,e.seenarabic=1587,e.seenfinalarabic=65202,e.seeninitialarabic=65203,e.seenmedialarabic=65204,e.segol=1462,e.segol13=1462,e.segol1f=1462,e.segol2c=1462,e.segolhebrew=1462,e.segolnarrowhebrew=1462,e.segolquarterhebrew=1462,e.segoltahebrew=1426,e.segolwidehebrew=1462,e.seharmenian=1405,e.sehiragana=12379,e.sekatakana=12475,e.sekatakanahalfwidth=65406,e.semicolon=59,e.semicolonarabic=1563,e.semicolonmonospace=65307,e.semicolonsmall=65108,e.semivoicedmarkkana=12444,e.semivoicedmarkkanahalfwidth=65439,e.sentisquare=13090,e.sentosquare=13091,e.seven=55,e.sevenarabic=1639,e.sevenbengali=2541,e.sevencircle=9318,e.sevencircleinversesansserif=10128,e.sevendeva=2413,e.seveneighths=8542,e.sevengujarati=2797,e.sevengurmukhi=2669,e.sevenhackarabic=1639,e.sevenhangzhou=12327,e.sevenideographicparen=12838,e.seveninferior=8327,e.sevenmonospace=65303,e.sevenoldstyle=63287,e.sevenparen=9338,e.sevenperiod=9358,e.sevenpersian=1783,e.sevenroman=8566,e.sevensuperior=8311,e.seventeencircle=9328,e.seventeenparen=9348,e.seventeenperiod=9368,e.seventhai=3671,e.sfthyphen=173,e.shaarmenian=1399,e.shabengali=2486,e.shacyrillic=1096,e.shaddaarabic=1617,e.shaddadammaarabic=64609,e.shaddadammatanarabic=64606,e.shaddafathaarabic=64608,e.shaddakasraarabic=64610,e.shaddakasratanarabic=64607,e.shade=9618,e.shadedark=9619,e.shadelight=9617,e.shademedium=9618,e.shadeva=2358,e.shagujarati=2742,e.shagurmukhi=2614,e.shalshelethebrew=1427,e.shbopomofo=12565,e.shchacyrillic=1097,e.sheenarabic=1588,e.sheenfinalarabic=65206,e.sheeninitialarabic=65207,e.sheenmedialarabic=65208,e.sheicoptic=995,e.sheqel=8362,e.sheqelhebrew=8362,e.sheva=1456,e.sheva115=1456,e.sheva15=1456,e.sheva22=1456,e.sheva2e=1456,e.shevahebrew=1456,e.shevanarrowhebrew=1456,e.shevaquarterhebrew=1456,e.shevawidehebrew=1456,e.shhacyrillic=1211,e.shimacoptic=1005,e.shin=1513,e.shindagesh=64329,e.shindageshhebrew=64329,e.shindageshshindot=64300,e.shindageshshindothebrew=64300,e.shindageshsindot=64301,e.shindageshsindothebrew=64301,e.shindothebrew=1473,e.shinhebrew=1513,e.shinshindot=64298,e.shinshindothebrew=64298,e.shinsindot=64299,e.shinsindothebrew=64299,e.shook=642,e.sigma=963,e.sigma1=962,e.sigmafinal=962,e.sigmalunatesymbolgreek=1010,e.sihiragana=12375,e.sikatakana=12471,e.sikatakanahalfwidth=65404,e.siluqhebrew=1469,e.siluqlefthebrew=1469,e.similar=8764,e.sindothebrew=1474,e.siosacirclekorean=12916,e.siosaparenkorean=12820,e.sioscieuckorean=12670,e.sioscirclekorean=12902,e.sioskiyeokkorean=12666,e.sioskorean=12613,e.siosnieunkorean=12667,e.siosparenkorean=12806,e.siospieupkorean=12669,e.siostikeutkorean=12668,e.six=54,e.sixarabic=1638,e.sixbengali=2540,e.sixcircle=9317,e.sixcircleinversesansserif=10127,e.sixdeva=2412,e.sixgujarati=2796,e.sixgurmukhi=2668,e.sixhackarabic=1638,e.sixhangzhou=12326,e.sixideographicparen=12837,e.sixinferior=8326,e.sixmonospace=65302,e.sixoldstyle=63286,e.sixparen=9337,e.sixperiod=9357,e.sixpersian=1782,e.sixroman=8565,e.sixsuperior=8310,e.sixteencircle=9327,e.sixteencurrencydenominatorbengali=2553,e.sixteenparen=9347,e.sixteenperiod=9367,e.sixthai=3670,e.slash=47,e.slashmonospace=65295,e.slong=383,e.slongdotaccent=7835,e.smileface=9786,e.smonospace=65363,e.sofpasuqhebrew=1475,e.softhyphen=173,e.softsigncyrillic=1100,e.sohiragana=12381,e.sokatakana=12477,e.sokatakanahalfwidth=65407,e.soliduslongoverlaycmb=824,e.solidusshortoverlaycmb=823,e.sorusithai=3625,e.sosalathai=3624,e.sosothai=3595,e.sosuathai=3626,e.space=32,e.spacehackarabic=32,e.spade=9824,e.spadesuitblack=9824,e.spadesuitwhite=9828,e.sparen=9390,e.squarebelowcmb=827,e.squarecc=13252,e.squarecm=13213,e.squarediagonalcrosshatchfill=9641,e.squarehorizontalfill=9636,e.squarekg=13199,e.squarekm=13214,e.squarekmcapital=13262,e.squareln=13265,e.squarelog=13266,e.squaremg=13198,e.squaremil=13269,e.squaremm=13212,e.squaremsquared=13217,e.squareorthogonalcrosshatchfill=9638,e.squareupperlefttolowerrightfill=9639,e.squareupperrighttolowerleftfill=9640,e.squareverticalfill=9637,e.squarewhitewithsmallblack=9635,e.srsquare=13275,e.ssabengali=2487,e.ssadeva=2359,e.ssagujarati=2743,e.ssangcieuckorean=12617,e.ssanghieuhkorean=12677,e.ssangieungkorean=12672,e.ssangkiyeokkorean=12594,e.ssangnieunkorean=12645,e.ssangpieupkorean=12611,e.ssangsioskorean=12614,e.ssangtikeutkorean=12600,e.ssuperior=63218,e.sterling=163,e.sterlingmonospace=65505,e.strokelongoverlaycmb=822,e.strokeshortoverlaycmb=821,e.subset=8834,e.subsetnotequal=8842,e.subsetorequal=8838,e.succeeds=8827,e.suchthat=8715,e.suhiragana=12377,e.sukatakana=12473,e.sukatakanahalfwidth=65405,e.sukunarabic=1618,e.summation=8721,e.sun=9788,e.superset=8835,e.supersetnotequal=8843,e.supersetorequal=8839,e.svsquare=13276,e.syouwaerasquare=13180,e.t=116,e.tabengali=2468,e.tackdown=8868,e.tackleft=8867,e.tadeva=2340,e.tagujarati=2724,e.tagurmukhi=2596,e.taharabic=1591,e.tahfinalarabic=65218,e.tahinitialarabic=65219,e.tahiragana=12383,e.tahmedialarabic=65220,e.taisyouerasquare=13181,e.takatakana=12479,e.takatakanahalfwidth=65408,e.tatweelarabic=1600,e.tau=964,e.tav=1514,e.tavdages=64330,e.tavdagesh=64330,e.tavdageshhebrew=64330,e.tavhebrew=1514,e.tbar=359,e.tbopomofo=12554,e.tcaron=357,e.tccurl=680,e.tcedilla=355,e.tcheharabic=1670,e.tchehfinalarabic=64379,e.tchehinitialarabic=64380,e.tchehmedialarabic=64381,e.tcircle=9443,e.tcircumflexbelow=7793,e.tcommaaccent=355,e.tdieresis=7831,e.tdotaccent=7787,e.tdotbelow=7789,e.tecyrillic=1090,e.tedescendercyrillic=1197,e.teharabic=1578,e.tehfinalarabic=65174,e.tehhahinitialarabic=64674,e.tehhahisolatedarabic=64524,e.tehinitialarabic=65175,e.tehiragana=12390,e.tehjeeminitialarabic=64673,e.tehjeemisolatedarabic=64523,e.tehmarbutaarabic=1577,e.tehmarbutafinalarabic=65172,e.tehmedialarabic=65176,e.tehmeeminitialarabic=64676,e.tehmeemisolatedarabic=64526,e.tehnoonfinalarabic=64627,e.tekatakana=12486,e.tekatakanahalfwidth=65411,e.telephone=8481,e.telephoneblack=9742,e.telishagedolahebrew=1440,e.telishaqetanahebrew=1449,e.tencircle=9321,e.tenideographicparen=12841,e.tenparen=9341,e.tenperiod=9361,e.tenroman=8569,e.tesh=679,e.tet=1496,e.tetdagesh=64312,e.tetdageshhebrew=64312,e.tethebrew=1496,e.tetsecyrillic=1205,e.tevirhebrew=1435,e.tevirlefthebrew=1435,e.thabengali=2469,e.thadeva=2341,e.thagujarati=2725,e.thagurmukhi=2597,e.thalarabic=1584,e.thalfinalarabic=65196,e.thanthakhatlowleftthai=63640,e.thanthakhatlowrightthai=63639,e.thanthakhatthai=3660,e.thanthakhatupperleftthai=63638,e.theharabic=1579,e.thehfinalarabic=65178,e.thehinitialarabic=65179,e.thehmedialarabic=65180,e.thereexists=8707,e.therefore=8756,e.theta=952,e.theta1=977,e.thetasymbolgreek=977,e.thieuthacirclekorean=12921,e.thieuthaparenkorean=12825,e.thieuthcirclekorean=12907,e.thieuthkorean=12620,e.thieuthparenkorean=12811,e.thirteencircle=9324,e.thirteenparen=9344,e.thirteenperiod=9364,e.thonangmonthothai=3601,e.thook=429,e.thophuthaothai=3602,e.thorn=254,e.thothahanthai=3607,e.thothanthai=3600,e.thothongthai=3608,e.thothungthai=3606,e.thousandcyrillic=1154,e.thousandsseparatorarabic=1644,e.thousandsseparatorpersian=1644,e.three=51,e.threearabic=1635,e.threebengali=2537,e.threecircle=9314,e.threecircleinversesansserif=10124,e.threedeva=2409,e.threeeighths=8540,e.threegujarati=2793,e.threegurmukhi=2665,e.threehackarabic=1635,e.threehangzhou=12323,e.threeideographicparen=12834,e.threeinferior=8323,e.threemonospace=65299,e.threenumeratorbengali=2550,e.threeoldstyle=63283,e.threeparen=9334,e.threeperiod=9354,e.threepersian=1779,e.threequarters=190,e.threequartersemdash=63198,e.threeroman=8562,e.threesuperior=179,e.threethai=3667,e.thzsquare=13204,e.tihiragana=12385,e.tikatakana=12481,e.tikatakanahalfwidth=65409,e.tikeutacirclekorean=12912,e.tikeutaparenkorean=12816,e.tikeutcirclekorean=12898,e.tikeutkorean=12599,e.tikeutparenkorean=12802,e.tilde=732,e.tildebelowcmb=816,e.tildecmb=771,e.tildecomb=771,e.tildedoublecmb=864,e.tildeoperator=8764,e.tildeoverlaycmb=820,e.tildeverticalcmb=830,e.timescircle=8855,e.tipehahebrew=1430,e.tipehalefthebrew=1430,e.tippigurmukhi=2672,e.titlocyrilliccmb=1155,e.tiwnarmenian=1407,e.tlinebelow=7791,e.tmonospace=65364,e.toarmenian=1385,e.tohiragana=12392,e.tokatakana=12488,e.tokatakanahalfwidth=65412,e.tonebarextrahighmod=741,e.tonebarextralowmod=745,e.tonebarhighmod=742,e.tonebarlowmod=744,e.tonebarmidmod=743,e.tonefive=445,e.tonesix=389,e.tonetwo=424,e.tonos=900,e.tonsquare=13095,e.topatakthai=3599,e.tortoiseshellbracketleft=12308,e.tortoiseshellbracketleftsmall=65117,e.tortoiseshellbracketleftvertical=65081,e.tortoiseshellbracketright=12309,e.tortoiseshellbracketrightsmall=65118,e.tortoiseshellbracketrightvertical=65082,e.totaothai=3605,e.tpalatalhook=427,e.tparen=9391,e.trademark=8482,e.trademarksans=63722,e.trademarkserif=63195,e.tretroflexhook=648,e.triagdn=9660,e.triaglf=9668,e.triagrt=9658,e.triagup=9650,e.ts=678,e.tsadi=1510,e.tsadidagesh=64326,e.tsadidageshhebrew=64326,e.tsadihebrew=1510,e.tsecyrillic=1094,e.tsere=1461,e.tsere12=1461,e.tsere1e=1461,e.tsere2b=1461,e.tserehebrew=1461,e.tserenarrowhebrew=1461,e.tserequarterhebrew=1461,e.tserewidehebrew=1461,e.tshecyrillic=1115,e.tsuperior=63219,e.ttabengali=2463,e.ttadeva=2335,e.ttagujarati=2719,e.ttagurmukhi=2591,e.tteharabic=1657,e.ttehfinalarabic=64359,e.ttehinitialarabic=64360,e.ttehmedialarabic=64361,e.tthabengali=2464,e.tthadeva=2336,e.tthagujarati=2720,e.tthagurmukhi=2592,e.tturned=647,e.tuhiragana=12388,e.tukatakana=12484,e.tukatakanahalfwidth=65410,e.tusmallhiragana=12387,e.tusmallkatakana=12483,e.tusmallkatakanahalfwidth=65391,e.twelvecircle=9323,e.twelveparen=9343,e.twelveperiod=9363,e.twelveroman=8571,e.twentycircle=9331,e.twentyhangzhou=21316,e.twentyparen=9351,e.twentyperiod=9371,e.two=50,e.twoarabic=1634,e.twobengali=2536,e.twocircle=9313,e.twocircleinversesansserif=10123,e.twodeva=2408,e.twodotenleader=8229,e.twodotleader=8229,e.twodotleadervertical=65072,e.twogujarati=2792,e.twogurmukhi=2664,e.twohackarabic=1634,e.twohangzhou=12322,e.twoideographicparen=12833,e.twoinferior=8322,e.twomonospace=65298,e.twonumeratorbengali=2549,e.twooldstyle=63282,e.twoparen=9333,e.twoperiod=9353,e.twopersian=1778,e.tworoman=8561,e.twostroke=443,e.twosuperior=178,e.twothai=3666,e.twothirds=8532,e.u=117,e.uacute=250,e.ubar=649,e.ubengali=2441,e.ubopomofo=12584,e.ubreve=365,e.ucaron=468,e.ucircle=9444,e.ucircumflex=251,e.ucircumflexbelow=7799,e.ucyrillic=1091,e.udattadeva=2385,e.udblacute=369,e.udblgrave=533,e.udeva=2313,e.udieresis=252,e.udieresisacute=472,e.udieresisbelow=7795,e.udieresiscaron=474,e.udieresiscyrillic=1265,e.udieresisgrave=476,e.udieresismacron=470,e.udotbelow=7909,e.ugrave=249,e.ugujarati=2697,e.ugurmukhi=2569,e.uhiragana=12358,e.uhookabove=7911,e.uhorn=432,e.uhornacute=7913,e.uhorndotbelow=7921,e.uhorngrave=7915,e.uhornhookabove=7917,e.uhorntilde=7919,e.uhungarumlaut=369,e.uhungarumlautcyrillic=1267,e.uinvertedbreve=535,e.ukatakana=12454,e.ukatakanahalfwidth=65395,e.ukcyrillic=1145,e.ukorean=12636,e.umacron=363,e.umacroncyrillic=1263,e.umacrondieresis=7803,e.umatragurmukhi=2625,e.umonospace=65365,e.underscore=95,e.underscoredbl=8215,e.underscoremonospace=65343,e.underscorevertical=65075,e.underscorewavy=65103,e.union=8746,e.universal=8704,e.uogonek=371,e.uparen=9392,e.upblock=9600,e.upperdothebrew=1476,e.upsilon=965,e.upsilondieresis=971,e.upsilondieresistonos=944,e.upsilonlatin=650,e.upsilontonos=973,e.uptackbelowcmb=797,e.uptackmod=724,e.uragurmukhi=2675,e.uring=367,e.ushortcyrillic=1118,e.usmallhiragana=12357,e.usmallkatakana=12453,e.usmallkatakanahalfwidth=65385,e.ustraightcyrillic=1199,e.ustraightstrokecyrillic=1201,e.utilde=361,e.utildeacute=7801,e.utildebelow=7797,e.uubengali=2442,e.uudeva=2314,e.uugujarati=2698,e.uugurmukhi=2570,e.uumatragurmukhi=2626,e.uuvowelsignbengali=2498,e.uuvowelsigndeva=2370,e.uuvowelsigngujarati=2754,e.uvowelsignbengali=2497,e.uvowelsigndeva=2369,e.uvowelsigngujarati=2753,e.v=118,e.vadeva=2357,e.vagujarati=2741,e.vagurmukhi=2613,e.vakatakana=12535,e.vav=1493,e.vavdagesh=64309,e.vavdagesh65=64309,e.vavdageshhebrew=64309,e.vavhebrew=1493,e.vavholam=64331,e.vavholamhebrew=64331,e.vavvavhebrew=1520,e.vavyodhebrew=1521,e.vcircle=9445,e.vdotbelow=7807,e.vecyrillic=1074,e.veharabic=1700,e.vehfinalarabic=64363,e.vehinitialarabic=64364,e.vehmedialarabic=64365,e.vekatakana=12537,e.venus=9792,e.verticalbar=124,e.verticallineabovecmb=781,e.verticallinebelowcmb=809,e.verticallinelowmod=716,e.verticallinemod=712,e.vewarmenian=1406,e.vhook=651,e.vikatakana=12536,e.viramabengali=2509,e.viramadeva=2381,e.viramagujarati=2765,e.visargabengali=2435,e.visargadeva=2307,e.visargagujarati=2691,e.vmonospace=65366,e.voarmenian=1400,e.voicediterationhiragana=12446,e.voicediterationkatakana=12542,e.voicedmarkkana=12443,e.voicedmarkkanahalfwidth=65438,e.vokatakana=12538,e.vparen=9393,e.vtilde=7805,e.vturned=652,e.vuhiragana=12436,e.vukatakana=12532,e.w=119,e.wacute=7811,e.waekorean=12633,e.wahiragana=12431,e.wakatakana=12527,e.wakatakanahalfwidth=65436,e.wakorean=12632,e.wasmallhiragana=12430,e.wasmallkatakana=12526,e.wattosquare=13143,e.wavedash=12316,e.wavyunderscorevertical=65076,e.wawarabic=1608,e.wawfinalarabic=65262,e.wawhamzaabovearabic=1572,e.wawhamzaabovefinalarabic=65158,e.wbsquare=13277,e.wcircle=9446,e.wcircumflex=373,e.wdieresis=7813,e.wdotaccent=7815,e.wdotbelow=7817,e.wehiragana=12433,e.weierstrass=8472,e.wekatakana=12529,e.wekorean=12638,e.weokorean=12637,e.wgrave=7809,e.whitebullet=9702,e.whitecircle=9675,e.whitecircleinverse=9689,e.whitecornerbracketleft=12302,e.whitecornerbracketleftvertical=65091,e.whitecornerbracketright=12303,e.whitecornerbracketrightvertical=65092,e.whitediamond=9671,e.whitediamondcontainingblacksmalldiamond=9672,e.whitedownpointingsmalltriangle=9663,e.whitedownpointingtriangle=9661,e.whiteleftpointingsmalltriangle=9667,e.whiteleftpointingtriangle=9665,e.whitelenticularbracketleft=12310,e.whitelenticularbracketright=12311,e.whiterightpointingsmalltriangle=9657;e.whiterightpointingtriangle=9655,e.whitesmallsquare=9643,e.whitesmilingface=9786,e.whitesquare=9633,e.whitestar=9734,e.whitetelephone=9743,e.whitetortoiseshellbracketleft=12312,e.whitetortoiseshellbracketright=12313,e.whiteuppointingsmalltriangle=9653,e.whiteuppointingtriangle=9651,e.wihiragana=12432,e.wikatakana=12528,e.wikorean=12639,e.wmonospace=65367,e.wohiragana=12434,e.wokatakana=12530,e.wokatakanahalfwidth=65382,e.won=8361,e.wonmonospace=65510,e.wowaenthai=3623,e.wparen=9394,e.wring=7832,e.wsuperior=695,e.wturned=653,e.wynn=447,e.x=120,e.xabovecmb=829,e.xbopomofo=12562,e.xcircle=9447,e.xdieresis=7821,e.xdotaccent=7819,e.xeharmenian=1389,e.xi=958,e.xmonospace=65368,e.xparen=9395,e.xsuperior=739,e.y=121,e.yaadosquare=13134,e.yabengali=2479,e.yacute=253,e.yadeva=2351,e.yaekorean=12626,e.yagujarati=2735,e.yagurmukhi=2607,e.yahiragana=12420,e.yakatakana=12516,e.yakatakanahalfwidth=65428,e.yakorean=12625,e.yamakkanthai=3662,e.yasmallhiragana=12419,e.yasmallkatakana=12515,e.yasmallkatakanahalfwidth=65388,e.yatcyrillic=1123,e.ycircle=9448,e.ycircumflex=375,e.ydieresis=255,e.ydotaccent=7823,e.ydotbelow=7925,e.yeharabic=1610,e.yehbarreearabic=1746,e.yehbarreefinalarabic=64431,e.yehfinalarabic=65266,e.yehhamzaabovearabic=1574,e.yehhamzaabovefinalarabic=65162,e.yehhamzaaboveinitialarabic=65163,e.yehhamzaabovemedialarabic=65164,e.yehinitialarabic=65267,e.yehmedialarabic=65268,e.yehmeeminitialarabic=64733,e.yehmeemisolatedarabic=64600,e.yehnoonfinalarabic=64660,e.yehthreedotsbelowarabic=1745,e.yekorean=12630,e.yen=165,e.yenmonospace=65509,e.yeokorean=12629,e.yeorinhieuhkorean=12678,e.yerahbenyomohebrew=1450,e.yerahbenyomolefthebrew=1450,e.yericyrillic=1099,e.yerudieresiscyrillic=1273,e.yesieungkorean=12673,e.yesieungpansioskorean=12675,e.yesieungsioskorean=12674,e.yetivhebrew=1434,e.ygrave=7923,e.yhook=436,e.yhookabove=7927,e.yiarmenian=1397,e.yicyrillic=1111,e.yikorean=12642,e.yinyang=9775,e.yiwnarmenian=1410,e.ymonospace=65369,e.yod=1497,e.yoddagesh=64313,e.yoddageshhebrew=64313,e.yodhebrew=1497,e.yodyodhebrew=1522,e.yodyodpatahhebrew=64287,e.yohiragana=12424,e.yoikorean=12681,e.yokatakana=12520,e.yokatakanahalfwidth=65430,e.yokorean=12635,e.yosmallhiragana=12423,e.yosmallkatakana=12519,e.yosmallkatakanahalfwidth=65390,e.yotgreek=1011,e.yoyaekorean=12680,e.yoyakorean=12679,e.yoyakthai=3618,e.yoyingthai=3597,e.yparen=9396,e.ypogegrammeni=890,e.ypogegrammenigreekcmb=837,e.yr=422,e.yring=7833,e.ysuperior=696,e.ytilde=7929,e.yturned=654,e.yuhiragana=12422,e.yuikorean=12684,e.yukatakana=12518,e.yukatakanahalfwidth=65429,e.yukorean=12640,e.yusbigcyrillic=1131,e.yusbigiotifiedcyrillic=1133,e.yuslittlecyrillic=1127,e.yuslittleiotifiedcyrillic=1129,e.yusmallhiragana=12421,e.yusmallkatakana=12517,e.yusmallkatakanahalfwidth=65389,e.yuyekorean=12683,e.yuyeokorean=12682,e.yyabengali=2527,e.yyadeva=2399,e.z=122,e.zaarmenian=1382,e.zacute=378,e.zadeva=2395,e.zagurmukhi=2651,e.zaharabic=1592,e.zahfinalarabic=65222,e.zahinitialarabic=65223,e.zahiragana=12374,e.zahmedialarabic=65224,e.zainarabic=1586,e.zainfinalarabic=65200,e.zakatakana=12470,e.zaqefgadolhebrew=1429,e.zaqefqatanhebrew=1428,e.zarqahebrew=1432,e.zayin=1494,e.zayindagesh=64310,e.zayindageshhebrew=64310,e.zayinhebrew=1494,e.zbopomofo=12567,e.zcaron=382,e.zcircle=9449,e.zcircumflex=7825,e.zcurl=657,e.zdot=380,e.zdotaccent=380,e.zdotbelow=7827,e.zecyrillic=1079,e.zedescendercyrillic=1177,e.zedieresiscyrillic=1247,e.zehiragana=12380,e.zekatakana=12476,e.zero=48,e.zeroarabic=1632,e.zerobengali=2534,e.zerodeva=2406,e.zerogujarati=2790,e.zerogurmukhi=2662,e.zerohackarabic=1632,e.zeroinferior=8320,e.zeromonospace=65296,e.zerooldstyle=63280,e.zeropersian=1776,e.zerosuperior=8304,e.zerothai=3664,e.zerowidthjoiner=65279,e.zerowidthnonjoiner=8204,e.zerowidthspace=8203,e.zeta=950,e.zhbopomofo=12563,e.zhearmenian=1386,e.zhebrevecyrillic=1218,e.zhecyrillic=1078,e.zhedescendercyrillic=1175,e.zhedieresiscyrillic=1245,e.zihiragana=12376,e.zikatakana=12472,e.zinorhebrew=1454,e.zlinebelow=7829,e.zmonospace=65370,e.zohiragana=12382,e.zokatakana=12478,e.zparen=9397,e.zretroflexhook=656,e.zstroke=438,e.zuhiragana=12378,e.zukatakana=12474,e[".notdef"]=0,e.angbracketleftbig=9001,e.angbracketleftBig=9001,e.angbracketleftbigg=9001,e.angbracketleftBigg=9001,e.angbracketrightBig=9002,e.angbracketrightbig=9002,e.angbracketrightBigg=9002,e.angbracketrightbigg=9002,e.arrowhookleft=8618,e.arrowhookright=8617,e.arrowlefttophalf=8636,e.arrowleftbothalf=8637,e.arrownortheast=8599,e.arrownorthwest=8598,e.arrowrighttophalf=8640,e.arrowrightbothalf=8641,e.arrowsoutheast=8600,e.arrowsouthwest=8601,e.backslashbig=8726,e.backslashBig=8726,e.backslashBigg=8726,e.backslashbigg=8726,e.bardbl=8214,e.bracehtipdownleft=65079,e.bracehtipdownright=65079,e.bracehtipupleft=65080,e.bracehtipupright=65080,e.braceleftBig=123,e.braceleftbig=123,e.braceleftbigg=123,e.braceleftBigg=123,e.bracerightBig=125,e.bracerightbig=125,e.bracerightbigg=125,e.bracerightBigg=125,e.bracketleftbig=91,e.bracketleftBig=91,e.bracketleftbigg=91,e.bracketleftBigg=91,e.bracketrightBig=93,e.bracketrightbig=93,e.bracketrightbigg=93,e.bracketrightBigg=93,e.ceilingleftbig=8968,e.ceilingleftBig=8968,e.ceilingleftBigg=8968,e.ceilingleftbigg=8968,e.ceilingrightbig=8969,e.ceilingrightBig=8969,e.ceilingrightbigg=8969,e.ceilingrightBigg=8969,e.circledotdisplay=8857,e.circledottext=8857,e.circlemultiplydisplay=8855,e.circlemultiplytext=8855,e.circleplusdisplay=8853,e.circleplustext=8853,e.contintegraldisplay=8750,e.contintegraltext=8750,e.coproductdisplay=8720,e.coproducttext=8720,e.floorleftBig=8970,e.floorleftbig=8970,e.floorleftbigg=8970,e.floorleftBigg=8970,e.floorrightbig=8971,e.floorrightBig=8971,e.floorrightBigg=8971,e.floorrightbigg=8971,e.hatwide=770,e.hatwider=770,e.hatwidest=770,e.intercal=7488,e.integraldisplay=8747,e.integraltext=8747,e.intersectiondisplay=8898,e.intersectiontext=8898,e.logicalanddisplay=8743,e.logicalandtext=8743,e.logicalordisplay=8744,e.logicalortext=8744,e.parenleftBig=40,e.parenleftbig=40,e.parenleftBigg=40,e.parenleftbigg=40,e.parenrightBig=41,e.parenrightbig=41,e.parenrightBigg=41,e.parenrightbigg=41,e.prime=8242,e.productdisplay=8719,e.producttext=8719,e.radicalbig=8730,e.radicalBig=8730,e.radicalBigg=8730,e.radicalbigg=8730,e.radicalbt=8730,e.radicaltp=8730,e.radicalvertex=8730,e.slashbig=47,e.slashBig=47,e.slashBigg=47,e.slashbigg=47,e.summationdisplay=8721,e.summationtext=8721,e.tildewide=732,e.tildewider=732,e.tildewidest=732,e.uniondisplay=8899,e.unionmultidisplay=8846,e.unionmultitext=8846,e.unionsqdisplay=8852,e.unionsqtext=8852,e.uniontext=8899,e.vextenddouble=8741,e.vextendsingle=8739})),a=i((function(e){e.space=32,e.a1=9985,e.a2=9986,e.a202=9987,e.a3=9988,e.a4=9742,e.a5=9990,e.a119=9991,e.a118=9992,e.a117=9993,e.a11=9755,e.a12=9758,e.a13=9996,e.a14=9997,e.a15=9998,e.a16=9999,e.a105=1e4,e.a17=10001,e.a18=10002,e.a19=10003,e.a20=10004,e.a21=10005,e.a22=10006,e.a23=10007,e.a24=10008,e.a25=10009,e.a26=10010,e.a27=10011,e.a28=10012,e.a6=10013,e.a7=10014,e.a8=10015,e.a9=10016,e.a10=10017,e.a29=10018,e.a30=10019,e.a31=10020,e.a32=10021,e.a33=10022,e.a34=10023,e.a35=9733,e.a36=10025,e.a37=10026,e.a38=10027,e.a39=10028,e.a40=10029,e.a41=10030,e.a42=10031,e.a43=10032,e.a44=10033,e.a45=10034,e.a46=10035,e.a47=10036,e.a48=10037,e.a49=10038,e.a50=10039,e.a51=10040,e.a52=10041,e.a53=10042,e.a54=10043,e.a55=10044,e.a56=10045,e.a57=10046,e.a58=10047,e.a59=10048,e.a60=10049,e.a61=10050,e.a62=10051,e.a63=10052,e.a64=10053,e.a65=10054,e.a66=10055,e.a67=10056,e.a68=10057,e.a69=10058,e.a70=10059,e.a71=9679,e.a72=10061,e.a73=9632,e.a74=10063,e.a203=10064,e.a75=10065,e.a204=10066,e.a76=9650,e.a77=9660,e.a78=9670,e.a79=10070,e.a81=9687,e.a82=10072,e.a83=10073,e.a84=10074,e.a97=10075,e.a98=10076,e.a99=10077,e.a100=10078,e.a101=10081,e.a102=10082,e.a103=10083,e.a104=10084,e.a106=10085,e.a107=10086,e.a108=10087,e.a112=9827,e.a111=9830,e.a110=9829,e.a109=9824,e.a120=9312,e.a121=9313,e.a122=9314,e.a123=9315,e.a124=9316,e.a125=9317,e.a126=9318,e.a127=9319,e.a128=9320,e.a129=9321,e.a130=10102,e.a131=10103,e.a132=10104,e.a133=10105,e.a134=10106,e.a135=10107,e.a136=10108,e.a137=10109,e.a138=10110,e.a139=10111,e.a140=10112,e.a141=10113,e.a142=10114,e.a143=10115,e.a144=10116,e.a145=10117,e.a146=10118,e.a147=10119,e.a148=10120,e.a149=10121,e.a150=10122,e.a151=10123,e.a152=10124,e.a153=10125,e.a154=10126,e.a155=10127,e.a156=10128,e.a157=10129,e.a158=10130,e.a159=10131,e.a160=10132,e.a161=8594,e.a163=8596,e.a164=8597,e.a196=10136,e.a165=10137,e.a192=10138,e.a166=10139,e.a167=10140,e.a168=10141,e.a169=10142,e.a170=10143,e.a171=10144,e.a172=10145,e.a173=10146,e.a162=10147,e.a174=10148,e.a175=10149,e.a176=10150,e.a177=10151,e.a178=10152,e.a179=10153,e.a193=10154,e.a180=10155,e.a199=10156,e.a181=10157,e.a200=10158,e.a182=10159,e.a201=10161,e.a183=10162,e.a184=10163,e.a197=10164,e.a185=10165,e.a194=10166,e.a198=10167,e.a186=10168,e.a195=10169,e.a187=10170,e.a188=10171,e.a189=10172,e.a190=10173,e.a191=10174,e.a89=10088,e.a90=10089,e.a93=10090,e.a94=10091,e.a91=10092,e.a92=10093,e.a205=10094,e.a85=10095,e.a206=10096,e.a86=10097,e.a87=10098,e.a88=10099,e.a95=10100,e.a96=10101,e[".notdef"]=0}));t.getGlyphsUnicode=n,t.getDingbatsGlyphsUnicode=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getSupplementalGlyphMapForCalibri=t.getSupplementalGlyphMapForArialBlack=t.getGlyphMapForStandardFonts=t.getSymbolsFonts=t.getSerifFonts=t.getNonStdFontMap=t.getStdFontMap=void 0;var i=r(8);const n=(0,i.getLookupTableFactory)((function(e){e.ArialNarrow="Helvetica",e["ArialNarrow-Bold"]="Helvetica-Bold",e["ArialNarrow-BoldItalic"]="Helvetica-BoldOblique",e["ArialNarrow-Italic"]="Helvetica-Oblique",e.ArialBlack="Helvetica",e["ArialBlack-Bold"]="Helvetica-Bold",e["ArialBlack-BoldItalic"]="Helvetica-BoldOblique",e["ArialBlack-Italic"]="Helvetica-Oblique",e["Arial-Black"]="Helvetica",e["Arial-Black-Bold"]="Helvetica-Bold",e["Arial-Black-BoldItalic"]="Helvetica-BoldOblique",e["Arial-Black-Italic"]="Helvetica-Oblique",e.Arial="Helvetica",e["Arial-Bold"]="Helvetica-Bold",e["Arial-BoldItalic"]="Helvetica-BoldOblique",e["Arial-Italic"]="Helvetica-Oblique",e["Arial-BoldItalicMT"]="Helvetica-BoldOblique",e["Arial-BoldMT"]="Helvetica-Bold",e["Arial-ItalicMT"]="Helvetica-Oblique",e.ArialMT="Helvetica",e["Courier-Bold"]="Courier-Bold",e["Courier-BoldItalic"]="Courier-BoldOblique",e["Courier-Italic"]="Courier-Oblique",e.CourierNew="Courier",e["CourierNew-Bold"]="Courier-Bold",e["CourierNew-BoldItalic"]="Courier-BoldOblique",e["CourierNew-Italic"]="Courier-Oblique",e["CourierNewPS-BoldItalicMT"]="Courier-BoldOblique",e["CourierNewPS-BoldMT"]="Courier-Bold",e["CourierNewPS-ItalicMT"]="Courier-Oblique",e.CourierNewPSMT="Courier",e.Helvetica="Helvetica",e["Helvetica-Bold"]="Helvetica-Bold",e["Helvetica-BoldItalic"]="Helvetica-BoldOblique",e["Helvetica-BoldOblique"]="Helvetica-BoldOblique",e["Helvetica-Italic"]="Helvetica-Oblique",e["Helvetica-Oblique"]="Helvetica-Oblique",e["Symbol-Bold"]="Symbol",e["Symbol-BoldItalic"]="Symbol",e["Symbol-Italic"]="Symbol",e.TimesNewRoman="Times-Roman",e["TimesNewRoman-Bold"]="Times-Bold",e["TimesNewRoman-BoldItalic"]="Times-BoldItalic",e["TimesNewRoman-Italic"]="Times-Italic",e.TimesNewRomanPS="Times-Roman",e["TimesNewRomanPS-Bold"]="Times-Bold",e["TimesNewRomanPS-BoldItalic"]="Times-BoldItalic",e["TimesNewRomanPS-BoldItalicMT"]="Times-BoldItalic",e["TimesNewRomanPS-BoldMT"]="Times-Bold",e["TimesNewRomanPS-Italic"]="Times-Italic",e["TimesNewRomanPS-ItalicMT"]="Times-Italic",e.TimesNewRomanPSMT="Times-Roman",e["TimesNewRomanPSMT-Bold"]="Times-Bold",e["TimesNewRomanPSMT-BoldItalic"]="Times-BoldItalic",e["TimesNewRomanPSMT-Italic"]="Times-Italic"}));t.getStdFontMap=n;const a=(0,i.getLookupTableFactory)((function(e){e.Calibri="Helvetica",e["Calibri-Bold"]="Helvetica-Bold",e["Calibri-BoldItalic"]="Helvetica-BoldOblique",e["Calibri-Italic"]="Helvetica-Oblique",e.CenturyGothic="Helvetica",e["CenturyGothic-Bold"]="Helvetica-Bold",e["CenturyGothic-BoldItalic"]="Helvetica-BoldOblique",e["CenturyGothic-Italic"]="Helvetica-Oblique",e.ComicSansMS="Comic Sans MS",e["ComicSansMS-Bold"]="Comic Sans MS-Bold",e["ComicSansMS-BoldItalic"]="Comic Sans MS-BoldItalic",e["ComicSansMS-Italic"]="Comic Sans MS-Italic",e.LucidaConsole="Courier",e["LucidaConsole-Bold"]="Courier-Bold",e["LucidaConsole-BoldItalic"]="Courier-BoldOblique",e["LucidaConsole-Italic"]="Courier-Oblique",e["LucidaSans-Demi"]="Helvetica-Bold",e["MS-Gothic"]="MS Gothic",e["MS-Gothic-Bold"]="MS Gothic-Bold",e["MS-Gothic-BoldItalic"]="MS Gothic-BoldItalic",e["MS-Gothic-Italic"]="MS Gothic-Italic",e["MS-Mincho"]="MS Mincho",e["MS-Mincho-Bold"]="MS Mincho-Bold",e["MS-Mincho-BoldItalic"]="MS Mincho-BoldItalic",e["MS-Mincho-Italic"]="MS Mincho-Italic",e["MS-PGothic"]="MS PGothic",e["MS-PGothic-Bold"]="MS PGothic-Bold",e["MS-PGothic-BoldItalic"]="MS PGothic-BoldItalic",e["MS-PGothic-Italic"]="MS PGothic-Italic",e["MS-PMincho"]="MS PMincho",e["MS-PMincho-Bold"]="MS PMincho-Bold",e["MS-PMincho-BoldItalic"]="MS PMincho-BoldItalic",e["MS-PMincho-Italic"]="MS PMincho-Italic",e.NuptialScript="Times-Italic",e.SegoeUISymbol="Helvetica",e.Wingdings="ZapfDingbats",e["Wingdings-Regular"]="ZapfDingbats"}));t.getNonStdFontMap=a;const s=(0,i.getLookupTableFactory)((function(e){e["Adobe Jenson"]=!0,e["Adobe Text"]=!0,e.Albertus=!0,e.Aldus=!0,e.Alexandria=!0,e.Algerian=!0,e["American Typewriter"]=!0,e.Antiqua=!0,e.Apex=!0,e.Arno=!0,e.Aster=!0,e.Aurora=!0,e.Baskerville=!0,e.Bell=!0,e.Bembo=!0,e["Bembo Schoolbook"]=!0,e.Benguiat=!0,e["Berkeley Old Style"]=!0,e["Bernhard Modern"]=!0,e["Berthold City"]=!0,e.Bodoni=!0,e["Bauer Bodoni"]=!0,e["Book Antiqua"]=!0,e.Bookman=!0,e["Bordeaux Roman"]=!0,e["Californian FB"]=!0,e.Calisto=!0,e.Calvert=!0,e.Capitals=!0,e.Cambria=!0,e.Cartier=!0,e.Caslon=!0,e.Catull=!0,e.Centaur=!0,e["Century Old Style"]=!0,e["Century Schoolbook"]=!0,e.Chaparral=!0,e["Charis SIL"]=!0,e.Cheltenham=!0,e["Cholla Slab"]=!0,e.Clarendon=!0,e.Clearface=!0,e.Cochin=!0,e.Colonna=!0,e["Computer Modern"]=!0,e["Concrete Roman"]=!0,e.Constantia=!0,e["Cooper Black"]=!0,e.Corona=!0,e.Ecotype=!0,e.Egyptienne=!0,e.Elephant=!0,e.Excelsior=!0,e.Fairfield=!0,e["FF Scala"]=!0,e.Folkard=!0,e.Footlight=!0,e.FreeSerif=!0,e["Friz Quadrata"]=!0,e.Garamond=!0,e.Gentium=!0,e.Georgia=!0,e.Gloucester=!0,e["Goudy Old Style"]=!0,e["Goudy Schoolbook"]=!0,e["Goudy Pro Font"]=!0,e.Granjon=!0,e["Guardian Egyptian"]=!0,e.Heather=!0,e.Hercules=!0,e["High Tower Text"]=!0,e.Hiroshige=!0,e["Hoefler Text"]=!0,e["Humana Serif"]=!0,e.Imprint=!0,e["Ionic No. 5"]=!0,e.Janson=!0,e.Joanna=!0,e.Korinna=!0,e.Lexicon=!0,e["Liberation Serif"]=!0,e["Linux Libertine"]=!0,e.Literaturnaya=!0,e.Lucida=!0,e["Lucida Bright"]=!0,e.Melior=!0,e.Memphis=!0,e.Miller=!0,e.Minion=!0,e.Modern=!0,e["Mona Lisa"]=!0,e["Mrs Eaves"]=!0,e["MS Serif"]=!0,e["Museo Slab"]=!0,e["New York"]=!0,e["Nimbus Roman"]=!0,e["NPS Rawlinson Roadway"]=!0,e.NuptialScript=!0,e.Palatino=!0,e.Perpetua=!0,e.Plantin=!0,e["Plantin Schoolbook"]=!0,e.Playbill=!0,e["Poor Richard"]=!0,e["Rawlinson Roadway"]=!0,e.Renault=!0,e.Requiem=!0,e.Rockwell=!0,e.Roman=!0,e["Rotis Serif"]=!0,e.Sabon=!0,e.Scala=!0,e.Seagull=!0,e.Sistina=!0,e.Souvenir=!0,e.STIX=!0,e["Stone Informal"]=!0,e["Stone Serif"]=!0,e.Sylfaen=!0,e.Times=!0,e.Trajan=!0,e["Trinité"]=!0,e["Trump Mediaeval"]=!0,e.Utopia=!0,e["Vale Type"]=!0,e["Bitstream Vera"]=!0,e["Vera Serif"]=!0,e.Versailles=!0,e.Wanted=!0,e.Weiss=!0,e["Wide Latin"]=!0,e.Windsor=!0,e.XITS=!0}));t.getSerifFonts=s;const o=(0,i.getLookupTableFactory)((function(e){e.Dingbats=!0,e.Symbol=!0,e.ZapfDingbats=!0}));t.getSymbolsFonts=o;const h=(0,i.getLookupTableFactory)((function(e){e[2]=10,e[3]=32,e[4]=33,e[5]=34,e[6]=35,e[7]=36,e[8]=37,e[9]=38,e[10]=39,e[11]=40,e[12]=41,e[13]=42,e[14]=43,e[15]=44,e[16]=45,e[17]=46,e[18]=47,e[19]=48,e[20]=49,e[21]=50,e[22]=51,e[23]=52,e[24]=53,e[25]=54,e[26]=55,e[27]=56,e[28]=57,e[29]=58,e[30]=894,e[31]=60,e[32]=61,e[33]=62,e[34]=63,e[35]=64,e[36]=65,e[37]=66,e[38]=67,e[39]=68,e[40]=69,e[41]=70,e[42]=71,e[43]=72,e[44]=73,e[45]=74,e[46]=75,e[47]=76,e[48]=77,e[49]=78,e[50]=79,e[51]=80,e[52]=81,e[53]=82,e[54]=83,e[55]=84,e[56]=85,e[57]=86,e[58]=87,e[59]=88,e[60]=89,e[61]=90,e[62]=91,e[63]=92,e[64]=93,e[65]=94,e[66]=95,e[67]=96,e[68]=97,e[69]=98,e[70]=99,e[71]=100,e[72]=101,e[73]=102,e[74]=103,e[75]=104,e[76]=105,e[77]=106,e[78]=107,e[79]=108,e[80]=109,e[81]=110,e[82]=111,e[83]=112,e[84]=113,e[85]=114,e[86]=115,e[87]=116,e[88]=117,e[89]=118,e[90]=119,e[91]=120,e[92]=121,e[93]=122,e[94]=123,e[95]=124,e[96]=125,e[97]=126,e[98]=196,e[99]=197,e[100]=199,e[101]=201,e[102]=209,e[103]=214,e[104]=220,e[105]=225,e[106]=224,e[107]=226,e[108]=228,e[109]=227,e[110]=229,e[111]=231,e[112]=233,e[113]=232,e[114]=234,e[115]=235,e[116]=237,e[117]=236,e[118]=238,e[119]=239,e[120]=241,e[121]=243,e[122]=242,e[123]=244,e[124]=246,e[125]=245,e[126]=250,e[127]=249,e[128]=251,e[129]=252,e[130]=8224,e[131]=176,e[132]=162,e[133]=163,e[134]=167,e[135]=8226,e[136]=182,e[137]=223,e[138]=174,e[139]=169,e[140]=8482,e[141]=180,e[142]=168,e[143]=8800,e[144]=198,e[145]=216,e[146]=8734,e[147]=177,e[148]=8804,e[149]=8805,e[150]=165,e[151]=181,e[152]=8706,e[153]=8721,e[154]=8719,e[156]=8747,e[157]=170,e[158]=186,e[159]=8486,e[160]=230,e[161]=248,e[162]=191,e[163]=161,e[164]=172,e[165]=8730,e[166]=402,e[167]=8776,e[168]=8710,e[169]=171,e[170]=187,e[171]=8230,e[210]=218,e[223]=711,e[224]=321,e[225]=322,e[227]=353,e[229]=382,e[234]=253,e[252]=263,e[253]=268,e[254]=269,e[258]=258,e[260]=260,e[261]=261,e[265]=280,e[266]=281,e[268]=283,e[269]=313,e[275]=323,e[276]=324,e[278]=328,e[284]=345,e[285]=346,e[286]=347,e[292]=367,e[295]=377,e[296]=378,e[298]=380,e[305]=963,e[306]=964,e[307]=966,e[308]=8215,e[309]=8252,e[310]=8319,e[311]=8359,e[312]=8592,e[313]=8593,e[337]=9552,e[493]=1039,e[494]=1040,e[705]=1524,e[706]=8362,e[710]=64288,e[711]=64298,e[759]=1617,e[761]=1776,e[763]=1778,e[775]=1652,e[777]=1764,e[778]=1780,e[779]=1781,e[780]=1782,e[782]=771,e[783]=64726,e[786]=8363,e[788]=8532,e[790]=768,e[791]=769,e[792]=768,e[795]=803,e[797]=64336,e[798]=64337,e[799]=64342,e[800]=64343,e[801]=64344,e[802]=64345,e[803]=64362,e[804]=64363,e[805]=64364,e[2424]=7821,e[2425]=7822,e[2426]=7823,e[2427]=7824,e[2428]=7825,e[2429]=7826,e[2430]=7827,e[2433]=7682,e[2678]=8045,e[2679]=8046,e[2830]=1552,e[2838]=686,e[2840]=751,e[2842]=753,e[2843]=754,e[2844]=755,e[2846]=757,e[2856]=767,e[2857]=848,e[2858]=849,e[2862]=853,e[2863]=854,e[2864]=855,e[2865]=861,e[2866]=862,e[2906]=7460,e[2908]=7462,e[2909]=7463,e[2910]=7464,e[2912]=7466,e[2913]=7467,e[2914]=7468,e[2916]=7470,e[2917]=7471,e[2918]=7472,e[2920]=7474,e[2921]=7475,e[2922]=7476,e[2924]=7478,e[2925]=7479,e[2926]=7480,e[2928]=7482,e[2929]=7483,e[2930]=7484,e[2932]=7486,e[2933]=7487,e[2934]=7488,e[2936]=7490,e[2937]=7491,e[2938]=7492,e[2940]=7494,e[2941]=7495,e[2942]=7496,e[2944]=7498,e[2946]=7500,e[2948]=7502,e[2950]=7504,e[2951]=7505,e[2952]=7506,e[2954]=7508,e[2955]=7509,e[2956]=7510,e[2958]=7512,e[2959]=7513,e[2960]=7514,e[2962]=7516,e[2963]=7517,e[2964]=7518,e[2966]=7520,e[2967]=7521,e[2968]=7522,e[2970]=7524,e[2971]=7525,e[2972]=7526,e[2974]=7528,e[2975]=7529,e[2976]=7530,e[2978]=1537,e[2979]=1538,e[2980]=1539,e[2982]=1549,e[2983]=1551,e[2984]=1552,e[2986]=1554,e[2987]=1555,e[2988]=1556,e[2990]=1623,e[2991]=1624,e[2995]=1775,e[2999]=1791,e[3002]=64290,e[3003]=64291,e[3004]=64292,e[3006]=64294,e[3007]=64295,e[3008]=64296,e[3011]=1900,e[3014]=8223,e[3015]=8244,e[3017]=7532,e[3018]=7533,e[3019]=7534,e[3075]=7590,e[3076]=7591,e[3079]=7594,e[3080]=7595,e[3083]=7598,e[3084]=7599,e[3087]=7602,e[3088]=7603,e[3091]=7606,e[3092]=7607,e[3095]=7610,e[3096]=7611,e[3099]=7614,e[3100]=7615,e[3103]=7618,e[3104]=7619,e[3107]=8337,e[3108]=8338,e[3116]=1884,e[3119]=1885,e[3120]=1885,e[3123]=1886,e[3124]=1886,e[3127]=1887,e[3128]=1887,e[3131]=1888,e[3132]=1888,e[3135]=1889,e[3136]=1889,e[3139]=1890,e[3140]=1890,e[3143]=1891,e[3144]=1891,e[3147]=1892,e[3148]=1892,e[3153]=580,e[3154]=581,e[3157]=584,e[3158]=585,e[3161]=588,e[3162]=589,e[3165]=891,e[3166]=892,e[3169]=1274,e[3170]=1275,e[3173]=1278,e[3174]=1279,e[3181]=7622,e[3182]=7623,e[3282]=11799,e[3316]=578,e[3379]=42785,e[3393]=1159,e[3416]=8377}));t.getGlyphMapForStandardFonts=h;const l=(0,i.getLookupTableFactory)((function(e){e[227]=322,e[264]=261,e[291]=346}));t.getSupplementalGlyphMapForArialBlack=l;const c=(0,i.getLookupTableFactory)((function(e){e[1]=32,e[4]=65,e[17]=66,e[18]=67,e[24]=68,e[28]=69,e[38]=70,e[39]=71,e[44]=72,e[47]=73,e[58]=74,e[60]=75,e[62]=76,e[68]=77,e[69]=78,e[75]=79,e[87]=80,e[89]=81,e[90]=82,e[94]=83,e[100]=84,e[104]=85,e[115]=86,e[116]=87,e[121]=88,e[122]=89,e[127]=90,e[258]=97,e[268]=261,e[271]=98,e[272]=99,e[273]=263,e[282]=100,e[286]=101,e[295]=281,e[296]=102,e[336]=103,e[346]=104,e[349]=105,e[361]=106,e[364]=107,e[367]=108,e[371]=322,e[373]=109,e[374]=110,e[381]=111,e[383]=243,e[393]=112,e[395]=113,e[396]=114,e[400]=115,e[401]=347,e[410]=116,e[437]=117,e[448]=118,e[449]=119,e[454]=120,e[455]=121,e[460]=122,e[463]=380,e[853]=44,e[855]=58,e[856]=46,e[876]=47,e[878]=45,e[882]=45,e[894]=40,e[895]=41,e[896]=91,e[897]=93,e[923]=64,e[1004]=48,e[1005]=49,e[1006]=50,e[1007]=51,e[1008]=52,e[1009]=53,e[1010]=54,e[1011]=55,e[1012]=56,e[1013]=57,e[1081]=37,e[1085]=43,e[1086]=45}));t.getSupplementalGlyphMapForCalibri=c},function(e,t,r){var i=r(8).getLookupTableFactory,n=i((function(e){e[63721]=169,e[63193]=169,e[63720]=174,e[63194]=174,e[63722]=8482,e[63195]=8482,e[63729]=9127,e[63730]=9128,e[63731]=9129,e[63740]=9131,e[63741]=9132,e[63742]=9133,e[63726]=9121,e[63727]=9122,e[63728]=9123,e[63737]=9124,e[63738]=9125,e[63739]=9126,e[63723]=9115,e[63724]=9116,e[63725]=9117,e[63734]=9118,e[63735]=9119,e[63736]=9120}));function a(e){return e>=65520&&e<=65535?0:e>=62976&&e<=63743?n()[e]||e:173===e?45:e}function s(e,t){var r=t[e];if(void 0!==r)return r;if(!e)return-1;if("u"===e[0]){var i,n=e.length;if(7===n&&"n"===e[1]&&"i"===e[2])i=e.substring(3);else{if(!(n>=5&&n<=7))return-1;i=e.substring(1)}if(i===i.toUpperCase()&&(r=parseInt(i,16),r>=0))return r}return-1}var o=[{begin:0,end:127},{begin:128,end:255},{begin:256,end:383},{begin:384,end:591},{begin:592,end:687},{begin:688,end:767},{begin:768,end:879},{begin:880,end:1023},{begin:11392,end:11519},{begin:1024,end:1279},{begin:1328,end:1423},{begin:1424,end:1535},{begin:42240,end:42559},{begin:1536,end:1791},{begin:1984,end:2047},{begin:2304,end:2431},{begin:2432,end:2559},{begin:2560,end:2687},{begin:2688,end:2815},{begin:2816,end:2943},{begin:2944,end:3071},{begin:3072,end:3199},{begin:3200,end:3327},{begin:3328,end:3455},{begin:3584,end:3711},{begin:3712,end:3839},{begin:4256,end:4351},{begin:6912,end:7039},{begin:4352,end:4607},{begin:7680,end:7935},{begin:7936,end:8191},{begin:8192,end:8303},{begin:8304,end:8351},{begin:8352,end:8399},{begin:8400,end:8447},{begin:8448,end:8527},{begin:8528,end:8591},{begin:8592,end:8703},{begin:8704,end:8959},{begin:8960,end:9215},{begin:9216,end:9279},{begin:9280,end:9311},{begin:9312,end:9471},{begin:9472,end:9599},{begin:9600,end:9631},{begin:9632,end:9727},{begin:9728,end:9983},{begin:9984,end:10175},{begin:12288,end:12351},{begin:12352,end:12447},{begin:12448,end:12543},{begin:12544,end:12591},{begin:12592,end:12687},{begin:43072,end:43135},{begin:12800,end:13055},{begin:13056,end:13311},{begin:44032,end:55215},{begin:55296,end:57343},{begin:67840,end:67871},{begin:19968,end:40959},{begin:57344,end:63743},{begin:12736,end:12783},{begin:64256,end:64335},{begin:64336,end:65023},{begin:65056,end:65071},{begin:65040,end:65055},{begin:65104,end:65135},{begin:65136,end:65279},{begin:65280,end:65519},{begin:65520,end:65535},{begin:3840,end:4095},{begin:1792,end:1871},{begin:1920,end:1983},{begin:3456,end:3583},{begin:4096,end:4255},{begin:4608,end:4991},{begin:5024,end:5119},{begin:5120,end:5759},{begin:5760,end:5791},{begin:5792,end:5887},{begin:6016,end:6143},{begin:6144,end:6319},{begin:10240,end:10495},{begin:40960,end:42127},{begin:5888,end:5919},{begin:66304,end:66351},{begin:66352,end:66383},{begin:66560,end:66639},{begin:118784,end:119039},{begin:119808,end:120831},{begin:1044480,end:1048573},{begin:65024,end:65039},{begin:917504,end:917631},{begin:6400,end:6479},{begin:6480,end:6527},{begin:6528,end:6623},{begin:6656,end:6687},{begin:11264,end:11359},{begin:11568,end:11647},{begin:19904,end:19967},{begin:43008,end:43055},{begin:65536,end:65663},{begin:65856,end:65935},{begin:66432,end:66463},{begin:66464,end:66527},{begin:66640,end:66687},{begin:66688,end:66735},{begin:67584,end:67647},{begin:68096,end:68191},{begin:119552,end:119647},{begin:73728,end:74751},{begin:119648,end:119679},{begin:7040,end:7103},{begin:7168,end:7247},{begin:7248,end:7295},{begin:43136,end:43231},{begin:43264,end:43311},{begin:43312,end:43359},{begin:43520,end:43615},{begin:65936,end:65999},{begin:66e3,end:66047},{begin:66208,end:66271},{begin:127024,end:127135}];function h(e){for(var t=0,r=o.length;t<r;t++){var i=o[t];if(e>=i.begin&&e<i.end)return t}return-1}function l(e){var t=o[13];return e>=t.begin&&e<t.end||(t=o[11],e>=t.begin&&e<t.end)}var c=i((function(e){e["¨"]=" ̈",e["¯"]=" ̄",e["´"]=" ́",e["µ"]="μ",e["¸"]=" ̧",e["IJ"]="IJ",e["ij"]="ij",e["Ŀ"]="L·",e["ŀ"]="l·",e["ʼn"]="ʼn",e["ſ"]="s",e["DŽ"]="DŽ",e["Dž"]="Dž",e["dž"]="dž",e["LJ"]="LJ",e["Lj"]="Lj",e["lj"]="lj",e["NJ"]="NJ",e["Nj"]="Nj",e["nj"]="nj",e["DZ"]="DZ",e["Dz"]="Dz",e["dz"]="dz",e["˘"]=" ̆",e["˙"]=" ̇",e["˚"]=" ̊",e["˛"]=" ̨",e["˜"]=" ̃",e["˝"]=" ̋",e["ͺ"]=" ͅ",e["΄"]=" ́",e["ϐ"]="β",e["ϑ"]="θ",e["ϒ"]="Υ",e["ϕ"]="φ",e["ϖ"]="π",e["ϰ"]="κ",e["ϱ"]="ρ",e["ϲ"]="ς",e["ϴ"]="Θ",e["ϵ"]="ε",e["Ϲ"]="Σ",e["և"]="եւ",e["ٵ"]="اٴ",e["ٶ"]="وٴ",e["ٷ"]="ۇٴ",e["ٸ"]="يٴ",e["ำ"]="ํา",e["ຳ"]="ໍາ",e["ໜ"]="ຫນ",e["ໝ"]="ຫມ",e["ཷ"]="ྲཱྀ",e["ཹ"]="ླཱྀ",e["ẚ"]="aʾ",e["᾽"]=" ̓",e["᾿"]=" ̓",e["῀"]=" ͂",e["῾"]=" ̔",e[" "]=" ",e[" "]=" ",e[" "]=" ",e[" "]=" ",e[" "]=" ",e[" "]=" ",e[" "]=" ",e[" "]=" ",e["‗"]=" ̳",e["․"]=".",e["‥"]="..",e["…"]="...",e["″"]="′′",e["‴"]="′′′",e["‶"]="‵‵",e["‷"]="‵‵‵",e["‼"]="!!",e["‾"]=" ̅",e["⁇"]="??",e["⁈"]="?!",e["⁉"]="!?",e["⁗"]="′′′′",e[" "]=" ",e["₨"]="Rs",e["℀"]="a/c",e["℁"]="a/s",e["℃"]="°C",e["℅"]="c/o",e["℆"]="c/u",e["ℇ"]="Ɛ",e["℉"]="°F",e["№"]="No",e["℡"]="TEL",e["ℵ"]="א",e["ℶ"]="ב",e["ℷ"]="ג",e["ℸ"]="ד",e["℻"]="FAX",e["Ⅰ"]="I",e["Ⅱ"]="II",e["Ⅲ"]="III",e["Ⅳ"]="IV",e["Ⅴ"]="V",e["Ⅵ"]="VI",e["Ⅶ"]="VII",e["Ⅷ"]="VIII",e["Ⅸ"]="IX",e["Ⅹ"]="X",e["Ⅺ"]="XI",e["Ⅻ"]="XII",e["Ⅼ"]="L",e["Ⅽ"]="C",e["Ⅾ"]="D",e["Ⅿ"]="M",e["ⅰ"]="i",e["ⅱ"]="ii",e["ⅲ"]="iii",e["ⅳ"]="iv",e["ⅴ"]="v",e["ⅵ"]="vi",e["ⅶ"]="vii",e["ⅷ"]="viii",e["ⅸ"]="ix",e["ⅹ"]="x",e["ⅺ"]="xi",e["ⅻ"]="xii",e["ⅼ"]="l",e["ⅽ"]="c",e["ⅾ"]="d",e["ⅿ"]="m",e["∬"]="∫∫",e["∭"]="∫∫∫",e["∯"]="∮∮",e["∰"]="∮∮∮",e["⑴"]="(1)",e["⑵"]="(2)",e["⑶"]="(3)",e["⑷"]="(4)",e["⑸"]="(5)",e["⑹"]="(6)",e["⑺"]="(7)",e["⑻"]="(8)",e["⑼"]="(9)",e["⑽"]="(10)",e["⑾"]="(11)",e["⑿"]="(12)",e["⒀"]="(13)",e["⒁"]="(14)",e["⒂"]="(15)",e["⒃"]="(16)",e["⒄"]="(17)",e["⒅"]="(18)",e["⒆"]="(19)",e["⒇"]="(20)",e["⒈"]="1.",e["⒉"]="2.",e["⒊"]="3.",e["⒋"]="4.",e["⒌"]="5.",e["⒍"]="6.",e["⒎"]="7.",e["⒏"]="8.",e["⒐"]="9.",e["⒑"]="10.",e["⒒"]="11.",e["⒓"]="12.",e["⒔"]="13.",e["⒕"]="14.",e["⒖"]="15.",e["⒗"]="16.",e["⒘"]="17.",e["⒙"]="18.",e["⒚"]="19.",e["⒛"]="20.",e["⒜"]="(a)",e["⒝"]="(b)",e["⒞"]="(c)",e["⒟"]="(d)",e["⒠"]="(e)",e["⒡"]="(f)",e["⒢"]="(g)",e["⒣"]="(h)",e["⒤"]="(i)",e["⒥"]="(j)",e["⒦"]="(k)",e["⒧"]="(l)",e["⒨"]="(m)",e["⒩"]="(n)",e["⒪"]="(o)",e["⒫"]="(p)",e["⒬"]="(q)",e["⒭"]="(r)",e["⒮"]="(s)",e["⒯"]="(t)",e["⒰"]="(u)",e["⒱"]="(v)",e["⒲"]="(w)",e["⒳"]="(x)",e["⒴"]="(y)",e["⒵"]="(z)",e["⨌"]="∫∫∫∫",e["⩴"]="::=",e["⩵"]="==",e["⩶"]="===",e["⺟"]="母",e["⻳"]="龟",e["⼀"]="一",e["⼁"]="丨",e["⼂"]="丶",e["⼃"]="丿",e["⼄"]="乙",e["⼅"]="亅",e["⼆"]="二",e["⼇"]="亠",e["⼈"]="人",e["⼉"]="儿",e["⼊"]="入",e["⼋"]="八",e["⼌"]="冂",e["⼍"]="冖",e["⼎"]="冫",e["⼏"]="几",e["⼐"]="凵",e["⼑"]="刀",e["⼒"]="力",e["⼓"]="勹",e["⼔"]="匕",e["⼕"]="匚",e["⼖"]="匸",e["⼗"]="十",e["⼘"]="卜",e["⼙"]="卩",e["⼚"]="厂",e["⼛"]="厶",e["⼜"]="又",e["⼝"]="口",e["⼞"]="囗",e["⼟"]="土",e["⼠"]="士",e["⼡"]="夂",e["⼢"]="夊",e["⼣"]="夕",e["⼤"]="大",e["⼥"]="女",e["⼦"]="子",e["⼧"]="宀",e["⼨"]="寸",e["⼩"]="小",e["⼪"]="尢",e["⼫"]="尸",e["⼬"]="屮",e["⼭"]="山",e["⼮"]="巛",e["⼯"]="工",e["⼰"]="己",e["⼱"]="巾",e["⼲"]="干",e["⼳"]="幺",e["⼴"]="广",e["⼵"]="廴",e["⼶"]="廾",e["⼷"]="弋",e["⼸"]="弓",e["⼹"]="彐",e["⼺"]="彡",e["⼻"]="彳",e["⼼"]="心",e["⼽"]="戈",e["⼾"]="戶",e["⼿"]="手",e["⽀"]="支",e["⽁"]="攴",e["⽂"]="文",e["⽃"]="斗",e["⽄"]="斤",e["⽅"]="方",e["⽆"]="无",e["⽇"]="日",e["⽈"]="曰",e["⽉"]="月",e["⽊"]="木",e["⽋"]="欠",e["⽌"]="止",e["⽍"]="歹",e["⽎"]="殳",e["⽏"]="毋",e["⽐"]="比",e["⽑"]="毛",e["⽒"]="氏",e["⽓"]="气",e["⽔"]="水",e["⽕"]="火",e["⽖"]="爪",e["⽗"]="父",e["⽘"]="爻",e["⽙"]="爿",e["⽚"]="片",e["⽛"]="牙",e["⽜"]="牛",e["⽝"]="犬",e["⽞"]="玄",e["⽟"]="玉",e["⽠"]="瓜",e["⽡"]="瓦",e["⽢"]="甘",e["⽣"]="生",e["⽤"]="用",e["⽥"]="田",e["⽦"]="疋",e["⽧"]="疒",e["⽨"]="癶",e["⽩"]="白",e["⽪"]="皮",e["⽫"]="皿",e["⽬"]="目",e["⽭"]="矛",e["⽮"]="矢",e["⽯"]="石",e["⽰"]="示",e["⽱"]="禸",e["⽲"]="禾",e["⽳"]="穴",e["⽴"]="立",e["⽵"]="竹",e["⽶"]="米",e["⽷"]="糸",e["⽸"]="缶",e["⽹"]="网",e["⽺"]="羊",e["⽻"]="羽",e["⽼"]="老",e["⽽"]="而",e["⽾"]="耒",e["⽿"]="耳",e["⾀"]="聿",e["⾁"]="肉",e["⾂"]="臣",e["⾃"]="自",e["⾄"]="至",e["⾅"]="臼",e["⾆"]="舌",e["⾇"]="舛",e["⾈"]="舟",e["⾉"]="艮",e["⾊"]="色",e["⾋"]="艸",e["⾌"]="虍",e["⾍"]="虫",e["⾎"]="血",e["⾏"]="行",e["⾐"]="衣",e["⾑"]="襾",e["⾒"]="見",e["⾓"]="角",e["⾔"]="言",e["⾕"]="谷",e["⾖"]="豆",e["⾗"]="豕",e["⾘"]="豸",e["⾙"]="貝",e["⾚"]="赤",e["⾛"]="走",e["⾜"]="足",e["⾝"]="身",e["⾞"]="車",e["⾟"]="辛",e["⾠"]="辰",e["⾡"]="辵",e["⾢"]="邑",e["⾣"]="酉",e["⾤"]="釆",e["⾥"]="里",e["⾦"]="金",e["⾧"]="長",e["⾨"]="門",e["⾩"]="阜",e["⾪"]="隶",e["⾫"]="隹",e["⾬"]="雨",e["⾭"]="靑",e["⾮"]="非",e["⾯"]="面",e["⾰"]="革",e["⾱"]="韋",e["⾲"]="韭",e["⾳"]="音",e["⾴"]="頁",e["⾵"]="風",e["⾶"]="飛",e["⾷"]="食",e["⾸"]="首",e["⾹"]="香",e["⾺"]="馬",e["⾻"]="骨",e["⾼"]="高",e["⾽"]="髟",e["⾾"]="鬥",e["⾿"]="鬯",e["⿀"]="鬲",e["⿁"]="鬼",e["⿂"]="魚",e["⿃"]="鳥",e["⿄"]="鹵",e["⿅"]="鹿",e["⿆"]="麥",e["⿇"]="麻",e["⿈"]="黃",e["⿉"]="黍",e["⿊"]="黑",e["⿋"]="黹",e["⿌"]="黽",e["⿍"]="鼎",e["⿎"]="鼓",e["⿏"]="鼠",e["⿐"]="鼻",e["⿑"]="齊",e["⿒"]="齒",e["⿓"]="龍",e["⿔"]="龜",e["⿕"]="龠",e["〶"]="〒",e["〸"]="十",e["〹"]="卄",e["〺"]="卅",e["゛"]=" ゙",e["゜"]=" ゚",e["ㄱ"]="ᄀ",e["ㄲ"]="ᄁ",e["ㄳ"]="ᆪ",e["ㄴ"]="ᄂ",e["ㄵ"]="ᆬ",e["ㄶ"]="ᆭ",e["ㄷ"]="ᄃ",e["ㄸ"]="ᄄ",e["ㄹ"]="ᄅ",e["ㄺ"]="ᆰ",e["ㄻ"]="ᆱ",e["ㄼ"]="ᆲ",e["ㄽ"]="ᆳ",e["ㄾ"]="ᆴ",e["ㄿ"]="ᆵ",e["ㅀ"]="ᄚ",e["ㅁ"]="ᄆ",e["ㅂ"]="ᄇ",e["ㅃ"]="ᄈ",e["ㅄ"]="ᄡ",e["ㅅ"]="ᄉ",e["ㅆ"]="ᄊ",e["ㅇ"]="ᄋ",e["ㅈ"]="ᄌ",e["ㅉ"]="ᄍ",e["ㅊ"]="ᄎ",e["ㅋ"]="ᄏ",e["ㅌ"]="ᄐ",e["ㅍ"]="ᄑ",e["ㅎ"]="ᄒ",e["ㅏ"]="ᅡ",e["ㅐ"]="ᅢ",e["ㅑ"]="ᅣ",e["ㅒ"]="ᅤ",e["ㅓ"]="ᅥ",e["ㅔ"]="ᅦ",e["ㅕ"]="ᅧ",e["ㅖ"]="ᅨ",e["ㅗ"]="ᅩ",e["ㅘ"]="ᅪ",e["ㅙ"]="ᅫ",e["ㅚ"]="ᅬ",e["ㅛ"]="ᅭ",e["ㅜ"]="ᅮ",e["ㅝ"]="ᅯ",e["ㅞ"]="ᅰ",e["ㅟ"]="ᅱ",e["ㅠ"]="ᅲ",e["ㅡ"]="ᅳ",e["ㅢ"]="ᅴ",e["ㅣ"]="ᅵ",e["ㅤ"]="ᅠ",e["ㅥ"]="ᄔ",e["ㅦ"]="ᄕ",e["ㅧ"]="ᇇ",e["ㅨ"]="ᇈ",e["ㅩ"]="ᇌ",e["ㅪ"]="ᇎ",e["ㅫ"]="ᇓ",e["ㅬ"]="ᇗ",e["ㅭ"]="ᇙ",e["ㅮ"]="ᄜ",e["ㅯ"]="ᇝ",e["ㅰ"]="ᇟ",e["ㅱ"]="ᄝ",e["ㅲ"]="ᄞ",e["ㅳ"]="ᄠ",e["ㅴ"]="ᄢ",e["ㅵ"]="ᄣ",e["ㅶ"]="ᄧ",e["ㅷ"]="ᄩ",e["ㅸ"]="ᄫ",e["ㅹ"]="ᄬ",e["ㅺ"]="ᄭ",e["ㅻ"]="ᄮ",e["ㅼ"]="ᄯ",e["ㅽ"]="ᄲ",e["ㅾ"]="ᄶ",e["ㅿ"]="ᅀ",e["ㆀ"]="ᅇ",e["ㆁ"]="ᅌ",e["ㆂ"]="ᇱ",e["ㆃ"]="ᇲ",e["ㆄ"]="ᅗ",e["ㆅ"]="ᅘ",e["ㆆ"]="ᅙ",e["ㆇ"]="ᆄ",e["ㆈ"]="ᆅ",e["ㆉ"]="ᆈ",e["ㆊ"]="ᆑ",e["ㆋ"]="ᆒ",e["ㆌ"]="ᆔ",e["ㆍ"]="ᆞ",e["ㆎ"]="ᆡ",e["㈀"]="(ᄀ)",e["㈁"]="(ᄂ)",e["㈂"]="(ᄃ)",e["㈃"]="(ᄅ)",e["㈄"]="(ᄆ)",e["㈅"]="(ᄇ)",e["㈆"]="(ᄉ)",e["㈇"]="(ᄋ)",e["㈈"]="(ᄌ)",e["㈉"]="(ᄎ)",e["㈊"]="(ᄏ)",e["㈋"]="(ᄐ)",e["㈌"]="(ᄑ)",e["㈍"]="(ᄒ)",e["㈎"]="(가)",e["㈏"]="(나)",e["㈐"]="(다)",e["㈑"]="(라)",e["㈒"]="(마)",e["㈓"]="(바)",e["㈔"]="(사)",e["㈕"]="(아)",e["㈖"]="(자)",e["㈗"]="(차)",e["㈘"]="(카)",e["㈙"]="(타)",e["㈚"]="(파)",e["㈛"]="(하)",e["㈜"]="(주)",e["㈝"]="(오전)",e["㈞"]="(오후)",e["㈠"]="(一)",e["㈡"]="(二)",e["㈢"]="(三)",e["㈣"]="(四)",e["㈤"]="(五)",e["㈥"]="(六)",e["㈦"]="(七)",e["㈧"]="(八)",e["㈨"]="(九)",e["㈩"]="(十)",e["㈪"]="(月)",e["㈫"]="(火)",e["㈬"]="(水)",e["㈭"]="(木)",e["㈮"]="(金)",e["㈯"]="(土)",e["㈰"]="(日)",e["㈱"]="(株)",e["㈲"]="(有)",e["㈳"]="(社)",e["㈴"]="(名)",e["㈵"]="(特)",e["㈶"]="(財)",e["㈷"]="(祝)",e["㈸"]="(労)",e["㈹"]="(代)",e["㈺"]="(呼)",e["㈻"]="(学)",e["㈼"]="(監)",e["㈽"]="(企)",e["㈾"]="(資)",e["㈿"]="(協)",e["㉀"]="(祭)",e["㉁"]="(休)",e["㉂"]="(自)",e["㉃"]="(至)",e["㋀"]="1月",e["㋁"]="2月",e["㋂"]="3月",e["㋃"]="4月",e["㋄"]="5月",e["㋅"]="6月",e["㋆"]="7月",e["㋇"]="8月",e["㋈"]="9月",e["㋉"]="10月",e["㋊"]="11月",e["㋋"]="12月",e["㍘"]="0点",e["㍙"]="1点",e["㍚"]="2点",e["㍛"]="3点",e["㍜"]="4点",e["㍝"]="5点",e["㍞"]="6点",e["㍟"]="7点",e["㍠"]="8点",e["㍡"]="9点",e["㍢"]="10点",e["㍣"]="11点",e["㍤"]="12点",e["㍥"]="13点",e["㍦"]="14点",e["㍧"]="15点",e["㍨"]="16点",e["㍩"]="17点",e["㍪"]="18点",e["㍫"]="19点",e["㍬"]="20点",e["㍭"]="21点",e["㍮"]="22点",e["㍯"]="23点",e["㍰"]="24点",e["㏠"]="1日",e["㏡"]="2日",e["㏢"]="3日",e["㏣"]="4日",e["㏤"]="5日",e["㏥"]="6日",e["㏦"]="7日",e["㏧"]="8日",e["㏨"]="9日",e["㏩"]="10日",e["㏪"]="11日",e["㏫"]="12日",e["㏬"]="13日",e["㏭"]="14日",e["㏮"]="15日",e["㏯"]="16日",e["㏰"]="17日",e["㏱"]="18日",e["㏲"]="19日",e["㏳"]="20日",e["㏴"]="21日",e["㏵"]="22日",e["㏶"]="23日",e["㏷"]="24日",e["㏸"]="25日",e["㏹"]="26日",e["㏺"]="27日",e["㏻"]="28日",e["㏼"]="29日",e["㏽"]="30日",e["㏾"]="31日",e["ff"]="ff",e["fi"]="fi",e["fl"]="fl",e["ffi"]="ffi",e["ffl"]="ffl",e["ſt"]="ſt",e["st"]="st",e["ﬓ"]="մն",e["ﬔ"]="մե",e["ﬕ"]="մի",e["ﬖ"]="վն",e["ﬗ"]="մխ",e["ﭏ"]="אל",e["ﭐ"]="ٱ",e["ﭑ"]="ٱ",e["ﭒ"]="ٻ",e["ﭓ"]="ٻ",e["ﭔ"]="ٻ",e["ﭕ"]="ٻ",e["ﭖ"]="پ",e["ﭗ"]="پ",e["ﭘ"]="پ",e["ﭙ"]="پ",e["ﭚ"]="ڀ",e["ﭛ"]="ڀ",e["ﭜ"]="ڀ",e["ﭝ"]="ڀ",e["ﭞ"]="ٺ",e["ﭟ"]="ٺ",e["ﭠ"]="ٺ",e["ﭡ"]="ٺ",e["ﭢ"]="ٿ",e["ﭣ"]="ٿ",e["ﭤ"]="ٿ",e["ﭥ"]="ٿ",e["ﭦ"]="ٹ",e["ﭧ"]="ٹ",e["ﭨ"]="ٹ",e["ﭩ"]="ٹ",e["ﭪ"]="ڤ",e["ﭫ"]="ڤ",e["ﭬ"]="ڤ",e["ﭭ"]="ڤ",e["ﭮ"]="ڦ",e["ﭯ"]="ڦ",e["ﭰ"]="ڦ",e["ﭱ"]="ڦ",e["ﭲ"]="ڄ",e["ﭳ"]="ڄ",e["ﭴ"]="ڄ",e["ﭵ"]="ڄ",e["ﭶ"]="ڃ",e["ﭷ"]="ڃ",e["ﭸ"]="ڃ",e["ﭹ"]="ڃ",e["ﭺ"]="چ",e["ﭻ"]="چ",e["ﭼ"]="چ",e["ﭽ"]="چ",e["ﭾ"]="ڇ",e["ﭿ"]="ڇ",e["ﮀ"]="ڇ",e["ﮁ"]="ڇ",e["ﮂ"]="ڍ",e["ﮃ"]="ڍ",e["ﮄ"]="ڌ",e["ﮅ"]="ڌ",e["ﮆ"]="ڎ",e["ﮇ"]="ڎ",e["ﮈ"]="ڈ",e["ﮉ"]="ڈ",e["ﮊ"]="ژ",e["ﮋ"]="ژ",e["ﮌ"]="ڑ",e["ﮍ"]="ڑ",e["ﮎ"]="ک",e["ﮏ"]="ک",e["ﮐ"]="ک",e["ﮑ"]="ک",e["ﮒ"]="گ",e["ﮓ"]="گ",e["ﮔ"]="گ",e["ﮕ"]="گ",e["ﮖ"]="ڳ",e["ﮗ"]="ڳ",e["ﮘ"]="ڳ",e["ﮙ"]="ڳ",e["ﮚ"]="ڱ",e["ﮛ"]="ڱ",e["ﮜ"]="ڱ",e["ﮝ"]="ڱ",e["ﮞ"]="ں",e["ﮟ"]="ں",e["ﮠ"]="ڻ",e["ﮡ"]="ڻ",e["ﮢ"]="ڻ",e["ﮣ"]="ڻ",e["ﮤ"]="ۀ",e["ﮥ"]="ۀ",e["ﮦ"]="ہ",e["ﮧ"]="ہ",e["ﮨ"]="ہ",e["ﮩ"]="ہ",e["ﮪ"]="ھ",e["ﮫ"]="ھ",e["ﮬ"]="ھ",e["ﮭ"]="ھ",e["ﮮ"]="ے",e["ﮯ"]="ے",e["ﮰ"]="ۓ",e["ﮱ"]="ۓ",e["ﯓ"]="ڭ",e["ﯔ"]="ڭ",e["ﯕ"]="ڭ",e["ﯖ"]="ڭ",e["ﯗ"]="ۇ",e["ﯘ"]="ۇ",e["ﯙ"]="ۆ",e["ﯚ"]="ۆ",e["ﯛ"]="ۈ",e["ﯜ"]="ۈ",e["ﯝ"]="ٷ",e["ﯞ"]="ۋ",e["ﯟ"]="ۋ",e["ﯠ"]="ۅ",e["ﯡ"]="ۅ",e["ﯢ"]="ۉ",e["ﯣ"]="ۉ",e["ﯤ"]="ې",e["ﯥ"]="ې",e["ﯦ"]="ې",e["ﯧ"]="ې",e["ﯨ"]="ى",e["ﯩ"]="ى",e["ﯪ"]="ئا",e["ﯫ"]="ئا",e["ﯬ"]="ئە",e["ﯭ"]="ئە",e["ﯮ"]="ئو",e["ﯯ"]="ئو",e["ﯰ"]="ئۇ",e["ﯱ"]="ئۇ",e["ﯲ"]="ئۆ",e["ﯳ"]="ئۆ",e["ﯴ"]="ئۈ",e["ﯵ"]="ئۈ",e["ﯶ"]="ئې";e["ﯷ"]="ئې",e["ﯸ"]="ئې",e["ﯹ"]="ئى",e["ﯺ"]="ئى",e["ﯻ"]="ئى",e["ﯼ"]="ی",e["ﯽ"]="ی",e["ﯾ"]="ی",e["ﯿ"]="ی",e["ﰀ"]="ئج",e["ﰁ"]="ئح",e["ﰂ"]="ئم",e["ﰃ"]="ئى",e["ﰄ"]="ئي",e["ﰅ"]="بج",e["ﰆ"]="بح",e["ﰇ"]="بخ",e["ﰈ"]="بم",e["ﰉ"]="بى",e["ﰊ"]="بي",e["ﰋ"]="تج",e["ﰌ"]="تح",e["ﰍ"]="تخ",e["ﰎ"]="تم",e["ﰏ"]="تى",e["ﰐ"]="تي",e["ﰑ"]="ثج",e["ﰒ"]="ثم",e["ﰓ"]="ثى",e["ﰔ"]="ثي",e["ﰕ"]="جح",e["ﰖ"]="جم",e["ﰗ"]="حج",e["ﰘ"]="حم",e["ﰙ"]="خج",e["ﰚ"]="خح",e["ﰛ"]="خم",e["ﰜ"]="سج",e["ﰝ"]="سح",e["ﰞ"]="سخ",e["ﰟ"]="سم",e["ﰠ"]="صح",e["ﰡ"]="صم",e["ﰢ"]="ضج",e["ﰣ"]="ضح",e["ﰤ"]="ضخ",e["ﰥ"]="ضم",e["ﰦ"]="طح",e["ﰧ"]="طم",e["ﰨ"]="ظم",e["ﰩ"]="عج",e["ﰪ"]="عم",e["ﰫ"]="غج",e["ﰬ"]="غم",e["ﰭ"]="فج",e["ﰮ"]="فح",e["ﰯ"]="فخ",e["ﰰ"]="فم",e["ﰱ"]="فى",e["ﰲ"]="في",e["ﰳ"]="قح",e["ﰴ"]="قم",e["ﰵ"]="قى",e["ﰶ"]="قي",e["ﰷ"]="كا",e["ﰸ"]="كج",e["ﰹ"]="كح",e["ﰺ"]="كخ",e["ﰻ"]="كل",e["ﰼ"]="كم",e["ﰽ"]="كى",e["ﰾ"]="كي",e["ﰿ"]="لج",e["ﱀ"]="لح",e["ﱁ"]="لخ",e["ﱂ"]="لم",e["ﱃ"]="لى",e["ﱄ"]="لي",e["ﱅ"]="مج",e["ﱆ"]="مح",e["ﱇ"]="مخ",e["ﱈ"]="مم",e["ﱉ"]="مى",e["ﱊ"]="مي",e["ﱋ"]="نج",e["ﱌ"]="نح",e["ﱍ"]="نخ",e["ﱎ"]="نم",e["ﱏ"]="نى",e["ﱐ"]="ني",e["ﱑ"]="هج",e["ﱒ"]="هم",e["ﱓ"]="هى",e["ﱔ"]="هي",e["ﱕ"]="يج",e["ﱖ"]="يح",e["ﱗ"]="يخ",e["ﱘ"]="يم",e["ﱙ"]="يى",e["ﱚ"]="يي",e["ﱛ"]="ذٰ",e["ﱜ"]="رٰ",e["ﱝ"]="ىٰ",e["ﱞ"]=" ٌّ",e["ﱟ"]=" ٍّ",e["ﱠ"]=" َّ",e["ﱡ"]=" ُّ",e["ﱢ"]=" ِّ",e["ﱣ"]=" ّٰ",e["ﱤ"]="ئر",e["ﱥ"]="ئز",e["ﱦ"]="ئم",e["ﱧ"]="ئن",e["ﱨ"]="ئى",e["ﱩ"]="ئي",e["ﱪ"]="بر",e["ﱫ"]="بز",e["ﱬ"]="بم",e["ﱭ"]="بن",e["ﱮ"]="بى",e["ﱯ"]="بي",e["ﱰ"]="تر",e["ﱱ"]="تز",e["ﱲ"]="تم",e["ﱳ"]="تن",e["ﱴ"]="تى",e["ﱵ"]="تي",e["ﱶ"]="ثر",e["ﱷ"]="ثز",e["ﱸ"]="ثم",e["ﱹ"]="ثن",e["ﱺ"]="ثى",e["ﱻ"]="ثي",e["ﱼ"]="فى",e["ﱽ"]="في",e["ﱾ"]="قى",e["ﱿ"]="قي",e["ﲀ"]="كا",e["ﲁ"]="كل",e["ﲂ"]="كم",e["ﲃ"]="كى",e["ﲄ"]="كي",e["ﲅ"]="لم",e["ﲆ"]="لى",e["ﲇ"]="لي",e["ﲈ"]="ما",e["ﲉ"]="مم",e["ﲊ"]="نر",e["ﲋ"]="نز",e["ﲌ"]="نم",e["ﲍ"]="نن",e["ﲎ"]="نى",e["ﲏ"]="ني",e["ﲐ"]="ىٰ",e["ﲑ"]="ير",e["ﲒ"]="يز",e["ﲓ"]="يم",e["ﲔ"]="ين",e["ﲕ"]="يى",e["ﲖ"]="يي",e["ﲗ"]="ئج",e["ﲘ"]="ئح",e["ﲙ"]="ئخ",e["ﲚ"]="ئم",e["ﲛ"]="ئه",e["ﲜ"]="بج",e["ﲝ"]="بح",e["ﲞ"]="بخ",e["ﲟ"]="بم",e["ﲠ"]="به",e["ﲡ"]="تج",e["ﲢ"]="تح",e["ﲣ"]="تخ",e["ﲤ"]="تم",e["ﲥ"]="ته",e["ﲦ"]="ثم",e["ﲧ"]="جح",e["ﲨ"]="جم",e["ﲩ"]="حج",e["ﲪ"]="حم",e["ﲫ"]="خج",e["ﲬ"]="خم",e["ﲭ"]="سج",e["ﲮ"]="سح",e["ﲯ"]="سخ",e["ﲰ"]="سم",e["ﲱ"]="صح",e["ﲲ"]="صخ",e["ﲳ"]="صم",e["ﲴ"]="ضج",e["ﲵ"]="ضح",e["ﲶ"]="ضخ",e["ﲷ"]="ضم",e["ﲸ"]="طح",e["ﲹ"]="ظم",e["ﲺ"]="عج",e["ﲻ"]="عم",e["ﲼ"]="غج",e["ﲽ"]="غم",e["ﲾ"]="فج",e["ﲿ"]="فح",e["ﳀ"]="فخ",e["ﳁ"]="فم",e["ﳂ"]="قح",e["ﳃ"]="قم",e["ﳄ"]="كج",e["ﳅ"]="كح",e["ﳆ"]="كخ",e["ﳇ"]="كل",e["ﳈ"]="كم",e["ﳉ"]="لج",e["ﳊ"]="لح",e["ﳋ"]="لخ",e["ﳌ"]="لم",e["ﳍ"]="له",e["ﳎ"]="مج",e["ﳏ"]="مح",e["ﳐ"]="مخ",e["ﳑ"]="مم",e["ﳒ"]="نج",e["ﳓ"]="نح",e["ﳔ"]="نخ",e["ﳕ"]="نم",e["ﳖ"]="نه",e["ﳗ"]="هج",e["ﳘ"]="هم",e["ﳙ"]="هٰ",e["ﳚ"]="يج",e["ﳛ"]="يح",e["ﳜ"]="يخ",e["ﳝ"]="يم",e["ﳞ"]="يه",e["ﳟ"]="ئم",e["ﳠ"]="ئه",e["ﳡ"]="بم",e["ﳢ"]="به",e["ﳣ"]="تم",e["ﳤ"]="ته",e["ﳥ"]="ثم",e["ﳦ"]="ثه",e["ﳧ"]="سم",e["ﳨ"]="سه",e["ﳩ"]="شم",e["ﳪ"]="شه",e["ﳫ"]="كل",e["ﳬ"]="كم",e["ﳭ"]="لم",e["ﳮ"]="نم",e["ﳯ"]="نه",e["ﳰ"]="يم",e["ﳱ"]="يه",e["ﳲ"]="ـَّ",e["ﳳ"]="ـُّ",e["ﳴ"]="ـِّ",e["ﳵ"]="طى",e["ﳶ"]="طي",e["ﳷ"]="عى",e["ﳸ"]="عي",e["ﳹ"]="غى",e["ﳺ"]="غي",e["ﳻ"]="سى",e["ﳼ"]="سي",e["ﳽ"]="شى",e["ﳾ"]="شي",e["ﳿ"]="حى",e["ﴀ"]="حي",e["ﴁ"]="جى",e["ﴂ"]="جي",e["ﴃ"]="خى",e["ﴄ"]="خي",e["ﴅ"]="صى",e["ﴆ"]="صي",e["ﴇ"]="ضى",e["ﴈ"]="ضي",e["ﴉ"]="شج",e["ﴊ"]="شح",e["ﴋ"]="شخ",e["ﴌ"]="شم",e["ﴍ"]="شر",e["ﴎ"]="سر",e["ﴏ"]="صر",e["ﴐ"]="ضر",e["ﴑ"]="طى",e["ﴒ"]="طي",e["ﴓ"]="عى",e["ﴔ"]="عي",e["ﴕ"]="غى",e["ﴖ"]="غي",e["ﴗ"]="سى",e["ﴘ"]="سي",e["ﴙ"]="شى",e["ﴚ"]="شي",e["ﴛ"]="حى",e["ﴜ"]="حي",e["ﴝ"]="جى",e["ﴞ"]="جي",e["ﴟ"]="خى",e["ﴠ"]="خي",e["ﴡ"]="صى",e["ﴢ"]="صي",e["ﴣ"]="ضى",e["ﴤ"]="ضي",e["ﴥ"]="شج",e["ﴦ"]="شح",e["ﴧ"]="شخ",e["ﴨ"]="شم",e["ﴩ"]="شر",e["ﴪ"]="سر",e["ﴫ"]="صر",e["ﴬ"]="ضر",e["ﴭ"]="شج",e["ﴮ"]="شح",e["ﴯ"]="شخ",e["ﴰ"]="شم",e["ﴱ"]="سه",e["ﴲ"]="شه",e["ﴳ"]="طم",e["ﴴ"]="سج",e["ﴵ"]="سح",e["ﴶ"]="سخ",e["ﴷ"]="شج",e["ﴸ"]="شح",e["ﴹ"]="شخ",e["ﴺ"]="طم",e["ﴻ"]="ظم",e["ﴼ"]="اً",e["ﴽ"]="اً",e["ﵐ"]="تجم",e["ﵑ"]="تحج",e["ﵒ"]="تحج",e["ﵓ"]="تحم",e["ﵔ"]="تخم",e["ﵕ"]="تمج",e["ﵖ"]="تمح",e["ﵗ"]="تمخ",e["ﵘ"]="جمح",e["ﵙ"]="جمح",e["ﵚ"]="حمي",e["ﵛ"]="حمى",e["ﵜ"]="سحج",e["ﵝ"]="سجح",e["ﵞ"]="سجى",e["ﵟ"]="سمح",e["ﵠ"]="سمح",e["ﵡ"]="سمج",e["ﵢ"]="سمم",e["ﵣ"]="سمم",e["ﵤ"]="صحح",e["ﵥ"]="صحح",e["ﵦ"]="صمم",e["ﵧ"]="شحم",e["ﵨ"]="شحم",e["ﵩ"]="شجي",e["ﵪ"]="شمخ",e["ﵫ"]="شمخ",e["ﵬ"]="شمم",e["ﵭ"]="شمم",e["ﵮ"]="ضحى",e["ﵯ"]="ضخم",e["ﵰ"]="ضخم",e["ﵱ"]="طمح",e["ﵲ"]="طمح",e["ﵳ"]="طمم",e["ﵴ"]="طمي",e["ﵵ"]="عجم",e["ﵶ"]="عمم",e["ﵷ"]="عمم",e["ﵸ"]="عمى",e["ﵹ"]="غمم",e["ﵺ"]="غمي",e["ﵻ"]="غمى",e["ﵼ"]="فخم",e["ﵽ"]="فخم",e["ﵾ"]="قمح",e["ﵿ"]="قمم",e["ﶀ"]="لحم",e["ﶁ"]="لحي",e["ﶂ"]="لحى",e["ﶃ"]="لجج",e["ﶄ"]="لجج",e["ﶅ"]="لخم",e["ﶆ"]="لخم",e["ﶇ"]="لمح",e["ﶈ"]="لمح",e["ﶉ"]="محج",e["ﶊ"]="محم",e["ﶋ"]="محي",e["ﶌ"]="مجح",e["ﶍ"]="مجم",e["ﶎ"]="مخج",e["ﶏ"]="مخم",e["ﶒ"]="مجخ",e["ﶓ"]="همج",e["ﶔ"]="همم",e["ﶕ"]="نحم",e["ﶖ"]="نحى",e["ﶗ"]="نجم",e["ﶘ"]="نجم",e["ﶙ"]="نجى",e["ﶚ"]="نمي",e["ﶛ"]="نمى",e["ﶜ"]="يمم",e["ﶝ"]="يمم",e["ﶞ"]="بخي",e["ﶟ"]="تجي",e["ﶠ"]="تجى",e["ﶡ"]="تخي",e["ﶢ"]="تخى",e["ﶣ"]="تمي",e["ﶤ"]="تمى",e["ﶥ"]="جمي",e["ﶦ"]="جحى",e["ﶧ"]="جمى",e["ﶨ"]="سخى",e["ﶩ"]="صحي",e["ﶪ"]="شحي",e["ﶫ"]="ضحي",e["ﶬ"]="لجي",e["ﶭ"]="لمي",e["ﶮ"]="يحي",e["ﶯ"]="يجي",e["ﶰ"]="يمي",e["ﶱ"]="ممي",e["ﶲ"]="قمي",e["ﶳ"]="نحي",e["ﶴ"]="قمح",e["ﶵ"]="لحم",e["ﶶ"]="عمي",e["ﶷ"]="كمي",e["ﶸ"]="نجح",e["ﶹ"]="مخي",e["ﶺ"]="لجم",e["ﶻ"]="كمم",e["ﶼ"]="لجم",e["ﶽ"]="نجح",e["ﶾ"]="جحي",e["ﶿ"]="حجي",e["ﷀ"]="مجي",e["ﷁ"]="فمي",e["ﷂ"]="بحي",e["ﷃ"]="كمم",e["ﷄ"]="عجم",e["ﷅ"]="صمم",e["ﷆ"]="سخي",e["ﷇ"]="نجي",e["﹉"]="‾",e["﹊"]="‾",e["﹋"]="‾",e["﹌"]="‾",e["﹍"]="_",e["﹎"]="_",e["﹏"]="_",e["ﺀ"]="ء",e["ﺁ"]="آ",e["ﺂ"]="آ",e["ﺃ"]="أ",e["ﺄ"]="أ",e["ﺅ"]="ؤ",e["ﺆ"]="ؤ",e["ﺇ"]="إ",e["ﺈ"]="إ",e["ﺉ"]="ئ",e["ﺊ"]="ئ",e["ﺋ"]="ئ",e["ﺌ"]="ئ",e["ﺍ"]="ا",e["ﺎ"]="ا",e["ﺏ"]="ب",e["ﺐ"]="ب",e["ﺑ"]="ب",e["ﺒ"]="ب",e["ﺓ"]="ة",e["ﺔ"]="ة",e["ﺕ"]="ت",e["ﺖ"]="ت",e["ﺗ"]="ت",e["ﺘ"]="ت",e["ﺙ"]="ث",e["ﺚ"]="ث",e["ﺛ"]="ث",e["ﺜ"]="ث",e["ﺝ"]="ج",e["ﺞ"]="ج",e["ﺟ"]="ج",e["ﺠ"]="ج",e["ﺡ"]="ح",e["ﺢ"]="ح",e["ﺣ"]="ح",e["ﺤ"]="ح",e["ﺥ"]="خ",e["ﺦ"]="خ",e["ﺧ"]="خ",e["ﺨ"]="خ",e["ﺩ"]="د",e["ﺪ"]="د",e["ﺫ"]="ذ",e["ﺬ"]="ذ",e["ﺭ"]="ر",e["ﺮ"]="ر",e["ﺯ"]="ز",e["ﺰ"]="ز",e["ﺱ"]="س",e["ﺲ"]="س",e["ﺳ"]="س",e["ﺴ"]="س",e["ﺵ"]="ش",e["ﺶ"]="ش",e["ﺷ"]="ش",e["ﺸ"]="ش",e["ﺹ"]="ص",e["ﺺ"]="ص",e["ﺻ"]="ص",e["ﺼ"]="ص",e["ﺽ"]="ض",e["ﺾ"]="ض",e["ﺿ"]="ض",e["ﻀ"]="ض",e["ﻁ"]="ط",e["ﻂ"]="ط",e["ﻃ"]="ط",e["ﻄ"]="ط",e["ﻅ"]="ظ",e["ﻆ"]="ظ",e["ﻇ"]="ظ",e["ﻈ"]="ظ",e["ﻉ"]="ع",e["ﻊ"]="ع",e["ﻋ"]="ع",e["ﻌ"]="ع",e["ﻍ"]="غ",e["ﻎ"]="غ",e["ﻏ"]="غ",e["ﻐ"]="غ",e["ﻑ"]="ف",e["ﻒ"]="ف",e["ﻓ"]="ف",e["ﻔ"]="ف",e["ﻕ"]="ق",e["ﻖ"]="ق",e["ﻗ"]="ق",e["ﻘ"]="ق",e["ﻙ"]="ك",e["ﻚ"]="ك",e["ﻛ"]="ك",e["ﻜ"]="ك",e["ﻝ"]="ل",e["ﻞ"]="ل",e["ﻟ"]="ل",e["ﻠ"]="ل",e["ﻡ"]="م",e["ﻢ"]="م",e["ﻣ"]="م",e["ﻤ"]="م",e["ﻥ"]="ن",e["ﻦ"]="ن",e["ﻧ"]="ن",e["ﻨ"]="ن",e["ﻩ"]="ه",e["ﻪ"]="ه",e["ﻫ"]="ه",e["ﻬ"]="ه",e["ﻭ"]="و",e["ﻮ"]="و",e["ﻯ"]="ى",e["ﻰ"]="ى",e["ﻱ"]="ي",e["ﻲ"]="ي",e["ﻳ"]="ي",e["ﻴ"]="ي",e["ﻵ"]="لآ",e["ﻶ"]="لآ",e["ﻷ"]="لأ",e["ﻸ"]="لأ",e["ﻹ"]="لإ",e["ﻺ"]="لإ",e["ﻻ"]="لا",e["ﻼ"]="لا"}));function u(e){var t=e.length;if(t<=1||!l(e.charCodeAt(0)))return e;for(var r="",i=t-1;i>=0;i--)r+=e[i];return r}t.mapSpecialUnicodeValues=a,t.reverseIfRtl=u,t.getUnicodeRangeFor=h,t.getNormalizedUnicodes=c,t.getUnicodeForGlyph=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FontRendererFactory=void 0;var i=r(2),n=r(31),a=r(34),s=r(33),o=r(12),h=function(){function e(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]}function t(e,t){return e[t]<<8|e[t+1]}function r(e){const t=e.length;let r=32768;return t<1240?r=107:t<33900&&(r=1131),r}function h(r,n,a){var s,o,h,l=1===t(r,n+2)?e(r,n+8):e(r,n+16),c=t(r,n+l);if(4===c){t(r,n+l+2);var u=t(r,n+l+6)>>1;for(o=n+l+14,s=[],h=0;h<u;h++,o+=2)s[h]={end:t(r,o)};for(o+=2,h=0;h<u;h++,o+=2)s[h].start=t(r,o);for(h=0;h<u;h++,o+=2)s[h].idDelta=t(r,o);for(h=0;h<u;h++,o+=2){var f=t(r,o);if(0!==f){s[h].ids=[];for(var d=0,p=s[h].end-s[h].start+1;d<p;d++)s[h].ids[d]=t(r,o+f),f+=2}}return s}if(12===c){e(r,n+l+4);var m=e(r,n+l+12);for(o=n+l+16,s=[],h=0;h<m;h++)s.push({start:e(r,o),end:e(r,o+4),idDelta:e(r,o+8)-e(r,o)}),o+=12;return s}throw new i.FormatError("unsupported cmap: "+c)}function l(e,t,r,i){var a={},s=new n.CFFParser(new o.Stream(e,t,r-t),a,i),h=s.parse();return{glyphs:h.charStrings.objects,subrs:h.topDict.privateDict&&h.topDict.privateDict.subrsIndex&&h.topDict.privateDict.subrsIndex.objects,gsubrs:h.globalSubrIndex&&h.globalSubrIndex.objects,isCFFCIDFont:h.isCIDFont,fdSelect:h.fdSelect,fdArray:h.fdArray}}function c(e,t,r){var i,n;r?(i=4,n=function(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]}):(i=2,n=function(e,t){return e[t]<<9|e[t+1]<<1});for(var a=[],s=n(t,0),o=i;o<t.length;o+=i){var h=n(t,o);a.push(e.subarray(s,h)),s=h}return a}function u(e,t){var r=t.codePointAt(0),i=0,n=0,a=e.length-1;while(n<a){var s=n+a+1>>1;r<e[s].start?a=s-1:n=s}return e[n].start<=r&&r<=e[n].end&&(i=e[n].idDelta+(e[n].ids?e[n].ids[r-e[n].start]:r)&65535),{charCode:r,glyphId:i}}function f(e,t,r){function i(e,r){t.push({cmd:"moveTo",args:[e,r]})}function n(e,r){t.push({cmd:"lineTo",args:[e,r]})}function a(e,r,i,n){t.push({cmd:"quadraticCurveTo",args:[e,r,i,n]})}var s,o=0,h=(e[o]<<24|e[o+1]<<16)>>16,l=0,c=0;if(o+=10,h<0)do{s=e[o]<<8|e[o+1];var u,d,p=e[o+2]<<8|e[o+3];o+=4,1&s?(u=(e[o]<<24|e[o+1]<<16)>>16,d=(e[o+2]<<24|e[o+3]<<16)>>16,o+=4):(u=e[o++],d=e[o++]),2&s?(l=u,c=d):(l=0,c=0);var m=1,g=1,b=0,v=0;8&s?(m=g=(e[o]<<24|e[o+1]<<16)/1073741824,o+=2):64&s?(m=(e[o]<<24|e[o+1]<<16)/1073741824,g=(e[o+2]<<24|e[o+3]<<16)/1073741824,o+=4):128&s&&(m=(e[o]<<24|e[o+1]<<16)/1073741824,b=(e[o+2]<<24|e[o+3]<<16)/1073741824,v=(e[o+4]<<24|e[o+5]<<16)/1073741824,g=(e[o+6]<<24|e[o+7]<<16)/1073741824,o+=8);var y=r.glyphs[p];y&&(t.push({cmd:"save"}),t.push({cmd:"transform",args:[m,b,v,g,l,c]}),f(y,t,r),t.push({cmd:"restore"}))}while(32&s);else{var w,M,_=[];for(w=0;w<h;w++)_.push(e[o]<<8|e[o+1]),o+=2;var S=e[o]<<8|e[o+1];o+=2+S;var k=_[_.length-1]+1,A=[];while(A.length<k){s=e[o++];var x=1;8&s&&(x+=e[o++]);while(x-- >0)A.push({flags:s})}for(w=0;w<k;w++){switch(18&A[w].flags){case 0:l+=(e[o]<<24|e[o+1]<<16)>>16,o+=2;break;case 2:l-=e[o++];break;case 18:l+=e[o++];break}A[w].x=l}for(w=0;w<k;w++){switch(36&A[w].flags){case 0:c+=(e[o]<<24|e[o+1]<<16)>>16,o+=2;break;case 4:c-=e[o++];break;case 36:c+=e[o++];break}A[w].y=c}var C=0;for(o=0;o<h;o++){var E=_[o],T=A.slice(C,E+1);if(1&T[0].flags)T.push(T[0]);else if(1&T[T.length-1].flags)T.unshift(T[T.length-1]);else{var R={flags:1,x:(T[0].x+T[T.length-1].x)/2,y:(T[0].y+T[T.length-1].y)/2};T.unshift(R),T.push(R)}for(i(T[0].x,T[0].y),w=1,M=T.length;w<M;w++)1&T[w].flags?n(T[w].x,T[w].y):1&T[w+1].flags?(a(T[w].x,T[w].y,T[w+1].x,T[w+1].y),w++):a(T[w].x,T[w].y,(T[w].x+T[w+1].x)/2,(T[w].y+T[w+1].y)/2);C=E+1}}}function d(e,t,n,a){function o(e,r){t.push({cmd:"moveTo",args:[e,r]})}function h(e,r){t.push({cmd:"lineTo",args:[e,r]})}function l(e,r,i,n,a,s){t.push({cmd:"bezierCurveTo",args:[e,r,i,n,a,s]})}var c=[],f=0,p=0,m=0;function g(e){var b=0;while(b<e.length){var v,y,w,M,_,S,k,A,x,C=!1,E=e[b++];switch(E){case 1:m+=c.length>>1,C=!0;break;case 3:m+=c.length>>1,C=!0;break;case 4:p+=c.pop(),o(f,p),C=!0;break;case 5:while(c.length>0)f+=c.shift(),p+=c.shift(),h(f,p);break;case 6:while(c.length>0){if(f+=c.shift(),h(f,p),0===c.length)break;p+=c.shift(),h(f,p)}break;case 7:while(c.length>0){if(p+=c.shift(),h(f,p),0===c.length)break;f+=c.shift(),h(f,p)}break;case 8:while(c.length>0)v=f+c.shift(),w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+c.shift(),l(v,w,y,M,f,p);break;case 10:if(A=c.pop(),x=null,n.isCFFCIDFont){const e=n.fdSelect.getFDIndex(a);if(e>=0&&e<n.fdArray.length){const t=n.fdArray[e];let i;t.privateDict&&t.privateDict.subrsIndex&&(i=t.privateDict.subrsIndex.objects),i&&(A+=r(i),x=i[A])}else(0,i.warn)("Invalid fd index for glyph index.")}else x=n.subrs[A+n.subrsBias];x&&g(x);break;case 11:return;case 12:switch(E=e[b++],E){case 34:v=f+c.shift(),y=v+c.shift(),_=p+c.shift(),f=y+c.shift(),l(v,p,y,_,f,_),v=f+c.shift(),y=v+c.shift(),f=y+c.shift(),l(v,_,y,p,f,p);break;case 35:v=f+c.shift(),w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+c.shift(),l(v,w,y,M,f,p),v=f+c.shift(),w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+c.shift(),l(v,w,y,M,f,p),c.pop();break;case 36:v=f+c.shift(),_=p+c.shift(),y=v+c.shift(),S=_+c.shift(),f=y+c.shift(),l(v,_,y,S,f,S),v=f+c.shift(),y=v+c.shift(),k=S+c.shift(),f=y+c.shift(),l(v,S,y,k,f,p);break;case 37:var T=f,R=p;v=f+c.shift(),w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+c.shift(),l(v,w,y,M,f,p),v=f+c.shift(),w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y,p=M,Math.abs(f-T)>Math.abs(p-R)?f+=c.shift():p+=c.shift(),l(v,w,y,M,f,p);break;default:throw new i.FormatError("unknown operator: 12 "+E)}break;case 14:if(c.length>=4){var I=c.pop(),P=c.pop();p=c.pop(),f=c.pop(),t.push({cmd:"save"}),t.push({cmd:"translate",args:[f,p]});var O=u(n.cmap,String.fromCharCode(n.glyphNameMap[s.StandardEncoding[I]]));d(n.glyphs[O.glyphId],t,n,O.glyphId),t.push({cmd:"restore"}),O=u(n.cmap,String.fromCharCode(n.glyphNameMap[s.StandardEncoding[P]])),d(n.glyphs[O.glyphId],t,n,O.glyphId)}return;case 18:m+=c.length>>1,C=!0;break;case 19:m+=c.length>>1,b+=m+7>>3,C=!0;break;case 20:m+=c.length>>1,b+=m+7>>3,C=!0;break;case 21:p+=c.pop(),f+=c.pop(),o(f,p),C=!0;break;case 22:f+=c.pop(),o(f,p),C=!0;break;case 23:m+=c.length>>1,C=!0;break;case 24:while(c.length>2)v=f+c.shift(),w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+c.shift(),l(v,w,y,M,f,p);f+=c.shift(),p+=c.shift(),h(f,p);break;case 25:while(c.length>6)f+=c.shift(),p+=c.shift(),h(f,p);v=f+c.shift(),w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+c.shift(),l(v,w,y,M,f,p);break;case 26:c.length%2&&(f+=c.shift());while(c.length>0)v=f,w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y,p=M+c.shift(),l(v,w,y,M,f,p);break;case 27:c.length%2&&(p+=c.shift());while(c.length>0)v=f+c.shift(),w=p,y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M,l(v,w,y,M,f,p);break;case 28:c.push((e[b]<<24|e[b+1]<<16)>>16),b+=2;break;case 29:A=c.pop()+n.gsubrsBias,x=n.gsubrs[A],x&&g(x);break;case 30:while(c.length>0){if(v=f,w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+(1===c.length?c.shift():0),l(v,w,y,M,f,p),0===c.length)break;v=f+c.shift(),w=p,y=v+c.shift(),M=w+c.shift(),p=M+c.shift(),f=y+(1===c.length?c.shift():0),l(v,w,y,M,f,p)}break;case 31:while(c.length>0){if(v=f+c.shift(),w=p,y=v+c.shift(),M=w+c.shift(),p=M+c.shift(),f=y+(1===c.length?c.shift():0),l(v,w,y,M,f,p),0===c.length)break;v=f,w=p+c.shift(),y=v+c.shift(),M=w+c.shift(),f=y+c.shift(),p=M+(1===c.length?c.shift():0),l(v,w,y,M,f,p)}break;default:if(E<32)throw new i.FormatError("unknown operator: "+E);E<247?c.push(E-139):E<251?c.push(256*(E-247)+e[b++]+108):E<255?c.push(256*-(E-251)-e[b++]-108):(c.push((e[b]<<24|e[b+1]<<16|e[b+2]<<8|e[b+3])/65536),b+=4);break}C&&(c.length=0)}}g(e)}const p=[];class m{constructor(e){this.constructor===m&&(0,i.unreachable)("Cannot initialize CompiledFont."),this.fontMatrix=e,this.compiledGlyphs=Object.create(null),this.compiledCharCodeToGlyphId=Object.create(null)}getPathJs(e){const t=u(this.cmap,e);let r=this.compiledGlyphs[t.glyphId];return r||(r=this.compileGlyph(this.glyphs[t.glyphId],t.glyphId),this.compiledGlyphs[t.glyphId]=r),void 0===this.compiledCharCodeToGlyphId[t.charCode]&&(this.compiledCharCodeToGlyphId[t.charCode]=t.glyphId),r}compileGlyph(e,t){if(!e||0===e.length||14===e[0])return p;let r=this.fontMatrix;if(this.isCFFCIDFont){const e=this.fdSelect.getFDIndex(t);if(e>=0&&e<this.fdArray.length){const t=this.fdArray[e];r=t.getByName("FontMatrix")||i.FONT_IDENTITY_MATRIX}else(0,i.warn)("Invalid fd index for glyph index.")}const n=[];return n.push({cmd:"save"}),n.push({cmd:"transform",args:r.slice()}),n.push({cmd:"scale",args:["size","-size"]}),this.compileGlyphImpl(e,n,t),n.push({cmd:"restore"}),n}compileGlyphImpl(){(0,i.unreachable)("Children classes should implement this.")}hasBuiltPath(e){const t=u(this.cmap,e);return void 0!==this.compiledGlyphs[t.glyphId]&&void 0!==this.compiledCharCodeToGlyphId[t.charCode]}}class g extends m{constructor(e,t,r){super(r||[488e-6,0,0,488e-6,0,0]),this.glyphs=e,this.cmap=t}compileGlyphImpl(e,t){f(e,t,this)}}class b extends m{constructor(e,t,i,n){super(i||[.001,0,0,.001,0,0]),this.glyphs=e.glyphs,this.gsubrs=e.gsubrs||[],this.subrs=e.subrs||[],this.cmap=t,this.glyphNameMap=n||(0,a.getGlyphsUnicode)(),this.gsubrsBias=r(this.gsubrs),this.subrsBias=r(this.subrs),this.isCFFCIDFont=e.isCFFCIDFont,this.fdSelect=e.fdSelect,this.fdArray=e.fdArray}compileGlyphImpl(e,t,r){d(e,t,this,r)}}return{create:function(r,n){for(var a,s,o,u,f,d,p=new Uint8Array(r.data),m=t(p,4),v=0,y=12;v<m;v++,y+=16){var w=(0,i.bytesToString)(p.subarray(y,y+4)),M=e(p,y+8),_=e(p,y+12);switch(w){case"cmap":a=h(p,M,M+_);break;case"glyf":s=p.subarray(M,M+_);break;case"loca":o=p.subarray(M,M+_);break;case"head":d=t(p,M+18),f=t(p,M+50);break;case"CFF ":u=l(p,M,M+_,n);break}}if(s){var S=d?[1/d,0,0,1/d,0,0]:r.fontMatrix;return new g(c(s,o,f),a,S)}return new b(u,a,r.fontMatrix,r.glyphNameMap)}}}();t.FontRendererFactory=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Type1Parser=void 0;var i=r(33),n=r(8),a=r(12),s=r(2),o=!1,h=function(){var e={hstem:[1],vstem:[3],vmoveto:[4],rlineto:[5],hlineto:[6],vlineto:[7],rrcurveto:[8],callsubr:[10],flex:[12,35],drop:[12,18],endchar:[14],rmoveto:[21],hmoveto:[22],vhcurveto:[30],hvcurveto:[31]};function t(){this.width=0,this.lsb=0,this.flexing=!1,this.output=[],this.stack=[]}return t.prototype={convert:function(t,r,i){for(var n,a,h,l=t.length,c=!1,u=0;u<l;u++){var f=t[u];if(f<32){switch(12===f&&(f=(f<<8)+t[++u]),f){case 1:if(!o){this.stack=[];break}c=this.executeCommand(2,e.hstem);break;case 3:if(!o){this.stack=[];break}c=this.executeCommand(2,e.vstem);break;case 4:if(this.flexing){if(this.stack.length<1){c=!0;break}var d=this.stack.pop();this.stack.push(0,d);break}c=this.executeCommand(1,e.vmoveto);break;case 5:c=this.executeCommand(2,e.rlineto);break;case 6:c=this.executeCommand(1,e.hlineto);break;case 7:c=this.executeCommand(1,e.vlineto);break;case 8:c=this.executeCommand(6,e.rrcurveto);break;case 9:this.stack=[];break;case 10:if(this.stack.length<1){c=!0;break}if(h=this.stack.pop(),!r[h]){c=!0;break}c=this.convert(r[h],r,i);break;case 11:return c;case 13:if(this.stack.length<2){c=!0;break}n=this.stack.pop(),a=this.stack.pop(),this.lsb=a,this.width=n,this.stack.push(n,a),c=this.executeCommand(2,e.hmoveto);break;case 14:this.output.push(e.endchar[0]);break;case 21:if(this.flexing)break;c=this.executeCommand(2,e.rmoveto);break;case 22:if(this.flexing){this.stack.push(0);break}c=this.executeCommand(1,e.hmoveto);break;case 30:c=this.executeCommand(4,e.vhcurveto);break;case 31:c=this.executeCommand(4,e.hvcurveto);break;case 3072:this.stack=[];break;case 3073:if(!o){this.stack=[];break}c=this.executeCommand(2,e.vstem);break;case 3074:if(!o){this.stack=[];break}c=this.executeCommand(2,e.hstem);break;case 3078:if(i){const t=this.stack[this.stack.length-5];this.seac=this.stack.splice(-4,4),this.seac[0]+=this.lsb-t,c=this.executeCommand(0,e.endchar)}else c=this.executeCommand(4,e.endchar);break;case 3079:if(this.stack.length<4){c=!0;break}this.stack.pop(),n=this.stack.pop();var p=this.stack.pop();a=this.stack.pop(),this.lsb=a,this.width=n,this.stack.push(n,a,p),c=this.executeCommand(3,e.rmoveto);break;case 3084:if(this.stack.length<2){c=!0;break}var m=this.stack.pop(),g=this.stack.pop();this.stack.push(g/m);break;case 3088:if(this.stack.length<2){c=!0;break}h=this.stack.pop();var b=this.stack.pop();if(0===h&&3===b){var v=this.stack.splice(this.stack.length-17,17);this.stack.push(v[2]+v[0],v[3]+v[1],v[4],v[5],v[6],v[7],v[8],v[9],v[10],v[11],v[12],v[13],v[14]),c=this.executeCommand(13,e.flex,!0),this.flexing=!1,this.stack.push(v[15],v[16])}else 1===h&&0===b&&(this.flexing=!0);break;case 3089:break;case 3105:this.stack=[];break;default:(0,s.warn)('Unknown type 1 charstring command of "'+f+'"');break}if(c)break}else f<=246?f-=139:f=f<=250?256*(f-247)+t[++u]+108:f<=254?-256*(f-251)-t[++u]-108:(255&t[++u])<<24|(255&t[++u])<<16|(255&t[++u])<<8|(255&t[++u])<<0,this.stack.push(f)}return c},executeCommand(e,t,r){var i=this.stack.length;if(e>i)return!0;for(var n=i-e,a=n;a<i;a++){var s=this.stack[a];Number.isInteger(s)?this.output.push(28,s>>8&255,255&s):(s=65536*s|0,this.output.push(255,s>>24&255,s>>16&255,s>>8&255,255&s))}return this.output.push.apply(this.output,t),r?this.stack.splice(n,e):this.stack.length=0,!1}},t}(),l=function(){var e=55665,t=4330;function r(e){return e>=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102}function s(e,t,r){if(r>=e.length)return new Uint8Array(0);var i,n,a=0|t,s=52845,o=22719;for(i=0;i<r;i++)a=(e[i]+a)*s+o&65535;var h=e.length-r,l=new Uint8Array(h);for(i=r,n=0;n<h;i++,n++){var c=e[i];l[n]=c^a>>8,a=(c+a)*s+o&65535}return l}function l(e,t,i){var n,a,s=0|t,o=52845,h=22719,l=e.length,c=l>>>1,u=new Uint8Array(c);for(n=0,a=0;n<l;n++){var f=e[n];if(r(f)){var d;n++;while(n<l&&!r(d=e[n]))n++;if(n<l){var p=parseInt(String.fromCharCode(f,d),16);u[a++]=p^s>>8,s=(p+s)*o+h&65535}}}return u.slice(i,a)}function c(e){return 47===e||91===e||93===e||123===e||125===e||40===e||41===e}function u(t,i,o){if(i){var h=t.getBytes(),c=!((r(h[0])||(0,n.isWhiteSpace)(h[0]))&&r(h[1])&&r(h[2])&&r(h[3])&&r(h[4])&&r(h[5])&&r(h[6])&&r(h[7]));t=new a.Stream(c?s(h,e,4):l(h,e,4))}this.seacAnalysisEnabled=!!o,this.stream=t,this.nextChar()}return u.prototype={readNumberArray:function(){this.getToken();var e=[];while(1){var t=this.getToken();if(null===t||"]"===t||"}"===t)break;e.push(parseFloat(t||0))}return e},readNumber:function(){var e=this.getToken();return parseFloat(e||0)},readInt:function(){var e=this.getToken();return 0|parseInt(e||0,10)},readBoolean:function(){var e=this.getToken();return"true"===e?1:0},nextChar:function(){return this.currentChar=this.stream.getByte()},getToken:function(){var e=!1,t=this.currentChar;while(1){if(-1===t)return null;if(e)10!==t&&13!==t||(e=!1);else if(37===t)e=!0;else if(!(0,n.isWhiteSpace)(t))break;t=this.nextChar()}if(c(t))return this.nextChar(),String.fromCharCode(t);var r="";do{r+=String.fromCharCode(t),t=this.nextChar()}while(t>=0&&!(0,n.isWhiteSpace)(t)&&!c(t));return r},readCharStrings:function(e,r){return-1===r?e:s(e,t,r)},extractFontProgram:function(e){var t=this.stream,r=[],i=[],n=Object.create(null);n.lenIV=4;var a,s,l,c,u,f={subrs:[],charstrings:[],properties:{privateData:n}};while(null!==(a=this.getToken()))if("/"===a)switch(a=this.getToken(),a){case"CharStrings":this.getToken(),this.getToken(),this.getToken(),this.getToken();while(1){if(a=this.getToken(),null===a||"end"===a)break;if("/"===a){var d=this.getToken();s=this.readInt(),this.getToken(),l=s>0?t.getBytes(s):new Uint8Array(0),c=f.properties.privateData.lenIV,u=this.readCharStrings(l,c),this.nextChar(),a=this.getToken(),"noaccess"===a&&this.getToken(),i.push({glyph:d,encoded:u})}}break;case"Subrs":this.readInt(),this.getToken();while("dup"===this.getToken()){const e=this.readInt();s=this.readInt(),this.getToken(),l=s>0?t.getBytes(s):new Uint8Array(0),c=f.properties.privateData.lenIV,u=this.readCharStrings(l,c),this.nextChar(),a=this.getToken(),"noaccess"===a&&this.getToken(),r[e]=u}break;case"BlueValues":case"OtherBlues":case"FamilyBlues":case"FamilyOtherBlues":var p=this.readNumberArray();p.length>0&&p.length%2===0&&o&&(f.properties.privateData[a]=p);break;case"StemSnapH":case"StemSnapV":f.properties.privateData[a]=this.readNumberArray();break;case"StdHW":case"StdVW":f.properties.privateData[a]=this.readNumberArray()[0];break;case"BlueShift":case"lenIV":case"BlueFuzz":case"BlueScale":case"LanguageGroup":case"ExpansionFactor":f.properties.privateData[a]=this.readNumber();break;case"ForceBold":f.properties.privateData[a]=this.readBoolean();break}for(var m=0;m<i.length;m++){d=i[m].glyph,u=i[m].encoded;var g=new h,b=g.convert(u,r,this.seacAnalysisEnabled),v=g.output;b&&(v=[14]);const t={glyphName:d,charstring:v,width:g.width,lsb:g.lsb,seac:g.seac};if(".notdef"===d?f.charstrings.unshift(t):f.charstrings.push(t),e.builtInEncoding){const t=e.builtInEncoding.indexOf(d);t>-1&&void 0===e.widths[t]&&t>=e.firstChar&&t<=e.lastChar&&(e.widths[t]=g.width)}}return f},extractFontHeader:function(e){var t;while(null!==(t=this.getToken()))if("/"===t)switch(t=this.getToken(),t){case"FontMatrix":var r=this.readNumberArray();e.fontMatrix=r;break;case"Encoding":var n,a=this.getToken();if(/^\d+$/.test(a)){n=[];var s=0|parseInt(a,10);this.getToken();for(var o=0;o<s;o++){t=this.getToken();while("dup"!==t&&"def"!==t)if(t=this.getToken(),null===t)return;if("def"===t)break;var h=this.readInt();this.getToken();var l=this.getToken();n[h]=l,this.getToken()}}else n=(0,i.getEncoding)(a);e.builtInEncoding=n;break;case"FontBBox":var c=this.readNumberArray();e.ascent=Math.max(c[3],c[1]),e.descent=Math.min(c[1],c[3]),e.ascentScaled=!0;break}}},u}();t.Type1Parser=l},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getTilingPatternIR=c,t.Pattern=void 0;var i=r(2),n=r(23),a=r(5),s=r(8),o={FUNCTION_BASED:1,AXIAL:2,RADIAL:3,FREE_FORM_MESH:4,LATTICE_FORM_MESH:5,COONS_PATCH_MESH:6,TENSOR_PATCH_MESH:7},h=function(){function e(){(0,i.unreachable)("should not call Pattern constructor")}return e.prototype={getPattern:function(e){(0,i.unreachable)("Should not call Pattern.getStyle: "+e)}},e.parseShading=function(e,t,r,n,h,c,u){var f=(0,a.isStream)(e)?e.dict:e,d=f.get("ShadingType");try{switch(d){case o.AXIAL:case o.RADIAL:return new l.RadialAxial(f,t,r,n,c,u);case o.FREE_FORM_MESH:case o.LATTICE_FORM_MESH:case o.COONS_PATCH_MESH:case o.TENSOR_PATCH_MESH:return new l.Mesh(e,t,r,n,c,u);default:throw new i.FormatError("Unsupported ShadingType: "+d)}}catch(p){if(p instanceof s.MissingDataException)throw p;return h.send("UnsupportedFeature",{featureId:i.UNSUPPORTED_FEATURES.shadingPattern}),(0,i.warn)(p),new l.Dummy}},e}();t.Pattern=h;var l={};function c(e,t,r){const n=t.getArray("Matrix"),a=i.Util.normalizeRect(t.getArray("BBox")),s=t.get("XStep"),o=t.get("YStep"),h=t.get("PaintType"),l=t.get("TilingType");if(a[2]-a[0]===0||a[3]-a[1]===0)throw new i.FormatError(`Invalid getTilingPatternIR /BBox array: [${a}].`);return["TilingPattern",r,e,n,a,s,o,h,l]}l.SMALL_NUMBER=1e-6,l.RadialAxial=function(){function e(e,t,r,a,s,h){this.matrix=t,this.coordsArr=e.getArray("Coords"),this.shadingType=e.get("ShadingType"),this.type="Pattern";const c=n.ColorSpace.parse({cs:e.getRaw("ColorSpace")||e.getRaw("CS"),xref:r,resources:a,pdfFunctionFactory:s,localColorSpaceCache:h});this.cs=c;const u=e.getArray("BBox");Array.isArray(u)&&4===u.length?this.bbox=i.Util.normalizeRect(u):this.bbox=null;var f=0,d=1;if(e.has("Domain")){var p=e.getArray("Domain");f=p[0],d=p[1]}var m=!1,g=!1;if(e.has("Extend")){var b=e.getArray("Extend");m=b[0],g=b[1]}if(this.shadingType===o.RADIAL&&(!m||!g)){var v=this.coordsArr[0],y=this.coordsArr[1],w=this.coordsArr[2],M=this.coordsArr[3],_=this.coordsArr[4],S=this.coordsArr[5],k=Math.sqrt((v-M)*(v-M)+(y-_)*(y-_));w<=S+k&&S<=w+k&&(0,i.warn)("Unsupported radial gradient.")}this.extendStart=m,this.extendEnd=g;var A=e.getRaw("Function"),x=s.createFromArray(A);const C=10,E=(d-f)/C;var T=this.colorStops=[];if(f>=d||E<=0)(0,i.info)("Bad shading domain.");else{var R,I=new Float32Array(c.numComps),P=new Float32Array(1);for(let e=0;e<=C;e++){P[0]=f+e*E,x(P,0,I,0),R=c.getRgb(I,0);var O=i.Util.makeCssRgb(R[0],R[1],R[2]);T.push([e/C,O])}var F="transparent";e.has("Background")&&(R=c.getRgb(e.get("Background"),0),F=i.Util.makeCssRgb(R[0],R[1],R[2])),m||(T.unshift([0,F]),T[1][0]+=l.SMALL_NUMBER),g||(T[T.length-1][0]-=l.SMALL_NUMBER,T.push([1,F])),this.colorStops=T}}return e.prototype={getIR:function(){var e,t,r,n,a,s=this.coordsArr,h=this.shadingType;h===o.AXIAL?(t=[s[0],s[1]],r=[s[2],s[3]],n=null,a=null,e="axial"):h===o.RADIAL?(t=[s[0],s[1]],r=[s[3],s[4]],n=s[2],a=s[5],e="radial"):(0,i.unreachable)("getPattern type unknown: "+h);var l=this.matrix;if(l&&(t=i.Util.applyTransform(t,l),r=i.Util.applyTransform(r,l),h===o.RADIAL)){var c=i.Util.singularValueDecompose2dScale(l);n*=c[0],a*=c[1]}return["RadialAxial",e,this.bbox,this.colorStops,t,r,n,a]}},e}(),l.Mesh=function(){function e(e,t){this.stream=e,this.context=t,this.buffer=0,this.bufferLength=0;var r=t.numComps;this.tmpCompsBuf=new Float32Array(r);var i=t.colorSpace.numComps;this.tmpCsCompsBuf=t.colorFn?new Float32Array(i):this.tmpCompsBuf}function t(e,t){var r=e.coords,n=e.colors,a=[],s=[],o=0;while(t.hasData){var h=t.readFlag(),l=t.readCoordinate(),c=t.readComponents();if(0===o){if(!(0<=h&&h<=2))throw new i.FormatError("Unknown type4 flag");switch(h){case 0:o=3;break;case 1:s.push(s[s.length-2],s[s.length-1]),o=1;break;case 2:s.push(s[s.length-3],s[s.length-1]),o=1;break}a.push(h)}s.push(r.length),r.push(l),n.push(c),o--,t.align()}e.figures.push({type:"triangles",coords:new Int32Array(s),colors:new Int32Array(s)})}function r(e,t,r){var i=e.coords,n=e.colors,a=[];while(t.hasData){var s=t.readCoordinate(),o=t.readComponents();a.push(i.length),i.push(s),n.push(o)}e.figures.push({type:"lattice",coords:new Int32Array(a),colors:new Int32Array(a),verticesPerRow:r})}e.prototype={get hasData(){if(this.stream.end)return this.stream.pos<this.stream.end;if(this.bufferLength>0)return!0;var e=this.stream.getByte();return!(e<0)&&(this.buffer=e,this.bufferLength=8,!0)},readBits:function(e){var t=this.buffer,r=this.bufferLength;if(32===e){if(0===r)return(this.stream.getByte()<<24|this.stream.getByte()<<16|this.stream.getByte()<<8|this.stream.getByte())>>>0;t=t<<24|this.stream.getByte()<<16|this.stream.getByte()<<8|this.stream.getByte();var i=this.stream.getByte();return this.buffer=i&(1<<r)-1,(t<<8-r|(255&i)>>r)>>>0}if(8===e&&0===r)return this.stream.getByte();while(r<e)t=t<<8|this.stream.getByte(),r+=8;return r-=e,this.bufferLength=r,this.buffer=t&(1<<r)-1,t>>r},align:function(){this.buffer=0,this.bufferLength=0},readFlag:function(){return this.readBits(this.context.bitsPerFlag)},readCoordinate:function(){var e=this.context.bitsPerCoordinate,t=this.readBits(e),r=this.readBits(e),i=this.context.decode,n=e<32?1/((1<<e)-1):2.3283064365386963e-10;return[t*n*(i[1]-i[0])+i[0],r*n*(i[3]-i[2])+i[2]]},readComponents:function(){for(var e=this.context.numComps,t=this.context.bitsPerComponent,r=t<32?1/((1<<t)-1):2.3283064365386963e-10,i=this.context.decode,n=this.tmpCompsBuf,a=0,s=4;a<e;a++,s+=2){var o=this.readBits(t);n[a]=o*r*(i[s+1]-i[s])+i[s]}var h=this.tmpCsCompsBuf;return this.context.colorFn&&this.context.colorFn(n,0,h,0),this.context.colorSpace.getRgb(h,0)}};var s=3,h=20,l=20,c=function(){function e(e){for(var t=[],r=0;r<=e;r++){var i=r/e,n=1-i;t.push(new Float32Array([n*n*n,3*i*n*n,3*i*i*n,i*i*i]))}return t}var t=[];return function(r){return t[r]||(t[r]=e(r)),t[r]}}();function u(e,t){var r=e.figures[t];(0,i.assert)("patch"===r.type,"Unexpected patch mesh figure");var n=e.coords,a=e.colors,o=r.coords,u=r.colors,f=Math.min(n[o[0]][0],n[o[3]][0],n[o[12]][0],n[o[15]][0]),d=Math.min(n[o[0]][1],n[o[3]][1],n[o[12]][1],n[o[15]][1]),p=Math.max(n[o[0]][0],n[o[3]][0],n[o[12]][0],n[o[15]][0]),m=Math.max(n[o[0]][1],n[o[3]][1],n[o[12]][1],n[o[15]][1]),g=Math.ceil((p-f)*l/(e.bounds[2]-e.bounds[0]));g=Math.max(s,Math.min(h,g));var b=Math.ceil((m-d)*l/(e.bounds[3]-e.bounds[1]));b=Math.max(s,Math.min(h,b));for(var v=g+1,y=new Int32Array((b+1)*v),w=new Int32Array((b+1)*v),M=0,_=new Uint8Array(3),S=new Uint8Array(3),k=a[u[0]],A=a[u[1]],x=a[u[2]],C=a[u[3]],E=c(b),T=c(g),R=0;R<=b;R++){_[0]=(k[0]*(b-R)+x[0]*R)/b|0,_[1]=(k[1]*(b-R)+x[1]*R)/b|0,_[2]=(k[2]*(b-R)+x[2]*R)/b|0,S[0]=(A[0]*(b-R)+C[0]*R)/b|0,S[1]=(A[1]*(b-R)+C[1]*R)/b|0,S[2]=(A[2]*(b-R)+C[2]*R)/b|0;for(var I=0;I<=g;I++,M++)if(0!==R&&R!==b||0!==I&&I!==g){for(var P=0,O=0,F=0,L=0;L<=3;L++)for(var D=0;D<=3;D++,F++){var N=E[R][L]*T[I][D];P+=n[o[F]][0]*N,O+=n[o[F]][1]*N}y[M]=n.length,n.push([P,O]),w[M]=a.length;var B=new Uint8Array(3);B[0]=(_[0]*(g-I)+S[0]*I)/g|0,B[1]=(_[1]*(g-I)+S[1]*I)/g|0,B[2]=(_[2]*(g-I)+S[2]*I)/g|0,a.push(B)}}y[0]=o[0],w[0]=u[0],y[g]=o[3],w[g]=u[1],y[v*b]=o[12],w[v*b]=u[2],y[v*b+g]=o[15],w[v*b+g]=u[3],e.figures[t]={type:"lattice",coords:y,colors:w,verticesPerRow:v}}function f(e,t){var r=e.coords,n=e.colors,a=new Int32Array(16),s=new Int32Array(4);while(t.hasData){var o,h,l=t.readFlag();if(!(0<=l&&l<=3))throw new i.FormatError("Unknown type6 flag");var c=r.length;for(o=0,h=0!==l?8:12;o<h;o++)r.push(t.readCoordinate());var u,f,d,p,m=n.length;for(o=0,h=0!==l?2:4;o<h;o++)n.push(t.readComponents());switch(l){case 0:a[12]=c+3,a[13]=c+4,a[14]=c+5,a[15]=c+6,a[8]=c+2,a[11]=c+7,a[4]=c+1,a[7]=c+8,a[0]=c,a[1]=c+11,a[2]=c+10,a[3]=c+9,s[2]=m+1,s[3]=m+2,s[0]=m,s[1]=m+3;break;case 1:u=a[12],f=a[13],d=a[14],p=a[15],a[12]=p,a[13]=c+0,a[14]=c+1,a[15]=c+2,a[8]=d,a[11]=c+3,a[4]=f,a[7]=c+4,a[0]=u,a[1]=c+7,a[2]=c+6,a[3]=c+5,u=s[2],f=s[3],s[2]=f,s[3]=m,s[0]=u,s[1]=m+1;break;case 2:u=a[15],f=a[11],a[12]=a[3],a[13]=c+0,a[14]=c+1,a[15]=c+2,a[8]=a[7],a[11]=c+3,a[4]=f,a[7]=c+4,a[0]=u,a[1]=c+7,a[2]=c+6,a[3]=c+5,u=s[3],s[2]=s[1],s[3]=m,s[0]=u,s[1]=m+1;break;case 3:a[12]=a[0],a[13]=c+0,a[14]=c+1,a[15]=c+2,a[8]=a[1],a[11]=c+3,a[4]=a[2],a[7]=c+4,a[0]=a[3],a[1]=c+7,a[2]=c+6,a[3]=c+5,s[2]=s[0],s[3]=m,s[0]=s[1],s[1]=m+1;break}a[5]=r.length,r.push([(-4*r[a[0]][0]-r[a[15]][0]+6*(r[a[4]][0]+r[a[1]][0])-2*(r[a[12]][0]+r[a[3]][0])+3*(r[a[13]][0]+r[a[7]][0]))/9,(-4*r[a[0]][1]-r[a[15]][1]+6*(r[a[4]][1]+r[a[1]][1])-2*(r[a[12]][1]+r[a[3]][1])+3*(r[a[13]][1]+r[a[7]][1]))/9]),a[6]=r.length,r.push([(-4*r[a[3]][0]-r[a[12]][0]+6*(r[a[2]][0]+r[a[7]][0])-2*(r[a[0]][0]+r[a[15]][0])+3*(r[a[4]][0]+r[a[14]][0]))/9,(-4*r[a[3]][1]-r[a[12]][1]+6*(r[a[2]][1]+r[a[7]][1])-2*(r[a[0]][1]+r[a[15]][1])+3*(r[a[4]][1]+r[a[14]][1]))/9]),a[9]=r.length,r.push([(-4*r[a[12]][0]-r[a[3]][0]+6*(r[a[8]][0]+r[a[13]][0])-2*(r[a[0]][0]+r[a[15]][0])+3*(r[a[11]][0]+r[a[1]][0]))/9,(-4*r[a[12]][1]-r[a[3]][1]+6*(r[a[8]][1]+r[a[13]][1])-2*(r[a[0]][1]+r[a[15]][1])+3*(r[a[11]][1]+r[a[1]][1]))/9]),a[10]=r.length,r.push([(-4*r[a[15]][0]-r[a[0]][0]+6*(r[a[11]][0]+r[a[14]][0])-2*(r[a[12]][0]+r[a[3]][0])+3*(r[a[2]][0]+r[a[8]][0]))/9,(-4*r[a[15]][1]-r[a[0]][1]+6*(r[a[11]][1]+r[a[14]][1])-2*(r[a[12]][1]+r[a[3]][1])+3*(r[a[2]][1]+r[a[8]][1]))/9]),e.figures.push({type:"patch",coords:new Int32Array(a),colors:new Int32Array(s)})}}function d(e,t){var r=e.coords,n=e.colors,a=new Int32Array(16),s=new Int32Array(4);while(t.hasData){var o,h,l=t.readFlag();if(!(0<=l&&l<=3))throw new i.FormatError("Unknown type7 flag");var c=r.length;for(o=0,h=0!==l?12:16;o<h;o++)r.push(t.readCoordinate());var u,f,d,p,m=n.length;for(o=0,h=0!==l?2:4;o<h;o++)n.push(t.readComponents());switch(l){case 0:a[12]=c+3,a[13]=c+4,a[14]=c+5,a[15]=c+6,a[8]=c+2,a[9]=c+13,a[10]=c+14,a[11]=c+7,a[4]=c+1,a[5]=c+12,a[6]=c+15,a[7]=c+8,a[0]=c,a[1]=c+11,a[2]=c+10,a[3]=c+9,s[2]=m+1,s[3]=m+2,s[0]=m,s[1]=m+3;break;case 1:u=a[12],f=a[13],d=a[14],p=a[15],a[12]=p,a[13]=c+0,a[14]=c+1,a[15]=c+2,a[8]=d,a[9]=c+9,a[10]=c+10,a[11]=c+3,a[4]=f,a[5]=c+8,a[6]=c+11,a[7]=c+4,a[0]=u,a[1]=c+7,a[2]=c+6,a[3]=c+5,u=s[2],f=s[3],s[2]=f,s[3]=m,s[0]=u,s[1]=m+1;break;case 2:u=a[15],f=a[11],a[12]=a[3],a[13]=c+0,a[14]=c+1,a[15]=c+2,a[8]=a[7],a[9]=c+9,a[10]=c+10,a[11]=c+3,a[4]=f,a[5]=c+8,a[6]=c+11,a[7]=c+4,a[0]=u,a[1]=c+7,a[2]=c+6,a[3]=c+5,u=s[3],s[2]=s[1],s[3]=m,s[0]=u,s[1]=m+1;break;case 3:a[12]=a[0],a[13]=c+0,a[14]=c+1,a[15]=c+2,a[8]=a[1],a[9]=c+9,a[10]=c+10,a[11]=c+3,a[4]=a[2],a[5]=c+8,a[6]=c+11,a[7]=c+4,a[0]=a[3],a[1]=c+7,a[2]=c+6,a[3]=c+5,s[2]=s[0],s[3]=m,s[0]=s[1],s[1]=m+1;break}e.figures.push({type:"patch",coords:new Int32Array(a),colors:new Int32Array(s)})}}function p(e){for(var t=e.coords[0][0],r=e.coords[0][1],i=t,n=r,a=1,s=e.coords.length;a<s;a++){var o=e.coords[a][0],h=e.coords[a][1];t=t>o?o:t,r=r>h?h:r,i=i<o?o:i,n=n<h?h:n}e.bounds=[t,r,i,n]}function m(e){var t,r,i,n,a=e.coords,s=new Float32Array(2*a.length);for(t=0,i=0,r=a.length;t<r;t++){var o=a[t];s[i++]=o[0],s[i++]=o[1]}e.coords=s;var h=e.colors,l=new Uint8Array(3*h.length);for(t=0,i=0,r=h.length;t<r;t++){var c=h[t];l[i++]=c[0],l[i++]=c[1],l[i++]=c[2]}e.colors=l;var u=e.figures;for(t=0,r=u.length;t<r;t++){var f=u[t],d=f.coords,p=f.colors;for(i=0,n=d.length;i<n;i++)d[i]*=2,p[i]*=3}}function g(s,h,l,c,g,b){if(!(0,a.isStream)(s))throw new i.FormatError("Mesh data is not a stream");var v=s.dict;this.matrix=h,this.shadingType=v.get("ShadingType"),this.type="Pattern";const y=v.getArray("BBox");Array.isArray(y)&&4===y.length?this.bbox=i.Util.normalizeRect(y):this.bbox=null;const w=n.ColorSpace.parse({cs:v.getRaw("ColorSpace")||v.getRaw("CS"),xref:l,resources:c,pdfFunctionFactory:g,localColorSpaceCache:b});this.cs=w,this.background=v.has("Background")?w.getRgb(v.get("Background"),0):null;var M=v.getRaw("Function"),_=M?g.createFromArray(M):null;this.coords=[],this.colors=[],this.figures=[];var S={bitsPerCoordinate:v.get("BitsPerCoordinate"),bitsPerComponent:v.get("BitsPerComponent"),bitsPerFlag:v.get("BitsPerFlag"),decode:v.getArray("Decode"),colorFn:_,colorSpace:w,numComps:_?1:w.numComps},k=new e(s,S),A=!1;switch(this.shadingType){case o.FREE_FORM_MESH:t(this,k);break;case o.LATTICE_FORM_MESH:var x=0|v.get("VerticesPerRow");if(x<2)throw new i.FormatError("Invalid VerticesPerRow");r(this,k,x);break;case o.COONS_PATCH_MESH:f(this,k),A=!0;break;case o.TENSOR_PATCH_MESH:d(this,k),A=!0;break;default:(0,i.unreachable)("Unsupported mesh type.");break}if(A){p(this);for(var C=0,E=this.figures.length;C<E;C++)u(this,C)}p(this),m(this)}return g.prototype={getIR:function(){return["Mesh",this.shadingType,this.coords,this.colors,this.figures,this.bounds,this.matrix,this.bbox,this.background]}},g}(),l.Dummy=function(){function e(){this.type="Pattern"}return e.prototype={getIR:function(){return["Dummy"]}},e}()},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isPDFFunction=c,t.PostScriptCompiler=t.PostScriptEvaluator=t.PDFFunctionFactory=void 0;var i=r(5),n=r(2),a=r(41),s=r(24);class o{constructor({xref:e,isEvalSupported:t=!0}){this.xref=e,this.isEvalSupported=!1!==t,this._localFunctionCache=null}create(e){const t=this.getCached(e);if(t)return t;const r=l.parse({xref:this.xref,isEvalSupported:this.isEvalSupported,fn:e instanceof i.Ref?this.xref.fetch(e):e});return this._cache(e,r),r}createFromArray(e){const t=this.getCached(e);if(t)return t;const r=l.parseArray({xref:this.xref,isEvalSupported:this.isEvalSupported,fnObj:e instanceof i.Ref?this.xref.fetch(e):e});return this._cache(e,r),r}getCached(e){let t;if(e instanceof i.Ref?t=e:e instanceof i.Dict?t=e.objId:(0,i.isStream)(e)&&(t=e.dict&&e.dict.objId),t){this._localFunctionCache||(this._localFunctionCache=new s.LocalFunctionCache);const e=this._localFunctionCache.getByRef(t);if(e)return e}return null}_cache(e,t){if(!t)throw new Error('PDFFunctionFactory._cache - expected "parsedFunction" argument.');let r;e instanceof i.Ref?r=e:e instanceof i.Dict?r=e.objId:(0,i.isStream)(e)&&(r=e.dict&&e.dict.objId),r&&(this._localFunctionCache||(this._localFunctionCache=new s.LocalFunctionCache),this._localFunctionCache.set(null,r,t))}}function h(e){if(!Array.isArray(e))return null;const t=e.length;for(let r=0;r<t;r++)if("number"!==typeof e[r]){const r=new Array(t);for(let i=0;i<t;i++)r[i]=+e[i];return r}return e}t.PDFFunctionFactory=o;var l=function(){const e=0,t=2,r=3,i=4;return{getSampleArray(e,t,r,i){var n,a,s=1;for(n=0,a=e.length;n<a;n++)s*=e[n];s*=t;var o=new Array(s),h=0,l=0,c=1/(2**r-1),u=i.getBytes((s*r+7)/8),f=0;for(n=0;n<s;n++){while(h<r)l<<=8,l|=u[f++],h+=8;h-=r,o[n]=(l>>h)*c,l&=(1<<h)-1}return o},getIR({xref:e,isEvalSupported:t,fn:r}){var i=r.dict;i||(i=r);var a=[this.constructSampled,null,this.constructInterpolated,this.constructStiched,this.constructPostScript],s=i.get("FunctionType"),o=a[s];if(!o)throw new n.FormatError("Unknown type of function");return o.call(this,{xref:e,isEvalSupported:t,fn:r,dict:i})},fromIR({xref:i,isEvalSupported:n,IR:a}){var s=a[0];switch(s){case e:return this.constructSampledFromIR({xref:i,isEvalSupported:n,IR:a});case t:return this.constructInterpolatedFromIR({xref:i,isEvalSupported:n,IR:a});case r:return this.constructStichedFromIR({xref:i,isEvalSupported:n,IR:a});default:return this.constructPostScriptFromIR({xref:i,isEvalSupported:n,IR:a})}},parse({xref:e,isEvalSupported:t,fn:r}){const i=this.getIR({xref:e,isEvalSupported:t,fn:r});return this.fromIR({xref:e,isEvalSupported:t,IR:i})},parseArray({xref:e,isEvalSupported:t,fnObj:r}){if(!Array.isArray(r))return this.parse({xref:e,isEvalSupported:t,fn:r});for(var i=[],n=0,a=r.length;n<a;n++)i.push(this.parse({xref:e,isEvalSupported:t,fn:e.fetchIfRef(r[n])}));return function(e,t,r,n){for(var a=0,s=i.length;a<s;a++)i[a](e,t,r,n+a)}},constructSampled({xref:t,isEvalSupported:r,fn:i,dict:a}){function s(e){for(var t=e.length,r=[],i=0,n=0;n<t;n+=2)r[i]=[e[n],e[n+1]],++i;return r}var o=h(a.getArray("Domain")),l=h(a.getArray("Range"));if(!o||!l)throw new n.FormatError("No domain or range");var c=o.length/2,u=l.length/2;o=s(o),l=s(l);var f=h(a.getArray("Size")),d=a.get("BitsPerSample"),p=a.get("Order")||1;1!==p&&(0,n.info)("No support for cubic spline interpolation: "+p);var m=h(a.getArray("Encode"));if(m)m=s(m);else{m=[];for(var g=0;g<c;++g)m.push([0,f[g]-1])}var b=h(a.getArray("Decode"));b=b?s(b):l;var v=this.getSampleArray(f,u,d,i);return[e,c,o,m,b,v,f,u,2**d-1,l]},constructSampledFromIR({xref:e,isEvalSupported:t,IR:r}){function i(e,t,r,i,n){return i+(n-i)/(r-t)*(e-t)}return function(e,t,n,a){var s,o,h=r[1],l=r[2],c=r[3],u=r[4],f=r[5],d=r[6],p=r[7],m=r[9],g=1<<h,b=new Float64Array(g),v=new Uint32Array(g);for(o=0;o<g;o++)b[o]=1;var y=p,w=1;for(s=0;s<h;++s){var M=l[s][0],_=l[s][1],S=Math.min(Math.max(e[t+s],M),_),k=i(S,M,_,c[s][0],c[s][1]),A=d[s];k=Math.min(Math.max(k,0),A-1);var x=k<A-1?Math.floor(k):k-1,C=x+1-k,E=k-x,T=x*y,R=T+y;for(o=0;o<g;o++)o&w?(b[o]*=E,v[o]+=R):(b[o]*=C,v[o]+=T);y*=A,w<<=1}for(o=0;o<p;++o){var I=0;for(s=0;s<g;s++)I+=f[v[s]+o]*b[s];I=i(I,0,1,u[o][0],u[o][1]),n[a+o]=Math.min(Math.max(I,m[o][0]),m[o][1])}}},constructInterpolated({xref:e,isEvalSupported:r,fn:i,dict:n}){for(var a=h(n.getArray("C0"))||[0],s=h(n.getArray("C1"))||[1],o=n.get("N"),l=a.length,c=[],u=0;u<l;++u)c.push(s[u]-a[u]);return[t,a,c,o]},constructInterpolatedFromIR({xref:e,isEvalSupported:t,IR:r}){var i=r[1],n=r[2],a=r[3],s=n.length;return function(e,t,r,o){for(var h=1===a?e[t]:e[t]**a,l=0;l<s;++l)r[o+l]=i[l]+h*n[l]}},constructStiched({xref:e,isEvalSupported:t,fn:i,dict:a}){var s=h(a.getArray("Domain"));if(!s)throw new n.FormatError("No domain");var o=s.length/2;if(1!==o)throw new n.FormatError("Bad domain for stiched function");for(var l=a.get("Functions"),c=[],u=0,f=l.length;u<f;++u)c.push(this.parse({xref:e,isEvalSupported:t,fn:e.fetchIfRef(l[u])}));var d=h(a.getArray("Bounds")),p=h(a.getArray("Encode"));return[r,s,d,p,c]},constructStichedFromIR({xref:e,isEvalSupported:t,IR:r}){var i=r[1],n=r[2],a=r[3],s=r[4],o=new Float32Array(1);return function(e,t,r,h){for(var l=function(e,t,r){return e>r?e=r:e<t&&(e=t),e},c=l(e[t],i[0],i[1]),u=0,f=n.length;u<f;++u)if(c<n[u])break;var d=i[0];u>0&&(d=n[u-1]);var p=i[1];u<n.length&&(p=n[u]);var m=a[2*u],g=a[2*u+1];o[0]=d===p?m:m+(c-d)*(g-m)/(p-d),s[u](o,0,r,h)}},constructPostScript({xref:e,isEvalSupported:t,fn:r,dict:s}){var o=h(s.getArray("Domain")),l=h(s.getArray("Range"));if(!o)throw new n.FormatError("No domain.");if(!l)throw new n.FormatError("No range.");var c=new a.PostScriptLexer(r),u=new a.PostScriptParser(c),f=u.parse();return[i,o,l,f]},constructPostScriptFromIR({xref:e,isEvalSupported:t,IR:r}){var i=r[1],a=r[2],s=r[3];if(t&&n.IsEvalSupportedCached.value){const e=(new d).compile(s,i,a);if(e)return new Function("src","srcOffset","dest","destOffset",e)}(0,n.info)("Unable to compile PS function");var o=a.length>>1,h=i.length>>1,l=new f(s),c=Object.create(null),u=8192,p=u,m=new Float32Array(h);return function(e,t,r,i){var n,s,u="",f=m;for(n=0;n<h;n++)s=e[t+n],f[n]=s,u+=s+"_";var d=c[u];if(void 0===d){var g=new Float32Array(o),b=l.execute(f),v=b.length-o;for(n=0;n<o;n++){s=b[v+n];var y=a[2*n];s<y?s=y:(y=a[2*n+1],s>y&&(s=y)),g[n]=s}p>0&&(p--,c[u]=g),r.set(g,i)}else r.set(d,i)}}}}();function c(e){var t;if("object"!==typeof e)return!1;if((0,i.isDict)(e))t=e;else{if(!(0,i.isStream)(e))return!1;t=e.dict}return t.has("FunctionType")}var u=function(){var e=100;function t(e){this.stack=e?Array.prototype.slice.call(e,0):[]}return t.prototype={push:function(t){if(this.stack.length>=e)throw new Error("PostScript function stack overflow.");this.stack.push(t)},pop:function(){if(this.stack.length<=0)throw new Error("PostScript function stack underflow.");return this.stack.pop()},copy:function(t){if(this.stack.length+t>=e)throw new Error("PostScript function stack overflow.");for(var r=this.stack,i=r.length-t,n=t-1;n>=0;n--,i++)r.push(r[i])},index:function(e){this.push(this.stack[this.stack.length-e-1])},roll:function(e,t){var r,i,n,a=this.stack,s=a.length-e,o=a.length-1,h=s+(t-Math.floor(t/e)*e);for(r=s,i=o;r<i;r++,i--)n=a[r],a[r]=a[i],a[i]=n;for(r=s,i=h-1;r<i;r++,i--)n=a[r],a[r]=a[i],a[i]=n;for(r=h,i=o;r<i;r++,i--)n=a[r],a[r]=a[i],a[i]=n}},t}(),f=function(){function e(e){this.operators=e}return e.prototype={execute:function(e){var t,r,i,a=new u(e),s=0,o=this.operators,h=o.length;while(s<h)if(t=o[s++],"number"!==typeof t)switch(t){case"jz":i=a.pop(),r=a.pop(),r||(s=i);break;case"j":r=a.pop(),s=r;break;case"abs":r=a.pop(),a.push(Math.abs(r));break;case"add":i=a.pop(),r=a.pop(),a.push(r+i);break;case"and":i=a.pop(),r=a.pop(),(0,n.isBool)(r)&&(0,n.isBool)(i)?a.push(r&&i):a.push(r&i);break;case"atan":r=a.pop(),a.push(Math.atan(r));break;case"bitshift":i=a.pop(),r=a.pop(),r>0?a.push(r<<i):a.push(r>>i);break;case"ceiling":r=a.pop(),a.push(Math.ceil(r));break;case"copy":r=a.pop(),a.copy(r);break;case"cos":r=a.pop(),a.push(Math.cos(r));break;case"cvi":r=0|a.pop(),a.push(r);break;case"cvr":break;case"div":i=a.pop(),r=a.pop(),a.push(r/i);break;case"dup":a.copy(1);break;case"eq":i=a.pop(),r=a.pop(),a.push(r===i);break;case"exch":a.roll(2,1);break;case"exp":i=a.pop(),r=a.pop(),a.push(r**i);break;case"false":a.push(!1);break;case"floor":r=a.pop(),a.push(Math.floor(r));break;case"ge":i=a.pop(),r=a.pop(),a.push(r>=i);break;case"gt":i=a.pop(),r=a.pop(),a.push(r>i);break;case"idiv":i=a.pop(),r=a.pop(),a.push(r/i|0);break;case"index":r=a.pop(),a.index(r);break;case"le":i=a.pop(),r=a.pop(),a.push(r<=i);break;case"ln":r=a.pop(),a.push(Math.log(r));break;case"log":r=a.pop(),a.push(Math.log(r)/Math.LN10);break;case"lt":i=a.pop(),r=a.pop(),a.push(r<i);break;case"mod":i=a.pop(),r=a.pop(),a.push(r%i);break;case"mul":i=a.pop(),r=a.pop(),a.push(r*i);break;case"ne":i=a.pop(),r=a.pop(),a.push(r!==i);break;case"neg":r=a.pop(),a.push(-r);break;case"not":r=a.pop(),(0,n.isBool)(r)?a.push(!r):a.push(~r);break;case"or":i=a.pop(),r=a.pop(),(0,n.isBool)(r)&&(0,n.isBool)(i)?a.push(r||i):a.push(r|i);break;case"pop":a.pop();break;case"roll":i=a.pop(),r=a.pop(),a.roll(r,i);break;case"round":r=a.pop(),a.push(Math.round(r));break;case"sin":r=a.pop(),a.push(Math.sin(r));break;case"sqrt":r=a.pop(),a.push(Math.sqrt(r));break;case"sub":i=a.pop(),r=a.pop(),a.push(r-i);break;case"true":a.push(!0);break;case"truncate":r=a.pop(),r=r<0?Math.ceil(r):Math.floor(r),a.push(r);break;case"xor":i=a.pop(),r=a.pop(),(0,n.isBool)(r)&&(0,n.isBool)(i)?a.push(r!==i):a.push(r^i);break;default:throw new n.FormatError("Unknown operator "+t)}else a.push(t);return a.stack}},e}();t.PostScriptEvaluator=f;var d=function(){function e(e){this.type=e}function t(t,r,i){e.call(this,"args"),this.index=t,this.min=r,this.max=i}function r(t){e.call(this,"literal"),this.number=t,this.min=t,this.max=t}function i(t,r,i,n,a){e.call(this,"binary"),this.op=t,this.arg1=r,this.arg2=i,this.min=n,this.max=a}function a(t,r){e.call(this,"max"),this.arg=t,this.min=t.min,this.max=r}function s(t,r,i){e.call(this,"var"),this.index=t,this.min=r,this.max=i}function o(t,r){e.call(this,"definition"),this.variable=t,this.arg=r}function h(){this.parts=[]}function l(e,t){return"literal"===t.type&&0===t.number?e:"literal"===e.type&&0===e.number?t:"literal"===t.type&&"literal"===e.type?new r(e.number+t.number):new i("+",e,t,e.min+t.min,e.max+t.max)}function c(e,t){if("literal"===t.type){if(0===t.number)return new r(0);if(1===t.number)return e;if("literal"===e.type)return new r(e.number*t.number)}if("literal"===e.type){if(0===e.number)return new r(0);if(1===e.number)return t}var n=Math.min(e.min*t.min,e.min*t.max,e.max*t.min,e.max*t.max),a=Math.max(e.min*t.min,e.min*t.max,e.max*t.min,e.max*t.max);return new i("*",e,t,n,a)}function u(e,t){if("literal"===t.type){if(0===t.number)return e;if("literal"===e.type)return new r(e.number-t.number)}return"binary"===t.type&&"-"===t.op&&"literal"===e.type&&1===e.number&&"literal"===t.arg1.type&&1===t.arg1.number?t.arg2:new i("-",e,t,e.min-t.max,e.max-t.min)}function f(e,t){return e.min>=t?new r(t):e.max<=t?e:new a(e,t)}function d(){}return e.prototype.visit=function(e){(0,n.unreachable)("abstract method")},t.prototype=Object.create(e.prototype),t.prototype.visit=function(e){e.visitArgument(this)},r.prototype=Object.create(e.prototype),r.prototype.visit=function(e){e.visitLiteral(this)},i.prototype=Object.create(e.prototype),i.prototype.visit=function(e){e.visitBinaryOperation(this)},a.prototype=Object.create(e.prototype),a.prototype.visit=function(e){e.visitMin(this)},s.prototype=Object.create(e.prototype),s.prototype.visit=function(e){e.visitVariable(this)},o.prototype=Object.create(e.prototype),o.prototype.visit=function(e){e.visitVariableDefinition(this)},h.prototype={visitArgument(e){this.parts.push("Math.max(",e.min,", Math.min(",e.max,", src[srcOffset + ",e.index,"]))")},visitVariable(e){this.parts.push("v",e.index)},visitLiteral(e){this.parts.push(e.number)},visitBinaryOperation(e){this.parts.push("("),e.arg1.visit(this),this.parts.push(" ",e.op," "),e.arg2.visit(this),this.parts.push(")")},visitVariableDefinition(e){this.parts.push("var "),e.variable.visit(this),this.parts.push(" = "),e.arg.visit(this),this.parts.push(";")},visitMin(e){this.parts.push("Math.min("),e.arg.visit(this),this.parts.push(", ",e.max,")")},toString(){return this.parts.join("")}},d.prototype={compile:function(e,i,n){var a,d,p,m,g,b,v,y,w=[],M=[],_=i.length>>1,S=n.length>>1,k=0;for(let r=0;r<_;r++)w.push(new t(r,i[2*r],i[2*r+1]));for(let t=0,h=e.length;t<h;t++)if(y=e[t],"number"!==typeof y)switch(y){case"add":if(w.length<2)return null;m=w.pop(),p=w.pop(),w.push(l(p,m));break;case"cvr":if(w.length<1)return null;break;case"mul":if(w.length<2)return null;m=w.pop(),p=w.pop(),w.push(c(p,m));break;case"sub":if(w.length<2)return null;m=w.pop(),p=w.pop(),w.push(u(p,m));break;case"exch":if(w.length<2)return null;g=w.pop(),b=w.pop(),w.push(g,b);break;case"pop":if(w.length<1)return null;w.pop();break;case"index":if(w.length<1)return null;if(p=w.pop(),"literal"!==p.type)return null;if(a=p.number,a<0||!Number.isInteger(a)||w.length<a)return null;if(g=w[w.length-a-1],"literal"===g.type||"var"===g.type){w.push(g);break}v=new s(k++,g.min,g.max),w[w.length-a-1]=v,w.push(v),M.push(new o(v,g));break;case"dup":if(w.length<1)return null;if("number"===typeof e[t+1]&&"gt"===e[t+2]&&e[t+3]===t+7&&"jz"===e[t+4]&&"pop"===e[t+5]&&e[t+6]===e[t+1]){p=w.pop(),w.push(f(p,e[t+1])),t+=6;break}if(g=w[w.length-1],"literal"===g.type||"var"===g.type){w.push(g);break}v=new s(k++,g.min,g.max),w[w.length-1]=v,w.push(v),M.push(new o(v,g));break;case"roll":if(w.length<2)return null;if(m=w.pop(),p=w.pop(),"literal"!==m.type||"literal"!==p.type)return null;if(d=m.number,a=p.number,a<=0||!Number.isInteger(a)||!Number.isInteger(d)||w.length<a)return null;if(d=(d%a+a)%a,0===d)break;Array.prototype.push.apply(w,w.splice(w.length-a,a-d));break;default:return null}else w.push(new r(y));if(w.length!==S)return null;var A=[];return M.forEach((function(e){var t=new h;e.visit(t),A.push(t.toString())})),w.forEach((function(e,t){var r=new h;e.visit(r);var i=n[2*t],a=n[2*t+1],s=[r.toString()];i>e.min&&(s.unshift("Math.max(",i,", "),s.push(")")),a<e.max&&(s.unshift("Math.min(",a,", "),s.push(")")),s.unshift("dest[destOffset + ",t,"] = "),s.push(";"),A.push(s.join(""))})),A.join("\n")}},d}();t.PostScriptCompiler=d},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PostScriptParser=t.PostScriptLexer=void 0;var i=r(2),n=r(5),a=r(8);class s{constructor(e){this.lexer=e,this.operators=[],this.token=null,this.prev=null}nextToken(){this.prev=this.token,this.token=this.lexer.getToken()}accept(e){return this.token.type===e&&(this.nextToken(),!0)}expect(e){if(this.accept(e))return!0;throw new i.FormatError(`Unexpected symbol: found ${this.token.type} expected ${e}.`)}parse(){return this.nextToken(),this.expect(o.LBRACE),this.parseBlock(),this.expect(o.RBRACE),this.operators}parseBlock(){while(1)if(this.accept(o.NUMBER))this.operators.push(this.prev.value);else if(this.accept(o.OPERATOR))this.operators.push(this.prev.value);else{if(!this.accept(o.LBRACE))return;this.parseCondition()}}parseCondition(){const e=this.operators.length;if(this.operators.push(null,null),this.parseBlock(),this.expect(o.RBRACE),this.accept(o.IF))this.operators[e]=this.operators.length,this.operators[e+1]="jz";else{if(!this.accept(o.LBRACE))throw new i.FormatError("PS Function: error parsing conditional.");{const t=this.operators.length;this.operators.push(null,null);const r=this.operators.length;this.parseBlock(),this.expect(o.RBRACE),this.expect(o.IFELSE),this.operators[t]=this.operators.length,this.operators[t+1]="j",this.operators[e]=r,this.operators[e+1]="jz"}}}}t.PostScriptParser=s;const o={LBRACE:0,RBRACE:1,NUMBER:2,OPERATOR:3,IF:4,IFELSE:5},h=function(){const e=Object.create(null);class t{constructor(e,t){this.type=e,this.value=t}static getOperator(r){const i=e[r];return i||(e[r]=new t(o.OPERATOR,r))}static get LBRACE(){return(0,i.shadow)(this,"LBRACE",new t(o.LBRACE,"{"))}static get RBRACE(){return(0,i.shadow)(this,"RBRACE",new t(o.RBRACE,"}"))}static get IF(){return(0,i.shadow)(this,"IF",new t(o.IF,"IF"))}static get IFELSE(){return(0,i.shadow)(this,"IFELSE",new t(o.IFELSE,"IFELSE"))}}return t}();class l{constructor(e){this.stream=e,this.nextChar(),this.strBuf=[]}nextChar(){return this.currentChar=this.stream.getByte()}getToken(){let e=!1,t=this.currentChar;while(1){if(t<0)return n.EOF;if(e)10!==t&&13!==t||(e=!1);else if(37===t)e=!0;else if(!(0,a.isWhiteSpace)(t))break;t=this.nextChar()}switch(0|t){case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:case 43:case 45:case 46:return new h(o.NUMBER,this.getNumber());case 123:return this.nextChar(),h.LBRACE;case 125:return this.nextChar(),h.RBRACE}const r=this.strBuf;r.length=0,r[0]=String.fromCharCode(t);while((t=this.nextChar())>=0&&(t>=65&&t<=90||t>=97&&t<=122))r.push(String.fromCharCode(t));const i=r.join("");switch(i.toLowerCase()){case"if":return h.IF;case"ifelse":return h.IFELSE;default:return h.getOperator(i)}}getNumber(){let e=this.currentChar;const t=this.strBuf;t.length=0,t[0]=String.fromCharCode(e);while((e=this.nextChar())>=0){if(!(e>=48&&e<=57||45===e||46===e))break;t.push(String.fromCharCode(e))}const r=parseFloat(t.join(""));if(isNaN(r))throw new i.FormatError("Invalid floating point number: "+r);return r}}t.PostScriptLexer=l},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.bidi=p;var i=r(2),n=["BN","BN","BN","BN","BN","BN","BN","BN","BN","S","B","S","WS","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","B","B","B","S","WS","ON","ON","ET","ET","ET","ON","ON","ON","ON","ON","ES","CS","ES","CS","CS","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","CS","ON","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","ON","ON","ON","BN","BN","BN","BN","BN","BN","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","CS","ON","ET","ET","ET","ET","ON","ON","ON","ON","L","ON","ON","BN","ON","ON","ET","ET","EN","EN","ON","L","ON","ON","ON","EN","L","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","L","L","L","L","L","L","L","L"],a=["AN","AN","AN","AN","AN","AN","ON","ON","AL","ET","ET","AL","CS","AL","ON","ON","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","AL","AL","","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","AN","AN","AN","AN","AN","AN","AN","AN","AN","AN","ET","AN","AN","AL","AL","AL","NSM","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","NSM","NSM","NSM","NSM","NSM","NSM","NSM","AN","ON","NSM","NSM","NSM","NSM","NSM","NSM","AL","AL","NSM","NSM","ON","NSM","NSM","NSM","NSM","AL","AL","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","AL","AL","AL","AL","AL","AL"];function s(e){return 0!==(1&e)}function o(e){return 0===(1&e)}function h(e,t,r){for(var i=t,n=e.length;i<n;++i)if(e[i]!==r)return i;return i}function l(e,t,r,i){for(var n=t;n<r;++n)e[n]=i}function c(e,t,r){for(var i=t,n=r-1;i<n;++i,--n){var a=e[i];e[i]=e[n],e[n]=a}}function u(e,t,r=!1){let i="ltr";return r?i="ttb":t||(i="rtl"),{str:e,dir:i}}var f=[],d=[];function p(e,t,r){var p=!0,m=e.length;if(0===m||r)return u(e,p,r);f.length=m,d.length=m;var g,b,v=0;for(g=0;g<m;++g){f[g]=e.charAt(g);var y=e.charCodeAt(g),w="L";y<=255?w=n[y]:1424<=y&&y<=1524?w="R":1536<=y&&y<=1791?(w=a[255&y],w||(0,i.warn)("Bidi: invalid Unicode character "+y.toString(16))):1792<=y&&y<=2220&&(w="AL"),"R"!==w&&"AL"!==w&&"AN"!==w||v++,d[g]=w}if(0===v)return p=!0,u(e,p);-1===t&&(v/m<.3?(p=!0,t=0):(p=!1,t=1));var M=[];for(g=0;g<m;++g)M[g]=t;var _,S=s(t)?"R":"L",k=S,A=k,x=k;for(g=0;g<m;++g)"NSM"===d[g]?d[g]=x:x=d[g];for(x=k,g=0;g<m;++g)_=d[g],"EN"===_?d[g]="AL"===x?"AN":"EN":"R"!==_&&"L"!==_&&"AL"!==_||(x=_);for(g=0;g<m;++g)_=d[g],"AL"===_&&(d[g]="R");for(g=1;g<m-1;++g)"ES"===d[g]&&"EN"===d[g-1]&&"EN"===d[g+1]&&(d[g]="EN"),"CS"!==d[g]||"EN"!==d[g-1]&&"AN"!==d[g-1]||d[g+1]!==d[g-1]||(d[g]=d[g-1]);for(g=0;g<m;++g)if("EN"===d[g]){var C;for(C=g-1;C>=0;--C){if("ET"!==d[C])break;d[C]="EN"}for(C=g+1;C<m;++C){if("ET"!==d[C])break;d[C]="EN"}}for(g=0;g<m;++g)_=d[g],"WS"!==_&&"ES"!==_&&"ET"!==_&&"CS"!==_||(d[g]="ON");for(x=k,g=0;g<m;++g)_=d[g],"EN"===_?d[g]="L"===x?"L":"EN":"R"!==_&&"L"!==_||(x=_);for(g=0;g<m;++g)if("ON"===d[g]){var E=h(d,g+1,"ON"),T=k;g>0&&(T=d[g-1]);var R=A;E+1<m&&(R=d[E+1]),"L"!==T&&(T="R"),"L"!==R&&(R="R"),T===R&&l(d,g,E,T),g=E-1}for(g=0;g<m;++g)"ON"===d[g]&&(d[g]=S);for(g=0;g<m;++g)_=d[g],o(M[g])?"R"===_?M[g]+=1:"AN"!==_&&"EN"!==_||(M[g]+=2):"L"!==_&&"AN"!==_&&"EN"!==_||(M[g]+=1);var I,P=-1,O=99;for(g=0,b=M.length;g<b;++g)I=M[g],P<I&&(P=I),O>I&&s(I)&&(O=I);for(I=P;I>=O;--I){var F=-1;for(g=0,b=M.length;g<b;++g)M[g]<I?F>=0&&(c(f,F,g),F=-1):F<0&&(F=g);F>=0&&c(f,F,M.length)}for(g=0,b=f.length;g<b;++g){var L=f[g];"<"!==L&&">"!==L||(f[g]="")}return u(f.join(""),p)}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getMetrics=void 0;var i=r(8),n=(0,i.getLookupTableFactory)((function(e){e.Courier=600,e["Courier-Bold"]=600,e["Courier-BoldOblique"]=600,e["Courier-Oblique"]=600,e.Helvetica=(0,i.getLookupTableFactory)((function(e){e.space=278,e.exclam=278,e.quotedbl=355,e.numbersign=556,e.dollar=556,e.percent=889,e.ampersand=667,e.quoteright=222,e.parenleft=333,e.parenright=333,e.asterisk=389,e.plus=584,e.comma=278,e.hyphen=333,e.period=278,e.slash=278,e.zero=556,e.one=556,e.two=556,e.three=556,e.four=556,e.five=556,e.six=556,e.seven=556,e.eight=556,e.nine=556,e.colon=278,e.semicolon=278,e.less=584,e.equal=584,e.greater=584,e.question=556,e.at=1015,e.A=667,e.B=667,e.C=722,e.D=722,e.E=667,e.F=611,e.G=778,e.H=722,e.I=278,e.J=500,e.K=667,e.L=556,e.M=833,e.N=722,e.O=778,e.P=667,e.Q=778,e.R=722,e.S=667,e.T=611,e.U=722,e.V=667,e.W=944,e.X=667,e.Y=667,e.Z=611,e.bracketleft=278,e.backslash=278,e.bracketright=278,e.asciicircum=469,e.underscore=556,e.quoteleft=222,e.a=556,e.b=556,e.c=500,e.d=556,e.e=556,e.f=278,e.g=556,e.h=556,e.i=222,e.j=222,e.k=500,e.l=222,e.m=833,e.n=556,e.o=556,e.p=556,e.q=556,e.r=333,e.s=500,e.t=278,e.u=556,e.v=500,e.w=722,e.x=500,e.y=500,e.z=500,e.braceleft=334,e.bar=260,e.braceright=334,e.asciitilde=584,e.exclamdown=333,e.cent=556,e.sterling=556,e.fraction=167,e.yen=556,e.florin=556,e.section=556,e.currency=556,e.quotesingle=191,e.quotedblleft=333,e.guillemotleft=556,e.guilsinglleft=333,e.guilsinglright=333,e.fi=500,e.fl=500,e.endash=556,e.dagger=556,e.daggerdbl=556,e.periodcentered=278,e.paragraph=537,e.bullet=350,e.quotesinglbase=222,e.quotedblbase=333,e.quotedblright=333,e.guillemotright=556,e.ellipsis=1e3,e.perthousand=1e3,e.questiondown=611,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=1e3,e.AE=1e3,e.ordfeminine=370,e.Lslash=556,e.Oslash=778,e.OE=1e3,e.ordmasculine=365,e.ae=889,e.dotlessi=278,e.lslash=222,e.oslash=611,e.oe=944,e.germandbls=611,e.Idieresis=278,e.eacute=556,e.abreve=556,e.uhungarumlaut=556,e.ecaron=556,e.Ydieresis=667,e.divide=584,e.Yacute=667,e.Acircumflex=667,e.aacute=556,e.Ucircumflex=722,e.yacute=500,e.scommaaccent=500,e.ecircumflex=556,e.Uring=722,e.Udieresis=722,e.aogonek=556,e.Uacute=722,e.uogonek=556,e.Edieresis=667,e.Dcroat=722,e.commaaccent=250,e.copyright=737,e.Emacron=667,e.ccaron=500,e.aring=556,e.Ncommaaccent=722,e.lacute=222,e.agrave=556,e.Tcommaaccent=611,e.Cacute=722,e.atilde=556,e.Edotaccent=667,e.scaron=500,e.scedilla=500,e.iacute=278,e.lozenge=471,e.Rcaron=722,e.Gcommaaccent=778,e.ucircumflex=556,e.acircumflex=556,e.Amacron=667,e.rcaron=333,e.ccedilla=500,e.Zdotaccent=611,e.Thorn=667,e.Omacron=778,e.Racute=722,e.Sacute=667,e.dcaron=643,e.Umacron=722,e.uring=556,e.threesuperior=333,e.Ograve=778,e.Agrave=667,e.Abreve=667,e.multiply=584,e.uacute=556,e.Tcaron=611,e.partialdiff=476,e.ydieresis=500,e.Nacute=722,e.icircumflex=278,e.Ecircumflex=667,e.adieresis=556,e.edieresis=556,e.cacute=500,e.nacute=556,e.umacron=556,e.Ncaron=722,e.Iacute=278,e.plusminus=584,e.brokenbar=260,e.registered=737,e.Gbreve=778,e.Idotaccent=278,e.summation=600,e.Egrave=667,e.racute=333,e.omacron=556,e.Zacute=611,e.Zcaron=611,e.greaterequal=549,e.Eth=722,e.Ccedilla=722,e.lcommaaccent=222,e.tcaron=317,e.eogonek=556,e.Uogonek=722,e.Aacute=667,e.Adieresis=667,e.egrave=556,e.zacute=500,e.iogonek=222,e.Oacute=778,e.oacute=556,e.amacron=556,e.sacute=500,e.idieresis=278,e.Ocircumflex=778,e.Ugrave=722,e.Delta=612,e.thorn=556,e.twosuperior=333,e.Odieresis=778,e.mu=556,e.igrave=278,e.ohungarumlaut=556,e.Eogonek=667,e.dcroat=556,e.threequarters=834,e.Scedilla=667,e.lcaron=299,e.Kcommaaccent=667,e.Lacute=556,e.trademark=1e3,e.edotaccent=556,e.Igrave=278,e.Imacron=278,e.Lcaron=556,e.onehalf=834,e.lessequal=549,e.ocircumflex=556,e.ntilde=556,e.Uhungarumlaut=722,e.Eacute=667,e.emacron=556,e.gbreve=556,e.onequarter=834,e.Scaron=667,e.Scommaaccent=667,e.Ohungarumlaut=778,e.degree=400,e.ograve=556,e.Ccaron=722,e.ugrave=556,e.radical=453,e.Dcaron=722,e.rcommaaccent=333,e.Ntilde=722,e.otilde=556,e.Rcommaaccent=722,e.Lcommaaccent=556,e.Atilde=667,e.Aogonek=667,e.Aring=667,e.Otilde=778,e.zdotaccent=500,e.Ecaron=667,e.Iogonek=278,e.kcommaaccent=500,e.minus=584,e.Icircumflex=278,e.ncaron=556,e.tcommaaccent=278,e.logicalnot=584,e.odieresis=556,e.udieresis=556,e.notequal=549,e.gcommaaccent=556,e.eth=556,e.zcaron=500,e.ncommaaccent=556,e.onesuperior=333,e.imacron=278,e.Euro=556})),e["Helvetica-Bold"]=(0,i.getLookupTableFactory)((function(e){e.space=278,e.exclam=333,e.quotedbl=474,e.numbersign=556,e.dollar=556,e.percent=889,e.ampersand=722,e.quoteright=278,e.parenleft=333,e.parenright=333,e.asterisk=389,e.plus=584,e.comma=278,e.hyphen=333,e.period=278,e.slash=278,e.zero=556,e.one=556,e.two=556,e.three=556,e.four=556,e.five=556,e.six=556,e.seven=556,e.eight=556,e.nine=556,e.colon=333,e.semicolon=333,e.less=584,e.equal=584,e.greater=584,e.question=611,e.at=975,e.A=722,e.B=722,e.C=722,e.D=722,e.E=667,e.F=611,e.G=778,e.H=722,e.I=278,e.J=556,e.K=722,e.L=611,e.M=833,e.N=722,e.O=778,e.P=667,e.Q=778,e.R=722,e.S=667,e.T=611,e.U=722,e.V=667,e.W=944,e.X=667,e.Y=667,e.Z=611,e.bracketleft=333,e.backslash=278,e.bracketright=333,e.asciicircum=584,e.underscore=556,e.quoteleft=278,e.a=556,e.b=611,e.c=556,e.d=611,e.e=556,e.f=333,e.g=611,e.h=611,e.i=278,e.j=278,e.k=556,e.l=278,e.m=889,e.n=611,e.o=611,e.p=611,e.q=611,e.r=389,e.s=556,e.t=333,e.u=611,e.v=556,e.w=778,e.x=556,e.y=556,e.z=500,e.braceleft=389,e.bar=280,e.braceright=389,e.asciitilde=584,e.exclamdown=333,e.cent=556,e.sterling=556,e.fraction=167,e.yen=556,e.florin=556,e.section=556,e.currency=556,e.quotesingle=238,e.quotedblleft=500,e.guillemotleft=556,e.guilsinglleft=333,e.guilsinglright=333,e.fi=611,e.fl=611,e.endash=556,e.dagger=556,e.daggerdbl=556,e.periodcentered=278,e.paragraph=556,e.bullet=350,e.quotesinglbase=278,e.quotedblbase=500,e.quotedblright=500,e.guillemotright=556,e.ellipsis=1e3,e.perthousand=1e3,e.questiondown=611,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=1e3,e.AE=1e3,e.ordfeminine=370,e.Lslash=611,e.Oslash=778,e.OE=1e3,e.ordmasculine=365,e.ae=889,e.dotlessi=278,e.lslash=278,e.oslash=611,e.oe=944,e.germandbls=611,e.Idieresis=278,e.eacute=556,e.abreve=556,e.uhungarumlaut=611,e.ecaron=556,e.Ydieresis=667,e.divide=584,e.Yacute=667,e.Acircumflex=722,e.aacute=556,e.Ucircumflex=722,e.yacute=556,e.scommaaccent=556,e.ecircumflex=556,e.Uring=722,e.Udieresis=722,e.aogonek=556,e.Uacute=722,e.uogonek=611,e.Edieresis=667,e.Dcroat=722,e.commaaccent=250,e.copyright=737,e.Emacron=667,e.ccaron=556,e.aring=556,e.Ncommaaccent=722,e.lacute=278,e.agrave=556,e.Tcommaaccent=611,e.Cacute=722,e.atilde=556,e.Edotaccent=667,e.scaron=556,e.scedilla=556,e.iacute=278,e.lozenge=494,e.Rcaron=722,e.Gcommaaccent=778,e.ucircumflex=611,e.acircumflex=556,e.Amacron=722,e.rcaron=389,e.ccedilla=556,e.Zdotaccent=611,e.Thorn=667,e.Omacron=778,e.Racute=722,e.Sacute=667,e.dcaron=743,e.Umacron=722,e.uring=611,e.threesuperior=333,e.Ograve=778,e.Agrave=722,e.Abreve=722,e.multiply=584,e.uacute=611,e.Tcaron=611,e.partialdiff=494,e.ydieresis=556,e.Nacute=722,e.icircumflex=278,e.Ecircumflex=667,e.adieresis=556,e.edieresis=556,e.cacute=556,e.nacute=611,e.umacron=611,e.Ncaron=722,e.Iacute=278,e.plusminus=584,e.brokenbar=280,e.registered=737,e.Gbreve=778,e.Idotaccent=278,e.summation=600,e.Egrave=667,e.racute=389,e.omacron=611,e.Zacute=611,e.Zcaron=611,e.greaterequal=549,e.Eth=722,e.Ccedilla=722,e.lcommaaccent=278,e.tcaron=389,e.eogonek=556,e.Uogonek=722,e.Aacute=722,e.Adieresis=722,e.egrave=556,e.zacute=500,e.iogonek=278,e.Oacute=778,e.oacute=611,e.amacron=556,e.sacute=556,e.idieresis=278,e.Ocircumflex=778,e.Ugrave=722,e.Delta=612,e.thorn=611,e.twosuperior=333,e.Odieresis=778,e.mu=611,e.igrave=278,e.ohungarumlaut=611,e.Eogonek=667,e.dcroat=611,e.threequarters=834,e.Scedilla=667,e.lcaron=400,e.Kcommaaccent=722,e.Lacute=611,e.trademark=1e3,e.edotaccent=556,e.Igrave=278,e.Imacron=278,e.Lcaron=611,e.onehalf=834,e.lessequal=549,e.ocircumflex=611,e.ntilde=611,e.Uhungarumlaut=722,e.Eacute=667,e.emacron=556,e.gbreve=611,e.onequarter=834,e.Scaron=667,e.Scommaaccent=667,e.Ohungarumlaut=778,e.degree=400,e.ograve=611,e.Ccaron=722,e.ugrave=611,e.radical=549,e.Dcaron=722,e.rcommaaccent=389,e.Ntilde=722,e.otilde=611,e.Rcommaaccent=722,e.Lcommaaccent=611,e.Atilde=722,e.Aogonek=722,e.Aring=722,e.Otilde=778,e.zdotaccent=500,e.Ecaron=667,e.Iogonek=278,e.kcommaaccent=556,e.minus=584,e.Icircumflex=278,e.ncaron=611,e.tcommaaccent=333,e.logicalnot=584,e.odieresis=611,e.udieresis=611,e.notequal=549,e.gcommaaccent=611,e.eth=611,e.zcaron=500,e.ncommaaccent=611,e.onesuperior=333,e.imacron=278,e.Euro=556})),e["Helvetica-BoldOblique"]=(0,i.getLookupTableFactory)((function(e){e.space=278,e.exclam=333,e.quotedbl=474,e.numbersign=556,e.dollar=556,e.percent=889,e.ampersand=722,e.quoteright=278,e.parenleft=333,e.parenright=333,e.asterisk=389,e.plus=584,e.comma=278,e.hyphen=333,e.period=278,e.slash=278,e.zero=556,e.one=556,e.two=556,e.three=556,e.four=556,e.five=556,e.six=556,e.seven=556,e.eight=556,e.nine=556,e.colon=333,e.semicolon=333,e.less=584,e.equal=584,e.greater=584,e.question=611,e.at=975,e.A=722,e.B=722,e.C=722,e.D=722,e.E=667,e.F=611,e.G=778,e.H=722,e.I=278,e.J=556,e.K=722,e.L=611,e.M=833,e.N=722,e.O=778,e.P=667,e.Q=778,e.R=722,e.S=667,e.T=611,e.U=722,e.V=667,e.W=944,e.X=667,e.Y=667,e.Z=611,e.bracketleft=333,e.backslash=278,e.bracketright=333,e.asciicircum=584,e.underscore=556,e.quoteleft=278,e.a=556,e.b=611,e.c=556,e.d=611,e.e=556,e.f=333,e.g=611,e.h=611,e.i=278,e.j=278,e.k=556,e.l=278,e.m=889,e.n=611,e.o=611,e.p=611,e.q=611,e.r=389,e.s=556,e.t=333,e.u=611,e.v=556,e.w=778,e.x=556,e.y=556,e.z=500,e.braceleft=389,e.bar=280,e.braceright=389,e.asciitilde=584,e.exclamdown=333,e.cent=556,e.sterling=556,e.fraction=167,e.yen=556,e.florin=556,e.section=556,e.currency=556,e.quotesingle=238,e.quotedblleft=500,e.guillemotleft=556,e.guilsinglleft=333,e.guilsinglright=333,e.fi=611,e.fl=611,e.endash=556,e.dagger=556,e.daggerdbl=556,e.periodcentered=278,e.paragraph=556,e.bullet=350,e.quotesinglbase=278,e.quotedblbase=500,e.quotedblright=500,e.guillemotright=556,e.ellipsis=1e3,e.perthousand=1e3,e.questiondown=611,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=1e3,e.AE=1e3,e.ordfeminine=370,e.Lslash=611,e.Oslash=778,e.OE=1e3,e.ordmasculine=365,e.ae=889,e.dotlessi=278,e.lslash=278,e.oslash=611,e.oe=944,e.germandbls=611,e.Idieresis=278,e.eacute=556,e.abreve=556,e.uhungarumlaut=611,e.ecaron=556,e.Ydieresis=667,e.divide=584,e.Yacute=667,e.Acircumflex=722,e.aacute=556,e.Ucircumflex=722,e.yacute=556,e.scommaaccent=556,e.ecircumflex=556,e.Uring=722,e.Udieresis=722,e.aogonek=556,e.Uacute=722,e.uogonek=611,e.Edieresis=667,e.Dcroat=722,e.commaaccent=250,e.copyright=737,e.Emacron=667,e.ccaron=556,e.aring=556,e.Ncommaaccent=722,e.lacute=278,e.agrave=556,e.Tcommaaccent=611,e.Cacute=722,e.atilde=556,e.Edotaccent=667,e.scaron=556,e.scedilla=556,e.iacute=278,e.lozenge=494,e.Rcaron=722,e.Gcommaaccent=778,e.ucircumflex=611,e.acircumflex=556,e.Amacron=722,e.rcaron=389,e.ccedilla=556,e.Zdotaccent=611,e.Thorn=667,e.Omacron=778,e.Racute=722,e.Sacute=667,e.dcaron=743,e.Umacron=722,e.uring=611,e.threesuperior=333,e.Ograve=778,e.Agrave=722,e.Abreve=722,e.multiply=584,e.uacute=611,e.Tcaron=611,e.partialdiff=494,e.ydieresis=556,e.Nacute=722,e.icircumflex=278,e.Ecircumflex=667,e.adieresis=556,e.edieresis=556,e.cacute=556,e.nacute=611,e.umacron=611,e.Ncaron=722,e.Iacute=278,e.plusminus=584,e.brokenbar=280,e.registered=737,e.Gbreve=778,e.Idotaccent=278,e.summation=600,e.Egrave=667,e.racute=389,e.omacron=611,e.Zacute=611,e.Zcaron=611,e.greaterequal=549,e.Eth=722,e.Ccedilla=722,e.lcommaaccent=278,e.tcaron=389,e.eogonek=556,e.Uogonek=722,e.Aacute=722,e.Adieresis=722,e.egrave=556,e.zacute=500,e.iogonek=278,e.Oacute=778,e.oacute=611,e.amacron=556,e.sacute=556,e.idieresis=278,e.Ocircumflex=778,e.Ugrave=722,e.Delta=612,e.thorn=611,e.twosuperior=333,e.Odieresis=778,e.mu=611,e.igrave=278,e.ohungarumlaut=611,e.Eogonek=667,e.dcroat=611,e.threequarters=834,e.Scedilla=667,e.lcaron=400,e.Kcommaaccent=722,e.Lacute=611,e.trademark=1e3,e.edotaccent=556,e.Igrave=278,e.Imacron=278,e.Lcaron=611,e.onehalf=834,e.lessequal=549,e.ocircumflex=611,e.ntilde=611,e.Uhungarumlaut=722,e.Eacute=667,e.emacron=556,e.gbreve=611,e.onequarter=834,e.Scaron=667,e.Scommaaccent=667,e.Ohungarumlaut=778,e.degree=400,e.ograve=611,e.Ccaron=722,e.ugrave=611,e.radical=549,e.Dcaron=722,e.rcommaaccent=389,e.Ntilde=722,e.otilde=611,e.Rcommaaccent=722,e.Lcommaaccent=611,e.Atilde=722,e.Aogonek=722,e.Aring=722,e.Otilde=778,e.zdotaccent=500,e.Ecaron=667,e.Iogonek=278,e.kcommaaccent=556,e.minus=584,e.Icircumflex=278,e.ncaron=611,e.tcommaaccent=333,e.logicalnot=584,e.odieresis=611,e.udieresis=611,e.notequal=549,e.gcommaaccent=611,e.eth=611,e.zcaron=500,e.ncommaaccent=611,e.onesuperior=333,e.imacron=278,e.Euro=556})),e["Helvetica-Oblique"]=(0,i.getLookupTableFactory)((function(e){e.space=278,e.exclam=278,e.quotedbl=355,e.numbersign=556,e.dollar=556,e.percent=889,e.ampersand=667,e.quoteright=222,e.parenleft=333,e.parenright=333,e.asterisk=389,e.plus=584,e.comma=278,e.hyphen=333,e.period=278,e.slash=278,e.zero=556,e.one=556,e.two=556,e.three=556,e.four=556,e.five=556,e.six=556,e.seven=556,e.eight=556,e.nine=556,e.colon=278,e.semicolon=278,e.less=584,e.equal=584,e.greater=584,e.question=556,e.at=1015,e.A=667,e.B=667,e.C=722,e.D=722,e.E=667,e.F=611,e.G=778,e.H=722,e.I=278,e.J=500,e.K=667,e.L=556,e.M=833,e.N=722,e.O=778,e.P=667,e.Q=778,e.R=722,e.S=667,e.T=611,e.U=722,e.V=667,e.W=944,e.X=667,e.Y=667,e.Z=611,e.bracketleft=278,e.backslash=278,e.bracketright=278,e.asciicircum=469,e.underscore=556,e.quoteleft=222,e.a=556,e.b=556,e.c=500,e.d=556,e.e=556,e.f=278,e.g=556,e.h=556,e.i=222,e.j=222,e.k=500,e.l=222,e.m=833,e.n=556,e.o=556,e.p=556,e.q=556,e.r=333,e.s=500,e.t=278,e.u=556,e.v=500,e.w=722,e.x=500,e.y=500,e.z=500,e.braceleft=334,e.bar=260,e.braceright=334,e.asciitilde=584,e.exclamdown=333,e.cent=556,e.sterling=556,e.fraction=167,e.yen=556,e.florin=556,e.section=556,e.currency=556,e.quotesingle=191,e.quotedblleft=333,e.guillemotleft=556,e.guilsinglleft=333,e.guilsinglright=333,e.fi=500,e.fl=500,e.endash=556,e.dagger=556,e.daggerdbl=556,e.periodcentered=278,e.paragraph=537,e.bullet=350,e.quotesinglbase=222,e.quotedblbase=333,e.quotedblright=333,e.guillemotright=556,e.ellipsis=1e3,e.perthousand=1e3,e.questiondown=611,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=1e3,e.AE=1e3,e.ordfeminine=370,e.Lslash=556,e.Oslash=778,e.OE=1e3,e.ordmasculine=365,e.ae=889,e.dotlessi=278,e.lslash=222,e.oslash=611,e.oe=944,e.germandbls=611,e.Idieresis=278,e.eacute=556,e.abreve=556,e.uhungarumlaut=556,e.ecaron=556,e.Ydieresis=667,e.divide=584,e.Yacute=667,e.Acircumflex=667,e.aacute=556,e.Ucircumflex=722,e.yacute=500,e.scommaaccent=500,e.ecircumflex=556,e.Uring=722,e.Udieresis=722,e.aogonek=556,e.Uacute=722,e.uogonek=556,e.Edieresis=667,e.Dcroat=722,e.commaaccent=250,e.copyright=737,e.Emacron=667,e.ccaron=500,e.aring=556,e.Ncommaaccent=722,e.lacute=222,e.agrave=556,e.Tcommaaccent=611,e.Cacute=722,e.atilde=556,e.Edotaccent=667,e.scaron=500,e.scedilla=500,e.iacute=278,e.lozenge=471,e.Rcaron=722,e.Gcommaaccent=778,e.ucircumflex=556,e.acircumflex=556,e.Amacron=667,e.rcaron=333,e.ccedilla=500,e.Zdotaccent=611,e.Thorn=667,e.Omacron=778,e.Racute=722,e.Sacute=667,e.dcaron=643,e.Umacron=722,e.uring=556,e.threesuperior=333,e.Ograve=778,e.Agrave=667,e.Abreve=667,e.multiply=584,e.uacute=556,e.Tcaron=611,e.partialdiff=476,e.ydieresis=500,e.Nacute=722,e.icircumflex=278,e.Ecircumflex=667,e.adieresis=556,e.edieresis=556,e.cacute=500,e.nacute=556,e.umacron=556,e.Ncaron=722,e.Iacute=278,e.plusminus=584,e.brokenbar=260,e.registered=737,e.Gbreve=778,e.Idotaccent=278,e.summation=600,e.Egrave=667,e.racute=333,e.omacron=556,e.Zacute=611,e.Zcaron=611,e.greaterequal=549,e.Eth=722,e.Ccedilla=722,e.lcommaaccent=222,e.tcaron=317,e.eogonek=556,e.Uogonek=722,e.Aacute=667,e.Adieresis=667,e.egrave=556,e.zacute=500,e.iogonek=222,e.Oacute=778,e.oacute=556,e.amacron=556,e.sacute=500,e.idieresis=278,e.Ocircumflex=778,e.Ugrave=722,e.Delta=612,e.thorn=556,e.twosuperior=333,e.Odieresis=778,e.mu=556,e.igrave=278,e.ohungarumlaut=556,e.Eogonek=667,e.dcroat=556,e.threequarters=834,e.Scedilla=667,e.lcaron=299,e.Kcommaaccent=667,e.Lacute=556,e.trademark=1e3,e.edotaccent=556,e.Igrave=278,e.Imacron=278,e.Lcaron=556,e.onehalf=834,e.lessequal=549,e.ocircumflex=556,e.ntilde=556,e.Uhungarumlaut=722,e.Eacute=667,e.emacron=556,e.gbreve=556,e.onequarter=834,e.Scaron=667,e.Scommaaccent=667,e.Ohungarumlaut=778,e.degree=400,e.ograve=556,e.Ccaron=722,e.ugrave=556,e.radical=453,e.Dcaron=722,e.rcommaaccent=333,e.Ntilde=722,e.otilde=556,e.Rcommaaccent=722,e.Lcommaaccent=556,e.Atilde=667,e.Aogonek=667,e.Aring=667,e.Otilde=778,e.zdotaccent=500,e.Ecaron=667,e.Iogonek=278,e.kcommaaccent=500,e.minus=584,e.Icircumflex=278,e.ncaron=556,e.tcommaaccent=278,e.logicalnot=584,e.odieresis=556,e.udieresis=556,e.notequal=549,e.gcommaaccent=556,e.eth=556,e.zcaron=500,e.ncommaaccent=556,e.onesuperior=333,e.imacron=278,e.Euro=556})),e.Symbol=(0,i.getLookupTableFactory)((function(e){e.space=250,e.exclam=333,e.universal=713,e.numbersign=500,e.existential=549,e.percent=833,e.ampersand=778,e.suchthat=439,e.parenleft=333,e.parenright=333,e.asteriskmath=500,e.plus=549,e.comma=250,e.minus=549,e.period=250,e.slash=278,e.zero=500,e.one=500,e.two=500,e.three=500,e.four=500,e.five=500,e.six=500,e.seven=500,e.eight=500,e.nine=500,e.colon=278,e.semicolon=278,e.less=549,e.equal=549,e.greater=549,e.question=444,e.congruent=549,e.Alpha=722,e.Beta=667,e.Chi=722,e.Delta=612,e.Epsilon=611,e.Phi=763,e.Gamma=603,e.Eta=722,e.Iota=333,e.theta1=631,e.Kappa=722,e.Lambda=686,e.Mu=889,e.Nu=722,e.Omicron=722,e.Pi=768,e.Theta=741,e.Rho=556,e.Sigma=592,e.Tau=611,e.Upsilon=690,e.sigma1=439,e.Omega=768,e.Xi=645,e.Psi=795,e.Zeta=611,e.bracketleft=333,e.therefore=863,e.bracketright=333,e.perpendicular=658,e.underscore=500,e.radicalex=500,e.alpha=631,e.beta=549,e.chi=549,e.delta=494,e.epsilon=439,e.phi=521,e.gamma=411,e.eta=603,e.iota=329,e.phi1=603,e.kappa=549,e.lambda=549,e.mu=576,e.nu=521,e.omicron=549,e.pi=549,e.theta=521,e.rho=549,e.sigma=603,e.tau=439,e.upsilon=576,e.omega1=713,e.omega=686,e.xi=493,e.psi=686,e.zeta=494,e.braceleft=480,e.bar=200,e.braceright=480,e.similar=549,e.Euro=750,e.Upsilon1=620,e.minute=247,e.lessequal=549,e.fraction=167,e.infinity=713,e.florin=500,e.club=753,e.diamond=753,e.heart=753,e.spade=753,e.arrowboth=1042,e.arrowleft=987,e.arrowup=603,e.arrowright=987,e.arrowdown=603,e.degree=400,e.plusminus=549,e.second=411,e.greaterequal=549,e.multiply=549,e.proportional=713,e.partialdiff=494,e.bullet=460,e.divide=549,e.notequal=549,e.equivalence=549,e.approxequal=549,e.ellipsis=1e3,e.arrowvertex=603,e.arrowhorizex=1e3,e.carriagereturn=658,e.aleph=823,e.Ifraktur=686,e.Rfraktur=795,e.weierstrass=987,e.circlemultiply=768,e.circleplus=768,e.emptyset=823,e.intersection=768,e.union=768,e.propersuperset=713,e.reflexsuperset=713,e.notsubset=713,e.propersubset=713,e.reflexsubset=713,e.element=713,e.notelement=713,e.angle=768,e.gradient=713,e.registerserif=790,e.copyrightserif=790,e.trademarkserif=890,e.product=823,e.radical=549,e.dotmath=250,e.logicalnot=713,e.logicaland=603,e.logicalor=603,e.arrowdblboth=1042,e.arrowdblleft=987,e.arrowdblup=603,e.arrowdblright=987,e.arrowdbldown=603,e.lozenge=494,e.angleleft=329,e.registersans=790,e.copyrightsans=790,e.trademarksans=786,e.summation=713,e.parenlefttp=384,e.parenleftex=384,e.parenleftbt=384,e.bracketlefttp=384,e.bracketleftex=384,e.bracketleftbt=384,e.bracelefttp=494,e.braceleftmid=494,e.braceleftbt=494,e.braceex=494,e.angleright=329,e.integral=274,e.integraltp=686,e.integralex=686,e.integralbt=686,e.parenrighttp=384,e.parenrightex=384,e.parenrightbt=384,e.bracketrighttp=384,e.bracketrightex=384,e.bracketrightbt=384,e.bracerighttp=494,e.bracerightmid=494,e.bracerightbt=494,e.apple=790})),e["Times-Roman"]=(0,i.getLookupTableFactory)((function(e){e.space=250,e.exclam=333,e.quotedbl=408,e.numbersign=500,e.dollar=500,e.percent=833,e.ampersand=778,e.quoteright=333,e.parenleft=333,e.parenright=333,e.asterisk=500,e.plus=564,e.comma=250,e.hyphen=333,e.period=250,e.slash=278,e.zero=500,e.one=500,e.two=500,e.three=500,e.four=500,e.five=500,e.six=500,e.seven=500,e.eight=500,e.nine=500,e.colon=278,e.semicolon=278,e.less=564,e.equal=564,e.greater=564,e.question=444,e.at=921,e.A=722,e.B=667,e.C=667,e.D=722,e.E=611,e.F=556,e.G=722,e.H=722,e.I=333,e.J=389,e.K=722,e.L=611,e.M=889,e.N=722,e.O=722,e.P=556,e.Q=722,e.R=667,e.S=556,e.T=611,e.U=722,e.V=722,e.W=944,e.X=722,e.Y=722,e.Z=611,e.bracketleft=333,e.backslash=278,e.bracketright=333,e.asciicircum=469,e.underscore=500,e.quoteleft=333,e.a=444,e.b=500,e.c=444,e.d=500,e.e=444,e.f=333,e.g=500,e.h=500,e.i=278,e.j=278,e.k=500,e.l=278,e.m=778,e.n=500,e.o=500,e.p=500,e.q=500,e.r=333,e.s=389,e.t=278,e.u=500,e.v=500,e.w=722,e.x=500,e.y=500,e.z=444,e.braceleft=480,e.bar=200,e.braceright=480,e.asciitilde=541,e.exclamdown=333,e.cent=500,e.sterling=500,e.fraction=167,e.yen=500,e.florin=500,e.section=500,e.currency=500,e.quotesingle=180,e.quotedblleft=444,e.guillemotleft=500,e.guilsinglleft=333,e.guilsinglright=333,e.fi=556,e.fl=556,e.endash=500,e.dagger=500,e.daggerdbl=500,e.periodcentered=250,e.paragraph=453,e.bullet=350,e.quotesinglbase=333,e.quotedblbase=444,e.quotedblright=444,e.guillemotright=500,e.ellipsis=1e3,e.perthousand=1e3,e.questiondown=444,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=1e3,e.AE=889,e.ordfeminine=276,e.Lslash=611,e.Oslash=722,e.OE=889,e.ordmasculine=310,e.ae=667,e.dotlessi=278,e.lslash=278,e.oslash=500,e.oe=722,e.germandbls=500,e.Idieresis=333,e.eacute=444,e.abreve=444,e.uhungarumlaut=500,e.ecaron=444,e.Ydieresis=722,e.divide=564,e.Yacute=722,e.Acircumflex=722,e.aacute=444,e.Ucircumflex=722,e.yacute=500,e.scommaaccent=389,e.ecircumflex=444,e.Uring=722,e.Udieresis=722,e.aogonek=444,e.Uacute=722,e.uogonek=500,e.Edieresis=611,e.Dcroat=722,e.commaaccent=250,e.copyright=760,e.Emacron=611,e.ccaron=444,e.aring=444,e.Ncommaaccent=722,e.lacute=278,e.agrave=444,e.Tcommaaccent=611,e.Cacute=667,e.atilde=444,e.Edotaccent=611,e.scaron=389,e.scedilla=389,e.iacute=278,e.lozenge=471,e.Rcaron=667,e.Gcommaaccent=722,e.ucircumflex=500,e.acircumflex=444,e.Amacron=722,e.rcaron=333,e.ccedilla=444,e.Zdotaccent=611,e.Thorn=556,e.Omacron=722,e.Racute=667,e.Sacute=556,e.dcaron=588,e.Umacron=722,e.uring=500,e.threesuperior=300,e.Ograve=722,e.Agrave=722,e.Abreve=722,e.multiply=564,e.uacute=500,e.Tcaron=611,e.partialdiff=476,e.ydieresis=500,e.Nacute=722,e.icircumflex=278,e.Ecircumflex=611,e.adieresis=444,e.edieresis=444,e.cacute=444,e.nacute=500,e.umacron=500,e.Ncaron=722,e.Iacute=333,e.plusminus=564,e.brokenbar=200,e.registered=760,e.Gbreve=722,e.Idotaccent=333,e.summation=600,e.Egrave=611,e.racute=333,e.omacron=500,e.Zacute=611,e.Zcaron=611,e.greaterequal=549,e.Eth=722,e.Ccedilla=667,e.lcommaaccent=278,e.tcaron=326,e.eogonek=444,e.Uogonek=722,e.Aacute=722,e.Adieresis=722,e.egrave=444,e.zacute=444,e.iogonek=278,e.Oacute=722,e.oacute=500,e.amacron=444,e.sacute=389,e.idieresis=278,e.Ocircumflex=722,e.Ugrave=722,e.Delta=612,e.thorn=500,e.twosuperior=300,e.Odieresis=722,e.mu=500,e.igrave=278,e.ohungarumlaut=500,e.Eogonek=611,e.dcroat=500,e.threequarters=750,e.Scedilla=556,e.lcaron=344,e.Kcommaaccent=722,e.Lacute=611,e.trademark=980,e.edotaccent=444,e.Igrave=333,e.Imacron=333,e.Lcaron=611,e.onehalf=750,e.lessequal=549,e.ocircumflex=500,e.ntilde=500,e.Uhungarumlaut=722,e.Eacute=611,e.emacron=444,e.gbreve=500,e.onequarter=750,e.Scaron=556,e.Scommaaccent=556,e.Ohungarumlaut=722,e.degree=400,e.ograve=500,e.Ccaron=667,e.ugrave=500,e.radical=453,e.Dcaron=722,e.rcommaaccent=333,e.Ntilde=722,e.otilde=500,e.Rcommaaccent=667,e.Lcommaaccent=611,e.Atilde=722,e.Aogonek=722,e.Aring=722,e.Otilde=722,e.zdotaccent=444,e.Ecaron=611,e.Iogonek=333,e.kcommaaccent=500,e.minus=564,e.Icircumflex=333,e.ncaron=500,e.tcommaaccent=278,e.logicalnot=564,e.odieresis=500,e.udieresis=500,e.notequal=549,e.gcommaaccent=500,e.eth=500,e.zcaron=444,e.ncommaaccent=500,e.onesuperior=300,e.imacron=278,e.Euro=500})),e["Times-Bold"]=(0,i.getLookupTableFactory)((function(e){e.space=250,e.exclam=333,e.quotedbl=555,e.numbersign=500,e.dollar=500,e.percent=1e3,e.ampersand=833,e.quoteright=333,e.parenleft=333,e.parenright=333,e.asterisk=500,e.plus=570,e.comma=250,e.hyphen=333,e.period=250,e.slash=278,e.zero=500,e.one=500,e.two=500,e.three=500,e.four=500,e.five=500,e.six=500,e.seven=500,e.eight=500,e.nine=500,e.colon=333,e.semicolon=333,e.less=570,e.equal=570,e.greater=570,e.question=500,e.at=930,e.A=722,e.B=667,e.C=722,e.D=722,e.E=667,e.F=611,e.G=778,e.H=778,e.I=389,e.J=500,e.K=778,e.L=667,e.M=944,e.N=722,e.O=778,e.P=611,e.Q=778,e.R=722,e.S=556,e.T=667,e.U=722,e.V=722,e.W=1e3,e.X=722,e.Y=722,e.Z=667,e.bracketleft=333,e.backslash=278,e.bracketright=333,e.asciicircum=581,e.underscore=500,e.quoteleft=333,e.a=500,e.b=556,e.c=444,e.d=556,e.e=444,e.f=333,e.g=500,e.h=556,e.i=278,e.j=333,e.k=556,e.l=278,e.m=833,e.n=556,e.o=500,e.p=556,e.q=556,e.r=444,e.s=389,e.t=333,e.u=556,e.v=500,e.w=722,e.x=500,e.y=500,e.z=444,e.braceleft=394,e.bar=220,e.braceright=394,e.asciitilde=520,e.exclamdown=333,e.cent=500,e.sterling=500,e.fraction=167,e.yen=500,e.florin=500,e.section=500,e.currency=500,e.quotesingle=278,e.quotedblleft=500,e.guillemotleft=500,e.guilsinglleft=333,e.guilsinglright=333,e.fi=556,e.fl=556,e.endash=500,e.dagger=500,e.daggerdbl=500,e.periodcentered=250,e.paragraph=540,e.bullet=350,e.quotesinglbase=333,e.quotedblbase=500,e.quotedblright=500,e.guillemotright=500,e.ellipsis=1e3,e.perthousand=1e3,e.questiondown=500,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=1e3,e.AE=1e3,e.ordfeminine=300,e.Lslash=667,e.Oslash=778,e.OE=1e3,e.ordmasculine=330,e.ae=722,e.dotlessi=278,e.lslash=278,e.oslash=500,e.oe=722,e.germandbls=556,e.Idieresis=389,e.eacute=444,e.abreve=500,e.uhungarumlaut=556,e.ecaron=444,e.Ydieresis=722,e.divide=570,e.Yacute=722,e.Acircumflex=722,e.aacute=500,e.Ucircumflex=722,e.yacute=500,e.scommaaccent=389,e.ecircumflex=444,e.Uring=722,e.Udieresis=722,e.aogonek=500,e.Uacute=722,e.uogonek=556,e.Edieresis=667,e.Dcroat=722,e.commaaccent=250,e.copyright=747,e.Emacron=667,e.ccaron=444,e.aring=500,e.Ncommaaccent=722,e.lacute=278,e.agrave=500,e.Tcommaaccent=667,e.Cacute=722,e.atilde=500,e.Edotaccent=667,e.scaron=389,e.scedilla=389,e.iacute=278,e.lozenge=494,e.Rcaron=722,e.Gcommaaccent=778,e.ucircumflex=556,e.acircumflex=500,e.Amacron=722,e.rcaron=444,e.ccedilla=444,e.Zdotaccent=667,e.Thorn=611,e.Omacron=778,e.Racute=722,e.Sacute=556,e.dcaron=672,e.Umacron=722,e.uring=556,e.threesuperior=300,e.Ograve=778,e.Agrave=722,e.Abreve=722,e.multiply=570,e.uacute=556,e.Tcaron=667,e.partialdiff=494,e.ydieresis=500,e.Nacute=722,e.icircumflex=278,e.Ecircumflex=667,e.adieresis=500,e.edieresis=444,e.cacute=444,e.nacute=556,e.umacron=556,e.Ncaron=722,e.Iacute=389,e.plusminus=570,e.brokenbar=220,e.registered=747,e.Gbreve=778,e.Idotaccent=389,e.summation=600,e.Egrave=667,e.racute=444,e.omacron=500,e.Zacute=667,e.Zcaron=667,e.greaterequal=549,e.Eth=722,e.Ccedilla=722,e.lcommaaccent=278,e.tcaron=416,e.eogonek=444,e.Uogonek=722,e.Aacute=722,e.Adieresis=722,e.egrave=444,e.zacute=444,e.iogonek=278,e.Oacute=778,e.oacute=500,e.amacron=500,e.sacute=389,e.idieresis=278,e.Ocircumflex=778,e.Ugrave=722,e.Delta=612,e.thorn=556,e.twosuperior=300,e.Odieresis=778,e.mu=556,e.igrave=278,e.ohungarumlaut=500,e.Eogonek=667,e.dcroat=556,e.threequarters=750,e.Scedilla=556,e.lcaron=394,e.Kcommaaccent=778,e.Lacute=667,e.trademark=1e3,e.edotaccent=444,e.Igrave=389,e.Imacron=389,e.Lcaron=667,e.onehalf=750,e.lessequal=549,e.ocircumflex=500,e.ntilde=556,e.Uhungarumlaut=722,e.Eacute=667,e.emacron=444,e.gbreve=500,e.onequarter=750,e.Scaron=556,e.Scommaaccent=556,e.Ohungarumlaut=778,e.degree=400,e.ograve=500,e.Ccaron=722,e.ugrave=556,e.radical=549,e.Dcaron=722,e.rcommaaccent=444,e.Ntilde=722,e.otilde=500,e.Rcommaaccent=722,e.Lcommaaccent=667,e.Atilde=722,e.Aogonek=722,e.Aring=722,e.Otilde=778,e.zdotaccent=444,e.Ecaron=667,e.Iogonek=389,e.kcommaaccent=556,e.minus=570,e.Icircumflex=389,e.ncaron=556,e.tcommaaccent=333,e.logicalnot=570,e.odieresis=500,e.udieresis=556,e.notequal=549,e.gcommaaccent=500,e.eth=500,e.zcaron=444,e.ncommaaccent=556,e.onesuperior=300,e.imacron=278,e.Euro=500})),e["Times-BoldItalic"]=(0,i.getLookupTableFactory)((function(e){e.space=250,e.exclam=389,e.quotedbl=555,e.numbersign=500,e.dollar=500,e.percent=833,e.ampersand=778,e.quoteright=333,e.parenleft=333,e.parenright=333,e.asterisk=500,e.plus=570,e.comma=250,e.hyphen=333,e.period=250,e.slash=278,e.zero=500,e.one=500,e.two=500,e.three=500,e.four=500,e.five=500,e.six=500,e.seven=500,e.eight=500,e.nine=500,e.colon=333,e.semicolon=333,e.less=570,e.equal=570,e.greater=570,e.question=500,e.at=832,e.A=667,e.B=667,e.C=667,e.D=722,e.E=667,e.F=667,e.G=722,e.H=778,e.I=389,e.J=500,e.K=667,e.L=611,e.M=889,e.N=722,e.O=722,e.P=611,e.Q=722,e.R=667,e.S=556,e.T=611,e.U=722,e.V=667,e.W=889,e.X=667,e.Y=611,e.Z=611,e.bracketleft=333,e.backslash=278,e.bracketright=333,e.asciicircum=570,e.underscore=500,e.quoteleft=333,e.a=500,e.b=500,e.c=444,e.d=500,e.e=444,e.f=333,e.g=500,e.h=556,e.i=278,e.j=278,e.k=500,e.l=278,e.m=778,e.n=556,e.o=500,e.p=500,e.q=500,e.r=389,e.s=389,e.t=278,e.u=556,e.v=444,e.w=667,e.x=500,e.y=444,e.z=389,e.braceleft=348,e.bar=220,e.braceright=348,e.asciitilde=570,e.exclamdown=389,e.cent=500,e.sterling=500,e.fraction=167,e.yen=500,e.florin=500,e.section=500,e.currency=500,e.quotesingle=278,e.quotedblleft=500,e.guillemotleft=500,e.guilsinglleft=333,e.guilsinglright=333,e.fi=556,e.fl=556,e.endash=500,e.dagger=500,e.daggerdbl=500,e.periodcentered=250,e.paragraph=500,e.bullet=350,e.quotesinglbase=333,e.quotedblbase=500,e.quotedblright=500,e.guillemotright=500,e.ellipsis=1e3,e.perthousand=1e3,e.questiondown=500,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=1e3,e.AE=944,e.ordfeminine=266,e.Lslash=611,e.Oslash=722,e.OE=944,e.ordmasculine=300,e.ae=722,e.dotlessi=278,e.lslash=278,e.oslash=500,e.oe=722,e.germandbls=500,e.Idieresis=389,e.eacute=444,e.abreve=500,e.uhungarumlaut=556,e.ecaron=444,e.Ydieresis=611,e.divide=570,e.Yacute=611,e.Acircumflex=667,e.aacute=500,e.Ucircumflex=722,e.yacute=444,e.scommaaccent=389,e.ecircumflex=444,e.Uring=722,e.Udieresis=722,e.aogonek=500,e.Uacute=722,e.uogonek=556,e.Edieresis=667,e.Dcroat=722,e.commaaccent=250,e.copyright=747,e.Emacron=667,e.ccaron=444,e.aring=500,e.Ncommaaccent=722,e.lacute=278,e.agrave=500,e.Tcommaaccent=611,e.Cacute=667,e.atilde=500,e.Edotaccent=667,e.scaron=389,e.scedilla=389,e.iacute=278,e.lozenge=494,e.Rcaron=667,e.Gcommaaccent=722,e.ucircumflex=556,e.acircumflex=500,e.Amacron=667,e.rcaron=389,e.ccedilla=444,e.Zdotaccent=611,e.Thorn=611,e.Omacron=722,e.Racute=667,e.Sacute=556,e.dcaron=608,e.Umacron=722,e.uring=556,e.threesuperior=300,e.Ograve=722,e.Agrave=667,e.Abreve=667,e.multiply=570,e.uacute=556,e.Tcaron=611,e.partialdiff=494,e.ydieresis=444,e.Nacute=722,e.icircumflex=278,e.Ecircumflex=667,e.adieresis=500,e.edieresis=444,e.cacute=444,e.nacute=556,e.umacron=556,e.Ncaron=722,e.Iacute=389,e.plusminus=570,e.brokenbar=220,e.registered=747,e.Gbreve=722,e.Idotaccent=389,e.summation=600,e.Egrave=667,e.racute=389,e.omacron=500,e.Zacute=611,e.Zcaron=611,e.greaterequal=549,e.Eth=722,e.Ccedilla=667,e.lcommaaccent=278,e.tcaron=366,e.eogonek=444,e.Uogonek=722,e.Aacute=667,e.Adieresis=667,e.egrave=444,e.zacute=389,e.iogonek=278,e.Oacute=722,e.oacute=500,e.amacron=500,e.sacute=389,e.idieresis=278,e.Ocircumflex=722,e.Ugrave=722,e.Delta=612,e.thorn=500,e.twosuperior=300,e.Odieresis=722,e.mu=576,e.igrave=278,e.ohungarumlaut=500,e.Eogonek=667,e.dcroat=500,e.threequarters=750,e.Scedilla=556,e.lcaron=382,e.Kcommaaccent=667,e.Lacute=611,e.trademark=1e3,e.edotaccent=444,e.Igrave=389,e.Imacron=389,e.Lcaron=611,e.onehalf=750,e.lessequal=549,e.ocircumflex=500,e.ntilde=556,e.Uhungarumlaut=722,e.Eacute=667,e.emacron=444,e.gbreve=500,e.onequarter=750,e.Scaron=556,e.Scommaaccent=556,e.Ohungarumlaut=722,e.degree=400,e.ograve=500,e.Ccaron=667,e.ugrave=556,e.radical=549,e.Dcaron=722,e.rcommaaccent=389,e.Ntilde=722,e.otilde=500,e.Rcommaaccent=667,e.Lcommaaccent=611,e.Atilde=667,e.Aogonek=667,e.Aring=667,e.Otilde=722,e.zdotaccent=389,e.Ecaron=667,e.Iogonek=389,e.kcommaaccent=500,e.minus=606,e.Icircumflex=389,e.ncaron=556,e.tcommaaccent=278,e.logicalnot=606,e.odieresis=500,e.udieresis=556,e.notequal=549,e.gcommaaccent=500,e.eth=500,e.zcaron=389,e.ncommaaccent=556,e.onesuperior=300,e.imacron=278,e.Euro=500})),e["Times-Italic"]=(0,i.getLookupTableFactory)((function(e){e.space=250,e.exclam=333,e.quotedbl=420,e.numbersign=500,e.dollar=500,e.percent=833,e.ampersand=778,e.quoteright=333,e.parenleft=333,e.parenright=333,e.asterisk=500,e.plus=675,e.comma=250,e.hyphen=333,e.period=250,e.slash=278,e.zero=500,e.one=500,e.two=500,e.three=500,e.four=500,e.five=500,e.six=500,e.seven=500,e.eight=500,e.nine=500,e.colon=333,e.semicolon=333,e.less=675,e.equal=675,e.greater=675,e.question=500,e.at=920,e.A=611,e.B=611,e.C=667,e.D=722,e.E=611,e.F=611,e.G=722,e.H=722,e.I=333,e.J=444,e.K=667,e.L=556,e.M=833,e.N=667,e.O=722,e.P=611,e.Q=722,e.R=611,e.S=500,e.T=556,e.U=722,e.V=611,e.W=833,e.X=611,e.Y=556,e.Z=556,e.bracketleft=389,e.backslash=278,e.bracketright=389,e.asciicircum=422,e.underscore=500,e.quoteleft=333,e.a=500,e.b=500,e.c=444,e.d=500,e.e=444,e.f=278,e.g=500,e.h=500,e.i=278,e.j=278,e.k=444,e.l=278,e.m=722,e.n=500,e.o=500,e.p=500,e.q=500,e.r=389,e.s=389,e.t=278,e.u=500,e.v=444,e.w=667,e.x=444,e.y=444,e.z=389,e.braceleft=400,e.bar=275,e.braceright=400,e.asciitilde=541,e.exclamdown=389,e.cent=500,e.sterling=500,e.fraction=167,e.yen=500,e.florin=500,e.section=500,e.currency=500,e.quotesingle=214,e.quotedblleft=556,e.guillemotleft=500,e.guilsinglleft=333,e.guilsinglright=333,e.fi=500,e.fl=500,e.endash=500,e.dagger=500,e.daggerdbl=500,e.periodcentered=250,e.paragraph=523,e.bullet=350,e.quotesinglbase=333,e.quotedblbase=556,e.quotedblright=556,e.guillemotright=500,e.ellipsis=889,e.perthousand=1e3,e.questiondown=500,e.grave=333,e.acute=333,e.circumflex=333,e.tilde=333,e.macron=333,e.breve=333,e.dotaccent=333,e.dieresis=333,e.ring=333,e.cedilla=333,e.hungarumlaut=333,e.ogonek=333,e.caron=333,e.emdash=889,e.AE=889,e.ordfeminine=276,e.Lslash=556,e.Oslash=722,e.OE=944,e.ordmasculine=310,e.ae=667,e.dotlessi=278,e.lslash=278,e.oslash=500,e.oe=667,e.germandbls=500,e.Idieresis=333,e.eacute=444,e.abreve=500,e.uhungarumlaut=500,e.ecaron=444,e.Ydieresis=556,e.divide=675,e.Yacute=556,e.Acircumflex=611,e.aacute=500,e.Ucircumflex=722,e.yacute=444,e.scommaaccent=389,e.ecircumflex=444,e.Uring=722,e.Udieresis=722,e.aogonek=500,e.Uacute=722,e.uogonek=500,e.Edieresis=611,e.Dcroat=722,e.commaaccent=250,e.copyright=760,e.Emacron=611,e.ccaron=444,e.aring=500,e.Ncommaaccent=667,e.lacute=278,e.agrave=500,e.Tcommaaccent=556,e.Cacute=667,e.atilde=500,e.Edotaccent=611,e.scaron=389,e.scedilla=389,e.iacute=278,e.lozenge=471,e.Rcaron=611,e.Gcommaaccent=722,e.ucircumflex=500,e.acircumflex=500,e.Amacron=611,e.rcaron=389,e.ccedilla=444,e.Zdotaccent=556,e.Thorn=611,e.Omacron=722,e.Racute=611,e.Sacute=500,e.dcaron=544,e.Umacron=722,e.uring=500,e.threesuperior=300,e.Ograve=722,e.Agrave=611,e.Abreve=611,e.multiply=675,e.uacute=500,e.Tcaron=556,e.partialdiff=476,e.ydieresis=444,e.Nacute=667,e.icircumflex=278,e.Ecircumflex=611,e.adieresis=500,e.edieresis=444,e.cacute=444,e.nacute=500,e.umacron=500,e.Ncaron=667,e.Iacute=333,e.plusminus=675,e.brokenbar=275,e.registered=760,e.Gbreve=722,e.Idotaccent=333,e.summation=600,e.Egrave=611,e.racute=389,e.omacron=500,e.Zacute=556,e.Zcaron=556,e.greaterequal=549,e.Eth=722,e.Ccedilla=667,e.lcommaaccent=278,e.tcaron=300,e.eogonek=444,e.Uogonek=722,e.Aacute=611,e.Adieresis=611,e.egrave=444,e.zacute=389,e.iogonek=278,e.Oacute=722,e.oacute=500,e.amacron=500,e.sacute=389,e.idieresis=278,e.Ocircumflex=722,e.Ugrave=722,e.Delta=612,e.thorn=500,e.twosuperior=300,e.Odieresis=722,e.mu=500,e.igrave=278,e.ohungarumlaut=500,e.Eogonek=611,e.dcroat=500,e.threequarters=750,e.Scedilla=500,e.lcaron=300,e.Kcommaaccent=667,e.Lacute=556,e.trademark=980,e.edotaccent=444,e.Igrave=333,e.Imacron=333,e.Lcaron=611,e.onehalf=750,e.lessequal=549,e.ocircumflex=500,e.ntilde=500,e.Uhungarumlaut=722,e.Eacute=611,e.emacron=444,e.gbreve=500,e.onequarter=750,e.Scaron=500,e.Scommaaccent=500,e.Ohungarumlaut=722,e.degree=400,e.ograve=500,e.Ccaron=667,e.ugrave=500,e.radical=453,e.Dcaron=722,e.rcommaaccent=389,e.Ntilde=667,e.otilde=500,e.Rcommaaccent=611,e.Lcommaaccent=556,e.Atilde=611,e.Aogonek=611,e.Aring=611,e.Otilde=722,e.zdotaccent=389,e.Ecaron=611,e.Iogonek=333,e.kcommaaccent=444,e.minus=675,e.Icircumflex=333,e.ncaron=500,e.tcommaaccent=278,e.logicalnot=675,e.odieresis=500,e.udieresis=500,e.notequal=549,e.gcommaaccent=500,e.eth=500,e.zcaron=389,e.ncommaaccent=500,e.onesuperior=300,e.imacron=278,e.Euro=500})),e.ZapfDingbats=(0,i.getLookupTableFactory)((function(e){e.space=278,e.a1=974,e.a2=961,e.a202=974,e.a3=980,e.a4=719,e.a5=789,e.a119=790,e.a118=791,e.a117=690,e.a11=960,e.a12=939,e.a13=549,e.a14=855,e.a15=911,e.a16=933,e.a105=911,e.a17=945,e.a18=974,e.a19=755,e.a20=846,e.a21=762,e.a22=761,e.a23=571,e.a24=677,e.a25=763,e.a26=760,e.a27=759,e.a28=754,e.a6=494,e.a7=552,e.a8=537,e.a9=577,e.a10=692,e.a29=786,e.a30=788,e.a31=788,e.a32=790,e.a33=793,e.a34=794,e.a35=816,e.a36=823,e.a37=789,e.a38=841,e.a39=823,e.a40=833,e.a41=816,e.a42=831,e.a43=923,e.a44=744,e.a45=723,e.a46=749,e.a47=790,e.a48=792,e.a49=695,e.a50=776,e.a51=768,e.a52=792,e.a53=759,e.a54=707,e.a55=708,e.a56=682,e.a57=701,e.a58=826,e.a59=815,e.a60=789,e.a61=789,e.a62=707,e.a63=687,e.a64=696,e.a65=689,e.a66=786,e.a67=787,e.a68=713,e.a69=791,e.a70=785,e.a71=791,e.a72=873,e.a73=761,e.a74=762,e.a203=762,e.a75=759,e.a204=759,e.a76=892,e.a77=892,e.a78=788,e.a79=784,e.a81=438,e.a82=138,e.a83=277,e.a84=415,e.a97=392,e.a98=392,e.a99=668,e.a100=668,e.a89=390,e.a90=390,e.a93=317,e.a94=317,e.a91=276,e.a92=276,e.a205=509,e.a85=509,e.a206=410,e.a86=410,e.a87=234,e.a88=234,e.a95=334,e.a96=334,e.a101=732,e.a102=544,e.a103=544,e.a104=910,e.a106=667,e.a107=760,e.a108=760,e.a112=776,e.a111=595,e.a110=694,e.a109=626,e.a120=788,e.a121=788,e.a122=788,e.a123=788,e.a124=788,e.a125=788,e.a126=788,e.a127=788,e.a128=788,e.a129=788,e.a130=788,e.a131=788,e.a132=788,e.a133=788,e.a134=788,e.a135=788,e.a136=788,e.a137=788,e.a138=788,e.a139=788,e.a140=788,e.a141=788,e.a142=788,e.a143=788,e.a144=788,e.a145=788,e.a146=788,e.a147=788,e.a148=788,e.a149=788,e.a150=788,e.a151=788,e.a152=788,e.a153=788,e.a154=788,e.a155=788,e.a156=788,e.a157=788,e.a158=788,e.a159=788,e.a160=894,e.a161=838,e.a163=1016,e.a164=458,e.a196=748,e.a165=924,e.a192=748,e.a166=918,e.a167=927,e.a168=928,e.a169=928,e.a170=834,e.a171=873,e.a172=828,e.a173=924,e.a162=924,e.a174=917,e.a175=930,e.a176=931,e.a177=463,e.a178=883,e.a179=836,e.a193=836,e.a180=867,e.a199=867,e.a181=696,e.a200=696,e.a182=874,e.a201=874,e.a183=760,e.a184=946,e.a197=771,e.a185=865,e.a194=771,e.a198=888,e.a186=967,e.a195=888,e.a187=831,e.a188=873,e.a189=927,e.a190=970,e.a191=918}))}));t.getMetrics=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MurmurHash3_64=void 0;var i=r(2);const n=3285377520,a=4294901760,s=65535;class o{constructor(e){this.h1=e?4294967295&e:n,this.h2=e?4294967295&e:n}update(e){let t,r;if((0,i.isString)(e)){t=new Uint8Array(2*e.length),r=0;for(let i=0,n=e.length;i<n;i++){const n=e.charCodeAt(i);n<=255?t[r++]=n:(t[r++]=n>>>8,t[r++]=255&n)}}else{if(!(0,i.isArrayBuffer)(e))throw new Error("Wrong data format in MurmurHash3_64_update. Input must be a string or array.");t=e,r=t.byteLength}const n=r>>2,o=r-4*n,h=new Uint32Array(t.buffer,0,n);let l=0,c=0,u=this.h1,f=this.h2;const d=3432918353,p=461845907,m=d&s,g=p&s;for(let i=0;i<n;i++)1&i?(l=h[i],l=l*d&a|l*m&s,l=l<<15|l>>>17,l=l*p&a|l*g&s,u^=l,u=u<<13|u>>>19,u=5*u+3864292196):(c=h[i],c=c*d&a|c*m&s,c=c<<15|c>>>17,c=c*p&a|c*g&s,f^=c,f=f<<13|f>>>19,f=5*f+3864292196);switch(l=0,o){case 3:l^=t[4*n+2]<<16;case 2:l^=t[4*n+1]<<8;case 1:l^=t[4*n],l=l*d&a|l*m&s,l=l<<15|l>>>17,l=l*p&a|l*g&s,1&n?u^=l:f^=l}this.h1=u,this.h2=f}hexdigest(){let e=this.h1,t=this.h2;e^=t>>>1,e=3981806797*e&a|36045*e&s,t=4283543511*t&a|(2950163797*(t<<16|e>>>16)&a)>>>16,e^=t>>>1,e=444984403*e&a|60499*e&s,t=3301882366*t&a|(3120437893*(t<<16|e>>>16)&a)>>>16,e^=t>>>1;const r=(e>>>0).toString(16),i=(t>>>0).toString(16);return r.padStart(8,"0")+i.padStart(8,"0")}}t.MurmurHash3_64=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PDFImage=void 0;var i=r(2),n=r(5),a=r(23),s=r(12),o=r(18),h=r(21);function l(e,t,r,i){return e=t+e*r,e<0?e=0:e>i&&(e=i),e}function c(e,t,r,i,n,a){var s=n*a;let o;o=t<=8?new Uint8Array(s):t<=16?new Uint16Array(s):new Uint32Array(s);var h,l,c,u,f=r/n,d=i/a,p=0,m=new Uint16Array(n),g=r;for(h=0;h<n;h++)m[h]=Math.floor(h*f);for(h=0;h<a;h++)for(c=Math.floor(h*d)*g,l=0;l<n;l++)u=c+m[l],o[p++]=e[u];return o}class u{constructor({xref:e,res:t,image:r,isInline:s=!1,smask:o=null,mask:l=null,isMask:c=!1,pdfFunctionFactory:f,localColorSpaceCache:d}){this.image=r;var p=r.dict;const m=p.get("Filter");if((0,n.isName)(m))switch(m.name){case"JPXDecode":var g=new h.JpxImage;g.parseImageProperties(r.stream),r.stream.reset(),r.width=g.width,r.height=g.height,r.bitsPerComponent=g.bitsPerComponent,r.numComps=g.componentsCount;break;case"JBIG2Decode":r.bitsPerComponent=1,r.numComps=1;break}let b=p.get("Width","W"),v=p.get("Height","H");if(Number.isInteger(r.width)&&r.width>0&&Number.isInteger(r.height)&&r.height>0&&(r.width!==b||r.height!==v)&&((0,i.warn)("PDFImage - using the Width/Height of the image data, rather than the image dictionary."),b=r.width,v=r.height),b<1||v<1)throw new i.FormatError(`Invalid image width: ${b} or height: ${v}`);this.width=b,this.height=v,this.interpolate=p.get("Interpolate","I")||!1,this.imageMask=p.get("ImageMask","IM")||!1,this.matte=p.get("Matte")||!1;var y=r.bitsPerComponent;if(!y&&(y=p.get("BitsPerComponent","BPC"),!y)){if(!this.imageMask)throw new i.FormatError("Bits per component missing in image: "+this.imageMask);y=1}if(this.bpc=y,!this.imageMask){let o=p.getRaw("ColorSpace")||p.getRaw("CS");if(!o)switch((0,i.info)("JPX images (which do not require color spaces)"),r.numComps){case 1:o=n.Name.get("DeviceGray");break;case 3:o=n.Name.get("DeviceRGB");break;case 4:o=n.Name.get("DeviceCMYK");break;default:throw new Error(`JPX images with ${r.numComps} color components not supported.`)}this.colorSpace=a.ColorSpace.parse({cs:o,xref:e,resources:s?t:null,pdfFunctionFactory:f,localColorSpaceCache:d}),this.numComps=this.colorSpace.numComps}if(this.decode=p.getArray("Decode","D"),this.needsDecode=!1,this.decode&&(this.colorSpace&&!this.colorSpace.isDefaultDecode(this.decode,y)||c&&!a.ColorSpace.isDefaultDecode(this.decode,1))){this.needsDecode=!0;var w=(1<<y)-1;this.decodeCoefficients=[],this.decodeAddends=[];const e=this.colorSpace&&"Indexed"===this.colorSpace.name;for(var M=0,_=0;M<this.decode.length;M+=2,++_){var S=this.decode[M],k=this.decode[M+1];this.decodeCoefficients[_]=e?(k-S)/w:k-S,this.decodeAddends[_]=e?S:w*S}}if(o)this.smask=new u({xref:e,res:t,image:o,isInline:s,pdfFunctionFactory:f,localColorSpaceCache:d});else if(l)if((0,n.isStream)(l)){var A=l.dict,x=A.get("ImageMask","IM");x?this.mask=new u({xref:e,res:t,image:l,isInline:s,isMask:!0,pdfFunctionFactory:f,localColorSpaceCache:d}):(0,i.warn)("Ignoring /Mask in image without /ImageMask.")}else this.mask=l}static async buildImage({xref:e,res:t,image:r,isInline:a=!1,pdfFunctionFactory:s,localColorSpaceCache:o}){const h=r;let l=null,c=null;const f=r.dict.get("SMask"),d=r.dict.get("Mask");return f?l=f:d&&((0,n.isStream)(d)||Array.isArray(d)?c=d:(0,i.warn)("Unsupported mask format.")),new u({xref:e,res:t,image:h,isInline:a,smask:l,mask:c,pdfFunctionFactory:s,localColorSpaceCache:o})}static createMask({imgArray:e,width:t,height:r,imageIsFromDecodeStream:i,inverseDecode:n}){var a,s,o=(t+7>>3)*r,h=e.byteLength,l=o===h;if(!i||n&&!l)if(n)for(a=new Uint8ClampedArray(o),a.set(e),s=h;s<o;s++)a[s]=255;else a=new Uint8ClampedArray(h),a.set(e);else a=e;if(n)for(s=0;s<h;s++)a[s]^=255;return{data:a,width:t,height:r}}get drawWidth(){return Math.max(this.width,this.smask&&this.smask.width||0,this.mask&&this.mask.width||0)}get drawHeight(){return Math.max(this.height,this.smask&&this.smask.height||0,this.mask&&this.mask.height||0)}decodeBuffer(e){var t,r,i=this.bpc,n=this.numComps,a=this.decodeAddends,s=this.decodeCoefficients,o=(1<<i)-1;if(1!==i){var h=0;for(t=0,r=this.width*this.height;t<r;t++)for(var c=0;c<n;c++)e[h]=l(e[h],a[c],s[c],o),h++}else for(t=0,r=e.length;t<r;t++)e[t]=+!e[t]}getComponents(e){var t=this.bpc;if(8===t)return e;var r=this.width,i=this.height,n=this.numComps,a=r*i*n,s=0;let o;o=t<=8?new Uint8Array(a):t<=16?new Uint16Array(a):new Uint32Array(a);var h,l,c=r*n,u=(1<<t)-1,f=0;if(1===t)for(var d,p,m,g=0;g<i;g++){p=f+(-8&c),m=f+c;while(f<p)l=e[s++],o[f]=l>>7&1,o[f+1]=l>>6&1,o[f+2]=l>>5&1,o[f+3]=l>>4&1,o[f+4]=l>>3&1,o[f+5]=l>>2&1,o[f+6]=l>>1&1,o[f+7]=1&l,f+=8;if(f<m){l=e[s++],d=128;while(f<m)o[f++]=+!!(l&d),d>>=1}}else{var b=0;for(l=0,f=0,h=a;f<h;++f){f%c===0&&(l=0,b=0);while(b<t)l=l<<8|e[s++],b+=8;var v=b-t;let r=l>>v;r<0?r=0:r>u&&(r=u),o[f]=r,l&=(1<<v)-1,b=v}}return o}fillOpacity(e,t,r,n,a){var s,o,h,l,f,d,p=this.smask,m=this.mask;if(p)o=p.width,h=p.height,s=new Uint8ClampedArray(o*h),p.fillGrayBuffer(s),o===t&&h===r||(s=c(s,p.bpc,o,h,t,r));else if(m)if(m instanceof u){for(o=m.width,h=m.height,s=new Uint8ClampedArray(o*h),m.numComps=1,m.fillGrayBuffer(s),l=0,f=o*h;l<f;++l)s[l]=255-s[l];o===t&&h===r||(s=c(s,m.bpc,o,h,t,r))}else{if(!Array.isArray(m))throw new i.FormatError("Unknown mask format.");s=new Uint8ClampedArray(t*r);var g=this.numComps;for(l=0,f=t*r;l<f;++l){var b=0,v=l*g;for(d=0;d<g;++d){var y=a[v+d],w=2*d;if(y<m[w]||y>m[w+1]){b=255;break}}s[l]=b}}if(s)for(l=0,d=3,f=t*n;l<f;++l,d+=4)e[d]=s[l];else for(l=0,d=3,f=t*n;l<f;++l,d+=4)e[d]=255}undoPreblend(e,t,r){var i=this.smask&&this.smask.matte;if(i)for(var n=this.colorSpace.getRgb(i,0),a=n[0],s=n[1],o=n[2],h=t*r*4,l=0;l<h;l+=4){var c=e[l+3];if(0!==c){var u=255/c;e[l]=(e[l]-a)*u+a,e[l+1]=(e[l+1]-s)*u+s,e[l+2]=(e[l+2]-o)*u+o}else e[l]=255,e[l+1]=255,e[l+2]=255}}createImageData(e=!1){var t,r=this.drawWidth,n=this.drawHeight,a={width:r,height:n,kind:0,data:null},h=this.numComps,l=this.width,c=this.height,u=this.bpc,f=l*h*u+7>>3;if(!e){var d;if("DeviceGray"===this.colorSpace.name&&1===u?d=i.ImageKind.GRAYSCALE_1BPP:"DeviceRGB"!==this.colorSpace.name||8!==u||this.needsDecode||(d=i.ImageKind.RGB_24BPP),d&&!this.smask&&!this.mask&&r===l&&n===c){if(a.kind=d,t=this.getImageBytes(c*f),this.image instanceof s.DecodeStream)a.data=t;else{var p=new Uint8ClampedArray(t.length);p.set(t),a.data=p}if(this.needsDecode){(0,i.assert)(d===i.ImageKind.GRAYSCALE_1BPP,"PDFImage.createImageData: The image must be grayscale.");for(var m=a.data,g=0,b=m.length;g<b;g++)m[g]^=255}return a}if(this.image instanceof o.JpegStream&&!this.smask&&!this.mask){let e=c*f;switch(this.colorSpace.name){case"DeviceGray":e*=3;case"DeviceRGB":case"DeviceCMYK":return a.kind=i.ImageKind.RGB_24BPP,a.data=this.getImageBytes(e,r,n,!0),a}}}t=this.getImageBytes(c*f);var v,y,w=0|t.length/f*n/c,M=this.getComponents(t);return e||this.smask||this.mask?(a.kind=i.ImageKind.RGBA_32BPP,a.data=new Uint8ClampedArray(r*n*4),v=1,y=!0,this.fillOpacity(a.data,r,n,w,M)):(a.kind=i.ImageKind.RGB_24BPP,a.data=new Uint8ClampedArray(r*n*3),v=0,y=!1),this.needsDecode&&this.decodeBuffer(M),this.colorSpace.fillRgb(a.data,l,c,r,n,w,u,M,v),y&&this.undoPreblend(a.data,r,w),a}fillGrayBuffer(e){var t=this.numComps;if(1!==t)throw new i.FormatError("Reading gray scale from a color image: "+t);var r,n,a=this.width,s=this.height,o=this.bpc,h=a*t*o+7>>3,l=this.getImageBytes(s*h),c=this.getComponents(l);if(1!==o){this.needsDecode&&this.decodeBuffer(c),n=a*s;var u=255/((1<<o)-1);for(r=0;r<n;++r)e[r]=u*c[r]}else if(n=a*s,this.needsDecode)for(r=0;r<n;++r)e[r]=c[r]-1&255;else for(r=0;r<n;++r)e[r]=255&-c[r]}getImageBytes(e,t,r,i=!1){return this.image.reset(),this.image.drawWidth=t||this.width,this.image.drawHeight=r||this.height,this.image.forceRGB=!!i,this.image.getBytes(e,!0)}}t.PDFImage=u},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MessageHandler=void 0;var i=r(2);const n={UNKNOWN:0,DATA:1,ERROR:2},a={UNKNOWN:0,CANCEL:1,CANCEL_COMPLETE:2,CLOSE:3,ENQUEUE:4,ERROR:5,PULL:6,PULL_COMPLETE:7,START_COMPLETE:8};function s(e){if("object"!==typeof e||null===e)return e;switch(e.name){case"AbortException":return new i.AbortException(e.message);case"MissingPDFException":return new i.MissingPDFException(e.message);case"UnexpectedResponseException":return new i.UnexpectedResponseException(e.message,e.status);case"UnknownErrorException":return new i.UnknownErrorException(e.message,e.details);default:return new i.UnknownErrorException(e.message,e.toString())}}class o{constructor(e,t,r){this.sourceName=e,this.targetName=t,this.comObj=r,this.callbackId=1,this.streamId=1,this.postMessageTransfers=!0,this.streamSinks=Object.create(null),this.streamControllers=Object.create(null),this.callbackCapabilities=Object.create(null),this.actionHandler=Object.create(null),this._onComObjOnMessage=e=>{const t=e.data;if(t.targetName!==this.sourceName)return;if(t.stream)return void this._processStreamMessage(t);if(t.callback){const e=t.callbackId,r=this.callbackCapabilities[e];if(!r)throw new Error("Cannot resolve callback "+e);if(delete this.callbackCapabilities[e],t.callback===n.DATA)r.resolve(t.data);else{if(t.callback!==n.ERROR)throw new Error("Unexpected callback case");r.reject(s(t.reason))}return}const i=this.actionHandler[t.action];if(!i)throw new Error("Unknown action from worker: "+t.action);if(t.callbackId){const e=this.sourceName,a=t.sourceName;new Promise((function(e){e(i(t.data))})).then((function(i){r.postMessage({sourceName:e,targetName:a,callback:n.DATA,callbackId:t.callbackId,data:i})}),(function(i){r.postMessage({sourceName:e,targetName:a,callback:n.ERROR,callbackId:t.callbackId,reason:s(i)})}))}else t.streamId?this._createStreamSink(t):i(t.data)},r.addEventListener("message",this._onComObjOnMessage)}on(e,t){const r=this.actionHandler;if(r[e])throw new Error(`There is already an actionName called "${e}"`);r[e]=t}send(e,t,r){this._postMessage({sourceName:this.sourceName,targetName:this.targetName,action:e,data:t},r)}sendWithPromise(e,t,r){const n=this.callbackId++,a=(0,i.createPromiseCapability)();this.callbackCapabilities[n]=a;try{this._postMessage({sourceName:this.sourceName,targetName:this.targetName,action:e,callbackId:n,data:t},r)}catch(s){a.reject(s)}return a.promise}sendWithStream(e,t,r,n){const o=this.streamId++,h=this.sourceName,l=this.targetName,c=this.comObj;return new ReadableStream({start:r=>{const a=(0,i.createPromiseCapability)();return this.streamControllers[o]={controller:r,startCall:a,pullCall:null,cancelCall:null,isClosed:!1},this._postMessage({sourceName:h,targetName:l,action:e,streamId:o,data:t,desiredSize:r.desiredSize},n),a.promise},pull:e=>{const t=(0,i.createPromiseCapability)();return this.streamControllers[o].pullCall=t,c.postMessage({sourceName:h,targetName:l,stream:a.PULL,streamId:o,desiredSize:e.desiredSize}),t.promise},cancel:e=>{(0,i.assert)(e instanceof Error,"cancel must have a valid reason");const t=(0,i.createPromiseCapability)();return this.streamControllers[o].cancelCall=t,this.streamControllers[o].isClosed=!0,c.postMessage({sourceName:h,targetName:l,stream:a.CANCEL,streamId:o,reason:s(e)}),t.promise}},r)}_createStreamSink(e){const t=this,r=this.actionHandler[e.action],n=e.streamId,o=this.sourceName,h=e.sourceName,l=this.comObj,c={enqueue(e,r=1,s){if(this.isCancelled)return;const l=this.desiredSize;this.desiredSize-=r,l>0&&this.desiredSize<=0&&(this.sinkCapability=(0,i.createPromiseCapability)(),this.ready=this.sinkCapability.promise),t._postMessage({sourceName:o,targetName:h,stream:a.ENQUEUE,streamId:n,chunk:e},s)},close(){this.isCancelled||(this.isCancelled=!0,l.postMessage({sourceName:o,targetName:h,stream:a.CLOSE,streamId:n}),delete t.streamSinks[n])},error(e){(0,i.assert)(e instanceof Error,"error must have a valid reason"),this.isCancelled||(this.isCancelled=!0,l.postMessage({sourceName:o,targetName:h,stream:a.ERROR,streamId:n,reason:s(e)}))},sinkCapability:(0,i.createPromiseCapability)(),onPull:null,onCancel:null,isCancelled:!1,desiredSize:e.desiredSize,ready:null};c.sinkCapability.resolve(),c.ready=c.sinkCapability.promise,this.streamSinks[n]=c,new Promise((function(t){t(r(e.data,c))})).then((function(){l.postMessage({sourceName:o,targetName:h,stream:a.START_COMPLETE,streamId:n,success:!0})}),(function(e){l.postMessage({sourceName:o,targetName:h,stream:a.START_COMPLETE,streamId:n,reason:s(e)})}))}_processStreamMessage(e){const t=e.streamId,r=this.sourceName,n=e.sourceName,o=this.comObj;switch(e.stream){case a.START_COMPLETE:e.success?this.streamControllers[t].startCall.resolve():this.streamControllers[t].startCall.reject(s(e.reason));break;case a.PULL_COMPLETE:e.success?this.streamControllers[t].pullCall.resolve():this.streamControllers[t].pullCall.reject(s(e.reason));break;case a.PULL:if(!this.streamSinks[t]){o.postMessage({sourceName:r,targetName:n,stream:a.PULL_COMPLETE,streamId:t,success:!0});break}this.streamSinks[t].desiredSize<=0&&e.desiredSize>0&&this.streamSinks[t].sinkCapability.resolve(),this.streamSinks[t].desiredSize=e.desiredSize;const{onPull:h}=this.streamSinks[e.streamId];new Promise((function(e){e(h&&h())})).then((function(){o.postMessage({sourceName:r,targetName:n,stream:a.PULL_COMPLETE,streamId:t,success:!0})}),(function(e){o.postMessage({sourceName:r,targetName:n,stream:a.PULL_COMPLETE,streamId:t,reason:s(e)})}));break;case a.ENQUEUE:if((0,i.assert)(this.streamControllers[t],"enqueue should have stream controller"),this.streamControllers[t].isClosed)break;this.streamControllers[t].controller.enqueue(e.chunk);break;case a.CLOSE:if((0,i.assert)(this.streamControllers[t],"close should have stream controller"),this.streamControllers[t].isClosed)break;this.streamControllers[t].isClosed=!0,this.streamControllers[t].controller.close(),this._deleteStreamController(t);break;case a.ERROR:(0,i.assert)(this.streamControllers[t],"error should have stream controller"),this.streamControllers[t].controller.error(s(e.reason)),this._deleteStreamController(t);break;case a.CANCEL_COMPLETE:e.success?this.streamControllers[t].cancelCall.resolve():this.streamControllers[t].cancelCall.reject(s(e.reason)),this._deleteStreamController(t);break;case a.CANCEL:if(!this.streamSinks[t])break;const{onCancel:l}=this.streamSinks[e.streamId];new Promise((function(t){t(l&&l(s(e.reason)))})).then((function(){o.postMessage({sourceName:r,targetName:n,stream:a.CANCEL_COMPLETE,streamId:t,success:!0})}),(function(e){o.postMessage({sourceName:r,targetName:n,stream:a.CANCEL_COMPLETE,streamId:t,reason:s(e)})})),this.streamSinks[t].sinkCapability.reject(s(e.reason)),this.streamSinks[t].isCancelled=!0,delete this.streamSinks[t];break;default:throw new Error("Unexpected stream case")}}async _deleteStreamController(e){await Promise.allSettled([this.streamControllers[e].startCall,this.streamControllers[e].pullCall,this.streamControllers[e].cancelCall].map((function(e){return e&&e.promise}))),delete this.streamControllers[e]}_postMessage(e,t){t&&this.postMessageTransfers?this.comObj.postMessage(e,t):this.comObj.postMessage(e)}destroy(){this.comObj.removeEventListener("message",this._onComObjOnMessage)}}t.MessageHandler=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PDFWorkerStream=void 0;var i=r(2);class n{constructor(e){this._msgHandler=e,this._contentLength=null,this._fullRequestReader=null,this._rangeRequestReaders=[]}getFullReader(){return(0,i.assert)(!this._fullRequestReader,"PDFWorkerStream.getFullReader can only be called once."),this._fullRequestReader=new a(this._msgHandler),this._fullRequestReader}getRangeReader(e,t){const r=new s(e,t,this._msgHandler);return this._rangeRequestReaders.push(r),r}cancelAllRequests(e){this._fullRequestReader&&this._fullRequestReader.cancel(e);const t=this._rangeRequestReaders.slice(0);t.forEach((function(t){t.cancel(e)}))}}t.PDFWorkerStream=n;class a{constructor(e){this._msgHandler=e,this.onProgress=null,this._contentLength=null,this._isRangeSupported=!1,this._isStreamingSupported=!1;const t=this._msgHandler.sendWithStream("GetReader");this._reader=t.getReader(),this._headersReady=this._msgHandler.sendWithPromise("ReaderHeadersReady").then(e=>{this._isStreamingSupported=e.isStreamingSupported,this._isRangeSupported=e.isRangeSupported,this._contentLength=e.contentLength})}get headersReady(){return this._headersReady}get contentLength(){return this._contentLength}get isStreamingSupported(){return this._isStreamingSupported}get isRangeSupported(){return this._isRangeSupported}async read(){const{value:e,done:t}=await this._reader.read();return t?{value:void 0,done:!0}:{value:e.buffer,done:!1}}cancel(e){this._reader.cancel(e)}}class s{constructor(e,t,r){this._msgHandler=r,this.onProgress=null;const i=this._msgHandler.sendWithStream("GetRangeReader",{begin:e,end:t});this._reader=i.getReader()}get isStreamingSupported(){return!1}async read(){const{value:e,done:t}=await this._reader.read();return t?{value:void 0,done:!0}:{value:e.buffer,done:!1}}cancel(e){this._reader.cancel(e)}}}])}))}).call(this,r("f28c"))},"55dd":function(e,t,r){"use strict";var i=r("5ca1"),n=r("d8e8"),a=r("4bf8"),s=r("79e5"),o=[].sort,h=[1,2,3];i(i.P+i.F*(s((function(){h.sort(void 0)}))||!s((function(){h.sort(null)}))||!r("2f21")(o)),"Array",{sort:function(e){return void 0===e?o.call(a(this)):o.call(a(this),n(e))}})},"561d":function(e,t,r){(function(t){var i=r("48e6"),n=r("7a10"),a=new n,s=new i(24),o=new i(11),h=new i(10),l=new i(3),c=new i(7),u=r("58a2"),f=r("11dc");function d(e,r){return r=r||"utf8",t.isBuffer(e)||(e=new t(e,r)),this._pub=new i(e),this}function p(e,r){return r=r||"utf8",t.isBuffer(e)||(e=new t(e,r)),this._priv=new i(e),this}e.exports=b;var m={};function g(e,t){var r=t.toString("hex"),i=[r,e.toString(16)].join("_");if(i in m)return m[i];var n,f=0;if(e.isEven()||!u.simpleSieve||!u.fermatTest(e)||!a.test(e))return f+=1,f+="02"===r||"05"===r?8:4,m[i]=f,f;switch(a.test(e.shrn(1))||(f+=2),r){case"02":e.mod(s).cmp(o)&&(f+=8);break;case"05":n=e.mod(h),n.cmp(l)&&n.cmp(c)&&(f+=8);break;default:f+=4}return m[i]=f,f}function b(e,t,r){this.setGenerator(t),this.__prime=new i(e),this._prime=i.mont(this.__prime),this._primeLen=e.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,r?(this.setPublicKey=d,this.setPrivateKey=p):this._primeCode=8}function v(e,r){var i=new t(e.toArray());return r?i.toString(r):i}Object.defineProperty(b.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!==typeof this._primeCode&&(this._primeCode=g(this.__prime,this.__gen)),this._primeCode}}),b.prototype.generateKeys=function(){return this._priv||(this._priv=new i(f(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},b.prototype.computeSecret=function(e){e=new i(e),e=e.toRed(this._prime);var r=e.redPow(this._priv).fromRed(),n=new t(r.toArray()),a=this.getPrime();if(n.length<a.length){var s=new t(a.length-n.length);s.fill(0),n=t.concat([s,n])}return n},b.prototype.getPublicKey=function(e){return v(this._pub,e)},b.prototype.getPrivateKey=function(e){return v(this._priv,e)},b.prototype.getPrime=function(e){return v(this.__prime,e)},b.prototype.getGenerator=function(e){return v(this._gen,e)},b.prototype.setGenerator=function(e,r){return r=r||"utf8",t.isBuffer(e)||(e=new t(e,r)),this.__gen=e,this._gen=new i(e),this}}).call(this,r("b639").Buffer)},"56b5":function(e,t,r){"use strict";var i=r("7f7a"),n=i.define("Time",(function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})})),a=i.define("AttributeTypeValue",(function(){this.seq().obj(this.key("type").objid(),this.key("value").any())})),s=i.define("AlgorithmIdentifier",(function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())})),o=i.define("SubjectPublicKeyInfo",(function(){this.seq().obj(this.key("algorithm").use(s),this.key("subjectPublicKey").bitstr())})),h=i.define("RelativeDistinguishedName",(function(){this.setof(a)})),l=i.define("RDNSequence",(function(){this.seqof(h)})),c=i.define("Name",(function(){this.choice({rdnSequence:this.use(l)})})),u=i.define("Validity",(function(){this.seq().obj(this.key("notBefore").use(n),this.key("notAfter").use(n))})),f=i.define("Extension",(function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())})),d=i.define("TBSCertificate",(function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(s),this.key("issuer").use(c),this.key("validity").use(u),this.key("subject").use(c),this.key("subjectPublicKeyInfo").use(o),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(f).optional())})),p=i.define("X509Certificate",(function(){this.seq().obj(this.key("tbsCertificate").use(d),this.key("signatureAlgorithm").use(s),this.key("signatureValue").bitstr())}));e.exports=p},"57e2":function(e,t,r){"use strict";(function(t){var i;function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var a=r("42a7"),s=Symbol("lastResolve"),o=Symbol("lastReject"),h=Symbol("error"),l=Symbol("ended"),c=Symbol("lastPromise"),u=Symbol("handlePromise"),f=Symbol("stream");function d(e,t){return{value:e,done:t}}function p(e){var t=e[s];if(null!==t){var r=e[f].read();null!==r&&(e[c]=null,e[s]=null,e[o]=null,t(d(r,!1)))}}function m(e){t.nextTick(p,e)}function g(e,t){return function(r,i){e.then((function(){t[l]?r(d(void 0,!0)):t[u](r,i)}),i)}}var b=Object.getPrototypeOf((function(){})),v=Object.setPrototypeOf((i={get stream(){return this[f]},next:function(){var e=this,r=this[h];if(null!==r)return Promise.reject(r);if(this[l])return Promise.resolve(d(void 0,!0));if(this[f].destroyed)return new Promise((function(r,i){t.nextTick((function(){e[h]?i(e[h]):r(d(void 0,!0))}))}));var i,n=this[c];if(n)i=new Promise(g(n,this));else{var a=this[f].read();if(null!==a)return Promise.resolve(d(a,!1));i=new Promise(this[u])}return this[c]=i,i}},n(i,Symbol.asyncIterator,(function(){return this})),n(i,"return",(function(){var e=this;return new Promise((function(t,r){e[f].destroy(null,(function(e){e?r(e):t(d(void 0,!0))}))}))})),i),b),y=function(e){var t,r=Object.create(v,(t={},n(t,f,{value:e,writable:!0}),n(t,s,{value:null,writable:!0}),n(t,o,{value:null,writable:!0}),n(t,h,{value:null,writable:!0}),n(t,l,{value:e._readableState.endEmitted,writable:!0}),n(t,u,{value:function(e,t){var i=r[f].read();i?(r[c]=null,r[s]=null,r[o]=null,e(d(i,!1))):(r[s]=e,r[o]=t)},writable:!0}),t));return r[c]=null,a(e,(function(e){if(e&&"ERR_STREAM_PREMATURE_CLOSE"!==e.code){var t=r[o];return null!==t&&(r[c]=null,r[s]=null,r[o]=null,t(e)),void(r[h]=e)}var i=r[s];null!==i&&(r[c]=null,r[s]=null,r[o]=null,i(d(void 0,!0))),r[l]=!0})),e.on("readable",m.bind(null,r)),r};e.exports=y}).call(this,r("f28c"))},"58a2":function(e,t,r){var i=r("11dc");e.exports=y,y.simpleSieve=b,y.fermatTest=v;var n=r("48e6"),a=new n(24),s=r("7a10"),o=new s,h=new n(1),l=new n(2),c=new n(5),u=(new n(16),new n(8),new n(10)),f=new n(3),d=(new n(7),new n(11)),p=new n(4),m=(new n(12),null);function g(){if(null!==m)return m;var e=1048576,t=[];t[0]=2;for(var r=1,i=3;i<e;i+=2){for(var n=Math.ceil(Math.sqrt(i)),a=0;a<r&&t[a]<=n;a++)if(i%t[a]===0)break;r!==a&&t[a]<=n||(t[r++]=i)}return m=t,t}function b(e){for(var t=g(),r=0;r<t.length;r++)if(0===e.modn(t[r]))return 0===e.cmpn(t[r]);return!0}function v(e){var t=n.mont(e);return 0===l.toRed(t).redPow(e.subn(1)).fromRed().cmpn(1)}function y(e,t){if(e<16)return new n(2===t||5===t?[140,123]:[140,39]);var r,s;t=new n(t);while(1){r=new n(i(Math.ceil(e/8)));while(r.bitLength()>e)r.ishrn(1);if(r.isEven()&&r.iadd(h),r.testn(1)||r.iadd(l),t.cmp(l)){if(!t.cmp(c))while(r.mod(u).cmp(f))r.iadd(p)}else while(r.mod(a).cmp(d))r.iadd(p);if(s=r.shrn(1),b(s)&&b(r)&&v(s)&&v(r)&&o.test(s)&&o.test(r))return r}}},5919:function(e,t,r){"use strict";t.sha1=r("13e2"),t.sha224=r("07f2"),t.sha256=r("6eed8"),t.sha384=r("8b95"),t.sha512=r("b525")},"5a76":function(e,t,r){var i=r("f576");e.exports=function(e){return(new i).update(e).digest()}},"5bbb":function(e,t,r){e.exports=r("faa1").EventEmitter},"5df3":function(e,t,r){"use strict";var i=r("02f4")(!0);r("01f9")(String,"String",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,r=this._i;return r>=t.length?{value:void 0,done:!0}:(e=i(t,r),this._i+=e.length,{value:e,done:!1})}))},"5e1a":function(e,t,r){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var n=r("8707").Buffer,a=r(12);function s(e,t,r){e.copy(t,r)}e.exports=function(){function e(){i(this,e),this.head=null,this.tail=null,this.length=0}return e.prototype.push=function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length},e.prototype.unshift=function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length},e.prototype.shift=function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}},e.prototype.clear=function(){this.head=this.tail=null,this.length=0},e.prototype.join=function(e){if(0===this.length)return"";var t=this.head,r=""+t.data;while(t=t.next)r+=e+t.data;return r},e.prototype.concat=function(e){if(0===this.length)return n.alloc(0);if(1===this.length)return this.head.data;var t=n.allocUnsafe(e>>>0),r=this.head,i=0;while(r)s(r.data,t,i),i+=r.data.length,r=r.next;return t},e}(),a&&a.inspect&&a.inspect.custom&&(e.exports.prototype[a.inspect.custom]=function(){var e=a.inspect({length:this.length});return this.constructor.name+" "+e})},"5e7d":function(e,t,r){"use strict";(function(t){var i=Object.keys||function(e){var t=[];for(var r in e)t.push(r);return t};e.exports=l;var n=r("cf35"),a=r("49ce");r("3fb5")(l,n);for(var s=i(a.prototype),o=0;o<s.length;o++){var h=s[o];l.prototype[h]||(l.prototype[h]=a.prototype[h])}function l(e){if(!(this instanceof l))return new l(e);n.call(this,e),a.call(this,e),this.allowHalfOpen=!0,e&&(!1===e.readable&&(this.readable=!1),!1===e.writable&&(this.writable=!1),!1===e.allowHalfOpen&&(this.allowHalfOpen=!1,this.once("end",c)))}function c(){this._writableState.ended||t.nextTick(u,this)}function u(e){e.end()}Object.defineProperty(l.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(l.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(l.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(l.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(e){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=e,this._writableState.destroyed=e)}})}).call(this,r("f28c"))},"5ee7":function(e,t,r){"use strict";t.readUInt32BE=function(e,t){var r=e[0+t]<<24|e[1+t]<<16|e[2+t]<<8|e[3+t];return r>>>0},t.writeUInt32BE=function(e,t,r){e[0+r]=t>>>24,e[1+r]=t>>>16&255,e[2+r]=t>>>8&255,e[3+r]=255&t},t.ip=function(e,t,r,i){for(var n=0,a=0,s=6;s>=0;s-=2){for(var o=0;o<=24;o+=8)n<<=1,n|=t>>>o+s&1;for(o=0;o<=24;o+=8)n<<=1,n|=e>>>o+s&1}for(s=6;s>=0;s-=2){for(o=1;o<=25;o+=8)a<<=1,a|=t>>>o+s&1;for(o=1;o<=25;o+=8)a<<=1,a|=e>>>o+s&1}r[i+0]=n>>>0,r[i+1]=a>>>0},t.rip=function(e,t,r,i){for(var n=0,a=0,s=0;s<4;s++)for(var o=24;o>=0;o-=8)n<<=1,n|=t>>>o+s&1,n<<=1,n|=e>>>o+s&1;for(s=4;s<8;s++)for(o=24;o>=0;o-=8)a<<=1,a|=t>>>o+s&1,a<<=1,a|=e>>>o+s&1;r[i+0]=n>>>0,r[i+1]=a>>>0},t.pc1=function(e,t,r,i){for(var n=0,a=0,s=7;s>=5;s--){for(var o=0;o<=24;o+=8)n<<=1,n|=t>>o+s&1;for(o=0;o<=24;o+=8)n<<=1,n|=e>>o+s&1}for(o=0;o<=24;o+=8)n<<=1,n|=t>>o+s&1;for(s=1;s<=3;s++){for(o=0;o<=24;o+=8)a<<=1,a|=t>>o+s&1;for(o=0;o<=24;o+=8)a<<=1,a|=e>>o+s&1}for(o=0;o<=24;o+=8)a<<=1,a|=e>>o+s&1;r[i+0]=n>>>0,r[i+1]=a>>>0},t.r28shl=function(e,t){return e<<t&268435455|e>>>28-t};var i=[14,11,17,4,27,23,25,0,13,22,7,18,5,9,16,24,2,20,12,21,1,8,15,26,15,4,25,19,9,1,26,16,5,11,23,8,12,7,17,0,22,3,10,14,6,20,27,24];t.pc2=function(e,t,r,n){for(var a=0,s=0,o=i.length>>>1,h=0;h<o;h++)a<<=1,a|=e>>>i[h]&1;for(h=o;h<i.length;h++)s<<=1,s|=t>>>i[h]&1;r[n+0]=a>>>0,r[n+1]=s>>>0},t.expand=function(e,t,r){var i=0,n=0;i=(1&e)<<5|e>>>27;for(var a=23;a>=15;a-=4)i<<=6,i|=e>>>a&63;for(a=11;a>=3;a-=4)n|=e>>>a&63,n<<=6;n|=(31&e)<<1|e>>>31,t[r+0]=i>>>0,t[r+1]=n>>>0};var n=[14,0,4,15,13,7,1,4,2,14,15,2,11,13,8,1,3,10,10,6,6,12,12,11,5,9,9,5,0,3,7,8,4,15,1,12,14,8,8,2,13,4,6,9,2,1,11,7,15,5,12,11,9,3,7,14,3,10,10,0,5,6,0,13,15,3,1,13,8,4,14,7,6,15,11,2,3,8,4,14,9,12,7,0,2,1,13,10,12,6,0,9,5,11,10,5,0,13,14,8,7,10,11,1,10,3,4,15,13,4,1,2,5,11,8,6,12,7,6,12,9,0,3,5,2,14,15,9,10,13,0,7,9,0,14,9,6,3,3,4,15,6,5,10,1,2,13,8,12,5,7,14,11,12,4,11,2,15,8,1,13,1,6,10,4,13,9,0,8,6,15,9,3,8,0,7,11,4,1,15,2,14,12,3,5,11,10,5,14,2,7,12,7,13,13,8,14,11,3,5,0,6,6,15,9,0,10,3,1,4,2,7,8,2,5,12,11,1,12,10,4,14,15,9,10,3,6,15,9,0,0,6,12,10,11,1,7,13,13,8,15,9,1,4,3,5,14,11,5,12,2,7,8,2,4,14,2,14,12,11,4,2,1,12,7,4,10,7,11,13,6,1,8,5,5,0,3,15,15,10,13,3,0,9,14,8,9,6,4,11,2,8,1,12,11,7,10,1,13,14,7,2,8,13,15,6,9,15,12,0,5,9,6,10,3,4,0,5,14,3,12,10,1,15,10,4,15,2,9,7,2,12,6,9,8,5,0,6,13,1,3,13,4,14,14,0,7,11,5,3,11,8,9,4,14,3,15,2,5,12,2,9,8,5,12,15,3,10,7,11,0,14,4,1,10,7,1,6,13,0,11,8,6,13,4,13,11,0,2,11,14,7,15,4,0,9,8,1,13,10,3,14,12,3,9,5,7,12,5,2,10,15,6,8,1,6,1,6,4,11,11,13,13,8,12,1,3,4,7,10,14,7,10,9,15,5,6,0,8,15,0,14,5,2,9,3,2,12,13,1,2,15,8,13,4,8,6,10,15,3,11,7,1,4,10,12,9,5,3,6,14,11,5,0,0,14,12,9,7,2,7,2,11,1,4,14,1,7,9,4,12,10,14,8,2,13,0,15,6,12,10,9,13,0,15,3,3,5,5,6,8,11];t.substitute=function(e,t){for(var r=0,i=0;i<4;i++){var a=e>>>18-6*i&63,s=n[64*i+a];r<<=4,r|=s}for(i=0;i<4;i++){a=t>>>18-6*i&63,s=n[256+64*i+a];r<<=4,r|=s}return r>>>0};var a=[16,25,12,11,3,20,4,15,31,17,9,6,27,14,1,22,30,24,8,18,0,5,29,23,13,19,2,26,10,21,28,7];t.permute=function(e){for(var t=0,r=0;r<a.length;r++)t<<=1,t|=e>>>a[r]&1;return t>>>0},t.padSplit=function(e,t,r){var i=e.toString(2);while(i.length<t)i="0"+i;for(var n=[],a=0;a<t;a+=r)n.push(i.slice(a,a+r));return n.join(" ")}},6:function(e,t){},6283:function(e,t,r){"use strict";const i=r("3fb5"),n=r("d1c8").Reporter,a=r("c591").Buffer;function s(e,t){n.call(this,t),a.isBuffer(e)?(this.base=e,this.offset=0,this.length=e.length):this.error("Input not Buffer")}function o(e,t){if(Array.isArray(e))this.length=0,this.value=e.map((function(e){return o.isEncoderBuffer(e)||(e=new o(e,t)),this.length+=e.length,e}),this);else if("number"===typeof e){if(!(0<=e&&e<=255))return t.error("non-byte EncoderBuffer value");this.value=e,this.length=1}else if("string"===typeof e)this.value=e,this.length=a.byteLength(e);else{if(!a.isBuffer(e))return t.error("Unsupported type: "+typeof e);this.value=e,this.length=e.length}}i(s,n),t.DecoderBuffer=s,s.isDecoderBuffer=function(e){if(e instanceof s)return!0;const t="object"===typeof e&&a.isBuffer(e.base)&&"DecoderBuffer"===e.constructor.name&&"number"===typeof e.offset&&"number"===typeof e.length&&"function"===typeof e.save&&"function"===typeof e.restore&&"function"===typeof e.isEmpty&&"function"===typeof e.readUInt8&&"function"===typeof e.skip&&"function"===typeof e.raw;return t},s.prototype.save=function(){return{offset:this.offset,reporter:n.prototype.save.call(this)}},s.prototype.restore=function(e){const t=new s(this.base);return t.offset=e.offset,t.length=this.offset,this.offset=e.offset,n.prototype.restore.call(this,e.reporter),t},s.prototype.isEmpty=function(){return this.offset===this.length},s.prototype.readUInt8=function(e){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(e||"DecoderBuffer overrun")},s.prototype.skip=function(e,t){if(!(this.offset+e<=this.length))return this.error(t||"DecoderBuffer overrun");const r=new s(this.base);return r._reporterState=this._reporterState,r.offset=this.offset,r.length=this.offset+e,this.offset+=e,r},s.prototype.raw=function(e){return this.base.slice(e?e.offset:this.offset,this.length)},t.EncoderBuffer=o,o.isEncoderBuffer=function(e){if(e instanceof o)return!0;const t="object"===typeof e&&"EncoderBuffer"===e.constructor.name&&"number"===typeof e.length&&"function"===typeof e.join;return t},o.prototype.join=function(e,t){return e||(e=a.alloc(this.length)),t||(t=0),0===this.length||(Array.isArray(this.value)?this.value.forEach((function(r){r.join(e,t),t+=r.length})):("number"===typeof this.value?e[t]=this.value:"string"===typeof this.value?e.write(this.value,t):a.isBuffer(this.value)&&this.value.copy(e,t),t+=this.length)),e}},6290:function(e,t,r){"use strict";var i=function(){var e=this,t=e._self._c;return t("div",[e._l(e.list,(function(r,i){return[r[e.replaceFields.children]&&r[e.replaceFields.children].length>0?t("van-collapse",{attrs:{border:!1},model:{value:e.collapseActive,callback:function(t){e.collapseActive=t},expression:"collapseActive"}},[t("van-collapse-item",{attrs:{name:i},scopedSlots:e._u([{key:"title",fn:function(){return[t("a",{on:{click:function(t){return t.stopPropagation(),e.menuClick(r[e.replaceFields.value])}}},[e._v(e._s(r[e.replaceFields.title]))])]},proxy:!0}],null,!0)},[t("pdf-catalogue-menu",{attrs:{list:r[e.replaceFields.children]},on:{"click-menu":e.menuClick}})],1)],1):t("div",{staticClass:"menu",on:{click:function(t){return e.menuClick(r[e.replaceFields.value])}}},[e._v("\n "+e._s(r[e.replaceFields.title])+"\n ")])]}))],2)},n=[],a={name:"pdf-catalogue-menu",props:{list:{default:function(){return[]}},replaceFields:{default:function(){return{children:"items",title:"title",key:"title",value:"dest"}}}},data:function(){return{collapseActive:[]}},methods:{menuClick:function(e){this.$emit("click-menu",e)}}},s=a,o=(r("768e"),r("2877")),h=Object(o["a"])(s,i,n,!1,null,"4911e6b7",null);t["a"]=h.exports},6291:function(e,t,r){"use strict";var i=function(){var e=this,t=e._self._c;return t("van-popup",{attrs:{position:"left"},model:{value:e.value,callback:function(t){e.value=t},expression:"value"}},[t("div",{staticClass:"sidebar-window"},[t("p",{staticClass:"sidebar-window-label"},[e._v("目录")]),t("pdf-catalogue-menu",{attrs:{list:e.list},on:{"click-menu":e.menuClick}})],1)])},n=[],a=r("6290"),s={components:{PdfCatalogueMenu:a["a"]},model:{prop:"show",event:"show"},props:{show:{default:!1},list:{default:function(){return[]}}},computed:{value:{get:function(){return this.show},set:function(e){this.$emit("show",e)}}},data:function(){return{}},methods:{menuClick:function(e){this.$emit("click-menu",e)}}},o=s,h=(r("dbc4"),r("2877")),l=Object(h["a"])(o,i,n,!1,null,"6757c916",null);t["a"]=l.exports},"62c9":function(e,t,r){var i=r("8707").Buffer;function n(e,t,r){var n=e._cipher.encryptBlock(e._prev),a=n[0]^t;return e._prev=i.concat([e._prev.slice(1),i.from([r?t:a])]),a}t.encrypt=function(e,t,r){var a=t.length,s=i.allocUnsafe(a),o=-1;while(++o<a)s[o]=n(e,t[o],r);return s}},6430:function(e,t,r){var i=r("8707").Buffer,n=r("d485").Transform,a=r("7d72").StringDecoder,s=r("3fb5");function o(e){n.call(this),this.hashMode="string"===typeof e,this.hashMode?this[e]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}s(o,n),o.prototype.update=function(e,t,r){"string"===typeof e&&(e=i.from(e,t));var n=this._update(e);return this.hashMode?this:(r&&(n=this._toString(n,r)),n)},o.prototype.setAutoPadding=function(){},o.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},o.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},o.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},o.prototype._transform=function(e,t,r){var i;try{this.hashMode?this._update(e):this.push(this._update(e))}catch(n){i=n}finally{r(i)}},o.prototype._flush=function(e){var t;try{this.push(this.__final())}catch(r){t=r}e(t)},o.prototype._finalOrDigest=function(e){var t=this.__final()||i.alloc(0);return e&&(t=this._toString(t,e,!0)),t},o.prototype._toString=function(e,t,r){if(this._decoder||(this._decoder=new a(t),this._encoding=t),this._encoding!==t)throw new Error("can't switch encodings");var i=this._decoder.write(e);return r&&(i+=this._decoder.end()),i},e.exports=o},6442:function(e,t,r){t.publicEncrypt=r("ad25"),t.privateDecrypt=r("0f2c"),t.privateEncrypt=function(e,r){return t.publicEncrypt(e,r,!0)},t.publicDecrypt=function(e,r){return t.privateDecrypt(e,r,!0)}},"676f":function(e,t,r){"use strict";var i=r("80af"),n=r("3fb5"),a=r("ea53"),s=r("f3a3");function o(e){a.call(this,"mont",e),this.a=new i(e.a,16).toRed(this.red),this.b=new i(e.b,16).toRed(this.red),this.i4=new i(4).toRed(this.red).redInvm(),this.two=new i(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function h(e,t,r){a.BasePoint.call(this,e,"projective"),null===t&&null===r?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new i(t,16),this.z=new i(r,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}n(o,a),e.exports=o,o.prototype.validate=function(e){var t=e.normalize().x,r=t.redSqr(),i=r.redMul(t).redAdd(r.redMul(this.a)).redAdd(t),n=i.redSqrt();return 0===n.redSqr().cmp(i)},n(h,a.BasePoint),o.prototype.decodePoint=function(e,t){return this.point(s.toArray(e,t),1)},o.prototype.point=function(e,t){return new h(this,e,t)},o.prototype.pointFromJSON=function(e){return h.fromJSON(this,e)},h.prototype.precompute=function(){},h.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},h.fromJSON=function(e,t){return new h(e,t[0],t[1]||e.one)},h.prototype.inspect=function(){return this.isInfinity()?"<EC Point Infinity>":"<EC Point x: "+this.x.fromRed().toString(16,2)+" z: "+this.z.fromRed().toString(16,2)+">"},h.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},h.prototype.dbl=function(){var e=this.x.redAdd(this.z),t=e.redSqr(),r=this.x.redSub(this.z),i=r.redSqr(),n=t.redSub(i),a=t.redMul(i),s=n.redMul(i.redAdd(this.curve.a24.redMul(n)));return this.curve.point(a,s)},h.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},h.prototype.diffAdd=function(e,t){var r=this.x.redAdd(this.z),i=this.x.redSub(this.z),n=e.x.redAdd(e.z),a=e.x.redSub(e.z),s=a.redMul(r),o=n.redMul(i),h=t.z.redMul(s.redAdd(o).redSqr()),l=t.x.redMul(s.redISub(o).redSqr());return this.curve.point(h,l)},h.prototype.mul=function(e){for(var t=e.clone(),r=this,i=this.curve.point(null,null),n=this,a=[];0!==t.cmpn(0);t.iushrn(1))a.push(t.andln(1));for(var s=a.length-1;s>=0;s--)0===a[s]?(r=r.diffAdd(i,n),i=i.dbl()):(i=r.diffAdd(i,n),r=r.dbl());return i},h.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},h.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},h.prototype.eq=function(e){return 0===this.getX().cmp(e.getX())},h.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},h.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},"67ab":function(e,t,r){var i=r("ca5a")("meta"),n=r("d3f4"),a=r("69a8"),s=r("86cc").f,o=0,h=Object.isExtensible||function(){return!0},l=!r("79e5")((function(){return h(Object.preventExtensions({}))})),c=function(e){s(e,i,{value:{i:"O"+ ++o,w:{}}})},u=function(e,t){if(!n(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!a(e,i)){if(!h(e))return"F";if(!t)return"E";c(e)}return e[i].i},f=function(e,t){if(!a(e,i)){if(!h(e))return!0;if(!t)return!1;c(e)}return e[i].w},d=function(e){return l&&p.NEED&&h(e)&&!a(e,i)&&c(e),e},p=e.exports={KEY:i,NEED:!1,fastKey:u,getWeak:f,onFreeze:d}},"69f2":function(e,t,r){t=e.exports=function(e){e=e.toLowerCase();var r=t[e];if(!r)throw new Error(e+" is not supported (we accept pull requests)");return new r};t.sha=r("087f"),t.sha1=r("7e78"),t.sha224=r("72aa"),t.sha256=r("a255"),t.sha384=r("b837"),t.sha512=r("4fd1")},"6aa2":function(e,t,r){r("ec30")("Uint8",1,(function(e){return function(t,r,i){return e(this,t,r,i)}}),!0)},"6aa23":function(e,t,r){"use strict";var i=r("7d92"),n=r("7658"),a=r("da3e");function s(e){if(!(this instanceof s))return new s(e);this.hash=e.hash,this.predResist=!!e.predResist,this.outLen=this.hash.outSize,this.minEntropy=e.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var t=n.toArray(e.entropy,e.entropyEnc||"hex"),r=n.toArray(e.nonce,e.nonceEnc||"hex"),i=n.toArray(e.pers,e.persEnc||"hex");a(t.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(t,r,i)}e.exports=s,s.prototype._init=function(e,t,r){var i=e.concat(t).concat(r);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var n=0;n<this.V.length;n++)this.K[n]=0,this.V[n]=1;this._update(i),this._reseed=1,this.reseedInterval=281474976710656},s.prototype._hmac=function(){return new i.hmac(this.hash,this.K)},s.prototype._update=function(e){var t=this._hmac().update(this.V).update([0]);e&&(t=t.update(e)),this.K=t.digest(),this.V=this._hmac().update(this.V).digest(),e&&(this.K=this._hmac().update(this.V).update([1]).update(e).digest(),this.V=this._hmac().update(this.V).digest())},s.prototype.reseed=function(e,t,r,i){"string"!==typeof t&&(i=r,r=t,t=null),e=n.toArray(e,t),r=n.toArray(r,i),a(e.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(e.concat(r||[])),this._reseed=1},s.prototype.generate=function(e,t,r,i){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!==typeof t&&(i=r,r=t,t=null),r&&(r=n.toArray(r,i||"hex"),this._update(r));var a=[];while(a.length<e)this.V=this._hmac().update(this.V).digest(),a=a.concat(this.V);var s=a.slice(0,e);return this._update(r),this._reseed++,n.encode(s,t)}},"6ade":function(e,t,r){var i=r("8c8a"),n=r("8707").Buffer,a=r("bd9d");function s(e){var t=e._cipher.encryptBlockRaw(e._prev);return a(e._prev),t}var o=16;t.encrypt=function(e,t){var r=Math.ceil(t.length/o),a=e._cache.length;e._cache=n.concat([e._cache,n.allocUnsafe(r*o)]);for(var h=0;h<r;h++){var l=s(e),c=a+h*o;e._cache.writeUInt32BE(l[0],c+0),e._cache.writeUInt32BE(l[1],c+4),e._cache.writeUInt32BE(l[2],c+8),e._cache.writeUInt32BE(l[3],c+12)}var u=e._cache.slice(0,t.length);return e._cache=e._cache.slice(t.length),i(t,u)}},"6c7b":function(e,t,r){var i=r("5ca1");i(i.P,"Array",{fill:r("36bd")}),r("9c6c")("fill")},"6eed8":function(e,t,r){"use strict";var i=r("c3c0"),n=r("edc9"),a=r("aa56"),s=r("da3e"),o=i.sum32,h=i.sum32_4,l=i.sum32_5,c=a.ch32,u=a.maj32,f=a.s0_256,d=a.s1_256,p=a.g0_256,m=a.g1_256,g=n.BlockHash,b=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function v(){if(!(this instanceof v))return new v;g.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=b,this.W=new Array(64)}i.inherits(v,g),e.exports=v,v.blockSize=512,v.outSize=256,v.hmacStrength=192,v.padLength=64,v.prototype._update=function(e,t){for(var r=this.W,i=0;i<16;i++)r[i]=e[t+i];for(;i<r.length;i++)r[i]=h(m(r[i-2]),r[i-7],p(r[i-15]),r[i-16]);var n=this.h[0],a=this.h[1],g=this.h[2],b=this.h[3],v=this.h[4],y=this.h[5],w=this.h[6],M=this.h[7];for(s(this.k.length===r.length),i=0;i<r.length;i++){var _=l(M,d(v),c(v,y,w),this.k[i],r[i]),S=o(f(n),u(n,a,g));M=w,w=y,y=v,v=o(b,_),b=g,g=a,a=n,n=o(_,S)}this.h[0]=o(this.h[0],n),this.h[1]=o(this.h[1],a),this.h[2]=o(this.h[2],g),this.h[3]=o(this.h[3],b),this.h[4]=o(this.h[4],v),this.h[5]=o(this.h[5],y),this.h[6]=o(this.h[6],w),this.h[7]=o(this.h[7],M)},v.prototype._digest=function(e){return"hex"===e?i.toHex32(this.h,"big"):i.split32(this.h,"big")}},"6fe7":function(e,t,r){var i=r("39a9").Buffer,n=r("1a2a"),a=r("a958"),s=r("3337").ec,o=r("399f"),h=r("2aee"),l=r("cd91");function c(e,t,r,n,s){var o=h(t);if(o.curve){if("ecdsa"!==n&&"ecdsa/rsa"!==n)throw new Error("wrong private key type");return u(e,o)}if("dsa"===o.type){if("dsa"!==n)throw new Error("wrong private key type");return f(e,o,r)}if("rsa"!==n&&"ecdsa/rsa"!==n)throw new Error("wrong private key type");e=i.concat([s,e]);var l=o.modulus.byteLength(),c=[0,1];while(e.length+c.length+1<l)c.push(255);c.push(0);var d=-1;while(++d<e.length)c.push(e[d]);var p=a(c,o);return p}function u(e,t){var r=l[t.curve.join(".")];if(!r)throw new Error("unknown curve "+t.curve.join("."));var n=new s(r),a=n.keyFromPrivate(t.privateKey),o=a.sign(e);return i.from(o.toDER())}function f(e,t,r){var i,n=t.params.priv_key,a=t.params.p,s=t.params.q,h=t.params.g,l=new o(0),c=m(e,s).mod(s),u=!1,f=p(n,s,e,r);while(!1===u)i=b(s,f,r),l=v(h,i,a,s),u=i.invm(s).imul(c.add(n.mul(l))).mod(s),0===u.cmpn(0)&&(u=!1,l=new o(0));return d(l,u)}function d(e,t){e=e.toArray(),t=t.toArray(),128&e[0]&&(e=[0].concat(e)),128&t[0]&&(t=[0].concat(t));var r=e.length+t.length+4,n=[48,r,2,e.length];return n=n.concat(e,[2,t.length],t),i.from(n)}function p(e,t,r,a){if(e=i.from(e.toArray()),e.length<t.byteLength()){var s=i.alloc(t.byteLength()-e.length);e=i.concat([s,e])}var o=r.length,h=g(r,t),l=i.alloc(o);l.fill(1);var c=i.alloc(o);return c=n(a,c).update(l).update(i.from([0])).update(e).update(h).digest(),l=n(a,c).update(l).digest(),c=n(a,c).update(l).update(i.from([1])).update(e).update(h).digest(),l=n(a,c).update(l).digest(),{k:c,v:l}}function m(e,t){var r=new o(e),i=(e.length<<3)-t.bitLength();return i>0&&r.ishrn(i),r}function g(e,t){e=m(e,t),e=e.mod(t);var r=i.from(e.toArray());if(r.length<t.byteLength()){var n=i.alloc(t.byteLength()-r.length);r=i.concat([n,r])}return r}function b(e,t,r){var a,s;do{a=i.alloc(0);while(8*a.length<e.bitLength())t.v=n(r,t.k).update(t.v).digest(),a=i.concat([a,t.v]);s=m(a,e),t.k=n(r,t.k).update(t.v).update(i.from([0])).digest(),t.v=n(r,t.k).update(t.v).digest()}while(-1!==s.cmp(e));return s}function v(e,t,r,i){return e.toRed(o.mont(r)).redPow(t).fromRed().mod(i)}e.exports=c,e.exports.getKey=p,e.exports.makeKey=b},7:function(e,t){},"72aa":function(e,t,r){var i=r("3fb5"),n=r("a255"),a=r("b672"),s=r("8707").Buffer,o=new Array(64);function h(){this.init(),this._w=o,a.call(this,64,56)}i(h,n),h.prototype.init=function(){return this._a=3238371032,this._b=914150663,this._c=812702999,this._d=4144912697,this._e=4290775857,this._f=1750603025,this._g=1694076839,this._h=3204075428,this},h.prototype._hash=function(){var e=s.allocUnsafe(28);return e.writeInt32BE(this._a,0),e.writeInt32BE(this._b,4),e.writeInt32BE(this._c,8),e.writeInt32BE(this._d,12),e.writeInt32BE(this._e,16),e.writeInt32BE(this._f,20),e.writeInt32BE(this._g,24),e},e.exports=h},"75cc":function(e,t,r){"use strict";(function(e,i){function n(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var a=r("8707"),s=r("11dc"),o=a.Buffer,h=a.kMaxLength,l=e.crypto||e.msCrypto,c=Math.pow(2,32)-1;function u(e,t){if("number"!==typeof e||e!==e)throw new TypeError("offset must be a number");if(e>c||e<0)throw new TypeError("offset must be a uint32");if(e>h||e>t)throw new RangeError("offset out of range")}function f(e,t,r){if("number"!==typeof e||e!==e)throw new TypeError("size must be a number");if(e>c||e<0)throw new TypeError("size must be a uint32");if(e+t>r||e>h)throw new RangeError("buffer too small")}function d(t,r,i,n){if(!o.isBuffer(t)&&!(t instanceof e.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"===typeof r)n=r,r=0,i=t.length;else if("function"===typeof i)n=i,i=t.length-r;else if("function"!==typeof n)throw new TypeError('"cb" argument must be a function');return u(r,t.length),f(i,r,t.length),p(t,r,i,n)}function p(e,t,r,n){if(i.browser){var a=e.buffer,o=new Uint8Array(a,t,r);return l.getRandomValues(o),n?void i.nextTick((function(){n(null,e)})):e}if(!n){var h=s(r);return h.copy(e,t),e}s(r,(function(r,i){if(r)return n(r);i.copy(e,t),n(null,e)}))}function m(t,r,i){if("undefined"===typeof r&&(r=0),!o.isBuffer(t)&&!(t instanceof e.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return u(r,t.length),void 0===i&&(i=t.length-r),f(i,r,t.length),p(t,r,i)}l&&l.getRandomValues||!i.browser?(t.randomFill=d,t.randomFillSync=m):(t.randomFill=n,t.randomFillSync=n)}).call(this,r("c8ba"),r("f28c"))},7658:function(e,t,r){"use strict";var i=t;function n(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var r=[];if("string"!==typeof e){for(var i=0;i<e.length;i++)r[i]=0|e[i];return r}if("hex"===t){e=e.replace(/[^a-z0-9]+/gi,""),e.length%2!==0&&(e="0"+e);for(i=0;i<e.length;i+=2)r.push(parseInt(e[i]+e[i+1],16))}else for(i=0;i<e.length;i++){var n=e.charCodeAt(i),a=n>>8,s=255&n;a?r.push(a,s):r.push(s)}return r}function a(e){return 1===e.length?"0"+e:e}function s(e){for(var t="",r=0;r<e.length;r++)t+=a(e[r].toString(16));return t}i.toArray=n,i.zero2=a,i.toHex=s,i.encode=function(e,t){return"hex"===t?s(e):e}},"768e":function(e,t,r){"use strict";r("2b8c4")},"780f":function(e,t,r){"use strict";e.exports=a;var i=r("27bf"),n=Object.create(r("3a7c"));function a(e){if(!(this instanceof a))return new a(e);i.call(this,e)}n.inherits=r("3fb5"),n.inherits(a,i),a.prototype._transform=function(e,t,r){r(null,e)}},"78ce":function(e,t,r){var i=r("5ca1");i(i.S,"Date",{now:function(){return(new Date).getTime()}})},"7a10":function(e,t,r){var i=r("d0eb"),n=r("fdac");function a(e){this.rand=e||new n.Rand}e.exports=a,a.create=function(e){return new a(e)},a.prototype._randbelow=function(e){var t=e.bitLength(),r=Math.ceil(t/8);do{var n=new i(this.rand.generate(r))}while(n.cmp(e)>=0);return n},a.prototype._randrange=function(e,t){var r=t.sub(e);return e.add(this._randbelow(r))},a.prototype.test=function(e,t,r){var n=e.bitLength(),a=i.mont(e),s=new i(1).toRed(a);t||(t=Math.max(1,n/48|0));for(var o=e.subn(1),h=0;!o.testn(h);h++);for(var l=e.shrn(h),c=o.toRed(a),u=!0;t>0;t--){var f=this._randrange(new i(2),o);r&&r(f);var d=f.toRed(a).redPow(l);if(0!==d.cmp(s)&&0!==d.cmp(c)){for(var p=1;p<h;p++){if(d=d.redSqr(),0===d.cmp(s))return!1;if(0===d.cmp(c))break}if(p===h)return!1}}return u},a.prototype.getDivisor=function(e,t){var r=e.bitLength(),n=i.mont(e),a=new i(1).toRed(n);t||(t=Math.max(1,r/48|0));for(var s=e.subn(1),o=0;!s.testn(o);o++);for(var h=e.shrn(o),l=s.toRed(n);t>0;t--){var c=this._randrange(new i(2),s),u=e.gcd(c);if(0!==u.cmpn(1))return u;var f=c.toRed(n).redPow(h);if(0!==f.cmp(a)&&0!==f.cmp(l)){for(var d=1;d<o;d++){if(f=f.redSqr(),0===f.cmp(a))return f.fromRed().subn(1).gcd(e);if(0===f.cmp(l))break}if(d===o)return f=f.redSqr(),f.fromRed().subn(1).gcd(e)}}return!1}},"7d2a":function(e,t){var r=Math.pow(2,30)-1;e.exports=function(e,t){if("number"!==typeof e)throw new TypeError("Iterations not a number");if(e<0)throw new TypeError("Bad iterations");if("number"!==typeof t)throw new TypeError("Key length not a number");if(t<0||t>r||t!==t)throw new TypeError("Bad key length")}},"7d72":function(e,t,r){"use strict";var i=r("8707").Buffer,n=i.isEncoding||function(e){switch(e=""+e,e&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function a(e){if(!e)return"utf8";var t;while(1)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}function s(e){var t=a(e);if("string"!==typeof t&&(i.isEncoding===n||!n(e)))throw new Error("Unknown encoding: "+e);return t||e}function o(e){var t;switch(this.encoding=s(e),this.encoding){case"utf16le":this.text=p,this.end=m,t=4;break;case"utf8":this.fillLast=u,t=4;break;case"base64":this.text=g,this.end=b,t=3;break;default:return this.write=v,void(this.end=y)}this.lastNeed=0,this.lastTotal=0,this.lastChar=i.allocUnsafe(t)}function h(e){return e<=127?0:e>>5===6?2:e>>4===14?3:e>>3===30?4:e>>6===2?-1:-2}function l(e,t,r){var i=t.length-1;if(i<r)return 0;var n=h(t[i]);return n>=0?(n>0&&(e.lastNeed=n-1),n):--i<r||-2===n?0:(n=h(t[i]),n>=0?(n>0&&(e.lastNeed=n-2),n):--i<r||-2===n?0:(n=h(t[i]),n>=0?(n>0&&(2===n?n=0:e.lastNeed=n-3),n):0))}function c(e,t,r){if(128!==(192&t[0]))return e.lastNeed=0,"�";if(e.lastNeed>1&&t.length>1){if(128!==(192&t[1]))return e.lastNeed=1,"�";if(e.lastNeed>2&&t.length>2&&128!==(192&t[2]))return e.lastNeed=2,"�"}}function u(e){var t=this.lastTotal-this.lastNeed,r=c(this,e,t);return void 0!==r?r:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function f(e,t){var r=l(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=r;var i=e.length-(r-this.lastNeed);return e.copy(this.lastChar,0,i),e.toString("utf8",t,i)}function d(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+"�":t}function p(e,t){if((e.length-t)%2===0){var r=e.toString("utf16le",t);if(r){var i=r.charCodeAt(r.length-1);if(i>=55296&&i<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function m(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,r)}return t}function g(e,t){var r=(e.length-t)%3;return 0===r?e.toString("base64",t):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-r))}function b(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function v(e){return e.toString(this.encoding)}function y(e){return e&&e.length?this.write(e):""}t.StringDecoder=o,o.prototype.write=function(e){if(0===e.length)return"";var t,r;if(this.lastNeed){if(t=this.fillLast(e),void 0===t)return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<e.length?t?t+this.text(e,r):this.text(e,r):t||""},o.prototype.end=d,o.prototype.text=f,o.prototype.fillLast=function(e){if(this.lastNeed<=e.length)return e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length),this.lastNeed-=e.length}},"7d92":function(e,t,r){var i=t;i.utils=r("c3c0"),i.common=r("edc9"),i.sha=r("5919"),i.ripemd=r("bb44"),i.hmac=r("2137"),i.sha1=i.sha.sha1,i.sha256=i.sha.sha256,i.sha224=i.sha.sha224,i.sha384=i.sha.sha384,i.sha512=i.sha.sha512,i.ripemd160=i.ripemd.ripemd160},"7e78":function(e,t,r){var i=r("3fb5"),n=r("b672"),a=r("8707").Buffer,s=[1518500249,1859775393,-1894007588,-899497514],o=new Array(80);function h(){this.init(),this._w=o,n.call(this,64,56)}function l(e){return e<<1|e>>>31}function c(e){return e<<5|e>>>27}function u(e){return e<<30|e>>>2}function f(e,t,r,i){return 0===e?t&r|~t&i:2===e?t&r|t&i|r&i:t^r^i}i(h,n),h.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},h.prototype._update=function(e){for(var t=this._w,r=0|this._a,i=0|this._b,n=0|this._c,a=0|this._d,o=0|this._e,h=0;h<16;++h)t[h]=e.readInt32BE(4*h);for(;h<80;++h)t[h]=l(t[h-3]^t[h-8]^t[h-14]^t[h-16]);for(var d=0;d<80;++d){var p=~~(d/20),m=c(r)+f(p,i,n,a)+o+t[d]+s[p]|0;o=a,a=n,n=u(i),i=r,r=m}this._a=r+this._a|0,this._b=i+this._b|0,this._c=n+this._c|0,this._d=a+this._d|0,this._e=o+this._e|0},h.prototype._hash=function(){var e=a.allocUnsafe(20);return e.writeInt32BE(0|this._a,0),e.writeInt32BE(0|this._b,4),e.writeInt32BE(0|this._c,8),e.writeInt32BE(0|this._d,12),e.writeInt32BE(0|this._e,16),e},e.exports=h},"7f7a":function(e,t,r){"use strict";const i=t;i.bignum=r("bc12"),i.define=r("ef3a").define,i.base=r("41df"),i.constants=r("0211"),i.decoders=r("20f6"),i.encoders=r("343e")},8:function(e,t){},"80af":function(e,t,r){(function(e){(function(e,t){"use strict";function i(e,t){if(!e)throw new Error(t||"Assertion failed")}function n(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}function a(e,t,r){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(r=t,t=10),this._init(e||0,t||10,r||"be"))}var s;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{s="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:r(19).Buffer}catch(C){}function o(e,t){var r=e.charCodeAt(t);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function h(e,t,r){var i=o(e,r);return r-1>=t&&(i|=o(e,r-1)<<4),i}function l(e,t,r,i){for(var n=0,a=Math.min(e.length,r),s=t;s<a;s++){var o=e.charCodeAt(s)-48;n*=i,n+=o>=49?o-49+10:o>=17?o-17+10:o}return n}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n<e.length&&(16===t?this._parseHex(e,n,r):(this._parseBase(e,t,n),"le"===r&&this._initArray(this.toArray(),t,r)))},a.prototype._initNumber=function(e,t,r){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(i(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),t,r)},a.prototype._initArray=function(e,t,r){if(i("number"===typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var a,s,o=0;if("be"===r)for(n=e.length-1,a=0;n>=0;n-=3)s=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);else if("le"===r)for(n=0,a=0;n<e.length;n+=3)s=e[n]|e[n+1]<<8|e[n+2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var n,a=0,s=0;if("be"===r)for(i=e.length-1;i>=t;i-=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8;else{var o=e.length-t;for(i=o%2===0?t+1:t;i<e.length;i+=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8}this.strip()},a.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var a=e.length-r,s=a%i,o=Math.min(a,a-s)+r,h=0,c=r;c<o;c+=i)h=l(e,c,c+i,t),this.imuln(n),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var u=1;for(h=l(e,c,e.length,t),c=0;c<s;c++)u*=t;this.imuln(u),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this.strip()},a.prototype.copy=function(e){e.words=new Array(this.length);for(var t=0;t<this.length;t++)e.words[t]=this.words[t];e.length=this.length,e.negative=this.negative,e.red=this.red},a.prototype.clone=function(){var e=new a(null);return this.copy(e),e},a.prototype._expand=function(e){while(this.length<e)this.words[this.length++]=0;return this},a.prototype.strip=function(){while(this.length>1&&0===this.words[this.length-1])this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],f=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function d(e){for(var t=new Array(e.bitLength()),r=0;r<t.length;r++){var i=r/26|0,n=r%26;t[r]=(e.words[i]&1<<n)>>>n}return t}function p(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],a=0|t.words[0],s=n*a,o=67108863&s,h=s/67108864|0;r.words[0]=o;for(var l=1;l<i;l++){for(var c=h>>>26,u=67108863&h,f=Math.min(l,t.length-1),d=Math.max(0,l-e.length+1);d<=f;d++){var p=l-d|0;n=0|e.words[p],a=0|t.words[d],s=n*a+u,c+=s/67108864|0,u=67108863&s}r.words[l]=0|u,h=0|c}return 0!==h?r.words[l]=0|h:r.length--,r.strip()}a.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,a=0,s=0;s<this.length;s++){var o=this.words[s],h=(16777215&(o<<n|a)).toString(16);a=o>>>24-n&16777215,r=0!==a||s!==this.length-1?c[6-h.length]+h+r:h+r,n+=2,n>=26&&(n-=26,s--)}0!==a&&(r=a.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var l=u[e],d=f[e];r="";var p=this.clone();p.negative=0;while(!p.isZero()){var m=p.modn(d).toString(e);p=p.idivn(d),r=p.isZero()?m+r:c[l-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return i("undefined"!==typeof s),this.toArrayLike(s,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,r){var n=this.byteLength(),a=r||Math.max(1,n);i(n<=a,"byte array longer than desired length"),i(a>0,"Requested array length <= 0"),this.strip();var s,o,h="le"===t,l=new e(a),c=this.clone();if(h){for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[o]=s;for(;o<a;o++)l[o]=0}else{for(o=0;o<a-n;o++)l[o]=0;for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[a-o-1]=s}return l},Math.clz32?a.prototype._countBits=function(e){return 32-Math.clz32(e)}:a.prototype._countBits=function(e){var t=e,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;t<this.length;t++){var r=this._zeroBits(this.words[t]);if(e+=r,26!==r)break}return e},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(e){return 0!==this.negative?this.abs().inotn(e).iaddn(1):this.clone()},a.prototype.fromTwos=function(e){return this.testn(e-1)?this.notn(e).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(e){while(this.length<e.length)this.words[this.length++]=0;for(var t=0;t<e.length;t++)this.words[t]=this.words[t]|e.words[t];return this.strip()},a.prototype.ior=function(e){return i(0===(this.negative|e.negative)),this.iuor(e)},a.prototype.or=function(e){return this.length>e.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;r<t.length;r++)this.words[r]=this.words[r]&e.words[r];return this.length=t.length,this.strip()},a.prototype.iand=function(e){return i(0===(this.negative|e.negative)),this.iuand(e)},a.prototype.and=function(e){return this.length>e.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;i<r.length;i++)this.words[i]=t.words[i]^r.words[i];if(this!==t)for(;i<t.length;i++)this.words[i]=t.words[i];return this.length=t.length,this.strip()},a.prototype.ixor=function(e){return i(0===(this.negative|e.negative)),this.iuxor(e)},a.prototype.xor=function(e){return this.length>e.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n<t;n++)this.words[n]=67108863&~this.words[n];return r>0&&(this.words[n]=~this.words[n]&67108863>>26-r),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<<n:this.words[r]&~(1<<n),this.strip()},a.prototype.iadd=function(e){var t,r,i;if(0!==this.negative&&0===e.negative)return this.negative=0,t=this.isub(e),this.negative^=1,this._normSign();if(0===this.negative&&0!==e.negative)return e.negative=0,t=this.isub(e),e.negative=1,t._normSign();this.length>e.length?(r=this,i=e):(r=e,i=this);for(var n=0,a=0;a<i.length;a++)t=(0|r.words[a])+(0|i.words[a])+n,this.words[a]=67108863&t,n=t>>>26;for(;0!==n&&a<r.length;a++)t=(0|r.words[a])+n,this.words[a]=67108863&t,n=t>>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(e){var t;return 0!==e.negative&&0===this.negative?(e.negative=0,t=this.sub(e),e.negative^=1,t):0===e.negative&&0!==this.negative?(this.negative=0,t=e.sub(this),this.negative=1,t):this.length>e.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var a=0,s=0;s<i.length;s++)t=(0|r.words[s])-(0|i.words[s])+a,a=t>>26,this.words[s]=67108863&t;for(;0!==a&&s<r.length;s++)t=(0|r.words[s])+a,a=t>>26,this.words[s]=67108863&t;if(0===a&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this.strip()},a.prototype.sub=function(e){return this.clone().isub(e)};var m=function(e,t,r){var i,n,a,s=e.words,o=t.words,h=r.words,l=0,c=0|s[0],u=8191&c,f=c>>>13,d=0|s[1],p=8191&d,m=d>>>13,g=0|s[2],b=8191&g,v=g>>>13,y=0|s[3],w=8191&y,M=y>>>13,_=0|s[4],S=8191&_,k=_>>>13,A=0|s[5],x=8191&A,C=A>>>13,E=0|s[6],T=8191&E,R=E>>>13,I=0|s[7],P=8191&I,O=I>>>13,F=0|s[8],L=8191&F,D=F>>>13,N=0|s[9],B=8191&N,U=N>>>13,j=0|o[0],q=8191&j,z=j>>>13,H=0|o[1],G=8191&H,W=H>>>13,X=0|o[2],V=8191&X,K=X>>>13,Y=0|o[3],Z=8191&Y,$=Y>>>13,J=0|o[4],Q=8191&J,ee=J>>>13,te=0|o[5],re=8191&te,ie=te>>>13,ne=0|o[6],ae=8191&ne,se=ne>>>13,oe=0|o[7],he=8191&oe,le=oe>>>13,ce=0|o[8],ue=8191&ce,fe=ce>>>13,de=0|o[9],pe=8191&de,me=de>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(u,q),n=Math.imul(u,z),n=n+Math.imul(f,q)|0,a=Math.imul(f,z);var ge=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,q),n=Math.imul(p,z),n=n+Math.imul(m,q)|0,a=Math.imul(m,z),i=i+Math.imul(u,G)|0,n=n+Math.imul(u,W)|0,n=n+Math.imul(f,G)|0,a=a+Math.imul(f,W)|0;var be=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(b,q),n=Math.imul(b,z),n=n+Math.imul(v,q)|0,a=Math.imul(v,z),i=i+Math.imul(p,G)|0,n=n+Math.imul(p,W)|0,n=n+Math.imul(m,G)|0,a=a+Math.imul(m,W)|0,i=i+Math.imul(u,V)|0,n=n+Math.imul(u,K)|0,n=n+Math.imul(f,V)|0,a=a+Math.imul(f,K)|0;var ve=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(w,q),n=Math.imul(w,z),n=n+Math.imul(M,q)|0,a=Math.imul(M,z),i=i+Math.imul(b,G)|0,n=n+Math.imul(b,W)|0,n=n+Math.imul(v,G)|0,a=a+Math.imul(v,W)|0,i=i+Math.imul(p,V)|0,n=n+Math.imul(p,K)|0,n=n+Math.imul(m,V)|0,a=a+Math.imul(m,K)|0,i=i+Math.imul(u,Z)|0,n=n+Math.imul(u,$)|0,n=n+Math.imul(f,Z)|0,a=a+Math.imul(f,$)|0;var ye=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(S,q),n=Math.imul(S,z),n=n+Math.imul(k,q)|0,a=Math.imul(k,z),i=i+Math.imul(w,G)|0,n=n+Math.imul(w,W)|0,n=n+Math.imul(M,G)|0,a=a+Math.imul(M,W)|0,i=i+Math.imul(b,V)|0,n=n+Math.imul(b,K)|0,n=n+Math.imul(v,V)|0,a=a+Math.imul(v,K)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,$)|0,n=n+Math.imul(m,Z)|0,a=a+Math.imul(m,$)|0,i=i+Math.imul(u,Q)|0,n=n+Math.imul(u,ee)|0,n=n+Math.imul(f,Q)|0,a=a+Math.imul(f,ee)|0;var we=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(x,q),n=Math.imul(x,z),n=n+Math.imul(C,q)|0,a=Math.imul(C,z),i=i+Math.imul(S,G)|0,n=n+Math.imul(S,W)|0,n=n+Math.imul(k,G)|0,a=a+Math.imul(k,W)|0,i=i+Math.imul(w,V)|0,n=n+Math.imul(w,K)|0,n=n+Math.imul(M,V)|0,a=a+Math.imul(M,K)|0,i=i+Math.imul(b,Z)|0,n=n+Math.imul(b,$)|0,n=n+Math.imul(v,Z)|0,a=a+Math.imul(v,$)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,a=a+Math.imul(m,ee)|0,i=i+Math.imul(u,re)|0,n=n+Math.imul(u,ie)|0,n=n+Math.imul(f,re)|0,a=a+Math.imul(f,ie)|0;var Me=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(T,q),n=Math.imul(T,z),n=n+Math.imul(R,q)|0,a=Math.imul(R,z),i=i+Math.imul(x,G)|0,n=n+Math.imul(x,W)|0,n=n+Math.imul(C,G)|0,a=a+Math.imul(C,W)|0,i=i+Math.imul(S,V)|0,n=n+Math.imul(S,K)|0,n=n+Math.imul(k,V)|0,a=a+Math.imul(k,K)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,$)|0,n=n+Math.imul(M,Z)|0,a=a+Math.imul(M,$)|0,i=i+Math.imul(b,Q)|0,n=n+Math.imul(b,ee)|0,n=n+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,a=a+Math.imul(m,ie)|0,i=i+Math.imul(u,ae)|0,n=n+Math.imul(u,se)|0,n=n+Math.imul(f,ae)|0,a=a+Math.imul(f,se)|0;var _e=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul(P,q),n=Math.imul(P,z),n=n+Math.imul(O,q)|0,a=Math.imul(O,z),i=i+Math.imul(T,G)|0,n=n+Math.imul(T,W)|0,n=n+Math.imul(R,G)|0,a=a+Math.imul(R,W)|0,i=i+Math.imul(x,V)|0,n=n+Math.imul(x,K)|0,n=n+Math.imul(C,V)|0,a=a+Math.imul(C,K)|0,i=i+Math.imul(S,Z)|0,n=n+Math.imul(S,$)|0,n=n+Math.imul(k,Z)|0,a=a+Math.imul(k,$)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(M,Q)|0,a=a+Math.imul(M,ee)|0,i=i+Math.imul(b,re)|0,n=n+Math.imul(b,ie)|0,n=n+Math.imul(v,re)|0,a=a+Math.imul(v,ie)|0,i=i+Math.imul(p,ae)|0,n=n+Math.imul(p,se)|0,n=n+Math.imul(m,ae)|0,a=a+Math.imul(m,se)|0,i=i+Math.imul(u,he)|0,n=n+Math.imul(u,le)|0,n=n+Math.imul(f,he)|0,a=a+Math.imul(f,le)|0;var Se=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(L,q),n=Math.imul(L,z),n=n+Math.imul(D,q)|0,a=Math.imul(D,z),i=i+Math.imul(P,G)|0,n=n+Math.imul(P,W)|0,n=n+Math.imul(O,G)|0,a=a+Math.imul(O,W)|0,i=i+Math.imul(T,V)|0,n=n+Math.imul(T,K)|0,n=n+Math.imul(R,V)|0,a=a+Math.imul(R,K)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,$)|0,n=n+Math.imul(C,Z)|0,a=a+Math.imul(C,$)|0,i=i+Math.imul(S,Q)|0,n=n+Math.imul(S,ee)|0,n=n+Math.imul(k,Q)|0,a=a+Math.imul(k,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(M,re)|0,a=a+Math.imul(M,ie)|0,i=i+Math.imul(b,ae)|0,n=n+Math.imul(b,se)|0,n=n+Math.imul(v,ae)|0,a=a+Math.imul(v,se)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,le)|0,n=n+Math.imul(m,he)|0,a=a+Math.imul(m,le)|0,i=i+Math.imul(u,ue)|0,n=n+Math.imul(u,fe)|0,n=n+Math.imul(f,ue)|0,a=a+Math.imul(f,fe)|0;var ke=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(B,q),n=Math.imul(B,z),n=n+Math.imul(U,q)|0,a=Math.imul(U,z),i=i+Math.imul(L,G)|0,n=n+Math.imul(L,W)|0,n=n+Math.imul(D,G)|0,a=a+Math.imul(D,W)|0,i=i+Math.imul(P,V)|0,n=n+Math.imul(P,K)|0,n=n+Math.imul(O,V)|0,a=a+Math.imul(O,K)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,$)|0,n=n+Math.imul(R,Z)|0,a=a+Math.imul(R,$)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(C,Q)|0,a=a+Math.imul(C,ee)|0,i=i+Math.imul(S,re)|0,n=n+Math.imul(S,ie)|0,n=n+Math.imul(k,re)|0,a=a+Math.imul(k,ie)|0,i=i+Math.imul(w,ae)|0,n=n+Math.imul(w,se)|0,n=n+Math.imul(M,ae)|0,a=a+Math.imul(M,se)|0,i=i+Math.imul(b,he)|0,n=n+Math.imul(b,le)|0,n=n+Math.imul(v,he)|0,a=a+Math.imul(v,le)|0,i=i+Math.imul(p,ue)|0,n=n+Math.imul(p,fe)|0,n=n+Math.imul(m,ue)|0,a=a+Math.imul(m,fe)|0,i=i+Math.imul(u,pe)|0,n=n+Math.imul(u,me)|0,n=n+Math.imul(f,pe)|0,a=a+Math.imul(f,me)|0;var Ae=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(B,G),n=Math.imul(B,W),n=n+Math.imul(U,G)|0,a=Math.imul(U,W),i=i+Math.imul(L,V)|0,n=n+Math.imul(L,K)|0,n=n+Math.imul(D,V)|0,a=a+Math.imul(D,K)|0,i=i+Math.imul(P,Z)|0,n=n+Math.imul(P,$)|0,n=n+Math.imul(O,Z)|0,a=a+Math.imul(O,$)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(R,Q)|0,a=a+Math.imul(R,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(C,re)|0,a=a+Math.imul(C,ie)|0,i=i+Math.imul(S,ae)|0,n=n+Math.imul(S,se)|0,n=n+Math.imul(k,ae)|0,a=a+Math.imul(k,se)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,le)|0,n=n+Math.imul(M,he)|0,a=a+Math.imul(M,le)|0,i=i+Math.imul(b,ue)|0,n=n+Math.imul(b,fe)|0,n=n+Math.imul(v,ue)|0,a=a+Math.imul(v,fe)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,a=a+Math.imul(m,me)|0;var xe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(B,V),n=Math.imul(B,K),n=n+Math.imul(U,V)|0,a=Math.imul(U,K),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,$)|0,n=n+Math.imul(D,Z)|0,a=a+Math.imul(D,$)|0,i=i+Math.imul(P,Q)|0,n=n+Math.imul(P,ee)|0,n=n+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(R,re)|0,a=a+Math.imul(R,ie)|0,i=i+Math.imul(x,ae)|0,n=n+Math.imul(x,se)|0,n=n+Math.imul(C,ae)|0,a=a+Math.imul(C,se)|0,i=i+Math.imul(S,he)|0,n=n+Math.imul(S,le)|0,n=n+Math.imul(k,he)|0,a=a+Math.imul(k,le)|0,i=i+Math.imul(w,ue)|0,n=n+Math.imul(w,fe)|0,n=n+Math.imul(M,ue)|0,a=a+Math.imul(M,fe)|0,i=i+Math.imul(b,pe)|0,n=n+Math.imul(b,me)|0,n=n+Math.imul(v,pe)|0,a=a+Math.imul(v,me)|0;var Ce=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(B,Z),n=Math.imul(B,$),n=n+Math.imul(U,Z)|0,a=Math.imul(U,$),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(D,Q)|0,a=a+Math.imul(D,ee)|0,i=i+Math.imul(P,re)|0,n=n+Math.imul(P,ie)|0,n=n+Math.imul(O,re)|0,a=a+Math.imul(O,ie)|0,i=i+Math.imul(T,ae)|0,n=n+Math.imul(T,se)|0,n=n+Math.imul(R,ae)|0,a=a+Math.imul(R,se)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,le)|0,n=n+Math.imul(C,he)|0,a=a+Math.imul(C,le)|0,i=i+Math.imul(S,ue)|0,n=n+Math.imul(S,fe)|0,n=n+Math.imul(k,ue)|0,a=a+Math.imul(k,fe)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(M,pe)|0,a=a+Math.imul(M,me)|0;var Ee=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(B,Q),n=Math.imul(B,ee),n=n+Math.imul(U,Q)|0,a=Math.imul(U,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(D,re)|0,a=a+Math.imul(D,ie)|0,i=i+Math.imul(P,ae)|0,n=n+Math.imul(P,se)|0,n=n+Math.imul(O,ae)|0,a=a+Math.imul(O,se)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,le)|0,n=n+Math.imul(R,he)|0,a=a+Math.imul(R,le)|0,i=i+Math.imul(x,ue)|0,n=n+Math.imul(x,fe)|0,n=n+Math.imul(C,ue)|0,a=a+Math.imul(C,fe)|0,i=i+Math.imul(S,pe)|0,n=n+Math.imul(S,me)|0,n=n+Math.imul(k,pe)|0,a=a+Math.imul(k,me)|0;var Te=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(B,re),n=Math.imul(B,ie),n=n+Math.imul(U,re)|0,a=Math.imul(U,ie),i=i+Math.imul(L,ae)|0,n=n+Math.imul(L,se)|0,n=n+Math.imul(D,ae)|0,a=a+Math.imul(D,se)|0,i=i+Math.imul(P,he)|0,n=n+Math.imul(P,le)|0,n=n+Math.imul(O,he)|0,a=a+Math.imul(O,le)|0,i=i+Math.imul(T,ue)|0,n=n+Math.imul(T,fe)|0,n=n+Math.imul(R,ue)|0,a=a+Math.imul(R,fe)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(C,pe)|0,a=a+Math.imul(C,me)|0;var Re=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Re>>>26)|0,Re&=67108863,i=Math.imul(B,ae),n=Math.imul(B,se),n=n+Math.imul(U,ae)|0,a=Math.imul(U,se),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,le)|0,n=n+Math.imul(D,he)|0,a=a+Math.imul(D,le)|0,i=i+Math.imul(P,ue)|0,n=n+Math.imul(P,fe)|0,n=n+Math.imul(O,ue)|0,a=a+Math.imul(O,fe)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(R,pe)|0,a=a+Math.imul(R,me)|0;var Ie=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(B,he),n=Math.imul(B,le),n=n+Math.imul(U,he)|0,a=Math.imul(U,le),i=i+Math.imul(L,ue)|0,n=n+Math.imul(L,fe)|0,n=n+Math.imul(D,ue)|0,a=a+Math.imul(D,fe)|0,i=i+Math.imul(P,pe)|0,n=n+Math.imul(P,me)|0,n=n+Math.imul(O,pe)|0,a=a+Math.imul(O,me)|0;var Pe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(B,ue),n=Math.imul(B,fe),n=n+Math.imul(U,ue)|0,a=Math.imul(U,fe),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(D,pe)|0,a=a+Math.imul(D,me)|0;var Oe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(B,pe),n=Math.imul(B,me),n=n+Math.imul(U,pe)|0,a=Math.imul(U,me);var Fe=(l+i|0)+((8191&n)<<13)|0;return l=(a+(n>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,h[0]=ge,h[1]=be,h[2]=ve,h[3]=ye,h[4]=we,h[5]=Me,h[6]=_e,h[7]=Se,h[8]=ke,h[9]=Ae,h[10]=xe,h[11]=Ce,h[12]=Ee,h[13]=Te,h[14]=Re,h[15]=Ie,h[16]=Pe,h[17]=Oe,h[18]=Fe,0!==l&&(h[19]=l,r.length++),r};function g(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,a=0;a<r.length-1;a++){var s=n;n=0;for(var o=67108863&i,h=Math.min(a,t.length-1),l=Math.max(0,a-e.length+1);l<=h;l++){var c=a-l,u=0|e.words[c],f=0|t.words[l],d=u*f,p=67108863&d;s=s+(d/67108864|0)|0,p=p+o|0,o=67108863&p,s=s+(p>>>26)|0,n+=s>>>26,s&=67108863}r.words[a]=o,i=s,s=n}return 0!==i?r.words[a]=i:r.length--,r.strip()}function b(e,t,r){var i=new v;return i.mulp(e,t,r)}function v(e,t){this.x=e,this.y=t}Math.imul||(m=p),a.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?m(this,e,t):i<63?p(this,e,t):i<1024?g(this,e,t):b(this,e,t),r},v.prototype.makeRBT=function(e){for(var t=new Array(e),r=a.prototype._countBits(e)-1,i=0;i<e;i++)t[i]=this.revBin(i,r,e);return t},v.prototype.revBin=function(e,t,r){if(0===e||e===r-1)return e;for(var i=0,n=0;n<t;n++)i|=(1&e)<<t-n-1,e>>=1;return i},v.prototype.permute=function(e,t,r,i,n,a){for(var s=0;s<a;s++)i[s]=t[e[s]],n[s]=r[e[s]]},v.prototype.transform=function(e,t,r,i,n,a){this.permute(a,e,t,r,i,n);for(var s=1;s<n;s<<=1)for(var o=s<<1,h=Math.cos(2*Math.PI/o),l=Math.sin(2*Math.PI/o),c=0;c<n;c+=o)for(var u=h,f=l,d=0;d<s;d++){var p=r[c+d],m=i[c+d],g=r[c+d+s],b=i[c+d+s],v=u*g-f*b;b=u*b+f*g,g=v,r[c+d]=p+g,i[c+d]=m+b,r[c+d+s]=p-g,i[c+d+s]=m-b,d!==o&&(v=h*u-l*f,f=h*f+l*u,u=v)}},v.prototype.guessLen13b=function(e,t){var r=1|Math.max(t,e),i=1&r,n=0;for(r=r/2|0;r;r>>>=1)n++;return 1<<n+1+i},v.prototype.conjugate=function(e,t,r){if(!(r<=1))for(var i=0;i<r/2;i++){var n=e[i];e[i]=e[r-i-1],e[r-i-1]=n,n=t[i],t[i]=-t[r-i-1],t[r-i-1]=-n}},v.prototype.normalize13b=function(e,t){for(var r=0,i=0;i<t/2;i++){var n=8192*Math.round(e[2*i+1]/t)+Math.round(e[2*i]/t)+r;e[i]=67108863&n,r=n<67108864?0:n/67108864|0}return e},v.prototype.convert13b=function(e,t,r,n){for(var a=0,s=0;s<t;s++)a+=0|e[s],r[2*s]=8191&a,a>>>=13,r[2*s+1]=8191&a,a>>>=13;for(s=2*t;s<n;++s)r[s]=0;i(0===a),i(0===(-8192&a))},v.prototype.stub=function(e){for(var t=new Array(e),r=0;r<e;r++)t[r]=0;return t},v.prototype.mulp=function(e,t,r){var i=2*this.guessLen13b(e.length,t.length),n=this.makeRBT(i),a=this.stub(i),s=new Array(i),o=new Array(i),h=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),f=r.words;f.length=i,this.convert13b(e.words,e.length,s,i),this.convert13b(t.words,t.length,l,i),this.transform(s,a,o,h,i,n),this.transform(l,a,c,u,i,n);for(var d=0;d<i;d++){var p=o[d]*c[d]-h[d]*u[d];h[d]=o[d]*u[d]+h[d]*c[d],o[d]=p}return this.conjugate(o,h,i),this.transform(o,h,f,a,i,n),this.conjugate(f,a,i),this.normalize13b(f,i),r.negative=e.negative^t.negative,r.length=e.length+t.length,r.strip()},a.prototype.mul=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),this.mulTo(e,t)},a.prototype.mulf=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),b(this,e,t)},a.prototype.imul=function(e){return this.clone().mulTo(e,this)},a.prototype.imuln=function(e){i("number"===typeof e),i(e<67108864);for(var t=0,r=0;r<this.length;r++){var n=(0|this.words[r])*e,a=(67108863&n)+(67108863&t);t>>=26,t+=n/67108864|0,t+=a>>>26,this.words[r]=67108863&a}return 0!==t&&(this.words[r]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=d(e);if(0===t.length)return new a(1);for(var r=this,i=0;i<t.length;i++,r=r.sqr())if(0!==t[i])break;if(++i<t.length)for(var n=r.sqr();i<t.length;i++,n=n.sqr())0!==t[i]&&(r=r.mul(n));return r},a.prototype.iushln=function(e){i("number"===typeof e&&e>=0);var t,r=e%26,n=(e-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var s=0;for(t=0;t<this.length;t++){var o=this.words[t]&a,h=(0|this.words[t])-o<<r;this.words[t]=h|s,s=o>>>26-r}s&&(this.words[t]=s,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t<n;t++)this.words[t]=0;this.length+=n}return this.strip()},a.prototype.ishln=function(e){return i(0===this.negative),this.iushln(e)},a.prototype.iushrn=function(e,t,r){var n;i("number"===typeof e&&e>=0),n=t?(t-t%26)/26:0;var a=e%26,s=Math.min((e-a)/26,this.length),o=67108863^67108863>>>a<<a,h=r;if(n-=s,n=Math.max(0,n),h){for(var l=0;l<s;l++)h.words[l]=this.words[l];h.length=s}if(0===s);else if(this.length>s)for(this.length-=s,l=0;l<this.length;l++)this.words[l]=this.words[l+s];else this.words[0]=0,this.length=1;var c=0;for(l=this.length-1;l>=0&&(0!==c||l>=n);l--){var u=0|this.words[l];this.words[l]=c<<26-a|u>>>a,c=u&o}return h&&0!==c&&(h.words[h.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return!1;var a=this.words[r];return!!(a&n)},a.prototype.imaskn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<<t;this.words[this.length-1]&=n}return this.strip()},a.prototype.maskn=function(e){return this.clone().imaskn(e)},a.prototype.iaddn=function(e){return i("number"===typeof e),i(e<67108864),e<0?this.isubn(-e):0!==this.negative?1===this.length&&(0|this.words[0])<e?(this.words[0]=e-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(e),this.negative=1,this):this._iaddn(e)},a.prototype._iaddn=function(e){this.words[0]+=e;for(var t=0;t<this.length&&this.words[t]>=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t<this.length&&this.words[t]<0;t++)this.words[t]+=67108864,this.words[t+1]-=1;return this.strip()},a.prototype.addn=function(e){return this.clone().iaddn(e)},a.prototype.subn=function(e){return this.clone().isubn(e)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(e,t,r){var n,a,s=e.length+r;this._expand(s);var o=0;for(n=0;n<e.length;n++){a=(0|this.words[n+r])+o;var h=(0|e.words[n])*t;a-=67108863&h,o=(a>>26)-(h/67108864|0),this.words[n+r]=67108863&a}for(;n<this.length-r;n++)a=(0|this.words[n+r])+o,o=a>>26,this.words[n+r]=67108863&a;if(0===o)return this.strip();for(i(-1===o),o=0,n=0;n<this.length;n++)a=-(0|this.words[n])+o,o=a>>26,this.words[n]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,s=0|n.words[n.length-1],o=this._countBits(s);r=26-o,0!==r&&(n=n.ushln(r),i.iushln(r),s=0|n.words[n.length-1]);var h,l=i.length-n.length;if("mod"!==t){h=new a(null),h.length=l+1,h.words=new Array(h.length);for(var c=0;c<h.length;c++)h.words[c]=0}var u=i.clone()._ishlnsubmul(n,1,l);0===u.negative&&(i=u,h&&(h.words[l]=1));for(var f=l-1;f>=0;f--){var d=67108864*(0|i.words[n.length+f])+(0|i.words[n.length+f-1]);d=Math.min(d/s|0,67108863),i._ishlnsubmul(n,d,f);while(0!==i.negative)d--,i.negative=0,i._ishlnsubmul(n,1,f),i.isZero()||(i.negative^=1);h&&(h.words[f]=d)}return h&&h.strip(),i.strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:h||null,mod:i}},a.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(o=this.neg().divmod(e,t),"mod"!==t&&(n=o.div.neg()),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.iadd(e)),{div:n,mod:s}):0===this.negative&&0!==e.negative?(o=this.divmod(e.neg(),t),"mod"!==t&&(n=o.div.neg()),{div:n,mod:o.mod}):0!==(this.negative&e.negative)?(o=this.neg().divmod(e.neg(),t),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.isub(e)),{div:o.div,mod:s}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var n,s,o},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),a=r.cmp(i);return a<0||1===n&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){i(e<=67108863);for(var t=(1<<26)%e,r=0,n=this.length-1;n>=0;n--)r=(t*r+(0|this.words[n]))%e;return r},a.prototype.idivn=function(e){i(e<=67108863);for(var t=0,r=this.length-1;r>=0;r--){var n=(0|this.words[r])+67108864*t;this.words[r]=n/e|0,t=n%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new a(1),s=new a(0),o=new a(0),h=new a(1),l=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++l;var c=r.clone(),u=t.clone();while(!t.isZero()){for(var f=0,d=1;0===(t.words[0]&d)&&f<26;++f,d<<=1);if(f>0){t.iushrn(f);while(f-- >0)(n.isOdd()||s.isOdd())&&(n.iadd(c),s.isub(u)),n.iushrn(1),s.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(o.isOdd()||h.isOdd())&&(o.iadd(c),h.isub(u)),o.iushrn(1),h.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(o),s.isub(h)):(r.isub(t),o.isub(n),h.isub(s))}return{a:o,b:h,gcd:r.iushln(l)}},a.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,s=new a(1),o=new a(0),h=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var l=0,c=1;0===(t.words[0]&c)&&l<26;++l,c<<=1);if(l>0){t.iushrn(l);while(l-- >0)s.isOdd()&&s.iadd(h),s.iushrn(1)}for(var u=0,f=1;0===(r.words[0]&f)&&u<26;++u,f<<=1);if(u>0){r.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(h),o.iushrn(1)}t.cmp(r)>=0?(t.isub(r),s.isub(o)):(r.isub(t),o.isub(s))}return n=0===t.cmpn(1)?s:o,n.cmpn(0)<0&&n.iadd(e),n},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var a=t;t=r,r=a}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return this._expand(r+1),this.words[r]|=n,this;for(var a=n,s=r;0!==a&&s<this.length;s++){var o=0|this.words[s];o+=a,a=o>>>26,o&=67108863,this.words[s]=o}return 0!==a&&(this.words[s]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:n<e?-1:1}return 0!==this.negative?0|-t:t},a.prototype.cmp=function(e){if(0!==this.negative&&0===e.negative)return-1;if(0===this.negative&&0!==e.negative)return 1;var t=this.ucmp(e);return 0!==this.negative?0|-t:t},a.prototype.ucmp=function(e){if(this.length>e.length)return 1;if(this.length<e.length)return-1;for(var t=0,r=this.length-1;r>=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){i<n?t=-1:i>n&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new A(e)},a.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var y={k256:null,p224:null,p192:null,p25519:null};function w(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function M(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function _(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function S(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function k(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function A(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){A.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}w.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},w.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t<this.n?-1:r.ucmp(this.p);return 0===i?(r.words[0]=0,r.length=1):i>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(e,t){e.iushrn(this.n,0,t)},w.prototype.imulK=function(e){return e.imul(this.k)},n(M,w),M.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n<i;n++)t.words[n]=e.words[n];if(t.length=i,e.length<=9)return e.words[0]=0,void(e.length=1);var a=e.words[9];for(t.words[t.length++]=a&r,n=10;n<e.length;n++){var s=0|e.words[n];e.words[n-10]=(s&r)<<4|a>>>22,a=s}a>>>=22,e.words[n-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},M.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r<e.length;r++){var i=0|e.words[r];t+=977*i,e.words[r]=67108863&t,t=64*i+(t/67108864|0)}return 0===e.words[e.length-1]&&(e.length--,0===e.words[e.length-1]&&e.length--),e},n(_,w),n(S,w),n(k,w),k.prototype.imulK=function(e){for(var t=0,r=0;r<e.length;r++){var i=19*(0|e.words[r])+t,n=67108863&i;i>>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(y[e])return y[e];var t;if("k256"===e)t=new M;else if("p224"===e)t=new _;else if("p192"===e)t=new S;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new k}return y[e]=t,t},A.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},A.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},A.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},A.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},A.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},A.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},A.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},A.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},A.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},A.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},A.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},A.prototype.isqr=function(e){return this.imul(e,e.clone())},A.prototype.sqr=function(e){return this.mul(e,e)},A.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new a(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),s=0;while(!n.isZero()&&0===n.andln(1))s++,n.iushrn(1);i(!n.isZero());var o=new a(1).toRed(this),h=o.redNeg(),l=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new a(2*c*c).toRed(this);while(0!==this.pow(c,l).cmp(h))c.redIAdd(h);var u=this.pow(c,n),f=this.pow(e,n.addn(1).iushrn(1)),d=this.pow(e,n),p=s;while(0!==d.cmp(o)){for(var m=d,g=0;0!==m.cmp(o);g++)m=m.redSqr();i(g<p);var b=this.pow(u,new a(1).iushln(p-g-1));f=f.redMul(b),u=b.redSqr(),d=d.redMul(u),p=g}return f},A.prototype.invm=function(e){var t=e._invmp(this.m);return 0!==t.negative?(t.negative=0,this.imod(t).redNeg()):this.imod(t)},A.prototype.pow=function(e,t){if(t.isZero())return new a(1).toRed(this);if(0===t.cmpn(1))return e.clone();var r=4,i=new Array(1<<r);i[0]=new a(1).toRed(this),i[1]=e;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],e);var s=i[0],o=0,h=0,l=t.bitLength()%26;for(0===l&&(l=26),n=t.length-1;n>=0;n--){for(var c=t.words[n],u=l-1;u>=0;u--){var f=c>>u&1;s!==i[0]&&(s=this.sqr(s)),0!==f||0!==o?(o<<=1,o|=f,h++,(h===r||0===n&&0===u)&&(s=this.mul(s,i[o]),h=0,o=0)):h=0}l=26}return s},A.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},A.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new x(e)},n(x,A),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),a=n;return n.cmp(this.m)>=0?a=n.isub(this.m):n.cmpn(0)<0&&(a=n.iadd(this.m)),a._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},x.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}})(e,this)}).call(this,r("62e4")(e))},"82f0":function(e,t,r){var i=r("39f5b"),n=r("8707").Buffer,a=r("6430"),s=r("3fb5"),o=r("3f62"),h=r("8c8a"),l=r("bd9d");function c(e,t){var r=0;e.length!==t.length&&r++;for(var i=Math.min(e.length,t.length),n=0;n<i;++n)r+=e[n]^t[n];return r}function u(e,t,r){if(12===t.length)return e._finID=n.concat([t,n.from([0,0,0,1])]),n.concat([t,n.from([0,0,0,2])]);var i=new o(r),a=t.length,s=a%16;i.update(t),s&&(s=16-s,i.update(n.alloc(s,0))),i.update(n.alloc(8,0));var h=8*a,c=n.alloc(8);c.writeUIntBE(h,0,8),i.update(c),e._finID=i.state;var u=n.from(e._finID);return l(u),u}function f(e,t,r,s){a.call(this);var h=n.alloc(4,0);this._cipher=new i.AES(t);var l=this._cipher.encryptBlock(h);this._ghash=new o(l),r=u(this,r,l),this._prev=n.from(r),this._cache=n.allocUnsafe(0),this._secCache=n.allocUnsafe(0),this._decrypt=s,this._alen=0,this._len=0,this._mode=e,this._authTag=null,this._called=!1}s(f,a),f.prototype._update=function(e){if(!this._called&&this._alen){var t=16-this._alen%16;t<16&&(t=n.alloc(t,0),this._ghash.update(t))}this._called=!0;var r=this._mode.encrypt(this,e);return this._decrypt?this._ghash.update(e):this._ghash.update(r),this._len+=e.length,r},f.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var e=h(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&c(e,this._authTag))throw new Error("Unsupported state or unable to authenticate data");this._authTag=e,this._cipher.scrub()},f.prototype.getAuthTag=function(){if(this._decrypt||!n.isBuffer(this._authTag))throw new Error("Attempting to get auth tag in unsupported state");return this._authTag},f.prototype.setAuthTag=function(e){if(!this._decrypt)throw new Error("Attempting to set auth tag in unsupported state");this._authTag=e},f.prototype.setAAD=function(e){if(this._called)throw new Error("Attempting to set AAD in unsupported state");this._ghash.update(e),this._alen+=e.length},e.exports=f},8360:function(e,t,r){"use strict";const i=r("d1c8").Reporter,n=r("6283").EncoderBuffer,a=r("6283").DecoderBuffer,s=r("da3e"),o=["seq","seqof","set","setof","objid","bool","gentime","utctime","null_","enum","int","objDesc","bitstr","bmpstr","charstr","genstr","graphstr","ia5str","iso646str","numstr","octstr","printstr","t61str","unistr","utf8str","videostr"],h=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(o),l=["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"];function c(e,t,r){const i={};this._baseState=i,i.name=r,i.enc=e,i.parent=t||null,i.children=null,i.tag=null,i.args=null,i.reverseArgs=null,i.choice=null,i.optional=!1,i.any=!1,i.obj=!1,i.use=null,i.useDecoder=null,i.key=null,i["default"]=null,i.explicit=null,i.implicit=null,i.contains=null,i.parent||(i.children=[],this._wrap())}e.exports=c;const u=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];c.prototype.clone=function(){const e=this._baseState,t={};u.forEach((function(r){t[r]=e[r]}));const r=new this.constructor(t.parent);return r._baseState=t,r},c.prototype._wrap=function(){const e=this._baseState;h.forEach((function(t){this[t]=function(){const r=new this.constructor(this);return e.children.push(r),r[t].apply(r,arguments)}}),this)},c.prototype._init=function(e){const t=this._baseState;s(null===t.parent),e.call(this),t.children=t.children.filter((function(e){return e._baseState.parent===this}),this),s.equal(t.children.length,1,"Root node can have only one child")},c.prototype._useArgs=function(e){const t=this._baseState,r=e.filter((function(e){return e instanceof this.constructor}),this);e=e.filter((function(e){return!(e instanceof this.constructor)}),this),0!==r.length&&(s(null===t.children),t.children=r,r.forEach((function(e){e._baseState.parent=this}),this)),0!==e.length&&(s(null===t.args),t.args=e,t.reverseArgs=e.map((function(e){if("object"!==typeof e||e.constructor!==Object)return e;const t={};return Object.keys(e).forEach((function(r){r==(0|r)&&(r|=0);const i=e[r];t[i]=r})),t})))},l.forEach((function(e){c.prototype[e]=function(){const t=this._baseState;throw new Error(e+" not implemented for encoding: "+t.enc)}})),o.forEach((function(e){c.prototype[e]=function(){const t=this._baseState,r=Array.prototype.slice.call(arguments);return s(null===t.tag),t.tag=e,this._useArgs(r),this}})),c.prototype.use=function(e){s(e);const t=this._baseState;return s(null===t.use),t.use=e,this},c.prototype.optional=function(){const e=this._baseState;return e.optional=!0,this},c.prototype.def=function(e){const t=this._baseState;return s(null===t["default"]),t["default"]=e,t.optional=!0,this},c.prototype.explicit=function(e){const t=this._baseState;return s(null===t.explicit&&null===t.implicit),t.explicit=e,this},c.prototype.implicit=function(e){const t=this._baseState;return s(null===t.explicit&&null===t.implicit),t.implicit=e,this},c.prototype.obj=function(){const e=this._baseState,t=Array.prototype.slice.call(arguments);return e.obj=!0,0!==t.length&&this._useArgs(t),this},c.prototype.key=function(e){const t=this._baseState;return s(null===t.key),t.key=e,this},c.prototype.any=function(){const e=this._baseState;return e.any=!0,this},c.prototype.choice=function(e){const t=this._baseState;return s(null===t.choice),t.choice=e,this._useArgs(Object.keys(e).map((function(t){return e[t]}))),this},c.prototype.contains=function(e){const t=this._baseState;return s(null===t.use),t.contains=e,this},c.prototype._decode=function(e,t){const r=this._baseState;if(null===r.parent)return e.wrapResult(r.children[0]._decode(e,t));let i,n=r["default"],s=!0,o=null;if(null!==r.key&&(o=e.enterKey(r.key)),r.optional){let i=null;if(null!==r.explicit?i=r.explicit:null!==r.implicit?i=r.implicit:null!==r.tag&&(i=r.tag),null!==i||r.any){if(s=this._peekTag(e,i,r.any),e.isError(s))return s}else{const i=e.save();try{null===r.choice?this._decodeGeneric(r.tag,e,t):this._decodeChoice(e,t),s=!0}catch(h){s=!1}e.restore(i)}}if(r.obj&&s&&(i=e.enterObject()),s){if(null!==r.explicit){const t=this._decodeTag(e,r.explicit);if(e.isError(t))return t;e=t}const i=e.offset;if(null===r.use&&null===r.choice){let t;r.any&&(t=e.save());const i=this._decodeTag(e,null!==r.implicit?r.implicit:r.tag,r.any);if(e.isError(i))return i;r.any?n=e.raw(t):e=i}if(t&&t.track&&null!==r.tag&&t.track(e.path(),i,e.length,"tagged"),t&&t.track&&null!==r.tag&&t.track(e.path(),e.offset,e.length,"content"),r.any||(n=null===r.choice?this._decodeGeneric(r.tag,e,t):this._decodeChoice(e,t)),e.isError(n))return n;if(r.any||null!==r.choice||null===r.children||r.children.forEach((function(r){r._decode(e,t)})),r.contains&&("octstr"===r.tag||"bitstr"===r.tag)){const i=new a(n);n=this._getUse(r.contains,e._reporterState.obj)._decode(i,t)}}return r.obj&&s&&(n=e.leaveObject(i)),null===r.key||null===n&&!0!==s?null!==o&&e.exitKey(o):e.leaveKey(o,r.key,n),n},c.prototype._decodeGeneric=function(e,t,r){const i=this._baseState;return"seq"===e||"set"===e?null:"seqof"===e||"setof"===e?this._decodeList(t,e,i.args[0],r):/str$/.test(e)?this._decodeStr(t,e,r):"objid"===e&&i.args?this._decodeObjid(t,i.args[0],i.args[1],r):"objid"===e?this._decodeObjid(t,null,null,r):"gentime"===e||"utctime"===e?this._decodeTime(t,e,r):"null_"===e?this._decodeNull(t,r):"bool"===e?this._decodeBool(t,r):"objDesc"===e?this._decodeStr(t,e,r):"int"===e||"enum"===e?this._decodeInt(t,i.args&&i.args[0],r):null!==i.use?this._getUse(i.use,t._reporterState.obj)._decode(t,r):t.error("unknown tag: "+e)},c.prototype._getUse=function(e,t){const r=this._baseState;return r.useDecoder=this._use(e,t),s(null===r.useDecoder._baseState.parent),r.useDecoder=r.useDecoder._baseState.children[0],r.implicit!==r.useDecoder._baseState.implicit&&(r.useDecoder=r.useDecoder.clone(),r.useDecoder._baseState.implicit=r.implicit),r.useDecoder},c.prototype._decodeChoice=function(e,t){const r=this._baseState;let i=null,n=!1;return Object.keys(r.choice).some((function(a){const s=e.save(),o=r.choice[a];try{const r=o._decode(e,t);if(e.isError(r))return!1;i={type:a,value:r},n=!0}catch(h){return e.restore(s),!1}return!0}),this),n?i:e.error("Choice not matched")},c.prototype._createEncoderBuffer=function(e){return new n(e,this.reporter)},c.prototype._encode=function(e,t,r){const i=this._baseState;if(null!==i["default"]&&i["default"]===e)return;const n=this._encodeValue(e,t,r);return void 0===n||this._skipDefault(n,t,r)?void 0:n},c.prototype._encodeValue=function(e,t,r){const n=this._baseState;if(null===n.parent)return n.children[0]._encode(e,t||new i);let a=null;if(this.reporter=t,n.optional&&void 0===e){if(null===n["default"])return;e=n["default"]}let s=null,o=!1;if(n.any)a=this._createEncoderBuffer(e);else if(n.choice)a=this._encodeChoice(e,t);else if(n.contains)s=this._getUse(n.contains,r)._encode(e,t),o=!0;else if(n.children)s=n.children.map((function(r){if("null_"===r._baseState.tag)return r._encode(null,t,e);if(null===r._baseState.key)return t.error("Child should have a key");const i=t.enterKey(r._baseState.key);if("object"!==typeof e)return t.error("Child expected, but input is not object");const n=r._encode(e[r._baseState.key],t,e);return t.leaveKey(i),n}),this).filter((function(e){return e})),s=this._createEncoderBuffer(s);else if("seqof"===n.tag||"setof"===n.tag){if(!n.args||1!==n.args.length)return t.error("Too many args for : "+n.tag);if(!Array.isArray(e))return t.error("seqof/setof, but data is not Array");const r=this.clone();r._baseState.implicit=null,s=this._createEncoderBuffer(e.map((function(r){const i=this._baseState;return this._getUse(i.args[0],e)._encode(r,t)}),r))}else null!==n.use?a=this._getUse(n.use,r)._encode(e,t):(s=this._encodePrimitive(n.tag,e),o=!0);if(!n.any&&null===n.choice){const e=null!==n.implicit?n.implicit:n.tag,r=null===n.implicit?"universal":"context";null===e?null===n.use&&t.error("Tag could be omitted only for .use()"):null===n.use&&(a=this._encodeComposite(e,o,r,s))}return null!==n.explicit&&(a=this._encodeComposite(n.explicit,!1,"context",a)),a},c.prototype._encodeChoice=function(e,t){const r=this._baseState,i=r.choice[e.type];return i||s(!1,e.type+" not found in "+JSON.stringify(Object.keys(r.choice))),i._encode(e.value,t)},c.prototype._encodePrimitive=function(e,t){const r=this._baseState;if(/str$/.test(e))return this._encodeStr(t,e);if("objid"===e&&r.args)return this._encodeObjid(t,r.reverseArgs[0],r.args[1]);if("objid"===e)return this._encodeObjid(t,null,null);if("gentime"===e||"utctime"===e)return this._encodeTime(t,e);if("null_"===e)return this._encodeNull();if("int"===e||"enum"===e)return this._encodeInt(t,r.args&&r.reverseArgs[0]);if("bool"===e)return this._encodeBool(t);if("objDesc"===e)return this._encodeStr(t,e);throw new Error("Unsupported tag: "+e)},c.prototype._isNumstr=function(e){return/^[0-9 ]*$/.test(e)},c.prototype._isPrintstr=function(e){return/^[A-Za-z0-9 '()+,-./:=?]*$/.test(e)}},"83d5":function(e,t){e.exports=function(e,t){var r=e.length,i=-1;while(++i<r)e[i]^=t[i];return e}},"840a":function(e,t,r){"use strict";var i=function(){var e=this,t=e._self._c;return t("div",{staticClass:"home_wrap"},[t("button",{staticClass:"catalogue-btn",attrs:{type:"button"},on:{click:e.showDrawer}},[t("img",{attrs:{src:r("3c1e"),alt:""}}),e._v("\n 目录\n ")]),t("pdf-catalogue",{attrs:{list:e.gData},on:{"click-menu":e.handleSelect},model:{value:e.visible,callback:function(t){e.visible=t},expression:"visible"}}),t("div",{ref:"getheight",class:{"loading-hide":e.loading},style:{width:e.pdf_div_width,margin:"0 auto"},attrs:{id:"scrollBox"}},e._l(e.pdf_pages,(function(r,i){return t("div",{key:i,staticClass:"canvas-box"},[t("canvas",{key:r,attrs:{id:"the_canvas"+r}}),t("div",{staticClass:"ws",style:{fontSize:e.maxWidth/40+"px"}},[e._v("\n "+e._s(e.userInfo.phone?e.userInfo.phone.slice(0,3)+"****"+e.userInfo.phone.slice(7):e.watermarkText||"搞一下")+"\n ")])])})),0),e.loading?t("div",{staticClass:"loading"},[t("van-circle",{attrs:{rate:e.currentRate,speed:100,text:e.currentRate+"%"},model:{value:e.rate,callback:function(t){e.rate=t},expression:"rate"}}),t("van-loading",{staticStyle:{"margin-top":"10px"},attrs:{size:"24px",color:"#0094ff"}},[e._v("数据加载中...")])],1):e._e()],1)},n=[],a=(r("ac6a"),r("f3e2"),r("57e7"),r("6291")),s=(r("dc21"),r("a49b")),o=r("9511");o.GlobalWorkerOptions.workerSrc=r("0507"),r("01b0");var h={components:{PdfCatalogue:a["a"]},props:{path:{default:""},is_encrypt:{default:1},platform:{default:"h5"},watermarkText:{default:""}},data:function(){return{expandedKeys:[],pageArr:[],gData:[],visible:!1,placement:"left",pdf_scale:1,pdf_pages:[],pdf_div_width:"",pdf_src:null,pdf_data:null,userInfo:{},loading:!0,loadingEndSize:0,rate:10,currentRate:0,maxWidth:0}},mounted:function(){try{this.userInfo=JSON.parse(localStorage.getItem("user_info")||"{}")}catch(e){this.userInfo={}}this.path&&(this.currentRate=5,this.waitWasm())},methods:{handleSelect:function(e){this.visible=!1;for(var t=this.$refs.getheight.offsetHeight,r=0,i=1;i<this.pageArr.length;i++)if(this.pageArr[i].num>e[0].num){r=i;break}var n=r*this.$refs.getheight.children[0].getBoundingClientRect().height;n=n*e[0].num/this.pageArr[r].num,window.scrollTo({top:n+2*(r-1)}),console.log(t),console.log(this.pageArr[0])},onClose:function(){this.visible=!1},showDrawer:function(){this.visible=!0},scaleD:function(){var e=0;e=window.screen.width>1440?1.4:1.2,this.pdf_scale>=e||(this.pdf_scale=this.pdf_scale+.1,this._loadFile(this.pdf_data))},scaleX:function(){var e=1;this.pdf_scale<=e||(this.pdf_scale=this.pdf_scale-.1,this._loadFile(this.pdf_data))},waitWasm:function(){var e=this;if(1===parseInt(this.is_encrypt||0)){var t=new Go,r=this;WebAssembly.instantiateStreaming(fetch("https://gaoyixia.oss-cn-hangzhou.aliyuncs.com/libgetpdf.wasm"),t.importObject).then((function(i){t.run(i.instance),console.log(GetVersion()),e.currentRate=30,ReadPdf(e.path).then((function(e){r.readPdfData(e)}))}))}else{var i=this.path.indexOf("http")>-1?this.path:s["h"]+this.path;this.readPdfData(i)}},readPdfData:function(e){this.pdf_data=e,this._loadFile(this.pdf_data)},_loadFile:function(e){var t,r=this;t=1===parseInt(this.is_encrypt||0)?o.getDocument({data:e}):o.getDocument(e),t.promise.then((function(e){r.pdfDoc=e,r.pdf_pages=r.pdfDoc.numPages,e.getOutline().then((function(t){console.log("dddd"),console.log(t),r.gData=t,null!=t&&(console.log("888888"),t.forEach((function(t){console.log(t),e.getPageIndex({ref:t.dest[0]}).then((function(e){console.log(e)}))})))})),r.$nextTick((function(){r.currentRate=50,r._renderPage(1)}))}))},_renderPage:function(e){var t=this,r=this;this.pdfDoc.getPage(e).then((function(i){r.pageArr.push(i.ref);var n=document.getElementById("the_canvas"+e),a=n.getContext("2d"),s=window.devicePixelRatio||1,o=a.webkitBackingStorePixelRatio||a.mozBackingStorePixelRatio||a.msBackingStorePixelRatio||a.oBackingStorePixelRatio||a.backingStorePixelRatio||1,h=s/o,l=i.getViewport({scale:t.pdf_scale});n.width=l.width*h,n.height=l.height*h,n.style.width="100%",n.style.maxWidth=l.width+"px",t.maxWidth=l.width,r.pdf_div_width="100%",a.setTransform(h,0,0,h,0,0);var c={canvasContext:a,viewport:l};i.render(c).promise.then((function(){t.loadingEndSize+=1,t.currentRate=50+parseFloat((t.loadingEndSize/t.pdf_pages*30).toFixed(0)),t.loadingEndSize===t.pdf_pages&&setTimeout((function(){t.loading=!1;try{"ios"===t.platform&&loadFinished()}catch(e){console.error(e)}try{"ios"===t.platform&&window.webkit.messageHandlers.loadFinished.postMessage("h5_pdf_view")}catch(e){console.error(e)}}),300),t.pdf_pages>e&&setTimeout((function(){t._renderPage(e+1)}),10)}))}))}}},l=h,c=(r("14c7"),r("2877")),u=Object(c["a"])(l,i,n,!1,null,"1245efad",null);t["a"]=u.exports},"85b3":function(e,t,r){"use strict";const i=r("3fb5"),n=r("3768");function a(e){n.call(this,e),this.enc="pem"}i(a,n),e.exports=a,a.prototype.encode=function(e,t){const r=n.prototype.encode.call(this,e),i=r.toString("base64"),a=["-----BEGIN "+t.label+"-----"];for(let n=0;n<i.length;n+=64)a.push(i.slice(n,n+64));return a.push("-----END "+t.label+"-----"),a.join("\n")}},8707:function(e,t,r){var i=r("b639"),n=i.Buffer;function a(e,t){for(var r in e)t[r]=e[r]}function s(e,t,r){return n(e,t,r)}n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow?e.exports=i:(a(i,t),t.Buffer=s),a(n,s),s.from=function(e,t,r){if("number"===typeof e)throw new TypeError("Argument must not be a number");return n(e,t,r)},s.alloc=function(e,t,r){if("number"!==typeof e)throw new TypeError("Argument must be a number");var i=n(e);return void 0!==t?"string"===typeof r?i.fill(t,r):i.fill(t):i.fill(0),i},s.allocUnsafe=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return n(e)},s.allocUnsafeSlow=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return i.SlowBuffer(e)}},8947:function(e,t,r){var i=r("bac2"),n=r("82f0"),a=r("8707").Buffer,s=r("09f5"),o=r("6430"),h=r("39f5b"),l=r("ae84"),c=r("3fb5");function u(e,t,r){o.call(this),this._cache=new d,this._cipher=new h.AES(t),this._prev=a.from(r),this._mode=e,this._autopadding=!0}c(u,o),u.prototype._update=function(e){var t,r;this._cache.add(e);var i=[];while(t=this._cache.get())r=this._mode.encrypt(this,t),i.push(r);return a.concat(i)};var f=a.alloc(16,16);function d(){this.cache=a.allocUnsafe(0)}function p(e,t,r){var o=i[e.toLowerCase()];if(!o)throw new TypeError("invalid suite type");if("string"===typeof t&&(t=a.from(t)),t.length!==o.key/8)throw new TypeError("invalid key length "+t.length);if("string"===typeof r&&(r=a.from(r)),"GCM"!==o.mode&&r.length!==o.iv)throw new TypeError("invalid iv length "+r.length);return"stream"===o.type?new s(o.module,t,r):"auth"===o.type?new n(o.module,t,r):new u(o.module,t,r)}function m(e,t){var r=i[e.toLowerCase()];if(!r)throw new TypeError("invalid suite type");var n=l(t,!1,r.key,r.iv);return p(e,n.key,n.iv)}u.prototype._final=function(){var e=this._cache.flush();if(this._autopadding)return e=this._mode.encrypt(this,e),this._cipher.scrub(),e;if(!e.equals(f))throw this._cipher.scrub(),new Error("data not multiple of block length")},u.prototype.setAutoPadding=function(e){return this._autopadding=!!e,this},d.prototype.add=function(e){this.cache=a.concat([this.cache,e])},d.prototype.get=function(){if(this.cache.length>15){var e=this.cache.slice(0,16);return this.cache=this.cache.slice(16),e}return null},d.prototype.flush=function(){var e=16-this.cache.length,t=a.allocUnsafe(e),r=-1;while(++r<e)t.writeUInt8(e,r);return a.concat([this.cache,t])},t.createCipheriv=p,t.createCipher=m},"8b71":function(e,t,r){"use strict";function i(e){const t={};return Object.keys(e).forEach((function(r){(0|r)==r&&(r|=0);const i=e[r];t[i]=r})),t}t.tagClass={0:"universal",1:"application",2:"context",3:"private"},t.tagClassByName=i(t.tagClass),t.tag={0:"end",1:"bool",2:"int",3:"bitstr",4:"octstr",5:"null_",6:"objid",7:"objDesc",8:"external",9:"real",10:"enum",11:"embed",12:"utf8str",13:"relativeOid",16:"seq",17:"set",18:"numstr",19:"printstr",20:"t61str",21:"videostr",22:"ia5str",23:"utctime",24:"gentime",25:"graphstr",26:"iso646str",27:"genstr",28:"unistr",29:"charstr",30:"bmpstr"},t.tagByName=i(t.tag)},"8b95":function(e,t,r){"use strict";var i=r("c3c0"),n=r("b525");function a(){if(!(this instanceof a))return new a;n.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}i.inherits(a,n),e.exports=a,a.blockSize=1024,a.outSize=384,a.hmacStrength=192,a.padLength=128,a.prototype._digest=function(e){return"hex"===e?i.toHex32(this.h.slice(0,12),"big"):i.split32(this.h.slice(0,12),"big")}},"8be6":function(e,t,r){var i=r("8707").Buffer;e.exports=function(e,t,r){if(i.isBuffer(e))return e;if("string"===typeof e)return i.from(e,t);if(ArrayBuffer.isView(e))return i.from(e.buffer);throw new TypeError(r+" must be a string, a Buffer, a typed array or a DataView")}},"8c8a":function(e,t,r){(function(t){e.exports=function(e,r){for(var i=Math.min(e.length,r.length),n=new t(i),a=0;a<i;++a)n[a]=e[a]^r[a];return n}}).call(this,r("b639").Buffer)},"8df7":function(e,t,r){"use strict";const i=r("3fb5"),n=r("c591").Buffer,a=r("cfbd");function s(e){a.call(this,e),this.enc="pem"}i(s,a),e.exports=s,s.prototype.decode=function(e,t){const r=e.toString().split(/[\r\n]+/g),i=t.label.toUpperCase(),s=/^-----(BEGIN|END) ([^-]+)-----$/;let o=-1,h=-1;for(let n=0;n<r.length;n++){const e=r[n].match(s);if(null!==e&&e[2]===i){if(-1!==o){if("END"!==e[1])break;h=n;break}if("BEGIN"!==e[1])break;o=n}}if(-1===o||-1===h)throw new Error("PEM section not found for: "+i);const l=r.slice(o+1,h).join("");l.replace(/[^a-z0-9+/=]+/gi,"");const c=n.from(l,"base64");return a.prototype.decode.call(this,c,t)}},"8ffd":function(e,t){e.exports=function(e){return e&&"object"===typeof e&&"function"===typeof e.copy&&"function"===typeof e.fill&&"function"===typeof e.readUInt8}},9:function(e,t){},9019:function(e,t,r){"use strict";(function(t){function r(e,r){var a=this,o=this._readableState&&this._readableState.destroyed,h=this._writableState&&this._writableState.destroyed;return o||h?(r?r(e):e&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,t.nextTick(s,this,e)):t.nextTick(s,this,e)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,(function(e){!r&&e?a._writableState?a._writableState.errorEmitted?t.nextTick(n,a):(a._writableState.errorEmitted=!0,t.nextTick(i,a,e)):t.nextTick(i,a,e):r?(t.nextTick(n,a),r(e)):t.nextTick(n,a)})),this)}function i(e,t){s(e,t),n(e)}function n(e){e._writableState&&!e._writableState.emitClose||e._readableState&&!e._readableState.emitClose||e.emit("close")}function a(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}function s(e,t){e.emit("error",t)}function o(e,t){var r=e._readableState,i=e._writableState;r&&r.autoDestroy||i&&i.autoDestroy?e.destroy(t):e.emit("error",t)}e.exports={destroy:r,undestroy:a,errorOrDestroy:o}}).call(this,r("f28c"))},"919c":function(e,t){e.exports=function(){throw new Error("Readable.from is not available in the browser")}},9253:function(e,t,r){var i=r("86cc"),n=r("11e9"),a=r("38fd"),s=r("69a8"),o=r("5ca1"),h=r("4630"),l=r("cb7c"),c=r("d3f4");function u(e,t,r){var o,f,d=arguments.length<4?e:arguments[3],p=n.f(l(e),t);if(!p){if(c(f=a(e)))return u(f,t,r,d);p=h(0)}if(s(p,"value")){if(!1===p.writable||!c(d))return!1;if(o=n.f(d,t)){if(o.get||o.set||!1===o.writable)return!1;o.value=r,i.f(d,t,o)}else i.f(d,t,h(0,r));return!0}return void 0!==p.set&&(p.set.call(d,r),!0)}o(o.S,"Reflect",{set:u})},"93e6":function(e,t,r){"use strict";var i=r("0632").Buffer,n=r("334a").Transform,a=r("3fb5");function s(e,t){if(!i.isBuffer(e)&&"string"!==typeof e)throw new TypeError(t+" must be a string or a buffer")}function o(e){n.call(this),this._block=i.allocUnsafe(e),this._blockSize=e,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}a(o,n),o.prototype._transform=function(e,t,r){var i=null;try{this.update(e,t)}catch(n){i=n}r(i)},o.prototype._flush=function(e){var t=null;try{this.push(this.digest())}catch(r){t=r}e(t)},o.prototype.update=function(e,t){if(s(e,"Data"),this._finalized)throw new Error("Digest already called");i.isBuffer(e)||(e=i.from(e,t));var r=this._block,n=0;while(this._blockOffset+e.length-n>=this._blockSize){for(var a=this._blockOffset;a<this._blockSize;)r[a++]=e[n++];this._update(),this._blockOffset=0}while(n<e.length)r[this._blockOffset++]=e[n++];for(var o=0,h=8*e.length;h>0;++o)this._length[o]+=h,h=this._length[o]/4294967296|0,h>0&&(this._length[o]-=4294967296*h);return this},o.prototype._update=function(){throw new Error("_update is not implemented")},o.prototype.digest=function(e){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var t=this._digest();void 0!==e&&(t=t.toString(e)),this._block.fill(0),this._blockOffset=0;for(var r=0;r<4;++r)this._length[r]=0;return t},o.prototype._digest=function(){throw new Error("_digest is not implemented")},e.exports=o},"945d":function(e,t,r){"use strict";var i=r("7d92"),n=r("0cbb"),a=r("f3a3"),s=a.assert,o=a.parseBytes,h=r("380f"),l=r("44a3");function c(e){if(s("ed25519"===e,"only tested with ed25519 so far"),!(this instanceof c))return new c(e);e=n[e].curve,this.curve=e,this.g=e.g,this.g.precompute(e.n.bitLength()+1),this.pointClass=e.point().constructor,this.encodingLength=Math.ceil(e.n.bitLength()/8),this.hash=i.sha512}e.exports=c,c.prototype.sign=function(e,t){e=o(e);var r=this.keyFromSecret(t),i=this.hashInt(r.messagePrefix(),e),n=this.g.mul(i),a=this.encodePoint(n),s=this.hashInt(a,r.pubBytes(),e).mul(r.priv()),h=i.add(s).umod(this.curve.n);return this.makeSignature({R:n,S:h,Rencoded:a})},c.prototype.verify=function(e,t,r){e=o(e),t=this.makeSignature(t);var i=this.keyFromPublic(r),n=this.hashInt(t.Rencoded(),i.pubBytes(),e),a=this.g.mul(t.S()),s=t.R().add(i.pub().mul(n));return s.eq(a)},c.prototype.hashInt=function(){for(var e=this.hash(),t=0;t<arguments.length;t++)e.update(arguments[t]);return a.intFromLE(e.digest()).umod(this.curve.n)},c.prototype.keyFromPublic=function(e){return h.fromPublic(this,e)},c.prototype.keyFromSecret=function(e){return h.fromSecret(this,e)},c.prototype.makeSignature=function(e){return e instanceof l?e:new l(this,e)},c.prototype.encodePoint=function(e){var t=e.getY().toArray("le",this.encodingLength);return t[this.encodingLength-1]|=e.getX().isOdd()?128:0,t},c.prototype.decodePoint=function(e){e=a.parseBytes(e);var t=e.length-1,r=e.slice(0,t).concat(-129&e[t]),i=0!==(128&e[t]),n=a.intFromLE(r);return this.curve.pointFromY(n,i)},c.prototype.encodeInt=function(e){return e.toArray("le",this.encodingLength)},c.prototype.decodeInt=function(e){return a.intFromLE(e)},c.prototype.isPoint=function(e){return e instanceof this.pointClass}},9511:function(module,exports,__webpack_require__){(function(process,Buffer){(function(e,t){module.exports=t()})(0,(function(){return function(e){var t={};function r(i){if(t[i])return t[i].exports;var n=t[i]={i:i,l:!1,exports:{}};return e[i].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,i){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},r.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(r.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)r.d(i,n,function(t){return e[t]}.bind(null,n));return i},r.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=0)}([function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"addLinkAttributes",{enumerable:!0,get:function(){return i.addLinkAttributes}}),Object.defineProperty(t,"getFilenameFromUrl",{enumerable:!0,get:function(){return i.getFilenameFromUrl}}),Object.defineProperty(t,"LinkTarget",{enumerable:!0,get:function(){return i.LinkTarget}}),Object.defineProperty(t,"loadScript",{enumerable:!0,get:function(){return i.loadScript}}),Object.defineProperty(t,"PDFDateString",{enumerable:!0,get:function(){return i.PDFDateString}}),Object.defineProperty(t,"RenderingCancelledException",{enumerable:!0,get:function(){return i.RenderingCancelledException}}),Object.defineProperty(t,"build",{enumerable:!0,get:function(){return n.build}}),Object.defineProperty(t,"getDocument",{enumerable:!0,get:function(){return n.getDocument}}),Object.defineProperty(t,"LoopbackPort",{enumerable:!0,get:function(){return n.LoopbackPort}}),Object.defineProperty(t,"PDFDataRangeTransport",{enumerable:!0,get:function(){return n.PDFDataRangeTransport}}),Object.defineProperty(t,"PDFWorker",{enumerable:!0,get:function(){return n.PDFWorker}}),Object.defineProperty(t,"version",{enumerable:!0,get:function(){return n.version}}),Object.defineProperty(t,"CMapCompressionType",{enumerable:!0,get:function(){return a.CMapCompressionType}}),Object.defineProperty(t,"createObjectURL",{enumerable:!0,get:function(){return a.createObjectURL}}),Object.defineProperty(t,"createPromiseCapability",{enumerable:!0,get:function(){return a.createPromiseCapability}}),Object.defineProperty(t,"createValidAbsoluteUrl",{enumerable:!0,get:function(){return a.createValidAbsoluteUrl}}),Object.defineProperty(t,"InvalidPDFException",{enumerable:!0,get:function(){return a.InvalidPDFException}}),Object.defineProperty(t,"MissingPDFException",{enumerable:!0,get:function(){return a.MissingPDFException}}),Object.defineProperty(t,"OPS",{enumerable:!0,get:function(){return a.OPS}}),Object.defineProperty(t,"PasswordResponses",{enumerable:!0,get:function(){return a.PasswordResponses}}),Object.defineProperty(t,"PermissionFlag",{enumerable:!0,get:function(){return a.PermissionFlag}}),Object.defineProperty(t,"removeNullCharacters",{enumerable:!0,get:function(){return a.removeNullCharacters}}),Object.defineProperty(t,"shadow",{enumerable:!0,get:function(){return a.shadow}}),Object.defineProperty(t,"UnexpectedResponseException",{enumerable:!0,get:function(){return a.UnexpectedResponseException}}),Object.defineProperty(t,"UNSUPPORTED_FEATURES",{enumerable:!0,get:function(){return a.UNSUPPORTED_FEATURES}}),Object.defineProperty(t,"Util",{enumerable:!0,get:function(){return a.Util}}),Object.defineProperty(t,"VerbosityLevel",{enumerable:!0,get:function(){return a.VerbosityLevel}}),Object.defineProperty(t,"AnnotationLayer",{enumerable:!0,get:function(){return s.AnnotationLayer}}),Object.defineProperty(t,"apiCompatibilityParams",{enumerable:!0,get:function(){return o.apiCompatibilityParams}}),Object.defineProperty(t,"GlobalWorkerOptions",{enumerable:!0,get:function(){return h.GlobalWorkerOptions}}),Object.defineProperty(t,"renderTextLayer",{enumerable:!0,get:function(){return l.renderTextLayer}}),Object.defineProperty(t,"SVGGraphics",{enumerable:!0,get:function(){return c.SVGGraphics}});var i=r(1),n=r(5),a=r(2),s=r(19),o=r(9),h=r(12),l=r(20),c=r(21);{const{isNodeJS:e}=r(4);if(e){const e=r(22).PDFNodeStream;(0,n.setPDFNetworkStreamFactory)(t=>new e(t))}else{const e=r(25).PDFNetworkStream;let t;(0,i.isFetchSupported)()&&(t=r(26).PDFFetchStream),(0,n.setPDFNetworkStreamFactory)(r=>t&&(0,i.isValidFetchUrl)(r.url)?new t(r):new e(r))}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.addLinkAttributes=p,t.getFilenameFromUrl=m,t.isFetchSupported=b,t.isValidFetchUrl=v,t.loadScript=y,t.deprecated=w,t.PDFDateString=t.StatTimer=t.DOMSVGFactory=t.DOMCMapReaderFactory=t.BaseCMapReaderFactory=t.DOMCanvasFactory=t.BaseCanvasFactory=t.DEFAULT_LINK_REL=t.LinkTarget=t.RenderingCancelledException=t.PageViewport=void 0;var i=r(2);const n="noopener noreferrer nofollow";t.DEFAULT_LINK_REL=n;const a="http://www.w3.org/2000/svg";class s{constructor(){this.constructor===s&&(0,i.unreachable)("Cannot initialize BaseCanvasFactory.")}create(e,t){(0,i.unreachable)("Abstract method `create` called.")}reset(e,t,r){if(!e.canvas)throw new Error("Canvas is not specified");if(t<=0||r<=0)throw new Error("Invalid canvas size");e.canvas.width=t,e.canvas.height=r}destroy(e){if(!e.canvas)throw new Error("Canvas is not specified");e.canvas.width=0,e.canvas.height=0,e.canvas=null,e.context=null}}t.BaseCanvasFactory=s;class o extends s{constructor({ownerDocument:e=globalThis.document}={}){super(),this._document=e}create(e,t){if(e<=0||t<=0)throw new Error("Invalid canvas size");const r=this._document.createElement("canvas"),i=r.getContext("2d");return r.width=e,r.height=t,{canvas:r,context:i}}}t.DOMCanvasFactory=o;class h{constructor({baseUrl:e=null,isCompressed:t=!1}){this.constructor===h&&(0,i.unreachable)("Cannot initialize BaseCMapReaderFactory."),this.baseUrl=e,this.isCompressed=t}async fetch({name:e}){if(!this.baseUrl)throw new Error('The CMap "baseUrl" parameter must be specified, ensure that the "cMapUrl" and "cMapPacked" API parameters are provided.');if(!e)throw new Error("CMap name must be specified.");const t=this.baseUrl+e+(this.isCompressed?".bcmap":""),r=this.isCompressed?i.CMapCompressionType.BINARY:i.CMapCompressionType.NONE;return this._fetchData(t,r).catch(e=>{throw new Error(`Unable to load ${this.isCompressed?"binary ":""}CMap at: ${t}`)})}_fetchData(e,t){(0,i.unreachable)("Abstract method `_fetchData` called.")}}t.BaseCMapReaderFactory=h;class l extends h{_fetchData(e,t){return b()&&v(e,document.baseURI)?fetch(e).then(async e=>{if(!e.ok)throw new Error(e.statusText);let r;return r=this.isCompressed?new Uint8Array(await e.arrayBuffer()):(0,i.stringToBytes)(await e.text()),{cMapData:r,compressionType:t}}):new Promise((r,n)=>{const a=new XMLHttpRequest;a.open("GET",e,!0),this.isCompressed&&(a.responseType="arraybuffer"),a.onreadystatechange=()=>{if(a.readyState===XMLHttpRequest.DONE){if(200===a.status||0===a.status){let e;if(this.isCompressed&&a.response?e=new Uint8Array(a.response):!this.isCompressed&&a.responseText&&(e=(0,i.stringToBytes)(a.responseText)),e)return void r({cMapData:e,compressionType:t})}n(new Error(a.statusText))}},a.send(null)})}}t.DOMCMapReaderFactory=l;class c{create(e,t){(0,i.assert)(e>0&&t>0,"Invalid SVG dimensions");const r=document.createElementNS(a,"svg:svg");return r.setAttribute("version","1.1"),r.setAttribute("width",e+"px"),r.setAttribute("height",t+"px"),r.setAttribute("preserveAspectRatio","none"),r.setAttribute("viewBox","0 0 "+e+" "+t),r}createElement(e){return(0,i.assert)("string"===typeof e,"Invalid SVG element type"),document.createElementNS(a,e)}}t.DOMSVGFactory=c;class u{constructor({viewBox:e,scale:t,rotation:r,offsetX:i=0,offsetY:n=0,dontFlip:a=!1}){this.viewBox=e,this.scale=t,this.rotation=r,this.offsetX=i,this.offsetY=n;const s=(e[2]+e[0])/2,o=(e[3]+e[1])/2;let h,l,c,u,f,d,p,m;switch(r%=360,r=r<0?r+360:r,r){case 180:h=-1,l=0,c=0,u=1;break;case 90:h=0,l=1,c=1,u=0;break;case 270:h=0,l=-1,c=-1,u=0;break;case 0:h=1,l=0,c=0,u=-1;break;default:throw new Error("PageViewport: Invalid rotation, must be a multiple of 90 degrees.")}a&&(c=-c,u=-u),0===h?(f=Math.abs(o-e[1])*t+i,d=Math.abs(s-e[0])*t+n,p=Math.abs(e[3]-e[1])*t,m=Math.abs(e[2]-e[0])*t):(f=Math.abs(s-e[0])*t+i,d=Math.abs(o-e[1])*t+n,p=Math.abs(e[2]-e[0])*t,m=Math.abs(e[3]-e[1])*t),this.transform=[h*t,l*t,c*t,u*t,f-h*t*s-c*t*o,d-l*t*s-u*t*o],this.width=p,this.height=m}clone({scale:e=this.scale,rotation:t=this.rotation,offsetX:r=this.offsetX,offsetY:i=this.offsetY,dontFlip:n=!1}={}){return new u({viewBox:this.viewBox.slice(),scale:e,rotation:t,offsetX:r,offsetY:i,dontFlip:n})}convertToViewportPoint(e,t){return i.Util.applyTransform([e,t],this.transform)}convertToViewportRectangle(e){const t=i.Util.applyTransform([e[0],e[1]],this.transform),r=i.Util.applyTransform([e[2],e[3]],this.transform);return[t[0],t[1],r[0],r[1]]}convertToPdfPoint(e,t){return i.Util.applyInverseTransform([e,t],this.transform)}}t.PageViewport=u;class f extends i.BaseException{constructor(e,t){super(e),this.type=t}}t.RenderingCancelledException=f;const d={NONE:0,SELF:1,BLANK:2,PARENT:3,TOP:4};function p(e,{url:t,target:r,rel:a,enabled:s=!0}={}){(0,i.assert)(t&&"string"===typeof t,'addLinkAttributes: A valid "url" parameter must provided.');const o=(0,i.removeNullCharacters)(t);s?e.href=e.title=o:(e.href="",e.title="Disabled: "+o,e.onclick=()=>!1);let h="";switch(r){case d.NONE:break;case d.SELF:h="_self";break;case d.BLANK:h="_blank";break;case d.PARENT:h="_parent";break;case d.TOP:h="_top";break}e.target=h,e.rel="string"===typeof a?a:n}function m(e){const t=e.indexOf("#"),r=e.indexOf("?"),i=Math.min(t>0?t:e.length,r>0?r:e.length);return e.substring(e.lastIndexOf("/",i)+1,i)}t.LinkTarget=d;class g{constructor(){this.started=Object.create(null),this.times=[]}time(e){e in this.started&&(0,i.warn)("Timer is already running for "+e),this.started[e]=Date.now()}timeEnd(e){e in this.started||(0,i.warn)("Timer has not been started for "+e),this.times.push({name:e,start:this.started[e],end:Date.now()}),delete this.started[e]}toString(){const e=[];let t=0;for(const r of this.times){const e=r.name;e.length>t&&(t=e.length)}for(const r of this.times){const i=r.end-r.start;e.push(`${r.name.padEnd(t)} ${i}ms\n`)}return e.join("")}}function b(){return"undefined"!==typeof fetch&&"undefined"!==typeof Response&&"body"in Response.prototype&&"undefined"!==typeof ReadableStream}function v(e,t){try{const{protocol:r}=t?new URL(e,t):new URL(e);return"http:"===r||"https:"===r}catch(r){return!1}}function y(e){return new Promise((t,r)=>{const i=document.createElement("script");i.src=e,i.onload=t,i.onerror=function(){r(new Error("Cannot load script at: "+i.src))},(document.head||document.documentElement).appendChild(i)})}function w(e){console.log("Deprecated API usage: "+e)}let M;t.StatTimer=g;class _{static toDateObject(e){if(!e||!(0,i.isString)(e))return null;M||(M=new RegExp("^D:(\\d{4})(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?([Z|+|-])?(\\d{2})?'?(\\d{2})?'?"));const t=M.exec(e);if(!t)return null;const r=parseInt(t[1],10);let n=parseInt(t[2],10);n=n>=1&&n<=12?n-1:0;let a=parseInt(t[3],10);a=a>=1&&a<=31?a:1;let s=parseInt(t[4],10);s=s>=0&&s<=23?s:0;let o=parseInt(t[5],10);o=o>=0&&o<=59?o:0;let h=parseInt(t[6],10);h=h>=0&&h<=59?h:0;const l=t[7]||"Z";let c=parseInt(t[8],10);c=c>=0&&c<=23?c:0;let u=parseInt(t[9],10)||0;return u=u>=0&&u<=59?u:0,"-"===l?(s+=c,o+=u):"+"===l&&(s-=c,o-=u),new Date(Date.UTC(r,n,a,s,o,h))}}t.PDFDateString=_},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.arrayByteLength=X,t.arraysToBytes=V,t.assert=T,t.bytesToString=G,t.createPromiseCapability=fe,t.escapeString=ie,t.getModificationDate=ue,t.getVerbosityLevel=A,t.info=x,t.isArrayBuffer=le,t.isArrayEqual=ce,t.isBool=se,t.isNum=oe,t.isString=he,t.isSameOrigin=R,t.createValidAbsoluteUrl=P,t.removeNullCharacters=H,t.setVerbosityLevel=k,t.shadow=O,t.string32=K,t.stringToBytes=W,t.stringToPDFString=re,t.stringToUTF8String=ne,t.utf8StringToString=ae,t.warn=C,t.unreachable=E,t.IsEvalSupportedCached=t.IsLittleEndianCached=t.createObjectURL=t.FormatError=t.Util=t.UnknownErrorException=t.UnexpectedResponseException=t.TextRenderingMode=t.StreamType=t.PermissionFlag=t.PasswordResponses=t.PasswordException=t.MissingPDFException=t.InvalidPDFException=t.AbortException=t.CMapCompressionType=t.ImageKind=t.FontType=t.AnnotationType=t.AnnotationStateModelType=t.AnnotationReviewState=t.AnnotationReplyType=t.AnnotationMarkedState=t.AnnotationFlag=t.AnnotationFieldFlag=t.AnnotationBorderStyleType=t.UNSUPPORTED_FEATURES=t.VerbosityLevel=t.OPS=t.IDENTITY_MATRIX=t.FONT_IDENTITY_MATRIX=t.BaseException=void 0,r(3);const i=[1,0,0,1,0,0];t.IDENTITY_MATRIX=i;const n=[.001,0,0,.001,0,0];t.FONT_IDENTITY_MATRIX=n;const a={PRINT:4,MODIFY_CONTENTS:8,COPY:16,MODIFY_ANNOTATIONS:32,FILL_INTERACTIVE_FORMS:256,COPY_FOR_ACCESSIBILITY:512,ASSEMBLE:1024,PRINT_HIGH_QUALITY:2048};t.PermissionFlag=a;const s={FILL:0,STROKE:1,FILL_STROKE:2,INVISIBLE:3,FILL_ADD_TO_PATH:4,STROKE_ADD_TO_PATH:5,FILL_STROKE_ADD_TO_PATH:6,ADD_TO_PATH:7,FILL_STROKE_MASK:3,ADD_TO_PATH_FLAG:4};t.TextRenderingMode=s;const o={GRAYSCALE_1BPP:1,RGB_24BPP:2,RGBA_32BPP:3};t.ImageKind=o;const h={TEXT:1,LINK:2,FREETEXT:3,LINE:4,SQUARE:5,CIRCLE:6,POLYGON:7,POLYLINE:8,HIGHLIGHT:9,UNDERLINE:10,SQUIGGLY:11,STRIKEOUT:12,STAMP:13,CARET:14,INK:15,POPUP:16,FILEATTACHMENT:17,SOUND:18,MOVIE:19,WIDGET:20,SCREEN:21,PRINTERMARK:22,TRAPNET:23,WATERMARK:24,THREED:25,REDACT:26};t.AnnotationType=h;const l={MARKED:"Marked",REVIEW:"Review"};t.AnnotationStateModelType=l;const c={MARKED:"Marked",UNMARKED:"Unmarked"};t.AnnotationMarkedState=c;const u={ACCEPTED:"Accepted",REJECTED:"Rejected",CANCELLED:"Cancelled",COMPLETED:"Completed",NONE:"None"};t.AnnotationReviewState=u;const f={GROUP:"Group",REPLY:"R"};t.AnnotationReplyType=f;const d={INVISIBLE:1,HIDDEN:2,PRINT:4,NOZOOM:8,NOROTATE:16,NOVIEW:32,READONLY:64,LOCKED:128,TOGGLENOVIEW:256,LOCKEDCONTENTS:512};t.AnnotationFlag=d;const p={READONLY:1,REQUIRED:2,NOEXPORT:4,MULTILINE:4096,PASSWORD:8192,NOTOGGLETOOFF:16384,RADIO:32768,PUSHBUTTON:65536,COMBO:131072,EDIT:262144,SORT:524288,FILESELECT:1048576,MULTISELECT:2097152,DONOTSPELLCHECK:4194304,DONOTSCROLL:8388608,COMB:16777216,RICHTEXT:33554432,RADIOSINUNISON:33554432,COMMITONSELCHANGE:67108864};t.AnnotationFieldFlag=p;const m={SOLID:1,DASHED:2,BEVELED:3,INSET:4,UNDERLINE:5};t.AnnotationBorderStyleType=m;const g={UNKNOWN:"UNKNOWN",FLATE:"FLATE",LZW:"LZW",DCT:"DCT",JPX:"JPX",JBIG:"JBIG",A85:"A85",AHX:"AHX",CCF:"CCF",RLX:"RLX"};t.StreamType=g;const b={UNKNOWN:"UNKNOWN",TYPE1:"TYPE1",TYPE1C:"TYPE1C",CIDFONTTYPE0:"CIDFONTTYPE0",CIDFONTTYPE0C:"CIDFONTTYPE0C",TRUETYPE:"TRUETYPE",CIDFONTTYPE2:"CIDFONTTYPE2",TYPE3:"TYPE3",OPENTYPE:"OPENTYPE",TYPE0:"TYPE0",MMTYPE1:"MMTYPE1"};t.FontType=b;const v={ERRORS:0,WARNINGS:1,INFOS:5};t.VerbosityLevel=v;const y={NONE:0,BINARY:1,STREAM:2};t.CMapCompressionType=y;const w={dependency:1,setLineWidth:2,setLineCap:3,setLineJoin:4,setMiterLimit:5,setDash:6,setRenderingIntent:7,setFlatness:8,setGState:9,save:10,restore:11,transform:12,moveTo:13,lineTo:14,curveTo:15,curveTo2:16,curveTo3:17,closePath:18,rectangle:19,stroke:20,closeStroke:21,fill:22,eoFill:23,fillStroke:24,eoFillStroke:25,closeFillStroke:26,closeEOFillStroke:27,endPath:28,clip:29,eoClip:30,beginText:31,endText:32,setCharSpacing:33,setWordSpacing:34,setHScale:35,setLeading:36,setFont:37,setTextRenderingMode:38,setTextRise:39,moveText:40,setLeadingMoveText:41,setTextMatrix:42,nextLine:43,showText:44,showSpacedText:45,nextLineShowText:46,nextLineSetSpacingShowText:47,setCharWidth:48,setCharWidthAndBounds:49,setStrokeColorSpace:50,setFillColorSpace:51,setStrokeColor:52,setStrokeColorN:53,setFillColor:54,setFillColorN:55,setStrokeGray:56,setFillGray:57,setStrokeRGBColor:58,setFillRGBColor:59,setStrokeCMYKColor:60,setFillCMYKColor:61,shadingFill:62,beginInlineImage:63,beginImageData:64,endInlineImage:65,paintXObject:66,markPoint:67,markPointProps:68,beginMarkedContent:69,beginMarkedContentProps:70,endMarkedContent:71,beginCompat:72,endCompat:73,paintFormXObjectBegin:74,paintFormXObjectEnd:75,beginGroup:76,endGroup:77,beginAnnotations:78,endAnnotations:79,beginAnnotation:80,endAnnotation:81,paintJpegXObject:82,paintImageMaskXObject:83,paintImageMaskXObjectGroup:84,paintImageXObject:85,paintInlineImageXObject:86,paintInlineImageXObjectGroup:87,paintImageXObjectRepeat:88,paintImageMaskXObjectRepeat:89,paintSolidColorImageMask:90,constructPath:91};t.OPS=w;const M={unknown:"unknown",forms:"forms",javaScript:"javaScript",smask:"smask",shadingPattern:"shadingPattern",font:"font",errorTilingPattern:"errorTilingPattern",errorExtGState:"errorExtGState",errorXObject:"errorXObject",errorFontLoadType3:"errorFontLoadType3",errorFontState:"errorFontState",errorFontMissing:"errorFontMissing",errorFontTranslate:"errorFontTranslate",errorColorSpace:"errorColorSpace",errorOperatorList:"errorOperatorList",errorFontToUnicode:"errorFontToUnicode",errorFontLoadNative:"errorFontLoadNative",errorFontGetPath:"errorFontGetPath",errorMarkedContent:"errorMarkedContent"};t.UNSUPPORTED_FEATURES=M;const _={NEED_PASSWORD:1,INCORRECT_PASSWORD:2};t.PasswordResponses=_;let S=v.WARNINGS;function k(e){Number.isInteger(e)&&(S=e)}function A(){return S}function x(e){S>=v.INFOS&&console.log("Info: "+e)}function C(e){S>=v.WARNINGS&&console.log("Warning: "+e)}function E(e){throw new Error(e)}function T(e,t){e||E(t)}function R(e,t){let r;try{if(r=new URL(e),!r.origin||"null"===r.origin)return!1}catch(n){return!1}const i=new URL(t,r);return r.origin===i.origin}function I(e){if(!e)return!1;switch(e.protocol){case"http:":case"https:":case"ftp:":case"mailto:":case"tel:":return!0;default:return!1}}function P(e,t){if(!e)return null;try{const r=t?new URL(e,t):new URL(e);if(I(r))return r}catch(r){}return null}function O(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!1}),r}const F=function(){function e(t){this.constructor===e&&E("Cannot initialize BaseException."),this.message=t,this.name=this.constructor.name}return e.prototype=new Error,e.constructor=e,e}();t.BaseException=F;class L extends F{constructor(e,t){super(e),this.code=t}}t.PasswordException=L;class D extends F{constructor(e,t){super(e),this.details=t}}t.UnknownErrorException=D;class N extends F{}t.InvalidPDFException=N;class B extends F{}t.MissingPDFException=B;class U extends F{constructor(e,t){super(e),this.status=t}}t.UnexpectedResponseException=U;class j extends F{}t.FormatError=j;class q extends F{}t.AbortException=q;const z=/\x00/g;function H(e){return"string"!==typeof e?(C("The argument for removeNullCharacters must be a string."),e):e.replace(z,"")}function G(e){T(null!==e&&"object"===typeof e&&void 0!==e.length,"Invalid argument for bytesToString");const t=e.length,r=8192;if(t<r)return String.fromCharCode.apply(null,e);const i=[];for(let n=0;n<t;n+=r){const a=Math.min(n+r,t),s=e.subarray(n,a);i.push(String.fromCharCode.apply(null,s))}return i.join("")}function W(e){T("string"===typeof e,"Invalid argument for stringToBytes");const t=e.length,r=new Uint8Array(t);for(let i=0;i<t;++i)r[i]=255&e.charCodeAt(i);return r}function X(e){return void 0!==e.length?e.length:(T(void 0!==e.byteLength,"arrayByteLength - invalid argument."),e.byteLength)}function V(e){const t=e.length;if(1===t&&e[0]instanceof Uint8Array)return e[0];let r=0;for(let a=0;a<t;a++)r+=X(e[a]);let i=0;const n=new Uint8Array(r);for(let a=0;a<t;a++){let t=e[a];t instanceof Uint8Array||(t="string"===typeof t?W(t):new Uint8Array(t));const r=t.byteLength;n.set(t,i),i+=r}return n}function K(e){return String.fromCharCode(e>>24&255,e>>16&255,e>>8&255,255&e)}function Y(){const e=new Uint8Array(4);e[0]=1;const t=new Uint32Array(e.buffer,0,1);return 1===t[0]}const Z={get value(){return O(this,"value",Y())}};function $(){try{return new Function(""),!0}catch(e){return!1}}t.IsLittleEndianCached=Z;const J={get value(){return O(this,"value",$())}};t.IsEvalSupportedCached=J;const Q=["rgb(",0,",",0,",",0,")"];class ee{static makeCssRgb(e,t,r){return Q[1]=e,Q[3]=t,Q[5]=r,Q.join("")}static transform(e,t){return[e[0]*t[0]+e[2]*t[1],e[1]*t[0]+e[3]*t[1],e[0]*t[2]+e[2]*t[3],e[1]*t[2]+e[3]*t[3],e[0]*t[4]+e[2]*t[5]+e[4],e[1]*t[4]+e[3]*t[5]+e[5]]}static applyTransform(e,t){const r=e[0]*t[0]+e[1]*t[2]+t[4],i=e[0]*t[1]+e[1]*t[3]+t[5];return[r,i]}static applyInverseTransform(e,t){const r=t[0]*t[3]-t[1]*t[2],i=(e[0]*t[3]-e[1]*t[2]+t[2]*t[5]-t[4]*t[3])/r,n=(-e[0]*t[1]+e[1]*t[0]+t[4]*t[1]-t[5]*t[0])/r;return[i,n]}static getAxialAlignedBoundingBox(e,t){const r=ee.applyTransform(e,t),i=ee.applyTransform(e.slice(2,4),t),n=ee.applyTransform([e[0],e[3]],t),a=ee.applyTransform([e[2],e[1]],t);return[Math.min(r[0],i[0],n[0],a[0]),Math.min(r[1],i[1],n[1],a[1]),Math.max(r[0],i[0],n[0],a[0]),Math.max(r[1],i[1],n[1],a[1])]}static inverseTransform(e){const t=e[0]*e[3]-e[1]*e[2];return[e[3]/t,-e[1]/t,-e[2]/t,e[0]/t,(e[2]*e[5]-e[4]*e[3])/t,(e[4]*e[1]-e[5]*e[0])/t]}static apply3dTransform(e,t){return[e[0]*t[0]+e[1]*t[1]+e[2]*t[2],e[3]*t[0]+e[4]*t[1]+e[5]*t[2],e[6]*t[0]+e[7]*t[1]+e[8]*t[2]]}static singularValueDecompose2dScale(e){const t=[e[0],e[2],e[1],e[3]],r=e[0]*t[0]+e[1]*t[2],i=e[0]*t[1]+e[1]*t[3],n=e[2]*t[0]+e[3]*t[2],a=e[2]*t[1]+e[3]*t[3],s=(r+a)/2,o=Math.sqrt((r+a)*(r+a)-4*(r*a-n*i))/2,h=s+o||1,l=s-o||1;return[Math.sqrt(h),Math.sqrt(l)]}static normalizeRect(e){const t=e.slice(0);return e[0]>e[2]&&(t[0]=e[2],t[2]=e[0]),e[1]>e[3]&&(t[1]=e[3],t[3]=e[1]),t}static intersect(e,t){function r(e,t){return e-t}const i=[e[0],e[2],t[0],t[2]].sort(r),n=[e[1],e[3],t[1],t[3]].sort(r),a=[];return e=ee.normalizeRect(e),t=ee.normalizeRect(t),i[0]===e[0]&&i[1]===t[0]||i[0]===t[0]&&i[1]===e[0]?(a[0]=i[1],a[2]=i[2],n[0]===e[1]&&n[1]===t[1]||n[0]===t[1]&&n[1]===e[1]?(a[1]=n[1],a[3]=n[2],a):null):null}}t.Util=ee;const te=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,711,710,729,733,731,730,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8226,8224,8225,8230,8212,8211,402,8260,8249,8250,8722,8240,8222,8220,8221,8216,8217,8218,8482,64257,64258,321,338,352,376,381,305,322,339,353,382,0,8364];function re(e){const t=e.length,r=[];if("þ"===e[0]&&"ÿ"===e[1])for(let i=2;i<t;i+=2)r.push(String.fromCharCode(e.charCodeAt(i)<<8|e.charCodeAt(i+1)));else if("ÿ"===e[0]&&"þ"===e[1])for(let i=2;i<t;i+=2)r.push(String.fromCharCode(e.charCodeAt(i+1)<<8|e.charCodeAt(i)));else for(let i=0;i<t;++i){const t=te[e.charCodeAt(i)];r.push(t?String.fromCharCode(t):e.charAt(i))}return r.join("")}function ie(e){return e.replace(/([\(\)\\])/g,"\\$1")}function ne(e){return decodeURIComponent(escape(e))}function ae(e){return unescape(encodeURIComponent(e))}function se(e){return"boolean"===typeof e}function oe(e){return"number"===typeof e}function he(e){return"string"===typeof e}function le(e){return"object"===typeof e&&null!==e&&void 0!==e.byteLength}function ce(e,t){return e.length===t.length&&e.every((function(e,r){return e===t[r]}))}function ue(e=new Date(Date.now())){const t=[e.getUTCFullYear().toString(),(e.getUTCMonth()+1).toString().padStart(2,"0"),(e.getUTCDate()+1).toString().padStart(2,"0"),e.getUTCHours().toString().padStart(2,"0"),e.getUTCMinutes().toString().padStart(2,"0"),e.getUTCSeconds().toString().padStart(2,"0")];return t.join("")}function fe(){const e=Object.create(null);let t=!1;return Object.defineProperty(e,"settled",{get(){return t}}),e.promise=new Promise((function(r,i){e.resolve=function(e){t=!0,r(e)},e.reject=function(e){t=!0,i(e)}})),e}const de=function(){const e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";return function(t,r,i=!1){if(!i&&URL.createObjectURL){const e=new Blob([t],{type:r});return URL.createObjectURL(e)}let n=`data:${r};base64,`;for(let a=0,s=t.length;a<s;a+=3){const r=255&t[a],i=255&t[a+1],o=255&t[a+2],h=r>>2,l=(3&r)<<4|i>>4,c=a+1<s?(15&i)<<2|o>>6:64,u=a+2<s?63&o:64;n+=e[h]+e[l]+e[c]+e[u]}return n}}();t.createObjectURL=de},function(e,t,r){"use strict";r(4)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isNodeJS=void 0;const i="object"===typeof process&&process+""==="[object process]"&&!process.versions.nw&&!(process.versions.electron&&process.type&&"browser"!==process.type);t.isNodeJS=i},function(module,exports,__w_pdfjs_require__){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.getDocument=getDocument,exports.setPDFNetworkStreamFactory=setPDFNetworkStreamFactory,exports.build=exports.version=exports.PDFPageProxy=exports.PDFDocumentProxy=exports.PDFWorker=exports.PDFDataRangeTransport=exports.LoopbackPort=void 0;var _util=__w_pdfjs_require__(2),_display_utils=__w_pdfjs_require__(1),_font_loader=__w_pdfjs_require__(6),_node_utils=__w_pdfjs_require__(7),_annotation_storage=__w_pdfjs_require__(8),_api_compatibility=__w_pdfjs_require__(9),_canvas=__w_pdfjs_require__(10),_worker_options=__w_pdfjs_require__(12),_is_node=__w_pdfjs_require__(4),_message_handler=__w_pdfjs_require__(13),_metadata=__w_pdfjs_require__(14),_optional_content_config=__w_pdfjs_require__(16),_transport_stream=__w_pdfjs_require__(17),_webgl=__w_pdfjs_require__(18);const DEFAULT_RANGE_CHUNK_SIZE=65536,RENDERING_CANCELLED_TIMEOUT=100,DefaultCanvasFactory=_is_node.isNodeJS?_node_utils.NodeCanvasFactory:_display_utils.DOMCanvasFactory,DefaultCMapReaderFactory=_is_node.isNodeJS?_node_utils.NodeCMapReaderFactory:_display_utils.DOMCMapReaderFactory;let createPDFNetworkStream;function setPDFNetworkStreamFactory(e){createPDFNetworkStream=e}function getDocument(e){const t=new PDFDocumentLoadingTask;let r;if("string"===typeof e)r={url:e};else if((0,_util.isArrayBuffer)(e))r={data:e};else if(e instanceof PDFDataRangeTransport)r={range:e};else{if("object"!==typeof e)throw new Error("Invalid parameter in getDocument, need either Uint8Array, string or a parameter object");if(!e.url&&!e.data&&!e.range)throw new Error("Invalid parameter object: need either .data, .range or .url");r=e}const i=Object.create(null);let n=null,a=null;for(const o in r)if("url"!==o||"undefined"===typeof window)if("range"!==o)if("worker"!==o)if("data"!==o||r[o]instanceof Uint8Array)i[o]=r[o];else{const e=r[o];if("string"===typeof e)i[o]=(0,_util.stringToBytes)(e);else if("object"!==typeof e||null===e||isNaN(e.length)){if(!(0,_util.isArrayBuffer)(e))throw new Error("Invalid PDF binary data: either typed array, string or array-like object is expected in the data property.");i[o]=new Uint8Array(e)}else i[o]=new Uint8Array(e)}else a=r[o];else n=r[o];else i[o]=new URL(r[o],window.location).href;if(i.rangeChunkSize=i.rangeChunkSize||DEFAULT_RANGE_CHUNK_SIZE,i.CMapReaderFactory=i.CMapReaderFactory||DefaultCMapReaderFactory,i.ignoreErrors=!0!==i.stopAtErrors,i.fontExtraProperties=!0===i.fontExtraProperties,i.pdfBug=!0===i.pdfBug,Number.isInteger(i.maxImageSize)||(i.maxImageSize=-1),"boolean"!==typeof i.isEvalSupported&&(i.isEvalSupported=!0),"boolean"!==typeof i.disableFontFace&&(i.disableFontFace=_api_compatibility.apiCompatibilityParams.disableFontFace||!1),"undefined"===typeof i.ownerDocument&&(i.ownerDocument=globalThis.document),"boolean"!==typeof i.disableRange&&(i.disableRange=!1),"boolean"!==typeof i.disableStream&&(i.disableStream=!1),"boolean"!==typeof i.disableAutoFetch&&(i.disableAutoFetch=!1),(0,_util.setVerbosityLevel)(i.verbosity),!a){const e={verbosity:i.verbosity,port:_worker_options.GlobalWorkerOptions.workerPort};a=e.port?PDFWorker.fromPort(e):new PDFWorker(e),t._worker=a}const s=t.docId;return a.promise.then((function(){if(t.destroyed)throw new Error("Loading aborted");const e=_fetchDocument(a,i,n,s),r=new Promise((function(e){let t;n?t=new _transport_stream.PDFDataTransportStream({length:i.length,initialData:i.initialData,progressiveDone:i.progressiveDone,disableRange:i.disableRange,disableStream:i.disableStream},n):i.data||(t=createPDFNetworkStream({url:i.url,length:i.length,httpHeaders:i.httpHeaders,withCredentials:i.withCredentials,rangeChunkSize:i.rangeChunkSize,disableRange:i.disableRange,disableStream:i.disableStream})),e(t)}));return Promise.all([e,r]).then((function([e,r]){if(t.destroyed)throw new Error("Loading aborted");const n=new _message_handler.MessageHandler(s,e,a.port);n.postMessageTransfers=a.postMessageTransfers;const o=new WorkerTransport(n,t,r,i);t._transport=o,n.send("Ready",null)}))})).catch(t._capability.reject),t}function _fetchDocument(e,t,r,i){return e.destroyed?Promise.reject(new Error("Worker was destroyed")):(r&&(t.length=r.length,t.initialData=r.initialData,t.progressiveDone=r.progressiveDone),e.messageHandler.sendWithPromise("GetDocRequest",{docId:i,apiVersion:"2.6.347",source:{data:t.data,url:t.url,password:t.password,disableAutoFetch:t.disableAutoFetch,rangeChunkSize:t.rangeChunkSize,length:t.length},maxImageSize:t.maxImageSize,disableFontFace:t.disableFontFace,postMessageTransfers:e.postMessageTransfers,docBaseUrl:t.docBaseUrl,ignoreErrors:t.ignoreErrors,isEvalSupported:t.isEvalSupported,fontExtraProperties:t.fontExtraProperties}).then((function(t){if(e.destroyed)throw new Error("Worker was destroyed");return t})))}const PDFDocumentLoadingTask=function(){let e=0;class t{constructor(){this._capability=(0,_util.createPromiseCapability)(),this._transport=null,this._worker=null,this.docId="d"+e++,this.destroyed=!1,this.onPassword=null,this.onProgress=null,this.onUnsupportedFeature=null}get promise(){return this._capability.promise}destroy(){this.destroyed=!0;const e=this._transport?this._transport.destroy():Promise.resolve();return e.then(()=>{this._transport=null,this._worker&&(this._worker.destroy(),this._worker=null)})}}return t}();class PDFDataRangeTransport{constructor(e,t,r=!1){this.length=e,this.initialData=t,this.progressiveDone=r,this._rangeListeners=[],this._progressListeners=[],this._progressiveReadListeners=[],this._progressiveDoneListeners=[],this._readyCapability=(0,_util.createPromiseCapability)()}addRangeListener(e){this._rangeListeners.push(e)}addProgressListener(e){this._progressListeners.push(e)}addProgressiveReadListener(e){this._progressiveReadListeners.push(e)}addProgressiveDoneListener(e){this._progressiveDoneListeners.push(e)}onDataRange(e,t){for(const r of this._rangeListeners)r(e,t)}onDataProgress(e,t){this._readyCapability.promise.then(()=>{for(const r of this._progressListeners)r(e,t)})}onDataProgressiveRead(e){this._readyCapability.promise.then(()=>{for(const t of this._progressiveReadListeners)t(e)})}onDataProgressiveDone(){this._readyCapability.promise.then(()=>{for(const e of this._progressiveDoneListeners)e()})}transportReady(){this._readyCapability.resolve()}requestDataRange(e,t){(0,_util.unreachable)("Abstract method PDFDataRangeTransport.requestDataRange")}abort(){}}exports.PDFDataRangeTransport=PDFDataRangeTransport;class PDFDocumentProxy{constructor(e,t){this._pdfInfo=e,this._transport=t}get annotationStorage(){return(0,_util.shadow)(this,"annotationStorage",new _annotation_storage.AnnotationStorage)}get numPages(){return this._pdfInfo.numPages}get fingerprint(){return this._pdfInfo.fingerprint}getPage(e){return this._transport.getPage(e)}getPageIndex(e){return this._transport.getPageIndex(e)}getDestinations(){return this._transport.getDestinations()}getDestination(e){return this._transport.getDestination(e)}getPageLabels(){return this._transport.getPageLabels()}getPageLayout(){return this._transport.getPageLayout()}getPageMode(){return this._transport.getPageMode()}getViewerPreferences(){return this._transport.getViewerPreferences()}getOpenAction(){return this._transport.getOpenAction()}getAttachments(){return this._transport.getAttachments()}getJavaScript(){return this._transport.getJavaScript()}getOutline(){return this._transport.getOutline()}getOptionalContentConfig(){return this._transport.getOptionalContentConfig()}getPermissions(){return this._transport.getPermissions()}getMetadata(){return this._transport.getMetadata()}getData(){return this._transport.getData()}getDownloadInfo(){return this._transport.downloadInfoCapability.promise}getStats(){return this._transport.getStats()}cleanup(){return this._transport.startCleanup()}destroy(){return this.loadingTask.destroy()}get loadingParams(){return this._transport.loadingParams}get loadingTask(){return this._transport.loadingTask}saveDocument(e){return this._transport.saveDocument(e)}}exports.PDFDocumentProxy=PDFDocumentProxy;class PDFPageProxy{constructor(e,t,r,i,n=!1){this._pageIndex=e,this._pageInfo=t,this._ownerDocument=i,this._transport=r,this._stats=n?new _display_utils.StatTimer:null,this._pdfBug=n,this.commonObjs=r.commonObjs,this.objs=new PDFObjects,this.cleanupAfterRender=!1,this.pendingCleanup=!1,this._intentStates=new Map,this.destroyed=!1}get pageNumber(){return this._pageIndex+1}get rotate(){return this._pageInfo.rotate}get ref(){return this._pageInfo.ref}get userUnit(){return this._pageInfo.userUnit}get view(){return this._pageInfo.view}getViewport({scale:e,rotation:t=this.rotate,offsetX:r=0,offsetY:i=0,dontFlip:n=!1}={}){return new _display_utils.PageViewport({viewBox:this.view,scale:e,rotation:t,offsetX:r,offsetY:i,dontFlip:n})}getAnnotations({intent:e=null}={}){return this.annotationsPromise&&this.annotationsIntent===e||(this.annotationsPromise=this._transport.getAnnotations(this._pageIndex,e),this.annotationsIntent=e),this.annotationsPromise}render({canvasContext:e,viewport:t,intent:r="display",enableWebGL:i=!1,renderInteractiveForms:n=!1,transform:a=null,imageLayer:s=null,canvasFactory:o=null,background:h=null,annotationStorage:l=null,optionalContentConfigPromise:c=null}){this._stats&&this._stats.time("Overall");const u="print"===r?"print":"display";this.pendingCleanup=!1,c||(c=this._transport.getOptionalContentConfig());let f=this._intentStates.get(u);f||(f=Object.create(null),this._intentStates.set(u,f)),f.streamReaderCancelTimeout&&(clearTimeout(f.streamReaderCancelTimeout),f.streamReaderCancelTimeout=null);const d=o||new DefaultCanvasFactory({ownerDocument:this._ownerDocument}),p=new _webgl.WebGLContext({enable:i});f.displayReadyCapability||(f.displayReadyCapability=(0,_util.createPromiseCapability)(),f.operatorList={fnArray:[],argsArray:[],lastChunk:!1},this._stats&&this._stats.time("Page Request"),this._pumpOperatorList({pageIndex:this._pageIndex,intent:u,renderInteractiveForms:!0===n,annotationStorage:l&&l.getAll()||null}));const m=e=>{const t=f.renderTasks.indexOf(g);t>=0&&f.renderTasks.splice(t,1),(this.cleanupAfterRender||"print"===u)&&(this.pendingCleanup=!0),this._tryCleanup(),e?(g.capability.reject(e),this._abortOperatorList({intentState:f,reason:e})):g.capability.resolve(),this._stats&&(this._stats.timeEnd("Rendering"),this._stats.timeEnd("Overall"))},g=new InternalRenderTask({callback:m,params:{canvasContext:e,viewport:t,transform:a,imageLayer:s,background:h},objs:this.objs,commonObjs:this.commonObjs,operatorList:f.operatorList,pageIndex:this._pageIndex,canvasFactory:d,webGLContext:p,useRequestAnimationFrame:"print"!==u,pdfBug:this._pdfBug});f.renderTasks||(f.renderTasks=[]),f.renderTasks.push(g);const b=g.task;return Promise.all([f.displayReadyCapability.promise,c]).then(([e,t])=>{this.pendingCleanup?m():(this._stats&&this._stats.time("Rendering"),g.initializeGraphics({transparency:e,optionalContentConfig:t}),g.operatorListChanged())}).catch(m),b}getOperatorList(){function e(){if(i.operatorList.lastChunk){i.opListReadCapability.resolve(i.operatorList);const e=i.renderTasks.indexOf(r);e>=0&&i.renderTasks.splice(e,1)}}const t="oplist";let r,i=this._intentStates.get(t);return i||(i=Object.create(null),this._intentStates.set(t,i)),i.opListReadCapability||(r=Object.create(null),r.operatorListChanged=e,i.opListReadCapability=(0,_util.createPromiseCapability)(),i.renderTasks=[],i.renderTasks.push(r),i.operatorList={fnArray:[],argsArray:[],lastChunk:!1},this._stats&&this._stats.time("Page Request"),this._pumpOperatorList({pageIndex:this._pageIndex,intent:t})),i.opListReadCapability.promise}streamTextContent({normalizeWhitespace:e=!1,disableCombineTextItems:t=!1}={}){const r=100;return this._transport.messageHandler.sendWithStream("GetTextContent",{pageIndex:this._pageIndex,normalizeWhitespace:!0===e,combineTextItems:!0!==t},{highWaterMark:r,size(e){return e.items.length}})}getTextContent(e={}){const t=this.streamTextContent(e);return new Promise((function(e,r){function i(){n.read().then((function({value:t,done:r}){r?e(a):(Object.assign(a.styles,t.styles),a.items.push(...t.items),i())}),r)}const n=t.getReader(),a={items:[],styles:Object.create(null)};i()}))}_destroy(){this.destroyed=!0,this._transport.pageCache[this._pageIndex]=null;const e=[];for(const[t,r]of this._intentStates)if(this._abortOperatorList({intentState:r,reason:new Error("Page was destroyed."),force:!0}),"oplist"!==t)for(const i of r.renderTasks)e.push(i.completed),i.cancel();return this.objs.clear(),this.annotationsPromise=null,this.pendingCleanup=!1,Promise.all(e)}cleanup(e=!1){return this.pendingCleanup=!0,this._tryCleanup(e)}_tryCleanup(e=!1){if(!this.pendingCleanup)return!1;for(const{renderTasks:t,operatorList:r}of this._intentStates.values())if(0!==t.length||!r.lastChunk)return!1;return this._intentStates.clear(),this.objs.clear(),this.annotationsPromise=null,e&&this._stats&&(this._stats=new _display_utils.StatTimer),this.pendingCleanup=!1,!0}_startRenderPage(e,t){const r=this._intentStates.get(t);r&&(this._stats&&this._stats.timeEnd("Page Request"),r.displayReadyCapability&&r.displayReadyCapability.resolve(e))}_renderPageChunk(e,t){for(let r=0,i=e.length;r<i;r++)t.operatorList.fnArray.push(e.fnArray[r]),t.operatorList.argsArray.push(e.argsArray[r]);t.operatorList.lastChunk=e.lastChunk;for(let r=0;r<t.renderTasks.length;r++)t.renderTasks[r].operatorListChanged();e.lastChunk&&this._tryCleanup()}_pumpOperatorList(e){(0,_util.assert)(e.intent,'PDFPageProxy._pumpOperatorList: Expected "intent" argument.');const t=this._transport.messageHandler.sendWithStream("GetOperatorList",e),r=t.getReader(),i=this._intentStates.get(e.intent);i.streamReader=r;const n=()=>{r.read().then(({value:e,done:t})=>{t?i.streamReader=null:this._transport.destroyed||(this._renderPageChunk(e,i),n())},e=>{if(i.streamReader=null,!this._transport.destroyed){if(i.operatorList){i.operatorList.lastChunk=!0;for(let e=0;e<i.renderTasks.length;e++)i.renderTasks[e].operatorListChanged();this._tryCleanup()}if(i.displayReadyCapability)i.displayReadyCapability.reject(e);else{if(!i.opListReadCapability)throw e;i.opListReadCapability.reject(e)}}})};n()}_abortOperatorList({intentState:e,reason:t,force:r=!1}){if((0,_util.assert)(t instanceof Error||"object"===typeof t&&null!==t,'PDFPageProxy._abortOperatorList: Expected "reason" argument.'),e.streamReader){if(!r){if(0!==e.renderTasks.length)return;if(t instanceof _display_utils.RenderingCancelledException)return void(e.streamReaderCancelTimeout=setTimeout(()=>{this._abortOperatorList({intentState:e,reason:t,force:!0}),e.streamReaderCancelTimeout=null},RENDERING_CANCELLED_TIMEOUT))}if(e.streamReader.cancel(new _util.AbortException(t&&t.message)),e.streamReader=null,!this._transport.destroyed){for(const[t,r]of this._intentStates)if(r===e){this._intentStates.delete(t);break}this.cleanup()}}}get stats(){return this._stats}}exports.PDFPageProxy=PDFPageProxy;class LoopbackPort{constructor(e=!0){this._listeners=[],this._defer=e,this._deferred=Promise.resolve(void 0)}postMessage(e,t){function r(e){if("object"!==typeof e||null===e)return e;if(i.has(e))return i.get(e);let n,a;if((n=e.buffer)&&(0,_util.isArrayBuffer)(n)){const r=t&&t.includes(n);return a=r?new e.constructor(n,e.byteOffset,e.byteLength):new e.constructor(e),i.set(e,a),a}a=Array.isArray(e)?[]:{},i.set(e,a);for(const t in e){let i,n=e;while(!(i=Object.getOwnPropertyDescriptor(n,t)))n=Object.getPrototypeOf(n);if("undefined"!==typeof i.value)if("function"!==typeof i.value)a[t]=r(i.value);else if(e.hasOwnProperty&&e.hasOwnProperty(t))throw new Error("LoopbackPort.postMessage - cannot clone: "+e[t])}return a}if(!this._defer)return void this._listeners.forEach(t=>{t.call(this,{data:e})});const i=new WeakMap,n={data:r(e)};this._deferred.then(()=>{this._listeners.forEach(e=>{e.call(this,n)})})}addEventListener(e,t){this._listeners.push(t)}removeEventListener(e,t){const r=this._listeners.indexOf(t);this._listeners.splice(r,1)}terminate(){this._listeners.length=0}}exports.LoopbackPort=LoopbackPort;const PDFWorker=function PDFWorkerClosure(){const pdfWorkerPorts=new WeakMap;let isWorkerDisabled=!1,fallbackWorkerSrc,nextFakeWorkerId=0,fakeWorkerCapability;if(_is_node.isNodeJS)isWorkerDisabled=!0,fallbackWorkerSrc="./pdf.worker.js";else if("object"===typeof document&&"currentScript"in document){const e=document.currentScript&&document.currentScript.src;e&&(fallbackWorkerSrc=e.replace(/(\.(?:min\.)?js)(\?.*)?$/i,".worker$1$2"))}function getWorkerSrc(){if(_worker_options.GlobalWorkerOptions.workerSrc)return _worker_options.GlobalWorkerOptions.workerSrc;if("undefined"!==typeof fallbackWorkerSrc)return _is_node.isNodeJS||(0,_display_utils.deprecated)('No "GlobalWorkerOptions.workerSrc" specified.'),fallbackWorkerSrc;throw new Error('No "GlobalWorkerOptions.workerSrc" specified.')}function getMainThreadWorkerMessageHandler(){let e;try{e=globalThis.pdfjsWorker&&globalThis.pdfjsWorker.WorkerMessageHandler}catch(t){}return e||null}function setupFakeWorkerGlobal(){if(fakeWorkerCapability)return fakeWorkerCapability.promise;fakeWorkerCapability=(0,_util.createPromiseCapability)();const loader=async function(){const mainWorkerMessageHandler=getMainThreadWorkerMessageHandler();if(mainWorkerMessageHandler)return mainWorkerMessageHandler;if(_is_node.isNodeJS){const worker=eval("require")(getWorkerSrc());return worker.WorkerMessageHandler}return await(0,_display_utils.loadScript)(getWorkerSrc()),window.pdfjsWorker.WorkerMessageHandler};return loader().then(fakeWorkerCapability.resolve,fakeWorkerCapability.reject),fakeWorkerCapability.promise}function createCDNWrapper(e){const t="importScripts('"+e+"');";return URL.createObjectURL(new Blob([t]))}class PDFWorker{constructor({name:e=null,port:t=null,verbosity:r=(0,_util.getVerbosityLevel)()}={}){if(t&&pdfWorkerPorts.has(t))throw new Error("Cannot use more than one PDFWorker per port");if(this.name=e,this.destroyed=!1,this.postMessageTransfers=!0,this.verbosity=r,this._readyCapability=(0,_util.createPromiseCapability)(),this._port=null,this._webWorker=null,this._messageHandler=null,t)return pdfWorkerPorts.set(t,this),void this._initializeFromPort(t);this._initialize()}get promise(){return this._readyCapability.promise}get port(){return this._port}get messageHandler(){return this._messageHandler}_initializeFromPort(e){this._port=e,this._messageHandler=new _message_handler.MessageHandler("main","worker",e),this._messageHandler.on("ready",(function(){})),this._readyCapability.resolve()}_initialize(){if("undefined"!==typeof Worker&&!isWorkerDisabled&&!getMainThreadWorkerMessageHandler()){let t=getWorkerSrc();try{(0,_util.isSameOrigin)(window.location.href,t)||(t=createCDNWrapper(new URL(t,window.location).href));const e=new Worker(t),r=new _message_handler.MessageHandler("main","worker",e),i=()=>{e.removeEventListener("error",n),r.destroy(),e.terminate(),this.destroyed?this._readyCapability.reject(new Error("Worker was destroyed")):this._setupFakeWorker()},n=()=>{this._webWorker||i()};e.addEventListener("error",n),r.on("test",t=>{e.removeEventListener("error",n),this.destroyed?i():t?(this._messageHandler=r,this._port=e,this._webWorker=e,t.supportTransfers||(this.postMessageTransfers=!1),this._readyCapability.resolve(),r.send("configure",{verbosity:this.verbosity})):(this._setupFakeWorker(),r.destroy(),e.terminate())}),r.on("ready",t=>{if(e.removeEventListener("error",n),this.destroyed)i();else try{a()}catch(r){this._setupFakeWorker()}});const a=()=>{const e=new Uint8Array([this.postMessageTransfers?255:0]);try{r.send("test",e,[e.buffer])}catch(t){(0,_util.warn)("Cannot use postMessage transfers."),e[0]=0,r.send("test",e)}};return void a()}catch(e){(0,_util.info)("The worker has been disabled.")}}this._setupFakeWorker()}_setupFakeWorker(){isWorkerDisabled||((0,_util.warn)("Setting up fake worker."),isWorkerDisabled=!0),setupFakeWorkerGlobal().then(e=>{if(this.destroyed)return void this._readyCapability.reject(new Error("Worker was destroyed"));const t=new LoopbackPort;this._port=t;const r="fake"+nextFakeWorkerId++,i=new _message_handler.MessageHandler(r+"_worker",r,t);e.setup(i,t);const n=new _message_handler.MessageHandler(r,r+"_worker",t);this._messageHandler=n,this._readyCapability.resolve(),n.send("configure",{verbosity:this.verbosity})}).catch(e=>{this._readyCapability.reject(new Error(`Setting up fake worker failed: "${e.message}".`))})}destroy(){this.destroyed=!0,this._webWorker&&(this._webWorker.terminate(),this._webWorker=null),pdfWorkerPorts.delete(this._port),this._port=null,this._messageHandler&&(this._messageHandler.destroy(),this._messageHandler=null)}static fromPort(e){if(!e||!e.port)throw new Error("PDFWorker.fromPort - invalid method signature.");return pdfWorkerPorts.has(e.port)?pdfWorkerPorts.get(e.port):new PDFWorker(e)}static getWorkerSrc(){return getWorkerSrc()}}return PDFWorker}();exports.PDFWorker=PDFWorker;class WorkerTransport{constructor(e,t,r,i){this.messageHandler=e,this.loadingTask=t,this.commonObjs=new PDFObjects,this.fontLoader=new _font_loader.FontLoader({docId:t.docId,onUnsupportedFeature:this._onUnsupportedFeature.bind(this),ownerDocument:i.ownerDocument}),this._params=i,this.CMapReaderFactory=new i.CMapReaderFactory({baseUrl:i.cMapUrl,isCompressed:i.cMapPacked}),this.destroyed=!1,this.destroyCapability=null,this._passwordCapability=null,this._networkStream=r,this._fullReader=null,this._lastProgress=null,this.pageCache=[],this.pagePromises=[],this.downloadInfoCapability=(0,_util.createPromiseCapability)(),this.setupMessageHandler()}destroy(){if(this.destroyCapability)return this.destroyCapability.promise;this.destroyed=!0,this.destroyCapability=(0,_util.createPromiseCapability)(),this._passwordCapability&&this._passwordCapability.reject(new Error("Worker was destroyed during onPassword callback"));const e=[];this.pageCache.forEach((function(t){t&&e.push(t._destroy())})),this.pageCache.length=0,this.pagePromises.length=0;const t=this.messageHandler.sendWithPromise("Terminate",null);return e.push(t),Promise.all(e).then(()=>{this.fontLoader.clear(),this._networkStream&&this._networkStream.cancelAllRequests(new _util.AbortException("Worker was terminated.")),this.messageHandler&&(this.messageHandler.destroy(),this.messageHandler=null),this.destroyCapability.resolve()},this.destroyCapability.reject),this.destroyCapability.promise}setupMessageHandler(){const{messageHandler:e,loadingTask:t}=this;e.on("GetReader",(e,t)=>{(0,_util.assert)(this._networkStream,"GetReader - no `IPDFStream` instance available."),this._fullReader=this._networkStream.getFullReader(),this._fullReader.onProgress=e=>{this._lastProgress={loaded:e.loaded,total:e.total}},t.onPull=()=>{this._fullReader.read().then((function({value:e,done:r}){r?t.close():((0,_util.assert)((0,_util.isArrayBuffer)(e),"GetReader - expected an ArrayBuffer."),t.enqueue(new Uint8Array(e),1,[e]))})).catch(e=>{t.error(e)})},t.onCancel=e=>{this._fullReader.cancel(e),t.ready.catch(e=>{if(!this.destroyed)throw e})}}),e.on("ReaderHeadersReady",e=>{const r=(0,_util.createPromiseCapability)(),i=this._fullReader;return i.headersReady.then(()=>{i.isStreamingSupported&&i.isRangeSupported||(this._lastProgress&&t.onProgress&&t.onProgress(this._lastProgress),i.onProgress=e=>{t.onProgress&&t.onProgress({loaded:e.loaded,total:e.total})}),r.resolve({isStreamingSupported:i.isStreamingSupported,isRangeSupported:i.isRangeSupported,contentLength:i.contentLength})},r.reject),r.promise}),e.on("GetRangeReader",(e,t)=>{(0,_util.assert)(this._networkStream,"GetRangeReader - no `IPDFStream` instance available.");const r=this._networkStream.getRangeReader(e.begin,e.end);r?(t.onPull=()=>{r.read().then((function({value:e,done:r}){r?t.close():((0,_util.assert)((0,_util.isArrayBuffer)(e),"GetRangeReader - expected an ArrayBuffer."),t.enqueue(new Uint8Array(e),1,[e]))})).catch(e=>{t.error(e)})},t.onCancel=e=>{r.cancel(e),t.ready.catch(e=>{if(!this.destroyed)throw e})}):t.close()}),e.on("GetDoc",({pdfInfo:e})=>{this._numPages=e.numPages,t._capability.resolve(new PDFDocumentProxy(e,this))}),e.on("DocException",(function(e){let r;switch(e.name){case"PasswordException":r=new _util.PasswordException(e.message,e.code);break;case"InvalidPDFException":r=new _util.InvalidPDFException(e.message);break;case"MissingPDFException":r=new _util.MissingPDFException(e.message);break;case"UnexpectedResponseException":r=new _util.UnexpectedResponseException(e.message,e.status);break;case"UnknownErrorException":r=new _util.UnknownErrorException(e.message,e.details);break}if(!(r instanceof Error)){const e="DocException - expected a valid Error.";(0,_util.warn)(e)}t._capability.reject(r)})),e.on("PasswordRequest",e=>{if(this._passwordCapability=(0,_util.createPromiseCapability)(),t.onPassword){const i=e=>{this._passwordCapability.resolve({password:e})};try{t.onPassword(i,e.code)}catch(r){this._passwordCapability.reject(r)}}else this._passwordCapability.reject(new _util.PasswordException(e.message,e.code));return this._passwordCapability.promise}),e.on("DataLoaded",e=>{t.onProgress&&t.onProgress({loaded:e.length,total:e.length}),this.downloadInfoCapability.resolve(e)}),e.on("StartRenderPage",e=>{if(this.destroyed)return;const t=this.pageCache[e.pageIndex];t._startRenderPage(e.transparency,e.intent)}),e.on("commonobj",t=>{if(this.destroyed)return;const[r,i,n]=t;if(!this.commonObjs.has(r))switch(i){case"Font":const t=this._params;if("error"in n){const e=n.error;(0,_util.warn)("Error during font loading: "+e),this.commonObjs.resolve(r,e);break}let a=null;t.pdfBug&&globalThis.FontInspector&&globalThis.FontInspector.enabled&&(a={registerFont(e,t){globalThis.FontInspector.fontAdded(e,t)}});const s=new _font_loader.FontFaceObject(n,{isEvalSupported:t.isEvalSupported,disableFontFace:t.disableFontFace,ignoreErrors:t.ignoreErrors,onUnsupportedFeature:this._onUnsupportedFeature.bind(this),fontRegistry:a});this.fontLoader.bind(s).catch(t=>e.sendWithPromise("FontFallback",{id:r})).finally(()=>{!t.fontExtraProperties&&s.data&&(s.data=null),this.commonObjs.resolve(r,s)});break;case"FontPath":case"Image":this.commonObjs.resolve(r,n);break;default:throw new Error("Got unknown common object type "+i)}}),e.on("obj",e=>{if(this.destroyed)return;const[t,r,i,n]=e,a=this.pageCache[r];if(!a.objs.has(t))switch(i){case"Image":a.objs.resolve(t,n);const e=8e6;n&&"data"in n&&n.data.length>e&&(a.cleanupAfterRender=!0);break;default:throw new Error("Got unknown object type "+i)}}),e.on("DocProgress",e=>{this.destroyed||t.onProgress&&t.onProgress({loaded:e.loaded,total:e.total})}),e.on("UnsupportedFeature",this._onUnsupportedFeature.bind(this)),e.on("FetchBuiltInCMap",(e,t)=>{if(this.destroyed)return void t.error(new Error("Worker was destroyed"));let r=!1;t.onPull=()=>{r?t.close():(r=!0,this.CMapReaderFactory.fetch(e).then((function(e){t.enqueue(e,1,[e.cMapData.buffer])})).catch((function(e){t.error(e)})))}})}_onUnsupportedFeature({featureId:e}){this.destroyed||this.loadingTask.onUnsupportedFeature&&this.loadingTask.onUnsupportedFeature(e)}getData(){return this.messageHandler.sendWithPromise("GetData",null)}getPage(e){if(!Number.isInteger(e)||e<=0||e>this._numPages)return Promise.reject(new Error("Invalid page request"));const t=e-1;if(t in this.pagePromises)return this.pagePromises[t];const r=this.messageHandler.sendWithPromise("GetPage",{pageIndex:t}).then(e=>{if(this.destroyed)throw new Error("Transport destroyed");const r=new PDFPageProxy(t,e,this,this._params.ownerDocument,this._params.pdfBug);return this.pageCache[t]=r,r});return this.pagePromises[t]=r,r}getPageIndex(e){return this.messageHandler.sendWithPromise("GetPageIndex",{ref:e}).catch((function(e){return Promise.reject(new Error(e))}))}getAnnotations(e,t){return this.messageHandler.sendWithPromise("GetAnnotations",{pageIndex:e,intent:t})}saveDocument(e){return this.messageHandler.sendWithPromise("SaveDocument",{numPages:this._numPages,annotationStorage:e&&e.getAll()||null,filename:this._fullReader?this._fullReader.filename:null}).finally(()=>{e&&e.resetModified()})}getDestinations(){return this.messageHandler.sendWithPromise("GetDestinations",null)}getDestination(e){return"string"!==typeof e?Promise.reject(new Error("Invalid destination request.")):this.messageHandler.sendWithPromise("GetDestination",{id:e})}getPageLabels(){return this.messageHandler.sendWithPromise("GetPageLabels",null)}getPageLayout(){return this.messageHandler.sendWithPromise("GetPageLayout",null)}getPageMode(){return this.messageHandler.sendWithPromise("GetPageMode",null)}getViewerPreferences(){return this.messageHandler.sendWithPromise("GetViewerPreferences",null)}getOpenAction(){return this.messageHandler.sendWithPromise("GetOpenAction",null)}getAttachments(){return this.messageHandler.sendWithPromise("GetAttachments",null)}getJavaScript(){return this.messageHandler.sendWithPromise("GetJavaScript",null)}getOutline(){return this.messageHandler.sendWithPromise("GetOutline",null)}getOptionalContentConfig(){return this.messageHandler.sendWithPromise("GetOptionalContentConfig",null).then(e=>new _optional_content_config.OptionalContentConfig(e))}getPermissions(){return this.messageHandler.sendWithPromise("GetPermissions",null)}getMetadata(){return this.messageHandler.sendWithPromise("GetMetadata",null).then(e=>({info:e[0],metadata:e[1]?new _metadata.Metadata(e[1]):null,contentDispositionFilename:this._fullReader?this._fullReader.filename:null}))}getStats(){return this.messageHandler.sendWithPromise("GetStats",null)}startCleanup(){return this.messageHandler.sendWithPromise("Cleanup",null).then(()=>{for(let e=0,t=this.pageCache.length;e<t;e++){const t=this.pageCache[e];if(t){const r=t.cleanup();if(!r)throw new Error(`startCleanup: Page ${e+1} is currently rendering.`)}}this.commonObjs.clear(),this.fontLoader.clear()})}get loadingParams(){const e=this._params;return(0,_util.shadow)(this,"loadingParams",{disableAutoFetch:e.disableAutoFetch,disableFontFace:e.disableFontFace})}}class PDFObjects{constructor(){this._objs=Object.create(null)}_ensureObj(e){return this._objs[e]?this._objs[e]:this._objs[e]={capability:(0,_util.createPromiseCapability)(),data:null,resolved:!1}}get(e,t=null){if(t)return this._ensureObj(e).capability.promise.then(t),null;const r=this._objs[e];if(!r||!r.resolved)throw new Error(`Requesting object that isn't resolved yet ${e}.`);return r.data}has(e){const t=this._objs[e];return!!t&&t.resolved}resolve(e,t){const r=this._ensureObj(e);r.resolved=!0,r.data=t,r.capability.resolve(t)}clear(){this._objs=Object.create(null)}}class RenderTask{constructor(e){this._internalRenderTask=e,this.onContinue=null}get promise(){return this._internalRenderTask.capability.promise}cancel(){this._internalRenderTask.cancel()}}const InternalRenderTask=function(){const e=new WeakSet;class t{constructor({callback:e,params:t,objs:r,commonObjs:i,operatorList:n,pageIndex:a,canvasFactory:s,webGLContext:o,useRequestAnimationFrame:h=!1,pdfBug:l=!1}){this.callback=e,this.params=t,this.objs=r,this.commonObjs=i,this.operatorListIdx=null,this.operatorList=n,this._pageIndex=a,this.canvasFactory=s,this.webGLContext=o,this._pdfBug=l,this.running=!1,this.graphicsReadyCallback=null,this.graphicsReady=!1,this._useRequestAnimationFrame=!0===h&&"undefined"!==typeof window,this.cancelled=!1,this.capability=(0,_util.createPromiseCapability)(),this.task=new RenderTask(this),this._continueBound=this._continue.bind(this),this._scheduleNextBound=this._scheduleNext.bind(this),this._nextBound=this._next.bind(this),this._canvas=t.canvasContext.canvas}get completed(){return this.capability.promise.catch((function(){}))}initializeGraphics({transparency:t=!1,optionalContentConfig:r}){if(this.cancelled)return;if(this._canvas){if(e.has(this._canvas))throw new Error("Cannot use the same canvas during multiple render() operations. Use different canvas or ensure previous operations were cancelled or completed.");e.add(this._canvas)}this._pdfBug&&globalThis.StepperManager&&globalThis.StepperManager.enabled&&(this.stepper=globalThis.StepperManager.create(this._pageIndex),this.stepper.init(this.operatorList),this.stepper.nextBreakPoint=this.stepper.getNextBreakPoint());const{canvasContext:i,viewport:n,transform:a,imageLayer:s,background:o}=this.params;this.gfx=new _canvas.CanvasGraphics(i,this.commonObjs,this.objs,this.canvasFactory,this.webGLContext,s,r),this.gfx.beginDrawing({transform:a,viewport:n,transparency:t,background:o}),this.operatorListIdx=0,this.graphicsReady=!0,this.graphicsReadyCallback&&this.graphicsReadyCallback()}cancel(t=null){this.running=!1,this.cancelled=!0,this.gfx&&this.gfx.endDrawing(),this._canvas&&e.delete(this._canvas),this.callback(t||new _display_utils.RenderingCancelledException("Rendering cancelled, page "+(this._pageIndex+1),"canvas"))}operatorListChanged(){this.graphicsReady?(this.stepper&&this.stepper.updateOperatorList(this.operatorList),this.running||this._continue()):this.graphicsReadyCallback||(this.graphicsReadyCallback=this._continueBound)}_continue(){this.running=!0,this.cancelled||(this.task.onContinue?this.task.onContinue(this._scheduleNextBound):this._scheduleNext())}_scheduleNext(){this._useRequestAnimationFrame?window.requestAnimationFrame(()=>{this._nextBound().catch(this.cancel.bind(this))}):Promise.resolve().then(this._nextBound).catch(this.cancel.bind(this))}async _next(){this.cancelled||(this.operatorListIdx=this.gfx.executeOperatorList(this.operatorList,this.operatorListIdx,this._continueBound,this.stepper),this.operatorListIdx===this.operatorList.argsArray.length&&(this.running=!1,this.operatorList.lastChunk&&(this.gfx.endDrawing(),this._canvas&&e.delete(this._canvas),this.callback())))}}return t}(),version="2.6.347";exports.version=version;const build="3be9c65f";exports.build=build},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FontLoader=t.FontFaceObject=void 0;var i=r(2);class n{constructor({docId:e,onUnsupportedFeature:t,ownerDocument:r=globalThis.document}){this.constructor===n&&(0,i.unreachable)("Cannot initialize BaseFontLoader."),this.docId=e,this._onUnsupportedFeature=t,this._document=r,this.nativeFontFaces=[],this.styleElement=null}addNativeFontFace(e){this.nativeFontFaces.push(e),this._document.fonts.add(e)}insertRule(e){let t=this.styleElement;t||(t=this.styleElement=this._document.createElement("style"),t.id="PDFJS_FONT_STYLE_TAG_"+this.docId,this._document.documentElement.getElementsByTagName("head")[0].appendChild(t));const r=t.sheet;r.insertRule(e,r.cssRules.length)}clear(){this.nativeFontFaces.forEach(e=>{this._document.fonts.delete(e)}),this.nativeFontFaces.length=0,this.styleElement&&(this.styleElement.remove(),this.styleElement=null)}async bind(e){if(e.attached||e.missingFile)return;if(e.attached=!0,this.isFontLoadingAPISupported){const t=e.createNativeFontFace();if(t){this.addNativeFontFace(t);try{await t.loaded}catch(r){throw this._onUnsupportedFeature({featureId:i.UNSUPPORTED_FEATURES.errorFontLoadNative}),(0,i.warn)(`Failed to load font '${t.family}': '${r}'.`),e.disableFontFace=!0,r}}return}const t=e.createFontFaceRule();if(t){if(this.insertRule(t),this.isSyncFontLoadingSupported)return;await new Promise(r=>{const i=this._queueLoadingCallback(r);this._prepareFontLoadEvent([t],[e],i)})}}_queueLoadingCallback(e){(0,i.unreachable)("Abstract method `_queueLoadingCallback`.")}get isFontLoadingAPISupported(){const e="undefined"!==typeof this._document&&!!this._document.fonts;return(0,i.shadow)(this,"isFontLoadingAPISupported",e)}get isSyncFontLoadingSupported(){(0,i.unreachable)("Abstract method `isSyncFontLoadingSupported`.")}get _loadTestFont(){(0,i.unreachable)("Abstract method `_loadTestFont`.")}_prepareFontLoadEvent(e,t,r){(0,i.unreachable)("Abstract method `_prepareFontLoadEvent`.")}}let a;t.FontLoader=a,t.FontLoader=a=class extends n{constructor(e){super(e),this.loadingContext={requests:[],nextRequestId:0},this.loadTestFontId=0}get isSyncFontLoadingSupported(){let e=!1;if("undefined"===typeof navigator)e=!0;else{const t=/Mozilla\/5.0.*?rv:(\d+).*? Gecko/.exec(navigator.userAgent);t&&t[1]>=14&&(e=!0)}return(0,i.shadow)(this,"isSyncFontLoadingSupported",e)}_queueLoadingCallback(e){function t(){(0,i.assert)(!n.done,"completeRequest() cannot be called twice."),n.done=!0;while(r.requests.length>0&&r.requests[0].done){const e=r.requests.shift();setTimeout(e.callback,0)}}const r=this.loadingContext,n={id:"pdfjs-font-loading-"+r.nextRequestId++,done:!1,complete:t,callback:e};return r.requests.push(n),n}get _loadTestFont(){const e=function(){return atob("T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA==")};return(0,i.shadow)(this,"_loadTestFont",e())}_prepareFontLoadEvent(e,t,r){function n(e,t){return e.charCodeAt(t)<<24|e.charCodeAt(t+1)<<16|e.charCodeAt(t+2)<<8|255&e.charCodeAt(t+3)}function a(e,t,r,i){const n=e.substring(0,t),a=e.substring(t+r);return n+i+a}let s,o;const h=this._document.createElement("canvas");h.width=1,h.height=1;const l=h.getContext("2d");let c=0;function u(e,t){if(c++,c>30)return(0,i.warn)("Load test font never loaded."),void t();l.font="30px "+e,l.fillText(".",0,20);const r=l.getImageData(0,0,1,1);r.data[3]>0?t():setTimeout(u.bind(null,e,t))}const f=`lt${Date.now()}${this.loadTestFontId++}`;let d=this._loadTestFont;const p=976;d=a(d,p,f.length,f);const m=16,g=1482184792;let b=n(d,m);for(s=0,o=f.length-3;s<o;s+=4)b=b-g+n(f,s)|0;s<f.length&&(b=b-g+n(f+"XXX",s)|0),d=a(d,m,4,(0,i.string32)(b));const v=`url(data:font/opentype;base64,${btoa(d)});`,y=`@font-face {font-family:"${f}";src:${v}}`;this.insertRule(y);const w=[];for(s=0,o=t.length;s<o;s++)w.push(t[s].loadedName);w.push(f);const M=this._document.createElement("div");for(M.style.visibility="hidden",M.style.width=M.style.height="10px",M.style.position="absolute",M.style.top=M.style.left="0px",s=0,o=w.length;s<o;++s){const e=this._document.createElement("span");e.textContent="Hi",e.style.fontFamily=w[s],M.appendChild(e)}this._document.body.appendChild(M),u(f,()=>{this._document.body.removeChild(M),r.complete()})}};class s{constructor(e,{isEvalSupported:t=!0,disableFontFace:r=!1,ignoreErrors:i=!1,onUnsupportedFeature:n=null,fontRegistry:a=null}){this.compiledGlyphs=Object.create(null);for(const s in e)this[s]=e[s];this.isEvalSupported=!1!==t,this.disableFontFace=!0===r,this.ignoreErrors=!0===i,this._onUnsupportedFeature=n,this.fontRegistry=a}createNativeFontFace(){if(!this.data||this.disableFontFace)return null;const e=new FontFace(this.loadedName,this.data,{});return this.fontRegistry&&this.fontRegistry.registerFont(this),e}createFontFaceRule(){if(!this.data||this.disableFontFace)return null;const e=(0,i.bytesToString)(new Uint8Array(this.data)),t=`url(data:${this.mimetype};base64,${btoa(e)});`,r=`@font-face {font-family:"${this.loadedName}";src:${t}}`;return this.fontRegistry&&this.fontRegistry.registerFont(this,t),r}getPathGenerator(e,t){if(void 0!==this.compiledGlyphs[t])return this.compiledGlyphs[t];let r,n;try{r=e.get(this.loadedName+"_path_"+t)}catch(a){if(!this.ignoreErrors)throw a;return this._onUnsupportedFeature&&this._onUnsupportedFeature({featureId:i.UNSUPPORTED_FEATURES.errorFontGetPath}),(0,i.warn)(`getPathGenerator - ignoring character: "${a}".`),this.compiledGlyphs[t]=function(e,t){}}if(this.isEvalSupported&&i.IsEvalSupportedCached.value){let e,i="";for(let t=0,a=r.length;t<a;t++)n=r[t],e=void 0!==n.args?n.args.join(","):"",i+="c."+n.cmd+"("+e+");\n";return this.compiledGlyphs[t]=new Function("c","size",i)}return this.compiledGlyphs[t]=function(e,t){for(let i=0,a=r.length;i<a;i++)n=r[i],"scale"===n.cmd&&(n.args=[t,-t]),e[n.cmd].apply(e,n.args)}}}t.FontFaceObject=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.NodeCMapReaderFactory=t.NodeCanvasFactory=void 0;var i=r(1),n=r(4),a=r(2);let s=class{constructor(){(0,a.unreachable)("Not implemented: NodeCanvasFactory")}};t.NodeCanvasFactory=s;let o=class{constructor(){(0,a.unreachable)("Not implemented: NodeCMapReaderFactory")}};t.NodeCMapReaderFactory=o,n.isNodeJS&&(t.NodeCanvasFactory=s=class extends i.BaseCanvasFactory{create(e,t){if(e<=0||t<=0)throw new Error("Invalid canvas size");const r=__webpack_require__(4),i=r.createCanvas(e,t);return{canvas:i,context:i.getContext("2d")}}},t.NodeCMapReaderFactory=o=class extends i.BaseCMapReaderFactory{_fetchData(e,t){return new Promise((r,i)=>{const n=__webpack_require__(3);n.readFile(e,(e,n)=>{!e&&n?r({cMapData:new Uint8Array(n),compressionType:t}):i(new Error(e))})})}})},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AnnotationStorage=void 0;class i{constructor(){this._storage=new Map,this._modified=!1,this.onSetModified=null,this.onResetModified=null}getOrCreateValue(e,t){return this._storage.has(e)?this._storage.get(e):(this._storage.set(e,t),t)}setValue(e,t){this._storage.get(e)!==t&&this._setModified(),this._storage.set(e,t)}getAll(){return 0===this._storage.size?null:Object.fromEntries(this._storage)}get size(){return this._storage.size}_setModified(){this._modified||(this._modified=!0,"function"===typeof this.onSetModified&&this.onSetModified())}resetModified(){this._modified&&(this._modified=!1,"function"===typeof this.onResetModified&&this.onResetModified())}}t.AnnotationStorage=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.apiCompatibilityParams=void 0;var i=r(4);const n=Object.create(null);(function(){i.isNodeJS&&(n.disableFontFace=!0)})();const a=Object.freeze(n);t.apiCompatibilityParams=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CanvasGraphics=void 0;var i=r(2),n=r(11),a=16,s=100,o=4096,h=.65,l=!0,c=1e3,u=16;function f(e){e.mozCurrentTransform||(e._originalSave=e.save,e._originalRestore=e.restore,e._originalRotate=e.rotate,e._originalScale=e.scale,e._originalTranslate=e.translate,e._originalTransform=e.transform,e._originalSetTransform=e.setTransform,e._transformMatrix=e._transformMatrix||[1,0,0,1,0,0],e._transformStack=[],Object.defineProperty(e,"mozCurrentTransform",{get:function(){return this._transformMatrix}}),Object.defineProperty(e,"mozCurrentTransformInverse",{get:function(){var e=this._transformMatrix,t=e[0],r=e[1],i=e[2],n=e[3],a=e[4],s=e[5],o=t*n-r*i,h=r*i-t*n;return[n/o,r/h,i/h,t/o,(n*a-i*s)/h,(r*a-t*s)/o]}}),e.save=function(){var e=this._transformMatrix;this._transformStack.push(e),this._transformMatrix=e.slice(0,6),this._originalSave()},e.restore=function(){var e=this._transformStack.pop();e&&(this._transformMatrix=e,this._originalRestore())},e.translate=function(e,t){var r=this._transformMatrix;r[4]=r[0]*e+r[2]*t+r[4],r[5]=r[1]*e+r[3]*t+r[5],this._originalTranslate(e,t)},e.scale=function(e,t){var r=this._transformMatrix;r[0]=r[0]*e,r[1]=r[1]*e,r[2]=r[2]*t,r[3]=r[3]*t,this._originalScale(e,t)},e.transform=function(t,r,i,n,a,s){var o=this._transformMatrix;this._transformMatrix=[o[0]*t+o[2]*r,o[1]*t+o[3]*r,o[0]*i+o[2]*n,o[1]*i+o[3]*n,o[0]*a+o[2]*s+o[4],o[1]*a+o[3]*s+o[5]],e._originalTransform(t,r,i,n,a,s)},e.setTransform=function(t,r,i,n,a,s){this._transformMatrix=[t,r,i,n,a,s],e._originalSetTransform(t,r,i,n,a,s)},e.rotate=function(e){var t=Math.cos(e),r=Math.sin(e),i=this._transformMatrix;this._transformMatrix=[i[0]*t+i[2]*r,i[1]*t+i[3]*r,i[0]*-r+i[2]*t,i[1]*-r+i[3]*t,i[4],i[5]],this._originalRotate(e)})}var d=function(){function e(e){this.canvasFactory=e,this.cache=Object.create(null)}return e.prototype={getCanvas:function(e,t,r,i){var n;return void 0!==this.cache[e]?(n=this.cache[e],this.canvasFactory.reset(n,t,r),n.context.setTransform(1,0,0,1,0,0)):(n=this.canvasFactory.create(t,r),this.cache[e]=n),i&&f(n.context),n},clear(){for(var e in this.cache){var t=this.cache[e];this.canvasFactory.destroy(t),delete this.cache[e]}}},e}();function p(e){var t,r,i,n,a=1e3,s=e.width,o=e.height,h=s+1,l=new Uint8Array(h*(o+1)),c=new Uint8Array([0,2,4,0,1,0,5,4,8,10,0,8,0,2,1,0]),u=s+7&-8,f=e.data,d=new Uint8Array(u*o),p=0;for(t=0,n=f.length;t<n;t++){var m=128,g=f[t];while(m>0)d[p++]=g&m?0:255,m>>=1}var b=0;for(p=0,0!==d[p]&&(l[0]=1,++b),r=1;r<s;r++)d[p]!==d[p+1]&&(l[r]=d[p]?2:1,++b),p++;for(0!==d[p]&&(l[r]=2,++b),t=1;t<o;t++){p=t*u,i=t*h,d[p-u]!==d[p]&&(l[i]=d[p]?1:8,++b);var v=(d[p]?4:0)+(d[p-u]?8:0);for(r=1;r<s;r++)v=(v>>2)+(d[p+1]?4:0)+(d[p-u+1]?8:0),c[v]&&(l[i+r]=c[v],++b),p++;if(d[p-u]!==d[p]&&(l[i+r]=d[p]?2:4,++b),b>a)return null}for(p=u*(o-1),i=t*h,0!==d[p]&&(l[i]=8,++b),r=1;r<s;r++)d[p]!==d[p+1]&&(l[i+r]=d[p]?4:8,++b),p++;if(0!==d[p]&&(l[i+r]=4,++b),b>a)return null;var y=new Int32Array([0,h,-1,0,-h,0,0,0,1]),w=[];for(t=0;b&&t<=o;t++){var M=t*h,_=M+s;while(M<_&&!l[M])M++;if(M!==_){var S,k=[M%h,t],A=l[M],x=M;do{var C=y[A];do{M+=C}while(!l[M]);S=l[M],5!==S&&10!==S?(A=S,l[M]=0):(A=S&51*A>>4,l[M]&=A>>2|A<<2),k.push(M%h),k.push(M/h|0),l[M]||--b}while(x!==M);w.push(k),--t}}var E=function(e){e.save(),e.scale(1/s,-1/o),e.translate(0,-o),e.beginPath();for(let r=0,i=w.length;r<i;r++){var t=w[r];e.moveTo(t[0],t[1]);for(let r=2,i=t.length;r<i;r+=2)e.lineTo(t[r],t[r+1])}e.fill(),e.beginPath(),e.restore()};return E}var m=function(){function e(){this.alphaIsShape=!1,this.fontSize=0,this.fontSizeScale=1,this.textMatrix=i.IDENTITY_MATRIX,this.textMatrixScale=1,this.fontMatrix=i.FONT_IDENTITY_MATRIX,this.leading=0,this.x=0,this.y=0,this.lineX=0,this.lineY=0,this.charSpacing=0,this.wordSpacing=0,this.textHScale=1,this.textRenderingMode=i.TextRenderingMode.FILL,this.textRise=0,this.fillColor="#000000",this.strokeColor="#000000",this.patternFill=!1,this.fillAlpha=1,this.strokeAlpha=1,this.lineWidth=1,this.activeSMask=null,this.resumeSMaskCtx=null,this.transferMaps=null}return e.prototype={clone:function(){return Object.create(this)},setCurrentPoint:function(e,t){this.x=e,this.y=t}},e}(),g=function(){var e=15,t=10;function r(e,t,r,i,n,a,s){this.ctx=e,this.current=new m,this.stateStack=[],this.pendingClip=null,this.pendingEOFill=!1,this.res=null,this.xobjs=null,this.commonObjs=t,this.objs=r,this.canvasFactory=i,this.webGLContext=n,this.imageLayer=a,this.groupStack=[],this.processingType3=null,this.baseTransform=null,this.baseTransformStack=[],this.groupLevel=0,this.smaskStack=[],this.smaskCounter=0,this.tempSMask=null,this.contentVisible=!0,this.markedContentStack=[],this.optionalContentConfig=s,this.cachedCanvases=new d(this.canvasFactory),e&&f(e),this._cachedGetSinglePixelWidth=null}function g(e,t,r=null){if("undefined"!==typeof ImageData&&t instanceof ImageData)return void e.putImageData(t,0,0);var n,a,s,o,h,l=t.height,c=t.width,f=l%u,d=(l-f)/u,p=0===f?d:d+1,m=e.createImageData(c,u),g=0,b=t.data,v=m.data;let y,w,M,_;if(r)switch(r.length){case 1:y=r[0],w=r[0],M=r[0],_=r[0];break;case 4:y=r[0],w=r[1],M=r[2],_=r[3];break}if(t.kind===i.ImageKind.GRAYSCALE_1BPP){var S=b.byteLength,k=new Uint32Array(v.buffer,0,v.byteLength>>2),A=k.length,x=c+7>>3,C=4294967295,E=i.IsLittleEndianCached.value?4278190080:255;for(_&&255===_[0]&&0===_[255]&&([C,E]=[E,C]),a=0;a<p;a++){for(o=a<d?u:f,n=0,s=0;s<o;s++){var T=S-g;let e=0;for(var R=T>x?c:8*T-7,I=-8&R,P=0,O=0;e<I;e+=8)O=b[g++],k[n++]=128&O?C:E,k[n++]=64&O?C:E,k[n++]=32&O?C:E,k[n++]=16&O?C:E,k[n++]=8&O?C:E,k[n++]=4&O?C:E,k[n++]=2&O?C:E,k[n++]=1&O?C:E;for(;e<R;e++)0===P&&(O=b[g++],P=128),k[n++]=O&P?C:E,P>>=1}while(n<A)k[n++]=0;e.putImageData(m,0,a*u)}}else if(t.kind===i.ImageKind.RGBA_32BPP){const t=!!(y||w||M);for(s=0,h=c*u*4,a=0;a<d;a++){if(v.set(b.subarray(g,g+h)),g+=h,t)for(let e=0;e<h;e+=4)y&&(v[e+0]=y[v[e+0]]),w&&(v[e+1]=w[v[e+1]]),M&&(v[e+2]=M[v[e+2]]);e.putImageData(m,0,s),s+=u}if(a<p){if(h=c*f*4,v.set(b.subarray(g,g+h)),t)for(let e=0;e<h;e+=4)y&&(v[e+0]=y[v[e+0]]),w&&(v[e+1]=w[v[e+1]]),M&&(v[e+2]=M[v[e+2]]);e.putImageData(m,0,s)}}else{if(t.kind!==i.ImageKind.RGB_24BPP)throw new Error("bad image kind: "+t.kind);{const t=!!(y||w||M);for(o=u,h=c*o,a=0;a<p;a++){for(a>=d&&(o=f,h=c*o),n=0,s=h;s--;)v[n++]=b[g++],v[n++]=b[g++],v[n++]=b[g++],v[n++]=255;if(t)for(let e=0;e<n;e+=4)y&&(v[e+0]=y[v[e+0]]),w&&(v[e+1]=w[v[e+1]]),M&&(v[e+2]=M[v[e+2]]);e.putImageData(m,0,a*u)}}}}function b(e,t){for(var r=t.height,i=t.width,n=r%u,a=(r-n)/u,s=0===n?a:a+1,o=e.createImageData(i,u),h=0,l=t.data,c=o.data,f=0;f<s;f++){for(var d=f<a?u:n,p=3,m=0;m<d;m++)for(var g=0,b=0;b<i;b++){if(!g){var v=l[h++];g=128}c[p]=v&g?0:255,p+=4,g>>=1}e.putImageData(o,0,f*u)}}function v(e,t){for(var r=["strokeStyle","fillStyle","fillRule","globalAlpha","lineWidth","lineCap","lineJoin","miterLimit","globalCompositeOperation","font"],i=0,n=r.length;i<n;i++){var a=r[i];void 0!==e[a]&&(t[a]=e[a])}void 0!==e.setLineDash&&(t.setLineDash(e.getLineDash()),t.lineDashOffset=e.lineDashOffset)}function y(e){e.strokeStyle="#000000",e.fillStyle="#000000",e.fillRule="nonzero",e.globalAlpha=1,e.lineWidth=1,e.lineCap="butt",e.lineJoin="miter",e.miterLimit=10,e.globalCompositeOperation="source-over",e.font="10px sans-serif",void 0!==e.setLineDash&&(e.setLineDash([]),e.lineDashOffset=0)}function w(e,t,r,i){for(var n=e.length,a=3;a<n;a+=4){var s=e[a];if(0===s)e[a-3]=t,e[a-2]=r,e[a-1]=i;else if(s<255){var o=255-s;e[a-3]=e[a-3]*s+t*o>>8,e[a-2]=e[a-2]*s+r*o>>8,e[a-1]=e[a-1]*s+i*o>>8}}}function M(e,t,r){for(var i=e.length,n=1/255,a=3;a<i;a+=4){var s=r?r[e[a]]:e[a];t[a]=t[a]*s*n|0}}function _(e,t,r){for(var i=e.length,n=3;n<i;n+=4){var a=77*e[n-3]+152*e[n-2]+28*e[n-1];t[n]=r?t[n]*r[a>>8]>>8:t[n]*a>>16}}function S(e,t,r,i,n,a,s){var o,h=!!a,l=h?a[0]:0,c=h?a[1]:0,u=h?a[2]:0;o="Luminosity"===n?_:M;for(var f=1048576,d=Math.min(i,Math.ceil(f/r)),p=0;p<i;p+=d){var m=Math.min(d,i-p),g=e.getImageData(0,p,r,m),b=t.getImageData(0,p,r,m);h&&w(g.data,l,c,u),o(g.data,b.data,s),e.putImageData(b,0,p)}}function k(e,t,r,i){var n=t.canvas,a=t.context;e.setTransform(t.scaleX,0,0,t.scaleY,t.offsetX,t.offsetY);var s=t.backdrop||null;if(!t.transferMap&&i.isEnabled){const a=i.composeSMask({layer:r.canvas,mask:n,properties:{subtype:t.subtype,backdrop:s}});return e.setTransform(1,0,0,1,0,0),void e.drawImage(a,t.offsetX,t.offsetY)}S(a,r,n.width,n.height,t.subtype,s,t.transferMap),e.drawImage(n,0,0)}var A=["butt","round","square"],x=["miter","round","bevel"],C={},E={};for(var T in r.prototype={beginDrawing({transform:e,viewport:t,transparency:r=!1,background:i=null}){var n=this.ctx.canvas.width,a=this.ctx.canvas.height;if(this.ctx.save(),this.ctx.fillStyle=i||"rgb(255, 255, 255)",this.ctx.fillRect(0,0,n,a),this.ctx.restore(),r){var s=this.cachedCanvases.getCanvas("transparent",n,a,!0);this.compositeCtx=this.ctx,this.transparentCanvas=s.canvas,this.ctx=s.context,this.ctx.save(),this.ctx.transform.apply(this.ctx,this.compositeCtx.mozCurrentTransform)}this.ctx.save(),y(this.ctx),e&&this.ctx.transform.apply(this.ctx,e),this.ctx.transform.apply(this.ctx,t.transform),this.baseTransform=this.ctx.mozCurrentTransform.slice(),this.imageLayer&&this.imageLayer.beginLayout()},executeOperatorList:function(r,n,a,s){var o=r.argsArray,h=r.fnArray,l=n||0,c=o.length;if(c===l)return l;var u,f=c-l>t&&"function"===typeof a,d=f?Date.now()+e:0,p=0,m=this.commonObjs,g=this.objs;while(1){if(void 0!==s&&l===s.nextBreakPoint)return s.breakIt(l,a),l;if(u=h[l],u!==i.OPS.dependency)this[u].apply(this,o[l]);else for(const e of o[l]){const t=e.startsWith("g_")?m:g;if(!t.has(e))return t.get(e,a),l}if(l++,l===c)return l;if(f&&++p>t){if(Date.now()>d)return a(),l;p=0}}},endDrawing:function(){null!==this.current.activeSMask&&this.endSMaskGroup(),this.ctx.restore(),this.transparentCanvas&&(this.ctx=this.compositeCtx,this.ctx.save(),this.ctx.setTransform(1,0,0,1,0,0),this.ctx.drawImage(this.transparentCanvas,0,0),this.ctx.restore(),this.transparentCanvas=null),this.cachedCanvases.clear(),this.webGLContext.clear(),this.imageLayer&&this.imageLayer.endLayout()},setLineWidth:function(e){this.current.lineWidth=e,this.ctx.lineWidth=e},setLineCap:function(e){this.ctx.lineCap=A[e]},setLineJoin:function(e){this.ctx.lineJoin=x[e]},setMiterLimit:function(e){this.ctx.miterLimit=e},setDash:function(e,t){var r=this.ctx;void 0!==r.setLineDash&&(r.setLineDash(e),r.lineDashOffset=t)},setRenderingIntent(e){},setFlatness(e){},setGState:function(e){for(var t=0,r=e.length;t<r;t++){var i=e[t],n=i[0],a=i[1];switch(n){case"LW":this.setLineWidth(a);break;case"LC":this.setLineCap(a);break;case"LJ":this.setLineJoin(a);break;case"ML":this.setMiterLimit(a);break;case"D":this.setDash(a[0],a[1]);break;case"RI":this.setRenderingIntent(a);break;case"FL":this.setFlatness(a);break;case"Font":this.setFont(a[0],a[1]);break;case"CA":this.current.strokeAlpha=i[1];break;case"ca":this.current.fillAlpha=i[1],this.ctx.globalAlpha=i[1];break;case"BM":this.ctx.globalCompositeOperation=a;break;case"SMask":this.current.activeSMask&&(this.stateStack.length>0&&this.stateStack[this.stateStack.length-1].activeSMask===this.current.activeSMask?this.suspendSMaskGroup():this.endSMaskGroup()),this.current.activeSMask=a?this.tempSMask:null,this.current.activeSMask&&this.beginSMaskGroup(),this.tempSMask=null;break;case"TR":this.current.transferMaps=a}}},beginSMaskGroup:function(){var e=this.current.activeSMask,t=e.canvas.width,r=e.canvas.height,i="smaskGroupAt"+this.groupLevel,n=this.cachedCanvases.getCanvas(i,t,r,!0),a=this.ctx,s=a.mozCurrentTransform;this.ctx.save();var o=n.context;o.scale(1/e.scaleX,1/e.scaleY),o.translate(-e.offsetX,-e.offsetY),o.transform.apply(o,s),e.startTransformInverse=o.mozCurrentTransformInverse,v(a,o),this.ctx=o,this.setGState([["BM","source-over"],["ca",1],["CA",1]]),this.groupStack.push(a),this.groupLevel++},suspendSMaskGroup:function(){var e=this.ctx;this.groupLevel--,this.ctx=this.groupStack.pop(),k(this.ctx,this.current.activeSMask,e,this.webGLContext),this.ctx.restore(),this.ctx.save(),v(e,this.ctx),this.current.resumeSMaskCtx=e;var t=i.Util.transform(this.current.activeSMask.startTransformInverse,e.mozCurrentTransform);this.ctx.transform.apply(this.ctx,t),e.save(),e.setTransform(1,0,0,1,0,0),e.clearRect(0,0,e.canvas.width,e.canvas.height),e.restore()},resumeSMaskGroup:function(){var e=this.current.resumeSMaskCtx,t=this.ctx;this.ctx=e,this.groupStack.push(t),this.groupLevel++},endSMaskGroup:function(){var e=this.ctx;this.groupLevel--,this.ctx=this.groupStack.pop(),k(this.ctx,this.current.activeSMask,e,this.webGLContext),this.ctx.restore(),v(e,this.ctx);var t=i.Util.transform(this.current.activeSMask.startTransformInverse,e.mozCurrentTransform);this.ctx.transform.apply(this.ctx,t)},save:function(){this.ctx.save();var e=this.current;this.stateStack.push(e),this.current=e.clone(),this.current.resumeSMaskCtx=null},restore:function(){this.current.resumeSMaskCtx&&this.resumeSMaskGroup(),null===this.current.activeSMask||0!==this.stateStack.length&&this.stateStack[this.stateStack.length-1].activeSMask===this.current.activeSMask||this.endSMaskGroup(),0!==this.stateStack.length&&(this.current=this.stateStack.pop(),this.ctx.restore(),this.pendingClip=null,this._cachedGetSinglePixelWidth=null)},transform:function(e,t,r,i,n,a){this.ctx.transform(e,t,r,i,n,a),this._cachedGetSinglePixelWidth=null},constructPath:function(e,t){for(var r=this.ctx,n=this.current,a=n.x,s=n.y,o=0,h=0,l=e.length;o<l;o++)switch(0|e[o]){case i.OPS.rectangle:a=t[h++],s=t[h++];var c=t[h++],u=t[h++];0===c&&r.lineWidth<this.getSinglePixelWidth()&&(c=this.getSinglePixelWidth()),0===u&&r.lineWidth<this.getSinglePixelWidth()&&(u=this.getSinglePixelWidth());var f=a+c,d=s+u;r.moveTo(a,s),r.lineTo(f,s),r.lineTo(f,d),r.lineTo(a,d),r.lineTo(a,s),r.closePath();break;case i.OPS.moveTo:a=t[h++],s=t[h++],r.moveTo(a,s);break;case i.OPS.lineTo:a=t[h++],s=t[h++],r.lineTo(a,s);break;case i.OPS.curveTo:a=t[h+4],s=t[h+5],r.bezierCurveTo(t[h],t[h+1],t[h+2],t[h+3],a,s),h+=6;break;case i.OPS.curveTo2:r.bezierCurveTo(a,s,t[h],t[h+1],t[h+2],t[h+3]),a=t[h+2],s=t[h+3],h+=4;break;case i.OPS.curveTo3:a=t[h+2],s=t[h+3],r.bezierCurveTo(t[h],t[h+1],a,s,a,s),h+=4;break;case i.OPS.closePath:r.closePath();break}n.setCurrentPoint(a,s)},closePath:function(){this.ctx.closePath()},stroke:function(e){e="undefined"===typeof e||e;var t=this.ctx,r=this.current.strokeColor;if(t.globalAlpha=this.current.strokeAlpha,this.contentVisible)if(r&&r.hasOwnProperty("type")&&"Pattern"===r.type){t.save();const e=t.mozCurrentTransform,n=i.Util.singularValueDecompose2dScale(e)[0];t.strokeStyle=r.getPattern(t,this),t.lineWidth=Math.max(this.getSinglePixelWidth()*h,this.current.lineWidth*n),t.stroke(),t.restore()}else t.lineWidth=Math.max(this.getSinglePixelWidth()*h,this.current.lineWidth),t.stroke();e&&this.consumePath(),t.globalAlpha=this.current.fillAlpha},closeStroke:function(){this.closePath(),this.stroke()},fill:function(e){e="undefined"===typeof e||e;var t=this.ctx,r=this.current.fillColor,i=this.current.patternFill,n=!1;i&&(t.save(),this.baseTransform&&t.setTransform.apply(t,this.baseTransform),t.fillStyle=r.getPattern(t,this),n=!0),this.contentVisible&&(this.pendingEOFill?(t.fill("evenodd"),this.pendingEOFill=!1):t.fill()),n&&t.restore(),e&&this.consumePath()},eoFill:function(){this.pendingEOFill=!0,this.fill()},fillStroke:function(){this.fill(!1),this.stroke(!1),this.consumePath()},eoFillStroke:function(){this.pendingEOFill=!0,this.fillStroke()},closeFillStroke:function(){this.closePath(),this.fillStroke()},closeEOFillStroke:function(){this.pendingEOFill=!0,this.closePath(),this.fillStroke()},endPath:function(){this.consumePath()},clip:function(){this.pendingClip=C},eoClip:function(){this.pendingClip=E},beginText:function(){this.current.textMatrix=i.IDENTITY_MATRIX,this.current.textMatrixScale=1,this.current.x=this.current.lineX=0,this.current.y=this.current.lineY=0},endText:function(){var e=this.pendingTextPaths,t=this.ctx;if(void 0!==e){t.save(),t.beginPath();for(var r=0;r<e.length;r++){var i=e[r];t.setTransform.apply(t,i.transform),t.translate(i.x,i.y),i.addToPath(t,i.fontSize)}t.restore(),t.clip(),t.beginPath(),delete this.pendingTextPaths}else t.beginPath()},setCharSpacing:function(e){this.current.charSpacing=e},setWordSpacing:function(e){this.current.wordSpacing=e},setHScale:function(e){this.current.textHScale=e/100},setLeading:function(e){this.current.leading=-e},setFont:function(e,t){var r=this.commonObjs.get(e),n=this.current;if(!r)throw new Error("Can't find font for "+e);if(n.fontMatrix=r.fontMatrix?r.fontMatrix:i.FONT_IDENTITY_MATRIX,0!==n.fontMatrix[0]&&0!==n.fontMatrix[3]||(0,i.warn)("Invalid font matrix for font "+e),t<0?(t=-t,n.fontDirection=-1):n.fontDirection=1,this.current.font=r,this.current.fontSize=t,r.isType3Font)return;var o=r.loadedName||"sans-serif";let h="normal";r.black?h="900":r.bold&&(h="bold");var l=r.italic?"italic":"normal",c=`"${o}", ${r.fallbackName}`;let u=t;t<a?u=a:t>s&&(u=s),this.current.fontSizeScale=t/u,this.ctx.font=`${l} ${h} ${u}px ${c}`},setTextRenderingMode:function(e){this.current.textRenderingMode=e},setTextRise:function(e){this.current.textRise=e},moveText:function(e,t){this.current.x=this.current.lineX+=e,this.current.y=this.current.lineY+=t},setLeadingMoveText:function(e,t){this.setLeading(-t),this.moveText(e,t)},setTextMatrix:function(e,t,r,i,n,a){this.current.textMatrix=[e,t,r,i,n,a],this.current.textMatrixScale=Math.sqrt(e*e+t*t),this.current.x=this.current.lineX=0,this.current.y=this.current.lineY=0},nextLine:function(){this.moveText(0,this.current.leading)},paintChar(e,t,r,n){var a=this.ctx,s=this.current,o=s.font,h=s.textRenderingMode,l=s.fontSize/s.fontSizeScale,c=h&i.TextRenderingMode.FILL_STROKE_MASK,u=!!(h&i.TextRenderingMode.ADD_TO_PATH_FLAG);const f=s.patternFill&&!o.missingFile;var d;if((o.disableFontFace||u||f)&&(d=o.getPathGenerator(this.commonObjs,e)),o.disableFontFace||f?(a.save(),a.translate(t,r),a.beginPath(),d(a,l),n&&a.setTransform.apply(a,n),c!==i.TextRenderingMode.FILL&&c!==i.TextRenderingMode.FILL_STROKE||a.fill(),c!==i.TextRenderingMode.STROKE&&c!==i.TextRenderingMode.FILL_STROKE||a.stroke(),a.restore()):(c!==i.TextRenderingMode.FILL&&c!==i.TextRenderingMode.FILL_STROKE||a.fillText(e,t,r),c!==i.TextRenderingMode.STROKE&&c!==i.TextRenderingMode.FILL_STROKE||a.strokeText(e,t,r)),u){var p=this.pendingTextPaths||(this.pendingTextPaths=[]);p.push({transform:a.mozCurrentTransform,x:t,y:r,fontSize:l,addToPath:d})}},get isFontSubpixelAAEnabled(){const{context:e}=this.cachedCanvases.getCanvas("isFontSubpixelAAEnabled",10,10);e.scale(1.5,1),e.fillText("I",0,10);for(var t=e.getImageData(0,0,10,10).data,r=!1,n=3;n<t.length;n+=4)if(t[n]>0&&t[n]<255){r=!0;break}return(0,i.shadow)(this,"isFontSubpixelAAEnabled",r)},showText:function(e){var t=this.current,r=t.font;if(r.isType3Font)return this.showType3Text(e);var n=t.fontSize;if(0===n)return;var a=this.ctx,s=t.fontSizeScale,o=t.charSpacing,l=t.wordSpacing,c=t.fontDirection,u=t.textHScale*c,f=e.length,d=r.vertical,p=d?1:-1,m=r.defaultVMetrics,g=n*t.fontMatrix[0],b=t.textRenderingMode===i.TextRenderingMode.FILL&&!r.disableFontFace&&!t.patternFill;let v;if(a.save(),t.patternFill){a.save();const e=t.fillColor.getPattern(a,this);v=a.mozCurrentTransform,a.restore(),a.fillStyle=e}a.transform.apply(a,t.textMatrix),a.translate(t.x,t.y+t.textRise),c>0?a.scale(u,-1):a.scale(u,1);var y=t.lineWidth,w=t.textMatrixScale;if(0===w||0===y){var M=t.textRenderingMode&i.TextRenderingMode.FILL_STROKE_MASK;M!==i.TextRenderingMode.STROKE&&M!==i.TextRenderingMode.FILL_STROKE||(this._cachedGetSinglePixelWidth=null,y=this.getSinglePixelWidth()*h)}else y/=w;1!==s&&(a.scale(s,s),y/=s),a.lineWidth=y;var _,S=0;for(_=0;_<f;++_){var k=e[_];if((0,i.isNum)(k))S+=p*k*n/1e3;else{var A,x,C,E,T,R,I,P,O=!1,F=(k.isSpace?l:0)+o,L=k.fontChar,D=k.accent,N=k.width;if(d)T=k.vmetric||m,R=k.vmetric?T[1]:.5*N,R=-R*g,I=T[2]*g,N=T?-T[0]:N,A=R/s,x=(S+I)/s;else A=S/s,x=0;if(r.remeasure&&N>0){var B=1e3*a.measureText(L).width/n*s;if(N<B&&this.isFontSubpixelAAEnabled){var U=N/B;O=!0,a.save(),a.scale(U,1),A/=U}else N!==B&&(A+=(N-B)/2e3*n/s)}this.contentVisible&&(k.isInFont||r.missingFile)&&(b&&!D?a.fillText(L,A,x):(this.paintChar(L,A,x,v),D&&(C=A+n*D.offset.x/s,E=x-n*D.offset.y/s,this.paintChar(D.fontChar,C,E,v)))),P=d?N*g-F*c:N*g+F*c,S+=P,O&&a.restore()}}d?t.y-=S:t.x+=S*u,a.restore()},showType3Text:function(e){var t,r,n,a,s=this.ctx,o=this.current,h=o.font,l=o.fontSize,c=o.fontDirection,u=h.vertical?1:-1,f=o.charSpacing,d=o.wordSpacing,p=o.textHScale*c,m=o.fontMatrix||i.FONT_IDENTITY_MATRIX,g=e.length,b=o.textRenderingMode===i.TextRenderingMode.INVISIBLE;if(!b&&0!==l){for(this._cachedGetSinglePixelWidth=null,s.save(),s.transform.apply(s,o.textMatrix),s.translate(o.x,o.y),s.scale(p,c),t=0;t<g;++t)if(r=e[t],(0,i.isNum)(r))a=u*r*l/1e3,this.ctx.translate(a,0),o.x+=a*p;else{var v=(r.isSpace?d:0)+f,y=h.charProcOperatorList[r.operatorListId];if(y){this.contentVisible&&(this.processingType3=r,this.save(),s.scale(l,l),s.transform.apply(s,m),this.executeOperatorList(y),this.restore());var w=i.Util.applyTransform([r.width,0],m);n=w[0]*l+v,s.translate(n,0),o.x+=n*p}else(0,i.warn)(`Type3 character "${r.operatorListId}" is not available.`)}s.restore(),this.processingType3=null}},setCharWidth:function(e,t){},setCharWidthAndBounds:function(e,t,r,i,n,a){this.ctx.rect(r,i,n-r,a-i),this.clip(),this.endPath()},getColorN_Pattern:function(e){var t;if("TilingPattern"===e[0]){var i=e[1],a=this.baseTransform||this.ctx.mozCurrentTransform.slice(),s={createCanvasGraphics:e=>new r(e,this.commonObjs,this.objs,this.canvasFactory,this.webGLContext)};t=new n.TilingPattern(e,i,this.ctx,s,a)}else t=(0,n.getShadingPatternFromIR)(e);return t},setStrokeColorN:function(){this.current.strokeColor=this.getColorN_Pattern(arguments)},setFillColorN:function(){this.current.fillColor=this.getColorN_Pattern(arguments),this.current.patternFill=!0},setStrokeRGBColor:function(e,t,r){var n=i.Util.makeCssRgb(e,t,r);this.ctx.strokeStyle=n,this.current.strokeColor=n},setFillRGBColor:function(e,t,r){var n=i.Util.makeCssRgb(e,t,r);this.ctx.fillStyle=n,this.current.fillColor=n,this.current.patternFill=!1},shadingFill:function(e){if(this.contentVisible){var t=this.ctx;this.save();var r=(0,n.getShadingPatternFromIR)(e);t.fillStyle=r.getPattern(t,this,!0);var a=t.mozCurrentTransformInverse;if(a){var s=t.canvas,o=s.width,h=s.height,l=i.Util.applyTransform([0,0],a),c=i.Util.applyTransform([0,h],a),u=i.Util.applyTransform([o,0],a),f=i.Util.applyTransform([o,h],a),d=Math.min(l[0],c[0],u[0],f[0]),p=Math.min(l[1],c[1],u[1],f[1]),m=Math.max(l[0],c[0],u[0],f[0]),g=Math.max(l[1],c[1],u[1],f[1]);this.ctx.fillRect(d,p,m-d,g-p)}else this.ctx.fillRect(-1e10,-1e10,2e10,2e10);this.restore()}},beginInlineImage:function(){(0,i.unreachable)("Should not call beginInlineImage")},beginImageData:function(){(0,i.unreachable)("Should not call beginImageData")},paintFormXObjectBegin:function(e,t){if(this.contentVisible&&(this.save(),this.baseTransformStack.push(this.baseTransform),Array.isArray(e)&&6===e.length&&this.transform.apply(this,e),this.baseTransform=this.ctx.mozCurrentTransform,t)){var r=t[2]-t[0],i=t[3]-t[1];this.ctx.rect(t[0],t[1],r,i),this.clip(),this.endPath()}},paintFormXObjectEnd:function(){this.contentVisible&&(this.restore(),this.baseTransform=this.baseTransformStack.pop())},beginGroup:function(e){if(this.contentVisible){this.save();var t=this.ctx;e.isolated||(0,i.info)("TODO: Support non-isolated groups."),e.knockout&&(0,i.warn)("Knockout groups not supported.");var r=t.mozCurrentTransform;if(e.matrix&&t.transform.apply(t,e.matrix),!e.bbox)throw new Error("Bounding box is required.");var n=i.Util.getAxialAlignedBoundingBox(e.bbox,t.mozCurrentTransform),a=[0,0,t.canvas.width,t.canvas.height];n=i.Util.intersect(n,a)||[0,0,0,0];var s=Math.floor(n[0]),h=Math.floor(n[1]),l=Math.max(Math.ceil(n[2])-s,1),c=Math.max(Math.ceil(n[3])-h,1),u=1,f=1;l>o&&(u=l/o,l=o),c>o&&(f=c/o,c=o);var d="groupAt"+this.groupLevel;e.smask&&(d+="_smask_"+this.smaskCounter++%2);var p=this.cachedCanvases.getCanvas(d,l,c,!0),m=p.context;m.scale(1/u,1/f),m.translate(-s,-h),m.transform.apply(m,r),e.smask?this.smaskStack.push({canvas:p.canvas,context:m,offsetX:s,offsetY:h,scaleX:u,scaleY:f,subtype:e.smask.subtype,backdrop:e.smask.backdrop,transferMap:e.smask.transferMap||null,startTransformInverse:null}):(t.setTransform(1,0,0,1,0,0),t.translate(s,h),t.scale(u,f)),v(t,m),this.ctx=m,this.setGState([["BM","source-over"],["ca",1],["CA",1]]),this.groupStack.push(t),this.groupLevel++,this.current.activeSMask=null}},endGroup:function(e){if(this.contentVisible){this.groupLevel--;var t=this.ctx;this.ctx=this.groupStack.pop(),void 0!==this.ctx.imageSmoothingEnabled?this.ctx.imageSmoothingEnabled=!1:this.ctx.mozImageSmoothingEnabled=!1,e.smask?this.tempSMask=this.smaskStack.pop():this.ctx.drawImage(t.canvas,0,0),this.restore()}},beginAnnotations:function(){this.save(),this.baseTransform&&this.ctx.setTransform.apply(this.ctx,this.baseTransform)},endAnnotations:function(){this.restore()},beginAnnotation:function(e,t,r){if(this.save(),y(this.ctx),this.current=new m,Array.isArray(e)&&4===e.length){var i=e[2]-e[0],n=e[3]-e[1];this.ctx.rect(e[0],e[1],i,n),this.clip(),this.endPath()}this.transform.apply(this,t),this.transform.apply(this,r)},endAnnotation:function(){this.restore()},paintImageMaskXObject:function(e){if(this.contentVisible){var t=this.ctx,r=e.width,i=e.height,n=this.current.fillColor,a=this.current.patternFill,s=this.processingType3;if(l&&s&&void 0===s.compiled&&(s.compiled=r<=c&&i<=c?p({data:e.data,width:r,height:i}):null),s&&s.compiled)s.compiled(t);else{var o=this.cachedCanvases.getCanvas("maskCanvas",r,i),h=o.context;h.save(),b(h,e),h.globalCompositeOperation="source-in",h.fillStyle=a?n.getPattern(h,this):n,h.fillRect(0,0,r,i),h.restore(),this.paintInlineImageXObject(o.canvas)}}},paintImageMaskXObjectRepeat(e,t,r=0,i=0,n,a){if(this.contentVisible){var s=e.width,o=e.height,h=this.current.fillColor,l=this.current.patternFill,c=this.cachedCanvases.getCanvas("maskCanvas",s,o),u=c.context;u.save(),b(u,e),u.globalCompositeOperation="source-in",u.fillStyle=l?h.getPattern(u,this):h,u.fillRect(0,0,s,o),u.restore();for(var f=this.ctx,d=0,p=a.length;d<p;d+=2)f.save(),f.transform(t,r,i,n,a[d],a[d+1]),f.scale(1,-1),f.drawImage(c.canvas,0,0,s,o,0,-1,1,1),f.restore()}},paintImageMaskXObjectGroup:function(e){if(this.contentVisible)for(var t=this.ctx,r=this.current.fillColor,i=this.current.patternFill,n=0,a=e.length;n<a;n++){var s=e[n],o=s.width,h=s.height,l=this.cachedCanvases.getCanvas("maskCanvas",o,h),c=l.context;c.save(),b(c,s),c.globalCompositeOperation="source-in",c.fillStyle=i?r.getPattern(c,this):r,c.fillRect(0,0,o,h),c.restore(),t.save(),t.transform.apply(t,s.transform),t.scale(1,-1),t.drawImage(l.canvas,0,0,o,h,0,-1,1,1),t.restore()}},paintImageXObject:function(e){if(!this.contentVisible)return;const t=e.startsWith("g_")?this.commonObjs.get(e):this.objs.get(e);t?this.paintInlineImageXObject(t):(0,i.warn)("Dependent image isn't ready yet")},paintImageXObjectRepeat:function(e,t,r,n){if(!this.contentVisible)return;const a=e.startsWith("g_")?this.commonObjs.get(e):this.objs.get(e);if(a){for(var s=a.width,o=a.height,h=[],l=0,c=n.length;l<c;l+=2)h.push({transform:[t,0,0,r,n[l],n[l+1]],x:0,y:0,w:s,h:o});this.paintInlineImageXObjectGroup(a,h)}else(0,i.warn)("Dependent image isn't ready yet")},paintInlineImageXObject:function(e){if(this.contentVisible){var t=e.width,r=e.height,i=this.ctx;this.save(),i.scale(1/t,-1/r);var n,a,s=i.mozCurrentTransformInverse,o=s[0],h=s[1],l=Math.max(Math.sqrt(o*o+h*h),1),c=s[2],u=s[3],f=Math.max(Math.sqrt(c*c+u*u),1);if("function"===typeof HTMLElement&&e instanceof HTMLElement||!e.data)n=e;else{a=this.cachedCanvases.getCanvas("inlineImage",t,r);var d=a.context;g(d,e,this.current.transferMaps),n=a.canvas}var p=t,m=r,b="prescale1";while(l>2&&p>1||f>2&&m>1){var v=p,y=m;l>2&&p>1&&(v=Math.ceil(p/2),l/=p/v),f>2&&m>1&&(y=Math.ceil(m/2),f/=m/y),a=this.cachedCanvases.getCanvas(b,v,y),d=a.context,d.clearRect(0,0,v,y),d.drawImage(n,0,0,p,m,0,0,v,y),n=a.canvas,p=v,m=y,b="prescale1"===b?"prescale2":"prescale1"}if(i.drawImage(n,0,0,p,m,0,-r,t,r),this.imageLayer){var w=this.getCanvasPosition(0,-r);this.imageLayer.appendImage({imgData:e,left:w[0],top:w[1],width:t/s[0],height:r/s[3]})}this.restore()}},paintInlineImageXObjectGroup:function(e,t){if(this.contentVisible){var r=this.ctx,i=e.width,n=e.height,a=this.cachedCanvases.getCanvas("inlineImage",i,n),s=a.context;g(s,e,this.current.transferMaps);for(var o=0,h=t.length;o<h;o++){var l=t[o];if(r.save(),r.transform.apply(r,l.transform),r.scale(1,-1),r.drawImage(a.canvas,l.x,l.y,l.w,l.h,0,-1,1,1),this.imageLayer){var c=this.getCanvasPosition(l.x,l.y);this.imageLayer.appendImage({imgData:e,left:c[0],top:c[1],width:i,height:n})}r.restore()}}},paintSolidColorImageMask:function(){this.contentVisible&&this.ctx.fillRect(0,0,1,1)},markPoint:function(e){},markPointProps:function(e,t){},beginMarkedContent:function(e){this.markedContentStack.push({visible:!0})},beginMarkedContentProps:function(e,t){"OC"===e?this.markedContentStack.push({visible:this.optionalContentConfig.isVisible(t)}):this.markedContentStack.push({visible:!0}),this.contentVisible=this.isContentVisible()},endMarkedContent:function(){this.markedContentStack.pop(),this.contentVisible=this.isContentVisible()},beginCompat:function(){},endCompat:function(){},consumePath:function(){var e=this.ctx;this.pendingClip&&(this.pendingClip===E?e.clip("evenodd"):e.clip(),this.pendingClip=null),e.beginPath()},getSinglePixelWidth(e){if(null===this._cachedGetSinglePixelWidth){const e=this.ctx.mozCurrentTransformInverse;this._cachedGetSinglePixelWidth=Math.sqrt(Math.max(e[0]*e[0]+e[1]*e[1],e[2]*e[2]+e[3]*e[3]))}return this._cachedGetSinglePixelWidth},getCanvasPosition:function(e,t){var r=this.ctx.mozCurrentTransform;return[r[0]*e+r[2]*t+r[4],r[1]*e+r[3]*t+r[5]]},isContentVisible:function(){for(let e=this.markedContentStack.length-1;e>=0;e--)if(!this.markedContentStack[e].visible)return!1;return!0}},i.OPS)r.prototype[i.OPS[T]]=r.prototype[T];return r}();t.CanvasGraphics=g},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getShadingPatternFromIR=o,t.TilingPattern=void 0;var i=r(2),n={};function a(e,t){if(!t||"undefined"===typeof Path2D)return;const r=t[2]-t[0],i=t[3]-t[1],n=new Path2D;n.rect(t[0],t[1],r,i),e.clip(n)}n.RadialAxial={fromIR:function(e){var t=e[1],r=e[2],i=e[3],n=e[4],s=e[5],o=e[6],h=e[7];return{type:"Pattern",getPattern:function(e){var l;a(e,r),"axial"===t?l=e.createLinearGradient(n[0],n[1],s[0],s[1]):"radial"===t&&(l=e.createRadialGradient(n[0],n[1],o,s[0],s[1],h));for(var c=0,u=i.length;c<u;++c){var f=i[c];l.addColorStop(f[0],f[1])}return l}}}};var s=function(){function e(e,t,r,i,n,a,s,o){var h,l=t.coords,c=t.colors,u=e.data,f=4*e.width;l[r+1]>l[i+1]&&(h=r,r=i,i=h,h=a,a=s,s=h),l[i+1]>l[n+1]&&(h=i,i=n,n=h,h=s,s=o,o=h),l[r+1]>l[i+1]&&(h=r,r=i,i=h,h=a,a=s,s=h);var d=(l[r]+t.offsetX)*t.scaleX,p=(l[r+1]+t.offsetY)*t.scaleY,m=(l[i]+t.offsetX)*t.scaleX,g=(l[i+1]+t.offsetY)*t.scaleY,b=(l[n]+t.offsetX)*t.scaleX,v=(l[n+1]+t.offsetY)*t.scaleY;if(!(p>=v))for(var y,w,M,_,S,k,A,x,C=c[a],E=c[a+1],T=c[a+2],R=c[s],I=c[s+1],P=c[s+2],O=c[o],F=c[o+1],L=c[o+2],D=Math.round(p),N=Math.round(v),B=D;B<=N;B++){if(B<g){let e;e=B<p?0:p===g?1:(p-B)/(p-g),y=d-(d-m)*e,w=C-(C-R)*e,M=E-(E-I)*e,_=T-(T-P)*e}else{let e;e=B>v?1:g===v?0:(g-B)/(g-v),y=m-(m-b)*e,w=R-(R-O)*e,M=I-(I-F)*e,_=P-(P-L)*e}let e;e=B<p?0:B>v?1:(p-B)/(p-v),S=d-(d-b)*e,k=C-(C-O)*e,A=E-(E-F)*e,x=T-(T-L)*e;for(var U=Math.round(Math.min(y,S)),j=Math.round(Math.max(y,S)),q=f*B+4*U,z=U;z<=j;z++)e=(y-z)/(y-S),e<0?e=0:e>1&&(e=1),u[q++]=w-(w-k)*e|0,u[q++]=M-(M-A)*e|0,u[q++]=_-(_-x)*e|0,u[q++]=255}}function t(t,r,i){var n,a,s=r.coords,o=r.colors;switch(r.type){case"lattice":var h=r.verticesPerRow,l=Math.floor(s.length/h)-1,c=h-1;for(n=0;n<l;n++)for(var u=n*h,f=0;f<c;f++,u++)e(t,i,s[u],s[u+1],s[u+h],o[u],o[u+1],o[u+h]),e(t,i,s[u+h+1],s[u+1],s[u+h],o[u+h+1],o[u+1],o[u+h]);break;case"triangles":for(n=0,a=s.length;n<a;n+=3)e(t,i,s[n],s[n+1],s[n+2],o[n],o[n+1],o[n+2]);break;default:throw new Error("illegal figure")}}function r(e,r,i,n,a,s,o,h){var l,c,u,f,d=1.1,p=3e3,m=2,g=Math.floor(e[0]),b=Math.floor(e[1]),v=Math.ceil(e[2])-g,y=Math.ceil(e[3])-b,w=Math.min(Math.ceil(Math.abs(v*r[0]*d)),p),M=Math.min(Math.ceil(Math.abs(y*r[1]*d)),p),_=v/w,S=y/M,k={coords:i,colors:n,offsetX:-g,offsetY:-b,scaleX:1/_,scaleY:1/S},A=w+2*m,x=M+2*m;if(h.isEnabled)l=h.drawFigures({width:w,height:M,backgroundColor:s,figures:a,context:k}),c=o.getCanvas("mesh",A,x,!1),c.context.drawImage(l,m,m),l=c.canvas;else{c=o.getCanvas("mesh",A,x,!1);var C=c.context,E=C.createImageData(w,M);if(s){var T=E.data;for(u=0,f=T.length;u<f;u+=4)T[u]=s[0],T[u+1]=s[1],T[u+2]=s[2],T[u+3]=255}for(u=0;u<a.length;u++)t(E,a[u],k);C.putImageData(E,m,m),l=c.canvas}return{canvas:l,offsetX:g-m*_,offsetY:b-m*S,scaleX:_,scaleY:S}}return r}();function o(e){var t=n[e[0]];if(!t)throw new Error("Unknown IR type: "+e[0]);return t.fromIR(e)}n.Mesh={fromIR:function(e){var t=e[2],r=e[3],n=e[4],o=e[5],h=e[6],l=e[7],c=e[8];return{type:"Pattern",getPattern:function(e,u,f){var d;if(a(e,l),f)d=i.Util.singularValueDecompose2dScale(e.mozCurrentTransform);else if(d=i.Util.singularValueDecompose2dScale(u.baseTransform),h){var p=i.Util.singularValueDecompose2dScale(h);d=[d[0]*p[0],d[1]*p[1]]}var m=s(o,d,t,r,n,f?null:c,u.cachedCanvases,u.webGLContext);return f||(e.setTransform.apply(e,u.baseTransform),h&&e.transform.apply(e,h)),e.translate(m.offsetX,m.offsetY),e.scale(m.scaleX,m.scaleY),e.createPattern(m.canvas,"no-repeat")}}}},n.Dummy={fromIR:function(){return{type:"Pattern",getPattern:function(){return"hotpink"}}}};var h=function(){var e={COLORED:1,UNCOLORED:2},t=3e3;function r(e,t,r,i,n){this.operatorList=e[2],this.matrix=e[3]||[1,0,0,1,0,0],this.bbox=e[4],this.xstep=e[5],this.ystep=e[6],this.paintType=e[7],this.tilingType=e[8],this.color=t,this.canvasGraphicsFactory=i,this.baseTransform=n,this.type="Pattern",this.ctx=r}return r.prototype={createPatternCanvas:function(e){var t=this.operatorList,r=this.bbox,n=this.xstep,a=this.ystep,s=this.paintType,o=this.tilingType,h=this.color,l=this.canvasGraphicsFactory;(0,i.info)("TilingType: "+o);var c=r[0],u=r[1],f=r[2],d=r[3],p=i.Util.singularValueDecompose2dScale(this.matrix),m=i.Util.singularValueDecompose2dScale(this.baseTransform),g=[p[0]*m[0],p[1]*m[1]],b=this.getSizeAndScale(n,this.ctx.canvas.width,g[0]),v=this.getSizeAndScale(a,this.ctx.canvas.height,g[1]),y=e.cachedCanvases.getCanvas("pattern",b.size,v.size,!0),w=y.context,M=l.createCanvasGraphics(w);return M.groupLevel=e.groupLevel,this.setFillAndStrokeStyleToContext(M,s,h),M.transform(b.scale,0,0,v.scale,0,0),M.transform(1,0,0,1,-c,-u),this.clipBbox(M,r,c,u,f,d),M.executeOperatorList(t),this.ctx.transform(1,0,0,1,c,u),this.ctx.scale(1/b.scale,1/v.scale),y.canvas},getSizeAndScale:function(e,r,i){e=Math.abs(e);var n=Math.max(t,r),a=Math.ceil(e*i);return a>=n?a=n:i=a/e,{scale:i,size:a}},clipBbox:function(e,t,r,i,n,a){if(Array.isArray(t)&&4===t.length){var s=n-r,o=a-i;e.ctx.rect(r,i,s,o),e.clip(),e.endPath()}},setFillAndStrokeStyleToContext:function(t,r,n){const a=t.ctx,s=t.current;switch(r){case e.COLORED:var o=this.ctx;a.fillStyle=o.fillStyle,a.strokeStyle=o.strokeStyle,s.fillColor=o.fillStyle,s.strokeColor=o.strokeStyle;break;case e.UNCOLORED:var h=i.Util.makeCssRgb(n[0],n[1],n[2]);a.fillStyle=h,a.strokeStyle=h,s.fillColor=h,s.strokeColor=h;break;default:throw new i.FormatError("Unsupported paint type: "+r)}},getPattern:function(e,t){e=this.ctx,e.setTransform.apply(e,this.baseTransform),e.transform.apply(e,this.matrix);var r=this.createPatternCanvas(t);return e.createPattern(r,"repeat")}},r}();t.TilingPattern=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GlobalWorkerOptions=void 0;const i=Object.create(null);t.GlobalWorkerOptions=i,i.workerPort=void 0===i.workerPort?null:i.workerPort,i.workerSrc=void 0===i.workerSrc?"":i.workerSrc},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MessageHandler=void 0;var i=r(2);const n={UNKNOWN:0,DATA:1,ERROR:2},a={UNKNOWN:0,CANCEL:1,CANCEL_COMPLETE:2,CLOSE:3,ENQUEUE:4,ERROR:5,PULL:6,PULL_COMPLETE:7,START_COMPLETE:8};function s(e){if("object"!==typeof e||null===e)return e;switch(e.name){case"AbortException":return new i.AbortException(e.message);case"MissingPDFException":return new i.MissingPDFException(e.message);case"UnexpectedResponseException":return new i.UnexpectedResponseException(e.message,e.status);case"UnknownErrorException":return new i.UnknownErrorException(e.message,e.details);default:return new i.UnknownErrorException(e.message,e.toString())}}class o{constructor(e,t,r){this.sourceName=e,this.targetName=t,this.comObj=r,this.callbackId=1,this.streamId=1,this.postMessageTransfers=!0,this.streamSinks=Object.create(null),this.streamControllers=Object.create(null),this.callbackCapabilities=Object.create(null),this.actionHandler=Object.create(null),this._onComObjOnMessage=e=>{const t=e.data;if(t.targetName!==this.sourceName)return;if(t.stream)return void this._processStreamMessage(t);if(t.callback){const e=t.callbackId,r=this.callbackCapabilities[e];if(!r)throw new Error("Cannot resolve callback "+e);if(delete this.callbackCapabilities[e],t.callback===n.DATA)r.resolve(t.data);else{if(t.callback!==n.ERROR)throw new Error("Unexpected callback case");r.reject(s(t.reason))}return}const i=this.actionHandler[t.action];if(!i)throw new Error("Unknown action from worker: "+t.action);if(t.callbackId){const e=this.sourceName,a=t.sourceName;new Promise((function(e){e(i(t.data))})).then((function(i){r.postMessage({sourceName:e,targetName:a,callback:n.DATA,callbackId:t.callbackId,data:i})}),(function(i){r.postMessage({sourceName:e,targetName:a,callback:n.ERROR,callbackId:t.callbackId,reason:s(i)})}))}else t.streamId?this._createStreamSink(t):i(t.data)},r.addEventListener("message",this._onComObjOnMessage)}on(e,t){const r=this.actionHandler;if(r[e])throw new Error(`There is already an actionName called "${e}"`);r[e]=t}send(e,t,r){this._postMessage({sourceName:this.sourceName,targetName:this.targetName,action:e,data:t},r)}sendWithPromise(e,t,r){const n=this.callbackId++,a=(0,i.createPromiseCapability)();this.callbackCapabilities[n]=a;try{this._postMessage({sourceName:this.sourceName,targetName:this.targetName,action:e,callbackId:n,data:t},r)}catch(s){a.reject(s)}return a.promise}sendWithStream(e,t,r,n){const o=this.streamId++,h=this.sourceName,l=this.targetName,c=this.comObj;return new ReadableStream({start:r=>{const a=(0,i.createPromiseCapability)();return this.streamControllers[o]={controller:r,startCall:a,pullCall:null,cancelCall:null,isClosed:!1},this._postMessage({sourceName:h,targetName:l,action:e,streamId:o,data:t,desiredSize:r.desiredSize},n),a.promise},pull:e=>{const t=(0,i.createPromiseCapability)();return this.streamControllers[o].pullCall=t,c.postMessage({sourceName:h,targetName:l,stream:a.PULL,streamId:o,desiredSize:e.desiredSize}),t.promise},cancel:e=>{(0,i.assert)(e instanceof Error,"cancel must have a valid reason");const t=(0,i.createPromiseCapability)();return this.streamControllers[o].cancelCall=t,this.streamControllers[o].isClosed=!0,c.postMessage({sourceName:h,targetName:l,stream:a.CANCEL,streamId:o,reason:s(e)}),t.promise}},r)}_createStreamSink(e){const t=this,r=this.actionHandler[e.action],n=e.streamId,o=this.sourceName,h=e.sourceName,l=this.comObj,c={enqueue(e,r=1,s){if(this.isCancelled)return;const l=this.desiredSize;this.desiredSize-=r,l>0&&this.desiredSize<=0&&(this.sinkCapability=(0,i.createPromiseCapability)(),this.ready=this.sinkCapability.promise),t._postMessage({sourceName:o,targetName:h,stream:a.ENQUEUE,streamId:n,chunk:e},s)},close(){this.isCancelled||(this.isCancelled=!0,l.postMessage({sourceName:o,targetName:h,stream:a.CLOSE,streamId:n}),delete t.streamSinks[n])},error(e){(0,i.assert)(e instanceof Error,"error must have a valid reason"),this.isCancelled||(this.isCancelled=!0,l.postMessage({sourceName:o,targetName:h,stream:a.ERROR,streamId:n,reason:s(e)}))},sinkCapability:(0,i.createPromiseCapability)(),onPull:null,onCancel:null,isCancelled:!1,desiredSize:e.desiredSize,ready:null};c.sinkCapability.resolve(),c.ready=c.sinkCapability.promise,this.streamSinks[n]=c,new Promise((function(t){t(r(e.data,c))})).then((function(){l.postMessage({sourceName:o,targetName:h,stream:a.START_COMPLETE,streamId:n,success:!0})}),(function(e){l.postMessage({sourceName:o,targetName:h,stream:a.START_COMPLETE,streamId:n,reason:s(e)})}))}_processStreamMessage(e){const t=e.streamId,r=this.sourceName,n=e.sourceName,o=this.comObj;switch(e.stream){case a.START_COMPLETE:e.success?this.streamControllers[t].startCall.resolve():this.streamControllers[t].startCall.reject(s(e.reason));break;case a.PULL_COMPLETE:e.success?this.streamControllers[t].pullCall.resolve():this.streamControllers[t].pullCall.reject(s(e.reason));break;case a.PULL:if(!this.streamSinks[t]){o.postMessage({sourceName:r,targetName:n,stream:a.PULL_COMPLETE,streamId:t,success:!0});break}this.streamSinks[t].desiredSize<=0&&e.desiredSize>0&&this.streamSinks[t].sinkCapability.resolve(),this.streamSinks[t].desiredSize=e.desiredSize;const{onPull:h}=this.streamSinks[e.streamId];new Promise((function(e){e(h&&h())})).then((function(){o.postMessage({sourceName:r,targetName:n,stream:a.PULL_COMPLETE,streamId:t,success:!0})}),(function(e){o.postMessage({sourceName:r,targetName:n,stream:a.PULL_COMPLETE,streamId:t,reason:s(e)})}));break;case a.ENQUEUE:if((0,i.assert)(this.streamControllers[t],"enqueue should have stream controller"),this.streamControllers[t].isClosed)break;this.streamControllers[t].controller.enqueue(e.chunk);break;case a.CLOSE:if((0,i.assert)(this.streamControllers[t],"close should have stream controller"),this.streamControllers[t].isClosed)break;this.streamControllers[t].isClosed=!0,this.streamControllers[t].controller.close(),this._deleteStreamController(t);break;case a.ERROR:(0,i.assert)(this.streamControllers[t],"error should have stream controller"),this.streamControllers[t].controller.error(s(e.reason)),this._deleteStreamController(t);break;case a.CANCEL_COMPLETE:e.success?this.streamControllers[t].cancelCall.resolve():this.streamControllers[t].cancelCall.reject(s(e.reason)),this._deleteStreamController(t);break;case a.CANCEL:if(!this.streamSinks[t])break;const{onCancel:l}=this.streamSinks[e.streamId];new Promise((function(t){t(l&&l(s(e.reason)))})).then((function(){o.postMessage({sourceName:r,targetName:n,stream:a.CANCEL_COMPLETE,streamId:t,success:!0})}),(function(e){o.postMessage({sourceName:r,targetName:n,stream:a.CANCEL_COMPLETE,streamId:t,reason:s(e)})})),this.streamSinks[t].sinkCapability.reject(s(e.reason)),this.streamSinks[t].isCancelled=!0,delete this.streamSinks[t];break;default:throw new Error("Unexpected stream case")}}async _deleteStreamController(e){await Promise.allSettled([this.streamControllers[e].startCall,this.streamControllers[e].pullCall,this.streamControllers[e].cancelCall].map((function(e){return e&&e.promise}))),delete this.streamControllers[e]}_postMessage(e,t){t&&this.postMessageTransfers?this.comObj.postMessage(e,t):this.comObj.postMessage(e)}destroy(){this.comObj.removeEventListener("message",this._onComObjOnMessage)}}t.MessageHandler=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Metadata=void 0;var i=r(2),n=r(15);class a{constructor(e){(0,i.assert)("string"===typeof e,"Metadata: input is not a string"),e=this._repair(e);const t=new n.SimpleXMLParser,r=t.parseFromString(e);this._metadataMap=new Map,r&&this._parse(r)}_repair(e){return e.replace(/^[^<]+/,"").replace(/>\\376\\377([^<]+)/g,(function(e,t){const r=t.replace(/\\([0-3])([0-7])([0-7])/g,(function(e,t,r,i){return String.fromCharCode(64*t+8*r+1*i)})).replace(/&(amp|apos|gt|lt|quot);/g,(function(e,t){switch(t){case"amp":return"&";case"apos":return"'";case"gt":return">";case"lt":return"<";case"quot":return'"'}throw new Error(`_repair: ${t} isn't defined.`)}));let i="";for(let n=0,a=r.length;n<a;n+=2){const e=256*r.charCodeAt(n)+r.charCodeAt(n+1);i+=e>=32&&e<127&&60!==e&&62!==e&&38!==e?String.fromCharCode(e):"&#x"+(65536+e).toString(16).substring(1)+";"}return">"+i}))}_parse(e){let t=e.documentElement;if("rdf:rdf"!==t.nodeName.toLowerCase()){t=t.firstChild;while(t&&"rdf:rdf"!==t.nodeName.toLowerCase())t=t.nextSibling}const r=t?t.nodeName.toLowerCase():null;if(!t||"rdf:rdf"!==r||!t.hasChildNodes())return;const i=t.childNodes;for(let n=0,a=i.length;n<a;n++){const e=i[n];if("rdf:description"===e.nodeName.toLowerCase())for(let t=0,r=e.childNodes.length;t<r;t++)if("#text"!==e.childNodes[t].nodeName.toLowerCase()){const r=e.childNodes[t],i=r.nodeName.toLowerCase();this._metadataMap.set(i,r.textContent.trim())}}}get(e){return this._metadataMap.has(e)?this._metadataMap.get(e):null}getAll(){return Object.fromEntries(this._metadataMap)}has(e){return this._metadataMap.has(e)}}t.Metadata=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SimpleXMLParser=void 0;const i={NoError:0,EndOfDocument:-1,UnterminatedCdat:-2,UnterminatedXmlDeclaration:-3,UnterminatedDoctypeDeclaration:-4,UnterminatedComment:-5,MalformedElement:-6,OutOfMemory:-7,UnterminatedAttributeValue:-8,UnterminatedElement:-9,ElementNeverBegun:-10};function n(e,t){const r=e[t];return" "===r||"\n"===r||"\r"===r||"\t"===r}function a(e){for(let t=0,r=e.length;t<r;t++)if(!n(e,t))return!1;return!0}class s{_resolveEntities(e){return e.replace(/&([^;]+);/g,(e,t)=>{if("#x"===t.substring(0,2))return String.fromCharCode(parseInt(t.substring(2),16));if("#"===t.substring(0,1))return String.fromCharCode(parseInt(t.substring(1),10));switch(t){case"lt":return"<";case"gt":return">";case"amp":return"&";case"quot":return'"'}return this.onResolveEntity(t)})}_parseContent(e,t){const r=[];let i=t;function a(){while(i<e.length&&n(e,i))++i}while(i<e.length&&!n(e,i)&&">"!==e[i]&&"/"!==e[i])++i;const s=e.substring(t,i);a();while(i<e.length&&">"!==e[i]&&"/"!==e[i]&&"?"!==e[i]){a();let t="",s="";while(i<e.length&&!n(e,i)&&"="!==e[i])t+=e[i],++i;if(a(),"="!==e[i])return null;++i,a();const o=e[i];if('"'!==o&&"'"!==o)return null;const h=e.indexOf(o,++i);if(h<0)return null;s=e.substring(i,h),r.push({name:t,value:this._resolveEntities(s)}),i=h+1,a()}return{name:s,attributes:r,parsed:i-t}}_parseProcessingInstruction(e,t){let r=t;function i(){while(r<e.length&&n(e,r))++r}while(r<e.length&&!n(e,r)&&">"!==e[r]&&"/"!==e[r])++r;const a=e.substring(t,r);i();const s=r;while(r<e.length&&("?"!==e[r]||">"!==e[r+1]))++r;const o=e.substring(s,r);return{name:a,value:o,parsed:r-t}}parseXml(e){let t=0;while(t<e.length){const r=e[t];let n=t;if("<"===r){++n;const t=e[n];let r;switch(t){case"/":if(++n,r=e.indexOf(">",n),r<0)return void this.onError(i.UnterminatedElement);this.onEndElement(e.substring(n,r)),n=r+1;break;case"?":++n;const t=this._parseProcessingInstruction(e,n);if("?>"!==e.substring(n+t.parsed,n+t.parsed+2))return void this.onError(i.UnterminatedXmlDeclaration);this.onPi(t.name,t.value),n+=t.parsed+2;break;case"!":if("--"===e.substring(n+1,n+3)){if(r=e.indexOf("--\x3e",n+3),r<0)return void this.onError(i.UnterminatedComment);this.onComment(e.substring(n+3,r)),n=r+3}else if("[CDATA["===e.substring(n+1,n+8)){if(r=e.indexOf("]]>",n+8),r<0)return void this.onError(i.UnterminatedCdat);this.onCdata(e.substring(n+8,r)),n=r+3}else{if("DOCTYPE"!==e.substring(n+1,n+8))return void this.onError(i.MalformedElement);{const t=e.indexOf("[",n+8);let a=!1;if(r=e.indexOf(">",n+8),r<0)return void this.onError(i.UnterminatedDoctypeDeclaration);if(t>0&&r>t){if(r=e.indexOf("]>",n+8),r<0)return void this.onError(i.UnterminatedDoctypeDeclaration);a=!0}const s=e.substring(n+8,r+(a?1:0));this.onDoctype(s),n=r+(a?2:1)}}break;default:const a=this._parseContent(e,n);if(null===a)return void this.onError(i.MalformedElement);let s=!1;if("/>"===e.substring(n+a.parsed,n+a.parsed+2))s=!0;else if(">"!==e.substring(n+a.parsed,n+a.parsed+1))return void this.onError(i.UnterminatedElement);this.onBeginElement(a.name,a.attributes,s),n+=a.parsed+(s?2:1);break}}else{while(n<e.length&&"<"!==e[n])n++;const r=e.substring(t,n);this.onText(this._resolveEntities(r))}t=n}}onResolveEntity(e){return`&${e};`}onPi(e,t){}onComment(e){}onCdata(e){}onDoctype(e){}onText(e){}onBeginElement(e,t,r){}onEndElement(e){}onError(e){}}class o{constructor(e,t){this.nodeName=e,this.nodeValue=t,Object.defineProperty(this,"parentNode",{value:null,writable:!0})}get firstChild(){return this.childNodes&&this.childNodes[0]}get nextSibling(){const e=this.parentNode.childNodes;if(!e)return;const t=e.indexOf(this);return-1!==t?e[t+1]:void 0}get textContent(){return this.childNodes?this.childNodes.map((function(e){return e.textContent})).join(""):this.nodeValue||""}hasChildNodes(){return this.childNodes&&this.childNodes.length>0}}class h extends s{constructor(){super(),this._currentFragment=null,this._stack=null,this._errorCode=i.NoError}parseFromString(e){if(this._currentFragment=[],this._stack=[],this._errorCode=i.NoError,this.parseXml(e),this._errorCode!==i.NoError)return;const[t]=this._currentFragment;return t?{documentElement:t}:void 0}onResolveEntity(e){switch(e){case"apos":return"'"}return super.onResolveEntity(e)}onText(e){if(a(e))return;const t=new o("#text",e);this._currentFragment.push(t)}onCdata(e){const t=new o("#text",e);this._currentFragment.push(t)}onBeginElement(e,t,r){const i=new o(e);i.childNodes=[],this._currentFragment.push(i),r||(this._stack.push(this._currentFragment),this._currentFragment=i.childNodes)}onEndElement(e){this._currentFragment=this._stack.pop()||[];const t=this._currentFragment[this._currentFragment.length-1];if(t)for(let r=0,i=t.childNodes.length;r<i;r++)t.childNodes[r].parentNode=t}onError(e){this._errorCode=e}}t.SimpleXMLParser=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OptionalContentConfig=void 0;var i=r(2);class n{constructor(e,t){this.visible=!0,this.name=e,this.intent=t}}class a{constructor(e){if(this.name=null,this.creator=null,this._order=null,this._groups=new Map,null!==e){this.name=e.name,this.creator=e.creator,this._order=e.order;for(const t of e.groups)this._groups.set(t.id,new n(t.name,t.intent));if("OFF"===e.baseState)for(const e of this._groups)e.visible=!1;for(const t of e.on)this._groups.get(t).visible=!0;for(const t of e.off)this._groups.get(t).visible=!1}}isVisible(e){if("OCG"===e.type)return this._groups.has(e.id)?this._groups.get(e.id).visible:((0,i.warn)("Optional content group not found: "+e.id),!0);if("OCMD"===e.type){if(e.expression&&(0,i.warn)("Visibility expression not supported yet."),!e.policy||"AnyOn"===e.policy){for(const t of e.ids){if(!this._groups.has(t))return(0,i.warn)("Optional content group not found: "+t),!0;if(this._groups.get(t).visible)return!0}return!1}if("AllOn"===e.policy){for(const t of e.ids){if(!this._groups.has(t))return(0,i.warn)("Optional content group not found: "+t),!0;if(!this._groups.get(t).visible)return!1}return!0}if("AnyOff"===e.policy){for(const t of e.ids){if(!this._groups.has(t))return(0,i.warn)("Optional content group not found: "+t),!0;if(!this._groups.get(t).visible)return!0}return!1}if("AllOff"===e.policy){for(const t of e.ids){if(!this._groups.has(t))return(0,i.warn)("Optional content group not found: "+t),!0;if(this._groups.get(t).visible)return!1}return!0}return(0,i.warn)(`Unknown optional content policy ${e.policy}.`),!0}return(0,i.warn)(`Unknown group type ${e.type}.`),!0}setVisibility(e,t=!0){this._groups.has(e)?this._groups.get(e).visible=!!t:(0,i.warn)("Optional content group not found: "+e)}getOrder(){return this._groups.size?this._order?this._order.slice():Array.from(this._groups.keys()):null}getGroups(){return this._groups.size?Object.fromEntries(this._groups):null}getGroup(e){return this._groups.get(e)||null}}t.OptionalContentConfig=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PDFDataTransportStream=void 0;var i=r(2);class n{constructor(e,t){(0,i.assert)(t,'PDFDataTransportStream - missing required "pdfDataRangeTransport" argument.'),this._queuedChunks=[],this._progressiveDone=e.progressiveDone||!1;const r=e.initialData;if(r&&r.length>0){const e=new Uint8Array(r).buffer;this._queuedChunks.push(e)}this._pdfDataRangeTransport=t,this._isStreamingSupported=!e.disableStream,this._isRangeSupported=!e.disableRange,this._contentLength=e.length,this._fullRequestReader=null,this._rangeReaders=[],this._pdfDataRangeTransport.addRangeListener((e,t)=>{this._onReceiveData({begin:e,chunk:t})}),this._pdfDataRangeTransport.addProgressListener((e,t)=>{this._onProgress({loaded:e,total:t})}),this._pdfDataRangeTransport.addProgressiveReadListener(e=>{this._onReceiveData({chunk:e})}),this._pdfDataRangeTransport.addProgressiveDoneListener(()=>{this._onProgressiveDone()}),this._pdfDataRangeTransport.transportReady()}_onReceiveData(e){const t=new Uint8Array(e.chunk).buffer;if(void 0===e.begin)this._fullRequestReader?this._fullRequestReader._enqueue(t):this._queuedChunks.push(t);else{const r=this._rangeReaders.some((function(r){return r._begin===e.begin&&(r._enqueue(t),!0)}));(0,i.assert)(r,"_onReceiveData - no `PDFDataTransportStreamRangeReader` instance found.")}}get _progressiveDataLength(){return this._fullRequestReader?this._fullRequestReader._loaded:0}_onProgress(e){if(void 0===e.total){const t=this._rangeReaders[0];t&&t.onProgress&&t.onProgress({loaded:e.loaded})}else{const t=this._fullRequestReader;t&&t.onProgress&&t.onProgress({loaded:e.loaded,total:e.total})}}_onProgressiveDone(){this._fullRequestReader&&this._fullRequestReader.progressiveDone(),this._progressiveDone=!0}_removeRangeReader(e){const t=this._rangeReaders.indexOf(e);t>=0&&this._rangeReaders.splice(t,1)}getFullReader(){(0,i.assert)(!this._fullRequestReader,"PDFDataTransportStream.getFullReader can only be called once.");const e=this._queuedChunks;return this._queuedChunks=null,new a(this,e,this._progressiveDone)}getRangeReader(e,t){if(t<=this._progressiveDataLength)return null;const r=new s(this,e,t);return this._pdfDataRangeTransport.requestDataRange(e,t),this._rangeReaders.push(r),r}cancelAllRequests(e){this._fullRequestReader&&this._fullRequestReader.cancel(e);const t=this._rangeReaders.slice(0);t.forEach((function(t){t.cancel(e)})),this._pdfDataRangeTransport.abort()}}t.PDFDataTransportStream=n;class a{constructor(e,t,r=!1){this._stream=e,this._done=r||!1,this._filename=null,this._queuedChunks=t||[],this._loaded=0;for(const i of this._queuedChunks)this._loaded+=i.byteLength;this._requests=[],this._headersReady=Promise.resolve(),e._fullRequestReader=this,this.onProgress=null}_enqueue(e){if(!this._done){if(this._requests.length>0){const t=this._requests.shift();t.resolve({value:e,done:!1})}else this._queuedChunks.push(e);this._loaded+=e.byteLength}}get headersReady(){return this._headersReady}get filename(){return this._filename}get isRangeSupported(){return this._stream._isRangeSupported}get isStreamingSupported(){return this._stream._isStreamingSupported}get contentLength(){return this._stream._contentLength}async read(){if(this._queuedChunks.length>0){const e=this._queuedChunks.shift();return{value:e,done:!1}}if(this._done)return{value:void 0,done:!0};const e=(0,i.createPromiseCapability)();return this._requests.push(e),e.promise}cancel(e){this._done=!0,this._requests.forEach((function(e){e.resolve({value:void 0,done:!0})})),this._requests=[]}progressiveDone(){this._done||(this._done=!0)}}class s{constructor(e,t,r){this._stream=e,this._begin=t,this._end=r,this._queuedChunk=null,this._requests=[],this._done=!1,this.onProgress=null}_enqueue(e){if(!this._done){if(0===this._requests.length)this._queuedChunk=e;else{const t=this._requests.shift();t.resolve({value:e,done:!1}),this._requests.forEach((function(e){e.resolve({value:void 0,done:!0})})),this._requests=[]}this._done=!0,this._stream._removeRangeReader(this)}}get isStreamingSupported(){return!1}async read(){if(this._queuedChunk){const e=this._queuedChunk;return this._queuedChunk=null,{value:e,done:!1}}if(this._done)return{value:void 0,done:!0};const e=(0,i.createPromiseCapability)();return this._requests.push(e),e.promise}cancel(e){this._done=!0,this._requests.forEach((function(e){e.resolve({value:void 0,done:!0})})),this._requests=[],this._stream._removeRangeReader(this)}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WebGLContext=void 0;var i=r(2);class n{constructor({enable:e=!1}){this._enabled=!0===e}get isEnabled(){let e=this._enabled;return e&&(e=a.tryInitGL()),(0,i.shadow)(this,"isEnabled",e)}composeSMask({layer:e,mask:t,properties:r}){return a.composeSMask(e,t,r)}drawFigures({width:e,height:t,backgroundColor:r,figures:i,context:n}){return a.drawFigures(e,t,r,i,n)}clear(){a.cleanup()}}t.WebGLContext=n;var a=function(){function e(e,t,r){var i=e.createShader(r);e.shaderSource(i,t),e.compileShader(i);var n=e.getShaderParameter(i,e.COMPILE_STATUS);if(!n){var a=e.getShaderInfoLog(i);throw new Error("Error during shader compilation: "+a)}return i}function t(t,r){return e(t,r,t.VERTEX_SHADER)}function r(t,r){return e(t,r,t.FRAGMENT_SHADER)}function i(e,t){for(var r=e.createProgram(),i=0,n=t.length;i<n;++i)e.attachShader(r,t[i]);e.linkProgram(r);var a=e.getProgramParameter(r,e.LINK_STATUS);if(!a){var s=e.getProgramInfoLog(r);throw new Error("Error during program linking: "+s)}return r}function n(e,t,r){e.activeTexture(r);var i=e.createTexture();return e.bindTexture(e.TEXTURE_2D,i),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.NEAREST),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,t),i}var a,s;function o(){a||(s=document.createElement("canvas"),a=s.getContext("webgl",{premultipliedalpha:!1}))}var h=" attribute vec2 a_position; attribute vec2 a_texCoord; uniform vec2 u_resolution; varying vec2 v_texCoord; void main() { vec2 clipSpace = (a_position / u_resolution) * 2.0 - 1.0; gl_Position = vec4(clipSpace * vec2(1, -1), 0, 1); v_texCoord = a_texCoord; } ",l=" precision mediump float; uniform vec4 u_backdrop; uniform int u_subtype; uniform sampler2D u_image; uniform sampler2D u_mask; varying vec2 v_texCoord; void main() { vec4 imageColor = texture2D(u_image, v_texCoord); vec4 maskColor = texture2D(u_mask, v_texCoord); if (u_backdrop.a > 0.0) { maskColor.rgb = maskColor.rgb * maskColor.a + u_backdrop.rgb * (1.0 - maskColor.a); } float lum; if (u_subtype == 0) { lum = maskColor.a; } else { lum = maskColor.r * 0.3 + maskColor.g * 0.59 + maskColor.b * 0.11; } imageColor.a *= lum; imageColor.rgb *= imageColor.a; gl_FragColor = imageColor; } ",c=null;function u(){var e,n;o(),e=s,s=null,n=a,a=null;var u=t(n,h),f=r(n,l),d=i(n,[u,f]);n.useProgram(d);var p={};p.gl=n,p.canvas=e,p.resolutionLocation=n.getUniformLocation(d,"u_resolution"),p.positionLocation=n.getAttribLocation(d,"a_position"),p.backdropLocation=n.getUniformLocation(d,"u_backdrop"),p.subtypeLocation=n.getUniformLocation(d,"u_subtype");var m=n.getAttribLocation(d,"a_texCoord"),g=n.getUniformLocation(d,"u_image"),b=n.getUniformLocation(d,"u_mask"),v=n.createBuffer();n.bindBuffer(n.ARRAY_BUFFER,v),n.bufferData(n.ARRAY_BUFFER,new Float32Array([0,0,1,0,0,1,0,1,1,0,1,1]),n.STATIC_DRAW),n.enableVertexAttribArray(m),n.vertexAttribPointer(m,2,n.FLOAT,!1,0,0),n.uniform1i(g,0),n.uniform1i(b,1),c=p}function f(e,t,r){var i=e.width,a=e.height;c||u();var s=c,o=s.canvas,h=s.gl;o.width=i,o.height=a,h.viewport(0,0,h.drawingBufferWidth,h.drawingBufferHeight),h.uniform2f(s.resolutionLocation,i,a),r.backdrop?h.uniform4f(s.resolutionLocation,r.backdrop[0],r.backdrop[1],r.backdrop[2],1):h.uniform4f(s.resolutionLocation,0,0,0,0),h.uniform1i(s.subtypeLocation,"Luminosity"===r.subtype?1:0);var l=n(h,e,h.TEXTURE0),f=n(h,t,h.TEXTURE1),d=h.createBuffer();return h.bindBuffer(h.ARRAY_BUFFER,d),h.bufferData(h.ARRAY_BUFFER,new Float32Array([0,0,i,0,0,a,0,a,i,0,i,a]),h.STATIC_DRAW),h.enableVertexAttribArray(s.positionLocation),h.vertexAttribPointer(s.positionLocation,2,h.FLOAT,!1,0,0),h.clearColor(0,0,0,0),h.enable(h.BLEND),h.blendFunc(h.ONE,h.ONE_MINUS_SRC_ALPHA),h.clear(h.COLOR_BUFFER_BIT),h.drawArrays(h.TRIANGLES,0,6),h.flush(),h.deleteTexture(l),h.deleteTexture(f),h.deleteBuffer(d),o}var d=" attribute vec2 a_position; attribute vec3 a_color; uniform vec2 u_resolution; uniform vec2 u_scale; uniform vec2 u_offset; varying vec4 v_color; void main() { vec2 position = (a_position + u_offset) * u_scale; vec2 clipSpace = (position / u_resolution) * 2.0 - 1.0; gl_Position = vec4(clipSpace * vec2(1, -1), 0, 1); v_color = vec4(a_color / 255.0, 1.0); } ",p=" precision mediump float; varying vec4 v_color; void main() { gl_FragColor = v_color; } ",m=null;function g(){var e,n;o(),e=s,s=null,n=a,a=null;var h=t(n,d),l=r(n,p),c=i(n,[h,l]);n.useProgram(c);var u={};u.gl=n,u.canvas=e,u.resolutionLocation=n.getUniformLocation(c,"u_resolution"),u.scaleLocation=n.getUniformLocation(c,"u_scale"),u.offsetLocation=n.getUniformLocation(c,"u_offset"),u.positionLocation=n.getAttribLocation(c,"a_position"),u.colorLocation=n.getAttribLocation(c,"a_color"),m=u}function b(e,t,r,i,n){m||g();var a=m,s=a.canvas,o=a.gl;s.width=e,s.height=t,o.viewport(0,0,o.drawingBufferWidth,o.drawingBufferHeight),o.uniform2f(a.resolutionLocation,e,t);var h,l,c,u=0;for(h=0,l=i.length;h<l;h++)switch(i[h].type){case"lattice":c=i[h].coords.length/i[h].verticesPerRow|0,u+=(c-1)*(i[h].verticesPerRow-1)*6;break;case"triangles":u+=i[h].coords.length;break}var f=new Float32Array(2*u),d=new Uint8Array(3*u),p=n.coords,b=n.colors,v=0,y=0;for(h=0,l=i.length;h<l;h++){var w=i[h],M=w.coords,_=w.colors;switch(w.type){case"lattice":var S=w.verticesPerRow;c=M.length/S|0;for(var k=1;k<c;k++)for(var A=k*S+1,x=1;x<S;x++,A++)f[v]=p[M[A-S-1]],f[v+1]=p[M[A-S-1]+1],f[v+2]=p[M[A-S]],f[v+3]=p[M[A-S]+1],f[v+4]=p[M[A-1]],f[v+5]=p[M[A-1]+1],d[y]=b[_[A-S-1]],d[y+1]=b[_[A-S-1]+1],d[y+2]=b[_[A-S-1]+2],d[y+3]=b[_[A-S]],d[y+4]=b[_[A-S]+1],d[y+5]=b[_[A-S]+2],d[y+6]=b[_[A-1]],d[y+7]=b[_[A-1]+1],d[y+8]=b[_[A-1]+2],f[v+6]=f[v+2],f[v+7]=f[v+3],f[v+8]=f[v+4],f[v+9]=f[v+5],f[v+10]=p[M[A]],f[v+11]=p[M[A]+1],d[y+9]=d[y+3],d[y+10]=d[y+4],d[y+11]=d[y+5],d[y+12]=d[y+6],d[y+13]=d[y+7],d[y+14]=d[y+8],d[y+15]=b[_[A]],d[y+16]=b[_[A]+1],d[y+17]=b[_[A]+2],v+=12,y+=18;break;case"triangles":for(var C=0,E=M.length;C<E;C++)f[v]=p[M[C]],f[v+1]=p[M[C]+1],d[y]=b[_[C]],d[y+1]=b[_[C]+1],d[y+2]=b[_[C]+2],v+=2,y+=3;break}}r?o.clearColor(r[0]/255,r[1]/255,r[2]/255,1):o.clearColor(0,0,0,0),o.clear(o.COLOR_BUFFER_BIT);var T=o.createBuffer();o.bindBuffer(o.ARRAY_BUFFER,T),o.bufferData(o.ARRAY_BUFFER,f,o.STATIC_DRAW),o.enableVertexAttribArray(a.positionLocation),o.vertexAttribPointer(a.positionLocation,2,o.FLOAT,!1,0,0);var R=o.createBuffer();return o.bindBuffer(o.ARRAY_BUFFER,R),o.bufferData(o.ARRAY_BUFFER,d,o.STATIC_DRAW),o.enableVertexAttribArray(a.colorLocation),o.vertexAttribPointer(a.colorLocation,3,o.UNSIGNED_BYTE,!1,0,0),o.uniform2f(a.scaleLocation,n.scaleX,n.scaleY),o.uniform2f(a.offsetLocation,n.offsetX,n.offsetY),o.drawArrays(o.TRIANGLES,0,u),o.flush(),o.deleteBuffer(T),o.deleteBuffer(R),s}return{tryInitGL(){try{return o(),!!a}catch(e){}return!1},composeSMask:f,drawFigures:b,cleanup(){c&&c.canvas&&(c.canvas.width=0,c.canvas.height=0),m&&m.canvas&&(m.canvas.width=0,m.canvas.height=0),c=null,m=null}}}()},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AnnotationLayer=void 0;var i=r(1),n=r(2),a=r(8);class s{static create(e){const t=e.data.annotationType;switch(t){case n.AnnotationType.LINK:return new h(e);case n.AnnotationType.TEXT:return new l(e);case n.AnnotationType.WIDGET:const t=e.data.fieldType;switch(t){case"Tx":return new u(e);case"Btn":return e.data.radioButton?new d(e):e.data.checkBox?new f(e):new p(e);case"Ch":return new m(e)}return new c(e);case n.AnnotationType.POPUP:return new g(e);case n.AnnotationType.FREETEXT:return new v(e);case n.AnnotationType.LINE:return new y(e);case n.AnnotationType.SQUARE:return new w(e);case n.AnnotationType.CIRCLE:return new M(e);case n.AnnotationType.POLYLINE:return new _(e);case n.AnnotationType.CARET:return new k(e);case n.AnnotationType.INK:return new A(e);case n.AnnotationType.POLYGON:return new S(e);case n.AnnotationType.HIGHLIGHT:return new x(e);case n.AnnotationType.UNDERLINE:return new C(e);case n.AnnotationType.SQUIGGLY:return new E(e);case n.AnnotationType.STRIKEOUT:return new T(e);case n.AnnotationType.STAMP:return new R(e);case n.AnnotationType.FILEATTACHMENT:return new I(e);default:return new o(e)}}}class o{constructor(e,t=!1,r=!1){this.isRenderable=t,this.data=e.data,this.layer=e.layer,this.page=e.page,this.viewport=e.viewport,this.linkService=e.linkService,this.downloadManager=e.downloadManager,this.imageResourcesPath=e.imageResourcesPath,this.renderInteractiveForms=e.renderInteractiveForms,this.svgFactory=e.svgFactory,this.annotationStorage=e.annotationStorage,t&&(this.container=this._createContainer(r))}_createContainer(e=!1){const t=this.data,r=this.page,i=this.viewport,a=document.createElement("section");let s=t.rect[2]-t.rect[0],o=t.rect[3]-t.rect[1];a.setAttribute("data-annotation-id",t.id);const h=n.Util.normalizeRect([t.rect[0],r.view[3]-t.rect[1]+r.view[1],t.rect[2],r.view[3]-t.rect[3]+r.view[1]]);if(a.style.transform=`matrix(${i.transform.join(",")})`,a.style.transformOrigin=`-${h[0]}px -${h[1]}px`,!e&&t.borderStyle.width>0){a.style.borderWidth=t.borderStyle.width+"px",t.borderStyle.style!==n.AnnotationBorderStyleType.UNDERLINE&&(s-=2*t.borderStyle.width,o-=2*t.borderStyle.width);const e=t.borderStyle.horizontalCornerRadius,r=t.borderStyle.verticalCornerRadius;if(e>0||r>0){const t=`${e}px / ${r}px`;a.style.borderRadius=t}switch(t.borderStyle.style){case n.AnnotationBorderStyleType.SOLID:a.style.borderStyle="solid";break;case n.AnnotationBorderStyleType.DASHED:a.style.borderStyle="dashed";break;case n.AnnotationBorderStyleType.BEVELED:(0,n.warn)("Unimplemented border style: beveled");break;case n.AnnotationBorderStyleType.INSET:(0,n.warn)("Unimplemented border style: inset");break;case n.AnnotationBorderStyleType.UNDERLINE:a.style.borderBottomStyle="solid";break;default:break}t.color?a.style.borderColor=n.Util.makeCssRgb(0|t.color[0],0|t.color[1],0|t.color[2]):a.style.borderWidth=0}return a.style.left=h[0]+"px",a.style.top=h[1]+"px",a.style.width=s+"px",a.style.height=o+"px",a}_createPopup(e,t,r){t||(t=document.createElement("div"),t.style.height=e.style.height,t.style.width=e.style.width,e.appendChild(t));const i=new b({container:e,trigger:t,color:r.color,title:r.title,modificationDate:r.modificationDate,contents:r.contents,hideWrapper:!0}),n=i.render();n.style.left=e.style.width,e.appendChild(n)}render(){(0,n.unreachable)("Abstract method `AnnotationElement.render` called")}}class h extends o{constructor(e){const t=!!(e.data.url||e.data.dest||e.data.action);super(e,t)}render(){this.container.className="linkAnnotation";const{data:e,linkService:t}=this,r=document.createElement("a");return e.url?(0,i.addLinkAttributes)(r,{url:e.url,target:e.newWindow?i.LinkTarget.BLANK:t.externalLinkTarget,rel:t.externalLinkRel,enabled:t.externalLinkEnabled}):e.action?this._bindNamedAction(r,e.action):this._bindLink(r,e.dest),this.container.appendChild(r),this.container}_bindLink(e,t){e.href=this.linkService.getDestinationHash(t),e.onclick=()=>(t&&this.linkService.navigateTo(t),!1),t&&(e.className="internalLink")}_bindNamedAction(e,t){e.href=this.linkService.getAnchorUrl(""),e.onclick=()=>(this.linkService.executeNamedAction(t),!1),e.className="internalLink"}}class l extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t)}render(){this.container.className="textAnnotation";const e=document.createElement("img");return e.style.height=this.container.style.height,e.style.width=this.container.style.width,e.src=this.imageResourcesPath+"annotation-"+this.data.name.toLowerCase()+".svg",e.alt="[{{type}} Annotation]",e.dataset.l10nId="text_annotation_type",e.dataset.l10nArgs=JSON.stringify({type:this.data.name}),this.data.hasPopup||this._createPopup(this.container,e,this.data),this.container.appendChild(e),this.container}}class c extends o{render(){return this.container}}class u extends c{constructor(e){const t=e.renderInteractiveForms||!e.data.hasAppearance&&!!e.data.fieldValue;super(e,t)}render(){const e=["left","center","right"],t=this.annotationStorage,r=this.data.id;this.container.className="textWidgetAnnotation";let i=null;if(this.renderInteractiveForms){const e=t.getOrCreateValue(r,this.data.fieldValue);if(this.data.multiLine?(i=document.createElement("textarea"),i.textContent=e):(i=document.createElement("input"),i.type="text",i.setAttribute("value",e)),i.addEventListener("input",(function(e){t.setValue(r,e.target.value)})),i.disabled=this.data.readOnly,i.name=this.data.fieldName,null!==this.data.maxLen&&(i.maxLength=this.data.maxLen),this.data.comb){const e=this.data.rect[2]-this.data.rect[0],t=e/this.data.maxLen;i.classList.add("comb"),i.style.letterSpacing=`calc(${t}px - 1ch)`}}else{i=document.createElement("div"),i.textContent=this.data.fieldValue,i.style.verticalAlign="middle",i.style.display="table-cell";let e=null;this.data.fontRefName&&this.page.commonObjs.has(this.data.fontRefName)&&(e=this.page.commonObjs.get(this.data.fontRefName)),this._setTextStyle(i,e)}return null!==this.data.textAlignment&&(i.style.textAlign=e[this.data.textAlignment]),this.container.appendChild(i),this.container}_setTextStyle(e,t){const r=e.style;if(r.fontSize=this.data.fontSize+"px",r.direction=this.data.fontDirection<0?"rtl":"ltr",!t)return;let i="normal";t.black?i="900":t.bold&&(i="bold"),r.fontWeight=i,r.fontStyle=t.italic?"italic":"normal";const n=t.loadedName?`"${t.loadedName}", `:"",a=t.fallbackName||"Helvetica, sans-serif";r.fontFamily=n+a}}class f extends c{constructor(e){super(e,e.renderInteractiveForms)}render(){const e=this.annotationStorage,t=this.data,r=t.id,i=e.getOrCreateValue(r,t.fieldValue&&"Off"!==t.fieldValue);this.container.className="buttonWidgetAnnotation checkBox";const n=document.createElement("input");return n.disabled=t.readOnly,n.type="checkbox",n.name=this.data.fieldName,i&&n.setAttribute("checked",!0),n.addEventListener("change",(function(t){e.setValue(r,t.target.checked)})),this.container.appendChild(n),this.container}}class d extends c{constructor(e){super(e,e.renderInteractiveForms)}render(){this.container.className="buttonWidgetAnnotation radioButton";const e=this.annotationStorage,t=this.data,r=t.id,i=e.getOrCreateValue(r,t.fieldValue===t.buttonValue),n=document.createElement("input");return n.disabled=t.readOnly,n.type="radio",n.name=t.fieldName,i&&n.setAttribute("checked",!0),n.addEventListener("change",(function(t){const i=t.target.name;for(const r of document.getElementsByName(i))r!==t.target&&e.setValue(r.parentNode.getAttribute("data-annotation-id"),!1);e.setValue(r,t.target.checked)})),this.container.appendChild(n),this.container}}class p extends h{render(){const e=super.render();return e.className="buttonWidgetAnnotation pushButton",e}}class m extends c{constructor(e){super(e,e.renderInteractiveForms)}render(){this.container.className="choiceWidgetAnnotation";const e=this.annotationStorage,t=this.data.id;e.getOrCreateValue(t,this.data.fieldValue.length>0?this.data.fieldValue[0]:null);const r=document.createElement("select");r.disabled=this.data.readOnly,r.name=this.data.fieldName,this.data.combo||(r.size=this.data.options.length,this.data.multiSelect&&(r.multiple=!0));for(const i of this.data.options){const e=document.createElement("option");e.textContent=i.displayValue,e.value=i.exportValue,this.data.fieldValue.includes(i.exportValue)&&e.setAttribute("selected",!0),r.appendChild(e)}return r.addEventListener("input",(function(r){const i=r.target.options,n=i[i.selectedIndex].value;e.setValue(t,n)})),this.container.appendChild(r),this.container}}class g extends o{constructor(e){const t=!(!e.data.title&&!e.data.contents);super(e,t)}render(){const e=["Line","Square","Circle","PolyLine","Polygon","Ink"];if(this.container.className="popupAnnotation",e.includes(this.data.parentType))return this.container;const t=`[data-annotation-id="${this.data.parentId}"]`,r=this.layer.querySelector(t);if(!r)return this.container;const i=new b({container:this.container,trigger:r,color:this.data.color,title:this.data.title,modificationDate:this.data.modificationDate,contents:this.data.contents}),n=parseFloat(r.style.left),a=parseFloat(r.style.width);return this.container.style.transformOrigin=`-${n+a}px -${r.style.top}`,this.container.style.left=n+a+"px",this.container.appendChild(i.render()),this.container}}class b{constructor(e){this.container=e.container,this.trigger=e.trigger,this.color=e.color,this.title=e.title,this.modificationDate=e.modificationDate,this.contents=e.contents,this.hideWrapper=e.hideWrapper||!1,this.pinned=!1}render(){const e=.7,t=document.createElement("div");t.className="popupWrapper",this.hideElement=this.hideWrapper?t:this.container,this.hideElement.setAttribute("hidden",!0);const r=document.createElement("div");r.className="popup";const a=this.color;if(a){const t=e*(255-a[0])+a[0],i=e*(255-a[1])+a[1],s=e*(255-a[2])+a[2];r.style.backgroundColor=n.Util.makeCssRgb(0|t,0|i,0|s)}const s=document.createElement("h1");s.textContent=this.title,r.appendChild(s);const o=i.PDFDateString.toDateObject(this.modificationDate);if(o){const e=document.createElement("span");e.textContent="{{date}}, {{time}}",e.dataset.l10nId="annotation_date_string",e.dataset.l10nArgs=JSON.stringify({date:o.toLocaleDateString(),time:o.toLocaleTimeString()}),r.appendChild(e)}const h=this._formatContents(this.contents);return r.appendChild(h),this.trigger.addEventListener("click",this._toggle.bind(this)),this.trigger.addEventListener("mouseover",this._show.bind(this,!1)),this.trigger.addEventListener("mouseout",this._hide.bind(this,!1)),r.addEventListener("click",this._hide.bind(this,!0)),t.appendChild(r),t}_formatContents(e){const t=document.createElement("p"),r=e.split(/(?:\r\n?|\n)/);for(let i=0,n=r.length;i<n;++i){const e=r[i];t.appendChild(document.createTextNode(e)),i<n-1&&t.appendChild(document.createElement("br"))}return t}_toggle(){this.pinned?this._hide(!0):this._show(!0)}_show(e=!1){e&&(this.pinned=!0),this.hideElement.hasAttribute("hidden")&&(this.hideElement.removeAttribute("hidden"),this.container.style.zIndex+=1)}_hide(e=!0){e&&(this.pinned=!1),this.hideElement.hasAttribute("hidden")||this.pinned||(this.hideElement.setAttribute("hidden",!0),this.container.style.zIndex-=1)}}class v extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){return this.container.className="freeTextAnnotation",this.data.hasPopup||this._createPopup(this.container,null,this.data),this.container}}class y extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){this.container.className="lineAnnotation";const e=this.data,t=e.rect[2]-e.rect[0],r=e.rect[3]-e.rect[1],i=this.svgFactory.create(t,r),n=this.svgFactory.createElement("svg:line");return n.setAttribute("x1",e.rect[2]-e.lineCoordinates[0]),n.setAttribute("y1",e.rect[3]-e.lineCoordinates[1]),n.setAttribute("x2",e.rect[2]-e.lineCoordinates[2]),n.setAttribute("y2",e.rect[3]-e.lineCoordinates[3]),n.setAttribute("stroke-width",e.borderStyle.width||1),n.setAttribute("stroke","transparent"),i.appendChild(n),this.container.append(i),this._createPopup(this.container,n,e),this.container}}class w extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){this.container.className="squareAnnotation";const e=this.data,t=e.rect[2]-e.rect[0],r=e.rect[3]-e.rect[1],i=this.svgFactory.create(t,r),n=e.borderStyle.width,a=this.svgFactory.createElement("svg:rect");return a.setAttribute("x",n/2),a.setAttribute("y",n/2),a.setAttribute("width",t-n),a.setAttribute("height",r-n),a.setAttribute("stroke-width",n||1),a.setAttribute("stroke","transparent"),a.setAttribute("fill","none"),i.appendChild(a),this.container.append(i),this._createPopup(this.container,a,e),this.container}}class M extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){this.container.className="circleAnnotation";const e=this.data,t=e.rect[2]-e.rect[0],r=e.rect[3]-e.rect[1],i=this.svgFactory.create(t,r),n=e.borderStyle.width,a=this.svgFactory.createElement("svg:ellipse");return a.setAttribute("cx",t/2),a.setAttribute("cy",r/2),a.setAttribute("rx",t/2-n/2),a.setAttribute("ry",r/2-n/2),a.setAttribute("stroke-width",n||1),a.setAttribute("stroke","transparent"),a.setAttribute("fill","none"),i.appendChild(a),this.container.append(i),this._createPopup(this.container,a,e),this.container}}class _ extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0),this.containerClassName="polylineAnnotation",this.svgElementName="svg:polyline"}render(){this.container.className=this.containerClassName;const e=this.data,t=e.rect[2]-e.rect[0],r=e.rect[3]-e.rect[1],i=this.svgFactory.create(t,r);let n=[];for(const s of e.vertices){const t=s.x-e.rect[0],r=e.rect[3]-s.y;n.push(t+","+r)}n=n.join(" ");const a=this.svgFactory.createElement(this.svgElementName);return a.setAttribute("points",n),a.setAttribute("stroke-width",e.borderStyle.width||1),a.setAttribute("stroke","transparent"),a.setAttribute("fill","none"),i.appendChild(a),this.container.append(i),this._createPopup(this.container,a,e),this.container}}class S extends _{constructor(e){super(e),this.containerClassName="polygonAnnotation",this.svgElementName="svg:polygon"}}class k extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){return this.container.className="caretAnnotation",this.data.hasPopup||this._createPopup(this.container,null,this.data),this.container}}class A extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0),this.containerClassName="inkAnnotation",this.svgElementName="svg:polyline"}render(){this.container.className=this.containerClassName;const e=this.data,t=e.rect[2]-e.rect[0],r=e.rect[3]-e.rect[1],i=this.svgFactory.create(t,r);for(const n of e.inkLists){let t=[];for(const i of n){const r=i.x-e.rect[0],n=e.rect[3]-i.y;t.push(`${r},${n}`)}t=t.join(" ");const r=this.svgFactory.createElement(this.svgElementName);r.setAttribute("points",t),r.setAttribute("stroke-width",e.borderStyle.width||1),r.setAttribute("stroke","transparent"),r.setAttribute("fill","none"),this._createPopup(this.container,r,e),i.appendChild(r)}return this.container.append(i),this.container}}class x extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){return this.container.className="highlightAnnotation",this.data.hasPopup||this._createPopup(this.container,null,this.data),this.container}}class C extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){return this.container.className="underlineAnnotation",this.data.hasPopup||this._createPopup(this.container,null,this.data),this.container}}class E extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){return this.container.className="squigglyAnnotation",this.data.hasPopup||this._createPopup(this.container,null,this.data),this.container}}class T extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){return this.container.className="strikeoutAnnotation",this.data.hasPopup||this._createPopup(this.container,null,this.data),this.container}}class R extends o{constructor(e){const t=!!(e.data.hasPopup||e.data.title||e.data.contents);super(e,t,!0)}render(){return this.container.className="stampAnnotation",this.data.hasPopup||this._createPopup(this.container,null,this.data),this.container}}class I extends o{constructor(e){super(e,!0);const{filename:t,content:r}=this.data.file;this.filename=(0,i.getFilenameFromUrl)(t),this.content=r,this.linkService.eventBus&&this.linkService.eventBus.dispatch("fileattachmentannotation",{source:this,id:(0,n.stringToPDFString)(t),filename:t,content:r})}render(){this.container.className="fileAttachmentAnnotation";const e=document.createElement("div");return e.style.height=this.container.style.height,e.style.width=this.container.style.width,e.addEventListener("dblclick",this._download.bind(this)),this.data.hasPopup||!this.data.title&&!this.data.contents||this._createPopup(this.container,e,this.data),this.container.appendChild(e),this.container}_download(){this.downloadManager?this.downloadManager.downloadData(this.content,this.filename,""):(0,n.warn)("Download cannot be started due to unavailable download manager")}}class P{static render(e){const t=[],r=[];for(const i of e.annotations)i&&(i.annotationType!==n.AnnotationType.POPUP?t.push(i):r.push(i));r.length&&t.push(...r);for(const n of t){const t=s.create({data:n,layer:e.div,page:e.page,viewport:e.viewport,linkService:e.linkService,downloadManager:e.downloadManager,imageResourcesPath:e.imageResourcesPath||"",renderInteractiveForms:"boolean"!==typeof e.renderInteractiveForms||e.renderInteractiveForms,svgFactory:new i.DOMSVGFactory,annotationStorage:e.annotationStorage||new a.AnnotationStorage});t.isRenderable&&e.div.appendChild(t.render())}}static update(e){for(const t of e.annotations){const r=e.div.querySelector(`[data-annotation-id="${t.id}"]`);r&&(r.style.transform=`matrix(${e.viewport.transform.join(",")})`)}e.div.removeAttribute("hidden")}}t.AnnotationLayer=P},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.renderTextLayer=void 0;var i=r(2),n=function(){var e=1e5,t=/\S/;function r(e){return!t.test(e)}function n(e,t,n){var a=document.createElement("span"),s={angle:0,canvasWidth:0,isWhitespace:!1,originalTransform:null,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0,scale:1};if(e._textDivs.push(a),r(t.str))return s.isWhitespace=!0,void e._textDivProperties.set(a,s);var o=i.Util.transform(e._viewport.transform,t.transform),h=Math.atan2(o[1],o[0]),l=n[t.fontName];l.vertical&&(h+=Math.PI/2);var c=Math.sqrt(o[2]*o[2]+o[3]*o[3]),u=c;let f,d;l.ascent?u=l.ascent*u:l.descent&&(u=(1+l.descent)*u),0===h?(f=o[4],d=o[5]-u):(f=o[4]+u*Math.sin(h),d=o[5]-u*Math.cos(h)),a.style.left=f+"px",a.style.top=d+"px",a.style.fontSize=c+"px",a.style.fontFamily=l.fontFamily,a.textContent=t.str,e._fontInspectorEnabled&&(a.dataset.fontName=t.fontName),0!==h&&(s.angle=h*(180/Math.PI));let p=!1;if(t.str.length>1)p=!0;else if(t.transform[0]!==t.transform[3]){const e=Math.abs(t.transform[0]),r=Math.abs(t.transform[3]);e!==r&&Math.max(e,r)/Math.min(e,r)>1.5&&(p=!0)}if(p&&(l.vertical?s.canvasWidth=t.height*e._viewport.scale:s.canvasWidth=t.width*e._viewport.scale),e._textDivProperties.set(a,s),e._textContentStream&&e._layoutText(a),e._enhanceTextSelection){var m=1,g=0;0!==h&&(m=Math.cos(h),g=Math.sin(h));var b,v,y=(l.vertical?t.height:t.width)*e._viewport.scale,w=c;0!==h?(b=[m,g,-g,m,f,d],v=i.Util.getAxialAlignedBoundingBox([0,0,y,w],b)):v=[f,d,f+y,d+w],e._bounds.push({left:v[0],top:v[1],right:v[2],bottom:v[3],div:a,size:[y,w],m:b})}}function a(t){if(!t._canceled){var r=t._textDivs,i=t._capability,n=r.length;if(n>e)return t._renderingDone=!0,void i.resolve();if(!t._textContentStream)for(var a=0;a<n;a++)t._layoutText(r[a]);t._renderingDone=!0,i.resolve()}}function s(e,t,r){let i=0;for(let n=0;n<r;n++){const r=e[t++];r>0&&(i=i?Math.min(r,i):r)}return i}function o(e){for(var t=e._bounds,r=e._viewport,n=h(r.width,r.height,t),a=0;a<n.length;a++){var o=t[a].div,l=e._textDivProperties.get(o);if(0!==l.angle){var c=n[a],u=t[a],f=u.m,d=f[0],p=f[1],m=[[0,0],[0,u.size[1]],[u.size[0],0],u.size],g=new Float64Array(64);m.forEach((function(e,t){var r=i.Util.applyTransform(e,f);g[t+0]=d&&(c.left-r[0])/d,g[t+4]=p&&(c.top-r[1])/p,g[t+8]=d&&(c.right-r[0])/d,g[t+12]=p&&(c.bottom-r[1])/p,g[t+16]=p&&(c.left-r[0])/-p,g[t+20]=d&&(c.top-r[1])/d,g[t+24]=p&&(c.right-r[0])/-p,g[t+28]=d&&(c.bottom-r[1])/d,g[t+32]=d&&(c.left-r[0])/-d,g[t+36]=p&&(c.top-r[1])/-p,g[t+40]=d&&(c.right-r[0])/-d,g[t+44]=p&&(c.bottom-r[1])/-p,g[t+48]=p&&(c.left-r[0])/p,g[t+52]=d&&(c.top-r[1])/-d,g[t+56]=p&&(c.right-r[0])/p,g[t+60]=d&&(c.bottom-r[1])/-d}));var b=1+Math.min(Math.abs(d),Math.abs(p));l.paddingLeft=s(g,32,16)/b,l.paddingTop=s(g,48,16)/b,l.paddingRight=s(g,0,16)/b,l.paddingBottom=s(g,16,16)/b,e._textDivProperties.set(o,l)}else l.paddingLeft=t[a].left-n[a].left,l.paddingTop=t[a].top-n[a].top,l.paddingRight=n[a].right-t[a].right,l.paddingBottom=n[a].bottom-t[a].bottom,e._textDivProperties.set(o,l)}}function h(e,t,r){var i=r.map((function(e,t){return{x1:e.left,y1:e.top,x2:e.right,y2:e.bottom,index:t,x1New:void 0,x2New:void 0}}));l(e,i);var n=new Array(r.length);return i.forEach((function(e){var t=e.index;n[t]={left:e.x1New,top:0,right:e.x2New,bottom:0}})),r.map((function(t,r){var a=n[r],s=i[r];s.x1=t.top,s.y1=e-a.right,s.x2=t.bottom,s.y2=e-a.left,s.index=r,s.x1New=void 0,s.x2New=void 0})),l(t,i),i.forEach((function(e){var t=e.index;n[t].top=e.x1New,n[t].bottom=e.x2New})),n}function l(e,t){t.sort((function(e,t){return e.x1-t.x1||e.index-t.index}));var r={x1:-1/0,y1:-1/0,x2:0,y2:1/0,index:-1,x1New:0,x2New:0},i=[{start:-1/0,end:1/0,boundary:r}];t.forEach((function(e){var t=0;while(t<i.length&&i[t].end<=e.y1)t++;var r,n,a=i.length-1;while(a>=0&&i[a].start>=e.y2)a--;var s,o,h=-1/0;for(s=t;s<=a;s++){var l;r=i[s],n=r.boundary,l=n.x2>e.x1?n.index>e.index?n.x1New:e.x1:void 0===n.x2New?(n.x2+e.x1)/2:n.x2New,l>h&&(h=l)}for(e.x1New=h,s=t;s<=a;s++)r=i[s],n=r.boundary,void 0===n.x2New?n.x2>e.x1?n.index>e.index&&(n.x2New=n.x2):n.x2New=h:n.x2New>h&&(n.x2New=Math.max(h,n.x2));var c=[],u=null;for(s=t;s<=a;s++){r=i[s],n=r.boundary;var f=n.x2>e.x2?n:e;u===f?c[c.length-1].end=r.end:(c.push({start:r.start,end:r.end,boundary:f}),u=f)}for(i[t].start<e.y1&&(c[0].start=e.y1,c.unshift({start:i[t].start,end:e.y1,boundary:i[t].boundary})),e.y2<i[a].end&&(c[c.length-1].end=e.y2,c.push({start:e.y2,end:i[a].end,boundary:i[a].boundary})),s=t;s<=a;s++)if(r=i[s],n=r.boundary,void 0===n.x2New){var d=!1;for(o=t-1;!d&&o>=0&&i[o].start>=n.y1;o--)d=i[o].boundary===n;for(o=a+1;!d&&o<i.length&&i[o].end<=n.y2;o++)d=i[o].boundary===n;for(o=0;!d&&o<c.length;o++)d=c[o].boundary===n;d||(n.x2New=h)}Array.prototype.splice.apply(i,[t,a-t+1].concat(c))})),i.forEach((function(t){var r=t.boundary;void 0===r.x2New&&(r.x2New=Math.max(e,r.x2))}))}function c({textContent:e,textContentStream:t,container:r,viewport:n,textDivs:a,textContentItemsStr:s,enhanceTextSelection:o}){this._textContent=e,this._textContentStream=t,this._container=r,this._document=r.ownerDocument,this._viewport=n,this._textDivs=a||[],this._textContentItemsStr=s||[],this._enhanceTextSelection=!!o,this._fontInspectorEnabled=!(!globalThis.FontInspector||!globalThis.FontInspector.enabled),this._reader=null,this._layoutTextLastFontSize=null,this._layoutTextLastFontFamily=null,this._layoutTextCtx=null,this._textDivProperties=new WeakMap,this._renderingDone=!1,this._canceled=!1,this._capability=(0,i.createPromiseCapability)(),this._renderTimer=null,this._bounds=[],this._capability.promise.finally(()=>{this._layoutTextCtx&&(this._layoutTextCtx.canvas.width=0,this._layoutTextCtx.canvas.height=0,this._layoutTextCtx=null)}).catch(()=>{})}function u(e){var t=new c({textContent:e.textContent,textContentStream:e.textContentStream,container:e.container,viewport:e.viewport,textDivs:e.textDivs,textContentItemsStr:e.textContentItemsStr,enhanceTextSelection:e.enhanceTextSelection});return t._render(e.timeout),t}return c.prototype={get promise(){return this._capability.promise},cancel:function(){this._canceled=!0,this._reader&&(this._reader.cancel(new i.AbortException("TextLayer task cancelled.")),this._reader=null),null!==this._renderTimer&&(clearTimeout(this._renderTimer),this._renderTimer=null),this._capability.reject(new Error("TextLayer task cancelled."))},_processItems(e,t){for(let r=0,i=e.length;r<i;r++)this._textContentItemsStr.push(e[r].str),n(this,e[r],t)},_layoutText(e){const t=this._textDivProperties.get(e);if(t.isWhitespace)return;let r="";if(0!==t.canvasWidth){const{fontSize:i,fontFamily:n}=e.style;i===this._layoutTextLastFontSize&&n===this._layoutTextLastFontFamily||(this._layoutTextCtx.font=`${i} ${n}`,this._layoutTextLastFontSize=i,this._layoutTextLastFontFamily=n);const{width:a}=this._layoutTextCtx.measureText(e.textContent);a>0&&(t.scale=t.canvasWidth/a,r=`scaleX(${t.scale})`)}0!==t.angle&&(r=`rotate(${t.angle}deg) ${r}`),r.length>0&&(this._enhanceTextSelection&&(t.originalTransform=r),e.style.transform=r),this._textDivProperties.set(e,t),this._container.appendChild(e)},_render:function(e){const t=(0,i.createPromiseCapability)();let r=Object.create(null);const n=this._document.createElement("canvas");if(n.mozOpaque=!0,this._layoutTextCtx=n.getContext("2d",{alpha:!1}),this._textContent){const e=this._textContent.items,r=this._textContent.styles;this._processItems(e,r),t.resolve()}else{if(!this._textContentStream)throw new Error('Neither "textContent" nor "textContentStream" parameters specified.');{const e=()=>{this._reader.read().then(({value:i,done:n})=>{n?t.resolve():(Object.assign(r,i.styles),this._processItems(i.items,r),e())},t.reject)};this._reader=this._textContentStream.getReader(),e()}}t.promise.then(()=>{r=null,e?this._renderTimer=setTimeout(()=>{a(this),this._renderTimer=null},e):a(this)},this._capability.reject)},expandTextDivs:function(e){if(!this._enhanceTextSelection||!this._renderingDone)return;null!==this._bounds&&(o(this),this._bounds=null);const t=[],r=[];for(var i=0,n=this._textDivs.length;i<n;i++){const n=this._textDivs[i],a=this._textDivProperties.get(n);a.isWhitespace||(e?(t.length=0,r.length=0,a.originalTransform&&t.push(a.originalTransform),a.paddingTop>0?(r.push(a.paddingTop+"px"),t.push(`translateY(${-a.paddingTop}px)`)):r.push(0),a.paddingRight>0?r.push(a.paddingRight/a.scale+"px"):r.push(0),a.paddingBottom>0?r.push(a.paddingBottom+"px"):r.push(0),a.paddingLeft>0?(r.push(a.paddingLeft/a.scale+"px"),t.push(`translateX(${-a.paddingLeft/a.scale}px)`)):r.push(0),n.style.padding=r.join(" "),t.length&&(n.style.transform=t.join(" "))):(n.style.padding=null,n.style.transform=a.originalTransform))}}},u}();t.renderTextLayer=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SVGGraphics=void 0;var i=r(2),n=r(1),a=r(4);let s=function(){throw new Error("Not implemented: SVGGraphics")};t.SVGGraphics=s;{const e={fontStyle:"normal",fontWeight:"normal",fillColor:"#000000"},r="http://www.w3.org/XML/1998/namespace",c="http://www.w3.org/1999/xlink",u=["butt","round","square"],f=["miter","round","bevel"],d=function(){const e=new Uint8Array([137,80,78,71,13,10,26,10]),t=12,r=new Int32Array(256);for(let i=0;i<256;i++){let e=i;for(let t=0;t<8;t++)e=1&e?3988292384^e>>1&2147483647:e>>1&2147483647;r[i]=e}function n(e,t,i){let n=-1;for(let a=t;a<i;a++){const t=255&(n^e[a]),i=r[t];n=n>>>8^i}return-1^n}function s(e,t,r,i){let a=i;const s=t.length;r[a]=s>>24&255,r[a+1]=s>>16&255,r[a+2]=s>>8&255,r[a+3]=255&s,a+=4,r[a]=255&e.charCodeAt(0),r[a+1]=255&e.charCodeAt(1),r[a+2]=255&e.charCodeAt(2),r[a+3]=255&e.charCodeAt(3),a+=4,r.set(t,a),a+=t.length;const o=n(r,i+4,a);r[a]=o>>24&255,r[a+1]=o>>16&255,r[a+2]=o>>8&255,r[a+3]=255&o}function o(e,t,r){let i=1,n=0;for(let a=t;a<r;++a)i=(i+(255&e[a]))%65521,n=(n+i)%65521;return n<<16|i}function h(e){if(!a.isNodeJS)return l(e);try{let t;t=parseInt(process.versions.node)>=8?e:Buffer.from(e);const r=__webpack_require__(5).deflateSync(t,{level:9});return r instanceof Uint8Array?r:new Uint8Array(r)}catch(t){(0,i.warn)("Not compressing PNG because zlib.deflateSync is unavailable: "+t)}return l(e)}function l(e){let t=e.length;const r=65535,i=Math.ceil(t/r),n=new Uint8Array(2+t+5*i+4);let a=0;n[a++]=120,n[a++]=156;let s=0;while(t>r)n[a++]=0,n[a++]=255,n[a++]=255,n[a++]=0,n[a++]=0,n.set(e.subarray(s,s+r),a),a+=r,s+=r,t-=r;n[a++]=1,n[a++]=255&t,n[a++]=t>>8&255,n[a++]=255&~t,n[a++]=(65535&~t)>>8&255,n.set(e.subarray(s),a),a+=e.length-s;const h=o(e,0,e.length);return n[a++]=h>>24&255,n[a++]=h>>16&255,n[a++]=h>>8&255,n[a++]=255&h,n}function c(r,n,a,o){const l=r.width,c=r.height;let u,f,d;const p=r.data;switch(n){case i.ImageKind.GRAYSCALE_1BPP:f=0,u=1,d=l+7>>3;break;case i.ImageKind.RGB_24BPP:f=2,u=8,d=3*l;break;case i.ImageKind.RGBA_32BPP:f=6,u=8,d=4*l;break;default:throw new Error("invalid format")}const m=new Uint8Array((1+d)*c);let g=0,b=0;for(let e=0;e<c;++e)m[g++]=0,m.set(p.subarray(b,b+d),g),b+=d,g+=d;if(n===i.ImageKind.GRAYSCALE_1BPP&&o){g=0;for(let e=0;e<c;e++){g++;for(let e=0;e<d;e++)m[g++]^=255}}const v=new Uint8Array([l>>24&255,l>>16&255,l>>8&255,255&l,c>>24&255,c>>16&255,c>>8&255,255&c,u,f,0,0,0]),y=h(m),w=e.length+3*t+v.length+y.length,M=new Uint8Array(w);let _=0;return M.set(e,_),_+=e.length,s("IHDR",v,M,_),_+=t+v.length,s("IDATA",y,M,_),_+=t+y.length,s("IEND",new Uint8Array(0),M,_),(0,i.createObjectURL)(M,"image/png",a)}return function(e,t,r){const n=void 0===e.kind?i.ImageKind.GRAYSCALE_1BPP:e.kind;return c(e,n,t,r)}}();class p{constructor(){this.fontSizeScale=1,this.fontWeight=e.fontWeight,this.fontSize=0,this.textMatrix=i.IDENTITY_MATRIX,this.fontMatrix=i.FONT_IDENTITY_MATRIX,this.leading=0,this.textRenderingMode=i.TextRenderingMode.FILL,this.textMatrixScale=1,this.x=0,this.y=0,this.lineX=0,this.lineY=0,this.charSpacing=0,this.wordSpacing=0,this.textHScale=1,this.textRise=0,this.fillColor=e.fillColor,this.strokeColor="#000000",this.fillAlpha=1,this.strokeAlpha=1,this.lineWidth=1,this.lineJoin="",this.lineCap="",this.miterLimit=0,this.dashArray=[],this.dashPhase=0,this.dependencies=[],this.activeClipUrl=null,this.clipGroup=null,this.maskId=""}clone(){return Object.create(this)}setCurrentPoint(e,t){this.x=e,this.y=t}}function o(e){let t=[];const r=[];for(const i of e)"save"!==i.fn?"restore"===i.fn?t=r.pop():t.push(i):(t.push({fnId:92,fn:"group",items:[]}),r.push(t),t=t[t.length-1].items);return t}function h(e){if(Number.isInteger(e))return e.toString();const t=e.toFixed(10);let r=t.length-1;if("0"!==t[r])return t;do{r--}while("0"===t[r]);return t.substring(0,"."===t[r]?r:r+1)}function l(e){if(0===e[4]&&0===e[5]){if(0===e[1]&&0===e[2])return 1===e[0]&&1===e[3]?"":`scale(${h(e[0])} ${h(e[3])})`;if(e[0]===e[3]&&e[1]===-e[2]){const t=180*Math.acos(e[0])/Math.PI;return`rotate(${h(t)})`}}else if(1===e[0]&&0===e[1]&&0===e[2]&&1===e[3])return`translate(${h(e[4])} ${h(e[5])})`;return`matrix(${h(e[0])} ${h(e[1])} ${h(e[2])} ${h(e[3])} ${h(e[4])} `+h(e[5])+")"}let m=0,g=0,b=0;t.SVGGraphics=s=class{constructor(e,t,r=!1){this.svgFactory=new n.DOMSVGFactory,this.current=new p,this.transformMatrix=i.IDENTITY_MATRIX,this.transformStack=[],this.extraStack=[],this.commonObjs=e,this.objs=t,this.pendingClip=null,this.pendingEOFill=!1,this.embedFonts=!1,this.embeddedFonts=Object.create(null),this.cssStyle=null,this.forceDataSchema=!!r,this._operatorIdMapping=[];for(const n in i.OPS)this._operatorIdMapping[i.OPS[n]]=n}save(){this.transformStack.push(this.transformMatrix);const e=this.current;this.extraStack.push(e),this.current=e.clone()}restore(){this.transformMatrix=this.transformStack.pop(),this.current=this.extraStack.pop(),this.pendingClip=null,this.tgrp=null}group(e){this.save(),this.executeOpTree(e),this.restore()}loadDependencies(e){const t=e.fnArray,r=e.argsArray;for(let n=0,a=t.length;n<a;n++)if(t[n]===i.OPS.dependency)for(const e of r[n]){const t=e.startsWith("g_")?this.commonObjs:this.objs,r=new Promise(r=>{t.get(e,r)});this.current.dependencies.push(r)}return Promise.all(this.current.dependencies)}transform(e,t,r,n,a,s){const o=[e,t,r,n,a,s];this.transformMatrix=i.Util.transform(this.transformMatrix,o),this.tgrp=null}getSVG(e,t){this.viewport=t;const r=this._initialize(t);return this.loadDependencies(e).then(()=>(this.transformMatrix=i.IDENTITY_MATRIX,this.executeOpTree(this.convertOpList(e)),r))}convertOpList(e){const t=this._operatorIdMapping,r=e.argsArray,i=e.fnArray,n=[];for(let a=0,s=i.length;a<s;a++){const e=i[a];n.push({fnId:e,fn:t[e],args:r[a]})}return o(n)}executeOpTree(e){for(const t of e){const e=t.fn,r=t.fnId,n=t.args;switch(0|r){case i.OPS.beginText:this.beginText();break;case i.OPS.dependency:break;case i.OPS.setLeading:this.setLeading(n);break;case i.OPS.setLeadingMoveText:this.setLeadingMoveText(n[0],n[1]);break;case i.OPS.setFont:this.setFont(n);break;case i.OPS.showText:this.showText(n[0]);break;case i.OPS.showSpacedText:this.showText(n[0]);break;case i.OPS.endText:this.endText();break;case i.OPS.moveText:this.moveText(n[0],n[1]);break;case i.OPS.setCharSpacing:this.setCharSpacing(n[0]);break;case i.OPS.setWordSpacing:this.setWordSpacing(n[0]);break;case i.OPS.setHScale:this.setHScale(n[0]);break;case i.OPS.setTextMatrix:this.setTextMatrix(n[0],n[1],n[2],n[3],n[4],n[5]);break;case i.OPS.setTextRise:this.setTextRise(n[0]);break;case i.OPS.setTextRenderingMode:this.setTextRenderingMode(n[0]);break;case i.OPS.setLineWidth:this.setLineWidth(n[0]);break;case i.OPS.setLineJoin:this.setLineJoin(n[0]);break;case i.OPS.setLineCap:this.setLineCap(n[0]);break;case i.OPS.setMiterLimit:this.setMiterLimit(n[0]);break;case i.OPS.setFillRGBColor:this.setFillRGBColor(n[0],n[1],n[2]);break;case i.OPS.setStrokeRGBColor:this.setStrokeRGBColor(n[0],n[1],n[2]);break;case i.OPS.setStrokeColorN:this.setStrokeColorN(n);break;case i.OPS.setFillColorN:this.setFillColorN(n);break;case i.OPS.shadingFill:this.shadingFill(n[0]);break;case i.OPS.setDash:this.setDash(n[0],n[1]);break;case i.OPS.setRenderingIntent:this.setRenderingIntent(n[0]);break;case i.OPS.setFlatness:this.setFlatness(n[0]);break;case i.OPS.setGState:this.setGState(n[0]);break;case i.OPS.fill:this.fill();break;case i.OPS.eoFill:this.eoFill();break;case i.OPS.stroke:this.stroke();break;case i.OPS.fillStroke:this.fillStroke();break;case i.OPS.eoFillStroke:this.eoFillStroke();break;case i.OPS.clip:this.clip("nonzero");break;case i.OPS.eoClip:this.clip("evenodd");break;case i.OPS.paintSolidColorImageMask:this.paintSolidColorImageMask();break;case i.OPS.paintImageXObject:this.paintImageXObject(n[0]);break;case i.OPS.paintInlineImageXObject:this.paintInlineImageXObject(n[0]);break;case i.OPS.paintImageMaskXObject:this.paintImageMaskXObject(n[0]);break;case i.OPS.paintFormXObjectBegin:this.paintFormXObjectBegin(n[0],n[1]);break;case i.OPS.paintFormXObjectEnd:this.paintFormXObjectEnd();break;case i.OPS.closePath:this.closePath();break;case i.OPS.closeStroke:this.closeStroke();break;case i.OPS.closeFillStroke:this.closeFillStroke();break;case i.OPS.closeEOFillStroke:this.closeEOFillStroke();break;case i.OPS.nextLine:this.nextLine();break;case i.OPS.transform:this.transform(n[0],n[1],n[2],n[3],n[4],n[5]);break;case i.OPS.constructPath:this.constructPath(n[0],n[1]);break;case i.OPS.endPath:this.endPath();break;case 92:this.group(t.items);break;default:(0,i.warn)("Unimplemented operator "+e);break}}}setWordSpacing(e){this.current.wordSpacing=e}setCharSpacing(e){this.current.charSpacing=e}nextLine(){this.moveText(0,this.current.leading)}setTextMatrix(e,t,r,i,n,a){const s=this.current;s.textMatrix=s.lineMatrix=[e,t,r,i,n,a],s.textMatrixScale=Math.sqrt(e*e+t*t),s.x=s.lineX=0,s.y=s.lineY=0,s.xcoords=[],s.ycoords=[],s.tspan=this.svgFactory.createElement("svg:tspan"),s.tspan.setAttributeNS(null,"font-family",s.fontFamily),s.tspan.setAttributeNS(null,"font-size",h(s.fontSize)+"px"),s.tspan.setAttributeNS(null,"y",h(-s.y)),s.txtElement=this.svgFactory.createElement("svg:text"),s.txtElement.appendChild(s.tspan)}beginText(){const e=this.current;e.x=e.lineX=0,e.y=e.lineY=0,e.textMatrix=i.IDENTITY_MATRIX,e.lineMatrix=i.IDENTITY_MATRIX,e.textMatrixScale=1,e.tspan=this.svgFactory.createElement("svg:tspan"),e.txtElement=this.svgFactory.createElement("svg:text"),e.txtgrp=this.svgFactory.createElement("svg:g"),e.xcoords=[],e.ycoords=[]}moveText(e,t){const r=this.current;r.x=r.lineX+=e,r.y=r.lineY+=t,r.xcoords=[],r.ycoords=[],r.tspan=this.svgFactory.createElement("svg:tspan"),r.tspan.setAttributeNS(null,"font-family",r.fontFamily),r.tspan.setAttributeNS(null,"font-size",h(r.fontSize)+"px"),r.tspan.setAttributeNS(null,"y",h(-r.y))}showText(t){const n=this.current,a=n.font,s=n.fontSize;if(0===s)return;const o=n.fontSizeScale,c=n.charSpacing,u=n.wordSpacing,f=n.fontDirection,d=n.textHScale*f,p=a.vertical,m=p?1:-1,g=a.defaultVMetrics,b=s*n.fontMatrix[0];let v=0;for(const e of t){if(null===e){v+=f*u;continue}if((0,i.isNum)(e)){v+=m*e*s/1e3;continue}const t=(e.isSpace?u:0)+c,r=e.fontChar;let h,l,d,y=e.width;if(p){let t;const r=e.vmetric||g;t=e.vmetric?r[1]:.5*y,t=-t*b;const i=r[2]*b;y=r?-r[0]:y,h=t/o,l=(v+i)/o}else h=v/o,l=0;(e.isInFont||a.missingFile)&&(n.xcoords.push(n.x+h),p&&n.ycoords.push(-n.y+l),n.tspan.textContent+=r),d=p?y*b-t*f:y*b+t*f,v+=d}n.tspan.setAttributeNS(null,"x",n.xcoords.map(h).join(" ")),p?n.tspan.setAttributeNS(null,"y",n.ycoords.map(h).join(" ")):n.tspan.setAttributeNS(null,"y",h(-n.y)),p?n.y-=v:n.x+=v*d,n.tspan.setAttributeNS(null,"font-family",n.fontFamily),n.tspan.setAttributeNS(null,"font-size",h(n.fontSize)+"px"),n.fontStyle!==e.fontStyle&&n.tspan.setAttributeNS(null,"font-style",n.fontStyle),n.fontWeight!==e.fontWeight&&n.tspan.setAttributeNS(null,"font-weight",n.fontWeight);const y=n.textRenderingMode&i.TextRenderingMode.FILL_STROKE_MASK;if(y===i.TextRenderingMode.FILL||y===i.TextRenderingMode.FILL_STROKE?(n.fillColor!==e.fillColor&&n.tspan.setAttributeNS(null,"fill",n.fillColor),n.fillAlpha<1&&n.tspan.setAttributeNS(null,"fill-opacity",n.fillAlpha)):n.textRenderingMode===i.TextRenderingMode.ADD_TO_PATH?n.tspan.setAttributeNS(null,"fill","transparent"):n.tspan.setAttributeNS(null,"fill","none"),y===i.TextRenderingMode.STROKE||y===i.TextRenderingMode.FILL_STROKE){const e=1/(n.textMatrixScale||1);this._setStrokeAttributes(n.tspan,e)}let w=n.textMatrix;0!==n.textRise&&(w=w.slice(),w[5]+=n.textRise),n.txtElement.setAttributeNS(null,"transform",`${l(w)} scale(${h(d)}, -1)`),n.txtElement.setAttributeNS(r,"xml:space","preserve"),n.txtElement.appendChild(n.tspan),n.txtgrp.appendChild(n.txtElement),this._ensureTransformGroup().appendChild(n.txtElement)}setLeadingMoveText(e,t){this.setLeading(-t),this.moveText(e,t)}addFontStyle(e){if(!e.data)throw new Error('addFontStyle: No font data available, ensure that the "fontExtraProperties" API parameter is set.');this.cssStyle||(this.cssStyle=this.svgFactory.createElement("svg:style"),this.cssStyle.setAttributeNS(null,"type","text/css"),this.defs.appendChild(this.cssStyle));const t=(0,i.createObjectURL)(e.data,e.mimetype,this.forceDataSchema);this.cssStyle.textContent+=`@font-face { font-family: "${e.loadedName}"; src: url(${t}); }\n`}setFont(e){const t=this.current,r=this.commonObjs.get(e[0]);let n=e[1];t.font=r,!this.embedFonts||r.missingFile||this.embeddedFonts[r.loadedName]||(this.addFontStyle(r),this.embeddedFonts[r.loadedName]=r),t.fontMatrix=r.fontMatrix?r.fontMatrix:i.FONT_IDENTITY_MATRIX;let a="normal";r.black?a="900":r.bold&&(a="bold");const s=r.italic?"italic":"normal";n<0?(n=-n,t.fontDirection=-1):t.fontDirection=1,t.fontSize=n,t.fontFamily=r.loadedName,t.fontWeight=a,t.fontStyle=s,t.tspan=this.svgFactory.createElement("svg:tspan"),t.tspan.setAttributeNS(null,"y",h(-t.y)),t.xcoords=[],t.ycoords=[]}endText(){const e=this.current;e.textRenderingMode&i.TextRenderingMode.ADD_TO_PATH_FLAG&&e.txtElement&&e.txtElement.hasChildNodes()&&(e.element=e.txtElement,this.clip("nonzero"),this.endPath())}setLineWidth(e){e>0&&(this.current.lineWidth=e)}setLineCap(e){this.current.lineCap=u[e]}setLineJoin(e){this.current.lineJoin=f[e]}setMiterLimit(e){this.current.miterLimit=e}setStrokeAlpha(e){this.current.strokeAlpha=e}setStrokeRGBColor(e,t,r){this.current.strokeColor=i.Util.makeCssRgb(e,t,r)}setFillAlpha(e){this.current.fillAlpha=e}setFillRGBColor(e,t,r){this.current.fillColor=i.Util.makeCssRgb(e,t,r),this.current.tspan=this.svgFactory.createElement("svg:tspan"),this.current.xcoords=[],this.current.ycoords=[]}setStrokeColorN(e){this.current.strokeColor=this._makeColorN_Pattern(e)}setFillColorN(e){this.current.fillColor=this._makeColorN_Pattern(e)}shadingFill(e){const t=this.viewport.width,r=this.viewport.height,n=i.Util.inverseTransform(this.transformMatrix),a=i.Util.applyTransform([0,0],n),s=i.Util.applyTransform([0,r],n),o=i.Util.applyTransform([t,0],n),h=i.Util.applyTransform([t,r],n),l=Math.min(a[0],s[0],o[0],h[0]),c=Math.min(a[1],s[1],o[1],h[1]),u=Math.max(a[0],s[0],o[0],h[0]),f=Math.max(a[1],s[1],o[1],h[1]),d=this.svgFactory.createElement("svg:rect");d.setAttributeNS(null,"x",l),d.setAttributeNS(null,"y",c),d.setAttributeNS(null,"width",u-l),d.setAttributeNS(null,"height",f-c),d.setAttributeNS(null,"fill",this._makeShadingPattern(e)),this.current.fillAlpha<1&&d.setAttributeNS(null,"fill-opacity",this.current.fillAlpha),this._ensureTransformGroup().appendChild(d)}_makeColorN_Pattern(e){return"TilingPattern"===e[0]?this._makeTilingPattern(e):this._makeShadingPattern(e)}_makeTilingPattern(e){const t=e[1],r=e[2],n=e[3]||i.IDENTITY_MATRIX,[a,s,o,h]=e[4],l=e[5],c=e[6],u=e[7],f="shading"+b++,[d,p]=i.Util.applyTransform([a,s],n),[m,g]=i.Util.applyTransform([o,h],n),[v,y]=i.Util.singularValueDecompose2dScale(n),w=l*v,M=c*y,_=this.svgFactory.createElement("svg:pattern");_.setAttributeNS(null,"id",f),_.setAttributeNS(null,"patternUnits","userSpaceOnUse"),_.setAttributeNS(null,"width",w),_.setAttributeNS(null,"height",M),_.setAttributeNS(null,"x",""+d),_.setAttributeNS(null,"y",""+p);const S=this.svg,k=this.transformMatrix,A=this.current.fillColor,x=this.current.strokeColor,C=this.svgFactory.create(m-d,g-p);if(this.svg=C,this.transformMatrix=n,2===u){const e=i.Util.makeCssRgb(...t);this.current.fillColor=e,this.current.strokeColor=e}return this.executeOpTree(this.convertOpList(r)),this.svg=S,this.transformMatrix=k,this.current.fillColor=A,this.current.strokeColor=x,_.appendChild(C.childNodes[0]),this.defs.appendChild(_),`url(#${f})`}_makeShadingPattern(e){switch(e[0]){case"RadialAxial":const t="shading"+b++,r=e[3];let n;switch(e[1]){case"axial":const r=e[4],i=e[5];n=this.svgFactory.createElement("svg:linearGradient"),n.setAttributeNS(null,"id",t),n.setAttributeNS(null,"gradientUnits","userSpaceOnUse"),n.setAttributeNS(null,"x1",r[0]),n.setAttributeNS(null,"y1",r[1]),n.setAttributeNS(null,"x2",i[0]),n.setAttributeNS(null,"y2",i[1]);break;case"radial":const a=e[4],s=e[5],o=e[6],h=e[7];n=this.svgFactory.createElement("svg:radialGradient"),n.setAttributeNS(null,"id",t),n.setAttributeNS(null,"gradientUnits","userSpaceOnUse"),n.setAttributeNS(null,"cx",s[0]),n.setAttributeNS(null,"cy",s[1]),n.setAttributeNS(null,"r",h),n.setAttributeNS(null,"fx",a[0]),n.setAttributeNS(null,"fy",a[1]),n.setAttributeNS(null,"fr",o);break;default:throw new Error("Unknown RadialAxial type: "+e[1])}for(const e of r){const t=this.svgFactory.createElement("svg:stop");t.setAttributeNS(null,"offset",e[0]),t.setAttributeNS(null,"stop-color",e[1]),n.appendChild(t)}return this.defs.appendChild(n),`url(#${t})`;case"Mesh":return(0,i.warn)("Unimplemented pattern Mesh"),null;case"Dummy":return"hotpink";default:throw new Error("Unknown IR type: "+e[0])}}setDash(e,t){this.current.dashArray=e,this.current.dashPhase=t}constructPath(e,t){const r=this.current;let n=r.x,a=r.y,s=[],o=0;for(const l of e)switch(0|l){case i.OPS.rectangle:n=t[o++],a=t[o++];const e=t[o++],r=t[o++],l=n+e,c=a+r;s.push("M",h(n),h(a),"L",h(l),h(a),"L",h(l),h(c),"L",h(n),h(c),"Z");break;case i.OPS.moveTo:n=t[o++],a=t[o++],s.push("M",h(n),h(a));break;case i.OPS.lineTo:n=t[o++],a=t[o++],s.push("L",h(n),h(a));break;case i.OPS.curveTo:n=t[o+4],a=t[o+5],s.push("C",h(t[o]),h(t[o+1]),h(t[o+2]),h(t[o+3]),h(n),h(a)),o+=6;break;case i.OPS.curveTo2:s.push("C",h(n),h(a),h(t[o]),h(t[o+1]),h(t[o+2]),h(t[o+3])),n=t[o+2],a=t[o+3],o+=4;break;case i.OPS.curveTo3:n=t[o+2],a=t[o+3],s.push("C",h(t[o]),h(t[o+1]),h(n),h(a),h(n),h(a)),o+=4;break;case i.OPS.closePath:s.push("Z");break}s=s.join(" "),r.path&&e.length>0&&e[0]!==i.OPS.rectangle&&e[0]!==i.OPS.moveTo?s=r.path.getAttributeNS(null,"d")+s:(r.path=this.svgFactory.createElement("svg:path"),this._ensureTransformGroup().appendChild(r.path)),r.path.setAttributeNS(null,"d",s),r.path.setAttributeNS(null,"fill","none"),r.element=r.path,r.setCurrentPoint(n,a)}endPath(){const e=this.current;if(e.path=null,!this.pendingClip)return;if(!e.element)return void(this.pendingClip=null);const t="clippath"+m++,r=this.svgFactory.createElement("svg:clipPath");r.setAttributeNS(null,"id",t),r.setAttributeNS(null,"transform",l(this.transformMatrix));const i=e.element.cloneNode(!0);"evenodd"===this.pendingClip?i.setAttributeNS(null,"clip-rule","evenodd"):i.setAttributeNS(null,"clip-rule","nonzero"),this.pendingClip=null,r.appendChild(i),this.defs.appendChild(r),e.activeClipUrl&&(e.clipGroup=null,this.extraStack.forEach((function(e){e.clipGroup=null})),r.setAttributeNS(null,"clip-path",e.activeClipUrl)),e.activeClipUrl=`url(#${t})`,this.tgrp=null}clip(e){this.pendingClip=e}closePath(){const e=this.current;if(e.path){const t=e.path.getAttributeNS(null,"d")+"Z";e.path.setAttributeNS(null,"d",t)}}setLeading(e){this.current.leading=-e}setTextRise(e){this.current.textRise=e}setTextRenderingMode(e){this.current.textRenderingMode=e}setHScale(e){this.current.textHScale=e/100}setRenderingIntent(e){}setFlatness(e){}setGState(e){for(const[t,r]of e)switch(t){case"LW":this.setLineWidth(r);break;case"LC":this.setLineCap(r);break;case"LJ":this.setLineJoin(r);break;case"ML":this.setMiterLimit(r);break;case"D":this.setDash(r[0],r[1]);break;case"RI":this.setRenderingIntent(r);break;case"FL":this.setFlatness(r);break;case"Font":this.setFont(r);break;case"CA":this.setStrokeAlpha(r);break;case"ca":this.setFillAlpha(r);break;default:(0,i.warn)("Unimplemented graphic state operator "+t);break}}fill(){const e=this.current;e.element&&(e.element.setAttributeNS(null,"fill",e.fillColor),e.element.setAttributeNS(null,"fill-opacity",e.fillAlpha),this.endPath())}stroke(){const e=this.current;e.element&&(this._setStrokeAttributes(e.element),e.element.setAttributeNS(null,"fill","none"),this.endPath())}_setStrokeAttributes(e,t=1){const r=this.current;let i=r.dashArray;1!==t&&i.length>0&&(i=i.map((function(e){return t*e}))),e.setAttributeNS(null,"stroke",r.strokeColor),e.setAttributeNS(null,"stroke-opacity",r.strokeAlpha),e.setAttributeNS(null,"stroke-miterlimit",h(r.miterLimit)),e.setAttributeNS(null,"stroke-linecap",r.lineCap),e.setAttributeNS(null,"stroke-linejoin",r.lineJoin),e.setAttributeNS(null,"stroke-width",h(t*r.lineWidth)+"px"),e.setAttributeNS(null,"stroke-dasharray",i.map(h).join(" ")),e.setAttributeNS(null,"stroke-dashoffset",h(t*r.dashPhase)+"px")}eoFill(){this.current.element&&this.current.element.setAttributeNS(null,"fill-rule","evenodd"),this.fill()}fillStroke(){this.stroke(),this.fill()}eoFillStroke(){this.current.element&&this.current.element.setAttributeNS(null,"fill-rule","evenodd"),this.fillStroke()}closeStroke(){this.closePath(),this.stroke()}closeFillStroke(){this.closePath(),this.fillStroke()}closeEOFillStroke(){this.closePath(),this.eoFillStroke()}paintSolidColorImageMask(){const e=this.svgFactory.createElement("svg:rect");e.setAttributeNS(null,"x","0"),e.setAttributeNS(null,"y","0"),e.setAttributeNS(null,"width","1px"),e.setAttributeNS(null,"height","1px"),e.setAttributeNS(null,"fill",this.current.fillColor),this._ensureTransformGroup().appendChild(e)}paintImageXObject(e){const t=e.startsWith("g_")?this.commonObjs.get(e):this.objs.get(e);t?this.paintInlineImageXObject(t):(0,i.warn)(`Dependent image with object ID ${e} is not ready yet`)}paintInlineImageXObject(e,t){const r=e.width,i=e.height,n=d(e,this.forceDataSchema,!!t),a=this.svgFactory.createElement("svg:rect");a.setAttributeNS(null,"x","0"),a.setAttributeNS(null,"y","0"),a.setAttributeNS(null,"width",h(r)),a.setAttributeNS(null,"height",h(i)),this.current.element=a,this.clip("nonzero");const s=this.svgFactory.createElement("svg:image");s.setAttributeNS(c,"xlink:href",n),s.setAttributeNS(null,"x","0"),s.setAttributeNS(null,"y",h(-i)),s.setAttributeNS(null,"width",h(r)+"px"),s.setAttributeNS(null,"height",h(i)+"px"),s.setAttributeNS(null,"transform",`scale(${h(1/r)} ${h(-1/i)})`),t?t.appendChild(s):this._ensureTransformGroup().appendChild(s)}paintImageMaskXObject(e){const t=this.current,r=e.width,i=e.height,n=t.fillColor;t.maskId="mask"+g++;const a=this.svgFactory.createElement("svg:mask");a.setAttributeNS(null,"id",t.maskId);const s=this.svgFactory.createElement("svg:rect");s.setAttributeNS(null,"x","0"),s.setAttributeNS(null,"y","0"),s.setAttributeNS(null,"width",h(r)),s.setAttributeNS(null,"height",h(i)),s.setAttributeNS(null,"fill",n),s.setAttributeNS(null,"mask",`url(#${t.maskId})`),this.defs.appendChild(a),this._ensureTransformGroup().appendChild(s),this.paintInlineImageXObject(e,a)}paintFormXObjectBegin(e,t){if(Array.isArray(e)&&6===e.length&&this.transform(e[0],e[1],e[2],e[3],e[4],e[5]),t){const e=t[2]-t[0],r=t[3]-t[1],i=this.svgFactory.createElement("svg:rect");i.setAttributeNS(null,"x",t[0]),i.setAttributeNS(null,"y",t[1]),i.setAttributeNS(null,"width",h(e)),i.setAttributeNS(null,"height",h(r)),this.current.element=i,this.clip("nonzero"),this.endPath()}}paintFormXObjectEnd(){}_initialize(e){const t=this.svgFactory.create(e.width,e.height),r=this.svgFactory.createElement("svg:defs");t.appendChild(r),this.defs=r;const i=this.svgFactory.createElement("svg:g");return i.setAttributeNS(null,"transform",l(e.transform)),t.appendChild(i),this.svg=i,t}_ensureClipGroup(){if(!this.current.clipGroup){const e=this.svgFactory.createElement("svg:g");e.setAttributeNS(null,"clip-path",this.current.activeClipUrl),this.svg.appendChild(e),this.current.clipGroup=e}return this.current.clipGroup}_ensureTransformGroup(){return this.tgrp||(this.tgrp=this.svgFactory.createElement("svg:g"),this.tgrp.setAttributeNS(null,"transform",l(this.transformMatrix)),this.current.activeClipUrl?this._ensureClipGroup().appendChild(this.tgrp):this.svg.appendChild(this.tgrp)),this.tgrp}}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PDFNodeStream=void 0;var i=r(2),n=r(23);const a=__webpack_require__(3),s=__webpack_require__(6),o=__webpack_require__(7),h=__webpack_require__(8),l=/^file:\/\/\/[a-zA-Z]:\//;function c(e){const t=h.parse(e);return"file:"===t.protocol||t.host?t:/^[a-z]:[/\\]/i.test(e)?h.parse("file:///"+e):(t.host||(t.protocol="file:"),t)}class u{constructor(e){this.source=e,this.url=c(e.url),this.isHttp="http:"===this.url.protocol||"https:"===this.url.protocol,this.isFsUrl="file:"===this.url.protocol,this.httpHeaders=this.isHttp&&e.httpHeaders||{},this._fullRequestReader=null,this._rangeRequestReaders=[]}get _progressiveDataLength(){return this._fullRequestReader?this._fullRequestReader._loaded:0}getFullReader(){return(0,i.assert)(!this._fullRequestReader,"PDFNodeStream.getFullReader can only be called once."),this._fullRequestReader=this.isFsUrl?new b(this):new m(this),this._fullRequestReader}getRangeReader(e,t){if(t<=this._progressiveDataLength)return null;const r=this.isFsUrl?new v(this,e,t):new g(this,e,t);return this._rangeRequestReaders.push(r),r}cancelAllRequests(e){this._fullRequestReader&&this._fullRequestReader.cancel(e);const t=this._rangeRequestReaders.slice(0);t.forEach((function(t){t.cancel(e)}))}}t.PDFNodeStream=u;class f{constructor(e){this._url=e.url,this._done=!1,this._storedError=null,this.onProgress=null;const t=e.source;this._contentLength=t.length,this._loaded=0,this._filename=null,this._disableRange=t.disableRange||!1,this._rangeChunkSize=t.rangeChunkSize,this._rangeChunkSize||this._disableRange||(this._disableRange=!0),this._isStreamingSupported=!t.disableStream,this._isRangeSupported=!t.disableRange,this._readableStream=null,this._readCapability=(0,i.createPromiseCapability)(),this._headersCapability=(0,i.createPromiseCapability)()}get headersReady(){return this._headersCapability.promise}get filename(){return this._filename}get contentLength(){return this._contentLength}get isRangeSupported(){return this._isRangeSupported}get isStreamingSupported(){return this._isStreamingSupported}async read(){if(await this._readCapability.promise,this._done)return{value:void 0,done:!0};if(this._storedError)throw this._storedError;const e=this._readableStream.read();if(null===e)return this._readCapability=(0,i.createPromiseCapability)(),this.read();this._loaded+=e.length,this.onProgress&&this.onProgress({loaded:this._loaded,total:this._contentLength});const t=new Uint8Array(e).buffer;return{value:t,done:!1}}cancel(e){this._readableStream?this._readableStream.destroy(e):this._error(e)}_error(e){this._storedError=e,this._readCapability.resolve()}_setReadableStream(e){this._readableStream=e,e.on("readable",()=>{this._readCapability.resolve()}),e.on("end",()=>{e.destroy(),this._done=!0,this._readCapability.resolve()}),e.on("error",e=>{this._error(e)}),!this._isStreamingSupported&&this._isRangeSupported&&this._error(new i.AbortException("streaming is disabled")),this._storedError&&this._readableStream.destroy(this._storedError)}}class d{constructor(e){this._url=e.url,this._done=!1,this._storedError=null,this.onProgress=null,this._loaded=0,this._readableStream=null,this._readCapability=(0,i.createPromiseCapability)();const t=e.source;this._isStreamingSupported=!t.disableStream}get isStreamingSupported(){return this._isStreamingSupported}async read(){if(await this._readCapability.promise,this._done)return{value:void 0,done:!0};if(this._storedError)throw this._storedError;const e=this._readableStream.read();if(null===e)return this._readCapability=(0,i.createPromiseCapability)(),this.read();this._loaded+=e.length,this.onProgress&&this.onProgress({loaded:this._loaded});const t=new Uint8Array(e).buffer;return{value:t,done:!1}}cancel(e){this._readableStream?this._readableStream.destroy(e):this._error(e)}_error(e){this._storedError=e,this._readCapability.resolve()}_setReadableStream(e){this._readableStream=e,e.on("readable",()=>{this._readCapability.resolve()}),e.on("end",()=>{e.destroy(),this._done=!0,this._readCapability.resolve()}),e.on("error",e=>{this._error(e)}),this._storedError&&this._readableStream.destroy(this._storedError)}}function p(e,t){return{protocol:e.protocol,auth:e.auth,host:e.hostname,port:e.port,path:e.path,method:"GET",headers:t}}class m extends f{constructor(e){super(e);const t=t=>{if(404===t.statusCode){const e=new i.MissingPDFException(`Missing PDF "${this._url}".`);return this._storedError=e,void this._headersCapability.reject(e)}this._headersCapability.resolve(),this._setReadableStream(t);const r=e=>this._readableStream.headers[e.toLowerCase()],{allowRangeRequests:a,suggestedLength:s}=(0,n.validateRangeRequestCapabilities)({getResponseHeader:r,isHttp:e.isHttp,rangeChunkSize:this._rangeChunkSize,disableRange:this._disableRange});this._isRangeSupported=a,this._contentLength=s||this._contentLength,this._filename=(0,n.extractFilenameFromHeader)(r)};this._request=null,"http:"===this._url.protocol?this._request=s.request(p(this._url,e.httpHeaders),t):this._request=o.request(p(this._url,e.httpHeaders),t),this._request.on("error",e=>{this._storedError=e,this._headersCapability.reject(e)}),this._request.end()}}class g extends d{constructor(e,t,r){super(e),this._httpHeaders={};for(const i in e.httpHeaders){const t=e.httpHeaders[i];"undefined"!==typeof t&&(this._httpHeaders[i]=t)}this._httpHeaders.Range=`bytes=${t}-${r-1}`;const n=e=>{if(404!==e.statusCode)this._setReadableStream(e);else{const e=new i.MissingPDFException(`Missing PDF "${this._url}".`);this._storedError=e}};this._request=null,"http:"===this._url.protocol?this._request=s.request(p(this._url,this._httpHeaders),n):this._request=o.request(p(this._url,this._httpHeaders),n),this._request.on("error",e=>{this._storedError=e}),this._request.end()}}class b extends f{constructor(e){super(e);let t=decodeURIComponent(this._url.path);l.test(this._url.href)&&(t=t.replace(/^\//,"")),a.lstat(t,(e,r)=>{if(e)return"ENOENT"===e.code&&(e=new i.MissingPDFException(`Missing PDF "${t}".`)),this._storedError=e,void this._headersCapability.reject(e);this._contentLength=r.size,this._setReadableStream(a.createReadStream(t)),this._headersCapability.resolve()})}}class v extends d{constructor(e,t,r){super(e);let i=decodeURIComponent(this._url.path);l.test(this._url.href)&&(i=i.replace(/^\//,"")),this._setReadableStream(a.createReadStream(i,{start:t,end:r-1}))}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createResponseStatusError=o,t.extractFilenameFromHeader=s,t.validateRangeRequestCapabilities=a,t.validateResponseStatus=h;var i=r(2),n=r(24);function a({getResponseHeader:e,isHttp:t,rangeChunkSize:r,disableRange:n}){(0,i.assert)(r>0,"Range chunk size must be larger than zero");const a={allowRangeRequests:!1,suggestedLength:void 0},s=parseInt(e("Content-Length"),10);if(!Number.isInteger(s))return a;if(a.suggestedLength=s,s<=2*r)return a;if(n||!t)return a;if("bytes"!==e("Accept-Ranges"))return a;const o=e("Content-Encoding")||"identity";return"identity"!==o||(a.allowRangeRequests=!0),a}function s(e){const t=e("Content-Disposition");if(t){let e=(0,n.getFilenameFromContentDispositionHeader)(t);if(e.includes("%"))try{e=decodeURIComponent(e)}catch(r){}if(/\.pdf$/i.test(e))return e}return null}function o(e,t){return 404===e||0===e&&t.startsWith("file:")?new i.MissingPDFException('Missing PDF "'+t+'".'):new i.UnexpectedResponseException("Unexpected server response ("+e+') while retrieving PDF "'+t+'".',e)}function h(e){return 200===e||206===e}},function(e,t,r){"use strict";function i(e){let t=!0,r=i("filename\\*","i").exec(e);if(r){r=r[1];let e=o(r);return e=unescape(e),e=h(e),e=l(e),a(e)}if(r=s(e),r){const e=l(r);return a(e)}if(r=i("filename","i").exec(e),r){r=r[1];let e=o(r);return e=l(e),a(e)}function i(e,t){return new RegExp("(?:^|;)\\s*"+e+'\\s*=\\s*([^";\\s][^;\\s]*|"(?:[^"\\\\]|\\\\"?)+"?)',t)}function n(e,r){if(e){if(!/^[\x00-\xFF]+$/.test(r))return r;try{const i=new TextDecoder(e,{fatal:!0}),n=Array.from(r,(function(e){return 255&e.charCodeAt(0)}));r=i.decode(new Uint8Array(n)),t=!1}catch(i){if(/^utf-?8$/i.test(e))try{r=decodeURIComponent(escape(r)),t=!1}catch(n){}}}return r}function a(e){return t&&/[\x80-\xff]/.test(e)&&(e=n("utf-8",e),t&&(e=n("iso-8859-1",e))),e}function s(e){const t=[];let r;const n=i("filename\\*((?!0\\d)\\d+)(\\*?)","ig");while(null!==(r=n.exec(e))){let[,e,i,n]=r;if(e=parseInt(e,10),e in t){if(0===e)break}else t[e]=[i,n]}const a=[];for(let i=0;i<t.length;++i){if(!(i in t))break;let[e,r]=t[i];r=o(r),e&&(r=unescape(r),0===i&&(r=h(r))),a.push(r)}return a.join("")}function o(e){if(e.startsWith('"')){const t=e.slice(1).split('\\"');for(let e=0;e<t.length;++e){const r=t[e].indexOf('"');-1!==r&&(t[e]=t[e].slice(0,r),t.length=e+1),t[e]=t[e].replace(/\\(.)/g,"$1")}e=t.join('"')}return e}function h(e){const t=e.indexOf("'");if(-1===t)return e;const r=e.slice(0,t),i=e.slice(t+1),a=i.replace(/^[^']*'/,"");return n(r,a)}function l(e){return!e.startsWith("=?")||/[\x00-\x19\x80-\xff]/.test(e)?e:e.replace(/=\?([\w-]*)\?([QqBb])\?((?:[^?]|\?(?!=))*)\?=/g,(function(e,t,r,i){if("q"===r||"Q"===r)return i=i.replace(/_/g," "),i=i.replace(/=([0-9a-fA-F]{2})/g,(function(e,t){return String.fromCharCode(parseInt(t,16))})),n(t,i);try{i=atob(i)}catch(a){}return n(t,i)}))}return""}Object.defineProperty(t,"__esModule",{value:!0}),t.getFilenameFromContentDispositionHeader=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PDFNetworkStream=void 0;var i=r(2),n=r(23);const a=200,s=206;function o(e){const t=e.response;if("string"!==typeof t)return t;const r=(0,i.stringToBytes)(t);return r.buffer}class h{constructor(e,t){this.url=e,t=t||{},this.isHttp=/^https?:/i.test(e),this.httpHeaders=this.isHttp&&t.httpHeaders||{},this.withCredentials=t.withCredentials||!1,this.getXhr=t.getXhr||function(){return new XMLHttpRequest},this.currXhrId=0,this.pendingRequests=Object.create(null)}requestRange(e,t,r){const i={begin:e,end:t};for(const n in r)i[n]=r[n];return this.request(i)}requestFull(e){return this.request(e)}request(e){const t=this.getXhr(),r=this.currXhrId++,i=this.pendingRequests[r]={xhr:t};t.open("GET",this.url),t.withCredentials=this.withCredentials;for(const n in this.httpHeaders){const e=this.httpHeaders[n];"undefined"!==typeof e&&t.setRequestHeader(n,e)}return this.isHttp&&"begin"in e&&"end"in e?(t.setRequestHeader("Range",`bytes=${e.begin}-${e.end-1}`),i.expectedStatus=s):i.expectedStatus=a,t.responseType="arraybuffer",e.onError&&(t.onerror=function(r){e.onError(t.status)}),t.onreadystatechange=this.onStateChange.bind(this,r),t.onprogress=this.onProgress.bind(this,r),i.onHeadersReceived=e.onHeadersReceived,i.onDone=e.onDone,i.onError=e.onError,i.onProgress=e.onProgress,t.send(null),r}onProgress(e,t){const r=this.pendingRequests[e];r&&r.onProgress&&r.onProgress(t)}onStateChange(e,t){const r=this.pendingRequests[e];if(!r)return;const i=r.xhr;if(i.readyState>=2&&r.onHeadersReceived&&(r.onHeadersReceived(),delete r.onHeadersReceived),4!==i.readyState)return;if(!(e in this.pendingRequests))return;if(delete this.pendingRequests[e],0===i.status&&this.isHttp)return void(r.onError&&r.onError(i.status));const n=i.status||a,h=n===a&&r.expectedStatus===s;if(!h&&n!==r.expectedStatus)return void(r.onError&&r.onError(i.status));const l=o(i);if(n===s){const e=i.getResponseHeader("Content-Range"),t=/bytes (\d+)-(\d+)\/(\d+)/.exec(e);r.onDone({begin:parseInt(t[1],10),chunk:l})}else l?r.onDone({begin:0,chunk:l}):r.onError&&r.onError(i.status)}getRequestXhr(e){return this.pendingRequests[e].xhr}isPendingRequest(e){return e in this.pendingRequests}abortRequest(e){const t=this.pendingRequests[e].xhr;delete this.pendingRequests[e],t.abort()}}class l{constructor(e){this._source=e,this._manager=new h(e.url,{httpHeaders:e.httpHeaders,withCredentials:e.withCredentials}),this._rangeChunkSize=e.rangeChunkSize,this._fullRequestReader=null,this._rangeRequestReaders=[]}_onRangeRequestReaderClosed(e){const t=this._rangeRequestReaders.indexOf(e);t>=0&&this._rangeRequestReaders.splice(t,1)}getFullReader(){return(0,i.assert)(!this._fullRequestReader,"PDFNetworkStream.getFullReader can only be called once."),this._fullRequestReader=new c(this._manager,this._source),this._fullRequestReader}getRangeReader(e,t){const r=new u(this._manager,e,t);return r.onClosed=this._onRangeRequestReaderClosed.bind(this),this._rangeRequestReaders.push(r),r}cancelAllRequests(e){this._fullRequestReader&&this._fullRequestReader.cancel(e);const t=this._rangeRequestReaders.slice(0);t.forEach((function(t){t.cancel(e)}))}}t.PDFNetworkStream=l;class c{constructor(e,t){this._manager=e;const r={onHeadersReceived:this._onHeadersReceived.bind(this),onDone:this._onDone.bind(this),onError:this._onError.bind(this),onProgress:this._onProgress.bind(this)};this._url=t.url,this._fullRequestId=e.requestFull(r),this._headersReceivedCapability=(0,i.createPromiseCapability)(),this._disableRange=t.disableRange||!1,this._contentLength=t.length,this._rangeChunkSize=t.rangeChunkSize,this._rangeChunkSize||this._disableRange||(this._disableRange=!0),this._isStreamingSupported=!1,this._isRangeSupported=!1,this._cachedChunks=[],this._requests=[],this._done=!1,this._storedError=void 0,this._filename=null,this.onProgress=null}_onHeadersReceived(){const e=this._fullRequestId,t=this._manager.getRequestXhr(e),r=e=>t.getResponseHeader(e),{allowRangeRequests:i,suggestedLength:a}=(0,n.validateRangeRequestCapabilities)({getResponseHeader:r,isHttp:this._manager.isHttp,rangeChunkSize:this._rangeChunkSize,disableRange:this._disableRange});i&&(this._isRangeSupported=!0),this._contentLength=a||this._contentLength,this._filename=(0,n.extractFilenameFromHeader)(r),this._isRangeSupported&&this._manager.abortRequest(e),this._headersReceivedCapability.resolve()}_onDone(e){if(e)if(this._requests.length>0){const t=this._requests.shift();t.resolve({value:e.chunk,done:!1})}else this._cachedChunks.push(e.chunk);this._done=!0,this._cachedChunks.length>0||(this._requests.forEach((function(e){e.resolve({value:void 0,done:!0})})),this._requests=[])}_onError(e){const t=this._url,r=(0,n.createResponseStatusError)(e,t);this._storedError=r,this._headersReceivedCapability.reject(r),this._requests.forEach((function(e){e.reject(r)})),this._requests=[],this._cachedChunks=[]}_onProgress(e){this.onProgress&&this.onProgress({loaded:e.loaded,total:e.lengthComputable?e.total:this._contentLength})}get filename(){return this._filename}get isRangeSupported(){return this._isRangeSupported}get isStreamingSupported(){return this._isStreamingSupported}get contentLength(){return this._contentLength}get headersReady(){return this._headersReceivedCapability.promise}async read(){if(this._storedError)throw this._storedError;if(this._cachedChunks.length>0){const e=this._cachedChunks.shift();return{value:e,done:!1}}if(this._done)return{value:void 0,done:!0};const e=(0,i.createPromiseCapability)();return this._requests.push(e),e.promise}cancel(e){this._done=!0,this._headersReceivedCapability.reject(e),this._requests.forEach((function(e){e.resolve({value:void 0,done:!0})})),this._requests=[],this._manager.isPendingRequest(this._fullRequestId)&&this._manager.abortRequest(this._fullRequestId),this._fullRequestReader=null}}class u{constructor(e,t,r){this._manager=e;const i={onDone:this._onDone.bind(this),onProgress:this._onProgress.bind(this)};this._requestId=e.requestRange(t,r,i),this._requests=[],this._queuedChunk=null,this._done=!1,this.onProgress=null,this.onClosed=null}_close(){this.onClosed&&this.onClosed(this)}_onDone(e){const t=e.chunk;if(this._requests.length>0){const e=this._requests.shift();e.resolve({value:t,done:!1})}else this._queuedChunk=t;this._done=!0,this._requests.forEach((function(e){e.resolve({value:void 0,done:!0})})),this._requests=[],this._close()}_onProgress(e){!this.isStreamingSupported&&this.onProgress&&this.onProgress({loaded:e.loaded})}get isStreamingSupported(){return!1}async read(){if(null!==this._queuedChunk){const e=this._queuedChunk;return this._queuedChunk=null,{value:e,done:!1}}if(this._done)return{value:void 0,done:!0};const e=(0,i.createPromiseCapability)();return this._requests.push(e),e.promise}cancel(e){this._done=!0,this._requests.forEach((function(e){e.resolve({value:void 0,done:!0})})),this._requests=[],this._manager.isPendingRequest(this._requestId)&&this._manager.abortRequest(this._requestId),this._close()}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PDFFetchStream=void 0;var i=r(2),n=r(23);function a(e,t,r){return{method:"GET",headers:e,signal:r&&r.signal,mode:"cors",credentials:t?"include":"same-origin",redirect:"follow"}}function s(e){const t=new Headers;for(const r in e){const i=e[r];"undefined"!==typeof i&&t.append(r,i)}return t}class o{constructor(e){this.source=e,this.isHttp=/^https?:/i.test(e.url),this.httpHeaders=this.isHttp&&e.httpHeaders||{},this._fullRequestReader=null,this._rangeRequestReaders=[]}get _progressiveDataLength(){return this._fullRequestReader?this._fullRequestReader._loaded:0}getFullReader(){return(0,i.assert)(!this._fullRequestReader,"PDFFetchStream.getFullReader can only be called once."),this._fullRequestReader=new h(this),this._fullRequestReader}getRangeReader(e,t){if(t<=this._progressiveDataLength)return null;const r=new l(this,e,t);return this._rangeRequestReaders.push(r),r}cancelAllRequests(e){this._fullRequestReader&&this._fullRequestReader.cancel(e);const t=this._rangeRequestReaders.slice(0);t.forEach((function(t){t.cancel(e)}))}}t.PDFFetchStream=o;class h{constructor(e){this._stream=e,this._reader=null,this._loaded=0,this._filename=null;const t=e.source;this._withCredentials=t.withCredentials||!1,this._contentLength=t.length,this._headersCapability=(0,i.createPromiseCapability)(),this._disableRange=t.disableRange||!1,this._rangeChunkSize=t.rangeChunkSize,this._rangeChunkSize||this._disableRange||(this._disableRange=!0),"undefined"!==typeof AbortController&&(this._abortController=new AbortController),this._isStreamingSupported=!t.disableStream,this._isRangeSupported=!t.disableRange,this._headers=s(this._stream.httpHeaders);const r=t.url;fetch(r,a(this._headers,this._withCredentials,this._abortController)).then(e=>{if(!(0,n.validateResponseStatus)(e.status))throw(0,n.createResponseStatusError)(e.status,r);this._reader=e.body.getReader(),this._headersCapability.resolve();const t=t=>e.headers.get(t),{allowRangeRequests:a,suggestedLength:s}=(0,n.validateRangeRequestCapabilities)({getResponseHeader:t,isHttp:this._stream.isHttp,rangeChunkSize:this._rangeChunkSize,disableRange:this._disableRange});this._isRangeSupported=a,this._contentLength=s||this._contentLength,this._filename=(0,n.extractFilenameFromHeader)(t),!this._isStreamingSupported&&this._isRangeSupported&&this.cancel(new i.AbortException("Streaming is disabled."))}).catch(this._headersCapability.reject),this.onProgress=null}get headersReady(){return this._headersCapability.promise}get filename(){return this._filename}get contentLength(){return this._contentLength}get isRangeSupported(){return this._isRangeSupported}get isStreamingSupported(){return this._isStreamingSupported}async read(){await this._headersCapability.promise;const{value:e,done:t}=await this._reader.read();if(t)return{value:e,done:t};this._loaded+=e.byteLength,this.onProgress&&this.onProgress({loaded:this._loaded,total:this._contentLength});const r=new Uint8Array(e).buffer;return{value:r,done:!1}}cancel(e){this._reader&&this._reader.cancel(e),this._abortController&&this._abortController.abort()}}class l{constructor(e,t,r){this._stream=e,this._reader=null,this._loaded=0;const o=e.source;this._withCredentials=o.withCredentials||!1,this._readCapability=(0,i.createPromiseCapability)(),this._isStreamingSupported=!o.disableStream,"undefined"!==typeof AbortController&&(this._abortController=new AbortController),this._headers=s(this._stream.httpHeaders),this._headers.append("Range",`bytes=${t}-${r-1}`);const h=o.url;fetch(h,a(this._headers,this._withCredentials,this._abortController)).then(e=>{if(!(0,n.validateResponseStatus)(e.status))throw(0,n.createResponseStatusError)(e.status,h);this._readCapability.resolve(),this._reader=e.body.getReader()}).catch(e=>{if(!e||"AbortError"!==e.name)throw e}),this.onProgress=null}get isStreamingSupported(){return this._isStreamingSupported}async read(){await this._readCapability.promise;const{value:e,done:t}=await this._reader.read();if(t)return{value:e,done:t};this._loaded+=e.byteLength,this.onProgress&&this.onProgress({loaded:this._loaded});const r=new Uint8Array(e).buffer;return{value:r,done:!1}}cancel(e){this._reader&&this._reader.cancel(e),this._abortController&&this._abortController.abort()}}}])}))}).call(this,__webpack_require__("f28c"),__webpack_require__("b639").Buffer)},"956a":function(e,t,r){var i=r("1e3c"),n=r("fda6"),a=r("bac2"),s=r("0be8"),o=r("ae84");function h(e,t){var r,i;if(e=e.toLowerCase(),a[e])r=a[e].key,i=a[e].iv;else{if(!s[e])throw new TypeError("invalid suite type");r=8*s[e].key,i=s[e].iv}var n=o(t,!1,r,i);return c(e,n.key,n.iv)}function l(e,t){var r,i;if(e=e.toLowerCase(),a[e])r=a[e].key,i=a[e].iv;else{if(!s[e])throw new TypeError("invalid suite type");r=8*s[e].key,i=s[e].iv}var n=o(t,!1,r,i);return u(e,n.key,n.iv)}function c(e,t,r){if(e=e.toLowerCase(),a[e])return n.createCipheriv(e,t,r);if(s[e])return new i({key:t,iv:r,mode:e});throw new TypeError("invalid suite type")}function u(e,t,r){if(e=e.toLowerCase(),a[e])return n.createDecipheriv(e,t,r);if(s[e])return new i({key:t,iv:r,mode:e,decrypt:!0});throw new TypeError("invalid suite type")}function f(){return Object.keys(s).concat(n.getCiphers())}t.createCipher=t.Cipher=h,t.createCipheriv=t.Cipheriv=c,t.createDecipher=t.Decipher=l,t.createDecipheriv=t.Decipheriv=u,t.listCiphers=t.getCiphers=f},"966d":function(e,t,r){"use strict";(function(t){function r(e,r,i,n){if("function"!==typeof e)throw new TypeError('"callback" argument must be a function');var a,s,o=arguments.length;switch(o){case 0:case 1:return t.nextTick(e);case 2:return t.nextTick((function(){e.call(null,r)}));case 3:return t.nextTick((function(){e.call(null,r,i)}));case 4:return t.nextTick((function(){e.call(null,r,i,n)}));default:a=new Array(o-1),s=0;while(s<a.length)a[s++]=arguments[s];return t.nextTick((function(){e.apply(null,a)}))}}"undefined"===typeof t||!t.version||0===t.version.indexOf("v0.")||0===t.version.indexOf("v1.")&&0!==t.version.indexOf("v1.8.")?e.exports={nextTick:r}:e.exports=t}).call(this,r("f28c"))},"96a5":function(e,t,r){"use strict";function i(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,i)}return r}function n(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?i(Object(r),!0).forEach((function(t){a(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):i(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function a(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var r=0;r<t.length;r++){var i=t[r];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function h(e,t,r){return t&&o(e.prototype,t),r&&o(e,r),e}var l=r("b639"),c=l.Buffer,u=r(10),f=u.inspect,d=f&&f.custom||"inspect";function p(e,t,r){c.prototype.copy.call(e,t,r)}e.exports=function(){function e(){s(this,e),this.head=null,this.tail=null,this.length=0}return h(e,[{key:"push",value:function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length}},{key:"unshift",value:function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length}},{key:"shift",value:function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(e){if(0===this.length)return"";var t=this.head,r=""+t.data;while(t=t.next)r+=e+t.data;return r}},{key:"concat",value:function(e){if(0===this.length)return c.alloc(0);var t=c.allocUnsafe(e>>>0),r=this.head,i=0;while(r)p(r.data,t,i),i+=r.data.length,r=r.next;return t}},{key:"consume",value:function(e,t){var r;return e<this.head.data.length?(r=this.head.data.slice(0,e),this.head.data=this.head.data.slice(e)):r=e===this.head.data.length?this.shift():t?this._getString(e):this._getBuffer(e),r}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(e){var t=this.head,r=1,i=t.data;e-=i.length;while(t=t.next){var n=t.data,a=e>n.length?n.length:e;if(a===n.length?i+=n:i+=n.slice(0,e),e-=a,0===e){a===n.length?(++r,t.next?this.head=t.next:this.head=this.tail=null):(this.head=t,t.data=n.slice(a));break}++r}return this.length-=r,i}},{key:"_getBuffer",value:function(e){var t=c.allocUnsafe(e),r=this.head,i=1;r.data.copy(t),e-=r.data.length;while(r=r.next){var n=r.data,a=e>n.length?n.length:e;if(n.copy(t,t.length-e,0,a),e-=a,0===e){a===n.length?(++i,r.next?this.head=r.next:this.head=this.tail=null):(this.head=r,r.data=n.slice(a));break}++i}return this.length-=i,t}},{key:d,value:function(e,t){return f(this,n({},t,{depth:0,customInspect:!1}))}}]),e}()},"96cf":function(e,t,r){var i=function(e){"use strict";var t,r=Object.prototype,i=r.hasOwnProperty,n=Object.defineProperty||function(e,t,r){e[t]=r.value},a="function"===typeof Symbol?Symbol:{},s=a.iterator||"@@iterator",o=a.asyncIterator||"@@asyncIterator",h=a.toStringTag||"@@toStringTag";function l(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(O){l=function(e,t,r){return e[t]=r}}function c(e,t,r,i){var a=t&&t.prototype instanceof b?t:b,s=Object.create(a.prototype),o=new R(i||[]);return n(s,"_invoke",{value:x(e,r,o)}),s}function u(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(O){return{type:"throw",arg:O}}}e.wrap=c;var f="suspendedStart",d="suspendedYield",p="executing",m="completed",g={};function b(){}function v(){}function y(){}var w={};l(w,s,(function(){return this}));var M=Object.getPrototypeOf,_=M&&M(M(I([])));_&&_!==r&&i.call(_,s)&&(w=_);var S=y.prototype=b.prototype=Object.create(w);function k(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function A(e,t){function r(n,a,s,o){var h=u(e[n],e,a);if("throw"!==h.type){var l=h.arg,c=l.value;return c&&"object"===typeof c&&i.call(c,"__await")?t.resolve(c.__await).then((function(e){r("next",e,s,o)}),(function(e){r("throw",e,s,o)})):t.resolve(c).then((function(e){l.value=e,s(l)}),(function(e){return r("throw",e,s,o)}))}o(h.arg)}var a;function s(e,i){function n(){return new t((function(t,n){r(e,i,t,n)}))}return a=a?a.then(n,n):n()}n(this,"_invoke",{value:s})}function x(e,t,r){var i=f;return function(n,a){if(i===p)throw new Error("Generator is already running");if(i===m){if("throw"===n)throw a;return P()}r.method=n,r.arg=a;while(1){var s=r.delegate;if(s){var o=C(s,r);if(o){if(o===g)continue;return o}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(i===f)throw i=m,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);i=p;var h=u(e,t,r);if("normal"===h.type){if(i=r.done?m:d,h.arg===g)continue;return{value:h.arg,done:r.done}}"throw"===h.type&&(i=m,r.method="throw",r.arg=h.arg)}}}function C(e,r){var i=r.method,n=e.iterator[i];if(n===t)return r.delegate=null,"throw"===i&&e.iterator["return"]&&(r.method="return",r.arg=t,C(e,r),"throw"===r.method)||"return"!==i&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+i+"' method")),g;var a=u(n,e.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,g;var s=a.arg;return s?s.done?(r[e.resultName]=s.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,g):s:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function E(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function T(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(E,this),this.reset(!0)}function I(e){if(e){var r=e[s];if(r)return r.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var n=-1,a=function r(){while(++n<e.length)if(i.call(e,n))return r.value=e[n],r.done=!1,r;return r.value=t,r.done=!0,r};return a.next=a}}return{next:P}}function P(){return{value:t,done:!0}}return v.prototype=y,n(S,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:v,configurable:!0}),v.displayName=l(y,h,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===v||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,y):(e.__proto__=y,l(e,h,"GeneratorFunction")),e.prototype=Object.create(S),e},e.awrap=function(e){return{__await:e}},k(A.prototype),l(A.prototype,o,(function(){return this})),e.AsyncIterator=A,e.async=function(t,r,i,n,a){void 0===a&&(a=Promise);var s=new A(c(t,r,i,n),a);return e.isGeneratorFunction(r)?s:s.next().then((function(e){return e.done?e.value:s.next()}))},k(S),l(S,h,"Generator"),l(S,s,(function(){return this})),l(S,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=Object(e),r=[];for(var i in t)r.push(i);return r.reverse(),function e(){while(r.length){var i=r.pop();if(i in t)return e.value=i,e.done=!1,e}return e.done=!0,e}},e.values=I,R.prototype={constructor:R,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(T),!e)for(var r in this)"t"===r.charAt(0)&&i.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(i,n){return o.type="throw",o.arg=e,r.next=i,n&&(r.method="next",r.arg=t),!!n}for(var a=this.tryEntries.length-1;a>=0;--a){var s=this.tryEntries[a],o=s.completion;if("root"===s.tryLoc)return n("end");if(s.tryLoc<=this.prev){var h=i.call(s,"catchLoc"),l=i.call(s,"finallyLoc");if(h&&l){if(this.prev<s.catchLoc)return n(s.catchLoc,!0);if(this.prev<s.finallyLoc)return n(s.finallyLoc)}else if(h){if(this.prev<s.catchLoc)return n(s.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<s.finallyLoc)return n(s.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var a=n;break}}a&&("break"===e||"continue"===e)&&a.tryLoc<=t&&t<=a.finallyLoc&&(a=null);var s=a?a.completion:{};return s.type=e,s.arg=t,a?(this.method="next",this.next=a.finallyLoc,g):this.complete(s)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),g},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),T(r),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var i=r.completion;if("throw"===i.type){var n=i.arg;T(r)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,i){return this.delegate={iterator:I(e),resultName:r,nextLoc:i},"next"===this.method&&(this.arg=t),g}},e}(e.exports);try{regeneratorRuntime=i}catch(n){"object"===typeof globalThis?globalThis.regeneratorRuntime=i:Function("r","regeneratorRuntime = r")(i)}},"980c":function(e,t,r){var i=r("39a9").Buffer,n=r("399f"),a=r("3337").ec,s=r("2aee"),o=r("cd91");function h(e,t,r,a,o){var h=s(r);if("ec"===h.type){if("ecdsa"!==a&&"ecdsa/rsa"!==a)throw new Error("wrong public key type");return l(e,t,h)}if("dsa"===h.type){if("dsa"!==a)throw new Error("wrong public key type");return c(e,t,h)}if("rsa"!==a&&"ecdsa/rsa"!==a)throw new Error("wrong public key type");t=i.concat([o,t]);var u=h.modulus.byteLength(),f=[1],d=0;while(t.length+f.length+2<u)f.push(255),d++;f.push(0);var p=-1;while(++p<t.length)f.push(t[p]);f=i.from(f);var m=n.mont(h.modulus);e=new n(e).toRed(m),e=e.redPow(new n(h.publicExponent)),e=i.from(e.fromRed().toArray());var g=d<8?1:0;u=Math.min(e.length,f.length),e.length!==f.length&&(g=1),p=-1;while(++p<u)g|=e[p]^f[p];return 0===g}function l(e,t,r){var i=o[r.data.algorithm.curve.join(".")];if(!i)throw new Error("unknown curve "+r.data.algorithm.curve.join("."));var n=new a(i),s=r.data.subjectPrivateKey.data;return n.verify(t,e,s)}function c(e,t,r){var i=r.data.p,a=r.data.q,o=r.data.g,h=r.data.pub_key,l=s.signature.decode(e,"der"),c=l.s,f=l.r;u(c,a),u(f,a);var d=n.mont(i),p=c.invm(a),m=o.toRed(d).redPow(new n(t).mul(p).mod(a)).fromRed().mul(h.toRed(d).redPow(f.mul(p).mod(a)).fromRed()).mod(i).mod(a);return 0===m.cmp(f)}function u(e,t){if(e.cmpn(0)<=0)throw new Error("invalid sig");if(e.cmp(t)>=t)throw new Error("invalid sig")}e.exports=h},"98e6":function(e,t,r){"use strict";var i=r("3fb5"),n=r("f576"),a=r("b5ca"),s=r("69f2"),o=r("6430");function h(e){o.call(this,"digest"),this._hash=e}i(h,o),h.prototype._update=function(e){this._hash.update(e)},h.prototype._final=function(){return this._hash.digest()},e.exports=function(e){return e=e.toLowerCase(),"md5"===e?new n:"rmd160"===e||"ripemd160"===e?new a:new h(s(e))}},"9d28":function(e,t,r){"use strict";e.exports=n;var i=r("f1c8");function n(e){if(!(this instanceof n))return new n(e);i.call(this,e)}r("3fb5")(n,i),n.prototype._transform=function(e,t,r){r(null,e)}},"9d8a":function(e,t,r){"use strict";function i(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}var n={};function a(e,t,r){function a(e,r,i){return"string"===typeof t?t:t(e,r,i)}r||(r=Error);var s=function(e){function t(t,r,i){return e.call(this,a(t,r,i))||this}return i(t,e),t}(r);s.prototype.name=r.name,s.prototype.code=e,n[e]=s}function s(e,t){if(Array.isArray(e)){var r=e.length;return e=e.map((function(e){return String(e)})),r>2?"one of ".concat(t," ").concat(e.slice(0,r-1).join(", "),", or ")+e[r-1]:2===r?"one of ".concat(t," ").concat(e[0]," or ").concat(e[1]):"of ".concat(t," ").concat(e[0])}return"of ".concat(t," ").concat(String(e))}function o(e,t,r){return e.substr(!r||r<0?0:+r,t.length)===t}function h(e,t,r){return(void 0===r||r>e.length)&&(r=e.length),e.substring(r-t.length,r)===t}function l(e,t,r){return"number"!==typeof r&&(r=0),!(r+t.length>e.length)&&-1!==e.indexOf(t,r)}a("ERR_INVALID_OPT_VALUE",(function(e,t){return'The value "'+t+'" is invalid for option "'+e+'"'}),TypeError),a("ERR_INVALID_ARG_TYPE",(function(e,t,r){var i,n;if("string"===typeof t&&o(t,"not ")?(i="must not be",t=t.replace(/^not /,"")):i="must be",h(e," argument"))n="The ".concat(e," ").concat(i," ").concat(s(t,"type"));else{var a=l(e,".")?"property":"argument";n='The "'.concat(e,'" ').concat(a," ").concat(i," ").concat(s(t,"type"))}return n+=". Received type ".concat(typeof r),n}),TypeError),a("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),a("ERR_METHOD_NOT_IMPLEMENTED",(function(e){return"The "+e+" method is not implemented"})),a("ERR_STREAM_PREMATURE_CLOSE","Premature close"),a("ERR_STREAM_DESTROYED",(function(e){return"Cannot call "+e+" after a stream was destroyed"})),a("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),a("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),a("ERR_STREAM_WRITE_AFTER_END","write after end"),a("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),a("ERR_UNKNOWN_ENCODING",(function(e){return"Unknown encoding: "+e}),TypeError),a("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),e.exports.codes=n},"9f9d":function(e,t,r){(function(t,r){var i;if(t.process&&t.process.browser)i="utf-8";else if(t.process&&t.process.version){var n=parseInt(r.version.split(".")[0].slice(1),10);i=n>=6?"utf-8":"binary"}else i="utf-8";e.exports=i}).call(this,r("c8ba"),r("f28c"))},a099:function(e,t,r){t.pbkdf2=r("206d"),t.pbkdf2Sync=r("e07b")},a255:function(e,t,r){var i=r("3fb5"),n=r("b672"),a=r("8707").Buffer,s=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],o=new Array(64);function h(){this.init(),this._w=o,n.call(this,64,56)}function l(e,t,r){return r^e&(t^r)}function c(e,t,r){return e&t|r&(e|t)}function u(e){return(e>>>2|e<<30)^(e>>>13|e<<19)^(e>>>22|e<<10)}function f(e){return(e>>>6|e<<26)^(e>>>11|e<<21)^(e>>>25|e<<7)}function d(e){return(e>>>7|e<<25)^(e>>>18|e<<14)^e>>>3}function p(e){return(e>>>17|e<<15)^(e>>>19|e<<13)^e>>>10}i(h,n),h.prototype.init=function(){return this._a=1779033703,this._b=3144134277,this._c=1013904242,this._d=2773480762,this._e=1359893119,this._f=2600822924,this._g=528734635,this._h=1541459225,this},h.prototype._update=function(e){for(var t=this._w,r=0|this._a,i=0|this._b,n=0|this._c,a=0|this._d,o=0|this._e,h=0|this._f,m=0|this._g,g=0|this._h,b=0;b<16;++b)t[b]=e.readInt32BE(4*b);for(;b<64;++b)t[b]=p(t[b-2])+t[b-7]+d(t[b-15])+t[b-16]|0;for(var v=0;v<64;++v){var y=g+f(o)+l(o,h,m)+s[v]+t[v]|0,w=u(r)+c(r,i,n)|0;g=m,m=h,h=o,o=a+y|0,a=n,n=i,i=r,r=y+w|0}this._a=r+this._a|0,this._b=i+this._b|0,this._c=n+this._c|0,this._d=a+this._d|0,this._e=o+this._e|0,this._f=h+this._f|0,this._g=m+this._g|0,this._h=g+this._h|0},h.prototype._hash=function(){var e=a.allocUnsafe(32);return e.writeInt32BE(this._a,0),e.writeInt32BE(this._b,4),e.writeInt32BE(this._c,8),e.writeInt32BE(this._d,12),e.writeInt32BE(this._e,16),e.writeInt32BE(this._f,20),e.writeInt32BE(this._g,24),e.writeInt32BE(this._h,28),e},e.exports=h},a958:function(e,t,r){(function(t){var i=r("399f"),n=r("11dc");function a(e){var t=s(e),r=t.toRed(i.mont(e.modulus)).redPow(new i(e.publicExponent)).fromRed();return{blinder:r,unblinder:t.invm(e.modulus)}}function s(e){var t,r=e.modulus.byteLength();do{t=new i(n(r))}while(t.cmp(e.modulus)>=0||!t.umod(e.prime1)||!t.umod(e.prime2));return t}function o(e,r){var n=a(r),s=r.modulus.byteLength(),o=new i(e).mul(n.blinder).umod(r.modulus),h=o.toRed(i.mont(r.prime1)),l=o.toRed(i.mont(r.prime2)),c=r.coefficient,u=r.prime1,f=r.prime2,d=h.redPow(r.exponent1).fromRed(),p=l.redPow(r.exponent2).fromRed(),m=d.isub(p).imul(c).umod(u).imul(f);return p.iadd(m).imul(n.unblinder).umod(r.modulus).toArrayLike(t,"be",s)}o.getr=s,e.exports=o}).call(this,r("b639").Buffer)},aa56:function(e,t,r){"use strict";var i=r("c3c0"),n=i.rotr32;function a(e,t,r,i){return 0===e?s(t,r,i):1===e||3===e?h(t,r,i):2===e?o(t,r,i):void 0}function s(e,t,r){return e&t^~e&r}function o(e,t,r){return e&t^e&r^t&r}function h(e,t,r){return e^t^r}function l(e){return n(e,2)^n(e,13)^n(e,22)}function c(e){return n(e,6)^n(e,11)^n(e,25)}function u(e){return n(e,7)^n(e,18)^e>>>3}function f(e){return n(e,17)^n(e,19)^e>>>10}t.ft_1=a,t.ch32=s,t.maj32=o,t.p32=h,t.s0_256=l,t.s1_256=c,t.g0_256=u,t.g1_256=f},ac4f:function(e,t,r){"use strict";var i;function n(e){var t=!1;return function(){t||(t=!0,e.apply(void 0,arguments))}}var a=r("d113").codes,s=a.ERR_MISSING_ARGS,o=a.ERR_STREAM_DESTROYED;function h(e){if(e)throw e}function l(e){return e.setHeader&&"function"===typeof e.abort}function c(e,t,a,s){s=n(s);var h=!1;e.on("close",(function(){h=!0})),void 0===i&&(i=r("42a7")),i(e,{readable:t,writable:a},(function(e){if(e)return s(e);h=!0,s()}));var c=!1;return function(t){if(!h&&!c)return c=!0,l(e)?e.abort():"function"===typeof e.destroy?e.destroy():void s(t||new o("pipe"))}}function u(e){e()}function f(e,t){return e.pipe(t)}function d(e){return e.length?"function"!==typeof e[e.length-1]?h:e.pop():h}function p(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var i,n=d(t);if(Array.isArray(t[0])&&(t=t[0]),t.length<2)throw new s("streams");var a=t.map((function(e,r){var s=r<t.length-1,o=r>0;return c(e,s,o,(function(e){i||(i=e),e&&a.forEach(u),s||(a.forEach(u),n(i))}))}));return t.reduce(f)}e.exports=p},ad25:function(e,t,r){var i=r("2aee"),n=r("11dc"),a=r("98e6"),s=r("f460"),o=r("83d5"),h=r("0106"),l=r("5291"),c=r("a958"),u=r("8707").Buffer;function f(e,t){var r=e.modulus.byteLength(),i=t.length,l=a("sha1").update(u.alloc(0)).digest(),c=l.length,f=2*c;if(i>r-f-2)throw new Error("message too long");var d=u.alloc(r-i-f-2),p=r-c-1,m=n(c),g=o(u.concat([l,d,u.alloc(1,1),t],p),s(m,p)),b=o(m,s(g,c));return new h(u.concat([u.alloc(1),b,g],r))}function d(e,t,r){var i,n=t.length,a=e.modulus.byteLength();if(n>a-11)throw new Error("message too long");return i=r?u.alloc(a-n-3,255):p(a-n-3),new h(u.concat([u.from([0,r?1:2]),i,u.alloc(1),t],a))}function p(e){var t,r=u.allocUnsafe(e),i=0,a=n(2*e),s=0;while(i<e)s===a.length&&(a=n(2*e),s=0),t=a[s++],t&&(r[i++]=t);return r}e.exports=function(e,t,r){var n;n=e.padding?e.padding:r?1:4;var a,s=i(e);if(4===n)a=f(s,t);else if(1===n)a=d(s,t,r);else{if(3!==n)throw new Error("unknown padding");if(a=new h(t),a.cmp(s.modulus)>=0)throw new Error("data too long for modulus")}return r?c(a,s):l(a,s)}},ad71:function(e,t,r){"use strict";(function(t,i){var n=r("966d");e.exports=_;var a,s=r("e3db");_.ReadableState=M;r("faa1").EventEmitter;var o=function(e,t){return e.listeners(t).length},h=r("429b"),l=r("8707").Buffer,c=t.Uint8Array||function(){};function u(e){return l.from(e)}function f(e){return l.isBuffer(e)||e instanceof c}var d=Object.create(r("3a7c"));d.inherits=r("3fb5");var p=r(11),m=void 0;m=p&&p.debuglog?p.debuglog("stream"):function(){};var g,b=r("5e1a"),v=r("4681");d.inherits(_,h);var y=["error","close","destroy","pause","resume"];function w(e,t,r){if("function"===typeof e.prependListener)return e.prependListener(t,r);e._events&&e._events[t]?s(e._events[t])?e._events[t].unshift(r):e._events[t]=[r,e._events[t]]:e.on(t,r)}function M(e,t){a=a||r("b19a"),e=e||{};var i=t instanceof a;this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.readableObjectMode);var n=e.highWaterMark,s=e.readableHighWaterMark,o=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:i&&(s||0===s)?s:o,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new b,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(g||(g=r("7d72").StringDecoder),this.decoder=new g(e.encoding),this.encoding=e.encoding)}function _(e){if(a=a||r("b19a"),!(this instanceof _))return new _(e);this._readableState=new M(e,this),this.readable=!0,e&&("function"===typeof e.read&&(this._read=e.read),"function"===typeof e.destroy&&(this._destroy=e.destroy)),h.call(this)}function S(e,t,r,i,n){var a,s=e._readableState;null===t?(s.reading=!1,R(e,s)):(n||(a=A(s,t)),a?e.emit("error",a):s.objectMode||t&&t.length>0?("string"===typeof t||s.objectMode||Object.getPrototypeOf(t)===l.prototype||(t=u(t)),i?s.endEmitted?e.emit("error",new Error("stream.unshift() after end event")):k(e,s,t,!0):s.ended?e.emit("error",new Error("stream.push() after EOF")):(s.reading=!1,s.decoder&&!r?(t=s.decoder.write(t),s.objectMode||0!==t.length?k(e,s,t,!1):O(e,s)):k(e,s,t,!1))):i||(s.reading=!1));return x(s)}function k(e,t,r,i){t.flowing&&0===t.length&&!t.sync?(e.emit("data",r),e.read(0)):(t.length+=t.objectMode?1:r.length,i?t.buffer.unshift(r):t.buffer.push(r),t.needReadable&&I(e)),O(e,t)}function A(e,t){var r;return f(t)||"string"===typeof t||void 0===t||e.objectMode||(r=new TypeError("Invalid non-string/buffer chunk")),r}function x(e){return!e.ended&&(e.needReadable||e.length<e.highWaterMark||0===e.length)}Object.defineProperty(_.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(e){this._readableState&&(this._readableState.destroyed=e)}}),_.prototype.destroy=v.destroy,_.prototype._undestroy=v.undestroy,_.prototype._destroy=function(e,t){this.push(null),t(e)},_.prototype.push=function(e,t){var r,i=this._readableState;return i.objectMode?r=!0:"string"===typeof e&&(t=t||i.defaultEncoding,t!==i.encoding&&(e=l.from(e,t),t=""),r=!0),S(this,e,t,!1,r)},_.prototype.unshift=function(e){return S(this,e,null,!0,!1)},_.prototype.isPaused=function(){return!1===this._readableState.flowing},_.prototype.setEncoding=function(e){return g||(g=r("7d72").StringDecoder),this._readableState.decoder=new g(e),this._readableState.encoding=e,this};var C=8388608;function E(e){return e>=C?e=C:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}function T(e,t){return e<=0||0===t.length&&t.ended?0:t.objectMode?1:e!==e?t.flowing&&t.length?t.buffer.head.data.length:t.length:(e>t.highWaterMark&&(t.highWaterMark=E(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function R(e,t){if(!t.ended){if(t.decoder){var r=t.decoder.end();r&&r.length&&(t.buffer.push(r),t.length+=t.objectMode?1:r.length)}t.ended=!0,I(e)}}function I(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(m("emitReadable",t.flowing),t.emittedReadable=!0,t.sync?n.nextTick(P,e):P(e))}function P(e){m("emit readable"),e.emit("readable"),U(e)}function O(e,t){t.readingMore||(t.readingMore=!0,n.nextTick(F,e,t))}function F(e,t){var r=t.length;while(!t.reading&&!t.flowing&&!t.ended&&t.length<t.highWaterMark){if(m("maybeReadMore read 0"),e.read(0),r===t.length)break;r=t.length}t.readingMore=!1}function L(e){return function(){var t=e._readableState;m("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&o(e,"data")&&(t.flowing=!0,U(e))}}function D(e){m("readable nexttick read 0"),e.read(0)}function N(e,t){t.resumeScheduled||(t.resumeScheduled=!0,n.nextTick(B,e,t))}function B(e,t){t.reading||(m("resume read 0"),e.read(0)),t.resumeScheduled=!1,t.awaitDrain=0,e.emit("resume"),U(e),t.flowing&&!t.reading&&e.read(0)}function U(e){var t=e._readableState;m("flow",t.flowing);while(t.flowing&&null!==e.read());}function j(e,t){return 0===t.length?null:(t.objectMode?r=t.buffer.shift():!e||e>=t.length?(r=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.head.data:t.buffer.concat(t.length),t.buffer.clear()):r=q(e,t.buffer,t.decoder),r);var r}function q(e,t,r){var i;return e<t.head.data.length?(i=t.head.data.slice(0,e),t.head.data=t.head.data.slice(e)):i=e===t.head.data.length?t.shift():r?z(e,t):H(e,t),i}function z(e,t){var r=t.head,i=1,n=r.data;e-=n.length;while(r=r.next){var a=r.data,s=e>a.length?a.length:e;if(s===a.length?n+=a:n+=a.slice(0,e),e-=s,0===e){s===a.length?(++i,r.next?t.head=r.next:t.head=t.tail=null):(t.head=r,r.data=a.slice(s));break}++i}return t.length-=i,n}function H(e,t){var r=l.allocUnsafe(e),i=t.head,n=1;i.data.copy(r),e-=i.data.length;while(i=i.next){var a=i.data,s=e>a.length?a.length:e;if(a.copy(r,r.length-e,0,s),e-=s,0===e){s===a.length?(++n,i.next?t.head=i.next:t.head=t.tail=null):(t.head=i,i.data=a.slice(s));break}++n}return t.length-=n,r}function G(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');t.endEmitted||(t.ended=!0,n.nextTick(W,t,e))}function W(e,t){e.endEmitted||0!==e.length||(e.endEmitted=!0,t.readable=!1,t.emit("end"))}function X(e,t){for(var r=0,i=e.length;r<i;r++)if(e[r]===t)return r;return-1}_.prototype.read=function(e){m("read",e),e=parseInt(e,10);var t=this._readableState,r=e;if(0!==e&&(t.emittedReadable=!1),0===e&&t.needReadable&&(t.length>=t.highWaterMark||t.ended))return m("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?G(this):I(this),null;if(e=T(e,t),0===e&&t.ended)return 0===t.length&&G(this),null;var i,n=t.needReadable;return m("need readable",n),(0===t.length||t.length-e<t.highWaterMark)&&(n=!0,m("length less than watermark",n)),t.ended||t.reading?(n=!1,m("reading or ended",n)):n&&(m("do read"),t.reading=!0,t.sync=!0,0===t.length&&(t.needReadable=!0),this._read(t.highWaterMark),t.sync=!1,t.reading||(e=T(r,t))),i=e>0?j(e,t):null,null===i?(t.needReadable=!0,e=0):t.length-=e,0===t.length&&(t.ended||(t.needReadable=!0),r!==e&&t.ended&&G(this)),null!==i&&this.emit("data",i),i},_.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))},_.prototype.pipe=function(e,t){var r=this,a=this._readableState;switch(a.pipesCount){case 0:a.pipes=e;break;case 1:a.pipes=[a.pipes,e];break;default:a.pipes.push(e);break}a.pipesCount+=1,m("pipe count=%d opts=%j",a.pipesCount,t);var s=(!t||!1!==t.end)&&e!==i.stdout&&e!==i.stderr,h=s?c:M;function l(e,t){m("onunpipe"),e===r&&t&&!1===t.hasUnpiped&&(t.hasUnpiped=!0,d())}function c(){m("onend"),e.end()}a.endEmitted?n.nextTick(h):r.once("end",h),e.on("unpipe",l);var u=L(r);e.on("drain",u);var f=!1;function d(){m("cleanup"),e.removeListener("close",v),e.removeListener("finish",y),e.removeListener("drain",u),e.removeListener("error",b),e.removeListener("unpipe",l),r.removeListener("end",c),r.removeListener("end",M),r.removeListener("data",g),f=!0,!a.awaitDrain||e._writableState&&!e._writableState.needDrain||u()}var p=!1;function g(t){m("ondata"),p=!1;var i=e.write(t);!1!==i||p||((1===a.pipesCount&&a.pipes===e||a.pipesCount>1&&-1!==X(a.pipes,e))&&!f&&(m("false write response, pause",r._readableState.awaitDrain),r._readableState.awaitDrain++,p=!0),r.pause())}function b(t){m("onerror",t),M(),e.removeListener("error",b),0===o(e,"error")&&e.emit("error",t)}function v(){e.removeListener("finish",y),M()}function y(){m("onfinish"),e.removeListener("close",v),M()}function M(){m("unpipe"),r.unpipe(e)}return r.on("data",g),w(e,"error",b),e.once("close",v),e.once("finish",y),e.emit("pipe",r),a.flowing||(m("pipe resume"),r.resume()),e},_.prototype.unpipe=function(e){var t=this._readableState,r={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes||(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,r)),this;if(!e){var i=t.pipes,n=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var a=0;a<n;a++)i[a].emit("unpipe",this,r);return this}var s=X(t.pipes,e);return-1===s||(t.pipes.splice(s,1),t.pipesCount-=1,1===t.pipesCount&&(t.pipes=t.pipes[0]),e.emit("unpipe",this,r)),this},_.prototype.on=function(e,t){var r=h.prototype.on.call(this,e,t);if("data"===e)!1!==this._readableState.flowing&&this.resume();else if("readable"===e){var i=this._readableState;i.endEmitted||i.readableListening||(i.readableListening=i.needReadable=!0,i.emittedReadable=!1,i.reading?i.length&&I(this):n.nextTick(D,this))}return r},_.prototype.addListener=_.prototype.on,_.prototype.resume=function(){var e=this._readableState;return e.flowing||(m("resume"),e.flowing=!0,N(this,e)),this},_.prototype.pause=function(){return m("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(m("pause"),this._readableState.flowing=!1,this.emit("pause")),this},_.prototype.wrap=function(e){var t=this,r=this._readableState,i=!1;for(var n in e.on("end",(function(){if(m("wrapped end"),r.decoder&&!r.ended){var e=r.decoder.end();e&&e.length&&t.push(e)}t.push(null)})),e.on("data",(function(n){if(m("wrapped data"),r.decoder&&(n=r.decoder.write(n)),(!r.objectMode||null!==n&&void 0!==n)&&(r.objectMode||n&&n.length)){var a=t.push(n);a||(i=!0,e.pause())}})),e)void 0===this[n]&&"function"===typeof e[n]&&(this[n]=function(t){return function(){return e[t].apply(e,arguments)}}(n));for(var a=0;a<y.length;a++)e.on(y[a],this.emit.bind(this,y[a]));return this._read=function(t){m("wrapped _read",t),i&&(i=!1,e.resume())},this},Object.defineProperty(_.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),_._fromList=j}).call(this,r("c8ba"),r("f28c"))},ae84:function(e,t,r){var i=r("8707").Buffer,n=r("f576");function a(e,t,r,a){if(i.isBuffer(e)||(e=i.from(e,"binary")),t&&(i.isBuffer(t)||(t=i.from(t,"binary")),8!==t.length))throw new RangeError("salt should be Buffer with 8 byte length");var s=r/8,o=i.alloc(s),h=i.alloc(a||0),l=i.alloc(0);while(s>0||a>0){var c=new n;c.update(l),c.update(e),t&&c.update(t),l=c.digest();var u=0;if(s>0){var f=o.length-s;u=Math.min(s,l.length),l.copy(o,f,0,u),s-=u}if(u<l.length&&a>0){var d=h.length-a,p=Math.min(a,l.length-u);l.copy(h,d,u,u+p),a-=p}}return l.fill(0),{key:o,iv:h}}e.exports=a},b19a:function(e,t,r){"use strict";var i=r("966d"),n=Object.keys||function(e){var t=[];for(var r in e)t.push(r);return t};e.exports=u;var a=Object.create(r("3a7c"));a.inherits=r("3fb5");var s=r("ad71"),o=r("dc14");a.inherits(u,s);for(var h=n(o.prototype),l=0;l<h.length;l++){var c=h[l];u.prototype[c]||(u.prototype[c]=o.prototype[c])}function u(e){if(!(this instanceof u))return new u(e);s.call(this,e),o.call(this,e),e&&!1===e.readable&&(this.readable=!1),e&&!1===e.writable&&(this.writable=!1),this.allowHalfOpen=!0,e&&!1===e.allowHalfOpen&&(this.allowHalfOpen=!1),this.once("end",f)}function f(){this.allowHalfOpen||this._writableState.ended||i.nextTick(d,this)}function d(e){e.end()}Object.defineProperty(u.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(u.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(e){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=e,this._writableState.destroyed=e)}}),u.prototype._destroy=function(e,t){this.push(null),this.end(),i.nextTick(t,e)}},b39a:function(e,t,r){var i=r("d3f4");e.exports=function(e,t){if(!i(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},b4e8:function(e){e.exports=JSON.parse('{"sha224WithRSAEncryption":{"sign":"rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"RSA-SHA224":{"sign":"ecdsa/rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"sha256WithRSAEncryption":{"sign":"rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"RSA-SHA256":{"sign":"ecdsa/rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"sha384WithRSAEncryption":{"sign":"rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"RSA-SHA384":{"sign":"ecdsa/rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"sha512WithRSAEncryption":{"sign":"rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA512":{"sign":"ecdsa/rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA1":{"sign":"rsa","hash":"sha1","id":"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{"sign":"ecdsa","hash":"sha1","id":""},"sha256":{"sign":"ecdsa","hash":"sha256","id":""},"sha224":{"sign":"ecdsa","hash":"sha224","id":""},"sha384":{"sign":"ecdsa","hash":"sha384","id":""},"sha512":{"sign":"ecdsa","hash":"sha512","id":""},"DSA-SHA":{"sign":"dsa","hash":"sha1","id":""},"DSA-SHA1":{"sign":"dsa","hash":"sha1","id":""},"DSA":{"sign":"dsa","hash":"sha1","id":""},"DSA-WITH-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-WITH-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-WITH-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-WITH-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-RIPEMD160":{"sign":"dsa","hash":"rmd160","id":""},"ripemd160WithRSA":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"RSA-RIPEMD160":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"md5WithRSAEncryption":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"},"RSA-MD5":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"}}')},b525:function(e,t,r){"use strict";var i=r("c3c0"),n=r("edc9"),a=r("da3e"),s=i.rotr64_hi,o=i.rotr64_lo,h=i.shr64_hi,l=i.shr64_lo,c=i.sum64,u=i.sum64_hi,f=i.sum64_lo,d=i.sum64_4_hi,p=i.sum64_4_lo,m=i.sum64_5_hi,g=i.sum64_5_lo,b=n.BlockHash,v=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591];function y(){if(!(this instanceof y))return new y;b.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=v,this.W=new Array(160)}function w(e,t,r,i,n){var a=e&r^~e&n;return a<0&&(a+=4294967296),a}function M(e,t,r,i,n,a){var s=t&i^~t&a;return s<0&&(s+=4294967296),s}function _(e,t,r,i,n){var a=e&r^e&n^r&n;return a<0&&(a+=4294967296),a}function S(e,t,r,i,n,a){var s=t&i^t&a^i&a;return s<0&&(s+=4294967296),s}function k(e,t){var r=s(e,t,28),i=s(t,e,2),n=s(t,e,7),a=r^i^n;return a<0&&(a+=4294967296),a}function A(e,t){var r=o(e,t,28),i=o(t,e,2),n=o(t,e,7),a=r^i^n;return a<0&&(a+=4294967296),a}function x(e,t){var r=s(e,t,14),i=s(e,t,18),n=s(t,e,9),a=r^i^n;return a<0&&(a+=4294967296),a}function C(e,t){var r=o(e,t,14),i=o(e,t,18),n=o(t,e,9),a=r^i^n;return a<0&&(a+=4294967296),a}function E(e,t){var r=s(e,t,1),i=s(e,t,8),n=h(e,t,7),a=r^i^n;return a<0&&(a+=4294967296),a}function T(e,t){var r=o(e,t,1),i=o(e,t,8),n=l(e,t,7),a=r^i^n;return a<0&&(a+=4294967296),a}function R(e,t){var r=s(e,t,19),i=s(t,e,29),n=h(e,t,6),a=r^i^n;return a<0&&(a+=4294967296),a}function I(e,t){var r=o(e,t,19),i=o(t,e,29),n=l(e,t,6),a=r^i^n;return a<0&&(a+=4294967296),a}i.inherits(y,b),e.exports=y,y.blockSize=1024,y.outSize=512,y.hmacStrength=192,y.padLength=128,y.prototype._prepareBlock=function(e,t){for(var r=this.W,i=0;i<32;i++)r[i]=e[t+i];for(;i<r.length;i+=2){var n=R(r[i-4],r[i-3]),a=I(r[i-4],r[i-3]),s=r[i-14],o=r[i-13],h=E(r[i-30],r[i-29]),l=T(r[i-30],r[i-29]),c=r[i-32],u=r[i-31];r[i]=d(n,a,s,o,h,l,c,u),r[i+1]=p(n,a,s,o,h,l,c,u)}},y.prototype._update=function(e,t){this._prepareBlock(e,t);var r=this.W,i=this.h[0],n=this.h[1],s=this.h[2],o=this.h[3],h=this.h[4],l=this.h[5],d=this.h[6],p=this.h[7],b=this.h[8],v=this.h[9],y=this.h[10],E=this.h[11],T=this.h[12],R=this.h[13],I=this.h[14],P=this.h[15];a(this.k.length===r.length);for(var O=0;O<r.length;O+=2){var F=I,L=P,D=x(b,v),N=C(b,v),B=w(b,v,y,E,T,R),U=M(b,v,y,E,T,R),j=this.k[O],q=this.k[O+1],z=r[O],H=r[O+1],G=m(F,L,D,N,B,U,j,q,z,H),W=g(F,L,D,N,B,U,j,q,z,H);F=k(i,n),L=A(i,n),D=_(i,n,s,o,h,l),N=S(i,n,s,o,h,l);var X=u(F,L,D,N),V=f(F,L,D,N);I=T,P=R,T=y,R=E,y=b,E=v,b=u(d,p,G,W),v=f(p,p,G,W),d=h,p=l,h=s,l=o,s=i,o=n,i=u(G,W,X,V),n=f(G,W,X,V)}c(this.h,0,i,n),c(this.h,2,s,o),c(this.h,4,h,l),c(this.h,6,d,p),c(this.h,8,b,v),c(this.h,10,y,E),c(this.h,12,T,R),c(this.h,14,I,P)},y.prototype._digest=function(e){return"hex"===e?i.toHex32(this.h,"big"):i.split32(this.h,"big")}},b5ca:function(e,t,r){"use strict";var i=r("b639").Buffer,n=r("3fb5"),a=r("93e6"),s=new Array(16),o=[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],h=[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],l=[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],c=[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],u=[0,1518500249,1859775393,2400959708,2840853838],f=[1352829926,1548603684,1836072691,2053994217,0];function d(){a.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function p(e,t){return e<<t|e>>>32-t}function m(e,t,r,i,n,a,s,o){return p(e+(t^r^i)+a+s|0,o)+n|0}function g(e,t,r,i,n,a,s,o){return p(e+(t&r|~t&i)+a+s|0,o)+n|0}function b(e,t,r,i,n,a,s,o){return p(e+((t|~r)^i)+a+s|0,o)+n|0}function v(e,t,r,i,n,a,s,o){return p(e+(t&i|r&~i)+a+s|0,o)+n|0}function y(e,t,r,i,n,a,s,o){return p(e+(t^(r|~i))+a+s|0,o)+n|0}n(d,a),d.prototype._update=function(){for(var e=s,t=0;t<16;++t)e[t]=this._block.readInt32LE(4*t);for(var r=0|this._a,i=0|this._b,n=0|this._c,a=0|this._d,d=0|this._e,w=0|this._a,M=0|this._b,_=0|this._c,S=0|this._d,k=0|this._e,A=0;A<80;A+=1){var x,C;A<16?(x=m(r,i,n,a,d,e[o[A]],u[0],l[A]),C=y(w,M,_,S,k,e[h[A]],f[0],c[A])):A<32?(x=g(r,i,n,a,d,e[o[A]],u[1],l[A]),C=v(w,M,_,S,k,e[h[A]],f[1],c[A])):A<48?(x=b(r,i,n,a,d,e[o[A]],u[2],l[A]),C=b(w,M,_,S,k,e[h[A]],f[2],c[A])):A<64?(x=v(r,i,n,a,d,e[o[A]],u[3],l[A]),C=g(w,M,_,S,k,e[h[A]],f[3],c[A])):(x=y(r,i,n,a,d,e[o[A]],u[4],l[A]),C=m(w,M,_,S,k,e[h[A]],f[4],c[A])),r=d,d=a,a=p(n,10),n=i,i=x,w=k,k=S,S=p(_,10),_=M,M=C}var E=this._b+n+S|0;this._b=this._c+a+k|0,this._c=this._d+d+w|0,this._d=this._e+r+M|0,this._e=this._a+i+_|0,this._a=E},d.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var e=i.alloc?i.alloc(20):new i(20);return e.writeInt32LE(this._a,0),e.writeInt32LE(this._b,4),e.writeInt32LE(this._c,8),e.writeInt32LE(this._d,12),e.writeInt32LE(this._e,16),e},e.exports=d},b672:function(e,t,r){var i=r("8707").Buffer;function n(e,t){this._block=i.alloc(e),this._finalSize=t,this._blockSize=e,this._len=0}n.prototype.update=function(e,t){"string"===typeof e&&(t=t||"utf8",e=i.from(e,t));for(var r=this._block,n=this._blockSize,a=e.length,s=this._len,o=0;o<a;){for(var h=s%n,l=Math.min(a-o,n-h),c=0;c<l;c++)r[h+c]=e[o+c];s+=l,o+=l,s%n===0&&this._update(r)}return this._len+=a,this},n.prototype.digest=function(e){var t=this._len%this._blockSize;this._block[t]=128,this._block.fill(0,t+1),t>=this._finalSize&&(this._update(this._block),this._block.fill(0));var r=8*this._len;if(r<=4294967295)this._block.writeUInt32BE(r,this._blockSize-4);else{var i=(4294967295&r)>>>0,n=(r-i)/4294967296;this._block.writeUInt32BE(n,this._blockSize-8),this._block.writeUInt32BE(i,this._blockSize-4)}this._update(this._block);var a=this._hash();return e?a.toString(e):a},n.prototype._update=function(){throw new Error("_update must be implemented by subclass")},e.exports=n},b692:function(e,t,r){var i=r("39a9").Buffer,n=r("98e6"),a=r("34d5"),s=r("3fb5"),o=r("6fe7"),h=r("980c"),l=r("b4e8");function c(e){a.Writable.call(this);var t=l[e];if(!t)throw new Error("Unknown message digest");this._hashType=t.hash,this._hash=n(t.hash),this._tag=t.id,this._signType=t.sign}function u(e){a.Writable.call(this);var t=l[e];if(!t)throw new Error("Unknown message digest");this._hash=n(t.hash),this._tag=t.id,this._signType=t.sign}function f(e){return new c(e)}function d(e){return new u(e)}Object.keys(l).forEach((function(e){l[e].id=i.from(l[e].id,"hex"),l[e.toLowerCase()]=l[e]})),s(c,a.Writable),c.prototype._write=function(e,t,r){this._hash.update(e),r()},c.prototype.update=function(e,t){return"string"===typeof e&&(e=i.from(e,t)),this._hash.update(e),this},c.prototype.sign=function(e,t){this.end();var r=this._hash.digest(),i=o(r,e,this._hashType,this._signType,this._tag);return t?i.toString(t):i},s(u,a.Writable),u.prototype._write=function(e,t,r){this._hash.update(e),r()},u.prototype.update=function(e,t){return"string"===typeof e&&(e=i.from(e,t)),this._hash.update(e),this},u.prototype.verify=function(e,t,r){"string"===typeof t&&(t=i.from(t,r)),this.end();var n=this._hash.digest();return h(t,n,e,this._signType,this._tag)},e.exports={Sign:f,Verify:d,createSign:f,createVerify:d}},b73f:function(e,t,r){"use strict";var i=r("80af"),n=r("f3a3"),a=n.assert;function s(e,t){if(e instanceof s)return e;this._importDER(e,t)||(a(e.r&&e.s,"Signature without r or s"),this.r=new i(e.r,16),this.s=new i(e.s,16),void 0===e.recoveryParam?this.recoveryParam=null:this.recoveryParam=e.recoveryParam)}function o(){this.place=0}function h(e,t){var r=e[t.place++];if(!(128&r))return r;var i=15&r;if(0===i||i>4)return!1;for(var n=0,a=0,s=t.place;a<i;a++,s++)n<<=8,n|=e[s],n>>>=0;return!(n<=127)&&(t.place=s,n)}function l(e){var t=0,r=e.length-1;while(!e[t]&&!(128&e[t+1])&&t<r)t++;return 0===t?e:e.slice(t)}function c(e,t){if(t<128)e.push(t);else{var r=1+(Math.log(t)/Math.LN2>>>3);e.push(128|r);while(--r)e.push(t>>>(r<<3)&255);e.push(t)}}e.exports=s,s.prototype._importDER=function(e,t){e=n.toArray(e,t);var r=new o;if(48!==e[r.place++])return!1;var a=h(e,r);if(!1===a)return!1;if(a+r.place!==e.length)return!1;if(2!==e[r.place++])return!1;var s=h(e,r);if(!1===s)return!1;var l=e.slice(r.place,s+r.place);if(r.place+=s,2!==e[r.place++])return!1;var c=h(e,r);if(!1===c)return!1;if(e.length!==c+r.place)return!1;var u=e.slice(r.place,c+r.place);if(0===l[0]){if(!(128&l[1]))return!1;l=l.slice(1)}if(0===u[0]){if(!(128&u[1]))return!1;u=u.slice(1)}return this.r=new i(l),this.s=new i(u),this.recoveryParam=null,!0},s.prototype.toDER=function(e){var t=this.r.toArray(),r=this.s.toArray();128&t[0]&&(t=[0].concat(t)),128&r[0]&&(r=[0].concat(r)),t=l(t),r=l(r);while(!r[0]&&!(128&r[1]))r=r.slice(1);var i=[2];c(i,t.length),i=i.concat(t),i.push(2),c(i,r.length);var a=i.concat(r),s=[48];return c(s,a.length),s=s.concat(a),n.encode(s,e)}},b7d1:function(e,t,r){(function(t){function r(e,t){if(i("noDeprecation"))return e;var r=!1;function n(){if(!r){if(i("throwDeprecation"))throw new Error(t);i("traceDeprecation")?console.trace(t):console.warn(t),r=!0}return e.apply(this,arguments)}return n}function i(e){try{if(!t.localStorage)return!1}catch(i){return!1}var r=t.localStorage[e];return null!=r&&"true"===String(r).toLowerCase()}e.exports=r}).call(this,r("c8ba"))},b837:function(e,t,r){var i=r("3fb5"),n=r("4fd1"),a=r("b672"),s=r("8707").Buffer,o=new Array(160);function h(){this.init(),this._w=o,a.call(this,128,112)}i(h,n),h.prototype.init=function(){return this._ah=3418070365,this._bh=1654270250,this._ch=2438529370,this._dh=355462360,this._eh=1731405415,this._fh=2394180231,this._gh=3675008525,this._hh=1203062813,this._al=3238371032,this._bl=914150663,this._cl=812702999,this._dl=4144912697,this._el=4290775857,this._fl=1750603025,this._gl=1694076839,this._hl=3204075428,this},h.prototype._hash=function(){var e=s.allocUnsafe(48);function t(t,r,i){e.writeInt32BE(t,i),e.writeInt32BE(r,i+4)}return t(this._ah,this._al,0),t(this._bh,this._bl,8),t(this._ch,this._cl,16),t(this._dh,this._dl,24),t(this._eh,this._el,32),t(this._fh,this._fl,40),e},e.exports=h},b9a8:function(e,t,r){"use strict";var i=r("80af"),n=r("6aa23"),a=r("f3a3"),s=r("0cbb"),o=r("fdac"),h=a.assert,l=r("bb34"),c=r("b73f");function u(e){if(!(this instanceof u))return new u(e);"string"===typeof e&&(h(Object.prototype.hasOwnProperty.call(s,e),"Unknown curve "+e),e=s[e]),e instanceof s.PresetCurve&&(e={curve:e}),this.curve=e.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=e.curve.g,this.g.precompute(e.curve.n.bitLength()+1),this.hash=e.hash||e.curve.hash}e.exports=u,u.prototype.keyPair=function(e){return new l(this,e)},u.prototype.keyFromPrivate=function(e,t){return l.fromPrivate(this,e,t)},u.prototype.keyFromPublic=function(e,t){return l.fromPublic(this,e,t)},u.prototype.genKeyPair=function(e){e||(e={});for(var t=new n({hash:this.hash,pers:e.pers,persEnc:e.persEnc||"utf8",entropy:e.entropy||o(this.hash.hmacStrength),entropyEnc:e.entropy&&e.entropyEnc||"utf8",nonce:this.n.toArray()}),r=this.n.byteLength(),a=this.n.sub(new i(2));;){var s=new i(t.generate(r));if(!(s.cmp(a)>0))return s.iaddn(1),this.keyFromPrivate(s)}},u.prototype._truncateToN=function(e,t){var r=8*e.byteLength()-this.n.bitLength();return r>0&&(e=e.ushrn(r)),!t&&e.cmp(this.n)>=0?e.sub(this.n):e},u.prototype.sign=function(e,t,r,a){"object"===typeof r&&(a=r,r=null),a||(a={}),t=this.keyFromPrivate(t,r),e=this._truncateToN(new i(e,16));for(var s=this.n.byteLength(),o=t.getPrivate().toArray("be",s),h=e.toArray("be",s),l=new n({hash:this.hash,entropy:o,nonce:h,pers:a.pers,persEnc:a.persEnc||"utf8"}),u=this.n.sub(new i(1)),f=0;;f++){var d=a.k?a.k(f):new i(l.generate(this.n.byteLength()));if(d=this._truncateToN(d,!0),!(d.cmpn(1)<=0||d.cmp(u)>=0)){var p=this.g.mul(d);if(!p.isInfinity()){var m=p.getX(),g=m.umod(this.n);if(0!==g.cmpn(0)){var b=d.invm(this.n).mul(g.mul(t.getPrivate()).iadd(e));if(b=b.umod(this.n),0!==b.cmpn(0)){var v=(p.getY().isOdd()?1:0)|(0!==m.cmp(g)?2:0);return a.canonical&&b.cmp(this.nh)>0&&(b=this.n.sub(b),v^=1),new c({r:g,s:b,recoveryParam:v})}}}}}},u.prototype.verify=function(e,t,r,n){e=this._truncateToN(new i(e,16)),r=this.keyFromPublic(r,n),t=new c(t,"hex");var a=t.r,s=t.s;if(a.cmpn(1)<0||a.cmp(this.n)>=0)return!1;if(s.cmpn(1)<0||s.cmp(this.n)>=0)return!1;var o,h=s.invm(this.n),l=h.mul(e).umod(this.n),u=h.mul(a).umod(this.n);return this.curve._maxwellTrick?(o=this.g.jmulAdd(l,r.getPublic(),u),!o.isInfinity()&&o.eqXToP(a)):(o=this.g.mulAdd(l,r.getPublic(),u),!o.isInfinity()&&0===o.getX().umod(this.n).cmp(a))},u.prototype.recoverPubKey=function(e,t,r,n){h((3&r)===r,"The recovery param is more than two bits"),t=new c(t,n);var a=this.n,s=new i(e),o=t.r,l=t.s,u=1&r,f=r>>1;if(o.cmp(this.curve.p.umod(this.curve.n))>=0&&f)throw new Error("Unable to find sencond key candinate");o=f?this.curve.pointFromX(o.add(this.curve.n),u):this.curve.pointFromX(o,u);var d=t.r.invm(a),p=a.sub(s).mul(d).umod(a),m=l.mul(d).umod(a);return this.g.mulAdd(p,o,m)},u.prototype.getKeyRecoveryParam=function(e,t,r,i){if(t=new c(t,i),null!==t.recoveryParam)return t.recoveryParam;for(var n=0;n<4;n++){var a;try{a=this.recoverPubKey(e,t,n)}catch(e){continue}if(a.eq(r))return n}throw new Error("Unable to find valid recovery factor")}},b9b5:function(e,t,r){"use strict";var i=r("9d8a").codes.ERR_INVALID_OPT_VALUE;function n(e,t,r){return null!=e.highWaterMark?e.highWaterMark:t?e[r]:null}function a(e,t,r,a){var s=n(t,a,r);if(null!=s){if(!isFinite(s)||Math.floor(s)!==s||s<0){var o=a?r:"highWaterMark";throw new i(o,s)}return Math.floor(s)}return e.objectMode?16:16384}e.exports={getHighWaterMark:a}},ba16:function(e,t,r){var i=r("5ca1"),n=r("11e9").f,a=r("cb7c");i(i.S,"Reflect",{deleteProperty:function(e,t){var r=n(a(e),t);return!(r&&!r.configurable)&&delete e[t]}})},ba92:function(e,t,r){"use strict";var i=r("4bf8"),n=r("77f1"),a=r("9def");e.exports=[].copyWithin||function(e,t){var r=i(this),s=a(r.length),o=n(e,s),h=n(t,s),l=arguments.length>2?arguments[2]:void 0,c=Math.min((void 0===l?s:n(l,s))-h,s-o),u=1;h<o&&o<h+c&&(u=-1,h+=c-1,o+=c-1);while(c-- >0)h in r?r[o]=r[h]:delete r[o],o+=u,h+=u;return r}},bac2:function(e,t,r){var i={ECB:r("0145"),CBC:r("c119"),CFB:r("3505"),CFB8:r("62c9"),CFB1:r("5239"),OFB:r("5165"),CTR:r("6ade"),GCM:r("6ade")},n=r("e85f");for(var a in n)n[a].module=i[n[a].mode];e.exports=n},bb34:function(e,t,r){"use strict";var i=r("80af"),n=r("f3a3"),a=n.assert;function s(e,t){this.ec=e,this.priv=null,this.pub=null,t.priv&&this._importPrivate(t.priv,t.privEnc),t.pub&&this._importPublic(t.pub,t.pubEnc)}e.exports=s,s.fromPublic=function(e,t,r){return t instanceof s?t:new s(e,{pub:t,pubEnc:r})},s.fromPrivate=function(e,t,r){return t instanceof s?t:new s(e,{priv:t,privEnc:r})},s.prototype.validate=function(){var e=this.getPublic();return e.isInfinity()?{result:!1,reason:"Invalid public key"}:e.validate()?e.mul(this.ec.curve.n).isInfinity()?{result:!0,reason:null}:{result:!1,reason:"Public key * N != O"}:{result:!1,reason:"Public key is not a point"}},s.prototype.getPublic=function(e,t){return"string"===typeof e&&(t=e,e=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),t?this.pub.encode(t,e):this.pub},s.prototype.getPrivate=function(e){return"hex"===e?this.priv.toString(16,2):this.priv},s.prototype._importPrivate=function(e,t){this.priv=new i(e,t||16),this.priv=this.priv.umod(this.ec.curve.n)},s.prototype._importPublic=function(e,t){if(e.x||e.y)return"mont"===this.ec.curve.type?a(e.x,"Need x coordinate"):"short"!==this.ec.curve.type&&"edwards"!==this.ec.curve.type||a(e.x&&e.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(e.x,e.y));this.pub=this.ec.curve.decodePoint(e,t)},s.prototype.derive=function(e){return e.validate()||a(e.validate(),"public point not validated"),e.mul(this.priv).getX()},s.prototype.sign=function(e,t,r){return this.ec.sign(e,this,t,r)},s.prototype.verify=function(e,t){return this.ec.verify(e,t,this)},s.prototype.inspect=function(){return"<Key priv: "+(this.priv&&this.priv.toString(16,2))+" pub: "+(this.pub&&this.pub.inspect())+" >"}},bb44:function(e,t,r){"use strict";var i=r("c3c0"),n=r("edc9"),a=i.rotl32,s=i.sum32,o=i.sum32_3,h=i.sum32_4,l=n.BlockHash;function c(){if(!(this instanceof c))return new c;l.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function u(e,t,r,i){return e<=15?t^r^i:e<=31?t&r|~t&i:e<=47?(t|~r)^i:e<=63?t&i|r&~i:t^(r|~i)}function f(e){return e<=15?0:e<=31?1518500249:e<=47?1859775393:e<=63?2400959708:2840853838}function d(e){return e<=15?1352829926:e<=31?1548603684:e<=47?1836072691:e<=63?2053994217:0}i.inherits(c,l),t.ripemd160=c,c.blockSize=512,c.outSize=160,c.hmacStrength=192,c.padLength=64,c.prototype._update=function(e,t){for(var r=this.h[0],i=this.h[1],n=this.h[2],l=this.h[3],c=this.h[4],v=r,y=i,w=n,M=l,_=c,S=0;S<80;S++){var k=s(a(h(r,u(S,i,n,l),e[p[S]+t],f(S)),g[S]),c);r=c,c=l,l=a(n,10),n=i,i=k,k=s(a(h(v,u(79-S,y,w,M),e[m[S]+t],d(S)),b[S]),_),v=_,_=M,M=a(w,10),w=y,y=k}k=o(this.h[1],n,M),this.h[1]=o(this.h[2],l,_),this.h[2]=o(this.h[3],c,v),this.h[3]=o(this.h[4],r,y),this.h[4]=o(this.h[0],i,w),this.h[0]=k},c.prototype._digest=function(e){return"hex"===e?i.toHex32(this.h,"little"):i.split32(this.h,"little")};var p=[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],m=[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],g=[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],b=[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]},bc12:function(e,t,r){(function(e){(function(e,t){"use strict";function i(e,t){if(!e)throw new Error(t||"Assertion failed")}function n(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}function a(e,t,r){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(r=t,t=10),this._init(e||0,t||10,r||"be"))}var s;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{s="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:r(20).Buffer}catch(C){}function o(e,t){var r=e.charCodeAt(t);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function h(e,t,r){var i=o(e,r);return r-1>=t&&(i|=o(e,r-1)<<4),i}function l(e,t,r,i){for(var n=0,a=Math.min(e.length,r),s=t;s<a;s++){var o=e.charCodeAt(s)-48;n*=i,n+=o>=49?o-49+10:o>=17?o-17+10:o}return n}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n<e.length&&(16===t?this._parseHex(e,n,r):(this._parseBase(e,t,n),"le"===r&&this._initArray(this.toArray(),t,r)))},a.prototype._initNumber=function(e,t,r){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(i(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),t,r)},a.prototype._initArray=function(e,t,r){if(i("number"===typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var a,s,o=0;if("be"===r)for(n=e.length-1,a=0;n>=0;n-=3)s=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);else if("le"===r)for(n=0,a=0;n<e.length;n+=3)s=e[n]|e[n+1]<<8|e[n+2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var n,a=0,s=0;if("be"===r)for(i=e.length-1;i>=t;i-=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8;else{var o=e.length-t;for(i=o%2===0?t+1:t;i<e.length;i+=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8}this.strip()},a.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var a=e.length-r,s=a%i,o=Math.min(a,a-s)+r,h=0,c=r;c<o;c+=i)h=l(e,c,c+i,t),this.imuln(n),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var u=1;for(h=l(e,c,e.length,t),c=0;c<s;c++)u*=t;this.imuln(u),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this.strip()},a.prototype.copy=function(e){e.words=new Array(this.length);for(var t=0;t<this.length;t++)e.words[t]=this.words[t];e.length=this.length,e.negative=this.negative,e.red=this.red},a.prototype.clone=function(){var e=new a(null);return this.copy(e),e},a.prototype._expand=function(e){while(this.length<e)this.words[this.length++]=0;return this},a.prototype.strip=function(){while(this.length>1&&0===this.words[this.length-1])this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],f=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function d(e){for(var t=new Array(e.bitLength()),r=0;r<t.length;r++){var i=r/26|0,n=r%26;t[r]=(e.words[i]&1<<n)>>>n}return t}function p(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],a=0|t.words[0],s=n*a,o=67108863&s,h=s/67108864|0;r.words[0]=o;for(var l=1;l<i;l++){for(var c=h>>>26,u=67108863&h,f=Math.min(l,t.length-1),d=Math.max(0,l-e.length+1);d<=f;d++){var p=l-d|0;n=0|e.words[p],a=0|t.words[d],s=n*a+u,c+=s/67108864|0,u=67108863&s}r.words[l]=0|u,h=0|c}return 0!==h?r.words[l]=0|h:r.length--,r.strip()}a.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,a=0,s=0;s<this.length;s++){var o=this.words[s],h=(16777215&(o<<n|a)).toString(16);a=o>>>24-n&16777215,r=0!==a||s!==this.length-1?c[6-h.length]+h+r:h+r,n+=2,n>=26&&(n-=26,s--)}0!==a&&(r=a.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var l=u[e],d=f[e];r="";var p=this.clone();p.negative=0;while(!p.isZero()){var m=p.modn(d).toString(e);p=p.idivn(d),r=p.isZero()?m+r:c[l-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return i("undefined"!==typeof s),this.toArrayLike(s,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,r){var n=this.byteLength(),a=r||Math.max(1,n);i(n<=a,"byte array longer than desired length"),i(a>0,"Requested array length <= 0"),this.strip();var s,o,h="le"===t,l=new e(a),c=this.clone();if(h){for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[o]=s;for(;o<a;o++)l[o]=0}else{for(o=0;o<a-n;o++)l[o]=0;for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[a-o-1]=s}return l},Math.clz32?a.prototype._countBits=function(e){return 32-Math.clz32(e)}:a.prototype._countBits=function(e){var t=e,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;t<this.length;t++){var r=this._zeroBits(this.words[t]);if(e+=r,26!==r)break}return e},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(e){return 0!==this.negative?this.abs().inotn(e).iaddn(1):this.clone()},a.prototype.fromTwos=function(e){return this.testn(e-1)?this.notn(e).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(e){while(this.length<e.length)this.words[this.length++]=0;for(var t=0;t<e.length;t++)this.words[t]=this.words[t]|e.words[t];return this.strip()},a.prototype.ior=function(e){return i(0===(this.negative|e.negative)),this.iuor(e)},a.prototype.or=function(e){return this.length>e.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;r<t.length;r++)this.words[r]=this.words[r]&e.words[r];return this.length=t.length,this.strip()},a.prototype.iand=function(e){return i(0===(this.negative|e.negative)),this.iuand(e)},a.prototype.and=function(e){return this.length>e.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;i<r.length;i++)this.words[i]=t.words[i]^r.words[i];if(this!==t)for(;i<t.length;i++)this.words[i]=t.words[i];return this.length=t.length,this.strip()},a.prototype.ixor=function(e){return i(0===(this.negative|e.negative)),this.iuxor(e)},a.prototype.xor=function(e){return this.length>e.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n<t;n++)this.words[n]=67108863&~this.words[n];return r>0&&(this.words[n]=~this.words[n]&67108863>>26-r),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<<n:this.words[r]&~(1<<n),this.strip()},a.prototype.iadd=function(e){var t,r,i;if(0!==this.negative&&0===e.negative)return this.negative=0,t=this.isub(e),this.negative^=1,this._normSign();if(0===this.negative&&0!==e.negative)return e.negative=0,t=this.isub(e),e.negative=1,t._normSign();this.length>e.length?(r=this,i=e):(r=e,i=this);for(var n=0,a=0;a<i.length;a++)t=(0|r.words[a])+(0|i.words[a])+n,this.words[a]=67108863&t,n=t>>>26;for(;0!==n&&a<r.length;a++)t=(0|r.words[a])+n,this.words[a]=67108863&t,n=t>>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(e){var t;return 0!==e.negative&&0===this.negative?(e.negative=0,t=this.sub(e),e.negative^=1,t):0===e.negative&&0!==this.negative?(this.negative=0,t=e.sub(this),this.negative=1,t):this.length>e.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var a=0,s=0;s<i.length;s++)t=(0|r.words[s])-(0|i.words[s])+a,a=t>>26,this.words[s]=67108863&t;for(;0!==a&&s<r.length;s++)t=(0|r.words[s])+a,a=t>>26,this.words[s]=67108863&t;if(0===a&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this.strip()},a.prototype.sub=function(e){return this.clone().isub(e)};var m=function(e,t,r){var i,n,a,s=e.words,o=t.words,h=r.words,l=0,c=0|s[0],u=8191&c,f=c>>>13,d=0|s[1],p=8191&d,m=d>>>13,g=0|s[2],b=8191&g,v=g>>>13,y=0|s[3],w=8191&y,M=y>>>13,_=0|s[4],S=8191&_,k=_>>>13,A=0|s[5],x=8191&A,C=A>>>13,E=0|s[6],T=8191&E,R=E>>>13,I=0|s[7],P=8191&I,O=I>>>13,F=0|s[8],L=8191&F,D=F>>>13,N=0|s[9],B=8191&N,U=N>>>13,j=0|o[0],q=8191&j,z=j>>>13,H=0|o[1],G=8191&H,W=H>>>13,X=0|o[2],V=8191&X,K=X>>>13,Y=0|o[3],Z=8191&Y,$=Y>>>13,J=0|o[4],Q=8191&J,ee=J>>>13,te=0|o[5],re=8191&te,ie=te>>>13,ne=0|o[6],ae=8191&ne,se=ne>>>13,oe=0|o[7],he=8191&oe,le=oe>>>13,ce=0|o[8],ue=8191&ce,fe=ce>>>13,de=0|o[9],pe=8191&de,me=de>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(u,q),n=Math.imul(u,z),n=n+Math.imul(f,q)|0,a=Math.imul(f,z);var ge=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,q),n=Math.imul(p,z),n=n+Math.imul(m,q)|0,a=Math.imul(m,z),i=i+Math.imul(u,G)|0,n=n+Math.imul(u,W)|0,n=n+Math.imul(f,G)|0,a=a+Math.imul(f,W)|0;var be=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(b,q),n=Math.imul(b,z),n=n+Math.imul(v,q)|0,a=Math.imul(v,z),i=i+Math.imul(p,G)|0,n=n+Math.imul(p,W)|0,n=n+Math.imul(m,G)|0,a=a+Math.imul(m,W)|0,i=i+Math.imul(u,V)|0,n=n+Math.imul(u,K)|0,n=n+Math.imul(f,V)|0,a=a+Math.imul(f,K)|0;var ve=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(w,q),n=Math.imul(w,z),n=n+Math.imul(M,q)|0,a=Math.imul(M,z),i=i+Math.imul(b,G)|0,n=n+Math.imul(b,W)|0,n=n+Math.imul(v,G)|0,a=a+Math.imul(v,W)|0,i=i+Math.imul(p,V)|0,n=n+Math.imul(p,K)|0,n=n+Math.imul(m,V)|0,a=a+Math.imul(m,K)|0,i=i+Math.imul(u,Z)|0,n=n+Math.imul(u,$)|0,n=n+Math.imul(f,Z)|0,a=a+Math.imul(f,$)|0;var ye=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(S,q),n=Math.imul(S,z),n=n+Math.imul(k,q)|0,a=Math.imul(k,z),i=i+Math.imul(w,G)|0,n=n+Math.imul(w,W)|0,n=n+Math.imul(M,G)|0,a=a+Math.imul(M,W)|0,i=i+Math.imul(b,V)|0,n=n+Math.imul(b,K)|0,n=n+Math.imul(v,V)|0,a=a+Math.imul(v,K)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,$)|0,n=n+Math.imul(m,Z)|0,a=a+Math.imul(m,$)|0,i=i+Math.imul(u,Q)|0,n=n+Math.imul(u,ee)|0,n=n+Math.imul(f,Q)|0,a=a+Math.imul(f,ee)|0;var we=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(x,q),n=Math.imul(x,z),n=n+Math.imul(C,q)|0,a=Math.imul(C,z),i=i+Math.imul(S,G)|0,n=n+Math.imul(S,W)|0,n=n+Math.imul(k,G)|0,a=a+Math.imul(k,W)|0,i=i+Math.imul(w,V)|0,n=n+Math.imul(w,K)|0,n=n+Math.imul(M,V)|0,a=a+Math.imul(M,K)|0,i=i+Math.imul(b,Z)|0,n=n+Math.imul(b,$)|0,n=n+Math.imul(v,Z)|0,a=a+Math.imul(v,$)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,a=a+Math.imul(m,ee)|0,i=i+Math.imul(u,re)|0,n=n+Math.imul(u,ie)|0,n=n+Math.imul(f,re)|0,a=a+Math.imul(f,ie)|0;var Me=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(T,q),n=Math.imul(T,z),n=n+Math.imul(R,q)|0,a=Math.imul(R,z),i=i+Math.imul(x,G)|0,n=n+Math.imul(x,W)|0,n=n+Math.imul(C,G)|0,a=a+Math.imul(C,W)|0,i=i+Math.imul(S,V)|0,n=n+Math.imul(S,K)|0,n=n+Math.imul(k,V)|0,a=a+Math.imul(k,K)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,$)|0,n=n+Math.imul(M,Z)|0,a=a+Math.imul(M,$)|0,i=i+Math.imul(b,Q)|0,n=n+Math.imul(b,ee)|0,n=n+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,a=a+Math.imul(m,ie)|0,i=i+Math.imul(u,ae)|0,n=n+Math.imul(u,se)|0,n=n+Math.imul(f,ae)|0,a=a+Math.imul(f,se)|0;var _e=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul(P,q),n=Math.imul(P,z),n=n+Math.imul(O,q)|0,a=Math.imul(O,z),i=i+Math.imul(T,G)|0,n=n+Math.imul(T,W)|0,n=n+Math.imul(R,G)|0,a=a+Math.imul(R,W)|0,i=i+Math.imul(x,V)|0,n=n+Math.imul(x,K)|0,n=n+Math.imul(C,V)|0,a=a+Math.imul(C,K)|0,i=i+Math.imul(S,Z)|0,n=n+Math.imul(S,$)|0,n=n+Math.imul(k,Z)|0,a=a+Math.imul(k,$)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(M,Q)|0,a=a+Math.imul(M,ee)|0,i=i+Math.imul(b,re)|0,n=n+Math.imul(b,ie)|0,n=n+Math.imul(v,re)|0,a=a+Math.imul(v,ie)|0,i=i+Math.imul(p,ae)|0,n=n+Math.imul(p,se)|0,n=n+Math.imul(m,ae)|0,a=a+Math.imul(m,se)|0,i=i+Math.imul(u,he)|0,n=n+Math.imul(u,le)|0,n=n+Math.imul(f,he)|0,a=a+Math.imul(f,le)|0;var Se=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(L,q),n=Math.imul(L,z),n=n+Math.imul(D,q)|0,a=Math.imul(D,z),i=i+Math.imul(P,G)|0,n=n+Math.imul(P,W)|0,n=n+Math.imul(O,G)|0,a=a+Math.imul(O,W)|0,i=i+Math.imul(T,V)|0,n=n+Math.imul(T,K)|0,n=n+Math.imul(R,V)|0,a=a+Math.imul(R,K)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,$)|0,n=n+Math.imul(C,Z)|0,a=a+Math.imul(C,$)|0,i=i+Math.imul(S,Q)|0,n=n+Math.imul(S,ee)|0,n=n+Math.imul(k,Q)|0,a=a+Math.imul(k,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(M,re)|0,a=a+Math.imul(M,ie)|0,i=i+Math.imul(b,ae)|0,n=n+Math.imul(b,se)|0,n=n+Math.imul(v,ae)|0,a=a+Math.imul(v,se)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,le)|0,n=n+Math.imul(m,he)|0,a=a+Math.imul(m,le)|0,i=i+Math.imul(u,ue)|0,n=n+Math.imul(u,fe)|0,n=n+Math.imul(f,ue)|0,a=a+Math.imul(f,fe)|0;var ke=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(B,q),n=Math.imul(B,z),n=n+Math.imul(U,q)|0,a=Math.imul(U,z),i=i+Math.imul(L,G)|0,n=n+Math.imul(L,W)|0,n=n+Math.imul(D,G)|0,a=a+Math.imul(D,W)|0,i=i+Math.imul(P,V)|0,n=n+Math.imul(P,K)|0,n=n+Math.imul(O,V)|0,a=a+Math.imul(O,K)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,$)|0,n=n+Math.imul(R,Z)|0,a=a+Math.imul(R,$)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(C,Q)|0,a=a+Math.imul(C,ee)|0,i=i+Math.imul(S,re)|0,n=n+Math.imul(S,ie)|0,n=n+Math.imul(k,re)|0,a=a+Math.imul(k,ie)|0,i=i+Math.imul(w,ae)|0,n=n+Math.imul(w,se)|0,n=n+Math.imul(M,ae)|0,a=a+Math.imul(M,se)|0,i=i+Math.imul(b,he)|0,n=n+Math.imul(b,le)|0,n=n+Math.imul(v,he)|0,a=a+Math.imul(v,le)|0,i=i+Math.imul(p,ue)|0,n=n+Math.imul(p,fe)|0,n=n+Math.imul(m,ue)|0,a=a+Math.imul(m,fe)|0,i=i+Math.imul(u,pe)|0,n=n+Math.imul(u,me)|0,n=n+Math.imul(f,pe)|0,a=a+Math.imul(f,me)|0;var Ae=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(B,G),n=Math.imul(B,W),n=n+Math.imul(U,G)|0,a=Math.imul(U,W),i=i+Math.imul(L,V)|0,n=n+Math.imul(L,K)|0,n=n+Math.imul(D,V)|0,a=a+Math.imul(D,K)|0,i=i+Math.imul(P,Z)|0,n=n+Math.imul(P,$)|0,n=n+Math.imul(O,Z)|0,a=a+Math.imul(O,$)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(R,Q)|0,a=a+Math.imul(R,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(C,re)|0,a=a+Math.imul(C,ie)|0,i=i+Math.imul(S,ae)|0,n=n+Math.imul(S,se)|0,n=n+Math.imul(k,ae)|0,a=a+Math.imul(k,se)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,le)|0,n=n+Math.imul(M,he)|0,a=a+Math.imul(M,le)|0,i=i+Math.imul(b,ue)|0,n=n+Math.imul(b,fe)|0,n=n+Math.imul(v,ue)|0,a=a+Math.imul(v,fe)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,a=a+Math.imul(m,me)|0;var xe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(B,V),n=Math.imul(B,K),n=n+Math.imul(U,V)|0,a=Math.imul(U,K),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,$)|0,n=n+Math.imul(D,Z)|0,a=a+Math.imul(D,$)|0,i=i+Math.imul(P,Q)|0,n=n+Math.imul(P,ee)|0,n=n+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(R,re)|0,a=a+Math.imul(R,ie)|0,i=i+Math.imul(x,ae)|0,n=n+Math.imul(x,se)|0,n=n+Math.imul(C,ae)|0,a=a+Math.imul(C,se)|0,i=i+Math.imul(S,he)|0,n=n+Math.imul(S,le)|0,n=n+Math.imul(k,he)|0,a=a+Math.imul(k,le)|0,i=i+Math.imul(w,ue)|0,n=n+Math.imul(w,fe)|0,n=n+Math.imul(M,ue)|0,a=a+Math.imul(M,fe)|0,i=i+Math.imul(b,pe)|0,n=n+Math.imul(b,me)|0,n=n+Math.imul(v,pe)|0,a=a+Math.imul(v,me)|0;var Ce=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(B,Z),n=Math.imul(B,$),n=n+Math.imul(U,Z)|0,a=Math.imul(U,$),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(D,Q)|0,a=a+Math.imul(D,ee)|0,i=i+Math.imul(P,re)|0,n=n+Math.imul(P,ie)|0,n=n+Math.imul(O,re)|0,a=a+Math.imul(O,ie)|0,i=i+Math.imul(T,ae)|0,n=n+Math.imul(T,se)|0,n=n+Math.imul(R,ae)|0,a=a+Math.imul(R,se)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,le)|0,n=n+Math.imul(C,he)|0,a=a+Math.imul(C,le)|0,i=i+Math.imul(S,ue)|0,n=n+Math.imul(S,fe)|0,n=n+Math.imul(k,ue)|0,a=a+Math.imul(k,fe)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(M,pe)|0,a=a+Math.imul(M,me)|0;var Ee=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(B,Q),n=Math.imul(B,ee),n=n+Math.imul(U,Q)|0,a=Math.imul(U,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(D,re)|0,a=a+Math.imul(D,ie)|0,i=i+Math.imul(P,ae)|0,n=n+Math.imul(P,se)|0,n=n+Math.imul(O,ae)|0,a=a+Math.imul(O,se)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,le)|0,n=n+Math.imul(R,he)|0,a=a+Math.imul(R,le)|0,i=i+Math.imul(x,ue)|0,n=n+Math.imul(x,fe)|0,n=n+Math.imul(C,ue)|0,a=a+Math.imul(C,fe)|0,i=i+Math.imul(S,pe)|0,n=n+Math.imul(S,me)|0,n=n+Math.imul(k,pe)|0,a=a+Math.imul(k,me)|0;var Te=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(B,re),n=Math.imul(B,ie),n=n+Math.imul(U,re)|0,a=Math.imul(U,ie),i=i+Math.imul(L,ae)|0,n=n+Math.imul(L,se)|0,n=n+Math.imul(D,ae)|0,a=a+Math.imul(D,se)|0,i=i+Math.imul(P,he)|0,n=n+Math.imul(P,le)|0,n=n+Math.imul(O,he)|0,a=a+Math.imul(O,le)|0,i=i+Math.imul(T,ue)|0,n=n+Math.imul(T,fe)|0,n=n+Math.imul(R,ue)|0,a=a+Math.imul(R,fe)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(C,pe)|0,a=a+Math.imul(C,me)|0;var Re=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Re>>>26)|0,Re&=67108863,i=Math.imul(B,ae),n=Math.imul(B,se),n=n+Math.imul(U,ae)|0,a=Math.imul(U,se),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,le)|0,n=n+Math.imul(D,he)|0,a=a+Math.imul(D,le)|0,i=i+Math.imul(P,ue)|0,n=n+Math.imul(P,fe)|0,n=n+Math.imul(O,ue)|0,a=a+Math.imul(O,fe)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(R,pe)|0,a=a+Math.imul(R,me)|0;var Ie=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(B,he),n=Math.imul(B,le),n=n+Math.imul(U,he)|0,a=Math.imul(U,le),i=i+Math.imul(L,ue)|0,n=n+Math.imul(L,fe)|0,n=n+Math.imul(D,ue)|0,a=a+Math.imul(D,fe)|0,i=i+Math.imul(P,pe)|0,n=n+Math.imul(P,me)|0,n=n+Math.imul(O,pe)|0,a=a+Math.imul(O,me)|0;var Pe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(B,ue),n=Math.imul(B,fe),n=n+Math.imul(U,ue)|0,a=Math.imul(U,fe),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(D,pe)|0,a=a+Math.imul(D,me)|0;var Oe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(B,pe),n=Math.imul(B,me),n=n+Math.imul(U,pe)|0,a=Math.imul(U,me);var Fe=(l+i|0)+((8191&n)<<13)|0;return l=(a+(n>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,h[0]=ge,h[1]=be,h[2]=ve,h[3]=ye,h[4]=we,h[5]=Me,h[6]=_e,h[7]=Se,h[8]=ke,h[9]=Ae,h[10]=xe,h[11]=Ce,h[12]=Ee,h[13]=Te,h[14]=Re,h[15]=Ie,h[16]=Pe,h[17]=Oe,h[18]=Fe,0!==l&&(h[19]=l,r.length++),r};function g(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,a=0;a<r.length-1;a++){var s=n;n=0;for(var o=67108863&i,h=Math.min(a,t.length-1),l=Math.max(0,a-e.length+1);l<=h;l++){var c=a-l,u=0|e.words[c],f=0|t.words[l],d=u*f,p=67108863&d;s=s+(d/67108864|0)|0,p=p+o|0,o=67108863&p,s=s+(p>>>26)|0,n+=s>>>26,s&=67108863}r.words[a]=o,i=s,s=n}return 0!==i?r.words[a]=i:r.length--,r.strip()}function b(e,t,r){var i=new v;return i.mulp(e,t,r)}function v(e,t){this.x=e,this.y=t}Math.imul||(m=p),a.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?m(this,e,t):i<63?p(this,e,t):i<1024?g(this,e,t):b(this,e,t),r},v.prototype.makeRBT=function(e){for(var t=new Array(e),r=a.prototype._countBits(e)-1,i=0;i<e;i++)t[i]=this.revBin(i,r,e);return t},v.prototype.revBin=function(e,t,r){if(0===e||e===r-1)return e;for(var i=0,n=0;n<t;n++)i|=(1&e)<<t-n-1,e>>=1;return i},v.prototype.permute=function(e,t,r,i,n,a){for(var s=0;s<a;s++)i[s]=t[e[s]],n[s]=r[e[s]]},v.prototype.transform=function(e,t,r,i,n,a){this.permute(a,e,t,r,i,n);for(var s=1;s<n;s<<=1)for(var o=s<<1,h=Math.cos(2*Math.PI/o),l=Math.sin(2*Math.PI/o),c=0;c<n;c+=o)for(var u=h,f=l,d=0;d<s;d++){var p=r[c+d],m=i[c+d],g=r[c+d+s],b=i[c+d+s],v=u*g-f*b;b=u*b+f*g,g=v,r[c+d]=p+g,i[c+d]=m+b,r[c+d+s]=p-g,i[c+d+s]=m-b,d!==o&&(v=h*u-l*f,f=h*f+l*u,u=v)}},v.prototype.guessLen13b=function(e,t){var r=1|Math.max(t,e),i=1&r,n=0;for(r=r/2|0;r;r>>>=1)n++;return 1<<n+1+i},v.prototype.conjugate=function(e,t,r){if(!(r<=1))for(var i=0;i<r/2;i++){var n=e[i];e[i]=e[r-i-1],e[r-i-1]=n,n=t[i],t[i]=-t[r-i-1],t[r-i-1]=-n}},v.prototype.normalize13b=function(e,t){for(var r=0,i=0;i<t/2;i++){var n=8192*Math.round(e[2*i+1]/t)+Math.round(e[2*i]/t)+r;e[i]=67108863&n,r=n<67108864?0:n/67108864|0}return e},v.prototype.convert13b=function(e,t,r,n){for(var a=0,s=0;s<t;s++)a+=0|e[s],r[2*s]=8191&a,a>>>=13,r[2*s+1]=8191&a,a>>>=13;for(s=2*t;s<n;++s)r[s]=0;i(0===a),i(0===(-8192&a))},v.prototype.stub=function(e){for(var t=new Array(e),r=0;r<e;r++)t[r]=0;return t},v.prototype.mulp=function(e,t,r){var i=2*this.guessLen13b(e.length,t.length),n=this.makeRBT(i),a=this.stub(i),s=new Array(i),o=new Array(i),h=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),f=r.words;f.length=i,this.convert13b(e.words,e.length,s,i),this.convert13b(t.words,t.length,l,i),this.transform(s,a,o,h,i,n),this.transform(l,a,c,u,i,n);for(var d=0;d<i;d++){var p=o[d]*c[d]-h[d]*u[d];h[d]=o[d]*u[d]+h[d]*c[d],o[d]=p}return this.conjugate(o,h,i),this.transform(o,h,f,a,i,n),this.conjugate(f,a,i),this.normalize13b(f,i),r.negative=e.negative^t.negative,r.length=e.length+t.length,r.strip()},a.prototype.mul=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),this.mulTo(e,t)},a.prototype.mulf=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),b(this,e,t)},a.prototype.imul=function(e){return this.clone().mulTo(e,this)},a.prototype.imuln=function(e){i("number"===typeof e),i(e<67108864);for(var t=0,r=0;r<this.length;r++){var n=(0|this.words[r])*e,a=(67108863&n)+(67108863&t);t>>=26,t+=n/67108864|0,t+=a>>>26,this.words[r]=67108863&a}return 0!==t&&(this.words[r]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=d(e);if(0===t.length)return new a(1);for(var r=this,i=0;i<t.length;i++,r=r.sqr())if(0!==t[i])break;if(++i<t.length)for(var n=r.sqr();i<t.length;i++,n=n.sqr())0!==t[i]&&(r=r.mul(n));return r},a.prototype.iushln=function(e){i("number"===typeof e&&e>=0);var t,r=e%26,n=(e-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var s=0;for(t=0;t<this.length;t++){var o=this.words[t]&a,h=(0|this.words[t])-o<<r;this.words[t]=h|s,s=o>>>26-r}s&&(this.words[t]=s,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t<n;t++)this.words[t]=0;this.length+=n}return this.strip()},a.prototype.ishln=function(e){return i(0===this.negative),this.iushln(e)},a.prototype.iushrn=function(e,t,r){var n;i("number"===typeof e&&e>=0),n=t?(t-t%26)/26:0;var a=e%26,s=Math.min((e-a)/26,this.length),o=67108863^67108863>>>a<<a,h=r;if(n-=s,n=Math.max(0,n),h){for(var l=0;l<s;l++)h.words[l]=this.words[l];h.length=s}if(0===s);else if(this.length>s)for(this.length-=s,l=0;l<this.length;l++)this.words[l]=this.words[l+s];else this.words[0]=0,this.length=1;var c=0;for(l=this.length-1;l>=0&&(0!==c||l>=n);l--){var u=0|this.words[l];this.words[l]=c<<26-a|u>>>a,c=u&o}return h&&0!==c&&(h.words[h.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return!1;var a=this.words[r];return!!(a&n)},a.prototype.imaskn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<<t;this.words[this.length-1]&=n}return this.strip()},a.prototype.maskn=function(e){return this.clone().imaskn(e)},a.prototype.iaddn=function(e){return i("number"===typeof e),i(e<67108864),e<0?this.isubn(-e):0!==this.negative?1===this.length&&(0|this.words[0])<e?(this.words[0]=e-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(e),this.negative=1,this):this._iaddn(e)},a.prototype._iaddn=function(e){this.words[0]+=e;for(var t=0;t<this.length&&this.words[t]>=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t<this.length&&this.words[t]<0;t++)this.words[t]+=67108864,this.words[t+1]-=1;return this.strip()},a.prototype.addn=function(e){return this.clone().iaddn(e)},a.prototype.subn=function(e){return this.clone().isubn(e)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(e,t,r){var n,a,s=e.length+r;this._expand(s);var o=0;for(n=0;n<e.length;n++){a=(0|this.words[n+r])+o;var h=(0|e.words[n])*t;a-=67108863&h,o=(a>>26)-(h/67108864|0),this.words[n+r]=67108863&a}for(;n<this.length-r;n++)a=(0|this.words[n+r])+o,o=a>>26,this.words[n+r]=67108863&a;if(0===o)return this.strip();for(i(-1===o),o=0,n=0;n<this.length;n++)a=-(0|this.words[n])+o,o=a>>26,this.words[n]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,s=0|n.words[n.length-1],o=this._countBits(s);r=26-o,0!==r&&(n=n.ushln(r),i.iushln(r),s=0|n.words[n.length-1]);var h,l=i.length-n.length;if("mod"!==t){h=new a(null),h.length=l+1,h.words=new Array(h.length);for(var c=0;c<h.length;c++)h.words[c]=0}var u=i.clone()._ishlnsubmul(n,1,l);0===u.negative&&(i=u,h&&(h.words[l]=1));for(var f=l-1;f>=0;f--){var d=67108864*(0|i.words[n.length+f])+(0|i.words[n.length+f-1]);d=Math.min(d/s|0,67108863),i._ishlnsubmul(n,d,f);while(0!==i.negative)d--,i.negative=0,i._ishlnsubmul(n,1,f),i.isZero()||(i.negative^=1);h&&(h.words[f]=d)}return h&&h.strip(),i.strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:h||null,mod:i}},a.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(o=this.neg().divmod(e,t),"mod"!==t&&(n=o.div.neg()),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.iadd(e)),{div:n,mod:s}):0===this.negative&&0!==e.negative?(o=this.divmod(e.neg(),t),"mod"!==t&&(n=o.div.neg()),{div:n,mod:o.mod}):0!==(this.negative&e.negative)?(o=this.neg().divmod(e.neg(),t),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.isub(e)),{div:o.div,mod:s}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var n,s,o},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),a=r.cmp(i);return a<0||1===n&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){i(e<=67108863);for(var t=(1<<26)%e,r=0,n=this.length-1;n>=0;n--)r=(t*r+(0|this.words[n]))%e;return r},a.prototype.idivn=function(e){i(e<=67108863);for(var t=0,r=this.length-1;r>=0;r--){var n=(0|this.words[r])+67108864*t;this.words[r]=n/e|0,t=n%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new a(1),s=new a(0),o=new a(0),h=new a(1),l=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++l;var c=r.clone(),u=t.clone();while(!t.isZero()){for(var f=0,d=1;0===(t.words[0]&d)&&f<26;++f,d<<=1);if(f>0){t.iushrn(f);while(f-- >0)(n.isOdd()||s.isOdd())&&(n.iadd(c),s.isub(u)),n.iushrn(1),s.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(o.isOdd()||h.isOdd())&&(o.iadd(c),h.isub(u)),o.iushrn(1),h.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(o),s.isub(h)):(r.isub(t),o.isub(n),h.isub(s))}return{a:o,b:h,gcd:r.iushln(l)}},a.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,s=new a(1),o=new a(0),h=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var l=0,c=1;0===(t.words[0]&c)&&l<26;++l,c<<=1);if(l>0){t.iushrn(l);while(l-- >0)s.isOdd()&&s.iadd(h),s.iushrn(1)}for(var u=0,f=1;0===(r.words[0]&f)&&u<26;++u,f<<=1);if(u>0){r.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(h),o.iushrn(1)}t.cmp(r)>=0?(t.isub(r),s.isub(o)):(r.isub(t),o.isub(s))}return n=0===t.cmpn(1)?s:o,n.cmpn(0)<0&&n.iadd(e),n},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var a=t;t=r,r=a}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return this._expand(r+1),this.words[r]|=n,this;for(var a=n,s=r;0!==a&&s<this.length;s++){var o=0|this.words[s];o+=a,a=o>>>26,o&=67108863,this.words[s]=o}return 0!==a&&(this.words[s]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:n<e?-1:1}return 0!==this.negative?0|-t:t},a.prototype.cmp=function(e){if(0!==this.negative&&0===e.negative)return-1;if(0===this.negative&&0!==e.negative)return 1;var t=this.ucmp(e);return 0!==this.negative?0|-t:t},a.prototype.ucmp=function(e){if(this.length>e.length)return 1;if(this.length<e.length)return-1;for(var t=0,r=this.length-1;r>=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){i<n?t=-1:i>n&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new A(e)},a.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var y={k256:null,p224:null,p192:null,p25519:null};function w(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function M(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function _(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function S(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function k(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function A(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){A.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}w.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},w.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t<this.n?-1:r.ucmp(this.p);return 0===i?(r.words[0]=0,r.length=1):i>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(e,t){e.iushrn(this.n,0,t)},w.prototype.imulK=function(e){return e.imul(this.k)},n(M,w),M.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n<i;n++)t.words[n]=e.words[n];if(t.length=i,e.length<=9)return e.words[0]=0,void(e.length=1);var a=e.words[9];for(t.words[t.length++]=a&r,n=10;n<e.length;n++){var s=0|e.words[n];e.words[n-10]=(s&r)<<4|a>>>22,a=s}a>>>=22,e.words[n-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},M.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r<e.length;r++){var i=0|e.words[r];t+=977*i,e.words[r]=67108863&t,t=64*i+(t/67108864|0)}return 0===e.words[e.length-1]&&(e.length--,0===e.words[e.length-1]&&e.length--),e},n(_,w),n(S,w),n(k,w),k.prototype.imulK=function(e){for(var t=0,r=0;r<e.length;r++){var i=19*(0|e.words[r])+t,n=67108863&i;i>>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(y[e])return y[e];var t;if("k256"===e)t=new M;else if("p224"===e)t=new _;else if("p192"===e)t=new S;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new k}return y[e]=t,t},A.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},A.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},A.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},A.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},A.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},A.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},A.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},A.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},A.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},A.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},A.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},A.prototype.isqr=function(e){return this.imul(e,e.clone())},A.prototype.sqr=function(e){return this.mul(e,e)},A.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new a(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),s=0;while(!n.isZero()&&0===n.andln(1))s++,n.iushrn(1);i(!n.isZero());var o=new a(1).toRed(this),h=o.redNeg(),l=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new a(2*c*c).toRed(this);while(0!==this.pow(c,l).cmp(h))c.redIAdd(h);var u=this.pow(c,n),f=this.pow(e,n.addn(1).iushrn(1)),d=this.pow(e,n),p=s;while(0!==d.cmp(o)){for(var m=d,g=0;0!==m.cmp(o);g++)m=m.redSqr();i(g<p);var b=this.pow(u,new a(1).iushln(p-g-1));f=f.redMul(b),u=b.redSqr(),d=d.redMul(u),p=g}return f},A.prototype.invm=function(e){var t=e._invmp(this.m);return 0!==t.negative?(t.negative=0,this.imod(t).redNeg()):this.imod(t)},A.prototype.pow=function(e,t){if(t.isZero())return new a(1).toRed(this);if(0===t.cmpn(1))return e.clone();var r=4,i=new Array(1<<r);i[0]=new a(1).toRed(this),i[1]=e;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],e);var s=i[0],o=0,h=0,l=t.bitLength()%26;for(0===l&&(l=26),n=t.length-1;n>=0;n--){for(var c=t.words[n],u=l-1;u>=0;u--){var f=c>>u&1;s!==i[0]&&(s=this.sqr(s)),0!==f||0!==o?(o<<=1,o|=f,h++,(h===r||0===n&&0===u)&&(s=this.mul(s,i[o]),h=0,o=0)):h=0}l=26}return s},A.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},A.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new x(e)},n(x,A),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),a=n;return n.cmp(this.m)>=0?a=n.isub(this.m):n.cmpn(0)<0&&(a=n.iadd(this.m)),a._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},x.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}})(e,this)}).call(this,r("62e4")(e))},bd9d:function(e,t){function r(e){var t,r=e.length;while(r--){if(t=e.readUInt8(r),255!==t){t++,e.writeUInt8(t,r);break}e.writeUInt8(0,r)}}e.exports=r},bee2:function(e,t,r){"use strict";r.d(t,"a",(function(){return a}));var i=r("a38e");function n(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,Object(i["a"])(n.key),n)}}function a(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}},c119:function(e,t,r){var i=r("8c8a");t.encrypt=function(e,t){var r=i(t,e._prev);return e._prev=e._cipher.encryptBlock(r),e._prev},t.decrypt=function(e,t){var r=e._prev;e._prev=t;var n=e._cipher.decryptBlock(t);return i(n,r)}},c24d:function(e){e.exports=JSON.parse('{"modp1":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},"modp2":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},"modp5":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},"modp14":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},"modp15":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},"modp16":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},"modp17":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},"modp18":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}')},c26b:function(e,t,r){"use strict";var i=r("86cc").f,n=r("2aeb"),a=r("dcbc"),s=r("9b43"),o=r("f605"),h=r("4a59"),l=r("01f9"),c=r("d53b"),u=r("7a56"),f=r("9e1e"),d=r("67ab").fastKey,p=r("b39a"),m=f?"_s":"size",g=function(e,t){var r,i=d(t);if("F"!==i)return e._i[i];for(r=e._f;r;r=r.n)if(r.k==t)return r};e.exports={getConstructor:function(e,t,r,l){var c=e((function(e,i){o(e,c,t,"_i"),e._t=t,e._i=n(null),e._f=void 0,e._l=void 0,e[m]=0,void 0!=i&&h(i,r,e[l],e)}));return a(c.prototype,{clear:function(){for(var e=p(this,t),r=e._i,i=e._f;i;i=i.n)i.r=!0,i.p&&(i.p=i.p.n=void 0),delete r[i.i];e._f=e._l=void 0,e[m]=0},delete:function(e){var r=p(this,t),i=g(r,e);if(i){var n=i.n,a=i.p;delete r._i[i.i],i.r=!0,a&&(a.n=n),n&&(n.p=a),r._f==i&&(r._f=n),r._l==i&&(r._l=a),r[m]--}return!!i},forEach:function(e){p(this,t);var r,i=s(e,arguments.length>1?arguments[1]:void 0,3);while(r=r?r.n:this._f){i(r.v,r.k,this);while(r&&r.r)r=r.p}},has:function(e){return!!g(p(this,t),e)}}),f&&i(c.prototype,"size",{get:function(){return p(this,t)[m]}}),c},def:function(e,t,r){var i,n,a=g(e,t);return a?a.v=r:(e._l=a={i:n=d(t,!0),k:t,v:r,p:i=e._l,n:void 0,r:!1},e._f||(e._f=a),i&&(i.n=a),e[m]++,"F"!==n&&(e._i[n]=a)),e},getEntry:g,setStrong:function(e,t,r){l(e,t,(function(e,r){this._t=p(e,t),this._k=r,this._l=void 0}),(function(){var e=this,t=e._k,r=e._l;while(r&&r.r)r=r.p;return e._t&&(e._l=r=r?r.n:e._t._f)?c(0,"keys"==t?r.k:"values"==t?r.v:[r.k,r.v]):(e._t=void 0,c(1))}),r?"entries":"values",!r,!0),u(t)}}},c2ae:function(e,t,r){e.exports=r("e372").PassThrough},c3c0:function(e,t,r){"use strict";var i=r("da3e"),n=r("3fb5");function a(e,t){return 55296===(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320===(64512&e.charCodeAt(t+1)))}function s(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var r=[];if("string"===typeof e)if(t){if("hex"===t)for(e=e.replace(/[^a-z0-9]+/gi,""),e.length%2!==0&&(e="0"+e),n=0;n<e.length;n+=2)r.push(parseInt(e[n]+e[n+1],16))}else for(var i=0,n=0;n<e.length;n++){var s=e.charCodeAt(n);s<128?r[i++]=s:s<2048?(r[i++]=s>>6|192,r[i++]=63&s|128):a(e,n)?(s=65536+((1023&s)<<10)+(1023&e.charCodeAt(++n)),r[i++]=s>>18|240,r[i++]=s>>12&63|128,r[i++]=s>>6&63|128,r[i++]=63&s|128):(r[i++]=s>>12|224,r[i++]=s>>6&63|128,r[i++]=63&s|128)}else for(n=0;n<e.length;n++)r[n]=0|e[n];return r}function o(e){for(var t="",r=0;r<e.length;r++)t+=c(e[r].toString(16));return t}function h(e){var t=e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24;return t>>>0}function l(e,t){for(var r="",i=0;i<e.length;i++){var n=e[i];"little"===t&&(n=h(n)),r+=u(n.toString(16))}return r}function c(e){return 1===e.length?"0"+e:e}function u(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}function f(e,t,r,n){var a=r-t;i(a%4===0);for(var s=new Array(a/4),o=0,h=t;o<s.length;o++,h+=4){var l;l="big"===n?e[h]<<24|e[h+1]<<16|e[h+2]<<8|e[h+3]:e[h+3]<<24|e[h+2]<<16|e[h+1]<<8|e[h],s[o]=l>>>0}return s}function d(e,t){for(var r=new Array(4*e.length),i=0,n=0;i<e.length;i++,n+=4){var a=e[i];"big"===t?(r[n]=a>>>24,r[n+1]=a>>>16&255,r[n+2]=a>>>8&255,r[n+3]=255&a):(r[n+3]=a>>>24,r[n+2]=a>>>16&255,r[n+1]=a>>>8&255,r[n]=255&a)}return r}function p(e,t){return e>>>t|e<<32-t}function m(e,t){return e<<t|e>>>32-t}function g(e,t){return e+t>>>0}function b(e,t,r){return e+t+r>>>0}function v(e,t,r,i){return e+t+r+i>>>0}function y(e,t,r,i,n){return e+t+r+i+n>>>0}function w(e,t,r,i){var n=e[t],a=e[t+1],s=i+a>>>0,o=(s<i?1:0)+r+n;e[t]=o>>>0,e[t+1]=s}function M(e,t,r,i){var n=t+i>>>0,a=(n<t?1:0)+e+r;return a>>>0}function _(e,t,r,i){var n=t+i;return n>>>0}function S(e,t,r,i,n,a,s,o){var h=0,l=t;l=l+i>>>0,h+=l<t?1:0,l=l+a>>>0,h+=l<a?1:0,l=l+o>>>0,h+=l<o?1:0;var c=e+r+n+s+h;return c>>>0}function k(e,t,r,i,n,a,s,o){var h=t+i+a+o;return h>>>0}function A(e,t,r,i,n,a,s,o,h,l){var c=0,u=t;u=u+i>>>0,c+=u<t?1:0,u=u+a>>>0,c+=u<a?1:0,u=u+o>>>0,c+=u<o?1:0,u=u+l>>>0,c+=u<l?1:0;var f=e+r+n+s+h+c;return f>>>0}function x(e,t,r,i,n,a,s,o,h,l){var c=t+i+a+o+l;return c>>>0}function C(e,t,r){var i=t<<32-r|e>>>r;return i>>>0}function E(e,t,r){var i=e<<32-r|t>>>r;return i>>>0}function T(e,t,r){return e>>>r}function R(e,t,r){var i=e<<32-r|t>>>r;return i>>>0}t.inherits=n,t.toArray=s,t.toHex=o,t.htonl=h,t.toHex32=l,t.zero2=c,t.zero8=u,t.join32=f,t.split32=d,t.rotr32=p,t.rotl32=m,t.sum32=g,t.sum32_3=b,t.sum32_4=v,t.sum32_5=y,t.sum64=w,t.sum64_hi=M,t.sum64_lo=_,t.sum64_4_hi=S,t.sum64_4_lo=k,t.sum64_5_hi=A,t.sum64_5_lo=x,t.rotr64_hi=C,t.rotr64_lo=E,t.shr64_hi=T,t.shr64_lo=R},c591:function(e,t,r){"use strict";(function(t){var i,n=r("b639"),a=n.Buffer,s={};for(i in n)n.hasOwnProperty(i)&&"SlowBuffer"!==i&&"Buffer"!==i&&(s[i]=n[i]);var o=s.Buffer={};for(i in a)a.hasOwnProperty(i)&&"allocUnsafe"!==i&&"allocUnsafeSlow"!==i&&(o[i]=a[i]);if(s.Buffer.prototype=a.prototype,o.from&&o.from!==Uint8Array.from||(o.from=function(e,t,r){if("number"===typeof e)throw new TypeError('The "value" argument must not be of type number. Received type '+typeof e);if(e&&"undefined"===typeof e.length)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);return a(e,t,r)}),o.alloc||(o.alloc=function(e,t,r){if("number"!==typeof e)throw new TypeError('The "size" argument must be of type number. Received type '+typeof e);if(e<0||e>=2*(1<<30))throw new RangeError('The value "'+e+'" is invalid for option "size"');var i=a(e);return t&&0!==t.length?"string"===typeof r?i.fill(t,r):i.fill(t):i.fill(0),i}),!s.kStringMaxLength)try{s.kStringMaxLength=t.binding("buffer").kStringMaxLength}catch(h){}s.constants||(s.constants={MAX_LENGTH:s.kMaxLength},s.kStringMaxLength&&(s.constants.MAX_STRING_LENGTH=s.kStringMaxLength)),e.exports=s}).call(this,r("f28c"))},cd91:function(e){e.exports=JSON.parse('{"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}')},cf35:function(e,t,r){"use strict";(function(t,i){var n;e.exports=T,T.ReadableState=E;r("faa1").EventEmitter;var a=function(e,t){return e.listeners(t).length},s=r("f12a"),o=r("b639").Buffer,h=t.Uint8Array||function(){};function l(e){return o.from(e)}function c(e){return o.isBuffer(e)||e instanceof h}var u,f=r(16);u=f&&f.debuglog?f.debuglog("stream"):function(){};var d,p,m,g=r("22ab"),b=r("9019"),v=r("05f0"),y=v.getHighWaterMark,w=r("d113").codes,M=w.ERR_INVALID_ARG_TYPE,_=w.ERR_STREAM_PUSH_AFTER_EOF,S=w.ERR_METHOD_NOT_IMPLEMENTED,k=w.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;r("3fb5")(T,s);var A=b.errorOrDestroy,x=["error","close","destroy","pause","resume"];function C(e,t,r){if("function"===typeof e.prependListener)return e.prependListener(t,r);e._events&&e._events[t]?Array.isArray(e._events[t])?e._events[t].unshift(r):e._events[t]=[r,e._events[t]]:e.on(t,r)}function E(e,t,i){n=n||r("5e7d"),e=e||{},"boolean"!==typeof i&&(i=t instanceof n),this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.readableObjectMode),this.highWaterMark=y(this,e,"readableHighWaterMark",i),this.buffer=new g,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==e.emitClose,this.autoDestroy=!!e.autoDestroy,this.destroyed=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(d||(d=r("7d72").StringDecoder),this.decoder=new d(e.encoding),this.encoding=e.encoding)}function T(e){if(n=n||r("5e7d"),!(this instanceof T))return new T(e);var t=this instanceof n;this._readableState=new E(e,this,t),this.readable=!0,e&&("function"===typeof e.read&&(this._read=e.read),"function"===typeof e.destroy&&(this._destroy=e.destroy)),s.call(this)}function R(e,t,r,i,n){u("readableAddChunk",t);var a,s=e._readableState;if(null===t)s.reading=!1,D(e,s);else if(n||(a=P(s,t)),a)A(e,a);else if(s.objectMode||t&&t.length>0)if("string"===typeof t||s.objectMode||Object.getPrototypeOf(t)===o.prototype||(t=l(t)),i)s.endEmitted?A(e,new k):I(e,s,t,!0);else if(s.ended)A(e,new _);else{if(s.destroyed)return!1;s.reading=!1,s.decoder&&!r?(t=s.decoder.write(t),s.objectMode||0!==t.length?I(e,s,t,!1):U(e,s)):I(e,s,t,!1)}else i||(s.reading=!1,U(e,s));return!s.ended&&(s.length<s.highWaterMark||0===s.length)}function I(e,t,r,i){t.flowing&&0===t.length&&!t.sync?(t.awaitDrain=0,e.emit("data",r)):(t.length+=t.objectMode?1:r.length,i?t.buffer.unshift(r):t.buffer.push(r),t.needReadable&&N(e)),U(e,t)}function P(e,t){var r;return c(t)||"string"===typeof t||void 0===t||e.objectMode||(r=new M("chunk",["string","Buffer","Uint8Array"],t)),r}Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(e){this._readableState&&(this._readableState.destroyed=e)}}),T.prototype.destroy=b.destroy,T.prototype._undestroy=b.undestroy,T.prototype._destroy=function(e,t){t(e)},T.prototype.push=function(e,t){var r,i=this._readableState;return i.objectMode?r=!0:"string"===typeof e&&(t=t||i.defaultEncoding,t!==i.encoding&&(e=o.from(e,t),t=""),r=!0),R(this,e,t,!1,r)},T.prototype.unshift=function(e){return R(this,e,null,!0,!1)},T.prototype.isPaused=function(){return!1===this._readableState.flowing},T.prototype.setEncoding=function(e){d||(d=r("7d72").StringDecoder);var t=new d(e);this._readableState.decoder=t,this._readableState.encoding=this._readableState.decoder.encoding;var i=this._readableState.buffer.head,n="";while(null!==i)n+=t.write(i.data),i=i.next;return this._readableState.buffer.clear(),""!==n&&this._readableState.buffer.push(n),this._readableState.length=n.length,this};var O=1073741824;function F(e){return e>=O?e=O:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}function L(e,t){return e<=0||0===t.length&&t.ended?0:t.objectMode?1:e!==e?t.flowing&&t.length?t.buffer.head.data.length:t.length:(e>t.highWaterMark&&(t.highWaterMark=F(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function D(e,t){if(u("onEofChunk"),!t.ended){if(t.decoder){var r=t.decoder.end();r&&r.length&&(t.buffer.push(r),t.length+=t.objectMode?1:r.length)}t.ended=!0,t.sync?N(e):(t.needReadable=!1,t.emittedReadable||(t.emittedReadable=!0,B(e)))}}function N(e){var t=e._readableState;u("emitReadable",t.needReadable,t.emittedReadable),t.needReadable=!1,t.emittedReadable||(u("emitReadable",t.flowing),t.emittedReadable=!0,i.nextTick(B,e))}function B(e){var t=e._readableState;u("emitReadable_",t.destroyed,t.length,t.ended),t.destroyed||!t.length&&!t.ended||(e.emit("readable"),t.emittedReadable=!1),t.needReadable=!t.flowing&&!t.ended&&t.length<=t.highWaterMark,X(e)}function U(e,t){t.readingMore||(t.readingMore=!0,i.nextTick(j,e,t))}function j(e,t){while(!t.reading&&!t.ended&&(t.length<t.highWaterMark||t.flowing&&0===t.length)){var r=t.length;if(u("maybeReadMore read 0"),e.read(0),r===t.length)break}t.readingMore=!1}function q(e){return function(){var t=e._readableState;u("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&a(e,"data")&&(t.flowing=!0,X(e))}}function z(e){var t=e._readableState;t.readableListening=e.listenerCount("readable")>0,t.resumeScheduled&&!t.paused?t.flowing=!0:e.listenerCount("data")>0&&e.resume()}function H(e){u("readable nexttick read 0"),e.read(0)}function G(e,t){t.resumeScheduled||(t.resumeScheduled=!0,i.nextTick(W,e,t))}function W(e,t){u("resume",t.reading),t.reading||e.read(0),t.resumeScheduled=!1,e.emit("resume"),X(e),t.flowing&&!t.reading&&e.read(0)}function X(e){var t=e._readableState;u("flow",t.flowing);while(t.flowing&&null!==e.read());}function V(e,t){return 0===t.length?null:(t.objectMode?r=t.buffer.shift():!e||e>=t.length?(r=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.first():t.buffer.concat(t.length),t.buffer.clear()):r=t.buffer.consume(e,t.decoder),r);var r}function K(e){var t=e._readableState;u("endReadable",t.endEmitted),t.endEmitted||(t.ended=!0,i.nextTick(Y,t,e))}function Y(e,t){if(u("endReadableNT",e.endEmitted,e.length),!e.endEmitted&&0===e.length&&(e.endEmitted=!0,t.readable=!1,t.emit("end"),e.autoDestroy)){var r=t._writableState;(!r||r.autoDestroy&&r.finished)&&t.destroy()}}function Z(e,t){for(var r=0,i=e.length;r<i;r++)if(e[r]===t)return r;return-1}T.prototype.read=function(e){u("read",e),e=parseInt(e,10);var t=this._readableState,r=e;if(0!==e&&(t.emittedReadable=!1),0===e&&t.needReadable&&((0!==t.highWaterMark?t.length>=t.highWaterMark:t.length>0)||t.ended))return u("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?K(this):N(this),null;if(e=L(e,t),0===e&&t.ended)return 0===t.length&&K(this),null;var i,n=t.needReadable;return u("need readable",n),(0===t.length||t.length-e<t.highWaterMark)&&(n=!0,u("length less than watermark",n)),t.ended||t.reading?(n=!1,u("reading or ended",n)):n&&(u("do read"),t.reading=!0,t.sync=!0,0===t.length&&(t.needReadable=!0),this._read(t.highWaterMark),t.sync=!1,t.reading||(e=L(r,t))),i=e>0?V(e,t):null,null===i?(t.needReadable=t.length<=t.highWaterMark,e=0):(t.length-=e,t.awaitDrain=0),0===t.length&&(t.ended||(t.needReadable=!0),r!==e&&t.ended&&K(this)),null!==i&&this.emit("data",i),i},T.prototype._read=function(e){A(this,new S("_read()"))},T.prototype.pipe=function(e,t){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=e;break;case 1:n.pipes=[n.pipes,e];break;default:n.pipes.push(e);break}n.pipesCount+=1,u("pipe count=%d opts=%j",n.pipesCount,t);var s=(!t||!1!==t.end)&&e!==i.stdout&&e!==i.stderr,o=s?l:v;function h(e,t){u("onunpipe"),e===r&&t&&!1===t.hasUnpiped&&(t.hasUnpiped=!0,d())}function l(){u("onend"),e.end()}n.endEmitted?i.nextTick(o):r.once("end",o),e.on("unpipe",h);var c=q(r);e.on("drain",c);var f=!1;function d(){u("cleanup"),e.removeListener("close",g),e.removeListener("finish",b),e.removeListener("drain",c),e.removeListener("error",m),e.removeListener("unpipe",h),r.removeListener("end",l),r.removeListener("end",v),r.removeListener("data",p),f=!0,!n.awaitDrain||e._writableState&&!e._writableState.needDrain||c()}function p(t){u("ondata");var i=e.write(t);u("dest.write",i),!1===i&&((1===n.pipesCount&&n.pipes===e||n.pipesCount>1&&-1!==Z(n.pipes,e))&&!f&&(u("false write response, pause",n.awaitDrain),n.awaitDrain++),r.pause())}function m(t){u("onerror",t),v(),e.removeListener("error",m),0===a(e,"error")&&A(e,t)}function g(){e.removeListener("finish",b),v()}function b(){u("onfinish"),e.removeListener("close",g),v()}function v(){u("unpipe"),r.unpipe(e)}return r.on("data",p),C(e,"error",m),e.once("close",g),e.once("finish",b),e.emit("pipe",r),n.flowing||(u("pipe resume"),r.resume()),e},T.prototype.unpipe=function(e){var t=this._readableState,r={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes||(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,r)),this;if(!e){var i=t.pipes,n=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var a=0;a<n;a++)i[a].emit("unpipe",this,{hasUnpiped:!1});return this}var s=Z(t.pipes,e);return-1===s||(t.pipes.splice(s,1),t.pipesCount-=1,1===t.pipesCount&&(t.pipes=t.pipes[0]),e.emit("unpipe",this,r)),this},T.prototype.on=function(e,t){var r=s.prototype.on.call(this,e,t),n=this._readableState;return"data"===e?(n.readableListening=this.listenerCount("readable")>0,!1!==n.flowing&&this.resume()):"readable"===e&&(n.endEmitted||n.readableListening||(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,u("on readable",n.length,n.reading),n.length?N(this):n.reading||i.nextTick(H,this))),r},T.prototype.addListener=T.prototype.on,T.prototype.removeListener=function(e,t){var r=s.prototype.removeListener.call(this,e,t);return"readable"===e&&i.nextTick(z,this),r},T.prototype.removeAllListeners=function(e){var t=s.prototype.removeAllListeners.apply(this,arguments);return"readable"!==e&&void 0!==e||i.nextTick(z,this),t},T.prototype.resume=function(){var e=this._readableState;return e.flowing||(u("resume"),e.flowing=!e.readableListening,G(this,e)),e.paused=!1,this},T.prototype.pause=function(){return u("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(u("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},T.prototype.wrap=function(e){var t=this,r=this._readableState,i=!1;for(var n in e.on("end",(function(){if(u("wrapped end"),r.decoder&&!r.ended){var e=r.decoder.end();e&&e.length&&t.push(e)}t.push(null)})),e.on("data",(function(n){if(u("wrapped data"),r.decoder&&(n=r.decoder.write(n)),(!r.objectMode||null!==n&&void 0!==n)&&(r.objectMode||n&&n.length)){var a=t.push(n);a||(i=!0,e.pause())}})),e)void 0===this[n]&&"function"===typeof e[n]&&(this[n]=function(t){return function(){return e[t].apply(e,arguments)}}(n));for(var a=0;a<x.length;a++)e.on(x[a],this.emit.bind(this,x[a]));return this._read=function(t){u("wrapped _read",t),i&&(i=!1,e.resume())},this},"function"===typeof Symbol&&(T.prototype[Symbol.asyncIterator]=function(){return void 0===p&&(p=r("57e2")),p(this)}),Object.defineProperty(T.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Object.defineProperty(T.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}}),Object.defineProperty(T.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(e){this._readableState&&(this._readableState.flowing=e)}}),T._fromList=V,Object.defineProperty(T.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}}),"function"===typeof Symbol&&(T.from=function(e,t){return void 0===m&&(m=r("f83c")),m(T,e,t)})}).call(this,r("c8ba"),r("f28c"))},cfbd:function(e,t,r){"use strict";const i=r("3fb5"),n=r("bc12"),a=r("6283").DecoderBuffer,s=r("8360"),o=r("8b71");function h(e){this.enc="der",this.name=e.name,this.entity=e,this.tree=new l,this.tree._init(e.body)}function l(e){s.call(this,"der",e)}function c(e,t){let r=e.readUInt8(t);if(e.isError(r))return r;const i=o.tagClass[r>>6],n=0===(32&r);if(31===(31&r)){let i=r;r=0;while(128===(128&i)){if(i=e.readUInt8(t),e.isError(i))return i;r<<=7,r|=127&i}}else r&=31;const a=o.tag[r];return{cls:i,primitive:n,tag:r,tagStr:a}}function u(e,t,r){let i=e.readUInt8(r);if(e.isError(i))return i;if(!t&&128===i)return null;if(0===(128&i))return i;const n=127&i;if(n>4)return e.error("length octect is too long");i=0;for(let a=0;a<n;a++){i<<=8;const t=e.readUInt8(r);if(e.isError(t))return t;i|=t}return i}e.exports=h,h.prototype.decode=function(e,t){return a.isDecoderBuffer(e)||(e=new a(e,t)),this.tree._decode(e,t)},i(l,s),l.prototype._peekTag=function(e,t,r){if(e.isEmpty())return!1;const i=e.save(),n=c(e,'Failed to peek tag: "'+t+'"');return e.isError(n)?n:(e.restore(i),n.tag===t||n.tagStr===t||n.tagStr+"of"===t||r)},l.prototype._decodeTag=function(e,t,r){const i=c(e,'Failed to decode tag of "'+t+'"');if(e.isError(i))return i;let n=u(e,i.primitive,'Failed to get length of "'+t+'"');if(e.isError(n))return n;if(!r&&i.tag!==t&&i.tagStr!==t&&i.tagStr+"of"!==t)return e.error('Failed to match tag: "'+t+'"');if(i.primitive||null!==n)return e.skip(n,'Failed to match body of: "'+t+'"');const a=e.save(),s=this._skipUntilEnd(e,'Failed to skip indefinite length body: "'+this.tag+'"');return e.isError(s)?s:(n=e.offset-a.offset,e.restore(a),e.skip(n,'Failed to match body of: "'+t+'"'))},l.prototype._skipUntilEnd=function(e,t){for(;;){const r=c(e,t);if(e.isError(r))return r;const i=u(e,r.primitive,t);if(e.isError(i))return i;let n;if(n=r.primitive||null!==i?e.skip(i):this._skipUntilEnd(e,t),e.isError(n))return n;if("end"===r.tagStr)break}},l.prototype._decodeList=function(e,t,r,i){const n=[];while(!e.isEmpty()){const t=this._peekTag(e,"end");if(e.isError(t))return t;const a=r.decode(e,"der",i);if(e.isError(a)&&t)break;n.push(a)}return n},l.prototype._decodeStr=function(e,t){if("bitstr"===t){const t=e.readUInt8();return e.isError(t)?t:{unused:t,data:e.raw()}}if("bmpstr"===t){const t=e.raw();if(t.length%2===1)return e.error("Decoding of string type: bmpstr length mismatch");let r="";for(let e=0;e<t.length/2;e++)r+=String.fromCharCode(t.readUInt16BE(2*e));return r}if("numstr"===t){const t=e.raw().toString("ascii");return this._isNumstr(t)?t:e.error("Decoding of string type: numstr unsupported characters")}if("octstr"===t)return e.raw();if("objDesc"===t)return e.raw();if("printstr"===t){const t=e.raw().toString("ascii");return this._isPrintstr(t)?t:e.error("Decoding of string type: printstr unsupported characters")}return/str$/.test(t)?e.raw().toString():e.error("Decoding of string type: "+t+" unsupported")},l.prototype._decodeObjid=function(e,t,r){let i;const n=[];let a=0,s=0;while(!e.isEmpty())s=e.readUInt8(),a<<=7,a|=127&s,0===(128&s)&&(n.push(a),a=0);128&s&&n.push(a);const o=n[0]/40|0,h=n[0]%40;if(i=r?n:[o,h].concat(n.slice(1)),t){let e=t[i.join(" ")];void 0===e&&(e=t[i.join(".")]),void 0!==e&&(i=e)}return i},l.prototype._decodeTime=function(e,t){const r=e.raw().toString();let i,n,a,s,o,h;if("gentime"===t)i=0|r.slice(0,4),n=0|r.slice(4,6),a=0|r.slice(6,8),s=0|r.slice(8,10),o=0|r.slice(10,12),h=0|r.slice(12,14);else{if("utctime"!==t)return e.error("Decoding "+t+" time is not supported yet");i=0|r.slice(0,2),n=0|r.slice(2,4),a=0|r.slice(4,6),s=0|r.slice(6,8),o=0|r.slice(8,10),h=0|r.slice(10,12),i=i<70?2e3+i:1900+i}return Date.UTC(i,n-1,a,s,o,h,0)},l.prototype._decodeNull=function(){return null},l.prototype._decodeBool=function(e){const t=e.readUInt8();return e.isError(t)?t:0!==t},l.prototype._decodeInt=function(e,t){const r=e.raw();let i=new n(r);return t&&(i=t[i.toString(10)]||i),i},l.prototype._use=function(e,t){return"function"===typeof e&&(e=e(t)),e._getDecoder("der").tree}},d0eb:function(e,t,r){(function(e){(function(e,t){"use strict";function i(e,t){if(!e)throw new Error(t||"Assertion failed")}function n(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}function a(e,t,r){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(r=t,t=10),this._init(e||0,t||10,r||"be"))}var s;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{s="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:r(14).Buffer}catch(C){}function o(e,t){var r=e.charCodeAt(t);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function h(e,t,r){var i=o(e,r);return r-1>=t&&(i|=o(e,r-1)<<4),i}function l(e,t,r,i){for(var n=0,a=Math.min(e.length,r),s=t;s<a;s++){var o=e.charCodeAt(s)-48;n*=i,n+=o>=49?o-49+10:o>=17?o-17+10:o}return n}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n<e.length&&(16===t?this._parseHex(e,n,r):(this._parseBase(e,t,n),"le"===r&&this._initArray(this.toArray(),t,r)))},a.prototype._initNumber=function(e,t,r){e<0&&(this.negative=1,e=-e),e<67108864?(this.words=[67108863&e],this.length=1):e<4503599627370496?(this.words=[67108863&e,e/67108864&67108863],this.length=2):(i(e<9007199254740992),this.words=[67108863&e,e/67108864&67108863,1],this.length=3),"le"===r&&this._initArray(this.toArray(),t,r)},a.prototype._initArray=function(e,t,r){if(i("number"===typeof e.length),e.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(e.length/3),this.words=new Array(this.length);for(var n=0;n<this.length;n++)this.words[n]=0;var a,s,o=0;if("be"===r)for(n=e.length-1,a=0;n>=0;n-=3)s=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);else if("le"===r)for(n=0,a=0;n<e.length;n+=3)s=e[n]|e[n+1]<<8|e[n+2]<<16,this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var n,a=0,s=0;if("be"===r)for(i=e.length-1;i>=t;i-=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8;else{var o=e.length-t;for(i=o%2===0?t+1:t;i<e.length;i+=2)n=h(e,t,i)<<a,this.words[s]|=67108863&n,a>=18?(a-=18,s+=1,this.words[s]|=n>>>26):a+=8}this.strip()},a.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var a=e.length-r,s=a%i,o=Math.min(a,a-s)+r,h=0,c=r;c<o;c+=i)h=l(e,c,c+i,t),this.imuln(n),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h);if(0!==s){var u=1;for(h=l(e,c,e.length,t),c=0;c<s;c++)u*=t;this.imuln(u),this.words[0]+h<67108864?this.words[0]+=h:this._iaddn(h)}this.strip()},a.prototype.copy=function(e){e.words=new Array(this.length);for(var t=0;t<this.length;t++)e.words[t]=this.words[t];e.length=this.length,e.negative=this.negative,e.red=this.red},a.prototype.clone=function(){var e=new a(null);return this.copy(e),e},a.prototype._expand=function(e){while(this.length<e)this.words[this.length++]=0;return this},a.prototype.strip=function(){while(this.length>1&&0===this.words[this.length-1])this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?"<BN-R: ":"<BN: ")+this.toString(16)+">"};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],f=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function d(e){for(var t=new Array(e.bitLength()),r=0;r<t.length;r++){var i=r/26|0,n=r%26;t[r]=(e.words[i]&1<<n)>>>n}return t}function p(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],a=0|t.words[0],s=n*a,o=67108863&s,h=s/67108864|0;r.words[0]=o;for(var l=1;l<i;l++){for(var c=h>>>26,u=67108863&h,f=Math.min(l,t.length-1),d=Math.max(0,l-e.length+1);d<=f;d++){var p=l-d|0;n=0|e.words[p],a=0|t.words[d],s=n*a+u,c+=s/67108864|0,u=67108863&s}r.words[l]=0|u,h=0|c}return 0!==h?r.words[l]=0|h:r.length--,r.strip()}a.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,a=0,s=0;s<this.length;s++){var o=this.words[s],h=(16777215&(o<<n|a)).toString(16);a=o>>>24-n&16777215,r=0!==a||s!==this.length-1?c[6-h.length]+h+r:h+r,n+=2,n>=26&&(n-=26,s--)}0!==a&&(r=a.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var l=u[e],d=f[e];r="";var p=this.clone();p.negative=0;while(!p.isZero()){var m=p.modn(d).toString(e);p=p.idivn(d),r=p.isZero()?m+r:c[l-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return i("undefined"!==typeof s),this.toArrayLike(s,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,r){var n=this.byteLength(),a=r||Math.max(1,n);i(n<=a,"byte array longer than desired length"),i(a>0,"Requested array length <= 0"),this.strip();var s,o,h="le"===t,l=new e(a),c=this.clone();if(h){for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[o]=s;for(;o<a;o++)l[o]=0}else{for(o=0;o<a-n;o++)l[o]=0;for(o=0;!c.isZero();o++)s=c.andln(255),c.iushrn(8),l[a-o-1]=s}return l},Math.clz32?a.prototype._countBits=function(e){return 32-Math.clz32(e)}:a.prototype._countBits=function(e){var t=e,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;t<this.length;t++){var r=this._zeroBits(this.words[t]);if(e+=r,26!==r)break}return e},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(e){return 0!==this.negative?this.abs().inotn(e).iaddn(1):this.clone()},a.prototype.fromTwos=function(e){return this.testn(e-1)?this.notn(e).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(e){while(this.length<e.length)this.words[this.length++]=0;for(var t=0;t<e.length;t++)this.words[t]=this.words[t]|e.words[t];return this.strip()},a.prototype.ior=function(e){return i(0===(this.negative|e.negative)),this.iuor(e)},a.prototype.or=function(e){return this.length>e.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;r<t.length;r++)this.words[r]=this.words[r]&e.words[r];return this.length=t.length,this.strip()},a.prototype.iand=function(e){return i(0===(this.negative|e.negative)),this.iuand(e)},a.prototype.and=function(e){return this.length>e.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;i<r.length;i++)this.words[i]=t.words[i]^r.words[i];if(this!==t)for(;i<t.length;i++)this.words[i]=t.words[i];return this.length=t.length,this.strip()},a.prototype.ixor=function(e){return i(0===(this.negative|e.negative)),this.iuxor(e)},a.prototype.xor=function(e){return this.length>e.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n<t;n++)this.words[n]=67108863&~this.words[n];return r>0&&(this.words[n]=~this.words[n]&67108863>>26-r),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<<n:this.words[r]&~(1<<n),this.strip()},a.prototype.iadd=function(e){var t,r,i;if(0!==this.negative&&0===e.negative)return this.negative=0,t=this.isub(e),this.negative^=1,this._normSign();if(0===this.negative&&0!==e.negative)return e.negative=0,t=this.isub(e),e.negative=1,t._normSign();this.length>e.length?(r=this,i=e):(r=e,i=this);for(var n=0,a=0;a<i.length;a++)t=(0|r.words[a])+(0|i.words[a])+n,this.words[a]=67108863&t,n=t>>>26;for(;0!==n&&a<r.length;a++)t=(0|r.words[a])+n,this.words[a]=67108863&t,n=t>>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(e){var t;return 0!==e.negative&&0===this.negative?(e.negative=0,t=this.sub(e),e.negative^=1,t):0===e.negative&&0!==this.negative?(this.negative=0,t=e.sub(this),this.negative=1,t):this.length>e.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var a=0,s=0;s<i.length;s++)t=(0|r.words[s])-(0|i.words[s])+a,a=t>>26,this.words[s]=67108863&t;for(;0!==a&&s<r.length;s++)t=(0|r.words[s])+a,a=t>>26,this.words[s]=67108863&t;if(0===a&&s<r.length&&r!==this)for(;s<r.length;s++)this.words[s]=r.words[s];return this.length=Math.max(this.length,s),r!==this&&(this.negative=1),this.strip()},a.prototype.sub=function(e){return this.clone().isub(e)};var m=function(e,t,r){var i,n,a,s=e.words,o=t.words,h=r.words,l=0,c=0|s[0],u=8191&c,f=c>>>13,d=0|s[1],p=8191&d,m=d>>>13,g=0|s[2],b=8191&g,v=g>>>13,y=0|s[3],w=8191&y,M=y>>>13,_=0|s[4],S=8191&_,k=_>>>13,A=0|s[5],x=8191&A,C=A>>>13,E=0|s[6],T=8191&E,R=E>>>13,I=0|s[7],P=8191&I,O=I>>>13,F=0|s[8],L=8191&F,D=F>>>13,N=0|s[9],B=8191&N,U=N>>>13,j=0|o[0],q=8191&j,z=j>>>13,H=0|o[1],G=8191&H,W=H>>>13,X=0|o[2],V=8191&X,K=X>>>13,Y=0|o[3],Z=8191&Y,$=Y>>>13,J=0|o[4],Q=8191&J,ee=J>>>13,te=0|o[5],re=8191&te,ie=te>>>13,ne=0|o[6],ae=8191&ne,se=ne>>>13,oe=0|o[7],he=8191&oe,le=oe>>>13,ce=0|o[8],ue=8191&ce,fe=ce>>>13,de=0|o[9],pe=8191&de,me=de>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(u,q),n=Math.imul(u,z),n=n+Math.imul(f,q)|0,a=Math.imul(f,z);var ge=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,q),n=Math.imul(p,z),n=n+Math.imul(m,q)|0,a=Math.imul(m,z),i=i+Math.imul(u,G)|0,n=n+Math.imul(u,W)|0,n=n+Math.imul(f,G)|0,a=a+Math.imul(f,W)|0;var be=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(b,q),n=Math.imul(b,z),n=n+Math.imul(v,q)|0,a=Math.imul(v,z),i=i+Math.imul(p,G)|0,n=n+Math.imul(p,W)|0,n=n+Math.imul(m,G)|0,a=a+Math.imul(m,W)|0,i=i+Math.imul(u,V)|0,n=n+Math.imul(u,K)|0,n=n+Math.imul(f,V)|0,a=a+Math.imul(f,K)|0;var ve=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(w,q),n=Math.imul(w,z),n=n+Math.imul(M,q)|0,a=Math.imul(M,z),i=i+Math.imul(b,G)|0,n=n+Math.imul(b,W)|0,n=n+Math.imul(v,G)|0,a=a+Math.imul(v,W)|0,i=i+Math.imul(p,V)|0,n=n+Math.imul(p,K)|0,n=n+Math.imul(m,V)|0,a=a+Math.imul(m,K)|0,i=i+Math.imul(u,Z)|0,n=n+Math.imul(u,$)|0,n=n+Math.imul(f,Z)|0,a=a+Math.imul(f,$)|0;var ye=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(S,q),n=Math.imul(S,z),n=n+Math.imul(k,q)|0,a=Math.imul(k,z),i=i+Math.imul(w,G)|0,n=n+Math.imul(w,W)|0,n=n+Math.imul(M,G)|0,a=a+Math.imul(M,W)|0,i=i+Math.imul(b,V)|0,n=n+Math.imul(b,K)|0,n=n+Math.imul(v,V)|0,a=a+Math.imul(v,K)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,$)|0,n=n+Math.imul(m,Z)|0,a=a+Math.imul(m,$)|0,i=i+Math.imul(u,Q)|0,n=n+Math.imul(u,ee)|0,n=n+Math.imul(f,Q)|0,a=a+Math.imul(f,ee)|0;var we=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(x,q),n=Math.imul(x,z),n=n+Math.imul(C,q)|0,a=Math.imul(C,z),i=i+Math.imul(S,G)|0,n=n+Math.imul(S,W)|0,n=n+Math.imul(k,G)|0,a=a+Math.imul(k,W)|0,i=i+Math.imul(w,V)|0,n=n+Math.imul(w,K)|0,n=n+Math.imul(M,V)|0,a=a+Math.imul(M,K)|0,i=i+Math.imul(b,Z)|0,n=n+Math.imul(b,$)|0,n=n+Math.imul(v,Z)|0,a=a+Math.imul(v,$)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,a=a+Math.imul(m,ee)|0,i=i+Math.imul(u,re)|0,n=n+Math.imul(u,ie)|0,n=n+Math.imul(f,re)|0,a=a+Math.imul(f,ie)|0;var Me=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(T,q),n=Math.imul(T,z),n=n+Math.imul(R,q)|0,a=Math.imul(R,z),i=i+Math.imul(x,G)|0,n=n+Math.imul(x,W)|0,n=n+Math.imul(C,G)|0,a=a+Math.imul(C,W)|0,i=i+Math.imul(S,V)|0,n=n+Math.imul(S,K)|0,n=n+Math.imul(k,V)|0,a=a+Math.imul(k,K)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,$)|0,n=n+Math.imul(M,Z)|0,a=a+Math.imul(M,$)|0,i=i+Math.imul(b,Q)|0,n=n+Math.imul(b,ee)|0,n=n+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,a=a+Math.imul(m,ie)|0,i=i+Math.imul(u,ae)|0,n=n+Math.imul(u,se)|0,n=n+Math.imul(f,ae)|0,a=a+Math.imul(f,se)|0;var _e=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul(P,q),n=Math.imul(P,z),n=n+Math.imul(O,q)|0,a=Math.imul(O,z),i=i+Math.imul(T,G)|0,n=n+Math.imul(T,W)|0,n=n+Math.imul(R,G)|0,a=a+Math.imul(R,W)|0,i=i+Math.imul(x,V)|0,n=n+Math.imul(x,K)|0,n=n+Math.imul(C,V)|0,a=a+Math.imul(C,K)|0,i=i+Math.imul(S,Z)|0,n=n+Math.imul(S,$)|0,n=n+Math.imul(k,Z)|0,a=a+Math.imul(k,$)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(M,Q)|0,a=a+Math.imul(M,ee)|0,i=i+Math.imul(b,re)|0,n=n+Math.imul(b,ie)|0,n=n+Math.imul(v,re)|0,a=a+Math.imul(v,ie)|0,i=i+Math.imul(p,ae)|0,n=n+Math.imul(p,se)|0,n=n+Math.imul(m,ae)|0,a=a+Math.imul(m,se)|0,i=i+Math.imul(u,he)|0,n=n+Math.imul(u,le)|0,n=n+Math.imul(f,he)|0,a=a+Math.imul(f,le)|0;var Se=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(L,q),n=Math.imul(L,z),n=n+Math.imul(D,q)|0,a=Math.imul(D,z),i=i+Math.imul(P,G)|0,n=n+Math.imul(P,W)|0,n=n+Math.imul(O,G)|0,a=a+Math.imul(O,W)|0,i=i+Math.imul(T,V)|0,n=n+Math.imul(T,K)|0,n=n+Math.imul(R,V)|0,a=a+Math.imul(R,K)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,$)|0,n=n+Math.imul(C,Z)|0,a=a+Math.imul(C,$)|0,i=i+Math.imul(S,Q)|0,n=n+Math.imul(S,ee)|0,n=n+Math.imul(k,Q)|0,a=a+Math.imul(k,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(M,re)|0,a=a+Math.imul(M,ie)|0,i=i+Math.imul(b,ae)|0,n=n+Math.imul(b,se)|0,n=n+Math.imul(v,ae)|0,a=a+Math.imul(v,se)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,le)|0,n=n+Math.imul(m,he)|0,a=a+Math.imul(m,le)|0,i=i+Math.imul(u,ue)|0,n=n+Math.imul(u,fe)|0,n=n+Math.imul(f,ue)|0,a=a+Math.imul(f,fe)|0;var ke=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(B,q),n=Math.imul(B,z),n=n+Math.imul(U,q)|0,a=Math.imul(U,z),i=i+Math.imul(L,G)|0,n=n+Math.imul(L,W)|0,n=n+Math.imul(D,G)|0,a=a+Math.imul(D,W)|0,i=i+Math.imul(P,V)|0,n=n+Math.imul(P,K)|0,n=n+Math.imul(O,V)|0,a=a+Math.imul(O,K)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,$)|0,n=n+Math.imul(R,Z)|0,a=a+Math.imul(R,$)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(C,Q)|0,a=a+Math.imul(C,ee)|0,i=i+Math.imul(S,re)|0,n=n+Math.imul(S,ie)|0,n=n+Math.imul(k,re)|0,a=a+Math.imul(k,ie)|0,i=i+Math.imul(w,ae)|0,n=n+Math.imul(w,se)|0,n=n+Math.imul(M,ae)|0,a=a+Math.imul(M,se)|0,i=i+Math.imul(b,he)|0,n=n+Math.imul(b,le)|0,n=n+Math.imul(v,he)|0,a=a+Math.imul(v,le)|0,i=i+Math.imul(p,ue)|0,n=n+Math.imul(p,fe)|0,n=n+Math.imul(m,ue)|0,a=a+Math.imul(m,fe)|0,i=i+Math.imul(u,pe)|0,n=n+Math.imul(u,me)|0,n=n+Math.imul(f,pe)|0,a=a+Math.imul(f,me)|0;var Ae=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(B,G),n=Math.imul(B,W),n=n+Math.imul(U,G)|0,a=Math.imul(U,W),i=i+Math.imul(L,V)|0,n=n+Math.imul(L,K)|0,n=n+Math.imul(D,V)|0,a=a+Math.imul(D,K)|0,i=i+Math.imul(P,Z)|0,n=n+Math.imul(P,$)|0,n=n+Math.imul(O,Z)|0,a=a+Math.imul(O,$)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(R,Q)|0,a=a+Math.imul(R,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(C,re)|0,a=a+Math.imul(C,ie)|0,i=i+Math.imul(S,ae)|0,n=n+Math.imul(S,se)|0,n=n+Math.imul(k,ae)|0,a=a+Math.imul(k,se)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,le)|0,n=n+Math.imul(M,he)|0,a=a+Math.imul(M,le)|0,i=i+Math.imul(b,ue)|0,n=n+Math.imul(b,fe)|0,n=n+Math.imul(v,ue)|0,a=a+Math.imul(v,fe)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,a=a+Math.imul(m,me)|0;var xe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(B,V),n=Math.imul(B,K),n=n+Math.imul(U,V)|0,a=Math.imul(U,K),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,$)|0,n=n+Math.imul(D,Z)|0,a=a+Math.imul(D,$)|0,i=i+Math.imul(P,Q)|0,n=n+Math.imul(P,ee)|0,n=n+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(R,re)|0,a=a+Math.imul(R,ie)|0,i=i+Math.imul(x,ae)|0,n=n+Math.imul(x,se)|0,n=n+Math.imul(C,ae)|0,a=a+Math.imul(C,se)|0,i=i+Math.imul(S,he)|0,n=n+Math.imul(S,le)|0,n=n+Math.imul(k,he)|0,a=a+Math.imul(k,le)|0,i=i+Math.imul(w,ue)|0,n=n+Math.imul(w,fe)|0,n=n+Math.imul(M,ue)|0,a=a+Math.imul(M,fe)|0,i=i+Math.imul(b,pe)|0,n=n+Math.imul(b,me)|0,n=n+Math.imul(v,pe)|0,a=a+Math.imul(v,me)|0;var Ce=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(B,Z),n=Math.imul(B,$),n=n+Math.imul(U,Z)|0,a=Math.imul(U,$),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(D,Q)|0,a=a+Math.imul(D,ee)|0,i=i+Math.imul(P,re)|0,n=n+Math.imul(P,ie)|0,n=n+Math.imul(O,re)|0,a=a+Math.imul(O,ie)|0,i=i+Math.imul(T,ae)|0,n=n+Math.imul(T,se)|0,n=n+Math.imul(R,ae)|0,a=a+Math.imul(R,se)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,le)|0,n=n+Math.imul(C,he)|0,a=a+Math.imul(C,le)|0,i=i+Math.imul(S,ue)|0,n=n+Math.imul(S,fe)|0,n=n+Math.imul(k,ue)|0,a=a+Math.imul(k,fe)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(M,pe)|0,a=a+Math.imul(M,me)|0;var Ee=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(B,Q),n=Math.imul(B,ee),n=n+Math.imul(U,Q)|0,a=Math.imul(U,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(D,re)|0,a=a+Math.imul(D,ie)|0,i=i+Math.imul(P,ae)|0,n=n+Math.imul(P,se)|0,n=n+Math.imul(O,ae)|0,a=a+Math.imul(O,se)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,le)|0,n=n+Math.imul(R,he)|0,a=a+Math.imul(R,le)|0,i=i+Math.imul(x,ue)|0,n=n+Math.imul(x,fe)|0,n=n+Math.imul(C,ue)|0,a=a+Math.imul(C,fe)|0,i=i+Math.imul(S,pe)|0,n=n+Math.imul(S,me)|0,n=n+Math.imul(k,pe)|0,a=a+Math.imul(k,me)|0;var Te=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(B,re),n=Math.imul(B,ie),n=n+Math.imul(U,re)|0,a=Math.imul(U,ie),i=i+Math.imul(L,ae)|0,n=n+Math.imul(L,se)|0,n=n+Math.imul(D,ae)|0,a=a+Math.imul(D,se)|0,i=i+Math.imul(P,he)|0,n=n+Math.imul(P,le)|0,n=n+Math.imul(O,he)|0,a=a+Math.imul(O,le)|0,i=i+Math.imul(T,ue)|0,n=n+Math.imul(T,fe)|0,n=n+Math.imul(R,ue)|0,a=a+Math.imul(R,fe)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(C,pe)|0,a=a+Math.imul(C,me)|0;var Re=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Re>>>26)|0,Re&=67108863,i=Math.imul(B,ae),n=Math.imul(B,se),n=n+Math.imul(U,ae)|0,a=Math.imul(U,se),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,le)|0,n=n+Math.imul(D,he)|0,a=a+Math.imul(D,le)|0,i=i+Math.imul(P,ue)|0,n=n+Math.imul(P,fe)|0,n=n+Math.imul(O,ue)|0,a=a+Math.imul(O,fe)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(R,pe)|0,a=a+Math.imul(R,me)|0;var Ie=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(B,he),n=Math.imul(B,le),n=n+Math.imul(U,he)|0,a=Math.imul(U,le),i=i+Math.imul(L,ue)|0,n=n+Math.imul(L,fe)|0,n=n+Math.imul(D,ue)|0,a=a+Math.imul(D,fe)|0,i=i+Math.imul(P,pe)|0,n=n+Math.imul(P,me)|0,n=n+Math.imul(O,pe)|0,a=a+Math.imul(O,me)|0;var Pe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(B,ue),n=Math.imul(B,fe),n=n+Math.imul(U,ue)|0,a=Math.imul(U,fe),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(D,pe)|0,a=a+Math.imul(D,me)|0;var Oe=(l+i|0)+((8191&n)<<13)|0;l=(a+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(B,pe),n=Math.imul(B,me),n=n+Math.imul(U,pe)|0,a=Math.imul(U,me);var Fe=(l+i|0)+((8191&n)<<13)|0;return l=(a+(n>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,h[0]=ge,h[1]=be,h[2]=ve,h[3]=ye,h[4]=we,h[5]=Me,h[6]=_e,h[7]=Se,h[8]=ke,h[9]=Ae,h[10]=xe,h[11]=Ce,h[12]=Ee,h[13]=Te,h[14]=Re,h[15]=Ie,h[16]=Pe,h[17]=Oe,h[18]=Fe,0!==l&&(h[19]=l,r.length++),r};function g(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,a=0;a<r.length-1;a++){var s=n;n=0;for(var o=67108863&i,h=Math.min(a,t.length-1),l=Math.max(0,a-e.length+1);l<=h;l++){var c=a-l,u=0|e.words[c],f=0|t.words[l],d=u*f,p=67108863&d;s=s+(d/67108864|0)|0,p=p+o|0,o=67108863&p,s=s+(p>>>26)|0,n+=s>>>26,s&=67108863}r.words[a]=o,i=s,s=n}return 0!==i?r.words[a]=i:r.length--,r.strip()}function b(e,t,r){var i=new v;return i.mulp(e,t,r)}function v(e,t){this.x=e,this.y=t}Math.imul||(m=p),a.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?m(this,e,t):i<63?p(this,e,t):i<1024?g(this,e,t):b(this,e,t),r},v.prototype.makeRBT=function(e){for(var t=new Array(e),r=a.prototype._countBits(e)-1,i=0;i<e;i++)t[i]=this.revBin(i,r,e);return t},v.prototype.revBin=function(e,t,r){if(0===e||e===r-1)return e;for(var i=0,n=0;n<t;n++)i|=(1&e)<<t-n-1,e>>=1;return i},v.prototype.permute=function(e,t,r,i,n,a){for(var s=0;s<a;s++)i[s]=t[e[s]],n[s]=r[e[s]]},v.prototype.transform=function(e,t,r,i,n,a){this.permute(a,e,t,r,i,n);for(var s=1;s<n;s<<=1)for(var o=s<<1,h=Math.cos(2*Math.PI/o),l=Math.sin(2*Math.PI/o),c=0;c<n;c+=o)for(var u=h,f=l,d=0;d<s;d++){var p=r[c+d],m=i[c+d],g=r[c+d+s],b=i[c+d+s],v=u*g-f*b;b=u*b+f*g,g=v,r[c+d]=p+g,i[c+d]=m+b,r[c+d+s]=p-g,i[c+d+s]=m-b,d!==o&&(v=h*u-l*f,f=h*f+l*u,u=v)}},v.prototype.guessLen13b=function(e,t){var r=1|Math.max(t,e),i=1&r,n=0;for(r=r/2|0;r;r>>>=1)n++;return 1<<n+1+i},v.prototype.conjugate=function(e,t,r){if(!(r<=1))for(var i=0;i<r/2;i++){var n=e[i];e[i]=e[r-i-1],e[r-i-1]=n,n=t[i],t[i]=-t[r-i-1],t[r-i-1]=-n}},v.prototype.normalize13b=function(e,t){for(var r=0,i=0;i<t/2;i++){var n=8192*Math.round(e[2*i+1]/t)+Math.round(e[2*i]/t)+r;e[i]=67108863&n,r=n<67108864?0:n/67108864|0}return e},v.prototype.convert13b=function(e,t,r,n){for(var a=0,s=0;s<t;s++)a+=0|e[s],r[2*s]=8191&a,a>>>=13,r[2*s+1]=8191&a,a>>>=13;for(s=2*t;s<n;++s)r[s]=0;i(0===a),i(0===(-8192&a))},v.prototype.stub=function(e){for(var t=new Array(e),r=0;r<e;r++)t[r]=0;return t},v.prototype.mulp=function(e,t,r){var i=2*this.guessLen13b(e.length,t.length),n=this.makeRBT(i),a=this.stub(i),s=new Array(i),o=new Array(i),h=new Array(i),l=new Array(i),c=new Array(i),u=new Array(i),f=r.words;f.length=i,this.convert13b(e.words,e.length,s,i),this.convert13b(t.words,t.length,l,i),this.transform(s,a,o,h,i,n),this.transform(l,a,c,u,i,n);for(var d=0;d<i;d++){var p=o[d]*c[d]-h[d]*u[d];h[d]=o[d]*u[d]+h[d]*c[d],o[d]=p}return this.conjugate(o,h,i),this.transform(o,h,f,a,i,n),this.conjugate(f,a,i),this.normalize13b(f,i),r.negative=e.negative^t.negative,r.length=e.length+t.length,r.strip()},a.prototype.mul=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),this.mulTo(e,t)},a.prototype.mulf=function(e){var t=new a(null);return t.words=new Array(this.length+e.length),b(this,e,t)},a.prototype.imul=function(e){return this.clone().mulTo(e,this)},a.prototype.imuln=function(e){i("number"===typeof e),i(e<67108864);for(var t=0,r=0;r<this.length;r++){var n=(0|this.words[r])*e,a=(67108863&n)+(67108863&t);t>>=26,t+=n/67108864|0,t+=a>>>26,this.words[r]=67108863&a}return 0!==t&&(this.words[r]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=d(e);if(0===t.length)return new a(1);for(var r=this,i=0;i<t.length;i++,r=r.sqr())if(0!==t[i])break;if(++i<t.length)for(var n=r.sqr();i<t.length;i++,n=n.sqr())0!==t[i]&&(r=r.mul(n));return r},a.prototype.iushln=function(e){i("number"===typeof e&&e>=0);var t,r=e%26,n=(e-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var s=0;for(t=0;t<this.length;t++){var o=this.words[t]&a,h=(0|this.words[t])-o<<r;this.words[t]=h|s,s=o>>>26-r}s&&(this.words[t]=s,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t<n;t++)this.words[t]=0;this.length+=n}return this.strip()},a.prototype.ishln=function(e){return i(0===this.negative),this.iushln(e)},a.prototype.iushrn=function(e,t,r){var n;i("number"===typeof e&&e>=0),n=t?(t-t%26)/26:0;var a=e%26,s=Math.min((e-a)/26,this.length),o=67108863^67108863>>>a<<a,h=r;if(n-=s,n=Math.max(0,n),h){for(var l=0;l<s;l++)h.words[l]=this.words[l];h.length=s}if(0===s);else if(this.length>s)for(this.length-=s,l=0;l<this.length;l++)this.words[l]=this.words[l+s];else this.words[0]=0,this.length=1;var c=0;for(l=this.length-1;l>=0&&(0!==c||l>=n);l--){var u=0|this.words[l];this.words[l]=c<<26-a|u>>>a,c=u&o}return h&&0!==c&&(h.words[h.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return!1;var a=this.words[r];return!!(a&n)},a.prototype.imaskn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<<t;this.words[this.length-1]&=n}return this.strip()},a.prototype.maskn=function(e){return this.clone().imaskn(e)},a.prototype.iaddn=function(e){return i("number"===typeof e),i(e<67108864),e<0?this.isubn(-e):0!==this.negative?1===this.length&&(0|this.words[0])<e?(this.words[0]=e-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(e),this.negative=1,this):this._iaddn(e)},a.prototype._iaddn=function(e){this.words[0]+=e;for(var t=0;t<this.length&&this.words[t]>=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t<this.length&&this.words[t]<0;t++)this.words[t]+=67108864,this.words[t+1]-=1;return this.strip()},a.prototype.addn=function(e){return this.clone().iaddn(e)},a.prototype.subn=function(e){return this.clone().isubn(e)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(e,t,r){var n,a,s=e.length+r;this._expand(s);var o=0;for(n=0;n<e.length;n++){a=(0|this.words[n+r])+o;var h=(0|e.words[n])*t;a-=67108863&h,o=(a>>26)-(h/67108864|0),this.words[n+r]=67108863&a}for(;n<this.length-r;n++)a=(0|this.words[n+r])+o,o=a>>26,this.words[n+r]=67108863&a;if(0===o)return this.strip();for(i(-1===o),o=0,n=0;n<this.length;n++)a=-(0|this.words[n])+o,o=a>>26,this.words[n]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,s=0|n.words[n.length-1],o=this._countBits(s);r=26-o,0!==r&&(n=n.ushln(r),i.iushln(r),s=0|n.words[n.length-1]);var h,l=i.length-n.length;if("mod"!==t){h=new a(null),h.length=l+1,h.words=new Array(h.length);for(var c=0;c<h.length;c++)h.words[c]=0}var u=i.clone()._ishlnsubmul(n,1,l);0===u.negative&&(i=u,h&&(h.words[l]=1));for(var f=l-1;f>=0;f--){var d=67108864*(0|i.words[n.length+f])+(0|i.words[n.length+f-1]);d=Math.min(d/s|0,67108863),i._ishlnsubmul(n,d,f);while(0!==i.negative)d--,i.negative=0,i._ishlnsubmul(n,1,f),i.isZero()||(i.negative^=1);h&&(h.words[f]=d)}return h&&h.strip(),i.strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:h||null,mod:i}},a.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(o=this.neg().divmod(e,t),"mod"!==t&&(n=o.div.neg()),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.iadd(e)),{div:n,mod:s}):0===this.negative&&0!==e.negative?(o=this.divmod(e.neg(),t),"mod"!==t&&(n=o.div.neg()),{div:n,mod:o.mod}):0!==(this.negative&e.negative)?(o=this.neg().divmod(e.neg(),t),"div"!==t&&(s=o.mod.neg(),r&&0!==s.negative&&s.isub(e)),{div:o.div,mod:s}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var n,s,o},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),a=r.cmp(i);return a<0||1===n&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){i(e<=67108863);for(var t=(1<<26)%e,r=0,n=this.length-1;n>=0;n--)r=(t*r+(0|this.words[n]))%e;return r},a.prototype.idivn=function(e){i(e<=67108863);for(var t=0,r=this.length-1;r>=0;r--){var n=(0|this.words[r])+67108864*t;this.words[r]=n/e|0,t=n%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new a(1),s=new a(0),o=new a(0),h=new a(1),l=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++l;var c=r.clone(),u=t.clone();while(!t.isZero()){for(var f=0,d=1;0===(t.words[0]&d)&&f<26;++f,d<<=1);if(f>0){t.iushrn(f);while(f-- >0)(n.isOdd()||s.isOdd())&&(n.iadd(c),s.isub(u)),n.iushrn(1),s.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(o.isOdd()||h.isOdd())&&(o.iadd(c),h.isub(u)),o.iushrn(1),h.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(o),s.isub(h)):(r.isub(t),o.isub(n),h.isub(s))}return{a:o,b:h,gcd:r.iushln(l)}},a.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,s=new a(1),o=new a(0),h=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var l=0,c=1;0===(t.words[0]&c)&&l<26;++l,c<<=1);if(l>0){t.iushrn(l);while(l-- >0)s.isOdd()&&s.iadd(h),s.iushrn(1)}for(var u=0,f=1;0===(r.words[0]&f)&&u<26;++u,f<<=1);if(u>0){r.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(h),o.iushrn(1)}t.cmp(r)>=0?(t.isub(r),s.isub(o)):(r.isub(t),o.isub(s))}return n=0===t.cmpn(1)?s:o,n.cmpn(0)<0&&n.iadd(e),n},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var a=t;t=r,r=a}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<<t;if(this.length<=r)return this._expand(r+1),this.words[r]|=n,this;for(var a=n,s=r;0!==a&&s<this.length;s++){var o=0|this.words[s];o+=a,a=o>>>26,o&=67108863,this.words[s]=o}return 0!==a&&(this.words[s]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:n<e?-1:1}return 0!==this.negative?0|-t:t},a.prototype.cmp=function(e){if(0!==this.negative&&0===e.negative)return-1;if(0===this.negative&&0!==e.negative)return 1;var t=this.ucmp(e);return 0!==this.negative?0|-t:t},a.prototype.ucmp=function(e){if(this.length>e.length)return 1;if(this.length<e.length)return-1;for(var t=0,r=this.length-1;r>=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){i<n?t=-1:i>n&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new A(e)},a.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var y={k256:null,p224:null,p192:null,p25519:null};function w(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function M(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function _(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function S(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function k(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function A(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){A.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}w.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},w.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t<this.n?-1:r.ucmp(this.p);return 0===i?(r.words[0]=0,r.length=1):i>0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(e,t){e.iushrn(this.n,0,t)},w.prototype.imulK=function(e){return e.imul(this.k)},n(M,w),M.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n<i;n++)t.words[n]=e.words[n];if(t.length=i,e.length<=9)return e.words[0]=0,void(e.length=1);var a=e.words[9];for(t.words[t.length++]=a&r,n=10;n<e.length;n++){var s=0|e.words[n];e.words[n-10]=(s&r)<<4|a>>>22,a=s}a>>>=22,e.words[n-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},M.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r<e.length;r++){var i=0|e.words[r];t+=977*i,e.words[r]=67108863&t,t=64*i+(t/67108864|0)}return 0===e.words[e.length-1]&&(e.length--,0===e.words[e.length-1]&&e.length--),e},n(_,w),n(S,w),n(k,w),k.prototype.imulK=function(e){for(var t=0,r=0;r<e.length;r++){var i=19*(0|e.words[r])+t,n=67108863&i;i>>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(y[e])return y[e];var t;if("k256"===e)t=new M;else if("p224"===e)t=new _;else if("p192"===e)t=new S;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new k}return y[e]=t,t},A.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},A.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},A.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},A.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},A.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},A.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},A.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},A.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},A.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},A.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},A.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},A.prototype.isqr=function(e){return this.imul(e,e.clone())},A.prototype.sqr=function(e){return this.mul(e,e)},A.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new a(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),s=0;while(!n.isZero()&&0===n.andln(1))s++,n.iushrn(1);i(!n.isZero());var o=new a(1).toRed(this),h=o.redNeg(),l=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new a(2*c*c).toRed(this);while(0!==this.pow(c,l).cmp(h))c.redIAdd(h);var u=this.pow(c,n),f=this.pow(e,n.addn(1).iushrn(1)),d=this.pow(e,n),p=s;while(0!==d.cmp(o)){for(var m=d,g=0;0!==m.cmp(o);g++)m=m.redSqr();i(g<p);var b=this.pow(u,new a(1).iushln(p-g-1));f=f.redMul(b),u=b.redSqr(),d=d.redMul(u),p=g}return f},A.prototype.invm=function(e){var t=e._invmp(this.m);return 0!==t.negative?(t.negative=0,this.imod(t).redNeg()):this.imod(t)},A.prototype.pow=function(e,t){if(t.isZero())return new a(1).toRed(this);if(0===t.cmpn(1))return e.clone();var r=4,i=new Array(1<<r);i[0]=new a(1).toRed(this),i[1]=e;for(var n=2;n<i.length;n++)i[n]=this.mul(i[n-1],e);var s=i[0],o=0,h=0,l=t.bitLength()%26;for(0===l&&(l=26),n=t.length-1;n>=0;n--){for(var c=t.words[n],u=l-1;u>=0;u--){var f=c>>u&1;s!==i[0]&&(s=this.sqr(s)),0!==f||0!==o?(o<<=1,o|=f,h++,(h===r||0===n&&0===u)&&(s=this.mul(s,i[o]),h=0,o=0)):h=0}l=26}return s},A.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},A.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new x(e)},n(x,A),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),a=n;return n.cmp(this.m)>=0?a=n.isub(this.m):n.cmpn(0)<0&&(a=n.iadd(this.m)),a._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},x.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}})(e,this)}).call(this,r("62e4")(e))},d113:function(e,t,r){"use strict";function i(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}var n={};function a(e,t,r){function a(e,r,i){return"string"===typeof t?t:t(e,r,i)}r||(r=Error);var s=function(e){function t(t,r,i){return e.call(this,a(t,r,i))||this}return i(t,e),t}(r);s.prototype.name=r.name,s.prototype.code=e,n[e]=s}function s(e,t){if(Array.isArray(e)){var r=e.length;return e=e.map((function(e){return String(e)})),r>2?"one of ".concat(t," ").concat(e.slice(0,r-1).join(", "),", or ")+e[r-1]:2===r?"one of ".concat(t," ").concat(e[0]," or ").concat(e[1]):"of ".concat(t," ").concat(e[0])}return"of ".concat(t," ").concat(String(e))}function o(e,t,r){return e.substr(!r||r<0?0:+r,t.length)===t}function h(e,t,r){return(void 0===r||r>e.length)&&(r=e.length),e.substring(r-t.length,r)===t}function l(e,t,r){return"number"!==typeof r&&(r=0),!(r+t.length>e.length)&&-1!==e.indexOf(t,r)}a("ERR_INVALID_OPT_VALUE",(function(e,t){return'The value "'+t+'" is invalid for option "'+e+'"'}),TypeError),a("ERR_INVALID_ARG_TYPE",(function(e,t,r){var i,n;if("string"===typeof t&&o(t,"not ")?(i="must not be",t=t.replace(/^not /,"")):i="must be",h(e," argument"))n="The ".concat(e," ").concat(i," ").concat(s(t,"type"));else{var a=l(e,".")?"property":"argument";n='The "'.concat(e,'" ').concat(a," ").concat(i," ").concat(s(t,"type"))}return n+=". Received type ".concat(typeof r),n}),TypeError),a("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),a("ERR_METHOD_NOT_IMPLEMENTED",(function(e){return"The "+e+" method is not implemented"})),a("ERR_STREAM_PREMATURE_CLOSE","Premature close"),a("ERR_STREAM_DESTROYED",(function(e){return"Cannot call "+e+" after a stream was destroyed"})),a("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),a("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),a("ERR_STREAM_WRITE_AFTER_END","write after end"),a("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),a("ERR_UNKNOWN_ENCODING",(function(e){return"Unknown encoding: "+e}),TypeError),a("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),e.exports.codes=n},d17b:function(e,t,r){e.exports=r("e372").Transform},d185:function(e,t,r){var i=r("11e9"),n=r("38fd"),a=r("69a8"),s=r("5ca1"),o=r("d3f4"),h=r("cb7c");function l(e,t){var r,s,c=arguments.length<3?e:arguments[2];return h(e)===c?e[t]:(r=i.f(e,t))?a(r,"value")?r.value:void 0!==r.get?r.get.call(c):void 0:o(s=n(e))?l(s,t,c):void 0}s(s.S,"Reflect",{get:l})},d1c8:function(e,t,r){"use strict";const i=r("3fb5");function n(e){this._reporterState={obj:null,path:[],options:e||{},errors:[]}}function a(e,t){this.path=e,this.rethrow(t)}t.Reporter=n,n.prototype.isError=function(e){return e instanceof a},n.prototype.save=function(){const e=this._reporterState;return{obj:e.obj,pathLen:e.path.length}},n.prototype.restore=function(e){const t=this._reporterState;t.obj=e.obj,t.path=t.path.slice(0,e.pathLen)},n.prototype.enterKey=function(e){return this._reporterState.path.push(e)},n.prototype.exitKey=function(e){const t=this._reporterState;t.path=t.path.slice(0,e-1)},n.prototype.leaveKey=function(e,t,r){const i=this._reporterState;this.exitKey(e),null!==i.obj&&(i.obj[t]=r)},n.prototype.path=function(){return this._reporterState.path.join("/")},n.prototype.enterObject=function(){const e=this._reporterState,t=e.obj;return e.obj={},t},n.prototype.leaveObject=function(e){const t=this._reporterState,r=t.obj;return t.obj=e,r},n.prototype.error=function(e){let t;const r=this._reporterState,i=e instanceof a;if(t=i?e:new a(r.path.map((function(e){return"["+JSON.stringify(e)+"]"})).join(""),e.message||e,e.stack),!r.options.partial)throw t;return i||r.errors.push(t),t},n.prototype.wrapResult=function(e){const t=this._reporterState;return t.options.partial?{result:this.isError(e)?null:e,errors:t.errors}:e},i(a,Error),a.prototype.rethrow=function(e){if(this.message=e+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,a),!this.stack)try{throw new Error(this.message)}catch(t){this.stack=t.stack}return this}},d424:function(e,t,r){"use strict";var i=r("3fb5"),n=r("8707").Buffer,a=r("6430"),s=n.alloc(128),o=64;function h(e,t){a.call(this,"digest"),"string"===typeof t&&(t=n.from(t)),this._alg=e,this._key=t,t.length>o?t=e(t):t.length<o&&(t=n.concat([t,s],o));for(var r=this._ipad=n.allocUnsafe(o),i=this._opad=n.allocUnsafe(o),h=0;h<o;h++)r[h]=54^t[h],i[h]=92^t[h];this._hash=[r]}i(h,a),h.prototype._update=function(e){this._hash.push(e)},h.prototype._final=function(){var e=this._alg(n.concat(this._hash));return this._alg(n.concat([this._opad,e]))},e.exports=h},d485:function(e,t,r){e.exports=a;var i=r("faa1").EventEmitter,n=r("3fb5");function a(){i.call(this)}n(a,i),a.Readable=r("e372"),a.Writable=r("2c63"),a.Duplex=r("0960"),a.Transform=r("d17b"),a.PassThrough=r("c2ae"),a.Stream=a,a.prototype.pipe=function(e,t){var r=this;function n(t){e.writable&&!1===e.write(t)&&r.pause&&r.pause()}function a(){r.readable&&r.resume&&r.resume()}r.on("data",n),e.on("drain",a),e._isStdio||t&&!1===t.end||(r.on("end",o),r.on("close",h));var s=!1;function o(){s||(s=!0,e.end())}function h(){s||(s=!0,"function"===typeof e.destroy&&e.destroy())}function l(e){if(c(),0===i.listenerCount(this,"error"))throw e}function c(){r.removeListener("data",n),e.removeListener("drain",a),r.removeListener("end",o),r.removeListener("close",h),r.removeListener("error",l),e.removeListener("error",l),r.removeListener("end",c),r.removeListener("close",c),e.removeListener("close",c)}return r.on("error",l),e.on("error",l),r.on("end",c),r.on("close",c),e.on("close",c),e.emit("pipe",r),e}},d4ec:function(e,t,r){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}r.d(t,"a",(function(){return i}))},d70e:function(e){e.exports=JSON.parse('{"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}')},da3e:function(e,t){function r(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=r,r.equal=function(e,t,r){if(e!=t)throw new Error(r||"Assertion failed: "+e+" != "+t)}},dbc4:function(e,t,r){"use strict";r("0a70")},dc14:function(e,t,r){"use strict";(function(t,i){var n=r("966d");function a(e){var t=this;this.next=null,this.entry=null,this.finish=function(){D(t,e)}}e.exports=y;var s,o=!t.browser&&["v0.10","v0.9."].indexOf(t.version.slice(0,5))>-1?setImmediate:n.nextTick;y.WritableState=v;var h=Object.create(r("3a7c"));h.inherits=r("3fb5");var l={deprecate:r("b7d1")},c=r("429b"),u=r("8707").Buffer,f=i.Uint8Array||function(){};function d(e){return u.from(e)}function p(e){return u.isBuffer(e)||e instanceof f}var m,g=r("4681");function b(){}function v(e,t){s=s||r("b19a"),e=e||{};var i=t instanceof s;this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.writableObjectMode);var n=e.highWaterMark,o=e.writableHighWaterMark,h=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:i&&(o||0===o)?o:h,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var l=!1===e.decodeStrings;this.decodeStrings=!l,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){C(t,e)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new a(this)}function y(e){if(s=s||r("b19a"),!m.call(y,this)&&!(this instanceof s))return new y(e);this._writableState=new v(e,this),this.writable=!0,e&&("function"===typeof e.write&&(this._write=e.write),"function"===typeof e.writev&&(this._writev=e.writev),"function"===typeof e.destroy&&(this._destroy=e.destroy),"function"===typeof e.final&&(this._final=e.final)),c.call(this)}function w(e,t){var r=new Error("write after end");e.emit("error",r),n.nextTick(t,r)}function M(e,t,r,i){var a=!0,s=!1;return null===r?s=new TypeError("May not write null values to stream"):"string"===typeof r||void 0===r||t.objectMode||(s=new TypeError("Invalid non-string/buffer chunk")),s&&(e.emit("error",s),n.nextTick(i,s),a=!1),a}function _(e,t,r){return e.objectMode||!1===e.decodeStrings||"string"!==typeof t||(t=u.from(t,r)),t}function S(e,t,r,i,n,a){if(!r){var s=_(t,i,n);i!==s&&(r=!0,n="buffer",i=s)}var o=t.objectMode?1:i.length;t.length+=o;var h=t.length<t.highWaterMark;if(h||(t.needDrain=!0),t.writing||t.corked){var l=t.lastBufferedRequest;t.lastBufferedRequest={chunk:i,encoding:n,isBuf:r,callback:a,next:null},l?l.next=t.lastBufferedRequest:t.bufferedRequest=t.lastBufferedRequest,t.bufferedRequestCount+=1}else k(e,t,!1,o,i,n,a);return h}function k(e,t,r,i,n,a,s){t.writelen=i,t.writecb=s,t.writing=!0,t.sync=!0,r?e._writev(n,t.onwrite):e._write(n,a,t.onwrite),t.sync=!1}function A(e,t,r,i,a){--t.pendingcb,r?(n.nextTick(a,i),n.nextTick(F,e,t),e._writableState.errorEmitted=!0,e.emit("error",i)):(a(i),e._writableState.errorEmitted=!0,e.emit("error",i),F(e,t))}function x(e){e.writing=!1,e.writecb=null,e.length-=e.writelen,e.writelen=0}function C(e,t){var r=e._writableState,i=r.sync,n=r.writecb;if(x(r),t)A(e,r,i,t,n);else{var a=I(r);a||r.corked||r.bufferProcessing||!r.bufferedRequest||R(e,r),i?o(E,e,r,a,n):E(e,r,a,n)}}function E(e,t,r,i){r||T(e,t),t.pendingcb--,i(),F(e,t)}function T(e,t){0===t.length&&t.needDrain&&(t.needDrain=!1,e.emit("drain"))}function R(e,t){t.bufferProcessing=!0;var r=t.bufferedRequest;if(e._writev&&r&&r.next){var i=t.bufferedRequestCount,n=new Array(i),s=t.corkedRequestsFree;s.entry=r;var o=0,h=!0;while(r)n[o]=r,r.isBuf||(h=!1),r=r.next,o+=1;n.allBuffers=h,k(e,t,!0,t.length,n,"",s.finish),t.pendingcb++,t.lastBufferedRequest=null,s.next?(t.corkedRequestsFree=s.next,s.next=null):t.corkedRequestsFree=new a(t),t.bufferedRequestCount=0}else{while(r){var l=r.chunk,c=r.encoding,u=r.callback,f=t.objectMode?1:l.length;if(k(e,t,!1,f,l,c,u),r=r.next,t.bufferedRequestCount--,t.writing)break}null===r&&(t.lastBufferedRequest=null)}t.bufferedRequest=r,t.bufferProcessing=!1}function I(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function P(e,t){e._final((function(r){t.pendingcb--,r&&e.emit("error",r),t.prefinished=!0,e.emit("prefinish"),F(e,t)}))}function O(e,t){t.prefinished||t.finalCalled||("function"===typeof e._final?(t.pendingcb++,t.finalCalled=!0,n.nextTick(P,e,t)):(t.prefinished=!0,e.emit("prefinish")))}function F(e,t){var r=I(t);return r&&(O(e,t),0===t.pendingcb&&(t.finished=!0,e.emit("finish"))),r}function L(e,t,r){t.ending=!0,F(e,t),r&&(t.finished?n.nextTick(r):e.once("finish",r)),t.ended=!0,e.writable=!1}function D(e,t,r){var i=e.entry;e.entry=null;while(i){var n=i.callback;t.pendingcb--,n(r),i=i.next}t.corkedRequestsFree?t.corkedRequestsFree.next=e:t.corkedRequestsFree=e}h.inherits(y,c),v.prototype.getBuffer=function(){var e=this.bufferedRequest,t=[];while(e)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(v.prototype,"buffer",{get:l.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}(),"function"===typeof Symbol&&Symbol.hasInstance&&"function"===typeof Function.prototype[Symbol.hasInstance]?(m=Function.prototype[Symbol.hasInstance],Object.defineProperty(y,Symbol.hasInstance,{value:function(e){return!!m.call(this,e)||this===y&&(e&&e._writableState instanceof v)}})):m=function(e){return e instanceof this},y.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},y.prototype.write=function(e,t,r){var i=this._writableState,n=!1,a=!i.objectMode&&p(e);return a&&!u.isBuffer(e)&&(e=d(e)),"function"===typeof t&&(r=t,t=null),a?t="buffer":t||(t=i.defaultEncoding),"function"!==typeof r&&(r=b),i.ended?w(this,r):(a||M(this,i,e,r))&&(i.pendingcb++,n=S(this,i,a,e,t,r)),n},y.prototype.cork=function(){var e=this._writableState;e.corked++},y.prototype.uncork=function(){var e=this._writableState;e.corked&&(e.corked--,e.writing||e.corked||e.finished||e.bufferProcessing||!e.bufferedRequest||R(this,e))},y.prototype.setDefaultEncoding=function(e){if("string"===typeof e&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(y.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),y.prototype._write=function(e,t,r){r(new Error("_write() is not implemented"))},y.prototype._writev=null,y.prototype.end=function(e,t,r){var i=this._writableState;"function"===typeof e?(r=e,e=null,t=null):"function"===typeof t&&(r=t,t=null),null!==e&&void 0!==e&&this.write(e,t),i.corked&&(i.corked=1,this.uncork()),i.ending||i.finished||L(this,i,r)},Object.defineProperty(y.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),y.prototype.destroy=g.destroy,y.prototype._undestroy=g.undestroy,y.prototype._destroy=function(e,t){this.end(),t(e)}}).call(this,r("f28c"),r("c8ba"))},dc21:function(e,t,r){"use strict";var i={},n=function(e,t){var r="1.23452384164.123412415";if(void 0!==t){if(null!==document.getElementById(r)){var i=document.getElementById(r);i.parentNode.removeChild(i)}var n=t.offsetWidth,a=t.offsetHeight;t.style.position="relative";var s=document.createElement("canvas");s.width=120,s.height=120;var o=s.getContext("2d");o.rotate(-20*Math.PI/180),o.fillStyle="rgba(0, 0, 0, 0.20)",o.textAlign="left",o.textBaseline="Middle",o.fillText(e,0,4*s.height/5);var h=document.createElement("div");return h.id=r,h.style.pointerEvents="none",h.style.top="0px",h.style.left="0px",h.style.position="absolute",h.style.zIndex="100000",h.style.width=n+"px",h.style.height=a+"px",h.style.background="url("+s.toDataURL("image/png")+") left top repeat",t.appendChild(h),r}};i.set=function(e,t){var r=n(e,t);setInterval((function(){null===document.getElementById(r)&&(r=n(e,t))}),500),window.onresize=function(){n(e,t)}}},dd40:function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},df1b:function(e,t,r){var i=r("5ca1"),n=r("d8e8"),a=r("cb7c"),s=(r("7726").Reflect||{}).apply,o=Function.apply;i(i.S+i.F*!r("79e5")((function(){s((function(){}))})),"Reflect",{apply:function(e,t,r){var i=n(e),h=a(r);return s?s(i,t,h):o.call(i,t,h)}})},e07b:function(e,t,r){var i=r("5a76"),n=r("b5ca"),a=r("69f2"),s=r("8707").Buffer,o=r("7d2a"),h=r("9f9d"),l=r("8be6"),c=s.alloc(128),u={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function f(e,t,r){var i=d(e),n="sha512"===e||"sha384"===e?128:64;t.length>n?t=i(t):t.length<n&&(t=s.concat([t,c],n));for(var a=s.allocUnsafe(n+u[e]),o=s.allocUnsafe(n+u[e]),h=0;h<n;h++)a[h]=54^t[h],o[h]=92^t[h];var l=s.allocUnsafe(n+r+4);a.copy(l,0,0,n),this.ipad1=l,this.ipad2=a,this.opad=o,this.alg=e,this.blocksize=n,this.hash=i,this.size=u[e]}function d(e){function t(t){return a(e).update(t).digest()}function r(e){return(new n).update(e).digest()}return"rmd160"===e||"ripemd160"===e?r:"md5"===e?i:t}function p(e,t,r,i,n){o(r,i),e=l(e,h,"Password"),t=l(t,h,"Salt"),n=n||"sha1";var a=new f(n,e,t.length),c=s.allocUnsafe(i),d=s.allocUnsafe(t.length+4);t.copy(d,0,0,t.length);for(var p=0,m=u[n],g=Math.ceil(i/m),b=1;b<=g;b++){d.writeUInt32BE(b,t.length);for(var v=a.run(d,a.ipad1),y=v,w=1;w<r;w++){y=a.run(y,a.ipad2);for(var M=0;M<m;M++)v[M]^=y[M]}v.copy(c,p),p+=m}return c}f.prototype.run=function(e,t){e.copy(t,this.blocksize);var r=this.hash(t);return r.copy(this.opad,this.blocksize),this.hash(this.opad)},e.exports=p},e0b8:function(e,t,r){"use strict";var i=r("7726"),n=r("5ca1"),a=r("2aba"),s=r("dcbc"),o=r("67ab"),h=r("4a59"),l=r("f605"),c=r("d3f4"),u=r("79e5"),f=r("5cc5"),d=r("7f20"),p=r("5dbc");e.exports=function(e,t,r,m,g,b){var v=i[e],y=v,w=g?"set":"add",M=y&&y.prototype,_={},S=function(e){var t=M[e];a(M,e,"delete"==e||"has"==e?function(e){return!(b&&!c(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return b&&!c(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,r){return t.call(this,0===e?0:e,r),this})};if("function"==typeof y&&(b||M.forEach&&!u((function(){(new y).entries().next()})))){var k=new y,A=k[w](b?{}:-0,1)!=k,x=u((function(){k.has(1)})),C=f((function(e){new y(e)})),E=!b&&u((function(){var e=new y,t=5;while(t--)e[w](t,t);return!e.has(-0)}));C||(y=t((function(t,r){l(t,y,e);var i=p(new v,t,y);return void 0!=r&&h(r,g,i[w],i),i})),y.prototype=M,M.constructor=y),(x||E)&&(S("delete"),S("has"),g&&S("get")),(E||A)&&S(w),b&&M.clear&&delete M.clear}else y=m.getConstructor(t,e,g,w),s(y.prototype,r),o.NEED=!0;return d(y,e),_[e]=y,n(n.G+n.W+n.F*(y!=v),_),b||m.setStrong(y,e,g),y}},e1d30:function(e,t,r){(function(t){var i=r("3337"),n=r("37e6");e.exports=function(e){return new s(e)};var a={secp256k1:{name:"secp256k1",byteLength:32},secp224r1:{name:"p224",byteLength:28},prime256v1:{name:"p256",byteLength:32},prime192v1:{name:"p192",byteLength:24},ed25519:{name:"ed25519",byteLength:32},secp384r1:{name:"p384",byteLength:48},secp521r1:{name:"p521",byteLength:66}};function s(e){this.curveType=a[e],this.curveType||(this.curveType={name:e}),this.curve=new i.ec(this.curveType.name),this.keys=void 0}function o(e,r,i){Array.isArray(e)||(e=e.toArray());var n=new t(e);if(i&&n.length<i){var a=new t(i-n.length);a.fill(0),n=t.concat([a,n])}return r?n.toString(r):n}a.p224=a.secp224r1,a.p256=a.secp256r1=a.prime256v1,a.p192=a.secp192r1=a.prime192v1,a.p384=a.secp384r1,a.p521=a.secp521r1,s.prototype.generateKeys=function(e,t){return this.keys=this.curve.genKeyPair(),this.getPublicKey(e,t)},s.prototype.computeSecret=function(e,r,i){r=r||"utf8",t.isBuffer(e)||(e=new t(e,r));var n=this.curve.keyFromPublic(e).getPublic(),a=n.mul(this.keys.getPrivate()).getX();return o(a,i,this.curveType.byteLength)},s.prototype.getPublicKey=function(e,t){var r=this.keys.getPublic("compressed"===t,!0);return"hybrid"===t&&(r[r.length-1]%2?r[0]=7:r[0]=6),o(r,e)},s.prototype.getPrivateKey=function(e){return o(this.keys.getPrivate(),e)},s.prototype.setPublicKey=function(e,r){return r=r||"utf8",t.isBuffer(e)||(e=new t(e,r)),this.keys._importPublic(e),this},s.prototype.setPrivateKey=function(e,r){r=r||"utf8",t.isBuffer(e)||(e=new t(e,r));var i=new n(e);return i=i.toString(16),this.keys=this.curve.genKeyPair(),this.keys._importPrivate(i),this}}).call(this,r("b639").Buffer)},e372:function(e,t,r){t=e.exports=r("ad71"),t.Stream=t,t.Readable=t,t.Writable=r("dc14"),t.Duplex=r("b19a"),t.Transform=r("27bf"),t.PassThrough=r("780f")},e666:function(e,t,r){"use strict";(function(t){var i=Object.keys||function(e){var t=[];for(var r in e)t.push(r);return t};e.exports=l;var n=r("4250"),a=r("19ea");r("3fb5")(l,n);for(var s=i(a.prototype),o=0;o<s.length;o++){var h=s[o];l.prototype[h]||(l.prototype[h]=a.prototype[h])}function l(e){if(!(this instanceof l))return new l(e);n.call(this,e),a.call(this,e),this.allowHalfOpen=!0,e&&(!1===e.readable&&(this.readable=!1),!1===e.writable&&(this.writable=!1),!1===e.allowHalfOpen&&(this.allowHalfOpen=!1,this.once("end",c)))}function c(){this._writableState.ended||t.nextTick(u,this)}function u(e){e.end()}Object.defineProperty(l.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(l.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(l.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(l.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(e){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=e,this._writableState.destroyed=e)}})}).call(this,r("f28c"))},e85f:function(e){e.exports=JSON.parse('{"aes-128-ecb":{"cipher":"AES","key":128,"iv":0,"mode":"ECB","type":"block"},"aes-192-ecb":{"cipher":"AES","key":192,"iv":0,"mode":"ECB","type":"block"},"aes-256-ecb":{"cipher":"AES","key":256,"iv":0,"mode":"ECB","type":"block"},"aes-128-cbc":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes-192-cbc":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes-256-cbc":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes128":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes192":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes256":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes-128-cfb":{"cipher":"AES","key":128,"iv":16,"mode":"CFB","type":"stream"},"aes-192-cfb":{"cipher":"AES","key":192,"iv":16,"mode":"CFB","type":"stream"},"aes-256-cfb":{"cipher":"AES","key":256,"iv":16,"mode":"CFB","type":"stream"},"aes-128-cfb8":{"cipher":"AES","key":128,"iv":16,"mode":"CFB8","type":"stream"},"aes-192-cfb8":{"cipher":"AES","key":192,"iv":16,"mode":"CFB8","type":"stream"},"aes-256-cfb8":{"cipher":"AES","key":256,"iv":16,"mode":"CFB8","type":"stream"},"aes-128-cfb1":{"cipher":"AES","key":128,"iv":16,"mode":"CFB1","type":"stream"},"aes-192-cfb1":{"cipher":"AES","key":192,"iv":16,"mode":"CFB1","type":"stream"},"aes-256-cfb1":{"cipher":"AES","key":256,"iv":16,"mode":"CFB1","type":"stream"},"aes-128-ofb":{"cipher":"AES","key":128,"iv":16,"mode":"OFB","type":"stream"},"aes-192-ofb":{"cipher":"AES","key":192,"iv":16,"mode":"OFB","type":"stream"},"aes-256-ofb":{"cipher":"AES","key":256,"iv":16,"mode":"OFB","type":"stream"},"aes-128-ctr":{"cipher":"AES","key":128,"iv":16,"mode":"CTR","type":"stream"},"aes-192-ctr":{"cipher":"AES","key":192,"iv":16,"mode":"CTR","type":"stream"},"aes-256-ctr":{"cipher":"AES","key":256,"iv":16,"mode":"CTR","type":"stream"},"aes-128-gcm":{"cipher":"AES","key":128,"iv":12,"mode":"GCM","type":"auth"},"aes-192-gcm":{"cipher":"AES","key":192,"iv":12,"mode":"GCM","type":"auth"},"aes-256-gcm":{"cipher":"AES","key":256,"iv":12,"mode":"GCM","type":"auth"}}')},ea53:function(e,t,r){"use strict";var i=r("80af"),n=r("f3a3"),a=n.getNAF,s=n.getJSF,o=n.assert;function h(e,t){this.type=e,this.p=new i(t.p,16),this.red=t.prime?i.red(t.prime):i.mont(this.p),this.zero=new i(0).toRed(this.red),this.one=new i(1).toRed(this.red),this.two=new i(2).toRed(this.red),this.n=t.n&&new i(t.n,16),this.g=t.g&&this.pointFromJSON(t.g,t.gRed),this._wnafT1=new Array(4),this._wnafT2=new Array(4),this._wnafT3=new Array(4),this._wnafT4=new Array(4),this._bitLength=this.n?this.n.bitLength():0;var r=this.n&&this.p.div(this.n);!r||r.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function l(e,t){this.curve=e,this.type=t,this.precomputed=null}e.exports=h,h.prototype.point=function(){throw new Error("Not implemented")},h.prototype.validate=function(){throw new Error("Not implemented")},h.prototype._fixedNafMul=function(e,t){o(e.precomputed);var r=e._getDoubles(),i=a(t,1,this._bitLength),n=(1<<r.step+1)-(r.step%2===0?2:1);n/=3;var s,h,l=[];for(s=0;s<i.length;s+=r.step){h=0;for(var c=s+r.step-1;c>=s;c--)h=(h<<1)+i[c];l.push(h)}for(var u=this.jpoint(null,null,null),f=this.jpoint(null,null,null),d=n;d>0;d--){for(s=0;s<l.length;s++)h=l[s],h===d?f=f.mixedAdd(r.points[s]):h===-d&&(f=f.mixedAdd(r.points[s].neg()));u=u.add(f)}return u.toP()},h.prototype._wnafMul=function(e,t){var r=4,i=e._getNAFPoints(r);r=i.wnd;for(var n=i.points,s=a(t,r,this._bitLength),h=this.jpoint(null,null,null),l=s.length-1;l>=0;l--){for(var c=0;l>=0&&0===s[l];l--)c++;if(l>=0&&c++,h=h.dblp(c),l<0)break;var u=s[l];o(0!==u),h="affine"===e.type?u>0?h.mixedAdd(n[u-1>>1]):h.mixedAdd(n[-u-1>>1].neg()):u>0?h.add(n[u-1>>1]):h.add(n[-u-1>>1].neg())}return"affine"===e.type?h.toP():h},h.prototype._wnafMulAdd=function(e,t,r,i,n){var o,h,l,c=this._wnafT1,u=this._wnafT2,f=this._wnafT3,d=0;for(o=0;o<i;o++){l=t[o];var p=l._getNAFPoints(e);c[o]=p.wnd,u[o]=p.points}for(o=i-1;o>=1;o-=2){var m=o-1,g=o;if(1===c[m]&&1===c[g]){var b=[t[m],null,null,t[g]];0===t[m].y.cmp(t[g].y)?(b[1]=t[m].add(t[g]),b[2]=t[m].toJ().mixedAdd(t[g].neg())):0===t[m].y.cmp(t[g].y.redNeg())?(b[1]=t[m].toJ().mixedAdd(t[g]),b[2]=t[m].add(t[g].neg())):(b[1]=t[m].toJ().mixedAdd(t[g]),b[2]=t[m].toJ().mixedAdd(t[g].neg()));var v=[-3,-1,-5,-7,0,7,5,1,3],y=s(r[m],r[g]);for(d=Math.max(y[0].length,d),f[m]=new Array(d),f[g]=new Array(d),h=0;h<d;h++){var w=0|y[0][h],M=0|y[1][h];f[m][h]=v[3*(w+1)+(M+1)],f[g][h]=0,u[m]=b}}else f[m]=a(r[m],c[m],this._bitLength),f[g]=a(r[g],c[g],this._bitLength),d=Math.max(f[m].length,d),d=Math.max(f[g].length,d)}var _=this.jpoint(null,null,null),S=this._wnafT4;for(o=d;o>=0;o--){var k=0;while(o>=0){var A=!0;for(h=0;h<i;h++)S[h]=0|f[h][o],0!==S[h]&&(A=!1);if(!A)break;k++,o--}if(o>=0&&k++,_=_.dblp(k),o<0)break;for(h=0;h<i;h++){var x=S[h];0!==x&&(x>0?l=u[h][x-1>>1]:x<0&&(l=u[h][-x-1>>1].neg()),_="affine"===l.type?_.mixedAdd(l):_.add(l))}}for(o=0;o<i;o++)u[o]=null;return n?_:_.toP()},h.BasePoint=l,l.prototype.eq=function(){throw new Error("Not implemented")},l.prototype.validate=function(){return this.curve.validate(this)},h.prototype.decodePoint=function(e,t){e=n.toArray(e,t);var r=this.p.byteLength();if((4===e[0]||6===e[0]||7===e[0])&&e.length-1===2*r){6===e[0]?o(e[e.length-1]%2===0):7===e[0]&&o(e[e.length-1]%2===1);var i=this.point(e.slice(1,1+r),e.slice(1+r,1+2*r));return i}if((2===e[0]||3===e[0])&&e.length-1===r)return this.pointFromX(e.slice(1,1+r),3===e[0]);throw new Error("Unknown point format")},l.prototype.encodeCompressed=function(e){return this.encode(e,!0)},l.prototype._encode=function(e){var t=this.curve.p.byteLength(),r=this.getX().toArray("be",t);return e?[this.getY().isEven()?2:3].concat(r):[4].concat(r,this.getY().toArray("be",t))},l.prototype.encode=function(e,t){return n.encode(this._encode(t),e)},l.prototype.precompute=function(e){if(this.precomputed)return this;var t={doubles:null,naf:null,beta:null};return t.naf=this._getNAFPoints(8),t.doubles=this._getDoubles(4,e),t.beta=this._getBeta(),this.precomputed=t,this},l.prototype._hasDoubles=function(e){if(!this.precomputed)return!1;var t=this.precomputed.doubles;return!!t&&t.points.length>=Math.ceil((e.bitLength()+1)/t.step)},l.prototype._getDoubles=function(e,t){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var r=[this],i=this,n=0;n<t;n+=e){for(var a=0;a<e;a++)i=i.dbl();r.push(i)}return{step:e,points:r}},l.prototype._getNAFPoints=function(e){if(this.precomputed&&this.precomputed.naf)return this.precomputed.naf;for(var t=[this],r=(1<<e)-1,i=1===r?null:this.dbl(),n=1;n<r;n++)t[n]=t[n-1].add(i);return{wnd:e,points:t}},l.prototype._getBeta=function(){return null},l.prototype.dblp=function(e){for(var t=this,r=0;r<e;r++)t=t.dbl();return t}},ec30:function(e,t,r){"use strict";if(r("9e1e")){var i=r("2d00"),n=r("7726"),a=r("79e5"),s=r("5ca1"),o=r("0f88"),h=r("ed0b"),l=r("9b43"),c=r("f605"),u=r("4630"),f=r("32e9"),d=r("dcbc"),p=r("4588"),m=r("9def"),g=r("09fa"),b=r("77f1"),v=r("6a99"),y=r("69a8"),w=r("23c6"),M=r("d3f4"),_=r("4bf8"),S=r("33a4"),k=r("2aeb"),A=r("38fd"),x=r("9093").f,C=r("27ee"),E=r("ca5a"),T=r("2b4c"),R=r("0a49"),I=r("c366"),P=r("ebd6"),O=r("cadf"),F=r("84f2"),L=r("5cc5"),D=r("7a56"),N=r("36bd"),B=r("ba92"),U=r("86cc"),j=r("11e9"),q=U.f,z=j.f,H=n.RangeError,G=n.TypeError,W=n.Uint8Array,X="ArrayBuffer",V="Shared"+X,K="BYTES_PER_ELEMENT",Y="prototype",Z=Array[Y],$=h.ArrayBuffer,J=h.DataView,Q=R(0),ee=R(2),te=R(3),re=R(4),ie=R(5),ne=R(6),ae=I(!0),se=I(!1),oe=O.values,he=O.keys,le=O.entries,ce=Z.lastIndexOf,ue=Z.reduce,fe=Z.reduceRight,de=Z.join,pe=Z.sort,me=Z.slice,ge=Z.toString,be=Z.toLocaleString,ve=T("iterator"),ye=T("toStringTag"),we=E("typed_constructor"),Me=E("def_constructor"),_e=o.CONSTR,Se=o.TYPED,ke=o.VIEW,Ae="Wrong length!",xe=R(1,(function(e,t){return Ie(P(e,e[Me]),t)})),Ce=a((function(){return 1===new W(new Uint16Array([1]).buffer)[0]})),Ee=!!W&&!!W[Y].set&&a((function(){new W(1).set({})})),Te=function(e,t){var r=p(e);if(r<0||r%t)throw H("Wrong offset!");return r},Re=function(e){if(M(e)&&Se in e)return e;throw G(e+" is not a typed array!")},Ie=function(e,t){if(!M(e)||!(we in e))throw G("It is not a typed array constructor!");return new e(t)},Pe=function(e,t){return Oe(P(e,e[Me]),t)},Oe=function(e,t){var r=0,i=t.length,n=Ie(e,i);while(i>r)n[r]=t[r++];return n},Fe=function(e,t,r){q(e,t,{get:function(){return this._d[r]}})},Le=function(e){var t,r,i,n,a,s,o=_(e),h=arguments.length,c=h>1?arguments[1]:void 0,u=void 0!==c,f=C(o);if(void 0!=f&&!S(f)){for(s=f.call(o),i=[],t=0;!(a=s.next()).done;t++)i.push(a.value);o=i}for(u&&h>2&&(c=l(c,arguments[2],2)),t=0,r=m(o.length),n=Ie(this,r);r>t;t++)n[t]=u?c(o[t],t):o[t];return n},De=function(){var e=0,t=arguments.length,r=Ie(this,t);while(t>e)r[e]=arguments[e++];return r},Ne=!!W&&a((function(){be.call(new W(1))})),Be=function(){return be.apply(Ne?me.call(Re(this)):Re(this),arguments)},Ue={copyWithin:function(e,t){return B.call(Re(this),e,t,arguments.length>2?arguments[2]:void 0)},every:function(e){return re(Re(this),e,arguments.length>1?arguments[1]:void 0)},fill:function(e){return N.apply(Re(this),arguments)},filter:function(e){return Pe(this,ee(Re(this),e,arguments.length>1?arguments[1]:void 0))},find:function(e){return ie(Re(this),e,arguments.length>1?arguments[1]:void 0)},findIndex:function(e){return ne(Re(this),e,arguments.length>1?arguments[1]:void 0)},forEach:function(e){Q(Re(this),e,arguments.length>1?arguments[1]:void 0)},indexOf:function(e){return se(Re(this),e,arguments.length>1?arguments[1]:void 0)},includes:function(e){return ae(Re(this),e,arguments.length>1?arguments[1]:void 0)},join:function(e){return de.apply(Re(this),arguments)},lastIndexOf:function(e){return ce.apply(Re(this),arguments)},map:function(e){return xe(Re(this),e,arguments.length>1?arguments[1]:void 0)},reduce:function(e){return ue.apply(Re(this),arguments)},reduceRight:function(e){return fe.apply(Re(this),arguments)},reverse:function(){var e,t=this,r=Re(t).length,i=Math.floor(r/2),n=0;while(n<i)e=t[n],t[n++]=t[--r],t[r]=e;return t},some:function(e){return te(Re(this),e,arguments.length>1?arguments[1]:void 0)},sort:function(e){return pe.call(Re(this),e)},subarray:function(e,t){var r=Re(this),i=r.length,n=b(e,i);return new(P(r,r[Me]))(r.buffer,r.byteOffset+n*r.BYTES_PER_ELEMENT,m((void 0===t?i:b(t,i))-n))}},je=function(e,t){return Pe(this,me.call(Re(this),e,t))},qe=function(e){Re(this);var t=Te(arguments[1],1),r=this.length,i=_(e),n=m(i.length),a=0;if(n+t>r)throw H(Ae);while(a<n)this[t+a]=i[a++]},ze={entries:function(){return le.call(Re(this))},keys:function(){return he.call(Re(this))},values:function(){return oe.call(Re(this))}},He=function(e,t){return M(e)&&e[Se]&&"symbol"!=typeof t&&t in e&&String(+t)==String(t)},Ge=function(e,t){return He(e,t=v(t,!0))?u(2,e[t]):z(e,t)},We=function(e,t,r){return!(He(e,t=v(t,!0))&&M(r)&&y(r,"value"))||y(r,"get")||y(r,"set")||r.configurable||y(r,"writable")&&!r.writable||y(r,"enumerable")&&!r.enumerable?q(e,t,r):(e[t]=r.value,e)};_e||(j.f=Ge,U.f=We),s(s.S+s.F*!_e,"Object",{getOwnPropertyDescriptor:Ge,defineProperty:We}),a((function(){ge.call({})}))&&(ge=be=function(){return de.call(this)});var Xe=d({},Ue);d(Xe,ze),f(Xe,ve,ze.values),d(Xe,{slice:je,set:qe,constructor:function(){},toString:ge,toLocaleString:Be}),Fe(Xe,"buffer","b"),Fe(Xe,"byteOffset","o"),Fe(Xe,"byteLength","l"),Fe(Xe,"length","e"),q(Xe,ye,{get:function(){return this[Se]}}),e.exports=function(e,t,r,h){h=!!h;var l=e+(h?"Clamped":"")+"Array",u="get"+e,d="set"+e,p=n[l],b=p||{},v=p&&A(p),y=!p||!o.ABV,_={},S=p&&p[Y],C=function(e,r){var i=e._d;return i.v[u](r*t+i.o,Ce)},E=function(e,r,i){var n=e._d;h&&(i=(i=Math.round(i))<0?0:i>255?255:255&i),n.v[d](r*t+n.o,i,Ce)},T=function(e,t){q(e,t,{get:function(){return C(this,t)},set:function(e){return E(this,t,e)},enumerable:!0})};y?(p=r((function(e,r,i,n){c(e,p,l,"_d");var a,s,o,h,u=0,d=0;if(M(r)){if(!(r instanceof $||(h=w(r))==X||h==V))return Se in r?Oe(p,r):Le.call(p,r);a=r,d=Te(i,t);var b=r.byteLength;if(void 0===n){if(b%t)throw H(Ae);if(s=b-d,s<0)throw H(Ae)}else if(s=m(n)*t,s+d>b)throw H(Ae);o=s/t}else o=g(r),s=o*t,a=new $(s);f(e,"_d",{b:a,o:d,l:s,e:o,v:new J(a)});while(u<o)T(e,u++)})),S=p[Y]=k(Xe),f(S,"constructor",p)):a((function(){p(1)}))&&a((function(){new p(-1)}))&&L((function(e){new p,new p(null),new p(1.5),new p(e)}),!0)||(p=r((function(e,r,i,n){var a;return c(e,p,l),M(r)?r instanceof $||(a=w(r))==X||a==V?void 0!==n?new b(r,Te(i,t),n):void 0!==i?new b(r,Te(i,t)):new b(r):Se in r?Oe(p,r):Le.call(p,r):new b(g(r))})),Q(v!==Function.prototype?x(b).concat(x(v)):x(b),(function(e){e in p||f(p,e,b[e])})),p[Y]=S,i||(S.constructor=p));var R=S[ve],I=!!R&&("values"==R.name||void 0==R.name),P=ze.values;f(p,we,!0),f(S,Se,l),f(S,ke,!0),f(S,Me,p),(h?new p(1)[ye]==l:ye in S)||q(S,ye,{get:function(){return l}}),_[l]=p,s(s.G+s.W+s.F*(p!=b),_),s(s.S,l,{BYTES_PER_ELEMENT:t}),s(s.S+s.F*a((function(){b.of.call(p,1)})),l,{from:Le,of:De}),K in S||f(S,K,t),s(s.P,l,Ue),D(l),s(s.P+s.F*Ee,l,{set:qe}),s(s.P+s.F*!I,l,ze),i||S.toString==ge||(S.toString=ge),s(s.P+s.F*a((function(){new p(1).slice()})),l,{slice:je}),s(s.P+s.F*(a((function(){return[1,2].toLocaleString()!=new p([1,2]).toLocaleString()}))||!a((function(){S.toLocaleString.call([1,2])}))),l,{toLocaleString:Be}),F[l]=I?R:P,i||I||f(S,ve,P)}}else e.exports=function(){}},ed0b:function(e,t,r){"use strict";var i=r("7726"),n=r("9e1e"),a=r("2d00"),s=r("0f88"),o=r("32e9"),h=r("dcbc"),l=r("79e5"),c=r("f605"),u=r("4588"),f=r("9def"),d=r("09fa"),p=r("9093").f,m=r("86cc").f,g=r("36bd"),b=r("7f20"),v="ArrayBuffer",y="DataView",w="prototype",M="Wrong length!",_="Wrong index!",S=i[v],k=i[y],A=i.Math,x=i.RangeError,C=i.Infinity,E=S,T=A.abs,R=A.pow,I=A.floor,P=A.log,O=A.LN2,F="buffer",L="byteLength",D="byteOffset",N=n?"_b":F,B=n?"_l":L,U=n?"_o":D;function j(e,t,r){var i,n,a,s=new Array(r),o=8*r-t-1,h=(1<<o)-1,l=h>>1,c=23===t?R(2,-24)-R(2,-77):0,u=0,f=e<0||0===e&&1/e<0?1:0;for(e=T(e),e!=e||e===C?(n=e!=e?1:0,i=h):(i=I(P(e)/O),e*(a=R(2,-i))<1&&(i--,a*=2),e+=i+l>=1?c/a:c*R(2,1-l),e*a>=2&&(i++,a/=2),i+l>=h?(n=0,i=h):i+l>=1?(n=(e*a-1)*R(2,t),i+=l):(n=e*R(2,l-1)*R(2,t),i=0));t>=8;s[u++]=255&n,n/=256,t-=8);for(i=i<<t|n,o+=t;o>0;s[u++]=255&i,i/=256,o-=8);return s[--u]|=128*f,s}function q(e,t,r){var i,n=8*r-t-1,a=(1<<n)-1,s=a>>1,o=n-7,h=r-1,l=e[h--],c=127&l;for(l>>=7;o>0;c=256*c+e[h],h--,o-=8);for(i=c&(1<<-o)-1,c>>=-o,o+=t;o>0;i=256*i+e[h],h--,o-=8);if(0===c)c=1-s;else{if(c===a)return i?NaN:l?-C:C;i+=R(2,t),c-=s}return(l?-1:1)*i*R(2,c-t)}function z(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]}function H(e){return[255&e]}function G(e){return[255&e,e>>8&255]}function W(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function X(e){return j(e,52,8)}function V(e){return j(e,23,4)}function K(e,t,r){m(e[w],t,{get:function(){return this[r]}})}function Y(e,t,r,i){var n=+r,a=d(n);if(a+t>e[B])throw x(_);var s=e[N]._b,o=a+e[U],h=s.slice(o,o+t);return i?h:h.reverse()}function Z(e,t,r,i,n,a){var s=+r,o=d(s);if(o+t>e[B])throw x(_);for(var h=e[N]._b,l=o+e[U],c=i(+n),u=0;u<t;u++)h[l+u]=c[a?u:t-u-1]}if(s.ABV){if(!l((function(){S(1)}))||!l((function(){new S(-1)}))||l((function(){return new S,new S(1.5),new S(NaN),S.name!=v}))){S=function(e){return c(this,S),new E(d(e))};for(var $,J=S[w]=E[w],Q=p(E),ee=0;Q.length>ee;)($=Q[ee++])in S||o(S,$,E[$]);a||(J.constructor=S)}var te=new k(new S(2)),re=k[w].setInt8;te.setInt8(0,2147483648),te.setInt8(1,2147483649),!te.getInt8(0)&&te.getInt8(1)||h(k[w],{setInt8:function(e,t){re.call(this,e,t<<24>>24)},setUint8:function(e,t){re.call(this,e,t<<24>>24)}},!0)}else S=function(e){c(this,S,v);var t=d(e);this._b=g.call(new Array(t),0),this[B]=t},k=function(e,t,r){c(this,k,y),c(e,S,y);var i=e[B],n=u(t);if(n<0||n>i)throw x("Wrong offset!");if(r=void 0===r?i-n:f(r),n+r>i)throw x(M);this[N]=e,this[U]=n,this[B]=r},n&&(K(S,L,"_l"),K(k,F,"_b"),K(k,L,"_l"),K(k,D,"_o")),h(k[w],{getInt8:function(e){return Y(this,1,e)[0]<<24>>24},getUint8:function(e){return Y(this,1,e)[0]},getInt16:function(e){var t=Y(this,2,e,arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=Y(this,2,e,arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return z(Y(this,4,e,arguments[1]))},getUint32:function(e){return z(Y(this,4,e,arguments[1]))>>>0},getFloat32:function(e){return q(Y(this,4,e,arguments[1]),23,4)},getFloat64:function(e){return q(Y(this,8,e,arguments[1]),52,8)},setInt8:function(e,t){Z(this,1,e,H,t)},setUint8:function(e,t){Z(this,1,e,H,t)},setInt16:function(e,t){Z(this,2,e,G,t,arguments[2])},setUint16:function(e,t){Z(this,2,e,G,t,arguments[2])},setInt32:function(e,t){Z(this,4,e,W,t,arguments[2])},setUint32:function(e,t){Z(this,4,e,W,t,arguments[2])},setFloat32:function(e,t){Z(this,4,e,V,t,arguments[2])},setFloat64:function(e,t){Z(this,8,e,X,t,arguments[2])}});b(S,v),b(k,y),o(k[w],s.VIEW,!0),t[v]=S,t[y]=k},edc9:function(e,t,r){"use strict";var i=r("c3c0"),n=r("da3e");function a(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}t.BlockHash=a,a.prototype.update=function(e,t){if(e=i.toArray(e,t),this.pending?this.pending=this.pending.concat(e):this.pending=e,this.pendingTotal+=e.length,this.pending.length>=this._delta8){e=this.pending;var r=e.length%this._delta8;this.pending=e.slice(e.length-r,e.length),0===this.pending.length&&(this.pending=null),e=i.join32(e,0,e.length-r,this.endian);for(var n=0;n<e.length;n+=this._delta32)this._update(e,n,n+this._delta32)}return this},a.prototype.digest=function(e){return this.update(this._pad()),n(null===this.pending),this._digest(e)},a.prototype._pad=function(){var e=this.pendingTotal,t=this._delta8,r=t-(e+this.padLength)%t,i=new Array(r+this.padLength);i[0]=128;for(var n=1;n<r;n++)i[n]=0;if(e<<=3,"big"===this.endian){for(var a=8;a<this.padLength;a++)i[n++]=0;i[n++]=0,i[n++]=0,i[n++]=0,i[n++]=0,i[n++]=e>>>24&255,i[n++]=e>>>16&255,i[n++]=e>>>8&255,i[n++]=255&e}else for(i[n++]=255&e,i[n++]=e>>>8&255,i[n++]=e>>>16&255,i[n++]=e>>>24&255,i[n++]=0,i[n++]=0,i[n++]=0,i[n++]=0,a=8;a<this.padLength;a++)i[n++]=0;return i}},ee93:function(e,t,r){"use strict";var i=r("9d8a").codes.ERR_STREAM_PREMATURE_CLOSE;function n(e){var t=!1;return function(){if(!t){t=!0;for(var r=arguments.length,i=new Array(r),n=0;n<r;n++)i[n]=arguments[n];e.apply(this,i)}}}function a(){}function s(e){return e.setHeader&&"function"===typeof e.abort}function o(e,t,r){if("function"===typeof t)return o(e,null,t);t||(t={}),r=n(r||a);var h=t.readable||!1!==t.readable&&e.readable,l=t.writable||!1!==t.writable&&e.writable,c=function(){e.writable||f()},u=e._writableState&&e._writableState.finished,f=function(){l=!1,u=!0,h||r.call(e)},d=e._readableState&&e._readableState.endEmitted,p=function(){h=!1,d=!0,l||r.call(e)},m=function(t){r.call(e,t)},g=function(){var t;return h&&!d?(e._readableState&&e._readableState.ended||(t=new i),r.call(e,t)):l&&!u?(e._writableState&&e._writableState.ended||(t=new i),r.call(e,t)):void 0},b=function(){e.req.on("finish",f)};return s(e)?(e.on("complete",f),e.on("abort",g),e.req?b():e.on("request",b)):l&&!e._writableState&&(e.on("end",c),e.on("close",c)),e.on("end",p),e.on("finish",f),!1!==t.error&&e.on("error",m),e.on("close",g),function(){e.removeListener("complete",f),e.removeListener("abort",g),e.removeListener("request",b),e.req&&e.req.removeListener("finish",f),e.removeListener("end",c),e.removeListener("close",c),e.removeListener("finish",f),e.removeListener("end",p),e.removeListener("error",m),e.removeListener("close",g)}}e.exports=o},eed9:function(e,t,r){(function(e){var i=Object.getOwnPropertyDescriptors||function(e){for(var t=Object.keys(e),r={},i=0;i<t.length;i++)r[t[i]]=Object.getOwnPropertyDescriptor(e,t[i]);return r},n=/%[sdj%]/g;t.format=function(e){if(!_(e)){for(var t=[],r=0;r<arguments.length;r++)t.push(o(arguments[r]));return t.join(" ")}r=1;for(var i=arguments,a=i.length,s=String(e).replace(n,(function(e){if("%%"===e)return"%";if(r>=a)return e;switch(e){case"%s":return String(i[r++]);case"%d":return Number(i[r++]);case"%j":try{return JSON.stringify(i[r++])}catch(t){return"[Circular]"}default:return e}})),h=i[r];r<a;h=i[++r])y(h)||!x(h)?s+=" "+h:s+=" "+o(h);return s},t.deprecate=function(r,i){if("undefined"!==typeof e&&!0===e.noDeprecation)return r;if("undefined"===typeof e)return function(){return t.deprecate(r,i).apply(this,arguments)};var n=!1;function a(){if(!n){if(e.throwDeprecation)throw new Error(i);e.traceDeprecation?console.trace(i):console.error(i),n=!0}return r.apply(this,arguments)}return a};var a,s={};function o(e,r){var i={seen:[],stylize:l};return arguments.length>=3&&(i.depth=arguments[2]),arguments.length>=4&&(i.colors=arguments[3]),v(r)?i.showHidden=r:r&&t._extend(i,r),k(i.showHidden)&&(i.showHidden=!1),k(i.depth)&&(i.depth=2),k(i.colors)&&(i.colors=!1),k(i.customInspect)&&(i.customInspect=!0),i.colors&&(i.stylize=h),u(i,e,i.depth)}function h(e,t){var r=o.styles[t];return r?"["+o.colors[r][0]+"m"+e+"["+o.colors[r][1]+"m":e}function l(e,t){return e}function c(e){var t={};return e.forEach((function(e,r){t[e]=!0})),t}function u(e,r,i){if(e.customInspect&&r&&T(r.inspect)&&r.inspect!==t.inspect&&(!r.constructor||r.constructor.prototype!==r)){var n=r.inspect(i,e);return _(n)||(n=u(e,n,i)),n}var a=f(e,r);if(a)return a;var s=Object.keys(r),o=c(s);if(e.showHidden&&(s=Object.getOwnPropertyNames(r)),E(r)&&(s.indexOf("message")>=0||s.indexOf("description")>=0))return d(r);if(0===s.length){if(T(r)){var h=r.name?": "+r.name:"";return e.stylize("[Function"+h+"]","special")}if(A(r))return e.stylize(RegExp.prototype.toString.call(r),"regexp");if(C(r))return e.stylize(Date.prototype.toString.call(r),"date");if(E(r))return d(r)}var l,v="",y=!1,w=["{","}"];if(b(r)&&(y=!0,w=["[","]"]),T(r)){var M=r.name?": "+r.name:"";v=" [Function"+M+"]"}return A(r)&&(v=" "+RegExp.prototype.toString.call(r)),C(r)&&(v=" "+Date.prototype.toUTCString.call(r)),E(r)&&(v=" "+d(r)),0!==s.length||y&&0!=r.length?i<0?A(r)?e.stylize(RegExp.prototype.toString.call(r),"regexp"):e.stylize("[Object]","special"):(e.seen.push(r),l=y?p(e,r,i,o,s):s.map((function(t){return m(e,r,i,o,t,y)})),e.seen.pop(),g(l,v,w)):w[0]+v+w[1]}function f(e,t){if(k(t))return e.stylize("undefined","undefined");if(_(t)){var r="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(r,"string")}return M(t)?e.stylize(""+t,"number"):v(t)?e.stylize(""+t,"boolean"):y(t)?e.stylize("null","null"):void 0}function d(e){return"["+Error.prototype.toString.call(e)+"]"}function p(e,t,r,i,n){for(var a=[],s=0,o=t.length;s<o;++s)L(t,String(s))?a.push(m(e,t,r,i,String(s),!0)):a.push("");return n.forEach((function(n){n.match(/^\d+$/)||a.push(m(e,t,r,i,n,!0))})),a}function m(e,t,r,i,n,a){var s,o,h;if(h=Object.getOwnPropertyDescriptor(t,n)||{value:t[n]},h.get?o=h.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):h.set&&(o=e.stylize("[Setter]","special")),L(i,n)||(s="["+n+"]"),o||(e.seen.indexOf(h.value)<0?(o=y(r)?u(e,h.value,null):u(e,h.value,r-1),o.indexOf("\n")>-1&&(o=a?o.split("\n").map((function(e){return" "+e})).join("\n").substr(2):"\n"+o.split("\n").map((function(e){return" "+e})).join("\n"))):o=e.stylize("[Circular]","special")),k(s)){if(a&&n.match(/^\d+$/))return o;s=JSON.stringify(""+n),s.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(s=s.substr(1,s.length-2),s=e.stylize(s,"name")):(s=s.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),s=e.stylize(s,"string"))}return s+": "+o}function g(e,t,r){var i=e.reduce((function(e,t){return t.indexOf("\n")>=0&&0,e+t.replace(/\u001b\[\d\d?m/g,"").length+1}),0);return i>60?r[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+r[1]:r[0]+t+" "+e.join(", ")+" "+r[1]}function b(e){return Array.isArray(e)}function v(e){return"boolean"===typeof e}function y(e){return null===e}function w(e){return null==e}function M(e){return"number"===typeof e}function _(e){return"string"===typeof e}function S(e){return"symbol"===typeof e}function k(e){return void 0===e}function A(e){return x(e)&&"[object RegExp]"===I(e)}function x(e){return"object"===typeof e&&null!==e}function C(e){return x(e)&&"[object Date]"===I(e)}function E(e){return x(e)&&("[object Error]"===I(e)||e instanceof Error)}function T(e){return"function"===typeof e}function R(e){return null===e||"boolean"===typeof e||"number"===typeof e||"string"===typeof e||"symbol"===typeof e||"undefined"===typeof e}function I(e){return Object.prototype.toString.call(e)}function P(e){return e<10?"0"+e.toString(10):e.toString(10)}t.debuglog=function(r){if(k(a)&&(a=Object({NODE_ENV:"production",BASE_URL:""}).NODE_DEBUG||""),r=r.toUpperCase(),!s[r])if(new RegExp("\\b"+r+"\\b","i").test(a)){var i=e.pid;s[r]=function(){var e=t.format.apply(t,arguments);console.error("%s %d: %s",r,i,e)}}else s[r]=function(){};return s[r]},t.inspect=o,o.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},o.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},t.isArray=b,t.isBoolean=v,t.isNull=y,t.isNullOrUndefined=w,t.isNumber=M,t.isString=_,t.isSymbol=S,t.isUndefined=k,t.isRegExp=A,t.isObject=x,t.isDate=C,t.isError=E,t.isFunction=T,t.isPrimitive=R,t.isBuffer=r("8ffd");var O=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function F(){var e=new Date,t=[P(e.getHours()),P(e.getMinutes()),P(e.getSeconds())].join(":");return[e.getDate(),O[e.getMonth()],t].join(" ")}function L(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.log=function(){console.log("%s - %s",F(),t.format.apply(t,arguments))},t.inherits=r("15f0"),t._extend=function(e,t){if(!t||!x(t))return e;var r=Object.keys(t),i=r.length;while(i--)e[r[i]]=t[r[i]];return e};var D="undefined"!==typeof Symbol?Symbol("util.promisify.custom"):void 0;function N(e,t){if(!e){var r=new Error("Promise was rejected with a falsy value");r.reason=e,e=r}return t(e)}function B(t){if("function"!==typeof t)throw new TypeError('The "original" argument must be of type Function');function r(){for(var r=[],i=0;i<arguments.length;i++)r.push(arguments[i]);var n=r.pop();if("function"!==typeof n)throw new TypeError("The last argument must be of type Function");var a=this,s=function(){return n.apply(a,arguments)};t.apply(this,r).then((function(t){e.nextTick(s,null,t)}),(function(t){e.nextTick(N,t,s)}))}return Object.setPrototypeOf(r,Object.getPrototypeOf(t)),Object.defineProperties(r,i(t)),r}t.promisify=function(e){if("function"!==typeof e)throw new TypeError('The "original" argument must be of type Function');if(D&&e[D]){var t=e[D];if("function"!==typeof t)throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(t,D,{value:t,enumerable:!1,writable:!1,configurable:!0}),t}function t(){for(var t,r,i=new Promise((function(e,i){t=e,r=i})),n=[],a=0;a<arguments.length;a++)n.push(arguments[a]);n.push((function(e,i){e?r(e):t(i)}));try{e.apply(this,n)}catch(s){r(s)}return i}return Object.setPrototypeOf(t,Object.getPrototypeOf(e)),D&&Object.defineProperty(t,D,{value:t,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(t,i(e))},t.promisify.custom=D,t.callbackify=B}).call(this,r("f28c"))},ef3a:function(e,t,r){"use strict";const i=r("343e"),n=r("20f6"),a=r("3fb5"),s=t;function o(e,t){this.name=e,this.body=t,this.decoders={},this.encoders={}}s.define=function(e,t){return new o(e,t)},o.prototype._createNamed=function(e){const t=this.name;function r(e){this._initNamed(e,t)}return a(r,e),r.prototype._initNamed=function(t,r){e.call(this,t,r)},new r(this)},o.prototype._getDecoder=function(e){return e=e||"der",this.decoders.hasOwnProperty(e)||(this.decoders[e]=this._createNamed(n[e])),this.decoders[e]},o.prototype.decode=function(e,t,r){return this._getDecoder(t).decode(e,r)},o.prototype._getEncoder=function(e){return e=e||"der",this.encoders.hasOwnProperty(e)||(this.encoders[e]=this._createNamed(i[e])),this.encoders[e]},o.prototype.encode=function(e,t,r){return this._getEncoder(t).encode(e,r)}},f0c1:function(e,t,r){"use strict";var i=r("d8e8"),n=r("d3f4"),a=r("31f4"),s=[].slice,o={},h=function(e,t,r){if(!(t in o)){for(var i=[],n=0;n<t;n++)i[n]="a["+n+"]";o[t]=Function("F,a","return new F("+i.join(",")+")")}return o[t](e,r)};e.exports=Function.bind||function(e){var t=i(this),r=s.call(arguments,1),o=function(){var i=r.concat(s.call(arguments));return this instanceof o?h(t,i.length,i):a(t,i,e)};return n(t.prototype)&&(o.prototype=t.prototype),o}},f12a:function(e,t,r){e.exports=r("faa1").EventEmitter},f1c8:function(e,t,r){"use strict";e.exports=c;var i=r("d113").codes,n=i.ERR_METHOD_NOT_IMPLEMENTED,a=i.ERR_MULTIPLE_CALLBACK,s=i.ERR_TRANSFORM_ALREADY_TRANSFORMING,o=i.ERR_TRANSFORM_WITH_LENGTH_0,h=r("5e7d");function l(e,t){var r=this._transformState;r.transforming=!1;var i=r.writecb;if(null===i)return this.emit("error",new a);r.writechunk=null,r.writecb=null,null!=t&&this.push(t),i(e);var n=this._readableState;n.reading=!1,(n.needReadable||n.length<n.highWaterMark)&&this._read(n.highWaterMark)}function c(e){if(!(this instanceof c))return new c(e);h.call(this,e),this._transformState={afterTransform:l.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,e&&("function"===typeof e.transform&&(this._transform=e.transform),"function"===typeof e.flush&&(this._flush=e.flush)),this.on("prefinish",u)}function u(){var e=this;"function"!==typeof this._flush||this._readableState.destroyed?f(this,null,null):this._flush((function(t,r){f(e,t,r)}))}function f(e,t,r){if(t)return e.emit("error",t);if(null!=r&&e.push(r),e._writableState.length)throw new o;if(e._transformState.transforming)throw new s;return e.push(null)}r("3fb5")(c,h),c.prototype.push=function(e,t){return this._transformState.needTransform=!1,h.prototype.push.call(this,e,t)},c.prototype._transform=function(e,t,r){r(new n("_transform()"))},c.prototype._write=function(e,t,r){var i=this._transformState;if(i.writecb=r,i.writechunk=e,i.writeencoding=t,!i.transforming){var n=this._readableState;(i.needTransform||n.needReadable||n.length<n.highWaterMark)&&this._read(n.highWaterMark)}},c.prototype._read=function(e){var t=this._transformState;null===t.writechunk||t.transforming?t.needTransform=!0:(t.transforming=!0,this._transform(t.writechunk,t.writeencoding,t.afterTransform))},c.prototype._destroy=function(e,t){h.prototype._destroy.call(this,e,(function(e){t(e)}))}},f3a3:function(e,t,r){"use strict";var i=t,n=r("80af"),a=r("da3e"),s=r("7658");function o(e,t,r){var i=new Array(Math.max(e.bitLength(),r)+1);i.fill(0);for(var n=1<<t+1,a=e.clone(),s=0;s<i.length;s++){var o,h=a.andln(n-1);a.isOdd()?(o=h>(n>>1)-1?(n>>1)-h:h,a.isubn(o)):o=0,i[s]=o,a.iushrn(1)}return i}function h(e,t){var r=[[],[]];e=e.clone(),t=t.clone();var i,n=0,a=0;while(e.cmpn(-n)>0||t.cmpn(-a)>0){var s,o,h=e.andln(3)+n&3,l=t.andln(3)+a&3;3===h&&(h=-1),3===l&&(l=-1),0===(1&h)?s=0:(i=e.andln(7)+n&7,s=3!==i&&5!==i||2!==l?h:-h),r[0].push(s),0===(1&l)?o=0:(i=t.andln(7)+a&7,o=3!==i&&5!==i||2!==h?l:-l),r[1].push(o),2*n===s+1&&(n=1-n),2*a===o+1&&(a=1-a),e.iushrn(1),t.iushrn(1)}return r}function l(e,t,r){var i="_"+t;e.prototype[t]=function(){return void 0!==this[i]?this[i]:this[i]=r.call(this)}}function c(e){return"string"===typeof e?i.toArray(e,"hex"):e}function u(e){return new n(e,"hex","le")}i.assert=a,i.toArray=s.toArray,i.zero2=s.zero2,i.toHex=s.toHex,i.encode=s.encode,i.getNAF=o,i.getJSF=h,i.cachedProperty=l,i.parseBytes=c,i.intFromLE=u},f400:function(e,t,r){"use strict";var i=r("c26b"),n=r("b39a"),a="Map";e.exports=r("e0b8")(a,(function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}}),{get:function(e){var t=i.getEntry(n(this,a),e);return t&&t.v},set:function(e,t){return i.def(n(this,a),0===e?0:e,t)}},i,!0)},f460:function(e,t,r){var i=r("98e6"),n=r("8707").Buffer;function a(e){var t=n.allocUnsafe(4);return t.writeUInt32BE(e,0),t}e.exports=function(e,t){var r,s=n.alloc(0),o=0;while(s.length<t)r=a(o++),s=n.concat([s,i("sha1").update(e).update(r).digest()]);return s.slice(0,t)}},f576:function(e,t,r){"use strict";var i=r("3fb5"),n=r("93e6"),a=r("8707").Buffer,s=new Array(16);function o(){n.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function h(e,t){return e<<t|e>>>32-t}function l(e,t,r,i,n,a,s){return h(e+(t&r|~t&i)+n+a|0,s)+t|0}function c(e,t,r,i,n,a,s){return h(e+(t&i|r&~i)+n+a|0,s)+t|0}function u(e,t,r,i,n,a,s){return h(e+(t^r^i)+n+a|0,s)+t|0}function f(e,t,r,i,n,a,s){return h(e+(r^(t|~i))+n+a|0,s)+t|0}i(o,n),o.prototype._update=function(){for(var e=s,t=0;t<16;++t)e[t]=this._block.readInt32LE(4*t);var r=this._a,i=this._b,n=this._c,a=this._d;r=l(r,i,n,a,e[0],3614090360,7),a=l(a,r,i,n,e[1],3905402710,12),n=l(n,a,r,i,e[2],606105819,17),i=l(i,n,a,r,e[3],3250441966,22),r=l(r,i,n,a,e[4],4118548399,7),a=l(a,r,i,n,e[5],1200080426,12),n=l(n,a,r,i,e[6],2821735955,17),i=l(i,n,a,r,e[7],4249261313,22),r=l(r,i,n,a,e[8],1770035416,7),a=l(a,r,i,n,e[9],2336552879,12),n=l(n,a,r,i,e[10],4294925233,17),i=l(i,n,a,r,e[11],2304563134,22),r=l(r,i,n,a,e[12],1804603682,7),a=l(a,r,i,n,e[13],4254626195,12),n=l(n,a,r,i,e[14],2792965006,17),i=l(i,n,a,r,e[15],1236535329,22),r=c(r,i,n,a,e[1],4129170786,5),a=c(a,r,i,n,e[6],3225465664,9),n=c(n,a,r,i,e[11],643717713,14),i=c(i,n,a,r,e[0],3921069994,20),r=c(r,i,n,a,e[5],3593408605,5),a=c(a,r,i,n,e[10],38016083,9),n=c(n,a,r,i,e[15],3634488961,14),i=c(i,n,a,r,e[4],3889429448,20),r=c(r,i,n,a,e[9],568446438,5),a=c(a,r,i,n,e[14],3275163606,9),n=c(n,a,r,i,e[3],4107603335,14),i=c(i,n,a,r,e[8],1163531501,20),r=c(r,i,n,a,e[13],2850285829,5),a=c(a,r,i,n,e[2],4243563512,9),n=c(n,a,r,i,e[7],1735328473,14),i=c(i,n,a,r,e[12],2368359562,20),r=u(r,i,n,a,e[5],4294588738,4),a=u(a,r,i,n,e[8],2272392833,11),n=u(n,a,r,i,e[11],1839030562,16),i=u(i,n,a,r,e[14],4259657740,23),r=u(r,i,n,a,e[1],2763975236,4),a=u(a,r,i,n,e[4],1272893353,11),n=u(n,a,r,i,e[7],4139469664,16),i=u(i,n,a,r,e[10],3200236656,23),r=u(r,i,n,a,e[13],681279174,4),a=u(a,r,i,n,e[0],3936430074,11),n=u(n,a,r,i,e[3],3572445317,16),i=u(i,n,a,r,e[6],76029189,23),r=u(r,i,n,a,e[9],3654602809,4),a=u(a,r,i,n,e[12],3873151461,11),n=u(n,a,r,i,e[15],530742520,16),i=u(i,n,a,r,e[2],3299628645,23),r=f(r,i,n,a,e[0],4096336452,6),a=f(a,r,i,n,e[7],1126891415,10),n=f(n,a,r,i,e[14],2878612391,15),i=f(i,n,a,r,e[5],4237533241,21),r=f(r,i,n,a,e[12],1700485571,6),a=f(a,r,i,n,e[3],2399980690,10),n=f(n,a,r,i,e[10],4293915773,15),i=f(i,n,a,r,e[1],2240044497,21),r=f(r,i,n,a,e[8],1873313359,6),a=f(a,r,i,n,e[15],4264355552,10),n=f(n,a,r,i,e[6],2734768916,15),i=f(i,n,a,r,e[13],1309151649,21),r=f(r,i,n,a,e[4],4149444226,6),a=f(a,r,i,n,e[11],3174756917,10),n=f(n,a,r,i,e[2],718787259,15),i=f(i,n,a,r,e[9],3951481745,21),this._a=this._a+r|0,this._b=this._b+i|0,this._c=this._c+n|0,this._d=this._d+a|0},o.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var e=a.allocUnsafe(16);return e.writeInt32LE(this._a,0),e.writeInt32LE(this._b,4),e.writeInt32LE(this._c,8),e.writeInt32LE(this._d,12),e},e.exports=o},f83c:function(e,t){e.exports=function(){throw new Error("Readable.from is not available in the browser")}},faa1:function(e,t,r){"use strict";var i,n="object"===typeof Reflect?Reflect:null,a=n&&"function"===typeof n.apply?n.apply:function(e,t,r){return Function.prototype.apply.call(e,t,r)};function s(e){console&&console.warn&&console.warn(e)}i=n&&"function"===typeof n.ownKeys?n.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var o=Number.isNaN||function(e){return e!==e};function h(){h.init.call(this)}e.exports=h,e.exports.once=w,h.EventEmitter=h,h.prototype._events=void 0,h.prototype._eventsCount=0,h.prototype._maxListeners=void 0;var l=10;function c(e){if("function"!==typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function u(e){return void 0===e._maxListeners?h.defaultMaxListeners:e._maxListeners}function f(e,t,r,i){var n,a,o;if(c(r),a=e._events,void 0===a?(a=e._events=Object.create(null),e._eventsCount=0):(void 0!==a.newListener&&(e.emit("newListener",t,r.listener?r.listener:r),a=e._events),o=a[t]),void 0===o)o=a[t]=r,++e._eventsCount;else if("function"===typeof o?o=a[t]=i?[r,o]:[o,r]:i?o.unshift(r):o.push(r),n=u(e),n>0&&o.length>n&&!o.warned){o.warned=!0;var h=new Error("Possible EventEmitter memory leak detected. "+o.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");h.name="MaxListenersExceededWarning",h.emitter=e,h.type=t,h.count=o.length,s(h)}return e}function d(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function p(e,t,r){var i={fired:!1,wrapFn:void 0,target:e,type:t,listener:r},n=d.bind(i);return n.listener=r,i.wrapFn=n,n}function m(e,t,r){var i=e._events;if(void 0===i)return[];var n=i[t];return void 0===n?[]:"function"===typeof n?r?[n.listener||n]:[n]:r?y(n):b(n,n.length)}function g(e){var t=this._events;if(void 0!==t){var r=t[e];if("function"===typeof r)return 1;if(void 0!==r)return r.length}return 0}function b(e,t){for(var r=new Array(t),i=0;i<t;++i)r[i]=e[i];return r}function v(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}function y(e){for(var t=new Array(e.length),r=0;r<t.length;++r)t[r]=e[r].listener||e[r];return t}function w(e,t){return new Promise((function(r,i){function n(r){e.removeListener(t,a),i(r)}function a(){"function"===typeof e.removeListener&&e.removeListener("error",n),r([].slice.call(arguments))}_(e,t,a,{once:!0}),"error"!==t&&M(e,n,{once:!0})}))}function M(e,t,r){"function"===typeof e.on&&_(e,"error",t,r)}function _(e,t,r,i){if("function"===typeof e.on)i.once?e.once(t,r):e.on(t,r);else{if("function"!==typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function n(a){i.once&&e.removeEventListener(t,n),r(a)}))}}Object.defineProperty(h,"defaultMaxListeners",{enumerable:!0,get:function(){return l},set:function(e){if("number"!==typeof e||e<0||o(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");l=e}}),h.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},h.prototype.setMaxListeners=function(e){if("number"!==typeof e||e<0||o(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},h.prototype.getMaxListeners=function(){return u(this)},h.prototype.emit=function(e){for(var t=[],r=1;r<arguments.length;r++)t.push(arguments[r]);var i="error"===e,n=this._events;if(void 0!==n)i=i&&void 0===n.error;else if(!i)return!1;if(i){var s;if(t.length>0&&(s=t[0]),s instanceof Error)throw s;var o=new Error("Unhandled error."+(s?" ("+s.message+")":""));throw o.context=s,o}var h=n[e];if(void 0===h)return!1;if("function"===typeof h)a(h,this,t);else{var l=h.length,c=b(h,l);for(r=0;r<l;++r)a(c[r],this,t)}return!0},h.prototype.addListener=function(e,t){return f(this,e,t,!1)},h.prototype.on=h.prototype.addListener,h.prototype.prependListener=function(e,t){return f(this,e,t,!0)},h.prototype.once=function(e,t){return c(t),this.on(e,p(this,e,t)),this},h.prototype.prependOnceListener=function(e,t){return c(t),this.prependListener(e,p(this,e,t)),this},h.prototype.removeListener=function(e,t){var r,i,n,a,s;if(c(t),i=this._events,void 0===i)return this;if(r=i[e],void 0===r)return this;if(r===t||r.listener===t)0===--this._eventsCount?this._events=Object.create(null):(delete i[e],i.removeListener&&this.emit("removeListener",e,r.listener||t));else if("function"!==typeof r){for(n=-1,a=r.length-1;a>=0;a--)if(r[a]===t||r[a].listener===t){s=r[a].listener,n=a;break}if(n<0)return this;0===n?r.shift():v(r,n),1===r.length&&(i[e]=r[0]),void 0!==i.removeListener&&this.emit("removeListener",e,s||t)}return this},h.prototype.off=h.prototype.removeListener,h.prototype.removeAllListeners=function(e){var t,r,i;if(r=this._events,void 0===r)return this;if(void 0===r.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==r[e]&&(0===--this._eventsCount?this._events=Object.create(null):delete r[e]),this;if(0===arguments.length){var n,a=Object.keys(r);for(i=0;i<a.length;++i)n=a[i],"removeListener"!==n&&this.removeAllListeners(n);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(t=r[e],"function"===typeof t)this.removeListener(e,t);else if(void 0!==t)for(i=t.length-1;i>=0;i--)this.removeListener(e,t[i]);return this},h.prototype.listeners=function(e){return m(this,e,!0)},h.prototype.rawListeners=function(e){return m(this,e,!1)},h.listenerCount=function(e,t){return"function"===typeof e.listenerCount?e.listenerCount(t):g.call(e,t)},h.prototype.listenerCount=g,h.prototype.eventNames=function(){return this._eventsCount>0?i(this._events):[]}},fbd5:function(e,t,r){"use strict";var i;function n(e){var t=!1;return function(){t||(t=!0,e.apply(void 0,arguments))}}var a=r("9d8a").codes,s=a.ERR_MISSING_ARGS,o=a.ERR_STREAM_DESTROYED;function h(e){if(e)throw e}function l(e){return e.setHeader&&"function"===typeof e.abort}function c(e,t,a,s){s=n(s);var h=!1;e.on("close",(function(){h=!0})),void 0===i&&(i=r("ee93")),i(e,{readable:t,writable:a},(function(e){if(e)return s(e);h=!0,s()}));var c=!1;return function(t){if(!h&&!c)return c=!0,l(e)?e.abort():"function"===typeof e.destroy?e.destroy():void s(t||new o("pipe"))}}function u(e){e()}function f(e,t){return e.pipe(t)}function d(e){return e.length?"function"!==typeof e[e.length-1]?h:e.pop():h}function p(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var i,n=d(t);if(Array.isArray(t[0])&&(t=t[0]),t.length<2)throw new s("streams");var a=t.map((function(e,r){var s=r<t.length-1,o=r>0;return c(e,s,o,(function(e){i||(i=e),e&&a.forEach(u),s||(a.forEach(u),n(i))}))}));return t.reduce(f)}e.exports=p},fda6:function(e,t,r){var i=r("8947"),n=r("4228"),a=r("e85f");function s(){return Object.keys(a)}t.createCipher=t.Cipher=i.createCipher,t.createCipheriv=t.Cipheriv=i.createCipheriv,t.createDecipher=t.Decipher=n.createDecipher,t.createDecipheriv=t.Decipheriv=n.createDecipheriv,t.listCiphers=t.getCiphers=s},fdac:function(e,t,r){var i;function n(e){this.rand=e}if(e.exports=function(e){return i||(i=new n(null)),i.generate(e)},e.exports.Rand=n,n.prototype.generate=function(e){return this._rand(e)},n.prototype._rand=function(e){if(this.rand.getBytes)return this.rand.getBytes(e);for(var t=new Uint8Array(e),r=0;r<t.length;r++)t[r]=this.rand.getByte();return t},"object"===typeof self)self.crypto&&self.crypto.getRandomValues?n.prototype._rand=function(e){var t=new Uint8Array(e);return self.crypto.getRandomValues(t),t}:self.msCrypto&&self.msCrypto.getRandomValues?n.prototype._rand=function(e){var t=new Uint8Array(e);return self.msCrypto.getRandomValues(t),t}:"object"===typeof window&&(n.prototype._rand=function(){throw new Error("Not implemented yet")});else try{var a=r(15);if("function"!==typeof a.randomBytes)throw new Error("Not supported");n.prototype._rand=function(e){return a.randomBytes(e)}}catch(s){}}}]);
  6. //# sourceMappingURL=chunk-78adc46a.49feed3c.js.map