@loaders.gl/parquet 3.3.0-alpha.8 → 3.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/dist/dist.min.js +19 -19
  2. package/dist/dist.min.js.map +3 -3
  3. package/dist/es5/index.js +3 -3
  4. package/dist/es5/index.js.map +1 -1
  5. package/dist/es5/lib/convert-schema-deep.ts.disabled +910 -0
  6. package/dist/es5/lib/parse-parquet.js +49 -25
  7. package/dist/es5/lib/parse-parquet.js.map +1 -1
  8. package/dist/es5/parquet-loader.js +3 -2
  9. package/dist/es5/parquet-loader.js.map +1 -1
  10. package/dist/es5/parquet-wasm-loader.js +1 -1
  11. package/dist/es5/parquet-wasm-loader.js.map +1 -1
  12. package/dist/es5/parquet-wasm-writer.js +1 -1
  13. package/dist/es5/parquet-wasm-writer.js.map +1 -1
  14. package/dist/es5/parquet-writer.js +1 -1
  15. package/dist/es5/parquet-writer.js.map +1 -1
  16. package/dist/es5/parquetjs/compression.js +15 -5
  17. package/dist/es5/parquetjs/compression.js.map +1 -1
  18. package/dist/es5/parquetjs/encoder/{writer.js → parquet-encoder.js} +70 -158
  19. package/dist/es5/parquetjs/encoder/parquet-encoder.js.map +1 -0
  20. package/dist/es5/parquetjs/parser/parquet-reader.js +553 -222
  21. package/dist/es5/parquetjs/parser/parquet-reader.js.map +1 -1
  22. package/dist/es5/parquetjs/schema/declare.js +3 -1
  23. package/dist/es5/parquetjs/schema/declare.js.map +1 -1
  24. package/dist/es5/parquetjs/schema/shred.js +39 -33
  25. package/dist/es5/parquetjs/schema/shred.js.map +1 -1
  26. package/dist/es5/parquetjs/schema/types.js.map +1 -1
  27. package/dist/es5/parquetjs/utils/file-utils.js +2 -3
  28. package/dist/es5/parquetjs/utils/file-utils.js.map +1 -1
  29. package/dist/esm/index.js +1 -1
  30. package/dist/esm/index.js.map +1 -1
  31. package/dist/esm/lib/convert-schema-deep.ts.disabled +910 -0
  32. package/dist/esm/lib/parse-parquet.js +6 -12
  33. package/dist/esm/lib/parse-parquet.js.map +1 -1
  34. package/dist/esm/parquet-loader.js +3 -2
  35. package/dist/esm/parquet-loader.js.map +1 -1
  36. package/dist/esm/parquet-wasm-loader.js +1 -1
  37. package/dist/esm/parquet-wasm-loader.js.map +1 -1
  38. package/dist/esm/parquet-wasm-writer.js +1 -1
  39. package/dist/esm/parquet-wasm-writer.js.map +1 -1
  40. package/dist/esm/parquet-writer.js +1 -1
  41. package/dist/esm/parquet-writer.js.map +1 -1
  42. package/dist/esm/parquetjs/compression.js +10 -1
  43. package/dist/esm/parquetjs/compression.js.map +1 -1
  44. package/dist/esm/parquetjs/encoder/{writer.js → parquet-encoder.js} +7 -37
  45. package/dist/esm/parquetjs/encoder/parquet-encoder.js.map +1 -0
  46. package/dist/esm/parquetjs/parser/parquet-reader.js +158 -72
  47. package/dist/esm/parquetjs/parser/parquet-reader.js.map +1 -1
  48. package/dist/esm/parquetjs/schema/declare.js +1 -0
  49. package/dist/esm/parquetjs/schema/declare.js.map +1 -1
  50. package/dist/esm/parquetjs/schema/shred.js +42 -34
  51. package/dist/esm/parquetjs/schema/shred.js.map +1 -1
  52. package/dist/esm/parquetjs/schema/types.js.map +1 -1
  53. package/dist/esm/parquetjs/utils/file-utils.js +1 -1
  54. package/dist/esm/parquetjs/utils/file-utils.js.map +1 -1
  55. package/dist/index.d.ts +1 -1
  56. package/dist/index.d.ts.map +1 -1
  57. package/dist/index.js +3 -4
  58. package/dist/lib/parse-parquet.d.ts +2 -2
  59. package/dist/lib/parse-parquet.d.ts.map +1 -1
  60. package/dist/lib/parse-parquet.js +24 -12
  61. package/dist/parquet-loader.d.ts +1 -0
  62. package/dist/parquet-loader.d.ts.map +1 -1
  63. package/dist/parquet-loader.js +2 -1
  64. package/dist/parquet-worker.js +17 -17
  65. package/dist/parquet-worker.js.map +3 -3
  66. package/dist/parquetjs/compression.d.ts.map +1 -1
  67. package/dist/parquetjs/compression.js +16 -5
  68. package/dist/parquetjs/encoder/{writer.d.ts → parquet-encoder.d.ts} +10 -19
  69. package/dist/parquetjs/encoder/parquet-encoder.d.ts.map +1 -0
  70. package/dist/parquetjs/encoder/{writer.js → parquet-encoder.js} +39 -37
  71. package/dist/parquetjs/parser/parquet-reader.d.ts +47 -57
  72. package/dist/parquetjs/parser/parquet-reader.d.ts.map +1 -1
  73. package/dist/parquetjs/parser/parquet-reader.js +168 -102
  74. package/dist/parquetjs/schema/declare.d.ts +14 -7
  75. package/dist/parquetjs/schema/declare.d.ts.map +1 -1
  76. package/dist/parquetjs/schema/declare.js +2 -0
  77. package/dist/parquetjs/schema/shred.d.ts +115 -0
  78. package/dist/parquetjs/schema/shred.d.ts.map +1 -1
  79. package/dist/parquetjs/schema/shred.js +161 -43
  80. package/dist/parquetjs/schema/types.d.ts +2 -2
  81. package/dist/parquetjs/schema/types.d.ts.map +1 -1
  82. package/dist/parquetjs/utils/file-utils.d.ts +3 -4
  83. package/dist/parquetjs/utils/file-utils.d.ts.map +1 -1
  84. package/dist/parquetjs/utils/file-utils.js +2 -5
  85. package/package.json +7 -5
  86. package/src/index.ts +2 -2
  87. package/src/lib/convert-schema-deep.ts.disabled +910 -0
  88. package/src/lib/parse-parquet.ts +25 -12
  89. package/src/parquet-loader.ts +3 -1
  90. package/src/parquetjs/compression.ts +14 -1
  91. package/src/parquetjs/encoder/{writer.ts → parquet-encoder.ts} +22 -28
  92. package/src/parquetjs/parser/parquet-reader.ts +239 -122
  93. package/src/parquetjs/schema/declare.ts +17 -9
  94. package/src/parquetjs/schema/shred.ts +157 -28
  95. package/src/parquetjs/schema/types.ts +21 -27
  96. package/src/parquetjs/utils/file-utils.ts +3 -4
  97. package/dist/es5/parquetjs/encoder/writer.js.map +0 -1
  98. package/dist/es5/parquetjs/file.js +0 -94
  99. package/dist/es5/parquetjs/file.js.map +0 -1
  100. package/dist/es5/parquetjs/parser/parquet-cursor.js +0 -183
  101. package/dist/es5/parquetjs/parser/parquet-cursor.js.map +0 -1
  102. package/dist/es5/parquetjs/parser/parquet-envelope-reader.js +0 -327
  103. package/dist/es5/parquetjs/parser/parquet-envelope-reader.js.map +0 -1
  104. package/dist/es5/parquetjs/utils/buffer-utils.js +0 -19
  105. package/dist/es5/parquetjs/utils/buffer-utils.js.map +0 -1
  106. package/dist/esm/parquetjs/encoder/writer.js.map +0 -1
  107. package/dist/esm/parquetjs/file.js +0 -81
  108. package/dist/esm/parquetjs/file.js.map +0 -1
  109. package/dist/esm/parquetjs/parser/parquet-cursor.js +0 -78
  110. package/dist/esm/parquetjs/parser/parquet-cursor.js.map +0 -1
  111. package/dist/esm/parquetjs/parser/parquet-envelope-reader.js +0 -129
  112. package/dist/esm/parquetjs/parser/parquet-envelope-reader.js.map +0 -1
  113. package/dist/esm/parquetjs/utils/buffer-utils.js +0 -13
  114. package/dist/esm/parquetjs/utils/buffer-utils.js.map +0 -1
  115. package/dist/parquetjs/encoder/writer.d.ts.map +0 -1
  116. package/dist/parquetjs/file.d.ts +0 -10
  117. package/dist/parquetjs/file.d.ts.map +0 -1
  118. package/dist/parquetjs/file.js +0 -99
  119. package/dist/parquetjs/parser/parquet-cursor.d.ts +0 -36
  120. package/dist/parquetjs/parser/parquet-cursor.d.ts.map +0 -1
  121. package/dist/parquetjs/parser/parquet-cursor.js +0 -74
  122. package/dist/parquetjs/parser/parquet-envelope-reader.d.ts +0 -40
  123. package/dist/parquetjs/parser/parquet-envelope-reader.d.ts.map +0 -1
  124. package/dist/parquetjs/parser/parquet-envelope-reader.js +0 -136
  125. package/dist/parquetjs/utils/buffer-utils.d.ts +0 -10
  126. package/dist/parquetjs/utils/buffer-utils.d.ts.map +0 -1
  127. package/dist/parquetjs/utils/buffer-utils.js +0 -22
  128. package/src/parquetjs/file.ts +0 -90
  129. package/src/parquetjs/parser/parquet-cursor.ts +0 -94
  130. package/src/parquetjs/parser/parquet-envelope-reader.ts +0 -199
  131. package/src/parquetjs/utils/buffer-utils.ts +0 -18
package/dist/dist.min.js CHANGED
@@ -1,39 +1,39 @@
1
- (()=>{var wO=Object.create;var Tc=Object.defineProperty;var hO=Object.getOwnPropertyDescriptor;var bO=Object.getOwnPropertyNames;var gO=Object.getPrototypeOf,yO=Object.prototype.hasOwnProperty;var O_=t=>Tc(t,"__esModule",{value:!0});var K=(t,e)=>()=>(t&&(e=t(t=0)),e);var k=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),F_=(t,e)=>{O_(t);for(var r in e)Tc(t,r,{get:e[r],enumerable:!0})},jO=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of bO(e))!yO.call(t,n)&&n!=="default"&&Tc(t,n,{get:()=>e[n],enumerable:!(r=hO(e,n))||r.enumerable});return t},ce=t=>jO(O_(Tc(t!=null?wO(gO(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var _O,qO,vw,D_=K(()=>{_O=typeof __VERSION__!="undefined"?__VERSION__:"latest",qO={parquet:{type:"arrow-table",wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},vw={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:_O,worker:!1,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:qO}});var vO,TO,Tw,N_=K(()=>{vO=typeof __VERSION__!="undefined"?__VERSION__:"latest",TO={parquet:{type:"object-row-table",url:void 0}},Tw={name:"Apache Parquet",id:"parquet",module:"parquet",version:vO,worker:!0,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:TO}});var hs,P_,R_,$a,kw,kc=K(()=>{hs="PAR1",P_="PARE",R_=1,$a="INT32",kw="RLE"});var bs,H_=K(()=>{(function(u){u[u.BOOLEAN=0]="BOOLEAN",u[u.INT32=1]="INT32",u[u.INT64=2]="INT64",u[u.INT96=3]="INT96",u[u.FLOAT=4]="FLOAT",u[u.DOUBLE=5]="DOUBLE",u[u.BYTE_ARRAY=6]="BYTE_ARRAY",u[u.FIXED_LEN_BYTE_ARRAY=7]="FIXED_LEN_BYTE_ARRAY"})(bs||(bs={}))});var Bc,U_=K(()=>{(function(F){F[F.UTF8=0]="UTF8",F[F.MAP=1]="MAP",F[F.MAP_KEY_VALUE=2]="MAP_KEY_VALUE",F[F.LIST=3]="LIST",F[F.ENUM=4]="ENUM",F[F.DECIMAL=5]="DECIMAL",F[F.DATE=6]="DATE",F[F.TIME_MILLIS=7]="TIME_MILLIS",F[F.TIME_MICROS=8]="TIME_MICROS",F[F.TIMESTAMP_MILLIS=9]="TIMESTAMP_MILLIS",F[F.TIMESTAMP_MICROS=10]="TIMESTAMP_MICROS",F[F.UINT_8=11]="UINT_8",F[F.UINT_16=12]="UINT_16",F[F.UINT_32=13]="UINT_32",F[F.UINT_64=14]="UINT_64",F[F.INT_8=15]="INT_8",F[F.INT_16=16]="INT_16",F[F.INT_32=17]="INT_32",F[F.INT_64=18]="INT_64",F[F.JSON=19]="JSON",F[F.BSON=20]="BSON",F[F.INTERVAL=21]="INTERVAL"})(Bc||(Bc={}))});var Ic,M_=K(()=>{(function(n){n[n.REQUIRED=0]="REQUIRED",n[n.OPTIONAL=1]="OPTIONAL",n[n.REPEATED=2]="REPEATED"})(Ic||(Ic={}))});var _f,z_=K(()=>{(function(u){u[u.PLAIN=0]="PLAIN",u[u.PLAIN_DICTIONARY=2]="PLAIN_DICTIONARY",u[u.RLE=3]="RLE",u[u.BIT_PACKED=4]="BIT_PACKED",u[u.DELTA_BINARY_PACKED=5]="DELTA_BINARY_PACKED",u[u.DELTA_LENGTH_BYTE_ARRAY=6]="DELTA_LENGTH_BYTE_ARRAY",u[u.DELTA_BYTE_ARRAY=7]="DELTA_BYTE_ARRAY",u[u.RLE_DICTIONARY=8]="RLE_DICTIONARY"})(_f||(_f={}))});var xc,L_=K(()=>{(function(u){u[u.UNCOMPRESSED=0]="UNCOMPRESSED",u[u.SNAPPY=1]="SNAPPY",u[u.GZIP=2]="GZIP",u[u.LZO=3]="LZO",u[u.BROTLI=4]="BROTLI",u[u.LZ4=5]="LZ4",u[u.ZSTD=6]="ZSTD",u[u.LZ4_RAW=7]="LZ4_RAW"})(xc||(xc={}))});var Sc,V_=K(()=>{(function(i){i[i.DATA_PAGE=0]="DATA_PAGE",i[i.INDEX_PAGE=1]="INDEX_PAGE",i[i.DICTIONARY_PAGE=2]="DICTIONARY_PAGE",i[i.DATA_PAGE_V2=3]="DATA_PAGE_V2"})(Sc||(Sc={}))});var C_,W_=K(()=>{(function(n){n[n.UNORDERED=0]="UNORDERED",n[n.ASCENDING=1]="ASCENDING",n[n.DESCENDING=2]="DESCENDING"})(C_||(C_={}))});var Ar=k((V6,Y_)=>{var Bw=4294967296,K_=[];for(gs=0;gs<256;gs++)K_[gs]=(gs>15?"":"0")+gs.toString(16);var gs,el=Y_.exports=function(t,e){t instanceof Buffer?(this.buffer=t,this.offset=e||0):Object.prototype.toString.call(t)=="[object Uint8Array]"?(this.buffer=new Buffer(t),this.offset=e||0):(this.buffer=this.buffer||new Buffer(8),this.offset=0,this.setValue.apply(this,arguments))};el.MAX_INT=Math.pow(2,53);el.MIN_INT=-Math.pow(2,53);el.prototype={constructor:el,_2scomp:function(){for(var t=this.buffer,e=this.offset,r=1,n=e+7;n>=e;n--){var i=(t[n]^255)+r;t[n]=i&255,r=i>>8}},setValue:function(t,e){var r=!1;if(arguments.length==1)if(typeof t=="number"){if(r=t<0,t=Math.abs(t),e=t%Bw,t=t/Bw,t>Bw)throw new RangeError(t+" is outside Int64 range");t=t|0}else if(typeof t=="string")t=(t+"").replace(/^0x/,""),e=t.substr(-8),t=t.length>8?t.substr(0,t.length-8):"",t=parseInt(t,16),e=parseInt(e,16);else throw new Error(t+" must be a Number or String");for(var n=this.buffer,i=this.offset,o=7;o>=0;o--)n[i+o]=e&255,e=o==4?t:e>>>8;r&&this._2scomp()},toNumber:function(t){for(var e=this.buffer,r=this.offset,n=e[r]&128,i=0,o=1,f=7,s=1;f>=0;f--,s*=256){var u=e[r+f];n&&(u=(u^255)+o,o=u>>8,u=u&255),i+=u*s}return!t&&i>=el.MAX_INT?n?-1/0:1/0:n?-i:i},valueOf:function(){return this.toNumber(!1)},toString:function(t){return this.valueOf().toString(t||10)},toOctetString:function(t){for(var e=new Array(8),r=this.buffer,n=this.offset,i=0;i<8;i++)e[i]=K_[r[n+i]];return e.join(t||"")},toBuffer:function(t){if(t&&this.offset===0)return this.buffer;var e=new Buffer(8);return this.buffer.copy(e,0,this.offset,this.offset+8),e},copy:function(t,e){this.buffer.copy(t,e||0,this.offset,this.offset+8)},compare:function(t){if((this.buffer[this.offset]&128)!=(t.buffer[t.offset]&128))return t.buffer[t.offset]-this.buffer[this.offset];for(var e=0;e<8;e++)if(this.buffer[this.offset+e]!==t.buffer[t.offset+e])return this.buffer[this.offset+e]-t.buffer[t.offset+e];return 0},equals:function(t){return this.compare(t)===0},inspect:function(){return"[Int64 value:"+this+" octets:"+this.toOctetString(" ")+"]"}}});var Z_=k((C6,G_)=>{G_.exports=function(e){return e&&typeof e=="object"&&typeof e.copy=="function"&&typeof e.fill=="function"&&typeof e.readUInt8=="function"}});var J_=k((W6,Iw)=>{typeof Object.create=="function"?Iw.exports=function(e,r){e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:Iw.exports=function(e,r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e}});var On=k($e=>{var Q_=Object.getOwnPropertyDescriptors||function(e){for(var r=Object.keys(e),n={},i=0;i<r.length;i++)n[r[i]]=Object.getOwnPropertyDescriptor(e,r[i]);return n},kO=/%[sdj%]/g;$e.format=function(t){if(!Fc(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(yo(arguments[r]));return e.join(" ")}for(var r=1,n=arguments,i=n.length,o=String(t).replace(kO,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch{return"[Circular]"}default:return s}}),f=n[r];r<i;f=n[++r])Oc(f)||!ys(f)?o+=" "+f:o+=" "+yo(f);return o};$e.deprecate=function(t,e){if(typeof process!="undefined"&&process.noDeprecation===!0)return t;if(typeof process=="undefined")return function(){return $e.deprecate(t,e).apply(this,arguments)};var r=!1;function n(){if(!r){if(process.throwDeprecation)throw new Error(e);process.traceDeprecation?console.trace(e):console.error(e),r=!0}return t.apply(this,arguments)}return n};var Ec={},xw;$e.debuglog=function(t){if(jo(xw)&&(xw=process.env.NODE_DEBUG||""),t=t.toUpperCase(),!Ec[t])if(new RegExp("\\b"+t+"\\b","i").test(xw)){var e=process.pid;Ec[t]=function(){var r=$e.format.apply($e,arguments);console.error("%s %d: %s",t,e,r)}}else Ec[t]=function(){};return Ec[t]};function yo(t,e){var r={seen:[],stylize:IO};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),Aw(e)?r.showHidden=e:e&&$e._extend(r,e),jo(r.showHidden)&&(r.showHidden=!1),jo(r.depth)&&(r.depth=2),jo(r.colors)&&(r.colors=!1),jo(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=BO),Ac(r,t,r.depth)}$e.inspect=yo;yo.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]};yo.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function BO(t,e){var r=yo.styles[e];return r?"["+yo.colors[r][0]+"m"+t+"["+yo.colors[r][1]+"m":t}function IO(t,e){return t}function xO(t){var e={};return t.forEach(function(r,n){e[r]=!0}),e}function Ac(t,e,r){if(t.customInspect&&e&&Pc(e.inspect)&&e.inspect!==$e.inspect&&!(e.constructor&&e.constructor.prototype===e)){var n=e.inspect(r,t);return Fc(n)||(n=Ac(t,n,r)),n}var i=SO(t,e);if(i)return i;var o=Object.keys(e),f=xO(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),Nc(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return Sw(e);if(o.length===0){if(Pc(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(Dc(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(Ow(e))return t.stylize(Date.prototype.toString.call(e),"date");if(Nc(e))return Sw(e)}var u="",l=!1,c=["{","}"];if(X_(e)&&(l=!0,c=["[","]"]),Pc(e)){var w=e.name?": "+e.name:"";u=" [Function"+w+"]"}if(Dc(e)&&(u=" "+RegExp.prototype.toString.call(e)),Ow(e)&&(u=" "+Date.prototype.toUTCString.call(e)),Nc(e)&&(u=" "+Sw(e)),o.length===0&&(!l||e.length==0))return c[0]+u+c[1];if(r<0)return Dc(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special");t.seen.push(e);var p;return l?p=EO(t,e,r,f,o):p=o.map(function(b){return Ew(t,e,r,f,b,l)}),t.seen.pop(),AO(p,u,c)}function SO(t,e){if(jo(e))return t.stylize("undefined","undefined");if(Fc(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if($_(e))return t.stylize(""+e,"number");if(Aw(e))return t.stylize(""+e,"boolean");if(Oc(e))return t.stylize("null","null")}function Sw(t){return"["+Error.prototype.toString.call(t)+"]"}function EO(t,e,r,n,i){for(var o=[],f=0,s=e.length;f<s;++f)eq(e,String(f))?o.push(Ew(t,e,r,n,String(f),!0)):o.push("");return i.forEach(function(u){u.match(/^\d+$/)||o.push(Ew(t,e,r,n,u,!0))}),o}function Ew(t,e,r,n,i,o){var f,s,u;if(u=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]},u.get?u.set?s=t.stylize("[Getter/Setter]","special"):s=t.stylize("[Getter]","special"):u.set&&(s=t.stylize("[Setter]","special")),eq(n,i)||(f="["+i+"]"),s||(t.seen.indexOf(u.value)<0?(Oc(r)?s=Ac(t,u.value,null):s=Ac(t,u.value,r-1),s.indexOf(`
1
+ (()=>{var kO=Object.create;var Pc=Object.defineProperty;var IO=Object.getOwnPropertyDescriptor;var xO=Object.getOwnPropertyNames;var SO=Object.getPrototypeOf,EO=Object.prototype.hasOwnProperty;var F_=t=>Pc(t,"__esModule",{value:!0});var W=(t,e)=>()=>(t&&(e=t(t=0)),e);var B=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),D_=(t,e)=>{F_(t);for(var r in e)Pc(t,r,{get:e[r],enumerable:!0})},AO=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of xO(e))!EO.call(t,n)&&n!=="default"&&Pc(t,n,{get:()=>e[n],enumerable:!(r=IO(e,n))||r.enumerable});return t},le=t=>AO(F_(Pc(t!=null?kO(SO(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var OO,FO,Aw,P_=W(()=>{OO=typeof __VERSION__!="undefined"?__VERSION__:"latest",FO={parquet:{type:"arrow-table",wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},Aw={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:OO,worker:!1,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:FO}});var DO,PO,Ow,N_=W(()=>{DO=typeof __VERSION__!="undefined"?__VERSION__:"latest",PO={parquet:{type:"object-row-table",url:void 0,columnList:[]}},Ow={name:"Apache Parquet",id:"parquet",module:"parquet",version:DO,worker:!0,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:PO}});var Gn,NO,RO,HO,zO,Fn,R_,UO,H_=W(()=>{Gn={self:typeof self!="undefined"&&self,window:typeof window!="undefined"&&window,global:typeof global!="undefined"&&global,document:typeof document!="undefined"&&document},NO=Gn.self||Gn.window||Gn.global||{},RO=Gn.window||Gn.self||Gn.global||{},HO=Gn.global||Gn.self||Gn.window||{},zO=Gn.document||{},Fn=Boolean(typeof process!="object"||String(process)!=="[object process]"||process.browser),R_=typeof process!="undefined"&&process.version&&/v([0-9]*)/.exec(process.version),UO=R_&&parseFloat(R_[1])||0});function z_(...t){let e=t.map(o=>o instanceof ArrayBuffer?new Uint8Array(o):o),r=e.reduce((o,f)=>o+f.byteLength,0),n=new Uint8Array(r),i=0;for(let o of e)n.set(o,i),i+=o.byteLength;return n.buffer}var U_=W(()=>{});async function Fw(t){let e=[];for await(let r of t)e.push(r);return z_(...e)}var M_=W(()=>{U_()});var L_=W(()=>{});function V_(t){return t&&typeof t=="object"&&t.isBuffer}function Nc(t){return ml.toBuffer?ml.toBuffer(t):t}function Gr(t){if(V_(t))return ml.toArrayBuffer(t);if(t instanceof ArrayBuffer)return t;if(ArrayBuffer.isView(t))return t.byteOffset===0&&t.byteLength===t.buffer.byteLength?t.buffer:t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength);if(typeof t=="string"){let e=t;return new TextEncoder().encode(e).buffer}if(t&&typeof t=="object"&&t._toArrayBuffer)return t._toArrayBuffer();throw new Error("toArrayBuffer")}var C_=W(()=>{L_()});function Pi(t){return e=>new Promise((r,n)=>t(e,(i,o)=>i?n(i):r(o)))}var W_=W(()=>{});var K_=B(()=>{});function Dw(t){if(t instanceof ArrayBuffer)return{read:async(n,i)=>Buffer.from(t,n,i),close:async()=>{},size:t.byteLength};let e=t;return{read:async(r,n)=>{let i=await e.slice(r,r+n).arrayBuffer();return Buffer.from(i)},close:async()=>{},size:e.size}}var Y_=W(()=>{});var G_,Zn=W(()=>{H_();M_();C_();W_();G_=le(K_());Y_()});var Q_=B((yV,J_)=>{var Ni={},wl=4294967295,MO=9007199254740991;function Rc(t){return t=~t,t<0&&(t=(t&2147483647)+2147483648),t}function Hc(t){console.assert(t>-1&&t<=MO,"number out of range"),console.assert(Math.floor(t)===t,"number must be an integer");var e=0,r=t&4294967295,n=r<0?(t&2147483647)+2147483648:r;return t>wl&&(e=(t-n)/(wl+1)),[e,n]}function Z_(t){if(t>-1)return Hc(t);var e=Hc(-t),r=Rc(e[0]),n=Rc(e[1]);return n===wl?(r+=1,n=0):n+=1,[r,n]}function zc(t,e,r){return r&&(t&2147483648)!=0?(t=Rc(t),e=Rc(e),console.assert(t<2097152,"number too small"),-(t*(wl+1)+e+1)):(console.assert(t<2097152,"number too large"),t*(wl+1)+e)}Ni.readInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return zc(r,n,!0)};Ni.readInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return zc(n,r,!0)};Ni.readUInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return zc(r,n,!1)};Ni.readUInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return zc(n,r,!1)};Ni.writeInt64BE=function(t,e,r){r=r||0;var n=Z_(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ni.writeInt64LE=function(t,e,r){r=r||0;var n=Z_(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Ni.writeUInt64BE=function(t,e,r){r=r||0;var n=Hc(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ni.writeUInt64LE=function(t,e,r){r=r||0;var n=Hc(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};J_.exports=Ni});function X_(t,e,r){switch(t){case"BOOLEAN":return LO(e);case"INT32":return CO(e);case"INT64":return KO(e);case"INT96":return GO(e);case"FLOAT":return JO(e);case"DOUBLE":return XO(e);case"BYTE_ARRAY":return e4(e);case"FIXED_LEN_BYTE_ARRAY":return r4(e,r);default:throw new Error(`unsupported type: ${t}`)}}function $_(t,e,r,n){switch(t){case"BOOLEAN":return VO(e,r);case"INT32":return WO(e,r);case"INT64":return YO(e,r);case"INT96":return ZO(e,r);case"FLOAT":return QO(e,r);case"DOUBLE":return $O(e,r);case"BYTE_ARRAY":return t4(e,r);case"FIXED_LEN_BYTE_ARRAY":return n4(e,r,n);default:throw new Error(`unsupported type: ${t}`)}}function LO(t){let e=Buffer.alloc(Math.ceil(t.length/8));e.fill(0);for(let r=0;r<t.length;r++)t[r]&&(e[Math.floor(r/8)]|=1<<r%8);return e}function VO(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer[t.offset+Math.floor(n/8)];r.push((i&1<<n%8)>0)}return t.offset+=Math.ceil(e/8),r}function CO(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeInt32LE(t[r],r*4);return e}function WO(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readInt32LE(t.offset)),t.offset+=4;return r}function KO(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)xs.default.writeInt64LE(t[r],e,r*8);return e}function YO(t,e){let r=[];for(let n=0;n<e;n++)r.push(xs.default.readInt64LE(t.buffer,t.offset)),t.offset+=8;return r}function GO(t){let e=Buffer.alloc(12*t.length);for(let r=0;r<t.length;r++)t[r]>=0?(xs.default.writeInt64LE(t[r],e,r*12),e.writeUInt32LE(0,r*12+8)):(xs.default.writeInt64LE(~-t[r]+1,e,r*12),e.writeUInt32LE(4294967295,r*12+8));return e}function ZO(t,e){let r=[];for(let n=0;n<e;n++){let i=xs.default.readInt64LE(t.buffer,t.offset);t.buffer.readUInt32LE(t.offset+8)===4294967295?r.push(~-i+1):r.push(i),t.offset+=12}return r}function JO(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeFloatLE(t[r],r*4);return e}function QO(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readFloatLE(t.offset)),t.offset+=4;return r}function XO(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)e.writeDoubleLE(t[r],r*8);return e}function $O(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readDoubleLE(t.offset)),t.offset+=8;return r}function e4(t){let e=0;for(let i=0;i<t.length;i++)t[i]=Buffer.from(t[i]),e+=4+t[i].length;let r=Buffer.alloc(e),n=0;for(let i=0;i<t.length;i++)r.writeUInt32LE(t[i].length,n),t[i].copy(r,n+4),n+=4+t[i].length;return r}function t4(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer.readUInt32LE(t.offset);t.offset+=4,r.push(t.buffer.slice(t.offset,t.offset+i)),t.offset+=i}return r}function r4(t,e){if(!e.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let r=0;r<t.length;r++)if(t[r]=Buffer.from(t[r]),t[r].length!==e.typeLength)throw new Error(`invalid value for FIXED_LEN_BYTE_ARRAY: ${t[r]}`);return Buffer.concat(t)}function n4(t,e,r){let n=[];if(!r.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let i=0;i<e;i++)n.push(t.buffer.slice(t.offset,t.offset+r.typeLength)),t.offset+=r.typeLength;return n}var xs,eq=W(()=>{xs=le(Q_())});var iq=B((_V,nq)=>{nq.exports=rq;var tq=128,i4=127,o4=~i4,f4=Math.pow(2,31);function rq(t,e,r){e=e||[],r=r||0;for(var n=r;t>=f4;)e[r++]=t&255|tq,t/=128;for(;t&o4;)e[r++]=t&255|tq,t>>>=7;return e[r]=t|0,rq.bytes=r-n+1,e}});var sq=B((qV,fq)=>{fq.exports=Pw;var s4=128,oq=127;function Pw(t,e){var r=0,e=e||0,n=0,i=e,o,f=t.length;do{if(i>=f)throw Pw.bytes=0,new RangeError("Could not decode varint");o=t[i++],r+=n<28?(o&oq)<<n:(o&oq)*Math.pow(2,n),n+=7}while(o>=s4);return Pw.bytes=i-e,r}});var lq=B((vV,aq)=>{var a4=Math.pow(2,7),l4=Math.pow(2,14),u4=Math.pow(2,21),c4=Math.pow(2,28),p4=Math.pow(2,35),d4=Math.pow(2,42),m4=Math.pow(2,49),w4=Math.pow(2,56),h4=Math.pow(2,63);aq.exports=function(t){return t<a4?1:t<l4?2:t<u4?3:t<c4?4:t<p4?5:t<d4?6:t<m4?7:t<w4?8:t<h4?9:10}});var cq=B((TV,uq)=>{uq.exports={encode:iq(),decode:sq(),encodingLength:lq()}});function pq(t,e,r){if(!("bitWidth"in r))throw new Error("bitWidth is required");switch(t){case"BOOLEAN":case"INT32":case"INT64":e=e.map(s=>parseInt(s,10));break;default:throw new Error(`unsupported type: ${t}`)}let n=Buffer.alloc(0),i=[],o=0;for(let s=0;s<e.length;s++)o===0&&i.length%8==0&&e[s]===e[s+1]?(i.length&&(n=Buffer.concat([n,dq(i,r)]),i=[]),o=1):o>0&&e[s]===e[s-1]?o+=1:(o&&(n=Buffer.concat([n,mq(e[s-1],o,r)]),o=0),i.push(e[s]));if(o?n=Buffer.concat([n,mq(e[e.length-1],o,r)]):i.length&&(n=Buffer.concat([n,dq(i,r)])),r.disableEnvelope)return n;let f=Buffer.alloc(n.length+4);return f.writeUInt32LE(n.length,void 0),n.copy(f,4),f}function Uc(t,e,r,n){if(!("bitWidth"in n))throw new Error("bitWidth is required");n.disableEnvelope||(e.offset+=4);let i=[];for(;i.length<r;){let o=hl.default.decode(e.buffer,e.offset);if(e.offset+=hl.default.encodingLength(o),o&1){let f=(o>>1)*8;i.push(...b4(e,f,n))}else{let f=o>>1;i.push(...g4(e,f,n))}}if(i=i.slice(0,r),i.length!==r)throw new Error("invalid RLE encoding");return i}function b4(t,e,r){let n=r.bitWidth;if(e%8!=0)throw new Error("must be a multiple of 8");let i=new Array(e).fill(0);for(let o=0;o<n*e;o++)t.buffer[t.offset+Math.floor(o/8)]&1<<o%8&&(i[Math.floor(o/n)]|=1<<o%n);return t.offset+=n*(e/8),i}function g4(t,e,r){let n=r.bitWidth,i=0;for(let o=0;o<Math.ceil(n/8);o++)i<<8,i+=t.buffer[t.offset],t.offset+=1;return new Array(e).fill(i)}function dq(t,e){let r=e.bitWidth;for(let i=0;i<t.length%8;i++)t.push(0);let n=Buffer.alloc(Math.ceil(r*(t.length/8)));for(let i=0;i<r*t.length;i++)(t[Math.floor(i/r)]&1<<i%r)>0&&(n[Math.floor(i/8)]|=1<<i%8);return Buffer.concat([Buffer.from(hl.default.encode(t.length/8<<1|1)),n])}function mq(t,e,r){let n=r.bitWidth,i=Buffer.alloc(Math.ceil(n/8));for(let o=0;o<i.length;o++)i.writeUInt8(t&255,o),t>>8;return Buffer.concat([Buffer.from(hl.default.encode(e<<1)),i])}var hl,Nw=W(()=>{hl=le(cq())});function Rw(t,e,r,n){return n.bitWidth=e.buffer.slice(e.offset,e.offset+1).readInt8(0),e.offset+=1,Uc(t,e,r,{...n,disableEnvelope:!0})}function Hw(t,e,r,n){throw new Error("Encode dictionary functionality is not supported")}var wq=W(()=>{Nw()});var hq=W(()=>{});var qo,Mc=W(()=>{eq();Nw();wq();hq();qo={PLAIN:{encodeValues:X_,decodeValues:$_},RLE:{encodeValues:pq,decodeValues:Uc},PLAIN_DICTIONARY:{encodeValues:Hw,decodeValues:Rw},RLE_DICTIONARY:{encodeValues:Hw,decodeValues:Rw}}});var _r,vo=W(()=>{Zn();_r=class{constructor(e){this.compressBatches=this.compressBatches.bind(this),this.decompressBatches=this.decompressBatches.bind(this)}async preload(){}async compress(e){return await this.preload(),this.compressSync(e)}async decompress(e,r){return await this.preload(),this.decompressSync(e,r)}compressSync(e){throw new Error(`${this.name}: sync compression not supported`)}decompressSync(e,r){throw new Error(`${this.name}: sync decompression not supported`)}async*compressBatches(e){let r=await this.concatenate(e);yield this.compress(r)}async*decompressBatches(e){let r=await this.concatenate(e);yield this.decompress(r)}concatenate(e){return Fw(e)}improveError(e){return e.message.includes(this.name)||(e.message=`${this.name} ${e.message}`),e}}});var Lc,bq=W(()=>{vo();Lc=class extends _r{constructor(e){super(e);this.name="uncompressed";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return e}decompressSync(e){return e}async*compressBatches(e){return yield*e}async*decompressBatches(e){return yield*e}}});var Ri=B(qr=>{"use strict";var y4=typeof Uint8Array!="undefined"&&typeof Uint16Array!="undefined"&&typeof Int32Array!="undefined";function j4(t,e){return Object.prototype.hasOwnProperty.call(t,e)}qr.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var r=e.shift();if(!!r){if(typeof r!="object")throw new TypeError(r+"must be non-object");for(var n in r)j4(r,n)&&(t[n]=r[n])}}return t};qr.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var _4={arraySet:function(t,e,r,n,i){if(e.subarray&&t.subarray){t.set(e.subarray(r,r+n),i);return}for(var o=0;o<n;o++)t[i+o]=e[r+o]},flattenChunks:function(t){var e,r,n,i,o,f;for(n=0,e=0,r=t.length;e<r;e++)n+=t[e].length;for(f=new Uint8Array(n),i=0,e=0,r=t.length;e<r;e++)o=t[e],f.set(o,i),i+=o.length;return f}},q4={arraySet:function(t,e,r,n,i){for(var o=0;o<n;o++)t[i+o]=e[r+o]},flattenChunks:function(t){return[].concat.apply([],t)}};qr.setTyped=function(t){t?(qr.Buf8=Uint8Array,qr.Buf16=Uint16Array,qr.Buf32=Int32Array,qr.assign(qr,_4)):(qr.Buf8=Array,qr.Buf16=Array,qr.Buf32=Array,qr.assign(qr,q4))};qr.setTyped(y4)});var Uq=B(As=>{"use strict";var v4=Ri(),T4=4,gq=0,yq=1,B4=2;function Ss(t){for(var e=t.length;--e>=0;)t[e]=0}var k4=0,jq=1,I4=2,x4=3,S4=258,zw=29,bl=256,gl=bl+1+zw,Es=30,Uw=19,_q=2*gl+1,If=15,Mw=16,E4=7,Lw=256,qq=16,vq=17,Tq=18,Vw=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],Vc=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],A4=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],Bq=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],O4=512,Hi=new Array((gl+2)*2);Ss(Hi);var yl=new Array(Es*2);Ss(yl);var jl=new Array(O4);Ss(jl);var _l=new Array(S4-x4+1);Ss(_l);var Cw=new Array(zw);Ss(Cw);var Cc=new Array(Es);Ss(Cc);function Ww(t,e,r,n,i){this.static_tree=t,this.extra_bits=e,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=t&&t.length}var kq,Iq,xq;function Kw(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function Sq(t){return t<256?jl[t]:jl[256+(t>>>7)]}function ql(t,e){t.pending_buf[t.pending++]=e&255,t.pending_buf[t.pending++]=e>>>8&255}function Or(t,e,r){t.bi_valid>Mw-r?(t.bi_buf|=e<<t.bi_valid&65535,ql(t,t.bi_buf),t.bi_buf=e>>Mw-t.bi_valid,t.bi_valid+=r-Mw):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function Jn(t,e,r){Or(t,r[e*2],r[e*2+1])}function Eq(t,e){var r=0;do r|=t&1,t>>>=1,r<<=1;while(--e>0);return r>>>1}function F4(t){t.bi_valid===16?(ql(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=t.bi_buf&255,t.bi_buf>>=8,t.bi_valid-=8)}function D4(t,e){var r=e.dyn_tree,n=e.max_code,i=e.stat_desc.static_tree,o=e.stat_desc.has_stree,f=e.stat_desc.extra_bits,s=e.stat_desc.extra_base,u=e.stat_desc.max_length,l,c,w,p,g,T,L=0;for(p=0;p<=If;p++)t.bl_count[p]=0;for(r[t.heap[t.heap_max]*2+1]=0,l=t.heap_max+1;l<_q;l++)c=t.heap[l],p=r[r[c*2+1]*2+1]+1,p>u&&(p=u,L++),r[c*2+1]=p,!(c>n)&&(t.bl_count[p]++,g=0,c>=s&&(g=f[c-s]),T=r[c*2],t.opt_len+=T*(p+g),o&&(t.static_len+=T*(i[c*2+1]+g)));if(L!==0){do{for(p=u-1;t.bl_count[p]===0;)p--;t.bl_count[p]--,t.bl_count[p+1]+=2,t.bl_count[u]--,L-=2}while(L>0);for(p=u;p!==0;p--)for(c=t.bl_count[p];c!==0;)w=t.heap[--l],!(w>n)&&(r[w*2+1]!==p&&(t.opt_len+=(p-r[w*2+1])*r[w*2],r[w*2+1]=p),c--)}}function Aq(t,e,r){var n=new Array(If+1),i=0,o,f;for(o=1;o<=If;o++)n[o]=i=i+r[o-1]<<1;for(f=0;f<=e;f++){var s=t[f*2+1];s!==0&&(t[f*2]=Eq(n[s]++,s))}}function P4(){var t,e,r,n,i,o=new Array(If+1);for(r=0,n=0;n<zw-1;n++)for(Cw[n]=r,t=0;t<1<<Vw[n];t++)_l[r++]=n;for(_l[r-1]=n,i=0,n=0;n<16;n++)for(Cc[n]=i,t=0;t<1<<Vc[n];t++)jl[i++]=n;for(i>>=7;n<Es;n++)for(Cc[n]=i<<7,t=0;t<1<<Vc[n]-7;t++)jl[256+i++]=n;for(e=0;e<=If;e++)o[e]=0;for(t=0;t<=143;)Hi[t*2+1]=8,t++,o[8]++;for(;t<=255;)Hi[t*2+1]=9,t++,o[9]++;for(;t<=279;)Hi[t*2+1]=7,t++,o[7]++;for(;t<=287;)Hi[t*2+1]=8,t++,o[8]++;for(Aq(Hi,gl+1,o),t=0;t<Es;t++)yl[t*2+1]=5,yl[t*2]=Eq(t,5);kq=new Ww(Hi,Vw,bl+1,gl,If),Iq=new Ww(yl,Vc,0,Es,If),xq=new Ww(new Array(0),A4,0,Uw,E4)}function Oq(t){var e;for(e=0;e<gl;e++)t.dyn_ltree[e*2]=0;for(e=0;e<Es;e++)t.dyn_dtree[e*2]=0;for(e=0;e<Uw;e++)t.bl_tree[e*2]=0;t.dyn_ltree[Lw*2]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function Fq(t){t.bi_valid>8?ql(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function N4(t,e,r,n){Fq(t),n&&(ql(t,r),ql(t,~r)),v4.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}function Dq(t,e,r,n){var i=e*2,o=r*2;return t[i]<t[o]||t[i]===t[o]&&n[e]<=n[r]}function Yw(t,e,r){for(var n=t.heap[r],i=r<<1;i<=t.heap_len&&(i<t.heap_len&&Dq(e,t.heap[i+1],t.heap[i],t.depth)&&i++,!Dq(e,n,t.heap[i],t.depth));)t.heap[r]=t.heap[i],r=i,i<<=1;t.heap[r]=n}function Pq(t,e,r){var n,i,o=0,f,s;if(t.last_lit!==0)do n=t.pending_buf[t.d_buf+o*2]<<8|t.pending_buf[t.d_buf+o*2+1],i=t.pending_buf[t.l_buf+o],o++,n===0?Jn(t,i,e):(f=_l[i],Jn(t,f+bl+1,e),s=Vw[f],s!==0&&(i-=Cw[f],Or(t,i,s)),n--,f=Sq(n),Jn(t,f,r),s=Vc[f],s!==0&&(n-=Cc[f],Or(t,n,s)));while(o<t.last_lit);Jn(t,Lw,e)}function Gw(t,e){var r=e.dyn_tree,n=e.stat_desc.static_tree,i=e.stat_desc.has_stree,o=e.stat_desc.elems,f,s,u=-1,l;for(t.heap_len=0,t.heap_max=_q,f=0;f<o;f++)r[f*2]!==0?(t.heap[++t.heap_len]=u=f,t.depth[f]=0):r[f*2+1]=0;for(;t.heap_len<2;)l=t.heap[++t.heap_len]=u<2?++u:0,r[l*2]=1,t.depth[l]=0,t.opt_len--,i&&(t.static_len-=n[l*2+1]);for(e.max_code=u,f=t.heap_len>>1;f>=1;f--)Yw(t,r,f);l=o;do f=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Yw(t,r,1),s=t.heap[1],t.heap[--t.heap_max]=f,t.heap[--t.heap_max]=s,r[l*2]=r[f*2]+r[s*2],t.depth[l]=(t.depth[f]>=t.depth[s]?t.depth[f]:t.depth[s])+1,r[f*2+1]=r[s*2+1]=l,t.heap[1]=l++,Yw(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],D4(t,e),Aq(r,u,t.bl_count)}function Nq(t,e,r){var n,i=-1,o,f=e[0*2+1],s=0,u=7,l=4;for(f===0&&(u=138,l=3),e[(r+1)*2+1]=65535,n=0;n<=r;n++)o=f,f=e[(n+1)*2+1],!(++s<u&&o===f)&&(s<l?t.bl_tree[o*2]+=s:o!==0?(o!==i&&t.bl_tree[o*2]++,t.bl_tree[qq*2]++):s<=10?t.bl_tree[vq*2]++:t.bl_tree[Tq*2]++,s=0,i=o,f===0?(u=138,l=3):o===f?(u=6,l=3):(u=7,l=4))}function Rq(t,e,r){var n,i=-1,o,f=e[0*2+1],s=0,u=7,l=4;for(f===0&&(u=138,l=3),n=0;n<=r;n++)if(o=f,f=e[(n+1)*2+1],!(++s<u&&o===f)){if(s<l)do Jn(t,o,t.bl_tree);while(--s!=0);else o!==0?(o!==i&&(Jn(t,o,t.bl_tree),s--),Jn(t,qq,t.bl_tree),Or(t,s-3,2)):s<=10?(Jn(t,vq,t.bl_tree),Or(t,s-3,3)):(Jn(t,Tq,t.bl_tree),Or(t,s-11,7));s=0,i=o,f===0?(u=138,l=3):o===f?(u=6,l=3):(u=7,l=4)}}function R4(t){var e;for(Nq(t,t.dyn_ltree,t.l_desc.max_code),Nq(t,t.dyn_dtree,t.d_desc.max_code),Gw(t,t.bl_desc),e=Uw-1;e>=3&&t.bl_tree[Bq[e]*2+1]===0;e--);return t.opt_len+=3*(e+1)+5+5+4,e}function H4(t,e,r,n){var i;for(Or(t,e-257,5),Or(t,r-1,5),Or(t,n-4,4),i=0;i<n;i++)Or(t,t.bl_tree[Bq[i]*2+1],3);Rq(t,t.dyn_ltree,e-1),Rq(t,t.dyn_dtree,r-1)}function z4(t){var e=4093624447,r;for(r=0;r<=31;r++,e>>>=1)if(e&1&&t.dyn_ltree[r*2]!==0)return gq;if(t.dyn_ltree[9*2]!==0||t.dyn_ltree[10*2]!==0||t.dyn_ltree[13*2]!==0)return yq;for(r=32;r<bl;r++)if(t.dyn_ltree[r*2]!==0)return yq;return gq}var Hq=!1;function U4(t){Hq||(P4(),Hq=!0),t.l_desc=new Kw(t.dyn_ltree,kq),t.d_desc=new Kw(t.dyn_dtree,Iq),t.bl_desc=new Kw(t.bl_tree,xq),t.bi_buf=0,t.bi_valid=0,Oq(t)}function zq(t,e,r,n){Or(t,(k4<<1)+(n?1:0),3),N4(t,e,r,!0)}function M4(t){Or(t,jq<<1,3),Jn(t,Lw,Hi),F4(t)}function L4(t,e,r,n){var i,o,f=0;t.level>0?(t.strm.data_type===B4&&(t.strm.data_type=z4(t)),Gw(t,t.l_desc),Gw(t,t.d_desc),f=R4(t),i=t.opt_len+3+7>>>3,o=t.static_len+3+7>>>3,o<=i&&(i=o)):i=o=r+5,r+4<=i&&e!==-1?zq(t,e,r,n):t.strategy===T4||o===i?(Or(t,(jq<<1)+(n?1:0),3),Pq(t,Hi,yl)):(Or(t,(I4<<1)+(n?1:0),3),H4(t,t.l_desc.max_code+1,t.d_desc.max_code+1,f+1),Pq(t,t.dyn_ltree,t.dyn_dtree)),Oq(t),n&&Fq(t)}function V4(t,e,r){return t.pending_buf[t.d_buf+t.last_lit*2]=e>>>8&255,t.pending_buf[t.d_buf+t.last_lit*2+1]=e&255,t.pending_buf[t.l_buf+t.last_lit]=r&255,t.last_lit++,e===0?t.dyn_ltree[r*2]++:(t.matches++,e--,t.dyn_ltree[(_l[r]+bl+1)*2]++,t.dyn_dtree[Sq(e)*2]++),t.last_lit===t.lit_bufsize-1}As._tr_init=U4;As._tr_stored_block=zq;As._tr_flush_block=L4;As._tr_tally=V4;As._tr_align=M4});var Zw=B((UV,Mq)=>{"use strict";function C4(t,e,r,n){for(var i=t&65535|0,o=t>>>16&65535|0,f=0;r!==0;){f=r>2e3?2e3:r,r-=f;do i=i+e[n++]|0,o=o+i|0;while(--f);i%=65521,o%=65521}return i|o<<16|0}Mq.exports=C4});var Jw=B((MV,Lq)=>{"use strict";function W4(){for(var t,e=[],r=0;r<256;r++){t=r;for(var n=0;n<8;n++)t=t&1?3988292384^t>>>1:t>>>1;e[r]=t}return e}var K4=W4();function Y4(t,e,r,n){var i=K4,o=n+r;t^=-1;for(var f=n;f<o;f++)t=t>>>8^i[(t^e[f])&255];return t^-1}Lq.exports=Y4});var Wc=B((LV,Vq)=>{"use strict";Vq.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}});var Xq=B($n=>{"use strict";var vr=Ri(),tn=Uq(),Cq=Zw(),To=Jw(),G4=Wc(),xf=0,Z4=1,J4=3,Bo=4,Wq=5,Qn=0,Kq=1,rn=-2,Q4=-3,Qw=-5,X4=-1,$4=1,Kc=2,e2=3,t2=4,r2=0,n2=2,Yc=8,i2=9,o2=15,f2=8,s2=29,a2=256,Xw=a2+1+s2,l2=30,u2=19,c2=2*Xw+1,p2=15,We=3,ko=258,Dn=ko+We+1,d2=32,Gc=42,$w=69,Zc=73,Jc=91,Qc=103,Sf=113,vl=666,Qt=1,Tl=2,Ef=3,Os=4,m2=3;function Io(t,e){return t.msg=G4[e],e}function Yq(t){return(t<<1)-(t>4?9:0)}function xo(t){for(var e=t.length;--e>=0;)t[e]=0}function So(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),r!==0&&(vr.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,e.pending===0&&(e.pending_out=0))}function sr(t,e){tn._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,So(t.strm)}function et(t,e){t.pending_buf[t.pending++]=e}function Bl(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=e&255}function w2(t,e,r,n){var i=t.avail_in;return i>n&&(i=n),i===0?0:(t.avail_in-=i,vr.arraySet(e,t.input,t.next_in,i,r),t.state.wrap===1?t.adler=Cq(t.adler,e,i,r):t.state.wrap===2&&(t.adler=To(t.adler,e,i,r)),t.next_in+=i,t.total_in+=i,i)}function Gq(t,e){var r=t.max_chain_length,n=t.strstart,i,o,f=t.prev_length,s=t.nice_match,u=t.strstart>t.w_size-Dn?t.strstart-(t.w_size-Dn):0,l=t.window,c=t.w_mask,w=t.prev,p=t.strstart+ko,g=l[n+f-1],T=l[n+f];t.prev_length>=t.good_match&&(r>>=2),s>t.lookahead&&(s=t.lookahead);do if(i=e,!(l[i+f]!==T||l[i+f-1]!==g||l[i]!==l[n]||l[++i]!==l[n+1])){n+=2,i++;do;while(l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&n<p);if(o=ko-(p-n),n=p-ko,o>f){if(t.match_start=e,f=o,o>=s)break;g=l[n+f-1],T=l[n+f]}}while((e=w[e&c])>u&&--r!=0);return f<=t.lookahead?f:t.lookahead}function Af(t){var e=t.w_size,r,n,i,o,f;do{if(o=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Dn)){vr.arraySet(t.window,t.window,e,e,0),t.match_start-=e,t.strstart-=e,t.block_start-=e,n=t.hash_size,r=n;do i=t.head[--r],t.head[r]=i>=e?i-e:0;while(--n);n=e,r=n;do i=t.prev[--r],t.prev[r]=i>=e?i-e:0;while(--n);o+=e}if(t.strm.avail_in===0)break;if(n=w2(t.strm,t.window,t.strstart+t.lookahead,o),t.lookahead+=n,t.lookahead+t.insert>=We)for(f=t.strstart-t.insert,t.ins_h=t.window[f],t.ins_h=(t.ins_h<<t.hash_shift^t.window[f+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[f+We-1])&t.hash_mask,t.prev[f&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=f,f++,t.insert--,!(t.lookahead+t.insert<We)););}while(t.lookahead<Dn&&t.strm.avail_in!==0)}function h2(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(Af(t),t.lookahead===0&&e===xf)return Qt;if(t.lookahead===0)break}t.strstart+=t.lookahead,t.lookahead=0;var n=t.block_start+r;if((t.strstart===0||t.strstart>=n)&&(t.lookahead=t.strstart-n,t.strstart=n,sr(t,!1),t.strm.avail_out===0)||t.strstart-t.block_start>=t.w_size-Dn&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=0,e===Bo?(sr(t,!0),t.strm.avail_out===0?Ef:Os):(t.strstart>t.block_start&&(sr(t,!1),t.strm.avail_out===0),Qt)}function eh(t,e){for(var r,n;;){if(t.lookahead<Dn){if(Af(t),t.lookahead<Dn&&e===xf)return Qt;if(t.lookahead===0)break}if(r=0,t.lookahead>=We&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+We-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),r!==0&&t.strstart-r<=t.w_size-Dn&&(t.match_length=Gq(t,r)),t.match_length>=We)if(n=tn._tr_tally(t,t.strstart-t.match_start,t.match_length-We),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=We){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+We-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart;while(--t.match_length!=0);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else n=tn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(n&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=t.strstart<We-1?t.strstart:We-1,e===Bo?(sr(t,!0),t.strm.avail_out===0?Ef:Os):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Tl}function Fs(t,e){for(var r,n,i;;){if(t.lookahead<Dn){if(Af(t),t.lookahead<Dn&&e===xf)return Qt;if(t.lookahead===0)break}if(r=0,t.lookahead>=We&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+We-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=We-1,r!==0&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-Dn&&(t.match_length=Gq(t,r),t.match_length<=5&&(t.strategy===$4||t.match_length===We&&t.strstart-t.match_start>4096)&&(t.match_length=We-1)),t.prev_length>=We&&t.match_length<=t.prev_length){i=t.strstart+t.lookahead-We,n=tn._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-We),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=i&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+We-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart);while(--t.prev_length!=0);if(t.match_available=0,t.match_length=We-1,t.strstart++,n&&(sr(t,!1),t.strm.avail_out===0))return Qt}else if(t.match_available){if(n=tn._tr_tally(t,0,t.window[t.strstart-1]),n&&sr(t,!1),t.strstart++,t.lookahead--,t.strm.avail_out===0)return Qt}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(n=tn._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<We-1?t.strstart:We-1,e===Bo?(sr(t,!0),t.strm.avail_out===0?Ef:Os):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Tl}function b2(t,e){for(var r,n,i,o,f=t.window;;){if(t.lookahead<=ko){if(Af(t),t.lookahead<=ko&&e===xf)return Qt;if(t.lookahead===0)break}if(t.match_length=0,t.lookahead>=We&&t.strstart>0&&(i=t.strstart-1,n=f[i],n===f[++i]&&n===f[++i]&&n===f[++i])){o=t.strstart+ko;do;while(n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&i<o);t.match_length=ko-(o-i),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=We?(r=tn._tr_tally(t,1,t.match_length-We),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=tn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=0,e===Bo?(sr(t,!0),t.strm.avail_out===0?Ef:Os):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Tl}function g2(t,e){for(var r;;){if(t.lookahead===0&&(Af(t),t.lookahead===0)){if(e===xf)return Qt;break}if(t.match_length=0,r=tn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=0,e===Bo?(sr(t,!0),t.strm.avail_out===0?Ef:Os):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Tl}function Xn(t,e,r,n,i){this.good_length=t,this.max_lazy=e,this.nice_length=r,this.max_chain=n,this.func=i}var Ds;Ds=[new Xn(0,0,0,0,h2),new Xn(4,4,8,4,eh),new Xn(4,5,16,8,eh),new Xn(4,6,32,32,eh),new Xn(4,4,16,16,Fs),new Xn(8,16,32,32,Fs),new Xn(8,16,128,128,Fs),new Xn(8,32,128,256,Fs),new Xn(32,128,258,1024,Fs),new Xn(32,258,258,4096,Fs)];function y2(t){t.window_size=2*t.w_size,xo(t.head),t.max_lazy_match=Ds[t.level].max_lazy,t.good_match=Ds[t.level].good_length,t.nice_match=Ds[t.level].nice_length,t.max_chain_length=Ds[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=We-1,t.match_available=0,t.ins_h=0}function j2(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Yc,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new vr.Buf16(c2*2),this.dyn_dtree=new vr.Buf16((2*l2+1)*2),this.bl_tree=new vr.Buf16((2*u2+1)*2),xo(this.dyn_ltree),xo(this.dyn_dtree),xo(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new vr.Buf16(p2+1),this.heap=new vr.Buf16(2*Xw+1),xo(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new vr.Buf16(2*Xw+1),xo(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function Zq(t){var e;return!t||!t.state?Io(t,rn):(t.total_in=t.total_out=0,t.data_type=n2,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?Gc:Sf,t.adler=e.wrap===2?0:1,e.last_flush=xf,tn._tr_init(e),Qn)}function Jq(t){var e=Zq(t);return e===Qn&&y2(t.state),e}function _2(t,e){return!t||!t.state||t.state.wrap!==2?rn:(t.state.gzhead=e,Qn)}function Qq(t,e,r,n,i,o){if(!t)return rn;var f=1;if(e===X4&&(e=6),n<0?(f=0,n=-n):n>15&&(f=2,n-=16),i<1||i>i2||r!==Yc||n<8||n>15||e<0||e>9||o<0||o>t2)return Io(t,rn);n===8&&(n=9);var s=new j2;return t.state=s,s.strm=t,s.wrap=f,s.gzhead=null,s.w_bits=n,s.w_size=1<<s.w_bits,s.w_mask=s.w_size-1,s.hash_bits=i+7,s.hash_size=1<<s.hash_bits,s.hash_mask=s.hash_size-1,s.hash_shift=~~((s.hash_bits+We-1)/We),s.window=new vr.Buf8(s.w_size*2),s.head=new vr.Buf16(s.hash_size),s.prev=new vr.Buf16(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=s.lit_bufsize*4,s.pending_buf=new vr.Buf8(s.pending_buf_size),s.d_buf=1*s.lit_bufsize,s.l_buf=(1+2)*s.lit_bufsize,s.level=e,s.strategy=o,s.method=r,Jq(t)}function q2(t,e){return Qq(t,e,Yc,o2,f2,r2)}function v2(t,e){var r,n,i,o;if(!t||!t.state||e>Wq||e<0)return t?Io(t,rn):rn;if(n=t.state,!t.output||!t.input&&t.avail_in!==0||n.status===vl&&e!==Bo)return Io(t,t.avail_out===0?Qw:rn);if(n.strm=t,r=n.last_flush,n.last_flush=e,n.status===Gc)if(n.wrap===2)t.adler=0,et(n,31),et(n,139),et(n,8),n.gzhead?(et(n,(n.gzhead.text?1:0)+(n.gzhead.hcrc?2:0)+(n.gzhead.extra?4:0)+(n.gzhead.name?8:0)+(n.gzhead.comment?16:0)),et(n,n.gzhead.time&255),et(n,n.gzhead.time>>8&255),et(n,n.gzhead.time>>16&255),et(n,n.gzhead.time>>24&255),et(n,n.level===9?2:n.strategy>=Kc||n.level<2?4:0),et(n,n.gzhead.os&255),n.gzhead.extra&&n.gzhead.extra.length&&(et(n,n.gzhead.extra.length&255),et(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(t.adler=To(t.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=$w):(et(n,0),et(n,0),et(n,0),et(n,0),et(n,0),et(n,n.level===9?2:n.strategy>=Kc||n.level<2?4:0),et(n,m2),n.status=Sf);else{var f=Yc+(n.w_bits-8<<4)<<8,s=-1;n.strategy>=Kc||n.level<2?s=0:n.level<6?s=1:n.level===6?s=2:s=3,f|=s<<6,n.strstart!==0&&(f|=d2),f+=31-f%31,n.status=Sf,Bl(n,f),n.strstart!==0&&(Bl(n,t.adler>>>16),Bl(n,t.adler&65535)),t.adler=1}if(n.status===$w)if(n.gzhead.extra){for(i=n.pending;n.gzindex<(n.gzhead.extra.length&65535)&&!(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=To(t.adler,n.pending_buf,n.pending-i,i)),So(t),i=n.pending,n.pending===n.pending_buf_size));)et(n,n.gzhead.extra[n.gzindex]&255),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(t.adler=To(t.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=Zc)}else n.status=Zc;if(n.status===Zc)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=To(t.adler,n.pending_buf,n.pending-i,i)),So(t),i=n.pending,n.pending===n.pending_buf_size)){o=1;break}n.gzindex<n.gzhead.name.length?o=n.gzhead.name.charCodeAt(n.gzindex++)&255:o=0,et(n,o)}while(o!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=To(t.adler,n.pending_buf,n.pending-i,i)),o===0&&(n.gzindex=0,n.status=Jc)}else n.status=Jc;if(n.status===Jc)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=To(t.adler,n.pending_buf,n.pending-i,i)),So(t),i=n.pending,n.pending===n.pending_buf_size)){o=1;break}n.gzindex<n.gzhead.comment.length?o=n.gzhead.comment.charCodeAt(n.gzindex++)&255:o=0,et(n,o)}while(o!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=To(t.adler,n.pending_buf,n.pending-i,i)),o===0&&(n.status=Qc)}else n.status=Qc;if(n.status===Qc&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&So(t),n.pending+2<=n.pending_buf_size&&(et(n,t.adler&255),et(n,t.adler>>8&255),t.adler=0,n.status=Sf)):n.status=Sf),n.pending!==0){if(So(t),t.avail_out===0)return n.last_flush=-1,Qn}else if(t.avail_in===0&&Yq(e)<=Yq(r)&&e!==Bo)return Io(t,Qw);if(n.status===vl&&t.avail_in!==0)return Io(t,Qw);if(t.avail_in!==0||n.lookahead!==0||e!==xf&&n.status!==vl){var u=n.strategy===Kc?g2(n,e):n.strategy===e2?b2(n,e):Ds[n.level].func(n,e);if((u===Ef||u===Os)&&(n.status=vl),u===Qt||u===Ef)return t.avail_out===0&&(n.last_flush=-1),Qn;if(u===Tl&&(e===Z4?tn._tr_align(n):e!==Wq&&(tn._tr_stored_block(n,0,0,!1),e===J4&&(xo(n.head),n.lookahead===0&&(n.strstart=0,n.block_start=0,n.insert=0))),So(t),t.avail_out===0))return n.last_flush=-1,Qn}return e!==Bo?Qn:n.wrap<=0?Kq:(n.wrap===2?(et(n,t.adler&255),et(n,t.adler>>8&255),et(n,t.adler>>16&255),et(n,t.adler>>24&255),et(n,t.total_in&255),et(n,t.total_in>>8&255),et(n,t.total_in>>16&255),et(n,t.total_in>>24&255)):(Bl(n,t.adler>>>16),Bl(n,t.adler&65535)),So(t),n.wrap>0&&(n.wrap=-n.wrap),n.pending!==0?Qn:Kq)}function T2(t){var e;return!t||!t.state?rn:(e=t.state.status,e!==Gc&&e!==$w&&e!==Zc&&e!==Jc&&e!==Qc&&e!==Sf&&e!==vl?Io(t,rn):(t.state=null,e===Sf?Io(t,Q4):Qn))}function B2(t,e){var r=e.length,n,i,o,f,s,u,l,c;if(!t||!t.state||(n=t.state,f=n.wrap,f===2||f===1&&n.status!==Gc||n.lookahead))return rn;for(f===1&&(t.adler=Cq(t.adler,e,r,0)),n.wrap=0,r>=n.w_size&&(f===0&&(xo(n.head),n.strstart=0,n.block_start=0,n.insert=0),c=new vr.Buf8(n.w_size),vr.arraySet(c,e,r-n.w_size,n.w_size,0),e=c,r=n.w_size),s=t.avail_in,u=t.next_in,l=t.input,t.avail_in=r,t.next_in=0,t.input=e,Af(n);n.lookahead>=We;){i=n.strstart,o=n.lookahead-(We-1);do n.ins_h=(n.ins_h<<n.hash_shift^n.window[i+We-1])&n.hash_mask,n.prev[i&n.w_mask]=n.head[n.ins_h],n.head[n.ins_h]=i,i++;while(--o);n.strstart=i,n.lookahead=We-1,Af(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=We-1,n.match_available=0,t.next_in=u,t.input=l,t.avail_in=s,n.wrap=f,Qn}$n.deflateInit=q2;$n.deflateInit2=Qq;$n.deflateReset=Jq;$n.deflateResetKeep=Zq;$n.deflateSetHeader=_2;$n.deflate=v2;$n.deflateEnd=T2;$n.deflateSetDictionary=B2;$n.deflateInfo="pako deflate (from Nodeca project)"});var th=B(Ps=>{"use strict";var Xc=Ri(),$q=!0,ev=!0;try{String.fromCharCode.apply(null,[0])}catch{$q=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{ev=!1}var kl=new Xc.Buf8(256);for(zi=0;zi<256;zi++)kl[zi]=zi>=252?6:zi>=248?5:zi>=240?4:zi>=224?3:zi>=192?2:1;var zi;kl[254]=kl[254]=1;Ps.string2buf=function(t){var e,r,n,i,o,f=t.length,s=0;for(i=0;i<f;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<f&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),s+=r<128?1:r<2048?2:r<65536?3:4;for(e=new Xc.Buf8(s),o=0,i=0;o<s;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<f&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),r<128?e[o++]=r:r<2048?(e[o++]=192|r>>>6,e[o++]=128|r&63):r<65536?(e[o++]=224|r>>>12,e[o++]=128|r>>>6&63,e[o++]=128|r&63):(e[o++]=240|r>>>18,e[o++]=128|r>>>12&63,e[o++]=128|r>>>6&63,e[o++]=128|r&63);return e};function tv(t,e){if(e<65534&&(t.subarray&&ev||!t.subarray&&$q))return String.fromCharCode.apply(null,Xc.shrinkBuf(t,e));for(var r="",n=0;n<e;n++)r+=String.fromCharCode(t[n]);return r}Ps.buf2binstring=function(t){return tv(t,t.length)};Ps.binstring2buf=function(t){for(var e=new Xc.Buf8(t.length),r=0,n=e.length;r<n;r++)e[r]=t.charCodeAt(r);return e};Ps.buf2string=function(t,e){var r,n,i,o,f=e||t.length,s=new Array(f*2);for(n=0,r=0;r<f;){if(i=t[r++],i<128){s[n++]=i;continue}if(o=kl[i],o>4){s[n++]=65533,r+=o-1;continue}for(i&=o===2?31:o===3?15:7;o>1&&r<f;)i=i<<6|t[r++]&63,o--;if(o>1){s[n++]=65533;continue}i<65536?s[n++]=i:(i-=65536,s[n++]=55296|i>>10&1023,s[n++]=56320|i&1023)}return tv(s,n)};Ps.utf8border=function(t,e){var r;for(e=e||t.length,e>t.length&&(e=t.length),r=e-1;r>=0&&(t[r]&192)==128;)r--;return r<0||r===0?e:r+kl[t[r]]>e?r:e}});var rh=B((WV,rv)=>{"use strict";function k2(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}rv.exports=k2});var fv=B(Sl=>{"use strict";var Il=Xq(),xl=Ri(),nh=th(),ih=Wc(),I2=rh(),nv=Object.prototype.toString,x2=0,oh=4,Ns=0,iv=1,ov=2,S2=-1,E2=0,A2=8;function Of(t){if(!(this instanceof Of))return new Of(t);this.options=xl.assign({level:S2,method:A2,chunkSize:16384,windowBits:15,memLevel:8,strategy:E2,to:""},t||{});var e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new I2,this.strm.avail_out=0;var r=Il.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==Ns)throw new Error(ih[r]);if(e.header&&Il.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(typeof e.dictionary=="string"?n=nh.string2buf(e.dictionary):nv.call(e.dictionary)==="[object ArrayBuffer]"?n=new Uint8Array(e.dictionary):n=e.dictionary,r=Il.deflateSetDictionary(this.strm,n),r!==Ns)throw new Error(ih[r]);this._dict_set=!0}}Of.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i,o;if(this.ended)return!1;o=e===~~e?e:e===!0?oh:x2,typeof t=="string"?r.input=nh.string2buf(t):nv.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new xl.Buf8(n),r.next_out=0,r.avail_out=n),i=Il.deflate(r,o),i!==iv&&i!==Ns)return this.onEnd(i),this.ended=!0,!1;(r.avail_out===0||r.avail_in===0&&(o===oh||o===ov))&&(this.options.to==="string"?this.onData(nh.buf2binstring(xl.shrinkBuf(r.output,r.next_out))):this.onData(xl.shrinkBuf(r.output,r.next_out)))}while((r.avail_in>0||r.avail_out===0)&&i!==iv);return o===oh?(i=Il.deflateEnd(this.strm),this.onEnd(i),this.ended=!0,i===Ns):(o===ov&&(this.onEnd(Ns),r.avail_out=0),!0)};Of.prototype.onData=function(t){this.chunks.push(t)};Of.prototype.onEnd=function(t){t===Ns&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=xl.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function fh(t,e){var r=new Of(e);if(r.push(t,!0),r.err)throw r.msg||ih[r.err];return r.result}function O2(t,e){return e=e||{},e.raw=!0,fh(t,e)}function F2(t,e){return e=e||{},e.gzip=!0,fh(t,e)}Sl.Deflate=Of;Sl.deflate=fh;Sl.deflateRaw=O2;Sl.gzip=F2});var av=B((YV,sv)=>{"use strict";var $c=30,D2=12;sv.exports=function(e,r){var n,i,o,f,s,u,l,c,w,p,g,T,L,O,K,ne,H,z,N,F,ae,ie,de,Ze,_;n=e.state,i=e.next_in,Ze=e.input,o=i+(e.avail_in-5),f=e.next_out,_=e.output,s=f-(r-e.avail_out),u=f+(e.avail_out-257),l=n.dmax,c=n.wsize,w=n.whave,p=n.wnext,g=n.window,T=n.hold,L=n.bits,O=n.lencode,K=n.distcode,ne=(1<<n.lenbits)-1,H=(1<<n.distbits)-1;e:do{L<15&&(T+=Ze[i++]<<L,L+=8,T+=Ze[i++]<<L,L+=8),z=O[T&ne];t:for(;;){if(N=z>>>24,T>>>=N,L-=N,N=z>>>16&255,N===0)_[f++]=z&65535;else if(N&16){F=z&65535,N&=15,N&&(L<N&&(T+=Ze[i++]<<L,L+=8),F+=T&(1<<N)-1,T>>>=N,L-=N),L<15&&(T+=Ze[i++]<<L,L+=8,T+=Ze[i++]<<L,L+=8),z=K[T&H];r:for(;;){if(N=z>>>24,T>>>=N,L-=N,N=z>>>16&255,N&16){if(ae=z&65535,N&=15,L<N&&(T+=Ze[i++]<<L,L+=8,L<N&&(T+=Ze[i++]<<L,L+=8)),ae+=T&(1<<N)-1,ae>l){e.msg="invalid distance too far back",n.mode=$c;break e}if(T>>>=N,L-=N,N=f-s,ae>N){if(N=ae-N,N>w&&n.sane){e.msg="invalid distance too far back",n.mode=$c;break e}if(ie=0,de=g,p===0){if(ie+=c-N,N<F){F-=N;do _[f++]=g[ie++];while(--N);ie=f-ae,de=_}}else if(p<N){if(ie+=c+p-N,N-=p,N<F){F-=N;do _[f++]=g[ie++];while(--N);if(ie=0,p<F){N=p,F-=N;do _[f++]=g[ie++];while(--N);ie=f-ae,de=_}}}else if(ie+=p-N,N<F){F-=N;do _[f++]=g[ie++];while(--N);ie=f-ae,de=_}for(;F>2;)_[f++]=de[ie++],_[f++]=de[ie++],_[f++]=de[ie++],F-=3;F&&(_[f++]=de[ie++],F>1&&(_[f++]=de[ie++]))}else{ie=f-ae;do _[f++]=_[ie++],_[f++]=_[ie++],_[f++]=_[ie++],F-=3;while(F>2);F&&(_[f++]=_[ie++],F>1&&(_[f++]=_[ie++]))}}else if((N&64)==0){z=K[(z&65535)+(T&(1<<N)-1)];continue r}else{e.msg="invalid distance code",n.mode=$c;break e}break}}else if((N&64)==0){z=O[(z&65535)+(T&(1<<N)-1)];continue t}else if(N&32){n.mode=D2;break e}else{e.msg="invalid literal/length code",n.mode=$c;break e}break}}while(i<o&&f<u);F=L>>3,i-=F,L-=F<<3,T&=(1<<L)-1,e.next_in=i,e.next_out=f,e.avail_in=i<o?5+(o-i):5-(i-o),e.avail_out=f<u?257+(u-f):257-(f-u),n.hold=T,n.bits=L}});var wv=B((GV,mv)=>{"use strict";var lv=Ri(),Rs=15,uv=852,cv=592,pv=0,sh=1,dv=2,P2=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],N2=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],R2=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],H2=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];mv.exports=function(e,r,n,i,o,f,s,u){var l=u.bits,c=0,w=0,p=0,g=0,T=0,L=0,O=0,K=0,ne=0,H=0,z,N,F,ae,ie,de=null,Ze=0,_,Fe=new lv.Buf16(Rs+1),Ce=new lv.Buf16(Rs+1),ge=null,Je=0,te,Bt,st;for(c=0;c<=Rs;c++)Fe[c]=0;for(w=0;w<i;w++)Fe[r[n+w]]++;for(T=l,g=Rs;g>=1&&Fe[g]===0;g--);if(T>g&&(T=g),g===0)return o[f++]=1<<24|64<<16|0,o[f++]=1<<24|64<<16|0,u.bits=1,0;for(p=1;p<g&&Fe[p]===0;p++);for(T<p&&(T=p),K=1,c=1;c<=Rs;c++)if(K<<=1,K-=Fe[c],K<0)return-1;if(K>0&&(e===pv||g!==1))return-1;for(Ce[1]=0,c=1;c<Rs;c++)Ce[c+1]=Ce[c]+Fe[c];for(w=0;w<i;w++)r[n+w]!==0&&(s[Ce[r[n+w]]++]=w);if(e===pv?(de=ge=s,_=19):e===sh?(de=P2,Ze-=257,ge=N2,Je-=257,_=256):(de=R2,ge=H2,_=-1),H=0,w=0,c=p,ie=f,L=T,O=0,F=-1,ne=1<<T,ae=ne-1,e===sh&&ne>uv||e===dv&&ne>cv)return 1;for(;;){te=c-O,s[w]<_?(Bt=0,st=s[w]):s[w]>_?(Bt=ge[Je+s[w]],st=de[Ze+s[w]]):(Bt=32+64,st=0),z=1<<c-O,N=1<<L,p=N;do N-=z,o[ie+(H>>O)+N]=te<<24|Bt<<16|st|0;while(N!==0);for(z=1<<c-1;H&z;)z>>=1;if(z!==0?(H&=z-1,H+=z):H=0,w++,--Fe[c]==0){if(c===g)break;c=r[n+s[w]]}if(c>T&&(H&ae)!==F){for(O===0&&(O=T),ie+=p,L=c-O,K=1<<L;L+O<g&&(K-=Fe[L+O],!(K<=0));)L++,K<<=1;if(ne+=1<<L,e===sh&&ne>uv||e===dv&&ne>cv)return 1;F=H&ae,o[F]=T<<24|L<<16|ie-f|0}}return H!==0&&(o[ie+H]=c-O<<24|64<<16|0),u.bits=T,0}});var Jv=B(Pn=>{"use strict";var Zr=Ri(),ah=Zw(),ei=Jw(),z2=av(),El=wv(),U2=0,hv=1,bv=2,gv=4,M2=5,ep=6,Ff=0,L2=1,V2=2,nn=-2,yv=-3,lh=-4,C2=-5,jv=8,_v=1,qv=2,vv=3,Tv=4,Bv=5,kv=6,Iv=7,xv=8,Sv=9,Ev=10,tp=11,Ui=12,uh=13,Av=14,ch=15,Ov=16,Fv=17,Dv=18,Pv=19,rp=20,np=21,Nv=22,Rv=23,Hv=24,zv=25,Uv=26,ph=27,Mv=28,Lv=29,_t=30,dh=31,W2=32,K2=852,Y2=592,G2=15,Z2=G2;function Vv(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function J2(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Zr.Buf16(320),this.work=new Zr.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Cv(t){var e;return!t||!t.state?nn:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=_v,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Zr.Buf32(K2),e.distcode=e.distdyn=new Zr.Buf32(Y2),e.sane=1,e.back=-1,Ff)}function Wv(t){var e;return!t||!t.state?nn:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,Cv(t))}function Kv(t,e){var r,n;return!t||!t.state||(n=t.state,e<0?(r=0,e=-e):(r=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?nn:(n.window!==null&&n.wbits!==e&&(n.window=null),n.wrap=r,n.wbits=e,Wv(t))}function Yv(t,e){var r,n;return t?(n=new J2,t.state=n,n.window=null,r=Kv(t,e),r!==Ff&&(t.state=null),r):nn}function Q2(t){return Yv(t,Z2)}var Gv=!0,mh,wh;function X2(t){if(Gv){var e;for(mh=new Zr.Buf32(512),wh=new Zr.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(El(hv,t.lens,0,288,mh,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;El(bv,t.lens,0,32,wh,0,t.work,{bits:5}),Gv=!1}t.lencode=mh,t.lenbits=9,t.distcode=wh,t.distbits=5}function Zv(t,e,r,n){var i,o=t.state;return o.window===null&&(o.wsize=1<<o.wbits,o.wnext=0,o.whave=0,o.window=new Zr.Buf8(o.wsize)),n>=o.wsize?(Zr.arraySet(o.window,e,r-o.wsize,o.wsize,0),o.wnext=0,o.whave=o.wsize):(i=o.wsize-o.wnext,i>n&&(i=n),Zr.arraySet(o.window,e,r-n,i,o.wnext),n-=i,n?(Zr.arraySet(o.window,e,r-n,n,0),o.wnext=n,o.whave=o.wsize):(o.wnext+=i,o.wnext===o.wsize&&(o.wnext=0),o.whave<o.wsize&&(o.whave+=i))),0}function $2(t,e){var r,n,i,o,f,s,u,l,c,w,p,g,T,L,O=0,K,ne,H,z,N,F,ae,ie,de=new Zr.Buf8(4),Ze,_,Fe=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&t.avail_in!==0)return nn;r=t.state,r.mode===Ui&&(r.mode=uh),f=t.next_out,i=t.output,u=t.avail_out,o=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,w=s,p=u,ie=Ff;e:for(;;)switch(r.mode){case _v:if(r.wrap===0){r.mode=uh;break}for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(r.wrap&2&&l===35615){r.check=0,de[0]=l&255,de[1]=l>>>8&255,r.check=ei(r.check,de,2,0),l=0,c=0,r.mode=qv;break}if(r.flags=0,r.head&&(r.head.done=!1),!(r.wrap&1)||(((l&255)<<8)+(l>>8))%31){t.msg="incorrect header check",r.mode=_t;break}if((l&15)!==jv){t.msg="unknown compression method",r.mode=_t;break}if(l>>>=4,c-=4,ae=(l&15)+8,r.wbits===0)r.wbits=ae;else if(ae>r.wbits){t.msg="invalid window size",r.mode=_t;break}r.dmax=1<<ae,t.adler=r.check=1,r.mode=l&512?Ev:Ui,l=0,c=0;break;case qv:for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(r.flags=l,(r.flags&255)!==jv){t.msg="unknown compression method",r.mode=_t;break}if(r.flags&57344){t.msg="unknown header flags set",r.mode=_t;break}r.head&&(r.head.text=l>>8&1),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,r.check=ei(r.check,de,2,0)),l=0,c=0,r.mode=vv;case vv:for(;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.head&&(r.head.time=l),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,de[2]=l>>>16&255,de[3]=l>>>24&255,r.check=ei(r.check,de,4,0)),l=0,c=0,r.mode=Tv;case Tv:for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.head&&(r.head.xflags=l&255,r.head.os=l>>8),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,r.check=ei(r.check,de,2,0)),l=0,c=0,r.mode=Bv;case Bv:if(r.flags&1024){for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.length=l,r.head&&(r.head.extra_len=l),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,r.check=ei(r.check,de,2,0)),l=0,c=0}else r.head&&(r.head.extra=null);r.mode=kv;case kv:if(r.flags&1024&&(g=r.length,g>s&&(g=s),g&&(r.head&&(ae=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),Zr.arraySet(r.head.extra,n,o,g,ae)),r.flags&512&&(r.check=ei(r.check,n,g,o)),s-=g,o+=g,r.length-=g),r.length))break e;r.length=0,r.mode=Iv;case Iv:if(r.flags&2048){if(s===0)break e;g=0;do ae=n[o+g++],r.head&&ae&&r.length<65536&&(r.head.name+=String.fromCharCode(ae));while(ae&&g<s);if(r.flags&512&&(r.check=ei(r.check,n,g,o)),s-=g,o+=g,ae)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=xv;case xv:if(r.flags&4096){if(s===0)break e;g=0;do ae=n[o+g++],r.head&&ae&&r.length<65536&&(r.head.comment+=String.fromCharCode(ae));while(ae&&g<s);if(r.flags&512&&(r.check=ei(r.check,n,g,o)),s-=g,o+=g,ae)break e}else r.head&&(r.head.comment=null);r.mode=Sv;case Sv:if(r.flags&512){for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(l!==(r.check&65535)){t.msg="header crc mismatch",r.mode=_t;break}l=0,c=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=Ui;break;case Ev:for(;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}t.adler=r.check=Vv(l),l=0,c=0,r.mode=tp;case tp:if(r.havedict===0)return t.next_out=f,t.avail_out=u,t.next_in=o,t.avail_in=s,r.hold=l,r.bits=c,V2;t.adler=r.check=1,r.mode=Ui;case Ui:if(e===M2||e===ep)break e;case uh:if(r.last){l>>>=c&7,c-=c&7,r.mode=ph;break}for(;c<3;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}switch(r.last=l&1,l>>>=1,c-=1,l&3){case 0:r.mode=Av;break;case 1:if(X2(r),r.mode=rp,e===ep){l>>>=2,c-=2;break e}break;case 2:r.mode=Fv;break;case 3:t.msg="invalid block type",r.mode=_t}l>>>=2,c-=2;break;case Av:for(l>>>=c&7,c-=c&7;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if((l&65535)!=(l>>>16^65535)){t.msg="invalid stored block lengths",r.mode=_t;break}if(r.length=l&65535,l=0,c=0,r.mode=ch,e===ep)break e;case ch:r.mode=Ov;case Ov:if(g=r.length,g){if(g>s&&(g=s),g>u&&(g=u),g===0)break e;Zr.arraySet(i,n,o,g,f),s-=g,o+=g,u-=g,f+=g,r.length-=g;break}r.mode=Ui;break;case Fv:for(;c<14;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(r.nlen=(l&31)+257,l>>>=5,c-=5,r.ndist=(l&31)+1,l>>>=5,c-=5,r.ncode=(l&15)+4,l>>>=4,c-=4,r.nlen>286||r.ndist>30){t.msg="too many length or distance symbols",r.mode=_t;break}r.have=0,r.mode=Dv;case Dv:for(;r.have<r.ncode;){for(;c<3;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.lens[Fe[r.have++]]=l&7,l>>>=3,c-=3}for(;r.have<19;)r.lens[Fe[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,Ze={bits:r.lenbits},ie=El(U2,r.lens,0,19,r.lencode,0,r.work,Ze),r.lenbits=Ze.bits,ie){t.msg="invalid code lengths set",r.mode=_t;break}r.have=0,r.mode=Pv;case Pv:for(;r.have<r.nlen+r.ndist;){for(;O=r.lencode[l&(1<<r.lenbits)-1],K=O>>>24,ne=O>>>16&255,H=O&65535,!(K<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(H<16)l>>>=K,c-=K,r.lens[r.have++]=H;else{if(H===16){for(_=K+2;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(l>>>=K,c-=K,r.have===0){t.msg="invalid bit length repeat",r.mode=_t;break}ae=r.lens[r.have-1],g=3+(l&3),l>>>=2,c-=2}else if(H===17){for(_=K+3;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=K,c-=K,ae=0,g=3+(l&7),l>>>=3,c-=3}else{for(_=K+7;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=K,c-=K,ae=0,g=11+(l&127),l>>>=7,c-=7}if(r.have+g>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=_t;break}for(;g--;)r.lens[r.have++]=ae}}if(r.mode===_t)break;if(r.lens[256]===0){t.msg="invalid code -- missing end-of-block",r.mode=_t;break}if(r.lenbits=9,Ze={bits:r.lenbits},ie=El(hv,r.lens,0,r.nlen,r.lencode,0,r.work,Ze),r.lenbits=Ze.bits,ie){t.msg="invalid literal/lengths set",r.mode=_t;break}if(r.distbits=6,r.distcode=r.distdyn,Ze={bits:r.distbits},ie=El(bv,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,Ze),r.distbits=Ze.bits,ie){t.msg="invalid distances set",r.mode=_t;break}if(r.mode=rp,e===ep)break e;case rp:r.mode=np;case np:if(s>=6&&u>=258){t.next_out=f,t.avail_out=u,t.next_in=o,t.avail_in=s,r.hold=l,r.bits=c,z2(t,p),f=t.next_out,i=t.output,u=t.avail_out,o=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,r.mode===Ui&&(r.back=-1);break}for(r.back=0;O=r.lencode[l&(1<<r.lenbits)-1],K=O>>>24,ne=O>>>16&255,H=O&65535,!(K<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(ne&&(ne&240)==0){for(z=K,N=ne,F=H;O=r.lencode[F+((l&(1<<z+N)-1)>>z)],K=O>>>24,ne=O>>>16&255,H=O&65535,!(z+K<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=z,c-=z,r.back+=z}if(l>>>=K,c-=K,r.back+=K,r.length=H,ne===0){r.mode=Uv;break}if(ne&32){r.back=-1,r.mode=Ui;break}if(ne&64){t.msg="invalid literal/length code",r.mode=_t;break}r.extra=ne&15,r.mode=Nv;case Nv:if(r.extra){for(_=r.extra;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.length+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=Rv;case Rv:for(;O=r.distcode[l&(1<<r.distbits)-1],K=O>>>24,ne=O>>>16&255,H=O&65535,!(K<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if((ne&240)==0){for(z=K,N=ne,F=H;O=r.distcode[F+((l&(1<<z+N)-1)>>z)],K=O>>>24,ne=O>>>16&255,H=O&65535,!(z+K<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=z,c-=z,r.back+=z}if(l>>>=K,c-=K,r.back+=K,ne&64){t.msg="invalid distance code",r.mode=_t;break}r.offset=H,r.extra=ne&15,r.mode=Hv;case Hv:if(r.extra){for(_=r.extra;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.offset+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=_t;break}r.mode=zv;case zv:if(u===0)break e;if(g=p-u,r.offset>g){if(g=r.offset-g,g>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=_t;break}g>r.wnext?(g-=r.wnext,T=r.wsize-g):T=r.wnext-g,g>r.length&&(g=r.length),L=r.window}else L=i,T=f-r.offset,g=r.length;g>u&&(g=u),u-=g,r.length-=g;do i[f++]=L[T++];while(--g);r.length===0&&(r.mode=np);break;case Uv:if(u===0)break e;i[f++]=r.length,u--,r.mode=np;break;case ph:if(r.wrap){for(;c<32;){if(s===0)break e;s--,l|=n[o++]<<c,c+=8}if(p-=u,t.total_out+=p,r.total+=p,p&&(t.adler=r.check=r.flags?ei(r.check,i,p,f-p):ah(r.check,i,p,f-p)),p=u,(r.flags?l:Vv(l))!==r.check){t.msg="incorrect data check",r.mode=_t;break}l=0,c=0}r.mode=Mv;case Mv:if(r.wrap&&r.flags){for(;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(l!==(r.total&4294967295)){t.msg="incorrect length check",r.mode=_t;break}l=0,c=0}r.mode=Lv;case Lv:ie=L2;break e;case _t:ie=yv;break e;case dh:return lh;case W2:default:return nn}return t.next_out=f,t.avail_out=u,t.next_in=o,t.avail_in=s,r.hold=l,r.bits=c,(r.wsize||p!==t.avail_out&&r.mode<_t&&(r.mode<ph||e!==gv))&&Zv(t,t.output,t.next_out,p-t.avail_out)?(r.mode=dh,lh):(w-=t.avail_in,p-=t.avail_out,t.total_in+=w,t.total_out+=p,r.total+=p,r.wrap&&p&&(t.adler=r.check=r.flags?ei(r.check,i,p,t.next_out-p):ah(r.check,i,p,t.next_out-p)),t.data_type=r.bits+(r.last?64:0)+(r.mode===Ui?128:0)+(r.mode===rp||r.mode===ch?256:0),(w===0&&p===0||e===gv)&&ie===Ff&&(ie=C2),ie)}function eF(t){if(!t||!t.state)return nn;var e=t.state;return e.window&&(e.window=null),t.state=null,Ff}function tF(t,e){var r;return!t||!t.state||(r=t.state,(r.wrap&2)==0)?nn:(r.head=e,e.done=!1,Ff)}function rF(t,e){var r=e.length,n,i,o;return!t||!t.state||(n=t.state,n.wrap!==0&&n.mode!==tp)?nn:n.mode===tp&&(i=1,i=ah(i,e,r,0),i!==n.check)?yv:(o=Zv(t,e,r,r),o?(n.mode=dh,lh):(n.havedict=1,Ff))}Pn.inflateReset=Wv;Pn.inflateReset2=Kv;Pn.inflateResetKeep=Cv;Pn.inflateInit=Q2;Pn.inflateInit2=Yv;Pn.inflate=$2;Pn.inflateEnd=eF;Pn.inflateGetHeader=tF;Pn.inflateSetDictionary=rF;Pn.inflateInfo="pako inflate (from Nodeca project)"});var hh=B((JV,Qv)=>{"use strict";Qv.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}});var $v=B((QV,Xv)=>{"use strict";function nF(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}Xv.exports=nF});var tT=B(Ol=>{"use strict";var Hs=Jv(),Al=Ri(),ip=th(),Nt=hh(),bh=Wc(),iF=rh(),oF=$v(),eT=Object.prototype.toString;function Df(t){if(!(this instanceof Df))return new Df(t);this.options=Al.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,e.windowBits===0&&(e.windowBits=-15)),e.windowBits>=0&&e.windowBits<16&&!(t&&t.windowBits)&&(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&(e.windowBits&15)==0&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new iF,this.strm.avail_out=0;var r=Hs.inflateInit2(this.strm,e.windowBits);if(r!==Nt.Z_OK)throw new Error(bh[r]);if(this.header=new oF,Hs.inflateGetHeader(this.strm,this.header),e.dictionary&&(typeof e.dictionary=="string"?e.dictionary=ip.string2buf(e.dictionary):eT.call(e.dictionary)==="[object ArrayBuffer]"&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(r=Hs.inflateSetDictionary(this.strm,e.dictionary),r!==Nt.Z_OK)))throw new Error(bh[r])}Df.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i=this.options.dictionary,o,f,s,u,l,c=!1;if(this.ended)return!1;f=e===~~e?e:e===!0?Nt.Z_FINISH:Nt.Z_NO_FLUSH,typeof t=="string"?r.input=ip.binstring2buf(t):eT.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new Al.Buf8(n),r.next_out=0,r.avail_out=n),o=Hs.inflate(r,Nt.Z_NO_FLUSH),o===Nt.Z_NEED_DICT&&i&&(o=Hs.inflateSetDictionary(this.strm,i)),o===Nt.Z_BUF_ERROR&&c===!0&&(o=Nt.Z_OK,c=!1),o!==Nt.Z_STREAM_END&&o!==Nt.Z_OK)return this.onEnd(o),this.ended=!0,!1;r.next_out&&(r.avail_out===0||o===Nt.Z_STREAM_END||r.avail_in===0&&(f===Nt.Z_FINISH||f===Nt.Z_SYNC_FLUSH))&&(this.options.to==="string"?(s=ip.utf8border(r.output,r.next_out),u=r.next_out-s,l=ip.buf2string(r.output,s),r.next_out=u,r.avail_out=n-u,u&&Al.arraySet(r.output,r.output,s,u,0),this.onData(l)):this.onData(Al.shrinkBuf(r.output,r.next_out))),r.avail_in===0&&r.avail_out===0&&(c=!0)}while((r.avail_in>0||r.avail_out===0)&&o!==Nt.Z_STREAM_END);return o===Nt.Z_STREAM_END&&(f=Nt.Z_FINISH),f===Nt.Z_FINISH?(o=Hs.inflateEnd(this.strm),this.onEnd(o),this.ended=!0,o===Nt.Z_OK):(f===Nt.Z_SYNC_FLUSH&&(this.onEnd(Nt.Z_OK),r.avail_out=0),!0)};Df.prototype.onData=function(t){this.chunks.push(t)};Df.prototype.onEnd=function(t){t===Nt.Z_OK&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Al.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function gh(t,e){var r=new Df(e);if(r.push(t,!0),r.err)throw r.msg||bh[r.err];return r.result}function fF(t,e){return e=e||{},e.raw=!0,gh(t,e)}Ol.Inflate=Df;Ol.inflate=gh;Ol.inflateRaw=fF;Ol.ungzip=gh});var iT=B(($V,nT)=>{"use strict";var sF=Ri().assign,aF=fv(),lF=tT(),uF=hh(),rT={};sF(rT,aF,lF,uF);nT.exports=rT});var yh=B(()=>{});var Fl,Mi,jh,oT=W(()=>{vo();Zn();Fl=le(iT()),Mi=le(yh());Zn();jh=class extends _r{constructor(e={}){super(e);this.name="deflate";this.extensions=[];this.contentEncodings=["deflate"];this.isSupported=!0;this._chunks=[];this.options=e}async compress(e){if(!Fn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await Pi(Mi.default.gzip)(e):await Pi(Mi.default.deflate)(e);return Gr(r)}return this.compressSync(e)}async decompress(e){if(!Fn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await Pi(Mi.default.gunzip)(e):await Pi(Mi.default.inflate)(e);return Gr(r)}return this.decompressSync(e)}compressSync(e){if(!Fn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Mi.default.gzipSync(e):Mi.default.deflateSync(e);return Gr(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return Fl.default.deflate(n,r).buffer}decompressSync(e){if(!Fn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Mi.default.gunzipSync(e):Mi.default.inflateSync(e);return Gr(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return Fl.default.inflate(n,r).buffer}async*compressBatches(e){let r=this.options?.deflate||{},n=new Fl.default.Deflate(r);yield*this.transformBatches(n,e)}async*decompressBatches(e){let r=this.options?.deflate||{},n=new Fl.default.Inflate(r);yield*this.transformBatches(n,e)}async*transformBatches(e,r){e.onData=this._onData.bind(this),e.onEnd=this._onEnd.bind(this);for await(let f of r){let s=new Uint8Array(f);if(!e.push(s,!1))throw new Error(`${this._getError()}write`);yield*this._getChunks()}let n=new Uint8Array(0),i=e.push(n,!0);yield*this._getChunks()}_onData(e){this._chunks.push(e)}_onEnd(e){if(e!==0)throw new Error(this._getError(e)+this._chunks.length)}_getChunks(){let e=this._chunks;return this._chunks=[],e}_getError(e=0){let r={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};return`${this.name}: ${r[e]}`}}});var op,fT=W(()=>{oT();op=class extends jh{constructor(e){super({...e,deflate:{...e?.gzip,gzip:!0}});this.name="gzip";this.extensions=["gz","gzip"];this.contentEncodings=["gzip","x-gzip"];this.isSupported=!0}}});var cF,Dl,Pl,sT=W(()=>{Zn();vo();cF=407708164,Pl=class extends _r{constructor(e){super(e);this.name="lz4";this.extensions=["lz4"];this.contentEncodings=["x-lz4"];this.isSupported=!0;if(this.options=e,Dl=Dl||this.options?.modules?.lz4js,!Dl)throw new Error(this.name)}compressSync(e){let r=new Uint8Array(e);return Dl.compress(r).buffer}decompressSync(e,r){try{let n=this.checkMagicNumber(e),i=new Uint8Array(e);if(n)return Dl.decompress(i,r).buffer;if(!r){let s=new Error("Need to provide maxSize");throw this.improveError(s)}let o=new Uint8Array(r),f=this.decodeBlock(i,o);return o=o.slice(0,f),Gr(o)}catch(n){throw this.improveError(n)}}decodeBlock(e,r,n,i){n=n||0,i=i||e.length-n;let o=0;for(let f=n;f<i;){let s=e[f++],u=s>>4;if(u>0){let T=u+240;for(;T===255;)T=e[f++],u+=T;let L=f+u;for(;f<L;)r[o++]=e[f++];if(f===i)return o}let l=e[f++]|e[f++]<<8;if(l===0||l>o)return-(f-2);let c=s&15,w=c+240;for(;w===255;)w=e[f++],c+=w;let p=o-l,g=o+c+4;for(;o<g;)r[o++]=r[p++]}return o}checkMagicNumber(e){return new Uint32Array(e.slice(0,4))[0]===cF}}});var fp,sp,ap,aT=W(()=>{vo();ap=class extends _r{constructor(e){super(e);this.name="zstd";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e,fp=this.options?.modules?.["zstd-codec"],fp||console.warn(`${this.name} library not installed`)}async preload(){!sp&&fp&&(sp=await new Promise(e=>fp.run(r=>e(r))))}compressSync(e){let r=new sp.Simple,n=new Uint8Array(e);return r.compress(n).buffer}decompressSync(e){let r=new sp.Simple,n=new Uint8Array(e);return r.decompress(n).buffer}}});var uT=B(lT=>{"use strict";var pF=[0,255,65535,16777215,4294967295];function dF(t,e,r,n,i){var o;for(o=0;o<i;o++)r[n+o]=t[e+o]}function mF(t,e,r,n){var i;for(i=0;i<n;i++)t[e+i]=t[e-r+i]}function _h(t){this.array=t,this.pos=0}_h.prototype.readUncompressedLength=function(){for(var t=0,e=0,r,n;e<32&&this.pos<this.array.length;){if(r=this.array[this.pos],this.pos+=1,n=r&127,n<<e>>>e!==n)return-1;if(t|=n<<e,r<128)return t;e+=7}return-1};_h.prototype.uncompressToBuffer=function(t){for(var e=this.array,r=e.length,n=this.pos,i=0,o,f,s,u;n<e.length;)if(o=e[n],n+=1,(o&3)==0){if(f=(o>>>2)+1,f>60){if(n+3>=r)return!1;s=f-60,f=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),f=(f&pF[s])+1,n+=s}if(n+f>r)return!1;dF(e,n,t,i,f),n+=f,i+=f}else{switch(o&3){case 1:f=(o>>>2&7)+4,u=e[n]+(o>>>5<<8),n+=1;break;case 2:if(n+1>=r)return!1;f=(o>>>2)+1,u=e[n]+(e[n+1]<<8),n+=2;break;case 3:if(n+3>=r)return!1;f=(o>>>2)+1,u=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),n+=4;break;default:break}if(u===0||u>i)return!1;mF(t,i,u,f),i+=f}return!0};lT.SnappyDecompressor=_h});var wT=B(mT=>{"use strict";var wF=16,hF=1<<wF,cT=14,qh=new Array(cT+1);function Nl(t,e){return t*506832829>>>e}function Rl(t,e){return t[e]+(t[e+1]<<8)+(t[e+2]<<16)+(t[e+3]<<24)}function pT(t,e,r){return t[e]===t[r]&&t[e+1]===t[r+1]&&t[e+2]===t[r+2]&&t[e+3]===t[r+3]}function bF(t,e,r,n,i){var o;for(o=0;o<i;o++)r[n+o]=t[e+o]}function dT(t,e,r,n,i){return r<=60?(n[i]=r-1<<2,i+=1):r<256?(n[i]=60<<2,n[i+1]=r-1,i+=2):(n[i]=61<<2,n[i+1]=r-1&255,n[i+2]=r-1>>>8,i+=3),bF(t,e,n,i,r),i+r}function vh(t,e,r,n){return n<12&&r<2048?(t[e]=1+(n-4<<2)+(r>>>8<<5),t[e+1]=r&255,e+2):(t[e]=2+(n-1<<2),t[e+1]=r&255,t[e+2]=r>>>8,e+3)}function gF(t,e,r,n){for(;n>=68;)e=vh(t,e,r,64),n-=64;return n>64&&(e=vh(t,e,r,60),n-=60),vh(t,e,r,n)}function yF(t,e,r,n,i){for(var o=1;1<<o<=r&&o<=cT;)o+=1;o-=1;var f=32-o;typeof qh[o]=="undefined"&&(qh[o]=new Uint16Array(1<<o));var s=qh[o],u;for(u=0;u<s.length;u++)s[u]=0;var l=e+r,c,w=e,p=e,g,T,L,O,K,ne,H,z,N,F,ae,ie=!0,de=15;if(r>=de)for(c=l-de,e+=1,T=Nl(Rl(t,e),f);ie;){K=32,L=e;do{if(e=L,g=T,ne=K>>>5,K+=1,L=e+ne,e>c){ie=!1;break}T=Nl(Rl(t,L),f),O=w+s[g],s[g]=e-w}while(!pT(t,e,O));if(!ie)break;i=dT(t,p,e-p,n,i);do{for(H=e,z=4;e+z<l&&t[e+z]===t[O+z];)z+=1;if(e+=z,N=H-O,i=gF(n,i,N,z),p=e,e>=c){ie=!1;break}F=Nl(Rl(t,e-1),f),s[F]=e-1-w,ae=Nl(Rl(t,e),f),O=w+s[ae],s[ae]=e-w}while(pT(t,e,O));if(!ie)break;e+=1,T=Nl(Rl(t,e),f)}return p<l&&(i=dT(t,p,l-p,n,i)),i}function jF(t,e,r){do e[r]=t&127,t=t>>>7,t>0&&(e[r]+=128),r+=1;while(t>0);return r}function Th(t){this.array=t}Th.prototype.maxCompressedLength=function(){var t=this.array.length;return 32+t+Math.floor(t/6)};Th.prototype.compressToBuffer=function(t){var e=this.array,r=e.length,n=0,i=0,o;for(i=jF(r,t,i);n<r;)o=Math.min(r-n,hF),i=yF(e,n,o,t,i),n+=o;return i};mT.SnappyCompressor=Th});var yT=B(Bh=>{"use strict";function hT(){return typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node!="undefined"}function lp(t){return t instanceof Uint8Array&&(!hT()||!Buffer.isBuffer(t))}function up(t){return t instanceof ArrayBuffer}function bT(t){return hT()?Buffer.isBuffer(t):!1}var _F=uT().SnappyDecompressor,qF=wT().SnappyCompressor,gT="Argument compressed must be type of ArrayBuffer, Buffer, or Uint8Array";function vF(t){if(!lp(t)&&!up(t)&&!bT(t))throw new TypeError(gT);var e=!1,r=!1;lp(t)?e=!0:up(t)&&(r=!0,t=new Uint8Array(t));var n=new _F(t),i=n.readUncompressedLength();if(i===-1)throw new Error("Invalid Snappy bitstream");var o,f;if(e){if(o=new Uint8Array(i),!n.uncompressToBuffer(o))throw new Error("Invalid Snappy bitstream")}else if(r){if(o=new ArrayBuffer(i),f=new Uint8Array(o),!n.uncompressToBuffer(f))throw new Error("Invalid Snappy bitstream")}else if(o=Buffer.alloc(i),!n.uncompressToBuffer(o))throw new Error("Invalid Snappy bitstream");return o}function TF(t){if(!lp(t)&&!up(t)&&!bT(t))throw new TypeError(gT);var e=!1,r=!1;lp(t)?e=!0:up(t)&&(r=!0,t=new Uint8Array(t));var n=new qF(t),i=n.maxCompressedLength(),o,f,s;if(e?(o=new Uint8Array(i),s=n.compressToBuffer(o)):r?(o=new ArrayBuffer(i),f=new Uint8Array(o),s=n.compressToBuffer(f)):(o=Buffer.alloc(i),s=n.compressToBuffer(o)),!o.slice){var u=new Uint8Array(Array.prototype.slice.call(o,0,s));if(e)return u;if(r)return u.buffer;throw new Error("Not implemented")}return o.slice(0,s)}Bh.uncompress=vF;Bh.compress=TF});var cp,pp,jT=W(()=>{vo();cp=le(yT()),pp=class extends _r{constructor(e){super(e);this.name="snappy";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return(0,cp.compress)(e)}decompressSync(e){return(0,cp.uncompress)(e)}}});var BF,_T,qT=W(()=>{BF=()=>{function t(a){this.data=a,this.offset=0}let e=Int32Array.from([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]),r=Int32Array.from([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),n=Int32Array.from([0,3,2,1,0,0,0,0,0,0,3,3,3,3,3,3]),i=Int32Array.from([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),o=Int32Array.from([131072,131076,131075,196610,131072,131076,131075,262145,131072,131076,131075,196610,131072,131076,131075,262149]),f=Int32Array.from([1,5,9,13,17,25,33,41,49,65,81,97,113,145,177,209,241,305,369,497,753,1265,2289,4337,8433,16625]),s=Int32Array.from([2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,7,8,9,10,11,12,13,24]),u=Int16Array.from([0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,12,14,24]),l=Int16Array.from([0,0,0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,24]),c=new Int16Array(2816);T(c);function w(a){let j=-1,b=16;for(;b>0;)a>>>b!=0&&(j+=b,a=a>>>b),b=b>>1;return j+a}function p(a,j,b){return 16+j+2*(b<<a)}function g(a,j,b){if(a<b+(2<<j))throw"maxDistance is too small";let q=(a-b>>j)+4,v=w(q)-1;return((v-1<<1|q>>v&1)-1<<j)+(1<<j)+b+16}function T(a){let j=new Int16Array(24),b=new Int16Array(24);b[0]=2;for(let q=0;q<23;++q)j[q+1]=j[q]+(1<<u[q]),b[q+1]=b[q]+(1<<l[q]);for(let q=0;q<704;++q){let v=q>>>6,P=-4;v>=2&&(v-=2,P=0);let U=(170064>>>v*2&3)<<3|q>>>3&7,Q=(156228>>>v*2&3)<<3|q&7,ce=b[Q],pe=P+(ce>4?3:ce-2),re=q*4;a[re+0]=u[U]|l[Q]<<8,a[re+1]=j[U],a[re+2]=b[Q],a[re+3]=pe}}function L(a){let j=a.isLargeWindow;if(a.isLargeWindow=0,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Ne(a,1)==0)return 16;let b=Ne(a,3);return b!=0?17+b:(b=Ne(a,3),b!=0?b==1?j==0||(a.isLargeWindow=1,Ne(a,1)==1)||(b=Ne(a,6),b<10||b>30)?-1:b:8+b:17)}function O(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isEager=1}function K(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isLargeWindow=1}function ne(a,j){if(a.runningState!=1)throw"State MUST be freshly initialized";if(a.cdNumChunks==0&&(a.cdChunks=new Array(16),a.cdChunkOffsets=new Int32Array(16),a.cdBlockBits=-1),a.cdNumChunks==15)throw"Too many dictionary chunks";a.cdChunks[a.cdNumChunks]=j,a.cdNumChunks++,a.cdTotalSize+=j.length,a.cdChunkOffsets[a.cdNumChunks]=a.cdTotalSize}function H(a,j){if(a.runningState!=0)throw"State MUST be uninitialized";a.blockTrees=new Int32Array(3091),a.blockTrees[0]=7,a.distRbIdx=3;let b=g(2147483644,3,15<<3);a.distExtraBits=new Int8Array(b),a.distOffset=new Int32Array(b),a.input=j,h(a),a.runningState=1}function z(a){if(a.runningState==0)throw"State MUST be initialized";a.runningState!=11&&(a.runningState=11,a.input!=null&&(yO(a.input),a.input=null))}function N(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Ne(a,1)!=0){let j=Ne(a,3);return j==0?1:Ne(a,j)+(1<<j)}return 0}function F(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.inputEnd=Ne(a,1),a.metaBlockLength=0,a.isUncompressed=0,a.isMetadata=0,a.inputEnd!=0&&Ne(a,1)!=0)return;let j=Ne(a,2)+4;if(j==7){if(a.isMetadata=1,Ne(a,1)!=0)throw"Corrupted reserved bit";let b=Ne(a,2);if(b==0)return;for(let q=0;q<b;q++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let v=Ne(a,8);if(v==0&&q+1==b&&b>1)throw"Exuberant nibble";a.metaBlockLength|=v<<q*8}}else for(let b=0;b<j;b++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let q=Ne(a,4);if(q==0&&b+1==j&&j>4)throw"Exuberant nibble";a.metaBlockLength|=q<<b*4}a.metaBlockLength++,a.inputEnd==0&&(a.isUncompressed=Ne(a,1))}function ae(a,j,b){let q=a[j],v=b.accumulator32>>>b.bitOffset;q+=v&255;let P=a[q]>>16,U=a[q]&65535;if(P<=8)return b.bitOffset+=P,U;q+=U;let Q=(1<<P)-1;return q+=(v&Q)>>>8,b.bitOffset+=(a[q]>>16)+8,a[q]&65535}function ie(a,j,b){b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let q=ae(a,j,b),v=s[q];return b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16),f[q]+(v<=16?Ne(b,v):Is(b,v))}function de(a,j){let b=a[j];for(;j>0;j--)a[j]=a[j-1];a[0]=b}function Ze(a,j){let b=new Int32Array(256);for(let q=0;q<256;q++)b[q]=q;for(let q=0;q<j;q++){let v=a[q]&255;a[q]=b[v],v!=0&&de(b,v)}}function _(a,j,b,q){let v=0,P=8,U=0,Q=0,ce=32768,pe=new Int32Array(32+1),re=pe.length-1;for(ks(pe,re,5,a,18);v<j&&ce>0;){q.halfOffset>2030&&mr(q),q.bitOffset>=16&&(q.accumulator32=q.shortBuffer[q.halfOffset++]<<16|q.accumulator32>>>16,q.bitOffset-=16);let De=q.accumulator32>>>q.bitOffset&31;q.bitOffset+=pe[De]>>16;let He=pe[De]&65535;if(He<16)U=0,b[v++]=He,He!=0&&(P=He,ce-=32768>>He);else{let gt=He-14,Kr=0;He==16&&(Kr=P),Q!=Kr&&(U=0,Q=Kr);let en=U;U>0&&(U-=2,U<<=gt),q.bitOffset>=16&&(q.accumulator32=q.shortBuffer[q.halfOffset++]<<16|q.accumulator32>>>16,q.bitOffset-=16),U+=Ne(q,gt)+3;let Jt=U-en;if(v+Jt>j)throw"symbol + repeatDelta > numSymbols";for(let Le=0;Le<Jt;Le++)b[v++]=Q;Q!=0&&(ce-=Jt<<15-Q)}}if(ce!=0)throw"Unused space";b.fill(0,v,j)}function Fe(a,j){for(let b=0;b<j-1;++b)for(let q=b+1;q<j;++q)if(a[b]==a[q])throw"Duplicate simple Huffman code symbol"}function Ce(a,j,b,q,v){let P=new Int32Array(j),U=new Int32Array(4),Q=1+w(a-1),ce=Ne(v,2)+1;for(let re=0;re<ce;re++){v.bitOffset>=16&&(v.accumulator32=v.shortBuffer[v.halfOffset++]<<16|v.accumulator32>>>16,v.bitOffset-=16);let De=Ne(v,Q);if(De>=j)throw"Can't readHuffmanCode";U[re]=De}Fe(U,ce);let pe=ce;switch(ce==4&&(pe+=Ne(v,1)),pe){case 1:P[U[0]]=1;break;case 2:P[U[0]]=1,P[U[1]]=1;break;case 3:P[U[0]]=1,P[U[1]]=2,P[U[2]]=2;break;case 4:P[U[0]]=2,P[U[1]]=2,P[U[2]]=2,P[U[3]]=2;break;case 5:P[U[0]]=1,P[U[1]]=2,P[U[2]]=3,P[U[3]]=3;break;default:break}return ks(b,q,8,P,j)}function ge(a,j,b,q,v){let P=new Int32Array(a),U=new Int32Array(18),Q=32,ce=0;for(let pe=j;pe<18&&Q>0;pe++){let re=r[pe];v.bitOffset>=16&&(v.accumulator32=v.shortBuffer[v.halfOffset++]<<16|v.accumulator32>>>16,v.bitOffset-=16);let De=v.accumulator32>>>v.bitOffset&15;v.bitOffset+=o[De]>>16;let He=o[De]&65535;U[re]=He,He!=0&&(Q-=32>>He,ce++)}if(Q!=0&&ce!=1)throw"Corrupted Huffman code histogram";return _(U,a,P,v),ks(b,q,8,P,a)}function Je(a,j,b,q,v){v.halfOffset>2030&&mr(v),v.bitOffset>=16&&(v.accumulator32=v.shortBuffer[v.halfOffset++]<<16|v.accumulator32>>>16,v.bitOffset-=16);let P=Ne(v,2);return P==1?Ce(a,j,b,q,v):ge(j,P,b,q,v)}function te(a,j,b){b.halfOffset>2030&&mr(b);let q=N(b)+1;if(q==1)return j.fill(0,0,a),q;b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let v=Ne(b,1),P=0;v!=0&&(P=Ne(b,4)+1);let U=q+P,Q=e[U+31>>5],ce=new Int32Array(Q+1),pe=ce.length-1;Je(U,U,ce,pe,b);for(let re=0;re<a;){b.halfOffset>2030&&mr(b),b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let De=ae(ce,pe,b);if(De==0)j[re]=0,re++;else if(De<=P){b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let He=(1<<De)+Ne(b,De);for(;He!=0;){if(re>=a)throw"Corrupted context map";j[re]=0,re++,He--}}else j[re]=De-P,re++}return b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16),Ne(b,1)==1&&Ze(j,a),q}function Bt(a,j,b){let q=a.rings,v=4+j*2;a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let P=ae(a.blockTrees,2*j,a),U=ie(a.blockTrees,2*j+1,a);return P==1?P=q[v+1]+1:P==0?P=q[v]:P-=2,P>=b&&(P-=b),q[v]=q[v+1],q[v+1]=P,U}function st(a){a.literalBlockLength=Bt(a,0,a.numLiteralBlockTypes);let j=a.rings[5];a.contextMapSlice=j<<6,a.literalTreeIdx=a.contextMap[a.contextMapSlice]&255;let b=a.contextModes[j];a.contextLookupOffset1=b<<9,a.contextLookupOffset2=a.contextLookupOffset1+256}function Er(a){a.commandBlockLength=Bt(a,1,a.numCommandBlockTypes),a.commandTreeIdx=a.rings[7]}function Ai(a){a.distanceBlockLength=Bt(a,2,a.numDistanceBlockTypes),a.distContextMapSlice=a.rings[9]<<2}function vf(a){let j=a.maxRingBufferSize;if(j>a.expectedTotalSize){let v=a.expectedTotalSize;for(;j>>1>v;)j>>=1;a.inputEnd==0&&j<16384&&a.maxRingBufferSize>=16384&&(j=16384)}if(j<=a.ringBufferSize)return;let b=j+37,q=new Int8Array(b);a.ringBuffer.length!=0&&q.set(a.ringBuffer.subarray(0,0+a.ringBufferSize),0),a.ringBuffer=q,a.ringBufferSize=j}function Tf(a){if(a.inputEnd!=0){a.nextRunningState=10,a.runningState=12;return}a.literalTreeGroup=new Int32Array(0),a.commandTreeGroup=new Int32Array(0),a.distanceTreeGroup=new Int32Array(0),a.halfOffset>2030&&mr(a),F(a),!(a.metaBlockLength==0&&a.isMetadata==0)&&(a.isUncompressed!=0||a.isMetadata!=0?(M(a),a.runningState=a.isMetadata!=0?5:6):a.runningState=3,a.isMetadata==0&&(a.expectedTotalSize+=a.metaBlockLength,a.expectedTotalSize>1<<30&&(a.expectedTotalSize=1<<30),a.ringBufferSize<a.maxRingBufferSize&&vf(a)))}function An(a,j,b){let q=a.blockTrees[2*j];if(b<=1)return a.blockTrees[2*j+1]=q,a.blockTrees[2*j+2]=q,1<<28;let v=b+2;q+=Je(v,v,a.blockTrees,2*j,a),a.blockTrees[2*j+1]=q;let P=26;return q+=Je(P,P,a.blockTrees,2*j+1,a),a.blockTrees[2*j+2]=q,ie(a.blockTrees,2*j+1,a)}function Wr(a,j){let b=a.distExtraBits,q=a.distOffset,v=a.distancePostfixBits,P=a.numDirectDistanceCodes,U=1<<v,Q=1,ce=0,pe=16;for(let re=0;re<P;++re)b[pe]=0,q[pe]=re+1,++pe;for(;pe<j;){let re=P+((2+ce<<Q)-4<<v)+1;for(let De=0;De<U;++De)b[pe]=Q,q[pe]=re+De,++pe;Q=Q+ce,ce=ce^1}}function Zt(a){a.numLiteralBlockTypes=N(a)+1,a.literalBlockLength=An(a,0,a.numLiteralBlockTypes),a.numCommandBlockTypes=N(a)+1,a.commandBlockLength=An(a,1,a.numCommandBlockTypes),a.numDistanceBlockTypes=N(a)+1,a.distanceBlockLength=An(a,2,a.numDistanceBlockTypes),a.halfOffset>2030&&mr(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.distancePostfixBits=Ne(a,2),a.numDirectDistanceCodes=Ne(a,4)<<a.distancePostfixBits,a.contextModes=new Int8Array(a.numLiteralBlockTypes);for(let P=0;P<a.numLiteralBlockTypes;){let U=yo(P+96,a.numLiteralBlockTypes);for(;P<U;++P)a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.contextModes[P]=Ne(a,2);a.halfOffset>2030&&mr(a)}a.contextMap=new Int8Array(a.numLiteralBlockTypes<<6);let j=te(a.numLiteralBlockTypes<<6,a.contextMap,a);a.trivialLiteralContext=1;for(let P=0;P<a.numLiteralBlockTypes<<6;P++)if(a.contextMap[P]!=P>>6){a.trivialLiteralContext=0;break}a.distContextMap=new Int8Array(a.numDistanceBlockTypes<<2);let b=te(a.numDistanceBlockTypes<<2,a.distContextMap,a);a.literalTreeGroup=C(256,256,j,a),a.commandTreeGroup=C(704,704,a.numCommandBlockTypes,a);let q=p(a.distancePostfixBits,a.numDirectDistanceCodes,24),v=q;a.isLargeWindow==1&&(q=p(a.distancePostfixBits,a.numDirectDistanceCodes,62),v=g(2147483644,a.distancePostfixBits,a.numDirectDistanceCodes)),a.distanceTreeGroup=C(q,v,b,a),Wr(a,v),a.contextMapSlice=0,a.distContextMapSlice=0,a.contextLookupOffset1=a.contextModes[0]*512,a.contextLookupOffset2=a.contextLookupOffset1+256,a.literalTreeIdx=0,a.commandTreeIdx=0,a.rings[4]=1,a.rings[5]=0,a.rings[6]=1,a.rings[7]=0,a.rings[8]=1,a.rings[9]=0}function Oi(a){let j=a.ringBuffer;if(a.metaBlockLength<=0){I(a),a.runningState=2;return}let b=yo(a.ringBufferSize-a.pos,a.metaBlockLength);if(Ee(a,j,a.pos,b),a.metaBlockLength-=b,a.pos+=b,a.pos==a.ringBufferSize){a.nextRunningState=6,a.runningState=12;return}I(a),a.runningState=2}function On(a){let j=yo(a.outputLength-a.outputUsed,a.ringBufferBytesReady-a.ringBufferBytesWritten);return j!=0&&(a.output.set(a.ringBuffer.subarray(a.ringBufferBytesWritten,a.ringBufferBytesWritten+j),a.outputOffset+a.outputUsed),a.outputUsed+=j,a.ringBufferBytesWritten+=j),a.outputUsed<a.outputLength?1:0}function C(a,j,b,q){let v=e[j+31>>5],P=new Int32Array(b+b*v),U=b;for(let Q=0;Q<b;++Q)P[Q]=U,U+=Je(a,j,P,Q,q);return P}function vs(a){let j=a.ringBufferSize;return a.isEager!=0&&(j=yo(j,a.ringBufferBytesWritten+a.outputLength-a.outputUsed)),j}function Ts(a,j){if(a.distance>2147483644)throw"Invalid backward reference";let b=a.distance-a.maxDistance-1-a.cdTotalSize;if(b<0)Bf(a,-b-1,a.copyLength),a.runningState=14;else{let q=ct,v=a.copyLength;if(v>31)throw"Invalid backward reference";let P=go[v];if(P==0)throw"Invalid backward reference";let U=Pt[v],Q=(1<<P)-1,ce=b&Q,pe=b>>>P;U+=ce*v;let re=Bs;if(pe>=re.numTransforms)throw"Invalid backward reference";let De=Ew(a.ringBuffer,a.pos,q,U,v,re,pe);if(a.pos+=De,a.metaBlockLength-=De,a.pos>=j){a.nextRunningState=4,a.runningState=12;return}a.runningState=4}}function jr(a){a.cdBlockMap=new Int8Array(256);let j=8;for(;a.cdTotalSize-1>>>j!=0;)j++;j-=8,a.cdBlockBits=j;let b=0,q=0;for(;b<a.cdTotalSize;){for(;a.cdChunkOffsets[q+1]<b;)q++;a.cdBlockMap[b>>>j]=q,b+=1<<j}}function Bf(a,j,b){a.cdBlockBits==-1&&jr(a);let q=a.cdBlockMap[j>>>a.cdBlockBits];for(;j>=a.cdChunkOffsets[q+1];)q++;if(a.cdTotalSize>j+b)throw"Invalid backward reference";a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance,a.metaBlockLength-=b,a.cdBrIndex=q,a.cdBrOffset=j-a.cdChunkOffsets[q],a.cdBrLength=b,a.cdBrCopied=0}function ul(a,j){let b=a.pos,q=b;for(;a.cdBrLength!=a.cdBrCopied;){let v=j-b,U=a.cdChunkOffsets[a.cdBrIndex+1]-a.cdChunkOffsets[a.cdBrIndex]-a.cdBrOffset,Q=a.cdBrLength-a.cdBrCopied;if(Q>U&&(Q=U),Q>v&&(Q=v),gO(a.ringBuffer,b,a.cdChunks[a.cdBrIndex],a.cdBrOffset,a.cdBrOffset+Q),b+=Q,a.cdBrOffset+=Q,a.cdBrCopied+=Q,Q==U&&(a.cdBrIndex++,a.cdBrOffset=0),b>=j)break}return b-q}function xw(a){if(a.runningState==0)throw"Can't decompress until initialized";if(a.runningState==11)throw"Can't decompress after close";if(a.runningState==1){let v=L(a);if(v==-1)throw"Invalid 'windowBits' code";a.maxRingBufferSize=1<<v,a.maxBackwardDistance=a.maxRingBufferSize-16,a.runningState=2}let j=vs(a),b=a.ringBufferSize-1,q=a.ringBuffer;for(;a.runningState!=10;)switch(a.runningState){case 2:if(a.metaBlockLength<0)throw"Invalid metablock length";Tf(a),j=vs(a),b=a.ringBufferSize-1,q=a.ringBuffer;continue;case 3:Zt(a),a.runningState=4;case 4:if(a.metaBlockLength<=0){a.runningState=2;continue}a.halfOffset>2030&&mr(a),a.commandBlockLength==0&&Er(a),a.commandBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let v=ae(a.commandTreeGroup,a.commandTreeIdx,a)<<2,P=c[v],U=c[v+1],Q=c[v+2];a.distanceCode=c[v+3],a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let ce=P&255;a.insertLength=U+(ce<=16?Ne(a,ce):Is(a,ce)),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let pe=P>>8;a.copyLength=Q+(pe<=16?Ne(a,pe):Is(a,pe)),a.j=0,a.runningState=7;case 7:if(a.trivialLiteralContext!=0){for(;a.j<a.insertLength;)if(a.halfOffset>2030&&mr(a),a.literalBlockLength==0&&st(a),a.literalBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),q[a.pos]=ae(a.literalTreeGroup,a.literalTreeIdx,a),a.pos++,a.j++,a.pos>=j){a.nextRunningState=7,a.runningState=12;break}}else{let Jt=q[a.pos-1&b]&255,Le=q[a.pos-2&b]&255;for(;a.j<a.insertLength;){a.halfOffset>2030&&mr(a),a.literalBlockLength==0&&st(a);let Yr=lt[a.contextLookupOffset1+Jt]|lt[a.contextLookupOffset2+Le],Fi=a.contextMap[a.contextMapSlice+Yr]&255;if(a.literalBlockLength--,Le=Jt,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Jt=ae(a.literalTreeGroup,Fi,a),q[a.pos]=Jt,a.pos++,a.j++,a.pos>=j){a.nextRunningState=7,a.runningState=12;break}}}if(a.runningState!=7)continue;if(a.metaBlockLength-=a.insertLength,a.metaBlockLength<=0){a.runningState=4;continue}let re=a.distanceCode;if(re<0)a.distance=a.rings[a.distRbIdx];else{a.halfOffset>2030&&mr(a),a.distanceBlockLength==0&&Ai(a),a.distanceBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let Jt=a.distContextMap[a.distContextMapSlice+re]&255;if(re=ae(a.distanceTreeGroup,Jt,a),re<16){let Le=a.distRbIdx+n[re]&3;if(a.distance=a.rings[Le]+i[re],a.distance<0)throw"Negative distance"}else{let Le=a.distExtraBits[re],Yr;a.bitOffset+Le<=32?Yr=Ne(a,Le):(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Yr=Le<=16?Ne(a,Le):Is(a,Le)),a.distance=a.distOffset[re]+(Yr<<a.distancePostfixBits)}}if(a.maxDistance!=a.maxBackwardDistance&&a.pos<a.maxBackwardDistance?a.maxDistance=a.pos:a.maxDistance=a.maxBackwardDistance,a.distance>a.maxDistance){a.runningState=9;continue}if(re>0&&(a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance),a.copyLength>a.metaBlockLength)throw"Invalid backward reference";a.j=0,a.runningState=8;case 8:let De=a.pos-a.distance&b,He=a.pos,gt=a.copyLength-a.j,Kr=De+gt,en=He+gt;if(Kr<b&&en<b){if(gt<12||Kr>He&&en>De)for(let Jt=0;Jt<gt;Jt+=4)q[He++]=q[De++],q[He++]=q[De++],q[He++]=q[De++],q[He++]=q[De++];else q.copyWithin(He,De,Kr);a.j+=gt,a.metaBlockLength-=gt,a.pos+=gt}else for(;a.j<a.copyLength;)if(q[a.pos]=q[a.pos-a.distance&b],a.metaBlockLength--,a.pos++,a.j++,a.pos>=j){a.nextRunningState=8,a.runningState=12;break}a.runningState==8&&(a.runningState=4);continue;case 9:Ts(a,j);continue;case 14:if(a.pos+=ul(a,j),a.pos>=j){a.nextRunningState=14,a.runningState=12;return}a.runningState=4;continue;case 5:for(;a.metaBlockLength>0;)a.halfOffset>2030&&mr(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Ne(a,8),a.metaBlockLength--;a.runningState=2;continue;case 6:Oi(a);continue;case 12:a.ringBufferBytesReady=yo(a.pos,a.ringBufferSize),a.runningState=13;case 13:if(On(a)==0)return;a.pos>=a.maxBackwardDistance&&(a.maxDistance=a.maxBackwardDistance),a.pos>=a.ringBufferSize&&(a.pos>a.ringBufferSize&&q.copyWithin(0,a.ringBufferSize,a.pos),a.pos&=b,a.ringBufferBytesWritten=0),a.runningState=a.nextRunningState;continue;default:throw"Unexpected state "+a.runningState}if(a.runningState==10){if(a.metaBlockLength<0)throw"Invalid metablock length";M(a),pl(a,1)}}function Oc(a,j,b){this.numTransforms=0,this.triplets=new Int32Array(0),this.prefixSuffixStorage=new Int8Array(0),this.prefixSuffixHeads=new Int32Array(0),this.params=new Int16Array(0),this.numTransforms=a,this.triplets=new Int32Array(a*3),this.params=new Int16Array(a),this.prefixSuffixStorage=new Int8Array(j),this.prefixSuffixHeads=new Int32Array(b+1)}let Bs=new Oc(121,167,50);function Sw(a,j,b,q,v){let P=q.length,U=1,Q=0;for(let ce=0;ce<P;++ce){let pe=q.charCodeAt(ce);pe==35?j[U++]=Q:a[Q++]=pe}for(let ce=0;ce<363;++ce)b[ce]=v.charCodeAt(ce)-32}Sw(Bs.prefixSuffixStorage,Bs.prefixSuffixHeads,Bs.triplets,`# #s #, #e #.# the #.com/#\xC2\xA0# of # and # in # to #"#">#
2
+ #]# for # a # that #. # with #'# from # by #. The # on # as # is #ing #
3
+ #:#ed #(# at #ly #="# of the #. This #,# not #er #al #='#ful #ive #less #est #ize #ous #`,` !! ! , *! &! " ! ) * * - ! # ! #!*! + ,$ ! - % . / # 0 1 . " 2 3!* 4% ! # / 5 6 7 8 0 1 & $ 9 + : ; < ' != > ?! 4 @ 4 2 & A *# ( B C& ) % ) !*# *-% A +! *. D! %' & E *6 F G% ! *A *% H! D I!+! J!+ K +- *4! A L!*4 M N +6 O!*% +.! K *G P +%( ! G *D +D Q +# *K!*G!+D!+# +G +A +4!+% +K!+4!*D!+K!*K`);function Ew(a,j,b,q,v,P,U){let Q=j,ce=P.triplets,pe=P.prefixSuffixStorage,re=P.prefixSuffixHeads,De=3*U,He=ce[De],gt=ce[De+1],Kr=ce[De+2],en=re[He],Jt=re[He+1],Le=re[Kr],Yr=re[Kr+1],Fi=gt-11,Dc=gt-0;for((Fi<1||Fi>9)&&(Fi=0),(Dc<1||Dc>9)&&(Dc=0);en!=Jt;)a[Q++]=pe[en++];Fi>v&&(Fi=v),q+=Fi,v-=Fi,v-=Dc;let A_=v;for(;A_>0;)a[Q++]=b[q++],A_--;if(gt==10||gt==11){let mt=Q-v;for(gt==10&&(v=1);v>0;){let kf=a[mt]&255;kf<192?(kf>=97&&kf<=122&&(a[mt]^=32),mt+=1,v-=1):kf<224?(a[mt+1]^=32,mt+=2,v-=2):(a[mt+2]^=5,mt+=3,v-=3)}}else if(gt==21||gt==22){let mt=Q-v,kf=P.params[U],Ar=(kf&32767)+(16777216-(kf&32768));for(;v>0;){let jo=1,Di=a[mt]&255;if(Di<128)Ar+=Di,a[mt]=Ar&127;else if(!(Di<192)){if(Di<224)if(v>=2){let _o=a[mt+1];Ar+=_o&63|(Di&31)<<6,a[mt]=192|Ar>>6&31,a[mt+1]=_o&192|Ar&63,jo=2}else jo=v;else if(Di<240)if(v>=3){let _o=a[mt+1],dl=a[mt+2];Ar+=dl&63|(_o&63)<<6|(Di&15)<<12,a[mt]=224|Ar>>12&15,a[mt+1]=_o&192|Ar>>6&63,a[mt+2]=dl&192|Ar&63,jo=3}else jo=v;else if(Di<248)if(v>=4){let _o=a[mt+1],dl=a[mt+2],O_=a[mt+3];Ar+=O_&63|(dl&63)<<6|(_o&63)<<12|(Di&7)<<18,a[mt]=240|Ar>>18&7,a[mt+1]=_o&192|Ar>>12&63,a[mt+2]=dl&192|Ar>>6&63,a[mt+3]=O_&192|Ar&63,jo=4}else jo=v}mt+=jo,v-=jo,gt==21&&(v=0)}}for(;Le!=Yr;)a[Q++]=pe[Le++];return Q-j}function Fc(a,j){let b=1<<j-1;for(;(a&b)!=0;)b>>=1;return(a&b-1)+b}function cl(a,j,b,q,v){do q-=b,a[j+q]=v;while(q>0)}function bo(a,j,b){let q=1<<j-b;for(;j<15&&(q-=a[j],!(q<=0));)j++,q<<=1;return j-b}function ks(a,j,b,q,v){let P=a[j],U,Q=new Int32Array(v),ce=new Int32Array(16),pe=new Int32Array(16),re;for(re=0;re<v;re++)ce[q[re]]++;pe[1]=0;for(let Le=1;Le<15;Le++)pe[Le+1]=pe[Le]+ce[Le];for(re=0;re<v;re++)q[re]!=0&&(Q[pe[q[re]]++]=re);let De=b,He=1<<De,gt=He;if(pe[15]==1){for(U=0;U<gt;U++)a[P+U]=Q[0];return gt}U=0,re=0;for(let Le=1,Yr=2;Le<=b;Le++,Yr<<=1)for(;ce[Le]>0;ce[Le]--)cl(a,P+U,Yr,He,Le<<16|Q[re++]),U=Fc(U,Le);let Kr=gt-1,en=-1,Jt=P;for(let Le=b+1,Yr=2;Le<=15;Le++,Yr<<=1)for(;ce[Le]>0;ce[Le]--)(U&Kr)!=en&&(Jt+=He,De=bo(ce,Le,b),He=1<<De,gt+=He,en=U&Kr,a[P+en]=De+b<<16|Jt-P-en),cl(a,Jt+(U>>b),Yr,He,Le-b<<16|Q[re++]),U=Fc(U,Le);return gt}function mr(a){if(a.endOfStreamReached!=0){if(me(a)>=-2)return;throw"No more input"}let j=a.halfOffset<<1,b=4096-j;for(a.byteBuffer.copyWithin(0,j,4096),a.halfOffset=0;b<4096;){let q=4096-b,v=E_(a.input,a.byteBuffer,b,q);if(v<=0){a.endOfStreamReached=1,a.tailBytes=b,b+=1;break}b+=v}be(a,b)}function pl(a,j){if(a.endOfStreamReached==0)return;let b=(a.halfOffset<<1)+(a.bitOffset+7>>3)-4;if(b>a.tailBytes)throw"Read after end";if(j!=0&&b!=a.tailBytes)throw"Unused bytes after end"}function S_(a){if(a.bitOffset>32)throw"Accumulator underloaded: "+a.bitOffset}function Ne(a,j){let b=a.accumulator32>>>a.bitOffset&(1<<j)-1;return a.bitOffset+=j,b}function Is(a,j){let b=Ne(a,16);return a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,b|Ne(a,j-16)<<16}function h(a){a.byteBuffer=new Int8Array(4160),a.accumulator32=0,a.shortBuffer=new Int16Array(2080),a.bitOffset=32,a.halfOffset=2048,a.endOfStreamReached=0,y(a)}function y(a){a.halfOffset>2030&&mr(a),pl(a,0),a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16}function I(a){a.bitOffset==32&&y(a)}function M(a){let j=32-a.bitOffset&7;if(j!=0&&Ne(a,j)!=0)throw"Corrupted padding bits"}function me(a){let j=2048;return a.endOfStreamReached!=0&&(j=a.tailBytes+1>>1),j-a.halfOffset}function Ee(a,j,b,q){if((a.bitOffset&7)!=0)throw"Unaligned copyBytes";for(;a.bitOffset!=32&&q!=0;)j[b++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,q--;if(q==0)return;let v=yo(me(a),q>>1);if(v>0){let P=a.halfOffset<<1,U=v<<1;j.set(a.byteBuffer.subarray(P,P+U),b),b+=U,q-=U,a.halfOffset+=v}if(q!=0){if(me(a)>0){for(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);q!=0;)j[b++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,q--;pl(a,0);return}for(;q>0;){let P=E_(a.input,j,b,q);if(P==-1)throw"Unexpected end of input";b+=P,q-=P}}}function be(a,j){let b=a.byteBuffer,q=j>>1,v=a.shortBuffer;for(let P=0;P<q;++P)v[P]=b[P*2]&255|(b[P*2+1]&255)<<8}let lt=new Int32Array(2048);function rt(a,j,b){for(let v=0;v<256;++v)a[v]=v&63,a[512+v]=v>>2,a[1792+v]=2+(v>>6);for(let v=0;v<128;++v)a[1024+v]=4*(j.charCodeAt(v)-32);for(let v=0;v<64;++v)a[1152+v]=v&1,a[1216+v]=2+(v&1);let q=1280;for(let v=0;v<19;++v){let P=v&3,U=b.charCodeAt(v)-32;for(let Q=0;Q<U;++Q)a[q++]=P}for(let v=0;v<16;++v)a[1792+v]=1,a[2032+v]=6;a[1792]=0,a[2047]=7;for(let v=0;v<256;++v)a[1536+v]=a[1792+v]<<3}rt(lt,` !! ! "#$##%#$&'##(#)#++++++++++((&*'##,---,---,-----,-----,-----&#'###.///.///./////./////./////&#'# `,"A/* ': & : $ \x81 @");function ut(){this.ringBuffer=new Int8Array(0),this.contextModes=new Int8Array(0),this.contextMap=new Int8Array(0),this.distContextMap=new Int8Array(0),this.distExtraBits=new Int8Array(0),this.output=new Int8Array(0),this.byteBuffer=new Int8Array(0),this.shortBuffer=new Int16Array(0),this.intBuffer=new Int32Array(0),this.rings=new Int32Array(0),this.blockTrees=new Int32Array(0),this.literalTreeGroup=new Int32Array(0),this.commandTreeGroup=new Int32Array(0),this.distanceTreeGroup=new Int32Array(0),this.distOffset=new Int32Array(0),this.runningState=0,this.nextRunningState=0,this.accumulator32=0,this.bitOffset=0,this.halfOffset=0,this.tailBytes=0,this.endOfStreamReached=0,this.metaBlockLength=0,this.inputEnd=0,this.isUncompressed=0,this.isMetadata=0,this.literalBlockLength=0,this.numLiteralBlockTypes=0,this.commandBlockLength=0,this.numCommandBlockTypes=0,this.distanceBlockLength=0,this.numDistanceBlockTypes=0,this.pos=0,this.maxDistance=0,this.distRbIdx=0,this.trivialLiteralContext=0,this.literalTreeIdx=0,this.commandTreeIdx=0,this.j=0,this.insertLength=0,this.contextMapSlice=0,this.distContextMapSlice=0,this.contextLookupOffset1=0,this.contextLookupOffset2=0,this.distanceCode=0,this.numDirectDistanceCodes=0,this.distancePostfixBits=0,this.distance=0,this.copyLength=0,this.maxBackwardDistance=0,this.maxRingBufferSize=0,this.ringBufferSize=0,this.expectedTotalSize=0,this.outputOffset=0,this.outputLength=0,this.outputUsed=0,this.ringBufferBytesWritten=0,this.ringBufferBytesReady=0,this.isEager=0,this.isLargeWindow=0,this.cdNumChunks=0,this.cdTotalSize=0,this.cdBrIndex=0,this.cdBrOffset=0,this.cdBrLength=0,this.cdBrCopied=0,this.cdChunks=new Array(0),this.cdChunkOffsets=new Int32Array(0),this.cdBlockBits=0,this.cdBlockMap=new Int8Array(0),this.input=null,this.ringBuffer=new Int8Array(0),this.rings=new Int32Array(10),this.rings[0]=16,this.rings[1]=15,this.rings[2]=11,this.rings[3]=4}let ct=null,Pt=new Int32Array(32),go=new Int32Array(32);function hO(a,j){if(qO(a)==0||_O(a)==0)throw"newData must be a direct read-only byte buffer";if(j.length>31)throw"sizeBits length must be at most "+31;for(let U=0;U<4;++U)if(j[U]!=0)throw"first "+4+" must be 0";let b=Pt,q=go;q.set(j.subarray(0,0+j.length),0);let v=0,P=a.length;for(let U=0;U<j.length;++U){b[U]=v;let Q=q[U];if(Q!=0){if(Q>=31)throw"newSizeBits values must be less than 31";if(v+=U<<Q,v<=0||v>P)throw"newSizeBits is inconsistent: overflow"}}for(let U=j.length;U<32;++U)b[U]=v;if(v!=P)throw"newSizeBits is inconsistent: underflow";ct=a}function bO(a,j,b,q,v,P){let U=TO(j+b);if(U.length!=a.length)throw"Corrupted brotli dictionary";let Q=0,ce=q.length;for(let pe=0;pe<ce;pe+=2){let re=q.charCodeAt(pe)-36,De=q.charCodeAt(pe+1)-36;for(let He=0;He<re;++He)U[Q]^=3,Q++;for(let He=0;He<De;++He)U[Q]^=236,Q++}for(let pe=0;pe<P.length;++pe)v[pe]=P.charCodeAt(pe)-65;a.set(U)}{let a=new Int8Array(122784),j=new Int32Array(25);bO(a,'wjnfgltmojefofewab`h`lgfgbwbpkltlmozpjwf`jwzlsfmivpwojhfeqfftlqhwf{wzfbqlufqalgzolufelqnallhsobzojufojmfkfosklnfpjgfnlqftlqgolmdwkfnujftejmgsbdfgbzpevookfbgwfqnfb`kbqfbeqlnwqvfnbqhbaofvslmkjdkgbwfobmgmftpfufmmf{w`bpfalwkslpwvpfgnbgfkbmgkfqftkbwmbnfOjmhaoldpjyfabpfkfognbhfnbjmvpfq$*#(klogfmgptjwkMftpqfbgtfqfpjdmwbhfkbufdbnfpffm`boosbwktfoosovpnfmvejonsbqwiljmwkjpojpwdllgmffgtbzptfpwilapnjmgboploldlqj`kvpfpobpwwfbnbqnzellghjmdtjoofbpwtbqgafpwejqfSbdfhmltbtbz-smdnlufwkbmolbgdjufpfoemlwfnv`keffgnbmzql`hj`lmlm`follhkjgfgjfgKlnfqvofklpwbib{jmel`ovaobtpofppkboeplnfpv`kylmf233&lmfp`bqfWjnfqb`faovfelvqtffheb`fklsfdbufkbqgolpwtkfmsbqhhfswsbpppkjsqllnKWNOsobmWzsfglmfpbufhffseobdojmhplogejufwllhqbwfwltmivnswkvpgbqh`bqgejofefbqpwbzhjoowkbweboobvwlfufq-`lnwbohpklsulwfgffsnlgfqfpwwvqmalqmabmgefooqlpfvqo+phjmqlof`lnfb`wpbdfpnffwdlog-isdjwfnubqzefowwkfmpfmggqlsUjft`lsz2-3!?,b=pwlsfopfojfpwlvqsb`h-djesbpw`pp<dqbznfbm%dw8qjgfpklwobwfpbjgqlbgubq#effoilkmqj`hslqwebpw$VB.gfbg?,a=sllqajoowzsfV-P-tllgnvpw1s{8JmelqbmhtjgftbmwtbooofbgX3^8sbvotbufpvqf\'+$ tbjwnbppbqnpdlfpdbjmobmdsbjg"..#ol`hvmjwqllwtbohejqntjef{no!plmdwfpw13s{hjmgqltpwlloelmwnbjopbefpwbqnbsp`lqfqbjmeoltabazpsbmpbzp7s{85s{8bqwpellwqfbotjhjkfbwpwfswqjslqd,obhftfbhwlogElqn`bpwebmpabmhufqzqvmpivozwbph2s{8dlbodqftpoltfgdfjg>!pfwp6s{8-ip<73s{je#+pllmpfbwmlmfwvafyfqlpfmwqffgeb`wjmwldjewkbqn2;s{`bnfkjooalogyllnuljgfbpzqjmdejoosfbhjmjw`lpw0s{8ib`hwbdpajwpqloofgjwhmftmfbq?"..dqltIPLMgvwzMbnfpbofzlv#olwpsbjmibyy`logfzfpejpkttt-qjphwbapsqfu23s{qjpf16s{Aovfgjmd033/abooelqgfbqmtjogal{-ebjqob`hufqpsbjqivmfwf`kje+"sj`hfujo\'+! tbqnolqgglfpsvoo/333jgfbgqbtkvdfpslwevmgavqmkqfe`foohfzpwj`hklvqolppevfo21s{pvjwgfboQPP!bdfgdqfzDFW!fbpfbjnpdjqobjgp;s{8mbuzdqjgwjsp :::tbqpobgz`bqp*8#~sks<kfoowbootklnyk9 ), #233kboo- B4s{8svpk`kbw3s{8`qft),?,kbpk46s{eobwqbqf#%%#wfoo`bnslmwlobjgnjppphjswfmwejmfnbofdfwpsolw733/  `lloeffw-sks?aq=fqj`nlpwdvjgafoogfp`kbjqnbwkbwln,jnd% ;1ov`h`fmw3338wjmzdlmfkwnopfoogqvdEQFFmlgfmj`h<jg>olpfmvooubpwtjmgQPP#tfbqqfozaffmpbnfgvhfmbpb`bsftjpkdvoeW109kjwppolwdbwfhj`haovqwkfz26s{$$*8*8!=npjftjmpajqgplqwafwbpffhW2;9lqgpwqffnboo53s{ebqnlupalzpX3^-$*8!SLPWafbqhjgp*8~~nbqzwfmg+VH*rvbgyk9\n.pjy....sqls$*8ojewW2:9uj`fbmgzgfaw=QPPsllomf`haoltW259gllqfuboW249ofwpebjolqbosloomlub`lopdfmf#lxplewqlnfwjooqlpp?k0=slvqebgfsjmh?wq=njmj*\x7F"+njmfyk9abqpkfbq33*8njoh#..=jqlmeqfggjphtfmwpljosvwp,ip,klozW119JPAMW139bgbnpffp?k1=iplm$/#$`lmwW129#QPPollsbpjbnllm?,s=plvoOJMFelqw`bqwW279?k2=;3s{"..?:s{8W379njhf975Ymj`fjm`kZlqhqj`fyk9\b$**8svqfnbdfsbqbwlmfalmg904Y\\le\\$^*8333/yk9\vwbmhzbqgaltoavpk965YIbub03s{ \x7F~ &@0&907YifeeF[SJ`bpkujpbdloepmltyk9rvfq-`pppj`hnfbwnjm-ajmggfookjqfsj`pqfmw905YKWWS.132elwltloeFMG#{al{967YALGZgj`h8 ~ f{jw906Yubqpafbw$~*8gjfw:::8bmmf~~?,Xj^-Obmdhn.^tjqfwlzpbggppfbobof{8 \n~f`klmjmf-lqd336*wlmziftppbmgofdpqlle333*#133tjmfdfbqgldpallwdbqz`vwpwzofwfnswjlm-{no`l`hdbmd\'+$-63s{Sk-Gnjp`bobmolbmgfphnjofqzbmvmj{gjp`*8~ gvpw`ojs*- 43s{.133GUGp4^=?wbsfgfnlj((*tbdffvqlskjolswpklofEBRpbpjm.15WobapsfwpVQO#avoh`llh8~ KFBGX3^*baaqivbm+2:;ofpkwtjm?,j=plmzdvzpev`hsjsf\x7F. "331*mgltX2^8X^8 Old#pbow \n\nabmdwqjnabwk*x 33s{ ~*8hl9\0effpbg=p9,,#X^8wloosovd+*x x #-ip$133sgvboalbw-ISD*8 ~rvlw*8 $*8  ~1327132613251324132;132:13131312131113101317131613151314131;131:130313021301130013071306130513041320132113221323133:133;133413351336133713301331133213332:::2::;2::42::52::62::72::02::12::22::32:;:2:;;2:;42:;52:;62:;72:;02:;12:;22:;32:4:2:4;2:442:452:462:472:402:412:422:432:5:2:5;2:542:552:562:572:502:512:522:532:6:2:6;2:642:652:662:672:602:612:622:632333231720:73333::::`lnln/Mpfpwffpwbsfqlwlglkb`f`bgbb/]lajfmg/Abbp/Aujgb`bpllwqlelqlplollwqb`vbogjilpjgldqbmwjslwfnbgfafbodlrv/Efpwlmbgbwqfpsl`l`bpbabilwlgbpjmlbdvbsvfpvmlpbmwfgj`fovjpfoobnbzlylmbbnlqsjpllaqb`oj`foolgjlpklqb`bpj<[<\\<Q<\\<R<P=l<\\=l=o=n<\\<Q<Y<S<R<R=n<T<[<Q<R<X<R=n<R<Z<Y<R<Q<T=i<q<\\<Y<Y<]=g<P=g<~=g=m<R<^=g<^<R<q<R<R<]<s<R<W<T<Q<T<L<H<q<Y<p=g=n=g<r<Q<T<P<X<\\<{<\\<x<\\<q=o<r<]=n<Y<t<[<Y<U<Q=o<P<P<N=g=o<Z5m5f4O5j5i4K5i4U5o5h4O5d4]4C5f4K5m5e5k5d5h5i5h5o4K5d5h5k4D4_4K5h4I5j5k5f4O5f5n4C5k5h4G5i4D5k5h5d5h5f4D5h4K5f4D5o4X5f4K5i4O5i5j4F4D5f5h5j4A4D5k5i5i4X5d4Xejqpwujgflojdkwtlqognfgjbtkjwf`olpfaob`hqjdkwpnbooallhpsob`fnvpj`ejfoglqgfqsljmwubovfofufowbaofalbqgklvpfdqlvstlqhpzfbqppwbwfwlgbztbwfqpwbqwpwzofgfbwksltfqsklmfmjdkwfqqlqjmsvwbalvwwfqnpwjwofwllopfufmwol`bowjnfpobqdftlqgpdbnfppklqwpsb`fel`vp`ofbqnlgfoaol`hdvjgfqbgjlpkbqftlnfmbdbjmnlmfzjnbdfmbnfpzlvmdojmfpobwfq`lolqdqffmeqlmw%bns8tbw`kelq`fsqj`fqvofpafdjmbewfqujpjwjppvfbqfbpafoltjmgf{wlwboklvqpobafosqjmwsqfppavjowojmhppsffgpwvgzwqbgfelvmgpfmpfvmgfqpkltmelqnpqbmdfbggfgpwjoonlufgwbhfmbalufeobpkej{fglewfmlwkfqujftp`kf`hofdboqjufqjwfnprvj`hpkbsfkvnbmf{jpwdljmdnlujfwkjqgabpj`sfb`fpwbdftjgwkoldjmjgfbptqlwfsbdfpvpfqpgqjufpwlqfaqfbhplvwkulj`fpjwfpnlmwktkfqfavjogtkj`kfbqwkelqvnwkqffpslqwsbqwz@oj`holtfqojufp`obppobzfqfmwqzpwlqzvpbdfplvmg`lvqwzlvq#ajqwkslsvswzsfpbssozJnbdfafjmdvssfqmlwfpfufqzpkltpnfbmpf{wqbnbw`kwqb`hhmltmfbqozafdbmpvsfqsbsfqmlqwkofbqmdjufmmbnfgfmgfgWfqnpsbqwpDqlvsaqbmgvpjmdtlnbmebopfqfbgzbvgjlwbhfptkjof-`ln,ojufg`bpfpgbjoz`kjogdqfbwivgdfwklpfvmjwpmfufqaqlbg`lbpw`lufqbssofejofp`z`ofp`fmfsobmp`oj`htqjwfrvffmsjf`ffnbjoeqbnflogfqsklwlojnjw`b`kf`jujop`boffmwfqwkfnfwkfqfwlv`kalvmgqlzbobphfgtklofpjm`fpwl`h#mbnfebjwkkfbqwfnswzleefqp`lsfltmfgnjdkwboavnwkjmhaollgbqqbznbilqwqvpw`bmlmvmjlm`lvmwubojgpwlmfPwzofOldjmkbsszl``vqofew9eqfpkrvjwfejonpdqbgfmffgpvqabmejdkwabpjpklufqbvwl8qlvwf-kwnonj{fgejmboZlvq#pojgfwlsj`aqltmbolmfgqbtmpsojwqfb`kQjdkwgbwfpnbq`krvlwfdllgpOjmhpglvawbpzm`wkvnaboolt`kjfezlvwkmlufo23s{8pfqufvmwjokbmgp@kf`hPsb`frvfqzibnfpfrvbowtj`f3/333Pwbqwsbmfoplmdpqlvmgfjdkwpkjewtlqwkslpwpofbgptffhpbuljgwkfpfnjofpsobmfpnbqwboskbsobmwnbqhpqbwfpsobzp`objnpbofpwf{wppwbqptqlmd?,k0=wkjmd-lqd,nvowjkfbqgSltfqpwbmgwlhfmplojg+wkjpaqjmdpkjsppwbeewqjfg`boopevoozeb`wpbdfmwWkjp#,,..=bgnjmfdzswFufmw26s{8Fnbjowqvf!`qlpppsfmwaoldpal{!=mlwfgofbuf`kjmbpjyfpdvfpw?,k7=qlalwkfbuzwqvf/pfufmdqbmg`qjnfpjdmpbtbqfgbm`fskbpf=?"..fm\\VP% 0:8133s{\\mbnfobwjmfmilzbib{-bwjlmpnjwkV-P-#klogpsfwfqjmgjbmbu!=`kbjmp`lqf`lnfpgljmdsqjlqPkbqf2::3pqlnbmojpwpibsbmeboopwqjboltmfqbdqff?,k1=bavpfbofqwlsfqb!.,,T`bqgpkjoopwfbnpSklwlwqvwk`ofbm-sks<pbjmwnfwboolvjpnfbmwsqlleaqjfeqlt!=dfmqfwqv`hollhpUbovfEqbnf-mfw,..= ?wqz#x ubq#nbhfp`lpwpsobjmbgvowrvfpwwqbjmobalqkfosp`bvpfnbdj`nlwlqwkfjq163s{ofbpwpwfsp@lvmw`lvogdobpppjgfpevmgpklwfobtbqgnlvwknlufpsbqjpdjufpgvw`kwf{bpeqvjwmvoo/\x7F\x7FX^8wls!= ?"..SLPW!l`fbm?aq,=eollqpsfbhgfswk#pjyfabmhp`bw`k`kbqw13s{8bojdmgfboptlvog63s{8vqo>!sbqhpnlvpfNlpw#---?,bnlmdaqbjmalgz#mlmf8abpfg`bqqzgqbewqfefqsbdf\\klnf-nfwfqgfobzgqfbnsqlufiljmw?,wq=gqvdp?"..#bsqjojgfboboofmf{b`welqwk`lgfpoldj`Ujft#pffnpaobmhslqwp#+133pbufg\\ojmhdlbopdqbmwdqffhklnfpqjmdpqbwfg03s{8tklpfsbqpf+*8!#Aol`hojmv{ilmfpsj{fo$*8!=*8je+.ofewgbujgklqpfEl`vpqbjpfal{fpWqb`hfnfmw?,fn=abq!=-pq`>wltfqbow>!`baofkfmqz17s{8pfwvsjwbozpkbqsnjmlqwbpwftbmwpwkjp-qfpfwtkffodjqop,`pp,233&8`ovappwveeajaofulwfp#2333hlqfb~*8 abmgprvfvf>#x~8;3s{8`hjmdx \n\nbkfbg`ol`hjqjpkojhf#qbwjlpwbwpElqn!zbkll*X3^8Balvwejmgp?,k2=gfavdwbphpVQO#>`foop~*+*821s{8sqjnfwfoopwvqmp3{533-isd!psbjmafb`kwb{fpnj`qlbmdfo..=?,djewppwfuf.ojmhalgz-~*8 \nnlvmw#+2::EBR?,qldfqeqbmh@obpp1;s{8effgp?k2=?p`lwwwfpwp11s{8gqjmh*#\x7F\x7F#oftjppkboo 30:8#elq#olufgtbpwf33s{8ib9npjnlm?elmwqfsoznffwpvmwfq`kfbswjdkwAqbmg*#">#gqfpp`ojspqllnplmhfznlajonbjm-Mbnf#sobwfevmmzwqffp`ln,!2-isdtnlgfsbqbnPWBQWofew#jggfm/#132*8 ~ elqn-ujqvp`kbjqwqbmptlqpwSbdfpjwjlmsbw`k?".. l.`b`ejqnpwlvqp/333#bpjbmj((*xbglaf$*X3^jg>23alwk8nfmv#-1-nj-smd!hfujm`lb`k@kjogaqv`f1-isdVQO*(-isd\x7Fpvjwfpoj`fkbqqz213!#ptffwwq= mbnf>gjfdlsbdf#ptjpp..= eee8!=Old-`ln!wqfbwpkffw*#%%#27s{8poffsmwfmwejofgib9ojg>!`Mbnf!tlqpfpklwp.al{.gfowb %ow8afbqp97;Y?gbwb.qvqbo?,b=#psfmgabhfqpklsp>#!!8sks!=`wjlm20s{8aqjbmkfoolpjyf>l>&1E#iljmnbzaf?jnd#jnd!=/#eipjnd!#!*X3^NWlsAWzsf!mftozGbmph`yf`kwqbjohmltp?,k6=ebr!=yk.`m23*8 .2!*8wzsf>aovfpwqvozgbujp-ip$8= ?"pwffo#zlv#k1= elqn#ifpvp233&#nfmv- \n tbofpqjphpvnfmwggjmda.ojhwfb`kdje!#ufdbpgbmphffpwjpkrjspvlnjplaqfgfpgffmwqfwlglpsvfgfb/]lpfpw/Mwjfmfkbpwblwqlpsbqwfglmgfmvfulkb`fqelqnbnjpnlnfilqnvmglbrv/Ag/Abpp/_olbzvgbef`kbwlgbpwbmwlnfmlpgbwlplwqbppjwjlnv`klbklqbovdbqnbzlqfpwlpklqbpwfmfqbmwfpelwlpfpwbpsb/Apmvfubpbovgelqlpnfgjlrvjfmnfpfpslgfq`kjofpfq/Muf`fpgf`jqilp/Efpwbqufmwbdqvslkf`klfoolpwfmdlbnjdl`lpbpmjufodfmwfnjpnbbjqfpivojlwfnbpkb`jbebulqivmjlojaqfsvmwlavfmlbvwlqbaqjoavfmbwf{wlnbqylpbafqojpwbovfdl`/_nlfmfqlivfdlsfq/Vkbafqfpwlzmvm`bnvifqubolqevfqbojaqldvpwbjdvboulwlp`bplpdv/Absvfglplnlpbujplvpwfggfafmml`kfavp`bebowbfvqlppfqjfgj`kl`vqpl`obuf`bpbpof/_msobylobqdllaqbpujpwbbslzlivmwlwqbwbujpwl`qfbq`bnslkfnlp`jm`l`bqdlsjplplqgfmkb`fm/Mqfbgjp`lsfgql`fq`bsvfgbsbsfonfmlq/Vwjo`obqlilqdf`boofslmfqwbqgfmbgjfnbq`bpjdvffoobppjdol`l`kfnlwlpnbgqf`obpfqfpwlmj/]lrvfgbsbpbqabm`lkjilpujbifsbaol/Epwfujfmfqfjmlgfibqelmgl`bmbomlqwfofwqb`bvpbwlnbqnbmlpovmfpbvwlpujoobufmglsfpbqwjslpwfmdbnbq`loofubsbgqfvmjglubnlpylmbpbnalpabmgbnbqjbbavplnv`kbpvajqqjlibujujqdqbgl`kj`bboo/Ailufmgj`kbfpwbmwbofppbojqpvfolsfplpejmfpoobnbavp`l/Epwboofdbmfdqlsobybkvnlqsbdbqivmwbglaofjpobpalopbab/]lkbaobov`kb/mqfbgj`fmivdbqmlwbpuboofboo/M`bqdbglolqbabilfpw/Edvpwlnfmwfnbqjlejqnb`lpwlej`kbsobwbkldbqbqwfpofzfpbrvfonvpflabpfpsl`lpnjwbg`jfol`kj`lnjfgldbmbqpbmwlfwbsbgfafpsobzbqfgfppjfwf`lqwf`lqfbgvgbpgfpflujfilgfpfbbdvbp%rvlw8glnbjm`lnnlmpwbwvpfufmwpnbpwfqpzpwfnb`wjlmabmmfqqfnlufp`qloovsgbwfdolabonfgjvnejowfqmvnafq`kbmdfqfpvowsvaoj`p`qffm`kllpfmlqnbowqbufojppvfpplvq`fwbqdfwpsqjmdnlgvofnlajofptjw`ksklwlpalqgfqqfdjlmjwpfoepl`jbob`wjuf`lovnmqf`lqgelooltwjwof=fjwkfqofmdwkebnjozeqjfmgobzlvwbvwklq`qfbwfqfujftpvnnfqpfqufqsobzfgsobzfqf{sbmgsloj`zelqnbwglvaofsljmwppfqjfpsfqplmojujmdgfpjdmnlmwkpelq`fpvmjrvftfjdkwsflsoffmfqdzmbwvqfpfbq`kejdvqfkbujmd`vpwlnleepfwofwwfqtjmgltpvanjwqfmgfqdqlvspvsolbgkfbowknfwklgujgflpp`klloevwvqfpkbgltgfabwfubovfpLaif`wlwkfqpqjdkwpofbdvf`kqlnfpjnsofmlwj`fpkbqfgfmgjmdpfbplmqfslqwlmojmfprvbqfavwwlmjnbdfpfmbaofnlujmdobwfpwtjmwfqEqbm`fsfqjlgpwqlmdqfsfbwOlmglmgfwbjoelqnfggfnbmgpf`vqfsbppfgwlddofsob`fpgfuj`fpwbwj``jwjfppwqfbnzfooltbwwb`hpwqffweojdkwkjggfmjmel!=lsfmfgvpfevouboofz`bvpfpofbgfqpf`qfwpf`lmggbnbdfpslqwpf{`fswqbwjmdpjdmfgwkjmdpfeef`wejfogppwbwfpleej`fujpvbofgjwlqulovnfQfslqwnvpfvnnlujfpsbqfmwb``fppnlpwoznlwkfq!#jg>!nbqhfwdqlvmg`kbm`fpvqufzafelqfpznalonlnfmwpsff`knlwjlmjmpjgfnbwwfq@fmwfqlaif`wf{jpwpnjggofFvqlsfdqltwkofdb`znbmmfqfmlvdk`bqffqbmptfqlqjdjmslqwbo`ojfmwpfof`wqbmgln`olpfgwlsj`p`lnjmdebwkfqlswjlmpjnsozqbjpfgfp`bsf`klpfm`kvq`kgfejmfqfbplm`lqmfqlvwsvwnfnlqzjeqbnfsloj`fnlgfopMvnafqgvqjmdleefqppwzofphjoofgojpwfg`boofgpjoufqnbqdjmgfofwfafwwfqaqltpfojnjwpDolabopjmdoftjgdfw`fmwfqavgdfwmltqbs`qfgjw`objnpfmdjmfpbefwz`klj`fpsjqjw.pwzofpsqfbgnbhjmdmffgfgqvppjbsofbpff{wfmwP`qjswaqlhfmbooltp`kbqdfgjujgfeb`wlqnfnafq.abpfgwkflqz`lmejdbqlvmgtlqhfgkfosfg@kvq`kjnsb`wpklvogbotbzpoldl!#alwwlnojpw!=*xubq#sqfej{lqbmdfKfbgfq-svpk+`lvsofdbqgfmaqjgdfobvm`kQfujftwbhjmdujpjlmojwwofgbwjmdAvwwlmafbvwzwkfnfpelqdlwPfbq`kbm`klqbonlpwolbgfg@kbmdfqfwvqmpwqjmdqfolbgNlajofjm`lnfpvssozPlvq`flqgfqpujftfg%maps8`lvqpfBalvw#jpobmg?kwno#`llhjfmbnf>!bnbylmnlgfqmbguj`fjm?,b=9#Wkf#gjboldklvpfpAFDJM#Nf{j`lpwbqwp`fmwqfkfjdkwbggjmdJpobmgbppfwpFnsjqfP`kllofeelqwgjqf`wmfbqoznbmvboPfof`w- Lmfiljmfgnfmv!=SkjojsbtbqgpkbmgofjnslqwLeej`fqfdbqgphjoopmbwjlmPslqwpgfdqfftffhoz#+f-d-afkjmggl`wlqolddfgvmjwfg?,a=?,afdjmpsobmwpbppjpwbqwjpwjppvfg033s{\x7F`bmbgbbdfm`zp`kfnfqfnbjmAqbyjopbnsofoldl!=afzlmg.p`bofb``fswpfqufgnbqjmfEllwfq`bnfqb?,k2= \\elqn!ofbufppwqfpp!#,= -dje!#lmolbgolbgfqL{elqgpjpwfqpvqujuojpwfmefnbofGfpjdmpjyf>!bssfbowf{w!=ofufopwkbmhpkjdkfqelq`fgbmjnbobmzlmfBeqj`bbdqffgqf`fmwSflsof?aq#,=tlmgfqsqj`fpwvqmfg\x7F\x7F#x~8nbjm!=jmojmfpvmgbztqbs!=ebjofg`fmpvpnjmvwfafb`lmrvlwfp263s{\x7Ffpwbwfqfnlwffnbjo!ojmhfgqjdkw8pjdmboelqnbo2-kwnopjdmvssqjm`feolbw9-smd!#elqvn-B``fppsbsfqpplvmgpf{wfmgKfjdkwpojgfqVWE.;!%bns8#Afelqf-#TjwkpwvgjlltmfqpnbmbdfsqlejwiRvfqzbmmvbosbqbnpalvdkwebnlvpdlldofolmdfqj((*#xjpqbfopbzjmdgf`jgfklnf!=kfbgfqfmpvqfaqbm`ksjf`fpaol`h8pwbwfgwls!=?qb`jmdqfpjyf..%dw8sb`jwzpf{vboavqfbv-isd!#23/333lawbjmwjwofpbnlvmw/#Jm`-`lnfgznfmv!#ozqj`pwlgbz-jmgffg`lvmwz\\oldl-EbnjozollhfgNbqhfwopf#jeSobzfqwvqhfz*8ubq#elqfpwdjujmdfqqlqpGlnbjm~fopfxjmpfqwAold?,ellwfqoldjm-ebpwfqbdfmwp?algz#23s{#3sqbdnbeqjgbzivmjlqgloobqsob`fg`lufqpsovdjm6/333#sbdf!=alpwlm-wfpw+bubwbqwfpwfg\\`lvmwelqvnpp`kfnbjmgf{/ejoofgpkbqfpqfbgfqbofqw+bssfbqPvanjwojmf!=algz!= )#WkfWklvdkpffjmdifqpfzMftp?,ufqjezf{sfqwjmivqztjgwk>@llhjfPWBQW#b`qlpp\\jnbdfwkqfbgmbwjufsl`hfwal{!= Pzpwfn#Gbujg`bm`fqwbaofpsqlufgBsqjo#qfboozgqjufqjwfn!=nlqf!=albqgp`lolqp`bnsvpejqpw#\x7F\x7F#X^8nfgjb-dvjwbqejmjpktjgwk9pkltfgLwkfq#-sks!#bppvnfobzfqptjoplmpwlqfpqfojfeptfgfm@vpwlnfbpjoz#zlvq#Pwqjmd Tkjowbzolq`ofbq9qfplqweqfm`kwklvdk!*#(#!?algz=avzjmdaqbmgpNfnafqmbnf!=lssjmdpf`wlq6s{8!=upsb`fslpwfqnbilq#`leeffnbqwjmnbwvqfkbssfm?,mbu=hbmpbpojmh!=Jnbdfp>ebopftkjof#kpsb`f3%bns8# Jm##sltfqSlophj.`lolqilqgbmAlwwlnPwbqw#.`lvmw1-kwnomftp!=32-isdLmojmf.qjdkwnjoofqpfmjlqJPAM#33/333#dvjgfpubovf*f`wjlmqfsbjq-{no!##qjdkwp-kwno.aol`hqfdF{s9klufqtjwkjmujqdjmsklmfp?,wq=vpjmd# \nubq#=$*8 \n?,wg= ?,wq= abkbpbaqbpjodbofdlnbdzbqslophjpqsphj4]4C5d\bTA\nzk\vBl\bQ\x7F\vUmGx\bSM\nmC\bTA wQ\nd}\bW@\bTl\bTF i@ cT\vBM\v|jBV qw cC\bWI\npa fM\n{Z{X\bTF\bVV\bVK \x7FmkF []\bPm\bTv\nsI\vpg [I\bQpmx\v_W\n^M\npe\vQ}\vGu\nel\npeChBV\bTA So\nzk\vGL\vxD\nd[JzMY\bQpli\nfl\npC{BNt\vwT i_\bTgQQ\n|p\vXN\bQS\vxDQC\bWZ pD\vVS\bTWNtYh\nzuKjN} wr Ha\n_D j`\vQ}\vWp\nxZ{c ji BU\nbDa| Tn pV\nZd\nmC\vEV{X c} To\bWl\bUd IQ cg\vxs\nXW wR\vek c} ]y Jn\nrp\neg\npV\nz\\{W\npl\nz\\\nzU Pc `{\bV@\nc|\bRw i_\bVb\nwX HvSu\bTF\v_W\vWs\vsIm\x7F\nTT\ndc US }f iZ\bWz c}MD Be iD\v@@\bTl\bPv }tSwM`\vnU kW\ved\nqo\vxY A|\bTz\vy`BRBM iaXU\nyun^ fL iI\nXW fD\bWz\bW@ yj \x7Fm av BN\vb\\ pD\bTf\nY[ Jn\bQy [^\vWc\vyuDlCJ\vWj\vHR `V\vuW Qy\np@\vGuplJm\bW[\nLP\nxC\n`m wQui\x7FR\nbI wQ BZ WVBR\npg cgtiCW\n_y Rg\bQa\vQB\vWc\nYble\ngESu\nL[ Q\x7F ea dj\v]W\nb~M` wL\bTV\bVH\nt\x7F\npl |bs_\bU|\bTaoQlvSkM`\bTv\vK}\nfl cCoQBR Hk |d\bQp HK BZ\vHR\bPv\vLx\vEZ\bT\x7F\bTv iDoDMU\vwBSuk`St\ntC Pl Kg\noi jY\vxYh}\nzk\bWZ \x7Fm\ve` TB fE\nzk `zYh\nV| HK AJ AJ\bUL p\\ ql\nYcKd\nfyYh [I\vDgJm\n]n\nlb\bUd\n{Z lu fsoQ\bTWJm\vwB eaYhBC sb Tn\nzU\n_y\vxY Q]\ngwmt O\\\ntb\bWW\bQy mI V[\ny\\\naB\vRb wQ\n]QQJ\bWg\vWa\bQj\ntC\bVH\nYm\vxs\bVK\nel\bWI\vxYCq\ntR\vHV\bTl\bVw ay\bQa\bVV }t dj\nr| p\\ wR\n{i\nTT [I i[ AJ\vxs\v_W d{\vQ} cg Tz A| Cj\vLmN}m\x7F\nbK dZ p\\ `V sV\np@ iD wQ\vQ}\bTfkaJm\v@@\bV` zp\n@NSw iI cg\noiSu\bVwloCy c}\vb\\ sUBA\bWI\bTf\nxS Vp\nd|\bTV\vbC NoJu\nTC |`\n{Z D]\bU| c}lm\bTl Bv Pl c}\bQp \x7Fm\nLk kj\n@NSbKO j_ p\\\nzU\bTl\bTg\bWI cfXO\bWW\ndzli BN\nd[\bWOMD\vKC dj I_\bVV\ny\\\vLmxl xB kV\vb\\\vJW\vVS Vx\vxD d{MD\bTa |`\vPzR}\vWsBM\nsICN\bTaJm\npe i_\npV\nrh Rd Hv\n~A\nxR\vWh\vWk\nxS\vAz\vwX\nbIoQ fw\nqI\nV|\nunz\x7F\vpg d\\\voA{D i_xB\bT\x7F `Vqr TTg]CA\vuR VJ T`\npw\vRb I_\nCxRo\vsICjKh Bv WVBBoD{D\nhcKm\v^R QE\n{I\np@\nc|Gt c}Dl\nzUqN sVk} Hh\v|j\nqou| Q]\vek\x7FZM`St\npe dj\bVG\veE \x7Fm\vWc|I\n[W fL\bT\x7F BZSu\vKaCqNtY[\nqI\bTv fM i@ }fB\\ Qy\vBl\bWgXDkc\vx[\bVV Q] \x7Fa Py\vxD\nfI }foD dj SGls ~DCN\n{Z \\v\n_D\nhc\vx_C[ AJ\nLM VxCI bj c^ cF\ntCSx wrXA\bU\\ |a\vK\\\bTV\bVj\nd| fsCX\ntb\bRw Vx AE A|\bT\x7FNt\vDg Vc\bTld@\npo \x7FM cF\npe iZ Bo\bSq\nfHl`\bTx\bWf HE\vF{ cO fD\nlm\vfZ\nlm\veU dGBH\bTV SiMW\nwX\nz\\ \\cCX\nd} l}\bQp\bTV F~\bQ\x7F `i\ng@nO\bUd\bTl\nL[ wQ ji\ntC |J\nLU\naB\vxYKj AJuN i[\npeSk\vDg\vx]\bVb\bVV\nea kV\nqI\bTaSk\nAO pD\ntb\nts\nyi\bVg i_\v_W\nLkNt yj fMR\x7F iI\bTl\vwX sV\vMl\nyu AJ\bVjKO WV\vA}\vW\x7F\nrp iD\v|olv\vsIBM d~ CU\bVbeV\npC\vwT j` c}\vxs\vps\vvh WV\vGg\vAe\vVK\v]W rg\vWcF` Br\vb\\ dZ\bQp\nqIkF\nLk\vAR\bWI\bTg bs dw\n{L\n_y iZ\bTA lg\bVV\bTl dk\n`k a{ i_{Awj wN\v@@\bTe i_\n_D wL\nAH\viK\vek\n[] p_ yj\bTv US [r\n{I\npsGt\vVK\nplS}\vWP |dMD\vHV\bT\x7FR}M`\bTV\bVHlvCh\bW[Ke R{\v^R ab BZ VA B`\nd|\nhsKe BeOi R{ d\\nB\bWZ dZ VJOs \x7FmuQ\vhZQ@QQ\nfI\bW[B\\li\nzU\nMdM`\nxS\bVV\n\\}\vxD \x7Fm\bTpIS\nc| kVi~ V{\vhZ |b\bWt\n@R\voA\vnU\bWI ea B` iD c} TzBR\vQBNj CP [I\bTv `WuN\vpg\vpg\vWc iT bs wL U_ c\\ |h\vKa Nr fL\nq|\nzu\nz\\ Nr\bUg |bm`\bTv\nyd\nrp\bWf UXBV\nzk\nd} wQ }fCe\ved\bTW\bSB\nxU cn\bTb\ne\x7F a\\ SG\bU|\npV\nN\\Kn\vnU At pD\v^R\vIrb[ R{ dE\vxD\vWK\vWA\bQL\bW@Su\bUd\nDM PcCADloQ Hswiub\n\x7Fa\bQpOb\nLP\bTlY[\vK} AJ\bQ\x7Fn^\vsA\bSM\nqM\bWZ\n^W\vz{S| fD\bVK\bTv\bPvBB CPdF id\vxsmx\vws cC\ntC ycM`\vW\x7F\nrh\bQp\vxD\\o\nsI_k\nzukF fDXsXO jp\bTvBS{B Br\nzQ\nbI c{BDBVnO\bTF caJd fL PV I_\nlK`o wX\npa gu\bP}{^\bWf\n{I BN\npaKl\vpg cn fL\vvhCq\bTl\vnU\bSqCm wR\bUJ\npe\nyd\nYgCy\vKW fD\neaoQ j_ BvnM\vID\bTa\nzApl\n]n\bTa R{ fr\n_y\bUg{Xkk\vxD|Ixl\nfyCe\vwB\nLk\vd]\noi\n}h Q]\npe\bVwHkOQ\nzk AJ\npV\bPv\ny\\ A{Oi\bSBXA\veE jp\nq} iDqN\v^R \x7Fm iZ Br\bVg\noi\n\\X U_\nc|\vHV\bTf Tn\\N\\N\nuBlv\nyu Td\bTf\bPL\v]W dG\nA`\nw^\ngI\npe dw\nz\\ia\bWZ cFJm\n{Z\bWO_kDfRR d\\\bVV\vxsBNtilm Td ]y\vHV So\v|jXX A|\vZ^\vGu\bTWM`kF\vhZ\vVK dG\vBl ay\nxUqEnO\bVw\nqICX\ne\x7F Pl\bWO\vLm dLuHCm dTfn\vwBka\vnU\n@M\nyT Hv \\}Kh d~Yhk}\neR d\\\bWI |b HK iD\bTWMY\npl\bQ_ wr\vAx HE\bTg\bSqvp\vb\\\bWO\nOl\nsI\nfy\vID \\c\n{Z\n^~\npe\nAO TT\vxvk_\bWO\v|j\vwB Qy i@ Pl Ha dZk}ra UT\vJc\ved\np@ QN\nd| kj HkM`\noi wr d\\\nlq\no_\nlb\nL[ acBBBHCm\npl IQ\bVK\vxs\n`e\viK\npaOi US\bTp fD\nPGkkXA\nz\\\neg\vWh wRqN\nqS cnlo\nxS\n^W BU\nt\x7F HE p\\ fF fw\bVV\bW@ ak\vVKls VJ\bVV\veE\\o\nyX\nYmM`lL\nd|\nzk A{sE wQXT\nt\x7F Pl ]y\vwT{pMD\vb\\ Q]Kj Jn\nAH\vRb BU HK \\c\nfIm\x7F\nqM\n@R So\noiBT Hv\n_yKh BZ ]i\bUJ V{Sr\nbI\vGg a_\bTR\nfI\nfl [K IIS|\vuW iI\bWI\nqI\v|jBV\bVg\bWZkF\vx]\bTA ab fr i@ Jd Jd\vps\nAO\bTaxu iD\nzk |d |`\bW[ lP dG\bVV\vw}\vqO i[\bQ\x7F\bTz\vVF wNts dw\bTv\neS\ngi NryS\npe\bVV\bSq\n`m yj BZ\vWX\bSB c\\\nUR [J c_nM\bWQ\vAx\nMd Brui\vxY\bSM\vWc\v|j\vxs }Q BO\bPL\bWW fM\nAO Pc\veUe^\bTg\nqI ac\bPv cFoQ Q\x7F\vhZka\nz\\ iK BU\n`k CPS|M`\n{I S{_O BZZiSk ps p\\\nYu\n]s\nxC\bWt\nbD kV\vGuyS\nqA [r\neKM` dZlL\bUg\bTl\nbD US\vb\\ pV\nccS\\ ct `z\bPL\vWs\nA`\neg\bSquECR\vDg `W\vz{\vWcSkSk bW\bUg ea\nxZ iI UX VJ\nqn S{\vRb\bTQ\nplGt\vuWuj\npF\nqI fL [I iaXO\nyu\vDg\ved q{VG\bQ\x7Fka Vj kV xB\nd|\np@ QN Pc ps]j kV oU\bTp\nzUnB\vB] a{\bV@\n]nm` cz R{m`\bQa\vwT\bSMMYqN dj~s\vQ}MY\vMB Bv wR\bRg\vQ} ql\vKC\nrmxuCC\vwB\vvh BqXq\npV i_ObuE\nbd\nqo\v{i\nC~ BL\veEuH\bVjEyGz\vzR\v{i cf\n{Z\n]nXA\vGu\vnU hS\vGI\nCc HE\bTA HBBHCj\nCc\bTF HE\nXI A{\bQ\x7F c\\\vmO\vWX\nfH\np@MY\bTF\nlK Bt\nzU TTKm\vwT\npV\ndt\vyI Vx Q\x7F Rg Td\nzU\bRS\nLM wAnM Tn\ndS ]g\nLc\vwB }t [I CPkX\vFm\vhZm\x7F i[\np@\vQ}\vW\x7F |d\nMO\nMd f_ fD cJ Hz\vRb io PyY[\nxU ct\v@@ ww\bPvBMFF\ntbv|\vKm Bq BqKh`o\nZdXU i] |` StB\\\bQ\x7F\v_W TJ\nqI |a A{\vuPMD Pl\nxR fL\vws c{ d\\\bV`\neg HKkc\nd|\bVV\ny\\kc i]\bVG `V ss I_ AE bs du\nel pD\vW\x7F\nqslv\bSMZi\vVKia\vQB Q\x7F\n{Z\bPt\vKl\nlK\nhs\ndS\bVKmf\nd^ kV cO\nc|\bVH \\]\bTv\bSq mI\vDg VJ cn\ny\\\bVg\bTv\nyX\bTF ]]\bTp\noi\nhs\veU\nBf djMr\n|p \\g ]r\bVb{D\nd[XN fM O\\s_ cf iZXN\vWc qv\n`m U^oD\nd|\vGg dE\vwflou}\nd|oQ `iOi\vxD\ndZ\nCxYw\nzk\ntb\ngw yj B`\nyX\vps\ntC\vpP\vqw\bPu\bPX Dm\npwNj ss aG\vxs\bPt\noLGz Ok i@ i]eC IQ ii dj\v@J |duh\bWZ\veU\vnU\bTa cCg]\nzkYh\bVK\nLU\np@\ntb\ntR Cj\vNP i@\bP{\n\\}\n{c\nwX fL\bVG c{ |` AJ |C fDln |d bs\nqI{B\vAx\np@\nzk\vRbOs\vWSe^\vD_ Bv\vWd\bVb\vxs\veE\bRw\n]n\n|p\vg| fwkc\bTIka\n\\TSp ju\vps\npeu|\vGr\bVe CU]MXU\vxD\bTa IQ\vWq CU am dj\bSoSw\vnUCh Q]s_\bPt fS\bTa \\}\n@OYc UZ\bTx\npe\vnU\nzU |} iD\nz\\\bSM\vxDBR\nzQ QN]MYh\nLP\vFm\vLXvc\vqlka HK\bVb\ntC\nCy\bTv\nuVoQ `z [I B`\vRb yj sb\vWs\bTl kV\ved\ne\x7FlL\vxN \x7Fm\nJn jY\vxD\bVb\bSq\vyu wL\vXL\bTA pg At nDXX wR\npl\nhwyS\nps cO\bW[\v|jXN sV p\\ Be\nb~\nAJ\n]ek`qN dw WV HE\vEVJz id B` zhE] fD\bTgqN\bTa jaCv\bSM\nhc\bUet_ ieg] wQ\nPn\bVB jw\bVg\vbE BZ\vRH\bP{ jp\n\\} a_ cC |a\vD] BZ i[ fD\vxW\no_ d\\\n_D\ntb \\c AJ\nlKoQlo\vLx\vM@\bWZKn\vpg\nTi\nIv\n|r\v@}JzLmWhk}ln\vxD\n]sgc\vps Br\bTW\vBMtZ\nBYDW jf\vSWC}\nqo dE mv IQ\bPP\bUblvBC\nzQ [I\vgl\nig\bUsBT\vbC\bSq sU iW\nJn SY HK rg\npV\vID\v|jKO `S |a`vbmglfmujbqnbgqjgavp`bqjmj`jlwjfnslslqrvf`vfmwbfpwbglsvfgfmivfdlp`lmwqbfpw/Mmmlnaqfwjfmfmsfqejonbmfqbbnjdlp`jvgbg`fmwqlbvmrvfsvfgfpgfmwqlsqjnfqsqf`jlpfd/Vmavfmlpuloufqsvmwlppfnbmbkba/Abbdlpwlmvfulpvmjglp`bqolpfrvjslmj/]lpnv`klpbodvmb`lqqfljnbdfmsbqwjqbqqjabnbq/Abklnaqffnsoflufqgbg`bnajlnv`kbpevfqlmsbpbglo/Amfbsbqf`fmvfubp`vqplpfpwbabrvjfqlojaqlp`vbmwlb``fplnjdvfoubqjlp`vbwqlwjfmfpdqvslppfq/Mmfvqlsbnfgjlpeqfmwfb`fq`bgfn/Mplefqwb`l`kfpnlgfoljwbojbofwqbpbod/Vm`lnsqb`vbofpf{jpwf`vfqslpjfmglsqfmpboofdbqujbifpgjmfqlnvq`jbslgq/Msvfpwlgjbqjlsvfaolrvjfqfnbmvfosqlsjl`qjpjp`jfqwlpfdvqlnvfqwfevfmwf`fqqbqdqbmgffef`wlsbqwfpnfgjgbsqlsjbleqf`fwjfqqbf.nbjoubqjbpelqnbpevwvqllaifwlpfdvjqqjfpdlmlqnbpnjpnlp/Vmj`l`bnjmlpjwjlpqby/_mgfajglsqvfabwlofglwfm/Abifp/Vpfpsfql`l`jmblqjdfmwjfmgb`jfmwl`/Mgjykbaobqpfq/Abobwjmbevfqybfpwjoldvfqqbfmwqbq/E{jwlo/_sfybdfmgbu/Agflfujwbqsbdjmbnfwqlpibujfqsbgqfpe/M`jo`bafyb/Mqfbppbojgbfmu/Alibs/_mbavplpajfmfpwf{wlpoofubqsvfgbmevfqwf`ln/Vm`obpfpkvnbmlwfmjglajoablvmjgbgfpw/Mpfgjwbq`qfbgl<X<W=c=k=n<R<V<\\<V<T<W<T=a=n<R<^=m<Y<Y<_<R<S=l<T=n<\\<V<Y=e<Y=o<Z<Y<v<\\<V<]<Y<[<]=g<W<R<Q<T<~=m<Y<S<R<X<A=n<R=n<R<P=k<Y<P<Q<Y=n<W<Y=n=l<\\<[<R<Q<\\<_<X<Y<P<Q<Y<x<W=c<s=l<T<Q<\\=m<Q<T=i=n<Y<P<V=n<R<_<R<X<^<R=n=n<\\<P<M<D<|<P<\\=c<K=n<R<^<\\=m<^<\\<P<Y<P=o<N<\\<V<X<^<\\<Q<\\<P=a=n<T=a=n=o<~<\\<P=n<Y=i<S=l<R=n=o=n<Q<\\<X<X<Q=c<~<R=n=n=l<T<Q<Y<U<~<\\=m<Q<T<P=m<\\<P=n<R=n=l=o<]<r<Q<T<P<T=l<Q<Y<Y<r<r<r<W<T=j=a=n<\\<r<Q<\\<Q<Y<P<X<R<P<P<R<U<X<^<Y<R<Q<R=m=o<X\fHy\fIk\fHU\fId\fHy\fIl\fHT\fIk\fHy\fHR\fHy\fIg\fHx\fH\\\fHF\fH\\\fHD\fIk\fHc\fHy\fHy\fHS\fHA\fIl\fHk\fHT\fHy\fH\\\fHH\fIg\fHU\fIg\fHj\fHF\fHU\fIl\fHC\fHU\fHC\fHR\fHH\fHy\fHI\fHRibdqbm\fHj\fHp\fHp\fIg\fHi\fH@\fHJ\fIg\fH{\fHd\fHp\fHR\fH{\fHc\fHU\fHB\fHk\fHD\fHY\fHU\fHC\fIk\fHI\fIk\fHI\fIl\fHt\fH\\\fHp\fH@\fHJ\fIl\fHy\fHd\fHp\fIl\fHY\fIk\fHD\fHd\fHD\fHc\fHU\fH\\\fHe\fHT\fHB\fIk\fHy\fHB\fHY\fIg\fH^\fIk\fHT\fH@\fHB\fHd\fHJ\fIk\fH\x7F\fH\\\fHj\fHB\fH@\fHT\fHA\fH\\\fH@\fHD\fHv\fH^\fHB\fHD\fHj\fH{\fHT\fIl\fH^\fIl4U5h5e4I5h5e5k4\\4K4N4B4]4U4C4C4K5h5e5k4\\5k4Y5d4]4V5f4]5o4K5j5d5h4K4D5f5j4U4]4Z4\\5h5o5k5j4K5f5d5i5n4K5h4U5h5f4K5j4K5h5o5j4A4F5e5n4D5h5d4A4E4K4B4]5m5n4[4U4D4C4]5o5j4I4\\4K5o5i4K4K4A4C4I5h4K5m5f5k4D4U4Z5o5f5m4D4A4G5d5i5j5d5k5d4O5j4K4@4C4K5h5k4K4_5h5i4U5j4C5h5f4_4U4D4]4Y5h5e5i5j4\\4D5k4K4O5j5k5i4G5h5o5j4F4K5h4K4A5f4G5i4Y4]4X4]4A4A5d5h5d5m5f4K4\\4K5h5o5h5i4]4E4K5j4F4K5h5m4O4D5d4B4K4Y4O5j4F4K5j5k4K5h5f4U4Z5d5d5n4C4K4D5j4B5f4]4D5j4F5h5o5i4X4K4M5d5k5f4K4D5d5n4Y4Y5d5i4K4]5n5i4O4A4C5j4A5j4U4C5i4]4O5f4K4A4E5o4F4D4C5d5j5f4@4D5i5j5k4F4A4F4@5k4E4_5j4E5f4F5i5o4]4E4V4^4E5j5m4_4D5f4F5h5h5k5h5j4K4F5h5o5n5h4D5h5i4K4U5j5k4O5d5h4X5f4M5j5d4]4O5i4K5m5f5o4D5o5h4\\4K4F4]4F4D4D4O5j5k5i4_4K5j5o4D5f4U5m5n4C4A4_5j5h5k5i4X4U4]4O5k5h4X5k4]5n4[4]4[5h4Dsqlejofpfquj`fgfebvowkjnpfoegfwbjop`lmwfmwpvsslqwpwbqwfgnfppbdfpv``fppebpkjlm?wjwof=`lvmwqzb``lvmw`qfbwfgpwlqjfpqfpvowpqvmmjmdsql`fpptqjwjmdlaif`wpujpjaoftfo`lnfbqwj`ofvmhmltmmfwtlqh`lnsbmzgzmbnj`aqltpfqsqjub`zsqlaofnPfquj`fqfpsf`wgjpsobzqfrvfpwqfpfquftfapjwfkjpwlqzeqjfmgplswjlmptlqhjmdufqpjlmnjoojlm`kbmmfotjmglt-bggqfppujpjwfgtfbwkfq`lqqf`wsqlgv`wfgjqf`welqtbqgzlv#`bmqfnlufgpvaif`w`lmwqlobq`kjuf`vqqfmwqfbgjmdojaqbqzojnjwfgnbmbdfqevqwkfqpvnnbqznb`kjmfnjmvwfpsqjubwf`lmwf{wsqldqbnpl`jfwzmvnafqptqjwwfmfmbaofgwqjddfqplvq`fpolbgjmdfofnfmwsbqwmfqejmboozsfqef`wnfbmjmdpzpwfnphffsjmd`vowvqf%rvlw8/ilvqmbosqlif`wpvqeb`fp%rvlw8f{sjqfpqfujftpabobm`fFmdojpk@lmwfmwwkqlvdkSofbpf#lsjmjlm`lmwb`wbufqbdfsqjnbqzujoobdfPsbmjpkdboofqzgf`ojmfnffwjmdnjppjlmslsvobqrvbojwznfbpvqfdfmfqbopsf`jfppfppjlmpf`wjlmtqjwfqp`lvmwfqjmjwjboqfslqwpejdvqfpnfnafqpklogjmdgjpsvwffbqojfqf{sqfppgjdjwbosj`wvqfBmlwkfqnbqqjfgwqbeej`ofbgjmd`kbmdfg`fmwqbouj`wlqzjnbdfp,qfbplmppwvgjfpefbwvqfojpwjmdnvpw#afp`kllopUfqpjlmvpvboozfsjplgfsobzjmddqltjmdlaujlvplufqobzsqfpfmwb`wjlmp?,vo= tqbssfqboqfbgz`fqwbjmqfbojwzpwlqbdfbmlwkfqgfphwlsleefqfgsbwwfqmvmvpvboGjdjwbo`bsjwboTfapjwfebjovqf`lmmf`wqfgv`fgBmgqljggf`bgfpqfdvobq#%bns8#bmjnbopqfofbpfBvwlnbwdfwwjmdnfwklgpmlwkjmdSlsvobq`bswjlmofwwfqp`bswvqfp`jfm`foj`fmpf`kbmdfpFmdobmg>2%bns8Kjpwlqz#>#mft#@fmwqbovsgbwfgPsf`jboMfwtlqhqfrvjqf`lnnfmwtbqmjmd@loofdfwlloabqqfnbjmpaf`bvpffof`wfgGfvwp`kejmbm`ftlqhfqprvj`hozafwtffmf{b`wozpfwwjmdgjpfbpfPl`jfwztfbslmpf{kjajw%ow8"..@lmwqlo`obppfp`lufqfglvwojmfbwwb`hpgfuj`fp+tjmgltsvqslpfwjwof>!Nlajof#hjoojmdpkltjmdJwbojbmgqlssfgkfbujozfeef`wp.2$^*8 `lmejqn@vqqfmwbgubm`fpkbqjmdlsfmjmdgqbtjmdajoojlmlqgfqfgDfqnbmzqfobwfg?,elqn=jm`ovgftkfwkfqgfejmfgP`jfm`f`bwboldBqwj`ofavwwlmpobqdfpwvmjelqnilvqmfzpjgfabq@kj`bdlklojgbzDfmfqbosbppbdf/%rvlw8bmjnbwfeffojmdbqqjufgsbppjmdmbwvqboqlvdkoz- Wkf#avw#mlwgfmpjwzAqjwbjm@kjmfpfob`h#lewqjavwfJqfobmg!#gbwb.eb`wlqpqf`fjufwkbw#jpOjaqbqzkvpabmgjm#eb`wbeebjqp@kbqofpqbgj`boaqlvdkwejmgjmdobmgjmd9obmd>!qfwvqm#ofbgfqpsobmmfgsqfnjvnsb`hbdfBnfqj`bFgjwjlm^%rvlw8Nfppbdfmffg#wlubovf>!`lnsof{ollhjmdpwbwjlmafojfufpnboofq.nlajofqf`lqgptbmw#wlhjmg#leEjqfel{zlv#bqfpjnjobqpwvgjfgnb{jnvnkfbgjmdqbsjgoz`ojnbwfhjmdglnfnfqdfgbnlvmwpelvmgfgsjlmffqelqnvobgzmbpwzklt#wl#Pvsslqwqfufmvff`lmlnzQfpvowpaqlwkfqplogjfqobqdfoz`boojmd-%rvlw8B``lvmwFgtbqg#pfdnfmwQlafqw#feelqwpSb`jej`ofbqmfgvs#tjwkkfjdkw9tf#kbufBmdfofpmbwjlmp\\pfbq`kbssojfgb`rvjqfnbppjufdqbmwfg9#ebopfwqfbwfgajddfpwafmfejwgqjujmdPwvgjfpnjmjnvnsfqkbspnlqmjmdpfoojmdjp#vpfgqfufqpfubqjbmw#qlof>!njppjmdb`kjfufsqlnlwfpwvgfmwplnflmff{wqfnfqfpwlqfalwwln9fuloufgboo#wkfpjwfnbsfmdojpktbz#wl##Bvdvpwpznalop@lnsbmznbwwfqpnvpj`bobdbjmpwpfqujmd~*+*8 sbznfmwwqlvaof`lm`fsw`lnsbqfsbqfmwpsobzfqpqfdjlmpnlmjwlq#$$Wkf#tjmmjmdf{solqfbgbswfgDboofqzsqlgv`fbajojwzfmkbm`f`bqffqp*-#Wkf#`loof`wPfbq`k#bm`jfmwf{jpwfgellwfq#kbmgofqsqjmwfg`lmplofFbpwfqmf{slqwptjmgltp@kbmmfojoofdbomfvwqbopvddfpw\\kfbgfqpjdmjmd-kwno!=pfwwofgtfpwfqm`bvpjmd.tfahjw`objnfgIvpwj`f`kbswfquj`wjnpWklnbp#nlyjoobsqlnjpfsbqwjfpfgjwjlmlvwpjgf9ebopf/kvmgqfgLoznsj`\\avwwlmbvwklqpqfb`kfg`kqlmj`gfnbmgppf`lmgpsqlwf`wbglswfgsqfsbqfmfjwkfqdqfbwozdqfbwfqlufqboojnsqluf`lnnbmgpsf`jbopfbq`k-tlqpkjsevmgjmdwklvdkwkjdkfpwjmpwfbgvwjojwzrvbqwfq@vowvqfwfpwjmd`ofbqozf{slpfgAqltpfqojafqbo~#`bw`kSqlif`wf{bnsofkjgf+*8EolqjgbbmptfqpbooltfgFnsfqlqgfefmpfpfqjlvpeqffglnPfufqbo.avwwlmEvqwkfqlvw#le#">#mvoowqbjmfgGfmnbqhuljg+3*,boo-ipsqfufmwQfrvfpwPwfskfm Tkfm#lapfquf?,k1= Nlgfqm#sqlujgf!#bow>!alqgfqp- Elq# Nbmz#bqwjpwpsltfqfgsfqelqnej`wjlmwzsf#lenfgj`bowj`hfwplsslpfg@lvm`jotjwmfppivpwj`fDflqdf#Afodjvn---?,b=wtjwwfqmlwbaoztbjwjmdtbqebqf#Lwkfq#qbmhjmdskqbpfpnfmwjlmpvqujufp`klobq?,s= #@lvmwqzjdmlqfgolpp#leivpw#bpDflqdjbpwqbmdf?kfbg=?pwlssfg2$^*8 jpobmgpmlwbaofalqgfq9ojpw#le`bqqjfg233/333?,k0= #pfufqboaf`lnfppfof`w#tfggjmd33-kwnonlmbq`klee#wkfwfb`kfqkjdkoz#ajloldzojef#lelq#fufmqjpf#le%qbrvl8sovplmfkvmwjmd+wklvdkGlvdobpiljmjmd`jq`ofpElq#wkfBm`jfmwUjfwmbnufkj`ofpv`k#bp`qzpwboubovf#>Tjmgltpfmilzfgb#pnboobppvnfg?b#jg>!elqfjdm#Boo#qjklt#wkfGjpsobzqfwjqfgkltfufqkjggfm8abwwofppffhjmd`bajmfwtbp#mlwollh#bw`lmgv`wdfw#wkfIbmvbqzkbssfmpwvqmjmdb9klufqLmojmf#Eqfm`k#ob`hjmdwzsj`bof{wqb`wfmfnjfpfufm#jedfmfqbwgf`jgfgbqf#mlw,pfbq`kafojfep.jnbdf9ol`bwfgpwbwj`-oldjm!=`lmufqwujlofmwfmwfqfgejqpw!=`jq`vjwEjmobmg`kfnjpwpkf#tbp23s{8!=bp#pv`kgjujgfg?,psbm=tjoo#afojmf#leb#dqfbwnzpwfqz,jmgf{-eboojmdgvf#wl#qbjotbz`loofdfnlmpwfqgfp`fmwjw#tjwkmv`ofbqIftjpk#sqlwfpwAqjwjpkeoltfqpsqfgj`wqfelqnpavwwlm#tkl#tbpof`wvqfjmpwbmwpvj`jgfdfmfqj`sfqjlgpnbqhfwpPl`jbo#ejpkjmd`lnajmfdqbskj`tjmmfqp?aq#,=?az#wkf#MbwvqboSqjub`z`llhjfplvw`lnfqfploufPtfgjpkaqjfeozSfqpjbmpl#nv`k@fmwvqzgfsj`wp`lovnmpklvpjmdp`qjswpmf{w#wlafbqjmdnbssjmdqfujpfgiRvfqz+.tjgwk9wjwof!=wllowjsPf`wjlmgfpjdmpWvqhjpkzlvmdfq-nbw`k+~*+*8 avqmjmdlsfqbwfgfdqffpplvq`f>Qj`kbqg`olpfozsobpwj`fmwqjfp?,wq= `lolq9 vo#jg>!slppfppqloojmdskzpj`pebjojmdf{f`vwf`lmwfpwojmh#wlGfebvow?aq#,= 9#wqvf/`kbqwfqwlvqjpn`obppj`sql`ffgf{sobjm?,k2= lmojmf-<{no#ufkfosjmdgjbnlmgvpf#wkfbjqojmffmg#..=*-bwwq+qfbgfqpklpwjmd eeeeeeqfbojyfUjm`fmwpjdmbop#pq`>!,Sqlgv`wgfpsjwfgjufqpfwfoojmdSvaoj`#kfog#jmIlpfsk#wkfbwqfbeef`wp?pwzof=b#obqdfglfpm$wobwfq/#Fofnfmwebuj`lm`qfbwlqKvmdbqzBjqslqwpff#wkfpl#wkbwNj`kbfoPzpwfnpSqldqbnp/#bmg##tjgwk>f%rvlw8wqbgjmdofew!= sfqplmpDlogfm#Beebjqpdqbnnbqelqnjmdgfpwqlzjgfb#le`bpf#lelogfpw#wkjp#jp-pq`#>#`bqwllmqfdjpwq@lnnlmpNvpojnpTkbw#jpjm#nbmznbqhjmdqfufbopJmgffg/frvbooz,pklt\\blvwgllqfp`bsf+Bvpwqjbdfmfwj`pzpwfn/Jm#wkf#pjwwjmdKf#boplJpobmgpB`bgfnz \n\n?"..Gbmjfo#ajmgjmdaol`h!=jnslpfgvwjojyfBaqbkbn+f{`fswxtjgwk9svwwjmd*-kwno+\x7F\x7F#X^8 GBWBX#)hjw`kfmnlvmwfgb`wvbo#gjbof`wnbjmoz#\\aobmh$jmpwboof{sfqwpje+wzsfJw#bopl%`lsz8#!=Wfqnpalqm#jmLswjlmpfbpwfqmwbohjmd`lm`fqmdbjmfg#lmdljmdivpwjez`qjwj`peb`wlqzjwp#ltmbppbvowjmujwfgobpwjmdkjp#ltmkqfe>!,!#qfo>!gfufols`lm`fqwgjbdqbngloobqp`ovpwfqsks<jg>bo`lklo*8~*+*8vpjmd#b=?psbm=ufppfopqfujuboBggqfppbnbwfvqbmgqljgboofdfgjoomfpptbohjmd`fmwfqprvbojeznbw`kfpvmjejfgf{wjm`wGfefmpfgjfg#jm \n?"..#`vpwlnpojmhjmdOjwwof#Allh#lefufmjmdnjm-ip<bqf#wkfhlmwbhwwlgbz$p-kwno!#wbqdfw>tfbqjmdBoo#Qjd8 ~*+*8qbjpjmd#Bopl/#`qv`jbobalvw!=gf`obqf..= ?p`ejqfel{bp#nv`kbssojfpjmgf{/#p/#avw#wzsf#>#  ?"..wltbqgpQf`lqgpSqjubwfElqfjdmSqfnjfq`klj`fpUjqwvboqfwvqmp@lnnfmwSltfqfgjmojmf8slufqwz`kbnafqOjujmd#ulovnfpBmwklmzoldjm!#QfobwfgF`lmlnzqfb`kfp`vwwjmddqbujwzojef#jm@kbswfq.pkbgltMlwbaof?,wg= #qfwvqmpwbgjvntjgdfwpubqzjmdwqbufopkfog#aztkl#bqftlqh#jmeb`vowzbmdvobqtkl#kbgbjqslqwwltm#le Plnf#$`oj`h$`kbqdfphfztlqgjw#tjoo`jwz#le+wkjp*8Bmgqft#vmjrvf#`kf`hfglq#nlqf033s{8#qfwvqm8qpjlm>!sovdjmptjwkjm#kfqpfoePwbwjlmEfgfqboufmwvqfsvaojpkpfmw#wlwfmpjlmb`wqfpp`lnf#wlejmdfqpGvhf#lesflsof/f{soljwtkbw#jpkbqnlmzb#nbilq!9!kwwsjm#kjp#nfmv!= nlmwkozleej`fq`lvm`jodbjmjmdfufm#jmPvnnbqzgbwf#leolzbowzejwmfppbmg#tbpfnsfqlqpvsqfnfPf`lmg#kfbqjmdQvppjbmolmdfpwBoafqwbobwfqbopfw#le#pnboo!=-bssfmggl#tjwkefgfqboabmh#leafmfbwkGfpsjwf@bsjwbodqlvmgp*/#bmg#sfq`fmwjw#eqln`olpjmd`lmwbjmJmpwfbgejewffmbp#tfoo-zbkll-qfpslmgejdkwfqlap`vqfqfeof`wlqdbmj`>#Nbwk-fgjwjmdlmojmf#sbggjmdb#tkloflmfqqlqzfbq#lefmg#le#abqqjfqtkfm#jwkfbgfq#klnf#leqfpvnfgqfmbnfgpwqlmd=kfbwjmdqfwbjmp`olvgeqtbz#le#Nbq`k#2hmltjmdjm#sbqwAfwtffmofpplmp`olpfpwujqwvboojmhp!=`qlppfgFMG#..=ebnlvp#btbqgfgOj`fmpfKfbowk#ebjqoz#tfbowkznjmjnboBeqj`bm`lnsfwfobafo!=pjmdjmdebqnfqpAqbpjo*gjp`vppqfsob`fDqfdlqzelmw#`lsvqpvfgbssfbqpnbhf#vsqlvmgfgalwk#leaol`hfgpbt#wkfleej`fp`lolvqpje+gl`vtkfm#kffmelq`fsvpk+evBvdvpw#VWE.;!=Ebmwbpzjm#nlpwjmivqfgVpvboozebqnjmd`olpvqflaif`w#gfefm`fvpf#le#Nfgj`bo?algz= fujgfmwaf#vpfghfz@lgfpj{wffmJpobnj` 333333fmwjqf#tjgfoz#b`wjuf#+wzsflelmf#`bm`lolq#>psfbhfqf{wfmgpSkzpj`pwfqqbjm?walgz=evmfqboujftjmdnjggof#`qj`hfwsqlskfwpkjewfggl`wlqpQvppfoo#wbqdfw`lnsb`wbodfaqbpl`jbo.avoh#lenbm#bmg?,wg= #kf#ofew*-ubo+*ebopf*8oldj`boabmhjmdklnf#wlmbnjmd#Bqjylmb`qfgjwp*8 ~*8 elvmgfqjm#wvqm@loojmpafelqf#Avw#wkf`kbqdfgWjwof!=@bswbjmpsfoofgdlggfppWbd#..=Bggjmd9avw#tbpQf`fmw#sbwjfmwab`h#jm>ebopf%Ojm`lomtf#hmlt@lvmwfqIvgbjpnp`qjsw#bowfqfg$^*8 ##kbp#wkfvm`ofbqFufmw$/alwk#jmmlw#boo ?"..#sob`jmdkbqg#wl#`fmwfqplqw#le`ojfmwppwqffwpAfqmbqgbppfqwpwfmg#wlebmwbpzgltm#jmkbqalvqEqffglniftfoqz,balvw--pfbq`kofdfmgpjp#nbgfnlgfqm#lmoz#lmlmoz#wljnbdf!#ojmfbq#sbjmwfqbmg#mlwqbqfoz#b`qlmzngfojufqpklqwfq33%bns8bp#nbmztjgwk>!,)#?"X@wjwof#>le#wkf#oltfpw#sj`hfg#fp`bsfgvpfp#lesflsofp#Svaoj`Nbwwkftwb`wj`pgbnbdfgtbz#elqobtp#lefbpz#wl#tjmgltpwqlmd##pjnsof~`bw`k+pfufmwkjmelal{tfmw#wlsbjmwfg`jwjyfmJ#glm$wqfwqfbw-#Plnf#tt-!*8 alnajmdnbjowl9nbgf#jm-#Nbmz#`bqqjfp\x7F\x7Fx~8tjtlqh#lepzmlmzngfefbwpebulqfglswj`bosbdfWqbvmofpp#pfmgjmdofew!=?`lnP`lqBoo#wkfiRvfqz-wlvqjpw@obppj`ebopf!#Tjokfonpvavqapdfmvjmfajpklsp-psojw+dolabo#elooltpalgz#lemlnjmbo@lmwb`wpf`vobqofew#wl`kjfeoz.kjggfm.abmmfq?,oj= -#Tkfm#jm#alwkgjpnjppF{solqfbotbzp#ujb#wkfpsb/]lotfoebqfqvojmd#bqqbmdf`bswbjmkjp#plmqvof#lekf#wllhjwpfoe/>3%bns8+`boofgpbnsofpwl#nbhf`ln,sbdNbqwjm#Hfmmfgzb``fswpevoo#lekbmgofgAfpjgfp,,..=?,baof#wlwbqdfwpfppfm`fkjn#wl#jwp#az#`lnnlm-njmfqbowl#wbhftbzp#wlp-lqd,obgujpfgsfmbowzpjnsof9je#wkfzOfwwfqpb#pklqwKfqafqwpwqjhfp#dqlvsp-ofmdwkeojdkwplufqobspoltoz#ofppfq#pl`jbo#?,s= \n\njw#jmwlqbmhfg#qbwf#levo= ##bwwfnswsbjq#lenbhf#jwHlmwbhwBmwlmjlkbujmd#qbwjmdp#b`wjufpwqfbnpwqbssfg!*-`pp+klpwjofofbg#wlojwwof#dqlvsp/Sj`wvqf..=  #qltp>!#laif`wjmufqpf?ellwfq@vpwlnU=?_,p`qploujmd@kbnafqpobufqztlvmgfgtkfqfbp">#$vmgelq#boosbqwoz#.qjdkw9Bqbajbmab`hfg#`fmwvqzvmjw#lenlajof.Fvqlsf/jp#klnfqjph#legfpjqfg@ojmwlm`lpw#lebdf#le#af`lnf#mlmf#les%rvlw8Njggof#fbg$*X3@qjwj`ppwvgjlp=%`lsz8dqlvs!=bppfnaonbhjmd#sqfppfgtjgdfw-sp9!#<#qfavjowaz#plnfElqnfq#fgjwlqpgfobzfg@bmlmj`kbg#wkfsvpkjmd`obpp>!avw#bqfsbqwjboAbazolmalwwln#`bqqjfq@lnnbmgjwp#vpfBp#tjwk`lvqpfpb#wkjqggfmlwfpbopl#jmKlvpwlm13s{8!=b``vpfgglvaof#dlbo#leEbnlvp#*-ajmg+sqjfpwp#Lmojmfjm#Ivozpw#(#!d`lmpvowgf`jnbokfosevoqfujufgjp#ufqzq$($jswolpjmd#efnbofpjp#boplpwqjmdpgbzp#lebqqjuboevwvqf#?laif`welq`jmdPwqjmd+!#,= \n\nkfqf#jpfm`lgfg-##Wkf#aboollmglmf#az,`lnnlmad`lolqobt#le#Jmgjbmbbuljgfgavw#wkf1s{#0s{irvfqz-bewfq#bsloj`z-nfm#bmgellwfq.>#wqvf8elq#vpfp`qffm-Jmgjbm#jnbdf#>ebnjoz/kwws9,,#%maps8gqjufqpfwfqmbopbnf#bpmlwj`fgujftfqp~*+*8 #jp#nlqfpfbplmpelqnfq#wkf#mftjp#ivpw`lmpfmw#Pfbq`ktbp#wkftkz#wkfpkjssfgaq=?aq=tjgwk9#kfjdkw>nbgf#le`vjpjmfjp#wkbwb#ufqz#Bgnjqbo#ej{fg8mlqnbo#NjppjlmSqfpp/#lmwbqjl`kbqpfwwqz#wl#jmubgfg>!wqvf!psb`jmdjp#nlpwb#nlqf#wlwboozeboo#le~*8 ##jnnfmpfwjnf#jmpfw#lvwpbwjpezwl#ejmggltm#wlolw#le#Sobzfqpjm#Ivmfrvbmwvnmlw#wkfwjnf#wlgjpwbmwEjmmjpkpq`#>#+pjmdof#kfos#leDfqnbm#obt#bmgobafofgelqfpwp`llhjmdpsb`f!=kfbgfq.tfoo#bpPwbmofzaqjgdfp,dolabo@qlbwjb#Balvw#X3^8 ##jw/#bmgdqlvsfgafjmd#b*xwkqltkf#nbgfojdkwfqfwkj`boEEEEEE!alwwln!ojhf#b#fnsolzpojuf#jmbp#pffmsqjmwfqnlpw#leva.ojmhqfif`wpbmg#vpfjnbdf!=pv``ffgeffgjmdMv`ofbqjmelqnbwl#kfosTlnfm$pMfjwkfqNf{j`bmsqlwfjm?wbaof#az#nbmzkfbowkzobtpvjwgfujpfg-svpk+xpfoofqppjnsoz#Wkqlvdk-`llhjf#Jnbdf+logfq!=vp-ip!=#Pjm`f#vmjufqpobqdfq#lsfm#wl"..#fmgojfp#jm$^*8 ##nbqhfwtkl#jp#+!GLN@lnbmbdfglmf#elqwzsfle#Hjmdglnsqlejwpsqlslpfwl#pklt`fmwfq8nbgf#jwgqfppfgtfqf#jmnj{wvqfsqf`jpfbqjpjmdpq`#>#$nbhf#b#pf`vqfgAbswjpwulwjmd# \n\nubq#Nbq`k#1dqft#vs@ojnbwf-qfnlufphjoofgtbz#wkf?,kfbg=eb`f#leb`wjmd#qjdkw!=wl#tlqhqfgv`fpkbp#kbgfqf`wfgpklt+*8b`wjlm>allh#lebm#bqfb>>#!kww?kfbgfq ?kwno=`lmelqneb`jmd#`llhjf-qfoz#lmklpwfg#-`vpwlnkf#tfmwavw#elqpsqfbg#Ebnjoz#b#nfbmplvw#wkfelqvnp-ellwbdf!=Nlajo@ofnfmwp!#jg>!bp#kjdkjmwfmpf..=?"..efnbof#jp#pffmjnsojfgpfw#wkfb#pwbwfbmg#kjpebpwfpwafpjgfpavwwlm\\alvmgfg!=?jnd#Jmelal{fufmwp/b#zlvmdbmg#bqfMbwjuf#`kfbsfqWjnflvwbmg#kbpfmdjmfptlm#wkf+nlpwozqjdkw9#ejmg#b#.alwwlnSqjm`f#bqfb#lenlqf#lepfbq`k\\mbwvqf/ofdboozsfqjlg/obmg#lelq#tjwkjmgv`fgsqlujmdnjppjofol`boozBdbjmpwwkf#tbzh%rvlw8s{8!= svpkfg#babmglmmvnfqbo@fqwbjmJm#wkjpnlqf#jmlq#plnfmbnf#jpbmg/#jm`qltmfgJPAM#3.`qfbwfpL`wlafqnbz#mlw`fmwfq#obwf#jmGfefm`ffmb`wfgtjpk#wlaqlbgoz`llojmdlmolbg>jw-#Wkfqf`lufqNfnafqpkfjdkw#bppvnfp?kwno= sflsof-jm#lmf#>tjmgltellwfq\\b#dllg#qfhobnblwkfqp/wl#wkjp\\`llhjfsbmfo!=Olmglm/gfejmfp`qvpkfgabswjpn`lbpwbopwbwvp#wjwof!#nluf#wlolpw#jmafwwfq#jnsojfpqjuboqzpfqufqp#PzpwfnSfqkbspfp#bmg#`lmwfmgeoltjmdobpwfg#qjpf#jmDfmfpjpujft#leqjpjmd#pffn#wlavw#jm#ab`hjmdkf#tjoodjufm#bdjujmd#`jwjfp-eolt#le#Obwfq#boo#avwKjdktbzlmoz#azpjdm#lekf#glfpgjeefqpabwwfqz%bns8obpjmdofpwkqfbwpjmwfdfqwbhf#lmqfevpfg`boofg#>VP%bnsPff#wkfmbwjufpaz#wkjppzpwfn-kfbg#le9klufq/ofpajbmpvqmbnfbmg#boo`lnnlm,kfbgfq\\\\sbqbnpKbqubqg,sj{fo-qfnlubopl#olmdqlof#leiljmwozphzp`qbVmj`lgfaq#,= Bwobmwbmv`ofvp@lvmwz/svqfoz#`lvmw!=fbpjoz#avjog#blm`oj`hb#djufmsljmwfqk%rvlw8fufmwp#fopf#x gjwjlmpmlt#wkf/#tjwk#nbm#tkllqd,Tfalmf#bmg`buboqzKf#gjfgpfbwwof33/333#xtjmgltkbuf#wlje+tjmgbmg#jwpplofoz#n%rvlw8qfmftfgGfwqljwbnlmdpwfjwkfq#wkfn#jmPfmbwlqVp?,b=?Hjmd#leEqbm`jp.sqlgv`kf#vpfgbqw#bmgkjn#bmgvpfg#azp`lqjmdbw#klnfwl#kbufqfobwfpjajojwzeb`wjlmAveebolojmh!=?tkbw#kfeqff#wl@jwz#le`lnf#jmpf`wlqp`lvmwfglmf#gbzmfqulvpprvbqf#~8je+dljm#tkbwjnd!#bojp#lmozpfbq`k,wvfpgbzollpfozPlolnlmpf{vbo#.#?b#kqnfgjvn!GL#MLW#Eqbm`f/tjwk#b#tbq#bmgpf`lmg#wbhf#b#=   nbqhfw-kjdktbzglmf#jm`wjujwz!obpw!=laojdfgqjpf#wl!vmgfejnbgf#wl#Fbqoz#sqbjpfgjm#jwp#elq#kjpbwkofwfIvsjwfqZbkll"#wfqnfg#pl#nbmzqfbooz#p-#Wkf#b#tlnbm<ubovf>gjqf`w#qjdkw!#aj`z`ofb`jmd>!gbz#bmgpwbwjmdQbwkfq/kjdkfq#Leej`f#bqf#mltwjnfp/#tkfm#b#sbz#elqlm#wkjp.ojmh!=8alqgfqbqlvmg#bmmvbo#wkf#Mftsvw#wkf-`ln!#wbhjm#wlb#aqjfe+jm#wkfdqlvsp-8#tjgwkfmyznfppjnsof#jm#obwfxqfwvqmwkfqbszb#sljmwabmmjmdjmhp!= +*8!#qfb#sob`f_v330@bbalvw#bwq= \n\n``lvmw#djufp#b?P@QJSWQbjotbzwkfnfp,wlloal{AzJg+!{kvnbmp/tbw`kfpjm#plnf#je#+tj`lnjmd#elqnbwp#Vmgfq#avw#kbpkbmgfg#nbgf#azwkbm#jmefbq#legfmlwfg,jeqbnfofew#jmulowbdfjm#fb`kb%rvlw8abpf#leJm#nbmzvmgfqdlqfdjnfpb`wjlm#?,s= ?vpwlnUb8%dw8?,jnslqwplq#wkbwnlpwoz#%bns8qf#pjyf>!?,b=?,kb#`obppsbppjufKlpw#>#TkfwkfqefqwjofUbqjlvp>X^8+ev`bnfqbp,=?,wg=b`wp#bpJm#plnf=  ?"lqdbmjp#?aq#,=Afjijmd`bwbo/Lgfvwp`kfvqlsfvfvphbqbdbfjodfpufmphbfpsb/]bnfmpbifvpvbqjlwqbabiln/E{j`ls/Mdjmbpjfnsqfpjpwfnbl`wvaqfgvqbmwfb/]bgjqfnsqfpbnlnfmwlmvfpwqlsqjnfqbwqbu/Epdqb`jbpmvfpwqbsql`fplfpwbglp`bojgbgsfqplmbm/Vnfqlb`vfqgln/Vpj`bnjfnaqllefqwbpbodvmlpsb/Apfpfifnsolgfqf`klbgfn/Mpsqjubglbdqfdbqfmob`fpslpjaofklwfofppfujoobsqjnfql/Vowjnlfufmwlpbq`kjul`vowvqbnvifqfpfmwqbgbbmvm`jlfnabqdlnfq`bgldqbmgfpfpwvgjlnfilqfpefaqfqlgjpf/]lwvqjpnl`/_gjdlslqwbgbfpsb`jlebnjojbbmwlmjlsfqnjwfdvbqgbqbodvmbpsqf`jlpbodvjfmpfmwjglujpjwbpw/Awvol`lml`fqpfdvmgl`lmpfileqbm`jbnjmvwlppfdvmgbwfmfnlpfef`wlpn/Mobdbpfpj/_mqfujpwbdqbmbgb`lnsqbqjmdqfpldbq`/Abb``j/_mf`vbglqrvjfmfpjm`ovplgfafq/Mnbwfqjbklnaqfpnvfpwqbslgq/Abnb/]bmb/Vowjnbfpwbnlplej`jbowbnajfmmjmd/Vmpbovglpslgfnlpnfilqbqslpjwjlmavpjmfppklnfsbdfpf`vqjwzobmdvbdfpwbmgbqg`bnsbjdmefbwvqfp`bwfdlqzf{wfqmbo`kjogqfmqfpfqufgqfpfbq`kf{`kbmdfebulqjwfwfnsobwfnjojwbqzjmgvpwqzpfquj`fpnbwfqjbosqlgv`wpy.jmgf{9`lnnfmwpplewtbqf`lnsofwf`bofmgbqsobwelqnbqwj`ofpqfrvjqfgnlufnfmwrvfpwjlmavjogjmdslojwj`pslppjaofqfojdjlmskzpj`boeffgab`hqfdjpwfqsj`wvqfpgjpbaofgsqlwl`lobvgjfm`fpfwwjmdpb`wjujwzfofnfmwpofbqmjmdbmzwkjmdbapwqb`wsqldqfpplufqujftnbdbyjmff`lmlnj`wqbjmjmdsqfppvqfubqjlvp#?pwqlmd=sqlsfqwzpklssjmdwldfwkfqbgubm`fgafkbujlqgltmolbgefbwvqfgellwaboopfof`wfgObmdvbdfgjpwbm`fqfnfnafqwqb`hjmdsbpptlqgnlgjejfgpwvgfmwpgjqf`wozejdkwjmdmlqwkfqmgbwbabpfefpwjuboaqfbhjmdol`bwjlmjmwfqmfwgqlsgltmsqb`wj`ffujgfm`fevm`wjlmnbqqjbdfqfpslmpfsqlaofnpmfdbwjufsqldqbnpbmbozpjpqfofbpfgabmmfq!=svq`kbpfsloj`jfpqfdjlmbo`qfbwjufbqdvnfmwallhnbqhqfefqqfq`kfnj`bogjujpjlm`booab`hpfsbqbwfsqlif`wp`lmeoj`wkbqgtbqfjmwfqfpwgfojufqznlvmwbjmlawbjmfg>#ebopf8elq+ubq#b``fswfg`bsb`jwz`lnsvwfqjgfmwjwzbjq`qbewfnsolzfgsqlslpfgglnfpwj`jm`ovgfpsqlujgfgklpsjwboufqwj`bo`loobspfbssqlb`ksbqwmfqpoldl!=?bgbvdkwfqbvwklq!#`vowvqboebnjojfp,jnbdfp,bppfnaozsltfqevowfb`kjmdejmjpkfggjpwqj`w`qjwj`bo`dj.ajm,svqslpfpqfrvjqfpfof`wjlmaf`lnjmdsqlujgfpb`bgfnj`f{fq`jpfb`wvbooznfgj`jmf`lmpwbmwb``jgfmwNbdbyjmfgl`vnfmwpwbqwjmdalwwln!=lapfqufg9#%rvlw8f{wfmgfgsqfujlvpPlewtbqf`vpwlnfqgf`jpjlmpwqfmdwkgfwbjofgpojdkwozsobmmjmdwf{wbqfb`vqqfm`zfufqzlmfpwqbjdkwwqbmpefqslpjwjufsqlgv`fgkfqjwbdfpkjssjmdbaplovwfqf`fjufgqfofubmwavwwlm!#ujlofm`fbmztkfqfafmfejwpobvm`kfgqf`fmwozboojbm`felooltfgnvowjsofavoofwjmjm`ovgfgl``vqqfgjmwfqmbo\'+wkjp*-qfsvaoj`=?wq=?wg`lmdqfppqf`lqgfgvowjnbwfplovwjlm?vo#jg>!gjp`lufqKlnf?,b=tfapjwfpmfwtlqhpbowklvdkfmwjqfoznfnlqjbonfppbdfp`lmwjmvfb`wjuf!=plnftkbwuj`wlqjbTfpwfqm##wjwof>!Ol`bwjlm`lmwqb`wujpjwlqpGltmolbgtjwklvw#qjdkw!= nfbpvqfptjgwk#>#ubqjbaofjmuloufgujqdjmjbmlqnboozkbssfmfgb``lvmwppwbmgjmdmbwjlmboQfdjpwfqsqfsbqfg`lmwqlopb``vqbwfajqwkgbzpwqbwfdzleej`jbodqbskj`p`qjnjmboslppjaoz`lmpvnfqSfqplmbopsfbhjmdubojgbwfb`kjfufg-isd!#,=nb`kjmfp?,k1= ##hfztlqgpeqjfmgozaqlwkfqp`lnajmfglqjdjmbo`lnslpfgf{sf`wfgbgfrvbwfsbhjpwbmeloolt!#ubovbaof?,obafo=qfobwjufaqjmdjmdjm`qfbpfdlufqmlqsovdjmp,Ojpw#le#Kfbgfq!=!#mbnf>!#+%rvlw8dqbgvbwf?,kfbg= `lnnfq`fnbobzpjbgjqf`wlqnbjmwbjm8kfjdkw9p`kfgvof`kbmdjmdab`h#wl#`bwkloj`sbwwfqmp`lolq9# dqfbwfpwpvssojfpqfojbaof?,vo= \n\n?pfof`w#`jwjyfmp`olwkjmdtbw`kjmd?oj#jg>!psf`jej``bqqzjmdpfmwfm`f?`fmwfq=`lmwqbpwwkjmhjmd`bw`k+f*plvwkfqmNj`kbfo#nfq`kbmw`bqlvpfosbggjmd9jmwfqjlq-psojw+!ojybwjlmL`wlafq#*xqfwvqmjnsqlufg..%dw8 `lufqbdf`kbjqnbm-smd!#,=pvaif`wpQj`kbqg#tkbwfufqsqlabaozqf`lufqzabpfabooivgdnfmw`lmmf`w--`pp!#,=#tfapjwfqfslqwfggfebvow!,=?,b= fof`wqj`p`lwobmg`qfbwjlmrvbmwjwz-#JPAM#3gjg#mlw#jmpwbm`f.pfbq`k.!#obmd>!psfbhfqp@lnsvwfq`lmwbjmpbq`kjufpnjmjpwfqqfb`wjlmgjp`lvmwJwbojbml`qjwfqjbpwqlmdoz9#$kwws9$p`qjsw$`lufqjmdleefqjmdbssfbqfgAqjwjpk#jgfmwjezEb`fallhmvnfqlvpufkj`ofp`lm`fqmpBnfqj`bmkbmgojmdgju#jg>!Tjoojbn#sqlujgfq\\`lmwfmwb``vqb`zpf`wjlm#bmgfqplmeof{jaof@bwfdlqzobtqfm`f?p`qjsw=obzlvw>!bssqlufg#nb{jnvnkfbgfq!=?,wbaof=Pfquj`fpkbnjowlm`vqqfmw#`bmbgjbm`kbmmfop,wkfnfp,,bqwj`oflswjlmboslqwvdboubovf>!!jmwfqubotjqfofppfmwjwofgbdfm`jfpPfbq`k!#nfbpvqfgwklvpbmgpsfmgjmd%kfoojs8mft#Gbwf!#pjyf>!sbdfMbnfnjggof!#!#,=?,b=kjggfm!=pfrvfm`fsfqplmbolufqeoltlsjmjlmpjoojmljpojmhp!= \n?wjwof=ufqpjlmppbwvqgbzwfqnjmbojwfnsqlsfmdjmffqpf`wjlmpgfpjdmfqsqlslpbo>!ebopf!Fpsb/]loqfofbpfppvanjw!#fq%rvlw8bggjwjlmpznswlnplqjfmwfgqfplvq`fqjdkw!=?sofbpvqfpwbwjlmpkjpwlqz-ofbujmd##alqgfq>`lmwfmwp`fmwfq!=- Plnf#gjqf`wfgpvjwbaofavodbqjb-pklt+*8gfpjdmfgDfmfqbo#`lm`fswpF{bnsofptjoojbnpLqjdjmbo!=?psbm=pfbq`k!=lsfqbwlqqfrvfpwpb#%rvlw8booltjmdGl`vnfmwqfujpjlm-# Wkf#zlvqpfoe@lmwb`w#nj`kjdbmFmdojpk#`lovnajbsqjlqjwzsqjmwjmdgqjmhjmdeb`jojwzqfwvqmfg@lmwfmw#leej`fqpQvppjbm#dfmfqbwf.;;6:.2!jmgj`bwfebnjojbq#rvbojwznbqdjm93#`lmwfmwujftslqw`lmwb`wp.wjwof!=slqwbaof-ofmdwk#fojdjaofjmuloufpbwobmwj`lmolbg>!gfebvow-pvssojfgsbznfmwpdolppbqz Bewfq#dvjgbm`f?,wg=?wgfm`lgjmdnjggof!=`bnf#wl#gjpsobzpp`lwwjpkilmbwkbmnbilqjwztjgdfwp-`ojmj`bowkbjobmgwfb`kfqp?kfbg= \nbeef`wfgpvsslqwpsljmwfq8wlPwqjmd?,pnboo=lhobklnbtjoo#af#jmufpwlq3!#bow>!klojgbzpQfplvq`foj`fmpfg#+tkj`k#-#Bewfq#`lmpjgfqujpjwjmdf{solqfqsqjnbqz#pfbq`k!#bmgqljg!rvj`hoz#nffwjmdpfpwjnbwf8qfwvqm#8`lolq9 #kfjdkw>bssqlubo/#%rvlw8#`kf`hfg-njm-ip!nbdmfwj`=?,b=?,kelqf`bpw-#Tkjof#wkvqpgbzgufqwjpf%fb`vwf8kbp@obppfubovbwflqgfqjmdf{jpwjmdsbwjfmwp#Lmojmf#`lolqbglLswjlmp!`bnsafoo?"..#fmg?,psbm=??aq#,= \\slsvsp\x7Fp`jfm`fp/%rvlw8#rvbojwz#Tjmgltp#bppjdmfgkfjdkw9#?a#`obppof%rvlw8#ubovf>!#@lnsbmzf{bnsofp?jeqbnf#afojfufpsqfpfmwpnbqpkboosbqw#le#sqlsfqoz*- Wkf#wb{lmlnznv`k#le#?,psbm= !#gbwb.pqwvdv/Fpp`qlooWl#sqlif`w?kfbg= bwwlqmfzfnskbpjppslmplqpebm`zal{tlqog$p#tjogojef`kf`hfg>pfppjlmpsqldqbnns{8elmw.#Sqlif`wilvqmbopafojfufgub`bwjlmwklnsplmojdkwjmdbmg#wkf#psf`jbo#alqgfq>3`kf`hjmd?,walgz=?avwwlm#@lnsofwf`ofbqej{ ?kfbg= bqwj`of#?pf`wjlmejmgjmdpqlof#jm#slsvobq##L`wlafqtfapjwf#f{slpvqfvpfg#wl##`kbmdfplsfqbwfg`oj`hjmdfmwfqjmd`lnnbmgpjmelqnfg#mvnafqp##?,gju=`qfbwjmdlmPvanjwnbqzobmg`loofdfpbmbozwj`ojpwjmdp`lmwb`w-olddfgJmbgujplqzpjaojmdp`lmwfmw!p%rvlw8*p-#Wkjp#sb`hbdfp`kf`hal{pvddfpwpsqfdmbmwwlnlqqltpsb`jmd>j`lm-smdibsbmfpf`lgfabpfavwwlm!=dbnaojmdpv`k#bp#/#tkjof#?,psbm=#njpplvqjpslqwjmdwls92s{#-?,psbm=wfmpjlmptjgwk>!1obyzolbgmlufnafqvpfg#jm#kfjdkw>!`qjsw!= %maps8?,?wq=?wg#kfjdkw91,sqlgv`w`lvmwqz#jm`ovgf#ellwfq!#%ow8"..#wjwof!=?,irvfqz-?,elqn= +\vBl\bQ\x7F*+\vUmGx*kqubwphjjwbojbmlqln/Nm(ow/Pqh/Kf4K4]4C5dwbnaj/Emmlwj`jbpnfmpbifpsfqplmbpgfqf`klpmb`jlmbopfquj`jl`lmwb`wlvpvbqjlpsqldqbnbdlajfqmlfnsqfpbpbmvm`jlpubofm`jb`lolnajbgfpsv/Epgfslqwfpsqlzf`wlsqlgv`wls/Vaoj`lmlplwqlpkjpwlqjbsqfpfmwfnjoolmfpnfgjbmwfsqfdvmwbbmwfqjlqqf`vqplpsqlaofnbpbmwjbdlmvfpwqlplsjmj/_mjnsqjnjqnjfmwqbpbn/Eqj`bufmgfglqpl`jfgbgqfpsf`wlqfbojybqqfdjpwqlsbobaqbpjmwfq/Epfmwlm`fpfpsf`jbonjfnaqlpqfbojgbg`/_qglabybqbdlybs/Mdjmbppl`jbofpaolrvfbqdfpwj/_mborvjofqpjpwfnbp`jfm`jbp`lnsofwlufqpj/_m`lnsofwbfpwvgjlps/Vaoj`blaifwjulboj`bmwfavp`bglq`bmwjgbgfmwqbgbpb``jlmfpbq`kjulppvsfqjlqnbzlq/Abbofnbmjbevm`j/_m/Vowjnlpkb`jfmglbrvfoolpfgj`j/_mefqmbmglbnajfmwfeb`fallhmvfpwqbp`ojfmwfpsql`fplpabpwbmwfsqfpfmwbqfslqwbq`lmdqfplsvaoj`bq`lnfq`jl`lmwqbwli/_ufmfpgjpwqjwlw/E`mj`b`lmivmwlfmfqd/Abwqbabibqbpwvqjbpqf`jfmwfvwjojybqalofw/Ampboubglq`lqqf`wbwqbabilpsqjnfqlpmfdl`jlpojafqwbggfwboofpsbmwboobsq/_{jnlbonfq/Abbmjnbofprvj/Emfp`lqby/_mpf``j/_mavp`bmglls`jlmfpf{wfqjlq`lm`fswlwlgbu/Abdbofq/Abfp`qjajqnfgj`jmboj`fm`jb`lmpvowbbpsf`wlp`q/Awj`bg/_obqfpivpwj`jbgfafq/Mmsfq/Alglmf`fpjwbnbmwfmfqsfrvf/]lqf`jajgbwqjavmbowfmfqjef`bm`j/_m`bmbqjbpgfp`bqdbgjufqplpnboolq`bqfrvjfqfw/E`mj`lgfafq/Abujujfmgbejmbmybpbgfobmwfevm`jlmb`lmpfilpgje/A`jo`jvgbgfpbmwjdvbpbubmybgbw/Eqnjmlvmjgbgfpp/Mm`kfy`bnsb/]bplewlmj`qfujpwbp`lmwjfmfpf`wlqfpnlnfmwlpeb`vowbg`q/Egjwlgjufqpbppvsvfpwleb`wlqfppfdvmglpsfrvf/]b<_<R<X<\\<Y=m<W<T<Y=m=n=`<]=g<W<R<]=g=n=`=a=n<R<P<y=m<W<T=n<R<_<R<P<Y<Q=c<^=m<Y=i=a=n<R<U<X<\\<Z<Y<]=g<W<T<_<R<X=o<X<Y<Q=`=a=n<R=n<]=g<W<\\=m<Y<]=c<R<X<T<Q=m<Y<]<Y<Q<\\<X<R=m<\\<U=n=h<R=n<R<Q<Y<_<R=m<^<R<T=m<^<R<U<T<_=l=g=n<R<Z<Y<^=m<Y<P=m<^<R=b<W<T=d=`=a=n<T=i<S<R<V<\\<X<Q<Y<U<X<R<P<\\<P<T=l<\\<W<T<]<R=n<Y<P=o=i<R=n=c<X<^=o=i=m<Y=n<T<W=b<X<T<X<Y<W<R<P<T=l<Y=n<Y<]=c=m<^<R<Y<^<T<X<Y=k<Y<_<R=a=n<T<P=m=k<Y=n=n<Y<P=g=j<Y<Q=g=m=n<\\<W<^<Y<X=`=n<Y<P<Y<^<R<X=g=n<Y<]<Y<^=g=d<Y<Q<\\<P<T=n<T<S<\\=n<R<P=o<S=l<\\<^<W<T=j<\\<R<X<Q<\\<_<R<X=g<[<Q<\\=b<P<R<_=o<X=l=o<_<^=m<Y<U<T<X<Y=n<V<T<Q<R<R<X<Q<R<X<Y<W<\\<X<Y<W<Y=m=l<R<V<T=b<Q=c<^<Y=m=`<y=m=n=`=l<\\<[<\\<Q<\\=d<T4K5h5h5k4K5h4F5f4@5i5f4U4B4K4Y4E4K5h4\\5f4U5h5f5k4@4C5f4C4K5h4N5j4K5h4]4C4F4A5o5i4Y5m4A4E5o4K5j4F4K5h5h5f5f5o5d5j4X4D5o4E5m5f5k4K4D5j4K4F4A5d4K4M4O5o4G4]4B5h4K5h4K5h4A4D4C5h5f5h4C4]5d4_4K4Z4V4[4F5o5d5j5k5j4K5o4_4K4A4E5j4K4C5f4K5h4[4D4U5h5f5o4X5o4]4K5f5i5o5j5i5j5k4K4X4]5o4E4]4J5f4_5j4X5f4[5i4K4\\4K4K5h5m5j4X4D4K4D4F4U4D4]4]4A5i4E5o4K5m4E5f5n5d5h5i4]5o4^5o5h5i4E4O4A5i4C5n5h4D5f5f4U5j5f4Y5d4]4E4[4]5f5n4X4K4]5o4@5d4K5h4O4B4]5e5i4U5j4K4K4D4A4G4U4]5d4Z4D4X5o5h5i4_4@5h4D5j4K5j4B4K5h4C5o4F4K4D5o5h5f4E4D4C5d5j4O5f4Z4K5f5d4@4C5m4]5f5n5o4F4D4F4O5m4Z5h5i4[4D4B4K5o4G4]4D4K4]5o4K5m4Z5h4K4A5h5e5j5m4_5k4O5f4K5i4]4C5d4C4O5j5k4K4C5f5j4K4K5h4K5j5i4U4]4Z4F4U5h5i4C4K4B5h5i5i5o5j\x07\x07\x07\x07\0\x07\x07\0\v\n \b\r\f\f\r\b \n\v\0\v\v\v\v\0\x07qfplvq`fp`lvmwqjfprvfpwjlmpfrvjsnfmw`lnnvmjwzbubjobaofkjdkojdkwGWG,{kwnonbqhfwjmdhmltofgdfplnfwkjmd`lmwbjmfqgjqf`wjlmpvap`qjafbgufqwjpf`kbqb`wfq!#ubovf>!?,pfof`w=Bvpwqbojb!#`obpp>!pjwvbwjlmbvwklqjwzelooltjmdsqjnbqjozlsfqbwjlm`kboofmdfgfufolsfgbmlmznlvpevm`wjlm#evm`wjlmp`lnsbmjfppwqv`wvqfbdqffnfmw!#wjwof>!slwfmwjbofgv`bwjlmbqdvnfmwppf`lmgbqz`lszqjdkwobmdvbdfpf{`ovpjuf`lmgjwjlm?,elqn= pwbwfnfmwbwwfmwjlmAjldqbskz~#fopf#x plovwjlmptkfm#wkf#Bmbozwj`pwfnsobwfpgbmdfqlvppbwfoojwfgl`vnfmwpsvaojpkfqjnslqwbmwsqlwlwzsfjmeovfm`f%qbrvl8?,feef`wjufdfmfqboozwqbmpelqnafbvwjevowqbmpslqwlqdbmjyfgsvaojpkfgsqlnjmfmwvmwjo#wkfwkvnambjoMbwjlmbo#-el`vp+*8lufq#wkf#njdqbwjlmbmmlvm`fgellwfq!= f{`fswjlmofpp#wkbmf{sfmpjufelqnbwjlmeqbnftlqhwfqqjwlqzmgj`bwjlm`vqqfmwoz`obppMbnf`qjwj`jpnwqbgjwjlmfopftkfqfBof{bmgfqbssljmwfgnbwfqjbopaqlbg`bpwnfmwjlmfgbeejojbwf?,lswjlm=wqfbwnfmwgjeefqfmw,gfebvow-Sqfpjgfmwlm`oj`h>!ajldqbskzlwkfqtjpfsfqnbmfmwEqbm/KbjpKlooztllgf{sbmpjlmpwbmgbqgp?,pwzof= qfgv`wjlmGf`fnafq#sqfefqqfg@bnaqjgdflsslmfmwpAvpjmfpp#`lmevpjlm= ?wjwof=sqfpfmwfgf{sobjmfgglfp#mlw#tlqogtjgfjmwfqeb`fslpjwjlmpmftpsbsfq?,wbaof= nlvmwbjmpojhf#wkf#fppfmwjboejmbm`jbopfof`wjlmb`wjlm>!,babmglmfgFgv`bwjlmsbqpfJmw+pwbajojwzvmbaof#wl?,wjwof= qfobwjlmpMlwf#wkbwfeej`jfmwsfqelqnfgwtl#zfbqpPjm`f#wkfwkfqfelqftqbssfq!=bowfqmbwfjm`qfbpfgAbwwof#lesfq`fjufgwqzjmd#wlmf`fppbqzslqwqbzfgfof`wjlmpFojybafwk?,jeqbnf=gjp`lufqzjmpvqbm`fp-ofmdwk8ofdfmgbqzDfldqbskz`bmgjgbwf`lqslqbwfplnfwjnfppfquj`fp-jmkfqjwfg?,pwqlmd=@lnnvmjwzqfojdjlvpol`bwjlmp@lnnjwwffavjogjmdpwkf#tlqogml#olmdfqafdjmmjmdqfefqfm`f`bmmlw#afeqfrvfm`zwzsj`boozjmwl#wkf#qfobwjuf8qf`lqgjmdsqfpjgfmwjmjwjboozwf`kmjrvfwkf#lwkfqjw#`bm#aff{jpwfm`fvmgfqojmfwkjp#wjnfwfofsklmfjwfnp`lsfsqb`wj`fpbgubmwbdf*8qfwvqm#Elq#lwkfqsqlujgjmdgfnl`qb`zalwk#wkf#f{wfmpjufpveefqjmdpvsslqwfg`lnsvwfqp#evm`wjlmsqb`wj`bopbjg#wkbwjw#nbz#afFmdojpk?,eqln#wkf#p`kfgvofggltmolbgp?,obafo= pvpsf`wfgnbqdjm9#3psjqjwvbo?,kfbg= nj`qlplewdqbgvboozgjp`vppfgkf#af`bnff{f`vwjufirvfqz-ipklvpfklog`lmejqnfgsvq`kbpfgojwfqboozgfpwqlzfgvs#wl#wkfubqjbwjlmqfnbjmjmdjw#jp#mlw`fmwvqjfpIbsbmfpf#bnlmd#wkf`lnsofwfgbodlqjwknjmwfqfpwpqfafoojlmvmgfejmfgfm`lvqbdfqfpjybaofjmuloujmdpfmpjwjufvmjufqpbosqlujpjlm+bowklvdkefbwvqjmd`lmgv`wfg*/#tkj`k#`lmwjmvfg.kfbgfq!=Efaqvbqz#mvnfqlvp#lufqeolt9`lnslmfmweqbdnfmwpf{`foofmw`lopsbm>!wf`kmj`bomfbq#wkf#Bgubm`fg#plvq`f#lef{sqfppfgKlmd#Hlmd#Eb`fallhnvowjsof#nf`kbmjpnfofubwjlmleefmpjuf?,elqn= \npslmplqfggl`vnfmw-lq#%rvlw8wkfqf#bqfwklpf#tklnlufnfmwpsql`fppfpgjeej`vowpvanjwwfgqf`lnnfmg`lmujm`fgsqlnlwjmd!#tjgwk>!-qfsob`f+`obppj`bo`lbojwjlmkjp#ejqpwgf`jpjlmpbppjpwbmwjmgj`bwfgfulovwjlm.tqbssfq!fmlvdk#wlbolmd#wkfgfojufqfg..= ?"..Bnfqj`bm#sqlwf`wfgMlufnafq#?,pwzof=?evqmjwvqfJmwfqmfw##lmaovq>!pvpsfmgfgqf`jsjfmwabpfg#lm#Nlqflufq/balojpkfg`loof`wfgtfqf#nbgffnlwjlmbofnfqdfm`zmbqqbwjufbgul`bwfps{8alqgfq`lnnjwwfggjq>!owq!fnsolzffpqfpfbq`k-#pfof`wfgpv``fpplq`vpwlnfqpgjpsobzfgPfswfnafqbgg@obpp+Eb`fallh#pvddfpwfgbmg#obwfqlsfqbwjmdfobalqbwfPlnfwjnfpJmpwjwvwf`fqwbjmozjmpwboofgelooltfqpIfqvpbofnwkfz#kbuf`lnsvwjmddfmfqbwfgsqlujm`fpdvbqbmwffbqajwqbqzqf`ldmjyftbmwfg#wls{8tjgwk9wkflqz#leafkbujlvqTkjof#wkffpwjnbwfgafdbm#wl#jw#af`bnfnbdmjwvgfnvpw#kbufnlqf#wkbmGjqf`wlqzf{wfmpjlmpf`qfwbqzmbwvqboozl``vqqjmdubqjbaofpdjufm#wkfsobwelqn-?,obafo=?ebjofg#wl`lnslvmgphjmgp#le#pl`jfwjfpbolmdpjgf#..%dw8 plvwktfpwwkf#qjdkwqbgjbwjlmnbz#kbuf#vmfp`bsf+pslhfm#jm!#kqfe>!,sqldqbnnflmoz#wkf#`lnf#eqlngjqf`wlqzavqjfg#jmb#pjnjobqwkfz#tfqf?,elmw=?,Mlqtfdjbmpsf`jejfgsqlgv`jmdsbppfmdfq+mft#Gbwfwfnslqbqzej`wjlmboBewfq#wkffrvbwjlmpgltmolbg-qfdvobqozgfufolsfqbaluf#wkfojmhfg#wlskfmlnfmbsfqjlg#lewllowjs!=pvapwbm`fbvwlnbwj`bpsf`w#leBnlmd#wkf`lmmf`wfgfpwjnbwfpBjq#Elq`fpzpwfn#lelaif`wjufjnnfgjbwfnbhjmd#jwsbjmwjmdp`lmrvfqfgbqf#pwjoosql`fgvqfdqltwk#lekfbgfg#azFvqlsfbm#gjujpjlmpnlof`vofpeqbm`kjpfjmwfmwjlmbwwqb`wfg`kjogkllgbopl#vpfggfgj`bwfgpjmdbslqfgfdqff#leebwkfq#le`lmeoj`wp?,b=?,s= `bnf#eqlntfqf#vpfgmlwf#wkbwqf`fjujmdF{f`vwjuffufm#nlqfb``fpp#wl`lnnbmgfqSlojwj`bonvpj`jbmpgfoj`jlvpsqjplmfqpbgufmw#leVWE.;!#,=?"X@GBWBX!=@lmwb`wPlvwkfqm#ad`lolq>!pfqjfp#le-#Jw#tbp#jm#Fvqlsfsfqnjwwfgubojgbwf-bssfbqjmdleej`jboppfqjlvpoz.obmdvbdfjmjwjbwfgf{wfmgjmdolmd.wfqnjmeobwjlmpv`k#wkbwdfw@llhjfnbqhfg#az?,avwwlm=jnsofnfmwavw#jw#jpjm`qfbpfpgltm#wkf#qfrvjqjmdgfsfmgfmw..= ?"..#jmwfqujftTjwk#wkf#`lsjfp#le`lmpfmpvptbp#avjowUfmfyvfob+elqnfqozwkf#pwbwfsfqplmmfopwqbwfdj`ebulvq#lejmufmwjlmTjhjsfgjb`lmwjmfmwujqwvbooztkj`k#tbpsqjm`jsof@lnsofwf#jgfmwj`bopklt#wkbwsqjnjwjufbtbz#eqlnnlof`vobqsqf`jpfozgjpploufgVmgfq#wkfufqpjlm>!=%maps8?,Jw#jp#wkf#Wkjp#jp#tjoo#kbuflqdbmjpnpplnf#wjnfEqjfgqj`ktbp#ejqpwwkf#lmoz#eb`w#wkbwelqn#jg>!sqf`fgjmdWf`kmj`boskzpj`jpwl``vqp#jmmbujdbwlqpf`wjlm!=psbm#jg>!plvdkw#wlafolt#wkfpvqujujmd~?,pwzof=kjp#gfbwkbp#jm#wkf`bvpfg#azsbqwjboozf{jpwjmd#vpjmd#wkftbp#djufmb#ojpw#leofufop#lemlwjlm#leLeej`jbo#gjpnjppfgp`jfmwjpwqfpfnaofpgvsoj`bwff{solpjufqf`lufqfgboo#lwkfqdboofqjfpxsbggjmd9sflsof#leqfdjlm#lebggqfppfpbppl`jbwfjnd#bow>!jm#nlgfqmpklvog#afnfwklg#leqfslqwjmdwjnfpwbnsmffgfg#wlwkf#Dqfbwqfdbqgjmdpffnfg#wlujftfg#bpjnsb`w#lmjgfb#wkbwwkf#Tlqogkfjdkw#lef{sbmgjmdWkfpf#bqf`vqqfmw!=`bqfevooznbjmwbjmp`kbqdf#le@obppj`bobggqfppfgsqfgj`wfgltmfqpkjs?gju#jg>!qjdkw!= qfpjgfm`fofbuf#wkf`lmwfmw!=bqf#lewfm##~*+*8 sqlabaoz#Sqlefpplq.avwwlm!#qfpslmgfgpbzp#wkbwkbg#wl#afsob`fg#jmKvmdbqjbmpwbwvp#lepfqufp#bpVmjufqpbof{f`vwjlmbddqfdbwfelq#tkj`kjmef`wjlmbdqffg#wlkltfufq/#slsvobq!=sob`fg#lm`lmpwqv`wfof`wlqbopznalo#lejm`ovgjmdqfwvqm#wlbq`kjwf`w@kqjpwjbmsqfujlvp#ojujmd#jmfbpjfq#wlsqlefpplq %ow8"..#feef`w#lebmbozwj`ptbp#wbhfmtkfqf#wkfwllh#lufqafojfe#jmBeqjhbbmpbp#ebq#bpsqfufmwfgtlqh#tjwkb#psf`jbo?ejfogpfw@kqjpwnbpQfwqjfufg Jm#wkf#ab`h#jmwlmlqwkfbpwnbdbyjmfp=?pwqlmd=`lnnjwwffdlufqmjmddqlvsp#lepwlqfg#jmfpwbaojpkb#dfmfqbojwp#ejqpwwkfjq#ltmslsvobwfgbm#laif`w@bqjaafbmboolt#wkfgjpwqj`wptjp`lmpjmol`bwjlm-8#tjgwk9#jmkbajwfgPl`jbojpwIbmvbqz#2?,ellwfq=pjnjobqoz`klj`f#lewkf#pbnf#psf`jej`#avpjmfpp#Wkf#ejqpw-ofmdwk8#gfpjqf#wlgfbo#tjwkpjm`f#wkfvpfqBdfmw`lm`fjufgjmgf{-sksbp#%rvlw8fmdbdf#jmqf`fmwoz/eft#zfbqptfqf#bopl ?kfbg= ?fgjwfg#azbqf#hmltm`jwjfp#jmb``fpphfz`lmgfnmfgbopl#kbufpfquj`fp/ebnjoz#leP`kllo#le`lmufqwfgmbwvqf#le#obmdvbdfnjmjpwfqp?,laif`w=wkfqf#jp#b#slsvobqpfrvfm`fpbgul`bwfgWkfz#tfqfbmz#lwkfqol`bwjlm>fmwfq#wkfnv`k#nlqfqfeof`wfgtbp#mbnfglqjdjmbo#b#wzsj`botkfm#wkfzfmdjmffqp`lvog#mlwqfpjgfmwptfgmfpgbzwkf#wkjqg#sqlgv`wpIbmvbqz#1tkbw#wkfzb#`fqwbjmqfb`wjlmpsql`fpplqbewfq#kjpwkf#obpw#`lmwbjmfg!=?,gju= ?,b=?,wg=gfsfmg#lmpfbq`k!= sjf`fp#le`lnsfwjmdQfefqfm`fwfmmfppfftkj`k#kbp#ufqpjlm>?,psbm=#??,kfbgfq=djufp#wkfkjpwlqjbmubovf>!!=sbggjmd93ujft#wkbwwldfwkfq/wkf#nlpw#tbp#elvmgpvapfw#lebwwb`h#lm`kjogqfm/sljmwp#lesfqplmbo#slpjwjlm9boofdfgoz@ofufobmgtbp#obwfqbmg#bewfqbqf#djufmtbp#pwjoop`qloojmdgfpjdm#lenbhfp#wkfnv`k#ofppBnfqj`bmp- Bewfq#/#avw#wkfNvpfvn#leolvjpjbmb+eqln#wkfnjmmfplwbsbqwj`ofpb#sql`fppGlnjmj`bmulovnf#leqfwvqmjmdgfefmpjuf33s{\x7Fqjdknbgf#eqlnnlvpflufq!#pwzof>!pwbwfp#le+tkj`k#jp`lmwjmvfpEqbm`jp`lavjogjmd#tjwklvw#btjwk#plnftkl#tlvogb#elqn#leb#sbqw#leafelqf#jwhmltm#bp##Pfquj`fpol`bwjlm#bmg#lewfmnfbpvqjmdbmg#jw#jpsbsfqab`hubovfp#le ?wjwof=>#tjmglt-gfwfqnjmffq%rvlw8#sobzfg#azbmg#fbqoz?,`fmwfq=eqln#wkjpwkf#wkqffsltfq#bmgle#%rvlw8jmmfqKWNO?b#kqfe>!z9jmojmf8@kvq`k#lewkf#fufmwufqz#kjdkleej`jbo#.kfjdkw9#`lmwfmw>!,`dj.ajm,wl#`qfbwfbeqjhbbmpfpsfqbmwleqbm/Kbjpobwujf)Mvojfwvuj)_(`f)Mwjmb(af)Mwjmb\fUh\fT{\fTN\n{I\np@Fr\vBl\bQ\x7F A{\vUmGx A{ypYA\0zX\bTV\bWl\bUdBM\vB{\npV\v@xB\\\np@DbGz al\npa fM uD\bV~mx\vQ}\ndS p\\\bVK\bS]\bU|oD kV\ved\vHR\nb~M`\nJpoD|Q\nLPSw\bTl\nAI\nxC\bWt BqF`Cm\vLm Kx }t\bPv\ny\\\naB V\x7F\nZdXUli fr i@ BHBDBV `V\n[] p_ Tn\n~A\nxR uD `{\bV@ Tn HK AJ\vxsZf\nqIZf\vBM\v|j }t\bSM\nmC\vQ}pfquj`jlpbqw/A`volbqdfmwjmbabq`folmb`vborvjfqsvaoj`bglsqlgv`wlpslo/Awj`bqfpsvfpwbtjhjsfgjbpjdvjfmwfa/Vprvfgb`lnvmjgbgpfdvqjgbgsqjm`jsbosqfdvmwbp`lmwfmjglqfpslmgfqufmfyvfobsqlaofnbpgj`jfnaqfqfob`j/_mmlujfnaqfpjnjobqfpsqlzf`wlpsqldqbnbpjmpwjwvwlb`wjujgbgfm`vfmwqbf`lmln/Abjn/Mdfmfp`lmwb`wbqgfp`bqdbqmf`fpbqjlbwfm`j/_mwfo/Eelml`lnjpj/_m`bm`jlmfp`bsb`jgbgfm`lmwqbqbm/Mojpjpebulqjwlpw/Eqnjmlpsqlujm`jbfwjrvfwbpfofnfmwlpevm`jlmfpqfpvowbgl`bq/M`wfqsqlsjfgbgsqjm`jsjlmf`fpjgbgnvmj`jsbo`qfb`j/_mgfp`bqdbpsqfpfm`jb`lnfq`jbolsjmjlmfpfifq`j`jlfgjwlqjbopbobnbm`bdlmy/Mofygl`vnfmwlsfo/A`vobqf`jfmwfpdfmfqbofpwbqqbdlmbsq/M`wj`bmlufgbgfpsqlsvfpwbsb`jfmwfpw/E`mj`bplaifwjulp`lmwb`wlp\fHB\fIk\fHn\fH^\fHS\fHc\fHU\fId\fHn\fH{\fHC\fHR\fHT\fHR\fHI\fHc\fHY\fHn\fH\\\fHU\fIk\fHy\fIg\fHd\fHy\fIm\fHw\fH\\\fHU\fHR\fH@\fHR\fHJ\fHy\fHU\fHR\fHT\fHA\fIl\fHU\fIm\fHc\fH\\\fHU\fIl\fHB\fId\fHn\fHJ\fHS\fHD\fH@\fHR\fHHgjsolgl`p\fHT\fHB\fHC\fH\\\fIn\fHF\fHD\fHR\fHB\fHF\fHH\fHR\fHG\fHS\fH\\\fHx\fHT\fHH\fHH\fH\\\fHU\fH^\fIg\fH{\fHU\fIm\fHj\fH@\fHR\fH\\\fHJ\fIk\fHZ\fHU\fIm\fHd\fHz\fIk\fH^\fHC\fHJ\fHS\fHy\fHR\fHB\fHY\fIk\fH@\fHH\fIl\fHD\fH@\fIl\fHv\fHB\fI`\fHH\fHT\fHR\fH^\fH^\fIk\fHz\fHp\fIe\fH@\fHB\fHJ\fHJ\fHH\fHI\fHR\fHD\fHU\fIl\fHZ\fHU\fH\\\fHi\fH^\fH{\fHy\fHA\fIl\fHD\fH{\fH\\\fHF\fHR\fHT\fH\\\fHR\fHH\fHy\fHS\fHc\fHe\fHT\fIk\fH{\fHC\fIl\fHU\fIn\fHm\fHj\fH{\fIk\fHs\fIl\fHB\fHz\fIg\fHp\fHy\fHR\fH\\\fHi\fHA\fIl\fH{\fHC\fIk\fHH\fIm\fHB\fHY\fIg\fHs\fHJ\fIk\fHn\fHi\fH{\fH\\\fH|\fHT\fIk\fHB\fIk\fH^\fH^\fH{\fHR\fHU\fHR\fH^\fHf\fHF\fH\\\fHv\fHR\fH\\\fH|\fHT\fHR\fHJ\fIk\fH\\\fHp\fHS\fHT\fHJ\fHS\fH^\fH@\fHn\fHJ\fH@\fHD\fHR\fHU\fIn\fHn\fH^\fHR\fHz\fHp\fIl\fHH\fH@\fHs\fHD\fHB\fHS\fH^\fHk\fHT\fIk\fHj\fHD\fIk\fHD\fHC\fHR\fHy\fIm\fH^\fH^\fIe\fH{\fHA\fHR\fH{\fH\\\fIk\fH^\fHp\fH{\fHU\fH\\\fHR\fHB\fH^\fH{\fIk\fHF\fIk\fHp\fHU\fHR\fHI\fHk\fHT\fIl\fHT\fHU\fIl\fHy\fH^\fHR\fHL\fIl\fHy\fHU\fHR\fHm\fHJ\fIn\fH\\\fHH\fHU\fHH\fHT\fHR\fHH\fHC\fHR\fHJ\fHj\fHC\fHR\fHF\fHR\fHy\fHy\fI`\fHD\fHZ\fHR\fHB\fHJ\fIk\fHz\fHC\fHU\fIl\fH\\\fHR\fHC\fHz\fIm\fHJ\fH^\fH{\fIl`bwfdlqjfpf{sfqjfm`f?,wjwof= @lszqjdkw#ibubp`qjsw`lmgjwjlmpfufqzwkjmd?s#`obpp>!wf`kmloldzab`hdqlvmg?b#`obpp>!nbmbdfnfmw%`lsz8#132ibubP`qjsw`kbqb`wfqpaqfbg`qvnawkfnpfoufpklqjylmwbodlufqmnfmw@bojelqmjbb`wjujwjfpgjp`lufqfgMbujdbwjlmwqbmpjwjlm`lmmf`wjlmmbujdbwjlmbssfbqbm`f?,wjwof=?n`kf`hal{!#wf`kmjrvfpsqlwf`wjlmbssbqfmwozbp#tfoo#bpvmw$/#$VB.qfplovwjlmlsfqbwjlmpwfofujpjlmwqbmpobwfgTbpkjmdwlmmbujdbwlq-#>#tjmglt-jnsqfppjlm%ow8aq%dw8ojwfqbwvqfslsvobwjlmad`lolq>! fpsf`jbooz#`lmwfmw>!sqlgv`wjlmmftpofwwfqsqlsfqwjfpgfejmjwjlmofbgfqpkjsWf`kmloldzSbqojbnfmw`lnsbqjplmvo#`obpp>!-jmgf{Le+!`lm`ovpjlmgjp`vppjlm`lnslmfmwpajloldj`boQfulovwjlm\\`lmwbjmfqvmgfqpwllgmlp`qjsw=?sfqnjppjlmfb`k#lwkfqbwnlpskfqf#lmel`vp>!?elqn#jg>!sql`fppjmdwkjp-ubovfdfmfqbwjlm@lmefqfm`fpvapfrvfmwtfoo.hmltmubqjbwjlmpqfsvwbwjlmskfmlnfmlmgjp`jsojmfoldl-smd!#+gl`vnfmw/alvmgbqjfpf{sqfppjlmpfwwofnfmwAb`hdqlvmglvw#le#wkffmwfqsqjpf+!kwwsp9!#vmfp`bsf+!sbpptlqg!#gfnl`qbwj`?b#kqfe>!,tqbssfq!= nfnafqpkjsojmdvjpwj`s{8sbggjmdskjolplskzbppjpwbm`fvmjufqpjwzeb`jojwjfpqf`ldmjyfgsqfefqfm`fje#+wzsflenbjmwbjmfgul`bavobqzkzslwkfpjp-pvanjw+*8%bns8maps8bmmlwbwjlmafkjmg#wkfElvmgbwjlmsvaojpkfq!bppvnswjlmjmwqlgv`fg`lqqvswjlmp`jfmwjpwpf{soj`jwozjmpwfbg#legjnfmpjlmp#lm@oj`h>!`lmpjgfqfggfsbqwnfmwl``vsbwjlmpllm#bewfqjmufpwnfmwsqlmlvm`fgjgfmwjejfgf{sfqjnfmwNbmbdfnfmwdfldqbskj`!#kfjdkw>!ojmh#qfo>!-qfsob`f+,gfsqfppjlm`lmefqfm`fsvmjpknfmwfojnjmbwfgqfpjpwbm`fbgbswbwjlmlsslpjwjlmtfoo#hmltmpvssofnfmwgfwfqnjmfgk2#`obpp>!3s{8nbqdjmnf`kbmj`bopwbwjpwj`p`fofaqbwfgDlufqmnfmw Gvqjmd#wgfufolsfqpbqwjej`jbofrvjubofmwlqjdjmbwfg@lnnjppjlmbwwb`knfmw?psbm#jg>!wkfqf#tfqfMfgfqobmgpafzlmg#wkfqfdjpwfqfgilvqmbojpweqfrvfmwozboo#le#wkfobmd>!fm!#?,pwzof= baplovwf8#pvsslqwjmdf{wqfnfoz#nbjmpwqfbn?,pwqlmd=#slsvobqjwzfnsolznfmw?,wbaof= #`lopsbm>!?,elqn= ##`lmufqpjlmbalvw#wkf#?,s=?,gju=jmwfdqbwfg!#obmd>!fmSlqwvdvfpfpvapwjwvwfjmgjujgvbojnslppjaofnvowjnfgjbbonlpw#boos{#plojg# bsbqw#eqlnpvaif`w#wljm#Fmdojpk`qjwj`jyfgf{`fsw#elqdvjgfojmfplqjdjmboozqfnbqhbaofwkf#pf`lmgk1#`obpp>!?b#wjwof>!+jm`ovgjmdsbqbnfwfqpsqlkjajwfg>#!kwws9,,gj`wjlmbqzsfq`fswjlmqfulovwjlmelvmgbwjlms{8kfjdkw9pv``fppevopvsslqwfqpnjoofmmjvnkjp#ebwkfqwkf#%rvlw8ml.qfsfbw8`lnnfq`jbojmgvpwqjbofm`lvqbdfgbnlvmw#le#vmleej`jbofeej`jfm`zQfefqfm`fp`llqgjmbwfgjp`objnfqf{sfgjwjlmgfufolsjmd`bo`vobwfgpjnsojejfgofdjwjnbwfpvapwqjmd+3!#`obpp>!`lnsofwfozjoovpwqbwfejuf#zfbqpjmpwqvnfmwSvaojpkjmd2!#`obpp>!spz`kloldz`lmejgfm`fmvnafq#le#bapfm`f#leel`vpfg#lmiljmfg#wkfpwqv`wvqfpsqfujlvpoz=?,jeqbnf=lm`f#bdbjmavw#qbwkfqjnnjdqbmwple#`lvqpf/b#dqlvs#leOjwfqbwvqfVmojhf#wkf?,b=%maps8 evm`wjlm#jw#tbp#wkf@lmufmwjlmbvwlnlajofSqlwfpwbmwbddqfppjufbewfq#wkf#Pjnjobqoz/!#,=?,gju=`loof`wjlm evm`wjlmujpjajojwzwkf#vpf#leulovmwffqpbwwqb`wjlmvmgfq#wkf#wkqfbwfmfg)?"X@GBWBXjnslqwbm`fjm#dfmfqbowkf#obwwfq?,elqn= ?,-jmgf{Le+$j#>#38#j#?gjeefqfm`fgfulwfg#wlwqbgjwjlmppfbq`k#elqvowjnbwfozwlvqmbnfmwbwwqjavwfppl.`boofg#~ ?,pwzof=fubovbwjlmfnskbpjyfgb``fppjaof?,pf`wjlm=pv``fppjlmbolmd#tjwkNfbmtkjof/jmgvpwqjfp?,b=?aq#,=kbp#af`lnfbpsf`wp#leWfofujpjlmpveej`jfmwabphfwabooalwk#pjgfp`lmwjmvjmdbm#bqwj`of?jnd#bow>!bgufmwvqfpkjp#nlwkfqnbm`kfpwfqsqjm`jsofpsbqwj`vobq`lnnfmwbqzfeef`wp#legf`jgfg#wl!=?pwqlmd=svaojpkfqpIlvqmbo#legjeej`vowzeb`jojwbwfb``fswbaofpwzof-`pp!\nevm`wjlm#jmmlubwjlm=@lszqjdkwpjwvbwjlmptlvog#kbufavpjmfppfpGj`wjlmbqzpwbwfnfmwplewfm#vpfgsfqpjpwfmwjm#Ibmvbqz`lnsqjpjmd?,wjwof= \ngjsolnbwj``lmwbjmjmdsfqelqnjmdf{wfmpjlmpnbz#mlw#af`lm`fsw#le#lm`oj`h>!Jw#jp#boplejmbm`jbo#nbhjmd#wkfOv{fnalvqdbggjwjlmbobqf#`boofgfmdbdfg#jm!p`qjsw!*8avw#jw#tbpfof`wqlmj`lmpvanjw>! ?"..#Fmg#fof`wqj`boleej`jboozpvddfpwjlmwls#le#wkfvmojhf#wkfBvpwqbojbmLqjdjmboozqfefqfm`fp ?,kfbg= qf`ldmjpfgjmjwjbojyfojnjwfg#wlBof{bmgqjbqfwjqfnfmwBgufmwvqfpelvq#zfbqp %ow8"..#jm`qfbpjmdgf`lqbwjlmk0#`obpp>!lqjdjmp#lelaojdbwjlmqfdvobwjlm`obppjejfg+evm`wjlm+bgubmwbdfpafjmd#wkf#kjpwlqjbmp?abpf#kqfeqfsfbwfgoztjoojmd#wl`lnsbqbaofgfpjdmbwfgmlnjmbwjlmevm`wjlmbojmpjgf#wkfqfufobwjlmfmg#le#wkfp#elq#wkf#bvwklqjyfgqfevpfg#wlwbhf#sob`fbvwlmlnlvp`lnsqlnjpfslojwj`bo#qfpwbvqbmwwtl#le#wkfEfaqvbqz#1rvbojwz#leptelaif`w-vmgfqpwbmgmfbqoz#bootqjwwfm#azjmwfqujftp!#tjgwk>!2tjwkgqbtboeolbw9ofewjp#vpvbooz`bmgjgbwfpmftpsbsfqpnzpwfqjlvpGfsbqwnfmwafpw#hmltmsbqojbnfmwpvssqfppfg`lmufmjfmwqfnfnafqfggjeefqfmw#pzpwfnbwj`kbp#ofg#wlsqlsbdbmgb`lmwqloofgjmeovfm`fp`fqfnlmjbosql`objnfgSqlwf`wjlmoj#`obpp>!P`jfmwjej``obpp>!ml.wqbgfnbqhpnlqf#wkbm#tjgfpsqfbgOjafqbwjlmwllh#sob`fgbz#le#wkfbp#olmd#bpjnsqjplmfgBggjwjlmbo ?kfbg= ?nObalqbwlqzMlufnafq#1f{`fswjlmpJmgvpwqjboubqjfwz#leeolbw9#ofeGvqjmd#wkfbppfppnfmwkbuf#affm#gfbop#tjwkPwbwjpwj`pl``vqqfm`f,vo=?,gju=`ofbqej{!=wkf#svaoj`nbmz#zfbqptkj`k#tfqflufq#wjnf/pzmlmznlvp`lmwfmw!= sqfpvnbaozkjp#ebnjozvpfqBdfmw-vmf{sf`wfgjm`ovgjmd#`kboofmdfgb#njmlqjwzvmgfejmfg!afolmdp#wlwbhfm#eqlnjm#L`wlafqslpjwjlm9#pbjg#wl#afqfojdjlvp#Efgfqbwjlm#qltpsbm>!lmoz#b#eftnfbmw#wkbwofg#wl#wkf..= ?gju#?ejfogpfw=Bq`kajpkls#`obpp>!mlafjmd#vpfgbssqlb`kfpsqjujofdfpmlp`qjsw= qfpvowp#jmnbz#af#wkfFbpwfq#fddnf`kbmjpnpqfbplmbaofSlsvobwjlm@loof`wjlmpfof`wfg!=mlp`qjsw=,jmgf{-sksbqqjubo#le.ippgh$**8nbmbdfg#wljm`lnsofwf`bpvbowjfp`lnsofwjlm@kqjpwjbmpPfswfnafq#bqjwknfwj`sql`fgvqfpnjdkw#kbufSqlgv`wjlmjw#bssfbqpSkjolplskzeqjfmgpkjsofbgjmd#wldjujmd#wkfwltbqg#wkfdvbqbmwffggl`vnfmwfg`lolq9 333ujgfl#dbnf`lnnjppjlmqfeof`wjmd`kbmdf#wkfbppl`jbwfgpbmp.pfqjelmhfzsqfpp8#sbggjmd9Kf#tbp#wkfvmgfqozjmdwzsj`booz#/#bmg#wkf#pq`Fofnfmwpv``fppjufpjm`f#wkf#pklvog#af#mfwtlqhjmdb``lvmwjmdvpf#le#wkfoltfq#wkbmpkltp#wkbw?,psbm= \n\n`lnsobjmwp`lmwjmvlvprvbmwjwjfpbpwqlmlnfqkf#gjg#mlwgvf#wl#jwpbssojfg#wlbm#bufqbdffeelqwp#wlwkf#evwvqfbwwfnsw#wlWkfqfelqf/`bsbajojwzQfsvaoj`bmtbp#elqnfgFof`wqlmj`hjolnfwfqp`kboofmdfpsvaojpkjmdwkf#elqnfqjmgjdfmlvpgjqf`wjlmppvapjgjbqz`lmpsjqb`zgfwbjop#lebmg#jm#wkfbeelqgbaofpvapwbm`fpqfbplm#elq`lmufmwjlmjwfnwzsf>!baplovwfozpvsslpfgozqfnbjmfg#bbwwqb`wjufwqbufoojmdpfsbqbwfozel`vpfp#lmfofnfmwbqzbssoj`baofelvmg#wkbwpwzofpkffwnbmvp`qjswpwbmgp#elq#ml.qfsfbw+plnfwjnfp@lnnfq`jbojm#Bnfqj`bvmgfqwbhfmrvbqwfq#lebm#f{bnsofsfqplmboozjmgf{-sks<?,avwwlm= sfq`fmwbdfafpw.hmltm`qfbwjmd#b!#gjq>!owqOjfvwfmbmw ?gju#jg>!wkfz#tlvogbajojwz#lenbgf#vs#lemlwfg#wkbw`ofbq#wkbwbqdvf#wkbwwl#bmlwkfq`kjogqfm$psvqslpf#leelqnvobwfgabpfg#vslmwkf#qfdjlmpvaif`w#lesbppfmdfqpslppfppjlm- Jm#wkf#Afelqf#wkfbewfqtbqgp`vqqfmwoz#b`qlpp#wkfp`jfmwjej``lnnvmjwz-`bsjwbojpnjm#Dfqnbmzqjdkw.tjmdwkf#pzpwfnPl`jfwz#leslojwj`jbmgjqf`wjlm9tfmw#lm#wlqfnlubo#le#Mft#Zlqh#bsbqwnfmwpjmgj`bwjlmgvqjmd#wkfvmofpp#wkfkjpwlqj`bokbg#affm#bgfejmjwjufjmdqfgjfmwbwwfmgbm`f@fmwfq#elqsqlnjmfm`fqfbgzPwbwfpwqbwfdjfpavw#jm#wkfbp#sbqw#le`lmpwjwvwf`objn#wkbwobalqbwlqz`lnsbwjaofebjovqf#le/#pv`k#bp#afdbm#tjwkvpjmd#wkf#wl#sqlujgfefbwvqf#leeqln#tkj`k,!#`obpp>!dfloldj`bopfufqbo#legfojafqbwfjnslqwbmw#klogp#wkbwjmd%rvlw8#ubojdm>wlswkf#Dfqnbmlvwpjgf#lemfdlwjbwfgkjp#`bqffqpfsbqbwjlmjg>!pfbq`ktbp#`boofgwkf#elvqwkqf`qfbwjlmlwkfq#wkbmsqfufmwjlmtkjof#wkf#fgv`bwjlm/`lmmf`wjmdb``vqbwfoztfqf#avjowtbp#hjoofgbdqffnfmwpnv`k#nlqf#Gvf#wl#wkftjgwk9#233plnf#lwkfqHjmdgln#lewkf#fmwjqfebnlvp#elqwl#`lmmf`wlaif`wjufpwkf#Eqfm`ksflsof#bmgefbwvqfg!=jp#pbjg#wlpwqv`wvqboqfefqfmgvnnlpw#lewfmb#pfsbqbwf.= ?gju#jg#Leej`jbo#tlqogtjgf-bqjb.obafowkf#sobmfwbmg#jw#tbpg!#ubovf>!ollhjmd#bwafmfej`jbobqf#jm#wkfnlmjwlqjmdqfslqwfgozwkf#nlgfqmtlqhjmd#lmbooltfg#wltkfqf#wkf#jmmlubwjuf?,b=?,gju=plvmgwqb`hpfbq`kElqnwfmg#wl#afjmsvw#jg>!lsfmjmd#leqfpwqj`wfgbglswfg#azbggqfppjmdwkfloldjbmnfwklgp#leubqjbmw#le@kqjpwjbm#ufqz#obqdfbvwlnlwjufaz#ebq#wkfqbmdf#eqlnsvqpvjw#leeloolt#wkfaqlvdkw#wljm#Fmdobmgbdqff#wkbwb``vpfg#le`lnfp#eqlnsqfufmwjmdgju#pwzof>kjp#lq#kfqwqfnfmglvpeqffgln#le`lm`fqmjmd3#2fn#2fn8Abphfwaboo,pwzof-`ppbm#fbqojfqfufm#bewfq,!#wjwof>!-`ln,jmgf{wbhjmd#wkfsjwwpavqdk`lmwfmw!=?p`qjsw=+ewvqmfg#lvwkbujmd#wkf?,psbm= #l``bpjlmboaf`bvpf#jwpwbqwfg#wlskzpj`booz=?,gju= ##`qfbwfg#az@vqqfmwoz/#ad`lolq>!wbajmgf{>!gjpbpwqlvpBmbozwj`p#bopl#kbp#b=?gju#jg>!?,pwzof= ?`boofg#elqpjmdfq#bmg-pq`#>#!,,ujlobwjlmpwkjp#sljmw`lmpwbmwozjp#ol`bwfgqf`lqgjmdpg#eqln#wkfmfgfqobmgpslqwvdv/Fp;N;};D;u;F5m4K4]4_7`gfpbqqlool`lnfmwbqjlfgv`b`j/_mpfswjfnaqfqfdjpwqbglgjqf``j/_mvaj`b`j/_msvaoj`jgbgqfpsvfpwbpqfpvowbglpjnslqwbmwfqfpfqubglpbqw/A`volpgjefqfmwfppjdvjfmwfpqfs/Vaoj`bpjwvb`j/_mnjmjpwfqjlsqjub`jgbggjqf`wlqjlelqnb`j/_mslaob`j/_msqfpjgfmwf`lmw','fmjglpb``fplqjlpwf`kmlqbwjsfqplmbofp`bwfdlq/Abfpsf`jbofpgjpslmjaofb`wvbojgbgqfefqfm`jbuboobglojgajaojlwf`bqfob`jlmfp`bofmgbqjlslo/Awj`bpbmwfqjlqfpgl`vnfmwlpmbwvqbofybnbwfqjbofpgjefqfm`jbf`lm/_nj`bwqbmpslqwfqlgq/Advfysbqwj`jsbqfm`vfmwqbmgjp`vpj/_mfpwqv`wvqbevmgb`j/_meqf`vfmwfpsfqnbmfmwfwlwbonfmwf<P<R<Z<Q<R<]=o<X<Y=n<P<R<Z<Y=n<^=l<Y<P=c=n<\\<V<Z<Y=k=n<R<]=g<]<R<W<Y<Y<R=k<Y<Q=`=a=n<R<_<R<V<R<_<X<\\<S<R=m<W<Y<^=m<Y<_<R=m<\\<U=n<Y=k<Y=l<Y<[<P<R<_=o=n=m<\\<U=n<\\<Z<T<[<Q<T<P<Y<Z<X=o<]=o<X=o=n<s<R<T=m<V<[<X<Y=m=`<^<T<X<Y<R=m<^=c<[<T<Q=o<Z<Q<R=m<^<R<Y<U<W=b<X<Y<U<S<R=l<Q<R<P<Q<R<_<R<X<Y=n<Y<U=m<^<R<T=i<S=l<\\<^<\\=n<\\<V<R<U<P<Y=m=n<R<T<P<Y<Y=n<Z<T<[<Q=`<R<X<Q<R<U<W=o=k=d<Y<S<Y=l<Y<X=k<\\=m=n<T=k<\\=m=n=`=l<\\<]<R=n<Q<R<^=g=i<S=l<\\<^<R=m<R<]<R<U<S<R=n<R<P<P<Y<Q<Y<Y=k<T=m<W<Y<Q<R<^=g<Y=o=m<W=o<_<R<V<R<W<R<Q<\\<[<\\<X=n<\\<V<R<Y=n<R<_<X<\\<S<R=k=n<T<s<R=m<W<Y=n<\\<V<T<Y<Q<R<^=g<U=m=n<R<T=n=n<\\<V<T=i=m=l<\\<[=o<M<\\<Q<V=n=h<R=l=o<P<v<R<_<X<\\<V<Q<T<_<T=m<W<R<^<\\<Q<\\=d<Y<U<Q<\\<U=n<T=m<^<R<T<P=m<^=c<[=`<W=b<]<R<U=k<\\=m=n<R=m=l<Y<X<T<v=l<R<P<Y<H<R=l=o<P=l=g<Q<V<Y=m=n<\\<W<T<S<R<T=m<V=n=g=m=c=k<P<Y=m=c=j=j<Y<Q=n=l=n=l=o<X<\\=m<\\<P=g=i=l=g<Q<V<\\<q<R<^=g<U=k<\\=m<R<^<P<Y=m=n<\\=h<T<W=`<P<P<\\=l=n<\\=m=n=l<\\<Q<P<Y=m=n<Y=n<Y<V=m=n<Q<\\=d<T=i<P<T<Q=o=n<T<P<Y<Q<T<T<P<Y=b=n<Q<R<P<Y=l<_<R=l<R<X=m<\\<P<R<P=a=n<R<P=o<V<R<Q=j<Y=m<^<R<Y<P<V<\\<V<R<U<|=l=i<T<^5i5j4F4C5e4I4]4_4K5h4]4_4K5h4E4K5h4U4K5i5o4F4D5k4K4D4]4K5i4@4K5h5f5d5i4K5h4Y5d4]4@4C5f4C4E4K5h4U4Z5d4I4Z4K5m4E4K5h5n4_5i4K5h4U4K4D4F4A5i5f5h5i5h5m4K4F5i5h4F5n5e4F4U4C5f5h4K5h4X4U4]4O4B4D4K4]4F4[5d5f4]4U5h5f5o5i4I4]5m4K5n4[5h4D4K4F4K5h5h4V4E4F4]4F5f4D4K5h5j4K4_4K5h4X5f4B5i5j4F4C5f4K5h4U4]4D4K5h5n4Y4Y4K5m5h4K5i4U5h5f5k4K4F4A4C5f4G4K5h5h5k5i4K5h4U5i5h5i5o4F4D4E5f5i5o5j5o4K5h4[5m5h5m5f4C5f5d4I4C4K4]4E4F4K4]5f4B4K5h4Y4A4E4F4_4@5f5h4K5h5d5n4F4U5j4C5i4K5i4C5f5j4E4F4Y5i5f5i4O4]4X5f5m4K5h4\\5f5j4U4]4D5f4E4D5d4K4D4E4O5h4U4K4D4K5h4_5m4]5i4X4K5o5h4F4U4K5h5e4K5h4O5d5h4K5h4_5j4E4@4K5i4U4E4K5h4Y4A5m4K5h4C5f5j5o5h5i4K4F4K5h4B4K4Y4K5h5i5h5m4O4U4Z4K4M5o4F4K4D4E4K5h4B5f4]4]4_4K4J5h4K5h5n5h4D4K5h4O4C4D5i5n4K4[4U5i4]4K4_5h5i5j4[5n4E4K5h5o4F4D4K5h4]4@5h4K4X4F4]5o4K5h5n4C5i5f4U4[5f5opAzWbdMbnf+-isd!#bow>!2s{#plojg# -dje!#bow>!wqbmpsbqfmwjmelqnbwjlmbssoj`bwjlm!#lm`oj`h>!fpwbaojpkfgbgufqwjpjmd-smd!#bow>!fmujqlmnfmwsfqelqnbm`fbssqlsqjbwf%bns8ngbpk8jnnfgjbwfoz?,pwqlmd=?,qbwkfq#wkbmwfnsfqbwvqfgfufolsnfmw`lnsfwjwjlmsob`fklogfqujpjajojwz9`lszqjdkw!=3!#kfjdkw>!fufm#wklvdkqfsob`fnfmwgfpwjmbwjlm@lqslqbwjlm?vo#`obpp>!Bppl`jbwjlmjmgjujgvbopsfqpsf`wjufpfwWjnflvw+vqo+kwws9,,nbwkfnbwj`pnbqdjm.wls9fufmwvbooz#gfp`qjswjlm*#ml.qfsfbw`loof`wjlmp-ISD\x7Fwkvna\x7Fsbqwj`jsbwf,kfbg=?algzeolbw9ofew8?oj#`obpp>!kvmgqfgp#le Kltfufq/#`lnslpjwjlm`ofbq9alwk8`llsfqbwjlmtjwkjm#wkf#obafo#elq>!alqgfq.wls9Mft#Yfbobmgqf`lnnfmgfgsklwldqbskzjmwfqfpwjmd%ow8pvs%dw8`lmwqlufqpzMfwkfqobmgpbowfqmbwjufnb{ofmdwk>!ptjwyfqobmgGfufolsnfmwfppfmwjbooz Bowklvdk#?,wf{wbqfb=wkvmgfqajqgqfsqfpfmwfg%bns8mgbpk8psf`vobwjlm`lnnvmjwjfpofdjpobwjlmfof`wqlmj`p \n?gju#jg>!joovpwqbwfgfmdjmffqjmdwfqqjwlqjfpbvwklqjwjfpgjpwqjavwfg5!#kfjdkw>!pbmp.pfqje8`bsbaof#le#gjpbssfbqfgjmwfqb`wjufollhjmd#elqjw#tlvog#afBedkbmjpwbmtbp#`qfbwfgNbwk-eollq+pvqqlvmgjmd`bm#bopl#aflapfqubwjlmnbjmwfmbm`ffm`lvmwfqfg?k1#`obpp>!nlqf#qf`fmwjw#kbp#affmjmubpjlm#le*-dfwWjnf+*evmgbnfmwboGfpsjwf#wkf!=?gju#jg>!jmpsjqbwjlmf{bnjmbwjlmsqfsbqbwjlmf{sobmbwjlm?jmsvw#jg>!?,b=?,psbm=ufqpjlmp#lejmpwqvnfmwpafelqf#wkf##>#$kwws9,,Gfp`qjswjlmqfobwjufoz#-pvapwqjmd+fb`k#le#wkff{sfqjnfmwpjmeovfmwjbojmwfdqbwjlmnbmz#sflsofgvf#wl#wkf#`lnajmbwjlmgl#mlw#kbufNjggof#Fbpw?mlp`qjsw=?`lszqjdkw!#sfqkbsp#wkfjmpwjwvwjlmjm#Gf`fnafqbqqbmdfnfmwnlpw#ebnlvpsfqplmbojwz`qfbwjlm#leojnjwbwjlmpf{`ovpjufozplufqfjdmwz.`lmwfmw!= ?wg#`obpp>!vmgfqdqlvmgsbqboofo#wlgl`wqjmf#lel``vsjfg#azwfqnjmloldzQfmbjppbm`fb#mvnafq#lepvsslqw#elqf{solqbwjlmqf`ldmjwjlmsqfgf`fpplq?jnd#pq`>!,?k2#`obpp>!svaoj`bwjlmnbz#bopl#afpsf`jbojyfg?,ejfogpfw=sqldqfppjufnjoojlmp#lepwbwfp#wkbwfmelq`fnfmwbqlvmg#wkf#lmf#bmlwkfq-sbqfmwMlgfbdqj`vowvqfBowfqmbwjufqfpfbq`kfqpwltbqgp#wkfNlpw#le#wkfnbmz#lwkfq#+fpsf`jbooz?wg#tjgwk>!8tjgwk9233&jmgfsfmgfmw?k0#`obpp>!#lm`kbmdf>!*-bgg@obpp+jmwfqb`wjlmLmf#le#wkf#gbvdkwfq#leb``fpplqjfpaqbm`kfp#le ?gju#jg>!wkf#obqdfpwgf`obqbwjlmqfdvobwjlmpJmelqnbwjlmwqbmpobwjlmgl`vnfmwbqzjm#lqgfq#wl!= ?kfbg= ?!#kfjdkw>!2b`qlpp#wkf#lqjfmwbwjlm*8?,p`qjsw=jnsofnfmwfg`bm#af#pffmwkfqf#tbp#bgfnlmpwqbwf`lmwbjmfq!=`lmmf`wjlmpwkf#Aqjwjpktbp#tqjwwfm"jnslqwbmw8s{8#nbqdjm.elooltfg#azbajojwz#wl#`lnsoj`bwfggvqjmd#wkf#jnnjdqbwjlmbopl#`boofg?k7#`obpp>!gjpwjm`wjlmqfsob`fg#azdlufqmnfmwpol`bwjlm#lejm#Mlufnafqtkfwkfq#wkf?,s= ?,gju=b`rvjpjwjlm`boofg#wkf#sfqpf`vwjlmgfpjdmbwjlmxelmw.pjyf9bssfbqfg#jmjmufpwjdbwff{sfqjfm`fgnlpw#ojhfoztjgfoz#vpfggjp`vppjlmpsqfpfm`f#le#+gl`vnfmw-f{wfmpjufozJw#kbp#affmjw#glfp#mlw`lmwqbqz#wljmkbajwbmwpjnsqlufnfmwp`klobqpkjs`lmpvnswjlmjmpwqv`wjlmelq#f{bnsoflmf#lq#nlqfs{8#sbggjmdwkf#`vqqfmwb#pfqjfp#lebqf#vpvboozqlof#jm#wkfsqfujlvpoz#gfqjubwjufpfujgfm`f#lef{sfqjfm`fp`lolqp`kfnfpwbwfg#wkbw`fqwjej`bwf?,b=?,gju= #pfof`wfg>!kjdk#p`klloqfpslmpf#wl`lnelqwbaofbglswjlm#lewkqff#zfbqpwkf#`lvmwqzjm#Efaqvbqzpl#wkbw#wkfsflsof#tkl#sqlujgfg#az?sbqbn#mbnfbeef`wfg#azjm#wfqnp#lebssljmwnfmwJPL.;;6:.2!tbp#alqm#jmkjpwlqj`bo#qfdbqgfg#bpnfbpvqfnfmwjp#abpfg#lm#bmg#lwkfq#9#evm`wjlm+pjdmjej`bmw`fofaqbwjlmwqbmpnjwwfg,ip,irvfqz-jp#hmltm#bpwkflqfwj`bo#wbajmgf{>!jw#`lvog#af?mlp`qjsw= kbujmd#affm ?kfbg= ?#%rvlw8Wkf#`lnsjobwjlmkf#kbg#affmsqlgv`fg#azskjolplskfq`lmpwqv`wfgjmwfmgfg#wlbnlmd#lwkfq`lnsbqfg#wlwl#pbz#wkbwFmdjmffqjmdb#gjeefqfmwqfefqqfg#wlgjeefqfm`fpafojfe#wkbwsklwldqbskpjgfmwjezjmdKjpwlqz#le#Qfsvaoj`#lemf`fppbqjozsqlabajojwzwf`kmj`boozofbujmd#wkfpsf`wb`vobqeqb`wjlm#lefof`wqj`jwzkfbg#le#wkfqfpwbvqbmwpsbqwmfqpkjsfnskbpjp#lmnlpw#qf`fmwpkbqf#tjwk#pbzjmd#wkbwejoofg#tjwkgfpjdmfg#wljw#jp#lewfm!=?,jeqbnf=bp#elooltp9nfqdfg#tjwkwkqlvdk#wkf`lnnfq`jbo#sljmwfg#lvwlsslqwvmjwzujft#le#wkfqfrvjqfnfmwgjujpjlm#lesqldqbnnjmdkf#qf`fjufgpfwJmwfqubo!=?,psbm=?,jm#Mft#Zlqhbggjwjlmbo#`lnsqfppjlm ?gju#jg>!jm`lqslqbwf8?,p`qjsw=?bwwb`kFufmwaf`bnf#wkf#!#wbqdfw>!\\`bqqjfg#lvwPlnf#le#wkfp`jfm`f#bmgwkf#wjnf#le@lmwbjmfq!=nbjmwbjmjmd@kqjpwlskfqNv`k#le#wkftqjwjmdp#le!#kfjdkw>!1pjyf#le#wkfufqpjlm#le#nj{wvqf#le#afwtffm#wkfF{bnsofp#lefgv`bwjlmbo`lnsfwjwjuf#lmpvanjw>!gjqf`wlq#legjpwjm`wjuf,GWG#[KWNO#qfobwjmd#wlwfmgfm`z#wlsqlujm`f#letkj`k#tlvoggfpsjwf#wkfp`jfmwjej`#ofdjpobwvqf-jmmfqKWNO#boofdbwjlmpBdqj`vowvqftbp#vpfg#jmbssqlb`k#wljmwfoojdfmwzfbqp#obwfq/pbmp.pfqjegfwfqnjmjmdSfqelqnbm`fbssfbqbm`fp/#tkj`k#jp#elvmgbwjlmpbaaqfujbwfgkjdkfq#wkbmp#eqln#wkf#jmgjujgvbo#`lnslpfg#lepvsslpfg#wl`objnp#wkbwbwwqjavwjlmelmw.pjyf92fofnfmwp#leKjpwlqj`bo#kjp#aqlwkfqbw#wkf#wjnfbmmjufqpbqzdlufqmfg#azqfobwfg#wl#vowjnbwfoz#jmmlubwjlmpjw#jp#pwjoo`bm#lmoz#afgfejmjwjlmpwlDNWPwqjmdB#mvnafq#lejnd#`obpp>!Fufmwvbooz/tbp#`kbmdfgl``vqqfg#jmmfjdkalqjmdgjpwjmdvjpktkfm#kf#tbpjmwqlgv`jmdwfqqfpwqjboNbmz#le#wkfbqdvfp#wkbwbm#Bnfqj`bm`lmrvfpw#letjgfpsqfbg#tfqf#hjoofgp`qffm#bmg#Jm#lqgfq#wlf{sf`wfg#wlgfp`fmgbmwpbqf#ol`bwfgofdjpobwjufdfmfqbwjlmp#ab`hdqlvmgnlpw#sflsofzfbqp#bewfqwkfqf#jp#mlwkf#kjdkfpweqfrvfmwoz#wkfz#gl#mlwbqdvfg#wkbwpkltfg#wkbwsqfglnjmbmwwkfloldj`boaz#wkf#wjnf`lmpjgfqjmdpklqw.ojufg?,psbm=?,b=`bm#af#vpfgufqz#ojwwoflmf#le#wkf#kbg#boqfbgzjmwfqsqfwfg`lnnvmj`bwfefbwvqfp#ledlufqmnfmw/?,mlp`qjsw=fmwfqfg#wkf!#kfjdkw>!0Jmgfsfmgfmwslsvobwjlmpobqdf.p`bof-#Bowklvdk#vpfg#jm#wkfgfpwqv`wjlmslppjajojwzpwbqwjmd#jmwtl#lq#nlqff{sqfppjlmppvalqgjmbwfobqdfq#wkbmkjpwlqz#bmg?,lswjlm= @lmwjmfmwbofojnjmbwjmdtjoo#mlw#afsqb`wj`f#lejm#eqlmw#lepjwf#le#wkffmpvqf#wkbwwl#`qfbwf#bnjppjppjssjslwfmwjboozlvwpwbmgjmdafwwfq#wkbmtkbw#jp#mltpjwvbwfg#jmnfwb#mbnf>!WqbgjwjlmbopvddfpwjlmpWqbmpobwjlmwkf#elqn#lebwnlpskfqj`jgfloldj`bofmwfqsqjpfp`bo`vobwjmdfbpw#le#wkfqfnmbmwp#lesovdjmpsbdf,jmgf{-sks<qfnbjmfg#jmwqbmpelqnfgKf#tbp#bopltbp#boqfbgzpwbwjpwj`bojm#ebulq#leNjmjpwqz#lenlufnfmw#leelqnvobwjlmjp#qfrvjqfg?ojmh#qfo>!Wkjp#jp#wkf#?b#kqfe>!,slsvobqjyfgjmuloufg#jmbqf#vpfg#wlbmg#pfufqbonbgf#az#wkfpffnp#wl#afojhfoz#wkbwSbofpwjmjbmmbnfg#bewfqjw#kbg#affmnlpw#`lnnlmwl#qfefq#wlavw#wkjp#jp`lmpf`vwjufwfnslqbqjozJm#dfmfqbo/`lmufmwjlmpwbhfp#sob`fpvagjujpjlmwfqqjwlqjbolsfqbwjlmbosfqnbmfmwoztbp#obqdfozlvwaqfbh#lejm#wkf#sbpwelooltjmd#b#{nomp9ld>!=?b#`obpp>!`obpp>!wf{w@lmufqpjlm#nbz#af#vpfgnbmveb`wvqfbewfq#afjmd`ofbqej{!= rvfpwjlm#letbp#fof`wfgwl#af`lnf#baf`bvpf#le#plnf#sflsofjmpsjqfg#azpv``fppevo#b#wjnf#tkfmnlqf#`lnnlmbnlmdpw#wkfbm#leej`jbotjgwk9233&8wf`kmloldz/tbp#bglswfgwl#hffs#wkfpfwwofnfmwpojuf#ajqwkpjmgf{-kwno!@lmmf`wj`vwbppjdmfg#wl%bns8wjnfp8b``lvmw#elqbojdm>qjdkwwkf#`lnsbmzbotbzp#affmqfwvqmfg#wljmuloufnfmwAf`bvpf#wkfwkjp#sfqjlg!#mbnf>!r!#`lmejmfg#wlb#qfpvow#leubovf>!!#,=jp#b`wvboozFmujqlmnfmw ?,kfbg= @lmufqpfoz/= ?gju#jg>!3!#tjgwk>!2jp#sqlabaozkbuf#af`lnf`lmwqloojmdwkf#sqlaofn`jwjyfmp#leslojwj`jbmpqfb`kfg#wkfbp#fbqoz#bp9mlmf8#lufq?wbaof#`fooubojgjwz#legjqf`woz#wllmnlvpfgltmtkfqf#jw#jptkfm#jw#tbpnfnafqp#le#qfobwjlm#wlb``lnnlgbwfbolmd#tjwk#Jm#wkf#obwfwkf#Fmdojpkgfoj`jlvp!=wkjp#jp#mlwwkf#sqfpfmwje#wkfz#bqfbmg#ejmboozb#nbwwfq#le \n?,gju=  ?,p`qjsw=ebpwfq#wkbmnbilqjwz#lebewfq#tkj`k`lnsbqbwjufwl#nbjmwbjmjnsqluf#wkfbtbqgfg#wkffq!#`obpp>!eqbnfalqgfqqfpwlqbwjlmjm#wkf#pbnfbmbozpjp#lewkfjq#ejqpwGvqjmd#wkf#`lmwjmfmwbopfrvfm`f#leevm`wjlm+*xelmw.pjyf9#tlqh#lm#wkf?,p`qjsw= ?afdjmp#tjwkibubp`qjsw9`lmpwjwvfmwtbp#elvmgfgfrvjojaqjvnbppvnf#wkbwjp#djufm#azmffgp#wl#af`llqgjmbwfpwkf#ubqjlvpbqf#sbqw#lelmoz#jm#wkfpf`wjlmp#lejp#b#`lnnlmwkflqjfp#legjp`lufqjfpbppl`jbwjlmfgdf#le#wkfpwqfmdwk#leslpjwjlm#jmsqfpfmw.gbzvmjufqpboozwl#elqn#wkfavw#jmpwfbg`lqslqbwjlmbwwb`kfg#wljp#`lnnlmozqfbplmp#elq#%rvlw8wkf#`bm#af#nbgftbp#baof#wltkj`k#nfbmpavw#gjg#mlwlmNlvpfLufqbp#slppjaoflsfqbwfg#az`lnjmd#eqlnwkf#sqjnbqzbggjwjlm#leelq#pfufqbowqbmpefqqfgb#sfqjlg#lebqf#baof#wlkltfufq/#jwpklvog#kbufnv`k#obqdfq \n?,p`qjsw=bglswfg#wkfsqlsfqwz#legjqf`wfg#azfeef`wjufoztbp#aqlvdkw`kjogqfm#leSqldqbnnjmdolmdfq#wkbmnbmvp`qjswptbq#bdbjmpwaz#nfbmp#lebmg#nlpw#lepjnjobq#wl#sqlsqjfwbqzlqjdjmbwjmdsqfpwjdjlvpdqbnnbwj`bof{sfqjfm`f-wl#nbhf#wkfJw#tbp#bopljp#elvmg#jm`lnsfwjwlqpjm#wkf#V-P-qfsob`f#wkfaqlvdkw#wkf`bo`vobwjlmeboo#le#wkfwkf#dfmfqbosqb`wj`boozjm#klmlq#leqfofbpfg#jmqfpjgfmwjbobmg#plnf#lehjmd#le#wkfqfb`wjlm#wl2pw#Fbqo#le`vowvqf#bmgsqjm`jsbooz?,wjwof= ##wkfz#`bm#afab`h#wl#wkfplnf#le#kjpf{slpvqf#wlbqf#pjnjobqelqn#le#wkfbggEbulqjwf`jwjyfmpkjssbqw#jm#wkfsflsof#tjwkjm#sqb`wj`fwl#`lmwjmvf%bns8njmvp8bssqlufg#az#wkf#ejqpw#booltfg#wkfbmg#elq#wkfevm`wjlmjmdsobzjmd#wkfplovwjlm#wlkfjdkw>!3!#jm#kjp#allhnlqf#wkbm#belooltp#wkf`qfbwfg#wkfsqfpfm`f#jm%maps8?,wg=mbwjlmbojpwwkf#jgfb#leb#`kbqb`wfqtfqf#elq`fg#`obpp>!awmgbzp#le#wkfefbwvqfg#jmpkltjmd#wkfjmwfqfpw#jmjm#sob`f#lewvqm#le#wkfwkf#kfbg#leOlqg#le#wkfslojwj`boozkbp#jwp#ltmFgv`bwjlmbobssqlubo#leplnf#le#wkffb`k#lwkfq/afkbujlq#lebmg#af`bvpfbmg#bmlwkfqbssfbqfg#lmqf`lqgfg#jmaob`h%rvlw8nbz#jm`ovgfwkf#tlqog$p`bm#ofbg#wlqfefqp#wl#balqgfq>!3!#dlufqmnfmw#tjmmjmd#wkfqfpvowfg#jm#tkjof#wkf#Tbpkjmdwlm/wkf#pvaif`w`jwz#jm#wkf=?,gju= \n\nqfeof`w#wkfwl#`lnsofwfaf`bnf#nlqfqbgjlb`wjufqfif`wfg#aztjwklvw#bmzkjp#ebwkfq/tkj`k#`lvog`lsz#le#wkfwl#jmgj`bwfb#slojwj`bob``lvmwp#le`lmpwjwvwfptlqhfg#tjwkfq?,b=?,oj=le#kjp#ojefb``lnsbmjfg`ojfmwTjgwksqfufmw#wkfOfdjpobwjufgjeefqfmwozwldfwkfq#jmkbp#pfufqboelq#bmlwkfqwf{w#le#wkfelvmgfg#wkff#tjwk#wkf#jp#vpfg#elq`kbmdfg#wkfvpvbooz#wkfsob`f#tkfqftkfqfbp#wkf=#?b#kqfe>!!=?b#kqfe>!wkfnpfoufp/bowklvdk#kfwkbw#`bm#afwqbgjwjlmboqlof#le#wkfbp#b#qfpvowqfnluf@kjoggfpjdmfg#aztfpw#le#wkfPlnf#sflsofsqlgv`wjlm/pjgf#le#wkfmftpofwwfqpvpfg#az#wkfgltm#wl#wkfb``fswfg#azojuf#jm#wkfbwwfnswp#wllvwpjgf#wkfeqfrvfm`jfpKltfufq/#jmsqldqbnnfqpbw#ofbpw#jmbssql{jnbwfbowklvdk#jwtbp#sbqw#lebmg#ubqjlvpDlufqmlq#lewkf#bqwj`ofwvqmfg#jmwl=?b#kqfe>!,wkf#f`lmlnzjp#wkf#nlpwnlpw#tjgfoztlvog#obwfqbmg#sfqkbspqjpf#wl#wkfl``vqp#tkfmvmgfq#tkj`k`lmgjwjlmp-wkf#tfpwfqmwkflqz#wkbwjp#sqlgv`fgwkf#`jwz#lejm#tkj`k#kfpffm#jm#wkfwkf#`fmwqboavjogjmd#lenbmz#le#kjpbqfb#le#wkfjp#wkf#lmoznlpw#le#wkfnbmz#le#wkfwkf#TfpwfqmWkfqf#jp#mlf{wfmgfg#wlPwbwjpwj`bo`lopsbm>1#\x7Fpklqw#pwlqzslppjaof#wlwlsloldj`bo`qjwj`bo#leqfslqwfg#wlb#@kqjpwjbmgf`jpjlm#wljp#frvbo#wlsqlaofnp#leWkjp#`bm#afnfq`kbmgjpfelq#nlpw#leml#fujgfm`ffgjwjlmp#lefofnfmwp#jm%rvlw8-#Wkf`ln,jnbdfp,tkj`k#nbhfpwkf#sql`fppqfnbjmp#wkfojwfqbwvqf/jp#b#nfnafqwkf#slsvobqwkf#bm`jfmwsqlaofnp#jmwjnf#le#wkfgfefbwfg#azalgz#le#wkfb#eft#zfbqpnv`k#le#wkfwkf#tlqh#le@bojelqmjb/pfqufg#bp#bdlufqmnfmw-`lm`fswp#lenlufnfmw#jm\n\n?gju#jg>!jw!#ubovf>!obmdvbdf#lebp#wkfz#bqfsqlgv`fg#jmjp#wkbw#wkff{sobjm#wkfgju=?,gju= Kltfufq#wkfofbg#wl#wkf\n?b#kqfe>!,tbp#dqbmwfgsflsof#kbuf`lmwjmvbooztbp#pffm#bpbmg#qfobwfgwkf#qlof#lesqlslpfg#azle#wkf#afpwfb`k#lwkfq-@lmpwbmwjmfsflsof#eqlngjbof`wp#lewl#qfujpjlmtbp#qfmbnfgb#plvq`f#lewkf#jmjwjboobvm`kfg#jmsqlujgf#wkfwl#wkf#tfpwtkfqf#wkfqfbmg#pjnjobqafwtffm#wtljp#bopl#wkfFmdojpk#bmg`lmgjwjlmp/wkbw#jw#tbpfmwjwofg#wlwkfnpfoufp-rvbmwjwz#leqbmpsbqfm`zwkf#pbnf#bpwl#iljm#wkf`lvmwqz#bmgwkjp#jp#wkfWkjp#ofg#wlb#pwbwfnfmw`lmwqbpw#wlobpwJmgf{Lewkqlvdk#kjpjp#gfpjdmfgwkf#wfqn#jpjp#sqlujgfgsqlwf`w#wkfmd?,b=?,oj=Wkf#`vqqfmwwkf#pjwf#lepvapwbmwjbof{sfqjfm`f/jm#wkf#Tfpwwkfz#pklvogpolufm(ajmb`lnfmwbqjlpvmjufqpjgbg`lmgj`jlmfpb`wjujgbgfpf{sfqjfm`jbwf`mlold/Absqlgv``j/_msvmwvb`j/_mbsoj`b`j/_m`lmwqbpf/]b`bwfdlq/Abpqfdjpwqbqpfsqlefpjlmbowqbwbnjfmwlqfd/Apwqbwfpf`qfwbq/Absqjm`jsbofpsqlwf``j/_mjnslqwbmwfpjnslqwbm`jbslpjajojgbgjmwfqfpbmwf`qf`jnjfmwlmf`fpjgbgfppvp`qjajqpfbpl`jb`j/_mgjpslmjaofpfubovb`j/_mfpwvgjbmwfpqfpslmpbaofqfplov`j/_mdvbgbobibqbqfdjpwqbglplslqwvmjgbg`lnfq`jbofpelwldqbe/Abbvwlqjgbgfpjmdfmjfq/Abwfofujpj/_m`lnsfwfm`jblsfqb`jlmfpfpwbaof`jglpjnsofnfmwfb`wvbonfmwfmbufdb`j/_m`lmelqnjgbgojmf.kfjdkw9elmw.ebnjoz9!#9#!kwws9,,bssoj`bwjlmpojmh!#kqfe>!psf`jej`booz,,?"X@GBWBX Lqdbmjybwjlmgjpwqjavwjlm3s{8#kfjdkw9qfobwjlmpkjsgfuj`f.tjgwk?gju#`obpp>!?obafo#elq>!qfdjpwqbwjlm?,mlp`qjsw= ,jmgf{-kwno!tjmglt-lsfm+#"jnslqwbmw8bssoj`bwjlm,jmgfsfmgfm`f,,ttt-dlldoflqdbmjybwjlmbvwl`lnsofwfqfrvjqfnfmwp`lmpfqubwjuf?elqn#mbnf>!jmwfoof`wvbonbqdjm.ofew92;wk#`fmwvqzbm#jnslqwbmwjmpwjwvwjlmpbaaqfujbwjlm?jnd#`obpp>!lqdbmjpbwjlm`jujojybwjlm2:wk#`fmwvqzbq`kjwf`wvqfjm`lqslqbwfg13wk#`fmwvqz.`lmwbjmfq!=nlpw#mlwbaoz,=?,b=?,gju=mlwjej`bwjlm$vmgfejmfg$*Evqwkfqnlqf/afojfuf#wkbwjmmfqKWNO#>#sqjlq#wl#wkfgqbnbwj`boozqfefqqjmd#wlmfdlwjbwjlmpkfbgrvbqwfqpPlvwk#Beqj`bvmpv``fppevoSfmmpzoubmjbBp#b#qfpvow/?kwno#obmd>!%ow8,pvs%dw8gfbojmd#tjwkskjobgfoskjbkjpwlqj`booz*8?,p`qjsw= sbggjmd.wls9f{sfqjnfmwbodfwBwwqjavwfjmpwqv`wjlmpwf`kmloldjfpsbqw#le#wkf#>evm`wjlm+*xpvap`qjswjlmo-gwg!= ?kwdfldqbskj`bo@lmpwjwvwjlm$/#evm`wjlm+pvsslqwfg#azbdqj`vowvqbo`lmpwqv`wjlmsvaoj`bwjlmpelmw.pjyf9#2b#ubqjfwz#le?gju#pwzof>!Fm`z`olsfgjbjeqbnf#pq`>!gfnlmpwqbwfgb``lnsojpkfgvmjufqpjwjfpGfnldqbskj`p*8?,p`qjsw=?gfgj`bwfg#wlhmltofgdf#lepbwjpeb`wjlmsbqwj`vobqoz?,gju=?,gju=Fmdojpk#+VP*bssfmg@kjog+wqbmpnjppjlmp-#Kltfufq/#jmwfoojdfm`f!#wbajmgf{>!eolbw9qjdkw8@lnnlmtfbowkqbmdjmd#eqlnjm#tkj`k#wkfbw#ofbpw#lmfqfsqlgv`wjlmfm`z`olsfgjb8elmw.pjyf92ivqjpgj`wjlmbw#wkbw#wjnf!=?b#`obpp>!Jm#bggjwjlm/gfp`qjswjlm(`lmufqpbwjlm`lmwb`w#tjwkjp#dfmfqboozq!#`lmwfmw>!qfsqfpfmwjmd%ow8nbwk%dw8sqfpfmwbwjlml``bpjlmbooz?jnd#tjgwk>!mbujdbwjlm!=`lnsfmpbwjlm`kbnsjlmpkjsnfgjb>!boo!#ujlobwjlm#leqfefqfm`f#wlqfwvqm#wqvf8Pwqj`w,,FM!#wqbmpb`wjlmpjmwfqufmwjlmufqjej`bwjlmJmelqnbwjlm#gjeej`vowjfp@kbnsjlmpkjs`bsbajojwjfp?"Xfmgje^..=~ ?,p`qjsw= @kqjpwjbmjwzelq#f{bnsof/Sqlefppjlmboqfpwqj`wjlmppvddfpw#wkbwtbp#qfofbpfg+pv`k#bp#wkfqfnluf@obpp+vmfnsolznfmwwkf#Bnfqj`bmpwqv`wvqf#le,jmgf{-kwno#svaojpkfg#jmpsbm#`obpp>!!=?b#kqfe>!,jmwqlgv`wjlmafolmdjmd#wl`objnfg#wkbw`lmpfrvfm`fp?nfwb#mbnf>!Dvjgf#wl#wkflufqtkfonjmdbdbjmpw#wkf#`lm`fmwqbwfg/ -mlmwlv`k#lapfqubwjlmp?,b= ?,gju= e#+gl`vnfmw-alqgfq9#2s{#xelmw.pjyf92wqfbwnfmw#le3!#kfjdkw>!2nlgjej`bwjlmJmgfsfmgfm`fgjujgfg#jmwldqfbwfq#wkbmb`kjfufnfmwpfpwbaojpkjmdIbubP`qjsw!#mfufqwkfofpppjdmjej`bm`fAqlbg`bpwjmd=%maps8?,wg=`lmwbjmfq!= pv`k#bp#wkf#jmeovfm`f#leb#sbqwj`vobqpq`>$kwws9,,mbujdbwjlm!#kboe#le#wkf#pvapwbmwjbo#%maps8?,gju=bgubmwbdf#legjp`lufqz#leevmgbnfmwbo#nfwqlslojwbmwkf#lsslpjwf!#{no9obmd>!gfojafqbwfozbojdm>`fmwfqfulovwjlm#lesqfpfqubwjlmjnsqlufnfmwpafdjmmjmd#jmIfpvp#@kqjpwSvaoj`bwjlmpgjpbdqffnfmwwf{w.bojdm9q/#evm`wjlm+*pjnjobqjwjfpalgz=?,kwno=jp#`vqqfmwozboskbafwj`bojp#plnfwjnfpwzsf>!jnbdf,nbmz#le#wkf#eolt9kjggfm8bubjobaof#jmgfp`qjaf#wkff{jpwfm`f#leboo#lufq#wkfwkf#Jmwfqmfw\n?vo#`obpp>!jmpwboobwjlmmfjdkalqkllgbqnfg#elq`fpqfgv`jmd#wkf`lmwjmvfp#wlMlmfwkfofpp/wfnsfqbwvqfp \n\n?b#kqfe>!`olpf#wl#wkff{bnsofp#le#jp#balvw#wkf+pff#afolt*-!#jg>!pfbq`ksqlefppjlmbojp#bubjobaofwkf#leej`jbo\n\n?,p`qjsw= \n\n?gju#jg>!b``fofqbwjlmwkqlvdk#wkf#Kboo#le#Ebnfgfp`qjswjlmpwqbmpobwjlmpjmwfqefqfm`f#wzsf>$wf{w,qf`fmw#zfbqpjm#wkf#tlqogufqz#slsvobqxab`hdqlvmg9wqbgjwjlmbo#plnf#le#wkf#`lmmf`wfg#wlf{soljwbwjlmfnfqdfm`f#le`lmpwjwvwjlmB#Kjpwlqz#lepjdmjej`bmw#nbmveb`wvqfgf{sf`wbwjlmp=?mlp`qjsw=?`bm#af#elvmgaf`bvpf#wkf#kbp#mlw#affmmfjdkalvqjmdtjwklvw#wkf#bggfg#wl#wkf\n?oj#`obpp>!jmpwqvnfmwboPlujfw#Vmjlmb`hmltofgdfgtkj`k#`bm#afmbnf#elq#wkfbwwfmwjlm#wlbwwfnswp#wl#gfufolsnfmwpJm#eb`w/#wkf?oj#`obpp>!bjnsoj`bwjlmppvjwbaof#elqnv`k#le#wkf#`lolmjybwjlmsqfpjgfmwjbo`bm`foAvaaof#Jmelqnbwjlmnlpw#le#wkf#jp#gfp`qjafgqfpw#le#wkf#nlqf#lq#ofppjm#PfswfnafqJmwfoojdfm`fpq`>!kwws9,,s{8#kfjdkw9#bubjobaof#wlnbmveb`wvqfqkvnbm#qjdkwpojmh#kqfe>!,bubjobajojwzsqlslqwjlmbolvwpjgf#wkf#bpwqlmlnj`bokvnbm#afjmdpmbnf#le#wkf#bqf#elvmg#jmbqf#abpfg#lmpnboofq#wkbmb#sfqplm#tklf{sbmpjlm#lebqdvjmd#wkbwmlt#hmltm#bpJm#wkf#fbqozjmwfqnfgjbwfgfqjufg#eqlnP`bmgjmbujbm?,b=?,gju= `lmpjgfq#wkfbm#fpwjnbwfgwkf#Mbwjlmbo?gju#jg>!sbdqfpvowjmd#jm`lnnjppjlmfgbmboldlvp#wlbqf#qfrvjqfg,vo= ?,gju= tbp#abpfg#lmbmg#af`bnf#b%maps8%maps8w!#ubovf>!!#tbp#`bswvqfgml#nlqf#wkbmqfpsf`wjufoz`lmwjmvf#wl#= ?kfbg= ?tfqf#`qfbwfgnlqf#dfmfqbojmelqnbwjlm#vpfg#elq#wkfjmgfsfmgfmw#wkf#Jnsfqjbo`lnslmfmw#lewl#wkf#mlqwkjm`ovgf#wkf#@lmpwqv`wjlmpjgf#le#wkf#tlvog#mlw#afelq#jmpwbm`fjmufmwjlm#lenlqf#`lnsof{`loof`wjufozab`hdqlvmg9#wf{w.bojdm9#jwp#lqjdjmbojmwl#b``lvmwwkjp#sql`fppbm#f{wfmpjufkltfufq/#wkfwkfz#bqf#mlwqfif`wfg#wkf`qjwj`jpn#legvqjmd#tkj`ksqlabaoz#wkfwkjp#bqwj`of+evm`wjlm+*xJw#pklvog#afbm#bdqffnfmwb``jgfmwboozgjeefqp#eqlnBq`kjwf`wvqfafwwfq#hmltmbqqbmdfnfmwpjmeovfm`f#lmbwwfmgfg#wkfjgfmwj`bo#wlplvwk#le#wkfsbpp#wkqlvdk{no!#wjwof>!tfjdkw9alog8`qfbwjmd#wkfgjpsobz9mlmfqfsob`fg#wkf?jnd#pq`>!,jkwwsp9,,ttt-Tlqog#Tbq#JJwfpwjnlmjbopelvmg#jm#wkfqfrvjqfg#wl#bmg#wkbw#wkfafwtffm#wkf#tbp#gfpjdmfg`lmpjpwp#le#`lmpjgfqbaozsvaojpkfg#azwkf#obmdvbdf@lmpfqubwjlm`lmpjpwfg#leqfefq#wl#wkfab`h#wl#wkf#`pp!#nfgjb>!Sflsof#eqln#bubjobaof#lmsqlufg#wl#afpvddfpwjlmp!tbp#hmltm#bpubqjfwjfp#leojhfoz#wl#af`lnsqjpfg#lepvsslqw#wkf#kbmgp#le#wkf`lvsofg#tjwk`lmmf`w#bmg#alqgfq9mlmf8sfqelqnbm`fpafelqf#afjmdobwfq#af`bnf`bo`vobwjlmplewfm#`boofgqfpjgfmwp#lenfbmjmd#wkbw=?oj#`obpp>!fujgfm`f#elqf{sobmbwjlmpfmujqlmnfmwp!=?,b=?,gju=tkj`k#booltpJmwqlgv`wjlmgfufolsfg#azb#tjgf#qbmdflm#afkboe#leubojdm>!wls!sqjm`jsof#lebw#wkf#wjnf/?,mlp`qjsw=pbjg#wl#kbufjm#wkf#ejqpwtkjof#lwkfqpkzslwkfwj`boskjolplskfqpsltfq#le#wkf`lmwbjmfg#jmsfqelqnfg#azjmbajojwz#wltfqf#tqjwwfmpsbm#pwzof>!jmsvw#mbnf>!wkf#rvfpwjlmjmwfmgfg#elqqfif`wjlm#lejnsojfp#wkbwjmufmwfg#wkfwkf#pwbmgbqgtbp#sqlabaozojmh#afwtffmsqlefpplq#lejmwfqb`wjlmp`kbmdjmd#wkfJmgjbm#L`fbm#`obpp>!obpwtlqhjmd#tjwk$kwws9,,ttt-zfbqp#afelqfWkjp#tbp#wkfqf`qfbwjlmbofmwfqjmd#wkfnfbpvqfnfmwpbm#f{wqfnfozubovf#le#wkfpwbqw#le#wkf ?,p`qjsw= bm#feelqw#wljm`qfbpf#wkfwl#wkf#plvwkpsb`jmd>!3!=pveej`jfmwozwkf#Fvqlsfbm`lmufqwfg#wl`ofbqWjnflvwgjg#mlw#kbuf`lmpfrvfmwozelq#wkf#mf{wf{wfmpjlm#lef`lmlnj`#bmgbowklvdk#wkfbqf#sqlgv`fgbmg#tjwk#wkfjmpveej`jfmwdjufm#az#wkfpwbwjmd#wkbwf{sfmgjwvqfp?,psbm=?,b= wklvdkw#wkbwlm#wkf#abpjp`foosbggjmd>jnbdf#le#wkfqfwvqmjmd#wljmelqnbwjlm/pfsbqbwfg#azbppbppjmbwfgp!#`lmwfmw>!bvwklqjwz#lemlqwktfpwfqm?,gju= ?gju#!=?,gju= ##`lmpvowbwjlm`lnnvmjwz#lewkf#mbwjlmbojw#pklvog#afsbqwj`jsbmwp#bojdm>!ofewwkf#dqfbwfpwpfof`wjlm#lepvsfqmbwvqbogfsfmgfmw#lmjp#nfmwjlmfgbooltjmd#wkftbp#jmufmwfgb``lnsbmzjmdkjp#sfqplmbobubjobaof#bwpwvgz#le#wkflm#wkf#lwkfqf{f`vwjlm#leKvnbm#Qjdkwpwfqnp#le#wkfbppl`jbwjlmpqfpfbq`k#bmgpv``ffgfg#azgfefbwfg#wkfbmg#eqln#wkfavw#wkfz#bqf`lnnbmgfq#lepwbwf#le#wkfzfbqp#le#bdfwkf#pwvgz#le?vo#`obpp>!psob`f#jm#wkftkfqf#kf#tbp?oj#`obpp>!ewkfqf#bqf#mltkj`k#af`bnfkf#svaojpkfgf{sqfppfg#jmwl#tkj`k#wkf`lnnjppjlmfqelmw.tfjdkw9wfqqjwlqz#lef{wfmpjlmp!=Qlnbm#Fnsjqffrvbo#wl#wkfJm#`lmwqbpw/kltfufq/#bmgjp#wzsj`boozbmg#kjp#tjef+bopl#`boofg=?vo#`obpp>!feef`wjufoz#fuloufg#jmwlpffn#wl#kbuftkj`k#jp#wkfwkfqf#tbp#mlbm#f{`foofmwboo#le#wkfpfgfp`qjafg#azJm#sqb`wj`f/aqlbg`bpwjmd`kbqdfg#tjwkqfeof`wfg#jmpvaif`wfg#wlnjojwbqz#bmgwl#wkf#sljmwf`lmlnj`boozpfwWbqdfwjmdbqf#b`wvboozuj`wlqz#lufq+*8?,p`qjsw=`lmwjmvlvpozqfrvjqfg#elqfulovwjlmbqzbm#feef`wjufmlqwk#le#wkf/#tkj`k#tbp#eqlmw#le#wkflq#lwkfqtjpfplnf#elqn#lekbg#mlw#affmdfmfqbwfg#azjmelqnbwjlm-sfqnjwwfg#wljm`ovgfp#wkfgfufolsnfmw/fmwfqfg#jmwlwkf#sqfujlvp`lmpjpwfmwozbqf#hmltm#bpwkf#ejfog#lewkjp#wzsf#ledjufm#wl#wkfwkf#wjwof#le`lmwbjmp#wkfjmpwbm`fp#lejm#wkf#mlqwkgvf#wl#wkfjqbqf#gfpjdmfg`lqslqbwjlmptbp#wkbw#wkflmf#le#wkfpfnlqf#slsvobqpv``ffgfg#jmpvsslqw#eqlnjm#gjeefqfmwglnjmbwfg#azgfpjdmfg#elqltmfqpkjs#lebmg#slppjaozpwbmgbqgjyfgqfpslmpfWf{wtbp#jmwfmgfgqf`fjufg#wkfbppvnfg#wkbwbqfbp#le#wkfsqjnbqjoz#jmwkf#abpjp#lejm#wkf#pfmpfb``lvmwp#elqgfpwqlzfg#azbw#ofbpw#wtltbp#gf`obqfg`lvog#mlw#afPf`qfwbqz#lebssfbq#wl#afnbqdjm.wls92,]_p(\x7F_p(\',df*xwkqlt#f~8wkf#pwbqw#lewtl#pfsbqbwfobmdvbdf#bmgtkl#kbg#affmlsfqbwjlm#legfbwk#le#wkfqfbo#mvnafqp\n?ojmh#qfo>!sqlujgfg#wkfwkf#pwlqz#le`lnsfwjwjlmpfmdojpk#+VH*fmdojpk#+VP*<p<R<Q<_<R<W<M=l<S=m<V<T=m=l<S=m<V<T=m=l<S=m<V<R5h4U4]4D5f4E\nAOGx\bTA\nzk\vBl\bQ\x7F\bTA\nzk\vUm\bQ\x7F\bTA\nzk\npeu| i@ cT\bVV\n\\}\nxS VptSk` [X [X\vHR\bPv\bTW\bUe\n\x7Fa\bQp\v_W\vWs\nxS\vAz\n_yKhjmelqnb`j/_mkfqqbnjfmwbpfof`wq/_mj`lgfp`qjs`j/_m`obpjej`bglp`lml`jnjfmwlsvaoj`b`j/_mqfob`jlmbgbpjmelqn/Mwj`bqfob`jlmbglpgfsbqwbnfmwlwqbabibglqfpgjqf`wbnfmwfbzvmwbnjfmwlnfq`bglOjaqf`lmw/M`wfmlpkbajwb`jlmfp`vnsojnjfmwlqfpwbvqbmwfpgjpslpj`j/_m`lmpf`vfm`jbfof`wq/_mj`bbsoj`b`jlmfpgfp`lmf`wbgljmpwbob`j/_mqfbojyb`j/_mvwjojyb`j/_mfm`j`olsfgjbfmefqnfgbgfpjmpwqvnfmwlpf{sfqjfm`jbpjmpwjwv`j/_msbqwj`vobqfppva`bwfdlqjb=n<R<W=`<V<R<L<R=m=m<T<T=l<\\<]<R=n=g<]<R<W=`=d<Y<S=l<R=m=n<R<P<R<Z<Y=n<Y<X=l=o<_<T=i=m<W=o=k<\\<Y=m<Y<U=k<\\=m<^=m<Y<_<X<\\<L<R=m=m<T=c<p<R=m<V<^<Y<X=l=o<_<T<Y<_<R=l<R<X<\\<^<R<S=l<R=m<X<\\<Q<Q=g=i<X<R<W<Z<Q=g<T<P<Y<Q<Q<R<p<R=m<V<^=g=l=o<]<W<Y<U<p<R=m<V<^<\\=m=n=l<\\<Q=g<Q<T=k<Y<_<R=l<\\<]<R=n<Y<X<R<W<Z<Y<Q=o=m<W=o<_<T=n<Y<S<Y=l=`<r<X<Q<\\<V<R<S<R=n<R<P=o=l<\\<]<R=n=o<\\<S=l<Y<W=c<^<R<R<]=e<Y<R<X<Q<R<_<R=m<^<R<Y<_<R=m=n<\\=n=`<T<X=l=o<_<R<U=h<R=l=o<P<Y=i<R=l<R=d<R<S=l<R=n<T<^=m=m=g<W<V<\\<V<\\<Z<X=g<U<^<W<\\=m=n<T<_=l=o<S<S=g<^<P<Y=m=n<Y=l<\\<]<R=n<\\=m<V<\\<[<\\<W<S<Y=l<^=g<U<X<Y<W<\\=n=`<X<Y<Q=`<_<T<S<Y=l<T<R<X<]<T<[<Q<Y=m<R=m<Q<R<^<Y<P<R<P<Y<Q=n<V=o<S<T=n=`<X<R<W<Z<Q<\\=l<\\<P<V<\\=i<Q<\\=k<\\<W<R<L<\\<]<R=n<\\<N<R<W=`<V<R=m<R<^=m<Y<P<^=n<R=l<R<U<Q<\\=k<\\<W<\\=m<S<T=m<R<V=m<W=o<Z<]=g=m<T=m=n<Y<P<S<Y=k<\\=n<T<Q<R<^<R<_<R<S<R<P<R=e<T=m<\\<U=n<R<^<S<R=k<Y<P=o<S<R<P<R=e=`<X<R<W<Z<Q<R=m=m=g<W<V<T<]=g=m=n=l<R<X<\\<Q<Q=g<Y<P<Q<R<_<T<Y<S=l<R<Y<V=n<M<Y<U=k<\\=m<P<R<X<Y<W<T=n<\\<V<R<_<R<R<Q<W<\\<U<Q<_<R=l<R<X<Y<^<Y=l=m<T=c=m=n=l<\\<Q<Y=h<T<W=`<P=g=o=l<R<^<Q=c=l<\\<[<Q=g=i<T=m<V<\\=n=`<Q<Y<X<Y<W=b=c<Q<^<\\=l=c<P<Y<Q=`=d<Y<P<Q<R<_<T=i<X<\\<Q<Q<R<U<[<Q<\\=k<T=n<Q<Y<W=`<[=c=h<R=l=o<P<\\<N<Y<S<Y=l=`<P<Y=m=c=j<\\<[<\\=e<T=n=g<w=o=k=d<T<Y\fHD\fHU\fIl\fHn\fHy\fH\\\fHD\fIk\fHi\fHF\fHD\fIk\fHy\fHS\fHC\fHR\fHy\fH\\\fIk\fHn\fHi\fHD\fIa\fHC\fHy\fIa\fHC\fHR\fH{\fHR\fHk\fHM\fH@\fHR\fH\\\fIk\fHy\fHS\fHT\fIl\fHJ\fHS\fHC\fHR\fHF\fHU\fH^\fIk\fHT\fHS\fHn\fHU\fHA\fHR\fH\\\fHH\fHi\fHF\fHD\fIl\fHY\fHR\fH^\fIk\fHT\fIk\fHY\fHR\fHy\fH\\\fHH\fIk\fHB\fIk\fH\\\fIk\fHU\fIg\fHD\fIk\fHT\fHy\fHH\fIk\fH@\fHU\fIm\fHH\fHT\fHR\fHk\fHs\fHU\fIg\fH{\fHR\fHp\fHR\fHD\fIk\fHB\fHS\fHD\fHs\fHy\fH\\\fHH\fHR\fHy\fH\\\fHD\fHR\fHe\fHD\fHy\fIk\fHC\fHU\fHR\fHm\fHT\fH@\fHT\fIk\fHA\fHR\fH[\fHR\fHj\fHF\fHy\fIk\fH^\fHS\fHC\fIk\fHZ\fIm\fH\\\fIn\fHk\fHT\fHy\fIk\fHt\fHn\fHs\fIk\fHB\fIk\fH\\\fIl\fHT\fHy\fHH\fHR\fHB\fIk\fH\\\fHR\fH^\fIk\fHy\fH\\\fHi\fHK\fHS\fHy\fHi\fHF\fHD\fHR\fHT\fHB\fHR\fHp\fHB\fIm\fHq\fIk\fHy\fHR\fH\\\fHO\fHU\fIg\fHH\fHR\fHy\fHM\fHP\fIl\fHC\fHU\fHR\fHn\fHU\fIg\fHs\fH^\fHZ\fH@\fIa\fHJ\fH^\fHS\fHC\fHR\fHp\fIl\fHY\fHD\fHp\fHR\fHH\fHR\fHy\fId\fHT\fIk\fHj\fHF\fHy\fHR\fHY\fHR\fH^\fIl\fHJ\fIk\fHD\fIk\fHF\fIn\fH\\\fIl\fHF\fHR\fHD\fIl\fHe\fHT\fHy\fIk\fHU\fIg\fH{\fIl\fH@\fId\fHL\fHy\fHj\fHF\fHy\fIl\fHY\fH\\\fIa\fH[\fH{\fHR\fHn\fHY\fHj\fHF\fHy\fIg\fHp\fHS\fH^\fHR\fHp\fHR\fHD\fHR\fHT\fHU\fHB\fHH\fHU\fHB\fIk\fHn\fHe\fHD\fHy\fIl\fHC\fHR\fHU\fIn\fHJ\fH\\\fIa\fHp\fHT\fIn\fHv\fIl\fHF\fHT\fHn\fHJ\fHT\fHY\fHR\fH^\fHU\fIg\fHD\fHR\fHU\fIg\fHH\fIl\fHp\fId\fHT\fIk\fHY\fHR\fHF\fHT\fHp\fHD\fHH\fHR\fHD\fIk\fHH\fHR\fHp\fHR\fH\\\fIl\fHt\fHR\fHC\fH^\fHp\fHS\fH^\fIk\fHD\fIl\fHv\fIk\fHp\fHR\fHn\fHv\fHF\fHH\fIa\fH\\\fH{\fIn\fH{\fH^\fHp\fHR\fHH\fIk\fH@\fHR\fHU\fH\\\fHj\fHF\fHD\fIk\fHY\fHR\fHU\fHD\fHk\fHT\fHy\fHR\fHT\fIm\fH@\fHU\fH\\\fHU\fHD\fIk\fHk\fHT\fHT\fIk\fHT\fHU\fHS\fHH\fH@\fHM\fHP\fIk\fHt\fHs\fHD\fHR\fHH\fH^\fHR\fHZ\fHF\fHR\fHn\fHv\fHZ\fIa\fH\\\fIl\fH@\fHM\fHP\fIl\fHU\fIg\fHH\fIk\fHT\fHR\fHd\fHs\fHZ\fHR\fHC\fHJ\fHT\fHy\fHH\fIl\fHp\fHR\fHH\fIl\fHY\fHR\fH^\fHR\fHU\fHp\fHR\fH\\\fHF\fHs\fHD\fHR\fH\\\fHz\fHD\fIk\fHT\fHM\fHP\fHy\fHB\fHS\fH^\fHR\fHe\fHT\fHy\fIl\fHy\fIk\fHY\fH^\fH^\fH{\fHH\fHR\fHz\fHR\fHD\fHR\fHi\fH\\\fIa\fHI\fHp\fHU\fHR\fHn\fHJ\fIk\fHz\fHR\fHF\fHU\fH^\fIl\fHD\fHS\fHC\fHB\fH@\fHS\fHD\fHR\fH@\fId\fHn\fHy\fHy\fHU\fIl\fHn\fHy\fHU\fHD\fHR\fHJ\fIk\fHH\fHR\fHU\fHB\fH^\fIk\fHy\fHR\fHG\fIl\fHp\fH@\fHy\fHS\fHH\fIm\fH\\\fHH\fHB\fHR\fHn\fH{\fHY\fHU\fIl\fHn\fH\\\fIg\fHp\fHP\fHB\fHS\fH^\fIl\fHj\fH\\\fIg\fHF\fHT\fIk\fHD\fHR\fHC\fHR\fHJ\fHY\fH^\fIk\fHD\fIk\fHz\fHR\fHH\fHR\fHy\fH\\\fIl\fH@\fHe\fHD\fHy\fHR\fHp\fHY\fHR\fH@\fHF\fIn\fH\\\fHR\fH@\fHM\fHP\fHR\fHT\fI`\fHJ\fHR\fHZ\fIk\fHC\fH\\\fHy\fHS\fHC\fIk\fHy\fHU\fHR\fHn\fHi\fHy\fHT\fH\\\fH@\fHD\fHR\fHc\fHY\fHU\fHR\fHn\fHT\fIa\fHI\fH^\fHB\fHS\fH^\fIk\fH^\fIk\fHz\fHy\fHY\fHS\fH[\fHC\fHy\fIa\fH\\\fHn\fHT\fHB\fIn\fHU\fHI\fHR\fHD\fHR4F4_4F4[5f4U5i4X4K4]5o4E4D5d4K4_4[4E4K5h4Y5m4A4E5i5d4K4Z5f4U4K5h4B4K4Y4E4K5h5i4^5f4C4K5h4U4K5i4E4K5h5o4K4F4D4K5h4]4C5d4C4D4]5j4K5i4@4K5h4C5d5h4E4K5h4U4K5h5i4K5h5i5d5n4U4K5h4U4]4D5f4K5h4_4]5f4U4K5h4@5d4K5h4K5h4\\5k4K4D4K5h4A5f4K4E4K5h4A5n5d5n4K5h5o4]5f5i4K5h4U4]4K5n5i4A5m5d4T4E4K5h4G4K5j5f5i4X4K5k4C4E4K5h5i4]4O4E4K5h5n4]4N5j4K5h4X4D4K4D4K5h4A5d4K4]4K5h4@4C5f4C4K5h4O4_4]4E4K5h4U5h5d5i5i4@5i5d4U4E4K5h4]4A5i5j4K5h5j5n4K4[5m5h4_4[5f5j4K5h5o5d5f4F4K5h4C5j5f4K4D4]5o4K4F5k4K5h4]5f4K4Z4F4A5f4K4F5f4D4F5d5n5f4F4K5h4O5d5h5e4K5h4D4]5f4C4K5h5o5h4K5i4K5h4]4K4D4[4K5h4X4B4Y5f4_5f4K4]4K4F4K5h4G4K5h4G4K5h4Y5h4K4E4K5h4A4C5f4G4K5h4^5d4K4]4K5h4B5h5f4@4K5h4@5i5f4U4K5h4U4K5i5k4K5h4@5i4K5h4K5h4_4K4U4E5i4X4K5k4C5k4K5h4]4J5f4_4K5h4C4B5d5h4K5h5m5j5f4E4K5h5o4F4K4D4K5h4C5d4]5f4K5h4C4]5d4_4K4_4F4V4]5n4F4Y4K5i5f5i4K5h4D5j4K4F4K5h4U4T5f5ifmwfqwbjmnfmwvmgfqpwbmgjmd#>#evm`wjlm+*-isd!#tjgwk>!`lmejdvqbwjlm-smd!#tjgwk>!?algz#`obpp>!Nbwk-qbmgln+*`lmwfnslqbqz#Vmjwfg#Pwbwfp`jq`vnpwbm`fp-bssfmg@kjog+lqdbmjybwjlmp?psbm#`obpp>!!=?jnd#pq`>!,gjpwjmdvjpkfgwklvpbmgp#le#`lnnvmj`bwjlm`ofbq!=?,gju=jmufpwjdbwjlmebuj`lm-j`l!#nbqdjm.qjdkw9abpfg#lm#wkf#Nbppb`kvpfwwpwbaof#alqgfq>jmwfqmbwjlmbobopl#hmltm#bpsqlmvm`jbwjlmab`hdqlvmg9 esbggjmd.ofew9Elq#f{bnsof/#njp`foobmflvp%ow8,nbwk%dw8spz`kloldj`bojm#sbqwj`vobqfbq`k!#wzsf>!elqn#nfwklg>!bp#lsslpfg#wlPvsqfnf#@lvqwl``bpjlmbooz#Bggjwjlmbooz/Mlqwk#Bnfqj`bs{8ab`hdqlvmglsslqwvmjwjfpFmwfqwbjmnfmw-wlOltfq@bpf+nbmveb`wvqjmdsqlefppjlmbo#`lnajmfg#tjwkElq#jmpwbm`f/`lmpjpwjmd#le!#nb{ofmdwk>!qfwvqm#ebopf8`lmp`jlvpmfppNfgjwfqqbmfbmf{wqblqgjmbqzbppbppjmbwjlmpvapfrvfmwoz#avwwlm#wzsf>!wkf#mvnafq#lewkf#lqjdjmbo#`lnsqfkfmpjufqfefqp#wl#wkf?,vo= ?,gju= skjolplskj`bool`bwjlm-kqfetbp#svaojpkfgPbm#Eqbm`jp`l+evm`wjlm+*x ?gju#jg>!nbjmplskjpwj`bwfgnbwkfnbwj`bo#,kfbg= ?algzpvddfpwp#wkbwgl`vnfmwbwjlm`lm`fmwqbwjlmqfobwjlmpkjspnbz#kbuf#affm+elq#f{bnsof/Wkjp#bqwj`of#jm#plnf#`bpfpsbqwp#le#wkf#gfejmjwjlm#leDqfbw#Aqjwbjm#`foosbggjmd>frvjubofmw#wlsob`fklogfq>!8#elmw.pjyf9#ivpwjej`bwjlmafojfufg#wkbwpveefqfg#eqlnbwwfnswfg#wl#ofbgfq#le#wkf`qjsw!#pq`>!,+evm`wjlm+*#xbqf#bubjobaof \n?ojmh#qfo>!#pq`>$kwws9,,jmwfqfpwfg#jm`lmufmwjlmbo#!#bow>!!#,=?,bqf#dfmfqboozkbp#bopl#affmnlpw#slsvobq#`lqqfpslmgjmd`qfgjwfg#tjwkwzof>!alqgfq9?,b=?,psbm=?,-dje!#tjgwk>!?jeqbnf#pq`>!wbaof#`obpp>!jmojmf.aol`h8b``lqgjmd#wl#wldfwkfq#tjwkbssql{jnbwfozsbqojbnfmwbqznlqf#bmg#nlqfgjpsobz9mlmf8wqbgjwjlmboozsqfglnjmbmwoz%maps8\x7F%maps8%maps8?,psbm=#`foopsb`jmd>?jmsvw#mbnf>!lq!#`lmwfmw>!`lmwqlufqpjbosqlsfqwz>!ld9,{.pkl`htbuf.gfnlmpwqbwjlmpvqqlvmgfg#azMfufqwkfofpp/tbp#wkf#ejqpw`lmpjgfqbaof#Bowklvdk#wkf#`loobalqbwjlmpklvog#mlw#afsqlslqwjlm#le?psbm#pwzof>!hmltm#bp#wkf#pklqwoz#bewfqelq#jmpwbm`f/gfp`qjafg#bp#,kfbg= ?algz#pwbqwjmd#tjwkjm`qfbpjmdoz#wkf#eb`w#wkbwgjp`vppjlm#lenjggof#le#wkfbm#jmgjujgvbogjeej`vow#wl#sljmw#le#ujftklnlpf{vbojwzb``fswbm`f#le?,psbm=?,gju=nbmveb`wvqfqplqjdjm#le#wkf`lnnlmoz#vpfgjnslqwbm`f#legfmlnjmbwjlmpab`hdqlvmg9# ofmdwk#le#wkfgfwfqnjmbwjlmb#pjdmjej`bmw!#alqgfq>!3!=qfulovwjlmbqzsqjm`jsofp#lejp#`lmpjgfqfgtbp#gfufolsfgJmgl.Fvqlsfbmuvomfqbaof#wlsqlslmfmwp#lebqf#plnfwjnfp`olpfq#wl#wkfMft#Zlqh#@jwz#mbnf>!pfbq`kbwwqjavwfg#wl`lvqpf#le#wkfnbwkfnbwj`jbmaz#wkf#fmg#lebw#wkf#fmg#le!#alqgfq>!3!#wf`kmloldj`bo-qfnluf@obpp+aqbm`k#le#wkffujgfm`f#wkbw"Xfmgje^..= Jmpwjwvwf#le#jmwl#b#pjmdofqfpsf`wjufoz-bmg#wkfqfelqfsqlsfqwjfp#lejp#ol`bwfg#jmplnf#le#tkj`kWkfqf#jp#bopl`lmwjmvfg#wl#bssfbqbm`f#le#%bns8mgbpk8#gfp`qjafp#wkf`lmpjgfqbwjlmbvwklq#le#wkfjmgfsfmgfmwozfrvjssfg#tjwkglfp#mlw#kbuf?,b=?b#kqfe>!`lmevpfg#tjwk?ojmh#kqfe>!,bw#wkf#bdf#lebssfbq#jm#wkfWkfpf#jm`ovgfqfdbqgofpp#le`lvog#af#vpfg#pwzof>%rvlw8pfufqbo#wjnfpqfsqfpfmw#wkfalgz= ?,kwno=wklvdkw#wl#afslsvobwjlm#leslppjajojwjfpsfq`fmwbdf#leb``fpp#wl#wkfbm#bwwfnsw#wlsqlgv`wjlm#leirvfqz,irvfqzwtl#gjeefqfmwafolmd#wl#wkffpwbaojpknfmwqfsob`jmd#wkfgfp`qjswjlm!#gfwfqnjmf#wkfbubjobaof#elqB``lqgjmd#wl#tjgf#qbmdf#le\n?gju#`obpp>!nlqf#`lnnlmozlqdbmjpbwjlmpevm`wjlmbojwztbp#`lnsofwfg#%bns8ngbpk8#sbqwj`jsbwjlmwkf#`kbqb`wfqbm#bggjwjlmbobssfbqp#wl#afeb`w#wkbw#wkfbm#f{bnsof#lepjdmjej`bmwozlmnlvpflufq>!af`bvpf#wkfz#bpzm`#>#wqvf8sqlaofnp#tjwkpffnp#wl#kbufwkf#qfpvow#le#pq`>!kwws9,,ebnjojbq#tjwkslppfppjlm#leevm`wjlm#+*#xwllh#sob`f#jmbmg#plnfwjnfppvapwbmwjbooz?psbm=?,psbm=jp#lewfm#vpfgjm#bm#bwwfnswdqfbw#gfbo#leFmujqlmnfmwbopv``fppevooz#ujqwvbooz#boo13wk#`fmwvqz/sqlefppjlmbopmf`fppbqz#wl#gfwfqnjmfg#az`lnsbwjajojwzaf`bvpf#jw#jpGj`wjlmbqz#lenlgjej`bwjlmpWkf#elooltjmdnbz#qfefq#wl9@lmpfrvfmwoz/Jmwfqmbwjlmbobowklvdk#plnfwkbw#tlvog#aftlqog$p#ejqpw`obppjejfg#bpalwwln#le#wkf+sbqwj`vobqozbojdm>!ofew!#nlpw#`lnnlmozabpjp#elq#wkfelvmgbwjlm#le`lmwqjavwjlmpslsvobqjwz#le`fmwfq#le#wkfwl#qfgv`f#wkfivqjpgj`wjlmpbssql{jnbwjlm#lmnlvpflvw>!Mft#Wfpwbnfmw`loof`wjlm#le?,psbm=?,b=?,jm#wkf#Vmjwfgejon#gjqf`wlq.pwqj`w-gwg!=kbp#affm#vpfgqfwvqm#wl#wkfbowklvdk#wkjp`kbmdf#jm#wkfpfufqbo#lwkfqavw#wkfqf#bqfvmsqf`fgfmwfgjp#pjnjobq#wlfpsf`jbooz#jmtfjdkw9#alog8jp#`boofg#wkf`lnsvwbwjlmbojmgj`bwf#wkbwqfpwqj`wfg#wl\n?nfwb#mbnf>!bqf#wzsj`booz`lmeoj`w#tjwkKltfufq/#wkf#Bm#f{bnsof#le`lnsbqfg#tjwkrvbmwjwjfp#leqbwkfq#wkbm#b`lmpwfoobwjlmmf`fppbqz#elqqfslqwfg#wkbwpsf`jej`bwjlmslojwj`bo#bmg%maps8%maps8?qfefqfm`fp#wlwkf#pbnf#zfbqDlufqmnfmw#ledfmfqbwjlm#lekbuf#mlw#affmpfufqbo#zfbqp`lnnjwnfmw#wl\n\n?vo#`obpp>!ujpvbojybwjlm2:wk#`fmwvqz/sqb`wjwjlmfqpwkbw#kf#tlvogbmg#`lmwjmvfgl``vsbwjlm#lejp#gfejmfg#bp`fmwqf#le#wkfwkf#bnlvmw#le=?gju#pwzof>!frvjubofmw#legjeefqfmwjbwfaqlvdkw#balvwnbqdjm.ofew9#bvwlnbwj`boozwklvdkw#le#bpPlnf#le#wkfpf ?gju#`obpp>!jmsvw#`obpp>!qfsob`fg#tjwkjp#lmf#le#wkffgv`bwjlm#bmgjmeovfm`fg#azqfsvwbwjlm#bp ?nfwb#mbnf>!b``lnnlgbwjlm?,gju= ?,gju=obqdf#sbqw#leJmpwjwvwf#elqwkf#pl.`boofg#bdbjmpw#wkf#Jm#wkjp#`bpf/tbp#bssljmwfg`objnfg#wl#afKltfufq/#wkjpGfsbqwnfmw#lewkf#qfnbjmjmdfeef`w#lm#wkfsbqwj`vobqoz#gfbo#tjwk#wkf ?gju#pwzof>!bonlpw#botbzpbqf#`vqqfmwozf{sqfppjlm#leskjolplskz#leelq#nlqf#wkbm`jujojybwjlmplm#wkf#jpobmgpfof`wfgJmgf{`bm#qfpvow#jm!#ubovf>!!#,=wkf#pwqv`wvqf#,=?,b=?,gju=Nbmz#le#wkfpf`bvpfg#az#wkfle#wkf#Vmjwfgpsbm#`obpp>!n`bm#af#wqb`fgjp#qfobwfg#wlaf`bnf#lmf#lejp#eqfrvfmwozojujmd#jm#wkfwkflqfwj`boozElooltjmd#wkfQfulovwjlmbqzdlufqmnfmw#jmjp#gfwfqnjmfgwkf#slojwj`bojmwqlgv`fg#jmpveej`jfmw#wlgfp`qjswjlm!=pklqw#pwlqjfppfsbqbwjlm#lebp#wl#tkfwkfqhmltm#elq#jwptbp#jmjwjboozgjpsobz9aol`hjp#bm#f{bnsofwkf#sqjm`jsbo`lmpjpwp#le#bqf`ldmjyfg#bp,algz=?,kwno=b#pvapwbmwjboqf`lmpwqv`wfgkfbg#le#pwbwfqfpjpwbm`f#wlvmgfqdqbgvbwfWkfqf#bqf#wtldqbujwbwjlmbobqf#gfp`qjafgjmwfmwjlmboozpfqufg#bp#wkf`obpp>!kfbgfqlsslpjwjlm#wlevmgbnfmwboozglnjmbwfg#wkfbmg#wkf#lwkfqboojbm`f#tjwktbp#elq`fg#wlqfpsf`wjufoz/bmg#slojwj`bojm#pvsslqw#lesflsof#jm#wkf13wk#`fmwvqz-bmg#svaojpkfgolbg@kbqwafbwwl#vmgfqpwbmgnfnafq#pwbwfpfmujqlmnfmwboejqpw#kboe#le`lvmwqjfp#bmgbq`kjwf`wvqboaf#`lmpjgfqfg`kbqb`wfqjyfg`ofbqJmwfqubobvwklqjwbwjufEfgfqbwjlm#letbp#pv``ffgfgbmg#wkfqf#bqfb#`lmpfrvfm`fwkf#Sqfpjgfmwbopl#jm`ovgfgeqff#plewtbqfpv``fppjlm#legfufolsfg#wkftbp#gfpwqlzfgbtbz#eqln#wkf8 ?,p`qjsw= ?bowklvdk#wkfzelooltfg#az#bnlqf#sltfqevoqfpvowfg#jm#bVmjufqpjwz#leKltfufq/#nbmzwkf#sqfpjgfmwKltfufq/#plnfjp#wklvdkw#wlvmwjo#wkf#fmgtbp#bmmlvm`fgbqf#jnslqwbmwbopl#jm`ovgfp=?jmsvw#wzsf>wkf#`fmwfq#le#GL#MLW#BOWFQvpfg#wl#qfefqwkfnfp,<plqw>wkbw#kbg#affmwkf#abpjp#elqkbp#gfufolsfgjm#wkf#pvnnfq`lnsbqbwjufozgfp`qjafg#wkfpv`k#bp#wklpfwkf#qfpvowjmdjp#jnslppjaofubqjlvp#lwkfqPlvwk#Beqj`bmkbuf#wkf#pbnffeef`wjufmfppjm#tkj`k#`bpf8#wf{w.bojdm9pwqv`wvqf#bmg8#ab`hdqlvmg9qfdbqgjmd#wkfpvsslqwfg#wkfjp#bopl#hmltmpwzof>!nbqdjmjm`ovgjmd#wkfabkbpb#Nfobzvmlqph#alhn/Iomlqph#mzmlqphpolufm)M(ajmbjmwfqmb`jlmbo`bojej`b`j/_m`lnvmj`b`j/_m`lmpwqv``j/_m!=?gju#`obpp>!gjpbnajdvbwjlmGlnbjmMbnf$/#$bgnjmjpwqbwjlmpjnvowbmflvpozwqbmpslqwbwjlmJmwfqmbwjlmbo#nbqdjm.alwwln9qfpslmpjajojwz?"Xfmgje^..= ?,=?nfwb#mbnf>!jnsofnfmwbwjlmjmeqbpwqv`wvqfqfsqfpfmwbwjlmalqgfq.alwwln9?,kfbg= ?algz=>kwws&0B&1E&1E?elqn#nfwklg>!nfwklg>!slpw!#,ebuj`lm-j`l!#~*8 ?,p`qjsw= -pfwBwwqjavwf+Bgnjmjpwqbwjlm>#mft#Bqqbz+*8?"Xfmgje^..= gjpsobz9aol`h8Vmelqwvmbwfoz/!=%maps8?,gju=,ebuj`lm-j`l!=>$pwzofpkffw$#jgfmwjej`bwjlm/#elq#f{bnsof/?oj=?b#kqfe>!,bm#bowfqmbwjufbp#b#qfpvow#lesw!=?,p`qjsw= wzsf>!pvanjw!# +evm`wjlm+*#xqf`lnnfmgbwjlmelqn#b`wjlm>!,wqbmpelqnbwjlmqf`lmpwqv`wjlm-pwzof-gjpsobz#B``lqgjmd#wl#kjggfm!#mbnf>!bolmd#tjwk#wkfgl`vnfmw-algz-bssql{jnbwfoz#@lnnvmj`bwjlmpslpw!#b`wjlm>!nfbmjmd#%rvlw8..?"Xfmgje^..=Sqjnf#Njmjpwfq`kbqb`wfqjpwj`?,b=#?b#`obpp>wkf#kjpwlqz#le#lmnlvpflufq>!wkf#dlufqmnfmwkqfe>!kwwsp9,,tbp#lqjdjmbooztbp#jmwqlgv`fg`obppjej`bwjlmqfsqfpfmwbwjufbqf#`lmpjgfqfg?"Xfmgje^..= gfsfmgp#lm#wkfVmjufqpjwz#le#jm#`lmwqbpw#wl#sob`fklogfq>!jm#wkf#`bpf#lejmwfqmbwjlmbo#`lmpwjwvwjlmbopwzof>!alqgfq.9#evm`wjlm+*#xAf`bvpf#le#wkf.pwqj`w-gwg!= ?wbaof#`obpp>!b``lnsbmjfg#azb``lvmw#le#wkf?p`qjsw#pq`>!,mbwvqf#le#wkf#wkf#sflsof#jm#jm#bggjwjlm#wlp*8#ip-jg#>#jg!#tjgwk>!233&!qfdbqgjmd#wkf#Qlnbm#@bwkloj`bm#jmgfsfmgfmwelooltjmd#wkf#-dje!#tjgwk>!2wkf#elooltjmd#gjp`qjnjmbwjlmbq`kbfloldj`bosqjnf#njmjpwfq-ip!=?,p`qjsw=`lnajmbwjlm#le#nbqdjmtjgwk>!`qfbwfFofnfmw+t-bwwb`kFufmw+?,b=?,wg=?,wq=pq`>!kwwsp9,,bJm#sbqwj`vobq/#bojdm>!ofew!#@yf`k#Qfsvaoj`Vmjwfg#Hjmdgln`lqqfpslmgfm`f`lm`ovgfg#wkbw-kwno!#wjwof>!+evm`wjlm#+*#x`lnfp#eqln#wkfbssoj`bwjlm#le?psbm#`obpp>!pafojfufg#wl#affnfmw+$p`qjsw$?,b= ?,oj= ?ojufqz#gjeefqfmw=?psbm#`obpp>!lswjlm#ubovf>!+bopl#hmltm#bp\n?oj=?b#kqfe>!=?jmsvw#mbnf>!pfsbqbwfg#eqlnqfefqqfg#wl#bp#ubojdm>!wls!=elvmgfq#le#wkfbwwfnswjmd#wl#`bqalm#gjl{jgf ?gju#`obpp>!`obpp>!pfbq`k.,algz= ?,kwno=lsslqwvmjwz#wl`lnnvmj`bwjlmp?,kfbg= ?algz#pwzof>!tjgwk9Wj\rVSmd#Uj\rWkw`kbmdfp#jm#wkfalqgfq.`lolq9 3!#alqgfq>!3!#?,psbm=?,gju=?tbp#gjp`lufqfg!#wzsf>!wf{w!#*8 ?,p`qjsw= Gfsbqwnfmw#le#f``ofpjbpwj`bowkfqf#kbp#affmqfpvowjmd#eqln?,algz=?,kwno=kbp#mfufq#affmwkf#ejqpw#wjnfjm#qfpslmpf#wlbvwlnbwj`booz#?,gju= ?gju#jtbp#`lmpjgfqfgsfq`fmw#le#wkf!#,=?,b=?,gju=`loof`wjlm#le#gfp`fmgfg#eqlnpf`wjlm#le#wkfb``fsw.`kbqpfwwl#af#`lmevpfgnfnafq#le#wkf#sbggjmd.qjdkw9wqbmpobwjlm#lejmwfqsqfwbwjlm#kqfe>$kwws9,,tkfwkfq#lq#mlwWkfqf#bqf#boplwkfqf#bqf#nbmzb#pnboo#mvnafqlwkfq#sbqwp#lejnslppjaof#wl##`obpp>!avwwlmol`bwfg#jm#wkf-#Kltfufq/#wkfbmg#fufmwvboozBw#wkf#fmg#le#af`bvpf#le#jwpqfsqfpfmwp#wkf?elqn#b`wjlm>!#nfwklg>!slpw!jw#jp#slppjaofnlqf#ojhfoz#wlbm#jm`qfbpf#jmkbuf#bopl#affm`lqqfpslmgp#wlbmmlvm`fg#wkbwbojdm>!qjdkw!=nbmz#`lvmwqjfpelq#nbmz#zfbqpfbqojfpw#hmltmaf`bvpf#jw#tbpsw!=?,p`qjsw=#ubojdm>!wls!#jmkbajwbmwp#leelooltjmd#zfbq ?gju#`obpp>!njoojlm#sflsof`lmwqlufqpjbo#`lm`fqmjmd#wkfbqdvf#wkbw#wkfdlufqmnfmw#bmgb#qfefqfm`f#wlwqbmpefqqfg#wlgfp`qjajmd#wkf#pwzof>!`lolq9bowklvdk#wkfqfafpw#hmltm#elqpvanjw!#mbnf>!nvowjsoj`bwjlmnlqf#wkbm#lmf#qf`ldmjwjlm#le@lvm`jo#le#wkffgjwjlm#le#wkf##?nfwb#mbnf>!Fmwfqwbjmnfmw#btbz#eqln#wkf#8nbqdjm.qjdkw9bw#wkf#wjnf#lejmufpwjdbwjlmp`lmmf`wfg#tjwkbmg#nbmz#lwkfqbowklvdk#jw#jpafdjmmjmd#tjwk#?psbm#`obpp>!gfp`fmgbmwp#le?psbm#`obpp>!j#bojdm>!qjdkw!?,kfbg= ?algz#bpsf`wp#le#wkfkbp#pjm`f#affmFvqlsfbm#Vmjlmqfnjmjp`fmw#lenlqf#gjeej`vowUj`f#Sqfpjgfmw`lnslpjwjlm#lesbppfg#wkqlvdknlqf#jnslqwbmwelmw.pjyf922s{f{sobmbwjlm#lewkf#`lm`fsw#letqjwwfm#jm#wkf\n?psbm#`obpp>!jp#lmf#le#wkf#qfpfnaobm`f#wllm#wkf#dqlvmgptkj`k#`lmwbjmpjm`ovgjmd#wkf#gfejmfg#az#wkfsvaoj`bwjlm#lenfbmp#wkbw#wkflvwpjgf#le#wkfpvsslqw#le#wkf?jmsvw#`obpp>!?psbm#`obpp>!w+Nbwk-qbmgln+*nlpw#sqlnjmfmwgfp`qjswjlm#le@lmpwbmwjmlsoftfqf#svaojpkfg?gju#`obpp>!pfbssfbqp#jm#wkf2!#kfjdkw>!2!#nlpw#jnslqwbmwtkj`k#jm`ovgfptkj`k#kbg#affmgfpwqv`wjlm#lewkf#slsvobwjlm \n?gju#`obpp>!slppjajojwz#leplnfwjnfp#vpfgbssfbq#wl#kbufpv``fpp#le#wkfjmwfmgfg#wl#afsqfpfmw#jm#wkfpwzof>!`ofbq9a ?,p`qjsw= ?tbp#elvmgfg#jmjmwfqujft#tjwk\\jg!#`lmwfmw>!`bsjwbo#le#wkf ?ojmh#qfo>!pqfofbpf#le#wkfsljmw#lvw#wkbw{NOKwwsQfrvfpwbmg#pvapfrvfmwpf`lmg#obqdfpwufqz#jnslqwbmwpsf`jej`bwjlmppvqeb`f#le#wkfbssojfg#wl#wkfelqfjdm#sloj`z\\pfwGlnbjmMbnffpwbaojpkfg#jmjp#afojfufg#wlJm#bggjwjlm#wlnfbmjmd#le#wkfjp#mbnfg#bewfqwl#sqlwf`w#wkfjp#qfsqfpfmwfgGf`obqbwjlm#lenlqf#feej`jfmw@obppjej`bwjlmlwkfq#elqnp#lekf#qfwvqmfg#wl?psbm#`obpp>!`sfqelqnbm`f#le+evm`wjlm+*#xje#bmg#lmoz#jeqfdjlmp#le#wkfofbgjmd#wl#wkfqfobwjlmp#tjwkVmjwfg#Mbwjlmppwzof>!kfjdkw9lwkfq#wkbm#wkfzsf!#`lmwfmw>!Bppl`jbwjlm#le ?,kfbg= ?algzol`bwfg#lm#wkfjp#qfefqqfg#wl+jm`ovgjmd#wkf`lm`fmwqbwjlmpwkf#jmgjujgvbobnlmd#wkf#nlpwwkbm#bmz#lwkfq,= ?ojmh#qfo>!#qfwvqm#ebopf8wkf#svqslpf#lewkf#bajojwz#wl8`lolq9 eee~ - ?psbm#`obpp>!wkf#pvaif`w#legfejmjwjlmp#le= ?ojmh#qfo>!`objn#wkbw#wkfkbuf#gfufolsfg?wbaof#tjgwk>!`fofaqbwjlm#leElooltjmd#wkf#wl#gjpwjmdvjpk?psbm#`obpp>!awbhfp#sob`f#jmvmgfq#wkf#mbnfmlwfg#wkbw#wkf=?"Xfmgje^..= pwzof>!nbqdjm.jmpwfbg#le#wkfjmwqlgv`fg#wkfwkf#sql`fpp#lejm`qfbpjmd#wkfgjeefqfm`fp#jmfpwjnbwfg#wkbwfpsf`jbooz#wkf,gju=?gju#jg>!tbp#fufmwvboozwkqlvdklvw#kjpwkf#gjeefqfm`fplnfwkjmd#wkbwpsbm=?,psbm=?,pjdmjej`bmwoz#=?,p`qjsw=  fmujqlmnfmwbo#wl#sqfufmw#wkfkbuf#affm#vpfgfpsf`jbooz#elqvmgfqpwbmg#wkfjp#fppfmwjbooztfqf#wkf#ejqpwjp#wkf#obqdfpwkbuf#affm#nbgf!#pq`>!kwws9,,jmwfqsqfwfg#bppf`lmg#kboe#le`qloojmd>!ml!#jp#`lnslpfg#leJJ/#Kloz#Qlnbmjp#f{sf`wfg#wlkbuf#wkfjq#ltmgfejmfg#bp#wkfwqbgjwjlmbooz#kbuf#gjeefqfmwbqf#lewfm#vpfgwl#fmpvqf#wkbwbdqffnfmw#tjwk`lmwbjmjmd#wkfbqf#eqfrvfmwozjmelqnbwjlm#lmf{bnsof#jp#wkfqfpvowjmd#jm#b?,b=?,oj=?,vo=#`obpp>!ellwfqbmg#fpsf`jboozwzsf>!avwwlm!#?,psbm=?,psbm=tkj`k#jm`ovgfg= ?nfwb#mbnf>!`lmpjgfqfg#wkf`bqqjfg#lvw#azKltfufq/#jw#jpaf`bnf#sbqw#lejm#qfobwjlm#wlslsvobq#jm#wkfwkf#`bsjwbo#letbp#leej`jbooztkj`k#kbp#affmwkf#Kjpwlqz#lebowfqmbwjuf#wlgjeefqfmw#eqlnwl#pvsslqw#wkfpvddfpwfg#wkbwjm#wkf#sql`fpp##?gju#`obpp>!wkf#elvmgbwjlmaf`bvpf#le#kjp`lm`fqmfg#tjwkwkf#vmjufqpjwzlsslpfg#wl#wkfwkf#`lmwf{w#le?psbm#`obpp>!swf{w!#mbnf>!r!\n\n?gju#`obpp>!wkf#p`jfmwjej`qfsqfpfmwfg#aznbwkfnbwj`jbmpfof`wfg#az#wkfwkbw#kbuf#affm=?gju#`obpp>!`gju#jg>!kfbgfqjm#sbqwj`vobq/`lmufqwfg#jmwl*8 ?,p`qjsw= ?skjolplskj`bo#pqsphlkqubwphjwj\rVSmd#Uj\rWkw<L=o=m=m<V<T<U=l=o=m=m<V<T<Ujmufpwjdb`j/_msbqwj`jsb`j/_m<V<R=n<R=l=g<Y<R<]<W<\\=m=n<T<V<R=n<R=l=g<U=k<Y<W<R<^<Y<V=m<T=m=n<Y<P=g<q<R<^<R=m=n<T<V<R=n<R=l=g=i<R<]<W<\\=m=n=`<^=l<Y<P<Y<Q<T<V<R=n<R=l<\\=c=m<Y<_<R<X<Q=c=m<V<\\=k<\\=n=`<Q<R<^<R=m=n<T<O<V=l<\\<T<Q=g<^<R<S=l<R=m=g<V<R=n<R=l<R<U=m<X<Y<W<\\=n=`<S<R<P<R=e=`=b=m=l<Y<X=m=n<^<R<]=l<\\<[<R<P=m=n<R=l<R<Q=g=o=k<\\=m=n<T<Y=n<Y=k<Y<Q<T<Y<\x7F<W<\\<^<Q<\\=c<T=m=n<R=l<T<T=m<T=m=n<Y<P<\\=l<Y=d<Y<Q<T=c<M<V<\\=k<\\=n=`<S<R=a=n<R<P=o=m<W<Y<X=o<Y=n=m<V<\\<[<\\=n=`=n<R<^<\\=l<R<^<V<R<Q<Y=k<Q<R=l<Y=d<Y<Q<T<Y<V<R=n<R=l<R<Y<R=l<_<\\<Q<R<^<V<R=n<R=l<R<P<L<Y<V<W<\\<P<\\4K5h5i5j4F4C5e5i5j4F4C5f4K4F4K5h5i5d4Z5d4U4K5h4D4]4K5i4@4K5h5i5d4K5n4U4K5h4]4_4K4J5h5i4X4K4]5o4K4F4K5h4O4U4Z4K4M4K5h4]5f4K4Z4E4K5h4F4Y5i5f5i4K5h4K4U4Z4K4M4K5h5j4F4K4J4@4K5h4O5h4U4K4D4K5h4F4_4@5f5h4K5h4O5n4_4K5i4K5h4Z4V4[4K4F4K5h5m5f4C5f5d4K5h4F4]4A5f4D4K5h4@4C5f4C4E4K5h4F4U5h5f5i4K5h4O4B4D4K4]4K5h4K5m5h4K5i4K5h4O5m5h4K5i4K5h4F4K4]5f4B4K5h4F5n5j5f4E4K5h4K5h4U4K4D4K5h4B5d4K4[4]4K5h5i4@4F5i4U4K5h4C5f5o5d4]4K5h4_5f4K4A4E4U4D4C4K5h5h5k4K5h4F4]4D5f4E4K5h4]5d4K4D4[4K5h4O4C4D5f4E4K5h4K4B4D4K4]4K5h5i4F4A4C4E4K5h4K4V4K5j5f`vqplq9sljmwfq8?,wjwof= ?nfwb#!#kqfe>!kwws9,,!=?psbm#`obpp>!nfnafqp#le#wkf#tjmglt-ol`bwjlmufqwj`bo.bojdm9,b=#\x7F#?b#kqfe>!?"gl`wzsf#kwno=nfgjb>!p`qffm!#?lswjlm#ubovf>!ebuj`lm-j`l!#,= \n\n?gju#`obpp>!`kbqb`wfqjpwj`p!#nfwklg>!dfw!#,algz= ?,kwno= pklqw`vw#j`lm!#gl`vnfmw-tqjwf+sbggjmd.alwwln9qfsqfpfmwbwjufppvanjw!#ubovf>!bojdm>!`fmwfq!#wkqlvdklvw#wkf#p`jfm`f#ej`wjlm ##?gju#`obpp>!pvanjw!#`obpp>!lmf#le#wkf#nlpw#ubojdm>!wls!=?tbp#fpwbaojpkfg*8 ?,p`qjsw= qfwvqm#ebopf8!=*-pwzof-gjpsobzaf`bvpf#le#wkf#gl`vnfmw-`llhjf?elqn#b`wjlm>!,~algzxnbqdjm938Fm`z`olsfgjb#leufqpjlm#le#wkf#-`qfbwfFofnfmw+mbnf!#`lmwfmw>!?,gju= ?,gju= bgnjmjpwqbwjuf#?,algz= ?,kwno=kjpwlqz#le#wkf#!=?jmsvw#wzsf>!slqwjlm#le#wkf#bp#sbqw#le#wkf#%maps8?b#kqfe>!lwkfq#`lvmwqjfp!= ?gju#`obpp>!?,psbm=?,psbm=?Jm#lwkfq#tlqgp/gjpsobz9#aol`h8`lmwqlo#le#wkf#jmwqlgv`wjlm#le,= ?nfwb#mbnf>!bp#tfoo#bp#wkf#jm#qf`fmw#zfbqp \n?gju#`obpp>!?,gju= \n?,gju= jmpsjqfg#az#wkfwkf#fmg#le#wkf#`lnsbwjaof#tjwkaf`bnf#hmltm#bp#pwzof>!nbqdjm9-ip!=?,p`qjsw=?#Jmwfqmbwjlmbo#wkfqf#kbuf#affmDfqnbm#obmdvbdf#pwzof>!`lolq9 @lnnvmjpw#Sbqwz`lmpjpwfmw#tjwkalqgfq>!3!#`foo#nbqdjmkfjdkw>!wkf#nbilqjwz#le!#bojdm>!`fmwfqqfobwfg#wl#wkf#nbmz#gjeefqfmw#Lqwklgl{#@kvq`kpjnjobq#wl#wkf#,= ?ojmh#qfo>!ptbp#lmf#le#wkf#vmwjo#kjp#gfbwk~*+*8 ?,p`qjsw=lwkfq#obmdvbdfp`lnsbqfg#wl#wkfslqwjlmp#le#wkfwkf#Mfwkfqobmgpwkf#nlpw#`lnnlmab`hdqlvmg9vqo+bqdvfg#wkbw#wkfp`qloojmd>!ml!#jm`ovgfg#jm#wkfMlqwk#Bnfqj`bm#wkf#mbnf#le#wkfjmwfqsqfwbwjlmpwkf#wqbgjwjlmbogfufolsnfmw#le#eqfrvfmwoz#vpfgb#`loof`wjlm#leufqz#pjnjobq#wlpvqqlvmgjmd#wkff{bnsof#le#wkjpbojdm>!`fmwfq!=tlvog#kbuf#affmjnbdf\\`bswjlm#>bwwb`kfg#wl#wkfpvddfpwjmd#wkbwjm#wkf#elqn#le#jmuloufg#jm#wkfjp#gfqjufg#eqlnmbnfg#bewfq#wkfJmwqlgv`wjlm#wlqfpwqj`wjlmp#lm#pwzof>!tjgwk9#`bm#af#vpfg#wl#wkf#`qfbwjlm#lenlpw#jnslqwbmw#jmelqnbwjlm#bmgqfpvowfg#jm#wkf`loobspf#le#wkfWkjp#nfbmp#wkbwfofnfmwp#le#wkftbp#qfsob`fg#azbmbozpjp#le#wkfjmpsjqbwjlm#elqqfdbqgfg#bp#wkfnlpw#pv``fppevohmltm#bp#%rvlw8b#`lnsqfkfmpjufKjpwlqz#le#wkf#tfqf#`lmpjgfqfgqfwvqmfg#wl#wkfbqf#qfefqqfg#wlVmplvq`fg#jnbdf= \n?gju#`obpp>!`lmpjpwp#le#wkfpwlsSqlsbdbwjlmjmwfqfpw#jm#wkfbubjobajojwz#lebssfbqp#wl#kbuffof`wqlnbdmfwj`fmbaofPfquj`fp+evm`wjlm#le#wkfJw#jp#jnslqwbmw?,p`qjsw=?,gju=evm`wjlm+*xubq#qfobwjuf#wl#wkfbp#b#qfpvow#le#wkf#slpjwjlm#leElq#f{bnsof/#jm#nfwklg>!slpw!#tbp#elooltfg#az%bns8ngbpk8#wkfwkf#bssoj`bwjlmip!=?,p`qjsw= vo=?,gju=?,gju=bewfq#wkf#gfbwktjwk#qfpsf`w#wlpwzof>!sbggjmd9jp#sbqwj`vobqozgjpsobz9jmojmf8#wzsf>!pvanjw!#jp#gjujgfg#jmwl\bTA\nzk#+\vBl\bQ\x7F*qfpslmpbajojgbgbgnjmjpwqb`j/_mjmwfqmb`jlmbofp`lqqfpslmgjfmwf\fHe\fHF\fHC\fIg\fH{\fHF\fIn\fH\\\fIa\fHY\fHU\fHB\fHR\fH\\\fIk\fH^\fIg\fH{\fIg\fHn\fHv\fIm\fHD\fHR\fHY\fH^\fIk\fHy\fHS\fHD\fHT\fH\\\fHy\fHR\fH\\\fHF\fIm\fH^\fHS\fHT\fHz\fIg\fHp\fIk\fHn\fHv\fHR\fHU\fHS\fHc\fHA\fIk\fHp\fIk\fHn\fHZ\fHR\fHB\fHS\fH^\fHU\fHB\fHR\fH\\\fIl\fHp\fHR\fH{\fH\\\fHO\fH@\fHD\fHR\fHD\fIk\fHy\fIm\fHB\fHR\fH\\\fH@\fIa\fH^\fIe\fH{\fHB\fHR\fH^\fHS\fHy\fHB\fHU\fHS\fH^\fHR\fHF\fIo\fH[\fIa\fHL\fH@\fHN\fHP\fHH\fIk\fHA\fHR\fHp\fHF\fHR\fHy\fIa\fH^\fHS\fHy\fHs\fIa\fH\\\fIk\fHD\fHz\fHS\fH^\fHR\fHG\fHJ\fI`\fH\\\fHR\fHD\fHB\fHR\fHB\fH^\fIk\fHB\fHH\fHJ\fHR\fHD\fH@\fHR\fHp\fHR\fH\\\fHY\fHS\fHy\fHR\fHT\fHy\fIa\fHC\fIg\fHn\fHv\fHR\fHU\fHH\fIk\fHF\fHU\fIm\fHm\fHv\fH@\fHH\fHR\fHC\fHR\fHT\fHn\fHY\fHR\fHJ\fHJ\fIk\fHz\fHD\fIk\fHF\fHS\fHw\fH^\fIk\fHY\fHS\fHZ\fIk\fH[\fH\\\fHR\fHp\fIa\fHC\fHe\fHH\fIa\fHH\fH\\\fHB\fIm\fHn\fH@\fHd\fHJ\fIg\fHD\fIg\fHn\fHe\fHF\fHy\fH\\\fHO\fHF\fHN\fHP\fIk\fHn\fHT\fIa\fHI\fHS\fHH\fHG\fHS\fH^\fIa\fHB\fHB\fIm\fHz\fIa\fHC\fHi\fHv\fIa\fHw\fHR\fHw\fIn\fHs\fHH\fIl\fHT\fHn\fH{\fIl\fHH\fHp\fHR\fHc\fH{\fHR\fHY\fHS\fHA\fHR\fH{\fHt\fHO\fIa\fHs\fIk\fHJ\fIn\fHT\fH\\\fIk\fHJ\fHS\fHD\fIg\fHn\fHU\fHH\fIa\fHC\fHR\fHT\fIk\fHy\fIa\fHT\fH{\fHR\fHn\fHK\fIl\fHY\fHS\fHZ\fIa\fHY\fH\\\fHR\fHH\fIk\fHn\fHJ\fId\fHs\fIa\fHT\fHD\fHy\fIa\fHZ\fHR\fHT\fHR\fHB\fHD\fIk\fHi\fHJ\fHR\fH^\fHH\fH@\fHS\fHp\fH^\fIl\fHF\fIm\fH\\\fIn\fH[\fHU\fHS\fHn\fHJ\fIl\fHB\fHS\fHH\fIa\fH\\\fHy\fHY\fHS\fHH\fHR\fH\\\fIm\fHF\fHC\fIk\fHT\fIa\fHI\fHR\fHD\fHy\fH\\\fIg\fHM\fHP\fHB\fIm\fHy\fIa\fHH\fHC\fIg\fHp\fHD\fHR\fHy\fIo\fHF\fHC\fHR\fHF\fIg\fHT\fIa\fHs\fHt\fH\\\fIk\fH^\fIn\fHy\fHR\fH\\\fIa\fHC\fHY\fHS\fHv\fHR\fH\\\fHT\fIn\fHv\fHD\fHR\fHB\fIn\fH^\fIa\fHC\fHJ\fIk\fHz\fIk\fHn\fHU\fHB\fIk\fHZ\fHR\fHT\fIa\fHy\fIn\fH^\fHB\fId\fHn\fHD\fIk\fHH\fId\fHC\fHR\fH\\\fHp\fHS\fHT\fHy\fIkqpp({no!#wjwof>!.wzsf!#`lmwfmw>!wjwof!#`lmwfmw>!bw#wkf#pbnf#wjnf-ip!=?,p`qjsw= ?!#nfwklg>!slpw!#?,psbm=?,b=?,oj=ufqwj`bo.bojdm9w,irvfqz-njm-ip!=-`oj`h+evm`wjlm+#pwzof>!sbggjmd.~*+*8 ?,p`qjsw= ?,psbm=?b#kqfe>!?b#kqfe>!kwws9,,*8#qfwvqm#ebopf8wf{w.gf`lqbwjlm9#p`qloojmd>!ml!#alqgfq.`loobspf9bppl`jbwfg#tjwk#Abkbpb#JmglmfpjbFmdojpk#obmdvbdf?wf{w#{no9psb`f>-dje!#alqgfq>!3!?,algz= ?,kwno= lufqeolt9kjggfm8jnd#pq`>!kwws9,,bggFufmwOjpwfmfqqfpslmpjaof#elq#p-ip!=?,p`qjsw= ,ebuj`lm-j`l!#,=lsfqbwjmd#pzpwfn!#pwzof>!tjgwk92wbqdfw>!\\aobmh!=Pwbwf#Vmjufqpjwzwf{w.bojdm9ofew8 gl`vnfmw-tqjwf+/#jm`ovgjmd#wkf#bqlvmg#wkf#tlqog*8 ?,p`qjsw= ?!#pwzof>!kfjdkw98lufqeolt9kjggfmnlqf#jmelqnbwjlmbm#jmwfqmbwjlmbob#nfnafq#le#wkf#lmf#le#wkf#ejqpw`bm#af#elvmg#jm#?,gju= \n\n?,gju= gjpsobz9#mlmf8!=!#,= ?ojmh#qfo>! ##+evm`wjlm+*#xwkf#26wk#`fmwvqz-sqfufmwGfebvow+obqdf#mvnafq#le#Azybmwjmf#Fnsjqf-isd\x7Fwkvna\x7Fofew\x7Fubpw#nbilqjwz#lenbilqjwz#le#wkf##bojdm>!`fmwfq!=Vmjufqpjwz#Sqfppglnjmbwfg#az#wkfPf`lmg#Tlqog#Tbqgjpwqjavwjlm#le#pwzof>!slpjwjlm9wkf#qfpw#le#wkf#`kbqb`wfqjyfg#az#qfo>!mleloolt!=gfqjufp#eqln#wkfqbwkfq#wkbm#wkf#b#`lnajmbwjlm#lepwzof>!tjgwk9233Fmdojpk.psfbhjmd`lnsvwfq#p`jfm`falqgfq>!3!#bow>!wkf#f{jpwfm`f#leGfnl`qbwj`#Sbqwz!#pwzof>!nbqdjm.Elq#wkjp#qfbplm/-ip!=?,p`qjsw= \npAzWbdMbnf+p*X3^ip!=?,p`qjsw= ?-ip!=?,p`qjsw= ojmh#qfo>!j`lm!#$#bow>$$#`obpp>$elqnbwjlm#le#wkfufqpjlmp#le#wkf#?,b=?,gju=?,gju=,sbdf= ##?sbdf= ?gju#`obpp>!`lmwaf`bnf#wkf#ejqpwabkbpb#Jmglmfpjbfmdojpk#+pjnsof*"y"W"W"["Q"U"V"@=i=l<^<\\=n=m<V<T<V<R<P<S<\\<Q<T<T=c<^<W=c<Y=n=m=c<x<R<]<\\<^<T=n=`=k<Y<W<R<^<Y<V<\\=l<\\<[<^<T=n<T=c<t<Q=n<Y=l<Q<Y=n<r=n<^<Y=n<T=n=`<Q<\\<S=l<T<P<Y=l<T<Q=n<Y=l<Q<Y=n<V<R=n<R=l<R<_<R=m=n=l<\\<Q<T=j=g<V<\\=k<Y=m=n<^<Y=o=m<W<R<^<T=c=i<S=l<R<]<W<Y<P=g<S<R<W=o=k<T=n=`=c<^<W=c=b=n=m=c<Q<\\<T<]<R<W<Y<Y<V<R<P<S<\\<Q<T=c<^<Q<T<P<\\<Q<T<Y=m=l<Y<X=m=n<^<\\4K5h5i5d4K4Z5f4U4K5h4]4J5f4_5f4E4K5h4K5j4F5n4K5h5i4X4K4]5o4K4F5o4K5h4_5f4K4]4K4F4K5h5i5o4F5d4D4E4K5h4_4U5d4C5f4E4K4A4Y4K4J5f4K4F4K5h4U4K5h5i5f4E4K5h4Y5d4F5f4K4F4K5h4K5j4F4]5j4F4K5h4F4Y4K5i5f5i4K5h4I4_5h4K5i5f4K5h5i4X4K4]5o4E4K5h5i4]4J5f4K4Fqlalwp!#`lmwfmw>!?gju#jg>!ellwfq!=wkf#Vmjwfg#Pwbwfp?jnd#pq`>!kwws9,,-isd\x7Fqjdkw\x7Fwkvna\x7F-ip!=?,p`qjsw= ?ol`bwjlm-sqlwl`loeqbnfalqgfq>!3!#p!#,= ?nfwb#mbnf>!?,b=?,gju=?,gju=?elmw.tfjdkw9alog8%rvlw8#bmg#%rvlw8gfsfmgjmd#lm#wkf#nbqdjm938sbggjmd9!#qfo>!mleloolt!#Sqfpjgfmw#le#wkf#wtfmwjfwk#`fmwvqzfujpjlm= ##?,sbdfJmwfqmfw#F{solqfqb-bpzm`#>#wqvf8 jmelqnbwjlm#balvw?gju#jg>!kfbgfq!=!#b`wjlm>!kwws9,,?b#kqfe>!kwwsp9,,?gju#jg>!`lmwfmw!?,gju= ?,gju= ?gfqjufg#eqln#wkf#?jnd#pq`>$kwws9,,b``lqgjmd#wl#wkf# ?,algz= ?,kwno= pwzof>!elmw.pjyf9p`qjsw#obmdvbdf>!Bqjbo/#Kfoufwj`b/?,b=?psbm#`obpp>!?,p`qjsw=?p`qjsw#slojwj`bo#sbqwjfpwg=?,wq=?,wbaof=?kqfe>!kwws9,,ttt-jmwfqsqfwbwjlm#leqfo>!pwzofpkffw!#gl`vnfmw-tqjwf+$?`kbqpfw>!vwe.;!= afdjmmjmd#le#wkf#qfufbofg#wkbw#wkfwfofujpjlm#pfqjfp!#qfo>!mleloolt!=#wbqdfw>!\\aobmh!=`objnjmd#wkbw#wkfkwws&0B&1E&1Ettt-nbmjefpwbwjlmp#leSqjnf#Njmjpwfq#lejmeovfm`fg#az#wkf`obpp>!`ofbqej{!=,gju= ?,gju=  wkqff.gjnfmpjlmbo@kvq`k#le#Fmdobmgle#Mlqwk#@bqlojmbprvbqf#hjolnfwqfp-bggFufmwOjpwfmfqgjpwjm`w#eqln#wkf`lnnlmoz#hmltm#bpSklmfwj`#Boskbafwgf`obqfg#wkbw#wkf`lmwqloofg#az#wkfAfmibnjm#Eqbmhojmqlof.sobzjmd#dbnfwkf#Vmjufqpjwz#lejm#Tfpwfqm#Fvqlsfsfqplmbo#`lnsvwfqSqlif`w#Dvwfmafqdqfdbqgofpp#le#wkfkbp#affm#sqlslpfgwldfwkfq#tjwk#wkf=?,oj=?oj#`obpp>!jm#plnf#`lvmwqjfpnjm-ip!=?,p`qjsw=le#wkf#slsvobwjlmleej`jbo#obmdvbdf?jnd#pq`>!jnbdfp,jgfmwjejfg#az#wkfmbwvqbo#qfplvq`fp`obppjej`bwjlm#le`bm#af#`lmpjgfqfgrvbmwvn#nf`kbmj`pMfufqwkfofpp/#wkfnjoojlm#zfbqp#bdl?,algz= ?,kwno="y"W"W"["Q"U"V"@ wbhf#bgubmwbdf#lebmg/#b``lqgjmd#wlbwwqjavwfg#wl#wkfNj`qlplew#Tjmgltpwkf#ejqpw#`fmwvqzvmgfq#wkf#`lmwqlogju#`obpp>!kfbgfqpklqwoz#bewfq#wkfmlwbaof#f{`fswjlmwfmp#le#wklvpbmgppfufqbo#gjeefqfmwbqlvmg#wkf#tlqog-qfb`kjmd#njojwbqzjplobwfg#eqln#wkflsslpjwjlm#wl#wkfwkf#Log#WfpwbnfmwBeqj`bm#Bnfqj`bmpjmpfqwfg#jmwl#wkfpfsbqbwf#eqln#wkfnfwqlslojwbm#bqfbnbhfp#jw#slppjaofb`hmltofgdfg#wkbwbqdvbaoz#wkf#nlpwwzsf>!wf{w,`pp!= wkf#JmwfqmbwjlmboB``lqgjmd#wl#wkf#sf>!wf{w,`pp!#,= `ljm`jgf#tjwk#wkfwtl.wkjqgp#le#wkfGvqjmd#wkjp#wjnf/gvqjmd#wkf#sfqjlgbmmlvm`fg#wkbw#kfwkf#jmwfqmbwjlmbobmg#nlqf#qf`fmwozafojfufg#wkbw#wkf`lmp`jlvpmfpp#bmgelqnfqoz#hmltm#bppvqqlvmgfg#az#wkfejqpw#bssfbqfg#jml``bpjlmbooz#vpfgslpjwjlm9baplovwf8!#wbqdfw>!\\aobmh!#slpjwjlm9qfobwjuf8wf{w.bojdm9`fmwfq8ib{,ojap,irvfqz,2-ab`hdqlvmg.`lolq9 wzsf>!bssoj`bwjlm,bmdvbdf!#`lmwfmw>!?nfwb#kwws.frvju>!Sqjub`z#Sloj`z?,b=f+!&0@p`qjsw#pq`>$!#wbqdfw>!\\aobmh!=Lm#wkf#lwkfq#kbmg/-isd\x7Fwkvna\x7Fqjdkw\x7F1?,gju=?gju#`obpp>!?gju#pwzof>!eolbw9mjmfwffmwk#`fmwvqz?,algz= ?,kwno= ?jnd#pq`>!kwws9,,p8wf{w.bojdm9`fmwfqelmw.tfjdkw9#alog8#B``lqgjmd#wl#wkf#gjeefqfm`f#afwtffm!#eqbnfalqgfq>!3!#!#pwzof>!slpjwjlm9ojmh#kqfe>!kwws9,,kwno7,ollpf-gwg!= gvqjmd#wkjp#sfqjlg?,wg=?,wq=?,wbaof=`olpfoz#qfobwfg#wlelq#wkf#ejqpw#wjnf8elmw.tfjdkw9alog8jmsvw#wzsf>!wf{w!#?psbm#pwzof>!elmw.lmqfbgzpwbwf`kbmdf\n?gju#`obpp>!`ofbqgl`vnfmw-ol`bwjlm-#Elq#f{bnsof/#wkf#b#tjgf#ubqjfwz#le#?"GL@WZSF#kwno= ?%maps8%maps8%maps8!=?b#kqfe>!kwws9,,pwzof>!eolbw9ofew8`lm`fqmfg#tjwk#wkf>kwws&0B&1E&1Ettt-jm#slsvobq#`vowvqfwzsf>!wf{w,`pp!#,=jw#jp#slppjaof#wl#Kbqubqg#Vmjufqpjwzwzofpkffw!#kqfe>!,wkf#nbjm#`kbqb`wfqL{elqg#Vmjufqpjwz##mbnf>!hfztlqgp!#`pwzof>!wf{w.bojdm9wkf#Vmjwfg#Hjmdglnefgfqbo#dlufqmnfmw?gju#pwzof>!nbqdjm#gfsfmgjmd#lm#wkf#gfp`qjswjlm#le#wkf?gju#`obpp>!kfbgfq-njm-ip!=?,p`qjsw=gfpwqv`wjlm#le#wkfpojdkwoz#gjeefqfmwjm#b``lqgbm`f#tjwkwfof`lnnvmj`bwjlmpjmgj`bwfp#wkbw#wkfpklqwoz#wkfqfbewfqfpsf`jbooz#jm#wkf#Fvqlsfbm#`lvmwqjfpKltfufq/#wkfqf#bqfpq`>!kwws9,,pwbwj`pvddfpwfg#wkbw#wkf!#pq`>!kwws9,,ttt-b#obqdf#mvnafq#le#Wfof`lnnvmj`bwjlmp!#qfo>!mleloolt!#wKloz#Qlnbm#Fnsfqlqbonlpw#f{`ovpjufoz!#alqgfq>!3!#bow>!Pf`qfwbqz#le#Pwbwf`vonjmbwjmd#jm#wkf@JB#Tlqog#Eb`wallhwkf#nlpw#jnslqwbmwbmmjufqpbqz#le#wkfpwzof>!ab`hdqlvmg.?oj=?fn=?b#kqfe>!,wkf#Bwobmwj`#L`fbmpwqj`woz#psfbhjmd/pklqwoz#afelqf#wkfgjeefqfmw#wzsfp#lewkf#Lwwlnbm#Fnsjqf=?jnd#pq`>!kwws9,,Bm#Jmwqlgv`wjlm#wl`lmpfrvfm`f#le#wkfgfsbqwvqf#eqln#wkf@lmefgfqbwf#Pwbwfpjmgjdfmlvp#sflsofpSql`ffgjmdp#le#wkfjmelqnbwjlm#lm#wkfwkflqjfp#kbuf#affmjmuloufnfmw#jm#wkfgjujgfg#jmwl#wkqffbgib`fmw#`lvmwqjfpjp#qfpslmpjaof#elqgjpplovwjlm#le#wkf`loobalqbwjlm#tjwktjgfoz#qfdbqgfg#bpkjp#`lmwfnslqbqjfpelvmgjmd#nfnafq#leGlnjmj`bm#Qfsvaoj`dfmfqbooz#b``fswfgwkf#slppjajojwz#lebqf#bopl#bubjobaofvmgfq#`lmpwqv`wjlmqfpwlqbwjlm#le#wkfwkf#dfmfqbo#svaoj`jp#bonlpw#fmwjqfozsbppfp#wkqlvdk#wkfkbp#affm#pvddfpwfg`lnsvwfq#bmg#ujgflDfqnbmj`#obmdvbdfp#b``lqgjmd#wl#wkf#gjeefqfmw#eqln#wkfpklqwoz#bewfqtbqgpkqfe>!kwwsp9,,ttt-qf`fmw#gfufolsnfmwAlbqg#le#Gjqf`wlqp?gju#`obpp>!pfbq`k\x7F#?b#kqfe>!kwws9,,Jm#sbqwj`vobq/#wkfNvowjsof#ellwmlwfplq#lwkfq#pvapwbm`fwklvpbmgp#le#zfbqpwqbmpobwjlm#le#wkf?,gju= ?,gju=  ?b#kqfe>!jmgf{-skstbp#fpwbaojpkfg#jmnjm-ip!=?,p`qjsw= sbqwj`jsbwf#jm#wkfb#pwqlmd#jmeovfm`fpwzof>!nbqdjm.wls9qfsqfpfmwfg#az#wkfdqbgvbwfg#eqln#wkfWqbgjwjlmbooz/#wkfFofnfmw+!p`qjsw!*8Kltfufq/#pjm`f#wkf,gju= ?,gju= ?gju#ofew8#nbqdjm.ofew9sqlwf`wjlm#bdbjmpw38#ufqwj`bo.bojdm9Vmelqwvmbwfoz/#wkfwzsf>!jnbdf,{.j`lm,gju= ?gju#`obpp>!#`obpp>!`ofbqej{!=?gju#`obpp>!ellwfq\n\n?,gju= \n\n?,gju= wkf#nlwjlm#sj`wvqf<}=f<W<_<\\=l=m<V<T<]=f<W<_<\\=l=m<V<T<H<Y<X<Y=l<\\=j<T<T<Q<Y=m<V<R<W=`<V<R=m<R<R<]=e<Y<Q<T<Y=m<R<R<]=e<Y<Q<T=c<S=l<R<_=l<\\<P<P=g<r=n<S=l<\\<^<T=n=`<]<Y=m<S<W<\\=n<Q<R<P<\\=n<Y=l<T<\\<W=g<S<R<[<^<R<W=c<Y=n<S<R=m<W<Y<X<Q<T<Y=l<\\<[<W<T=k<Q=g=i<S=l<R<X=o<V=j<T<T<S=l<R<_=l<\\<P<P<\\<S<R<W<Q<R=m=n=`=b<Q<\\=i<R<X<T=n=m=c<T<[<]=l<\\<Q<Q<R<Y<Q<\\=m<Y<W<Y<Q<T=c<T<[<P<Y<Q<Y<Q<T=c<V<\\=n<Y<_<R=l<T<T<|<W<Y<V=m<\\<Q<X=l\fHJ\fIa\fHY\fHR\fH\\\fHR\fHB\fId\fHD\fIm\fHi\fH^\fHF\fIa\fH\\\fHJ\fHR\fHD\fHA\fHR\fH\\\fHH\fIl\fHC\fHi\fHD\fIm\fHJ\fIk\fHZ\fHU\fHS\fHD\fIa\fHJ\fIl\fHk\fHn\fHM\fHS\fHC\fHR\fHJ\fHS\fH^\fIa\fH^\fIl\fHi\fHK\fHS\fHy\fHR\fH\\\fHY\fIl\fHM\fHS\fHC\fIg\fHv\fHS\fHs\fIa\fHL\fIk\fHT\fHB\fHR\fHv\fHR\fH\\\fHp\fHn\fHy\fIa\fHZ\fHD\fHJ\fIm\fHD\fHS\fHC\fHR\fHF\fIa\fH\\\fHC\fIg\fH{\fHi\fHD\fIm\fHT\fHR\fH\\\fH}\fHD\fH^\fHR\fHk\fHD\fHF\fHR\fH\\\fIa\fHs\fIl\fHZ\fH\\\fIa\fHH\fIg\fHn\fH^\fIg\fHy\fHT\fHA\fHR\fHG\fHP\fIa\fH^\fId\fHZ\fHZ\fH\\\fIa\fHH\fIk\fHn\fHF\fIa\fH\\\fHJ\fIk\fHZ\fHF\fIa\fH^\fIk\fHC\fH\\\fHy\fIk\fHn\fHJ\fIa\fH\\\fHT\fIa\fHI\fHS\fHH\fHS\fHe\fHH\fIa\fHF\fHR\fHJ\fHe\fHD\fIa\fHU\fIk\fHn\fHv\fHS\fHs\fIa\fHL\fHR\fHC\fHR\fHH\fIa\fH\\\fHR\fHp\fIa\fHC\fHR\fHJ\fHR\fHF\fIm\fH\\\fHR\fHD\fIk\fHp\fIg\fHM\fHP\fIk\fHn\fHi\fHD\fIm\fHY\fHR\fHJ\fHZ\fIa\fH\\\fIk\fHO\fIl\fHZ\fHS\fHy\fIa\fH[\fHR\fHT\fH\\\fHy\fHR\fH\\\fIl\fHT\fHn\fH{\fIa\fH\\\fHU\fHF\fH\\\fHS\fHO\fHR\fHB\fH@\fIa\fH\\\fHR\fHn\fHM\fH@\fHv\fIa\fHv\fIg\fHn\fHe\fHF\fH^\fH@\fIa\fHK\fHB\fHn\fHH\fIa\fH\\\fIl\fHT\fHn\fHF\fH\\\fIa\fHy\fHe\fHB\fIa\fHB\fIl\fHJ\fHB\fHR\fHK\fIa\fHC\fHB\fHT\fHU\fHR\fHC\fHH\fHR\fHZ\fH@\fIa\fHJ\fIg\fHn\fHB\fIl\fHM\fHS\fHC\fHR\fHj\fHd\fHF\fIl\fHc\fH^\fHB\fIg\fH@\fHR\fHk\fH^\fHT\fHn\fHz\fIa\fHC\fHR\fHj\fHF\fH\\\fIk\fHZ\fHD\fHi\fHD\fIm\fH@\fHn\fHK\fH@\fHR\fHp\fHP\fHR\fH\\\fHD\fHY\fIl\fHD\fHH\fHB\fHF\fIa\fH\\\fHB\fIm\fHz\fHF\fIa\fH\\\fHZ\fIa\fHD\fHF\fH\\\fHS\fHY\fHR\fH\\\fHD\fIm\fHy\fHT\fHR\fHD\fHT\fHB\fH\\\fIa\fHI\fHD\fHj\fHC\fIg\fHp\fHS\fHH\fHT\fIg\fHB\fHY\fHR\fH\\4K5h5i4X4K4]5o4K4F4K5h5i5j4F4C5f4K4F4K5h5o5i4D5f5d4F4]4K5h5i4X4K5k4C4K4F4U4C4C4K5h4^5d4K4]4U4C4C4K5h4]4C5d4C4K5h4I4_5h4K5i5f4E4K5h5m5d4F5d4X5d4D4K5h5i4_4K4D5n4K4F4K5h5i4U5h5d5i4K4F4K5h5i4_5h4_5h4K4F4K5h4@4]4K5m5f5o4_4K5h4K4_5h4K5i5f4E4K5h4K4F4Y4K5h4K4Fhfztlqgp!#`lmwfmw>!t0-lqd,2:::,{kwno!=?b#wbqdfw>!\\aobmh!#wf{w,kwno8#`kbqpfw>!#wbqdfw>!\\aobmh!=?wbaof#`foosbggjmd>!bvwl`lnsofwf>!lee!#wf{w.bojdm9#`fmwfq8wl#obpw#ufqpjlm#az#ab`hdqlvmg.`lolq9# !#kqfe>!kwws9,,ttt-,gju=?,gju=?gju#jg>?b#kqfe>! !#`obpp>!!=?jnd#pq`>!kwws9,,`qjsw!#pq`>!kwws9,, ?p`qjsw#obmdvbdf>!,,FM!#!kwws9,,ttt-tfm`lgfVQJ@lnslmfmw+!#kqfe>!ibubp`qjsw9?gju#`obpp>!`lmwfmwgl`vnfmw-tqjwf+$?p`slpjwjlm9#baplovwf8p`qjsw#pq`>!kwws9,,#pwzof>!nbqdjm.wls9-njm-ip!=?,p`qjsw= ?,gju= ?gju#`obpp>!t0-lqd,2:::,{kwno!#  ?,algz= ?,kwno=gjpwjm`wjlm#afwtffm,!#wbqdfw>!\\aobmh!=?ojmh#kqfe>!kwws9,,fm`lgjmd>!vwe.;!<= t-bggFufmwOjpwfmfq<b`wjlm>!kwws9,,ttt-j`lm!#kqfe>!kwws9,,#pwzof>!ab`hdqlvmg9wzsf>!wf{w,`pp!#,= nfwb#sqlsfqwz>!ld9w?jmsvw#wzsf>!wf{w!##pwzof>!wf{w.bojdm9wkf#gfufolsnfmw#le#wzofpkffw!#wzsf>!wfkwno8#`kbqpfw>vwe.;jp#`lmpjgfqfg#wl#afwbaof#tjgwk>!233&!#Jm#bggjwjlm#wl#wkf#`lmwqjavwfg#wl#wkf#gjeefqfm`fp#afwtffmgfufolsnfmw#le#wkf#Jw#jp#jnslqwbmw#wl#?,p`qjsw= ?p`qjsw##pwzof>!elmw.pjyf92=?,psbm=?psbm#jg>daOjaqbqz#le#@lmdqfpp?jnd#pq`>!kwws9,,jnFmdojpk#wqbmpobwjlmB`bgfnz#le#P`jfm`fpgju#pwzof>!gjpsobz9`lmpwqv`wjlm#le#wkf-dfwFofnfmwAzJg+jg*jm#`lmivm`wjlm#tjwkFofnfmw+$p`qjsw$*8#?nfwb#sqlsfqwz>!ld9<}=f<W<_<\\=l=m<V<T #wzsf>!wf{w!#mbnf>!=Sqjub`z#Sloj`z?,b=bgnjmjpwfqfg#az#wkffmbaofPjmdofQfrvfpwpwzof>%rvlw8nbqdjm9?,gju=?,gju=?,gju=?=?jnd#pq`>!kwws9,,j#pwzof>%rvlw8eolbw9qfefqqfg#wl#bp#wkf#wlwbo#slsvobwjlm#lejm#Tbpkjmdwlm/#G-@-#pwzof>!ab`hdqlvmg.bnlmd#lwkfq#wkjmdp/lqdbmjybwjlm#le#wkfsbqwj`jsbwfg#jm#wkfwkf#jmwqlgv`wjlm#lejgfmwjejfg#tjwk#wkfej`wjlmbo#`kbqb`wfq#L{elqg#Vmjufqpjwz#njpvmgfqpwbmgjmd#leWkfqf#bqf/#kltfufq/pwzofpkffw!#kqfe>!,@lovnajb#Vmjufqpjwzf{sbmgfg#wl#jm`ovgfvpvbooz#qfefqqfg#wljmgj`bwjmd#wkbw#wkfkbuf#pvddfpwfg#wkbwbeejojbwfg#tjwk#wkf`lqqfobwjlm#afwtffmmvnafq#le#gjeefqfmw=?,wg=?,wq=?,wbaof=Qfsvaoj`#le#Jqfobmg ?,p`qjsw= ?p`qjsw#vmgfq#wkf#jmeovfm`f`lmwqjavwjlm#wl#wkfLeej`jbo#tfapjwf#lekfbgrvbqwfqp#le#wkf`fmwfqfg#bqlvmg#wkfjnsoj`bwjlmp#le#wkfkbuf#affm#gfufolsfgEfgfqbo#Qfsvaoj`#leaf`bnf#jm`qfbpjmdoz`lmwjmvbwjlm#le#wkfMlwf/#kltfufq/#wkbwpjnjobq#wl#wkbw#le#`bsbajojwjfp#le#wkfb``lqgbm`f#tjwk#wkfsbqwj`jsbmwp#jm#wkfevqwkfq#gfufolsnfmwvmgfq#wkf#gjqf`wjlmjp#lewfm#`lmpjgfqfgkjp#zlvmdfq#aqlwkfq?,wg=?,wq=?,wbaof=?b#kwws.frvju>![.VB.skzpj`bo#sqlsfqwjfple#Aqjwjpk#@lovnajbkbp#affm#`qjwj`jyfg+tjwk#wkf#f{`fswjlmrvfpwjlmp#balvw#wkfsbppjmd#wkqlvdk#wkf3!#`foosbggjmd>!3!#wklvpbmgp#le#sflsofqfgjqf`wp#kfqf-#Elqkbuf#`kjogqfm#vmgfq&0F&0@,p`qjsw&0F!**8?b#kqfe>!kwws9,,ttt-?oj=?b#kqfe>!kwws9,,pjwf\\mbnf!#`lmwfmw>!wf{w.gf`lqbwjlm9mlmfpwzof>!gjpsobz9#mlmf?nfwb#kwws.frvju>![.mft#Gbwf+*-dfwWjnf+*#wzsf>!jnbdf,{.j`lm!?,psbm=?psbm#`obpp>!obmdvbdf>!ibubp`qjswtjmglt-ol`bwjlm-kqfe?b#kqfe>!ibubp`qjsw9..= ?p`qjsw#wzsf>!w?b#kqfe>$kwws9,,ttt-klqw`vw#j`lm!#kqfe>!?,gju= ?gju#`obpp>!?p`qjsw#pq`>!kwws9,,!#qfo>!pwzofpkffw!#w?,gju= ?p`qjsw#wzsf>,b=#?b#kqfe>!kwws9,,#booltWqbmpsbqfm`z>![.VB.@lnsbwjaof!#`lmqfobwjlmpkjs#afwtffm ?,p`qjsw= ?p`qjsw#?,b=?,oj=?,vo=?,gju=bppl`jbwfg#tjwk#wkf#sqldqbnnjmd#obmdvbdf?,b=?b#kqfe>!kwws9,,?,b=?,oj=?oj#`obpp>!elqn#b`wjlm>!kwws9,,?gju#pwzof>!gjpsobz9wzsf>!wf{w!#mbnf>!r!?wbaof#tjgwk>!233&!#ab`hdqlvmg.slpjwjlm9!#alqgfq>!3!#tjgwk>!qfo>!pklqw`vw#j`lm!#k5=?vo=?oj=?b#kqfe>!##?nfwb#kwws.frvju>!`pp!#nfgjb>!p`qffm!#qfpslmpjaof#elq#wkf#!#wzsf>!bssoj`bwjlm,!#pwzof>!ab`hdqlvmg.kwno8#`kbqpfw>vwe.;!#booltwqbmpsbqfm`z>!pwzofpkffw!#wzsf>!wf ?nfwb#kwws.frvju>!=?,psbm=?psbm#`obpp>!3!#`foopsb`jmd>!3!=8 ?,p`qjsw= ?p`qjsw#plnfwjnfp#`boofg#wkfglfp#mlw#mf`fppbqjozElq#nlqf#jmelqnbwjlmbw#wkf#afdjmmjmd#le#?"GL@WZSF#kwno=?kwnosbqwj`vobqoz#jm#wkf#wzsf>!kjggfm!#mbnf>!ibubp`qjsw9uljg+3*8!feef`wjufmfpp#le#wkf#bvwl`lnsofwf>!lee!#dfmfqbooz#`lmpjgfqfg=?jmsvw#wzsf>!wf{w!#!=?,p`qjsw= ?p`qjswwkqlvdklvw#wkf#tlqog`lnnlm#njp`lm`fswjlmbppl`jbwjlm#tjwk#wkf?,gju= ?,gju= ?gju#`gvqjmd#kjp#ojefwjnf/`lqqfpslmgjmd#wl#wkfwzsf>!jnbdf,{.j`lm!#bm#jm`qfbpjmd#mvnafqgjsolnbwj`#qfobwjlmpbqf#lewfm#`lmpjgfqfgnfwb#`kbqpfw>!vwe.;!#?jmsvw#wzsf>!wf{w!#f{bnsofp#jm`ovgf#wkf!=?jnd#pq`>!kwws9,,jsbqwj`jsbwjlm#jm#wkfwkf#fpwbaojpknfmw#le ?,gju= ?gju#`obpp>!%bns8maps8%bns8maps8wl#gfwfqnjmf#tkfwkfqrvjwf#gjeefqfmw#eqlnnbqhfg#wkf#afdjmmjmdgjpwbm`f#afwtffm#wkf`lmwqjavwjlmp#wl#wkf`lmeoj`w#afwtffm#wkftjgfoz#`lmpjgfqfg#wltbp#lmf#le#wkf#ejqpwtjwk#ubqzjmd#gfdqffpkbuf#psf`vobwfg#wkbw+gl`vnfmw-dfwFofnfmwsbqwj`jsbwjmd#jm#wkflqjdjmbooz#gfufolsfgfwb#`kbqpfw>!vwe.;!=#wzsf>!wf{w,`pp!#,= jmwfq`kbmdfbaoz#tjwknlqf#`olpfoz#qfobwfgpl`jbo#bmg#slojwj`bowkbw#tlvog#lwkfqtjpfsfqsfmgj`vobq#wl#wkfpwzof#wzsf>!wf{w,`ppwzsf>!pvanjw!#mbnf>!ebnjojfp#qfpjgjmd#jmgfufolsjmd#`lvmwqjfp`lnsvwfq#sqldqbnnjmdf`lmlnj`#gfufolsnfmwgfwfqnjmbwjlm#le#wkfelq#nlqf#jmelqnbwjlmlm#pfufqbo#l``bpjlmpslqwvdv/Fp#+Fvqlsfv*<O<V=l<\\={<Q=m=`<V<\\=o<V=l<\\={<Q=m=`<V<\\<L<R=m=m<T<U=m<V<R<U<P<\\=n<Y=l<T<\\<W<R<^<T<Q=h<R=l<P<\\=j<T<T=o<S=l<\\<^<W<Y<Q<T=c<Q<Y<R<]=i<R<X<T<P<R<T<Q=h<R=l<P<\\=j<T=c<t<Q=h<R=l<P<\\=j<T=c<L<Y=m<S=o<]<W<T<V<T<V<R<W<T=k<Y=m=n<^<R<T<Q=h<R=l<P<\\=j<T=b=n<Y=l=l<T=n<R=l<T<T<X<R=m=n<\\=n<R=k<Q<R4K5h5i4F5d4K4@4C5d5j4K5h4K4X4F4]4K5o4K4F4K5h4K5n4F4]4K4A4K4Fkwno8#`kbqpfw>VWE.;!#pfwWjnflvw+evm`wjlm+*gjpsobz9jmojmf.aol`h8?jmsvw#wzsf>!pvanjw!#wzsf#>#$wf{w,ibubp`qj?jnd#pq`>!kwws9,,ttt-!#!kwws9,,ttt-t0-lqd,pklqw`vw#j`lm!#kqfe>!!#bvwl`lnsofwf>!lee!#?,b=?,gju=?gju#`obpp>?,b=?,oj= ?oj#`obpp>!`pp!#wzsf>!wf{w,`pp!#?elqn#b`wjlm>!kwws9,,{w,`pp!#kqfe>!kwws9,,ojmh#qfo>!bowfqmbwf!# ?p`qjsw#wzsf>!wf{w,#lm`oj`h>!ibubp`qjsw9+mft#Gbwf*-dfwWjnf+*~kfjdkw>!2!#tjgwk>!2!#Sflsof$p#Qfsvaoj`#le##?b#kqfe>!kwws9,,ttt-wf{w.gf`lqbwjlm9vmgfqwkf#afdjmmjmd#le#wkf#?,gju= ?,gju= ?,gju= fpwbaojpknfmw#le#wkf#?,gju=?,gju=?,gju=?,g ujftslqwxnjm.kfjdkw9 ?p`qjsw#pq`>!kwws9,,lswjlm=?lswjlm#ubovf>lewfm#qfefqqfg#wl#bp#,lswjlm= ?lswjlm#ubov?"GL@WZSF#kwno= ?"..XJmwfqmbwjlmbo#Bjqslqw= ?b#kqfe>!kwws9,,ttt?,b=?b#kqfe>!kwws9,,t\fTL\fT^\fTE\fT^\fUh\fT{\fTN\roI\ro|\roL\ro{\roO\rov\rot\nAOGx\bTA\nzk#+\vUmGx*\fHD\fHS\fH\\\fIa\fHJ\fIk\fHZ\fHM\fHR\fHe\fHD\fH^\fIg\fHM\fHy\fIa\fH[\fIk\fHH\fIa\fH\\\fHp\fHR\fHD\fHy\fHR\fH\\\fIl\fHT\fHn\fH@\fHn\fHK\fHS\fHH\fHT\fIa\fHI\fHR\fHF\fHD\fHR\fHT\fIa\fHY\fIl\fHy\fHR\fH\\\fHT\fHn\fHT\fIa\fHy\fH\\\fHO\fHT\fHR\fHB\fH{\fIa\fH\\\fIl\fHv\fHS\fHs\fIa\fHL\fIg\fHn\fHY\fHS\fHp\fIa\fHr\fHR\fHD\fHi\fHB\fIk\fH\\\fHS\fHy\fHR\fHY\fHS\fHA\fHS\fHD\fIa\fHD\fH{\fHR\fHM\fHS\fHC\fHR\fHm\fHy\fIa\fHC\fIg\fHn\fHy\fHS\fHT\fIm\fH\\\fHy\fIa\fH[\fHR\fHF\fHU\fIm\fHm\fHv\fHH\fIl\fHF\fIa\fH\\\fH@\fHn\fHK\fHD\fHs\fHS\fHF\fIa\fHF\fHO\fIl\fHy\fIa\fH\\\fHS\fHy\fIk\fHs\fHF\fIa\fH\\\fHR\fH\\\fHn\fHA\fHF\fIa\fH\\\fHR\fHF\fIa\fHH\fHB\fHR\fH^\fHS\fHy\fIg\fHn\fH\\\fHG\fHP\fIa\fHH\fHR\fH\\\fHD\fHS\fH\\\fIa\fHB\fHR\fHO\fH^\fHS\fHB\fHS\fHs\fIk\fHMgfp`qjswjlm!#`lmwfmw>!gl`vnfmw-ol`bwjlm-sqlw-dfwFofnfmwpAzWbdMbnf+?"GL@WZSF#kwno= ?kwno#?nfwb#`kbqpfw>!vwe.;!=9vqo!#`lmwfmw>!kwws9,,-`pp!#qfo>!pwzofpkffw!pwzof#wzsf>!wf{w,`pp!=wzsf>!wf{w,`pp!#kqfe>!t0-lqd,2:::,{kwno!#{nowzsf>!wf{w,ibubp`qjsw!#nfwklg>!dfw!#b`wjlm>!ojmh#qfo>!pwzofpkffw!##>#gl`vnfmw-dfwFofnfmwwzsf>!jnbdf,{.j`lm!#,=`foosbggjmd>!3!#`foops-`pp!#wzsf>!wf{w,`pp!#?,b=?,oj=?oj=?b#kqfe>!!#tjgwk>!2!#kfjdkw>!2!!=?b#kqfe>!kwws9,,ttt-pwzof>!gjpsobz9mlmf8!=bowfqmbwf!#wzsf>!bssoj.,,T0@,,GWG#[KWNO#2-3#foopsb`jmd>!3!#`foosbg#wzsf>!kjggfm!#ubovf>!,b=%maps8?psbm#qlof>!p ?jmsvw#wzsf>!kjggfm!#obmdvbdf>!IbubP`qjsw!##gl`vnfmw-dfwFofnfmwpAd>!3!#`foopsb`jmd>!3!#zsf>!wf{w,`pp!#nfgjb>!wzsf>$wf{w,ibubp`qjsw$tjwk#wkf#f{`fswjlm#le#zsf>!wf{w,`pp!#qfo>!pw#kfjdkw>!2!#tjgwk>!2!#>$(fm`lgfVQJ@lnslmfmw+?ojmh#qfo>!bowfqmbwf!# algz/#wq/#jmsvw/#wf{wnfwb#mbnf>!qlalwp!#`lmnfwklg>!slpw!#b`wjlm>!= ?b#kqfe>!kwws9,,ttt-`pp!#qfo>!pwzofpkffw!#?,gju=?,gju=?gju#`obppobmdvbdf>!ibubp`qjsw!=bqjb.kjggfm>!wqvf!=.[?qjsw!#wzsf>!wf{w,ibubpo>38~*+*8 +evm`wjlm+*xab`hdqlvmg.jnbdf9#vqo+,b=?,oj=?oj=?b#kqfe>!k\n\n?oj=?b#kqfe>!kwws9,,bwlq!#bqjb.kjggfm>!wqv=#?b#kqfe>!kwws9,,ttt-obmdvbdf>!ibubp`qjsw!#,lswjlm= ?lswjlm#ubovf,gju=?,gju=?gju#`obpp>qbwlq!#bqjb.kjggfm>!wqf>+mft#Gbwf*-dfwWjnf+*slqwvdv/Fp#+gl#Aqbpjo*<R=l<_<\\<Q<T<[<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n=`<R<]=l<\\<[<R<^<\\<Q<T=c=l<Y<_<T=m=n=l<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n<T<R<]=c<[<\\=n<Y<W=`<Q<\\?"GL@WZSF#kwno#SVAOJ@#!mw.Wzsf!#`lmwfmw>!wf{w,?nfwb#kwws.frvju>!@lmwfqbmpjwjlmbo,,FM!#!kwws9?kwno#{nomp>!kwws9,,ttt.,,T0@,,GWG#[KWNO#2-3#WGWG,{kwno2.wqbmpjwjlmbo,,ttt-t0-lqd,WQ,{kwno2,sf#>#$wf{w,ibubp`qjsw$8?nfwb#mbnf>!gfp`qjswjlmsbqfmwMlgf-jmpfqwAfelqf?jmsvw#wzsf>!kjggfm!#mbip!#wzsf>!wf{w,ibubp`qj+gl`vnfmw*-qfbgz+evm`wjp`qjsw#wzsf>!wf{w,ibubpjnbdf!#`lmwfmw>!kwws9,,VB.@lnsbwjaof!#`lmwfmw>wno8#`kbqpfw>vwe.;!#,= ojmh#qfo>!pklqw`vw#j`lm?ojmh#qfo>!pwzofpkffw!#?,p`qjsw= ?p`qjsw#wzsf>>#gl`vnfmw-`qfbwfFofnfm?b#wbqdfw>!\\aobmh!#kqfe>#gl`vnfmw-dfwFofnfmwpAjmsvw#wzsf>!wf{w!#mbnf>b-wzsf#>#$wf{w,ibubp`qjmsvw#wzsf>!kjggfm!#mbnfkwno8#`kbqpfw>vwe.;!#,=gwg!= ?kwno#{nomp>!kwws.,,T0@,,GWG#KWNO#7-32#WfmwpAzWbdMbnf+$p`qjsw$*jmsvw#wzsf>!kjggfm!#mbn?p`qjsw#wzsf>!wf{w,ibubp!#pwzof>!gjpsobz9mlmf8!=gl`vnfmw-dfwFofnfmwAzJg+>gl`vnfmw-`qfbwfFofnfmw+$#wzsf>$wf{w,ibubp`qjsw$jmsvw#wzsf>!wf{w!#mbnf>!g-dfwFofnfmwpAzWbdMbnf+pmj`bo!#kqfe>!kwws9,,ttt-@,,GWG#KWNO#7-32#Wqbmpjw?pwzof#wzsf>!wf{w,`pp!= ?pwzof#wzsf>!wf{w,`pp!=jlmbo-gwg!= ?kwno#{nomp>kwws.frvju>!@lmwfmw.Wzsfgjmd>!3!#`foopsb`jmd>!3!kwno8#`kbqpfw>vwe.;!#,= #pwzof>!gjpsobz9mlmf8!=??oj=?b#kqfe>!kwws9,,ttt-#wzsf>$wf{w,ibubp`qjsw$=<X<Y=c=n<Y<W=`<Q<R=m=n<T=m<R<R=n<^<Y=n=m=n<^<T<T<S=l<R<T<[<^<R<X=m=n<^<\\<]<Y<[<R<S<\\=m<Q<R=m=n<T\fHF\fIm\fHT\fIa\fHH\fHS\fHy\fHR\fHy\fHR\fHn\fH{\fIa\fH\\\fIk\fHT\fHe\fHD\fIa\fHU\fIg\fHn\fHD\fIk\fHY\fHS\fHK\fHR\fHD\fHT\fHA\fHR\fHG\fHS\fHy\fIa\fHT\fHS\fHn\fH{\fHT\fIm\fH\\\fHy\fIa\fH[\fHS\fHH\fHy\fIe\fHF\fIl\fH\\\fHR\fHk\fHs\fHY\fHS\fHp\fIa\fHr\fHR\fHF\fHD\fHy\fHR\fH\\\fIa\fH\\\fHY\fHR\fHd\fHT\fHy\fIa\fH\\\fHS\fHC\fHH\fHR',"\u06F7%\u018C'T%\x85'W%\xD7%O%g%\xA6&\u0193%\u01E5&>&*&'&^&\x88\u0178\u0C3E&\u01AD&\u0192&)&^&%&'&\x82&P&1&\xB1&3&]&m&u&E&t&C&\xCF&V&V&/&>&6&\u0F76\u177Co&p&@&E&M&P&x&@&F&e&\xCC&7&:&(&D&0&C&)&.&F&-&1&(&L&F&1\u025E*\u03EA\u21F3&\u1372&K&;&)&E&H&P&0&?&9&V&\x81&-&v&a&,&E&)&?&=&'&'&B&\u0D2E&\u0503&\u0316*&*8&%&%&&&%,)&\x9A&>&\x86&7&]&F&2&>&J&6&n&2&%&?&\x8E&2&6&J&g&-&0&,&*&J&*&O&)&6&(&<&B&N&.&P&@&2&.&W&M&%\u053C\x84(,(<&,&\u03DA&\u18C7&-&,(%&(&%&(\u013B0&X&D&\x81&j&'&J&(&.&B&3&Z&R&h&3&E&E&<\xC6-\u0360\u1EF3&%8?&@&,&Z&@&0&J&,&^&x&_&6&C&6&C\u072C\u2A25&f&-&-&-&-&,&J&2&8&z&8&C&Y&8&-&d&\u1E78\xCC-&7&1&F&7&t&W&7&I&.&.&^&=\u0F9C\u19D3&8(>&/&/&\u077B')'\u1065')'%@/&0&%\u043E\u09C0*&*@&C\u053D\u05D4\u0274\u05EB4\u0DD7\u071A\u04D16\u0D84&/\u0178\u0303Z&*%\u0246\u03FF&\u0134&1\xA8\u04B4\u0174",j,"AAAAKKLLKKKKKJJIHHIHHGGFF"),vO(a),hO(jO(a),j)}function yo(a,j){return a<=j?a:j}function gO(a,j,b,q,v){a.set(b.slice(q,v),j)}function E_(a,j,b,q){if(a==null)return-1;let v=yo(a.offset+q,a.data.length),P=v-a.offset;return j.set(a.data.subarray(a.offset,v),b),a.offset+=P,P}function yO(a){return 0}function jO(a){return a}function _O(a){return 1}function qO(a){return 1}function vO(a){}function TO(a){let j=a.length,b=new Int8Array(j);for(let q=0;q<j;++q)b[q]=a.charCodeAt(q);return b}function BO(a,j){let b=new ut;if(H(b,new t(a)),j){let Q=j.customDictionary;Q&&ne(b,Q)}let q=0,v=[];for(;;){let Q=new Int8Array(16384);if(v.push(Q),b.output=Q,b.outputOffset=0,b.outputLength=16384,b.outputUsed=0,xw(b),q+=b.outputUsed,b.outputUsed<16384)break}z(b);let P=new Int8Array(q),U=0;for(let Q=0;Q<v.length;++Q){let ce=v[Q],re=yo(q,U+16384)-U;re<16384?P.set(ce.subarray(0,re),U):P.set(ce,U),U+=re}return P}return BO},_T=BF()});var Hl,vT,Pf,dp,TT=W(()=>{vo();Zn();qT();Hl=le(yh());Zn();vT={brotli:{mode:0,quality:8,lgwin:22}},dp=class extends _r{constructor(e){super(e);this.name="brotli";this.extensions=["br"];this.contentEncodings=["br"];this.isSupported=!0;this.options=e}async preload(){Pf=Pf||this.options?.modules?.brotli,Pf||console.warn(`${this.name} library not installed`)}async compress(e){if(!Fn&&this.options.brotli?.useZlib){let r=await Pi(Hl.default.brotliCompress)(e);return Gr(r)}return this.compressSync(e)}compressSync(e){if(!Fn&&this.options.brotli?.useZlib){let o=Hl.default.brotliCompressSync(e);return Gr(o)}let r={...vT.brotli,...this.options?.brotli},n=new Uint8Array(e);if(!Pf)throw new Error("brotli compression: brotli module not installed");return Pf.compress(n,r).buffer}async decompress(e){if(!Fn&&this.options.brotli?.useZlib){let r=await Pi(Hl.default.brotliDecompress)(e);return Gr(r)}return this.decompressSync(e)}decompressSync(e){if(!Fn&&this.options.brotli?.useZlib){let o=Hl.default.brotliDecompressSync(e);return Gr(o)}let r={...vT.brotli,...this.options?.brotli},n=new Uint8Array(e);return Pf?Pf.decompress(n,r).buffer:_T(n,void 0).buffer}}});var zl,mp,BT=W(()=>{Zn();vo();mp=class extends _r{constructor(e){super(e);this.name="lzo";this.extensions=[];this.contentEncodings=[];this.isSupported=!1;if(this.options=e,zl=zl||this.options?.modules?.lzo,!zl)throw new Error(this.name)}async preload(){}async compress(e){await this.preload();let r=Nc(e);return zl.compress(r).buffer}async decompress(e){try{await this.preload();let r=Nc(e);return zl.decompress(r).buffer}catch(r){throw r}}}});var kT=W(()=>{bq();fT();sT();aT();jT();TT();BT()});var kh=B(zs=>{zs.hashU32=function(e){return e=e|0,e=e+2127912214+(e<<12)|0,e=e^-949894596^e>>>19,e=e+374761393+(e<<5)|0,e=e+-744332180^e<<9,e=e+-42973499+(e<<3)|0,e^-1252372727^e>>>16|0};zs.readU64=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n|=e[r++]<<32,n|=e[r++]<<40,n|=e[r++]<<48,n|=e[r++]<<56,n};zs.readU32=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n};zs.writeU32=function(e,r,n){e[r++]=n>>0&255,e[r++]=n>>8&255,e[r++]=n>>16&255,e[r++]=n>>24&255};zs.imul=function(e,r){var n=e>>>16,i=e&65535,o=r>>>16,f=r&65535;return i*f+(n*f+i*o<<16)|0}});var AT=B(ET=>{var ti=kh(),Nf=2654435761,Rf=2246822519,IT=3266489917,kF=668265263,xT=374761393;function wp(t,e){return t=t|0,e=e|0,t>>>(32-e|0)|t<<e|0}function ST(t,e,r){return t=t|0,e=e|0,r=r|0,ti.imul(t>>>(32-e|0)|t<<e,r)|0}function Ih(t,e){return t=t|0,e=e|0,t>>>e^t|0}function Ul(t,e,r,n,i){return ST(ti.imul(e,r)+t,n,i)}function IF(t,e,r){return ST(t+ti.imul(e[r],xT),11,Nf)}function xF(t,e,r){return Ul(t,ti.readU32(e,r),IT,17,kF)}function SF(t,e,r){return[Ul(t[0],ti.readU32(e,r+0),Rf,13,Nf),Ul(t[1],ti.readU32(e,r+4),Rf,13,Nf),Ul(t[2],ti.readU32(e,r+8),Rf,13,Nf),Ul(t[3],ti.readU32(e,r+12),Rf,13,Nf)]}function EF(t,e,r,n){var i,o;if(o=n,n>=16){for(i=[t+Nf+Rf,t+Rf,t,t-Nf];n>=16;)i=SF(i,e,r),r+=16,n-=16;i=wp(i[0],1)+wp(i[1],7)+wp(i[2],12)+wp(i[3],18)+o}else i=t+xT+n>>>0;for(;n>=4;)i=xF(i,e,r),r+=4,n-=4;for(;n>0;)i=IF(i,e,r),r++,n--;return i=Ih(ti.imul(Ih(ti.imul(Ih(i,15),Rf),13),IT),16),i>>>0}ET.hash=EF});var UT=B(tr=>{var AF=AT(),on=kh(),hp=4,OF=13,OT=5,xh=6,bp=1<<16,Ml=4,gp=(1<<Ml)-1,FF=4,Us=(1<<FF)-1,FT=HT(5<<20),Sh=PF(),Eh=407708164,DF=4,DT=8,PT=16,Ah=64,Oh=192,yp=2147483648,NT=7,Fh=4,RT=7,jp={4:65536,5:262144,6:1048576,7:4194304};function PF(){try{return new Uint32Array(bp)}catch{for(var t=new Array(bp),e=0;e<bp;e++)t[e]=0;return t}}function NF(t){for(var e=0;e<bp;e++)Sh[e]=0}function HT(t){try{return new Uint8Array(t)}catch{for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e}}function zT(t,e,r){if(typeof t.buffer!==void 0){if(Uint8Array.prototype.slice)return t.slice(e,r);var n=t.length;e=e|0,e=e<0?Math.max(n+e,0):Math.min(e,n),r=r===void 0?n:r|0,r=r<0?Math.max(n+r,0):Math.min(r,n);for(var i=new Uint8Array(r-e),o=e,f=0;o<r;)i[f++]=t[o++];return i}else return t.slice(e,r)}tr.compressBound=function(e){return e+e/255+16|0};tr.decompressBound=function(e){var r=0;if(on.readU32(e,r)!==Eh)throw new Error("invalid magic number");r+=4;var n=e[r++];if((n&Oh)!==Ah)throw new Error("incompatible descriptor version "+(n&Oh));var i=(n&PT)!=0,o=(n&DT)!=0,f=e[r++]>>Fh&RT;if(jp[f]===void 0)throw new Error("invalid block size "+f);var s=jp[f];if(o)return on.readU64(e,r);r++;for(var u=0;;){var l=on.readU32(e,r);if(r+=4,l&yp?(l&=~yp,u+=l):u+=s,l===0)return u;i&&(r+=4),r+=l}};tr.makeBuffer=HT;tr.decompressBlock=function(e,r,n,i,o){var f,s,u,l,c;for(u=n+i;n<u;){var w=e[n++],p=w>>4;if(p>0){if(p===15)for(;p+=e[n],e[n++]===255;);for(l=n+p;n<l;)r[o++]=e[n++]}if(n>=u)break;if(f=w&15,s=e[n++]|e[n++]<<8,f===15)for(;f+=e[n],e[n++]===255;);for(f+=hp,c=o-s,l=c+f;c<l;)r[o++]=r[c++]|0}return o};tr.compressBlock=function(e,r,n,i,o){var f,s,u,l,c,w,p,g,T;if(p=0,g=i+n,s=n,i>=OF)for(var L=(1<<xh)+3;n+hp<g-OT;){var O=on.readU32(e,n),K=on.hashU32(O)>>>0;if(K=(K>>16^K)>>>0&65535,f=o[K]-1,o[K]=n+1,f<0||n-f>>>16>0||on.readU32(e,f)!==O){c=L++>>xh,n+=c;continue}for(L=(1<<xh)+3,w=n-s,l=n-f,n+=hp,f+=hp,u=n;n<g-OT&&e[n]===e[f];)n++,f++;u=n-u;var ne=u<gp?u:gp;if(w>=Us){for(r[p++]=(Us<<Ml)+ne,T=w-Us;T>=255;T-=255)r[p++]=255;r[p++]=T}else r[p++]=(w<<Ml)+ne;for(var H=0;H<w;H++)r[p++]=e[s+H];if(r[p++]=l,r[p++]=l>>8,u>=gp){for(T=u-gp;T>=255;T-=255)r[p++]=255;r[p++]=T}s=n}if(s===0)return 0;if(w=g-s,w>=Us){for(r[p++]=Us<<Ml,T=w-Us;T>=255;T-=255)r[p++]=255;r[p++]=T}else r[p++]=w<<Ml;for(n=s;n<g;)r[p++]=e[n++];return p};tr.decompressFrame=function(e,r){var n,i,o,f,s=0,u=0;if(on.readU32(e,s)!==Eh)throw new Error("invalid magic number");if(s+=4,f=e[s++],(f&Oh)!==Ah)throw new Error("incompatible descriptor version");n=(f&PT)!=0,i=(f&DF)!=0,o=(f&DT)!=0;var l=e[s++]>>Fh&RT;if(jp[l]===void 0)throw new Error("invalid block size");for(o&&(s+=8),s++;;){var c;if(c=on.readU32(e,s),s+=4,c===0)break;if(n&&(s+=4),(c&yp)!=0){c&=~yp;for(var w=0;w<c;w++)r[u++]=e[s++]}else u=tr.decompressBlock(e,r,s,c,u),s+=c}return i&&(s+=4),u};tr.compressFrame=function(e,r){var n=0;on.writeU32(r,n,Eh),n+=4,r[n++]=Ah,r[n++]=NT<<Fh,r[n]=AF.hash(0,r,4,n-4)>>8,n++;var i=jp[NT],o=e.length,f=0;for(NF(Sh);o>0;){var s=0,u=o>i?i:o;if(s=tr.compressBlock(e,FT,f,u,Sh),s>u||s===0){on.writeU32(r,n,2147483648|u),n+=4;for(var l=f+u;f<l;)r[n++]=e[f++];o-=u}else{on.writeU32(r,n,s),n+=4;for(var c=0;c<s;)r[n++]=FT[c++];f+=u,o-=u}}return on.writeU32(r,n,0),n+=4,n};tr.decompress=function(e,r){var n,i;return r===void 0&&(r=tr.decompressBound(e)),n=tr.makeBuffer(r),i=tr.decompressFrame(e,n),i!==r&&(n=zT(n,0,i)),n};tr.compress=function(e,r){var n,i;return r===void 0&&(r=tr.compressBound(e.length)),n=tr.makeBuffer(r),i=tr.compressFrame(e,n),i!==r&&(n=zT(n,0,i)),n}});var MT=B(()=>{});function LT(t){return Buffer.from(t)}function VT(t){return Buffer.isBuffer(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}async function KT(t){let e=Object.values(Vl);return await Promise.all(e.map(r=>r.preload()))}async function Dh(t,e){let r=Vl[t];if(!r)throw new Error(`parquet: invalid compression method: ${t}`);let n=VT(e),i=await r.compress(n);return LT(i)}async function _p(t,e,r){let n=Vl[t];if(!n)throw new Error(`parquet: invalid compression method: ${t}`);let i=VT(e),o=await n.decompress(i,r);return LT(o)}var CT,WT,Ll,Vl,Cl=W(()=>{kT();CT=le(UT()),WT=le(MT());Ll={lz4js:CT.default,lzo:WT.default},Vl={UNCOMPRESSED:new Lc,GZIP:new op,SNAPPY:new pp,BROTLI:new dp({modules:Ll}),LZ4:new Pl({modules:Ll}),LZ4_RAW:new Pl({modules:Ll}),LZO:new mp({modules:Ll}),ZSTD:new ap({modules:Ll})}});var Ph=B((VC,Wl)=>{"use strict";typeof global.Map!="undefined"?(Wl.exports=global.Map,Wl.exports.Map=global.Map):(Jr=function(t){this._keys=[],this._values={};for(var e=0;e<t.length;e++)if(t[e]!=null){var r=t[e],n=r[0],i=r[1];this._keys.push(n),this._values[n]={v:i,i:this._keys.length-1}}},Jr.prototype.clear=function(){this._keys=[],this._values={}},Jr.prototype.delete=function(t){var e=this._values[t];return e==null?!1:(delete this._values[t],this._keys.splice(e.i,1),!0)},Jr.prototype.entries=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?[r,t._values[r].v]:void 0,done:r===void 0}}}},Jr.prototype.forEach=function(t,e){e=e||this;for(var r=0;r<this._keys.length;r++){var n=this._keys[r];t.call(e,this._values[n].v,n,e)}},Jr.prototype.get=function(t){return this._values[t]?this._values[t].v:void 0},Jr.prototype.has=function(t){return this._values[t]!=null},Jr.prototype.keys=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?r:void 0,done:r===void 0}}}},Jr.prototype.set=function(t,e){return this._values[t]?(this._values[t].v=e,this):(this._keys.push(t),this._values[t]={v:e,i:this._keys.length-1},this)},Jr.prototype.values=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?t._values[r].v:void 0,done:r===void 0}}}},Object.defineProperty(Jr.prototype,"size",{enumerable:!0,get:function(){return this._keys.length}}),Wl.exports=Jr,Wl.exports.Map=Jr);var Jr});var Ms=B((CC,Nh)=>{function S(t,e){if(!(this instanceof S))return new S(t,e);this._bsontype="Long",this.low_=t|0,this.high_=e|0}S.prototype.toInt=function(){return this.low_};S.prototype.toNumber=function(){return this.high_*S.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};S.prototype.toBigInt=function(){return BigInt(this.toString())};S.prototype.toJSON=function(){return this.toString()};S.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(S.MIN_VALUE)){var r=S.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var o=S.fromNumber(Math.pow(e,6));i=this;for(var f="";!i.isZero();){var s=i.div(o),u=i.subtract(s.multiply(o)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+f;for(;l.length<6;)l="0"+l;f=""+l+f}};S.prototype.getHighBits=function(){return this.high_};S.prototype.getLowBits=function(){return this.low_};S.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:S.TWO_PWR_32_DBL_+this.low_};S.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(S.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};S.prototype.isZero=function(){return this.high_===0&&this.low_===0};S.prototype.isNegative=function(){return this.high_<0};S.prototype.isOdd=function(){return(this.low_&1)==1};S.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};S.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};S.prototype.lessThan=function(t){return this.compare(t)<0};S.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};S.prototype.greaterThan=function(t){return this.compare(t)>0};S.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};S.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};S.prototype.negate=function(){return this.equals(S.MIN_VALUE)?S.MIN_VALUE:this.not().add(S.ONE)};S.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+f,l+=c>>>16,c&=65535,l+=e+o,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.subtract=function(t){return this.add(t.negate())};S.prototype.multiply=function(t){if(this.isZero())return S.ZERO;if(t.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE))return t.isOdd()?S.MIN_VALUE:S.ZERO;if(t.equals(S.MIN_VALUE))return this.isOdd()?S.MIN_VALUE:S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(S.TWO_PWR_24_)&&t.lessThan(S.TWO_PWR_24_))return S.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*f,l+=c>>>16,c&=65535,l+=e*u+r*s+n*f+i*o,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE)){if(t.equals(S.ONE)||t.equals(S.NEG_ONE))return S.MIN_VALUE;if(t.equals(S.MIN_VALUE))return S.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(S.ZERO))return t.isNegative()?S.ONE:S.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(S.MIN_VALUE))return S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var o=S.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var f=Math.ceil(Math.log(r)/Math.LN2),s=f<=48?1:Math.pow(2,f-48),u=S.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=S.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=S.ONE),o=o.add(u),n=n.subtract(l)}return o};S.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};S.prototype.not=function(){return S.fromBits(~this.low_,~this.high_)};S.prototype.and=function(t){return S.fromBits(this.low_&t.low_,this.high_&t.high_)};S.prototype.or=function(t){return S.fromBits(this.low_|t.low_,this.high_|t.high_)};S.prototype.xor=function(t){return S.fromBits(this.low_^t.low_,this.high_^t.high_)};S.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return S.fromBits(e<<t,r<<t|e>>>32-t)}else return S.fromBits(0,e<<t-32)};S.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>t)}else return S.fromBits(e>>t-32,e>=0?0:-1)};S.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?S.fromBits(e,0):S.fromBits(e>>>t-32,0)};S.fromInt=function(t){if(-128<=t&&t<128){var e=S.INT_CACHE_[t];if(e)return e}var r=new S(t|0,t<0?-1:0);return-128<=t&&t<128&&(S.INT_CACHE_[t]=r),r};S.fromNumber=function(t){return isNaN(t)||!isFinite(t)?S.ZERO:t<=-S.TWO_PWR_63_DBL_?S.MIN_VALUE:t+1>=S.TWO_PWR_63_DBL_?S.MAX_VALUE:t<0?S.fromNumber(-t).negate():new S(t%S.TWO_PWR_32_DBL_|0,t/S.TWO_PWR_32_DBL_|0)};S.fromBigInt=function(t){return S.fromString(t.toString(10),10)};S.fromBits=function(t,e){return new S(t,e)};S.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return S.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=S.fromNumber(Math.pow(r,8)),i=S.ZERO,o=0;o<t.length;o+=8){var f=Math.min(8,t.length-o),s=parseInt(t.substring(o,o+f),r);if(f<8){var u=S.fromNumber(Math.pow(r,f));i=i.multiply(u).add(S.fromNumber(s))}else i=i.multiply(n),i=i.add(S.fromNumber(s))}return i};S.INT_CACHE_={};S.TWO_PWR_16_DBL_=1<<16;S.TWO_PWR_24_DBL_=1<<24;S.TWO_PWR_32_DBL_=S.TWO_PWR_16_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_31_DBL_=S.TWO_PWR_32_DBL_/2;S.TWO_PWR_48_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_64_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_32_DBL_;S.TWO_PWR_63_DBL_=S.TWO_PWR_64_DBL_/2;S.ZERO=S.fromInt(0);S.ONE=S.fromInt(1);S.NEG_ONE=S.fromInt(-1);S.MAX_VALUE=S.fromBits(4294967295|0,2147483647|0);S.MIN_VALUE=S.fromBits(0,2147483648|0);S.TWO_PWR_24_=S.fromInt(1<<24);Nh.exports=S;Nh.exports.Long=S});var qp=B((WC,Rh)=>{function Ls(t){if(!(this instanceof Ls))return new Ls(t);this._bsontype="Double",this.value=t}Ls.prototype.valueOf=function(){return this.value};Ls.prototype.toJSON=function(){return this.value};Rh.exports=Ls;Rh.exports.Double=Ls});var vp=B((KC,Hh)=>{function E(t,e){if(!(this instanceof E))return new E(t,e);this._bsontype="Timestamp",this.low_=t|0,this.high_=e|0}E.prototype.toInt=function(){return this.low_};E.prototype.toNumber=function(){return this.high_*E.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};E.prototype.toJSON=function(){return this.toString()};E.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(E.MIN_VALUE)){var r=E.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var o=E.fromNumber(Math.pow(e,6));i=this;for(var f="";!i.isZero();){var s=i.div(o),u=i.subtract(s.multiply(o)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+f;for(;l.length<6;)l="0"+l;f=""+l+f}};E.prototype.getHighBits=function(){return this.high_};E.prototype.getLowBits=function(){return this.low_};E.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:E.TWO_PWR_32_DBL_+this.low_};E.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(E.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};E.prototype.isZero=function(){return this.high_===0&&this.low_===0};E.prototype.isNegative=function(){return this.high_<0};E.prototype.isOdd=function(){return(this.low_&1)==1};E.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};E.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};E.prototype.lessThan=function(t){return this.compare(t)<0};E.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};E.prototype.greaterThan=function(t){return this.compare(t)>0};E.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};E.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};E.prototype.negate=function(){return this.equals(E.MIN_VALUE)?E.MIN_VALUE:this.not().add(E.ONE)};E.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+f,l+=c>>>16,c&=65535,l+=e+o,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.subtract=function(t){return this.add(t.negate())};E.prototype.multiply=function(t){if(this.isZero())return E.ZERO;if(t.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE))return t.isOdd()?E.MIN_VALUE:E.ZERO;if(t.equals(E.MIN_VALUE))return this.isOdd()?E.MIN_VALUE:E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(E.TWO_PWR_24_)&&t.lessThan(E.TWO_PWR_24_))return E.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*f,l+=c>>>16,c&=65535,l+=e*u+r*s+n*f+i*o,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE)){if(t.equals(E.ONE)||t.equals(E.NEG_ONE))return E.MIN_VALUE;if(t.equals(E.MIN_VALUE))return E.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(E.ZERO))return t.isNegative()?E.ONE:E.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(E.MIN_VALUE))return E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var o=E.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var f=Math.ceil(Math.log(r)/Math.LN2),s=f<=48?1:Math.pow(2,f-48),u=E.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=E.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=E.ONE),o=o.add(u),n=n.subtract(l)}return o};E.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};E.prototype.not=function(){return E.fromBits(~this.low_,~this.high_)};E.prototype.and=function(t){return E.fromBits(this.low_&t.low_,this.high_&t.high_)};E.prototype.or=function(t){return E.fromBits(this.low_|t.low_,this.high_|t.high_)};E.prototype.xor=function(t){return E.fromBits(this.low_^t.low_,this.high_^t.high_)};E.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return E.fromBits(e<<t,r<<t|e>>>32-t)}else return E.fromBits(0,e<<t-32)};E.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>t)}else return E.fromBits(e>>t-32,e>=0?0:-1)};E.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?E.fromBits(e,0):E.fromBits(e>>>t-32,0)};E.fromInt=function(t){if(-128<=t&&t<128){var e=E.INT_CACHE_[t];if(e)return e}var r=new E(t|0,t<0?-1:0);return-128<=t&&t<128&&(E.INT_CACHE_[t]=r),r};E.fromNumber=function(t){return isNaN(t)||!isFinite(t)?E.ZERO:t<=-E.TWO_PWR_63_DBL_?E.MIN_VALUE:t+1>=E.TWO_PWR_63_DBL_?E.MAX_VALUE:t<0?E.fromNumber(-t).negate():new E(t%E.TWO_PWR_32_DBL_|0,t/E.TWO_PWR_32_DBL_|0)};E.fromBits=function(t,e){return new E(t,e)};E.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return E.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=E.fromNumber(Math.pow(r,8)),i=E.ZERO,o=0;o<t.length;o+=8){var f=Math.min(8,t.length-o),s=parseInt(t.substring(o,o+f),r);if(f<8){var u=E.fromNumber(Math.pow(r,f));i=i.multiply(u).add(E.fromNumber(s))}else i=i.multiply(n),i=i.add(E.fromNumber(s))}return i};E.INT_CACHE_={};E.TWO_PWR_16_DBL_=1<<16;E.TWO_PWR_24_DBL_=1<<24;E.TWO_PWR_32_DBL_=E.TWO_PWR_16_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_31_DBL_=E.TWO_PWR_32_DBL_/2;E.TWO_PWR_48_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_64_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_32_DBL_;E.TWO_PWR_63_DBL_=E.TWO_PWR_64_DBL_/2;E.ZERO=E.fromInt(0);E.ONE=E.fromInt(1);E.NEG_ONE=E.fromInt(-1);E.MAX_VALUE=E.fromBits(4294967295|0,2147483647|0);E.MIN_VALUE=E.fromBits(0,2147483648|0);E.TWO_PWR_24_=E.fromInt(1<<24);Hh.exports=E;Hh.exports.Timestamp=E});var Eo=B((YC,GT)=>{"use strict";function RF(t){return t.toString().replace(/function *\(/,"function (")}function YT(t,e){return new Buffer(t,e)}function HF(){return Buffer.alloc.apply(Buffer,arguments)}function zF(){return Buffer.from.apply(Buffer,arguments)}GT.exports={normalizedFunctionString:RF,allocBuffer:typeof Buffer.alloc=="function"?HF:YT,toBuffer:typeof Buffer.from=="function"?zF:YT}});var JT=B((GC,ZT)=>{ZT.exports=function(e){return e&&typeof e=="object"&&typeof e.copy=="function"&&typeof e.fill=="function"&&typeof e.readUInt8=="function"}});var QT=B((ZC,zh)=>{typeof Object.create=="function"?zh.exports=function(e,r){e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:zh.exports=function(e,r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e}});var Nn=B($e=>{var XT=Object.getOwnPropertyDescriptors||function(e){for(var r=Object.keys(e),n={},i=0;i<r.length;i++)n[r[i]]=Object.getOwnPropertyDescriptor(e,r[i]);return n},UF=/%[sdj%]/g;$e.format=function(t){if(!Ip(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(Ao(arguments[r]));return e.join(" ")}for(var r=1,n=arguments,i=n.length,o=String(t).replace(UF,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch{return"[Circular]"}default:return s}}),f=n[r];r<i;f=n[++r])kp(f)||!Vs(f)?o+=" "+f:o+=" "+Ao(f);return o};$e.deprecate=function(t,e){if(typeof process!="undefined"&&process.noDeprecation===!0)return t;if(typeof process=="undefined")return function(){return $e.deprecate(t,e).apply(this,arguments)};var r=!1;function n(){if(!r){if(process.throwDeprecation)throw new Error(e);process.traceDeprecation?console.trace(e):console.error(e),r=!0}return t.apply(this,arguments)}return n};var Tp={},Uh;$e.debuglog=function(t){if(Oo(Uh)&&(Uh=process.env.NODE_DEBUG||""),t=t.toUpperCase(),!Tp[t])if(new RegExp("\\b"+t+"\\b","i").test(Uh)){var e=process.pid;Tp[t]=function(){var r=$e.format.apply($e,arguments);console.error("%s %d: %s",t,e,r)}}else Tp[t]=function(){};return Tp[t]};function Ao(t,e){var r={seen:[],stylize:LF};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),Vh(e)?r.showHidden=e:e&&$e._extend(r,e),Oo(r.showHidden)&&(r.showHidden=!1),Oo(r.depth)&&(r.depth=2),Oo(r.colors)&&(r.colors=!1),Oo(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=MF),Bp(r,t,r.depth)}$e.inspect=Ao;Ao.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]};Ao.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function MF(t,e){var r=Ao.styles[e];return r?"["+Ao.colors[r][0]+"m"+t+"["+Ao.colors[r][1]+"m":t}function LF(t,e){return t}function VF(t){var e={};return t.forEach(function(r,n){e[r]=!0}),e}function Bp(t,e,r){if(t.customInspect&&e&&Ep(e.inspect)&&e.inspect!==$e.inspect&&!(e.constructor&&e.constructor.prototype===e)){var n=e.inspect(r,t);return Ip(n)||(n=Bp(t,n,r)),n}var i=CF(t,e);if(i)return i;var o=Object.keys(e),f=VF(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),Sp(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return Mh(e);if(o.length===0){if(Ep(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(xp(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(Ch(e))return t.stylize(Date.prototype.toString.call(e),"date");if(Sp(e))return Mh(e)}var u="",l=!1,c=["{","}"];if($T(e)&&(l=!0,c=["[","]"]),Ep(e)){var w=e.name?": "+e.name:"";u=" [Function"+w+"]"}if(xp(e)&&(u=" "+RegExp.prototype.toString.call(e)),Ch(e)&&(u=" "+Date.prototype.toUTCString.call(e)),Sp(e)&&(u=" "+Mh(e)),o.length===0&&(!l||e.length==0))return c[0]+u+c[1];if(r<0)return xp(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special");t.seen.push(e);var p;return l?p=WF(t,e,r,f,o):p=o.map(function(g){return Lh(t,e,r,f,g,l)}),t.seen.pop(),KF(p,u,c)}function CF(t,e){if(Oo(e))return t.stylize("undefined","undefined");if(Ip(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(eB(e))return t.stylize(""+e,"number");if(Vh(e))return t.stylize(""+e,"boolean");if(kp(e))return t.stylize("null","null")}function Mh(t){return"["+Error.prototype.toString.call(t)+"]"}function WF(t,e,r,n,i){for(var o=[],f=0,s=e.length;f<s;++f)tB(e,String(f))?o.push(Lh(t,e,r,n,String(f),!0)):o.push("");return i.forEach(function(u){u.match(/^\d+$/)||o.push(Lh(t,e,r,n,u,!0))}),o}function Lh(t,e,r,n,i,o){var f,s,u;if(u=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]},u.get?u.set?s=t.stylize("[Getter/Setter]","special"):s=t.stylize("[Getter]","special"):u.set&&(s=t.stylize("[Setter]","special")),tB(n,i)||(f="["+i+"]"),s||(t.seen.indexOf(u.value)<0?(kp(r)?s=Bp(t,u.value,null):s=Bp(t,u.value,r-1),s.indexOf(`
2
4
  `)>-1&&(o?s=s.split(`
3
5
  `).map(function(l){return" "+l}).join(`
4
6
  `).substr(2):s=`
5
7
  `+s.split(`
6
8
  `).map(function(l){return" "+l}).join(`
7
- `))):s=t.stylize("[Circular]","special")),jo(f)){if(o&&i.match(/^\d+$/))return s;f=JSON.stringify(""+i),f.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(f=f.substr(1,f.length-2),f=t.stylize(f,"name")):(f=f.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),f=t.stylize(f,"string"))}return f+": "+s}function AO(t,e,r){var n=0,i=t.reduce(function(o,f){return n++,f.indexOf(`
9
+ `))):s=t.stylize("[Circular]","special")),Oo(f)){if(o&&i.match(/^\d+$/))return s;f=JSON.stringify(""+i),f.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(f=f.substr(1,f.length-2),f=t.stylize(f,"name")):(f=f.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),f=t.stylize(f,"string"))}return f+": "+s}function KF(t,e,r){var n=0,i=t.reduce(function(o,f){return n++,f.indexOf(`
8
10
  `)>=0&&n++,o+f.replace(/\u001b\[\d\d?m/g,"").length+1},0);return i>60?r[0]+(e===""?"":e+`
9
11
  `)+" "+t.join(`,
10
- `)+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}function X_(t){return Array.isArray(t)}$e.isArray=X_;function Aw(t){return typeof t=="boolean"}$e.isBoolean=Aw;function Oc(t){return t===null}$e.isNull=Oc;function OO(t){return t==null}$e.isNullOrUndefined=OO;function $_(t){return typeof t=="number"}$e.isNumber=$_;function Fc(t){return typeof t=="string"}$e.isString=Fc;function FO(t){return typeof t=="symbol"}$e.isSymbol=FO;function jo(t){return t===void 0}$e.isUndefined=jo;function Dc(t){return ys(t)&&Fw(t)==="[object RegExp]"}$e.isRegExp=Dc;function ys(t){return typeof t=="object"&&t!==null}$e.isObject=ys;function Ow(t){return ys(t)&&Fw(t)==="[object Date]"}$e.isDate=Ow;function Nc(t){return ys(t)&&(Fw(t)==="[object Error]"||t instanceof Error)}$e.isError=Nc;function Pc(t){return typeof t=="function"}$e.isFunction=Pc;function DO(t){return t===null||typeof t=="boolean"||typeof t=="number"||typeof t=="string"||typeof t=="symbol"||typeof t=="undefined"}$e.isPrimitive=DO;$e.isBuffer=Z_();function Fw(t){return Object.prototype.toString.call(t)}function Dw(t){return t<10?"0"+t.toString(10):t.toString(10)}var NO=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function PO(){var t=new Date,e=[Dw(t.getHours()),Dw(t.getMinutes()),Dw(t.getSeconds())].join(":");return[t.getDate(),NO[t.getMonth()],e].join(" ")}$e.log=function(){console.log("%s - %s",PO(),$e.format.apply($e,arguments))};$e.inherits=J_();$e._extend=function(t,e){if(!e||!ys(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};function eq(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var qf=typeof Symbol!="undefined"?Symbol("util.promisify.custom"):void 0;$e.promisify=function(e){if(typeof e!="function")throw new TypeError('The "original" argument must be of type Function');if(qf&&e[qf]){var r=e[qf];if(typeof r!="function")throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(r,qf,{value:r,enumerable:!1,writable:!1,configurable:!0}),r}function r(){for(var n,i,o=new Promise(function(u,l){n=u,i=l}),f=[],s=0;s<arguments.length;s++)f.push(arguments[s]);f.push(function(u,l){u?i(u):n(l)});try{e.apply(this,f)}catch(u){i(u)}return o}return Object.setPrototypeOf(r,Object.getPrototypeOf(e)),qf&&Object.defineProperty(r,qf,{value:r,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(r,Q_(e))};$e.promisify.custom=qf;function RO(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}function HO(t){if(typeof t!="function")throw new TypeError('The "original" argument must be of type Function');function e(){for(var r=[],n=0;n<arguments.length;n++)r.push(arguments[n]);var i=r.pop();if(typeof i!="function")throw new TypeError("The last argument must be of type Function");var o=this,f=function(){return i.apply(o,arguments)};t.apply(this,r).then(function(s){process.nextTick(f,null,s)},function(s){process.nextTick(RO,s,f)})}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,Q_(t)),e}$e.callbackify=HO});var _o=k((Yn,Nw)=>{var Rc=On(),tl=Yn.Type={STOP:0,VOID:1,BOOL:2,BYTE:3,I08:3,DOUBLE:4,I16:6,I32:8,I64:10,STRING:11,UTF7:11,STRUCT:12,MAP:13,SET:14,LIST:15,UTF8:16,UTF16:17};Yn.MessageType={CALL:1,REPLY:2,EXCEPTION:3,ONEWAY:4};Yn.TException=Hc;function Hc(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}Rc.inherits(Hc,Error);var UO=Yn.TApplicationExceptionType={UNKNOWN:0,UNKNOWN_METHOD:1,INVALID_MESSAGE_TYPE:2,WRONG_METHOD_NAME:3,BAD_SEQUENCE_ID:4,MISSING_RESULT:5,INTERNAL_ERROR:6,PROTOCOL_ERROR:7,INVALID_TRANSFORM:8,INVALID_PROTOCOL:9,UNSUPPORTED_CLIENT_TYPE:10};Yn.TApplicationException=Uc;function Uc(t,e){Hc.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.type=t||UO.UNKNOWN,this.name=this.constructor.name,this.message=e}Rc.inherits(Uc,Hc);Uc.prototype.read=function(t){for(var e,r=t.readStructBegin("TApplicationException");r=t.readFieldBegin(),r.ftype!=tl.STOP;){switch(r.fid){case 1:r.ftype==tl.STRING?(r=t.readString(),this.message=r):r=t.skip(r.ftype);break;case 2:r.ftype==tl.I32?(r=t.readI32(),this.type=r):r=t.skip(r.ftype);break;default:r=t.skip(r.ftype);break}t.readFieldEnd()}t.readStructEnd()};Uc.prototype.write=function(t){t.writeStructBegin("TApplicationException"),this.message&&(t.writeFieldBegin("message",tl.STRING,1),t.writeString(this.message),t.writeFieldEnd()),this.code&&(t.writeFieldBegin("type",tl.I32,2),t.writeI32(this.code),t.writeFieldEnd()),t.writeFieldStop(),t.writeStructEnd()};var Y6=Yn.TProtocolExceptionType={UNKNOWN:0,INVALID_DATA:1,NEGATIVE_SIZE:2,SIZE_LIMIT:3,BAD_VERSION:4,NOT_IMPLEMENTED:5,DEPTH_LIMIT:6};Yn.TProtocolException=tq;function tq(t,e){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.type=t,this.message=e}Rc.inherits(tq,Error);Yn.objectLength=function(t){return Object.keys(t).length};Yn.inherits=function(t,e){Rc.inherits(t,e)};var Mc,zc;Mc=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i=t.length,o=[],f,s;for(f=0;f<i;f++)s=t[f],r===null?o.push(s):r===zc||r===Mc?o.push(r(s,e.slice(1))):o.push(new n(s));return o};zc=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i={},o;for(var f in t)t.hasOwnProperty(f)&&(o=t[f],r===null?i[f]=o:r===zc||r===Mc?i[f]=r(o,e.slice(1)):i[f]=new n(o));return i};Nw.exports.copyMap=zc;Nw.exports.copyList=Mc});var nq=k((G6,rq)=>{var js=null;typeof WebSocket!="undefined"?js=WebSocket:typeof MozWebSocket!="undefined"?js=MozWebSocket:typeof global!="undefined"?js=global.WebSocket||global.MozWebSocket:typeof window!="undefined"?js=window.WebSocket||window.MozWebSocket:typeof self!="undefined"&&(js=self.WebSocket||self.MozWebSocket);rq.exports=js});var Rw=k((Z6,Pw)=>{"use strict";var _s=typeof Reflect=="object"?Reflect:null,iq=_s&&typeof _s.apply=="function"?_s.apply:function(e,r,n){return Function.prototype.apply.call(e,r,n)},Lc;_s&&typeof _s.ownKeys=="function"?Lc=_s.ownKeys:Object.getOwnPropertySymbols?Lc=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:Lc=function(e){return Object.getOwnPropertyNames(e)};function MO(t){console&&console.warn&&console.warn(t)}var oq=Number.isNaN||function(e){return e!==e};function at(){at.init.call(this)}Pw.exports=at;Pw.exports.once=CO;at.EventEmitter=at;at.prototype._events=void 0;at.prototype._eventsCount=0;at.prototype._maxListeners=void 0;var fq=10;function Vc(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(at,"defaultMaxListeners",{enumerable:!0,get:function(){return fq},set:function(t){if(typeof t!="number"||t<0||oq(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");fq=t}});at.init=function(){(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0};at.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||oq(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};function sq(t){return t._maxListeners===void 0?at.defaultMaxListeners:t._maxListeners}at.prototype.getMaxListeners=function(){return sq(this)};at.prototype.emit=function(e){for(var r=[],n=1;n<arguments.length;n++)r.push(arguments[n]);var i=e==="error",o=this._events;if(o!==void 0)i=i&&o.error===void 0;else if(!i)return!1;if(i){var f;if(r.length>0&&(f=r[0]),f instanceof Error)throw f;var s=new Error("Unhandled error."+(f?" ("+f.message+")":""));throw s.context=f,s}var u=o[e];if(u===void 0)return!1;if(typeof u=="function")iq(u,this,r);else for(var l=u.length,c=pq(u,l),n=0;n<l;++n)iq(c[n],this,r);return!0};function aq(t,e,r,n){var i,o,f;if(Vc(r),o=t._events,o===void 0?(o=t._events=Object.create(null),t._eventsCount=0):(o.newListener!==void 0&&(t.emit("newListener",e,r.listener?r.listener:r),o=t._events),f=o[e]),f===void 0)f=o[e]=r,++t._eventsCount;else if(typeof f=="function"?f=o[e]=n?[r,f]:[f,r]:n?f.unshift(r):f.push(r),i=sq(t),i>0&&f.length>i&&!f.warned){f.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+f.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=t,s.type=e,s.count=f.length,MO(s)}return t}at.prototype.addListener=function(e,r){return aq(this,e,r,!1)};at.prototype.on=at.prototype.addListener;at.prototype.prependListener=function(e,r){return aq(this,e,r,!0)};function zO(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function lq(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=zO.bind(n);return i.listener=r,n.wrapFn=i,i}at.prototype.once=function(e,r){return Vc(r),this.on(e,lq(this,e,r)),this};at.prototype.prependOnceListener=function(e,r){return Vc(r),this.prependListener(e,lq(this,e,r)),this};at.prototype.removeListener=function(e,r){var n,i,o,f,s;if(Vc(r),i=this._events,i===void 0)return this;if(n=i[e],n===void 0)return this;if(n===r||n.listener===r)--this._eventsCount==0?this._events=Object.create(null):(delete i[e],i.removeListener&&this.emit("removeListener",e,n.listener||r));else if(typeof n!="function"){for(o=-1,f=n.length-1;f>=0;f--)if(n[f]===r||n[f].listener===r){s=n[f].listener,o=f;break}if(o<0)return this;o===0?n.shift():LO(n,o),n.length===1&&(i[e]=n[0]),i.removeListener!==void 0&&this.emit("removeListener",e,s||r)}return this};at.prototype.off=at.prototype.removeListener;at.prototype.removeAllListeners=function(e){var r,n,i;if(n=this._events,n===void 0)return this;if(n.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):n[e]!==void 0&&(--this._eventsCount==0?this._events=Object.create(null):delete n[e]),this;if(arguments.length===0){var o=Object.keys(n),f;for(i=0;i<o.length;++i)f=o[i],f!=="removeListener"&&this.removeAllListeners(f);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(r=n[e],typeof r=="function")this.removeListener(e,r);else if(r!==void 0)for(i=r.length-1;i>=0;i--)this.removeListener(e,r[i]);return this};function uq(t,e,r){var n=t._events;if(n===void 0)return[];var i=n[e];return i===void 0?[]:typeof i=="function"?r?[i.listener||i]:[i]:r?VO(i):pq(i,i.length)}at.prototype.listeners=function(e){return uq(this,e,!0)};at.prototype.rawListeners=function(e){return uq(this,e,!1)};at.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):cq.call(t,e)};at.prototype.listenerCount=cq;function cq(t){var e=this._events;if(e!==void 0){var r=e[t];if(typeof r=="function")return 1;if(r!==void 0)return r.length}return 0}at.prototype.eventNames=function(){return this._eventsCount>0?Lc(this._events):[]};function pq(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function LO(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function VO(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function CO(t,e){return new Promise(function(r,n){function i(f){t.removeListener(e,o),n(f)}function o(){typeof t.removeListener=="function"&&t.removeListener("error",i),r([].slice.call(arguments))}dq(t,e,o,{once:!0}),e!=="error"&&WO(t,i,{once:!0})})}function WO(t,e,r){typeof t.on=="function"&&dq(t,"error",e,r)}function dq(t,e,r,n){if(typeof t.on=="function")n.once?t.once(e,r):t.on(e,r);else if(typeof t.addEventListener=="function")t.addEventListener(e,function i(o){n.once&&t.removeEventListener(e,i),r(o)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t)}});var Cc=k(qo=>{var Hw=Math.pow(2,8),KO=Math.pow(2,16),mq=Math.pow(2,24),wq=Math.pow(2,32),YO=Math.pow(2,40),GO=Math.pow(2,48),Uw=Math.pow(2,52),ZO=Math.pow(2,1022);qo.readByte=function(t){return t>127?t-256:t};qo.readI16=function(t,e){e=e||0;var r=t[e+1];return r+=t[e]<<8,t[e]&128&&(r-=KO),r};qo.readI32=function(t,e){e=e||0;var r=t[e+3];return r+=t[e+2]<<8,r+=t[e+1]<<16,r+=t[e]*mq,t[e]&128&&(r-=wq),r};qo.writeI16=function(t,e){return t[1]=e&255,e>>=8,t[0]=e&255,t};qo.writeI32=function(t,e){return t[3]=e&255,e>>=8,t[2]=e&255,e>>=8,t[1]=e&255,e>>=8,t[0]=e&255,t};qo.readDouble=function(t,e){e=e||0;var r=t[e]&128,n=(t[e+1]&240)>>4;n+=(t[e]&127)<<4;var i=t[e+7];switch(i+=t[e+6]<<8,i+=t[e+5]<<16,i+=t[e+4]*mq,i+=t[e+3]*wq,i+=t[e+2]*YO,i+=(t[e+1]&15)*GO,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Uw,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};qo.writeDouble=function(t,e){var r,n,i;return t[0]=e<0?128:0,e=Math.abs(e),e!==e?(r=2251799813685248,n=2047):e===1/0?(r=0,n=2047):(n=Math.floor(Math.log(e)/Math.LN2),i=Math.pow(2,-n),e*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(e*i-1)*Uw,n+=1023):(r=e*ZO*Uw,n=0)),t[1]=n<<4&240,t[0]|=n>>4&127,t[7]=r&255,r=Math.floor(r/Hw),t[6]=r&255,r=Math.floor(r/Hw),t[5]=r&255,r=Math.floor(r/Hw),t[4]=r&255,r>>=8,t[3]=r&255,r>>=8,t[2]=r&255,r>>=8,t[1]|=r&15,t}});var vf=k((Q6,bq)=>{var JO=On();bq.exports=hq;function hq(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}JO.inherits(hq,Error)});var Kc=k(Oi=>{var QO=On(),qs=function(){},gq=console.log,Wc="error";function rl(t){return function(){var e=["thrift: ["+t+"] "].concat(Array.from(arguments));return gq(QO.format.apply(null,e))}}var Mw=qs,zw=qs,Lw=qs,Vw=qs,Cw=qs;Oi.setLogFunc=function(t){gq=t};var XO=Oi.setLogLevel=function(t){switch(Mw=zw=Lw=Vw=Cw=qs,Wc=t,Wc){case"trace":Mw=rl("TRACE");case"debug":zw=rl("DEBUG");case"error":Lw=rl("ERROR");case"warning":Vw=rl("WARN");case"info":Cw=rl("INFO")}};XO(Wc);Oi.getLogLevel=function(){return Wc};Oi.trace=function(){return Mw.apply(null,arguments)};Oi.debug=function(){return zw.apply(null,arguments)};Oi.error=function(){return Lw.apply(null,arguments)};Oi.warning=function(){return Vw.apply(null,arguments)};Oi.info=function(){return Cw.apply(null,arguments)}});var Yw=k(($6,yq)=>{var $O=Kc(),Fi=Ar(),Bt=_o(),pt=Bt.Type;yq.exports=R;var Ww=Math.pow(2,8),e4=Math.pow(2,24),t4=Math.pow(2,32),r4=Math.pow(2,40),n4=Math.pow(2,48),Kw=Math.pow(2,52),i4=Math.pow(2,1022);function R(t){this.trans=t,this.lastField_=[],this.lastFieldId_=0,this.string_limit_=0,this.string_buf_=null,this.string_buf_size_=0,this.container_limit_=0,this.booleanField_={name:null,hasBoolValue:!1},this.boolValue_={hasBoolValue:!1,boolValue:!1}}R.PROTOCOL_ID=-126;R.VERSION_N=1;R.VERSION_MASK=31;R.TYPE_MASK=-32;R.TYPE_BITS=7;R.TYPE_SHIFT_AMOUNT=5;R.Types={CT_STOP:0,CT_BOOLEAN_TRUE:1,CT_BOOLEAN_FALSE:2,CT_BYTE:3,CT_I16:4,CT_I32:5,CT_I64:6,CT_DOUBLE:7,CT_BINARY:8,CT_LIST:9,CT_SET:10,CT_MAP:11,CT_STRUCT:12};R.TTypeToCType=[R.Types.CT_STOP,0,R.Types.CT_BOOLEAN_TRUE,R.Types.CT_BYTE,R.Types.CT_DOUBLE,0,R.Types.CT_I16,0,R.Types.CT_I32,0,R.Types.CT_I64,R.Types.CT_BINARY,R.Types.CT_STRUCT,R.Types.CT_MAP,R.Types.CT_SET,R.Types.CT_LIST];R.prototype.getTransport=function(){return this.trans};R.prototype.getCompactType=function(t){return R.TTypeToCType[t]};R.prototype.getTType=function(t){switch(t){case pt.STOP:return pt.STOP;case R.Types.CT_BOOLEAN_FALSE:case R.Types.CT_BOOLEAN_TRUE:return pt.BOOL;case R.Types.CT_BYTE:return pt.BYTE;case R.Types.CT_I16:return pt.I16;case R.Types.CT_I32:return pt.I32;case R.Types.CT_I64:return pt.I64;case R.Types.CT_DOUBLE:return pt.DOUBLE;case R.Types.CT_BINARY:return pt.STRING;case R.Types.CT_LIST:return pt.LIST;case R.Types.CT_SET:return pt.SET;case R.Types.CT_MAP:return pt.MAP;case R.Types.CT_STRUCT:return pt.STRUCT;default:throw new Bt.TProtocolException(Bt.TProtocolExceptionType.INVALID_DATA,"Unknown type: "+t)}return pt.STOP};R.prototype.flush=function(){return this.trans.flush()};R.prototype.writeMessageBegin=function(t,e,r){this.writeByte(R.PROTOCOL_ID),this.writeByte(R.VERSION_N&R.VERSION_MASK|e<<R.TYPE_SHIFT_AMOUNT&R.TYPE_MASK),this.writeVarint32(r),this.writeString(t),this._seqid?$O.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};R.prototype.writeMessageEnd=function(){};R.prototype.writeStructBegin=function(t){this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0};R.prototype.writeStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};R.prototype.writeFieldBegin=function(t,e,r){if(e!=pt.BOOL)return this.writeFieldBeginInternal(t,e,r,-1);this.booleanField_.name=t,this.booleanField_.fieldType=e,this.booleanField_.fieldId=r};R.prototype.writeFieldEnd=function(){};R.prototype.writeFieldStop=function(){this.writeByte(R.Types.CT_STOP)};R.prototype.writeMapBegin=function(t,e,r){r===0?this.writeByte(0):(this.writeVarint32(r),this.writeByte(this.getCompactType(t)<<4|this.getCompactType(e)))};R.prototype.writeMapEnd=function(){};R.prototype.writeListBegin=function(t,e){this.writeCollectionBegin(t,e)};R.prototype.writeListEnd=function(){};R.prototype.writeSetBegin=function(t,e){this.writeCollectionBegin(t,e)};R.prototype.writeSetEnd=function(){};R.prototype.writeBool=function(t){this.booleanField_.name!==null?(this.writeFieldBeginInternal(this.booleanField_.name,this.booleanField_.fieldType,this.booleanField_.fieldId,t?R.Types.CT_BOOLEAN_TRUE:R.Types.CT_BOOLEAN_FALSE),this.booleanField_.name=null):this.writeByte(t?R.Types.CT_BOOLEAN_TRUE:R.Types.CT_BOOLEAN_FALSE)};R.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};R.prototype.writeI16=function(t){this.writeVarint32(this.i32ToZigzag(t))};R.prototype.writeI32=function(t){this.writeVarint32(this.i32ToZigzag(t))};R.prototype.writeI64=function(t){this.writeVarint64(this.i64ToZigzag(t))};R.prototype.writeDouble=function(t){var e=new Buffer(8),r,n,i;e[7]=t<0?128:0,t=Math.abs(t),t!==t?(r=2251799813685248,n=2047):t===1/0?(r=0,n=2047):(n=Math.floor(Math.log(t)/Math.LN2),i=Math.pow(2,-n),t*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(t*i-1)*Kw,n+=1023):(r=t*i4*Kw,n=0)),e[6]=n<<4&240,e[7]|=n>>4&127,e[0]=r&255,r=Math.floor(r/Ww),e[1]=r&255,r=Math.floor(r/Ww),e[2]=r&255,r=Math.floor(r/Ww),e[3]=r&255,r>>=8,e[4]=r&255,r>>=8,e[5]=r&255,r>>=8,e[6]|=r&15,this.trans.write(e)};R.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeVarint32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeVarint32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};R.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};R.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};R.prototype.writeFieldBeginInternal=function(t,e,r,n){var i=n==-1?this.getCompactType(e):n;r>this.lastFieldId_&&r-this.lastFieldId_<=15?this.writeByte(r-this.lastFieldId_<<4|i):(this.writeByte(i),this.writeI16(r)),this.lastFieldId_=r};R.prototype.writeCollectionBegin=function(t,e){e<=14?this.writeByte(e<<4|this.getCompactType(t)):(this.writeByte(240|this.getCompactType(t)),this.writeVarint32(e))};R.prototype.writeVarint32=function(t){for(var e=new Buffer(5),r=0;;)if((t&~127)==0){e[r++]=t;break}else e[r++]=t&127|128,t=t>>>7;var n=new Buffer(r);e.copy(n,0,0,r),this.trans.write(n)};R.prototype.writeVarint64=function(t){if(typeof t=="number"&&(t=new Fi(t)),!(t instanceof Fi))throw new Bt.TProtocolException(Bt.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);for(var e=new Buffer(10),r=0,n=t.buffer.readUInt32BE(0,!0),i=t.buffer.readUInt32BE(4,!0),o=0;;)if((i&~127)==0&&n===0){e[r++]=i;break}else e[r++]=i&127|128,o=n<<25,i=i>>>7,n=n>>>7,i=i|o;var f=new Buffer(r);e.copy(f,0,0,r),this.trans.write(f)};R.prototype.i64ToZigzag=function(t){if(typeof t=="string"?t=new Fi(parseInt(t,10)):typeof t=="number"&&(t=new Fi(t)),!(t instanceof Fi))throw new Bt.TProtocolException(Bt.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=e>>>31;return e=(e<<1|r>>>31)^(n?4294967295:0),r=r<<1^(n?4294967295:0),new Fi(e,r)};R.prototype.i32ToZigzag=function(t){return t<<1^(t&2147483648?4294967295:0)};R.prototype.readMessageBegin=function(){var t=this.trans.readByte();if(t!=R.PROTOCOL_ID)throw new Bt.TProtocolException(Bt.TProtocolExceptionType.BAD_VERSION,"Bad protocol identifier "+t);var e=this.trans.readByte(),r=e&R.VERSION_MASK;if(r!=R.VERSION_N)throw new Bt.TProtocolException(Bt.TProtocolExceptionType.BAD_VERSION,"Bad protocol version "+r);var n=e>>R.TYPE_SHIFT_AMOUNT&R.TYPE_BITS,i=this.readVarint32(),o=this.readString();return{fname:o,mtype:n,rseqid:i}};R.prototype.readMessageEnd=function(){};R.prototype.readStructBegin=function(){return this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0,{fname:""}};R.prototype.readStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};R.prototype.readFieldBegin=function(){var t=0,e=this.trans.readByte(e),r=e&15;if(r==R.Types.CT_STOP)return{fname:null,ftype:Bt.Type.STOP,fid:0};var n=(e&240)>>>4;n===0?t=this.readI16():t=this.lastFieldId_+n;var i=this.getTType(r);return(r==R.Types.CT_BOOLEAN_TRUE||r==R.Types.CT_BOOLEAN_FALSE)&&(this.boolValue_.hasBoolValue=!0,this.boolValue_.boolValue=r==R.Types.CT_BOOLEAN_TRUE),this.lastFieldId_=t,{fname:null,ftype:i,fid:t}};R.prototype.readFieldEnd=function(){};R.prototype.readMapBegin=function(){var t=this.readVarint32();if(t<0)throw new Bt.TProtocolException(Bt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative map size");var e=0;t!==0&&(e=this.trans.readByte());var r=this.getTType((e&240)>>>4),n=this.getTType(e&15);return{ktype:r,vtype:n,size:t}};R.prototype.readMapEnd=function(){};R.prototype.readListBegin=function(){var t=this.trans.readByte(),e=t>>>4&15;if(e==15&&(e=this.readVarint32()),e<0)throw new Bt.TProtocolException(Bt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative list size");var r=this.getTType(t&15);return{etype:r,size:e}};R.prototype.readListEnd=function(){};R.prototype.readSetBegin=function(){return this.readListBegin()};R.prototype.readSetEnd=function(){};R.prototype.readBool=function(){var t=!1,e=0;if(this.boolValue_.hasBoolValue===!0)t=this.boolValue_.boolValue,this.boolValue_.hasBoolValue=!1;else{var r=this.trans.readByte();e=r.rsize,t=r.value==R.Types.CT_BOOLEAN_TRUE}return t};R.prototype.readByte=function(){return this.trans.readByte()};R.prototype.readI16=function(){return this.readI32()};R.prototype.readI32=function(){return this.zigzagToI32(this.readVarint32())};R.prototype.readI64=function(){return this.zigzagToI64(this.readVarint64())};R.prototype.readDouble=function(){var t=this.trans.read(8),e=0,r=t[e+7]&128,n=(t[e+6]&240)>>4;n+=(t[e+7]&127)<<4;var i=t[e];switch(i+=t[e+1]<<8,i+=t[e+2]<<16,i+=t[e+3]*e4,i+=t[e+4]*t4,i+=t[e+5]*r4,i+=(t[e+6]&15)*n4,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Kw,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};R.prototype.readBinary=function(){var t=this.readVarint32();if(t===0)return new Buffer(0);if(t<0)throw new Bt.TProtocolException(Bt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};R.prototype.readString=function(){var t=this.readVarint32();if(t===0)return"";if(t<0)throw new Bt.TProtocolException(Bt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};R.prototype.readVarint32=function(){return this.readVarint64().toNumber()};R.prototype.readVarint64=function(){for(var t=0,e=0,r=0,n=0;;){var i=this.trans.readByte();if(t++,n<=25?e=e|(i&127)<<n:25<n&&n<32?(e=e|(i&127)<<n,r=r|(i&127)>>>32-n):r=r|(i&127)<<n-32,n+=7,!(i&128))break;if(t>=10)throw new Bt.TProtocolException(Bt.TProtocolExceptionType.INVALID_DATA,"Variable-length int over 10 bytes.")}return new Fi(r,e)};R.prototype.zigzagToI32=function(t){return t>>>1^-1*(t&1)};R.prototype.zigzagToI64=function(t){var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=new Fi(e&0,r&1);n._2scomp();var i=n.buffer.readUInt32BE(0,!0),o=n.buffer.readUInt32BE(4,!0),f=e<<31;return e=e>>>1^i,r=(r>>>1|f)^o,new Fi(e,r)};R.prototype.skip=function(t){switch(t){case pt.BOOL:this.readBool();break;case pt.BYTE:this.readByte();break;case pt.I16:this.readI16();break;case pt.I32:this.readI32();break;case pt.I64:this.readI64();break;case pt.DOUBLE:this.readDouble();break;case pt.STRING:this.readString();break;case pt.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===pt.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case pt.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case pt.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case pt.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var Jw=k((eV,Tq)=>{var jq=Kc(),Gw=Cc(),_q=Ar(),Di=_o(),Or=Di.Type;Tq.exports=he;var qq=-65536,Zw=-2147418112,vq=255;he.VERSION_MASK=qq;he.VERSION_1=Zw;he.TYPE_MASK=vq;function he(t,e,r){this.trans=t,this.strictRead=e!==void 0?e:!1,this.strictWrite=r!==void 0?r:!0,this._seqid=null}he.prototype.flush=function(){return this.trans.flush()};he.prototype.writeMessageBegin=function(t,e,r){this.strictWrite?(this.writeI32(Zw|e),this.writeString(t),this.writeI32(r)):(this.writeString(t),this.writeByte(e),this.writeI32(r)),this._seqid!==null?jq.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};he.prototype.writeMessageEnd=function(){this._seqid!==null?this._seqid=null:jq.warning("No seqid to unset")};he.prototype.writeStructBegin=function(t){};he.prototype.writeStructEnd=function(){};he.prototype.writeFieldBegin=function(t,e,r){this.writeByte(e),this.writeI16(r)};he.prototype.writeFieldEnd=function(){};he.prototype.writeFieldStop=function(){this.writeByte(Or.STOP)};he.prototype.writeMapBegin=function(t,e,r){this.writeByte(t),this.writeByte(e),this.writeI32(r)};he.prototype.writeMapEnd=function(){};he.prototype.writeListBegin=function(t,e){this.writeByte(t),this.writeI32(e)};he.prototype.writeListEnd=function(){};he.prototype.writeSetBegin=function(t,e){this.writeByte(t),this.writeI32(e)};he.prototype.writeSetEnd=function(){};he.prototype.writeBool=function(t){t?this.writeByte(1):this.writeByte(0)};he.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};he.prototype.writeI16=function(t){this.trans.write(Gw.writeI16(new Buffer(2),t))};he.prototype.writeI32=function(t){this.trans.write(Gw.writeI32(new Buffer(4),t))};he.prototype.writeI64=function(t){t.buffer?this.trans.write(t.buffer):this.trans.write(new _q(t).buffer)};he.prototype.writeDouble=function(t){this.trans.write(Gw.writeDouble(new Buffer(8),t))};he.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeI32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeI32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};he.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};he.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};he.prototype.readMessageBegin=function(){var t=this.readI32(),e,r,n;if(t<0){var i=t&qq;if(i!=Zw)throw new Di.TProtocolException(Di.TProtocolExceptionType.BAD_VERSION,"Bad version in readMessageBegin: "+t);e=t&vq,r=this.readString(),n=this.readI32()}else{if(this.strictRead)throw new Di.TProtocolException(Di.TProtocolExceptionType.BAD_VERSION,"No protocol version header");r=this.trans.read(t),e=this.readByte(),n=this.readI32()}return{fname:r,mtype:e,rseqid:n}};he.prototype.readMessageEnd=function(){};he.prototype.readStructBegin=function(){return{fname:""}};he.prototype.readStructEnd=function(){};he.prototype.readFieldBegin=function(){var t=this.readByte();if(t==Or.STOP)return{fname:null,ftype:t,fid:0};var e=this.readI16();return{fname:null,ftype:t,fid:e}};he.prototype.readFieldEnd=function(){};he.prototype.readMapBegin=function(){var t=this.readByte(),e=this.readByte(),r=this.readI32();return{ktype:t,vtype:e,size:r}};he.prototype.readMapEnd=function(){};he.prototype.readListBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};he.prototype.readListEnd=function(){};he.prototype.readSetBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};he.prototype.readSetEnd=function(){};he.prototype.readBool=function(){var t=this.readByte();return t!==0};he.prototype.readByte=function(){return this.trans.readByte()};he.prototype.readI16=function(){return this.trans.readI16()};he.prototype.readI32=function(){return this.trans.readI32()};he.prototype.readI64=function(){var t=this.trans.read(8);return new _q(t)};he.prototype.readDouble=function(){return this.trans.readDouble()};he.prototype.readBinary=function(){var t=this.readI32();if(t===0)return new Buffer(0);if(t<0)throw new Di.TProtocolException(Di.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};he.prototype.readString=function(){var t=this.readI32();if(t===0)return"";if(t<0)throw new Di.TProtocolException(Di.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};he.prototype.getTransport=function(){return this.trans};he.prototype.skip=function(t){switch(t){case Or.BOOL:this.readBool();break;case Or.BYTE:this.readByte();break;case Or.I16:this.readI16();break;case Or.I32:this.readI32();break;case Or.I64:this.readI64();break;case Or.DOUBLE:this.readDouble();break;case Or.STRING:this.readString();break;case Or.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Or.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Or.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Or.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case Or.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var Qw=k((tV,Eq)=>{var o4=On(),Yc=Yw(),kq=Jw(),f4=vf();function nl(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}o4.inherits(nl,Error);Eq.exports=Pt;var s4=0,a4=1,l4=0,u4=32/8,c4=48/8,p4=64/8,d4=96/8,Bq=112/8,Iq=4095,xq=1,m4=1073741823;function Ni(t){var e=il();this.outputBuffer=null;var r=this;this.transport=new e(null,function(n){r.outputBuffer=n}),this.transport.inBuf=t||Buffer.alloc(0),this.transport.writeCursor=this.transport.inBuf.length,this.protocol=new Yc(this.transport)}Ni.prototype.readVarint32=function(){return this.protocol.readVarint32()};Ni.prototype.writeVarint32=function(t){this.protocol.writeVarint32(t)};Ni.prototype.readString=function(){return this.protocol.readString()};Ni.prototype.writeString=function(t){this.protocol.writeString(t)};Ni.prototype.getOutCount=function(){return this.transport.outCount};Ni.prototype.write=function(t){this.transport.write(t)};Ni.prototype.toBuffer=function(){return this.transport.flush(),this.outputBuffer};Pt.SubprotocolId={BINARY:0,JSON:1,COMPACT:2};function Pt(){this.maxFrameSize=m4,this.protocolId=Pt.SubprotocolId.BINARY,this.rheaders={},this.wheaders={},this.inBuf=Buffer.alloc(0),this.outCount=0,this.flags=null,this.seqid=0,this.shouldWriteHeaders=!0}var Sq=function(t,e){if(typeof t!="string"||typeof e!="string")throw new nl("Header key and values must be strings")},w4=function(t){for(var e=Object.keys(Pt.SubprotocolId),r=0;r<e.length;r++)if(t===Pt.SubprotocolId[e[r]])return!0;throw new Error(t+" is not a valid protocol id")};Pt.prototype.setSeqId=function(t){this.seqid=t};Pt.prototype.getSeqId=function(t){return this.seqid};Pt.prototype.setFlags=function(t){this.flags=t};Pt.prototype.getReadHeaders=function(){return this.rheaders};Pt.prototype.setReadHeader=function(t,e){Sq(t,e),this.rheaders[t]=e};Pt.prototype.clearReadHeaders=function(){this.rheaders={}};Pt.prototype.getWriteHeaders=function(){return this.wheaders};Pt.prototype.setWriteHeader=function(t,e){Sq(t,e),this.wheaders[t]=e};Pt.prototype.clearWriteHeaders=function(){this.wheaders={}};Pt.prototype.setMaxFrameSize=function(t){this.maxFrameSize=t};Pt.prototype.setProtocolId=function(t){w4(t),this.protocolId=t};Pt.prototype.getProtocolId=function(){return this.protocolId};var h4=function(t){var e=t.readInt32BE();return(e&kq.VERSION_MASK)===kq.VERSION_1},b4=function(t){var e=t.readInt8(s4),r=t.readInt8(a4);return e===Yc.PROTOCOL_ID&&(r&Yc.VERSION_MASK)===Yc.VERSION_N};Pt.prototype.readHeaders=function(){var t=this.inBuf,e=!1;if(h4(t)&&(this.setProtocolId(Pt.SubprotocolId.BINARY),e=!0),b4(t)&&(this.setProtocolId(Pt.SubprotocolId.COMPACT),e=!0),e){this.shouldWriteHeaders=!1;return}var r=t.readInt32BE(l4);if(r>this.maxFrameSize)throw new nl("Frame exceeds maximum frame size");var n=t.readInt16BE(u4);if(this.shouldWriteHeaders=n===Iq,!!this.shouldWriteHeaders){this.setFlags(t.readInt16BE(c4)),this.setSeqId(t.readInt32BE(p4));var i=t.readInt16BE(d4)*4,o=Bq+i;if(o>t.length)throw new nl("Header size is greater than frame size");var f=Buffer.alloc(i);t.copy(f,0,Bq,o);var s=new Ni(f);this.setProtocolId(s.readVarint32());var u=s.readVarint32();if(u>0)throw new nl("Transforms are not yet supported");for(;;)try{var l=s.readVarint32();if(l!==xq)break;for(var c=s.readVarint32(),w=0;w<c;w++){var p=s.readString(),b=s.readString();this.setReadHeader(p,b)}}catch(v){if(v instanceof f4)break;throw v}return this.read(o),this.getReadHeaders()}};Pt.prototype.writeHeaders=function(){if(!!this.shouldWriteHeaders){var t=this.getWriteHeaders(),e=new Ni;e.writeVarint32(this.protocolId),e.writeVarint32(0);var r=Object.keys(t);if(r.length>0){e.writeVarint32(xq),e.writeVarint32(r.length);for(var n=0;n<r.length;n++){var i=r[n],o=t[i];e.writeString(i),e.writeString(o)}}var f=e.getOutCount(),s=(4-f%4)%4,u=Buffer.alloc(2);u.writeInt16BE(Math.floor((f+s)/4));var l=Buffer.alloc(s);l.fill(0),e.write(l);var c=e.toBuffer(),w=Buffer.alloc(4);w.writeInt32BE(10+this.outCount+c.length);var p=Buffer.alloc(2);p.writeInt16BE(Iq);var b=Buffer.alloc(2);b.writeInt16BE(0);var v=Buffer.alloc(4);v.writeInt32BE(this.getSeqId());var H=Buffer.concat([w,p,b,v,u,c]);this.outBuffers.unshift(H),this.outCount+=H.length}}});var il=k((rV,Aq)=>{var Gc=Cc(),g4=vf(),y4=Qw();Aq.exports=It;function It(t,e){this.defaultReadBufferSize=1024,this.writeBufferSize=512,this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0,this.onFlush=e}It.prototype=new y4;It.prototype.reset=function(){this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0};It.receiver=function(t,e){var r=new It;return function(n){if(r.writeCursor+n.length>r.inBuf.length){var i=new Buffer(r.writeCursor+n.length);r.inBuf.copy(i,0,0,r.writeCursor),r.inBuf=i}n.copy(r.inBuf,r.writeCursor,0),r.writeCursor+=n.length,t(r,e)}};It.prototype.commitPosition=function(){var t=this.writeCursor-this.readCursor,e=t*2>this.defaultReadBufferSize?t*2:this.defaultReadBufferSize,r=new Buffer(e);t>0&&this.inBuf.copy(r,0,this.readCursor,this.writeCursor),this.readCursor=0,this.writeCursor=t,this.inBuf=r};It.prototype.rollbackPosition=function(){this.readCursor=0};It.prototype.isOpen=function(){return!0};It.prototype.open=function(){};It.prototype.close=function(){};It.prototype.setCurrSeqId=function(t){this._seqid=t};It.prototype.ensureAvailable=function(t){if(this.readCursor+t>this.writeCursor)throw new g4};It.prototype.read=function(t){this.ensureAvailable(t);var e=new Buffer(t);return this.inBuf.copy(e,0,this.readCursor,this.readCursor+t),this.readCursor+=t,e};It.prototype.readByte=function(){return this.ensureAvailable(1),Gc.readByte(this.inBuf[this.readCursor++])};It.prototype.readI16=function(){this.ensureAvailable(2);var t=Gc.readI16(this.inBuf,this.readCursor);return this.readCursor+=2,t};It.prototype.readI32=function(){this.ensureAvailable(4);var t=Gc.readI32(this.inBuf,this.readCursor);return this.readCursor+=4,t};It.prototype.readDouble=function(){this.ensureAvailable(8);var t=Gc.readDouble(this.inBuf,this.readCursor);return this.readCursor+=8,t};It.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readCursor,this.readCursor+t);return this.readCursor+=t,e};It.prototype.borrow=function(){var t={buf:this.inBuf,readIndex:this.readCursor,writeIndex:this.writeCursor};return t};It.prototype.consume=function(t){this.readCursor+=t};It.prototype.write=function(t){typeof t=="string"&&(t=new Buffer(t,"utf8")),this.outBuffers.push(t),this.outCount+=t.length};It.prototype.flush=function(){var t=this._seqid;if(this._seqid=null,!(this.outCount<1)){var e=new Buffer(this.outCount),r=0;this.outBuffers.forEach(function(n){n.copy(e,r,0),r+=n.length}),this.onFlush&&this.onFlush(e,t),this.outBuffers=[],this.outCount=0}}});var $w=k((nV,Pq)=>{var Oq=Ar(),Fq=Pq.exports={},j4=Math.pow(2,24),Dq=Math.pow(2,31),Xw=Math.pow(2,32),Nq=Math.pow(10,11);Fq.toDecimalString=function(t){var e=t.buffer,r=t.offset;if(!e[r]&&!(e[r+1]&224)||!~e[r]&&!~(e[r+1]&224))return t.toString();var n=e[r]&128;if(n){for(var i=!1,o=new Buffer(8),f=7;f>=0;--f)o[f]=~e[r+f]+(i?0:1)&255,i|=e[r+f];e=o}var s=e[r+1]+(e[r]<<8),u=e[r+7]+(e[r+6]<<8)+(e[r+5]<<16)+e[r+4]*j4+(e[r+3]+(e[r+2]<<8))*Xw+s*74976710656,l=Math.floor(u/Nq)+s*2814;return u=("00000000000"+String(u%Nq)).slice(-11),(n?"-":"")+String(l)+u};Fq.fromDecimalString=function(t){var e=t.charAt(0)==="-";if(t.length<(e?17:16))return new Oq(+t);if(t.length>(e?20:19))throw new RangeError("Too many digits for Int64: "+t);var r=+t.slice(e?1:0,-15),n=+t.slice(-15)+r*2764472320,i=Math.floor(n/Xw)+r*232830;if(n=n%Xw,i>=Dq&&!(e&&i==Dq&&n==0))throw new RangeError("The magnitude is too large for Int64.");return e&&(i=~i,n===0?i=i+1&4294967295:n=~n+1,i=2147483648|i),new Oq(i,n)}});var Uq=k((fV,Hq)=>{var Rq=Ar(),iV=$w(),oV=Hq.exports=function(){"use strict";var t,e,r={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:`
11
- `,r:"\r",t:" "},n,i=function(b){throw new SyntaxError(b)},o=function(b){return b&&b!==e&&i("Expected '"+b+"' instead of '"+e+"'"),e=n.charAt(t),t+=1,e},f=function(){var b,v="";for(e==="-"&&(v="-",o("-"));e>="0"&&e<="9";)v+=e,o();if(e===".")for(v+=".";o()&&e>="0"&&e<="9";)v+=e;if(e==="e"||e==="E")for(v+=e,o(),(e==="-"||e==="+")&&(v+=e,o());e>="0"&&e<="9";)v+=e,o();if(b=+v,!isFinite(b))i("Bad number");else return b>=Rq.MAX_INT||b<=Rq.MIN_INT?v:b},s=function(){var b,v,H="",O;if(e==='"')for(;o();){if(e==='"')return o(),H;if(e==="\\")if(o(),e==="u"){for(O=0,v=0;v<4&&(b=parseInt(o(),16),!!isFinite(b));v+=1)O=O*16+b;H+=String.fromCharCode(O)}else if(typeof r[e]=="string")H+=r[e];else break;else H+=e}i("Bad string")},u=function(){for(;e&&e<=" ";)o()},l=function(){switch(e){case"t":return o("t"),o("r"),o("u"),o("e"),!0;case"f":return o("f"),o("a"),o("l"),o("s"),o("e"),!1;case"n":return o("n"),o("u"),o("l"),o("l"),null}i("Unexpected '"+e+"'")},c,w=function(){var b=[];if(e==="["){if(o("["),u(),e==="]")return o("]"),b;for(;e;){if(b.push(c()),u(),e==="]")return o("]"),b;o(","),u()}}i("Bad array")},p=function(){var b,v={};if(e==="{"){if(o("{"),u(),e==="}")return o("}"),v;for(;e;){if(b=s(),u(),o(":"),Object.hasOwnProperty.call(v,b)&&i('Duplicate key "'+b+'"'),v[b]=c(),u(),e==="}")return o("}"),v;o(","),u()}}i("Bad object")};return c=function(){switch(u(),e){case"{":return p();case"[":return w();case'"':return s();case"-":return f();default:return e>="0"&&e<="9"?f():l()}},function(b){var v;return n=b,t=0,e=" ",v=c(),u(),e&&i("Syntax error"),v}}()});var ol=k((aV,Lq)=>{var eh=Ar(),_4=_o(),We=_4.Type,sV=On(),Mq=$w(),q4=Uq(),zq=vf();Lq.exports=Z;function Z(t){this.tstack=[],this.tpos=[],this.trans=t}Z.Type={};Z.Type[We.BOOL]='"tf"';Z.Type[We.BYTE]='"i8"';Z.Type[We.I16]='"i16"';Z.Type[We.I32]='"i32"';Z.Type[We.I64]='"i64"';Z.Type[We.DOUBLE]='"dbl"';Z.Type[We.STRUCT]='"rec"';Z.Type[We.STRING]='"str"';Z.Type[We.MAP]='"map"';Z.Type[We.LIST]='"lst"';Z.Type[We.SET]='"set"';Z.RType={};Z.RType.tf=We.BOOL;Z.RType.i8=We.BYTE;Z.RType.i16=We.I16;Z.RType.i32=We.I32;Z.RType.i64=We.I64;Z.RType.dbl=We.DOUBLE;Z.RType.rec=We.STRUCT;Z.RType.str=We.STRING;Z.RType.map=We.MAP;Z.RType.lst=We.LIST;Z.RType.set=We.SET;Z.Version=1;Z.prototype.flush=function(){return this.writeToTransportIfStackIsFlushable(),this.trans.flush()};Z.prototype.writeToTransportIfStackIsFlushable=function(){this.tstack.length===1&&this.trans.write(this.tstack.pop())};Z.prototype.writeMessageBegin=function(t,e,r){this.tstack.push([Z.Version,'"'+t+'"',e,r])};Z.prototype.writeMessageEnd=function(){var t=this.tstack.pop();this.wobj=this.tstack.pop(),this.wobj.push(t),this.wbuf="["+this.wobj.join(",")+"]",this.trans.write(this.wbuf)};Z.prototype.writeStructBegin=function(t){this.tpos.push(this.tstack.length),this.tstack.push({})};Z.prototype.writeStructEnd=function(){var t=this.tpos.pop(),e=this.tstack[t],r="{",n=!0;for(var i in e)n?n=!1:r+=",",r+=i+":"+e[i];r+="}",this.tstack[t]=r,this.writeToTransportIfStackIsFlushable()};Z.prototype.writeFieldBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push({fieldId:'"'+r+'"',fieldType:Z.Type[e]})};Z.prototype.writeFieldEnd=function(){var t=this.tstack.pop(),e=this.tstack.pop();":"+t==":[object Object]"?this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+JSON.stringify(t)+"}":this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+t+"}",this.tpos.pop(),this.writeToTransportIfStackIsFlushable()};Z.prototype.writeFieldStop=function(){};Z.prototype.writeMapBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push([Z.Type[t],Z.Type[e],0])};Z.prototype.writeMapEnd=function(){var t=this.tpos.pop();if(t!=this.tstack.length){(this.tstack.length-t-1)%2!=0&&this.tstack.push("");var e=(this.tstack.length-t-1)/2;this.tstack[t][this.tstack[t].length-1]=e;for(var r="}",n=!0;this.tstack.length>t+1;){var i=this.tstack.pop(),o=this.tstack.pop();n?n=!1:r=","+r,isNaN(o)||(o='"'+o+'"'),r=o+":"+i+r}r="{"+r,this.tstack[t].push(r),this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()}};Z.prototype.writeListBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Z.Type[t],e])};Z.prototype.writeListEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};Z.prototype.writeSetBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Z.Type[t],e])};Z.prototype.writeSetEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};Z.prototype.writeBool=function(t){this.tstack.push(t?1:0)};Z.prototype.writeByte=function(t){this.tstack.push(t)};Z.prototype.writeI16=function(t){this.tstack.push(t)};Z.prototype.writeI32=function(t){this.tstack.push(t)};Z.prototype.writeI64=function(t){t instanceof eh?this.tstack.push(Mq.toDecimalString(t)):this.tstack.push(t)};Z.prototype.writeDouble=function(t){this.tstack.push(t)};Z.prototype.writeString=function(t){if(t===null)this.tstack.push(null);else{if(typeof t=="string")var e=t;else if(t instanceof Buffer)var e=t.toString("utf8");else throw new Error("writeString called without a string/Buffer argument: "+t);for(var r="",n=0;n<e.length;n++){var i=e.charAt(n);i==='"'?r+='\\"':i==="\\"?r+="\\\\":i==="\b"?r+="\\b":i==="\f"?r+="\\f":i===`
12
- `?r+="\\n":i==="\r"?r+="\\r":i===" "?r+="\\t":r+=i}this.tstack.push('"'+r+'"')}};Z.prototype.writeBinary=function(t){if(typeof t=="string")var e=new Buffer(t,"binary");else if(t instanceof Buffer||Object.prototype.toString.call(t)=="[object Uint8Array]")var e=t;else throw new Error("writeBinary called without a string/Buffer argument: "+t);this.tstack.push('"'+e.toString("base64")+'"')};Z.prototype.readMessageBegin=function(){this.rstack=[],this.rpos=[];var t=this.trans.borrow();if(t.readIndex>=t.writeIndex)throw new zq;var e=t.readIndex;if(t.buf[e]!==91)throw new Error("Malformed JSON input, no opening bracket");e++;for(var r=1,n=!1;e<t.writeIndex;e++){var i=t.buf[e];if(n)i===34?n=!1:i===92&&(e+=1);else if(i===91)r+=1;else if(i===93){if(r-=1,r===0)break}else i===34&&(n=!0)}if(r!==0)throw new zq;this.robj=q4(t.buf.slice(t.readIndex,e+1).toString()),this.trans.consume(e+1-t.readIndex);var o=this.robj.shift();if(o!=Z.Version)throw new Error("Wrong thrift protocol version: "+o);var f={};return f.fname=this.robj.shift(),f.mtype=this.robj.shift(),f.rseqid=this.robj.shift(),this.rstack.push(this.robj.shift()),f};Z.prototype.readMessageEnd=function(){};Z.prototype.readStructBegin=function(){var t={};return t.fname="",this.rstack[this.rstack.length-1]instanceof Array&&this.rstack.push(this.rstack[this.rstack.length-1].shift()),t};Z.prototype.readStructEnd=function(){this.rstack.pop()};Z.prototype.readFieldBegin=function(){var t={},e=-1,r=We.STOP;for(var n in this.rstack[this.rstack.length-1])if(n!==null){e=parseInt(n,10),this.rpos.push(this.rstack.length);var i=this.rstack[this.rstack.length-1][e];delete this.rstack[this.rstack.length-1][e],this.rstack.push(i);break}if(e!=-1)for(var o in this.rstack[this.rstack.length-1])Z.RType[o]!==null&&(r=Z.RType[o],this.rstack[this.rstack.length-1]=this.rstack[this.rstack.length-1][o]);return t.fname="",t.ftype=r,t.fid=e,t};Z.prototype.readFieldEnd=function(){for(var t=this.rpos.pop();this.rstack.length>t;)this.rstack.pop()};Z.prototype.readMapBegin=function(){var t=this.rstack.pop(),e=t.shift();e instanceof Array&&(this.rstack.push(t),t=e,e=t.shift());var r={};return r.ktype=Z.RType[e],r.vtype=Z.RType[t.shift()],r.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),r};Z.prototype.readMapEnd=function(){this.readFieldEnd()};Z.prototype.readListBegin=function(){var t=this.rstack[this.rstack.length-1],e={};return e.etype=Z.RType[t.shift()],e.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),e};Z.prototype.readListEnd=function(){var t=this.rpos.pop()-2,e=this.rstack;e.pop(),e instanceof Array&&e.length>t&&e[t].length>0&&e.push(e[t].shift())};Z.prototype.readSetBegin=function(){return this.readListBegin()};Z.prototype.readSetEnd=function(){return this.readListEnd()};Z.prototype.readBool=function(){return this.readValue()=="1"};Z.prototype.readByte=function(){return this.readI32()};Z.prototype.readI16=function(){return this.readI32()};Z.prototype.readI32=function(t){return+this.readValue()};Z.prototype.readValue=function(t){t===void 0&&(t=this.rstack[this.rstack.length-1]);var e={};if(t instanceof Array)t.length===0?e.value=void 0:e.value=t.shift();else if(!(t instanceof eh)&&t instanceof Object){for(var r in t)if(r!==null){this.rstack.push(t[r]),delete t[r],e.value=r;break}}else e.value=t,this.rstack.pop();return e.value};Z.prototype.readI64=function(){var t=this.readValue();return typeof t=="string"?Mq.fromDecimalString(t):new eh(t)};Z.prototype.readDouble=function(){return this.readI32()};Z.prototype.readBinary=function(){return new Buffer(this.readValue(),"base64")};Z.prototype.readString=function(){return this.readValue()};Z.prototype.getTransport=function(){return this.trans};Z.prototype.skip=function(t){switch(t){case We.BOOL:this.readBool();break;case We.BYTE:this.readByte();break;case We.I16:this.readI16();break;case We.I32:this.readI32();break;case We.I64:this.readI64();break;case We.DOUBLE:this.readDouble();break;case We.STRING:this.readString();break;case We.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===We.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case We.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case We.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case We.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var th=k((lV,Vq)=>{Vq.exports=v4;function v4(t,e){t.Client&&(t=t.Client);var r=function(o,f){e.write(o,f)},n=new e.transport(void 0,r),i=new t(n,e.protocol);return n.client=i,e.client=i,i}});var Cq=k(vs=>{"use strict";Object.defineProperty(vs,"__esModule",{value:!0});var T4=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},k4=typeof window!="undefined"&&typeof window.document!="undefined",B4=(typeof self=="undefined"?"undefined":T4(self))==="object"&&self.constructor&&self.constructor.name==="DedicatedWorkerGlobalScope",I4=typeof process!="undefined"&&process.versions!=null&&process.versions.node!=null,x4=function(){return typeof window!="undefined"&&window.name==="nodejs"||navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")};vs.isBrowser=k4;vs.isWebWorker=B4;vs.isNode=I4;vs.isJsDom=x4});var Gq=k(Zc=>{var S4=On(),Wq=nq(),Kq=Rw().EventEmitter,Yq=_o(),E4=il(),A4=ol(),O4=vf(),F4=th(),D4=Cq();Zc.WSConnection=_r;function _r(t,e,r){Kq.call(this),this.options=r||{},this.host=t,this.port=e,this.secure=this.options.secure||!1,this.transport=this.options.transport||E4,this.protocol=this.options.protocol||A4,this.path=this.options.path,this.send_pending=[],this.seqId2Service={},this.wsOptions={host:this.host,port:this.port||80,path:this.options.path||"/",headers:this.options.headers||{}};for(var n in this.options.wsOptions)this.wsOptions[n]=this.options.wsOptions[n]}S4.inherits(_r,Kq);_r.prototype.__reset=function(){this.socket=null,this.send_pending=[]};_r.prototype.__onOpen=function(){this.emit("open"),this.send_pending.length>0&&(this.send_pending.forEach(function(t){this.socket.send(t)},this),this.send_pending=[])};_r.prototype.__onClose=function(t){this.emit("close"),this.__reset()};_r.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,o=this.seqId2Service[r.rseqid];o&&(i=this.client[o],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(f,s){t.commitPosition();var u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(f,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new Yq.TApplicationException(Yq.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(f){if(f instanceof O4)t.rollbackPosition();else throw f}};_r.prototype.__onData=function(t){Object.prototype.toString.call(t)==="[object ArrayBuffer]"&&(t=new Uint8Array(t));var e=new Buffer(t);this.transport.receiver(this.__decodeCallback.bind(this))(e)};_r.prototype.__onMessage=function(t){this.__onData(t.data)};_r.prototype.__onError=function(t){this.emit("error",t),this.socket.close()};_r.prototype.isOpen=function(){return this.socket&&this.socket.readyState===this.socket.OPEN};_r.prototype.open=function(){this.socket&&this.socket.readyState!==this.socket.CLOSED||(D4.isBrowser?this.socket=new Wq(this.uri()):this.socket=new Wq(this.uri(),"",this.wsOptions),this.socket.binaryType="arraybuffer",this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};_r.prototype.close=function(){this.socket.close()};_r.prototype.uri=function(){var t=this.secure?"wss":"ws",e="",r=this.path||"/",n=this.host;return this.port&&(t==="wss"&&this.port!==443||t==="ws"&&this.port!==80)&&(e=":"+this.port),t+"://"+n+e+r};_r.prototype.write=function(t){this.isOpen()?this.socket.send(t):this.send_pending.push(t)};Zc.createWSConnection=function(t,e,r){return new _r(t,e,r)};Zc.createWSClient=F4});var Jq=k(Jc=>{var N4=On(),P4=Rw().EventEmitter,Zq=_o(),R4=il(),H4=ol(),U4=vf(),M4=th();Jc.XHRConnection=Fr;function Fr(t,e,r){this.options=r||{},this.wpos=0,this.rpos=0,this.useCORS=r&&r.useCORS,this.send_buf="",this.recv_buf="",this.transport=r.transport||R4,this.protocol=r.protocol||H4,this.headers=r.headers||{},t=t||window.location.host,e=e||window.location.port;var n=r.https?"https://":"http://",i=r.path||"/";e===""&&(e=void 0),!e||e===80||e==="80"?this.url=n+t+i:this.url=n+t+":"+e+i,this.seqId2Service={}}N4.inherits(Fr,P4);Fr.prototype.getXmlHttpRequestObject=function(){try{return new XMLHttpRequest}catch{}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch{}try{return new ActiveXObject("Microsoft.XMLHTTP")}catch{}throw"Your browser doesn't support XHR."};Fr.prototype.flush=function(){var t=this;if(this.url===void 0||this.url==="")return this.send_buf;var e=this.getXmlHttpRequestObject();e.overrideMimeType&&e.overrideMimeType("application/json"),e.onreadystatechange=function(){this.readyState==4&&this.status==200&&t.setRecvBuffer(this.responseText)},e.open("POST",this.url,!0),Object.keys(this.headers).forEach(function(r){e.setRequestHeader(r,t.headers[r])}),e.send(this.send_buf)};Fr.prototype.setRecvBuffer=function(t){if(this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0,Object.prototype.toString.call(t)=="[object ArrayBuffer]")var e=new Uint8Array(t);var r=new Buffer(e||t);this.transport.receiver(this.__decodeCallback.bind(this))(r)};Fr.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,o=this.seqId2Service[r.rseqid];o&&(i=this.client[o],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(f,s){t.commitPosition();var u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(f,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new Zq.TApplicationException(Zq.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(f){if(f instanceof U4)t.rollbackPosition();else throw f}};Fr.prototype.isOpen=function(){return!0};Fr.prototype.open=function(){};Fr.prototype.close=function(){};Fr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};Fr.prototype.readAll=function(){return this.recv_buf};Fr.prototype.write=function(t){this.send_buf=t,this.flush()};Fr.prototype.getSendBuffer=function(){return this.send_buf};Jc.createXHRConnection=function(t,e,r){return new Fr(t,e,r)};Jc.createXHRClient=M4});var Xq=k((Qq,rh)=>{(function(t){"use strict";if(typeof bootstrap=="function")bootstrap("promise",t);else if(typeof Qq=="object"&&typeof rh=="object")rh.exports=t();else if(typeof define=="function"&&define.amd)define(t);else if(typeof ses!="undefined")if(ses.ok())ses.makeQ=t;else return;else if(typeof window!="undefined"||typeof self!="undefined"){var e=typeof window!="undefined"?window:self,r=e.Q;e.Q=t(),e.Q.noConflict=function(){return e.Q=r,this}}else throw new Error("This environment was not anticipated by Q. Please file a bug.")})(function(){"use strict";var t=!1;try{throw new Error}catch(h){t=!!h.stack}var e=de(),r,n=function(){},i=function(){var h={task:void 0,next:null},y=h,I=!1,L=void 0,me=!1,Ee=[];function be(){for(var ct,Nt;h.next;)h=h.next,ct=h.task,h.task=void 0,Nt=h.domain,Nt&&(h.domain=void 0,Nt.enter()),lt(ct,Nt);for(;Ee.length;)ct=Ee.pop(),lt(ct);I=!1}function lt(ct,Nt){try{ct()}catch(wo){if(me)throw Nt&&Nt.exit(),setTimeout(be,0),Nt&&Nt.enter(),wo;setTimeout(function(){throw wo},0)}Nt&&Nt.exit()}if(i=function(ct){y=y.next={task:ct,domain:me&&process.domain,next:null},I||(I=!0,L())},typeof process=="object"&&process.toString()==="[object process]"&&process.nextTick)me=!0,L=function(){process.nextTick(be)};else if(typeof setImmediate=="function")typeof window!="undefined"?L=setImmediate.bind(window,be):L=function(){setImmediate(be)};else if(typeof MessageChannel!="undefined"){var rt=new MessageChannel;rt.port1.onmessage=function(){L=ut,rt.port1.onmessage=be,be()};var ut=function(){rt.port2.postMessage(0)};L=function(){setTimeout(be,0),ut()}}else L=function(){setTimeout(be,0)};return i.runAfter=function(ct){Ee.push(ct),I||(I=!0,L())},i}(),o=Function.call;function f(h){return function(){return o.apply(h,arguments)}}var s=f(Array.prototype.slice),u=f(Array.prototype.reduce||function(h,y){var I=0,L=this.length;if(arguments.length===1)do{if(I in this){y=this[I++];break}if(++I>=L)throw new TypeError}while(1);for(;I<L;I++)I in this&&(y=h(y,this[I],I));return y}),l=f(Array.prototype.indexOf||function(h){for(var y=0;y<this.length;y++)if(this[y]===h)return y;return-1}),c=f(Array.prototype.map||function(h,y){var I=this,L=[];return u(I,function(me,Ee,be){L.push(h.call(y,Ee,be,I))},void 0),L}),w=Object.create||function(h){function y(){}return y.prototype=h,new y},p=Object.defineProperty||function(h,y,I){return h[y]=I.value,h},b=f(Object.prototype.hasOwnProperty),v=Object.keys||function(h){var y=[];for(var I in h)b(h,I)&&y.push(I);return y},H=f(Object.prototype.toString);function O(h){return h===Object(h)}function W(h){return H(h)==="[object StopIteration]"||h instanceof ne}var ne;typeof ReturnValue!="undefined"?ne=ReturnValue:ne=function(h){this.value=h};var U="From previous event:";function M(h,y){if(t&&y.stack&&typeof h=="object"&&h!==null&&h.stack){for(var I=[],L=y;L;L=L.source)L.stack&&(!h.__minimumStackCounter__||h.__minimumStackCounter__>L.stackCounter)&&(p(h,"__minimumStackCounter__",{value:L.stackCounter,configurable:!0}),I.unshift(L.stack));I.unshift(h.stack);var me=I.join(`
13
- `+U+`
14
- `),Ee=P(me);p(h,"stack",{value:Ee,configurable:!0})}}function P(h){for(var y=h.split(`
15
- `),I=[],L=0;L<y.length;++L){var me=y[L];!ie(me)&&!F(me)&&me&&I.push(me)}return I.join(`
16
- `)}function F(h){return h.indexOf("(module.js:")!==-1||h.indexOf("(node.js:")!==-1}function ae(h){var y=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(h);if(y)return[y[1],Number(y[2])];var I=/at ([^ ]+):(\d+):(?:\d+)$/.exec(h);if(I)return[I[1],Number(I[2])];var L=/.*@(.+):(\d+)$/.exec(h);if(L)return[L[1],Number(L[2])]}function ie(h){var y=ae(h);if(!y)return!1;var I=y[0],L=y[1];return I===r&&L>=e&&L<=ws}function de(){if(!!t)try{throw new Error}catch(L){var h=L.stack.split(`
17
- `),y=h[0].indexOf("@")>0?h[1]:h[2],I=ae(y);return I?(r=I[0],I[1]):void 0}}function Ze(h,y,I){return function(){return typeof console!="undefined"&&typeof console.warn=="function"&&console.warn(y+" is deprecated, use "+I+" instead.",new Error("").stack),h.apply(h,arguments)}}function _(h){return h instanceof te?h:xi(h)?Za(h):yf(h)}_.resolve=_,_.nextTick=i,_.longStackSupport=!1;var Fe=1;typeof process=="object"&&process&&process.env&&process.env.Q_DEBUG&&(_.longStackSupport=!0),_.defer=Ce;function Ce(){var h=[],y=[],I,L=w(Ce.prototype),me=w(te.prototype);if(me.promiseDispatch=function(be,lt,rt){var ut=s(arguments);h?(h.push(ut),lt==="when"&&rt[1]&&y.push(rt[1])):_.nextTick(function(){I.promiseDispatch.apply(I,ut)})},me.valueOf=function(){if(h)return me;var be=st(I);return Sr(be)&&(I=be),be},me.inspect=function(){return I?I.inspect():{state:"pending"}},_.longStackSupport&&t)try{throw new Error}catch(be){me.stack=be.stack.substring(be.stack.indexOf(`
18
- `)+1),me.stackCounter=Fe++}function Ee(be){I=be,_.longStackSupport&&t&&(me.source=be),u(h,function(lt,rt){_.nextTick(function(){be.promiseDispatch.apply(be,rt)})},void 0),h=void 0,y=void 0}return L.promise=me,L.resolve=function(be){I||Ee(_(be))},L.fulfill=function(be){I||Ee(yf(be))},L.reject=function(be){I||Ee(jr(be))},L.notify=function(be){I||u(y,function(lt,rt){_.nextTick(function(){rt(be)})},void 0)},L}Ce.prototype.makeNodeResolver=function(){var h=this;return function(y,I){y?h.reject(y):arguments.length>2?h.resolve(s(arguments,1)):h.resolve(I)}},_.Promise=ge,_.promise=ge;function ge(h){if(typeof h!="function")throw new TypeError("resolver must be a function.");var y=Ce();try{h(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}return y.promise}ge.race=Je,ge.all=mo,ge.reject=jr,ge.resolve=_,_.passByCopy=function(h){return h},te.prototype.passByCopy=function(){return this},_.join=function(h,y){return _(h).join(y)},te.prototype.join=function(h){return _([this,h]).spread(function(y,I){if(y===I)return y;throw new Error("Q can't join: not the same: "+y+" "+I)})},_.race=Je;function Je(h){return ge(function(y,I){for(var L=0,me=h.length;L<me;L++)_(h[L]).then(y,I)})}te.prototype.race=function(){return this.then(_.race)},_.makePromise=te;function te(h,y,I){y===void 0&&(y=function(Ee){return jr(new Error("Promise does not support operation: "+Ee))}),I===void 0&&(I=function(){return{state:"unknown"}});var L=w(te.prototype);if(L.promiseDispatch=function(Ee,be,lt){var rt;try{h[be]?rt=h[be].apply(L,lt):rt=y.call(L,be,lt)}catch(ut){rt=jr(ut)}Ee&&Ee(rt)},L.inspect=I,I){var me=I();me.state==="rejected"&&(L.exception=me.reason),L.valueOf=function(){var Ee=I();return Ee.state==="pending"||Ee.state==="rejected"?L:Ee.value}}return L}te.prototype.toString=function(){return"[object Promise]"},te.prototype.then=function(h,y,I){var L=this,me=Ce(),Ee=!1;function be(ut){try{return typeof h=="function"?h(ut):ut}catch(ct){return jr(ct)}}function lt(ut){if(typeof y=="function"){M(ut,L);try{return y(ut)}catch(ct){return jr(ct)}}return jr(ut)}function rt(ut){return typeof I=="function"?I(ut):ut}return _.nextTick(function(){L.promiseDispatch(function(ut){Ee||(Ee=!0,me.resolve(be(ut)))},"when",[function(ut){Ee||(Ee=!0,me.resolve(lt(ut)))}])}),L.promiseDispatch(void 0,"when",[void 0,function(ut){var ct,Nt=!1;try{ct=rt(ut)}catch(wo){if(Nt=!0,_.onerror)_.onerror(wo);else throw wo}Nt||me.notify(ct)}]),me.promise},_.tap=function(h,y){return _(h).tap(y)},te.prototype.tap=function(h){return h=_(h),this.then(function(y){return h.fcall(y).thenResolve(y)})},_.when=kt;function kt(h,y,I,L){return _(h).then(y,I,L)}te.prototype.thenResolve=function(h){return this.then(function(){return h})},_.thenResolve=function(h,y){return _(h).thenResolve(y)},te.prototype.thenReject=function(h){return this.then(function(){throw h})},_.thenReject=function(h,y){return _(h).thenReject(y)},_.nearer=st;function st(h){if(Sr(h)){var y=h.inspect();if(y.state==="fulfilled")return y.value}return h}_.isPromise=Sr;function Sr(h){return h instanceof te}_.isPromiseAlike=xi;function xi(h){return O(h)&&typeof h.then=="function"}_.isPending=bf;function bf(h){return Sr(h)&&h.inspect().state==="pending"}te.prototype.isPending=function(){return this.inspect().state==="pending"},_.isFulfilled=gf;function gf(h){return!Sr(h)||h.inspect().state==="fulfilled"}te.prototype.isFulfilled=function(){return this.inspect().state==="fulfilled"},_.isRejected=En;function En(h){return Sr(h)&&h.inspect().state==="rejected"}te.prototype.isRejected=function(){return this.inspect().state==="rejected"};var Cr=[],Zt=[],Si=[],An=!0;function C(){Cr.length=0,Zt.length=0,An||(An=!0)}function cs(h,y){!An||(typeof process=="object"&&typeof process.emit=="function"&&_.nextTick.runAfter(function(){l(Zt,h)!==-1&&(process.emit("unhandledRejection",y,h),Si.push(h))}),Zt.push(h),y&&typeof y.stack!="undefined"?Cr.push(y.stack):Cr.push("(no stack) "+y))}function ps(h){if(!!An){var y=l(Zt,h);y!==-1&&(typeof process=="object"&&typeof process.emit=="function"&&_.nextTick.runAfter(function(){var I=l(Si,h);I!==-1&&(process.emit("rejectionHandled",Cr[y],h),Si.splice(I,1))}),Zt.splice(y,1),Cr.splice(y,1))}}_.resetUnhandledRejections=C,_.getUnhandledReasons=function(){return Cr.slice()},_.stopUnhandledRejectionTracking=function(){C(),An=!1},C(),_.reject=jr;function jr(h){var y=te({when:function(I){return I&&ps(this),I?I(h):this}},function(){return this},function(){return{state:"rejected",reason:h}});return cs(y,h),y}_.fulfill=yf;function yf(h){return te({when:function(){return h},get:function(y){return h[y]},set:function(y,I){h[y]=I},delete:function(y){delete h[y]},post:function(y,I){return y==null?h.apply(void 0,I):h[y].apply(h,I)},apply:function(y,I){return h.apply(y,I)},keys:function(){return v(h)}},void 0,function(){return{state:"fulfilled",value:h}})}function Za(h){var y=Ce();return _.nextTick(function(){try{h.then(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}}),y.promise}_.master=jw;function jw(h){return te({isDef:function(){}},function(I,L){return Ja(h,I,L)},function(){return _(h).inspect()})}_.spread=_c;function _c(h,y,I){return _(h).spread(y,I)}te.prototype.spread=function(h,y){return this.all().then(function(I){return h.apply(void 0,I)},y)},_.async=ds;function ds(h){return function(){function y(Ee,be){var lt;if(typeof StopIteration=="undefined"){try{lt=I[Ee](be)}catch(rt){return jr(rt)}return lt.done?_(lt.value):kt(lt.value,L,me)}else{try{lt=I[Ee](be)}catch(rt){return W(rt)?_(rt.value):jr(rt)}return kt(lt,L,me)}}var I=h.apply(this,arguments),L=y.bind(y,"next"),me=y.bind(y,"throw");return L()}}_.spawn=_w;function _w(h){_.done(_.async(h)())}_.return=qw;function qw(h){throw new ne(h)}_.promised=qc;function qc(h){return function(){return _c([this,mo(arguments)],function(y,I){return h.apply(y,I)})}}_.dispatch=Ja;function Ja(h,y,I){return _(h).dispatch(y,I)}te.prototype.dispatch=function(h,y){var I=this,L=Ce();return _.nextTick(function(){I.promiseDispatch(L.resolve,h,y)}),L.promise},_.get=function(h,y){return _(h).dispatch("get",[y])},te.prototype.get=function(h){return this.dispatch("get",[h])},_.set=function(h,y,I){return _(h).dispatch("set",[y,I])},te.prototype.set=function(h,y){return this.dispatch("set",[h,y])},_.del=_.delete=function(h,y){return _(h).dispatch("delete",[y])},te.prototype.del=te.prototype.delete=function(h){return this.dispatch("delete",[h])},_.mapply=_.post=function(h,y,I){return _(h).dispatch("post",[y,I])},te.prototype.mapply=te.prototype.post=function(h,y){return this.dispatch("post",[h,y])},_.send=_.mcall=_.invoke=function(h,y){return _(h).dispatch("post",[y,s(arguments,2)])},te.prototype.send=te.prototype.mcall=te.prototype.invoke=function(h){return this.dispatch("post",[h,s(arguments,1)])},_.fapply=function(h,y){return _(h).dispatch("apply",[void 0,y])},te.prototype.fapply=function(h){return this.dispatch("apply",[void 0,h])},_.try=_.fcall=function(h){return _(h).dispatch("apply",[void 0,s(arguments,1)])},te.prototype.fcall=function(){return this.dispatch("apply",[void 0,s(arguments)])},_.fbind=function(h){var y=_(h),I=s(arguments,1);return function(){return y.dispatch("apply",[this,I.concat(s(arguments))])}},te.prototype.fbind=function(){var h=this,y=s(arguments);return function(){return h.dispatch("apply",[this,y.concat(s(arguments))])}},_.keys=function(h){return _(h).dispatch("keys",[])},te.prototype.keys=function(){return this.dispatch("keys",[])},_.all=mo;function mo(h){return kt(h,function(y){var I=0,L=Ce();return u(y,function(me,Ee,be){var lt;Sr(Ee)&&(lt=Ee.inspect()).state==="fulfilled"?y[be]=lt.value:(++I,kt(Ee,function(rt){y[be]=rt,--I==0&&L.resolve(y)},L.reject,function(rt){L.notify({index:be,value:rt})}))},void 0),I===0&&L.resolve(y),L.promise})}te.prototype.all=function(){return mo(this)},_.any=ms;function ms(h){if(h.length===0)return _.resolve();var y=_.defer(),I=0;return u(h,function(L,me,Ee){var be=h[Ee];I++,kt(be,lt,rt,ut);function lt(ct){y.resolve(ct)}function rt(ct){if(I--,I===0){var Nt=ct||new Error(""+ct);Nt.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+Nt.message,y.reject(Nt)}}function ut(ct){y.notify({index:Ee,value:ct})}},void 0),y.promise}te.prototype.any=function(){return ms(this)},_.allResolved=Ze(mr,"allResolved","allSettled");function mr(h){return kt(h,function(y){return y=c(y,_),kt(mo(c(y,function(I){return kt(I,n,n)})),function(){return y})})}te.prototype.allResolved=function(){return mr(this)},_.allSettled=Qa;function Qa(h){return _(h).allSettled()}te.prototype.allSettled=function(){return this.then(function(h){return mo(c(h,function(y){y=_(y);function I(){return y.inspect()}return y.then(I,I)}))})},_.fail=_.catch=function(h,y){return _(h).then(void 0,y)},te.prototype.fail=te.prototype.catch=function(h){return this.then(void 0,h)},_.progress=x_;function x_(h,y){return _(h).then(void 0,void 0,y)}te.prototype.progress=function(h){return this.then(void 0,void 0,h)},_.fin=_.finally=function(h,y){return _(h).finally(y)},te.prototype.fin=te.prototype.finally=function(h){if(!h||typeof h.apply!="function")throw new Error("Q can't apply finally callback");return h=_(h),this.then(function(y){return h.fcall().then(function(){return y})},function(y){return h.fcall().then(function(){throw y})})},_.done=function(h,y,I,L){return _(h).done(y,I,L)},te.prototype.done=function(h,y,I){var L=function(Ee){_.nextTick(function(){if(M(Ee,me),_.onerror)_.onerror(Ee);else throw Ee})},me=h||y||I?this.then(h,y,I):this;typeof process=="object"&&process&&process.domain&&(L=process.domain.bind(L)),me.then(void 0,L)},_.timeout=function(h,y,I){return _(h).timeout(y,I)},te.prototype.timeout=function(h,y){var I=Ce(),L=setTimeout(function(){(!y||typeof y=="string")&&(y=new Error(y||"Timed out after "+h+" ms"),y.code="ETIMEDOUT"),I.reject(y)},h);return this.then(function(me){clearTimeout(L),I.resolve(me)},function(me){clearTimeout(L),I.reject(me)},I.notify),I.promise},_.delay=function(h,y){return y===void 0&&(y=h,h=void 0),_(h).delay(y)},te.prototype.delay=function(h){return this.then(function(y){var I=Ce();return setTimeout(function(){I.resolve(y)},h),I.promise})},_.nfapply=function(h,y){return _(h).nfapply(y)},te.prototype.nfapply=function(h){var y=Ce(),I=s(h);return I.push(y.makeNodeResolver()),this.fapply(I).fail(y.reject),y.promise},_.nfcall=function(h){var y=s(arguments,1);return _(h).nfapply(y)},te.prototype.nfcall=function(){var h=s(arguments),y=Ce();return h.push(y.makeNodeResolver()),this.fapply(h).fail(y.reject),y.promise},_.nfbind=_.denodeify=function(h){if(h===void 0)throw new Error("Q can't wrap an undefined function");var y=s(arguments,1);return function(){var I=y.concat(s(arguments)),L=Ce();return I.push(L.makeNodeResolver()),_(h).fapply(I).fail(L.reject),L.promise}},te.prototype.nfbind=te.prototype.denodeify=function(){var h=s(arguments);return h.unshift(this),_.denodeify.apply(void 0,h)},_.nbind=function(h,y){var I=s(arguments,2);return function(){var L=I.concat(s(arguments)),me=Ce();L.push(me.makeNodeResolver());function Ee(){return h.apply(y,arguments)}return _(Ee).fapply(L).fail(me.reject),me.promise}},te.prototype.nbind=function(){var h=s(arguments,0);return h.unshift(this),_.nbind.apply(void 0,h)},_.nmapply=_.npost=function(h,y,I){return _(h).npost(y,I)},te.prototype.nmapply=te.prototype.npost=function(h,y){var I=s(y||[]),L=Ce();return I.push(L.makeNodeResolver()),this.dispatch("post",[h,I]).fail(L.reject),L.promise},_.nsend=_.nmcall=_.ninvoke=function(h,y){var I=s(arguments,2),L=Ce();return I.push(L.makeNodeResolver()),_(h).dispatch("post",[y,I]).fail(L.reject),L.promise},te.prototype.nsend=te.prototype.nmcall=te.prototype.ninvoke=function(h){var y=s(arguments,1),I=Ce();return y.push(I.makeNodeResolver()),this.dispatch("post",[h,y]).fail(I.reject),I.promise},_.nodeify=Pe;function Pe(h,y){return _(h).nodeify(y)}te.prototype.nodeify=function(h){if(h)this.then(function(y){_.nextTick(function(){h(null,y)})},function(y){_.nextTick(function(){h(y)})});else return this},_.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var ws=de();return _})});var rv=k(tv=>{var z4=On(),$q=_o();tv.Multiplexer=ev;function L4(t,e,r){function n(i,o,f){e.call(this,i,o,f)}return z4.inherits(n,e),n.prototype.writeMessageBegin=function(i,o,f){o==$q.MessageType.CALL||o==$q.MessageType.ONEWAY?(r.seqId2Service[f]=t,n.super_.prototype.writeMessageBegin.call(this,t+":"+i,o,f)):n.super_.prototype.writeMessageBegin.call(this,i,o,f)},n}function ev(){this.seqid=0}ev.prototype.createClient=function(t,e,r){e.Client&&(e=e.Client);var n=function(u,l){r.write(u,l)},i=new r.transport(void 0,n),o=new L4(t,r.protocol,r),f=new e(i,o),s=this;return f.new_seqid=function(){return s.seqid+=1,s.seqid},typeof r.client!="object"&&(r.client={}),r.client[t]=f,f}});var iv=k((mV,nv)=>{var Ts=Cc(),V4=vf(),C4=Qw();nv.exports=Rt;function Rt(t,e){this.inBuf=t||new Buffer(0),this.outBuffers=[],this.outCount=0,this.readPos=0,this.onFlush=e}Rt.prototype=new C4;Rt.receiver=function(t,e){var r=null;return function(n){for(r&&(n=Buffer.concat([r,n]),r=null);n.length;){if(n.length<4){r=n;return}var i=Ts.readI32(n,0);if(n.length<4+i){r=n;return}var o=n.slice(4,4+i);r=n.slice(4+i),t(new Rt(o),e),n=r,r=null}}};Rt.prototype.commitPosition=function(){},Rt.prototype.rollbackPosition=function(){},Rt.prototype.isOpen=function(){return!0};Rt.prototype.open=function(){};Rt.prototype.close=function(){};Rt.prototype.setCurrSeqId=function(t){this._seqid=t};Rt.prototype.ensureAvailable=function(t){if(this.readPos+t>this.inBuf.length)throw new V4};Rt.prototype.read=function(t){this.ensureAvailable(t);var e=this.readPos+t;if(this.inBuf.length<e)throw new Error("read("+t+") failed - not enough data");var r=this.inBuf.slice(this.readPos,e);return this.readPos=e,r};Rt.prototype.readByte=function(){return this.ensureAvailable(1),Ts.readByte(this.inBuf[this.readPos++])};Rt.prototype.readI16=function(){this.ensureAvailable(2);var t=Ts.readI16(this.inBuf,this.readPos);return this.readPos+=2,t};Rt.prototype.readI32=function(){this.ensureAvailable(4);var t=Ts.readI32(this.inBuf,this.readPos);return this.readPos+=4,t};Rt.prototype.readDouble=function(){this.ensureAvailable(8);var t=Ts.readDouble(this.inBuf,this.readPos);return this.readPos+=8,t};Rt.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readPos,this.readPos+t);return this.readPos+=t,e};Rt.prototype.borrow=function(){return{buf:this.inBuf,readIndex:this.readPos,writeIndex:this.inBuf.length}};Rt.prototype.consume=function(t){this.readPos+=t};Rt.prototype.write=function(t,e){typeof t=="string"&&(t=new Buffer(t,e||"utf8")),this.outBuffers.push(t),this.outCount+=t.length};Rt.prototype.flush=function(){var t=this._seqid;this._seqid=null;var e=new Buffer(this.outCount),r=0;if(this.outBuffers.forEach(function(i){i.copy(e,r,0),r+=i.length}),this.onFlush){var n=new Buffer(e.length+4);Ts.writeI32(n,e.length),e.copy(n,4,0,e.length),this.onFlush&&this.onFlush(n,t)}this.outBuffers=[],this.outCount=0}});var fv=k((wV,ov)=>{var W4=Kc();ov.exports=qr;function qr(t){this.__reset(t)}qr.prototype.__reset=function(t){this.url=t,this.socket=null,this.callbacks=[],this.send_pending=[],this.send_buf="",this.recv_buf="",this.rb_wpos=0,this.rb_rpos=0};qr.prototype.flush=function(t,e){var r=this;this.isOpen()?(this.socket.send(this.send_buf),this.callbacks.push(function(){var n=e;return function(i){r.setRecvBuffer(i),n()}}())):this.send_pending.push({buf:this.send_buf,cb:e})};qr.prototype.__onOpen=function(){var t=this;this.send_pending.length>0&&(this.send_pending.forEach(function(e){t.socket.send(e.buf),t.callbacks.push(function(){var r=e.cb;return function(n){t.setRecvBuffer(n),r()}}())}),this.send_pending=[])};qr.prototype.__onClose=function(t){this.__reset(this.url)};qr.prototype.__onMessage=function(t){this.callbacks.length&&this.callbacks.shift()(t.data)};qr.prototype.__onError=function(t){W4.error("websocket: "+t.toString()),this.socket.close()};qr.prototype.setRecvBuffer=function(t){this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0};qr.prototype.isOpen=function(){return this.socket&&this.socket.readyState==this.socket.OPEN};qr.prototype.open=function(){this.socket&&this.socket.readyState!=this.socket.CLOSED||(this.socket=new WebSocket(this.url),this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};qr.prototype.close=function(){this.socket.close()};qr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};qr.prototype.readAll=function(){return this.recv_buf};qr.prototype.write=function(t){this.send_buf=t};qr.prototype.getSendBuffer=function(){return this.send_buf}});var Ue=k(tr=>{tr.Thrift=_o();var nh=Gq();tr.WSConnection=nh.WSConnection;tr.createWSConnection=nh.createWSConnection;tr.createWSClient=nh.createWSClient;var ih=Jq();tr.XHRConnection=ih.XHRConnection;tr.createXHRConnection=ih.createXHRConnection;tr.createXHRClient=ih.createXHRClient;tr.Int64=Ar();tr.Q=Xq();var K4=rv();tr.Multiplexer=K4.Multiplexer;tr.TBufferedTransport=il();tr.TFramedTransport=iv();tr.TWebSocketTransport=fv();tr.Protocol=ol();tr.TJSONProtocol=ol();tr.TBinaryProtocol=Jw();tr.TCompactProtocol=Yw()});var oh,Dr,Pi,fl=K(()=>{oh=ce(Ar()),Dr=ce(Ue()),Pi=class{constructor(e){e!=null&&e.max!=null&&(this.max=e.max),e!=null&&e.min!=null&&(this.min=e.min),e!=null&&e.null_count!=null&&(typeof e.null_count=="number"?this.null_count=new oh.default(e.null_count):this.null_count=e.null_count),e!=null&&e.distinct_count!=null&&(typeof e.distinct_count=="number"?this.distinct_count=new oh.default(e.distinct_count):this.distinct_count=e.distinct_count),e!=null&&e.max_value!=null&&(this.max_value=e.max_value),e!=null&&e.min_value!=null&&(this.min_value=e.min_value)}write(e){e.writeStructBegin("Statistics"),this.max!=null&&(e.writeFieldBegin("max",Dr.Thrift.Type.STRING,1),e.writeBinary(this.max),e.writeFieldEnd()),this.min!=null&&(e.writeFieldBegin("min",Dr.Thrift.Type.STRING,2),e.writeBinary(this.min),e.writeFieldEnd()),this.null_count!=null&&(e.writeFieldBegin("null_count",Dr.Thrift.Type.I64,3),e.writeI64(this.null_count),e.writeFieldEnd()),this.distinct_count!=null&&(e.writeFieldBegin("distinct_count",Dr.Thrift.Type.I64,4),e.writeI64(this.distinct_count),e.writeFieldEnd()),this.max_value!=null&&(e.writeFieldBegin("max_value",Dr.Thrift.Type.STRING,5),e.writeBinary(this.max_value),e.writeFieldEnd()),this.min_value!=null&&(e.writeFieldBegin("min_value",Dr.Thrift.Type.STRING,6),e.writeBinary(this.min_value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Dr.Thrift.Type.STOP)break;switch(o){case 1:if(i===Dr.Thrift.Type.STRING){let f=e.readBinary();r.max=f}else e.skip(i);break;case 2:if(i===Dr.Thrift.Type.STRING){let f=e.readBinary();r.min=f}else e.skip(i);break;case 3:if(i===Dr.Thrift.Type.I64){let f=e.readI64();r.null_count=f}else e.skip(i);break;case 4:if(i===Dr.Thrift.Type.I64){let f=e.readI64();r.distinct_count=f}else e.skip(i);break;case 5:if(i===Dr.Thrift.Type.STRING){let f=e.readBinary();r.max_value=f}else e.skip(i);break;case 6:if(i===Dr.Thrift.Type.STRING){let f=e.readBinary();r.min_value=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}return e.readStructEnd(),new Pi(r)}}});var sv,sl,fh=K(()=>{sv=ce(Ue()),sl=class{constructor(){}write(e){e.writeStructBegin("StringType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===sv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new sl}}});var av,al,sh=K(()=>{av=ce(Ue()),al=class{constructor(){}write(e){e.writeStructBegin("UUIDType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===av.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new al}}});var lv,ll,ah=K(()=>{lv=ce(Ue()),ll=class{constructor(){}write(e){e.writeStructBegin("MapType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===lv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new ll}}});var uv,ul,lh=K(()=>{uv=ce(Ue()),ul=class{constructor(){}write(e){e.writeStructBegin("ListType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===uv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new ul}}});var cv,cl,uh=K(()=>{cv=ce(Ue()),cl=class{constructor(){}write(e){e.writeStructBegin("EnumType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===cv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new cl}}});var pv,pl,ch=K(()=>{pv=ce(Ue()),pl=class{constructor(){}write(e){e.writeStructBegin("DateType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===pv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new pl}}});var dv,dl,ph=K(()=>{dv=ce(Ue()),dl=class{constructor(){}write(e){e.writeStructBegin("NullType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===dv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new dl}}});var en,ml,dh=K(()=>{en=ce(Ue()),ml=class{constructor(e){if(e!=null&&e.scale!=null)this.scale=e.scale;else throw new en.Thrift.TProtocolException(en.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[scale] is unset!");if(e!=null&&e.precision!=null)this.precision=e.precision;else throw new en.Thrift.TProtocolException(en.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[precision] is unset!")}write(e){e.writeStructBegin("DecimalType"),this.scale!=null&&(e.writeFieldBegin("scale",en.Thrift.Type.I32,1),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",en.Thrift.Type.I32,2),e.writeI32(this.precision),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===en.Thrift.Type.STOP)break;switch(o){case 1:if(i===en.Thrift.Type.I32){let f=e.readI32();r.scale=f}else e.skip(i);break;case 2:if(i===en.Thrift.Type.I32){let f=e.readI32();r.precision=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.scale!==void 0&&r.precision!==void 0)return new ml(r);throw new en.Thrift.TProtocolException(en.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DecimalType from input")}}});var mv,wl,mh=K(()=>{mv=ce(Ue()),wl=class{constructor(){}write(e){e.writeStructBegin("MilliSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===mv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new wl}}});var wv,hl,wh=K(()=>{wv=ce(Ue()),hl=class{constructor(){}write(e){e.writeStructBegin("MicroSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===wv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new hl}}});var wr,Gn,Qc=K(()=>{wr=ce(Ue());wh();mh();Gn=class{constructor(e){let r=0;if(e!=null){if(e.MILLIS!=null&&(r++,this.MILLIS=e.MILLIS),e.MICROS!=null&&(r++,this.MICROS=e.MICROS),r>1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromMILLIS(e){return new Gn({MILLIS:e})}static fromMICROS(e){return new Gn({MICROS:e})}write(e){e.writeStructBegin("TimeUnit"),this.MILLIS!=null&&(e.writeFieldBegin("MILLIS",wr.Thrift.Type.STRUCT,1),this.MILLIS.write(e),e.writeFieldEnd()),this.MICROS!=null&&(e.writeFieldBegin("MICROS",wr.Thrift.Type.STRUCT,2),this.MICROS.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===wr.Thrift.Type.STOP)break;switch(f){case 1:if(o===wr.Thrift.Type.STRUCT){r++;let s=wl.read(e);n=Gn.fromMILLIS(s)}else e.skip(o);break;case 2:if(o===wr.Thrift.Type.STRUCT){r++;let s=hl.read(e);n=Gn.fromMICROS(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}}});var tn,bl,hh=K(()=>{tn=ce(Ue());Qc();bl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new tn.Thrift.TProtocolException(tn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new tn.Thrift.TProtocolException(tn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimestampType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",tn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",tn.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===tn.Thrift.Type.STOP)break;switch(o){case 1:if(i===tn.Thrift.Type.BOOL){let f=e.readBool();r.isAdjustedToUTC=f}else e.skip(i);break;case 2:if(i===tn.Thrift.Type.STRUCT){let f=Gn.read(e);r.unit=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new bl(r);throw new tn.Thrift.TProtocolException(tn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimestampType from input")}}});var rn,gl,bh=K(()=>{rn=ce(Ue());Qc();gl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new rn.Thrift.TProtocolException(rn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new rn.Thrift.TProtocolException(rn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimeType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",rn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",rn.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===rn.Thrift.Type.STOP)break;switch(o){case 1:if(i===rn.Thrift.Type.BOOL){let f=e.readBool();r.isAdjustedToUTC=f}else e.skip(i);break;case 2:if(i===rn.Thrift.Type.STRUCT){let f=Gn.read(e);r.unit=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new gl(r);throw new rn.Thrift.TProtocolException(rn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimeType from input")}}});var nn,yl,gh=K(()=>{nn=ce(Ue()),yl=class{constructor(e){if(e!=null&&e.bitWidth!=null)this.bitWidth=e.bitWidth;else throw new nn.Thrift.TProtocolException(nn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[bitWidth] is unset!");if(e!=null&&e.isSigned!=null)this.isSigned=e.isSigned;else throw new nn.Thrift.TProtocolException(nn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isSigned] is unset!")}write(e){e.writeStructBegin("IntType"),this.bitWidth!=null&&(e.writeFieldBegin("bitWidth",nn.Thrift.Type.BYTE,1),e.writeByte(this.bitWidth),e.writeFieldEnd()),this.isSigned!=null&&(e.writeFieldBegin("isSigned",nn.Thrift.Type.BOOL,2),e.writeBool(this.isSigned),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===nn.Thrift.Type.STOP)break;switch(o){case 1:if(i===nn.Thrift.Type.BYTE){let f=e.readByte();r.bitWidth=f}else e.skip(i);break;case 2:if(i===nn.Thrift.Type.BOOL){let f=e.readBool();r.isSigned=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.bitWidth!==void 0&&r.isSigned!==void 0)return new yl(r);throw new nn.Thrift.TProtocolException(nn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read IntType from input")}}});var hv,jl,yh=K(()=>{hv=ce(Ue()),jl=class{constructor(){}write(e){e.writeStructBegin("JsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===hv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new jl}}});var bv,_l,jh=K(()=>{bv=ce(Ue()),_l=class{constructor(){}write(e){e.writeStructBegin("BsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===bv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new _l}}});var Me,ot,_h=K(()=>{Me=ce(Ue());jh();ch();dh();uh();gh();yh();lh();ah();ph();fh();hh();bh();sh();ot=class{constructor(e){let r=0;if(e!=null){if(e.STRING!=null&&(r++,this.STRING=e.STRING),e.MAP!=null&&(r++,this.MAP=e.MAP),e.LIST!=null&&(r++,this.LIST=e.LIST),e.ENUM!=null&&(r++,this.ENUM=e.ENUM),e.DECIMAL!=null&&(r++,this.DECIMAL=e.DECIMAL),e.DATE!=null&&(r++,this.DATE=e.DATE),e.TIME!=null&&(r++,this.TIME=e.TIME),e.TIMESTAMP!=null&&(r++,this.TIMESTAMP=e.TIMESTAMP),e.INTEGER!=null&&(r++,this.INTEGER=e.INTEGER),e.UNKNOWN!=null&&(r++,this.UNKNOWN=e.UNKNOWN),e.JSON!=null&&(r++,this.JSON=e.JSON),e.BSON!=null&&(r++,this.BSON=e.BSON),e.UUID!=null&&(r++,this.UUID=e.UUID),r>1)throw new Me.Thrift.TProtocolException(Me.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Me.Thrift.TProtocolException(Me.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromSTRING(e){return new ot({STRING:e})}static fromMAP(e){return new ot({MAP:e})}static fromLIST(e){return new ot({LIST:e})}static fromENUM(e){return new ot({ENUM:e})}static fromDECIMAL(e){return new ot({DECIMAL:e})}static fromDATE(e){return new ot({DATE:e})}static fromTIME(e){return new ot({TIME:e})}static fromTIMESTAMP(e){return new ot({TIMESTAMP:e})}static fromINTEGER(e){return new ot({INTEGER:e})}static fromUNKNOWN(e){return new ot({UNKNOWN:e})}static fromJSON(e){return new ot({JSON:e})}static fromBSON(e){return new ot({BSON:e})}static fromUUID(e){return new ot({UUID:e})}write(e){e.writeStructBegin("LogicalType"),this.STRING!=null&&(e.writeFieldBegin("STRING",Me.Thrift.Type.STRUCT,1),this.STRING.write(e),e.writeFieldEnd()),this.MAP!=null&&(e.writeFieldBegin("MAP",Me.Thrift.Type.STRUCT,2),this.MAP.write(e),e.writeFieldEnd()),this.LIST!=null&&(e.writeFieldBegin("LIST",Me.Thrift.Type.STRUCT,3),this.LIST.write(e),e.writeFieldEnd()),this.ENUM!=null&&(e.writeFieldBegin("ENUM",Me.Thrift.Type.STRUCT,4),this.ENUM.write(e),e.writeFieldEnd()),this.DECIMAL!=null&&(e.writeFieldBegin("DECIMAL",Me.Thrift.Type.STRUCT,5),this.DECIMAL.write(e),e.writeFieldEnd()),this.DATE!=null&&(e.writeFieldBegin("DATE",Me.Thrift.Type.STRUCT,6),this.DATE.write(e),e.writeFieldEnd()),this.TIME!=null&&(e.writeFieldBegin("TIME",Me.Thrift.Type.STRUCT,7),this.TIME.write(e),e.writeFieldEnd()),this.TIMESTAMP!=null&&(e.writeFieldBegin("TIMESTAMP",Me.Thrift.Type.STRUCT,8),this.TIMESTAMP.write(e),e.writeFieldEnd()),this.INTEGER!=null&&(e.writeFieldBegin("INTEGER",Me.Thrift.Type.STRUCT,10),this.INTEGER.write(e),e.writeFieldEnd()),this.UNKNOWN!=null&&(e.writeFieldBegin("UNKNOWN",Me.Thrift.Type.STRUCT,11),this.UNKNOWN.write(e),e.writeFieldEnd()),this.JSON!=null&&(e.writeFieldBegin("JSON",Me.Thrift.Type.STRUCT,12),this.JSON.write(e),e.writeFieldEnd()),this.BSON!=null&&(e.writeFieldBegin("BSON",Me.Thrift.Type.STRUCT,13),this.BSON.write(e),e.writeFieldEnd()),this.UUID!=null&&(e.writeFieldBegin("UUID",Me.Thrift.Type.STRUCT,14),this.UUID.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===Me.Thrift.Type.STOP)break;switch(f){case 1:if(o===Me.Thrift.Type.STRUCT){r++;let s=sl.read(e);n=ot.fromSTRING(s)}else e.skip(o);break;case 2:if(o===Me.Thrift.Type.STRUCT){r++;let s=ll.read(e);n=ot.fromMAP(s)}else e.skip(o);break;case 3:if(o===Me.Thrift.Type.STRUCT){r++;let s=ul.read(e);n=ot.fromLIST(s)}else e.skip(o);break;case 4:if(o===Me.Thrift.Type.STRUCT){r++;let s=cl.read(e);n=ot.fromENUM(s)}else e.skip(o);break;case 5:if(o===Me.Thrift.Type.STRUCT){r++;let s=ml.read(e);n=ot.fromDECIMAL(s)}else e.skip(o);break;case 6:if(o===Me.Thrift.Type.STRUCT){r++;let s=pl.read(e);n=ot.fromDATE(s)}else e.skip(o);break;case 7:if(o===Me.Thrift.Type.STRUCT){r++;let s=gl.read(e);n=ot.fromTIME(s)}else e.skip(o);break;case 8:if(o===Me.Thrift.Type.STRUCT){r++;let s=bl.read(e);n=ot.fromTIMESTAMP(s)}else e.skip(o);break;case 10:if(o===Me.Thrift.Type.STRUCT){r++;let s=yl.read(e);n=ot.fromINTEGER(s)}else e.skip(o);break;case 11:if(o===Me.Thrift.Type.STRUCT){r++;let s=dl.read(e);n=ot.fromUNKNOWN(s)}else e.skip(o);break;case 12:if(o===Me.Thrift.Type.STRUCT){r++;let s=jl.read(e);n=ot.fromJSON(s)}else e.skip(o);break;case 13:if(o===Me.Thrift.Type.STRUCT){r++;let s=_l.read(e);n=ot.fromBSON(s)}else e.skip(o);break;case 14:if(o===Me.Thrift.Type.STRUCT){r++;let s=al.read(e);n=ot.fromUUID(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Me.Thrift.TProtocolException(Me.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Me.Thrift.TProtocolException(Me.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Me.Thrift.TProtocolException(Me.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}}});var wt,ql,qh=K(()=>{wt=ce(Ue());_h();ql=class{constructor(e){if(e!=null&&e.type!=null&&(this.type=e.type),e!=null&&e.type_length!=null&&(this.type_length=e.type_length),e!=null&&e.repetition_type!=null&&(this.repetition_type=e.repetition_type),e!=null&&e.name!=null)this.name=e.name;else throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[name] is unset!");e!=null&&e.num_children!=null&&(this.num_children=e.num_children),e!=null&&e.converted_type!=null&&(this.converted_type=e.converted_type),e!=null&&e.scale!=null&&(this.scale=e.scale),e!=null&&e.precision!=null&&(this.precision=e.precision),e!=null&&e.field_id!=null&&(this.field_id=e.field_id),e!=null&&e.logicalType!=null&&(this.logicalType=e.logicalType)}write(e){e.writeStructBegin("SchemaElement"),this.type!=null&&(e.writeFieldBegin("type",wt.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.type_length!=null&&(e.writeFieldBegin("type_length",wt.Thrift.Type.I32,2),e.writeI32(this.type_length),e.writeFieldEnd()),this.repetition_type!=null&&(e.writeFieldBegin("repetition_type",wt.Thrift.Type.I32,3),e.writeI32(this.repetition_type),e.writeFieldEnd()),this.name!=null&&(e.writeFieldBegin("name",wt.Thrift.Type.STRING,4),e.writeString(this.name),e.writeFieldEnd()),this.num_children!=null&&(e.writeFieldBegin("num_children",wt.Thrift.Type.I32,5),e.writeI32(this.num_children),e.writeFieldEnd()),this.converted_type!=null&&(e.writeFieldBegin("converted_type",wt.Thrift.Type.I32,6),e.writeI32(this.converted_type),e.writeFieldEnd()),this.scale!=null&&(e.writeFieldBegin("scale",wt.Thrift.Type.I32,7),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",wt.Thrift.Type.I32,8),e.writeI32(this.precision),e.writeFieldEnd()),this.field_id!=null&&(e.writeFieldBegin("field_id",wt.Thrift.Type.I32,9),e.writeI32(this.field_id),e.writeFieldEnd()),this.logicalType!=null&&(e.writeFieldBegin("logicalType",wt.Thrift.Type.STRUCT,10),this.logicalType.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===wt.Thrift.Type.STOP)break;switch(o){case 1:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.type_length=f}else e.skip(i);break;case 3:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.repetition_type=f}else e.skip(i);break;case 4:if(i===wt.Thrift.Type.STRING){let f=e.readString();r.name=f}else e.skip(i);break;case 5:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.num_children=f}else e.skip(i);break;case 6:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.converted_type=f}else e.skip(i);break;case 7:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.scale=f}else e.skip(i);break;case 8:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.precision=f}else e.skip(i);break;case 9:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.field_id=f}else e.skip(i);break;case 10:if(i===wt.Thrift.Type.STRUCT){let f=ot.read(e);r.logicalType=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.name!==void 0)return new ql(r);throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SchemaElement from input")}}});var xt,vl,vh=K(()=>{xt=ce(Ue());fl();vl=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_level_encoding!=null)this.definition_level_encoding=e.definition_level_encoding;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_level_encoding] is unset!");if(e!=null&&e.repetition_level_encoding!=null)this.repetition_level_encoding=e.repetition_level_encoding;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_level_encoding] is unset!");e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",xt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",xt.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_level_encoding!=null&&(e.writeFieldBegin("definition_level_encoding",xt.Thrift.Type.I32,3),e.writeI32(this.definition_level_encoding),e.writeFieldEnd()),this.repetition_level_encoding!=null&&(e.writeFieldBegin("repetition_level_encoding",xt.Thrift.Type.I32,4),e.writeI32(this.repetition_level_encoding),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",xt.Thrift.Type.STRUCT,5),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===xt.Thrift.Type.STOP)break;switch(o){case 1:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.definition_level_encoding=f}else e.skip(i);break;case 4:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.repetition_level_encoding=f}else e.skip(i);break;case 5:if(i===xt.Thrift.Type.STRUCT){let f=Pi.read(e);r.statistics=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0&&r.definition_level_encoding!==void 0&&r.repetition_level_encoding!==void 0)return new vl(r);throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeader from input")}}});var gv,Tl,Th=K(()=>{gv=ce(Ue()),Tl=class{constructor(){}write(e){e.writeStructBegin("IndexPageHeader"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===gv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Tl}}});var Nr,kl,kh=K(()=>{Nr=ce(Ue()),kl=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Nr.Thrift.TProtocolException(Nr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Nr.Thrift.TProtocolException(Nr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");e!=null&&e.is_sorted!=null&&(this.is_sorted=e.is_sorted)}write(e){e.writeStructBegin("DictionaryPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",Nr.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Nr.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.is_sorted!=null&&(e.writeFieldBegin("is_sorted",Nr.Thrift.Type.BOOL,3),e.writeBool(this.is_sorted),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Nr.Thrift.Type.STOP)break;switch(o){case 1:if(i===Nr.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===Nr.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===Nr.Thrift.Type.BOOL){let f=e.readBool();r.is_sorted=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0)return new kl(r);throw new Nr.Thrift.TProtocolException(Nr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DictionaryPageHeader from input")}}});var et,Bl,Bh=K(()=>{et=ce(Ue());fl();Bl=class{constructor(e){this.is_compressed=!0;if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new et.Thrift.TProtocolException(et.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.num_nulls!=null)this.num_nulls=e.num_nulls;else throw new et.Thrift.TProtocolException(et.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_nulls] is unset!");if(e!=null&&e.num_rows!=null)this.num_rows=e.num_rows;else throw new et.Thrift.TProtocolException(et.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new et.Thrift.TProtocolException(et.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_levels_byte_length!=null)this.definition_levels_byte_length=e.definition_levels_byte_length;else throw new et.Thrift.TProtocolException(et.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_levels_byte_length] is unset!");if(e!=null&&e.repetition_levels_byte_length!=null)this.repetition_levels_byte_length=e.repetition_levels_byte_length;else throw new et.Thrift.TProtocolException(et.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_levels_byte_length] is unset!");e!=null&&e.is_compressed!=null&&(this.is_compressed=e.is_compressed),e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeaderV2"),this.num_values!=null&&(e.writeFieldBegin("num_values",et.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.num_nulls!=null&&(e.writeFieldBegin("num_nulls",et.Thrift.Type.I32,2),e.writeI32(this.num_nulls),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",et.Thrift.Type.I32,3),e.writeI32(this.num_rows),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",et.Thrift.Type.I32,4),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_levels_byte_length!=null&&(e.writeFieldBegin("definition_levels_byte_length",et.Thrift.Type.I32,5),e.writeI32(this.definition_levels_byte_length),e.writeFieldEnd()),this.repetition_levels_byte_length!=null&&(e.writeFieldBegin("repetition_levels_byte_length",et.Thrift.Type.I32,6),e.writeI32(this.repetition_levels_byte_length),e.writeFieldEnd()),this.is_compressed!=null&&(e.writeFieldBegin("is_compressed",et.Thrift.Type.BOOL,7),e.writeBool(this.is_compressed),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",et.Thrift.Type.STRUCT,8),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===et.Thrift.Type.STOP)break;switch(o){case 1:if(i===et.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===et.Thrift.Type.I32){let f=e.readI32();r.num_nulls=f}else e.skip(i);break;case 3:if(i===et.Thrift.Type.I32){let f=e.readI32();r.num_rows=f}else e.skip(i);break;case 4:if(i===et.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 5:if(i===et.Thrift.Type.I32){let f=e.readI32();r.definition_levels_byte_length=f}else e.skip(i);break;case 6:if(i===et.Thrift.Type.I32){let f=e.readI32();r.repetition_levels_byte_length=f}else e.skip(i);break;case 7:if(i===et.Thrift.Type.BOOL){let f=e.readBool();r.is_compressed=f}else e.skip(i);break;case 8:if(i===et.Thrift.Type.STRUCT){let f=Pi.read(e);r.statistics=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.num_nulls!==void 0&&r.num_rows!==void 0&&r.encoding!==void 0&&r.definition_levels_byte_length!==void 0&&r.repetition_levels_byte_length!==void 0)return new Bl(r);throw new et.Thrift.TProtocolException(et.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeaderV2 from input")}}});var ht,Il,yv=K(()=>{ht=ce(Ue());vh();Bh();kh();Th();Il=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.uncompressed_page_size!=null)this.uncompressed_page_size=e.uncompressed_page_size;else throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[uncompressed_page_size] is unset!");if(e!=null&&e.compressed_page_size!=null)this.compressed_page_size=e.compressed_page_size;else throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[compressed_page_size] is unset!");e!=null&&e.crc!=null&&(this.crc=e.crc),e!=null&&e.data_page_header!=null&&(this.data_page_header=e.data_page_header),e!=null&&e.index_page_header!=null&&(this.index_page_header=e.index_page_header),e!=null&&e.dictionary_page_header!=null&&(this.dictionary_page_header=e.dictionary_page_header),e!=null&&e.data_page_header_v2!=null&&(this.data_page_header_v2=e.data_page_header_v2)}write(e){e.writeStructBegin("PageHeader"),this.type!=null&&(e.writeFieldBegin("type",ht.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.uncompressed_page_size!=null&&(e.writeFieldBegin("uncompressed_page_size",ht.Thrift.Type.I32,2),e.writeI32(this.uncompressed_page_size),e.writeFieldEnd()),this.compressed_page_size!=null&&(e.writeFieldBegin("compressed_page_size",ht.Thrift.Type.I32,3),e.writeI32(this.compressed_page_size),e.writeFieldEnd()),this.crc!=null&&(e.writeFieldBegin("crc",ht.Thrift.Type.I32,4),e.writeI32(this.crc),e.writeFieldEnd()),this.data_page_header!=null&&(e.writeFieldBegin("data_page_header",ht.Thrift.Type.STRUCT,5),this.data_page_header.write(e),e.writeFieldEnd()),this.index_page_header!=null&&(e.writeFieldBegin("index_page_header",ht.Thrift.Type.STRUCT,6),this.index_page_header.write(e),e.writeFieldEnd()),this.dictionary_page_header!=null&&(e.writeFieldBegin("dictionary_page_header",ht.Thrift.Type.STRUCT,7),this.dictionary_page_header.write(e),e.writeFieldEnd()),this.data_page_header_v2!=null&&(e.writeFieldBegin("data_page_header_v2",ht.Thrift.Type.STRUCT,8),this.data_page_header_v2.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===ht.Thrift.Type.STOP)break;switch(o){case 1:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.uncompressed_page_size=f}else e.skip(i);break;case 3:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.compressed_page_size=f}else e.skip(i);break;case 4:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.crc=f}else e.skip(i);break;case 5:if(i===ht.Thrift.Type.STRUCT){let f=vl.read(e);r.data_page_header=f}else e.skip(i);break;case 6:if(i===ht.Thrift.Type.STRUCT){let f=Tl.read(e);r.index_page_header=f}else e.skip(i);break;case 7:if(i===ht.Thrift.Type.STRUCT){let f=kl.read(e);r.dictionary_page_header=f}else e.skip(i);break;case 8:if(i===ht.Thrift.Type.STRUCT){let f=Bl.read(e);r.data_page_header_v2=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.uncompressed_page_size!==void 0&&r.compressed_page_size!==void 0)return new Il(r);throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageHeader from input")}}});var Zn,Tf,Xc=K(()=>{Zn=ce(Ue()),Tf=class{constructor(e){if(e!=null&&e.key!=null)this.key=e.key;else throw new Zn.Thrift.TProtocolException(Zn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[key] is unset!");e!=null&&e.value!=null&&(this.value=e.value)}write(e){e.writeStructBegin("KeyValue"),this.key!=null&&(e.writeFieldBegin("key",Zn.Thrift.Type.STRING,1),e.writeString(this.key),e.writeFieldEnd()),this.value!=null&&(e.writeFieldBegin("value",Zn.Thrift.Type.STRING,2),e.writeString(this.value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Zn.Thrift.Type.STOP)break;switch(o){case 1:if(i===Zn.Thrift.Type.STRING){let f=e.readString();r.key=f}else e.skip(i);break;case 2:if(i===Zn.Thrift.Type.STRING){let f=e.readString();r.value=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.key!==void 0)return new Tf(r);throw new Zn.Thrift.TProtocolException(Zn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read KeyValue from input")}}});var hr,xl,Ih=K(()=>{hr=ce(Ue()),xl=class{constructor(e){if(e!=null&&e.column_idx!=null)this.column_idx=e.column_idx;else throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[column_idx] is unset!");if(e!=null&&e.descending!=null)this.descending=e.descending;else throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[descending] is unset!");if(e!=null&&e.nulls_first!=null)this.nulls_first=e.nulls_first;else throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[nulls_first] is unset!")}write(e){e.writeStructBegin("SortingColumn"),this.column_idx!=null&&(e.writeFieldBegin("column_idx",hr.Thrift.Type.I32,1),e.writeI32(this.column_idx),e.writeFieldEnd()),this.descending!=null&&(e.writeFieldBegin("descending",hr.Thrift.Type.BOOL,2),e.writeBool(this.descending),e.writeFieldEnd()),this.nulls_first!=null&&(e.writeFieldBegin("nulls_first",hr.Thrift.Type.BOOL,3),e.writeBool(this.nulls_first),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===hr.Thrift.Type.STOP)break;switch(o){case 1:if(i===hr.Thrift.Type.I32){let f=e.readI32();r.column_idx=f}else e.skip(i);break;case 2:if(i===hr.Thrift.Type.BOOL){let f=e.readBool();r.descending=f}else e.skip(i);break;case 3:if(i===hr.Thrift.Type.BOOL){let f=e.readBool();r.nulls_first=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.column_idx!==void 0&&r.descending!==void 0&&r.nulls_first!==void 0)return new xl(r);throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SortingColumn from input")}}});var br,Sl,xh=K(()=>{br=ce(Ue()),Sl=class{constructor(e){if(e!=null&&e.page_type!=null)this.page_type=e.page_type;else throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[page_type] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.count!=null)this.count=e.count;else throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[count] is unset!")}write(e){e.writeStructBegin("PageEncodingStats"),this.page_type!=null&&(e.writeFieldBegin("page_type",br.Thrift.Type.I32,1),e.writeI32(this.page_type),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",br.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.count!=null&&(e.writeFieldBegin("count",br.Thrift.Type.I32,3),e.writeI32(this.count),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===br.Thrift.Type.STOP)break;switch(o){case 1:if(i===br.Thrift.Type.I32){let f=e.readI32();r.page_type=f}else e.skip(i);break;case 2:if(i===br.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===br.Thrift.Type.I32){let f=e.readI32();r.count=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.page_type!==void 0&&r.encoding!==void 0&&r.count!==void 0)return new Sl(r);throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageEncodingStats from input")}}});var kf,we,El,Sh=K(()=>{kf=ce(Ar()),we=ce(Ue());Xc();xh();fl();El=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.encodings!=null)this.encodings=e.encodings;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encodings] is unset!");if(e!=null&&e.path_in_schema!=null)this.path_in_schema=e.path_in_schema;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[path_in_schema] is unset!");if(e!=null&&e.codec!=null)this.codec=e.codec;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[codec] is unset!");if(e!=null&&e.num_values!=null)typeof e.num_values=="number"?this.num_values=new kf.default(e.num_values):this.num_values=e.num_values;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.total_uncompressed_size!=null)typeof e.total_uncompressed_size=="number"?this.total_uncompressed_size=new kf.default(e.total_uncompressed_size):this.total_uncompressed_size=e.total_uncompressed_size;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_uncompressed_size] is unset!");if(e!=null&&e.total_compressed_size!=null)typeof e.total_compressed_size=="number"?this.total_compressed_size=new kf.default(e.total_compressed_size):this.total_compressed_size=e.total_compressed_size;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_compressed_size] is unset!");if(e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.data_page_offset!=null)typeof e.data_page_offset=="number"?this.data_page_offset=new kf.default(e.data_page_offset):this.data_page_offset=e.data_page_offset;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[data_page_offset] is unset!");e!=null&&e.index_page_offset!=null&&(typeof e.index_page_offset=="number"?this.index_page_offset=new kf.default(e.index_page_offset):this.index_page_offset=e.index_page_offset),e!=null&&e.dictionary_page_offset!=null&&(typeof e.dictionary_page_offset=="number"?this.dictionary_page_offset=new kf.default(e.dictionary_page_offset):this.dictionary_page_offset=e.dictionary_page_offset),e!=null&&e.statistics!=null&&(this.statistics=e.statistics),e!=null&&e.encoding_stats!=null&&(this.encoding_stats=e.encoding_stats)}write(e){e.writeStructBegin("ColumnMetaData"),this.type!=null&&(e.writeFieldBegin("type",we.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.encodings!=null&&(e.writeFieldBegin("encodings",we.Thrift.Type.LIST,2),e.writeListBegin(we.Thrift.Type.I32,this.encodings.length),this.encodings.forEach(r=>{e.writeI32(r)}),e.writeListEnd(),e.writeFieldEnd()),this.path_in_schema!=null&&(e.writeFieldBegin("path_in_schema",we.Thrift.Type.LIST,3),e.writeListBegin(we.Thrift.Type.STRING,this.path_in_schema.length),this.path_in_schema.forEach(r=>{e.writeString(r)}),e.writeListEnd(),e.writeFieldEnd()),this.codec!=null&&(e.writeFieldBegin("codec",we.Thrift.Type.I32,4),e.writeI32(this.codec),e.writeFieldEnd()),this.num_values!=null&&(e.writeFieldBegin("num_values",we.Thrift.Type.I64,5),e.writeI64(this.num_values),e.writeFieldEnd()),this.total_uncompressed_size!=null&&(e.writeFieldBegin("total_uncompressed_size",we.Thrift.Type.I64,6),e.writeI64(this.total_uncompressed_size),e.writeFieldEnd()),this.total_compressed_size!=null&&(e.writeFieldBegin("total_compressed_size",we.Thrift.Type.I64,7),e.writeI64(this.total_compressed_size),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",we.Thrift.Type.LIST,8),e.writeListBegin(we.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.data_page_offset!=null&&(e.writeFieldBegin("data_page_offset",we.Thrift.Type.I64,9),e.writeI64(this.data_page_offset),e.writeFieldEnd()),this.index_page_offset!=null&&(e.writeFieldBegin("index_page_offset",we.Thrift.Type.I64,10),e.writeI64(this.index_page_offset),e.writeFieldEnd()),this.dictionary_page_offset!=null&&(e.writeFieldBegin("dictionary_page_offset",we.Thrift.Type.I64,11),e.writeI64(this.dictionary_page_offset),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",we.Thrift.Type.STRUCT,12),this.statistics.write(e),e.writeFieldEnd()),this.encoding_stats!=null&&(e.writeFieldBegin("encoding_stats",we.Thrift.Type.LIST,13),e.writeListBegin(we.Thrift.Type.STRUCT,this.encoding_stats.length),this.encoding_stats.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===we.Thrift.Type.STOP)break;switch(o){case 1:if(i===we.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readI32();f.push(c)}e.readListEnd(),r.encodings=f}else e.skip(i);break;case 3:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readString();f.push(c)}e.readListEnd(),r.path_in_schema=f}else e.skip(i);break;case 4:if(i===we.Thrift.Type.I32){let f=e.readI32();r.codec=f}else e.skip(i);break;case 5:if(i===we.Thrift.Type.I64){let f=e.readI64();r.num_values=f}else e.skip(i);break;case 6:if(i===we.Thrift.Type.I64){let f=e.readI64();r.total_uncompressed_size=f}else e.skip(i);break;case 7:if(i===we.Thrift.Type.I64){let f=e.readI64();r.total_compressed_size=f}else e.skip(i);break;case 8:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Tf.read(e);f.push(c)}e.readListEnd(),r.key_value_metadata=f}else e.skip(i);break;case 9:if(i===we.Thrift.Type.I64){let f=e.readI64();r.data_page_offset=f}else e.skip(i);break;case 10:if(i===we.Thrift.Type.I64){let f=e.readI64();r.index_page_offset=f}else e.skip(i);break;case 11:if(i===we.Thrift.Type.I64){let f=e.readI64();r.dictionary_page_offset=f}else e.skip(i);break;case 12:if(i===we.Thrift.Type.STRUCT){let f=Pi.read(e);r.statistics=f}else e.skip(i);break;case 13:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Sl.read(e);f.push(c)}e.readListEnd(),r.encoding_stats=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.encodings!==void 0&&r.path_in_schema!==void 0&&r.codec!==void 0&&r.num_values!==void 0&&r.total_uncompressed_size!==void 0&&r.total_compressed_size!==void 0&&r.data_page_offset!==void 0)return new El(r);throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnMetaData from input")}}});var $c,Vt,Al,Eh=K(()=>{$c=ce(Ar()),Vt=ce(Ue());Sh();Al=class{constructor(e){if(e!=null&&e.file_path!=null&&(this.file_path=e.file_path),e!=null&&e.file_offset!=null)typeof e.file_offset=="number"?this.file_offset=new $c.default(e.file_offset):this.file_offset=e.file_offset;else throw new Vt.Thrift.TProtocolException(Vt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[file_offset] is unset!");e!=null&&e.meta_data!=null&&(this.meta_data=e.meta_data),e!=null&&e.offset_index_offset!=null&&(typeof e.offset_index_offset=="number"?this.offset_index_offset=new $c.default(e.offset_index_offset):this.offset_index_offset=e.offset_index_offset),e!=null&&e.offset_index_length!=null&&(this.offset_index_length=e.offset_index_length),e!=null&&e.column_index_offset!=null&&(typeof e.column_index_offset=="number"?this.column_index_offset=new $c.default(e.column_index_offset):this.column_index_offset=e.column_index_offset),e!=null&&e.column_index_length!=null&&(this.column_index_length=e.column_index_length)}write(e){e.writeStructBegin("ColumnChunk"),this.file_path!=null&&(e.writeFieldBegin("file_path",Vt.Thrift.Type.STRING,1),e.writeString(this.file_path),e.writeFieldEnd()),this.file_offset!=null&&(e.writeFieldBegin("file_offset",Vt.Thrift.Type.I64,2),e.writeI64(this.file_offset),e.writeFieldEnd()),this.meta_data!=null&&(e.writeFieldBegin("meta_data",Vt.Thrift.Type.STRUCT,3),this.meta_data.write(e),e.writeFieldEnd()),this.offset_index_offset!=null&&(e.writeFieldBegin("offset_index_offset",Vt.Thrift.Type.I64,4),e.writeI64(this.offset_index_offset),e.writeFieldEnd()),this.offset_index_length!=null&&(e.writeFieldBegin("offset_index_length",Vt.Thrift.Type.I32,5),e.writeI32(this.offset_index_length),e.writeFieldEnd()),this.column_index_offset!=null&&(e.writeFieldBegin("column_index_offset",Vt.Thrift.Type.I64,6),e.writeI64(this.column_index_offset),e.writeFieldEnd()),this.column_index_length!=null&&(e.writeFieldBegin("column_index_length",Vt.Thrift.Type.I32,7),e.writeI32(this.column_index_length),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Vt.Thrift.Type.STOP)break;switch(o){case 1:if(i===Vt.Thrift.Type.STRING){let f=e.readString();r.file_path=f}else e.skip(i);break;case 2:if(i===Vt.Thrift.Type.I64){let f=e.readI64();r.file_offset=f}else e.skip(i);break;case 3:if(i===Vt.Thrift.Type.STRUCT){let f=El.read(e);r.meta_data=f}else e.skip(i);break;case 4:if(i===Vt.Thrift.Type.I64){let f=e.readI64();r.offset_index_offset=f}else e.skip(i);break;case 5:if(i===Vt.Thrift.Type.I32){let f=e.readI32();r.offset_index_length=f}else e.skip(i);break;case 6:if(i===Vt.Thrift.Type.I64){let f=e.readI64();r.column_index_offset=f}else e.skip(i);break;case 7:if(i===Vt.Thrift.Type.I32){let f=e.readI32();r.column_index_length=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.file_offset!==void 0)return new Al(r);throw new Vt.Thrift.TProtocolException(Vt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnChunk from input")}}});var Ah,Ct,Ol,Oh=K(()=>{Ah=ce(Ar()),Ct=ce(Ue());Eh();Ih();Ol=class{constructor(e){if(e!=null&&e.columns!=null)this.columns=e.columns;else throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[columns] is unset!");if(e!=null&&e.total_byte_size!=null)typeof e.total_byte_size=="number"?this.total_byte_size=new Ah.default(e.total_byte_size):this.total_byte_size=e.total_byte_size;else throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_byte_size] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new Ah.default(e.num_rows):this.num_rows=e.num_rows;else throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");e!=null&&e.sorting_columns!=null&&(this.sorting_columns=e.sorting_columns)}write(e){e.writeStructBegin("RowGroup"),this.columns!=null&&(e.writeFieldBegin("columns",Ct.Thrift.Type.LIST,1),e.writeListBegin(Ct.Thrift.Type.STRUCT,this.columns.length),this.columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.total_byte_size!=null&&(e.writeFieldBegin("total_byte_size",Ct.Thrift.Type.I64,2),e.writeI64(this.total_byte_size),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",Ct.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.sorting_columns!=null&&(e.writeFieldBegin("sorting_columns",Ct.Thrift.Type.LIST,4),e.writeListBegin(Ct.Thrift.Type.STRUCT,this.sorting_columns.length),this.sorting_columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Ct.Thrift.Type.STOP)break;switch(o){case 1:if(i===Ct.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Al.read(e);f.push(c)}e.readListEnd(),r.columns=f}else e.skip(i);break;case 2:if(i===Ct.Thrift.Type.I64){let f=e.readI64();r.total_byte_size=f}else e.skip(i);break;case 3:if(i===Ct.Thrift.Type.I64){let f=e.readI64();r.num_rows=f}else e.skip(i);break;case 4:if(i===Ct.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=xl.read(e);f.push(c)}e.readListEnd(),r.sorting_columns=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.columns!==void 0&&r.total_byte_size!==void 0&&r.num_rows!==void 0)return new Ol(r);throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read RowGroup from input")}}});var jv,Fl,Fh=K(()=>{jv=ce(Ue()),Fl=class{constructor(){}write(e){e.writeStructBegin("TypeDefinedOrder"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===jv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Fl}}});var Y4,G4,_v=K(()=>{Y4=ce(Ar()),G4=ce(Ue())});var Z4,qv=K(()=>{Z4=ce(Ue())});var J4,Q4,vv=K(()=>{J4=ce(Ar()),Q4=ce(Ue())});var Pr,ks,Dh=K(()=>{Pr=ce(Ue());Fh();ks=class{constructor(e){let r=0;if(e!=null){if(e.TYPE_ORDER!=null&&(r++,this.TYPE_ORDER=e.TYPE_ORDER),r>1)throw new Pr.Thrift.TProtocolException(Pr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Pr.Thrift.TProtocolException(Pr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromTYPE_ORDER(e){return new ks({TYPE_ORDER:e})}write(e){e.writeStructBegin("ColumnOrder"),this.TYPE_ORDER!=null&&(e.writeFieldBegin("TYPE_ORDER",Pr.Thrift.Type.STRUCT,1),this.TYPE_ORDER.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===Pr.Thrift.Type.STOP)break;switch(f){case 1:if(o===Pr.Thrift.Type.STRUCT){r++;let s=Fl.read(e);n=ks.fromTYPE_ORDER(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Pr.Thrift.TProtocolException(Pr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Pr.Thrift.TProtocolException(Pr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Pr.Thrift.TProtocolException(Pr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}}});var Tv,ft,Dl,kv=K(()=>{Tv=ce(Ar()),ft=ce(Ue());Dh();Xc();Oh();qh();Dl=class{constructor(e=null){if(e!=null&&e.version!=null)this.version=e.version;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[version] is unset!");if(e!=null&&e.schema!=null)this.schema=e.schema;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[schema] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new Tv.default(e.num_rows):this.num_rows=e.num_rows;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.row_groups!=null)this.row_groups=e.row_groups;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[row_groups] is unset!");e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.created_by!=null&&(this.created_by=e.created_by),e!=null&&e.column_orders!=null&&(this.column_orders=e.column_orders)}write(e){e.writeStructBegin("FileMetaData"),this.version!=null&&(e.writeFieldBegin("version",ft.Thrift.Type.I32,1),e.writeI32(this.version),e.writeFieldEnd()),this.schema!=null&&(e.writeFieldBegin("schema",ft.Thrift.Type.LIST,2),e.writeListBegin(ft.Thrift.Type.STRUCT,this.schema.length),this.schema.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",ft.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.row_groups!=null&&(e.writeFieldBegin("row_groups",ft.Thrift.Type.LIST,4),e.writeListBegin(ft.Thrift.Type.STRUCT,this.row_groups.length),this.row_groups.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",ft.Thrift.Type.LIST,5),e.writeListBegin(ft.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.created_by!=null&&(e.writeFieldBegin("created_by",ft.Thrift.Type.STRING,6),e.writeString(this.created_by),e.writeFieldEnd()),this.column_orders!=null&&(e.writeFieldBegin("column_orders",ft.Thrift.Type.LIST,7),e.writeListBegin(ft.Thrift.Type.STRUCT,this.column_orders.length),this.column_orders.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===ft.Thrift.Type.STOP)break;switch(o){case 1:if(i===ft.Thrift.Type.I32){let f=e.readI32();r.version=f}else e.skip(i);break;case 2:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=ql.read(e);f.push(c)}e.readListEnd(),r.schema=f}else e.skip(i);break;case 3:if(i===ft.Thrift.Type.I64){let f=e.readI64();r.num_rows=f}else e.skip(i);break;case 4:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Ol.read(e);f.push(c)}e.readListEnd(),r.row_groups=f}else e.skip(i);break;case 5:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Tf.read(e);f.push(c)}e.readListEnd(),r.key_value_metadata=f}else e.skip(i);break;case 6:if(i===ft.Thrift.Type.STRING){let f=e.readString();r.created_by=f}else e.skip(i);break;case 7:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=ks.read(e);f.push(c)}e.readListEnd(),r.column_orders=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.version!==void 0&&r.schema!==void 0&&r.num_rows!==void 0&&r.row_groups!==void 0)return new Dl(r);throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read FileMetaData from input")}}});var ep=K(()=>{H_();U_();M_();z_();L_();V_();W_();fl();fh();sh();ah();lh();uh();ch();ph();dh();mh();wh();hh();bh();gh();yh();jh();qh();vh();Th();kh();Bh();yv();Xc();Ih();xh();Sh();Eh();Oh();Fh();_v();qv();vv();kv();Qc();_h();Dh()});function on(t,e){for(let r in t)if(t[r]===e)return r;throw new Error("Invalid ENUM value")}function Bv(t,e){e||(e=0);let r=new Nh(t);r.readPos=e;let n=new Bs.TCompactProtocol(r),i=Dl.read(n);return{length:r.readPos-e,metadata:i}}function Iv(t,e){e||(e=0);let r=new Nh(t);r.readPos=e;let n=new Bs.TCompactProtocol(r),i=Il.read(n);return{length:r.readPos-e,pageHeader:i}}function Nl(t){return t===0?0:Math.ceil(Math.log2(t+1))}function xv(t,e){for(let r=0;r<t.length;r++){if(t[r].length>e.length)continue;let n=!0;for(let i=0;i<e.length;i++)if(!(t[r][i]===e[i]||t[r][i]==="+"||t[r][i]==="#")&&!(i>=t[r].length&&t[r][t[r].length-1]==="#")){n=!1;break}if(n)return r}return-1}var Bs,Nh,Ph=K(()=>{Bs=ce(Ue());ep();Nh=class extends Bs.TFramedTransport{constructor(){super(...arguments);this.readPos=0}}});var Av=k((B5,Ev)=>{var Ri={},Pl=4294967295,X4=9007199254740991;function tp(t){return t=~t,t<0&&(t=(t&2147483647)+2147483648),t}function rp(t){console.assert(t>-1&&t<=X4,"number out of range"),console.assert(Math.floor(t)===t,"number must be an integer");var e=0,r=t&4294967295,n=r<0?(t&2147483647)+2147483648:r;return t>Pl&&(e=(t-n)/(Pl+1)),[e,n]}function Sv(t){if(t>-1)return rp(t);var e=rp(-t),r=tp(e[0]),n=tp(e[1]);return n===Pl?(r+=1,n=0):n+=1,[r,n]}function np(t,e,r){return r&&(t&2147483648)!=0?(t=tp(t),e=tp(e),console.assert(t<2097152,"number too small"),-(t*(Pl+1)+e+1)):(console.assert(t<2097152,"number too large"),t*(Pl+1)+e)}Ri.readInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return np(r,n,!0)};Ri.readInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return np(n,r,!0)};Ri.readUInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return np(r,n,!1)};Ri.readUInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return np(n,r,!1)};Ri.writeInt64BE=function(t,e,r){r=r||0;var n=Sv(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ri.writeInt64LE=function(t,e,r){r=r||0;var n=Sv(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Ri.writeUInt64BE=function(t,e,r){r=r||0;var n=rp(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ri.writeUInt64LE=function(t,e,r){r=r||0;var n=rp(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Ev.exports=Ri});function Ov(t,e,r){switch(t){case"BOOLEAN":return $4(e);case"INT32":return t2(e);case"INT64":return n2(e);case"INT96":return o2(e);case"FLOAT":return s2(e);case"DOUBLE":return l2(e);case"BYTE_ARRAY":return c2(e);case"FIXED_LEN_BYTE_ARRAY":return d2(e,r);default:throw new Error(`unsupported type: ${t}`)}}function Fv(t,e,r,n){switch(t){case"BOOLEAN":return e2(e,r);case"INT32":return r2(e,r);case"INT64":return i2(e,r);case"INT96":return f2(e,r);case"FLOAT":return a2(e,r);case"DOUBLE":return u2(e,r);case"BYTE_ARRAY":return p2(e,r);case"FIXED_LEN_BYTE_ARRAY":return m2(e,r,n);default:throw new Error(`unsupported type: ${t}`)}}function $4(t){let e=Buffer.alloc(Math.ceil(t.length/8));e.fill(0);for(let r=0;r<t.length;r++)t[r]&&(e[Math.floor(r/8)]|=1<<r%8);return e}function e2(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer[t.offset+Math.floor(n/8)];r.push((i&1<<n%8)>0)}return t.offset+=Math.ceil(e/8),r}function t2(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeInt32LE(t[r],r*4);return e}function r2(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readInt32LE(t.offset)),t.offset+=4;return r}function n2(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)Is.default.writeInt64LE(t[r],e,r*8);return e}function i2(t,e){let r=[];for(let n=0;n<e;n++)r.push(Is.default.readInt64LE(t.buffer,t.offset)),t.offset+=8;return r}function o2(t){let e=Buffer.alloc(12*t.length);for(let r=0;r<t.length;r++)t[r]>=0?(Is.default.writeInt64LE(t[r],e,r*12),e.writeUInt32LE(0,r*12+8)):(Is.default.writeInt64LE(~-t[r]+1,e,r*12),e.writeUInt32LE(4294967295,r*12+8));return e}function f2(t,e){let r=[];for(let n=0;n<e;n++){let i=Is.default.readInt64LE(t.buffer,t.offset);t.buffer.readUInt32LE(t.offset+8)===4294967295?r.push(~-i+1):r.push(i),t.offset+=12}return r}function s2(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeFloatLE(t[r],r*4);return e}function a2(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readFloatLE(t.offset)),t.offset+=4;return r}function l2(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)e.writeDoubleLE(t[r],r*8);return e}function u2(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readDoubleLE(t.offset)),t.offset+=8;return r}function c2(t){let e=0;for(let i=0;i<t.length;i++)t[i]=Buffer.from(t[i]),e+=4+t[i].length;let r=Buffer.alloc(e),n=0;for(let i=0;i<t.length;i++)r.writeUInt32LE(t[i].length,n),t[i].copy(r,n+4),n+=4+t[i].length;return r}function p2(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer.readUInt32LE(t.offset);t.offset+=4,r.push(t.buffer.slice(t.offset,t.offset+i)),t.offset+=i}return r}function d2(t,e){if(!e.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let r=0;r<t.length;r++)if(t[r]=Buffer.from(t[r]),t[r].length!==e.typeLength)throw new Error(`invalid value for FIXED_LEN_BYTE_ARRAY: ${t[r]}`);return Buffer.concat(t)}function m2(t,e,r){let n=[];if(!r.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let i=0;i<e;i++)n.push(t.buffer.slice(t.offset,t.offset+r.typeLength)),t.offset+=r.typeLength;return n}var Is,Dv=K(()=>{Is=ce(Av())});var Hv=k((x5,Rv)=>{Rv.exports=Pv;var Nv=128,w2=127,h2=~w2,b2=Math.pow(2,31);function Pv(t,e,r){e=e||[],r=r||0;for(var n=r;t>=b2;)e[r++]=t&255|Nv,t/=128;for(;t&h2;)e[r++]=t&255|Nv,t>>>=7;return e[r]=t|0,Pv.bytes=r-n+1,e}});var zv=k((S5,Mv)=>{Mv.exports=Rh;var g2=128,Uv=127;function Rh(t,e){var r=0,e=e||0,n=0,i=e,o,f=t.length;do{if(i>=f)throw Rh.bytes=0,new RangeError("Could not decode varint");o=t[i++],r+=n<28?(o&Uv)<<n:(o&Uv)*Math.pow(2,n),n+=7}while(o>=g2);return Rh.bytes=i-e,r}});var Vv=k((E5,Lv)=>{var y2=Math.pow(2,7),j2=Math.pow(2,14),_2=Math.pow(2,21),q2=Math.pow(2,28),v2=Math.pow(2,35),T2=Math.pow(2,42),k2=Math.pow(2,49),B2=Math.pow(2,56),I2=Math.pow(2,63);Lv.exports=function(t){return t<y2?1:t<j2?2:t<_2?3:t<q2?4:t<v2?5:t<T2?6:t<k2?7:t<B2?8:t<I2?9:10}});var Wv=k((A5,Cv)=>{Cv.exports={encode:Hv(),decode:zv(),encodingLength:Vv()}});function Kv(t,e,r){if(!("bitWidth"in r))throw new Error("bitWidth is required");switch(t){case"BOOLEAN":case"INT32":case"INT64":e=e.map(s=>parseInt(s,10));break;default:throw new Error(`unsupported type: ${t}`)}let n=Buffer.alloc(0),i=[],o=0;for(let s=0;s<e.length;s++)o===0&&i.length%8==0&&e[s]===e[s+1]?(i.length&&(n=Buffer.concat([n,Yv(i,r)]),i=[]),o=1):o>0&&e[s]===e[s-1]?o+=1:(o&&(n=Buffer.concat([n,Gv(e[s-1],o,r)]),o=0),i.push(e[s]));if(o?n=Buffer.concat([n,Gv(e[e.length-1],o,r)]):i.length&&(n=Buffer.concat([n,Yv(i,r)])),r.disableEnvelope)return n;let f=Buffer.alloc(n.length+4);return f.writeUInt32LE(n.length,void 0),n.copy(f,4),f}function ip(t,e,r,n){if(!("bitWidth"in n))throw new Error("bitWidth is required");n.disableEnvelope||(e.offset+=4);let i=[];for(;i.length<r;){let o=Rl.default.decode(e.buffer,e.offset);if(e.offset+=Rl.default.encodingLength(o),o&1){let f=(o>>1)*8;i.push(...x2(e,f,n))}else{let f=o>>1;i.push(...S2(e,f,n))}}if(i=i.slice(0,r),i.length!==r)throw new Error("invalid RLE encoding");return i}function x2(t,e,r){let n=r.bitWidth;if(e%8!=0)throw new Error("must be a multiple of 8");let i=new Array(e).fill(0);for(let o=0;o<n*e;o++)t.buffer[t.offset+Math.floor(o/8)]&1<<o%8&&(i[Math.floor(o/n)]|=1<<o%n);return t.offset+=n*(e/8),i}function S2(t,e,r){let n=r.bitWidth,i=0;for(let o=0;o<Math.ceil(n/8);o++)i<<8,i+=t.buffer[t.offset],t.offset+=1;return new Array(e).fill(i)}function Yv(t,e){let r=e.bitWidth;for(let i=0;i<t.length%8;i++)t.push(0);let n=Buffer.alloc(Math.ceil(r*(t.length/8)));for(let i=0;i<r*t.length;i++)(t[Math.floor(i/r)]&1<<i%r)>0&&(n[Math.floor(i/8)]|=1<<i%8);return Buffer.concat([Buffer.from(Rl.default.encode(t.length/8<<1|1)),n])}function Gv(t,e,r){let n=r.bitWidth,i=Buffer.alloc(Math.ceil(n/8));for(let o=0;o<i.length;o++)i.writeUInt8(t&255,o),t>>8;return Buffer.concat([Buffer.from(Rl.default.encode(e<<1)),i])}var Rl,Hh=K(()=>{Rl=ce(Wv())});function Uh(t,e,r,n){return n.bitWidth=e.buffer.slice(e.offset,e.offset+1).readInt8(0),e.offset+=1,ip(t,e,r,{...n,disableEnvelope:!0})}function Mh(t,e,r,n){throw new Error("Encode dictionary functionality is not supported")}var Zv=K(()=>{Hh()});var Jv=K(()=>{});var Hl,zh=K(()=>{Dv();Hh();Zv();Jv();Hl={PLAIN:{encodeValues:Ov,decodeValues:Fv},RLE:{encodeValues:Kv,decodeValues:ip},PLAIN_DICTIONARY:{encodeValues:Mh,decodeValues:Uh},RLE_DICTIONARY:{encodeValues:Mh,decodeValues:Uh}}});var Jn,E2,A2,O2,F2,Fn,Qv,D2,Xv=K(()=>{Jn={self:typeof self!="undefined"&&self,window:typeof window!="undefined"&&window,global:typeof global!="undefined"&&global,document:typeof document!="undefined"&&document},E2=Jn.self||Jn.window||Jn.global||{},A2=Jn.window||Jn.self||Jn.global||{},O2=Jn.global||Jn.self||Jn.window||{},F2=Jn.document||{},Fn=Boolean(typeof process!="object"||String(process)!=="[object process]"||process.browser),Qv=typeof process!="undefined"&&process.version&&/v([0-9]*)/.exec(process.version),D2=Qv&&parseFloat(Qv[1])||0});var $v=K(()=>{});function op(t){return t&&typeof t=="object"&&t.isBuffer}function fp(t){return Lh.toBuffer?Lh.toBuffer(t):t}function Vh(t){return op(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}var Ch=K(()=>{$v()});function Yr(t){if(op(t))return Vh(t);if(t instanceof ArrayBuffer)return t;if(ArrayBuffer.isView(t))return t.byteOffset===0&&t.byteLength===t.buffer.byteLength?t.buffer:t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength);if(typeof t=="string"){let e=t;return new TextEncoder().encode(e).buffer}if(t&&typeof t=="object"&&t._toArrayBuffer)return t._toArrayBuffer();throw new Error("toArrayBuffer")}function Wh(...t){let e=t.map(o=>o instanceof ArrayBuffer?new Uint8Array(o):o),r=e.reduce((o,f)=>o+f.byteLength,0),n=new Uint8Array(r),i=0;for(let o of e)n.set(o,i),i+=o.byteLength;return n.buffer}var Kh=K(()=>{Ch()});async function Yh(t){let e=[];for await(let r of t)e.push(r);return Wh(...e)}var eT=K(()=>{Kh()});var tT=k(()=>{});var Hi,vo=K(()=>{Xv();Kh();eT();Ch();Hi=ce(tT())});var vr,To=K(()=>{vo();vr=class{constructor(e){this.compressBatches=this.compressBatches.bind(this),this.decompressBatches=this.decompressBatches.bind(this)}async preload(){}async compress(e){return await this.preload(),this.compressSync(e)}async decompress(e,r){return await this.preload(),this.decompressSync(e,r)}compressSync(e){throw new Error(`${this.name}: sync compression not supported`)}decompressSync(e,r){throw new Error(`${this.name}: sync decompression not supported`)}async*compressBatches(e){let r=await this.concatenate(e);yield this.compress(r)}async*decompressBatches(e){let r=await this.concatenate(e);yield this.decompress(r)}concatenate(e){return Yh(e)}improveError(e){return e.message.includes(this.name)||(e.message=`${this.name} ${e.message}`),e}}});var sp,rT=K(()=>{To();sp=class extends vr{constructor(e){super(e);this.name="uncompressed";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return e}decompressSync(e){return e}async*compressBatches(e){return yield*e}async*decompressBatches(e){return yield*e}}});var Ui=k(Tr=>{"use strict";var N2=typeof Uint8Array!="undefined"&&typeof Uint16Array!="undefined"&&typeof Int32Array!="undefined";function P2(t,e){return Object.prototype.hasOwnProperty.call(t,e)}Tr.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var r=e.shift();if(!!r){if(typeof r!="object")throw new TypeError(r+"must be non-object");for(var n in r)P2(r,n)&&(t[n]=r[n])}}return t};Tr.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var R2={arraySet:function(t,e,r,n,i){if(e.subarray&&t.subarray){t.set(e.subarray(r,r+n),i);return}for(var o=0;o<n;o++)t[i+o]=e[r+o]},flattenChunks:function(t){var e,r,n,i,o,f;for(n=0,e=0,r=t.length;e<r;e++)n+=t[e].length;for(f=new Uint8Array(n),i=0,e=0,r=t.length;e<r;e++)o=t[e],f.set(o,i),i+=o.length;return f}},H2={arraySet:function(t,e,r,n,i){for(var o=0;o<n;o++)t[i+o]=e[r+o]},flattenChunks:function(t){return[].concat.apply([],t)}};Tr.setTyped=function(t){t?(Tr.Buf8=Uint8Array,Tr.Buf16=Uint16Array,Tr.Buf32=Int32Array,Tr.assign(Tr,R2)):(Tr.Buf8=Array,Tr.Buf16=Array,Tr.Buf32=Array,Tr.assign(Tr,H2))};Tr.setTyped(N2)});var kT=k(Es=>{"use strict";var U2=Ui(),M2=4,nT=0,iT=1,z2=2;function xs(t){for(var e=t.length;--e>=0;)t[e]=0}var L2=0,oT=1,V2=2,C2=3,W2=258,Gh=29,Ul=256,Ml=Ul+1+Gh,Ss=30,Zh=19,fT=2*Ml+1,Bf=15,Jh=16,K2=7,Qh=256,sT=16,aT=17,lT=18,Xh=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],ap=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],Y2=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],uT=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],G2=512,Mi=new Array((Ml+2)*2);xs(Mi);var zl=new Array(Ss*2);xs(zl);var Ll=new Array(G2);xs(Ll);var Vl=new Array(W2-C2+1);xs(Vl);var $h=new Array(Gh);xs($h);var lp=new Array(Ss);xs(lp);function eb(t,e,r,n,i){this.static_tree=t,this.extra_bits=e,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=t&&t.length}var cT,pT,dT;function tb(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function mT(t){return t<256?Ll[t]:Ll[256+(t>>>7)]}function Cl(t,e){t.pending_buf[t.pending++]=e&255,t.pending_buf[t.pending++]=e>>>8&255}function Rr(t,e,r){t.bi_valid>Jh-r?(t.bi_buf|=e<<t.bi_valid&65535,Cl(t,t.bi_buf),t.bi_buf=e>>Jh-t.bi_valid,t.bi_valid+=r-Jh):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function Qn(t,e,r){Rr(t,r[e*2],r[e*2+1])}function wT(t,e){var r=0;do r|=t&1,t>>>=1,r<<=1;while(--e>0);return r>>>1}function Z2(t){t.bi_valid===16?(Cl(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=t.bi_buf&255,t.bi_buf>>=8,t.bi_valid-=8)}function J2(t,e){var r=e.dyn_tree,n=e.max_code,i=e.stat_desc.static_tree,o=e.stat_desc.has_stree,f=e.stat_desc.extra_bits,s=e.stat_desc.extra_base,u=e.stat_desc.max_length,l,c,w,p,b,v,H=0;for(p=0;p<=Bf;p++)t.bl_count[p]=0;for(r[t.heap[t.heap_max]*2+1]=0,l=t.heap_max+1;l<fT;l++)c=t.heap[l],p=r[r[c*2+1]*2+1]+1,p>u&&(p=u,H++),r[c*2+1]=p,!(c>n)&&(t.bl_count[p]++,b=0,c>=s&&(b=f[c-s]),v=r[c*2],t.opt_len+=v*(p+b),o&&(t.static_len+=v*(i[c*2+1]+b)));if(H!==0){do{for(p=u-1;t.bl_count[p]===0;)p--;t.bl_count[p]--,t.bl_count[p+1]+=2,t.bl_count[u]--,H-=2}while(H>0);for(p=u;p!==0;p--)for(c=t.bl_count[p];c!==0;)w=t.heap[--l],!(w>n)&&(r[w*2+1]!==p&&(t.opt_len+=(p-r[w*2+1])*r[w*2],r[w*2+1]=p),c--)}}function hT(t,e,r){var n=new Array(Bf+1),i=0,o,f;for(o=1;o<=Bf;o++)n[o]=i=i+r[o-1]<<1;for(f=0;f<=e;f++){var s=t[f*2+1];s!==0&&(t[f*2]=wT(n[s]++,s))}}function Q2(){var t,e,r,n,i,o=new Array(Bf+1);for(r=0,n=0;n<Gh-1;n++)for($h[n]=r,t=0;t<1<<Xh[n];t++)Vl[r++]=n;for(Vl[r-1]=n,i=0,n=0;n<16;n++)for(lp[n]=i,t=0;t<1<<ap[n];t++)Ll[i++]=n;for(i>>=7;n<Ss;n++)for(lp[n]=i<<7,t=0;t<1<<ap[n]-7;t++)Ll[256+i++]=n;for(e=0;e<=Bf;e++)o[e]=0;for(t=0;t<=143;)Mi[t*2+1]=8,t++,o[8]++;for(;t<=255;)Mi[t*2+1]=9,t++,o[9]++;for(;t<=279;)Mi[t*2+1]=7,t++,o[7]++;for(;t<=287;)Mi[t*2+1]=8,t++,o[8]++;for(hT(Mi,Ml+1,o),t=0;t<Ss;t++)zl[t*2+1]=5,zl[t*2]=wT(t,5);cT=new eb(Mi,Xh,Ul+1,Ml,Bf),pT=new eb(zl,ap,0,Ss,Bf),dT=new eb(new Array(0),Y2,0,Zh,K2)}function bT(t){var e;for(e=0;e<Ml;e++)t.dyn_ltree[e*2]=0;for(e=0;e<Ss;e++)t.dyn_dtree[e*2]=0;for(e=0;e<Zh;e++)t.bl_tree[e*2]=0;t.dyn_ltree[Qh*2]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function gT(t){t.bi_valid>8?Cl(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function X2(t,e,r,n){gT(t),n&&(Cl(t,r),Cl(t,~r)),U2.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}function yT(t,e,r,n){var i=e*2,o=r*2;return t[i]<t[o]||t[i]===t[o]&&n[e]<=n[r]}function rb(t,e,r){for(var n=t.heap[r],i=r<<1;i<=t.heap_len&&(i<t.heap_len&&yT(e,t.heap[i+1],t.heap[i],t.depth)&&i++,!yT(e,n,t.heap[i],t.depth));)t.heap[r]=t.heap[i],r=i,i<<=1;t.heap[r]=n}function jT(t,e,r){var n,i,o=0,f,s;if(t.last_lit!==0)do n=t.pending_buf[t.d_buf+o*2]<<8|t.pending_buf[t.d_buf+o*2+1],i=t.pending_buf[t.l_buf+o],o++,n===0?Qn(t,i,e):(f=Vl[i],Qn(t,f+Ul+1,e),s=Xh[f],s!==0&&(i-=$h[f],Rr(t,i,s)),n--,f=mT(n),Qn(t,f,r),s=ap[f],s!==0&&(n-=lp[f],Rr(t,n,s)));while(o<t.last_lit);Qn(t,Qh,e)}function nb(t,e){var r=e.dyn_tree,n=e.stat_desc.static_tree,i=e.stat_desc.has_stree,o=e.stat_desc.elems,f,s,u=-1,l;for(t.heap_len=0,t.heap_max=fT,f=0;f<o;f++)r[f*2]!==0?(t.heap[++t.heap_len]=u=f,t.depth[f]=0):r[f*2+1]=0;for(;t.heap_len<2;)l=t.heap[++t.heap_len]=u<2?++u:0,r[l*2]=1,t.depth[l]=0,t.opt_len--,i&&(t.static_len-=n[l*2+1]);for(e.max_code=u,f=t.heap_len>>1;f>=1;f--)rb(t,r,f);l=o;do f=t.heap[1],t.heap[1]=t.heap[t.heap_len--],rb(t,r,1),s=t.heap[1],t.heap[--t.heap_max]=f,t.heap[--t.heap_max]=s,r[l*2]=r[f*2]+r[s*2],t.depth[l]=(t.depth[f]>=t.depth[s]?t.depth[f]:t.depth[s])+1,r[f*2+1]=r[s*2+1]=l,t.heap[1]=l++,rb(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],J2(t,e),hT(r,u,t.bl_count)}function _T(t,e,r){var n,i=-1,o,f=e[0*2+1],s=0,u=7,l=4;for(f===0&&(u=138,l=3),e[(r+1)*2+1]=65535,n=0;n<=r;n++)o=f,f=e[(n+1)*2+1],!(++s<u&&o===f)&&(s<l?t.bl_tree[o*2]+=s:o!==0?(o!==i&&t.bl_tree[o*2]++,t.bl_tree[sT*2]++):s<=10?t.bl_tree[aT*2]++:t.bl_tree[lT*2]++,s=0,i=o,f===0?(u=138,l=3):o===f?(u=6,l=3):(u=7,l=4))}function qT(t,e,r){var n,i=-1,o,f=e[0*2+1],s=0,u=7,l=4;for(f===0&&(u=138,l=3),n=0;n<=r;n++)if(o=f,f=e[(n+1)*2+1],!(++s<u&&o===f)){if(s<l)do Qn(t,o,t.bl_tree);while(--s!=0);else o!==0?(o!==i&&(Qn(t,o,t.bl_tree),s--),Qn(t,sT,t.bl_tree),Rr(t,s-3,2)):s<=10?(Qn(t,aT,t.bl_tree),Rr(t,s-3,3)):(Qn(t,lT,t.bl_tree),Rr(t,s-11,7));s=0,i=o,f===0?(u=138,l=3):o===f?(u=6,l=3):(u=7,l=4)}}function $2(t){var e;for(_T(t,t.dyn_ltree,t.l_desc.max_code),_T(t,t.dyn_dtree,t.d_desc.max_code),nb(t,t.bl_desc),e=Zh-1;e>=3&&t.bl_tree[uT[e]*2+1]===0;e--);return t.opt_len+=3*(e+1)+5+5+4,e}function eF(t,e,r,n){var i;for(Rr(t,e-257,5),Rr(t,r-1,5),Rr(t,n-4,4),i=0;i<n;i++)Rr(t,t.bl_tree[uT[i]*2+1],3);qT(t,t.dyn_ltree,e-1),qT(t,t.dyn_dtree,r-1)}function tF(t){var e=4093624447,r;for(r=0;r<=31;r++,e>>>=1)if(e&1&&t.dyn_ltree[r*2]!==0)return nT;if(t.dyn_ltree[9*2]!==0||t.dyn_ltree[10*2]!==0||t.dyn_ltree[13*2]!==0)return iT;for(r=32;r<Ul;r++)if(t.dyn_ltree[r*2]!==0)return iT;return nT}var vT=!1;function rF(t){vT||(Q2(),vT=!0),t.l_desc=new tb(t.dyn_ltree,cT),t.d_desc=new tb(t.dyn_dtree,pT),t.bl_desc=new tb(t.bl_tree,dT),t.bi_buf=0,t.bi_valid=0,bT(t)}function TT(t,e,r,n){Rr(t,(L2<<1)+(n?1:0),3),X2(t,e,r,!0)}function nF(t){Rr(t,oT<<1,3),Qn(t,Qh,Mi),Z2(t)}function iF(t,e,r,n){var i,o,f=0;t.level>0?(t.strm.data_type===z2&&(t.strm.data_type=tF(t)),nb(t,t.l_desc),nb(t,t.d_desc),f=$2(t),i=t.opt_len+3+7>>>3,o=t.static_len+3+7>>>3,o<=i&&(i=o)):i=o=r+5,r+4<=i&&e!==-1?TT(t,e,r,n):t.strategy===M2||o===i?(Rr(t,(oT<<1)+(n?1:0),3),jT(t,Mi,zl)):(Rr(t,(V2<<1)+(n?1:0),3),eF(t,t.l_desc.max_code+1,t.d_desc.max_code+1,f+1),jT(t,t.dyn_ltree,t.dyn_dtree)),bT(t),n&&gT(t)}function oF(t,e,r){return t.pending_buf[t.d_buf+t.last_lit*2]=e>>>8&255,t.pending_buf[t.d_buf+t.last_lit*2+1]=e&255,t.pending_buf[t.l_buf+t.last_lit]=r&255,t.last_lit++,e===0?t.dyn_ltree[r*2]++:(t.matches++,e--,t.dyn_ltree[(Vl[r]+Ul+1)*2]++,t.dyn_dtree[mT(e)*2]++),t.last_lit===t.lit_bufsize-1}Es._tr_init=rF;Es._tr_stored_block=TT;Es._tr_flush_block=iF;Es._tr_tally=oF;Es._tr_align=nF});var ib=k((pW,BT)=>{"use strict";function fF(t,e,r,n){for(var i=t&65535|0,o=t>>>16&65535|0,f=0;r!==0;){f=r>2e3?2e3:r,r-=f;do i=i+e[n++]|0,o=o+i|0;while(--f);i%=65521,o%=65521}return i|o<<16|0}BT.exports=fF});var ob=k((dW,IT)=>{"use strict";function sF(){for(var t,e=[],r=0;r<256;r++){t=r;for(var n=0;n<8;n++)t=t&1?3988292384^t>>>1:t>>>1;e[r]=t}return e}var aF=sF();function lF(t,e,r,n){var i=aF,o=n+r;t^=-1;for(var f=n;f<o;f++)t=t>>>8^i[(t^e[f])&255];return t^-1}IT.exports=lF});var up=k((mW,xT)=>{"use strict";xT.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}});var RT=k(ei=>{"use strict";var kr=Ui(),fn=kT(),ST=ib(),ko=ob(),uF=up(),If=0,cF=1,pF=3,Bo=4,ET=5,Xn=0,AT=1,sn=-2,dF=-3,fb=-5,mF=-1,wF=1,cp=2,hF=3,bF=4,gF=0,yF=2,pp=8,jF=9,_F=15,qF=8,vF=29,TF=256,sb=TF+1+vF,kF=30,BF=19,IF=2*sb+1,xF=15,Ke=3,Io=258,Dn=Io+Ke+1,SF=32,dp=42,ab=69,mp=73,wp=91,hp=103,xf=113,Wl=666,Qt=1,Kl=2,Sf=3,As=4,EF=3;function xo(t,e){return t.msg=uF[e],e}function OT(t){return(t<<1)-(t>4?9:0)}function So(t){for(var e=t.length;--e>=0;)t[e]=0}function Eo(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),r!==0&&(kr.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,e.pending===0&&(e.pending_out=0))}function sr(t,e){fn._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,Eo(t.strm)}function tt(t,e){t.pending_buf[t.pending++]=e}function Yl(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=e&255}function AF(t,e,r,n){var i=t.avail_in;return i>n&&(i=n),i===0?0:(t.avail_in-=i,kr.arraySet(e,t.input,t.next_in,i,r),t.state.wrap===1?t.adler=ST(t.adler,e,i,r):t.state.wrap===2&&(t.adler=ko(t.adler,e,i,r)),t.next_in+=i,t.total_in+=i,i)}function FT(t,e){var r=t.max_chain_length,n=t.strstart,i,o,f=t.prev_length,s=t.nice_match,u=t.strstart>t.w_size-Dn?t.strstart-(t.w_size-Dn):0,l=t.window,c=t.w_mask,w=t.prev,p=t.strstart+Io,b=l[n+f-1],v=l[n+f];t.prev_length>=t.good_match&&(r>>=2),s>t.lookahead&&(s=t.lookahead);do if(i=e,!(l[i+f]!==v||l[i+f-1]!==b||l[i]!==l[n]||l[++i]!==l[n+1])){n+=2,i++;do;while(l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&n<p);if(o=Io-(p-n),n=p-Io,o>f){if(t.match_start=e,f=o,o>=s)break;b=l[n+f-1],v=l[n+f]}}while((e=w[e&c])>u&&--r!=0);return f<=t.lookahead?f:t.lookahead}function Ef(t){var e=t.w_size,r,n,i,o,f;do{if(o=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Dn)){kr.arraySet(t.window,t.window,e,e,0),t.match_start-=e,t.strstart-=e,t.block_start-=e,n=t.hash_size,r=n;do i=t.head[--r],t.head[r]=i>=e?i-e:0;while(--n);n=e,r=n;do i=t.prev[--r],t.prev[r]=i>=e?i-e:0;while(--n);o+=e}if(t.strm.avail_in===0)break;if(n=AF(t.strm,t.window,t.strstart+t.lookahead,o),t.lookahead+=n,t.lookahead+t.insert>=Ke)for(f=t.strstart-t.insert,t.ins_h=t.window[f],t.ins_h=(t.ins_h<<t.hash_shift^t.window[f+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[f+Ke-1])&t.hash_mask,t.prev[f&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=f,f++,t.insert--,!(t.lookahead+t.insert<Ke)););}while(t.lookahead<Dn&&t.strm.avail_in!==0)}function OF(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(Ef(t),t.lookahead===0&&e===If)return Qt;if(t.lookahead===0)break}t.strstart+=t.lookahead,t.lookahead=0;var n=t.block_start+r;if((t.strstart===0||t.strstart>=n)&&(t.lookahead=t.strstart-n,t.strstart=n,sr(t,!1),t.strm.avail_out===0)||t.strstart-t.block_start>=t.w_size-Dn&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=0,e===Bo?(sr(t,!0),t.strm.avail_out===0?Sf:As):(t.strstart>t.block_start&&(sr(t,!1),t.strm.avail_out===0),Qt)}function lb(t,e){for(var r,n;;){if(t.lookahead<Dn){if(Ef(t),t.lookahead<Dn&&e===If)return Qt;if(t.lookahead===0)break}if(r=0,t.lookahead>=Ke&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Ke-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),r!==0&&t.strstart-r<=t.w_size-Dn&&(t.match_length=FT(t,r)),t.match_length>=Ke)if(n=fn._tr_tally(t,t.strstart-t.match_start,t.match_length-Ke),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=Ke){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Ke-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart;while(--t.match_length!=0);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else n=fn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(n&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=t.strstart<Ke-1?t.strstart:Ke-1,e===Bo?(sr(t,!0),t.strm.avail_out===0?Sf:As):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Kl}function Os(t,e){for(var r,n,i;;){if(t.lookahead<Dn){if(Ef(t),t.lookahead<Dn&&e===If)return Qt;if(t.lookahead===0)break}if(r=0,t.lookahead>=Ke&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Ke-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=Ke-1,r!==0&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-Dn&&(t.match_length=FT(t,r),t.match_length<=5&&(t.strategy===wF||t.match_length===Ke&&t.strstart-t.match_start>4096)&&(t.match_length=Ke-1)),t.prev_length>=Ke&&t.match_length<=t.prev_length){i=t.strstart+t.lookahead-Ke,n=fn._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-Ke),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=i&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Ke-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart);while(--t.prev_length!=0);if(t.match_available=0,t.match_length=Ke-1,t.strstart++,n&&(sr(t,!1),t.strm.avail_out===0))return Qt}else if(t.match_available){if(n=fn._tr_tally(t,0,t.window[t.strstart-1]),n&&sr(t,!1),t.strstart++,t.lookahead--,t.strm.avail_out===0)return Qt}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(n=fn._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<Ke-1?t.strstart:Ke-1,e===Bo?(sr(t,!0),t.strm.avail_out===0?Sf:As):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Kl}function FF(t,e){for(var r,n,i,o,f=t.window;;){if(t.lookahead<=Io){if(Ef(t),t.lookahead<=Io&&e===If)return Qt;if(t.lookahead===0)break}if(t.match_length=0,t.lookahead>=Ke&&t.strstart>0&&(i=t.strstart-1,n=f[i],n===f[++i]&&n===f[++i]&&n===f[++i])){o=t.strstart+Io;do;while(n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&i<o);t.match_length=Io-(o-i),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=Ke?(r=fn._tr_tally(t,1,t.match_length-Ke),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=fn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=0,e===Bo?(sr(t,!0),t.strm.avail_out===0?Sf:As):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Kl}function DF(t,e){for(var r;;){if(t.lookahead===0&&(Ef(t),t.lookahead===0)){if(e===If)return Qt;break}if(t.match_length=0,r=fn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(sr(t,!1),t.strm.avail_out===0))return Qt}return t.insert=0,e===Bo?(sr(t,!0),t.strm.avail_out===0?Sf:As):t.last_lit&&(sr(t,!1),t.strm.avail_out===0)?Qt:Kl}function $n(t,e,r,n,i){this.good_length=t,this.max_lazy=e,this.nice_length=r,this.max_chain=n,this.func=i}var Fs;Fs=[new $n(0,0,0,0,OF),new $n(4,4,8,4,lb),new $n(4,5,16,8,lb),new $n(4,6,32,32,lb),new $n(4,4,16,16,Os),new $n(8,16,32,32,Os),new $n(8,16,128,128,Os),new $n(8,32,128,256,Os),new $n(32,128,258,1024,Os),new $n(32,258,258,4096,Os)];function NF(t){t.window_size=2*t.w_size,So(t.head),t.max_lazy_match=Fs[t.level].max_lazy,t.good_match=Fs[t.level].good_length,t.nice_match=Fs[t.level].nice_length,t.max_chain_length=Fs[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=Ke-1,t.match_available=0,t.ins_h=0}function PF(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=pp,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new kr.Buf16(IF*2),this.dyn_dtree=new kr.Buf16((2*kF+1)*2),this.bl_tree=new kr.Buf16((2*BF+1)*2),So(this.dyn_ltree),So(this.dyn_dtree),So(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new kr.Buf16(xF+1),this.heap=new kr.Buf16(2*sb+1),So(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new kr.Buf16(2*sb+1),So(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function DT(t){var e;return!t||!t.state?xo(t,sn):(t.total_in=t.total_out=0,t.data_type=yF,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?dp:xf,t.adler=e.wrap===2?0:1,e.last_flush=If,fn._tr_init(e),Xn)}function NT(t){var e=DT(t);return e===Xn&&NF(t.state),e}function RF(t,e){return!t||!t.state||t.state.wrap!==2?sn:(t.state.gzhead=e,Xn)}function PT(t,e,r,n,i,o){if(!t)return sn;var f=1;if(e===mF&&(e=6),n<0?(f=0,n=-n):n>15&&(f=2,n-=16),i<1||i>jF||r!==pp||n<8||n>15||e<0||e>9||o<0||o>bF)return xo(t,sn);n===8&&(n=9);var s=new PF;return t.state=s,s.strm=t,s.wrap=f,s.gzhead=null,s.w_bits=n,s.w_size=1<<s.w_bits,s.w_mask=s.w_size-1,s.hash_bits=i+7,s.hash_size=1<<s.hash_bits,s.hash_mask=s.hash_size-1,s.hash_shift=~~((s.hash_bits+Ke-1)/Ke),s.window=new kr.Buf8(s.w_size*2),s.head=new kr.Buf16(s.hash_size),s.prev=new kr.Buf16(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=s.lit_bufsize*4,s.pending_buf=new kr.Buf8(s.pending_buf_size),s.d_buf=1*s.lit_bufsize,s.l_buf=(1+2)*s.lit_bufsize,s.level=e,s.strategy=o,s.method=r,NT(t)}function HF(t,e){return PT(t,e,pp,_F,qF,gF)}function UF(t,e){var r,n,i,o;if(!t||!t.state||e>ET||e<0)return t?xo(t,sn):sn;if(n=t.state,!t.output||!t.input&&t.avail_in!==0||n.status===Wl&&e!==Bo)return xo(t,t.avail_out===0?fb:sn);if(n.strm=t,r=n.last_flush,n.last_flush=e,n.status===dp)if(n.wrap===2)t.adler=0,tt(n,31),tt(n,139),tt(n,8),n.gzhead?(tt(n,(n.gzhead.text?1:0)+(n.gzhead.hcrc?2:0)+(n.gzhead.extra?4:0)+(n.gzhead.name?8:0)+(n.gzhead.comment?16:0)),tt(n,n.gzhead.time&255),tt(n,n.gzhead.time>>8&255),tt(n,n.gzhead.time>>16&255),tt(n,n.gzhead.time>>24&255),tt(n,n.level===9?2:n.strategy>=cp||n.level<2?4:0),tt(n,n.gzhead.os&255),n.gzhead.extra&&n.gzhead.extra.length&&(tt(n,n.gzhead.extra.length&255),tt(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(t.adler=ko(t.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=ab):(tt(n,0),tt(n,0),tt(n,0),tt(n,0),tt(n,0),tt(n,n.level===9?2:n.strategy>=cp||n.level<2?4:0),tt(n,EF),n.status=xf);else{var f=pp+(n.w_bits-8<<4)<<8,s=-1;n.strategy>=cp||n.level<2?s=0:n.level<6?s=1:n.level===6?s=2:s=3,f|=s<<6,n.strstart!==0&&(f|=SF),f+=31-f%31,n.status=xf,Yl(n,f),n.strstart!==0&&(Yl(n,t.adler>>>16),Yl(n,t.adler&65535)),t.adler=1}if(n.status===ab)if(n.gzhead.extra){for(i=n.pending;n.gzindex<(n.gzhead.extra.length&65535)&&!(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=ko(t.adler,n.pending_buf,n.pending-i,i)),Eo(t),i=n.pending,n.pending===n.pending_buf_size));)tt(n,n.gzhead.extra[n.gzindex]&255),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(t.adler=ko(t.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=mp)}else n.status=mp;if(n.status===mp)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=ko(t.adler,n.pending_buf,n.pending-i,i)),Eo(t),i=n.pending,n.pending===n.pending_buf_size)){o=1;break}n.gzindex<n.gzhead.name.length?o=n.gzhead.name.charCodeAt(n.gzindex++)&255:o=0,tt(n,o)}while(o!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=ko(t.adler,n.pending_buf,n.pending-i,i)),o===0&&(n.gzindex=0,n.status=wp)}else n.status=wp;if(n.status===wp)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=ko(t.adler,n.pending_buf,n.pending-i,i)),Eo(t),i=n.pending,n.pending===n.pending_buf_size)){o=1;break}n.gzindex<n.gzhead.comment.length?o=n.gzhead.comment.charCodeAt(n.gzindex++)&255:o=0,tt(n,o)}while(o!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=ko(t.adler,n.pending_buf,n.pending-i,i)),o===0&&(n.status=hp)}else n.status=hp;if(n.status===hp&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&Eo(t),n.pending+2<=n.pending_buf_size&&(tt(n,t.adler&255),tt(n,t.adler>>8&255),t.adler=0,n.status=xf)):n.status=xf),n.pending!==0){if(Eo(t),t.avail_out===0)return n.last_flush=-1,Xn}else if(t.avail_in===0&&OT(e)<=OT(r)&&e!==Bo)return xo(t,fb);if(n.status===Wl&&t.avail_in!==0)return xo(t,fb);if(t.avail_in!==0||n.lookahead!==0||e!==If&&n.status!==Wl){var u=n.strategy===cp?DF(n,e):n.strategy===hF?FF(n,e):Fs[n.level].func(n,e);if((u===Sf||u===As)&&(n.status=Wl),u===Qt||u===Sf)return t.avail_out===0&&(n.last_flush=-1),Xn;if(u===Kl&&(e===cF?fn._tr_align(n):e!==ET&&(fn._tr_stored_block(n,0,0,!1),e===pF&&(So(n.head),n.lookahead===0&&(n.strstart=0,n.block_start=0,n.insert=0))),Eo(t),t.avail_out===0))return n.last_flush=-1,Xn}return e!==Bo?Xn:n.wrap<=0?AT:(n.wrap===2?(tt(n,t.adler&255),tt(n,t.adler>>8&255),tt(n,t.adler>>16&255),tt(n,t.adler>>24&255),tt(n,t.total_in&255),tt(n,t.total_in>>8&255),tt(n,t.total_in>>16&255),tt(n,t.total_in>>24&255)):(Yl(n,t.adler>>>16),Yl(n,t.adler&65535)),Eo(t),n.wrap>0&&(n.wrap=-n.wrap),n.pending!==0?Xn:AT)}function MF(t){var e;return!t||!t.state?sn:(e=t.state.status,e!==dp&&e!==ab&&e!==mp&&e!==wp&&e!==hp&&e!==xf&&e!==Wl?xo(t,sn):(t.state=null,e===xf?xo(t,dF):Xn))}function zF(t,e){var r=e.length,n,i,o,f,s,u,l,c;if(!t||!t.state||(n=t.state,f=n.wrap,f===2||f===1&&n.status!==dp||n.lookahead))return sn;for(f===1&&(t.adler=ST(t.adler,e,r,0)),n.wrap=0,r>=n.w_size&&(f===0&&(So(n.head),n.strstart=0,n.block_start=0,n.insert=0),c=new kr.Buf8(n.w_size),kr.arraySet(c,e,r-n.w_size,n.w_size,0),e=c,r=n.w_size),s=t.avail_in,u=t.next_in,l=t.input,t.avail_in=r,t.next_in=0,t.input=e,Ef(n);n.lookahead>=Ke;){i=n.strstart,o=n.lookahead-(Ke-1);do n.ins_h=(n.ins_h<<n.hash_shift^n.window[i+Ke-1])&n.hash_mask,n.prev[i&n.w_mask]=n.head[n.ins_h],n.head[n.ins_h]=i,i++;while(--o);n.strstart=i,n.lookahead=Ke-1,Ef(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=Ke-1,n.match_available=0,t.next_in=u,t.input=l,t.avail_in=s,n.wrap=f,Xn}ei.deflateInit=HF;ei.deflateInit2=PT;ei.deflateReset=NT;ei.deflateResetKeep=DT;ei.deflateSetHeader=RF;ei.deflate=UF;ei.deflateEnd=MF;ei.deflateSetDictionary=zF;ei.deflateInfo="pako deflate (from Nodeca project)"});var ub=k(Ds=>{"use strict";var bp=Ui(),HT=!0,UT=!0;try{String.fromCharCode.apply(null,[0])}catch{HT=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{UT=!1}var Gl=new bp.Buf8(256);for(zi=0;zi<256;zi++)Gl[zi]=zi>=252?6:zi>=248?5:zi>=240?4:zi>=224?3:zi>=192?2:1;var zi;Gl[254]=Gl[254]=1;Ds.string2buf=function(t){var e,r,n,i,o,f=t.length,s=0;for(i=0;i<f;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<f&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),s+=r<128?1:r<2048?2:r<65536?3:4;for(e=new bp.Buf8(s),o=0,i=0;o<s;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<f&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),r<128?e[o++]=r:r<2048?(e[o++]=192|r>>>6,e[o++]=128|r&63):r<65536?(e[o++]=224|r>>>12,e[o++]=128|r>>>6&63,e[o++]=128|r&63):(e[o++]=240|r>>>18,e[o++]=128|r>>>12&63,e[o++]=128|r>>>6&63,e[o++]=128|r&63);return e};function MT(t,e){if(e<65534&&(t.subarray&&UT||!t.subarray&&HT))return String.fromCharCode.apply(null,bp.shrinkBuf(t,e));for(var r="",n=0;n<e;n++)r+=String.fromCharCode(t[n]);return r}Ds.buf2binstring=function(t){return MT(t,t.length)};Ds.binstring2buf=function(t){for(var e=new bp.Buf8(t.length),r=0,n=e.length;r<n;r++)e[r]=t.charCodeAt(r);return e};Ds.buf2string=function(t,e){var r,n,i,o,f=e||t.length,s=new Array(f*2);for(n=0,r=0;r<f;){if(i=t[r++],i<128){s[n++]=i;continue}if(o=Gl[i],o>4){s[n++]=65533,r+=o-1;continue}for(i&=o===2?31:o===3?15:7;o>1&&r<f;)i=i<<6|t[r++]&63,o--;if(o>1){s[n++]=65533;continue}i<65536?s[n++]=i:(i-=65536,s[n++]=55296|i>>10&1023,s[n++]=56320|i&1023)}return MT(s,n)};Ds.utf8border=function(t,e){var r;for(e=e||t.length,e>t.length&&(e=t.length),r=e-1;r>=0&&(t[r]&192)==128;)r--;return r<0||r===0?e:r+Gl[t[r]]>e?r:e}});var cb=k((bW,zT)=>{"use strict";function LF(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}zT.exports=LF});var WT=k(Ql=>{"use strict";var Zl=RT(),Jl=Ui(),pb=ub(),db=up(),VF=cb(),LT=Object.prototype.toString,CF=0,mb=4,Ns=0,VT=1,CT=2,WF=-1,KF=0,YF=8;function Af(t){if(!(this instanceof Af))return new Af(t);this.options=Jl.assign({level:WF,method:YF,chunkSize:16384,windowBits:15,memLevel:8,strategy:KF,to:""},t||{});var e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new VF,this.strm.avail_out=0;var r=Zl.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==Ns)throw new Error(db[r]);if(e.header&&Zl.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(typeof e.dictionary=="string"?n=pb.string2buf(e.dictionary):LT.call(e.dictionary)==="[object ArrayBuffer]"?n=new Uint8Array(e.dictionary):n=e.dictionary,r=Zl.deflateSetDictionary(this.strm,n),r!==Ns)throw new Error(db[r]);this._dict_set=!0}}Af.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i,o;if(this.ended)return!1;o=e===~~e?e:e===!0?mb:CF,typeof t=="string"?r.input=pb.string2buf(t):LT.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new Jl.Buf8(n),r.next_out=0,r.avail_out=n),i=Zl.deflate(r,o),i!==VT&&i!==Ns)return this.onEnd(i),this.ended=!0,!1;(r.avail_out===0||r.avail_in===0&&(o===mb||o===CT))&&(this.options.to==="string"?this.onData(pb.buf2binstring(Jl.shrinkBuf(r.output,r.next_out))):this.onData(Jl.shrinkBuf(r.output,r.next_out)))}while((r.avail_in>0||r.avail_out===0)&&i!==VT);return o===mb?(i=Zl.deflateEnd(this.strm),this.onEnd(i),this.ended=!0,i===Ns):(o===CT&&(this.onEnd(Ns),r.avail_out=0),!0)};Af.prototype.onData=function(t){this.chunks.push(t)};Af.prototype.onEnd=function(t){t===Ns&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Jl.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function wb(t,e){var r=new Af(e);if(r.push(t,!0),r.err)throw r.msg||db[r.err];return r.result}function GF(t,e){return e=e||{},e.raw=!0,wb(t,e)}function ZF(t,e){return e=e||{},e.gzip=!0,wb(t,e)}Ql.Deflate=Af;Ql.deflate=wb;Ql.deflateRaw=GF;Ql.gzip=ZF});var YT=k((yW,KT)=>{"use strict";var gp=30,JF=12;KT.exports=function(e,r){var n,i,o,f,s,u,l,c,w,p,b,v,H,O,W,ne,U,M,P,F,ae,ie,de,Ze,_;n=e.state,i=e.next_in,Ze=e.input,o=i+(e.avail_in-5),f=e.next_out,_=e.output,s=f-(r-e.avail_out),u=f+(e.avail_out-257),l=n.dmax,c=n.wsize,w=n.whave,p=n.wnext,b=n.window,v=n.hold,H=n.bits,O=n.lencode,W=n.distcode,ne=(1<<n.lenbits)-1,U=(1<<n.distbits)-1;e:do{H<15&&(v+=Ze[i++]<<H,H+=8,v+=Ze[i++]<<H,H+=8),M=O[v&ne];t:for(;;){if(P=M>>>24,v>>>=P,H-=P,P=M>>>16&255,P===0)_[f++]=M&65535;else if(P&16){F=M&65535,P&=15,P&&(H<P&&(v+=Ze[i++]<<H,H+=8),F+=v&(1<<P)-1,v>>>=P,H-=P),H<15&&(v+=Ze[i++]<<H,H+=8,v+=Ze[i++]<<H,H+=8),M=W[v&U];r:for(;;){if(P=M>>>24,v>>>=P,H-=P,P=M>>>16&255,P&16){if(ae=M&65535,P&=15,H<P&&(v+=Ze[i++]<<H,H+=8,H<P&&(v+=Ze[i++]<<H,H+=8)),ae+=v&(1<<P)-1,ae>l){e.msg="invalid distance too far back",n.mode=gp;break e}if(v>>>=P,H-=P,P=f-s,ae>P){if(P=ae-P,P>w&&n.sane){e.msg="invalid distance too far back",n.mode=gp;break e}if(ie=0,de=b,p===0){if(ie+=c-P,P<F){F-=P;do _[f++]=b[ie++];while(--P);ie=f-ae,de=_}}else if(p<P){if(ie+=c+p-P,P-=p,P<F){F-=P;do _[f++]=b[ie++];while(--P);if(ie=0,p<F){P=p,F-=P;do _[f++]=b[ie++];while(--P);ie=f-ae,de=_}}}else if(ie+=p-P,P<F){F-=P;do _[f++]=b[ie++];while(--P);ie=f-ae,de=_}for(;F>2;)_[f++]=de[ie++],_[f++]=de[ie++],_[f++]=de[ie++],F-=3;F&&(_[f++]=de[ie++],F>1&&(_[f++]=de[ie++]))}else{ie=f-ae;do _[f++]=_[ie++],_[f++]=_[ie++],_[f++]=_[ie++],F-=3;while(F>2);F&&(_[f++]=_[ie++],F>1&&(_[f++]=_[ie++]))}}else if((P&64)==0){M=W[(M&65535)+(v&(1<<P)-1)];continue r}else{e.msg="invalid distance code",n.mode=gp;break e}break}}else if((P&64)==0){M=O[(M&65535)+(v&(1<<P)-1)];continue t}else if(P&32){n.mode=JF;break e}else{e.msg="invalid literal/length code",n.mode=gp;break e}break}}while(i<o&&f<u);F=H>>3,i-=F,H-=F<<3,v&=(1<<H)-1,e.next_in=i,e.next_out=f,e.avail_in=i<o?5+(o-i):5-(i-o),e.avail_out=f<u?257+(u-f):257-(f-u),n.hold=v,n.bits=H}});var ek=k((jW,$T)=>{"use strict";var GT=Ui(),Ps=15,ZT=852,JT=592,QT=0,hb=1,XT=2,QF=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],XF=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],$F=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],eD=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];$T.exports=function(e,r,n,i,o,f,s,u){var l=u.bits,c=0,w=0,p=0,b=0,v=0,H=0,O=0,W=0,ne=0,U=0,M,P,F,ae,ie,de=null,Ze=0,_,Fe=new GT.Buf16(Ps+1),Ce=new GT.Buf16(Ps+1),ge=null,Je=0,te,kt,st;for(c=0;c<=Ps;c++)Fe[c]=0;for(w=0;w<i;w++)Fe[r[n+w]]++;for(v=l,b=Ps;b>=1&&Fe[b]===0;b--);if(v>b&&(v=b),b===0)return o[f++]=1<<24|64<<16|0,o[f++]=1<<24|64<<16|0,u.bits=1,0;for(p=1;p<b&&Fe[p]===0;p++);for(v<p&&(v=p),W=1,c=1;c<=Ps;c++)if(W<<=1,W-=Fe[c],W<0)return-1;if(W>0&&(e===QT||b!==1))return-1;for(Ce[1]=0,c=1;c<Ps;c++)Ce[c+1]=Ce[c]+Fe[c];for(w=0;w<i;w++)r[n+w]!==0&&(s[Ce[r[n+w]]++]=w);if(e===QT?(de=ge=s,_=19):e===hb?(de=QF,Ze-=257,ge=XF,Je-=257,_=256):(de=$F,ge=eD,_=-1),U=0,w=0,c=p,ie=f,H=v,O=0,F=-1,ne=1<<v,ae=ne-1,e===hb&&ne>ZT||e===XT&&ne>JT)return 1;for(;;){te=c-O,s[w]<_?(kt=0,st=s[w]):s[w]>_?(kt=ge[Je+s[w]],st=de[Ze+s[w]]):(kt=32+64,st=0),M=1<<c-O,P=1<<H,p=P;do P-=M,o[ie+(U>>O)+P]=te<<24|kt<<16|st|0;while(P!==0);for(M=1<<c-1;U&M;)M>>=1;if(M!==0?(U&=M-1,U+=M):U=0,w++,--Fe[c]==0){if(c===b)break;c=r[n+s[w]]}if(c>v&&(U&ae)!==F){for(O===0&&(O=v),ie+=p,H=c-O,W=1<<H;H+O<b&&(W-=Fe[H+O],!(W<=0));)H++,W<<=1;if(ne+=1<<H,e===hb&&ne>ZT||e===XT&&ne>JT)return 1;F=U&ae,o[F]=v<<24|H<<16|ie-f|0}}return U!==0&&(o[ie+U]=c-O<<24|64<<16|0),u.bits=v,0}});var Nk=k(Nn=>{"use strict";var Gr=Ui(),bb=ib(),ti=ob(),tD=YT(),Xl=ek(),rD=0,tk=1,rk=2,nk=4,nD=5,yp=6,Of=0,iD=1,oD=2,an=-2,ik=-3,gb=-4,fD=-5,ok=8,fk=1,sk=2,ak=3,lk=4,uk=5,ck=6,pk=7,dk=8,mk=9,wk=10,jp=11,Li=12,yb=13,hk=14,jb=15,bk=16,gk=17,yk=18,jk=19,_p=20,qp=21,_k=22,qk=23,vk=24,Tk=25,kk=26,_b=27,Bk=28,Ik=29,_t=30,qb=31,sD=32,aD=852,lD=592,uD=15,cD=uD;function xk(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function pD(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Gr.Buf16(320),this.work=new Gr.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Sk(t){var e;return!t||!t.state?an:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=fk,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Gr.Buf32(aD),e.distcode=e.distdyn=new Gr.Buf32(lD),e.sane=1,e.back=-1,Of)}function Ek(t){var e;return!t||!t.state?an:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,Sk(t))}function Ak(t,e){var r,n;return!t||!t.state||(n=t.state,e<0?(r=0,e=-e):(r=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?an:(n.window!==null&&n.wbits!==e&&(n.window=null),n.wrap=r,n.wbits=e,Ek(t))}function Ok(t,e){var r,n;return t?(n=new pD,t.state=n,n.window=null,r=Ak(t,e),r!==Of&&(t.state=null),r):an}function dD(t){return Ok(t,cD)}var Fk=!0,vb,Tb;function mD(t){if(Fk){var e;for(vb=new Gr.Buf32(512),Tb=new Gr.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(Xl(tk,t.lens,0,288,vb,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;Xl(rk,t.lens,0,32,Tb,0,t.work,{bits:5}),Fk=!1}t.lencode=vb,t.lenbits=9,t.distcode=Tb,t.distbits=5}function Dk(t,e,r,n){var i,o=t.state;return o.window===null&&(o.wsize=1<<o.wbits,o.wnext=0,o.whave=0,o.window=new Gr.Buf8(o.wsize)),n>=o.wsize?(Gr.arraySet(o.window,e,r-o.wsize,o.wsize,0),o.wnext=0,o.whave=o.wsize):(i=o.wsize-o.wnext,i>n&&(i=n),Gr.arraySet(o.window,e,r-n,i,o.wnext),n-=i,n?(Gr.arraySet(o.window,e,r-n,n,0),o.wnext=n,o.whave=o.wsize):(o.wnext+=i,o.wnext===o.wsize&&(o.wnext=0),o.whave<o.wsize&&(o.whave+=i))),0}function wD(t,e){var r,n,i,o,f,s,u,l,c,w,p,b,v,H,O=0,W,ne,U,M,P,F,ae,ie,de=new Gr.Buf8(4),Ze,_,Fe=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&t.avail_in!==0)return an;r=t.state,r.mode===Li&&(r.mode=yb),f=t.next_out,i=t.output,u=t.avail_out,o=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,w=s,p=u,ie=Of;e:for(;;)switch(r.mode){case fk:if(r.wrap===0){r.mode=yb;break}for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(r.wrap&2&&l===35615){r.check=0,de[0]=l&255,de[1]=l>>>8&255,r.check=ti(r.check,de,2,0),l=0,c=0,r.mode=sk;break}if(r.flags=0,r.head&&(r.head.done=!1),!(r.wrap&1)||(((l&255)<<8)+(l>>8))%31){t.msg="incorrect header check",r.mode=_t;break}if((l&15)!==ok){t.msg="unknown compression method",r.mode=_t;break}if(l>>>=4,c-=4,ae=(l&15)+8,r.wbits===0)r.wbits=ae;else if(ae>r.wbits){t.msg="invalid window size",r.mode=_t;break}r.dmax=1<<ae,t.adler=r.check=1,r.mode=l&512?wk:Li,l=0,c=0;break;case sk:for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(r.flags=l,(r.flags&255)!==ok){t.msg="unknown compression method",r.mode=_t;break}if(r.flags&57344){t.msg="unknown header flags set",r.mode=_t;break}r.head&&(r.head.text=l>>8&1),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,r.check=ti(r.check,de,2,0)),l=0,c=0,r.mode=ak;case ak:for(;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.head&&(r.head.time=l),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,de[2]=l>>>16&255,de[3]=l>>>24&255,r.check=ti(r.check,de,4,0)),l=0,c=0,r.mode=lk;case lk:for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.head&&(r.head.xflags=l&255,r.head.os=l>>8),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,r.check=ti(r.check,de,2,0)),l=0,c=0,r.mode=uk;case uk:if(r.flags&1024){for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.length=l,r.head&&(r.head.extra_len=l),r.flags&512&&(de[0]=l&255,de[1]=l>>>8&255,r.check=ti(r.check,de,2,0)),l=0,c=0}else r.head&&(r.head.extra=null);r.mode=ck;case ck:if(r.flags&1024&&(b=r.length,b>s&&(b=s),b&&(r.head&&(ae=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),Gr.arraySet(r.head.extra,n,o,b,ae)),r.flags&512&&(r.check=ti(r.check,n,b,o)),s-=b,o+=b,r.length-=b),r.length))break e;r.length=0,r.mode=pk;case pk:if(r.flags&2048){if(s===0)break e;b=0;do ae=n[o+b++],r.head&&ae&&r.length<65536&&(r.head.name+=String.fromCharCode(ae));while(ae&&b<s);if(r.flags&512&&(r.check=ti(r.check,n,b,o)),s-=b,o+=b,ae)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=dk;case dk:if(r.flags&4096){if(s===0)break e;b=0;do ae=n[o+b++],r.head&&ae&&r.length<65536&&(r.head.comment+=String.fromCharCode(ae));while(ae&&b<s);if(r.flags&512&&(r.check=ti(r.check,n,b,o)),s-=b,o+=b,ae)break e}else r.head&&(r.head.comment=null);r.mode=mk;case mk:if(r.flags&512){for(;c<16;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(l!==(r.check&65535)){t.msg="header crc mismatch",r.mode=_t;break}l=0,c=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=Li;break;case wk:for(;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}t.adler=r.check=xk(l),l=0,c=0,r.mode=jp;case jp:if(r.havedict===0)return t.next_out=f,t.avail_out=u,t.next_in=o,t.avail_in=s,r.hold=l,r.bits=c,oD;t.adler=r.check=1,r.mode=Li;case Li:if(e===nD||e===yp)break e;case yb:if(r.last){l>>>=c&7,c-=c&7,r.mode=_b;break}for(;c<3;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}switch(r.last=l&1,l>>>=1,c-=1,l&3){case 0:r.mode=hk;break;case 1:if(mD(r),r.mode=_p,e===yp){l>>>=2,c-=2;break e}break;case 2:r.mode=gk;break;case 3:t.msg="invalid block type",r.mode=_t}l>>>=2,c-=2;break;case hk:for(l>>>=c&7,c-=c&7;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if((l&65535)!=(l>>>16^65535)){t.msg="invalid stored block lengths",r.mode=_t;break}if(r.length=l&65535,l=0,c=0,r.mode=jb,e===yp)break e;case jb:r.mode=bk;case bk:if(b=r.length,b){if(b>s&&(b=s),b>u&&(b=u),b===0)break e;Gr.arraySet(i,n,o,b,f),s-=b,o+=b,u-=b,f+=b,r.length-=b;break}r.mode=Li;break;case gk:for(;c<14;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(r.nlen=(l&31)+257,l>>>=5,c-=5,r.ndist=(l&31)+1,l>>>=5,c-=5,r.ncode=(l&15)+4,l>>>=4,c-=4,r.nlen>286||r.ndist>30){t.msg="too many length or distance symbols",r.mode=_t;break}r.have=0,r.mode=yk;case yk:for(;r.have<r.ncode;){for(;c<3;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.lens[Fe[r.have++]]=l&7,l>>>=3,c-=3}for(;r.have<19;)r.lens[Fe[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,Ze={bits:r.lenbits},ie=Xl(rD,r.lens,0,19,r.lencode,0,r.work,Ze),r.lenbits=Ze.bits,ie){t.msg="invalid code lengths set",r.mode=_t;break}r.have=0,r.mode=jk;case jk:for(;r.have<r.nlen+r.ndist;){for(;O=r.lencode[l&(1<<r.lenbits)-1],W=O>>>24,ne=O>>>16&255,U=O&65535,!(W<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(U<16)l>>>=W,c-=W,r.lens[r.have++]=U;else{if(U===16){for(_=W+2;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(l>>>=W,c-=W,r.have===0){t.msg="invalid bit length repeat",r.mode=_t;break}ae=r.lens[r.have-1],b=3+(l&3),l>>>=2,c-=2}else if(U===17){for(_=W+3;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=W,c-=W,ae=0,b=3+(l&7),l>>>=3,c-=3}else{for(_=W+7;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=W,c-=W,ae=0,b=11+(l&127),l>>>=7,c-=7}if(r.have+b>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=_t;break}for(;b--;)r.lens[r.have++]=ae}}if(r.mode===_t)break;if(r.lens[256]===0){t.msg="invalid code -- missing end-of-block",r.mode=_t;break}if(r.lenbits=9,Ze={bits:r.lenbits},ie=Xl(tk,r.lens,0,r.nlen,r.lencode,0,r.work,Ze),r.lenbits=Ze.bits,ie){t.msg="invalid literal/lengths set",r.mode=_t;break}if(r.distbits=6,r.distcode=r.distdyn,Ze={bits:r.distbits},ie=Xl(rk,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,Ze),r.distbits=Ze.bits,ie){t.msg="invalid distances set",r.mode=_t;break}if(r.mode=_p,e===yp)break e;case _p:r.mode=qp;case qp:if(s>=6&&u>=258){t.next_out=f,t.avail_out=u,t.next_in=o,t.avail_in=s,r.hold=l,r.bits=c,tD(t,p),f=t.next_out,i=t.output,u=t.avail_out,o=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,r.mode===Li&&(r.back=-1);break}for(r.back=0;O=r.lencode[l&(1<<r.lenbits)-1],W=O>>>24,ne=O>>>16&255,U=O&65535,!(W<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(ne&&(ne&240)==0){for(M=W,P=ne,F=U;O=r.lencode[F+((l&(1<<M+P)-1)>>M)],W=O>>>24,ne=O>>>16&255,U=O&65535,!(M+W<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=M,c-=M,r.back+=M}if(l>>>=W,c-=W,r.back+=W,r.length=U,ne===0){r.mode=kk;break}if(ne&32){r.back=-1,r.mode=Li;break}if(ne&64){t.msg="invalid literal/length code",r.mode=_t;break}r.extra=ne&15,r.mode=_k;case _k:if(r.extra){for(_=r.extra;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.length+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=qk;case qk:for(;O=r.distcode[l&(1<<r.distbits)-1],W=O>>>24,ne=O>>>16&255,U=O&65535,!(W<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if((ne&240)==0){for(M=W,P=ne,F=U;O=r.distcode[F+((l&(1<<M+P)-1)>>M)],W=O>>>24,ne=O>>>16&255,U=O&65535,!(M+W<=c);){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}l>>>=M,c-=M,r.back+=M}if(l>>>=W,c-=W,r.back+=W,ne&64){t.msg="invalid distance code",r.mode=_t;break}r.offset=U,r.extra=ne&15,r.mode=vk;case vk:if(r.extra){for(_=r.extra;c<_;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}r.offset+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=_t;break}r.mode=Tk;case Tk:if(u===0)break e;if(b=p-u,r.offset>b){if(b=r.offset-b,b>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=_t;break}b>r.wnext?(b-=r.wnext,v=r.wsize-b):v=r.wnext-b,b>r.length&&(b=r.length),H=r.window}else H=i,v=f-r.offset,b=r.length;b>u&&(b=u),u-=b,r.length-=b;do i[f++]=H[v++];while(--b);r.length===0&&(r.mode=qp);break;case kk:if(u===0)break e;i[f++]=r.length,u--,r.mode=qp;break;case _b:if(r.wrap){for(;c<32;){if(s===0)break e;s--,l|=n[o++]<<c,c+=8}if(p-=u,t.total_out+=p,r.total+=p,p&&(t.adler=r.check=r.flags?ti(r.check,i,p,f-p):bb(r.check,i,p,f-p)),p=u,(r.flags?l:xk(l))!==r.check){t.msg="incorrect data check",r.mode=_t;break}l=0,c=0}r.mode=Bk;case Bk:if(r.wrap&&r.flags){for(;c<32;){if(s===0)break e;s--,l+=n[o++]<<c,c+=8}if(l!==(r.total&4294967295)){t.msg="incorrect length check",r.mode=_t;break}l=0,c=0}r.mode=Ik;case Ik:ie=iD;break e;case _t:ie=ik;break e;case qb:return gb;case sD:default:return an}return t.next_out=f,t.avail_out=u,t.next_in=o,t.avail_in=s,r.hold=l,r.bits=c,(r.wsize||p!==t.avail_out&&r.mode<_t&&(r.mode<_b||e!==nk))&&Dk(t,t.output,t.next_out,p-t.avail_out)?(r.mode=qb,gb):(w-=t.avail_in,p-=t.avail_out,t.total_in+=w,t.total_out+=p,r.total+=p,r.wrap&&p&&(t.adler=r.check=r.flags?ti(r.check,i,p,t.next_out-p):bb(r.check,i,p,t.next_out-p)),t.data_type=r.bits+(r.last?64:0)+(r.mode===Li?128:0)+(r.mode===_p||r.mode===jb?256:0),(w===0&&p===0||e===nk)&&ie===Of&&(ie=fD),ie)}function hD(t){if(!t||!t.state)return an;var e=t.state;return e.window&&(e.window=null),t.state=null,Of}function bD(t,e){var r;return!t||!t.state||(r=t.state,(r.wrap&2)==0)?an:(r.head=e,e.done=!1,Of)}function gD(t,e){var r=e.length,n,i,o;return!t||!t.state||(n=t.state,n.wrap!==0&&n.mode!==jp)?an:n.mode===jp&&(i=1,i=bb(i,e,r,0),i!==n.check)?ik:(o=Dk(t,e,r,r),o?(n.mode=qb,gb):(n.havedict=1,Of))}Nn.inflateReset=Ek;Nn.inflateReset2=Ak;Nn.inflateResetKeep=Sk;Nn.inflateInit=dD;Nn.inflateInit2=Ok;Nn.inflate=wD;Nn.inflateEnd=hD;Nn.inflateGetHeader=bD;Nn.inflateSetDictionary=gD;Nn.inflateInfo="pako inflate (from Nodeca project)"});var kb=k((qW,Pk)=>{"use strict";Pk.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}});var Hk=k((vW,Rk)=>{"use strict";function yD(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}Rk.exports=yD});var Mk=k(eu=>{"use strict";var Rs=Nk(),$l=Ui(),vp=ub(),Ht=kb(),Bb=up(),jD=cb(),_D=Hk(),Uk=Object.prototype.toString;function Ff(t){if(!(this instanceof Ff))return new Ff(t);this.options=$l.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,e.windowBits===0&&(e.windowBits=-15)),e.windowBits>=0&&e.windowBits<16&&!(t&&t.windowBits)&&(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&(e.windowBits&15)==0&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new jD,this.strm.avail_out=0;var r=Rs.inflateInit2(this.strm,e.windowBits);if(r!==Ht.Z_OK)throw new Error(Bb[r]);if(this.header=new _D,Rs.inflateGetHeader(this.strm,this.header),e.dictionary&&(typeof e.dictionary=="string"?e.dictionary=vp.string2buf(e.dictionary):Uk.call(e.dictionary)==="[object ArrayBuffer]"&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(r=Rs.inflateSetDictionary(this.strm,e.dictionary),r!==Ht.Z_OK)))throw new Error(Bb[r])}Ff.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i=this.options.dictionary,o,f,s,u,l,c=!1;if(this.ended)return!1;f=e===~~e?e:e===!0?Ht.Z_FINISH:Ht.Z_NO_FLUSH,typeof t=="string"?r.input=vp.binstring2buf(t):Uk.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new $l.Buf8(n),r.next_out=0,r.avail_out=n),o=Rs.inflate(r,Ht.Z_NO_FLUSH),o===Ht.Z_NEED_DICT&&i&&(o=Rs.inflateSetDictionary(this.strm,i)),o===Ht.Z_BUF_ERROR&&c===!0&&(o=Ht.Z_OK,c=!1),o!==Ht.Z_STREAM_END&&o!==Ht.Z_OK)return this.onEnd(o),this.ended=!0,!1;r.next_out&&(r.avail_out===0||o===Ht.Z_STREAM_END||r.avail_in===0&&(f===Ht.Z_FINISH||f===Ht.Z_SYNC_FLUSH))&&(this.options.to==="string"?(s=vp.utf8border(r.output,r.next_out),u=r.next_out-s,l=vp.buf2string(r.output,s),r.next_out=u,r.avail_out=n-u,u&&$l.arraySet(r.output,r.output,s,u,0),this.onData(l)):this.onData($l.shrinkBuf(r.output,r.next_out))),r.avail_in===0&&r.avail_out===0&&(c=!0)}while((r.avail_in>0||r.avail_out===0)&&o!==Ht.Z_STREAM_END);return o===Ht.Z_STREAM_END&&(f=Ht.Z_FINISH),f===Ht.Z_FINISH?(o=Rs.inflateEnd(this.strm),this.onEnd(o),this.ended=!0,o===Ht.Z_OK):(f===Ht.Z_SYNC_FLUSH&&(this.onEnd(Ht.Z_OK),r.avail_out=0),!0)};Ff.prototype.onData=function(t){this.chunks.push(t)};Ff.prototype.onEnd=function(t){t===Ht.Z_OK&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=$l.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function Ib(t,e){var r=new Ff(e);if(r.push(t,!0),r.err)throw r.msg||Bb[r.err];return r.result}function qD(t,e){return e=e||{},e.raw=!0,Ib(t,e)}eu.Inflate=Ff;eu.inflate=Ib;eu.inflateRaw=qD;eu.ungzip=Ib});var Vk=k((kW,Lk)=>{"use strict";var vD=Ui().assign,TD=WT(),kD=Mk(),BD=kb(),zk={};vD(zk,TD,kD,BD);Lk.exports=zk});var xb=k(()=>{});var tu,Vi,Sb,Ck=K(()=>{To();vo();tu=ce(Vk()),Vi=ce(xb());vo();Sb=class extends vr{constructor(e={}){super(e);this.name="deflate";this.extensions=[];this.contentEncodings=["deflate"];this.isSupported=!0;this._chunks=[];this.options=e}async compress(e){if(!Fn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await(0,Hi.promisify)(Vi.default.gzip)(e):await(0,Hi.promisify)(Vi.default.deflate)(e);return Yr(r)}return this.compressSync(e)}async decompress(e){if(!Fn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await(0,Hi.promisify)(Vi.default.gunzip)(e):await(0,Hi.promisify)(Vi.default.inflate)(e);return Yr(r)}return this.decompressSync(e)}compressSync(e){if(!Fn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Vi.default.gzipSync(e):Vi.default.deflateSync(e);return Yr(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return tu.default.deflate(n,r).buffer}decompressSync(e){if(!Fn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Vi.default.gunzipSync(e):Vi.default.inflateSync(e);return Yr(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return tu.default.inflate(n,r).buffer}async*compressBatches(e){let r=this.options?.deflate||{},n=new tu.default.Deflate(r);yield*this.transformBatches(n,e)}async*decompressBatches(e){let r=this.options?.deflate||{},n=new tu.default.Inflate(r);yield*this.transformBatches(n,e)}async*transformBatches(e,r){e.onData=this._onData.bind(this),e.onEnd=this._onEnd.bind(this);for await(let f of r){let s=new Uint8Array(f);if(!e.push(s,!1))throw new Error(`${this._getError()}write`);yield*this._getChunks()}let n=new Uint8Array(0),i=e.push(n,!0);yield*this._getChunks()}_onData(e){this._chunks.push(e)}_onEnd(e){if(e!==0)throw new Error(this._getError(e)+this._chunks.length)}_getChunks(){let e=this._chunks;return this._chunks=[],e}_getError(e=0){let r={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};return`${this.name}: ${r[e]}`}}});var Tp,Wk=K(()=>{Ck();Tp=class extends Sb{constructor(e){super({...e,deflate:{...e?.gzip,gzip:!0}});this.name="gzip";this.extensions=["gz","gzip"];this.contentEncodings=["gzip","x-gzip"];this.isSupported=!0}}});var ID,ru,nu,Kk=K(()=>{vo();To();ID=407708164,nu=class extends vr{constructor(e){super(e);this.name="lz4";this.extensions=["lz4"];this.contentEncodings=["x-lz4"];this.isSupported=!0;if(this.options=e,ru=ru||this.options?.modules?.lz4js,!ru)throw new Error(this.name)}compressSync(e){let r=new Uint8Array(e);return ru.compress(r).buffer}decompressSync(e,r){try{let n=this.checkMagicNumber(e),i=new Uint8Array(e);if(n)return ru.decompress(i,r).buffer;if(!r){let s=new Error("Need to provide maxSize");throw this.improveError(s)}let o=new Uint8Array(r),f=this.decodeBlock(i,o);return o=o.slice(0,f),Yr(o)}catch(n){throw this.improveError(n)}}decodeBlock(e,r,n,i){n=n||0,i=i||e.length-n;let o=0;for(let f=n;f<i;){let s=e[f++],u=s>>4;if(u>0){let v=u+240;for(;v===255;)v=e[f++],u+=v;let H=f+u;for(;f<H;)r[o++]=e[f++];if(f===i)return o}let l=e[f++]|e[f++]<<8;if(l===0||l>o)return-(f-2);let c=s&15,w=c+240;for(;w===255;)w=e[f++],c+=w;let p=o-l,b=o+c+4;for(;o<b;)r[o++]=r[p++]}return o}checkMagicNumber(e){return new Uint32Array(e.slice(0,4))[0]===ID}}});var kp,Bp,Ip,Yk=K(()=>{To();Ip=class extends vr{constructor(e){super(e);this.name="zstd";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e,kp=this.options?.modules?.["zstd-codec"],kp||console.warn(`${this.name} library not installed`)}async preload(){!Bp&&kp&&(Bp=await new Promise(e=>kp.run(r=>e(r))))}compressSync(e){let r=new Bp.Simple,n=new Uint8Array(e);return r.compress(n).buffer}decompressSync(e){let r=new Bp.Simple,n=new Uint8Array(e);return r.decompress(n).buffer}}});var Zk=k(Gk=>{"use strict";var xD=[0,255,65535,16777215,4294967295];function SD(t,e,r,n,i){var o;for(o=0;o<i;o++)r[n+o]=t[e+o]}function ED(t,e,r,n){var i;for(i=0;i<n;i++)t[e+i]=t[e-r+i]}function Eb(t){this.array=t,this.pos=0}Eb.prototype.readUncompressedLength=function(){for(var t=0,e=0,r,n;e<32&&this.pos<this.array.length;){if(r=this.array[this.pos],this.pos+=1,n=r&127,n<<e>>>e!==n)return-1;if(t|=n<<e,r<128)return t;e+=7}return-1};Eb.prototype.uncompressToBuffer=function(t){for(var e=this.array,r=e.length,n=this.pos,i=0,o,f,s,u;n<e.length;)if(o=e[n],n+=1,(o&3)==0){if(f=(o>>>2)+1,f>60){if(n+3>=r)return!1;s=f-60,f=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),f=(f&xD[s])+1,n+=s}if(n+f>r)return!1;SD(e,n,t,i,f),n+=f,i+=f}else{switch(o&3){case 1:f=(o>>>2&7)+4,u=e[n]+(o>>>5<<8),n+=1;break;case 2:if(n+1>=r)return!1;f=(o>>>2)+1,u=e[n]+(e[n+1]<<8),n+=2;break;case 3:if(n+3>=r)return!1;f=(o>>>2)+1,u=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),n+=4;break;default:break}if(u===0||u>i)return!1;ED(t,i,u,f),i+=f}return!0};Gk.SnappyDecompressor=Eb});var eB=k($k=>{"use strict";var AD=16,OD=1<<AD,Jk=14,Ab=new Array(Jk+1);function iu(t,e){return t*506832829>>>e}function ou(t,e){return t[e]+(t[e+1]<<8)+(t[e+2]<<16)+(t[e+3]<<24)}function Qk(t,e,r){return t[e]===t[r]&&t[e+1]===t[r+1]&&t[e+2]===t[r+2]&&t[e+3]===t[r+3]}function FD(t,e,r,n,i){var o;for(o=0;o<i;o++)r[n+o]=t[e+o]}function Xk(t,e,r,n,i){return r<=60?(n[i]=r-1<<2,i+=1):r<256?(n[i]=60<<2,n[i+1]=r-1,i+=2):(n[i]=61<<2,n[i+1]=r-1&255,n[i+2]=r-1>>>8,i+=3),FD(t,e,n,i,r),i+r}function Ob(t,e,r,n){return n<12&&r<2048?(t[e]=1+(n-4<<2)+(r>>>8<<5),t[e+1]=r&255,e+2):(t[e]=2+(n-1<<2),t[e+1]=r&255,t[e+2]=r>>>8,e+3)}function DD(t,e,r,n){for(;n>=68;)e=Ob(t,e,r,64),n-=64;return n>64&&(e=Ob(t,e,r,60),n-=60),Ob(t,e,r,n)}function ND(t,e,r,n,i){for(var o=1;1<<o<=r&&o<=Jk;)o+=1;o-=1;var f=32-o;typeof Ab[o]=="undefined"&&(Ab[o]=new Uint16Array(1<<o));var s=Ab[o],u;for(u=0;u<s.length;u++)s[u]=0;var l=e+r,c,w=e,p=e,b,v,H,O,W,ne,U,M,P,F,ae,ie=!0,de=15;if(r>=de)for(c=l-de,e+=1,v=iu(ou(t,e),f);ie;){W=32,H=e;do{if(e=H,b=v,ne=W>>>5,W+=1,H=e+ne,e>c){ie=!1;break}v=iu(ou(t,H),f),O=w+s[b],s[b]=e-w}while(!Qk(t,e,O));if(!ie)break;i=Xk(t,p,e-p,n,i);do{for(U=e,M=4;e+M<l&&t[e+M]===t[O+M];)M+=1;if(e+=M,P=U-O,i=DD(n,i,P,M),p=e,e>=c){ie=!1;break}F=iu(ou(t,e-1),f),s[F]=e-1-w,ae=iu(ou(t,e),f),O=w+s[ae],s[ae]=e-w}while(Qk(t,e,O));if(!ie)break;e+=1,v=iu(ou(t,e),f)}return p<l&&(i=Xk(t,p,l-p,n,i)),i}function PD(t,e,r){do e[r]=t&127,t=t>>>7,t>0&&(e[r]+=128),r+=1;while(t>0);return r}function Fb(t){this.array=t}Fb.prototype.maxCompressedLength=function(){var t=this.array.length;return 32+t+Math.floor(t/6)};Fb.prototype.compressToBuffer=function(t){var e=this.array,r=e.length,n=0,i=0,o;for(i=PD(r,t,i);n<r;)o=Math.min(r-n,OD),i=ND(e,n,o,t,i),n+=o;return i};$k.SnappyCompressor=Fb});var iB=k(Db=>{"use strict";function tB(){return typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node!="undefined"}function xp(t){return t instanceof Uint8Array&&(!tB()||!Buffer.isBuffer(t))}function Sp(t){return t instanceof ArrayBuffer}function rB(t){return tB()?Buffer.isBuffer(t):!1}var RD=Zk().SnappyDecompressor,HD=eB().SnappyCompressor,nB="Argument compressed must be type of ArrayBuffer, Buffer, or Uint8Array";function UD(t){if(!xp(t)&&!Sp(t)&&!rB(t))throw new TypeError(nB);var e=!1,r=!1;xp(t)?e=!0:Sp(t)&&(r=!0,t=new Uint8Array(t));var n=new RD(t),i=n.readUncompressedLength();if(i===-1)throw new Error("Invalid Snappy bitstream");var o,f;if(e){if(o=new Uint8Array(i),!n.uncompressToBuffer(o))throw new Error("Invalid Snappy bitstream")}else if(r){if(o=new ArrayBuffer(i),f=new Uint8Array(o),!n.uncompressToBuffer(f))throw new Error("Invalid Snappy bitstream")}else if(o=Buffer.alloc(i),!n.uncompressToBuffer(o))throw new Error("Invalid Snappy bitstream");return o}function MD(t){if(!xp(t)&&!Sp(t)&&!rB(t))throw new TypeError(nB);var e=!1,r=!1;xp(t)?e=!0:Sp(t)&&(r=!0,t=new Uint8Array(t));var n=new HD(t),i=n.maxCompressedLength(),o,f,s;if(e?(o=new Uint8Array(i),s=n.compressToBuffer(o)):r?(o=new ArrayBuffer(i),f=new Uint8Array(o),s=n.compressToBuffer(f)):(o=Buffer.alloc(i),s=n.compressToBuffer(o)),!o.slice){var u=new Uint8Array(Array.prototype.slice.call(o,0,s));if(e)return u;if(r)return u.buffer;throw new Error("Not implemented")}return o.slice(0,s)}Db.uncompress=UD;Db.compress=MD});var Ep,Ap,oB=K(()=>{To();Ep=ce(iB()),Ap=class extends vr{constructor(e){super(e);this.name="snappy";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return(0,Ep.compress)(e)}decompressSync(e){return(0,Ep.uncompress)(e)}}});var zD,fB,sB=K(()=>{zD=()=>{function t(a){this.data=a,this.offset=0}let e=Int32Array.from([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]),r=Int32Array.from([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),n=Int32Array.from([0,3,2,1,0,0,0,0,0,0,3,3,3,3,3,3]),i=Int32Array.from([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),o=Int32Array.from([131072,131076,131075,196610,131072,131076,131075,262145,131072,131076,131075,196610,131072,131076,131075,262149]),f=Int32Array.from([1,5,9,13,17,25,33,41,49,65,81,97,113,145,177,209,241,305,369,497,753,1265,2289,4337,8433,16625]),s=Int32Array.from([2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,7,8,9,10,11,12,13,24]),u=Int16Array.from([0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,12,14,24]),l=Int16Array.from([0,0,0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,24]),c=new Int16Array(2816);v(c);function w(a){let j=-1,g=16;for(;g>0;)a>>>g!=0&&(j+=g,a=a>>>g),g=g>>1;return j+a}function p(a,j,g){return 16+j+2*(g<<a)}function b(a,j,g){if(a<g+(2<<j))throw"maxDistance is too small";let q=(a-g>>j)+4,T=w(q)-1;return((T-1<<1|q>>T&1)-1<<j)+(1<<j)+g+16}function v(a){let j=new Int16Array(24),g=new Int16Array(24);g[0]=2;for(let q=0;q<23;++q)j[q+1]=j[q]+(1<<u[q]),g[q+1]=g[q]+(1<<l[q]);for(let q=0;q<704;++q){let T=q>>>6,N=-4;T>=2&&(T-=2,N=0);let z=(170064>>>T*2&3)<<3|q>>>3&7,Q=(156228>>>T*2&3)<<3|q&7,ue=g[Q],pe=N+(ue>4?3:ue-2),re=q*4;a[re+0]=u[z]|l[Q]<<8,a[re+1]=j[z],a[re+2]=g[Q],a[re+3]=pe}}function H(a){let j=a.isLargeWindow;if(a.isLargeWindow=0,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Pe(a,1)==0)return 16;let g=Pe(a,3);return g!=0?17+g:(g=Pe(a,3),g!=0?g==1?j==0||(a.isLargeWindow=1,Pe(a,1)==1)||(g=Pe(a,6),g<10||g>30)?-1:g:8+g:17)}function O(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isEager=1}function W(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isLargeWindow=1}function ne(a,j){if(a.runningState!=1)throw"State MUST be freshly initialized";if(a.cdNumChunks==0&&(a.cdChunks=new Array(16),a.cdChunkOffsets=new Int32Array(16),a.cdBlockBits=-1),a.cdNumChunks==15)throw"Too many dictionary chunks";a.cdChunks[a.cdNumChunks]=j,a.cdNumChunks++,a.cdTotalSize+=j.length,a.cdChunkOffsets[a.cdNumChunks]=a.cdTotalSize}function U(a,j){if(a.runningState!=0)throw"State MUST be uninitialized";a.blockTrees=new Int32Array(3091),a.blockTrees[0]=7,a.distRbIdx=3;let g=b(2147483644,3,15<<3);a.distExtraBits=new Int8Array(g),a.distOffset=new Int32Array(g),a.input=j,h(a),a.runningState=1}function M(a){if(a.runningState==0)throw"State MUST be initialized";a.runningState!=11&&(a.runningState=11,a.input!=null&&(aO(a.input),a.input=null))}function P(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Pe(a,1)!=0){let j=Pe(a,3);return j==0?1:Pe(a,j)+(1<<j)}return 0}function F(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.inputEnd=Pe(a,1),a.metaBlockLength=0,a.isUncompressed=0,a.isMetadata=0,a.inputEnd!=0&&Pe(a,1)!=0)return;let j=Pe(a,2)+4;if(j==7){if(a.isMetadata=1,Pe(a,1)!=0)throw"Corrupted reserved bit";let g=Pe(a,2);if(g==0)return;for(let q=0;q<g;q++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let T=Pe(a,8);if(T==0&&q+1==g&&g>1)throw"Exuberant nibble";a.metaBlockLength|=T<<q*8}}else for(let g=0;g<j;g++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let q=Pe(a,4);if(q==0&&g+1==j&&j>4)throw"Exuberant nibble";a.metaBlockLength|=q<<g*4}a.metaBlockLength++,a.inputEnd==0&&(a.isUncompressed=Pe(a,1))}function ae(a,j,g){let q=a[j],T=g.accumulator32>>>g.bitOffset;q+=T&255;let N=a[q]>>16,z=a[q]&65535;if(N<=8)return g.bitOffset+=N,z;q+=z;let Q=(1<<N)-1;return q+=(T&Q)>>>8,g.bitOffset+=(a[q]>>16)+8,a[q]&65535}function ie(a,j,g){g.bitOffset>=16&&(g.accumulator32=g.shortBuffer[g.halfOffset++]<<16|g.accumulator32>>>16,g.bitOffset-=16);let q=ae(a,j,g),T=s[q];return g.bitOffset>=16&&(g.accumulator32=g.shortBuffer[g.halfOffset++]<<16|g.accumulator32>>>16,g.bitOffset-=16),f[q]+(T<=16?Pe(g,T):ws(g,T))}function de(a,j){let g=a[j];for(;j>0;j--)a[j]=a[j-1];a[0]=g}function Ze(a,j){let g=new Int32Array(256);for(let q=0;q<256;q++)g[q]=q;for(let q=0;q<j;q++){let T=a[q]&255;a[q]=g[T],T!=0&&de(g,T)}}function _(a,j,g,q){let T=0,N=8,z=0,Q=0,ue=32768,pe=new Int32Array(32+1),re=pe.length-1;for(ms(pe,re,5,a,18);T<j&&ue>0;){q.halfOffset>2030&&mr(q),q.bitOffset>=16&&(q.accumulator32=q.shortBuffer[q.halfOffset++]<<16|q.accumulator32>>>16,q.bitOffset-=16);let De=q.accumulator32>>>q.bitOffset&31;q.bitOffset+=pe[De]>>16;let He=pe[De]&65535;if(He<16)z=0,g[T++]=He,He!=0&&(N=He,ue-=32768>>He);else{let gt=He-14,Wr=0;He==16&&(Wr=N),Q!=Wr&&(z=0,Q=Wr);let $r=z;z>0&&(z-=2,z<<=gt),q.bitOffset>=16&&(q.accumulator32=q.shortBuffer[q.halfOffset++]<<16|q.accumulator32>>>16,q.bitOffset-=16),z+=Pe(q,gt)+3;let Jt=z-$r;if(T+Jt>j)throw"symbol + repeatDelta > numSymbols";for(let Le=0;Le<Jt;Le++)g[T++]=Q;Q!=0&&(ue-=Jt<<15-Q)}}if(ue!=0)throw"Unused space";g.fill(0,T,j)}function Fe(a,j){for(let g=0;g<j-1;++g)for(let q=g+1;q<j;++q)if(a[g]==a[q])throw"Duplicate simple Huffman code symbol"}function Ce(a,j,g,q,T){let N=new Int32Array(j),z=new Int32Array(4),Q=1+w(a-1),ue=Pe(T,2)+1;for(let re=0;re<ue;re++){T.bitOffset>=16&&(T.accumulator32=T.shortBuffer[T.halfOffset++]<<16|T.accumulator32>>>16,T.bitOffset-=16);let De=Pe(T,Q);if(De>=j)throw"Can't readHuffmanCode";z[re]=De}Fe(z,ue);let pe=ue;switch(ue==4&&(pe+=Pe(T,1)),pe){case 1:N[z[0]]=1;break;case 2:N[z[0]]=1,N[z[1]]=1;break;case 3:N[z[0]]=1,N[z[1]]=2,N[z[2]]=2;break;case 4:N[z[0]]=2,N[z[1]]=2,N[z[2]]=2,N[z[3]]=2;break;case 5:N[z[0]]=1,N[z[1]]=2,N[z[2]]=3,N[z[3]]=3;break;default:break}return ms(g,q,8,N,j)}function ge(a,j,g,q,T){let N=new Int32Array(a),z=new Int32Array(18),Q=32,ue=0;for(let pe=j;pe<18&&Q>0;pe++){let re=r[pe];T.bitOffset>=16&&(T.accumulator32=T.shortBuffer[T.halfOffset++]<<16|T.accumulator32>>>16,T.bitOffset-=16);let De=T.accumulator32>>>T.bitOffset&15;T.bitOffset+=o[De]>>16;let He=o[De]&65535;z[re]=He,He!=0&&(Q-=32>>He,ue++)}if(Q!=0&&ue!=1)throw"Corrupted Huffman code histogram";return _(z,a,N,T),ms(g,q,8,N,a)}function Je(a,j,g,q,T){T.halfOffset>2030&&mr(T),T.bitOffset>=16&&(T.accumulator32=T.shortBuffer[T.halfOffset++]<<16|T.accumulator32>>>16,T.bitOffset-=16);let N=Pe(T,2);return N==1?Ce(a,j,g,q,T):ge(j,N,g,q,T)}function te(a,j,g){g.halfOffset>2030&&mr(g);let q=P(g)+1;if(q==1)return j.fill(0,0,a),q;g.bitOffset>=16&&(g.accumulator32=g.shortBuffer[g.halfOffset++]<<16|g.accumulator32>>>16,g.bitOffset-=16);let T=Pe(g,1),N=0;T!=0&&(N=Pe(g,4)+1);let z=q+N,Q=e[z+31>>5],ue=new Int32Array(Q+1),pe=ue.length-1;Je(z,z,ue,pe,g);for(let re=0;re<a;){g.halfOffset>2030&&mr(g),g.bitOffset>=16&&(g.accumulator32=g.shortBuffer[g.halfOffset++]<<16|g.accumulator32>>>16,g.bitOffset-=16);let De=ae(ue,pe,g);if(De==0)j[re]=0,re++;else if(De<=N){g.bitOffset>=16&&(g.accumulator32=g.shortBuffer[g.halfOffset++]<<16|g.accumulator32>>>16,g.bitOffset-=16);let He=(1<<De)+Pe(g,De);for(;He!=0;){if(re>=a)throw"Corrupted context map";j[re]=0,re++,He--}}else j[re]=De-N,re++}return g.bitOffset>=16&&(g.accumulator32=g.shortBuffer[g.halfOffset++]<<16|g.accumulator32>>>16,g.bitOffset-=16),Pe(g,1)==1&&Ze(j,a),q}function kt(a,j,g){let q=a.rings,T=4+j*2;a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let N=ae(a.blockTrees,2*j,a),z=ie(a.blockTrees,2*j+1,a);return N==1?N=q[T+1]+1:N==0?N=q[T]:N-=2,N>=g&&(N-=g),q[T]=q[T+1],q[T+1]=N,z}function st(a){a.literalBlockLength=kt(a,0,a.numLiteralBlockTypes);let j=a.rings[5];a.contextMapSlice=j<<6,a.literalTreeIdx=a.contextMap[a.contextMapSlice]&255;let g=a.contextModes[j];a.contextLookupOffset1=g<<9,a.contextLookupOffset2=a.contextLookupOffset1+256}function Sr(a){a.commandBlockLength=kt(a,1,a.numCommandBlockTypes),a.commandTreeIdx=a.rings[7]}function xi(a){a.distanceBlockLength=kt(a,2,a.numDistanceBlockTypes),a.distContextMapSlice=a.rings[9]<<2}function bf(a){let j=a.maxRingBufferSize;if(j>a.expectedTotalSize){let T=a.expectedTotalSize;for(;j>>1>T;)j>>=1;a.inputEnd==0&&j<16384&&a.maxRingBufferSize>=16384&&(j=16384)}if(j<=a.ringBufferSize)return;let g=j+37,q=new Int8Array(g);a.ringBuffer.length!=0&&q.set(a.ringBuffer.subarray(0,0+a.ringBufferSize),0),a.ringBuffer=q,a.ringBufferSize=j}function gf(a){if(a.inputEnd!=0){a.nextRunningState=10,a.runningState=12;return}a.literalTreeGroup=new Int32Array(0),a.commandTreeGroup=new Int32Array(0),a.distanceTreeGroup=new Int32Array(0),a.halfOffset>2030&&mr(a),F(a),!(a.metaBlockLength==0&&a.isMetadata==0)&&(a.isUncompressed!=0||a.isMetadata!=0?(L(a),a.runningState=a.isMetadata!=0?5:6):a.runningState=3,a.isMetadata==0&&(a.expectedTotalSize+=a.metaBlockLength,a.expectedTotalSize>1<<30&&(a.expectedTotalSize=1<<30),a.ringBufferSize<a.maxRingBufferSize&&bf(a)))}function En(a,j,g){let q=a.blockTrees[2*j];if(g<=1)return a.blockTrees[2*j+1]=q,a.blockTrees[2*j+2]=q,1<<28;let T=g+2;q+=Je(T,T,a.blockTrees,2*j,a),a.blockTrees[2*j+1]=q;let N=26;return q+=Je(N,N,a.blockTrees,2*j+1,a),a.blockTrees[2*j+2]=q,ie(a.blockTrees,2*j+1,a)}function Cr(a,j){let g=a.distExtraBits,q=a.distOffset,T=a.distancePostfixBits,N=a.numDirectDistanceCodes,z=1<<T,Q=1,ue=0,pe=16;for(let re=0;re<N;++re)g[pe]=0,q[pe]=re+1,++pe;for(;pe<j;){let re=N+((2+ue<<Q)-4<<T)+1;for(let De=0;De<z;++De)g[pe]=Q,q[pe]=re+De,++pe;Q=Q+ue,ue=ue^1}}function Zt(a){a.numLiteralBlockTypes=P(a)+1,a.literalBlockLength=En(a,0,a.numLiteralBlockTypes),a.numCommandBlockTypes=P(a)+1,a.commandBlockLength=En(a,1,a.numCommandBlockTypes),a.numDistanceBlockTypes=P(a)+1,a.distanceBlockLength=En(a,2,a.numDistanceBlockTypes),a.halfOffset>2030&&mr(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.distancePostfixBits=Pe(a,2),a.numDirectDistanceCodes=Pe(a,4)<<a.distancePostfixBits,a.contextModes=new Int8Array(a.numLiteralBlockTypes);for(let N=0;N<a.numLiteralBlockTypes;){let z=ho(N+96,a.numLiteralBlockTypes);for(;N<z;++N)a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.contextModes[N]=Pe(a,2);a.halfOffset>2030&&mr(a)}a.contextMap=new Int8Array(a.numLiteralBlockTypes<<6);let j=te(a.numLiteralBlockTypes<<6,a.contextMap,a);a.trivialLiteralContext=1;for(let N=0;N<a.numLiteralBlockTypes<<6;N++)if(a.contextMap[N]!=N>>6){a.trivialLiteralContext=0;break}a.distContextMap=new Int8Array(a.numDistanceBlockTypes<<2);let g=te(a.numDistanceBlockTypes<<2,a.distContextMap,a);a.literalTreeGroup=C(256,256,j,a),a.commandTreeGroup=C(704,704,a.numCommandBlockTypes,a);let q=p(a.distancePostfixBits,a.numDirectDistanceCodes,24),T=q;a.isLargeWindow==1&&(q=p(a.distancePostfixBits,a.numDirectDistanceCodes,62),T=b(2147483644,a.distancePostfixBits,a.numDirectDistanceCodes)),a.distanceTreeGroup=C(q,T,g,a),Cr(a,T),a.contextMapSlice=0,a.distContextMapSlice=0,a.contextLookupOffset1=a.contextModes[0]*512,a.contextLookupOffset2=a.contextLookupOffset1+256,a.literalTreeIdx=0,a.commandTreeIdx=0,a.rings[4]=1,a.rings[5]=0,a.rings[6]=1,a.rings[7]=0,a.rings[8]=1,a.rings[9]=0}function Si(a){let j=a.ringBuffer;if(a.metaBlockLength<=0){I(a),a.runningState=2;return}let g=ho(a.ringBufferSize-a.pos,a.metaBlockLength);if(Ee(a,j,a.pos,g),a.metaBlockLength-=g,a.pos+=g,a.pos==a.ringBufferSize){a.nextRunningState=6,a.runningState=12;return}I(a),a.runningState=2}function An(a){let j=ho(a.outputLength-a.outputUsed,a.ringBufferBytesReady-a.ringBufferBytesWritten);return j!=0&&(a.output.set(a.ringBuffer.subarray(a.ringBufferBytesWritten,a.ringBufferBytesWritten+j),a.outputOffset+a.outputUsed),a.outputUsed+=j,a.ringBufferBytesWritten+=j),a.outputUsed<a.outputLength?1:0}function C(a,j,g,q){let T=e[j+31>>5],N=new Int32Array(g+g*T),z=g;for(let Q=0;Q<g;++Q)N[Q]=z,z+=Je(a,j,N,Q,q);return N}function cs(a){let j=a.ringBufferSize;return a.isEager!=0&&(j=ho(j,a.ringBufferBytesWritten+a.outputLength-a.outputUsed)),j}function ps(a,j){if(a.distance>2147483644)throw"Invalid backward reference";let g=a.distance-a.maxDistance-1-a.cdTotalSize;if(g<0)yf(a,-g-1,a.copyLength),a.runningState=14;else{let q=ct,T=a.copyLength;if(T>31)throw"Invalid backward reference";let N=wo[T];if(N==0)throw"Invalid backward reference";let z=Nt[T],Q=(1<<N)-1,ue=g&Q,pe=g>>>N;z+=ue*T;let re=ds;if(pe>=re.numTransforms)throw"Invalid backward reference";let De=qw(a.ringBuffer,a.pos,q,z,T,re,pe);if(a.pos+=De,a.metaBlockLength-=De,a.pos>=j){a.nextRunningState=4,a.runningState=12;return}a.runningState=4}}function jr(a){a.cdBlockMap=new Int8Array(256);let j=8;for(;a.cdTotalSize-1>>>j!=0;)j++;j-=8,a.cdBlockBits=j;let g=0,q=0;for(;g<a.cdTotalSize;){for(;a.cdChunkOffsets[q+1]<g;)q++;a.cdBlockMap[g>>>j]=q,g+=1<<j}}function yf(a,j,g){a.cdBlockBits==-1&&jr(a);let q=a.cdBlockMap[j>>>a.cdBlockBits];for(;j>=a.cdChunkOffsets[q+1];)q++;if(a.cdTotalSize>j+g)throw"Invalid backward reference";a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance,a.metaBlockLength-=g,a.cdBrIndex=q,a.cdBrOffset=j-a.cdChunkOffsets[q],a.cdBrLength=g,a.cdBrCopied=0}function Za(a,j){let g=a.pos,q=g;for(;a.cdBrLength!=a.cdBrCopied;){let T=j-g,z=a.cdChunkOffsets[a.cdBrIndex+1]-a.cdChunkOffsets[a.cdBrIndex]-a.cdBrOffset,Q=a.cdBrLength-a.cdBrCopied;if(Q>z&&(Q=z),Q>T&&(Q=T),sO(a.ringBuffer,g,a.cdChunks[a.cdBrIndex],a.cdBrOffset,a.cdBrOffset+Q),g+=Q,a.cdBrOffset+=Q,a.cdBrCopied+=Q,Q==z&&(a.cdBrIndex++,a.cdBrOffset=0),g>=j)break}return g-q}function jw(a){if(a.runningState==0)throw"Can't decompress until initialized";if(a.runningState==11)throw"Can't decompress after close";if(a.runningState==1){let T=H(a);if(T==-1)throw"Invalid 'windowBits' code";a.maxRingBufferSize=1<<T,a.maxBackwardDistance=a.maxRingBufferSize-16,a.runningState=2}let j=cs(a),g=a.ringBufferSize-1,q=a.ringBuffer;for(;a.runningState!=10;)switch(a.runningState){case 2:if(a.metaBlockLength<0)throw"Invalid metablock length";gf(a),j=cs(a),g=a.ringBufferSize-1,q=a.ringBuffer;continue;case 3:Zt(a),a.runningState=4;case 4:if(a.metaBlockLength<=0){a.runningState=2;continue}a.halfOffset>2030&&mr(a),a.commandBlockLength==0&&Sr(a),a.commandBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let T=ae(a.commandTreeGroup,a.commandTreeIdx,a)<<2,N=c[T],z=c[T+1],Q=c[T+2];a.distanceCode=c[T+3],a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let ue=N&255;a.insertLength=z+(ue<=16?Pe(a,ue):ws(a,ue)),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let pe=N>>8;a.copyLength=Q+(pe<=16?Pe(a,pe):ws(a,pe)),a.j=0,a.runningState=7;case 7:if(a.trivialLiteralContext!=0){for(;a.j<a.insertLength;)if(a.halfOffset>2030&&mr(a),a.literalBlockLength==0&&st(a),a.literalBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),q[a.pos]=ae(a.literalTreeGroup,a.literalTreeIdx,a),a.pos++,a.j++,a.pos>=j){a.nextRunningState=7,a.runningState=12;break}}else{let Jt=q[a.pos-1&g]&255,Le=q[a.pos-2&g]&255;for(;a.j<a.insertLength;){a.halfOffset>2030&&mr(a),a.literalBlockLength==0&&st(a);let Kr=lt[a.contextLookupOffset1+Jt]|lt[a.contextLookupOffset2+Le],Ei=a.contextMap[a.contextMapSlice+Kr]&255;if(a.literalBlockLength--,Le=Jt,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Jt=ae(a.literalTreeGroup,Ei,a),q[a.pos]=Jt,a.pos++,a.j++,a.pos>=j){a.nextRunningState=7,a.runningState=12;break}}}if(a.runningState!=7)continue;if(a.metaBlockLength-=a.insertLength,a.metaBlockLength<=0){a.runningState=4;continue}let re=a.distanceCode;if(re<0)a.distance=a.rings[a.distRbIdx];else{a.halfOffset>2030&&mr(a),a.distanceBlockLength==0&&xi(a),a.distanceBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let Jt=a.distContextMap[a.distContextMapSlice+re]&255;if(re=ae(a.distanceTreeGroup,Jt,a),re<16){let Le=a.distRbIdx+n[re]&3;if(a.distance=a.rings[Le]+i[re],a.distance<0)throw"Negative distance"}else{let Le=a.distExtraBits[re],Kr;a.bitOffset+Le<=32?Kr=Pe(a,Le):(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Kr=Le<=16?Pe(a,Le):ws(a,Le)),a.distance=a.distOffset[re]+(Kr<<a.distancePostfixBits)}}if(a.maxDistance!=a.maxBackwardDistance&&a.pos<a.maxBackwardDistance?a.maxDistance=a.pos:a.maxDistance=a.maxBackwardDistance,a.distance>a.maxDistance){a.runningState=9;continue}if(re>0&&(a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance),a.copyLength>a.metaBlockLength)throw"Invalid backward reference";a.j=0,a.runningState=8;case 8:let De=a.pos-a.distance&g,He=a.pos,gt=a.copyLength-a.j,Wr=De+gt,$r=He+gt;if(Wr<g&&$r<g){if(gt<12||Wr>He&&$r>De)for(let Jt=0;Jt<gt;Jt+=4)q[He++]=q[De++],q[He++]=q[De++],q[He++]=q[De++],q[He++]=q[De++];else q.copyWithin(He,De,Wr);a.j+=gt,a.metaBlockLength-=gt,a.pos+=gt}else for(;a.j<a.copyLength;)if(q[a.pos]=q[a.pos-a.distance&g],a.metaBlockLength--,a.pos++,a.j++,a.pos>=j){a.nextRunningState=8,a.runningState=12;break}a.runningState==8&&(a.runningState=4);continue;case 9:ps(a,j);continue;case 14:if(a.pos+=Za(a,j),a.pos>=j){a.nextRunningState=14,a.runningState=12;return}a.runningState=4;continue;case 5:for(;a.metaBlockLength>0;)a.halfOffset>2030&&mr(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Pe(a,8),a.metaBlockLength--;a.runningState=2;continue;case 6:Si(a);continue;case 12:a.ringBufferBytesReady=ho(a.pos,a.ringBufferSize),a.runningState=13;case 13:if(An(a)==0)return;a.pos>=a.maxBackwardDistance&&(a.maxDistance=a.maxBackwardDistance),a.pos>=a.ringBufferSize&&(a.pos>a.ringBufferSize&&q.copyWithin(0,a.ringBufferSize,a.pos),a.pos&=g,a.ringBufferBytesWritten=0),a.runningState=a.nextRunningState;continue;default:throw"Unexpected state "+a.runningState}if(a.runningState==10){if(a.metaBlockLength<0)throw"Invalid metablock length";L(a),Qa(a,1)}}function _c(a,j,g){this.numTransforms=0,this.triplets=new Int32Array(0),this.prefixSuffixStorage=new Int8Array(0),this.prefixSuffixHeads=new Int32Array(0),this.params=new Int16Array(0),this.numTransforms=a,this.triplets=new Int32Array(a*3),this.params=new Int16Array(a),this.prefixSuffixStorage=new Int8Array(j),this.prefixSuffixHeads=new Int32Array(g+1)}let ds=new _c(121,167,50);function _w(a,j,g,q,T){let N=q.length,z=1,Q=0;for(let ue=0;ue<N;++ue){let pe=q.charCodeAt(ue);pe==35?j[z++]=Q:a[Q++]=pe}for(let ue=0;ue<363;++ue)g[ue]=T.charCodeAt(ue)-32}_w(ds.prefixSuffixStorage,ds.prefixSuffixHeads,ds.triplets,`# #s #, #e #.# the #.com/#\xC2\xA0# of # and # in # to #"#">#
19
- #]# for # a # that #. # with #'# from # by #. The # on # as # is #ing #
20
- #:#ed #(# at #ly #="# of the #. This #,# not #er #al #='#ful #ive #less #est #ize #ous #`,` !! ! , *! &! " ! ) * * - ! # ! #!*! + ,$ ! - % . / # 0 1 . " 2 3!* 4% ! # / 5 6 7 8 0 1 & $ 9 + : ; < ' != > ?! 4 @ 4 2 & A *# ( B C& ) % ) !*# *-% A +! *. D! %' & E *6 F G% ! *A *% H! D I!+! J!+ K +- *4! A L!*4 M N +6 O!*% +.! K *G P +%( ! G *D +D Q +# *K!*G!+D!+# +G +A +4!+% +K!+4!*D!+K!*K`);function qw(a,j,g,q,T,N,z){let Q=j,ue=N.triplets,pe=N.prefixSuffixStorage,re=N.prefixSuffixHeads,De=3*z,He=ue[De],gt=ue[De+1],Wr=ue[De+2],$r=re[He],Jt=re[He+1],Le=re[Wr],Kr=re[Wr+1],Ei=gt-11,vc=gt-0;for((Ei<1||Ei>9)&&(Ei=0),(vc<1||vc>9)&&(vc=0);$r!=Jt;)a[Q++]=pe[$r++];Ei>T&&(Ei=T),q+=Ei,T-=Ei,T-=vc;let E_=T;for(;E_>0;)a[Q++]=g[q++],E_--;if(gt==10||gt==11){let mt=Q-T;for(gt==10&&(T=1);T>0;){let jf=a[mt]&255;jf<192?(jf>=97&&jf<=122&&(a[mt]^=32),mt+=1,T-=1):jf<224?(a[mt+1]^=32,mt+=2,T-=2):(a[mt+2]^=5,mt+=3,T-=3)}}else if(gt==21||gt==22){let mt=Q-T,jf=N.params[z],Er=(jf&32767)+(16777216-(jf&32768));for(;T>0;){let bo=1,Ai=a[mt]&255;if(Ai<128)Er+=Ai,a[mt]=Er&127;else if(!(Ai<192)){if(Ai<224)if(T>=2){let go=a[mt+1];Er+=go&63|(Ai&31)<<6,a[mt]=192|Er>>6&31,a[mt+1]=go&192|Er&63,bo=2}else bo=T;else if(Ai<240)if(T>=3){let go=a[mt+1],Xa=a[mt+2];Er+=Xa&63|(go&63)<<6|(Ai&15)<<12,a[mt]=224|Er>>12&15,a[mt+1]=go&192|Er>>6&63,a[mt+2]=Xa&192|Er&63,bo=3}else bo=T;else if(Ai<248)if(T>=4){let go=a[mt+1],Xa=a[mt+2],A_=a[mt+3];Er+=A_&63|(Xa&63)<<6|(go&63)<<12|(Ai&7)<<18,a[mt]=240|Er>>18&7,a[mt+1]=go&192|Er>>12&63,a[mt+2]=Xa&192|Er>>6&63,a[mt+3]=A_&192|Er&63,bo=4}else bo=T}mt+=bo,T-=bo,gt==21&&(T=0)}}for(;Le!=Kr;)a[Q++]=pe[Le++];return Q-j}function qc(a,j){let g=1<<j-1;for(;(a&g)!=0;)g>>=1;return(a&g-1)+g}function Ja(a,j,g,q,T){do q-=g,a[j+q]=T;while(q>0)}function mo(a,j,g){let q=1<<j-g;for(;j<15&&(q-=a[j],!(q<=0));)j++,q<<=1;return j-g}function ms(a,j,g,q,T){let N=a[j],z,Q=new Int32Array(T),ue=new Int32Array(16),pe=new Int32Array(16),re;for(re=0;re<T;re++)ue[q[re]]++;pe[1]=0;for(let Le=1;Le<15;Le++)pe[Le+1]=pe[Le]+ue[Le];for(re=0;re<T;re++)q[re]!=0&&(Q[pe[q[re]]++]=re);let De=g,He=1<<De,gt=He;if(pe[15]==1){for(z=0;z<gt;z++)a[N+z]=Q[0];return gt}z=0,re=0;for(let Le=1,Kr=2;Le<=g;Le++,Kr<<=1)for(;ue[Le]>0;ue[Le]--)Ja(a,N+z,Kr,He,Le<<16|Q[re++]),z=qc(z,Le);let Wr=gt-1,$r=-1,Jt=N;for(let Le=g+1,Kr=2;Le<=15;Le++,Kr<<=1)for(;ue[Le]>0;ue[Le]--)(z&Wr)!=$r&&(Jt+=He,De=mo(ue,Le,g),He=1<<De,gt+=He,$r=z&Wr,a[N+$r]=De+g<<16|Jt-N-$r),Ja(a,Jt+(z>>g),Kr,He,Le-g<<16|Q[re++]),z=qc(z,Le);return gt}function mr(a){if(a.endOfStreamReached!=0){if(me(a)>=-2)return;throw"No more input"}let j=a.halfOffset<<1,g=4096-j;for(a.byteBuffer.copyWithin(0,j,4096),a.halfOffset=0;g<4096;){let q=4096-g,T=S_(a.input,a.byteBuffer,g,q);if(T<=0){a.endOfStreamReached=1,a.tailBytes=g,g+=1;break}g+=T}be(a,g)}function Qa(a,j){if(a.endOfStreamReached==0)return;let g=(a.halfOffset<<1)+(a.bitOffset+7>>3)-4;if(g>a.tailBytes)throw"Read after end";if(j!=0&&g!=a.tailBytes)throw"Unused bytes after end"}function x_(a){if(a.bitOffset>32)throw"Accumulator underloaded: "+a.bitOffset}function Pe(a,j){let g=a.accumulator32>>>a.bitOffset&(1<<j)-1;return a.bitOffset+=j,g}function ws(a,j){let g=Pe(a,16);return a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,g|Pe(a,j-16)<<16}function h(a){a.byteBuffer=new Int8Array(4160),a.accumulator32=0,a.shortBuffer=new Int16Array(2080),a.bitOffset=32,a.halfOffset=2048,a.endOfStreamReached=0,y(a)}function y(a){a.halfOffset>2030&&mr(a),Qa(a,0),a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16}function I(a){a.bitOffset==32&&y(a)}function L(a){let j=32-a.bitOffset&7;if(j!=0&&Pe(a,j)!=0)throw"Corrupted padding bits"}function me(a){let j=2048;return a.endOfStreamReached!=0&&(j=a.tailBytes+1>>1),j-a.halfOffset}function Ee(a,j,g,q){if((a.bitOffset&7)!=0)throw"Unaligned copyBytes";for(;a.bitOffset!=32&&q!=0;)j[g++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,q--;if(q==0)return;let T=ho(me(a),q>>1);if(T>0){let N=a.halfOffset<<1,z=T<<1;j.set(a.byteBuffer.subarray(N,N+z),g),g+=z,q-=z,a.halfOffset+=T}if(q!=0){if(me(a)>0){for(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);q!=0;)j[g++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,q--;Qa(a,0);return}for(;q>0;){let N=S_(a.input,j,g,q);if(N==-1)throw"Unexpected end of input";g+=N,q-=N}}}function be(a,j){let g=a.byteBuffer,q=j>>1,T=a.shortBuffer;for(let N=0;N<q;++N)T[N]=g[N*2]&255|(g[N*2+1]&255)<<8}let lt=new Int32Array(2048);function rt(a,j,g){for(let T=0;T<256;++T)a[T]=T&63,a[512+T]=T>>2,a[1792+T]=2+(T>>6);for(let T=0;T<128;++T)a[1024+T]=4*(j.charCodeAt(T)-32);for(let T=0;T<64;++T)a[1152+T]=T&1,a[1216+T]=2+(T&1);let q=1280;for(let T=0;T<19;++T){let N=T&3,z=g.charCodeAt(T)-32;for(let Q=0;Q<z;++Q)a[q++]=N}for(let T=0;T<16;++T)a[1792+T]=1,a[2032+T]=6;a[1792]=0,a[2047]=7;for(let T=0;T<256;++T)a[1536+T]=a[1792+T]<<3}rt(lt,` !! ! "#$##%#$&'##(#)#++++++++++((&*'##,---,---,-----,-----,-----&#'###.///.///./////./////./////&#'# `,"A/* ': & : $ \x81 @");function ut(){this.ringBuffer=new Int8Array(0),this.contextModes=new Int8Array(0),this.contextMap=new Int8Array(0),this.distContextMap=new Int8Array(0),this.distExtraBits=new Int8Array(0),this.output=new Int8Array(0),this.byteBuffer=new Int8Array(0),this.shortBuffer=new Int16Array(0),this.intBuffer=new Int32Array(0),this.rings=new Int32Array(0),this.blockTrees=new Int32Array(0),this.literalTreeGroup=new Int32Array(0),this.commandTreeGroup=new Int32Array(0),this.distanceTreeGroup=new Int32Array(0),this.distOffset=new Int32Array(0),this.runningState=0,this.nextRunningState=0,this.accumulator32=0,this.bitOffset=0,this.halfOffset=0,this.tailBytes=0,this.endOfStreamReached=0,this.metaBlockLength=0,this.inputEnd=0,this.isUncompressed=0,this.isMetadata=0,this.literalBlockLength=0,this.numLiteralBlockTypes=0,this.commandBlockLength=0,this.numCommandBlockTypes=0,this.distanceBlockLength=0,this.numDistanceBlockTypes=0,this.pos=0,this.maxDistance=0,this.distRbIdx=0,this.trivialLiteralContext=0,this.literalTreeIdx=0,this.commandTreeIdx=0,this.j=0,this.insertLength=0,this.contextMapSlice=0,this.distContextMapSlice=0,this.contextLookupOffset1=0,this.contextLookupOffset2=0,this.distanceCode=0,this.numDirectDistanceCodes=0,this.distancePostfixBits=0,this.distance=0,this.copyLength=0,this.maxBackwardDistance=0,this.maxRingBufferSize=0,this.ringBufferSize=0,this.expectedTotalSize=0,this.outputOffset=0,this.outputLength=0,this.outputUsed=0,this.ringBufferBytesWritten=0,this.ringBufferBytesReady=0,this.isEager=0,this.isLargeWindow=0,this.cdNumChunks=0,this.cdTotalSize=0,this.cdBrIndex=0,this.cdBrOffset=0,this.cdBrLength=0,this.cdBrCopied=0,this.cdChunks=new Array(0),this.cdChunkOffsets=new Int32Array(0),this.cdBlockBits=0,this.cdBlockMap=new Int8Array(0),this.input=null,this.ringBuffer=new Int8Array(0),this.rings=new Int32Array(10),this.rings[0]=16,this.rings[1]=15,this.rings[2]=11,this.rings[3]=4}let ct=null,Nt=new Int32Array(32),wo=new Int32Array(32);function oO(a,j){if(cO(a)==0||uO(a)==0)throw"newData must be a direct read-only byte buffer";if(j.length>31)throw"sizeBits length must be at most "+31;for(let z=0;z<4;++z)if(j[z]!=0)throw"first "+4+" must be 0";let g=Nt,q=wo;q.set(j.subarray(0,0+j.length),0);let T=0,N=a.length;for(let z=0;z<j.length;++z){g[z]=T;let Q=q[z];if(Q!=0){if(Q>=31)throw"newSizeBits values must be less than 31";if(T+=z<<Q,T<=0||T>N)throw"newSizeBits is inconsistent: overflow"}}for(let z=j.length;z<32;++z)g[z]=T;if(T!=N)throw"newSizeBits is inconsistent: underflow";ct=a}function fO(a,j,g,q,T,N){let z=dO(j+g);if(z.length!=a.length)throw"Corrupted brotli dictionary";let Q=0,ue=q.length;for(let pe=0;pe<ue;pe+=2){let re=q.charCodeAt(pe)-36,De=q.charCodeAt(pe+1)-36;for(let He=0;He<re;++He)z[Q]^=3,Q++;for(let He=0;He<De;++He)z[Q]^=236,Q++}for(let pe=0;pe<N.length;++pe)T[pe]=N.charCodeAt(pe)-65;a.set(z)}{let a=new Int8Array(122784),j=new Int32Array(25);fO(a,'wjnfgltmojefofewab`h`lgfgbwbpkltlmozpjwf`jwzlsfmivpwojhfeqfftlqhwf{wzfbqlufqalgzolufelqnallhsobzojufojmfkfosklnfpjgfnlqftlqgolmdwkfnujftejmgsbdfgbzpevookfbgwfqnfb`kbqfbeqlnwqvfnbqhbaofvslmkjdkgbwfobmgmftpfufmmf{w`bpfalwkslpwvpfgnbgfkbmgkfqftkbwmbnfOjmhaoldpjyfabpfkfognbhfnbjmvpfq$*#(klogfmgptjwkMftpqfbgtfqfpjdmwbhfkbufdbnfpffm`boosbwktfoosovpnfmvejonsbqwiljmwkjpojpwdllgmffgtbzptfpwilapnjmgboploldlqj`kvpfpobpwwfbnbqnzellghjmdtjoofbpwtbqgafpwejqfSbdfhmltbtbz-smdnlufwkbmolbgdjufpfoemlwfnv`keffgnbmzql`hj`lmlm`follhkjgfgjfgKlnfqvofklpwbib{jmel`ovaobtpofppkboeplnfpv`kylmf233&lmfp`bqfWjnfqb`faovfelvqtffheb`fklsfdbufkbqgolpwtkfmsbqhhfswsbpppkjsqllnKWNOsobmWzsfglmfpbufhffseobdojmhplogejufwllhqbwfwltmivnswkvpgbqh`bqgejofefbqpwbzhjoowkbweboobvwlfufq-`lnwbohpklsulwfgffsnlgfqfpwwvqmalqmabmgefooqlpfvqo+phjmqlof`lnfb`wpbdfpnffwdlog-isdjwfnubqzefowwkfmpfmggqlsUjft`lsz2-3!?,b=pwlsfopfojfpwlvqsb`h-djesbpw`pp<dqbznfbm%dw8qjgfpklwobwfpbjgqlbgubq#effoilkmqj`hslqwebpw$VB.gfbg?,a=sllqajoowzsfV-P-tllgnvpw1s{8JmelqbmhtjgftbmwtbooofbgX3^8sbvotbufpvqf\'+$ tbjwnbppbqnpdlfpdbjmobmdsbjg"..#ol`hvmjwqllwtbohejqntjef{no!plmdwfpw13s{hjmgqltpwlloelmwnbjopbefpwbqnbsp`lqfqbjmeoltabazpsbmpbzp7s{85s{8bqwpellwqfbotjhjkfbwpwfswqjslqd,obhftfbhwlogElqn`bpwebmpabmhufqzqvmpivozwbph2s{8dlbodqftpoltfgdfjg>!pfwp6s{8-ip<73s{je#+pllmpfbwmlmfwvafyfqlpfmwqffgeb`wjmwldjewkbqn2;s{`bnfkjooalogyllnuljgfbpzqjmdejoosfbhjmjw`lpw0s{8ib`hwbdpajwpqloofgjwhmftmfbq?"..dqltIPLMgvwzMbnfpbofzlv#olwpsbjmibyy`logfzfpejpkttt-qjphwbapsqfu23s{qjpf16s{Aovfgjmd033/abooelqgfbqmtjogal{-ebjqob`hufqpsbjqivmfwf`kje+"sj`hfujo\'+! tbqnolqgglfpsvoo/333jgfbgqbtkvdfpslwevmgavqmkqfe`foohfzpwj`hklvqolppevfo21s{pvjwgfboQPP!bdfgdqfzDFW!fbpfbjnpdjqobjgp;s{8mbuzdqjgwjsp :::tbqpobgz`bqp*8#~sks<kfoowbootklnyk9 ), #233kboo- B4s{8svpk`kbw3s{8`qft),?,kbpk46s{eobwqbqf#%%#wfoo`bnslmwlobjgnjppphjswfmwejmfnbofdfwpsolw733/  `lloeffw-sks?aq=fqj`nlpwdvjgafoogfp`kbjqnbwkbwln,jnd% ;1ov`h`fmw3338wjmzdlmfkwnopfoogqvdEQFFmlgfmj`h<jg>olpfmvooubpwtjmgQPP#tfbqqfozaffmpbnfgvhfmbpb`bsftjpkdvoeW109kjwppolwdbwfhj`haovqwkfz26s{$$*8*8!=npjftjmpajqgplqwafwbpffhW2;9lqgpwqffnboo53s{ebqnlupalzpX3^-$*8!SLPWafbqhjgp*8~~nbqzwfmg+VH*rvbgyk9\n.pjy....sqls$*8ojewW2:9uj`fbmgzgfaw=QPPsllomf`haoltW259gllqfuboW249ofwpebjolqbosloomlub`lopdfmf#lxplewqlnfwjooqlpp?k0=slvqebgfsjmh?wq=njmj*\x7F"+njmfyk9abqpkfbq33*8njoh#..=jqlmeqfggjphtfmwpljosvwp,ip,klozW119JPAMW139bgbnpffp?k1=iplm$/#$`lmwW129#QPPollsbpjbnllm?,s=plvoOJMFelqw`bqwW279?k2=;3s{"..?:s{8W379njhf975Ymj`fjm`kZlqhqj`fyk9\b$**8svqfnbdfsbqbwlmfalmg904Y\\le\\$^*8333/yk9\vwbmhzbqgaltoavpk965YIbub03s{ \x7F~ &@0&907YifeeF[SJ`bpkujpbdloepmltyk9rvfq-`pppj`hnfbwnjm-ajmggfookjqfsj`pqfmw905YKWWS.132elwltloeFMG#{al{967YALGZgj`h8 ~ f{jw906Yubqpafbw$~*8gjfw:::8bmmf~~?,Xj^-Obmdhn.^tjqfwlzpbggppfbobof{8 \n~f`klmjmf-lqd336*wlmziftppbmgofdpqlle333*#133tjmfdfbqgldpallwdbqz`vwpwzofwfnswjlm-{no`l`hdbmd\'+$-63s{Sk-Gnjp`bobmolbmgfphnjofqzbmvmj{gjp`*8~ gvpw`ojs*- 43s{.133GUGp4^=?wbsfgfnlj((*tbdffvqlskjolswpklofEBRpbpjm.15WobapsfwpVQO#avoh`llh8~ KFBGX3^*baaqivbm+2:;ofpkwtjm?,j=plmzdvzpev`hsjsf\x7F. "331*mgltX2^8X^8 Old#pbow \n\nabmdwqjnabwk*x 33s{ ~*8hl9\0effpbg=p9,,#X^8wloosovd+*x x #-ip$133sgvboalbw-ISD*8 ~rvlw*8 $*8  ~1327132613251324132;132:13131312131113101317131613151314131;131:130313021301130013071306130513041320132113221323133:133;133413351336133713301331133213332:::2::;2::42::52::62::72::02::12::22::32:;:2:;;2:;42:;52:;62:;72:;02:;12:;22:;32:4:2:4;2:442:452:462:472:402:412:422:432:5:2:5;2:542:552:562:572:502:512:522:532:6:2:6;2:642:652:662:672:602:612:622:632333231720:73333::::`lnln/Mpfpwffpwbsfqlwlglkb`f`bgbb/]lajfmg/Abbp/Aujgb`bpllwqlelqlplollwqb`vbogjilpjgldqbmwjslwfnbgfafbodlrv/Efpwlmbgbwqfpsl`l`bpbabilwlgbpjmlbdvbsvfpvmlpbmwfgj`fovjpfoobnbzlylmbbnlqsjpllaqb`oj`foolgjlpklqb`bpj<[<\\<Q<\\<R<P=l<\\=l=o=n<\\<Q<Y<S<R<R=n<T<[<Q<R<X<R=n<R<Z<Y<R<Q<T=i<q<\\<Y<Y<]=g<P=g<~=g=m<R<^=g<^<R<q<R<R<]<s<R<W<T<Q<T<L<H<q<Y<p=g=n=g<r<Q<T<P<X<\\<{<\\<x<\\<q=o<r<]=n<Y<t<[<Y<U<Q=o<P<P<N=g=o<Z5m5f4O5j5i4K5i4U5o5h4O5d4]4C5f4K5m5e5k5d5h5i5h5o4K5d5h5k4D4_4K5h4I5j5k5f4O5f5n4C5k5h4G5i4D5k5h5d5h5f4D5h4K5f4D5o4X5f4K5i4O5i5j4F4D5f5h5j4A4D5k5i5i4X5d4Xejqpwujgflojdkwtlqognfgjbtkjwf`olpfaob`hqjdkwpnbooallhpsob`fnvpj`ejfoglqgfqsljmwubovfofufowbaofalbqgklvpfdqlvstlqhpzfbqppwbwfwlgbztbwfqpwbqwpwzofgfbwksltfqsklmfmjdkwfqqlqjmsvwbalvwwfqnpwjwofwllopfufmwol`bowjnfpobqdftlqgpdbnfppklqwpsb`fel`vp`ofbqnlgfoaol`hdvjgfqbgjlpkbqftlnfmbdbjmnlmfzjnbdfmbnfpzlvmdojmfpobwfq`lolqdqffmeqlmw%bns8tbw`kelq`fsqj`fqvofpafdjmbewfqujpjwjppvfbqfbpafoltjmgf{wlwboklvqpobafosqjmwsqfppavjowojmhppsffgpwvgzwqbgfelvmgpfmpfvmgfqpkltmelqnpqbmdfbggfgpwjoonlufgwbhfmbalufeobpkej{fglewfmlwkfqujftp`kf`hofdboqjufqjwfnprvj`hpkbsfkvnbmf{jpwdljmdnlujfwkjqgabpj`sfb`fpwbdftjgwkoldjmjgfbptqlwfsbdfpvpfqpgqjufpwlqfaqfbhplvwkulj`fpjwfpnlmwktkfqfavjogtkj`kfbqwkelqvnwkqffpslqwsbqwz@oj`holtfqojufp`obppobzfqfmwqzpwlqzvpbdfplvmg`lvqwzlvq#ajqwkslsvswzsfpbssozJnbdfafjmdvssfqmlwfpfufqzpkltpnfbmpf{wqbnbw`kwqb`hhmltmfbqozafdbmpvsfqsbsfqmlqwkofbqmdjufmmbnfgfmgfgWfqnpsbqwpDqlvsaqbmgvpjmdtlnbmebopfqfbgzbvgjlwbhfptkjof-`ln,ojufg`bpfpgbjoz`kjogdqfbwivgdfwklpfvmjwpmfufqaqlbg`lbpw`lufqbssofejofp`z`ofp`fmfsobmp`oj`htqjwfrvffmsjf`ffnbjoeqbnflogfqsklwlojnjw`b`kf`jujop`boffmwfqwkfnfwkfqfwlv`kalvmgqlzbobphfgtklofpjm`fpwl`h#mbnfebjwkkfbqwfnswzleefqp`lsfltmfgnjdkwboavnwkjmhaollgbqqbznbilqwqvpw`bmlmvmjlm`lvmwubojgpwlmfPwzofOldjmkbsszl``vqofew9eqfpkrvjwfejonpdqbgfmffgpvqabmejdkwabpjpklufqbvwl8qlvwf-kwnonj{fgejmboZlvq#pojgfwlsj`aqltmbolmfgqbtmpsojwqfb`kQjdkwgbwfpnbq`krvlwfdllgpOjmhpglvawbpzm`wkvnaboolt`kjfezlvwkmlufo23s{8pfqufvmwjokbmgp@kf`hPsb`frvfqzibnfpfrvbowtj`f3/333Pwbqwsbmfoplmdpqlvmgfjdkwpkjewtlqwkslpwpofbgptffhpbuljgwkfpfnjofpsobmfpnbqwboskbsobmwnbqhpqbwfpsobzp`objnpbofpwf{wppwbqptqlmd?,k0=wkjmd-lqd,nvowjkfbqgSltfqpwbmgwlhfmplojg+wkjpaqjmdpkjsppwbeewqjfg`boopevoozeb`wpbdfmwWkjp#,,..=bgnjmfdzswFufmw26s{8Fnbjowqvf!`qlpppsfmwaoldpal{!=mlwfgofbuf`kjmbpjyfpdvfpw?,k7=qlalwkfbuzwqvf/pfufmdqbmg`qjnfpjdmpbtbqfgbm`fskbpf=?"..fm\\VP% 0:8133s{\\mbnfobwjmfmilzbib{-bwjlmpnjwkV-P-#klogpsfwfqjmgjbmbu!=`kbjmp`lqf`lnfpgljmdsqjlqPkbqf2::3pqlnbmojpwpibsbmeboopwqjboltmfqbdqff?,k1=bavpfbofqwlsfqb!.,,T`bqgpkjoopwfbnpSklwlwqvwk`ofbm-sks<pbjmwnfwboolvjpnfbmwsqlleaqjfeqlt!=dfmqfwqv`hollhpUbovfEqbnf-mfw,..= ?wqz#x ubq#nbhfp`lpwpsobjmbgvowrvfpwwqbjmobalqkfosp`bvpfnbdj`nlwlqwkfjq163s{ofbpwpwfsp@lvmw`lvogdobpppjgfpevmgpklwfobtbqgnlvwknlufpsbqjpdjufpgvw`kwf{bpeqvjwmvoo/\x7F\x7FX^8wls!= ?"..SLPW!l`fbm?aq,=eollqpsfbhgfswk#pjyfabmhp`bw`k`kbqw13s{8bojdmgfboptlvog63s{8vqo>!sbqhpnlvpfNlpw#---?,bnlmdaqbjmalgz#mlmf8abpfg`bqqzgqbewqfefqsbdf\\klnf-nfwfqgfobzgqfbnsqlufiljmw?,wq=gqvdp?"..#bsqjojgfboboofmf{b`welqwk`lgfpoldj`Ujft#pffnpaobmhslqwp#+133pbufg\\ojmhdlbopdqbmwdqffhklnfpqjmdpqbwfg03s{8tklpfsbqpf+*8!#Aol`hojmv{ilmfpsj{fo$*8!=*8je+.ofewgbujgklqpfEl`vpqbjpfal{fpWqb`hfnfmw?,fn=abq!=-pq`>wltfqbow>!`baofkfmqz17s{8pfwvsjwbozpkbqsnjmlqwbpwftbmwpwkjp-qfpfwtkffodjqop,`pp,233&8`ovappwveeajaofulwfp#2333hlqfb~*8 abmgprvfvf>#x~8;3s{8`hjmdx \n\nbkfbg`ol`hjqjpkojhf#qbwjlpwbwpElqn!zbkll*X3^8Balvwejmgp?,k2=gfavdwbphpVQO#>`foop~*+*821s{8sqjnfwfoopwvqmp3{533-isd!psbjmafb`kwb{fpnj`qlbmdfo..=?,djewppwfuf.ojmhalgz-~*8 \nnlvmw#+2::EBR?,qldfqeqbmh@obpp1;s{8effgp?k2=?p`lwwwfpwp11s{8gqjmh*#\x7F\x7F#oftjppkboo 30:8#elq#olufgtbpwf33s{8ib9npjnlm?elmwqfsoznffwpvmwfq`kfbswjdkwAqbmg*#">#gqfpp`ojspqllnplmhfznlajonbjm-Mbnf#sobwfevmmzwqffp`ln,!2-isdtnlgfsbqbnPWBQWofew#jggfm/#132*8 ~ elqn-ujqvp`kbjqwqbmptlqpwSbdfpjwjlmsbw`k?".. l.`b`ejqnpwlvqp/333#bpjbmj((*xbglaf$*X3^jg>23alwk8nfmv#-1-nj-smd!hfujm`lb`k@kjogaqv`f1-isdVQO*(-isd\x7Fpvjwfpoj`fkbqqz213!#ptffwwq= mbnf>gjfdlsbdf#ptjpp..= eee8!=Old-`ln!wqfbwpkffw*#%%#27s{8poffsmwfmwejofgib9ojg>!`Mbnf!tlqpfpklwp.al{.gfowb %ow8afbqp97;Y?gbwb.qvqbo?,b=#psfmgabhfqpklsp>#!!8sks!=`wjlm20s{8aqjbmkfoolpjyf>l>&1E#iljmnbzaf?jnd#jnd!=/#eipjnd!#!*X3^NWlsAWzsf!mftozGbmph`yf`kwqbjohmltp?,k6=ebr!=yk.`m23*8 .2!*8wzsf>aovfpwqvozgbujp-ip$8= ?"pwffo#zlv#k1= elqn#ifpvp233&#nfmv- \n tbofpqjphpvnfmwggjmda.ojhwfb`kdje!#ufdbpgbmphffpwjpkrjspvlnjplaqfgfpgffmwqfwlglpsvfgfb/]lpfpw/Mwjfmfkbpwblwqlpsbqwfglmgfmvfulkb`fqelqnbnjpnlnfilqnvmglbrv/Ag/Abpp/_olbzvgbef`kbwlgbpwbmwlnfmlpgbwlplwqbppjwjlnv`klbklqbovdbqnbzlqfpwlpklqbpwfmfqbmwfpelwlpfpwbpsb/Apmvfubpbovgelqlpnfgjlrvjfmnfpfpslgfq`kjofpfq/Muf`fpgf`jqilp/Efpwbqufmwbdqvslkf`klfoolpwfmdlbnjdl`lpbpmjufodfmwfnjpnbbjqfpivojlwfnbpkb`jbebulqivmjlojaqfsvmwlavfmlbvwlqbaqjoavfmbwf{wlnbqylpbafqojpwbovfdl`/_nlfmfqlivfdlsfq/Vkbafqfpwlzmvm`bnvifqubolqevfqbojaqldvpwbjdvboulwlp`bplpdv/Absvfglplnlpbujplvpwfggfafmml`kfavp`bebowbfvqlppfqjfgj`kl`vqpl`obuf`bpbpof/_msobylobqdllaqbpujpwbbslzlivmwlwqbwbujpwl`qfbq`bnslkfnlp`jm`l`bqdlsjplplqgfmkb`fm/Mqfbgjp`lsfgql`fq`bsvfgbsbsfonfmlq/Vwjo`obqlilqdf`boofslmfqwbqgfmbgjfnbq`bpjdvffoobppjdol`l`kfnlwlpnbgqf`obpfqfpwlmj/]lrvfgbsbpbqabm`lkjilpujbifsbaol/Epwfujfmfqfjmlgfibqelmgl`bmbomlqwfofwqb`bvpbwlnbqnbmlpovmfpbvwlpujoobufmglsfpbqwjslpwfmdbnbq`loofubsbgqfvmjglubnlpylmbpbnalpabmgbnbqjbbavplnv`kbpvajqqjlibujujqdqbgl`kj`bboo/Ailufmgj`kbfpwbmwbofppbojqpvfolsfplpejmfpoobnbavp`l/Epwboofdbmfdqlsobybkvnlqsbdbqivmwbglaofjpobpalopbab/]lkbaobov`kb/mqfbgj`fmivdbqmlwbpuboofboo/M`bqdbglolqbabilfpw/Edvpwlnfmwfnbqjlejqnb`lpwlej`kbsobwbkldbqbqwfpofzfpbrvfonvpflabpfpsl`lpnjwbg`jfol`kj`lnjfgldbmbqpbmwlfwbsbgfafpsobzbqfgfppjfwf`lqwf`lqfbgvgbpgfpflujfilgfpfbbdvbp%rvlw8glnbjm`lnnlmpwbwvpfufmwpnbpwfqpzpwfnb`wjlmabmmfqqfnlufp`qloovsgbwfdolabonfgjvnejowfqmvnafq`kbmdfqfpvowsvaoj`p`qffm`kllpfmlqnbowqbufojppvfpplvq`fwbqdfwpsqjmdnlgvofnlajofptjw`ksklwlpalqgfqqfdjlmjwpfoepl`jbob`wjuf`lovnmqf`lqgelooltwjwof=fjwkfqofmdwkebnjozeqjfmgobzlvwbvwklq`qfbwfqfujftpvnnfqpfqufqsobzfgsobzfqf{sbmgsloj`zelqnbwglvaofsljmwppfqjfpsfqplmojujmdgfpjdmnlmwkpelq`fpvmjrvftfjdkwsflsoffmfqdzmbwvqfpfbq`kejdvqfkbujmd`vpwlnleepfwofwwfqtjmgltpvanjwqfmgfqdqlvspvsolbgkfbowknfwklgujgflpp`klloevwvqfpkbgltgfabwfubovfpLaif`wlwkfqpqjdkwpofbdvf`kqlnfpjnsofmlwj`fpkbqfgfmgjmdpfbplmqfslqwlmojmfprvbqfavwwlmjnbdfpfmbaofnlujmdobwfpwtjmwfqEqbm`fsfqjlgpwqlmdqfsfbwOlmglmgfwbjoelqnfggfnbmgpf`vqfsbppfgwlddofsob`fpgfuj`fpwbwj``jwjfppwqfbnzfooltbwwb`hpwqffweojdkwkjggfmjmel!=lsfmfgvpfevouboofz`bvpfpofbgfqpf`qfwpf`lmggbnbdfpslqwpf{`fswqbwjmdpjdmfgwkjmdpfeef`wejfogppwbwfpleej`fujpvbofgjwlqulovnfQfslqwnvpfvnnlujfpsbqfmwb``fppnlpwoznlwkfq!#jg>!nbqhfwdqlvmg`kbm`fpvqufzafelqfpznalonlnfmwpsff`knlwjlmjmpjgfnbwwfq@fmwfqlaif`wf{jpwpnjggofFvqlsfdqltwkofdb`znbmmfqfmlvdk`bqffqbmptfqlqjdjmslqwbo`ojfmwpfof`wqbmgln`olpfgwlsj`p`lnjmdebwkfqlswjlmpjnsozqbjpfgfp`bsf`klpfm`kvq`kgfejmfqfbplm`lqmfqlvwsvwnfnlqzjeqbnfsloj`fnlgfopMvnafqgvqjmdleefqppwzofphjoofgojpwfg`boofgpjoufqnbqdjmgfofwfafwwfqaqltpfojnjwpDolabopjmdoftjgdfw`fmwfqavgdfwmltqbs`qfgjw`objnpfmdjmfpbefwz`klj`fpsjqjw.pwzofpsqfbgnbhjmdmffgfgqvppjbsofbpff{wfmwP`qjswaqlhfmbooltp`kbqdfgjujgfeb`wlqnfnafq.abpfgwkflqz`lmejdbqlvmgtlqhfgkfosfg@kvq`kjnsb`wpklvogbotbzpoldl!#alwwlnojpw!=*xubq#sqfej{lqbmdfKfbgfq-svpk+`lvsofdbqgfmaqjgdfobvm`kQfujftwbhjmdujpjlmojwwofgbwjmdAvwwlmafbvwzwkfnfpelqdlwPfbq`kbm`klqbonlpwolbgfg@kbmdfqfwvqmpwqjmdqfolbgNlajofjm`lnfpvssozPlvq`flqgfqpujftfg%maps8`lvqpfBalvw#jpobmg?kwno#`llhjfmbnf>!bnbylmnlgfqmbguj`fjm?,b=9#Wkf#gjboldklvpfpAFDJM#Nf{j`lpwbqwp`fmwqfkfjdkwbggjmdJpobmgbppfwpFnsjqfP`kllofeelqwgjqf`wmfbqoznbmvboPfof`w- Lmfiljmfgnfmv!=SkjojsbtbqgpkbmgofjnslqwLeej`fqfdbqgphjoopmbwjlmPslqwpgfdqfftffhoz#+f-d-afkjmggl`wlqolddfgvmjwfg?,a=?,afdjmpsobmwpbppjpwbqwjpwjppvfg033s{\x7F`bmbgbbdfm`zp`kfnfqfnbjmAqbyjopbnsofoldl!=afzlmg.p`bofb``fswpfqufgnbqjmfEllwfq`bnfqb?,k2= \\elqn!ofbufppwqfpp!#,= -dje!#lmolbgolbgfqL{elqgpjpwfqpvqujuojpwfmefnbofGfpjdmpjyf>!bssfbowf{w!=ofufopwkbmhpkjdkfqelq`fgbmjnbobmzlmfBeqj`bbdqffgqf`fmwSflsof?aq#,=tlmgfqsqj`fpwvqmfg\x7F\x7F#x~8nbjm!=jmojmfpvmgbztqbs!=ebjofg`fmpvpnjmvwfafb`lmrvlwfp263s{\x7Ffpwbwfqfnlwffnbjo!ojmhfgqjdkw8pjdmboelqnbo2-kwnopjdmvssqjm`feolbw9-smd!#elqvn-B``fppsbsfqpplvmgpf{wfmgKfjdkwpojgfqVWE.;!%bns8#Afelqf-#TjwkpwvgjlltmfqpnbmbdfsqlejwiRvfqzbmmvbosbqbnpalvdkwebnlvpdlldofolmdfqj((*#xjpqbfopbzjmdgf`jgfklnf!=kfbgfqfmpvqfaqbm`ksjf`fpaol`h8pwbwfgwls!=?qb`jmdqfpjyf..%dw8sb`jwzpf{vboavqfbv-isd!#23/333lawbjmwjwofpbnlvmw/#Jm`-`lnfgznfmv!#ozqj`pwlgbz-jmgffg`lvmwz\\oldl-EbnjozollhfgNbqhfwopf#jeSobzfqwvqhfz*8ubq#elqfpwdjujmdfqqlqpGlnbjm~fopfxjmpfqwAold?,ellwfqoldjm-ebpwfqbdfmwp?algz#23s{#3sqbdnbeqjgbzivmjlqgloobqsob`fg`lufqpsovdjm6/333#sbdf!=alpwlm-wfpw+bubwbqwfpwfg\\`lvmwelqvnpp`kfnbjmgf{/ejoofgpkbqfpqfbgfqbofqw+bssfbqPvanjwojmf!=algz!= )#WkfWklvdkpffjmdifqpfzMftp?,ufqjezf{sfqwjmivqztjgwk>@llhjfPWBQW#b`qlpp\\jnbdfwkqfbgmbwjufsl`hfwal{!= Pzpwfn#Gbujg`bm`fqwbaofpsqlufgBsqjo#qfboozgqjufqjwfn!=nlqf!=albqgp`lolqp`bnsvpejqpw#\x7F\x7F#X^8nfgjb-dvjwbqejmjpktjgwk9pkltfgLwkfq#-sks!#bppvnfobzfqptjoplmpwlqfpqfojfeptfgfm@vpwlnfbpjoz#zlvq#Pwqjmd Tkjowbzolq`ofbq9qfplqweqfm`kwklvdk!*#(#!?algz=avzjmdaqbmgpNfnafqmbnf!=lssjmdpf`wlq6s{8!=upsb`fslpwfqnbilq#`leeffnbqwjmnbwvqfkbssfm?,mbu=hbmpbpojmh!=Jnbdfp>ebopftkjof#kpsb`f3%bns8# Jm##sltfqSlophj.`lolqilqgbmAlwwlnPwbqw#.`lvmw1-kwnomftp!=32-isdLmojmf.qjdkwnjoofqpfmjlqJPAM#33/333#dvjgfpubovf*f`wjlmqfsbjq-{no!##qjdkwp-kwno.aol`hqfdF{s9klufqtjwkjmujqdjmsklmfp?,wq=vpjmd# \nubq#=$*8 \n?,wg= ?,wq= abkbpbaqbpjodbofdlnbdzbqslophjpqsphj4]4C5d\bTA\nzk\vBl\bQ\x7F\vUmGx\bSM\nmC\bTA wQ\nd}\bW@\bTl\bTF i@ cT\vBM\v|jBV qw cC\bWI\npa fM\n{Z{X\bTF\bVV\bVK \x7FmkF []\bPm\bTv\nsI\vpg [I\bQpmx\v_W\n^M\npe\vQ}\vGu\nel\npeChBV\bTA So\nzk\vGL\vxD\nd[JzMY\bQpli\nfl\npC{BNt\vwT i_\bTgQQ\n|p\vXN\bQS\vxDQC\bWZ pD\vVS\bTWNtYh\nzuKjN} wr Ha\n_D j`\vQ}\vWp\nxZ{c ji BU\nbDa| Tn pV\nZd\nmC\vEV{X c} To\bWl\bUd IQ cg\vxs\nXW wR\vek c} ]y Jn\nrp\neg\npV\nz\\{W\npl\nz\\\nzU Pc `{\bV@\nc|\bRw i_\bVb\nwX HvSu\bTF\v_W\vWs\vsIm\x7F\nTT\ndc US }f iZ\bWz c}MD Be iD\v@@\bTl\bPv }tSwM`\vnU kW\ved\nqo\vxY A|\bTz\vy`BRBM iaXU\nyun^ fL iI\nXW fD\bWz\bW@ yj \x7Fm av BN\vb\\ pD\bTf\nY[ Jn\bQy [^\vWc\vyuDlCJ\vWj\vHR `V\vuW Qy\np@\vGuplJm\bW[\nLP\nxC\n`m wQui\x7FR\nbI wQ BZ WVBR\npg cgtiCW\n_y Rg\bQa\vQB\vWc\nYble\ngESu\nL[ Q\x7F ea dj\v]W\nb~M` wL\bTV\bVH\nt\x7F\npl |bs_\bU|\bTaoQlvSkM`\bTv\vK}\nfl cCoQBR Hk |d\bQp HK BZ\vHR\bPv\vLx\vEZ\bT\x7F\bTv iDoDMU\vwBSuk`St\ntC Pl Kg\noi jY\vxYh}\nzk\bWZ \x7Fm\ve` TB fE\nzk `zYh\nV| HK AJ AJ\bUL p\\ ql\nYcKd\nfyYh [I\vDgJm\n]n\nlb\bUd\n{Z lu fsoQ\bTWJm\vwB eaYhBC sb Tn\nzU\n_y\vxY Q]\ngwmt O\\\ntb\bWW\bQy mI V[\ny\\\naB\vRb wQ\n]QQJ\bWg\vWa\bQj\ntC\bVH\nYm\vxs\bVK\nel\bWI\vxYCq\ntR\vHV\bTl\bVw ay\bQa\bVV }t dj\nr| p\\ wR\n{i\nTT [I i[ AJ\vxs\v_W d{\vQ} cg Tz A| Cj\vLmN}m\x7F\nbK dZ p\\ `V sV\np@ iD wQ\vQ}\bTfkaJm\v@@\bV` zp\n@NSw iI cg\noiSu\bVwloCy c}\vb\\ sUBA\bWI\bTf\nxS Vp\nd|\bTV\vbC NoJu\nTC |`\n{Z D]\bU| c}lm\bTl Bv Pl c}\bQp \x7Fm\nLk kj\n@NSbKO j_ p\\\nzU\bTl\bTg\bWI cfXO\bWW\ndzli BN\nd[\bWOMD\vKC dj I_\bVV\ny\\\vLmxl xB kV\vb\\\vJW\vVS Vx\vxD d{MD\bTa |`\vPzR}\vWsBM\nsICN\bTaJm\npe i_\npV\nrh Rd Hv\n~A\nxR\vWh\vWk\nxS\vAz\vwX\nbIoQ fw\nqI\nV|\nunz\x7F\vpg d\\\voA{D i_xB\bT\x7F `Vqr TTg]CA\vuR VJ T`\npw\vRb I_\nCxRo\vsICjKh Bv WVBBoD{D\nhcKm\v^R QE\n{I\np@\nc|Gt c}Dl\nzUqN sVk} Hh\v|j\nqou| Q]\vek\x7FZM`St\npe dj\bVG\veE \x7Fm\vWc|I\n[W fL\bT\x7F BZSu\vKaCqNtY[\nqI\bTv fM i@ }fB\\ Qy\vBl\bWgXDkc\vx[\bVV Q] \x7Fa Py\vxD\nfI }foD dj SGls ~DCN\n{Z \\v\n_D\nhc\vx_C[ AJ\nLM VxCI bj c^ cF\ntCSx wrXA\bU\\ |a\vK\\\bTV\bVj\nd| fsCX\ntb\bRw Vx AE A|\bT\x7FNt\vDg Vc\bTld@\npo \x7FM cF\npe iZ Bo\bSq\nfHl`\bTx\bWf HE\vF{ cO fD\nlm\vfZ\nlm\veU dGBH\bTV SiMW\nwX\nz\\ \\cCX\nd} l}\bQp\bTV F~\bQ\x7F `i\ng@nO\bUd\bTl\nL[ wQ ji\ntC |J\nLU\naB\vxYKj AJuN i[\npeSk\vDg\vx]\bVb\bVV\nea kV\nqI\bTaSk\nAO pD\ntb\nts\nyi\bVg i_\v_W\nLkNt yj fMR\x7F iI\bTl\vwX sV\vMl\nyu AJ\bVjKO WV\vA}\vW\x7F\nrp iD\v|olv\vsIBM d~ CU\bVbeV\npC\vwT j` c}\vxs\vps\vvh WV\vGg\vAe\vVK\v]W rg\vWcF` Br\vb\\ dZ\bQp\nqIkF\nLk\vAR\bWI\bTg bs dw\n{L\n_y iZ\bTA lg\bVV\bTl dk\n`k a{ i_{Awj wN\v@@\bTe i_\n_D wL\nAH\viK\vek\n[] p_ yj\bTv US [r\n{I\npsGt\vVK\nplS}\vWP |dMD\vHV\bT\x7FR}M`\bTV\bVHlvCh\bW[Ke R{\v^R ab BZ VA B`\nd|\nhsKe BeOi R{ d\\nB\bWZ dZ VJOs \x7FmuQ\vhZQ@QQ\nfI\bW[B\\li\nzU\nMdM`\nxS\bVV\n\\}\vxD \x7Fm\bTpIS\nc| kVi~ V{\vhZ |b\bWt\n@R\voA\vnU\bWI ea B` iD c} TzBR\vQBNj CP [I\bTv `WuN\vpg\vpg\vWc iT bs wL U_ c\\ |h\vKa Nr fL\nq|\nzu\nz\\ Nr\bUg |bm`\bTv\nyd\nrp\bWf UXBV\nzk\nd} wQ }fCe\ved\bTW\bSB\nxU cn\bTb\ne\x7F a\\ SG\bU|\npV\nN\\Kn\vnU At pD\v^R\vIrb[ R{ dE\vxD\vWK\vWA\bQL\bW@Su\bUd\nDM PcCADloQ Hswiub\n\x7Fa\bQpOb\nLP\bTlY[\vK} AJ\bQ\x7Fn^\vsA\bSM\nqM\bWZ\n^W\vz{S| fD\bVK\bTv\bPvBB CPdF id\vxsmx\vws cC\ntC ycM`\vW\x7F\nrh\bQp\vxD\\o\nsI_k\nzukF fDXsXO jp\bTvBS{B Br\nzQ\nbI c{BDBVnO\bTF caJd fL PV I_\nlK`o wX\npa gu\bP}{^\bWf\n{I BN\npaKl\vpg cn fL\vvhCq\bTl\vnU\bSqCm wR\bUJ\npe\nyd\nYgCy\vKW fD\neaoQ j_ BvnM\vID\bTa\nzApl\n]n\bTa R{ fr\n_y\bUg{Xkk\vxD|Ixl\nfyCe\vwB\nLk\vd]\noi\n}h Q]\npe\bVwHkOQ\nzk AJ\npV\bPv\ny\\ A{Oi\bSBXA\veE jp\nq} iDqN\v^R \x7Fm iZ Br\bVg\noi\n\\X U_\nc|\vHV\bTf Tn\\N\\N\nuBlv\nyu Td\bTf\bPL\v]W dG\nA`\nw^\ngI\npe dw\nz\\ia\bWZ cFJm\n{Z\bWO_kDfRR d\\\bVV\vxsBNtilm Td ]y\vHV So\v|jXX A|\vZ^\vGu\bTWM`kF\vhZ\vVK dG\vBl ay\nxUqEnO\bVw\nqICX\ne\x7F Pl\bWO\vLm dLuHCm dTfn\vwBka\vnU\n@M\nyT Hv \\}Kh d~Yhk}\neR d\\\bWI |b HK iD\bTWMY\npl\bQ_ wr\vAx HE\bTg\bSqvp\vb\\\bWO\nOl\nsI\nfy\vID \\c\n{Z\n^~\npe\nAO TT\vxvk_\bWO\v|j\vwB Qy i@ Pl Ha dZk}ra UT\vJc\ved\np@ QN\nd| kj HkM`\noi wr d\\\nlq\no_\nlb\nL[ acBBBHCm\npl IQ\bVK\vxs\n`e\viK\npaOi US\bTp fD\nPGkkXA\nz\\\neg\vWh wRqN\nqS cnlo\nxS\n^W BU\nt\x7F HE p\\ fF fw\bVV\bW@ ak\vVKls VJ\bVV\veE\\o\nyX\nYmM`lL\nd|\nzk A{sE wQXT\nt\x7F Pl ]y\vwT{pMD\vb\\ Q]Kj Jn\nAH\vRb BU HK \\c\nfIm\x7F\nqM\n@R So\noiBT Hv\n_yKh BZ ]i\bUJ V{Sr\nbI\vGg a_\bTR\nfI\nfl [K IIS|\vuW iI\bWI\nqI\v|jBV\bVg\bWZkF\vx]\bTA ab fr i@ Jd Jd\vps\nAO\bTaxu iD\nzk |d |`\bW[ lP dG\bVV\vw}\vqO i[\bQ\x7F\bTz\vVF wNts dw\bTv\neS\ngi NryS\npe\bVV\bSq\n`m yj BZ\vWX\bSB c\\\nUR [J c_nM\bWQ\vAx\nMd Brui\vxY\bSM\vWc\v|j\vxs }Q BO\bPL\bWW fM\nAO Pc\veUe^\bTg\nqI ac\bPv cFoQ Q\x7F\vhZka\nz\\ iK BU\n`k CPS|M`\n{I S{_O BZZiSk ps p\\\nYu\n]s\nxC\bWt\nbD kV\vGuyS\nqA [r\neKM` dZlL\bUg\bTl\nbD US\vb\\ pV\nccS\\ ct `z\bPL\vWs\nA`\neg\bSquECR\vDg `W\vz{\vWcSkSk bW\bUg ea\nxZ iI UX VJ\nqn S{\vRb\bTQ\nplGt\vuWuj\npF\nqI fL [I iaXO\nyu\vDg\ved q{VG\bQ\x7Fka Vj kV xB\nd|\np@ QN Pc ps]j kV oU\bTp\nzUnB\vB] a{\bV@\n]nm` cz R{m`\bQa\vwT\bSMMYqN dj~s\vQ}MY\vMB Bv wR\bRg\vQ} ql\vKC\nrmxuCC\vwB\vvh BqXq\npV i_ObuE\nbd\nqo\v{i\nC~ BL\veEuH\bVjEyGz\vzR\v{i cf\n{Z\n]nXA\vGu\vnU hS\vGI\nCc HE\bTA HBBHCj\nCc\bTF HE\nXI A{\bQ\x7F c\\\vmO\vWX\nfH\np@MY\bTF\nlK Bt\nzU TTKm\vwT\npV\ndt\vyI Vx Q\x7F Rg Td\nzU\bRS\nLM wAnM Tn\ndS ]g\nLc\vwB }t [I CPkX\vFm\vhZm\x7F i[\np@\vQ}\vW\x7F |d\nMO\nMd f_ fD cJ Hz\vRb io PyY[\nxU ct\v@@ ww\bPvBMFF\ntbv|\vKm Bq BqKh`o\nZdXU i] |` StB\\\bQ\x7F\v_W TJ\nqI |a A{\vuPMD Pl\nxR fL\vws c{ d\\\bV`\neg HKkc\nd|\bVV\ny\\kc i]\bVG `V ss I_ AE bs du\nel pD\vW\x7F\nqslv\bSMZi\vVKia\vQB Q\x7F\n{Z\bPt\vKl\nlK\nhs\ndS\bVKmf\nd^ kV cO\nc|\bVH \\]\bTv\bSq mI\vDg VJ cn\ny\\\bVg\bTv\nyX\bTF ]]\bTp\noi\nhs\veU\nBf djMr\n|p \\g ]r\bVb{D\nd[XN fM O\\s_ cf iZXN\vWc qv\n`m U^oD\nd|\vGg dE\vwflou}\nd|oQ `iOi\vxD\ndZ\nCxYw\nzk\ntb\ngw yj B`\nyX\vps\ntC\vpP\vqw\bPu\bPX Dm\npwNj ss aG\vxs\bPt\noLGz Ok i@ i]eC IQ ii dj\v@J |duh\bWZ\veU\vnU\bTa cCg]\nzkYh\bVK\nLU\np@\ntb\ntR Cj\vNP i@\bP{\n\\}\n{c\nwX fL\bVG c{ |` AJ |C fDln |d bs\nqI{B\vAx\np@\nzk\vRbOs\vWSe^\vD_ Bv\vWd\bVb\vxs\veE\bRw\n]n\n|p\vg| fwkc\bTIka\n\\TSp ju\vps\npeu|\vGr\bVe CU]MXU\vxD\bTa IQ\vWq CU am dj\bSoSw\vnUCh Q]s_\bPt fS\bTa \\}\n@OYc UZ\bTx\npe\vnU\nzU |} iD\nz\\\bSM\vxDBR\nzQ QN]MYh\nLP\vFm\vLXvc\vqlka HK\bVb\ntC\nCy\bTv\nuVoQ `z [I B`\vRb yj sb\vWs\bTl kV\ved\ne\x7FlL\vxN \x7Fm\nJn jY\vxD\bVb\bSq\vyu wL\vXL\bTA pg At nDXX wR\npl\nhwyS\nps cO\bW[\v|jXN sV p\\ Be\nb~\nAJ\n]ek`qN dw WV HE\vEVJz id B` zhE] fD\bTgqN\bTa jaCv\bSM\nhc\bUet_ ieg] wQ\nPn\bVB jw\bVg\vbE BZ\vRH\bP{ jp\n\\} a_ cC |a\vD] BZ i[ fD\vxW\no_ d\\\n_D\ntb \\c AJ\nlKoQlo\vLx\vM@\bWZKn\vpg\nTi\nIv\n|r\v@}JzLmWhk}ln\vxD\n]sgc\vps Br\bTW\vBMtZ\nBYDW jf\vSWC}\nqo dE mv IQ\bPP\bUblvBC\nzQ [I\vgl\nig\bUsBT\vbC\bSq sU iW\nJn SY HK rg\npV\vID\v|jKO `S |a`vbmglfmujbqnbgqjgavp`bqjmj`jlwjfnslslqrvf`vfmwbfpwbglsvfgfmivfdlp`lmwqbfpw/Mmmlnaqfwjfmfmsfqejonbmfqbbnjdlp`jvgbg`fmwqlbvmrvfsvfgfpgfmwqlsqjnfqsqf`jlpfd/Vmavfmlpuloufqsvmwlppfnbmbkba/Abbdlpwlmvfulpvmjglp`bqolpfrvjslmj/]lpnv`klpbodvmb`lqqfljnbdfmsbqwjqbqqjabnbq/Abklnaqffnsoflufqgbg`bnajlnv`kbpevfqlmsbpbglo/Amfbsbqf`fmvfubp`vqplpfpwbabrvjfqlojaqlp`vbmwlb``fplnjdvfoubqjlp`vbwqlwjfmfpdqvslppfq/Mmfvqlsbnfgjlpeqfmwfb`fq`bgfn/Mplefqwb`l`kfpnlgfoljwbojbofwqbpbod/Vm`lnsqb`vbofpf{jpwf`vfqslpjfmglsqfmpboofdbqujbifpgjmfqlnvq`jbslgq/Msvfpwlgjbqjlsvfaolrvjfqfnbmvfosqlsjl`qjpjp`jfqwlpfdvqlnvfqwfevfmwf`fqqbqdqbmgffef`wlsbqwfpnfgjgbsqlsjbleqf`fwjfqqbf.nbjoubqjbpelqnbpevwvqllaifwlpfdvjqqjfpdlmlqnbpnjpnlp/Vmj`l`bnjmlpjwjlpqby/_mgfajglsqvfabwlofglwfm/Abifp/Vpfpsfql`l`jmblqjdfmwjfmgb`jfmwl`/Mgjykbaobqpfq/Abobwjmbevfqybfpwjoldvfqqbfmwqbq/E{jwlo/_sfybdfmgbu/Agflfujwbqsbdjmbnfwqlpibujfqsbgqfpe/M`jo`bafyb/Mqfbppbojgbfmu/Alibs/_mbavplpajfmfpwf{wlpoofubqsvfgbmevfqwf`ln/Vm`obpfpkvnbmlwfmjglajoablvmjgbgfpw/Mpfgjwbq`qfbgl<X<W=c=k=n<R<V<\\<V<T<W<T=a=n<R<^=m<Y<Y<_<R<S=l<T=n<\\<V<Y=e<Y=o<Z<Y<v<\\<V<]<Y<[<]=g<W<R<Q<T<~=m<Y<S<R<X<A=n<R=n<R<P=k<Y<P<Q<Y=n<W<Y=n=l<\\<[<R<Q<\\<_<X<Y<P<Q<Y<x<W=c<s=l<T<Q<\\=m<Q<T=i=n<Y<P<V=n<R<_<R<X<^<R=n=n<\\<P<M<D<|<P<\\=c<K=n<R<^<\\=m<^<\\<P<Y<P=o<N<\\<V<X<^<\\<Q<\\<P=a=n<T=a=n=o<~<\\<P=n<Y=i<S=l<R=n=o=n<Q<\\<X<X<Q=c<~<R=n=n=l<T<Q<Y<U<~<\\=m<Q<T<P=m<\\<P=n<R=n=l=o<]<r<Q<T<P<T=l<Q<Y<Y<r<r<r<W<T=j=a=n<\\<r<Q<\\<Q<Y<P<X<R<P<P<R<U<X<^<Y<R<Q<R=m=o<X\fHy\fIk\fHU\fId\fHy\fIl\fHT\fIk\fHy\fHR\fHy\fIg\fHx\fH\\\fHF\fH\\\fHD\fIk\fHc\fHy\fHy\fHS\fHA\fIl\fHk\fHT\fHy\fH\\\fHH\fIg\fHU\fIg\fHj\fHF\fHU\fIl\fHC\fHU\fHC\fHR\fHH\fHy\fHI\fHRibdqbm\fHj\fHp\fHp\fIg\fHi\fH@\fHJ\fIg\fH{\fHd\fHp\fHR\fH{\fHc\fHU\fHB\fHk\fHD\fHY\fHU\fHC\fIk\fHI\fIk\fHI\fIl\fHt\fH\\\fHp\fH@\fHJ\fIl\fHy\fHd\fHp\fIl\fHY\fIk\fHD\fHd\fHD\fHc\fHU\fH\\\fHe\fHT\fHB\fIk\fHy\fHB\fHY\fIg\fH^\fIk\fHT\fH@\fHB\fHd\fHJ\fIk\fH\x7F\fH\\\fHj\fHB\fH@\fHT\fHA\fH\\\fH@\fHD\fHv\fH^\fHB\fHD\fHj\fH{\fHT\fIl\fH^\fIl4U5h5e4I5h5e5k4\\4K4N4B4]4U4C4C4K5h5e5k4\\5k4Y5d4]4V5f4]5o4K5j5d5h4K4D5f5j4U4]4Z4\\5h5o5k5j4K5f5d5i5n4K5h4U5h5f4K5j4K5h5o5j4A4F5e5n4D5h5d4A4E4K4B4]5m5n4[4U4D4C4]5o5j4I4\\4K5o5i4K4K4A4C4I5h4K5m5f5k4D4U4Z5o5f5m4D4A4G5d5i5j5d5k5d4O5j4K4@4C4K5h5k4K4_5h5i4U5j4C5h5f4_4U4D4]4Y5h5e5i5j4\\4D5k4K4O5j5k5i4G5h5o5j4F4K5h4K4A5f4G5i4Y4]4X4]4A4A5d5h5d5m5f4K4\\4K5h5o5h5i4]4E4K5j4F4K5h5m4O4D5d4B4K4Y4O5j4F4K5j5k4K5h5f4U4Z5d5d5n4C4K4D5j4B5f4]4D5j4F5h5o5i4X4K4M5d5k5f4K4D5d5n4Y4Y5d5i4K4]5n5i4O4A4C5j4A5j4U4C5i4]4O5f4K4A4E5o4F4D4C5d5j5f4@4D5i5j5k4F4A4F4@5k4E4_5j4E5f4F5i5o4]4E4V4^4E5j5m4_4D5f4F5h5h5k5h5j4K4F5h5o5n5h4D5h5i4K4U5j5k4O5d5h4X5f4M5j5d4]4O5i4K5m5f5o4D5o5h4\\4K4F4]4F4D4D4O5j5k5i4_4K5j5o4D5f4U5m5n4C4A4_5j5h5k5i4X4U4]4O5k5h4X5k4]5n4[4]4[5h4Dsqlejofpfquj`fgfebvowkjnpfoegfwbjop`lmwfmwpvsslqwpwbqwfgnfppbdfpv``fppebpkjlm?wjwof=`lvmwqzb``lvmw`qfbwfgpwlqjfpqfpvowpqvmmjmdsql`fpptqjwjmdlaif`wpujpjaoftfo`lnfbqwj`ofvmhmltmmfwtlqh`lnsbmzgzmbnj`aqltpfqsqjub`zsqlaofnPfquj`fqfpsf`wgjpsobzqfrvfpwqfpfquftfapjwfkjpwlqzeqjfmgplswjlmptlqhjmdufqpjlmnjoojlm`kbmmfotjmglt-bggqfppujpjwfgtfbwkfq`lqqf`wsqlgv`wfgjqf`welqtbqgzlv#`bmqfnlufgpvaif`w`lmwqlobq`kjuf`vqqfmwqfbgjmdojaqbqzojnjwfgnbmbdfqevqwkfqpvnnbqznb`kjmfnjmvwfpsqjubwf`lmwf{wsqldqbnpl`jfwzmvnafqptqjwwfmfmbaofgwqjddfqplvq`fpolbgjmdfofnfmwsbqwmfqejmboozsfqef`wnfbmjmdpzpwfnphffsjmd`vowvqf%rvlw8/ilvqmbosqlif`wpvqeb`fp%rvlw8f{sjqfpqfujftpabobm`fFmdojpk@lmwfmwwkqlvdkSofbpf#lsjmjlm`lmwb`wbufqbdfsqjnbqzujoobdfPsbmjpkdboofqzgf`ojmfnffwjmdnjppjlmslsvobqrvbojwznfbpvqfdfmfqbopsf`jfppfppjlmpf`wjlmtqjwfqp`lvmwfqjmjwjboqfslqwpejdvqfpnfnafqpklogjmdgjpsvwffbqojfqf{sqfppgjdjwbosj`wvqfBmlwkfqnbqqjfgwqbeej`ofbgjmd`kbmdfg`fmwqbouj`wlqzjnbdfp,qfbplmppwvgjfpefbwvqfojpwjmdnvpw#afp`kllopUfqpjlmvpvboozfsjplgfsobzjmddqltjmdlaujlvplufqobzsqfpfmwb`wjlmp?,vo= tqbssfqboqfbgz`fqwbjmqfbojwzpwlqbdfbmlwkfqgfphwlsleefqfgsbwwfqmvmvpvboGjdjwbo`bsjwboTfapjwfebjovqf`lmmf`wqfgv`fgBmgqljggf`bgfpqfdvobq#%bns8#bmjnbopqfofbpfBvwlnbwdfwwjmdnfwklgpmlwkjmdSlsvobq`bswjlmofwwfqp`bswvqfp`jfm`foj`fmpf`kbmdfpFmdobmg>2%bns8Kjpwlqz#>#mft#@fmwqbovsgbwfgPsf`jboMfwtlqhqfrvjqf`lnnfmwtbqmjmd@loofdfwlloabqqfnbjmpaf`bvpffof`wfgGfvwp`kejmbm`ftlqhfqprvj`hozafwtffmf{b`wozpfwwjmdgjpfbpfPl`jfwztfbslmpf{kjajw%ow8"..@lmwqlo`obppfp`lufqfglvwojmfbwwb`hpgfuj`fp+tjmgltsvqslpfwjwof>!Nlajof#hjoojmdpkltjmdJwbojbmgqlssfgkfbujozfeef`wp.2$^*8 `lmejqn@vqqfmwbgubm`fpkbqjmdlsfmjmdgqbtjmdajoojlmlqgfqfgDfqnbmzqfobwfg?,elqn=jm`ovgftkfwkfqgfejmfgP`jfm`f`bwboldBqwj`ofavwwlmpobqdfpwvmjelqnilvqmfzpjgfabq@kj`bdlklojgbzDfmfqbosbppbdf/%rvlw8bmjnbwfeffojmdbqqjufgsbppjmdmbwvqboqlvdkoz- Wkf#avw#mlwgfmpjwzAqjwbjm@kjmfpfob`h#lewqjavwfJqfobmg!#gbwb.eb`wlqpqf`fjufwkbw#jpOjaqbqzkvpabmgjm#eb`wbeebjqp@kbqofpqbgj`boaqlvdkwejmgjmdobmgjmd9obmd>!qfwvqm#ofbgfqpsobmmfgsqfnjvnsb`hbdfBnfqj`bFgjwjlm^%rvlw8Nfppbdfmffg#wlubovf>!`lnsof{ollhjmdpwbwjlmafojfufpnboofq.nlajofqf`lqgptbmw#wlhjmg#leEjqfel{zlv#bqfpjnjobqpwvgjfgnb{jnvnkfbgjmdqbsjgoz`ojnbwfhjmdglnfnfqdfgbnlvmwpelvmgfgsjlmffqelqnvobgzmbpwzklt#wl#Pvsslqwqfufmvff`lmlnzQfpvowpaqlwkfqplogjfqobqdfoz`boojmd-%rvlw8B``lvmwFgtbqg#pfdnfmwQlafqw#feelqwpSb`jej`ofbqmfgvs#tjwkkfjdkw9tf#kbufBmdfofpmbwjlmp\\pfbq`kbssojfgb`rvjqfnbppjufdqbmwfg9#ebopfwqfbwfgajddfpwafmfejwgqjujmdPwvgjfpnjmjnvnsfqkbspnlqmjmdpfoojmdjp#vpfgqfufqpfubqjbmw#qlof>!njppjmdb`kjfufsqlnlwfpwvgfmwplnflmff{wqfnfqfpwlqfalwwln9fuloufgboo#wkfpjwfnbsfmdojpktbz#wl##Bvdvpwpznalop@lnsbmznbwwfqpnvpj`bobdbjmpwpfqujmd~*+*8 sbznfmwwqlvaof`lm`fsw`lnsbqfsbqfmwpsobzfqpqfdjlmpnlmjwlq#$$Wkf#tjmmjmdf{solqfbgbswfgDboofqzsqlgv`fbajojwzfmkbm`f`bqffqp*-#Wkf#`loof`wPfbq`k#bm`jfmwf{jpwfgellwfq#kbmgofqsqjmwfg`lmplofFbpwfqmf{slqwptjmgltp@kbmmfojoofdbomfvwqbopvddfpw\\kfbgfqpjdmjmd-kwno!=pfwwofgtfpwfqm`bvpjmd.tfahjw`objnfgIvpwj`f`kbswfquj`wjnpWklnbp#nlyjoobsqlnjpfsbqwjfpfgjwjlmlvwpjgf9ebopf/kvmgqfgLoznsj`\\avwwlmbvwklqpqfb`kfg`kqlmj`gfnbmgppf`lmgpsqlwf`wbglswfgsqfsbqfmfjwkfqdqfbwozdqfbwfqlufqboojnsqluf`lnnbmgpsf`jbopfbq`k-tlqpkjsevmgjmdwklvdkwkjdkfpwjmpwfbgvwjojwzrvbqwfq@vowvqfwfpwjmd`ofbqozf{slpfgAqltpfqojafqbo~#`bw`kSqlif`wf{bnsofkjgf+*8EolqjgbbmptfqpbooltfgFnsfqlqgfefmpfpfqjlvpeqffglnPfufqbo.avwwlmEvqwkfqlvw#le#">#mvoowqbjmfgGfmnbqhuljg+3*,boo-ipsqfufmwQfrvfpwPwfskfm Tkfm#lapfquf?,k1= Nlgfqm#sqlujgf!#bow>!alqgfqp- Elq# Nbmz#bqwjpwpsltfqfgsfqelqnej`wjlmwzsf#lenfgj`bowj`hfwplsslpfg@lvm`jotjwmfppivpwj`fDflqdf#Afodjvn---?,b=wtjwwfqmlwbaoztbjwjmdtbqebqf#Lwkfq#qbmhjmdskqbpfpnfmwjlmpvqujufp`klobq?,s= #@lvmwqzjdmlqfgolpp#leivpw#bpDflqdjbpwqbmdf?kfbg=?pwlssfg2$^*8 jpobmgpmlwbaofalqgfq9ojpw#le`bqqjfg233/333?,k0= #pfufqboaf`lnfppfof`w#tfggjmd33-kwnonlmbq`klee#wkfwfb`kfqkjdkoz#ajloldzojef#lelq#fufmqjpf#le%qbrvl8sovplmfkvmwjmd+wklvdkGlvdobpiljmjmd`jq`ofpElq#wkfBm`jfmwUjfwmbnufkj`ofpv`k#bp`qzpwboubovf#>Tjmgltpfmilzfgb#pnboobppvnfg?b#jg>!elqfjdm#Boo#qjklt#wkfGjpsobzqfwjqfgkltfufqkjggfm8abwwofppffhjmd`bajmfwtbp#mlwollh#bw`lmgv`wdfw#wkfIbmvbqzkbssfmpwvqmjmdb9klufqLmojmf#Eqfm`k#ob`hjmdwzsj`bof{wqb`wfmfnjfpfufm#jedfmfqbwgf`jgfgbqf#mlw,pfbq`kafojfep.jnbdf9ol`bwfgpwbwj`-oldjm!=`lmufqwujlofmwfmwfqfgejqpw!=`jq`vjwEjmobmg`kfnjpwpkf#tbp23s{8!=bp#pv`kgjujgfg?,psbm=tjoo#afojmf#leb#dqfbwnzpwfqz,jmgf{-eboojmdgvf#wl#qbjotbz`loofdfnlmpwfqgfp`fmwjw#tjwkmv`ofbqIftjpk#sqlwfpwAqjwjpkeoltfqpsqfgj`wqfelqnpavwwlm#tkl#tbpof`wvqfjmpwbmwpvj`jgfdfmfqj`sfqjlgpnbqhfwpPl`jbo#ejpkjmd`lnajmfdqbskj`tjmmfqp?aq#,=?az#wkf#MbwvqboSqjub`z`llhjfplvw`lnfqfploufPtfgjpkaqjfeozSfqpjbmpl#nv`k@fmwvqzgfsj`wp`lovnmpklvpjmdp`qjswpmf{w#wlafbqjmdnbssjmdqfujpfgiRvfqz+.tjgwk9wjwof!=wllowjsPf`wjlmgfpjdmpWvqhjpkzlvmdfq-nbw`k+~*+*8 avqmjmdlsfqbwfgfdqffpplvq`f>Qj`kbqg`olpfozsobpwj`fmwqjfp?,wq= `lolq9 vo#jg>!slppfppqloojmdskzpj`pebjojmdf{f`vwf`lmwfpwojmh#wlGfebvow?aq#,= 9#wqvf/`kbqwfqwlvqjpn`obppj`sql`ffgf{sobjm?,k2= lmojmf-<{no#ufkfosjmdgjbnlmgvpf#wkfbjqojmffmg#..=*-bwwq+qfbgfqpklpwjmd eeeeeeqfbojyfUjm`fmwpjdmbop#pq`>!,Sqlgv`wgfpsjwfgjufqpfwfoojmdSvaoj`#kfog#jmIlpfsk#wkfbwqfbeef`wp?pwzof=b#obqdfglfpm$wobwfq/#Fofnfmwebuj`lm`qfbwlqKvmdbqzBjqslqwpff#wkfpl#wkbwNj`kbfoPzpwfnpSqldqbnp/#bmg##tjgwk>f%rvlw8wqbgjmdofew!= sfqplmpDlogfm#Beebjqpdqbnnbqelqnjmdgfpwqlzjgfb#le`bpf#lelogfpw#wkjp#jp-pq`#>#`bqwllmqfdjpwq@lnnlmpNvpojnpTkbw#jpjm#nbmznbqhjmdqfufbopJmgffg/frvbooz,pklt\\blvwgllqfp`bsf+Bvpwqjbdfmfwj`pzpwfn/Jm#wkf#pjwwjmdKf#boplJpobmgpB`bgfnz \n\n?"..Gbmjfo#ajmgjmdaol`h!=jnslpfgvwjojyfBaqbkbn+f{`fswxtjgwk9svwwjmd*-kwno+\x7F\x7F#X^8 GBWBX#)hjw`kfmnlvmwfgb`wvbo#gjbof`wnbjmoz#\\aobmh$jmpwboof{sfqwpje+wzsfJw#bopl%`lsz8#!=Wfqnpalqm#jmLswjlmpfbpwfqmwbohjmd`lm`fqmdbjmfg#lmdljmdivpwjez`qjwj`peb`wlqzjwp#ltmbppbvowjmujwfgobpwjmdkjp#ltmkqfe>!,!#qfo>!gfufols`lm`fqwgjbdqbngloobqp`ovpwfqsks<jg>bo`lklo*8~*+*8vpjmd#b=?psbm=ufppfopqfujuboBggqfppbnbwfvqbmgqljgboofdfgjoomfpptbohjmd`fmwfqprvbojeznbw`kfpvmjejfgf{wjm`wGfefmpfgjfg#jm \n?"..#`vpwlnpojmhjmdOjwwof#Allh#lefufmjmdnjm-ip<bqf#wkfhlmwbhwwlgbz$p-kwno!#wbqdfw>tfbqjmdBoo#Qjd8 ~*+*8qbjpjmd#Bopl/#`qv`jbobalvw!=gf`obqf..= ?p`ejqfel{bp#nv`kbssojfpjmgf{/#p/#avw#wzsf#>#  ?"..wltbqgpQf`lqgpSqjubwfElqfjdmSqfnjfq`klj`fpUjqwvboqfwvqmp@lnnfmwSltfqfgjmojmf8slufqwz`kbnafqOjujmd#ulovnfpBmwklmzoldjm!#QfobwfgF`lmlnzqfb`kfp`vwwjmddqbujwzojef#jm@kbswfq.pkbgltMlwbaof?,wg= #qfwvqmpwbgjvntjgdfwpubqzjmdwqbufopkfog#aztkl#bqftlqh#jmeb`vowzbmdvobqtkl#kbgbjqslqwwltm#le Plnf#$`oj`h$`kbqdfphfztlqgjw#tjoo`jwz#le+wkjp*8Bmgqft#vmjrvf#`kf`hfglq#nlqf033s{8#qfwvqm8qpjlm>!sovdjmptjwkjm#kfqpfoePwbwjlmEfgfqboufmwvqfsvaojpkpfmw#wlwfmpjlmb`wqfpp`lnf#wlejmdfqpGvhf#lesflsof/f{soljwtkbw#jpkbqnlmzb#nbilq!9!kwwsjm#kjp#nfmv!= nlmwkozleej`fq`lvm`jodbjmjmdfufm#jmPvnnbqzgbwf#leolzbowzejwmfppbmg#tbpfnsfqlqpvsqfnfPf`lmg#kfbqjmdQvppjbmolmdfpwBoafqwbobwfqbopfw#le#pnboo!=-bssfmggl#tjwkefgfqboabmh#leafmfbwkGfpsjwf@bsjwbodqlvmgp*/#bmg#sfq`fmwjw#eqln`olpjmd`lmwbjmJmpwfbgejewffmbp#tfoo-zbkll-qfpslmgejdkwfqlap`vqfqfeof`wlqdbmj`>#Nbwk-fgjwjmdlmojmf#sbggjmdb#tkloflmfqqlqzfbq#lefmg#le#abqqjfqtkfm#jwkfbgfq#klnf#leqfpvnfgqfmbnfgpwqlmd=kfbwjmdqfwbjmp`olvgeqtbz#le#Nbq`k#2hmltjmdjm#sbqwAfwtffmofpplmp`olpfpwujqwvboojmhp!=`qlppfgFMG#..=ebnlvp#btbqgfgOj`fmpfKfbowk#ebjqoz#tfbowkznjmjnboBeqj`bm`lnsfwfobafo!=pjmdjmdebqnfqpAqbpjo*gjp`vppqfsob`fDqfdlqzelmw#`lsvqpvfgbssfbqpnbhf#vsqlvmgfgalwk#leaol`hfgpbt#wkfleej`fp`lolvqpje+gl`vtkfm#kffmelq`fsvpk+evBvdvpw#VWE.;!=Ebmwbpzjm#nlpwjmivqfgVpvboozebqnjmd`olpvqflaif`w#gfefm`fvpf#le#Nfgj`bo?algz= fujgfmwaf#vpfghfz@lgfpj{wffmJpobnj` 333333fmwjqf#tjgfoz#b`wjuf#+wzsflelmf#`bm`lolq#>psfbhfqf{wfmgpSkzpj`pwfqqbjm?walgz=evmfqboujftjmdnjggof#`qj`hfwsqlskfwpkjewfggl`wlqpQvppfoo#wbqdfw`lnsb`wbodfaqbpl`jbo.avoh#lenbm#bmg?,wg= #kf#ofew*-ubo+*ebopf*8oldj`boabmhjmdklnf#wlmbnjmd#Bqjylmb`qfgjwp*8 ~*8 elvmgfqjm#wvqm@loojmpafelqf#Avw#wkf`kbqdfgWjwof!=@bswbjmpsfoofgdlggfppWbd#..=Bggjmd9avw#tbpQf`fmw#sbwjfmwab`h#jm>ebopf%Ojm`lomtf#hmlt@lvmwfqIvgbjpnp`qjsw#bowfqfg$^*8 ##kbp#wkfvm`ofbqFufmw$/alwk#jmmlw#boo ?"..#sob`jmdkbqg#wl#`fmwfqplqw#le`ojfmwppwqffwpAfqmbqgbppfqwpwfmg#wlebmwbpzgltm#jmkbqalvqEqffglniftfoqz,balvw--pfbq`kofdfmgpjp#nbgfnlgfqm#lmoz#lmlmoz#wljnbdf!#ojmfbq#sbjmwfqbmg#mlwqbqfoz#b`qlmzngfojufqpklqwfq33%bns8bp#nbmztjgwk>!,)#?"X@wjwof#>le#wkf#oltfpw#sj`hfg#fp`bsfgvpfp#lesflsofp#Svaoj`Nbwwkftwb`wj`pgbnbdfgtbz#elqobtp#lefbpz#wl#tjmgltpwqlmd##pjnsof~`bw`k+pfufmwkjmelal{tfmw#wlsbjmwfg`jwjyfmJ#glm$wqfwqfbw-#Plnf#tt-!*8 alnajmdnbjowl9nbgf#jm-#Nbmz#`bqqjfp\x7F\x7Fx~8tjtlqh#lepzmlmzngfefbwpebulqfglswj`bosbdfWqbvmofpp#pfmgjmdofew!=?`lnP`lqBoo#wkfiRvfqz-wlvqjpw@obppj`ebopf!#Tjokfonpvavqapdfmvjmfajpklsp-psojw+dolabo#elooltpalgz#lemlnjmbo@lmwb`wpf`vobqofew#wl`kjfeoz.kjggfm.abmmfq?,oj= -#Tkfm#jm#alwkgjpnjppF{solqfbotbzp#ujb#wkfpsb/]lotfoebqfqvojmd#bqqbmdf`bswbjmkjp#plmqvof#lekf#wllhjwpfoe/>3%bns8+`boofgpbnsofpwl#nbhf`ln,sbdNbqwjm#Hfmmfgzb``fswpevoo#lekbmgofgAfpjgfp,,..=?,baof#wlwbqdfwpfppfm`fkjn#wl#jwp#az#`lnnlm-njmfqbowl#wbhftbzp#wlp-lqd,obgujpfgsfmbowzpjnsof9je#wkfzOfwwfqpb#pklqwKfqafqwpwqjhfp#dqlvsp-ofmdwkeojdkwplufqobspoltoz#ofppfq#pl`jbo#?,s= \n\njw#jmwlqbmhfg#qbwf#levo= ##bwwfnswsbjq#lenbhf#jwHlmwbhwBmwlmjlkbujmd#qbwjmdp#b`wjufpwqfbnpwqbssfg!*-`pp+klpwjofofbg#wlojwwof#dqlvsp/Sj`wvqf..=  #qltp>!#laif`wjmufqpf?ellwfq@vpwlnU=?_,p`qploujmd@kbnafqpobufqztlvmgfgtkfqfbp">#$vmgelq#boosbqwoz#.qjdkw9Bqbajbmab`hfg#`fmwvqzvmjw#lenlajof.Fvqlsf/jp#klnfqjph#legfpjqfg@ojmwlm`lpw#lebdf#le#af`lnf#mlmf#les%rvlw8Njggof#fbg$*X3@qjwj`ppwvgjlp=%`lsz8dqlvs!=bppfnaonbhjmd#sqfppfgtjgdfw-sp9!#<#qfavjowaz#plnfElqnfq#fgjwlqpgfobzfg@bmlmj`kbg#wkfsvpkjmd`obpp>!avw#bqfsbqwjboAbazolmalwwln#`bqqjfq@lnnbmgjwp#vpfBp#tjwk`lvqpfpb#wkjqggfmlwfpbopl#jmKlvpwlm13s{8!=b``vpfgglvaof#dlbo#leEbnlvp#*-ajmg+sqjfpwp#Lmojmfjm#Ivozpw#(#!d`lmpvowgf`jnbokfosevoqfujufgjp#ufqzq$($jswolpjmd#efnbofpjp#boplpwqjmdpgbzp#lebqqjuboevwvqf#?laif`welq`jmdPwqjmd+!#,= \n\nkfqf#jpfm`lgfg-##Wkf#aboollmglmf#az,`lnnlmad`lolqobt#le#Jmgjbmbbuljgfgavw#wkf1s{#0s{irvfqz-bewfq#bsloj`z-nfm#bmgellwfq.>#wqvf8elq#vpfp`qffm-Jmgjbm#jnbdf#>ebnjoz/kwws9,,#%maps8gqjufqpfwfqmbopbnf#bpmlwj`fgujftfqp~*+*8 #jp#nlqfpfbplmpelqnfq#wkf#mftjp#ivpw`lmpfmw#Pfbq`ktbp#wkftkz#wkfpkjssfgaq=?aq=tjgwk9#kfjdkw>nbgf#le`vjpjmfjp#wkbwb#ufqz#Bgnjqbo#ej{fg8mlqnbo#NjppjlmSqfpp/#lmwbqjl`kbqpfwwqz#wl#jmubgfg>!wqvf!psb`jmdjp#nlpwb#nlqf#wlwboozeboo#le~*8 ##jnnfmpfwjnf#jmpfw#lvwpbwjpezwl#ejmggltm#wlolw#le#Sobzfqpjm#Ivmfrvbmwvnmlw#wkfwjnf#wlgjpwbmwEjmmjpkpq`#>#+pjmdof#kfos#leDfqnbm#obt#bmgobafofgelqfpwp`llhjmdpsb`f!=kfbgfq.tfoo#bpPwbmofzaqjgdfp,dolabo@qlbwjb#Balvw#X3^8 ##jw/#bmgdqlvsfgafjmd#b*xwkqltkf#nbgfojdkwfqfwkj`boEEEEEE!alwwln!ojhf#b#fnsolzpojuf#jmbp#pffmsqjmwfqnlpw#leva.ojmhqfif`wpbmg#vpfjnbdf!=pv``ffgeffgjmdMv`ofbqjmelqnbwl#kfosTlnfm$pMfjwkfqNf{j`bmsqlwfjm?wbaof#az#nbmzkfbowkzobtpvjwgfujpfg-svpk+xpfoofqppjnsoz#Wkqlvdk-`llhjf#Jnbdf+logfq!=vp-ip!=#Pjm`f#vmjufqpobqdfq#lsfm#wl"..#fmgojfp#jm$^*8 ##nbqhfwtkl#jp#+!GLN@lnbmbdfglmf#elqwzsfle#Hjmdglnsqlejwpsqlslpfwl#pklt`fmwfq8nbgf#jwgqfppfgtfqf#jmnj{wvqfsqf`jpfbqjpjmdpq`#>#$nbhf#b#pf`vqfgAbswjpwulwjmd# \n\nubq#Nbq`k#1dqft#vs@ojnbwf-qfnlufphjoofgtbz#wkf?,kfbg=eb`f#leb`wjmd#qjdkw!=wl#tlqhqfgv`fpkbp#kbgfqf`wfgpklt+*8b`wjlm>allh#lebm#bqfb>>#!kww?kfbgfq ?kwno=`lmelqneb`jmd#`llhjf-qfoz#lmklpwfg#-`vpwlnkf#tfmwavw#elqpsqfbg#Ebnjoz#b#nfbmplvw#wkfelqvnp-ellwbdf!=Nlajo@ofnfmwp!#jg>!bp#kjdkjmwfmpf..=?"..efnbof#jp#pffmjnsojfgpfw#wkfb#pwbwfbmg#kjpebpwfpwafpjgfpavwwlm\\alvmgfg!=?jnd#Jmelal{fufmwp/b#zlvmdbmg#bqfMbwjuf#`kfbsfqWjnflvwbmg#kbpfmdjmfptlm#wkf+nlpwozqjdkw9#ejmg#b#.alwwlnSqjm`f#bqfb#lenlqf#lepfbq`k\\mbwvqf/ofdboozsfqjlg/obmg#lelq#tjwkjmgv`fgsqlujmdnjppjofol`boozBdbjmpwwkf#tbzh%rvlw8s{8!= svpkfg#babmglmmvnfqbo@fqwbjmJm#wkjpnlqf#jmlq#plnfmbnf#jpbmg/#jm`qltmfgJPAM#3.`qfbwfpL`wlafqnbz#mlw`fmwfq#obwf#jmGfefm`ffmb`wfgtjpk#wlaqlbgoz`llojmdlmolbg>jw-#Wkfqf`lufqNfnafqpkfjdkw#bppvnfp?kwno= sflsof-jm#lmf#>tjmgltellwfq\\b#dllg#qfhobnblwkfqp/wl#wkjp\\`llhjfsbmfo!=Olmglm/gfejmfp`qvpkfgabswjpn`lbpwbopwbwvp#wjwof!#nluf#wlolpw#jmafwwfq#jnsojfpqjuboqzpfqufqp#PzpwfnSfqkbspfp#bmg#`lmwfmgeoltjmdobpwfg#qjpf#jmDfmfpjpujft#leqjpjmd#pffn#wlavw#jm#ab`hjmdkf#tjoodjufm#bdjujmd#`jwjfp-eolt#le#Obwfq#boo#avwKjdktbzlmoz#azpjdm#lekf#glfpgjeefqpabwwfqz%bns8obpjmdofpwkqfbwpjmwfdfqwbhf#lmqfevpfg`boofg#>VP%bnsPff#wkfmbwjufpaz#wkjppzpwfn-kfbg#le9klufq/ofpajbmpvqmbnfbmg#boo`lnnlm,kfbgfq\\\\sbqbnpKbqubqg,sj{fo-qfnlubopl#olmdqlof#leiljmwozphzp`qbVmj`lgfaq#,= Bwobmwbmv`ofvp@lvmwz/svqfoz#`lvmw!=fbpjoz#avjog#blm`oj`hb#djufmsljmwfqk%rvlw8fufmwp#fopf#x gjwjlmpmlt#wkf/#tjwk#nbm#tkllqd,Tfalmf#bmg`buboqzKf#gjfgpfbwwof33/333#xtjmgltkbuf#wlje+tjmgbmg#jwpplofoz#n%rvlw8qfmftfgGfwqljwbnlmdpwfjwkfq#wkfn#jmPfmbwlqVp?,b=?Hjmd#leEqbm`jp.sqlgv`kf#vpfgbqw#bmgkjn#bmgvpfg#azp`lqjmdbw#klnfwl#kbufqfobwfpjajojwzeb`wjlmAveebolojmh!=?tkbw#kfeqff#wl@jwz#le`lnf#jmpf`wlqp`lvmwfglmf#gbzmfqulvpprvbqf#~8je+dljm#tkbwjnd!#bojp#lmozpfbq`k,wvfpgbzollpfozPlolnlmpf{vbo#.#?b#kqnfgjvn!GL#MLW#Eqbm`f/tjwk#b#tbq#bmgpf`lmg#wbhf#b#=   nbqhfw-kjdktbzglmf#jm`wjujwz!obpw!=laojdfgqjpf#wl!vmgfejnbgf#wl#Fbqoz#sqbjpfgjm#jwp#elq#kjpbwkofwfIvsjwfqZbkll"#wfqnfg#pl#nbmzqfbooz#p-#Wkf#b#tlnbm<ubovf>gjqf`w#qjdkw!#aj`z`ofb`jmd>!gbz#bmgpwbwjmdQbwkfq/kjdkfq#Leej`f#bqf#mltwjnfp/#tkfm#b#sbz#elqlm#wkjp.ojmh!=8alqgfqbqlvmg#bmmvbo#wkf#Mftsvw#wkf-`ln!#wbhjm#wlb#aqjfe+jm#wkfdqlvsp-8#tjgwkfmyznfppjnsof#jm#obwfxqfwvqmwkfqbszb#sljmwabmmjmdjmhp!= +*8!#qfb#sob`f_v330@bbalvw#bwq= \n\n``lvmw#djufp#b?P@QJSWQbjotbzwkfnfp,wlloal{AzJg+!{kvnbmp/tbw`kfpjm#plnf#je#+tj`lnjmd#elqnbwp#Vmgfq#avw#kbpkbmgfg#nbgf#azwkbm#jmefbq#legfmlwfg,jeqbnfofew#jmulowbdfjm#fb`kb%rvlw8abpf#leJm#nbmzvmgfqdlqfdjnfpb`wjlm#?,s= ?vpwlnUb8%dw8?,jnslqwplq#wkbwnlpwoz#%bns8qf#pjyf>!?,b=?,kb#`obppsbppjufKlpw#>#TkfwkfqefqwjofUbqjlvp>X^8+ev`bnfqbp,=?,wg=b`wp#bpJm#plnf=  ?"lqdbmjp#?aq#,=Afjijmd`bwbo/Lgfvwp`kfvqlsfvfvphbqbdbfjodfpufmphbfpsb/]bnfmpbifvpvbqjlwqbabiln/E{j`ls/Mdjmbpjfnsqfpjpwfnbl`wvaqfgvqbmwfb/]bgjqfnsqfpbnlnfmwlmvfpwqlsqjnfqbwqbu/Epdqb`jbpmvfpwqbsql`fplfpwbglp`bojgbgsfqplmbm/Vnfqlb`vfqgln/Vpj`bnjfnaqllefqwbpbodvmlpsb/Apfpfifnsolgfqf`klbgfn/Mpsqjubglbdqfdbqfmob`fpslpjaofklwfofppfujoobsqjnfql/Vowjnlfufmwlpbq`kjul`vowvqbnvifqfpfmwqbgbbmvm`jlfnabqdlnfq`bgldqbmgfpfpwvgjlnfilqfpefaqfqlgjpf/]lwvqjpnl`/_gjdlslqwbgbfpsb`jlebnjojbbmwlmjlsfqnjwfdvbqgbqbodvmbpsqf`jlpbodvjfmpfmwjglujpjwbpw/Awvol`lml`fqpfdvmgl`lmpfileqbm`jbnjmvwlppfdvmgbwfmfnlpfef`wlpn/Mobdbpfpj/_mqfujpwbdqbmbgb`lnsqbqjmdqfpldbq`/Abb``j/_mf`vbglqrvjfmfpjm`ovplgfafq/Mnbwfqjbklnaqfpnvfpwqbslgq/Abnb/]bmb/Vowjnbfpwbnlplej`jbowbnajfmmjmd/Vmpbovglpslgfnlpnfilqbqslpjwjlmavpjmfppklnfsbdfpf`vqjwzobmdvbdfpwbmgbqg`bnsbjdmefbwvqfp`bwfdlqzf{wfqmbo`kjogqfmqfpfqufgqfpfbq`kf{`kbmdfebulqjwfwfnsobwfnjojwbqzjmgvpwqzpfquj`fpnbwfqjbosqlgv`wpy.jmgf{9`lnnfmwpplewtbqf`lnsofwf`bofmgbqsobwelqnbqwj`ofpqfrvjqfgnlufnfmwrvfpwjlmavjogjmdslojwj`pslppjaofqfojdjlmskzpj`boeffgab`hqfdjpwfqsj`wvqfpgjpbaofgsqlwl`lobvgjfm`fpfwwjmdpb`wjujwzfofnfmwpofbqmjmdbmzwkjmdbapwqb`wsqldqfpplufqujftnbdbyjmff`lmlnj`wqbjmjmdsqfppvqfubqjlvp#?pwqlmd=sqlsfqwzpklssjmdwldfwkfqbgubm`fgafkbujlqgltmolbgefbwvqfgellwaboopfof`wfgObmdvbdfgjpwbm`fqfnfnafqwqb`hjmdsbpptlqgnlgjejfgpwvgfmwpgjqf`wozejdkwjmdmlqwkfqmgbwbabpfefpwjuboaqfbhjmdol`bwjlmjmwfqmfwgqlsgltmsqb`wj`ffujgfm`fevm`wjlmnbqqjbdfqfpslmpfsqlaofnpmfdbwjufsqldqbnpbmbozpjpqfofbpfgabmmfq!=svq`kbpfsloj`jfpqfdjlmbo`qfbwjufbqdvnfmwallhnbqhqfefqqfq`kfnj`bogjujpjlm`booab`hpfsbqbwfsqlif`wp`lmeoj`wkbqgtbqfjmwfqfpwgfojufqznlvmwbjmlawbjmfg>#ebopf8elq+ubq#b``fswfg`bsb`jwz`lnsvwfqjgfmwjwzbjq`qbewfnsolzfgsqlslpfgglnfpwj`jm`ovgfpsqlujgfgklpsjwboufqwj`bo`loobspfbssqlb`ksbqwmfqpoldl!=?bgbvdkwfqbvwklq!#`vowvqboebnjojfp,jnbdfp,bppfnaozsltfqevowfb`kjmdejmjpkfggjpwqj`w`qjwj`bo`dj.ajm,svqslpfpqfrvjqfpfof`wjlmaf`lnjmdsqlujgfpb`bgfnj`f{fq`jpfb`wvbooznfgj`jmf`lmpwbmwb``jgfmwNbdbyjmfgl`vnfmwpwbqwjmdalwwln!=lapfqufg9#%rvlw8f{wfmgfgsqfujlvpPlewtbqf`vpwlnfqgf`jpjlmpwqfmdwkgfwbjofgpojdkwozsobmmjmdwf{wbqfb`vqqfm`zfufqzlmfpwqbjdkwwqbmpefqslpjwjufsqlgv`fgkfqjwbdfpkjssjmdbaplovwfqf`fjufgqfofubmwavwwlm!#ujlofm`fbmztkfqfafmfejwpobvm`kfgqf`fmwozboojbm`felooltfgnvowjsofavoofwjmjm`ovgfgl``vqqfgjmwfqmbo\'+wkjp*-qfsvaoj`=?wq=?wg`lmdqfppqf`lqgfgvowjnbwfplovwjlm?vo#jg>!gjp`lufqKlnf?,b=tfapjwfpmfwtlqhpbowklvdkfmwjqfoznfnlqjbonfppbdfp`lmwjmvfb`wjuf!=plnftkbwuj`wlqjbTfpwfqm##wjwof>!Ol`bwjlm`lmwqb`wujpjwlqpGltmolbgtjwklvw#qjdkw!= nfbpvqfptjgwk#>#ubqjbaofjmuloufgujqdjmjbmlqnboozkbssfmfgb``lvmwppwbmgjmdmbwjlmboQfdjpwfqsqfsbqfg`lmwqlopb``vqbwfajqwkgbzpwqbwfdzleej`jbodqbskj`p`qjnjmboslppjaoz`lmpvnfqSfqplmbopsfbhjmdubojgbwfb`kjfufg-isd!#,=nb`kjmfp?,k1= ##hfztlqgpeqjfmgozaqlwkfqp`lnajmfglqjdjmbo`lnslpfgf{sf`wfgbgfrvbwfsbhjpwbmeloolt!#ubovbaof?,obafo=qfobwjufaqjmdjmdjm`qfbpfdlufqmlqsovdjmp,Ojpw#le#Kfbgfq!=!#mbnf>!#+%rvlw8dqbgvbwf?,kfbg= `lnnfq`fnbobzpjbgjqf`wlqnbjmwbjm8kfjdkw9p`kfgvof`kbmdjmdab`h#wl#`bwkloj`sbwwfqmp`lolq9# dqfbwfpwpvssojfpqfojbaof?,vo= \n\n?pfof`w#`jwjyfmp`olwkjmdtbw`kjmd?oj#jg>!psf`jej``bqqzjmdpfmwfm`f?`fmwfq=`lmwqbpwwkjmhjmd`bw`k+f*plvwkfqmNj`kbfo#nfq`kbmw`bqlvpfosbggjmd9jmwfqjlq-psojw+!ojybwjlmL`wlafq#*xqfwvqmjnsqlufg..%dw8 `lufqbdf`kbjqnbm-smd!#,=pvaif`wpQj`kbqg#tkbwfufqsqlabaozqf`lufqzabpfabooivgdnfmw`lmmf`w--`pp!#,=#tfapjwfqfslqwfggfebvow!,=?,b= fof`wqj`p`lwobmg`qfbwjlmrvbmwjwz-#JPAM#3gjg#mlw#jmpwbm`f.pfbq`k.!#obmd>!psfbhfqp@lnsvwfq`lmwbjmpbq`kjufpnjmjpwfqqfb`wjlmgjp`lvmwJwbojbml`qjwfqjbpwqlmdoz9#$kwws9$p`qjsw$`lufqjmdleefqjmdbssfbqfgAqjwjpk#jgfmwjezEb`fallhmvnfqlvpufkj`ofp`lm`fqmpBnfqj`bmkbmgojmdgju#jg>!Tjoojbn#sqlujgfq\\`lmwfmwb``vqb`zpf`wjlm#bmgfqplmeof{jaof@bwfdlqzobtqfm`f?p`qjsw=obzlvw>!bssqlufg#nb{jnvnkfbgfq!=?,wbaof=Pfquj`fpkbnjowlm`vqqfmw#`bmbgjbm`kbmmfop,wkfnfp,,bqwj`oflswjlmboslqwvdboubovf>!!jmwfqubotjqfofppfmwjwofgbdfm`jfpPfbq`k!#nfbpvqfgwklvpbmgpsfmgjmd%kfoojs8mft#Gbwf!#pjyf>!sbdfMbnfnjggof!#!#,=?,b=kjggfm!=pfrvfm`fsfqplmbolufqeoltlsjmjlmpjoojmljpojmhp!= \n?wjwof=ufqpjlmppbwvqgbzwfqnjmbojwfnsqlsfmdjmffqpf`wjlmpgfpjdmfqsqlslpbo>!ebopf!Fpsb/]loqfofbpfppvanjw!#fq%rvlw8bggjwjlmpznswlnplqjfmwfgqfplvq`fqjdkw!=?sofbpvqfpwbwjlmpkjpwlqz-ofbujmd##alqgfq>`lmwfmwp`fmwfq!=- Plnf#gjqf`wfgpvjwbaofavodbqjb-pklt+*8gfpjdmfgDfmfqbo#`lm`fswpF{bnsofptjoojbnpLqjdjmbo!=?psbm=pfbq`k!=lsfqbwlqqfrvfpwpb#%rvlw8booltjmdGl`vnfmwqfujpjlm-# Wkf#zlvqpfoe@lmwb`w#nj`kjdbmFmdojpk#`lovnajbsqjlqjwzsqjmwjmdgqjmhjmdeb`jojwzqfwvqmfg@lmwfmw#leej`fqpQvppjbm#dfmfqbwf.;;6:.2!jmgj`bwfebnjojbq#rvbojwznbqdjm93#`lmwfmwujftslqw`lmwb`wp.wjwof!=slqwbaof-ofmdwk#fojdjaofjmuloufpbwobmwj`lmolbg>!gfebvow-pvssojfgsbznfmwpdolppbqz Bewfq#dvjgbm`f?,wg=?wgfm`lgjmdnjggof!=`bnf#wl#gjpsobzpp`lwwjpkilmbwkbmnbilqjwztjgdfwp-`ojmj`bowkbjobmgwfb`kfqp?kfbg= \nbeef`wfgpvsslqwpsljmwfq8wlPwqjmd?,pnboo=lhobklnbtjoo#af#jmufpwlq3!#bow>!klojgbzpQfplvq`foj`fmpfg#+tkj`k#-#Bewfq#`lmpjgfqujpjwjmdf{solqfqsqjnbqz#pfbq`k!#bmgqljg!rvj`hoz#nffwjmdpfpwjnbwf8qfwvqm#8`lolq9 #kfjdkw>bssqlubo/#%rvlw8#`kf`hfg-njm-ip!nbdmfwj`=?,b=?,kelqf`bpw-#Tkjof#wkvqpgbzgufqwjpf%fb`vwf8kbp@obppfubovbwflqgfqjmdf{jpwjmdsbwjfmwp#Lmojmf#`lolqbglLswjlmp!`bnsafoo?"..#fmg?,psbm=??aq#,= \\slsvsp\x7Fp`jfm`fp/%rvlw8#rvbojwz#Tjmgltp#bppjdmfgkfjdkw9#?a#`obppof%rvlw8#ubovf>!#@lnsbmzf{bnsofp?jeqbnf#afojfufpsqfpfmwpnbqpkboosbqw#le#sqlsfqoz*- Wkf#wb{lmlnznv`k#le#?,psbm= !#gbwb.pqwvdv/Fpp`qlooWl#sqlif`w?kfbg= bwwlqmfzfnskbpjppslmplqpebm`zal{tlqog$p#tjogojef`kf`hfg>pfppjlmpsqldqbnns{8elmw.#Sqlif`wilvqmbopafojfufgub`bwjlmwklnsplmojdkwjmdbmg#wkf#psf`jbo#alqgfq>3`kf`hjmd?,walgz=?avwwlm#@lnsofwf`ofbqej{ ?kfbg= bqwj`of#?pf`wjlmejmgjmdpqlof#jm#slsvobq##L`wlafqtfapjwf#f{slpvqfvpfg#wl##`kbmdfplsfqbwfg`oj`hjmdfmwfqjmd`lnnbmgpjmelqnfg#mvnafqp##?,gju=`qfbwjmdlmPvanjwnbqzobmg`loofdfpbmbozwj`ojpwjmdp`lmwb`w-olddfgJmbgujplqzpjaojmdp`lmwfmw!p%rvlw8*p-#Wkjp#sb`hbdfp`kf`hal{pvddfpwpsqfdmbmwwlnlqqltpsb`jmd>j`lm-smdibsbmfpf`lgfabpfavwwlm!=dbnaojmdpv`k#bp#/#tkjof#?,psbm=#njpplvqjpslqwjmdwls92s{#-?,psbm=wfmpjlmptjgwk>!1obyzolbgmlufnafqvpfg#jm#kfjdkw>!`qjsw!= %maps8?,?wq=?wg#kfjdkw91,sqlgv`w`lvmwqz#jm`ovgf#ellwfq!#%ow8"..#wjwof!=?,irvfqz-?,elqn= +\vBl\bQ\x7F*+\vUmGx*kqubwphjjwbojbmlqln/Nm(ow/Pqh/Kf4K4]4C5dwbnaj/Emmlwj`jbpnfmpbifpsfqplmbpgfqf`klpmb`jlmbopfquj`jl`lmwb`wlvpvbqjlpsqldqbnbdlajfqmlfnsqfpbpbmvm`jlpubofm`jb`lolnajbgfpsv/Epgfslqwfpsqlzf`wlsqlgv`wls/Vaoj`lmlplwqlpkjpwlqjbsqfpfmwfnjoolmfpnfgjbmwfsqfdvmwbbmwfqjlqqf`vqplpsqlaofnbpbmwjbdlmvfpwqlplsjmj/_mjnsqjnjqnjfmwqbpbn/Eqj`bufmgfglqpl`jfgbgqfpsf`wlqfbojybqqfdjpwqlsbobaqbpjmwfq/Epfmwlm`fpfpsf`jbonjfnaqlpqfbojgbg`/_qglabybqbdlybs/Mdjmbppl`jbofpaolrvfbqdfpwj/_mborvjofqpjpwfnbp`jfm`jbp`lnsofwlufqpj/_m`lnsofwbfpwvgjlps/Vaoj`blaifwjulboj`bmwfavp`bglq`bmwjgbgfmwqbgbpb``jlmfpbq`kjulppvsfqjlqnbzlq/Abbofnbmjbevm`j/_m/Vowjnlpkb`jfmglbrvfoolpfgj`j/_mefqmbmglbnajfmwfeb`fallhmvfpwqbp`ojfmwfpsql`fplpabpwbmwfsqfpfmwbqfslqwbq`lmdqfplsvaoj`bq`lnfq`jl`lmwqbwli/_ufmfpgjpwqjwlw/E`mj`b`lmivmwlfmfqd/Abwqbabibqbpwvqjbpqf`jfmwfvwjojybqalofw/Ampboubglq`lqqf`wbwqbabilpsqjnfqlpmfdl`jlpojafqwbggfwboofpsbmwboobsq/_{jnlbonfq/Abbmjnbofprvj/Emfp`lqby/_mpf``j/_mavp`bmglls`jlmfpf{wfqjlq`lm`fswlwlgbu/Abdbofq/Abfp`qjajqnfgj`jmboj`fm`jb`lmpvowbbpsf`wlp`q/Awj`bg/_obqfpivpwj`jbgfafq/Mmsfq/Alglmf`fpjwbnbmwfmfqsfrvf/]lqf`jajgbwqjavmbowfmfqjef`bm`j/_m`bmbqjbpgfp`bqdbgjufqplpnboolq`bqfrvjfqfw/E`mj`lgfafq/Abujujfmgbejmbmybpbgfobmwfevm`jlmb`lmpfilpgje/A`jo`jvgbgfpbmwjdvbpbubmybgbw/Eqnjmlvmjgbgfpp/Mm`kfy`bnsb/]bplewlmj`qfujpwbp`lmwjfmfpf`wlqfpnlnfmwlpeb`vowbg`q/Egjwlgjufqpbppvsvfpwleb`wlqfppfdvmglpsfrvf/]b<_<R<X<\\<Y=m<W<T<Y=m=n=`<]=g<W<R<]=g=n=`=a=n<R<P<y=m<W<T=n<R<_<R<P<Y<Q=c<^=m<Y=i=a=n<R<U<X<\\<Z<Y<]=g<W<T<_<R<X=o<X<Y<Q=`=a=n<R=n<]=g<W<\\=m<Y<]=c<R<X<T<Q=m<Y<]<Y<Q<\\<X<R=m<\\<U=n=h<R=n<R<Q<Y<_<R=m<^<R<T=m<^<R<U<T<_=l=g=n<R<Z<Y<^=m<Y<P=m<^<R=b<W<T=d=`=a=n<T=i<S<R<V<\\<X<Q<Y<U<X<R<P<\\<P<T=l<\\<W<T<]<R=n<Y<P=o=i<R=n=c<X<^=o=i=m<Y=n<T<W=b<X<T<X<Y<W<R<P<T=l<Y=n<Y<]=c=m<^<R<Y<^<T<X<Y=k<Y<_<R=a=n<T<P=m=k<Y=n=n<Y<P=g=j<Y<Q=g=m=n<\\<W<^<Y<X=`=n<Y<P<Y<^<R<X=g=n<Y<]<Y<^=g=d<Y<Q<\\<P<T=n<T<S<\\=n<R<P=o<S=l<\\<^<W<T=j<\\<R<X<Q<\\<_<R<X=g<[<Q<\\=b<P<R<_=o<X=l=o<_<^=m<Y<U<T<X<Y=n<V<T<Q<R<R<X<Q<R<X<Y<W<\\<X<Y<W<Y=m=l<R<V<T=b<Q=c<^<Y=m=`<y=m=n=`=l<\\<[<\\<Q<\\=d<T4K5h5h5k4K5h4F5f4@5i5f4U4B4K4Y4E4K5h4\\5f4U5h5f5k4@4C5f4C4K5h4N5j4K5h4]4C4F4A5o5i4Y5m4A4E5o4K5j4F4K5h5h5f5f5o5d5j4X4D5o4E5m5f5k4K4D5j4K4F4A5d4K4M4O5o4G4]4B5h4K5h4K5h4A4D4C5h5f5h4C4]5d4_4K4Z4V4[4F5o5d5j5k5j4K5o4_4K4A4E5j4K4C5f4K5h4[4D4U5h5f5o4X5o4]4K5f5i5o5j5i5j5k4K4X4]5o4E4]4J5f4_5j4X5f4[5i4K4\\4K4K5h5m5j4X4D4K4D4F4U4D4]4]4A5i4E5o4K5m4E5f5n5d5h5i4]5o4^5o5h5i4E4O4A5i4C5n5h4D5f5f4U5j5f4Y5d4]4E4[4]5f5n4X4K4]5o4@5d4K5h4O4B4]5e5i4U5j4K4K4D4A4G4U4]5d4Z4D4X5o5h5i4_4@5h4D5j4K5j4B4K5h4C5o4F4K4D5o5h5f4E4D4C5d5j4O5f4Z4K5f5d4@4C5m4]5f5n5o4F4D4F4O5m4Z5h5i4[4D4B4K5o4G4]4D4K4]5o4K5m4Z5h4K4A5h5e5j5m4_5k4O5f4K5i4]4C5d4C4O5j5k4K4C5f5j4K4K5h4K5j5i4U4]4Z4F4U5h5i4C4K4B5h5i5i5o5j\x07\x07\x07\x07\0\x07\x07\0\v\n \b\r\f\f\r\b \n\v\0\v\v\v\v\0\x07qfplvq`fp`lvmwqjfprvfpwjlmpfrvjsnfmw`lnnvmjwzbubjobaofkjdkojdkwGWG,{kwnonbqhfwjmdhmltofgdfplnfwkjmd`lmwbjmfqgjqf`wjlmpvap`qjafbgufqwjpf`kbqb`wfq!#ubovf>!?,pfof`w=Bvpwqbojb!#`obpp>!pjwvbwjlmbvwklqjwzelooltjmdsqjnbqjozlsfqbwjlm`kboofmdfgfufolsfgbmlmznlvpevm`wjlm#evm`wjlmp`lnsbmjfppwqv`wvqfbdqffnfmw!#wjwof>!slwfmwjbofgv`bwjlmbqdvnfmwppf`lmgbqz`lszqjdkwobmdvbdfpf{`ovpjuf`lmgjwjlm?,elqn= pwbwfnfmwbwwfmwjlmAjldqbskz~#fopf#x plovwjlmptkfm#wkf#Bmbozwj`pwfnsobwfpgbmdfqlvppbwfoojwfgl`vnfmwpsvaojpkfqjnslqwbmwsqlwlwzsfjmeovfm`f%qbrvl8?,feef`wjufdfmfqboozwqbmpelqnafbvwjevowqbmpslqwlqdbmjyfgsvaojpkfgsqlnjmfmwvmwjo#wkfwkvnambjoMbwjlmbo#-el`vp+*8lufq#wkf#njdqbwjlmbmmlvm`fgellwfq!= f{`fswjlmofpp#wkbmf{sfmpjufelqnbwjlmeqbnftlqhwfqqjwlqzmgj`bwjlm`vqqfmwoz`obppMbnf`qjwj`jpnwqbgjwjlmfopftkfqfBof{bmgfqbssljmwfgnbwfqjbopaqlbg`bpwnfmwjlmfgbeejojbwf?,lswjlm=wqfbwnfmwgjeefqfmw,gfebvow-Sqfpjgfmwlm`oj`h>!ajldqbskzlwkfqtjpfsfqnbmfmwEqbm/KbjpKlooztllgf{sbmpjlmpwbmgbqgp?,pwzof= qfgv`wjlmGf`fnafq#sqfefqqfg@bnaqjgdflsslmfmwpAvpjmfpp#`lmevpjlm= ?wjwof=sqfpfmwfgf{sobjmfgglfp#mlw#tlqogtjgfjmwfqeb`fslpjwjlmpmftpsbsfq?,wbaof= nlvmwbjmpojhf#wkf#fppfmwjboejmbm`jbopfof`wjlmb`wjlm>!,babmglmfgFgv`bwjlmsbqpfJmw+pwbajojwzvmbaof#wl?,wjwof= qfobwjlmpMlwf#wkbwfeej`jfmwsfqelqnfgwtl#zfbqpPjm`f#wkfwkfqfelqftqbssfq!=bowfqmbwfjm`qfbpfgAbwwof#lesfq`fjufgwqzjmd#wlmf`fppbqzslqwqbzfgfof`wjlmpFojybafwk?,jeqbnf=gjp`lufqzjmpvqbm`fp-ofmdwk8ofdfmgbqzDfldqbskz`bmgjgbwf`lqslqbwfplnfwjnfppfquj`fp-jmkfqjwfg?,pwqlmd=@lnnvmjwzqfojdjlvpol`bwjlmp@lnnjwwffavjogjmdpwkf#tlqogml#olmdfqafdjmmjmdqfefqfm`f`bmmlw#afeqfrvfm`zwzsj`boozjmwl#wkf#qfobwjuf8qf`lqgjmdsqfpjgfmwjmjwjboozwf`kmjrvfwkf#lwkfqjw#`bm#aff{jpwfm`fvmgfqojmfwkjp#wjnfwfofsklmfjwfnp`lsfsqb`wj`fpbgubmwbdf*8qfwvqm#Elq#lwkfqsqlujgjmdgfnl`qb`zalwk#wkf#f{wfmpjufpveefqjmdpvsslqwfg`lnsvwfqp#evm`wjlmsqb`wj`bopbjg#wkbwjw#nbz#afFmdojpk?,eqln#wkf#p`kfgvofggltmolbgp?,obafo= pvpsf`wfgnbqdjm9#3psjqjwvbo?,kfbg= nj`qlplewdqbgvboozgjp`vppfgkf#af`bnff{f`vwjufirvfqz-ipklvpfklog`lmejqnfgsvq`kbpfgojwfqboozgfpwqlzfgvs#wl#wkfubqjbwjlmqfnbjmjmdjw#jp#mlw`fmwvqjfpIbsbmfpf#bnlmd#wkf`lnsofwfgbodlqjwknjmwfqfpwpqfafoojlmvmgfejmfgfm`lvqbdfqfpjybaofjmuloujmdpfmpjwjufvmjufqpbosqlujpjlm+bowklvdkefbwvqjmd`lmgv`wfg*/#tkj`k#`lmwjmvfg.kfbgfq!=Efaqvbqz#mvnfqlvp#lufqeolt9`lnslmfmweqbdnfmwpf{`foofmw`lopsbm>!wf`kmj`bomfbq#wkf#Bgubm`fg#plvq`f#lef{sqfppfgKlmd#Hlmd#Eb`fallhnvowjsof#nf`kbmjpnfofubwjlmleefmpjuf?,elqn= \npslmplqfggl`vnfmw-lq#%rvlw8wkfqf#bqfwklpf#tklnlufnfmwpsql`fppfpgjeej`vowpvanjwwfgqf`lnnfmg`lmujm`fgsqlnlwjmd!#tjgwk>!-qfsob`f+`obppj`bo`lbojwjlmkjp#ejqpwgf`jpjlmpbppjpwbmwjmgj`bwfgfulovwjlm.tqbssfq!fmlvdk#wlbolmd#wkfgfojufqfg..= ?"..Bnfqj`bm#sqlwf`wfgMlufnafq#?,pwzof=?evqmjwvqfJmwfqmfw##lmaovq>!pvpsfmgfgqf`jsjfmwabpfg#lm#Nlqflufq/balojpkfg`loof`wfgtfqf#nbgffnlwjlmbofnfqdfm`zmbqqbwjufbgul`bwfps{8alqgfq`lnnjwwfggjq>!owq!fnsolzffpqfpfbq`k-#pfof`wfgpv``fpplq`vpwlnfqpgjpsobzfgPfswfnafqbgg@obpp+Eb`fallh#pvddfpwfgbmg#obwfqlsfqbwjmdfobalqbwfPlnfwjnfpJmpwjwvwf`fqwbjmozjmpwboofgelooltfqpIfqvpbofnwkfz#kbuf`lnsvwjmddfmfqbwfgsqlujm`fpdvbqbmwffbqajwqbqzqf`ldmjyftbmwfg#wls{8tjgwk9wkflqz#leafkbujlvqTkjof#wkffpwjnbwfgafdbm#wl#jw#af`bnfnbdmjwvgfnvpw#kbufnlqf#wkbmGjqf`wlqzf{wfmpjlmpf`qfwbqzmbwvqboozl``vqqjmdubqjbaofpdjufm#wkfsobwelqn-?,obafo=?ebjofg#wl`lnslvmgphjmgp#le#pl`jfwjfpbolmdpjgf#..%dw8 plvwktfpwwkf#qjdkwqbgjbwjlmnbz#kbuf#vmfp`bsf+pslhfm#jm!#kqfe>!,sqldqbnnflmoz#wkf#`lnf#eqlngjqf`wlqzavqjfg#jmb#pjnjobqwkfz#tfqf?,elmw=?,Mlqtfdjbmpsf`jejfgsqlgv`jmdsbppfmdfq+mft#Gbwfwfnslqbqzej`wjlmboBewfq#wkffrvbwjlmpgltmolbg-qfdvobqozgfufolsfqbaluf#wkfojmhfg#wlskfmlnfmbsfqjlg#lewllowjs!=pvapwbm`fbvwlnbwj`bpsf`w#leBnlmd#wkf`lmmf`wfgfpwjnbwfpBjq#Elq`fpzpwfn#lelaif`wjufjnnfgjbwfnbhjmd#jwsbjmwjmdp`lmrvfqfgbqf#pwjoosql`fgvqfdqltwk#lekfbgfg#azFvqlsfbm#gjujpjlmpnlof`vofpeqbm`kjpfjmwfmwjlmbwwqb`wfg`kjogkllgbopl#vpfggfgj`bwfgpjmdbslqfgfdqff#leebwkfq#le`lmeoj`wp?,b=?,s= `bnf#eqlntfqf#vpfgmlwf#wkbwqf`fjujmdF{f`vwjuffufm#nlqfb``fpp#wl`lnnbmgfqSlojwj`bonvpj`jbmpgfoj`jlvpsqjplmfqpbgufmw#leVWE.;!#,=?"X@GBWBX!=@lmwb`wPlvwkfqm#ad`lolq>!pfqjfp#le-#Jw#tbp#jm#Fvqlsfsfqnjwwfgubojgbwf-bssfbqjmdleej`jboppfqjlvpoz.obmdvbdfjmjwjbwfgf{wfmgjmdolmd.wfqnjmeobwjlmpv`k#wkbwdfw@llhjfnbqhfg#az?,avwwlm=jnsofnfmwavw#jw#jpjm`qfbpfpgltm#wkf#qfrvjqjmdgfsfmgfmw..= ?"..#jmwfqujftTjwk#wkf#`lsjfp#le`lmpfmpvptbp#avjowUfmfyvfob+elqnfqozwkf#pwbwfsfqplmmfopwqbwfdj`ebulvq#lejmufmwjlmTjhjsfgjb`lmwjmfmwujqwvbooztkj`k#tbpsqjm`jsof@lnsofwf#jgfmwj`bopklt#wkbwsqjnjwjufbtbz#eqlnnlof`vobqsqf`jpfozgjpploufgVmgfq#wkfufqpjlm>!=%maps8?,Jw#jp#wkf#Wkjp#jp#tjoo#kbuflqdbmjpnpplnf#wjnfEqjfgqj`ktbp#ejqpwwkf#lmoz#eb`w#wkbwelqn#jg>!sqf`fgjmdWf`kmj`boskzpj`jpwl``vqp#jmmbujdbwlqpf`wjlm!=psbm#jg>!plvdkw#wlafolt#wkfpvqujujmd~?,pwzof=kjp#gfbwkbp#jm#wkf`bvpfg#azsbqwjboozf{jpwjmd#vpjmd#wkftbp#djufmb#ojpw#leofufop#lemlwjlm#leLeej`jbo#gjpnjppfgp`jfmwjpwqfpfnaofpgvsoj`bwff{solpjufqf`lufqfgboo#lwkfqdboofqjfpxsbggjmd9sflsof#leqfdjlm#lebggqfppfpbppl`jbwfjnd#bow>!jm#nlgfqmpklvog#afnfwklg#leqfslqwjmdwjnfpwbnsmffgfg#wlwkf#Dqfbwqfdbqgjmdpffnfg#wlujftfg#bpjnsb`w#lmjgfb#wkbwwkf#Tlqogkfjdkw#lef{sbmgjmdWkfpf#bqf`vqqfmw!=`bqfevooznbjmwbjmp`kbqdf#le@obppj`bobggqfppfgsqfgj`wfgltmfqpkjs?gju#jg>!qjdkw!= qfpjgfm`fofbuf#wkf`lmwfmw!=bqf#lewfm##~*+*8 sqlabaoz#Sqlefpplq.avwwlm!#qfpslmgfgpbzp#wkbwkbg#wl#afsob`fg#jmKvmdbqjbmpwbwvp#lepfqufp#bpVmjufqpbof{f`vwjlmbddqfdbwfelq#tkj`kjmef`wjlmbdqffg#wlkltfufq/#slsvobq!=sob`fg#lm`lmpwqv`wfof`wlqbopznalo#lejm`ovgjmdqfwvqm#wlbq`kjwf`w@kqjpwjbmsqfujlvp#ojujmd#jmfbpjfq#wlsqlefpplq %ow8"..#feef`w#lebmbozwj`ptbp#wbhfmtkfqf#wkfwllh#lufqafojfe#jmBeqjhbbmpbp#ebq#bpsqfufmwfgtlqh#tjwkb#psf`jbo?ejfogpfw@kqjpwnbpQfwqjfufg Jm#wkf#ab`h#jmwlmlqwkfbpwnbdbyjmfp=?pwqlmd=`lnnjwwffdlufqmjmddqlvsp#lepwlqfg#jmfpwbaojpkb#dfmfqbojwp#ejqpwwkfjq#ltmslsvobwfgbm#laif`w@bqjaafbmboolt#wkfgjpwqj`wptjp`lmpjmol`bwjlm-8#tjgwk9#jmkbajwfgPl`jbojpwIbmvbqz#2?,ellwfq=pjnjobqoz`klj`f#lewkf#pbnf#psf`jej`#avpjmfpp#Wkf#ejqpw-ofmdwk8#gfpjqf#wlgfbo#tjwkpjm`f#wkfvpfqBdfmw`lm`fjufgjmgf{-sksbp#%rvlw8fmdbdf#jmqf`fmwoz/eft#zfbqptfqf#bopl ?kfbg= ?fgjwfg#azbqf#hmltm`jwjfp#jmb``fpphfz`lmgfnmfgbopl#kbufpfquj`fp/ebnjoz#leP`kllo#le`lmufqwfgmbwvqf#le#obmdvbdfnjmjpwfqp?,laif`w=wkfqf#jp#b#slsvobqpfrvfm`fpbgul`bwfgWkfz#tfqfbmz#lwkfqol`bwjlm>fmwfq#wkfnv`k#nlqfqfeof`wfgtbp#mbnfglqjdjmbo#b#wzsj`botkfm#wkfzfmdjmffqp`lvog#mlwqfpjgfmwptfgmfpgbzwkf#wkjqg#sqlgv`wpIbmvbqz#1tkbw#wkfzb#`fqwbjmqfb`wjlmpsql`fpplqbewfq#kjpwkf#obpw#`lmwbjmfg!=?,gju= ?,b=?,wg=gfsfmg#lmpfbq`k!= sjf`fp#le`lnsfwjmdQfefqfm`fwfmmfppfftkj`k#kbp#ufqpjlm>?,psbm=#??,kfbgfq=djufp#wkfkjpwlqjbmubovf>!!=sbggjmd93ujft#wkbwwldfwkfq/wkf#nlpw#tbp#elvmgpvapfw#lebwwb`h#lm`kjogqfm/sljmwp#lesfqplmbo#slpjwjlm9boofdfgoz@ofufobmgtbp#obwfqbmg#bewfqbqf#djufmtbp#pwjoop`qloojmdgfpjdm#lenbhfp#wkfnv`k#ofppBnfqj`bmp- Bewfq#/#avw#wkfNvpfvn#leolvjpjbmb+eqln#wkfnjmmfplwbsbqwj`ofpb#sql`fppGlnjmj`bmulovnf#leqfwvqmjmdgfefmpjuf33s{\x7Fqjdknbgf#eqlnnlvpflufq!#pwzof>!pwbwfp#le+tkj`k#jp`lmwjmvfpEqbm`jp`lavjogjmd#tjwklvw#btjwk#plnftkl#tlvogb#elqn#leb#sbqw#leafelqf#jwhmltm#bp##Pfquj`fpol`bwjlm#bmg#lewfmnfbpvqjmdbmg#jw#jpsbsfqab`hubovfp#le ?wjwof=>#tjmglt-gfwfqnjmffq%rvlw8#sobzfg#azbmg#fbqoz?,`fmwfq=eqln#wkjpwkf#wkqffsltfq#bmgle#%rvlw8jmmfqKWNO?b#kqfe>!z9jmojmf8@kvq`k#lewkf#fufmwufqz#kjdkleej`jbo#.kfjdkw9#`lmwfmw>!,`dj.ajm,wl#`qfbwfbeqjhbbmpfpsfqbmwleqbm/Kbjpobwujf)Mvojfwvuj)_(`f)Mwjmb(af)Mwjmb\fUh\fT{\fTN\n{I\np@Fr\vBl\bQ\x7F A{\vUmGx A{ypYA\0zX\bTV\bWl\bUdBM\vB{\npV\v@xB\\\np@DbGz al\npa fM uD\bV~mx\vQ}\ndS p\\\bVK\bS]\bU|oD kV\ved\vHR\nb~M`\nJpoD|Q\nLPSw\bTl\nAI\nxC\bWt BqF`Cm\vLm Kx }t\bPv\ny\\\naB V\x7F\nZdXUli fr i@ BHBDBV `V\n[] p_ Tn\n~A\nxR uD `{\bV@ Tn HK AJ\vxsZf\nqIZf\vBM\v|j }t\bSM\nmC\vQ}pfquj`jlpbqw/A`volbqdfmwjmbabq`folmb`vborvjfqsvaoj`bglsqlgv`wlpslo/Awj`bqfpsvfpwbtjhjsfgjbpjdvjfmwfa/Vprvfgb`lnvmjgbgpfdvqjgbgsqjm`jsbosqfdvmwbp`lmwfmjglqfpslmgfqufmfyvfobsqlaofnbpgj`jfnaqfqfob`j/_mmlujfnaqfpjnjobqfpsqlzf`wlpsqldqbnbpjmpwjwvwlb`wjujgbgfm`vfmwqbf`lmln/Abjn/Mdfmfp`lmwb`wbqgfp`bqdbqmf`fpbqjlbwfm`j/_mwfo/Eelml`lnjpj/_m`bm`jlmfp`bsb`jgbgfm`lmwqbqbm/Mojpjpebulqjwlpw/Eqnjmlpsqlujm`jbfwjrvfwbpfofnfmwlpevm`jlmfpqfpvowbgl`bq/M`wfqsqlsjfgbgsqjm`jsjlmf`fpjgbgnvmj`jsbo`qfb`j/_mgfp`bqdbpsqfpfm`jb`lnfq`jbolsjmjlmfpfifq`j`jlfgjwlqjbopbobnbm`bdlmy/Mofygl`vnfmwlsfo/A`vobqf`jfmwfpdfmfqbofpwbqqbdlmbsq/M`wj`bmlufgbgfpsqlsvfpwbsb`jfmwfpw/E`mj`bplaifwjulp`lmwb`wlp\fHB\fIk\fHn\fH^\fHS\fHc\fHU\fId\fHn\fH{\fHC\fHR\fHT\fHR\fHI\fHc\fHY\fHn\fH\\\fHU\fIk\fHy\fIg\fHd\fHy\fIm\fHw\fH\\\fHU\fHR\fH@\fHR\fHJ\fHy\fHU\fHR\fHT\fHA\fIl\fHU\fIm\fHc\fH\\\fHU\fIl\fHB\fId\fHn\fHJ\fHS\fHD\fH@\fHR\fHHgjsolgl`p\fHT\fHB\fHC\fH\\\fIn\fHF\fHD\fHR\fHB\fHF\fHH\fHR\fHG\fHS\fH\\\fHx\fHT\fHH\fHH\fH\\\fHU\fH^\fIg\fH{\fHU\fIm\fHj\fH@\fHR\fH\\\fHJ\fIk\fHZ\fHU\fIm\fHd\fHz\fIk\fH^\fHC\fHJ\fHS\fHy\fHR\fHB\fHY\fIk\fH@\fHH\fIl\fHD\fH@\fIl\fHv\fHB\fI`\fHH\fHT\fHR\fH^\fH^\fIk\fHz\fHp\fIe\fH@\fHB\fHJ\fHJ\fHH\fHI\fHR\fHD\fHU\fIl\fHZ\fHU\fH\\\fHi\fH^\fH{\fHy\fHA\fIl\fHD\fH{\fH\\\fHF\fHR\fHT\fH\\\fHR\fHH\fHy\fHS\fHc\fHe\fHT\fIk\fH{\fHC\fIl\fHU\fIn\fHm\fHj\fH{\fIk\fHs\fIl\fHB\fHz\fIg\fHp\fHy\fHR\fH\\\fHi\fHA\fIl\fH{\fHC\fIk\fHH\fIm\fHB\fHY\fIg\fHs\fHJ\fIk\fHn\fHi\fH{\fH\\\fH|\fHT\fIk\fHB\fIk\fH^\fH^\fH{\fHR\fHU\fHR\fH^\fHf\fHF\fH\\\fHv\fHR\fH\\\fH|\fHT\fHR\fHJ\fIk\fH\\\fHp\fHS\fHT\fHJ\fHS\fH^\fH@\fHn\fHJ\fH@\fHD\fHR\fHU\fIn\fHn\fH^\fHR\fHz\fHp\fIl\fHH\fH@\fHs\fHD\fHB\fHS\fH^\fHk\fHT\fIk\fHj\fHD\fIk\fHD\fHC\fHR\fHy\fIm\fH^\fH^\fIe\fH{\fHA\fHR\fH{\fH\\\fIk\fH^\fHp\fH{\fHU\fH\\\fHR\fHB\fH^\fH{\fIk\fHF\fIk\fHp\fHU\fHR\fHI\fHk\fHT\fIl\fHT\fHU\fIl\fHy\fH^\fHR\fHL\fIl\fHy\fHU\fHR\fHm\fHJ\fIn\fH\\\fHH\fHU\fHH\fHT\fHR\fHH\fHC\fHR\fHJ\fHj\fHC\fHR\fHF\fHR\fHy\fHy\fI`\fHD\fHZ\fHR\fHB\fHJ\fIk\fHz\fHC\fHU\fIl\fH\\\fHR\fHC\fHz\fIm\fHJ\fH^\fH{\fIl`bwfdlqjfpf{sfqjfm`f?,wjwof= @lszqjdkw#ibubp`qjsw`lmgjwjlmpfufqzwkjmd?s#`obpp>!wf`kmloldzab`hdqlvmg?b#`obpp>!nbmbdfnfmw%`lsz8#132ibubP`qjsw`kbqb`wfqpaqfbg`qvnawkfnpfoufpklqjylmwbodlufqmnfmw@bojelqmjbb`wjujwjfpgjp`lufqfgMbujdbwjlmwqbmpjwjlm`lmmf`wjlmmbujdbwjlmbssfbqbm`f?,wjwof=?n`kf`hal{!#wf`kmjrvfpsqlwf`wjlmbssbqfmwozbp#tfoo#bpvmw$/#$VB.qfplovwjlmlsfqbwjlmpwfofujpjlmwqbmpobwfgTbpkjmdwlmmbujdbwlq-#>#tjmglt-jnsqfppjlm%ow8aq%dw8ojwfqbwvqfslsvobwjlmad`lolq>! fpsf`jbooz#`lmwfmw>!sqlgv`wjlmmftpofwwfqsqlsfqwjfpgfejmjwjlmofbgfqpkjsWf`kmloldzSbqojbnfmw`lnsbqjplmvo#`obpp>!-jmgf{Le+!`lm`ovpjlmgjp`vppjlm`lnslmfmwpajloldj`boQfulovwjlm\\`lmwbjmfqvmgfqpwllgmlp`qjsw=?sfqnjppjlmfb`k#lwkfqbwnlpskfqf#lmel`vp>!?elqn#jg>!sql`fppjmdwkjp-ubovfdfmfqbwjlm@lmefqfm`fpvapfrvfmwtfoo.hmltmubqjbwjlmpqfsvwbwjlmskfmlnfmlmgjp`jsojmfoldl-smd!#+gl`vnfmw/alvmgbqjfpf{sqfppjlmpfwwofnfmwAb`hdqlvmglvw#le#wkffmwfqsqjpf+!kwwsp9!#vmfp`bsf+!sbpptlqg!#gfnl`qbwj`?b#kqfe>!,tqbssfq!= nfnafqpkjsojmdvjpwj`s{8sbggjmdskjolplskzbppjpwbm`fvmjufqpjwzeb`jojwjfpqf`ldmjyfgsqfefqfm`fje#+wzsflenbjmwbjmfgul`bavobqzkzslwkfpjp-pvanjw+*8%bns8maps8bmmlwbwjlmafkjmg#wkfElvmgbwjlmsvaojpkfq!bppvnswjlmjmwqlgv`fg`lqqvswjlmp`jfmwjpwpf{soj`jwozjmpwfbg#legjnfmpjlmp#lm@oj`h>!`lmpjgfqfggfsbqwnfmwl``vsbwjlmpllm#bewfqjmufpwnfmwsqlmlvm`fgjgfmwjejfgf{sfqjnfmwNbmbdfnfmwdfldqbskj`!#kfjdkw>!ojmh#qfo>!-qfsob`f+,gfsqfppjlm`lmefqfm`fsvmjpknfmwfojnjmbwfgqfpjpwbm`fbgbswbwjlmlsslpjwjlmtfoo#hmltmpvssofnfmwgfwfqnjmfgk2#`obpp>!3s{8nbqdjmnf`kbmj`bopwbwjpwj`p`fofaqbwfgDlufqmnfmw Gvqjmd#wgfufolsfqpbqwjej`jbofrvjubofmwlqjdjmbwfg@lnnjppjlmbwwb`knfmw?psbm#jg>!wkfqf#tfqfMfgfqobmgpafzlmg#wkfqfdjpwfqfgilvqmbojpweqfrvfmwozboo#le#wkfobmd>!fm!#?,pwzof= baplovwf8#pvsslqwjmdf{wqfnfoz#nbjmpwqfbn?,pwqlmd=#slsvobqjwzfnsolznfmw?,wbaof= #`lopsbm>!?,elqn= ##`lmufqpjlmbalvw#wkf#?,s=?,gju=jmwfdqbwfg!#obmd>!fmSlqwvdvfpfpvapwjwvwfjmgjujgvbojnslppjaofnvowjnfgjbbonlpw#boos{#plojg# bsbqw#eqlnpvaif`w#wljm#Fmdojpk`qjwj`jyfgf{`fsw#elqdvjgfojmfplqjdjmboozqfnbqhbaofwkf#pf`lmgk1#`obpp>!?b#wjwof>!+jm`ovgjmdsbqbnfwfqpsqlkjajwfg>#!kwws9,,gj`wjlmbqzsfq`fswjlmqfulovwjlmelvmgbwjlms{8kfjdkw9pv``fppevopvsslqwfqpnjoofmmjvnkjp#ebwkfqwkf#%rvlw8ml.qfsfbw8`lnnfq`jbojmgvpwqjbofm`lvqbdfgbnlvmw#le#vmleej`jbofeej`jfm`zQfefqfm`fp`llqgjmbwfgjp`objnfqf{sfgjwjlmgfufolsjmd`bo`vobwfgpjnsojejfgofdjwjnbwfpvapwqjmd+3!#`obpp>!`lnsofwfozjoovpwqbwfejuf#zfbqpjmpwqvnfmwSvaojpkjmd2!#`obpp>!spz`kloldz`lmejgfm`fmvnafq#le#bapfm`f#leel`vpfg#lmiljmfg#wkfpwqv`wvqfpsqfujlvpoz=?,jeqbnf=lm`f#bdbjmavw#qbwkfqjnnjdqbmwple#`lvqpf/b#dqlvs#leOjwfqbwvqfVmojhf#wkf?,b=%maps8 evm`wjlm#jw#tbp#wkf@lmufmwjlmbvwlnlajofSqlwfpwbmwbddqfppjufbewfq#wkf#Pjnjobqoz/!#,=?,gju=`loof`wjlm evm`wjlmujpjajojwzwkf#vpf#leulovmwffqpbwwqb`wjlmvmgfq#wkf#wkqfbwfmfg)?"X@GBWBXjnslqwbm`fjm#dfmfqbowkf#obwwfq?,elqn= ?,-jmgf{Le+$j#>#38#j#?gjeefqfm`fgfulwfg#wlwqbgjwjlmppfbq`k#elqvowjnbwfozwlvqmbnfmwbwwqjavwfppl.`boofg#~ ?,pwzof=fubovbwjlmfnskbpjyfgb``fppjaof?,pf`wjlm=pv``fppjlmbolmd#tjwkNfbmtkjof/jmgvpwqjfp?,b=?aq#,=kbp#af`lnfbpsf`wp#leWfofujpjlmpveej`jfmwabphfwabooalwk#pjgfp`lmwjmvjmdbm#bqwj`of?jnd#bow>!bgufmwvqfpkjp#nlwkfqnbm`kfpwfqsqjm`jsofpsbqwj`vobq`lnnfmwbqzfeef`wp#legf`jgfg#wl!=?pwqlmd=svaojpkfqpIlvqmbo#legjeej`vowzeb`jojwbwfb``fswbaofpwzof-`pp!\nevm`wjlm#jmmlubwjlm=@lszqjdkwpjwvbwjlmptlvog#kbufavpjmfppfpGj`wjlmbqzpwbwfnfmwplewfm#vpfgsfqpjpwfmwjm#Ibmvbqz`lnsqjpjmd?,wjwof= \ngjsolnbwj``lmwbjmjmdsfqelqnjmdf{wfmpjlmpnbz#mlw#af`lm`fsw#le#lm`oj`h>!Jw#jp#boplejmbm`jbo#nbhjmd#wkfOv{fnalvqdbggjwjlmbobqf#`boofgfmdbdfg#jm!p`qjsw!*8avw#jw#tbpfof`wqlmj`lmpvanjw>! ?"..#Fmg#fof`wqj`boleej`jboozpvddfpwjlmwls#le#wkfvmojhf#wkfBvpwqbojbmLqjdjmboozqfefqfm`fp ?,kfbg= qf`ldmjpfgjmjwjbojyfojnjwfg#wlBof{bmgqjbqfwjqfnfmwBgufmwvqfpelvq#zfbqp %ow8"..#jm`qfbpjmdgf`lqbwjlmk0#`obpp>!lqjdjmp#lelaojdbwjlmqfdvobwjlm`obppjejfg+evm`wjlm+bgubmwbdfpafjmd#wkf#kjpwlqjbmp?abpf#kqfeqfsfbwfgoztjoojmd#wl`lnsbqbaofgfpjdmbwfgmlnjmbwjlmevm`wjlmbojmpjgf#wkfqfufobwjlmfmg#le#wkfp#elq#wkf#bvwklqjyfgqfevpfg#wlwbhf#sob`fbvwlmlnlvp`lnsqlnjpfslojwj`bo#qfpwbvqbmwwtl#le#wkfEfaqvbqz#1rvbojwz#leptelaif`w-vmgfqpwbmgmfbqoz#bootqjwwfm#azjmwfqujftp!#tjgwk>!2tjwkgqbtboeolbw9ofewjp#vpvbooz`bmgjgbwfpmftpsbsfqpnzpwfqjlvpGfsbqwnfmwafpw#hmltmsbqojbnfmwpvssqfppfg`lmufmjfmwqfnfnafqfggjeefqfmw#pzpwfnbwj`kbp#ofg#wlsqlsbdbmgb`lmwqloofgjmeovfm`fp`fqfnlmjbosql`objnfgSqlwf`wjlmoj#`obpp>!P`jfmwjej``obpp>!ml.wqbgfnbqhpnlqf#wkbm#tjgfpsqfbgOjafqbwjlmwllh#sob`fgbz#le#wkfbp#olmd#bpjnsqjplmfgBggjwjlmbo ?kfbg= ?nObalqbwlqzMlufnafq#1f{`fswjlmpJmgvpwqjboubqjfwz#leeolbw9#ofeGvqjmd#wkfbppfppnfmwkbuf#affm#gfbop#tjwkPwbwjpwj`pl``vqqfm`f,vo=?,gju=`ofbqej{!=wkf#svaoj`nbmz#zfbqptkj`k#tfqflufq#wjnf/pzmlmznlvp`lmwfmw!= sqfpvnbaozkjp#ebnjozvpfqBdfmw-vmf{sf`wfgjm`ovgjmd#`kboofmdfgb#njmlqjwzvmgfejmfg!afolmdp#wlwbhfm#eqlnjm#L`wlafqslpjwjlm9#pbjg#wl#afqfojdjlvp#Efgfqbwjlm#qltpsbm>!lmoz#b#eftnfbmw#wkbwofg#wl#wkf..= ?gju#?ejfogpfw=Bq`kajpkls#`obpp>!mlafjmd#vpfgbssqlb`kfpsqjujofdfpmlp`qjsw= qfpvowp#jmnbz#af#wkfFbpwfq#fddnf`kbmjpnpqfbplmbaofSlsvobwjlm@loof`wjlmpfof`wfg!=mlp`qjsw=,jmgf{-sksbqqjubo#le.ippgh$**8nbmbdfg#wljm`lnsofwf`bpvbowjfp`lnsofwjlm@kqjpwjbmpPfswfnafq#bqjwknfwj`sql`fgvqfpnjdkw#kbufSqlgv`wjlmjw#bssfbqpSkjolplskzeqjfmgpkjsofbgjmd#wldjujmd#wkfwltbqg#wkfdvbqbmwffggl`vnfmwfg`lolq9 333ujgfl#dbnf`lnnjppjlmqfeof`wjmd`kbmdf#wkfbppl`jbwfgpbmp.pfqjelmhfzsqfpp8#sbggjmd9Kf#tbp#wkfvmgfqozjmdwzsj`booz#/#bmg#wkf#pq`Fofnfmwpv``fppjufpjm`f#wkf#pklvog#af#mfwtlqhjmdb``lvmwjmdvpf#le#wkfoltfq#wkbmpkltp#wkbw?,psbm= \n\n`lnsobjmwp`lmwjmvlvprvbmwjwjfpbpwqlmlnfqkf#gjg#mlwgvf#wl#jwpbssojfg#wlbm#bufqbdffeelqwp#wlwkf#evwvqfbwwfnsw#wlWkfqfelqf/`bsbajojwzQfsvaoj`bmtbp#elqnfgFof`wqlmj`hjolnfwfqp`kboofmdfpsvaojpkjmdwkf#elqnfqjmgjdfmlvpgjqf`wjlmppvapjgjbqz`lmpsjqb`zgfwbjop#lebmg#jm#wkfbeelqgbaofpvapwbm`fpqfbplm#elq`lmufmwjlmjwfnwzsf>!baplovwfozpvsslpfgozqfnbjmfg#bbwwqb`wjufwqbufoojmdpfsbqbwfozel`vpfp#lmfofnfmwbqzbssoj`baofelvmg#wkbwpwzofpkffwnbmvp`qjswpwbmgp#elq#ml.qfsfbw+plnfwjnfp@lnnfq`jbojm#Bnfqj`bvmgfqwbhfmrvbqwfq#lebm#f{bnsofsfqplmboozjmgf{-sks<?,avwwlm= sfq`fmwbdfafpw.hmltm`qfbwjmd#b!#gjq>!owqOjfvwfmbmw ?gju#jg>!wkfz#tlvogbajojwz#lenbgf#vs#lemlwfg#wkbw`ofbq#wkbwbqdvf#wkbwwl#bmlwkfq`kjogqfm$psvqslpf#leelqnvobwfgabpfg#vslmwkf#qfdjlmpvaif`w#lesbppfmdfqpslppfppjlm- Jm#wkf#Afelqf#wkfbewfqtbqgp`vqqfmwoz#b`qlpp#wkfp`jfmwjej``lnnvmjwz-`bsjwbojpnjm#Dfqnbmzqjdkw.tjmdwkf#pzpwfnPl`jfwz#leslojwj`jbmgjqf`wjlm9tfmw#lm#wlqfnlubo#le#Mft#Zlqh#bsbqwnfmwpjmgj`bwjlmgvqjmd#wkfvmofpp#wkfkjpwlqj`bokbg#affm#bgfejmjwjufjmdqfgjfmwbwwfmgbm`f@fmwfq#elqsqlnjmfm`fqfbgzPwbwfpwqbwfdjfpavw#jm#wkfbp#sbqw#le`lmpwjwvwf`objn#wkbwobalqbwlqz`lnsbwjaofebjovqf#le/#pv`k#bp#afdbm#tjwkvpjmd#wkf#wl#sqlujgfefbwvqf#leeqln#tkj`k,!#`obpp>!dfloldj`bopfufqbo#legfojafqbwfjnslqwbmw#klogp#wkbwjmd%rvlw8#ubojdm>wlswkf#Dfqnbmlvwpjgf#lemfdlwjbwfgkjp#`bqffqpfsbqbwjlmjg>!pfbq`ktbp#`boofgwkf#elvqwkqf`qfbwjlmlwkfq#wkbmsqfufmwjlmtkjof#wkf#fgv`bwjlm/`lmmf`wjmdb``vqbwfoztfqf#avjowtbp#hjoofgbdqffnfmwpnv`k#nlqf#Gvf#wl#wkftjgwk9#233plnf#lwkfqHjmdgln#lewkf#fmwjqfebnlvp#elqwl#`lmmf`wlaif`wjufpwkf#Eqfm`ksflsof#bmgefbwvqfg!=jp#pbjg#wlpwqv`wvqboqfefqfmgvnnlpw#lewfmb#pfsbqbwf.= ?gju#jg#Leej`jbo#tlqogtjgf-bqjb.obafowkf#sobmfwbmg#jw#tbpg!#ubovf>!ollhjmd#bwafmfej`jbobqf#jm#wkfnlmjwlqjmdqfslqwfgozwkf#nlgfqmtlqhjmd#lmbooltfg#wltkfqf#wkf#jmmlubwjuf?,b=?,gju=plvmgwqb`hpfbq`kElqnwfmg#wl#afjmsvw#jg>!lsfmjmd#leqfpwqj`wfgbglswfg#azbggqfppjmdwkfloldjbmnfwklgp#leubqjbmw#le@kqjpwjbm#ufqz#obqdfbvwlnlwjufaz#ebq#wkfqbmdf#eqlnsvqpvjw#leeloolt#wkfaqlvdkw#wljm#Fmdobmgbdqff#wkbwb``vpfg#le`lnfp#eqlnsqfufmwjmdgju#pwzof>kjp#lq#kfqwqfnfmglvpeqffgln#le`lm`fqmjmd3#2fn#2fn8Abphfwaboo,pwzof-`ppbm#fbqojfqfufm#bewfq,!#wjwof>!-`ln,jmgf{wbhjmd#wkfsjwwpavqdk`lmwfmw!=?p`qjsw=+ewvqmfg#lvwkbujmd#wkf?,psbm= #l``bpjlmboaf`bvpf#jwpwbqwfg#wlskzpj`booz=?,gju= ##`qfbwfg#az@vqqfmwoz/#ad`lolq>!wbajmgf{>!gjpbpwqlvpBmbozwj`p#bopl#kbp#b=?gju#jg>!?,pwzof= ?`boofg#elqpjmdfq#bmg-pq`#>#!,,ujlobwjlmpwkjp#sljmw`lmpwbmwozjp#ol`bwfgqf`lqgjmdpg#eqln#wkfmfgfqobmgpslqwvdv/Fp;N;};D;u;F5m4K4]4_7`gfpbqqlool`lnfmwbqjlfgv`b`j/_mpfswjfnaqfqfdjpwqbglgjqf``j/_mvaj`b`j/_msvaoj`jgbgqfpsvfpwbpqfpvowbglpjnslqwbmwfqfpfqubglpbqw/A`volpgjefqfmwfppjdvjfmwfpqfs/Vaoj`bpjwvb`j/_mnjmjpwfqjlsqjub`jgbggjqf`wlqjlelqnb`j/_mslaob`j/_msqfpjgfmwf`lmw','fmjglpb``fplqjlpwf`kmlqbwjsfqplmbofp`bwfdlq/Abfpsf`jbofpgjpslmjaofb`wvbojgbgqfefqfm`jbuboobglojgajaojlwf`bqfob`jlmfp`bofmgbqjlslo/Awj`bpbmwfqjlqfpgl`vnfmwlpmbwvqbofybnbwfqjbofpgjefqfm`jbf`lm/_nj`bwqbmpslqwfqlgq/Advfysbqwj`jsbqfm`vfmwqbmgjp`vpj/_mfpwqv`wvqbevmgb`j/_meqf`vfmwfpsfqnbmfmwfwlwbonfmwf<P<R<Z<Q<R<]=o<X<Y=n<P<R<Z<Y=n<^=l<Y<P=c=n<\\<V<Z<Y=k=n<R<]=g<]<R<W<Y<Y<R=k<Y<Q=`=a=n<R<_<R<V<R<_<X<\\<S<R=m<W<Y<^=m<Y<_<R=m<\\<U=n<Y=k<Y=l<Y<[<P<R<_=o=n=m<\\<U=n<\\<Z<T<[<Q<T<P<Y<Z<X=o<]=o<X=o=n<s<R<T=m<V<[<X<Y=m=`<^<T<X<Y<R=m<^=c<[<T<Q=o<Z<Q<R=m<^<R<Y<U<W=b<X<Y<U<S<R=l<Q<R<P<Q<R<_<R<X<Y=n<Y<U=m<^<R<T=i<S=l<\\<^<\\=n<\\<V<R<U<P<Y=m=n<R<T<P<Y<Y=n<Z<T<[<Q=`<R<X<Q<R<U<W=o=k=d<Y<S<Y=l<Y<X=k<\\=m=n<T=k<\\=m=n=`=l<\\<]<R=n<Q<R<^=g=i<S=l<\\<^<R=m<R<]<R<U<S<R=n<R<P<P<Y<Q<Y<Y=k<T=m<W<Y<Q<R<^=g<Y=o=m<W=o<_<R<V<R<W<R<Q<\\<[<\\<X=n<\\<V<R<Y=n<R<_<X<\\<S<R=k=n<T<s<R=m<W<Y=n<\\<V<T<Y<Q<R<^=g<U=m=n<R<T=n=n<\\<V<T=i=m=l<\\<[=o<M<\\<Q<V=n=h<R=l=o<P<v<R<_<X<\\<V<Q<T<_<T=m<W<R<^<\\<Q<\\=d<Y<U<Q<\\<U=n<T=m<^<R<T<P=m<^=c<[=`<W=b<]<R<U=k<\\=m=n<R=m=l<Y<X<T<v=l<R<P<Y<H<R=l=o<P=l=g<Q<V<Y=m=n<\\<W<T<S<R<T=m<V=n=g=m=c=k<P<Y=m=c=j=j<Y<Q=n=l=n=l=o<X<\\=m<\\<P=g=i=l=g<Q<V<\\<q<R<^=g<U=k<\\=m<R<^<P<Y=m=n<\\=h<T<W=`<P<P<\\=l=n<\\=m=n=l<\\<Q<P<Y=m=n<Y=n<Y<V=m=n<Q<\\=d<T=i<P<T<Q=o=n<T<P<Y<Q<T<T<P<Y=b=n<Q<R<P<Y=l<_<R=l<R<X=m<\\<P<R<P=a=n<R<P=o<V<R<Q=j<Y=m<^<R<Y<P<V<\\<V<R<U<|=l=i<T<^5i5j4F4C5e4I4]4_4K5h4]4_4K5h4E4K5h4U4K5i5o4F4D5k4K4D4]4K5i4@4K5h5f5d5i4K5h4Y5d4]4@4C5f4C4E4K5h4U4Z5d4I4Z4K5m4E4K5h5n4_5i4K5h4U4K4D4F4A5i5f5h5i5h5m4K4F5i5h4F5n5e4F4U4C5f5h4K5h4X4U4]4O4B4D4K4]4F4[5d5f4]4U5h5f5o5i4I4]5m4K5n4[5h4D4K4F4K5h5h4V4E4F4]4F5f4D4K5h5j4K4_4K5h4X5f4B5i5j4F4C5f4K5h4U4]4D4K5h5n4Y4Y4K5m5h4K5i4U5h5f5k4K4F4A4C5f4G4K5h5h5k5i4K5h4U5i5h5i5o4F4D4E5f5i5o5j5o4K5h4[5m5h5m5f4C5f5d4I4C4K4]4E4F4K4]5f4B4K5h4Y4A4E4F4_4@5f5h4K5h5d5n4F4U5j4C5i4K5i4C5f5j4E4F4Y5i5f5i4O4]4X5f5m4K5h4\\5f5j4U4]4D5f4E4D5d4K4D4E4O5h4U4K4D4K5h4_5m4]5i4X4K5o5h4F4U4K5h5e4K5h4O5d5h4K5h4_5j4E4@4K5i4U4E4K5h4Y4A5m4K5h4C5f5j5o5h5i4K4F4K5h4B4K4Y4K5h5i5h5m4O4U4Z4K4M5o4F4K4D4E4K5h4B5f4]4]4_4K4J5h4K5h5n5h4D4K5h4O4C4D5i5n4K4[4U5i4]4K4_5h5i5j4[5n4E4K5h5o4F4D4K5h4]4@5h4K4X4F4]5o4K5h5n4C5i5f4U4[5f5opAzWbdMbnf+-isd!#bow>!2s{#plojg# -dje!#bow>!wqbmpsbqfmwjmelqnbwjlmbssoj`bwjlm!#lm`oj`h>!fpwbaojpkfgbgufqwjpjmd-smd!#bow>!fmujqlmnfmwsfqelqnbm`fbssqlsqjbwf%bns8ngbpk8jnnfgjbwfoz?,pwqlmd=?,qbwkfq#wkbmwfnsfqbwvqfgfufolsnfmw`lnsfwjwjlmsob`fklogfqujpjajojwz9`lszqjdkw!=3!#kfjdkw>!fufm#wklvdkqfsob`fnfmwgfpwjmbwjlm@lqslqbwjlm?vo#`obpp>!Bppl`jbwjlmjmgjujgvbopsfqpsf`wjufpfwWjnflvw+vqo+kwws9,,nbwkfnbwj`pnbqdjm.wls9fufmwvbooz#gfp`qjswjlm*#ml.qfsfbw`loof`wjlmp-ISD\x7Fwkvna\x7Fsbqwj`jsbwf,kfbg=?algzeolbw9ofew8?oj#`obpp>!kvmgqfgp#le Kltfufq/#`lnslpjwjlm`ofbq9alwk8`llsfqbwjlmtjwkjm#wkf#obafo#elq>!alqgfq.wls9Mft#Yfbobmgqf`lnnfmgfgsklwldqbskzjmwfqfpwjmd%ow8pvs%dw8`lmwqlufqpzMfwkfqobmgpbowfqmbwjufnb{ofmdwk>!ptjwyfqobmgGfufolsnfmwfppfmwjbooz Bowklvdk#?,wf{wbqfb=wkvmgfqajqgqfsqfpfmwfg%bns8mgbpk8psf`vobwjlm`lnnvmjwjfpofdjpobwjlmfof`wqlmj`p \n?gju#jg>!joovpwqbwfgfmdjmffqjmdwfqqjwlqjfpbvwklqjwjfpgjpwqjavwfg5!#kfjdkw>!pbmp.pfqje8`bsbaof#le#gjpbssfbqfgjmwfqb`wjufollhjmd#elqjw#tlvog#afBedkbmjpwbmtbp#`qfbwfgNbwk-eollq+pvqqlvmgjmd`bm#bopl#aflapfqubwjlmnbjmwfmbm`ffm`lvmwfqfg?k1#`obpp>!nlqf#qf`fmwjw#kbp#affmjmubpjlm#le*-dfwWjnf+*evmgbnfmwboGfpsjwf#wkf!=?gju#jg>!jmpsjqbwjlmf{bnjmbwjlmsqfsbqbwjlmf{sobmbwjlm?jmsvw#jg>!?,b=?,psbm=ufqpjlmp#lejmpwqvnfmwpafelqf#wkf##>#$kwws9,,Gfp`qjswjlmqfobwjufoz#-pvapwqjmd+fb`k#le#wkff{sfqjnfmwpjmeovfmwjbojmwfdqbwjlmnbmz#sflsofgvf#wl#wkf#`lnajmbwjlmgl#mlw#kbufNjggof#Fbpw?mlp`qjsw=?`lszqjdkw!#sfqkbsp#wkfjmpwjwvwjlmjm#Gf`fnafqbqqbmdfnfmwnlpw#ebnlvpsfqplmbojwz`qfbwjlm#leojnjwbwjlmpf{`ovpjufozplufqfjdmwz.`lmwfmw!= ?wg#`obpp>!vmgfqdqlvmgsbqboofo#wlgl`wqjmf#lel``vsjfg#azwfqnjmloldzQfmbjppbm`fb#mvnafq#lepvsslqw#elqf{solqbwjlmqf`ldmjwjlmsqfgf`fpplq?jnd#pq`>!,?k2#`obpp>!svaoj`bwjlmnbz#bopl#afpsf`jbojyfg?,ejfogpfw=sqldqfppjufnjoojlmp#lepwbwfp#wkbwfmelq`fnfmwbqlvmg#wkf#lmf#bmlwkfq-sbqfmwMlgfbdqj`vowvqfBowfqmbwjufqfpfbq`kfqpwltbqgp#wkfNlpw#le#wkfnbmz#lwkfq#+fpsf`jbooz?wg#tjgwk>!8tjgwk9233&jmgfsfmgfmw?k0#`obpp>!#lm`kbmdf>!*-bgg@obpp+jmwfqb`wjlmLmf#le#wkf#gbvdkwfq#leb``fpplqjfpaqbm`kfp#le ?gju#jg>!wkf#obqdfpwgf`obqbwjlmqfdvobwjlmpJmelqnbwjlmwqbmpobwjlmgl`vnfmwbqzjm#lqgfq#wl!= ?kfbg= ?!#kfjdkw>!2b`qlpp#wkf#lqjfmwbwjlm*8?,p`qjsw=jnsofnfmwfg`bm#af#pffmwkfqf#tbp#bgfnlmpwqbwf`lmwbjmfq!=`lmmf`wjlmpwkf#Aqjwjpktbp#tqjwwfm"jnslqwbmw8s{8#nbqdjm.elooltfg#azbajojwz#wl#`lnsoj`bwfggvqjmd#wkf#jnnjdqbwjlmbopl#`boofg?k7#`obpp>!gjpwjm`wjlmqfsob`fg#azdlufqmnfmwpol`bwjlm#lejm#Mlufnafqtkfwkfq#wkf?,s= ?,gju=b`rvjpjwjlm`boofg#wkf#sfqpf`vwjlmgfpjdmbwjlmxelmw.pjyf9bssfbqfg#jmjmufpwjdbwff{sfqjfm`fgnlpw#ojhfoztjgfoz#vpfggjp`vppjlmpsqfpfm`f#le#+gl`vnfmw-f{wfmpjufozJw#kbp#affmjw#glfp#mlw`lmwqbqz#wljmkbajwbmwpjnsqlufnfmwp`klobqpkjs`lmpvnswjlmjmpwqv`wjlmelq#f{bnsoflmf#lq#nlqfs{8#sbggjmdwkf#`vqqfmwb#pfqjfp#lebqf#vpvboozqlof#jm#wkfsqfujlvpoz#gfqjubwjufpfujgfm`f#lef{sfqjfm`fp`lolqp`kfnfpwbwfg#wkbw`fqwjej`bwf?,b=?,gju= #pfof`wfg>!kjdk#p`klloqfpslmpf#wl`lnelqwbaofbglswjlm#lewkqff#zfbqpwkf#`lvmwqzjm#Efaqvbqzpl#wkbw#wkfsflsof#tkl#sqlujgfg#az?sbqbn#mbnfbeef`wfg#azjm#wfqnp#lebssljmwnfmwJPL.;;6:.2!tbp#alqm#jmkjpwlqj`bo#qfdbqgfg#bpnfbpvqfnfmwjp#abpfg#lm#bmg#lwkfq#9#evm`wjlm+pjdmjej`bmw`fofaqbwjlmwqbmpnjwwfg,ip,irvfqz-jp#hmltm#bpwkflqfwj`bo#wbajmgf{>!jw#`lvog#af?mlp`qjsw= kbujmd#affm ?kfbg= ?#%rvlw8Wkf#`lnsjobwjlmkf#kbg#affmsqlgv`fg#azskjolplskfq`lmpwqv`wfgjmwfmgfg#wlbnlmd#lwkfq`lnsbqfg#wlwl#pbz#wkbwFmdjmffqjmdb#gjeefqfmwqfefqqfg#wlgjeefqfm`fpafojfe#wkbwsklwldqbskpjgfmwjezjmdKjpwlqz#le#Qfsvaoj`#lemf`fppbqjozsqlabajojwzwf`kmj`boozofbujmd#wkfpsf`wb`vobqeqb`wjlm#lefof`wqj`jwzkfbg#le#wkfqfpwbvqbmwpsbqwmfqpkjsfnskbpjp#lmnlpw#qf`fmwpkbqf#tjwk#pbzjmd#wkbwejoofg#tjwkgfpjdmfg#wljw#jp#lewfm!=?,jeqbnf=bp#elooltp9nfqdfg#tjwkwkqlvdk#wkf`lnnfq`jbo#sljmwfg#lvwlsslqwvmjwzujft#le#wkfqfrvjqfnfmwgjujpjlm#lesqldqbnnjmdkf#qf`fjufgpfwJmwfqubo!=?,psbm=?,jm#Mft#Zlqhbggjwjlmbo#`lnsqfppjlm ?gju#jg>!jm`lqslqbwf8?,p`qjsw=?bwwb`kFufmwaf`bnf#wkf#!#wbqdfw>!\\`bqqjfg#lvwPlnf#le#wkfp`jfm`f#bmgwkf#wjnf#le@lmwbjmfq!=nbjmwbjmjmd@kqjpwlskfqNv`k#le#wkftqjwjmdp#le!#kfjdkw>!1pjyf#le#wkfufqpjlm#le#nj{wvqf#le#afwtffm#wkfF{bnsofp#lefgv`bwjlmbo`lnsfwjwjuf#lmpvanjw>!gjqf`wlq#legjpwjm`wjuf,GWG#[KWNO#qfobwjmd#wlwfmgfm`z#wlsqlujm`f#letkj`k#tlvoggfpsjwf#wkfp`jfmwjej`#ofdjpobwvqf-jmmfqKWNO#boofdbwjlmpBdqj`vowvqftbp#vpfg#jmbssqlb`k#wljmwfoojdfmwzfbqp#obwfq/pbmp.pfqjegfwfqnjmjmdSfqelqnbm`fbssfbqbm`fp/#tkj`k#jp#elvmgbwjlmpbaaqfujbwfgkjdkfq#wkbmp#eqln#wkf#jmgjujgvbo#`lnslpfg#lepvsslpfg#wl`objnp#wkbwbwwqjavwjlmelmw.pjyf92fofnfmwp#leKjpwlqj`bo#kjp#aqlwkfqbw#wkf#wjnfbmmjufqpbqzdlufqmfg#azqfobwfg#wl#vowjnbwfoz#jmmlubwjlmpjw#jp#pwjoo`bm#lmoz#afgfejmjwjlmpwlDNWPwqjmdB#mvnafq#lejnd#`obpp>!Fufmwvbooz/tbp#`kbmdfgl``vqqfg#jmmfjdkalqjmdgjpwjmdvjpktkfm#kf#tbpjmwqlgv`jmdwfqqfpwqjboNbmz#le#wkfbqdvfp#wkbwbm#Bnfqj`bm`lmrvfpw#letjgfpsqfbg#tfqf#hjoofgp`qffm#bmg#Jm#lqgfq#wlf{sf`wfg#wlgfp`fmgbmwpbqf#ol`bwfgofdjpobwjufdfmfqbwjlmp#ab`hdqlvmgnlpw#sflsofzfbqp#bewfqwkfqf#jp#mlwkf#kjdkfpweqfrvfmwoz#wkfz#gl#mlwbqdvfg#wkbwpkltfg#wkbwsqfglnjmbmwwkfloldj`boaz#wkf#wjnf`lmpjgfqjmdpklqw.ojufg?,psbm=?,b=`bm#af#vpfgufqz#ojwwoflmf#le#wkf#kbg#boqfbgzjmwfqsqfwfg`lnnvmj`bwfefbwvqfp#ledlufqmnfmw/?,mlp`qjsw=fmwfqfg#wkf!#kfjdkw>!0Jmgfsfmgfmwslsvobwjlmpobqdf.p`bof-#Bowklvdk#vpfg#jm#wkfgfpwqv`wjlmslppjajojwzpwbqwjmd#jmwtl#lq#nlqff{sqfppjlmppvalqgjmbwfobqdfq#wkbmkjpwlqz#bmg?,lswjlm= @lmwjmfmwbofojnjmbwjmdtjoo#mlw#afsqb`wj`f#lejm#eqlmw#lepjwf#le#wkffmpvqf#wkbwwl#`qfbwf#bnjppjppjssjslwfmwjboozlvwpwbmgjmdafwwfq#wkbmtkbw#jp#mltpjwvbwfg#jmnfwb#mbnf>!WqbgjwjlmbopvddfpwjlmpWqbmpobwjlmwkf#elqn#lebwnlpskfqj`jgfloldj`bofmwfqsqjpfp`bo`vobwjmdfbpw#le#wkfqfnmbmwp#lesovdjmpsbdf,jmgf{-sks<qfnbjmfg#jmwqbmpelqnfgKf#tbp#bopltbp#boqfbgzpwbwjpwj`bojm#ebulq#leNjmjpwqz#lenlufnfmw#leelqnvobwjlmjp#qfrvjqfg?ojmh#qfo>!Wkjp#jp#wkf#?b#kqfe>!,slsvobqjyfgjmuloufg#jmbqf#vpfg#wlbmg#pfufqbonbgf#az#wkfpffnp#wl#afojhfoz#wkbwSbofpwjmjbmmbnfg#bewfqjw#kbg#affmnlpw#`lnnlmwl#qfefq#wlavw#wkjp#jp`lmpf`vwjufwfnslqbqjozJm#dfmfqbo/`lmufmwjlmpwbhfp#sob`fpvagjujpjlmwfqqjwlqjbolsfqbwjlmbosfqnbmfmwoztbp#obqdfozlvwaqfbh#lejm#wkf#sbpwelooltjmd#b#{nomp9ld>!=?b#`obpp>!`obpp>!wf{w@lmufqpjlm#nbz#af#vpfgnbmveb`wvqfbewfq#afjmd`ofbqej{!= rvfpwjlm#letbp#fof`wfgwl#af`lnf#baf`bvpf#le#plnf#sflsofjmpsjqfg#azpv``fppevo#b#wjnf#tkfmnlqf#`lnnlmbnlmdpw#wkfbm#leej`jbotjgwk9233&8wf`kmloldz/tbp#bglswfgwl#hffs#wkfpfwwofnfmwpojuf#ajqwkpjmgf{-kwno!@lmmf`wj`vwbppjdmfg#wl%bns8wjnfp8b``lvmw#elqbojdm>qjdkwwkf#`lnsbmzbotbzp#affmqfwvqmfg#wljmuloufnfmwAf`bvpf#wkfwkjp#sfqjlg!#mbnf>!r!#`lmejmfg#wlb#qfpvow#leubovf>!!#,=jp#b`wvboozFmujqlmnfmw ?,kfbg= @lmufqpfoz/= ?gju#jg>!3!#tjgwk>!2jp#sqlabaozkbuf#af`lnf`lmwqloojmdwkf#sqlaofn`jwjyfmp#leslojwj`jbmpqfb`kfg#wkfbp#fbqoz#bp9mlmf8#lufq?wbaof#`fooubojgjwz#legjqf`woz#wllmnlvpfgltmtkfqf#jw#jptkfm#jw#tbpnfnafqp#le#qfobwjlm#wlb``lnnlgbwfbolmd#tjwk#Jm#wkf#obwfwkf#Fmdojpkgfoj`jlvp!=wkjp#jp#mlwwkf#sqfpfmwje#wkfz#bqfbmg#ejmboozb#nbwwfq#le \n?,gju=  ?,p`qjsw=ebpwfq#wkbmnbilqjwz#lebewfq#tkj`k`lnsbqbwjufwl#nbjmwbjmjnsqluf#wkfbtbqgfg#wkffq!#`obpp>!eqbnfalqgfqqfpwlqbwjlmjm#wkf#pbnfbmbozpjp#lewkfjq#ejqpwGvqjmd#wkf#`lmwjmfmwbopfrvfm`f#leevm`wjlm+*xelmw.pjyf9#tlqh#lm#wkf?,p`qjsw= ?afdjmp#tjwkibubp`qjsw9`lmpwjwvfmwtbp#elvmgfgfrvjojaqjvnbppvnf#wkbwjp#djufm#azmffgp#wl#af`llqgjmbwfpwkf#ubqjlvpbqf#sbqw#lelmoz#jm#wkfpf`wjlmp#lejp#b#`lnnlmwkflqjfp#legjp`lufqjfpbppl`jbwjlmfgdf#le#wkfpwqfmdwk#leslpjwjlm#jmsqfpfmw.gbzvmjufqpboozwl#elqn#wkfavw#jmpwfbg`lqslqbwjlmbwwb`kfg#wljp#`lnnlmozqfbplmp#elq#%rvlw8wkf#`bm#af#nbgftbp#baof#wltkj`k#nfbmpavw#gjg#mlwlmNlvpfLufqbp#slppjaoflsfqbwfg#az`lnjmd#eqlnwkf#sqjnbqzbggjwjlm#leelq#pfufqbowqbmpefqqfgb#sfqjlg#lebqf#baof#wlkltfufq/#jwpklvog#kbufnv`k#obqdfq \n?,p`qjsw=bglswfg#wkfsqlsfqwz#legjqf`wfg#azfeef`wjufoztbp#aqlvdkw`kjogqfm#leSqldqbnnjmdolmdfq#wkbmnbmvp`qjswptbq#bdbjmpwaz#nfbmp#lebmg#nlpw#lepjnjobq#wl#sqlsqjfwbqzlqjdjmbwjmdsqfpwjdjlvpdqbnnbwj`bof{sfqjfm`f-wl#nbhf#wkfJw#tbp#bopljp#elvmg#jm`lnsfwjwlqpjm#wkf#V-P-qfsob`f#wkfaqlvdkw#wkf`bo`vobwjlmeboo#le#wkfwkf#dfmfqbosqb`wj`boozjm#klmlq#leqfofbpfg#jmqfpjgfmwjbobmg#plnf#lehjmd#le#wkfqfb`wjlm#wl2pw#Fbqo#le`vowvqf#bmgsqjm`jsbooz?,wjwof= ##wkfz#`bm#afab`h#wl#wkfplnf#le#kjpf{slpvqf#wlbqf#pjnjobqelqn#le#wkfbggEbulqjwf`jwjyfmpkjssbqw#jm#wkfsflsof#tjwkjm#sqb`wj`fwl#`lmwjmvf%bns8njmvp8bssqlufg#az#wkf#ejqpw#booltfg#wkfbmg#elq#wkfevm`wjlmjmdsobzjmd#wkfplovwjlm#wlkfjdkw>!3!#jm#kjp#allhnlqf#wkbm#belooltp#wkf`qfbwfg#wkfsqfpfm`f#jm%maps8?,wg=mbwjlmbojpwwkf#jgfb#leb#`kbqb`wfqtfqf#elq`fg#`obpp>!awmgbzp#le#wkfefbwvqfg#jmpkltjmd#wkfjmwfqfpw#jmjm#sob`f#lewvqm#le#wkfwkf#kfbg#leOlqg#le#wkfslojwj`boozkbp#jwp#ltmFgv`bwjlmbobssqlubo#leplnf#le#wkffb`k#lwkfq/afkbujlq#lebmg#af`bvpfbmg#bmlwkfqbssfbqfg#lmqf`lqgfg#jmaob`h%rvlw8nbz#jm`ovgfwkf#tlqog$p`bm#ofbg#wlqfefqp#wl#balqgfq>!3!#dlufqmnfmw#tjmmjmd#wkfqfpvowfg#jm#tkjof#wkf#Tbpkjmdwlm/wkf#pvaif`w`jwz#jm#wkf=?,gju= \n\nqfeof`w#wkfwl#`lnsofwfaf`bnf#nlqfqbgjlb`wjufqfif`wfg#aztjwklvw#bmzkjp#ebwkfq/tkj`k#`lvog`lsz#le#wkfwl#jmgj`bwfb#slojwj`bob``lvmwp#le`lmpwjwvwfptlqhfg#tjwkfq?,b=?,oj=le#kjp#ojefb``lnsbmjfg`ojfmwTjgwksqfufmw#wkfOfdjpobwjufgjeefqfmwozwldfwkfq#jmkbp#pfufqboelq#bmlwkfqwf{w#le#wkfelvmgfg#wkff#tjwk#wkf#jp#vpfg#elq`kbmdfg#wkfvpvbooz#wkfsob`f#tkfqftkfqfbp#wkf=#?b#kqfe>!!=?b#kqfe>!wkfnpfoufp/bowklvdk#kfwkbw#`bm#afwqbgjwjlmboqlof#le#wkfbp#b#qfpvowqfnluf@kjoggfpjdmfg#aztfpw#le#wkfPlnf#sflsofsqlgv`wjlm/pjgf#le#wkfmftpofwwfqpvpfg#az#wkfgltm#wl#wkfb``fswfg#azojuf#jm#wkfbwwfnswp#wllvwpjgf#wkfeqfrvfm`jfpKltfufq/#jmsqldqbnnfqpbw#ofbpw#jmbssql{jnbwfbowklvdk#jwtbp#sbqw#lebmg#ubqjlvpDlufqmlq#lewkf#bqwj`ofwvqmfg#jmwl=?b#kqfe>!,wkf#f`lmlnzjp#wkf#nlpwnlpw#tjgfoztlvog#obwfqbmg#sfqkbspqjpf#wl#wkfl``vqp#tkfmvmgfq#tkj`k`lmgjwjlmp-wkf#tfpwfqmwkflqz#wkbwjp#sqlgv`fgwkf#`jwz#lejm#tkj`k#kfpffm#jm#wkfwkf#`fmwqboavjogjmd#lenbmz#le#kjpbqfb#le#wkfjp#wkf#lmoznlpw#le#wkfnbmz#le#wkfwkf#TfpwfqmWkfqf#jp#mlf{wfmgfg#wlPwbwjpwj`bo`lopsbm>1#\x7Fpklqw#pwlqzslppjaof#wlwlsloldj`bo`qjwj`bo#leqfslqwfg#wlb#@kqjpwjbmgf`jpjlm#wljp#frvbo#wlsqlaofnp#leWkjp#`bm#afnfq`kbmgjpfelq#nlpw#leml#fujgfm`ffgjwjlmp#lefofnfmwp#jm%rvlw8-#Wkf`ln,jnbdfp,tkj`k#nbhfpwkf#sql`fppqfnbjmp#wkfojwfqbwvqf/jp#b#nfnafqwkf#slsvobqwkf#bm`jfmwsqlaofnp#jmwjnf#le#wkfgfefbwfg#azalgz#le#wkfb#eft#zfbqpnv`k#le#wkfwkf#tlqh#le@bojelqmjb/pfqufg#bp#bdlufqmnfmw-`lm`fswp#lenlufnfmw#jm\n\n?gju#jg>!jw!#ubovf>!obmdvbdf#lebp#wkfz#bqfsqlgv`fg#jmjp#wkbw#wkff{sobjm#wkfgju=?,gju= Kltfufq#wkfofbg#wl#wkf\n?b#kqfe>!,tbp#dqbmwfgsflsof#kbuf`lmwjmvbooztbp#pffm#bpbmg#qfobwfgwkf#qlof#lesqlslpfg#azle#wkf#afpwfb`k#lwkfq-@lmpwbmwjmfsflsof#eqlngjbof`wp#lewl#qfujpjlmtbp#qfmbnfgb#plvq`f#lewkf#jmjwjboobvm`kfg#jmsqlujgf#wkfwl#wkf#tfpwtkfqf#wkfqfbmg#pjnjobqafwtffm#wtljp#bopl#wkfFmdojpk#bmg`lmgjwjlmp/wkbw#jw#tbpfmwjwofg#wlwkfnpfoufp-rvbmwjwz#leqbmpsbqfm`zwkf#pbnf#bpwl#iljm#wkf`lvmwqz#bmgwkjp#jp#wkfWkjp#ofg#wlb#pwbwfnfmw`lmwqbpw#wlobpwJmgf{Lewkqlvdk#kjpjp#gfpjdmfgwkf#wfqn#jpjp#sqlujgfgsqlwf`w#wkfmd?,b=?,oj=Wkf#`vqqfmwwkf#pjwf#lepvapwbmwjbof{sfqjfm`f/jm#wkf#Tfpwwkfz#pklvogpolufm(ajmb`lnfmwbqjlpvmjufqpjgbg`lmgj`jlmfpb`wjujgbgfpf{sfqjfm`jbwf`mlold/Absqlgv``j/_msvmwvb`j/_mbsoj`b`j/_m`lmwqbpf/]b`bwfdlq/Abpqfdjpwqbqpfsqlefpjlmbowqbwbnjfmwlqfd/Apwqbwfpf`qfwbq/Absqjm`jsbofpsqlwf``j/_mjnslqwbmwfpjnslqwbm`jbslpjajojgbgjmwfqfpbmwf`qf`jnjfmwlmf`fpjgbgfppvp`qjajqpfbpl`jb`j/_mgjpslmjaofpfubovb`j/_mfpwvgjbmwfpqfpslmpbaofqfplov`j/_mdvbgbobibqbqfdjpwqbglplslqwvmjgbg`lnfq`jbofpelwldqbe/Abbvwlqjgbgfpjmdfmjfq/Abwfofujpj/_m`lnsfwfm`jblsfqb`jlmfpfpwbaof`jglpjnsofnfmwfb`wvbonfmwfmbufdb`j/_m`lmelqnjgbgojmf.kfjdkw9elmw.ebnjoz9!#9#!kwws9,,bssoj`bwjlmpojmh!#kqfe>!psf`jej`booz,,?"X@GBWBX Lqdbmjybwjlmgjpwqjavwjlm3s{8#kfjdkw9qfobwjlmpkjsgfuj`f.tjgwk?gju#`obpp>!?obafo#elq>!qfdjpwqbwjlm?,mlp`qjsw= ,jmgf{-kwno!tjmglt-lsfm+#"jnslqwbmw8bssoj`bwjlm,jmgfsfmgfm`f,,ttt-dlldoflqdbmjybwjlmbvwl`lnsofwfqfrvjqfnfmwp`lmpfqubwjuf?elqn#mbnf>!jmwfoof`wvbonbqdjm.ofew92;wk#`fmwvqzbm#jnslqwbmwjmpwjwvwjlmpbaaqfujbwjlm?jnd#`obpp>!lqdbmjpbwjlm`jujojybwjlm2:wk#`fmwvqzbq`kjwf`wvqfjm`lqslqbwfg13wk#`fmwvqz.`lmwbjmfq!=nlpw#mlwbaoz,=?,b=?,gju=mlwjej`bwjlm$vmgfejmfg$*Evqwkfqnlqf/afojfuf#wkbwjmmfqKWNO#>#sqjlq#wl#wkfgqbnbwj`boozqfefqqjmd#wlmfdlwjbwjlmpkfbgrvbqwfqpPlvwk#Beqj`bvmpv``fppevoSfmmpzoubmjbBp#b#qfpvow/?kwno#obmd>!%ow8,pvs%dw8gfbojmd#tjwkskjobgfoskjbkjpwlqj`booz*8?,p`qjsw= sbggjmd.wls9f{sfqjnfmwbodfwBwwqjavwfjmpwqv`wjlmpwf`kmloldjfpsbqw#le#wkf#>evm`wjlm+*xpvap`qjswjlmo-gwg!= ?kwdfldqbskj`bo@lmpwjwvwjlm$/#evm`wjlm+pvsslqwfg#azbdqj`vowvqbo`lmpwqv`wjlmsvaoj`bwjlmpelmw.pjyf9#2b#ubqjfwz#le?gju#pwzof>!Fm`z`olsfgjbjeqbnf#pq`>!gfnlmpwqbwfgb``lnsojpkfgvmjufqpjwjfpGfnldqbskj`p*8?,p`qjsw=?gfgj`bwfg#wlhmltofgdf#lepbwjpeb`wjlmsbqwj`vobqoz?,gju=?,gju=Fmdojpk#+VP*bssfmg@kjog+wqbmpnjppjlmp-#Kltfufq/#jmwfoojdfm`f!#wbajmgf{>!eolbw9qjdkw8@lnnlmtfbowkqbmdjmd#eqlnjm#tkj`k#wkfbw#ofbpw#lmfqfsqlgv`wjlmfm`z`olsfgjb8elmw.pjyf92ivqjpgj`wjlmbw#wkbw#wjnf!=?b#`obpp>!Jm#bggjwjlm/gfp`qjswjlm(`lmufqpbwjlm`lmwb`w#tjwkjp#dfmfqboozq!#`lmwfmw>!qfsqfpfmwjmd%ow8nbwk%dw8sqfpfmwbwjlml``bpjlmbooz?jnd#tjgwk>!mbujdbwjlm!=`lnsfmpbwjlm`kbnsjlmpkjsnfgjb>!boo!#ujlobwjlm#leqfefqfm`f#wlqfwvqm#wqvf8Pwqj`w,,FM!#wqbmpb`wjlmpjmwfqufmwjlmufqjej`bwjlmJmelqnbwjlm#gjeej`vowjfp@kbnsjlmpkjs`bsbajojwjfp?"Xfmgje^..=~ ?,p`qjsw= @kqjpwjbmjwzelq#f{bnsof/Sqlefppjlmboqfpwqj`wjlmppvddfpw#wkbwtbp#qfofbpfg+pv`k#bp#wkfqfnluf@obpp+vmfnsolznfmwwkf#Bnfqj`bmpwqv`wvqf#le,jmgf{-kwno#svaojpkfg#jmpsbm#`obpp>!!=?b#kqfe>!,jmwqlgv`wjlmafolmdjmd#wl`objnfg#wkbw`lmpfrvfm`fp?nfwb#mbnf>!Dvjgf#wl#wkflufqtkfonjmdbdbjmpw#wkf#`lm`fmwqbwfg/ -mlmwlv`k#lapfqubwjlmp?,b= ?,gju= e#+gl`vnfmw-alqgfq9#2s{#xelmw.pjyf92wqfbwnfmw#le3!#kfjdkw>!2nlgjej`bwjlmJmgfsfmgfm`fgjujgfg#jmwldqfbwfq#wkbmb`kjfufnfmwpfpwbaojpkjmdIbubP`qjsw!#mfufqwkfofpppjdmjej`bm`fAqlbg`bpwjmd=%maps8?,wg=`lmwbjmfq!= pv`k#bp#wkf#jmeovfm`f#leb#sbqwj`vobqpq`>$kwws9,,mbujdbwjlm!#kboe#le#wkf#pvapwbmwjbo#%maps8?,gju=bgubmwbdf#legjp`lufqz#leevmgbnfmwbo#nfwqlslojwbmwkf#lsslpjwf!#{no9obmd>!gfojafqbwfozbojdm>`fmwfqfulovwjlm#lesqfpfqubwjlmjnsqlufnfmwpafdjmmjmd#jmIfpvp#@kqjpwSvaoj`bwjlmpgjpbdqffnfmwwf{w.bojdm9q/#evm`wjlm+*pjnjobqjwjfpalgz=?,kwno=jp#`vqqfmwozboskbafwj`bojp#plnfwjnfpwzsf>!jnbdf,nbmz#le#wkf#eolt9kjggfm8bubjobaof#jmgfp`qjaf#wkff{jpwfm`f#leboo#lufq#wkfwkf#Jmwfqmfw\n?vo#`obpp>!jmpwboobwjlmmfjdkalqkllgbqnfg#elq`fpqfgv`jmd#wkf`lmwjmvfp#wlMlmfwkfofpp/wfnsfqbwvqfp \n\n?b#kqfe>!`olpf#wl#wkff{bnsofp#le#jp#balvw#wkf+pff#afolt*-!#jg>!pfbq`ksqlefppjlmbojp#bubjobaofwkf#leej`jbo\n\n?,p`qjsw= \n\n?gju#jg>!b``fofqbwjlmwkqlvdk#wkf#Kboo#le#Ebnfgfp`qjswjlmpwqbmpobwjlmpjmwfqefqfm`f#wzsf>$wf{w,qf`fmw#zfbqpjm#wkf#tlqogufqz#slsvobqxab`hdqlvmg9wqbgjwjlmbo#plnf#le#wkf#`lmmf`wfg#wlf{soljwbwjlmfnfqdfm`f#le`lmpwjwvwjlmB#Kjpwlqz#lepjdmjej`bmw#nbmveb`wvqfgf{sf`wbwjlmp=?mlp`qjsw=?`bm#af#elvmgaf`bvpf#wkf#kbp#mlw#affmmfjdkalvqjmdtjwklvw#wkf#bggfg#wl#wkf\n?oj#`obpp>!jmpwqvnfmwboPlujfw#Vmjlmb`hmltofgdfgtkj`k#`bm#afmbnf#elq#wkfbwwfmwjlm#wlbwwfnswp#wl#gfufolsnfmwpJm#eb`w/#wkf?oj#`obpp>!bjnsoj`bwjlmppvjwbaof#elqnv`k#le#wkf#`lolmjybwjlmsqfpjgfmwjbo`bm`foAvaaof#Jmelqnbwjlmnlpw#le#wkf#jp#gfp`qjafgqfpw#le#wkf#nlqf#lq#ofppjm#PfswfnafqJmwfoojdfm`fpq`>!kwws9,,s{8#kfjdkw9#bubjobaof#wlnbmveb`wvqfqkvnbm#qjdkwpojmh#kqfe>!,bubjobajojwzsqlslqwjlmbolvwpjgf#wkf#bpwqlmlnj`bokvnbm#afjmdpmbnf#le#wkf#bqf#elvmg#jmbqf#abpfg#lmpnboofq#wkbmb#sfqplm#tklf{sbmpjlm#lebqdvjmd#wkbwmlt#hmltm#bpJm#wkf#fbqozjmwfqnfgjbwfgfqjufg#eqlnP`bmgjmbujbm?,b=?,gju= `lmpjgfq#wkfbm#fpwjnbwfgwkf#Mbwjlmbo?gju#jg>!sbdqfpvowjmd#jm`lnnjppjlmfgbmboldlvp#wlbqf#qfrvjqfg,vo= ?,gju= tbp#abpfg#lmbmg#af`bnf#b%maps8%maps8w!#ubovf>!!#tbp#`bswvqfgml#nlqf#wkbmqfpsf`wjufoz`lmwjmvf#wl#= ?kfbg= ?tfqf#`qfbwfgnlqf#dfmfqbojmelqnbwjlm#vpfg#elq#wkfjmgfsfmgfmw#wkf#Jnsfqjbo`lnslmfmw#lewl#wkf#mlqwkjm`ovgf#wkf#@lmpwqv`wjlmpjgf#le#wkf#tlvog#mlw#afelq#jmpwbm`fjmufmwjlm#lenlqf#`lnsof{`loof`wjufozab`hdqlvmg9#wf{w.bojdm9#jwp#lqjdjmbojmwl#b``lvmwwkjp#sql`fppbm#f{wfmpjufkltfufq/#wkfwkfz#bqf#mlwqfif`wfg#wkf`qjwj`jpn#legvqjmd#tkj`ksqlabaoz#wkfwkjp#bqwj`of+evm`wjlm+*xJw#pklvog#afbm#bdqffnfmwb``jgfmwboozgjeefqp#eqlnBq`kjwf`wvqfafwwfq#hmltmbqqbmdfnfmwpjmeovfm`f#lmbwwfmgfg#wkfjgfmwj`bo#wlplvwk#le#wkfsbpp#wkqlvdk{no!#wjwof>!tfjdkw9alog8`qfbwjmd#wkfgjpsobz9mlmfqfsob`fg#wkf?jnd#pq`>!,jkwwsp9,,ttt-Tlqog#Tbq#JJwfpwjnlmjbopelvmg#jm#wkfqfrvjqfg#wl#bmg#wkbw#wkfafwtffm#wkf#tbp#gfpjdmfg`lmpjpwp#le#`lmpjgfqbaozsvaojpkfg#azwkf#obmdvbdf@lmpfqubwjlm`lmpjpwfg#leqfefq#wl#wkfab`h#wl#wkf#`pp!#nfgjb>!Sflsof#eqln#bubjobaof#lmsqlufg#wl#afpvddfpwjlmp!tbp#hmltm#bpubqjfwjfp#leojhfoz#wl#af`lnsqjpfg#lepvsslqw#wkf#kbmgp#le#wkf`lvsofg#tjwk`lmmf`w#bmg#alqgfq9mlmf8sfqelqnbm`fpafelqf#afjmdobwfq#af`bnf`bo`vobwjlmplewfm#`boofgqfpjgfmwp#lenfbmjmd#wkbw=?oj#`obpp>!fujgfm`f#elqf{sobmbwjlmpfmujqlmnfmwp!=?,b=?,gju=tkj`k#booltpJmwqlgv`wjlmgfufolsfg#azb#tjgf#qbmdflm#afkboe#leubojdm>!wls!sqjm`jsof#lebw#wkf#wjnf/?,mlp`qjsw=pbjg#wl#kbufjm#wkf#ejqpwtkjof#lwkfqpkzslwkfwj`boskjolplskfqpsltfq#le#wkf`lmwbjmfg#jmsfqelqnfg#azjmbajojwz#wltfqf#tqjwwfmpsbm#pwzof>!jmsvw#mbnf>!wkf#rvfpwjlmjmwfmgfg#elqqfif`wjlm#lejnsojfp#wkbwjmufmwfg#wkfwkf#pwbmgbqgtbp#sqlabaozojmh#afwtffmsqlefpplq#lejmwfqb`wjlmp`kbmdjmd#wkfJmgjbm#L`fbm#`obpp>!obpwtlqhjmd#tjwk$kwws9,,ttt-zfbqp#afelqfWkjp#tbp#wkfqf`qfbwjlmbofmwfqjmd#wkfnfbpvqfnfmwpbm#f{wqfnfozubovf#le#wkfpwbqw#le#wkf ?,p`qjsw= bm#feelqw#wljm`qfbpf#wkfwl#wkf#plvwkpsb`jmd>!3!=pveej`jfmwozwkf#Fvqlsfbm`lmufqwfg#wl`ofbqWjnflvwgjg#mlw#kbuf`lmpfrvfmwozelq#wkf#mf{wf{wfmpjlm#lef`lmlnj`#bmgbowklvdk#wkfbqf#sqlgv`fgbmg#tjwk#wkfjmpveej`jfmwdjufm#az#wkfpwbwjmd#wkbwf{sfmgjwvqfp?,psbm=?,b= wklvdkw#wkbwlm#wkf#abpjp`foosbggjmd>jnbdf#le#wkfqfwvqmjmd#wljmelqnbwjlm/pfsbqbwfg#azbppbppjmbwfgp!#`lmwfmw>!bvwklqjwz#lemlqwktfpwfqm?,gju= ?gju#!=?,gju= ##`lmpvowbwjlm`lnnvmjwz#lewkf#mbwjlmbojw#pklvog#afsbqwj`jsbmwp#bojdm>!ofewwkf#dqfbwfpwpfof`wjlm#lepvsfqmbwvqbogfsfmgfmw#lmjp#nfmwjlmfgbooltjmd#wkftbp#jmufmwfgb``lnsbmzjmdkjp#sfqplmbobubjobaof#bwpwvgz#le#wkflm#wkf#lwkfqf{f`vwjlm#leKvnbm#Qjdkwpwfqnp#le#wkfbppl`jbwjlmpqfpfbq`k#bmgpv``ffgfg#azgfefbwfg#wkfbmg#eqln#wkfavw#wkfz#bqf`lnnbmgfq#lepwbwf#le#wkfzfbqp#le#bdfwkf#pwvgz#le?vo#`obpp>!psob`f#jm#wkftkfqf#kf#tbp?oj#`obpp>!ewkfqf#bqf#mltkj`k#af`bnfkf#svaojpkfgf{sqfppfg#jmwl#tkj`k#wkf`lnnjppjlmfqelmw.tfjdkw9wfqqjwlqz#lef{wfmpjlmp!=Qlnbm#Fnsjqffrvbo#wl#wkfJm#`lmwqbpw/kltfufq/#bmgjp#wzsj`boozbmg#kjp#tjef+bopl#`boofg=?vo#`obpp>!feef`wjufoz#fuloufg#jmwlpffn#wl#kbuftkj`k#jp#wkfwkfqf#tbp#mlbm#f{`foofmwboo#le#wkfpfgfp`qjafg#azJm#sqb`wj`f/aqlbg`bpwjmd`kbqdfg#tjwkqfeof`wfg#jmpvaif`wfg#wlnjojwbqz#bmgwl#wkf#sljmwf`lmlnj`boozpfwWbqdfwjmdbqf#b`wvboozuj`wlqz#lufq+*8?,p`qjsw=`lmwjmvlvpozqfrvjqfg#elqfulovwjlmbqzbm#feef`wjufmlqwk#le#wkf/#tkj`k#tbp#eqlmw#le#wkflq#lwkfqtjpfplnf#elqn#lekbg#mlw#affmdfmfqbwfg#azjmelqnbwjlm-sfqnjwwfg#wljm`ovgfp#wkfgfufolsnfmw/fmwfqfg#jmwlwkf#sqfujlvp`lmpjpwfmwozbqf#hmltm#bpwkf#ejfog#lewkjp#wzsf#ledjufm#wl#wkfwkf#wjwof#le`lmwbjmp#wkfjmpwbm`fp#lejm#wkf#mlqwkgvf#wl#wkfjqbqf#gfpjdmfg`lqslqbwjlmptbp#wkbw#wkflmf#le#wkfpfnlqf#slsvobqpv``ffgfg#jmpvsslqw#eqlnjm#gjeefqfmwglnjmbwfg#azgfpjdmfg#elqltmfqpkjs#lebmg#slppjaozpwbmgbqgjyfgqfpslmpfWf{wtbp#jmwfmgfgqf`fjufg#wkfbppvnfg#wkbwbqfbp#le#wkfsqjnbqjoz#jmwkf#abpjp#lejm#wkf#pfmpfb``lvmwp#elqgfpwqlzfg#azbw#ofbpw#wtltbp#gf`obqfg`lvog#mlw#afPf`qfwbqz#lebssfbq#wl#afnbqdjm.wls92,]_p(\x7F_p(\',df*xwkqlt#f~8wkf#pwbqw#lewtl#pfsbqbwfobmdvbdf#bmgtkl#kbg#affmlsfqbwjlm#legfbwk#le#wkfqfbo#mvnafqp\n?ojmh#qfo>!sqlujgfg#wkfwkf#pwlqz#le`lnsfwjwjlmpfmdojpk#+VH*fmdojpk#+VP*<p<R<Q<_<R<W<M=l<S=m<V<T=m=l<S=m<V<T=m=l<S=m<V<R5h4U4]4D5f4E\nAOGx\bTA\nzk\vBl\bQ\x7F\bTA\nzk\vUm\bQ\x7F\bTA\nzk\npeu| i@ cT\bVV\n\\}\nxS VptSk` [X [X\vHR\bPv\bTW\bUe\n\x7Fa\bQp\v_W\vWs\nxS\vAz\n_yKhjmelqnb`j/_mkfqqbnjfmwbpfof`wq/_mj`lgfp`qjs`j/_m`obpjej`bglp`lml`jnjfmwlsvaoj`b`j/_mqfob`jlmbgbpjmelqn/Mwj`bqfob`jlmbglpgfsbqwbnfmwlwqbabibglqfpgjqf`wbnfmwfbzvmwbnjfmwlnfq`bglOjaqf`lmw/M`wfmlpkbajwb`jlmfp`vnsojnjfmwlqfpwbvqbmwfpgjpslpj`j/_m`lmpf`vfm`jbfof`wq/_mj`bbsoj`b`jlmfpgfp`lmf`wbgljmpwbob`j/_mqfbojyb`j/_mvwjojyb`j/_mfm`j`olsfgjbfmefqnfgbgfpjmpwqvnfmwlpf{sfqjfm`jbpjmpwjwv`j/_msbqwj`vobqfppva`bwfdlqjb=n<R<W=`<V<R<L<R=m=m<T<T=l<\\<]<R=n=g<]<R<W=`=d<Y<S=l<R=m=n<R<P<R<Z<Y=n<Y<X=l=o<_<T=i=m<W=o=k<\\<Y=m<Y<U=k<\\=m<^=m<Y<_<X<\\<L<R=m=m<T=c<p<R=m<V<^<Y<X=l=o<_<T<Y<_<R=l<R<X<\\<^<R<S=l<R=m<X<\\<Q<Q=g=i<X<R<W<Z<Q=g<T<P<Y<Q<Q<R<p<R=m<V<^=g=l=o<]<W<Y<U<p<R=m<V<^<\\=m=n=l<\\<Q=g<Q<T=k<Y<_<R=l<\\<]<R=n<Y<X<R<W<Z<Y<Q=o=m<W=o<_<T=n<Y<S<Y=l=`<r<X<Q<\\<V<R<S<R=n<R<P=o=l<\\<]<R=n=o<\\<S=l<Y<W=c<^<R<R<]=e<Y<R<X<Q<R<_<R=m<^<R<Y<_<R=m=n<\\=n=`<T<X=l=o<_<R<U=h<R=l=o<P<Y=i<R=l<R=d<R<S=l<R=n<T<^=m=m=g<W<V<\\<V<\\<Z<X=g<U<^<W<\\=m=n<T<_=l=o<S<S=g<^<P<Y=m=n<Y=l<\\<]<R=n<\\=m<V<\\<[<\\<W<S<Y=l<^=g<U<X<Y<W<\\=n=`<X<Y<Q=`<_<T<S<Y=l<T<R<X<]<T<[<Q<Y=m<R=m<Q<R<^<Y<P<R<P<Y<Q=n<V=o<S<T=n=`<X<R<W<Z<Q<\\=l<\\<P<V<\\=i<Q<\\=k<\\<W<R<L<\\<]<R=n<\\<N<R<W=`<V<R=m<R<^=m<Y<P<^=n<R=l<R<U<Q<\\=k<\\<W<\\=m<S<T=m<R<V=m<W=o<Z<]=g=m<T=m=n<Y<P<S<Y=k<\\=n<T<Q<R<^<R<_<R<S<R<P<R=e<T=m<\\<U=n<R<^<S<R=k<Y<P=o<S<R<P<R=e=`<X<R<W<Z<Q<R=m=m=g<W<V<T<]=g=m=n=l<R<X<\\<Q<Q=g<Y<P<Q<R<_<T<Y<S=l<R<Y<V=n<M<Y<U=k<\\=m<P<R<X<Y<W<T=n<\\<V<R<_<R<R<Q<W<\\<U<Q<_<R=l<R<X<Y<^<Y=l=m<T=c=m=n=l<\\<Q<Y=h<T<W=`<P=g=o=l<R<^<Q=c=l<\\<[<Q=g=i<T=m<V<\\=n=`<Q<Y<X<Y<W=b=c<Q<^<\\=l=c<P<Y<Q=`=d<Y<P<Q<R<_<T=i<X<\\<Q<Q<R<U<[<Q<\\=k<T=n<Q<Y<W=`<[=c=h<R=l=o<P<\\<N<Y<S<Y=l=`<P<Y=m=c=j<\\<[<\\=e<T=n=g<w=o=k=d<T<Y\fHD\fHU\fIl\fHn\fHy\fH\\\fHD\fIk\fHi\fHF\fHD\fIk\fHy\fHS\fHC\fHR\fHy\fH\\\fIk\fHn\fHi\fHD\fIa\fHC\fHy\fIa\fHC\fHR\fH{\fHR\fHk\fHM\fH@\fHR\fH\\\fIk\fHy\fHS\fHT\fIl\fHJ\fHS\fHC\fHR\fHF\fHU\fH^\fIk\fHT\fHS\fHn\fHU\fHA\fHR\fH\\\fHH\fHi\fHF\fHD\fIl\fHY\fHR\fH^\fIk\fHT\fIk\fHY\fHR\fHy\fH\\\fHH\fIk\fHB\fIk\fH\\\fIk\fHU\fIg\fHD\fIk\fHT\fHy\fHH\fIk\fH@\fHU\fIm\fHH\fHT\fHR\fHk\fHs\fHU\fIg\fH{\fHR\fHp\fHR\fHD\fIk\fHB\fHS\fHD\fHs\fHy\fH\\\fHH\fHR\fHy\fH\\\fHD\fHR\fHe\fHD\fHy\fIk\fHC\fHU\fHR\fHm\fHT\fH@\fHT\fIk\fHA\fHR\fH[\fHR\fHj\fHF\fHy\fIk\fH^\fHS\fHC\fIk\fHZ\fIm\fH\\\fIn\fHk\fHT\fHy\fIk\fHt\fHn\fHs\fIk\fHB\fIk\fH\\\fIl\fHT\fHy\fHH\fHR\fHB\fIk\fH\\\fHR\fH^\fIk\fHy\fH\\\fHi\fHK\fHS\fHy\fHi\fHF\fHD\fHR\fHT\fHB\fHR\fHp\fHB\fIm\fHq\fIk\fHy\fHR\fH\\\fHO\fHU\fIg\fHH\fHR\fHy\fHM\fHP\fIl\fHC\fHU\fHR\fHn\fHU\fIg\fHs\fH^\fHZ\fH@\fIa\fHJ\fH^\fHS\fHC\fHR\fHp\fIl\fHY\fHD\fHp\fHR\fHH\fHR\fHy\fId\fHT\fIk\fHj\fHF\fHy\fHR\fHY\fHR\fH^\fIl\fHJ\fIk\fHD\fIk\fHF\fIn\fH\\\fIl\fHF\fHR\fHD\fIl\fHe\fHT\fHy\fIk\fHU\fIg\fH{\fIl\fH@\fId\fHL\fHy\fHj\fHF\fHy\fIl\fHY\fH\\\fIa\fH[\fH{\fHR\fHn\fHY\fHj\fHF\fHy\fIg\fHp\fHS\fH^\fHR\fHp\fHR\fHD\fHR\fHT\fHU\fHB\fHH\fHU\fHB\fIk\fHn\fHe\fHD\fHy\fIl\fHC\fHR\fHU\fIn\fHJ\fH\\\fIa\fHp\fHT\fIn\fHv\fIl\fHF\fHT\fHn\fHJ\fHT\fHY\fHR\fH^\fHU\fIg\fHD\fHR\fHU\fIg\fHH\fIl\fHp\fId\fHT\fIk\fHY\fHR\fHF\fHT\fHp\fHD\fHH\fHR\fHD\fIk\fHH\fHR\fHp\fHR\fH\\\fIl\fHt\fHR\fHC\fH^\fHp\fHS\fH^\fIk\fHD\fIl\fHv\fIk\fHp\fHR\fHn\fHv\fHF\fHH\fIa\fH\\\fH{\fIn\fH{\fH^\fHp\fHR\fHH\fIk\fH@\fHR\fHU\fH\\\fHj\fHF\fHD\fIk\fHY\fHR\fHU\fHD\fHk\fHT\fHy\fHR\fHT\fIm\fH@\fHU\fH\\\fHU\fHD\fIk\fHk\fHT\fHT\fIk\fHT\fHU\fHS\fHH\fH@\fHM\fHP\fIk\fHt\fHs\fHD\fHR\fHH\fH^\fHR\fHZ\fHF\fHR\fHn\fHv\fHZ\fIa\fH\\\fIl\fH@\fHM\fHP\fIl\fHU\fIg\fHH\fIk\fHT\fHR\fHd\fHs\fHZ\fHR\fHC\fHJ\fHT\fHy\fHH\fIl\fHp\fHR\fHH\fIl\fHY\fHR\fH^\fHR\fHU\fHp\fHR\fH\\\fHF\fHs\fHD\fHR\fH\\\fHz\fHD\fIk\fHT\fHM\fHP\fHy\fHB\fHS\fH^\fHR\fHe\fHT\fHy\fIl\fHy\fIk\fHY\fH^\fH^\fH{\fHH\fHR\fHz\fHR\fHD\fHR\fHi\fH\\\fIa\fHI\fHp\fHU\fHR\fHn\fHJ\fIk\fHz\fHR\fHF\fHU\fH^\fIl\fHD\fHS\fHC\fHB\fH@\fHS\fHD\fHR\fH@\fId\fHn\fHy\fHy\fHU\fIl\fHn\fHy\fHU\fHD\fHR\fHJ\fIk\fHH\fHR\fHU\fHB\fH^\fIk\fHy\fHR\fHG\fIl\fHp\fH@\fHy\fHS\fHH\fIm\fH\\\fHH\fHB\fHR\fHn\fH{\fHY\fHU\fIl\fHn\fH\\\fIg\fHp\fHP\fHB\fHS\fH^\fIl\fHj\fH\\\fIg\fHF\fHT\fIk\fHD\fHR\fHC\fHR\fHJ\fHY\fH^\fIk\fHD\fIk\fHz\fHR\fHH\fHR\fHy\fH\\\fIl\fH@\fHe\fHD\fHy\fHR\fHp\fHY\fHR\fH@\fHF\fIn\fH\\\fHR\fH@\fHM\fHP\fHR\fHT\fI`\fHJ\fHR\fHZ\fIk\fHC\fH\\\fHy\fHS\fHC\fIk\fHy\fHU\fHR\fHn\fHi\fHy\fHT\fH\\\fH@\fHD\fHR\fHc\fHY\fHU\fHR\fHn\fHT\fIa\fHI\fH^\fHB\fHS\fH^\fIk\fH^\fIk\fHz\fHy\fHY\fHS\fH[\fHC\fHy\fIa\fH\\\fHn\fHT\fHB\fIn\fHU\fHI\fHR\fHD\fHR4F4_4F4[5f4U5i4X4K4]5o4E4D5d4K4_4[4E4K5h4Y5m4A4E5i5d4K4Z5f4U4K5h4B4K4Y4E4K5h5i4^5f4C4K5h4U4K5i4E4K5h5o4K4F4D4K5h4]4C5d4C4D4]5j4K5i4@4K5h4C5d5h4E4K5h4U4K5h5i4K5h5i5d5n4U4K5h4U4]4D5f4K5h4_4]5f4U4K5h4@5d4K5h4K5h4\\5k4K4D4K5h4A5f4K4E4K5h4A5n5d5n4K5h5o4]5f5i4K5h4U4]4K5n5i4A5m5d4T4E4K5h4G4K5j5f5i4X4K5k4C4E4K5h5i4]4O4E4K5h5n4]4N5j4K5h4X4D4K4D4K5h4A5d4K4]4K5h4@4C5f4C4K5h4O4_4]4E4K5h4U5h5d5i5i4@5i5d4U4E4K5h4]4A5i5j4K5h5j5n4K4[5m5h4_4[5f5j4K5h5o5d5f4F4K5h4C5j5f4K4D4]5o4K4F5k4K5h4]5f4K4Z4F4A5f4K4F5f4D4F5d5n5f4F4K5h4O5d5h5e4K5h4D4]5f4C4K5h5o5h4K5i4K5h4]4K4D4[4K5h4X4B4Y5f4_5f4K4]4K4F4K5h4G4K5h4G4K5h4Y5h4K4E4K5h4A4C5f4G4K5h4^5d4K4]4K5h4B5h5f4@4K5h4@5i5f4U4K5h4U4K5i5k4K5h4@5i4K5h4K5h4_4K4U4E5i4X4K5k4C5k4K5h4]4J5f4_4K5h4C4B5d5h4K5h5m5j5f4E4K5h5o4F4K4D4K5h4C5d4]5f4K5h4C4]5d4_4K4_4F4V4]5n4F4Y4K5i5f5i4K5h4D5j4K4F4K5h4U4T5f5ifmwfqwbjmnfmwvmgfqpwbmgjmd#>#evm`wjlm+*-isd!#tjgwk>!`lmejdvqbwjlm-smd!#tjgwk>!?algz#`obpp>!Nbwk-qbmgln+*`lmwfnslqbqz#Vmjwfg#Pwbwfp`jq`vnpwbm`fp-bssfmg@kjog+lqdbmjybwjlmp?psbm#`obpp>!!=?jnd#pq`>!,gjpwjmdvjpkfgwklvpbmgp#le#`lnnvmj`bwjlm`ofbq!=?,gju=jmufpwjdbwjlmebuj`lm-j`l!#nbqdjm.qjdkw9abpfg#lm#wkf#Nbppb`kvpfwwpwbaof#alqgfq>jmwfqmbwjlmbobopl#hmltm#bpsqlmvm`jbwjlmab`hdqlvmg9 esbggjmd.ofew9Elq#f{bnsof/#njp`foobmflvp%ow8,nbwk%dw8spz`kloldj`bojm#sbqwj`vobqfbq`k!#wzsf>!elqn#nfwklg>!bp#lsslpfg#wlPvsqfnf#@lvqwl``bpjlmbooz#Bggjwjlmbooz/Mlqwk#Bnfqj`bs{8ab`hdqlvmglsslqwvmjwjfpFmwfqwbjmnfmw-wlOltfq@bpf+nbmveb`wvqjmdsqlefppjlmbo#`lnajmfg#tjwkElq#jmpwbm`f/`lmpjpwjmd#le!#nb{ofmdwk>!qfwvqm#ebopf8`lmp`jlvpmfppNfgjwfqqbmfbmf{wqblqgjmbqzbppbppjmbwjlmpvapfrvfmwoz#avwwlm#wzsf>!wkf#mvnafq#lewkf#lqjdjmbo#`lnsqfkfmpjufqfefqp#wl#wkf?,vo= ?,gju= skjolplskj`bool`bwjlm-kqfetbp#svaojpkfgPbm#Eqbm`jp`l+evm`wjlm+*x ?gju#jg>!nbjmplskjpwj`bwfgnbwkfnbwj`bo#,kfbg= ?algzpvddfpwp#wkbwgl`vnfmwbwjlm`lm`fmwqbwjlmqfobwjlmpkjspnbz#kbuf#affm+elq#f{bnsof/Wkjp#bqwj`of#jm#plnf#`bpfpsbqwp#le#wkf#gfejmjwjlm#leDqfbw#Aqjwbjm#`foosbggjmd>frvjubofmw#wlsob`fklogfq>!8#elmw.pjyf9#ivpwjej`bwjlmafojfufg#wkbwpveefqfg#eqlnbwwfnswfg#wl#ofbgfq#le#wkf`qjsw!#pq`>!,+evm`wjlm+*#xbqf#bubjobaof \n?ojmh#qfo>!#pq`>$kwws9,,jmwfqfpwfg#jm`lmufmwjlmbo#!#bow>!!#,=?,bqf#dfmfqboozkbp#bopl#affmnlpw#slsvobq#`lqqfpslmgjmd`qfgjwfg#tjwkwzof>!alqgfq9?,b=?,psbm=?,-dje!#tjgwk>!?jeqbnf#pq`>!wbaof#`obpp>!jmojmf.aol`h8b``lqgjmd#wl#wldfwkfq#tjwkbssql{jnbwfozsbqojbnfmwbqznlqf#bmg#nlqfgjpsobz9mlmf8wqbgjwjlmboozsqfglnjmbmwoz%maps8\x7F%maps8%maps8?,psbm=#`foopsb`jmd>?jmsvw#mbnf>!lq!#`lmwfmw>!`lmwqlufqpjbosqlsfqwz>!ld9,{.pkl`htbuf.gfnlmpwqbwjlmpvqqlvmgfg#azMfufqwkfofpp/tbp#wkf#ejqpw`lmpjgfqbaof#Bowklvdk#wkf#`loobalqbwjlmpklvog#mlw#afsqlslqwjlm#le?psbm#pwzof>!hmltm#bp#wkf#pklqwoz#bewfqelq#jmpwbm`f/gfp`qjafg#bp#,kfbg= ?algz#pwbqwjmd#tjwkjm`qfbpjmdoz#wkf#eb`w#wkbwgjp`vppjlm#lenjggof#le#wkfbm#jmgjujgvbogjeej`vow#wl#sljmw#le#ujftklnlpf{vbojwzb``fswbm`f#le?,psbm=?,gju=nbmveb`wvqfqplqjdjm#le#wkf`lnnlmoz#vpfgjnslqwbm`f#legfmlnjmbwjlmpab`hdqlvmg9# ofmdwk#le#wkfgfwfqnjmbwjlmb#pjdmjej`bmw!#alqgfq>!3!=qfulovwjlmbqzsqjm`jsofp#lejp#`lmpjgfqfgtbp#gfufolsfgJmgl.Fvqlsfbmuvomfqbaof#wlsqlslmfmwp#lebqf#plnfwjnfp`olpfq#wl#wkfMft#Zlqh#@jwz#mbnf>!pfbq`kbwwqjavwfg#wl`lvqpf#le#wkfnbwkfnbwj`jbmaz#wkf#fmg#lebw#wkf#fmg#le!#alqgfq>!3!#wf`kmloldj`bo-qfnluf@obpp+aqbm`k#le#wkffujgfm`f#wkbw"Xfmgje^..= Jmpwjwvwf#le#jmwl#b#pjmdofqfpsf`wjufoz-bmg#wkfqfelqfsqlsfqwjfp#lejp#ol`bwfg#jmplnf#le#tkj`kWkfqf#jp#bopl`lmwjmvfg#wl#bssfbqbm`f#le#%bns8mgbpk8#gfp`qjafp#wkf`lmpjgfqbwjlmbvwklq#le#wkfjmgfsfmgfmwozfrvjssfg#tjwkglfp#mlw#kbuf?,b=?b#kqfe>!`lmevpfg#tjwk?ojmh#kqfe>!,bw#wkf#bdf#lebssfbq#jm#wkfWkfpf#jm`ovgfqfdbqgofpp#le`lvog#af#vpfg#pwzof>%rvlw8pfufqbo#wjnfpqfsqfpfmw#wkfalgz= ?,kwno=wklvdkw#wl#afslsvobwjlm#leslppjajojwjfpsfq`fmwbdf#leb``fpp#wl#wkfbm#bwwfnsw#wlsqlgv`wjlm#leirvfqz,irvfqzwtl#gjeefqfmwafolmd#wl#wkffpwbaojpknfmwqfsob`jmd#wkfgfp`qjswjlm!#gfwfqnjmf#wkfbubjobaof#elqB``lqgjmd#wl#tjgf#qbmdf#le\n?gju#`obpp>!nlqf#`lnnlmozlqdbmjpbwjlmpevm`wjlmbojwztbp#`lnsofwfg#%bns8ngbpk8#sbqwj`jsbwjlmwkf#`kbqb`wfqbm#bggjwjlmbobssfbqp#wl#afeb`w#wkbw#wkfbm#f{bnsof#lepjdmjej`bmwozlmnlvpflufq>!af`bvpf#wkfz#bpzm`#>#wqvf8sqlaofnp#tjwkpffnp#wl#kbufwkf#qfpvow#le#pq`>!kwws9,,ebnjojbq#tjwkslppfppjlm#leevm`wjlm#+*#xwllh#sob`f#jmbmg#plnfwjnfppvapwbmwjbooz?psbm=?,psbm=jp#lewfm#vpfgjm#bm#bwwfnswdqfbw#gfbo#leFmujqlmnfmwbopv``fppevooz#ujqwvbooz#boo13wk#`fmwvqz/sqlefppjlmbopmf`fppbqz#wl#gfwfqnjmfg#az`lnsbwjajojwzaf`bvpf#jw#jpGj`wjlmbqz#lenlgjej`bwjlmpWkf#elooltjmdnbz#qfefq#wl9@lmpfrvfmwoz/Jmwfqmbwjlmbobowklvdk#plnfwkbw#tlvog#aftlqog$p#ejqpw`obppjejfg#bpalwwln#le#wkf+sbqwj`vobqozbojdm>!ofew!#nlpw#`lnnlmozabpjp#elq#wkfelvmgbwjlm#le`lmwqjavwjlmpslsvobqjwz#le`fmwfq#le#wkfwl#qfgv`f#wkfivqjpgj`wjlmpbssql{jnbwjlm#lmnlvpflvw>!Mft#Wfpwbnfmw`loof`wjlm#le?,psbm=?,b=?,jm#wkf#Vmjwfgejon#gjqf`wlq.pwqj`w-gwg!=kbp#affm#vpfgqfwvqm#wl#wkfbowklvdk#wkjp`kbmdf#jm#wkfpfufqbo#lwkfqavw#wkfqf#bqfvmsqf`fgfmwfgjp#pjnjobq#wlfpsf`jbooz#jmtfjdkw9#alog8jp#`boofg#wkf`lnsvwbwjlmbojmgj`bwf#wkbwqfpwqj`wfg#wl\n?nfwb#mbnf>!bqf#wzsj`booz`lmeoj`w#tjwkKltfufq/#wkf#Bm#f{bnsof#le`lnsbqfg#tjwkrvbmwjwjfp#leqbwkfq#wkbm#b`lmpwfoobwjlmmf`fppbqz#elqqfslqwfg#wkbwpsf`jej`bwjlmslojwj`bo#bmg%maps8%maps8?qfefqfm`fp#wlwkf#pbnf#zfbqDlufqmnfmw#ledfmfqbwjlm#lekbuf#mlw#affmpfufqbo#zfbqp`lnnjwnfmw#wl\n\n?vo#`obpp>!ujpvbojybwjlm2:wk#`fmwvqz/sqb`wjwjlmfqpwkbw#kf#tlvogbmg#`lmwjmvfgl``vsbwjlm#lejp#gfejmfg#bp`fmwqf#le#wkfwkf#bnlvmw#le=?gju#pwzof>!frvjubofmw#legjeefqfmwjbwfaqlvdkw#balvwnbqdjm.ofew9#bvwlnbwj`boozwklvdkw#le#bpPlnf#le#wkfpf ?gju#`obpp>!jmsvw#`obpp>!qfsob`fg#tjwkjp#lmf#le#wkffgv`bwjlm#bmgjmeovfm`fg#azqfsvwbwjlm#bp ?nfwb#mbnf>!b``lnnlgbwjlm?,gju= ?,gju=obqdf#sbqw#leJmpwjwvwf#elqwkf#pl.`boofg#bdbjmpw#wkf#Jm#wkjp#`bpf/tbp#bssljmwfg`objnfg#wl#afKltfufq/#wkjpGfsbqwnfmw#lewkf#qfnbjmjmdfeef`w#lm#wkfsbqwj`vobqoz#gfbo#tjwk#wkf ?gju#pwzof>!bonlpw#botbzpbqf#`vqqfmwozf{sqfppjlm#leskjolplskz#leelq#nlqf#wkbm`jujojybwjlmplm#wkf#jpobmgpfof`wfgJmgf{`bm#qfpvow#jm!#ubovf>!!#,=wkf#pwqv`wvqf#,=?,b=?,gju=Nbmz#le#wkfpf`bvpfg#az#wkfle#wkf#Vmjwfgpsbm#`obpp>!n`bm#af#wqb`fgjp#qfobwfg#wlaf`bnf#lmf#lejp#eqfrvfmwozojujmd#jm#wkfwkflqfwj`boozElooltjmd#wkfQfulovwjlmbqzdlufqmnfmw#jmjp#gfwfqnjmfgwkf#slojwj`bojmwqlgv`fg#jmpveej`jfmw#wlgfp`qjswjlm!=pklqw#pwlqjfppfsbqbwjlm#lebp#wl#tkfwkfqhmltm#elq#jwptbp#jmjwjboozgjpsobz9aol`hjp#bm#f{bnsofwkf#sqjm`jsbo`lmpjpwp#le#bqf`ldmjyfg#bp,algz=?,kwno=b#pvapwbmwjboqf`lmpwqv`wfgkfbg#le#pwbwfqfpjpwbm`f#wlvmgfqdqbgvbwfWkfqf#bqf#wtldqbujwbwjlmbobqf#gfp`qjafgjmwfmwjlmboozpfqufg#bp#wkf`obpp>!kfbgfqlsslpjwjlm#wlevmgbnfmwboozglnjmbwfg#wkfbmg#wkf#lwkfqboojbm`f#tjwktbp#elq`fg#wlqfpsf`wjufoz/bmg#slojwj`bojm#pvsslqw#lesflsof#jm#wkf13wk#`fmwvqz-bmg#svaojpkfgolbg@kbqwafbwwl#vmgfqpwbmgnfnafq#pwbwfpfmujqlmnfmwboejqpw#kboe#le`lvmwqjfp#bmgbq`kjwf`wvqboaf#`lmpjgfqfg`kbqb`wfqjyfg`ofbqJmwfqubobvwklqjwbwjufEfgfqbwjlm#letbp#pv``ffgfgbmg#wkfqf#bqfb#`lmpfrvfm`fwkf#Sqfpjgfmwbopl#jm`ovgfgeqff#plewtbqfpv``fppjlm#legfufolsfg#wkftbp#gfpwqlzfgbtbz#eqln#wkf8 ?,p`qjsw= ?bowklvdk#wkfzelooltfg#az#bnlqf#sltfqevoqfpvowfg#jm#bVmjufqpjwz#leKltfufq/#nbmzwkf#sqfpjgfmwKltfufq/#plnfjp#wklvdkw#wlvmwjo#wkf#fmgtbp#bmmlvm`fgbqf#jnslqwbmwbopl#jm`ovgfp=?jmsvw#wzsf>wkf#`fmwfq#le#GL#MLW#BOWFQvpfg#wl#qfefqwkfnfp,<plqw>wkbw#kbg#affmwkf#abpjp#elqkbp#gfufolsfgjm#wkf#pvnnfq`lnsbqbwjufozgfp`qjafg#wkfpv`k#bp#wklpfwkf#qfpvowjmdjp#jnslppjaofubqjlvp#lwkfqPlvwk#Beqj`bmkbuf#wkf#pbnffeef`wjufmfppjm#tkj`k#`bpf8#wf{w.bojdm9pwqv`wvqf#bmg8#ab`hdqlvmg9qfdbqgjmd#wkfpvsslqwfg#wkfjp#bopl#hmltmpwzof>!nbqdjmjm`ovgjmd#wkfabkbpb#Nfobzvmlqph#alhn/Iomlqph#mzmlqphpolufm)M(ajmbjmwfqmb`jlmbo`bojej`b`j/_m`lnvmj`b`j/_m`lmpwqv``j/_m!=?gju#`obpp>!gjpbnajdvbwjlmGlnbjmMbnf$/#$bgnjmjpwqbwjlmpjnvowbmflvpozwqbmpslqwbwjlmJmwfqmbwjlmbo#nbqdjm.alwwln9qfpslmpjajojwz?"Xfmgje^..= ?,=?nfwb#mbnf>!jnsofnfmwbwjlmjmeqbpwqv`wvqfqfsqfpfmwbwjlmalqgfq.alwwln9?,kfbg= ?algz=>kwws&0B&1E&1E?elqn#nfwklg>!nfwklg>!slpw!#,ebuj`lm-j`l!#~*8 ?,p`qjsw= -pfwBwwqjavwf+Bgnjmjpwqbwjlm>#mft#Bqqbz+*8?"Xfmgje^..= gjpsobz9aol`h8Vmelqwvmbwfoz/!=%maps8?,gju=,ebuj`lm-j`l!=>$pwzofpkffw$#jgfmwjej`bwjlm/#elq#f{bnsof/?oj=?b#kqfe>!,bm#bowfqmbwjufbp#b#qfpvow#lesw!=?,p`qjsw= wzsf>!pvanjw!# +evm`wjlm+*#xqf`lnnfmgbwjlmelqn#b`wjlm>!,wqbmpelqnbwjlmqf`lmpwqv`wjlm-pwzof-gjpsobz#B``lqgjmd#wl#kjggfm!#mbnf>!bolmd#tjwk#wkfgl`vnfmw-algz-bssql{jnbwfoz#@lnnvmj`bwjlmpslpw!#b`wjlm>!nfbmjmd#%rvlw8..?"Xfmgje^..=Sqjnf#Njmjpwfq`kbqb`wfqjpwj`?,b=#?b#`obpp>wkf#kjpwlqz#le#lmnlvpflufq>!wkf#dlufqmnfmwkqfe>!kwwsp9,,tbp#lqjdjmbooztbp#jmwqlgv`fg`obppjej`bwjlmqfsqfpfmwbwjufbqf#`lmpjgfqfg?"Xfmgje^..= gfsfmgp#lm#wkfVmjufqpjwz#le#jm#`lmwqbpw#wl#sob`fklogfq>!jm#wkf#`bpf#lejmwfqmbwjlmbo#`lmpwjwvwjlmbopwzof>!alqgfq.9#evm`wjlm+*#xAf`bvpf#le#wkf.pwqj`w-gwg!= ?wbaof#`obpp>!b``lnsbmjfg#azb``lvmw#le#wkf?p`qjsw#pq`>!,mbwvqf#le#wkf#wkf#sflsof#jm#jm#bggjwjlm#wlp*8#ip-jg#>#jg!#tjgwk>!233&!qfdbqgjmd#wkf#Qlnbm#@bwkloj`bm#jmgfsfmgfmwelooltjmd#wkf#-dje!#tjgwk>!2wkf#elooltjmd#gjp`qjnjmbwjlmbq`kbfloldj`bosqjnf#njmjpwfq-ip!=?,p`qjsw=`lnajmbwjlm#le#nbqdjmtjgwk>!`qfbwfFofnfmw+t-bwwb`kFufmw+?,b=?,wg=?,wq=pq`>!kwwsp9,,bJm#sbqwj`vobq/#bojdm>!ofew!#@yf`k#Qfsvaoj`Vmjwfg#Hjmdgln`lqqfpslmgfm`f`lm`ovgfg#wkbw-kwno!#wjwof>!+evm`wjlm#+*#x`lnfp#eqln#wkfbssoj`bwjlm#le?psbm#`obpp>!pafojfufg#wl#affnfmw+$p`qjsw$?,b= ?,oj= ?ojufqz#gjeefqfmw=?psbm#`obpp>!lswjlm#ubovf>!+bopl#hmltm#bp\n?oj=?b#kqfe>!=?jmsvw#mbnf>!pfsbqbwfg#eqlnqfefqqfg#wl#bp#ubojdm>!wls!=elvmgfq#le#wkfbwwfnswjmd#wl#`bqalm#gjl{jgf ?gju#`obpp>!`obpp>!pfbq`k.,algz= ?,kwno=lsslqwvmjwz#wl`lnnvmj`bwjlmp?,kfbg= ?algz#pwzof>!tjgwk9Wj\rVSmd#Uj\rWkw`kbmdfp#jm#wkfalqgfq.`lolq9 3!#alqgfq>!3!#?,psbm=?,gju=?tbp#gjp`lufqfg!#wzsf>!wf{w!#*8 ?,p`qjsw= Gfsbqwnfmw#le#f``ofpjbpwj`bowkfqf#kbp#affmqfpvowjmd#eqln?,algz=?,kwno=kbp#mfufq#affmwkf#ejqpw#wjnfjm#qfpslmpf#wlbvwlnbwj`booz#?,gju= ?gju#jtbp#`lmpjgfqfgsfq`fmw#le#wkf!#,=?,b=?,gju=`loof`wjlm#le#gfp`fmgfg#eqlnpf`wjlm#le#wkfb``fsw.`kbqpfwwl#af#`lmevpfgnfnafq#le#wkf#sbggjmd.qjdkw9wqbmpobwjlm#lejmwfqsqfwbwjlm#kqfe>$kwws9,,tkfwkfq#lq#mlwWkfqf#bqf#boplwkfqf#bqf#nbmzb#pnboo#mvnafqlwkfq#sbqwp#lejnslppjaof#wl##`obpp>!avwwlmol`bwfg#jm#wkf-#Kltfufq/#wkfbmg#fufmwvboozBw#wkf#fmg#le#af`bvpf#le#jwpqfsqfpfmwp#wkf?elqn#b`wjlm>!#nfwklg>!slpw!jw#jp#slppjaofnlqf#ojhfoz#wlbm#jm`qfbpf#jmkbuf#bopl#affm`lqqfpslmgp#wlbmmlvm`fg#wkbwbojdm>!qjdkw!=nbmz#`lvmwqjfpelq#nbmz#zfbqpfbqojfpw#hmltmaf`bvpf#jw#tbpsw!=?,p`qjsw=#ubojdm>!wls!#jmkbajwbmwp#leelooltjmd#zfbq ?gju#`obpp>!njoojlm#sflsof`lmwqlufqpjbo#`lm`fqmjmd#wkfbqdvf#wkbw#wkfdlufqmnfmw#bmgb#qfefqfm`f#wlwqbmpefqqfg#wlgfp`qjajmd#wkf#pwzof>!`lolq9bowklvdk#wkfqfafpw#hmltm#elqpvanjw!#mbnf>!nvowjsoj`bwjlmnlqf#wkbm#lmf#qf`ldmjwjlm#le@lvm`jo#le#wkffgjwjlm#le#wkf##?nfwb#mbnf>!Fmwfqwbjmnfmw#btbz#eqln#wkf#8nbqdjm.qjdkw9bw#wkf#wjnf#lejmufpwjdbwjlmp`lmmf`wfg#tjwkbmg#nbmz#lwkfqbowklvdk#jw#jpafdjmmjmd#tjwk#?psbm#`obpp>!gfp`fmgbmwp#le?psbm#`obpp>!j#bojdm>!qjdkw!?,kfbg= ?algz#bpsf`wp#le#wkfkbp#pjm`f#affmFvqlsfbm#Vmjlmqfnjmjp`fmw#lenlqf#gjeej`vowUj`f#Sqfpjgfmw`lnslpjwjlm#lesbppfg#wkqlvdknlqf#jnslqwbmwelmw.pjyf922s{f{sobmbwjlm#lewkf#`lm`fsw#letqjwwfm#jm#wkf\n?psbm#`obpp>!jp#lmf#le#wkf#qfpfnaobm`f#wllm#wkf#dqlvmgptkj`k#`lmwbjmpjm`ovgjmd#wkf#gfejmfg#az#wkfsvaoj`bwjlm#lenfbmp#wkbw#wkflvwpjgf#le#wkfpvsslqw#le#wkf?jmsvw#`obpp>!?psbm#`obpp>!w+Nbwk-qbmgln+*nlpw#sqlnjmfmwgfp`qjswjlm#le@lmpwbmwjmlsoftfqf#svaojpkfg?gju#`obpp>!pfbssfbqp#jm#wkf2!#kfjdkw>!2!#nlpw#jnslqwbmwtkj`k#jm`ovgfptkj`k#kbg#affmgfpwqv`wjlm#lewkf#slsvobwjlm \n?gju#`obpp>!slppjajojwz#leplnfwjnfp#vpfgbssfbq#wl#kbufpv``fpp#le#wkfjmwfmgfg#wl#afsqfpfmw#jm#wkfpwzof>!`ofbq9a ?,p`qjsw= ?tbp#elvmgfg#jmjmwfqujft#tjwk\\jg!#`lmwfmw>!`bsjwbo#le#wkf ?ojmh#qfo>!pqfofbpf#le#wkfsljmw#lvw#wkbw{NOKwwsQfrvfpwbmg#pvapfrvfmwpf`lmg#obqdfpwufqz#jnslqwbmwpsf`jej`bwjlmppvqeb`f#le#wkfbssojfg#wl#wkfelqfjdm#sloj`z\\pfwGlnbjmMbnffpwbaojpkfg#jmjp#afojfufg#wlJm#bggjwjlm#wlnfbmjmd#le#wkfjp#mbnfg#bewfqwl#sqlwf`w#wkfjp#qfsqfpfmwfgGf`obqbwjlm#lenlqf#feej`jfmw@obppjej`bwjlmlwkfq#elqnp#lekf#qfwvqmfg#wl?psbm#`obpp>!`sfqelqnbm`f#le+evm`wjlm+*#xje#bmg#lmoz#jeqfdjlmp#le#wkfofbgjmd#wl#wkfqfobwjlmp#tjwkVmjwfg#Mbwjlmppwzof>!kfjdkw9lwkfq#wkbm#wkfzsf!#`lmwfmw>!Bppl`jbwjlm#le ?,kfbg= ?algzol`bwfg#lm#wkfjp#qfefqqfg#wl+jm`ovgjmd#wkf`lm`fmwqbwjlmpwkf#jmgjujgvbobnlmd#wkf#nlpwwkbm#bmz#lwkfq,= ?ojmh#qfo>!#qfwvqm#ebopf8wkf#svqslpf#lewkf#bajojwz#wl8`lolq9 eee~ - ?psbm#`obpp>!wkf#pvaif`w#legfejmjwjlmp#le= ?ojmh#qfo>!`objn#wkbw#wkfkbuf#gfufolsfg?wbaof#tjgwk>!`fofaqbwjlm#leElooltjmd#wkf#wl#gjpwjmdvjpk?psbm#`obpp>!awbhfp#sob`f#jmvmgfq#wkf#mbnfmlwfg#wkbw#wkf=?"Xfmgje^..= pwzof>!nbqdjm.jmpwfbg#le#wkfjmwqlgv`fg#wkfwkf#sql`fpp#lejm`qfbpjmd#wkfgjeefqfm`fp#jmfpwjnbwfg#wkbwfpsf`jbooz#wkf,gju=?gju#jg>!tbp#fufmwvboozwkqlvdklvw#kjpwkf#gjeefqfm`fplnfwkjmd#wkbwpsbm=?,psbm=?,pjdmjej`bmwoz#=?,p`qjsw=  fmujqlmnfmwbo#wl#sqfufmw#wkfkbuf#affm#vpfgfpsf`jbooz#elqvmgfqpwbmg#wkfjp#fppfmwjbooztfqf#wkf#ejqpwjp#wkf#obqdfpwkbuf#affm#nbgf!#pq`>!kwws9,,jmwfqsqfwfg#bppf`lmg#kboe#le`qloojmd>!ml!#jp#`lnslpfg#leJJ/#Kloz#Qlnbmjp#f{sf`wfg#wlkbuf#wkfjq#ltmgfejmfg#bp#wkfwqbgjwjlmbooz#kbuf#gjeefqfmwbqf#lewfm#vpfgwl#fmpvqf#wkbwbdqffnfmw#tjwk`lmwbjmjmd#wkfbqf#eqfrvfmwozjmelqnbwjlm#lmf{bnsof#jp#wkfqfpvowjmd#jm#b?,b=?,oj=?,vo=#`obpp>!ellwfqbmg#fpsf`jboozwzsf>!avwwlm!#?,psbm=?,psbm=tkj`k#jm`ovgfg= ?nfwb#mbnf>!`lmpjgfqfg#wkf`bqqjfg#lvw#azKltfufq/#jw#jpaf`bnf#sbqw#lejm#qfobwjlm#wlslsvobq#jm#wkfwkf#`bsjwbo#letbp#leej`jbooztkj`k#kbp#affmwkf#Kjpwlqz#lebowfqmbwjuf#wlgjeefqfmw#eqlnwl#pvsslqw#wkfpvddfpwfg#wkbwjm#wkf#sql`fpp##?gju#`obpp>!wkf#elvmgbwjlmaf`bvpf#le#kjp`lm`fqmfg#tjwkwkf#vmjufqpjwzlsslpfg#wl#wkfwkf#`lmwf{w#le?psbm#`obpp>!swf{w!#mbnf>!r!\n\n?gju#`obpp>!wkf#p`jfmwjej`qfsqfpfmwfg#aznbwkfnbwj`jbmpfof`wfg#az#wkfwkbw#kbuf#affm=?gju#`obpp>!`gju#jg>!kfbgfqjm#sbqwj`vobq/`lmufqwfg#jmwl*8 ?,p`qjsw= ?skjolplskj`bo#pqsphlkqubwphjwj\rVSmd#Uj\rWkw<L=o=m=m<V<T<U=l=o=m=m<V<T<Ujmufpwjdb`j/_msbqwj`jsb`j/_m<V<R=n<R=l=g<Y<R<]<W<\\=m=n<T<V<R=n<R=l=g<U=k<Y<W<R<^<Y<V=m<T=m=n<Y<P=g<q<R<^<R=m=n<T<V<R=n<R=l=g=i<R<]<W<\\=m=n=`<^=l<Y<P<Y<Q<T<V<R=n<R=l<\\=c=m<Y<_<R<X<Q=c=m<V<\\=k<\\=n=`<Q<R<^<R=m=n<T<O<V=l<\\<T<Q=g<^<R<S=l<R=m=g<V<R=n<R=l<R<U=m<X<Y<W<\\=n=`<S<R<P<R=e=`=b=m=l<Y<X=m=n<^<R<]=l<\\<[<R<P=m=n<R=l<R<Q=g=o=k<\\=m=n<T<Y=n<Y=k<Y<Q<T<Y<\x7F<W<\\<^<Q<\\=c<T=m=n<R=l<T<T=m<T=m=n<Y<P<\\=l<Y=d<Y<Q<T=c<M<V<\\=k<\\=n=`<S<R=a=n<R<P=o=m<W<Y<X=o<Y=n=m<V<\\<[<\\=n=`=n<R<^<\\=l<R<^<V<R<Q<Y=k<Q<R=l<Y=d<Y<Q<T<Y<V<R=n<R=l<R<Y<R=l<_<\\<Q<R<^<V<R=n<R=l<R<P<L<Y<V<W<\\<P<\\4K5h5i5j4F4C5e5i5j4F4C5f4K4F4K5h5i5d4Z5d4U4K5h4D4]4K5i4@4K5h5i5d4K5n4U4K5h4]4_4K4J5h5i4X4K4]5o4K4F4K5h4O4U4Z4K4M4K5h4]5f4K4Z4E4K5h4F4Y5i5f5i4K5h4K4U4Z4K4M4K5h5j4F4K4J4@4K5h4O5h4U4K4D4K5h4F4_4@5f5h4K5h4O5n4_4K5i4K5h4Z4V4[4K4F4K5h5m5f4C5f5d4K5h4F4]4A5f4D4K5h4@4C5f4C4E4K5h4F4U5h5f5i4K5h4O4B4D4K4]4K5h4K5m5h4K5i4K5h4O5m5h4K5i4K5h4F4K4]5f4B4K5h4F5n5j5f4E4K5h4K5h4U4K4D4K5h4B5d4K4[4]4K5h5i4@4F5i4U4K5h4C5f5o5d4]4K5h4_5f4K4A4E4U4D4C4K5h5h5k4K5h4F4]4D5f4E4K5h4]5d4K4D4[4K5h4O4C4D5f4E4K5h4K4B4D4K4]4K5h5i4F4A4C4E4K5h4K4V4K5j5f`vqplq9sljmwfq8?,wjwof= ?nfwb#!#kqfe>!kwws9,,!=?psbm#`obpp>!nfnafqp#le#wkf#tjmglt-ol`bwjlmufqwj`bo.bojdm9,b=#\x7F#?b#kqfe>!?"gl`wzsf#kwno=nfgjb>!p`qffm!#?lswjlm#ubovf>!ebuj`lm-j`l!#,= \n\n?gju#`obpp>!`kbqb`wfqjpwj`p!#nfwklg>!dfw!#,algz= ?,kwno= pklqw`vw#j`lm!#gl`vnfmw-tqjwf+sbggjmd.alwwln9qfsqfpfmwbwjufppvanjw!#ubovf>!bojdm>!`fmwfq!#wkqlvdklvw#wkf#p`jfm`f#ej`wjlm ##?gju#`obpp>!pvanjw!#`obpp>!lmf#le#wkf#nlpw#ubojdm>!wls!=?tbp#fpwbaojpkfg*8 ?,p`qjsw= qfwvqm#ebopf8!=*-pwzof-gjpsobzaf`bvpf#le#wkf#gl`vnfmw-`llhjf?elqn#b`wjlm>!,~algzxnbqdjm938Fm`z`olsfgjb#leufqpjlm#le#wkf#-`qfbwfFofnfmw+mbnf!#`lmwfmw>!?,gju= ?,gju= bgnjmjpwqbwjuf#?,algz= ?,kwno=kjpwlqz#le#wkf#!=?jmsvw#wzsf>!slqwjlm#le#wkf#bp#sbqw#le#wkf#%maps8?b#kqfe>!lwkfq#`lvmwqjfp!= ?gju#`obpp>!?,psbm=?,psbm=?Jm#lwkfq#tlqgp/gjpsobz9#aol`h8`lmwqlo#le#wkf#jmwqlgv`wjlm#le,= ?nfwb#mbnf>!bp#tfoo#bp#wkf#jm#qf`fmw#zfbqp \n?gju#`obpp>!?,gju= \n?,gju= jmpsjqfg#az#wkfwkf#fmg#le#wkf#`lnsbwjaof#tjwkaf`bnf#hmltm#bp#pwzof>!nbqdjm9-ip!=?,p`qjsw=?#Jmwfqmbwjlmbo#wkfqf#kbuf#affmDfqnbm#obmdvbdf#pwzof>!`lolq9 @lnnvmjpw#Sbqwz`lmpjpwfmw#tjwkalqgfq>!3!#`foo#nbqdjmkfjdkw>!wkf#nbilqjwz#le!#bojdm>!`fmwfqqfobwfg#wl#wkf#nbmz#gjeefqfmw#Lqwklgl{#@kvq`kpjnjobq#wl#wkf#,= ?ojmh#qfo>!ptbp#lmf#le#wkf#vmwjo#kjp#gfbwk~*+*8 ?,p`qjsw=lwkfq#obmdvbdfp`lnsbqfg#wl#wkfslqwjlmp#le#wkfwkf#Mfwkfqobmgpwkf#nlpw#`lnnlmab`hdqlvmg9vqo+bqdvfg#wkbw#wkfp`qloojmd>!ml!#jm`ovgfg#jm#wkfMlqwk#Bnfqj`bm#wkf#mbnf#le#wkfjmwfqsqfwbwjlmpwkf#wqbgjwjlmbogfufolsnfmw#le#eqfrvfmwoz#vpfgb#`loof`wjlm#leufqz#pjnjobq#wlpvqqlvmgjmd#wkff{bnsof#le#wkjpbojdm>!`fmwfq!=tlvog#kbuf#affmjnbdf\\`bswjlm#>bwwb`kfg#wl#wkfpvddfpwjmd#wkbwjm#wkf#elqn#le#jmuloufg#jm#wkfjp#gfqjufg#eqlnmbnfg#bewfq#wkfJmwqlgv`wjlm#wlqfpwqj`wjlmp#lm#pwzof>!tjgwk9#`bm#af#vpfg#wl#wkf#`qfbwjlm#lenlpw#jnslqwbmw#jmelqnbwjlm#bmgqfpvowfg#jm#wkf`loobspf#le#wkfWkjp#nfbmp#wkbwfofnfmwp#le#wkftbp#qfsob`fg#azbmbozpjp#le#wkfjmpsjqbwjlm#elqqfdbqgfg#bp#wkfnlpw#pv``fppevohmltm#bp#%rvlw8b#`lnsqfkfmpjufKjpwlqz#le#wkf#tfqf#`lmpjgfqfgqfwvqmfg#wl#wkfbqf#qfefqqfg#wlVmplvq`fg#jnbdf= \n?gju#`obpp>!`lmpjpwp#le#wkfpwlsSqlsbdbwjlmjmwfqfpw#jm#wkfbubjobajojwz#lebssfbqp#wl#kbuffof`wqlnbdmfwj`fmbaofPfquj`fp+evm`wjlm#le#wkfJw#jp#jnslqwbmw?,p`qjsw=?,gju=evm`wjlm+*xubq#qfobwjuf#wl#wkfbp#b#qfpvow#le#wkf#slpjwjlm#leElq#f{bnsof/#jm#nfwklg>!slpw!#tbp#elooltfg#az%bns8ngbpk8#wkfwkf#bssoj`bwjlmip!=?,p`qjsw= vo=?,gju=?,gju=bewfq#wkf#gfbwktjwk#qfpsf`w#wlpwzof>!sbggjmd9jp#sbqwj`vobqozgjpsobz9jmojmf8#wzsf>!pvanjw!#jp#gjujgfg#jmwl\bTA\nzk#+\vBl\bQ\x7F*qfpslmpbajojgbgbgnjmjpwqb`j/_mjmwfqmb`jlmbofp`lqqfpslmgjfmwf\fHe\fHF\fHC\fIg\fH{\fHF\fIn\fH\\\fIa\fHY\fHU\fHB\fHR\fH\\\fIk\fH^\fIg\fH{\fIg\fHn\fHv\fIm\fHD\fHR\fHY\fH^\fIk\fHy\fHS\fHD\fHT\fH\\\fHy\fHR\fH\\\fHF\fIm\fH^\fHS\fHT\fHz\fIg\fHp\fIk\fHn\fHv\fHR\fHU\fHS\fHc\fHA\fIk\fHp\fIk\fHn\fHZ\fHR\fHB\fHS\fH^\fHU\fHB\fHR\fH\\\fIl\fHp\fHR\fH{\fH\\\fHO\fH@\fHD\fHR\fHD\fIk\fHy\fIm\fHB\fHR\fH\\\fH@\fIa\fH^\fIe\fH{\fHB\fHR\fH^\fHS\fHy\fHB\fHU\fHS\fH^\fHR\fHF\fIo\fH[\fIa\fHL\fH@\fHN\fHP\fHH\fIk\fHA\fHR\fHp\fHF\fHR\fHy\fIa\fH^\fHS\fHy\fHs\fIa\fH\\\fIk\fHD\fHz\fHS\fH^\fHR\fHG\fHJ\fI`\fH\\\fHR\fHD\fHB\fHR\fHB\fH^\fIk\fHB\fHH\fHJ\fHR\fHD\fH@\fHR\fHp\fHR\fH\\\fHY\fHS\fHy\fHR\fHT\fHy\fIa\fHC\fIg\fHn\fHv\fHR\fHU\fHH\fIk\fHF\fHU\fIm\fHm\fHv\fH@\fHH\fHR\fHC\fHR\fHT\fHn\fHY\fHR\fHJ\fHJ\fIk\fHz\fHD\fIk\fHF\fHS\fHw\fH^\fIk\fHY\fHS\fHZ\fIk\fH[\fH\\\fHR\fHp\fIa\fHC\fHe\fHH\fIa\fHH\fH\\\fHB\fIm\fHn\fH@\fHd\fHJ\fIg\fHD\fIg\fHn\fHe\fHF\fHy\fH\\\fHO\fHF\fHN\fHP\fIk\fHn\fHT\fIa\fHI\fHS\fHH\fHG\fHS\fH^\fIa\fHB\fHB\fIm\fHz\fIa\fHC\fHi\fHv\fIa\fHw\fHR\fHw\fIn\fHs\fHH\fIl\fHT\fHn\fH{\fIl\fHH\fHp\fHR\fHc\fH{\fHR\fHY\fHS\fHA\fHR\fH{\fHt\fHO\fIa\fHs\fIk\fHJ\fIn\fHT\fH\\\fIk\fHJ\fHS\fHD\fIg\fHn\fHU\fHH\fIa\fHC\fHR\fHT\fIk\fHy\fIa\fHT\fH{\fHR\fHn\fHK\fIl\fHY\fHS\fHZ\fIa\fHY\fH\\\fHR\fHH\fIk\fHn\fHJ\fId\fHs\fIa\fHT\fHD\fHy\fIa\fHZ\fHR\fHT\fHR\fHB\fHD\fIk\fHi\fHJ\fHR\fH^\fHH\fH@\fHS\fHp\fH^\fIl\fHF\fIm\fH\\\fIn\fH[\fHU\fHS\fHn\fHJ\fIl\fHB\fHS\fHH\fIa\fH\\\fHy\fHY\fHS\fHH\fHR\fH\\\fIm\fHF\fHC\fIk\fHT\fIa\fHI\fHR\fHD\fHy\fH\\\fIg\fHM\fHP\fHB\fIm\fHy\fIa\fHH\fHC\fIg\fHp\fHD\fHR\fHy\fIo\fHF\fHC\fHR\fHF\fIg\fHT\fIa\fHs\fHt\fH\\\fIk\fH^\fIn\fHy\fHR\fH\\\fIa\fHC\fHY\fHS\fHv\fHR\fH\\\fHT\fIn\fHv\fHD\fHR\fHB\fIn\fH^\fIa\fHC\fHJ\fIk\fHz\fIk\fHn\fHU\fHB\fIk\fHZ\fHR\fHT\fIa\fHy\fIn\fH^\fHB\fId\fHn\fHD\fIk\fHH\fId\fHC\fHR\fH\\\fHp\fHS\fHT\fHy\fIkqpp({no!#wjwof>!.wzsf!#`lmwfmw>!wjwof!#`lmwfmw>!bw#wkf#pbnf#wjnf-ip!=?,p`qjsw= ?!#nfwklg>!slpw!#?,psbm=?,b=?,oj=ufqwj`bo.bojdm9w,irvfqz-njm-ip!=-`oj`h+evm`wjlm+#pwzof>!sbggjmd.~*+*8 ?,p`qjsw= ?,psbm=?b#kqfe>!?b#kqfe>!kwws9,,*8#qfwvqm#ebopf8wf{w.gf`lqbwjlm9#p`qloojmd>!ml!#alqgfq.`loobspf9bppl`jbwfg#tjwk#Abkbpb#JmglmfpjbFmdojpk#obmdvbdf?wf{w#{no9psb`f>-dje!#alqgfq>!3!?,algz= ?,kwno= lufqeolt9kjggfm8jnd#pq`>!kwws9,,bggFufmwOjpwfmfqqfpslmpjaof#elq#p-ip!=?,p`qjsw= ,ebuj`lm-j`l!#,=lsfqbwjmd#pzpwfn!#pwzof>!tjgwk92wbqdfw>!\\aobmh!=Pwbwf#Vmjufqpjwzwf{w.bojdm9ofew8 gl`vnfmw-tqjwf+/#jm`ovgjmd#wkf#bqlvmg#wkf#tlqog*8 ?,p`qjsw= ?!#pwzof>!kfjdkw98lufqeolt9kjggfmnlqf#jmelqnbwjlmbm#jmwfqmbwjlmbob#nfnafq#le#wkf#lmf#le#wkf#ejqpw`bm#af#elvmg#jm#?,gju= \n\n?,gju= gjpsobz9#mlmf8!=!#,= ?ojmh#qfo>! ##+evm`wjlm+*#xwkf#26wk#`fmwvqz-sqfufmwGfebvow+obqdf#mvnafq#le#Azybmwjmf#Fnsjqf-isd\x7Fwkvna\x7Fofew\x7Fubpw#nbilqjwz#lenbilqjwz#le#wkf##bojdm>!`fmwfq!=Vmjufqpjwz#Sqfppglnjmbwfg#az#wkfPf`lmg#Tlqog#Tbqgjpwqjavwjlm#le#pwzof>!slpjwjlm9wkf#qfpw#le#wkf#`kbqb`wfqjyfg#az#qfo>!mleloolt!=gfqjufp#eqln#wkfqbwkfq#wkbm#wkf#b#`lnajmbwjlm#lepwzof>!tjgwk9233Fmdojpk.psfbhjmd`lnsvwfq#p`jfm`falqgfq>!3!#bow>!wkf#f{jpwfm`f#leGfnl`qbwj`#Sbqwz!#pwzof>!nbqdjm.Elq#wkjp#qfbplm/-ip!=?,p`qjsw= \npAzWbdMbnf+p*X3^ip!=?,p`qjsw= ?-ip!=?,p`qjsw= ojmh#qfo>!j`lm!#$#bow>$$#`obpp>$elqnbwjlm#le#wkfufqpjlmp#le#wkf#?,b=?,gju=?,gju=,sbdf= ##?sbdf= ?gju#`obpp>!`lmwaf`bnf#wkf#ejqpwabkbpb#Jmglmfpjbfmdojpk#+pjnsof*"y"W"W"["Q"U"V"@=i=l<^<\\=n=m<V<T<V<R<P<S<\\<Q<T<T=c<^<W=c<Y=n=m=c<x<R<]<\\<^<T=n=`=k<Y<W<R<^<Y<V<\\=l<\\<[<^<T=n<T=c<t<Q=n<Y=l<Q<Y=n<r=n<^<Y=n<T=n=`<Q<\\<S=l<T<P<Y=l<T<Q=n<Y=l<Q<Y=n<V<R=n<R=l<R<_<R=m=n=l<\\<Q<T=j=g<V<\\=k<Y=m=n<^<Y=o=m<W<R<^<T=c=i<S=l<R<]<W<Y<P=g<S<R<W=o=k<T=n=`=c<^<W=c=b=n=m=c<Q<\\<T<]<R<W<Y<Y<V<R<P<S<\\<Q<T=c<^<Q<T<P<\\<Q<T<Y=m=l<Y<X=m=n<^<\\4K5h5i5d4K4Z5f4U4K5h4]4J5f4_5f4E4K5h4K5j4F5n4K5h5i4X4K4]5o4K4F5o4K5h4_5f4K4]4K4F4K5h5i5o4F5d4D4E4K5h4_4U5d4C5f4E4K4A4Y4K4J5f4K4F4K5h4U4K5h5i5f4E4K5h4Y5d4F5f4K4F4K5h4K5j4F4]5j4F4K5h4F4Y4K5i5f5i4K5h4I4_5h4K5i5f4K5h5i4X4K4]5o4E4K5h5i4]4J5f4K4Fqlalwp!#`lmwfmw>!?gju#jg>!ellwfq!=wkf#Vmjwfg#Pwbwfp?jnd#pq`>!kwws9,,-isd\x7Fqjdkw\x7Fwkvna\x7F-ip!=?,p`qjsw= ?ol`bwjlm-sqlwl`loeqbnfalqgfq>!3!#p!#,= ?nfwb#mbnf>!?,b=?,gju=?,gju=?elmw.tfjdkw9alog8%rvlw8#bmg#%rvlw8gfsfmgjmd#lm#wkf#nbqdjm938sbggjmd9!#qfo>!mleloolt!#Sqfpjgfmw#le#wkf#wtfmwjfwk#`fmwvqzfujpjlm= ##?,sbdfJmwfqmfw#F{solqfqb-bpzm`#>#wqvf8 jmelqnbwjlm#balvw?gju#jg>!kfbgfq!=!#b`wjlm>!kwws9,,?b#kqfe>!kwwsp9,,?gju#jg>!`lmwfmw!?,gju= ?,gju= ?gfqjufg#eqln#wkf#?jnd#pq`>$kwws9,,b``lqgjmd#wl#wkf# ?,algz= ?,kwno= pwzof>!elmw.pjyf9p`qjsw#obmdvbdf>!Bqjbo/#Kfoufwj`b/?,b=?psbm#`obpp>!?,p`qjsw=?p`qjsw#slojwj`bo#sbqwjfpwg=?,wq=?,wbaof=?kqfe>!kwws9,,ttt-jmwfqsqfwbwjlm#leqfo>!pwzofpkffw!#gl`vnfmw-tqjwf+$?`kbqpfw>!vwe.;!= afdjmmjmd#le#wkf#qfufbofg#wkbw#wkfwfofujpjlm#pfqjfp!#qfo>!mleloolt!=#wbqdfw>!\\aobmh!=`objnjmd#wkbw#wkfkwws&0B&1E&1Ettt-nbmjefpwbwjlmp#leSqjnf#Njmjpwfq#lejmeovfm`fg#az#wkf`obpp>!`ofbqej{!=,gju= ?,gju=  wkqff.gjnfmpjlmbo@kvq`k#le#Fmdobmgle#Mlqwk#@bqlojmbprvbqf#hjolnfwqfp-bggFufmwOjpwfmfqgjpwjm`w#eqln#wkf`lnnlmoz#hmltm#bpSklmfwj`#Boskbafwgf`obqfg#wkbw#wkf`lmwqloofg#az#wkfAfmibnjm#Eqbmhojmqlof.sobzjmd#dbnfwkf#Vmjufqpjwz#lejm#Tfpwfqm#Fvqlsfsfqplmbo#`lnsvwfqSqlif`w#Dvwfmafqdqfdbqgofpp#le#wkfkbp#affm#sqlslpfgwldfwkfq#tjwk#wkf=?,oj=?oj#`obpp>!jm#plnf#`lvmwqjfpnjm-ip!=?,p`qjsw=le#wkf#slsvobwjlmleej`jbo#obmdvbdf?jnd#pq`>!jnbdfp,jgfmwjejfg#az#wkfmbwvqbo#qfplvq`fp`obppjej`bwjlm#le`bm#af#`lmpjgfqfgrvbmwvn#nf`kbmj`pMfufqwkfofpp/#wkfnjoojlm#zfbqp#bdl?,algz= ?,kwno="y"W"W"["Q"U"V"@ wbhf#bgubmwbdf#lebmg/#b``lqgjmd#wlbwwqjavwfg#wl#wkfNj`qlplew#Tjmgltpwkf#ejqpw#`fmwvqzvmgfq#wkf#`lmwqlogju#`obpp>!kfbgfqpklqwoz#bewfq#wkfmlwbaof#f{`fswjlmwfmp#le#wklvpbmgppfufqbo#gjeefqfmwbqlvmg#wkf#tlqog-qfb`kjmd#njojwbqzjplobwfg#eqln#wkflsslpjwjlm#wl#wkfwkf#Log#WfpwbnfmwBeqj`bm#Bnfqj`bmpjmpfqwfg#jmwl#wkfpfsbqbwf#eqln#wkfnfwqlslojwbm#bqfbnbhfp#jw#slppjaofb`hmltofgdfg#wkbwbqdvbaoz#wkf#nlpwwzsf>!wf{w,`pp!= wkf#JmwfqmbwjlmboB``lqgjmd#wl#wkf#sf>!wf{w,`pp!#,= `ljm`jgf#tjwk#wkfwtl.wkjqgp#le#wkfGvqjmd#wkjp#wjnf/gvqjmd#wkf#sfqjlgbmmlvm`fg#wkbw#kfwkf#jmwfqmbwjlmbobmg#nlqf#qf`fmwozafojfufg#wkbw#wkf`lmp`jlvpmfpp#bmgelqnfqoz#hmltm#bppvqqlvmgfg#az#wkfejqpw#bssfbqfg#jml``bpjlmbooz#vpfgslpjwjlm9baplovwf8!#wbqdfw>!\\aobmh!#slpjwjlm9qfobwjuf8wf{w.bojdm9`fmwfq8ib{,ojap,irvfqz,2-ab`hdqlvmg.`lolq9 wzsf>!bssoj`bwjlm,bmdvbdf!#`lmwfmw>!?nfwb#kwws.frvju>!Sqjub`z#Sloj`z?,b=f+!&0@p`qjsw#pq`>$!#wbqdfw>!\\aobmh!=Lm#wkf#lwkfq#kbmg/-isd\x7Fwkvna\x7Fqjdkw\x7F1?,gju=?gju#`obpp>!?gju#pwzof>!eolbw9mjmfwffmwk#`fmwvqz?,algz= ?,kwno= ?jnd#pq`>!kwws9,,p8wf{w.bojdm9`fmwfqelmw.tfjdkw9#alog8#B``lqgjmd#wl#wkf#gjeefqfm`f#afwtffm!#eqbnfalqgfq>!3!#!#pwzof>!slpjwjlm9ojmh#kqfe>!kwws9,,kwno7,ollpf-gwg!= gvqjmd#wkjp#sfqjlg?,wg=?,wq=?,wbaof=`olpfoz#qfobwfg#wlelq#wkf#ejqpw#wjnf8elmw.tfjdkw9alog8jmsvw#wzsf>!wf{w!#?psbm#pwzof>!elmw.lmqfbgzpwbwf`kbmdf\n?gju#`obpp>!`ofbqgl`vnfmw-ol`bwjlm-#Elq#f{bnsof/#wkf#b#tjgf#ubqjfwz#le#?"GL@WZSF#kwno= ?%maps8%maps8%maps8!=?b#kqfe>!kwws9,,pwzof>!eolbw9ofew8`lm`fqmfg#tjwk#wkf>kwws&0B&1E&1Ettt-jm#slsvobq#`vowvqfwzsf>!wf{w,`pp!#,=jw#jp#slppjaof#wl#Kbqubqg#Vmjufqpjwzwzofpkffw!#kqfe>!,wkf#nbjm#`kbqb`wfqL{elqg#Vmjufqpjwz##mbnf>!hfztlqgp!#`pwzof>!wf{w.bojdm9wkf#Vmjwfg#Hjmdglnefgfqbo#dlufqmnfmw?gju#pwzof>!nbqdjm#gfsfmgjmd#lm#wkf#gfp`qjswjlm#le#wkf?gju#`obpp>!kfbgfq-njm-ip!=?,p`qjsw=gfpwqv`wjlm#le#wkfpojdkwoz#gjeefqfmwjm#b``lqgbm`f#tjwkwfof`lnnvmj`bwjlmpjmgj`bwfp#wkbw#wkfpklqwoz#wkfqfbewfqfpsf`jbooz#jm#wkf#Fvqlsfbm#`lvmwqjfpKltfufq/#wkfqf#bqfpq`>!kwws9,,pwbwj`pvddfpwfg#wkbw#wkf!#pq`>!kwws9,,ttt-b#obqdf#mvnafq#le#Wfof`lnnvmj`bwjlmp!#qfo>!mleloolt!#wKloz#Qlnbm#Fnsfqlqbonlpw#f{`ovpjufoz!#alqgfq>!3!#bow>!Pf`qfwbqz#le#Pwbwf`vonjmbwjmd#jm#wkf@JB#Tlqog#Eb`wallhwkf#nlpw#jnslqwbmwbmmjufqpbqz#le#wkfpwzof>!ab`hdqlvmg.?oj=?fn=?b#kqfe>!,wkf#Bwobmwj`#L`fbmpwqj`woz#psfbhjmd/pklqwoz#afelqf#wkfgjeefqfmw#wzsfp#lewkf#Lwwlnbm#Fnsjqf=?jnd#pq`>!kwws9,,Bm#Jmwqlgv`wjlm#wl`lmpfrvfm`f#le#wkfgfsbqwvqf#eqln#wkf@lmefgfqbwf#Pwbwfpjmgjdfmlvp#sflsofpSql`ffgjmdp#le#wkfjmelqnbwjlm#lm#wkfwkflqjfp#kbuf#affmjmuloufnfmw#jm#wkfgjujgfg#jmwl#wkqffbgib`fmw#`lvmwqjfpjp#qfpslmpjaof#elqgjpplovwjlm#le#wkf`loobalqbwjlm#tjwktjgfoz#qfdbqgfg#bpkjp#`lmwfnslqbqjfpelvmgjmd#nfnafq#leGlnjmj`bm#Qfsvaoj`dfmfqbooz#b``fswfgwkf#slppjajojwz#lebqf#bopl#bubjobaofvmgfq#`lmpwqv`wjlmqfpwlqbwjlm#le#wkfwkf#dfmfqbo#svaoj`jp#bonlpw#fmwjqfozsbppfp#wkqlvdk#wkfkbp#affm#pvddfpwfg`lnsvwfq#bmg#ujgflDfqnbmj`#obmdvbdfp#b``lqgjmd#wl#wkf#gjeefqfmw#eqln#wkfpklqwoz#bewfqtbqgpkqfe>!kwwsp9,,ttt-qf`fmw#gfufolsnfmwAlbqg#le#Gjqf`wlqp?gju#`obpp>!pfbq`k\x7F#?b#kqfe>!kwws9,,Jm#sbqwj`vobq/#wkfNvowjsof#ellwmlwfplq#lwkfq#pvapwbm`fwklvpbmgp#le#zfbqpwqbmpobwjlm#le#wkf?,gju= ?,gju=  ?b#kqfe>!jmgf{-skstbp#fpwbaojpkfg#jmnjm-ip!=?,p`qjsw= sbqwj`jsbwf#jm#wkfb#pwqlmd#jmeovfm`fpwzof>!nbqdjm.wls9qfsqfpfmwfg#az#wkfdqbgvbwfg#eqln#wkfWqbgjwjlmbooz/#wkfFofnfmw+!p`qjsw!*8Kltfufq/#pjm`f#wkf,gju= ?,gju= ?gju#ofew8#nbqdjm.ofew9sqlwf`wjlm#bdbjmpw38#ufqwj`bo.bojdm9Vmelqwvmbwfoz/#wkfwzsf>!jnbdf,{.j`lm,gju= ?gju#`obpp>!#`obpp>!`ofbqej{!=?gju#`obpp>!ellwfq\n\n?,gju= \n\n?,gju= wkf#nlwjlm#sj`wvqf<}=f<W<_<\\=l=m<V<T<]=f<W<_<\\=l=m<V<T<H<Y<X<Y=l<\\=j<T<T<Q<Y=m<V<R<W=`<V<R=m<R<R<]=e<Y<Q<T<Y=m<R<R<]=e<Y<Q<T=c<S=l<R<_=l<\\<P<P=g<r=n<S=l<\\<^<T=n=`<]<Y=m<S<W<\\=n<Q<R<P<\\=n<Y=l<T<\\<W=g<S<R<[<^<R<W=c<Y=n<S<R=m<W<Y<X<Q<T<Y=l<\\<[<W<T=k<Q=g=i<S=l<R<X=o<V=j<T<T<S=l<R<_=l<\\<P<P<\\<S<R<W<Q<R=m=n=`=b<Q<\\=i<R<X<T=n=m=c<T<[<]=l<\\<Q<Q<R<Y<Q<\\=m<Y<W<Y<Q<T=c<T<[<P<Y<Q<Y<Q<T=c<V<\\=n<Y<_<R=l<T<T<|<W<Y<V=m<\\<Q<X=l\fHJ\fIa\fHY\fHR\fH\\\fHR\fHB\fId\fHD\fIm\fHi\fH^\fHF\fIa\fH\\\fHJ\fHR\fHD\fHA\fHR\fH\\\fHH\fIl\fHC\fHi\fHD\fIm\fHJ\fIk\fHZ\fHU\fHS\fHD\fIa\fHJ\fIl\fHk\fHn\fHM\fHS\fHC\fHR\fHJ\fHS\fH^\fIa\fH^\fIl\fHi\fHK\fHS\fHy\fHR\fH\\\fHY\fIl\fHM\fHS\fHC\fIg\fHv\fHS\fHs\fIa\fHL\fIk\fHT\fHB\fHR\fHv\fHR\fH\\\fHp\fHn\fHy\fIa\fHZ\fHD\fHJ\fIm\fHD\fHS\fHC\fHR\fHF\fIa\fH\\\fHC\fIg\fH{\fHi\fHD\fIm\fHT\fHR\fH\\\fH}\fHD\fH^\fHR\fHk\fHD\fHF\fHR\fH\\\fIa\fHs\fIl\fHZ\fH\\\fIa\fHH\fIg\fHn\fH^\fIg\fHy\fHT\fHA\fHR\fHG\fHP\fIa\fH^\fId\fHZ\fHZ\fH\\\fIa\fHH\fIk\fHn\fHF\fIa\fH\\\fHJ\fIk\fHZ\fHF\fIa\fH^\fIk\fHC\fH\\\fHy\fIk\fHn\fHJ\fIa\fH\\\fHT\fIa\fHI\fHS\fHH\fHS\fHe\fHH\fIa\fHF\fHR\fHJ\fHe\fHD\fIa\fHU\fIk\fHn\fHv\fHS\fHs\fIa\fHL\fHR\fHC\fHR\fHH\fIa\fH\\\fHR\fHp\fIa\fHC\fHR\fHJ\fHR\fHF\fIm\fH\\\fHR\fHD\fIk\fHp\fIg\fHM\fHP\fIk\fHn\fHi\fHD\fIm\fHY\fHR\fHJ\fHZ\fIa\fH\\\fIk\fHO\fIl\fHZ\fHS\fHy\fIa\fH[\fHR\fHT\fH\\\fHy\fHR\fH\\\fIl\fHT\fHn\fH{\fIa\fH\\\fHU\fHF\fH\\\fHS\fHO\fHR\fHB\fH@\fIa\fH\\\fHR\fHn\fHM\fH@\fHv\fIa\fHv\fIg\fHn\fHe\fHF\fH^\fH@\fIa\fHK\fHB\fHn\fHH\fIa\fH\\\fIl\fHT\fHn\fHF\fH\\\fIa\fHy\fHe\fHB\fIa\fHB\fIl\fHJ\fHB\fHR\fHK\fIa\fHC\fHB\fHT\fHU\fHR\fHC\fHH\fHR\fHZ\fH@\fIa\fHJ\fIg\fHn\fHB\fIl\fHM\fHS\fHC\fHR\fHj\fHd\fHF\fIl\fHc\fH^\fHB\fIg\fH@\fHR\fHk\fH^\fHT\fHn\fHz\fIa\fHC\fHR\fHj\fHF\fH\\\fIk\fHZ\fHD\fHi\fHD\fIm\fH@\fHn\fHK\fH@\fHR\fHp\fHP\fHR\fH\\\fHD\fHY\fIl\fHD\fHH\fHB\fHF\fIa\fH\\\fHB\fIm\fHz\fHF\fIa\fH\\\fHZ\fIa\fHD\fHF\fH\\\fHS\fHY\fHR\fH\\\fHD\fIm\fHy\fHT\fHR\fHD\fHT\fHB\fH\\\fIa\fHI\fHD\fHj\fHC\fIg\fHp\fHS\fHH\fHT\fIg\fHB\fHY\fHR\fH\\4K5h5i4X4K4]5o4K4F4K5h5i5j4F4C5f4K4F4K5h5o5i4D5f5d4F4]4K5h5i4X4K5k4C4K4F4U4C4C4K5h4^5d4K4]4U4C4C4K5h4]4C5d4C4K5h4I4_5h4K5i5f4E4K5h5m5d4F5d4X5d4D4K5h5i4_4K4D5n4K4F4K5h5i4U5h5d5i4K4F4K5h5i4_5h4_5h4K4F4K5h4@4]4K5m5f5o4_4K5h4K4_5h4K5i5f4E4K5h4K4F4Y4K5h4K4Fhfztlqgp!#`lmwfmw>!t0-lqd,2:::,{kwno!=?b#wbqdfw>!\\aobmh!#wf{w,kwno8#`kbqpfw>!#wbqdfw>!\\aobmh!=?wbaof#`foosbggjmd>!bvwl`lnsofwf>!lee!#wf{w.bojdm9#`fmwfq8wl#obpw#ufqpjlm#az#ab`hdqlvmg.`lolq9# !#kqfe>!kwws9,,ttt-,gju=?,gju=?gju#jg>?b#kqfe>! !#`obpp>!!=?jnd#pq`>!kwws9,,`qjsw!#pq`>!kwws9,, ?p`qjsw#obmdvbdf>!,,FM!#!kwws9,,ttt-tfm`lgfVQJ@lnslmfmw+!#kqfe>!ibubp`qjsw9?gju#`obpp>!`lmwfmwgl`vnfmw-tqjwf+$?p`slpjwjlm9#baplovwf8p`qjsw#pq`>!kwws9,,#pwzof>!nbqdjm.wls9-njm-ip!=?,p`qjsw= ?,gju= ?gju#`obpp>!t0-lqd,2:::,{kwno!#  ?,algz= ?,kwno=gjpwjm`wjlm#afwtffm,!#wbqdfw>!\\aobmh!=?ojmh#kqfe>!kwws9,,fm`lgjmd>!vwe.;!<= t-bggFufmwOjpwfmfq<b`wjlm>!kwws9,,ttt-j`lm!#kqfe>!kwws9,,#pwzof>!ab`hdqlvmg9wzsf>!wf{w,`pp!#,= nfwb#sqlsfqwz>!ld9w?jmsvw#wzsf>!wf{w!##pwzof>!wf{w.bojdm9wkf#gfufolsnfmw#le#wzofpkffw!#wzsf>!wfkwno8#`kbqpfw>vwe.;jp#`lmpjgfqfg#wl#afwbaof#tjgwk>!233&!#Jm#bggjwjlm#wl#wkf#`lmwqjavwfg#wl#wkf#gjeefqfm`fp#afwtffmgfufolsnfmw#le#wkf#Jw#jp#jnslqwbmw#wl#?,p`qjsw= ?p`qjsw##pwzof>!elmw.pjyf92=?,psbm=?psbm#jg>daOjaqbqz#le#@lmdqfpp?jnd#pq`>!kwws9,,jnFmdojpk#wqbmpobwjlmB`bgfnz#le#P`jfm`fpgju#pwzof>!gjpsobz9`lmpwqv`wjlm#le#wkf-dfwFofnfmwAzJg+jg*jm#`lmivm`wjlm#tjwkFofnfmw+$p`qjsw$*8#?nfwb#sqlsfqwz>!ld9<}=f<W<_<\\=l=m<V<T #wzsf>!wf{w!#mbnf>!=Sqjub`z#Sloj`z?,b=bgnjmjpwfqfg#az#wkffmbaofPjmdofQfrvfpwpwzof>%rvlw8nbqdjm9?,gju=?,gju=?,gju=?=?jnd#pq`>!kwws9,,j#pwzof>%rvlw8eolbw9qfefqqfg#wl#bp#wkf#wlwbo#slsvobwjlm#lejm#Tbpkjmdwlm/#G-@-#pwzof>!ab`hdqlvmg.bnlmd#lwkfq#wkjmdp/lqdbmjybwjlm#le#wkfsbqwj`jsbwfg#jm#wkfwkf#jmwqlgv`wjlm#lejgfmwjejfg#tjwk#wkfej`wjlmbo#`kbqb`wfq#L{elqg#Vmjufqpjwz#njpvmgfqpwbmgjmd#leWkfqf#bqf/#kltfufq/pwzofpkffw!#kqfe>!,@lovnajb#Vmjufqpjwzf{sbmgfg#wl#jm`ovgfvpvbooz#qfefqqfg#wljmgj`bwjmd#wkbw#wkfkbuf#pvddfpwfg#wkbwbeejojbwfg#tjwk#wkf`lqqfobwjlm#afwtffmmvnafq#le#gjeefqfmw=?,wg=?,wq=?,wbaof=Qfsvaoj`#le#Jqfobmg ?,p`qjsw= ?p`qjsw#vmgfq#wkf#jmeovfm`f`lmwqjavwjlm#wl#wkfLeej`jbo#tfapjwf#lekfbgrvbqwfqp#le#wkf`fmwfqfg#bqlvmg#wkfjnsoj`bwjlmp#le#wkfkbuf#affm#gfufolsfgEfgfqbo#Qfsvaoj`#leaf`bnf#jm`qfbpjmdoz`lmwjmvbwjlm#le#wkfMlwf/#kltfufq/#wkbwpjnjobq#wl#wkbw#le#`bsbajojwjfp#le#wkfb``lqgbm`f#tjwk#wkfsbqwj`jsbmwp#jm#wkfevqwkfq#gfufolsnfmwvmgfq#wkf#gjqf`wjlmjp#lewfm#`lmpjgfqfgkjp#zlvmdfq#aqlwkfq?,wg=?,wq=?,wbaof=?b#kwws.frvju>![.VB.skzpj`bo#sqlsfqwjfple#Aqjwjpk#@lovnajbkbp#affm#`qjwj`jyfg+tjwk#wkf#f{`fswjlmrvfpwjlmp#balvw#wkfsbppjmd#wkqlvdk#wkf3!#`foosbggjmd>!3!#wklvpbmgp#le#sflsofqfgjqf`wp#kfqf-#Elqkbuf#`kjogqfm#vmgfq&0F&0@,p`qjsw&0F!**8?b#kqfe>!kwws9,,ttt-?oj=?b#kqfe>!kwws9,,pjwf\\mbnf!#`lmwfmw>!wf{w.gf`lqbwjlm9mlmfpwzof>!gjpsobz9#mlmf?nfwb#kwws.frvju>![.mft#Gbwf+*-dfwWjnf+*#wzsf>!jnbdf,{.j`lm!?,psbm=?psbm#`obpp>!obmdvbdf>!ibubp`qjswtjmglt-ol`bwjlm-kqfe?b#kqfe>!ibubp`qjsw9..= ?p`qjsw#wzsf>!w?b#kqfe>$kwws9,,ttt-klqw`vw#j`lm!#kqfe>!?,gju= ?gju#`obpp>!?p`qjsw#pq`>!kwws9,,!#qfo>!pwzofpkffw!#w?,gju= ?p`qjsw#wzsf>,b=#?b#kqfe>!kwws9,,#booltWqbmpsbqfm`z>![.VB.@lnsbwjaof!#`lmqfobwjlmpkjs#afwtffm ?,p`qjsw= ?p`qjsw#?,b=?,oj=?,vo=?,gju=bppl`jbwfg#tjwk#wkf#sqldqbnnjmd#obmdvbdf?,b=?b#kqfe>!kwws9,,?,b=?,oj=?oj#`obpp>!elqn#b`wjlm>!kwws9,,?gju#pwzof>!gjpsobz9wzsf>!wf{w!#mbnf>!r!?wbaof#tjgwk>!233&!#ab`hdqlvmg.slpjwjlm9!#alqgfq>!3!#tjgwk>!qfo>!pklqw`vw#j`lm!#k5=?vo=?oj=?b#kqfe>!##?nfwb#kwws.frvju>!`pp!#nfgjb>!p`qffm!#qfpslmpjaof#elq#wkf#!#wzsf>!bssoj`bwjlm,!#pwzof>!ab`hdqlvmg.kwno8#`kbqpfw>vwe.;!#booltwqbmpsbqfm`z>!pwzofpkffw!#wzsf>!wf ?nfwb#kwws.frvju>!=?,psbm=?psbm#`obpp>!3!#`foopsb`jmd>!3!=8 ?,p`qjsw= ?p`qjsw#plnfwjnfp#`boofg#wkfglfp#mlw#mf`fppbqjozElq#nlqf#jmelqnbwjlmbw#wkf#afdjmmjmd#le#?"GL@WZSF#kwno=?kwnosbqwj`vobqoz#jm#wkf#wzsf>!kjggfm!#mbnf>!ibubp`qjsw9uljg+3*8!feef`wjufmfpp#le#wkf#bvwl`lnsofwf>!lee!#dfmfqbooz#`lmpjgfqfg=?jmsvw#wzsf>!wf{w!#!=?,p`qjsw= ?p`qjswwkqlvdklvw#wkf#tlqog`lnnlm#njp`lm`fswjlmbppl`jbwjlm#tjwk#wkf?,gju= ?,gju= ?gju#`gvqjmd#kjp#ojefwjnf/`lqqfpslmgjmd#wl#wkfwzsf>!jnbdf,{.j`lm!#bm#jm`qfbpjmd#mvnafqgjsolnbwj`#qfobwjlmpbqf#lewfm#`lmpjgfqfgnfwb#`kbqpfw>!vwe.;!#?jmsvw#wzsf>!wf{w!#f{bnsofp#jm`ovgf#wkf!=?jnd#pq`>!kwws9,,jsbqwj`jsbwjlm#jm#wkfwkf#fpwbaojpknfmw#le ?,gju= ?gju#`obpp>!%bns8maps8%bns8maps8wl#gfwfqnjmf#tkfwkfqrvjwf#gjeefqfmw#eqlnnbqhfg#wkf#afdjmmjmdgjpwbm`f#afwtffm#wkf`lmwqjavwjlmp#wl#wkf`lmeoj`w#afwtffm#wkftjgfoz#`lmpjgfqfg#wltbp#lmf#le#wkf#ejqpwtjwk#ubqzjmd#gfdqffpkbuf#psf`vobwfg#wkbw+gl`vnfmw-dfwFofnfmwsbqwj`jsbwjmd#jm#wkflqjdjmbooz#gfufolsfgfwb#`kbqpfw>!vwe.;!=#wzsf>!wf{w,`pp!#,= jmwfq`kbmdfbaoz#tjwknlqf#`olpfoz#qfobwfgpl`jbo#bmg#slojwj`bowkbw#tlvog#lwkfqtjpfsfqsfmgj`vobq#wl#wkfpwzof#wzsf>!wf{w,`ppwzsf>!pvanjw!#mbnf>!ebnjojfp#qfpjgjmd#jmgfufolsjmd#`lvmwqjfp`lnsvwfq#sqldqbnnjmdf`lmlnj`#gfufolsnfmwgfwfqnjmbwjlm#le#wkfelq#nlqf#jmelqnbwjlmlm#pfufqbo#l``bpjlmpslqwvdv/Fp#+Fvqlsfv*<O<V=l<\\={<Q=m=`<V<\\=o<V=l<\\={<Q=m=`<V<\\<L<R=m=m<T<U=m<V<R<U<P<\\=n<Y=l<T<\\<W<R<^<T<Q=h<R=l<P<\\=j<T<T=o<S=l<\\<^<W<Y<Q<T=c<Q<Y<R<]=i<R<X<T<P<R<T<Q=h<R=l<P<\\=j<T=c<t<Q=h<R=l<P<\\=j<T=c<L<Y=m<S=o<]<W<T<V<T<V<R<W<T=k<Y=m=n<^<R<T<Q=h<R=l<P<\\=j<T=b=n<Y=l=l<T=n<R=l<T<T<X<R=m=n<\\=n<R=k<Q<R4K5h5i4F5d4K4@4C5d5j4K5h4K4X4F4]4K5o4K4F4K5h4K5n4F4]4K4A4K4Fkwno8#`kbqpfw>VWE.;!#pfwWjnflvw+evm`wjlm+*gjpsobz9jmojmf.aol`h8?jmsvw#wzsf>!pvanjw!#wzsf#>#$wf{w,ibubp`qj?jnd#pq`>!kwws9,,ttt-!#!kwws9,,ttt-t0-lqd,pklqw`vw#j`lm!#kqfe>!!#bvwl`lnsofwf>!lee!#?,b=?,gju=?gju#`obpp>?,b=?,oj= ?oj#`obpp>!`pp!#wzsf>!wf{w,`pp!#?elqn#b`wjlm>!kwws9,,{w,`pp!#kqfe>!kwws9,,ojmh#qfo>!bowfqmbwf!# ?p`qjsw#wzsf>!wf{w,#lm`oj`h>!ibubp`qjsw9+mft#Gbwf*-dfwWjnf+*~kfjdkw>!2!#tjgwk>!2!#Sflsof$p#Qfsvaoj`#le##?b#kqfe>!kwws9,,ttt-wf{w.gf`lqbwjlm9vmgfqwkf#afdjmmjmd#le#wkf#?,gju= ?,gju= ?,gju= fpwbaojpknfmw#le#wkf#?,gju=?,gju=?,gju=?,g ujftslqwxnjm.kfjdkw9 ?p`qjsw#pq`>!kwws9,,lswjlm=?lswjlm#ubovf>lewfm#qfefqqfg#wl#bp#,lswjlm= ?lswjlm#ubov?"GL@WZSF#kwno= ?"..XJmwfqmbwjlmbo#Bjqslqw= ?b#kqfe>!kwws9,,ttt?,b=?b#kqfe>!kwws9,,t\fTL\fT^\fTE\fT^\fUh\fT{\fTN\roI\ro|\roL\ro{\roO\rov\rot\nAOGx\bTA\nzk#+\vUmGx*\fHD\fHS\fH\\\fIa\fHJ\fIk\fHZ\fHM\fHR\fHe\fHD\fH^\fIg\fHM\fHy\fIa\fH[\fIk\fHH\fIa\fH\\\fHp\fHR\fHD\fHy\fHR\fH\\\fIl\fHT\fHn\fH@\fHn\fHK\fHS\fHH\fHT\fIa\fHI\fHR\fHF\fHD\fHR\fHT\fIa\fHY\fIl\fHy\fHR\fH\\\fHT\fHn\fHT\fIa\fHy\fH\\\fHO\fHT\fHR\fHB\fH{\fIa\fH\\\fIl\fHv\fHS\fHs\fIa\fHL\fIg\fHn\fHY\fHS\fHp\fIa\fHr\fHR\fHD\fHi\fHB\fIk\fH\\\fHS\fHy\fHR\fHY\fHS\fHA\fHS\fHD\fIa\fHD\fH{\fHR\fHM\fHS\fHC\fHR\fHm\fHy\fIa\fHC\fIg\fHn\fHy\fHS\fHT\fIm\fH\\\fHy\fIa\fH[\fHR\fHF\fHU\fIm\fHm\fHv\fHH\fIl\fHF\fIa\fH\\\fH@\fHn\fHK\fHD\fHs\fHS\fHF\fIa\fHF\fHO\fIl\fHy\fIa\fH\\\fHS\fHy\fIk\fHs\fHF\fIa\fH\\\fHR\fH\\\fHn\fHA\fHF\fIa\fH\\\fHR\fHF\fIa\fHH\fHB\fHR\fH^\fHS\fHy\fIg\fHn\fH\\\fHG\fHP\fIa\fHH\fHR\fH\\\fHD\fHS\fH\\\fIa\fHB\fHR\fHO\fH^\fHS\fHB\fHS\fHs\fIk\fHMgfp`qjswjlm!#`lmwfmw>!gl`vnfmw-ol`bwjlm-sqlw-dfwFofnfmwpAzWbdMbnf+?"GL@WZSF#kwno= ?kwno#?nfwb#`kbqpfw>!vwe.;!=9vqo!#`lmwfmw>!kwws9,,-`pp!#qfo>!pwzofpkffw!pwzof#wzsf>!wf{w,`pp!=wzsf>!wf{w,`pp!#kqfe>!t0-lqd,2:::,{kwno!#{nowzsf>!wf{w,ibubp`qjsw!#nfwklg>!dfw!#b`wjlm>!ojmh#qfo>!pwzofpkffw!##>#gl`vnfmw-dfwFofnfmwwzsf>!jnbdf,{.j`lm!#,=`foosbggjmd>!3!#`foops-`pp!#wzsf>!wf{w,`pp!#?,b=?,oj=?oj=?b#kqfe>!!#tjgwk>!2!#kfjdkw>!2!!=?b#kqfe>!kwws9,,ttt-pwzof>!gjpsobz9mlmf8!=bowfqmbwf!#wzsf>!bssoj.,,T0@,,GWG#[KWNO#2-3#foopsb`jmd>!3!#`foosbg#wzsf>!kjggfm!#ubovf>!,b=%maps8?psbm#qlof>!p ?jmsvw#wzsf>!kjggfm!#obmdvbdf>!IbubP`qjsw!##gl`vnfmw-dfwFofnfmwpAd>!3!#`foopsb`jmd>!3!#zsf>!wf{w,`pp!#nfgjb>!wzsf>$wf{w,ibubp`qjsw$tjwk#wkf#f{`fswjlm#le#zsf>!wf{w,`pp!#qfo>!pw#kfjdkw>!2!#tjgwk>!2!#>$(fm`lgfVQJ@lnslmfmw+?ojmh#qfo>!bowfqmbwf!# algz/#wq/#jmsvw/#wf{wnfwb#mbnf>!qlalwp!#`lmnfwklg>!slpw!#b`wjlm>!= ?b#kqfe>!kwws9,,ttt-`pp!#qfo>!pwzofpkffw!#?,gju=?,gju=?gju#`obppobmdvbdf>!ibubp`qjsw!=bqjb.kjggfm>!wqvf!=.[?qjsw!#wzsf>!wf{w,ibubpo>38~*+*8 +evm`wjlm+*xab`hdqlvmg.jnbdf9#vqo+,b=?,oj=?oj=?b#kqfe>!k\n\n?oj=?b#kqfe>!kwws9,,bwlq!#bqjb.kjggfm>!wqv=#?b#kqfe>!kwws9,,ttt-obmdvbdf>!ibubp`qjsw!#,lswjlm= ?lswjlm#ubovf,gju=?,gju=?gju#`obpp>qbwlq!#bqjb.kjggfm>!wqf>+mft#Gbwf*-dfwWjnf+*slqwvdv/Fp#+gl#Aqbpjo*<R=l<_<\\<Q<T<[<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n=`<R<]=l<\\<[<R<^<\\<Q<T=c=l<Y<_<T=m=n=l<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n<T<R<]=c<[<\\=n<Y<W=`<Q<\\?"GL@WZSF#kwno#SVAOJ@#!mw.Wzsf!#`lmwfmw>!wf{w,?nfwb#kwws.frvju>!@lmwfqbmpjwjlmbo,,FM!#!kwws9?kwno#{nomp>!kwws9,,ttt.,,T0@,,GWG#[KWNO#2-3#WGWG,{kwno2.wqbmpjwjlmbo,,ttt-t0-lqd,WQ,{kwno2,sf#>#$wf{w,ibubp`qjsw$8?nfwb#mbnf>!gfp`qjswjlmsbqfmwMlgf-jmpfqwAfelqf?jmsvw#wzsf>!kjggfm!#mbip!#wzsf>!wf{w,ibubp`qj+gl`vnfmw*-qfbgz+evm`wjp`qjsw#wzsf>!wf{w,ibubpjnbdf!#`lmwfmw>!kwws9,,VB.@lnsbwjaof!#`lmwfmw>wno8#`kbqpfw>vwe.;!#,= ojmh#qfo>!pklqw`vw#j`lm?ojmh#qfo>!pwzofpkffw!#?,p`qjsw= ?p`qjsw#wzsf>>#gl`vnfmw-`qfbwfFofnfm?b#wbqdfw>!\\aobmh!#kqfe>#gl`vnfmw-dfwFofnfmwpAjmsvw#wzsf>!wf{w!#mbnf>b-wzsf#>#$wf{w,ibubp`qjmsvw#wzsf>!kjggfm!#mbnfkwno8#`kbqpfw>vwe.;!#,=gwg!= ?kwno#{nomp>!kwws.,,T0@,,GWG#KWNO#7-32#WfmwpAzWbdMbnf+$p`qjsw$*jmsvw#wzsf>!kjggfm!#mbn?p`qjsw#wzsf>!wf{w,ibubp!#pwzof>!gjpsobz9mlmf8!=gl`vnfmw-dfwFofnfmwAzJg+>gl`vnfmw-`qfbwfFofnfmw+$#wzsf>$wf{w,ibubp`qjsw$jmsvw#wzsf>!wf{w!#mbnf>!g-dfwFofnfmwpAzWbdMbnf+pmj`bo!#kqfe>!kwws9,,ttt-@,,GWG#KWNO#7-32#Wqbmpjw?pwzof#wzsf>!wf{w,`pp!= ?pwzof#wzsf>!wf{w,`pp!=jlmbo-gwg!= ?kwno#{nomp>kwws.frvju>!@lmwfmw.Wzsfgjmd>!3!#`foopsb`jmd>!3!kwno8#`kbqpfw>vwe.;!#,= #pwzof>!gjpsobz9mlmf8!=??oj=?b#kqfe>!kwws9,,ttt-#wzsf>$wf{w,ibubp`qjsw$=<X<Y=c=n<Y<W=`<Q<R=m=n<T=m<R<R=n<^<Y=n=m=n<^<T<T<S=l<R<T<[<^<R<X=m=n<^<\\<]<Y<[<R<S<\\=m<Q<R=m=n<T\fHF\fIm\fHT\fIa\fHH\fHS\fHy\fHR\fHy\fHR\fHn\fH{\fIa\fH\\\fIk\fHT\fHe\fHD\fIa\fHU\fIg\fHn\fHD\fIk\fHY\fHS\fHK\fHR\fHD\fHT\fHA\fHR\fHG\fHS\fHy\fIa\fHT\fHS\fHn\fH{\fHT\fIm\fH\\\fHy\fIa\fH[\fHS\fHH\fHy\fIe\fHF\fIl\fH\\\fHR\fHk\fHs\fHY\fHS\fHp\fIa\fHr\fHR\fHF\fHD\fHy\fHR\fH\\\fIa\fH\\\fHY\fHR\fHd\fHT\fHy\fIa\fH\\\fHS\fHC\fHH\fHR',"\u06F7%\u018C'T%\x85'W%\xD7%O%g%\xA6&\u0193%\u01E5&>&*&'&^&\x88\u0178\u0C3E&\u01AD&\u0192&)&^&%&'&\x82&P&1&\xB1&3&]&m&u&E&t&C&\xCF&V&V&/&>&6&\u0F76\u177Co&p&@&E&M&P&x&@&F&e&\xCC&7&:&(&D&0&C&)&.&F&-&1&(&L&F&1\u025E*\u03EA\u21F3&\u1372&K&;&)&E&H&P&0&?&9&V&\x81&-&v&a&,&E&)&?&=&'&'&B&\u0D2E&\u0503&\u0316*&*8&%&%&&&%,)&\x9A&>&\x86&7&]&F&2&>&J&6&n&2&%&?&\x8E&2&6&J&g&-&0&,&*&J&*&O&)&6&(&<&B&N&.&P&@&2&.&W&M&%\u053C\x84(,(<&,&\u03DA&\u18C7&-&,(%&(&%&(\u013B0&X&D&\x81&j&'&J&(&.&B&3&Z&R&h&3&E&E&<\xC6-\u0360\u1EF3&%8?&@&,&Z&@&0&J&,&^&x&_&6&C&6&C\u072C\u2A25&f&-&-&-&-&,&J&2&8&z&8&C&Y&8&-&d&\u1E78\xCC-&7&1&F&7&t&W&7&I&.&.&^&=\u0F9C\u19D3&8(>&/&/&\u077B')'\u1065')'%@/&0&%\u043E\u09C0*&*@&C\u053D\u05D4\u0274\u05EB4\u0DD7\u071A\u04D16\u0D84&/\u0178\u0303Z&*%\u0246\u03FF&\u0134&1\xA8\u04B4\u0174",j,"AAAAKKLLKKKKKJJIHHIHHGGFF"),pO(a),oO(lO(a),j)}function ho(a,j){return a<=j?a:j}function sO(a,j,g,q,T){a.set(g.slice(q,T),j)}function S_(a,j,g,q){if(a==null)return-1;let T=ho(a.offset+q,a.data.length),N=T-a.offset;return j.set(a.data.subarray(a.offset,T),g),a.offset+=N,N}function aO(a){return 0}function lO(a){return a}function uO(a){return 1}function cO(a){return 1}function pO(a){}function dO(a){let j=a.length,g=new Int8Array(j);for(let q=0;q<j;++q)g[q]=a.charCodeAt(q);return g}function mO(a,j){let g=new ut;if(U(g,new t(a)),j){let Q=j.customDictionary;Q&&ne(g,Q)}let q=0,T=[];for(;;){let Q=new Int8Array(16384);if(T.push(Q),g.output=Q,g.outputOffset=0,g.outputLength=16384,g.outputUsed=0,jw(g),q+=g.outputUsed,g.outputUsed<16384)break}M(g);let N=new Int8Array(q),z=0;for(let Q=0;Q<T.length;++Q){let ue=T[Q],re=ho(q,z+16384)-z;re<16384?N.set(ue.subarray(0,re),z):N.set(ue,z),z+=re}return N}return mO},fB=zD()});var fu,aB,Df,Op,lB=K(()=>{To();vo();sB();fu=ce(xb());vo();aB={brotli:{mode:0,quality:8,lgwin:22}},Op=class extends vr{constructor(e){super(e);this.name="brotli";this.extensions=["br"];this.contentEncodings=["br"];this.isSupported=!0;this.options=e}async preload(){Df=Df||this.options?.modules?.brotli,Df||console.warn(`${this.name} library not installed`)}async compress(e){if(!Fn&&this.options.brotli?.useZlib){let r=await(0,Hi.promisify)(fu.default.brotliCompress)(e);return Yr(r)}return this.compressSync(e)}compressSync(e){if(!Fn&&this.options.brotli?.useZlib){let o=fu.default.brotliCompressSync(e);return Yr(o)}let r={...aB.brotli,...this.options?.brotli},n=new Uint8Array(e);if(!Df)throw new Error("brotli compression: brotli module not installed");return Df.compress(n,r).buffer}async decompress(e){if(!Fn&&this.options.brotli?.useZlib){let r=await(0,Hi.promisify)(fu.default.brotliDecompress)(e);return Yr(r)}return this.decompressSync(e)}decompressSync(e){if(!Fn&&this.options.brotli?.useZlib){let o=fu.default.brotliDecompressSync(e);return Yr(o)}let r={...aB.brotli,...this.options?.brotli},n=new Uint8Array(e);return Df?Df.decompress(n,r).buffer:fB(n,void 0).buffer}}});var su,Fp,uB=K(()=>{vo();To();Fp=class extends vr{constructor(e){super(e);this.name="lzo";this.extensions=[];this.contentEncodings=[];this.isSupported=!1;if(this.options=e,su=su||this.options?.modules?.lzo,!su)throw new Error(this.name)}async preload(){}async compress(e){await this.preload();let r=fp(e);return su.compress(r).buffer}async decompress(e){try{await this.preload();let r=fp(e);return su.decompress(r).buffer}catch(r){throw r}}}});var cB=K(()=>{rT();Wk();Kk();Yk();oB();lB();uB()});function pB(t){return Buffer.isBuffer(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}function dB(t){return Buffer.from(t)}var mB=K(()=>{});var Nb=k(Hs=>{Hs.hashU32=function(e){return e=e|0,e=e+2127912214+(e<<12)|0,e=e^-949894596^e>>>19,e=e+374761393+(e<<5)|0,e=e+-744332180^e<<9,e=e+-42973499+(e<<3)|0,e^-1252372727^e>>>16|0};Hs.readU64=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n|=e[r++]<<32,n|=e[r++]<<40,n|=e[r++]<<48,n|=e[r++]<<56,n};Hs.readU32=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n};Hs.writeU32=function(e,r,n){e[r++]=n>>0&255,e[r++]=n>>8&255,e[r++]=n>>16&255,e[r++]=n>>24&255};Hs.imul=function(e,r){var n=e>>>16,i=e&65535,o=r>>>16,f=r&65535;return i*f+(n*f+i*o<<16)|0}});var yB=k(gB=>{var ri=Nb(),Nf=2654435761,Pf=2246822519,wB=3266489917,LD=668265263,hB=374761393;function Dp(t,e){return t=t|0,e=e|0,t>>>(32-e|0)|t<<e|0}function bB(t,e,r){return t=t|0,e=e|0,r=r|0,ri.imul(t>>>(32-e|0)|t<<e,r)|0}function Pb(t,e){return t=t|0,e=e|0,t>>>e^t|0}function au(t,e,r,n,i){return bB(ri.imul(e,r)+t,n,i)}function VD(t,e,r){return bB(t+ri.imul(e[r],hB),11,Nf)}function CD(t,e,r){return au(t,ri.readU32(e,r),wB,17,LD)}function WD(t,e,r){return[au(t[0],ri.readU32(e,r+0),Pf,13,Nf),au(t[1],ri.readU32(e,r+4),Pf,13,Nf),au(t[2],ri.readU32(e,r+8),Pf,13,Nf),au(t[3],ri.readU32(e,r+12),Pf,13,Nf)]}function KD(t,e,r,n){var i,o;if(o=n,n>=16){for(i=[t+Nf+Pf,t+Pf,t,t-Nf];n>=16;)i=WD(i,e,r),r+=16,n-=16;i=Dp(i[0],1)+Dp(i[1],7)+Dp(i[2],12)+Dp(i[3],18)+o}else i=t+hB+n>>>0;for(;n>=4;)i=CD(i,e,r),r+=4,n-=4;for(;n>0;)i=VD(i,e,r),r++,n--;return i=Pb(ri.imul(Pb(ri.imul(Pb(i,15),Pf),13),wB),16),i>>>0}gB.hash=KD});var xB=k(rr=>{var YD=yB(),ln=Nb(),Np=4,GD=13,jB=5,Rb=6,Pp=1<<16,lu=4,Rp=(1<<lu)-1,ZD=4,Us=(1<<ZD)-1,_B=BB(5<<20),Hb=QD(),Ub=407708164,JD=4,qB=8,vB=16,Mb=64,zb=192,Hp=2147483648,TB=7,Lb=4,kB=7,Up={4:65536,5:262144,6:1048576,7:4194304};function QD(){try{return new Uint32Array(Pp)}catch{for(var t=new Array(Pp),e=0;e<Pp;e++)t[e]=0;return t}}function XD(t){for(var e=0;e<Pp;e++)Hb[e]=0}function BB(t){try{return new Uint8Array(t)}catch{for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e}}function IB(t,e,r){if(typeof t.buffer!==void 0){if(Uint8Array.prototype.slice)return t.slice(e,r);var n=t.length;e=e|0,e=e<0?Math.max(n+e,0):Math.min(e,n),r=r===void 0?n:r|0,r=r<0?Math.max(n+r,0):Math.min(r,n);for(var i=new Uint8Array(r-e),o=e,f=0;o<r;)i[f++]=t[o++];return i}else return t.slice(e,r)}rr.compressBound=function(e){return e+e/255+16|0};rr.decompressBound=function(e){var r=0;if(ln.readU32(e,r)!==Ub)throw new Error("invalid magic number");r+=4;var n=e[r++];if((n&zb)!==Mb)throw new Error("incompatible descriptor version "+(n&zb));var i=(n&vB)!=0,o=(n&qB)!=0,f=e[r++]>>Lb&kB;if(Up[f]===void 0)throw new Error("invalid block size "+f);var s=Up[f];if(o)return ln.readU64(e,r);r++;for(var u=0;;){var l=ln.readU32(e,r);if(r+=4,l&Hp?(l&=~Hp,u+=l):u+=s,l===0)return u;i&&(r+=4),r+=l}};rr.makeBuffer=BB;rr.decompressBlock=function(e,r,n,i,o){var f,s,u,l,c;for(u=n+i;n<u;){var w=e[n++],p=w>>4;if(p>0){if(p===15)for(;p+=e[n],e[n++]===255;);for(l=n+p;n<l;)r[o++]=e[n++]}if(n>=u)break;if(f=w&15,s=e[n++]|e[n++]<<8,f===15)for(;f+=e[n],e[n++]===255;);for(f+=Np,c=o-s,l=c+f;c<l;)r[o++]=r[c++]|0}return o};rr.compressBlock=function(e,r,n,i,o){var f,s,u,l,c,w,p,b,v;if(p=0,b=i+n,s=n,i>=GD)for(var H=(1<<Rb)+3;n+Np<b-jB;){var O=ln.readU32(e,n),W=ln.hashU32(O)>>>0;if(W=(W>>16^W)>>>0&65535,f=o[W]-1,o[W]=n+1,f<0||n-f>>>16>0||ln.readU32(e,f)!==O){c=H++>>Rb,n+=c;continue}for(H=(1<<Rb)+3,w=n-s,l=n-f,n+=Np,f+=Np,u=n;n<b-jB&&e[n]===e[f];)n++,f++;u=n-u;var ne=u<Rp?u:Rp;if(w>=Us){for(r[p++]=(Us<<lu)+ne,v=w-Us;v>=255;v-=255)r[p++]=255;r[p++]=v}else r[p++]=(w<<lu)+ne;for(var U=0;U<w;U++)r[p++]=e[s+U];if(r[p++]=l,r[p++]=l>>8,u>=Rp){for(v=u-Rp;v>=255;v-=255)r[p++]=255;r[p++]=v}s=n}if(s===0)return 0;if(w=b-s,w>=Us){for(r[p++]=Us<<lu,v=w-Us;v>=255;v-=255)r[p++]=255;r[p++]=v}else r[p++]=w<<lu;for(n=s;n<b;)r[p++]=e[n++];return p};rr.decompressFrame=function(e,r){var n,i,o,f,s=0,u=0;if(ln.readU32(e,s)!==Ub)throw new Error("invalid magic number");if(s+=4,f=e[s++],(f&zb)!==Mb)throw new Error("incompatible descriptor version");n=(f&vB)!=0,i=(f&JD)!=0,o=(f&qB)!=0;var l=e[s++]>>Lb&kB;if(Up[l]===void 0)throw new Error("invalid block size");for(o&&(s+=8),s++;;){var c;if(c=ln.readU32(e,s),s+=4,c===0)break;if(n&&(s+=4),(c&Hp)!=0){c&=~Hp;for(var w=0;w<c;w++)r[u++]=e[s++]}else u=rr.decompressBlock(e,r,s,c,u),s+=c}return i&&(s+=4),u};rr.compressFrame=function(e,r){var n=0;ln.writeU32(r,n,Ub),n+=4,r[n++]=Mb,r[n++]=TB<<Lb,r[n]=YD.hash(0,r,4,n-4)>>8,n++;var i=Up[TB],o=e.length,f=0;for(XD(Hb);o>0;){var s=0,u=o>i?i:o;if(s=rr.compressBlock(e,_B,f,u,Hb),s>u||s===0){ln.writeU32(r,n,2147483648|u),n+=4;for(var l=f+u;f<l;)r[n++]=e[f++];o-=u}else{ln.writeU32(r,n,s),n+=4;for(var c=0;c<s;)r[n++]=_B[c++];f+=u,o-=u}}return ln.writeU32(r,n,0),n+=4,n};rr.decompress=function(e,r){var n,i;return r===void 0&&(r=rr.decompressBound(e)),n=rr.makeBuffer(r),i=rr.decompressFrame(e,n),i!==r&&(n=IB(n,0,i)),n};rr.compress=function(e,r){var n,i;return r===void 0&&(r=rr.compressBound(e.length)),n=rr.makeBuffer(r),i=rr.compressFrame(e,n),i!==r&&(n=IB(n,0,i)),n}});var SB=k(()=>{});async function OB(t){let e=Object.values(Mp);return await Promise.all(e.map(r=>r.preload()))}async function zp(t,e,r){let n=Mp[t];if(!n)throw new Error(`parquet: invalid compression method: ${t}`);let i=pB(e),o=await n.decompress(i,r);return dB(o)}var EB,AB,uu,Mp,Lp=K(()=>{cB();mB();EB=ce(xB()),AB=ce(SB()),uu={lz4js:EB.default,lzo:AB.default},Mp={UNCOMPRESSED:new sp,GZIP:new Tp,SNAPPY:new Ap,BROTLI:new Op({modules:uu}),LZ4:new nu({modules:uu}),LZ4_RAW:new nu({modules:uu}),LZO:new Fp({modules:uu}),ZSTD:new Ip({modules:uu})}});async function FB(t,e){let r={buffer:t,offset:0,size:t.length},n={rlevels:[],dlevels:[],values:[],pageHeaders:[],count:0},i=e.dictionary||[];for(;r.offset<r.size&&(!e.numValues||n.dlevels.length<Number(e.numValues));){let o=await Vb(r,e);if(o.dictionary){i=o.dictionary;continue}i.length&&(o.values=o.values.map(f=>i[f]));for(let f=0;f<o.rlevels.length;f++){n.rlevels.push(o.rlevels[f]),n.dlevels.push(o.dlevels[f]);let s=o.values[f];s!==void 0&&n.values.push(s)}n.count+=o.count,n.pageHeaders.push(o.pageHeader)}return n}async function Vb(t,e){let r,{pageHeader:n,length:i}=Iv(t.buffer,t.offset);t.offset+=i;let o=on(Sc,n.type);switch(o){case"DATA_PAGE":r=await $D(t,n,e);break;case"DATA_PAGE_V2":r=await eN(t,n,e);break;case"DICTIONARY_PAGE":r={dictionary:await tN(t,n,e),pageHeader:n};break;default:throw new Error(`invalid page type: ${o}`)}return r}function Cb(t,e,r){let n={},i=e;for(let o=0;o<r;o++){let f=t[i],s=i>0?on(Ic,f.repetition_type):"ROOT",u=!1,l=!1;switch(s){case"REQUIRED":break;case"OPTIONAL":u=!0;break;case"REPEATED":l=!0;break;default:throw new Error("parquet: unknown repetition type")}if(f.num_children>0){let c=Cb(t,i+1,f.num_children);i=c.next,n[f.name]={optional:u,repeated:l,fields:c.schema}}else{let c=on(bs,f.type),w=c;switch(f.converted_type&&(w=on(Bc,f.converted_type)),w){case"DECIMAL":w=`${w}_${c}`;break;default:}n[f.name]={type:w,typeLength:f.type_length,presision:f.precision,scale:f.scale,optional:u,repeated:l},i++}}return{schema:n,offset:e,next:i}}function Rf(t,e,r,n,i){if(!(e in Hl))throw new Error(`invalid encoding: ${e}`);return Hl[e].decodeValues(t,r,n,i)}async function $D(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header?.num_values,o=t;if(r.compression!=="UNCOMPRESSED"){let v=await zp(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);o={buffer:v,offset:0,size:v.length},t.offset=n}let f=on(_f,e.data_page_header?.repetition_level_encoding),s=new Array(i);r.column.rLevelMax>0?s=Rf($a,f,o,i,{bitWidth:Nl(r.column.rLevelMax),disableEnvelope:!1}):s.fill(0);let u=on(_f,e.data_page_header?.definition_level_encoding),l=new Array(i);r.column.dLevelMax>0?l=Rf($a,u,o,i,{bitWidth:Nl(r.column.dLevelMax),disableEnvelope:!1}):l.fill(0);let c=0;for(let v of l)v===r.column.dLevelMax&&c++;let w=on(_f,e.data_page_header?.encoding),p={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},b=Rf(r.column.primitiveType,w,o,c,p);return{dlevels:l,rlevels:s,values:b,count:i,pageHeader:e}}async function eN(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header_v2?.num_values,o=i-e.data_page_header_v2?.num_nulls,f=on(_f,e.data_page_header_v2?.encoding),s=new Array(i);r.column.rLevelMax>0?s=Rf($a,kw,t,i,{bitWidth:Nl(r.column.rLevelMax),disableEnvelope:!0}):s.fill(0);let u=new Array(i);r.column.dLevelMax>0?u=Rf($a,kw,t,i,{bitWidth:Nl(r.column.dLevelMax),disableEnvelope:!0}):u.fill(0);let l=t;if(e.data_page_header_v2?.is_compressed){let p=await zp(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);l={buffer:p,offset:0,size:p.length},t.offset=n}let c={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},w=Rf(r.column.primitiveType,f,l,o,c);return{dlevels:u,rlevels:s,values:w,count:i,pageHeader:e}}async function tN(t,e,r){let n=t.offset+e.compressed_page_size,i={offset:0,buffer:t.buffer.slice(t.offset,n),size:n-t.offset};if(t.offset=n,r.compression!=="UNCOMPRESSED"){let f=await zp(r.compression,i.buffer.slice(i.offset,n),e.uncompressed_page_size);i={buffer:f,offset:0,size:f.length},t.offset=n}let o=e?.dictionary_page_header?.num_values||0;return Rf(r.column.primitiveType,r.column.encoding,i,o,r).map(f=>f.toString())}var Wb=K(()=>{zh();ep();Lp();kc();Ph()});var rN,Ci,Kb=K(()=>{kc();ep();Ph();Wb();rN=1e6,Ci=class{static async openBuffer(e){let r=(i,o)=>Promise.resolve(e.slice(i,i+o)),n=()=>Promise.resolve();return new Ci(r,n,e.length)}constructor(e,r,n,i){this.read=e,this.close=r,this.fileSize=n,this.defaultDictionarySize=i?.defaultDictionarySize||rN}async readHeader(){let r=(await this.read(0,hs.length)).toString();switch(r){case hs:break;case P_:throw new Error("Encrypted parquet file not supported");default:throw new Error(`Invalid parquet file (magic=${r})`)}}async readRowGroup(e,r,n){let i={rowCount:Number(r.num_rows),columnData:{}};for(let o of r.columns){let s=o.meta_data?.path_in_schema;n.length>0&&xv(n,s)<0||(i.columnData[s.join()]=await this.readColumnChunk(e,o))}return i}async readColumnChunk(e,r){if(r.file_path!==void 0&&r.file_path!==null)throw new Error("external references are not supported");let n=e.findField(r.meta_data?.path_in_schema),i=on(bs,r.meta_data?.type);if(i!==n.primitiveType)throw new Error(`chunk type not matching schema: ${i}`);let o=on(xc,r.meta_data?.codec),f=Number(r.meta_data?.data_page_offset),s=Number(r.meta_data?.total_compressed_size);r.file_path||(s=Math.min(this.fileSize-f,Number(r.meta_data?.total_compressed_size)));let u={type:i,rLevelMax:n.rLevelMax,dLevelMax:n.dLevelMax,compression:o,column:n,numValues:r.meta_data?.num_values,dictionary:[]},l,c=r?.meta_data?.dictionary_page_offset;if(c){let p=Number(c);l=await this.getDictionary(p,u,f)}l=u.dictionary?.length?u.dictionary:l;let w=await this.read(f,s);return await FB(w,{...u,dictionary:l})}async getDictionary(e,r,n){if(e===0)return[];let i=Math.min(this.fileSize-e,this.defaultDictionarySize),o=await this.read(e,i),f={buffer:o,offset:0,size:o.length};return(await Vb(f,r)).dictionary}async readFooter(){let e=hs.length+4,r=await this.read(this.fileSize-e,e),n=r.slice(4).toString();if(n!==hs)throw new Error(`Not a valid parquet file (magic="${n})`);let i=r.readUInt32LE(0),o=this.fileSize-i-e;if(o<hs.length)throw new Error(`Invalid metadata size ${o}`);let f=await this.read(o,i),{metadata:s}=Bv(f);return s}}});var Yb=k((NK,cu)=>{"use strict";typeof global.Map!="undefined"?(cu.exports=global.Map,cu.exports.Map=global.Map):(Zr=function(t){this._keys=[],this._values={};for(var e=0;e<t.length;e++)if(t[e]!=null){var r=t[e],n=r[0],i=r[1];this._keys.push(n),this._values[n]={v:i,i:this._keys.length-1}}},Zr.prototype.clear=function(){this._keys=[],this._values={}},Zr.prototype.delete=function(t){var e=this._values[t];return e==null?!1:(delete this._values[t],this._keys.splice(e.i,1),!0)},Zr.prototype.entries=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?[r,t._values[r].v]:void 0,done:r===void 0}}}},Zr.prototype.forEach=function(t,e){e=e||this;for(var r=0;r<this._keys.length;r++){var n=this._keys[r];t.call(e,this._values[n].v,n,e)}},Zr.prototype.get=function(t){return this._values[t]?this._values[t].v:void 0},Zr.prototype.has=function(t){return this._values[t]!=null},Zr.prototype.keys=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?r:void 0,done:r===void 0}}}},Zr.prototype.set=function(t,e){return this._values[t]?(this._values[t].v=e,this):(this._keys.push(t),this._values[t]={v:e,i:this._keys.length-1},this)},Zr.prototype.values=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?t._values[r].v:void 0,done:r===void 0}}}},Object.defineProperty(Zr.prototype,"size",{enumerable:!0,get:function(){return this._keys.length}}),cu.exports=Zr,cu.exports.Map=Zr);var Zr});var Ms=k((PK,Gb)=>{function S(t,e){if(!(this instanceof S))return new S(t,e);this._bsontype="Long",this.low_=t|0,this.high_=e|0}S.prototype.toInt=function(){return this.low_};S.prototype.toNumber=function(){return this.high_*S.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};S.prototype.toBigInt=function(){return BigInt(this.toString())};S.prototype.toJSON=function(){return this.toString()};S.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(S.MIN_VALUE)){var r=S.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var o=S.fromNumber(Math.pow(e,6));i=this;for(var f="";!i.isZero();){var s=i.div(o),u=i.subtract(s.multiply(o)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+f;for(;l.length<6;)l="0"+l;f=""+l+f}};S.prototype.getHighBits=function(){return this.high_};S.prototype.getLowBits=function(){return this.low_};S.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:S.TWO_PWR_32_DBL_+this.low_};S.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(S.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};S.prototype.isZero=function(){return this.high_===0&&this.low_===0};S.prototype.isNegative=function(){return this.high_<0};S.prototype.isOdd=function(){return(this.low_&1)==1};S.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};S.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};S.prototype.lessThan=function(t){return this.compare(t)<0};S.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};S.prototype.greaterThan=function(t){return this.compare(t)>0};S.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};S.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};S.prototype.negate=function(){return this.equals(S.MIN_VALUE)?S.MIN_VALUE:this.not().add(S.ONE)};S.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+f,l+=c>>>16,c&=65535,l+=e+o,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.subtract=function(t){return this.add(t.negate())};S.prototype.multiply=function(t){if(this.isZero())return S.ZERO;if(t.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE))return t.isOdd()?S.MIN_VALUE:S.ZERO;if(t.equals(S.MIN_VALUE))return this.isOdd()?S.MIN_VALUE:S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(S.TWO_PWR_24_)&&t.lessThan(S.TWO_PWR_24_))return S.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*f,l+=c>>>16,c&=65535,l+=e*u+r*s+n*f+i*o,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE)){if(t.equals(S.ONE)||t.equals(S.NEG_ONE))return S.MIN_VALUE;if(t.equals(S.MIN_VALUE))return S.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(S.ZERO))return t.isNegative()?S.ONE:S.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(S.MIN_VALUE))return S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var o=S.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var f=Math.ceil(Math.log(r)/Math.LN2),s=f<=48?1:Math.pow(2,f-48),u=S.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=S.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=S.ONE),o=o.add(u),n=n.subtract(l)}return o};S.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};S.prototype.not=function(){return S.fromBits(~this.low_,~this.high_)};S.prototype.and=function(t){return S.fromBits(this.low_&t.low_,this.high_&t.high_)};S.prototype.or=function(t){return S.fromBits(this.low_|t.low_,this.high_|t.high_)};S.prototype.xor=function(t){return S.fromBits(this.low_^t.low_,this.high_^t.high_)};S.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return S.fromBits(e<<t,r<<t|e>>>32-t)}else return S.fromBits(0,e<<t-32)};S.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>t)}else return S.fromBits(e>>t-32,e>=0?0:-1)};S.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?S.fromBits(e,0):S.fromBits(e>>>t-32,0)};S.fromInt=function(t){if(-128<=t&&t<128){var e=S.INT_CACHE_[t];if(e)return e}var r=new S(t|0,t<0?-1:0);return-128<=t&&t<128&&(S.INT_CACHE_[t]=r),r};S.fromNumber=function(t){return isNaN(t)||!isFinite(t)?S.ZERO:t<=-S.TWO_PWR_63_DBL_?S.MIN_VALUE:t+1>=S.TWO_PWR_63_DBL_?S.MAX_VALUE:t<0?S.fromNumber(-t).negate():new S(t%S.TWO_PWR_32_DBL_|0,t/S.TWO_PWR_32_DBL_|0)};S.fromBigInt=function(t){return S.fromString(t.toString(10),10)};S.fromBits=function(t,e){return new S(t,e)};S.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return S.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=S.fromNumber(Math.pow(r,8)),i=S.ZERO,o=0;o<t.length;o+=8){var f=Math.min(8,t.length-o),s=parseInt(t.substring(o,o+f),r);if(f<8){var u=S.fromNumber(Math.pow(r,f));i=i.multiply(u).add(S.fromNumber(s))}else i=i.multiply(n),i=i.add(S.fromNumber(s))}return i};S.INT_CACHE_={};S.TWO_PWR_16_DBL_=1<<16;S.TWO_PWR_24_DBL_=1<<24;S.TWO_PWR_32_DBL_=S.TWO_PWR_16_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_31_DBL_=S.TWO_PWR_32_DBL_/2;S.TWO_PWR_48_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_64_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_32_DBL_;S.TWO_PWR_63_DBL_=S.TWO_PWR_64_DBL_/2;S.ZERO=S.fromInt(0);S.ONE=S.fromInt(1);S.NEG_ONE=S.fromInt(-1);S.MAX_VALUE=S.fromBits(4294967295|0,2147483647|0);S.MIN_VALUE=S.fromBits(0,2147483648|0);S.TWO_PWR_24_=S.fromInt(1<<24);Gb.exports=S;Gb.exports.Long=S});var Vp=k((RK,Zb)=>{function zs(t){if(!(this instanceof zs))return new zs(t);this._bsontype="Double",this.value=t}zs.prototype.valueOf=function(){return this.value};zs.prototype.toJSON=function(){return this.value};Zb.exports=zs;Zb.exports.Double=zs});var Cp=k((HK,Jb)=>{function E(t,e){if(!(this instanceof E))return new E(t,e);this._bsontype="Timestamp",this.low_=t|0,this.high_=e|0}E.prototype.toInt=function(){return this.low_};E.prototype.toNumber=function(){return this.high_*E.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};E.prototype.toJSON=function(){return this.toString()};E.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(E.MIN_VALUE)){var r=E.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var o=E.fromNumber(Math.pow(e,6));i=this;for(var f="";!i.isZero();){var s=i.div(o),u=i.subtract(s.multiply(o)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+f;for(;l.length<6;)l="0"+l;f=""+l+f}};E.prototype.getHighBits=function(){return this.high_};E.prototype.getLowBits=function(){return this.low_};E.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:E.TWO_PWR_32_DBL_+this.low_};E.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(E.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};E.prototype.isZero=function(){return this.high_===0&&this.low_===0};E.prototype.isNegative=function(){return this.high_<0};E.prototype.isOdd=function(){return(this.low_&1)==1};E.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};E.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};E.prototype.lessThan=function(t){return this.compare(t)<0};E.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};E.prototype.greaterThan=function(t){return this.compare(t)>0};E.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};E.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};E.prototype.negate=function(){return this.equals(E.MIN_VALUE)?E.MIN_VALUE:this.not().add(E.ONE)};E.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+f,l+=c>>>16,c&=65535,l+=e+o,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.subtract=function(t){return this.add(t.negate())};E.prototype.multiply=function(t){if(this.isZero())return E.ZERO;if(t.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE))return t.isOdd()?E.MIN_VALUE:E.ZERO;if(t.equals(E.MIN_VALUE))return this.isOdd()?E.MIN_VALUE:E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(E.TWO_PWR_24_)&&t.lessThan(E.TWO_PWR_24_))return E.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,o=t.high_>>>16,f=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*f,l+=c>>>16,c&=65535,l+=e*u+r*s+n*f+i*o,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE)){if(t.equals(E.ONE)||t.equals(E.NEG_ONE))return E.MIN_VALUE;if(t.equals(E.MIN_VALUE))return E.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(E.ZERO))return t.isNegative()?E.ONE:E.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(E.MIN_VALUE))return E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var o=E.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var f=Math.ceil(Math.log(r)/Math.LN2),s=f<=48?1:Math.pow(2,f-48),u=E.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=E.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=E.ONE),o=o.add(u),n=n.subtract(l)}return o};E.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};E.prototype.not=function(){return E.fromBits(~this.low_,~this.high_)};E.prototype.and=function(t){return E.fromBits(this.low_&t.low_,this.high_&t.high_)};E.prototype.or=function(t){return E.fromBits(this.low_|t.low_,this.high_|t.high_)};E.prototype.xor=function(t){return E.fromBits(this.low_^t.low_,this.high_^t.high_)};E.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return E.fromBits(e<<t,r<<t|e>>>32-t)}else return E.fromBits(0,e<<t-32)};E.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>t)}else return E.fromBits(e>>t-32,e>=0?0:-1)};E.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?E.fromBits(e,0):E.fromBits(e>>>t-32,0)};E.fromInt=function(t){if(-128<=t&&t<128){var e=E.INT_CACHE_[t];if(e)return e}var r=new E(t|0,t<0?-1:0);return-128<=t&&t<128&&(E.INT_CACHE_[t]=r),r};E.fromNumber=function(t){return isNaN(t)||!isFinite(t)?E.ZERO:t<=-E.TWO_PWR_63_DBL_?E.MIN_VALUE:t+1>=E.TWO_PWR_63_DBL_?E.MAX_VALUE:t<0?E.fromNumber(-t).negate():new E(t%E.TWO_PWR_32_DBL_|0,t/E.TWO_PWR_32_DBL_|0)};E.fromBits=function(t,e){return new E(t,e)};E.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return E.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=E.fromNumber(Math.pow(r,8)),i=E.ZERO,o=0;o<t.length;o+=8){var f=Math.min(8,t.length-o),s=parseInt(t.substring(o,o+f),r);if(f<8){var u=E.fromNumber(Math.pow(r,f));i=i.multiply(u).add(E.fromNumber(s))}else i=i.multiply(n),i=i.add(E.fromNumber(s))}return i};E.INT_CACHE_={};E.TWO_PWR_16_DBL_=1<<16;E.TWO_PWR_24_DBL_=1<<24;E.TWO_PWR_32_DBL_=E.TWO_PWR_16_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_31_DBL_=E.TWO_PWR_32_DBL_/2;E.TWO_PWR_48_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_64_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_32_DBL_;E.TWO_PWR_63_DBL_=E.TWO_PWR_64_DBL_/2;E.ZERO=E.fromInt(0);E.ONE=E.fromInt(1);E.NEG_ONE=E.fromInt(-1);E.MAX_VALUE=E.fromBits(4294967295|0,2147483647|0);E.MIN_VALUE=E.fromBits(0,2147483648|0);E.TWO_PWR_24_=E.fromInt(1<<24);Jb.exports=E;Jb.exports.Timestamp=E});var Ao=k((UK,NB)=>{"use strict";function nN(t){return t.toString().replace(/function *\(/,"function (")}function DB(t,e){return new Buffer(t,e)}function iN(){return Buffer.alloc.apply(Buffer,arguments)}function oN(){return Buffer.from.apply(Buffer,arguments)}NB.exports={normalizedFunctionString:nN,allocBuffer:typeof Buffer.alloc=="function"?iN:DB,toBuffer:typeof Buffer.from=="function"?oN:DB}});var Gp=k((MK,Yp)=>{var PB="inspect",Wp=Ao(),Qb=parseInt(Math.random()*16777215,10),RB=new RegExp("^[0-9a-fA-F]{24}$");try{Buffer&&Buffer.from&&(Kp=!0,PB=On().inspect.custom||"inspect")}catch{Kp=!1}var Kp,Qe=function t(e){if(e instanceof t)return e;if(!(this instanceof t))return new t(e);if(this._bsontype="ObjectID",e==null||typeof e=="number"){this.id=this.generate(e),t.cacheHexString&&(this.__id=this.toString("hex"));return}var r=t.isValid(e);if(!r&&e!=null)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(r&&typeof e=="string"&&e.length===24&&Kp)return new t(Wp.toBuffer(e,"hex"));if(r&&typeof e=="string"&&e.length===24)return t.createFromHexString(e);if(e!=null&&e.length===12)this.id=e;else{if(e!=null&&typeof e.toHexString=="function")return e;throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters")}t.cacheHexString&&(this.__id=this.toString("hex"))},HB=[];for(Hr=0;Hr<256;Hr++)HB[Hr]=(Hr<=15?"0":"")+Hr.toString(16);var Hr;Qe.prototype.toHexString=function(){if(Qe.cacheHexString&&this.__id)return this.__id;var t="";if(!this.id||!this.id.length)throw new Error("invalid ObjectId, ObjectId.id must be either a string or a Buffer, but is ["+JSON.stringify(this.id)+"]");if(this.id instanceof du)return t=fN(this.id),Qe.cacheHexString&&(this.__id=t),t;for(var e=0;e<this.id.length;e++)t+=HB[this.id.charCodeAt(e)];return Qe.cacheHexString&&(this.__id=t),t};Qe.prototype.get_inc=function(){return Qe.index=(Qe.index+1)%16777215};Qe.prototype.getInc=function(){return this.get_inc()};Qe.prototype.generate=function(t){typeof t!="number"&&(t=~~(Date.now()/1e3));var e=(typeof process=="undefined"||process.pid===1?Math.floor(Math.random()*1e5):process.pid)%65535,r=this.get_inc(),n=Wp.allocBuffer(12);return n[3]=t&255,n[2]=t>>8&255,n[1]=t>>16&255,n[0]=t>>24&255,n[6]=Qb&255,n[5]=Qb>>8&255,n[4]=Qb>>16&255,n[8]=e&255,n[7]=e>>8&255,n[11]=r&255,n[10]=r>>8&255,n[9]=r>>16&255,n};Qe.prototype.toString=function(t){return this.id&&this.id.copy?this.id.toString(typeof t=="string"?t:"hex"):this.toHexString()};Qe.prototype[PB]=Qe.prototype.toString;Qe.prototype.toJSON=function(){return this.toHexString()};Qe.prototype.equals=function(e){return e instanceof Qe?this.toString()===e.toString():typeof e=="string"&&Qe.isValid(e)&&e.length===12&&this.id instanceof du?e===this.id.toString("binary"):typeof e=="string"&&Qe.isValid(e)&&e.length===24?e.toLowerCase()===this.toHexString():typeof e=="string"&&Qe.isValid(e)&&e.length===12?e===this.id:e!=null&&(e instanceof Qe||e.toHexString)?e.toHexString()===this.toHexString():!1};Qe.prototype.getTimestamp=function(){var t=new Date,e=this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24;return t.setTime(Math.floor(e)*1e3),t};Qe.index=~~(Math.random()*16777215);Qe.createPk=function(){return new Qe};Qe.createFromTime=function(e){var r=Wp.toBuffer([0,0,0,0,0,0,0,0,0,0,0,0]);return r[3]=e&255,r[2]=e>>8&255,r[1]=e>>16&255,r[0]=e>>24&255,new Qe(r)};var pu=[];Hr=0;for(;Hr<10;)pu[48+Hr]=Hr++;for(;Hr<16;)pu[65-10+Hr]=pu[97-10+Hr]=Hr++;var du=Buffer,fN=function(t){return t.toString("hex")};Qe.createFromHexString=function(e){if(typeof e=="undefined"||e!=null&&e.length!==24)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(Kp)return new Qe(Wp.toBuffer(e,"hex"));for(var r=new du(12),n=0,i=0;i<24;)r[n++]=pu[e.charCodeAt(i++)]<<4|pu[e.charCodeAt(i++)];return new Qe(r)};Qe.isValid=function(e){return e==null?!1:typeof e=="number"?!0:typeof e=="string"?e.length===12||e.length===24&&RB.test(e):e instanceof Qe||e instanceof du?!0:typeof e.toHexString=="function"&&(e.id instanceof du||typeof e.id=="string")?e.id.length===12||e.id.length===24&&RB.test(e.id):!1};Object.defineProperty(Qe.prototype,"generationTime",{enumerable:!0,get:function(){return this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24},set:function(t){this.id[3]=t&255,this.id[2]=t>>8&255,this.id[1]=t>>16&255,this.id[0]=t>>24&255}});Yp.exports=Qe;Yp.exports.ObjectID=Qe;Yp.exports.ObjectId=Qe});var Jp=k((zK,Xb)=>{function Zp(t,e){if(!(this instanceof Zp))return new Zp;this._bsontype="BSONRegExp",this.pattern=t||"",this.options=e||"";for(var r=0;r<this.options.length;r++)if(!(this.options[r]==="i"||this.options[r]==="m"||this.options[r]==="x"||this.options[r]==="l"||this.options[r]==="s"||this.options[r]==="u"))throw new Error("the regular expression options ["+this.options[r]+"] is not supported")}Xb.exports=Zp;Xb.exports.BSONRegExp=Zp});var Qp=k((LK,$b)=>{var sN=Buffer&&On().inspect.custom||"inspect";function Oo(t){if(!(this instanceof Oo))return new Oo(t);this._bsontype="Symbol",this.value=t}Oo.prototype.valueOf=function(){return this.value};Oo.prototype.toString=function(){return this.value};Oo.prototype[sN]=function(){return this.value};Oo.prototype.toJSON=function(){return this.value};$b.exports=Oo;$b.exports.Symbol=Oo});var tg=k((VK,eg)=>{var Ls=function(t){if(!(this instanceof Ls))return new Ls(t);this._bsontype="Int32",this.value=t};Ls.prototype.valueOf=function(){return this.value};Ls.prototype.toJSON=function(){return this.value};eg.exports=Ls;eg.exports.Int32=Ls});var Xp=k((CK,ng)=>{var rg=function t(e,r){if(!(this instanceof t))return new t(e,r);this._bsontype="Code",this.code=e,this.scope=r};rg.prototype.toJSON=function(){return{scope:this.scope,code:this.code}};ng.exports=rg;ng.exports.Code=rg});var nd=k((WK,og)=>{"use strict";var Re=Ms(),aN=/^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/,lN=/^(\+|-)?(Infinity|inf)$/i,uN=/^(\+|-)?NaN$/i,mu=6111,$p=-6176,ig=6176,cN=34,ed=[124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),td=[248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),rd=[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),pN=/^([-+])?(\d+)?$/,Wi=Ao(),UB=function(t){return!isNaN(parseInt(t,10))},dN=function(t){var e=Re.fromNumber(1e3*1e3*1e3),r=Re.fromNumber(0),n=0;if(!t.parts[0]&&!t.parts[1]&&!t.parts[2]&&!t.parts[3])return{quotient:t,rem:r};for(n=0;n<=3;n++)r=r.shiftLeft(32),r=r.add(new Re(t.parts[n],0)),t.parts[n]=r.div(e).low_,r=r.modulo(e);return{quotient:t,rem:r}},mN=function(t,e){if(!t&&!e)return{high:Re.fromNumber(0),low:Re.fromNumber(0)};var r=t.shiftRightUnsigned(32),n=new Re(t.getLowBits(),0),i=e.shiftRightUnsigned(32),o=new Re(e.getLowBits(),0),f=r.multiply(i),s=r.multiply(o),u=n.multiply(i),l=n.multiply(o);return f=f.add(s.shiftRightUnsigned(32)),s=new Re(s.getLowBits(),0).add(u).add(l.shiftRightUnsigned(32)),f=f.add(s.shiftRightUnsigned(32)),l=s.shiftLeft(32).add(new Re(l.getLowBits(),0)),{high:f,low:l}},wN=function(t,e){var r=t.high_>>>0,n=e.high_>>>0;if(r<n)return!0;if(r===n){var i=t.low_>>>0,o=e.low_>>>0;if(i<o)return!0}return!1},Ur=function(t){this._bsontype="Decimal128",this.bytes=t};Ur.fromString=function(t){var e=!1,r=!1,n=!1,i=0,o=0,f=0,s=0,u=0,l=[0],c=0,w=0,p=0,b=0,v=0,H=0,O=[0,0],W=[0,0],ne=0,U=0;if(t=t.trim(),t.length>=7e3)throw new Error(""+t+" not a valid Decimal128 string");var M=t.match(aN),P=t.match(lN),F=t.match(uN);if(!M&&!P&&!F||t.length===0)throw new Error(""+t+" not a valid Decimal128 string");if(M&&M[4]&&M[2]===void 0)throw new Error(""+t+" not a valid Decimal128 string");if((t[U]==="+"||t[U]==="-")&&(e=t[U++]==="-"),!UB(t[U])&&t[U]!=="."){if(t[U]==="i"||t[U]==="I")return new Ur(Wi.toBuffer(e?td:rd));if(t[U]==="N")return new Ur(Wi.toBuffer(ed))}for(;UB(t[U])||t[U]===".";){if(t[U]==="."){if(r)return new Ur(Wi.toBuffer(ed));r=!0,U=U+1;continue}c<34&&(t[U]!=="0"||n)&&(n||(u=o),n=!0,l[w++]=parseInt(t[U],10),c=c+1),n&&(f=f+1),r&&(s=s+1),o=o+1,U=U+1}if(r&&!o)throw new Error(""+t+" not a valid Decimal128 string");if(t[U]==="e"||t[U]==="E"){var ae=t.substr(++U).match(pN);if(!ae||!ae[2])return new Ur(Wi.toBuffer(ed));v=parseInt(ae[0],10),U=U+ae[0].length}if(t[U])return new Ur(Wi.toBuffer(ed));if(p=0,!c)p=0,b=0,l[0]=0,f=1,c=1,i=0;else if(b=c-1,i=f,v!==0&&i!==1)for(;t[u+i-1]==="0";)i=i-1;for(v<=s&&s-v>1<<14?v=$p:v=v-s;v>mu;){if(b=b+1,b-p>cN){var ie=l.join("");if(ie.match(/^0+$/)){v=mu;break}else return new Ur(Wi.toBuffer(e?td:rd))}v=v-1}for(;v<$p||c<f;){if(b===0){v=$p,i=0;break}if(c<f?f=f-1:b=b-1,v<mu)v=v+1;else if(ie=l.join(""),ie.match(/^0+$/)){v=mu;break}else return new Ur(Wi.toBuffer(e?td:rd))}if(b-p+1<i&&t[i]!=="0"){var de=o;r&&v===$p&&(u=u+1,de=de+1);var Ze=parseInt(t[u+b+1],10),_=0;if(Ze>=5&&(_=1,Ze===5)){for(_=l[b]%2==1,H=u+b+2;H<de;H++)if(parseInt(t[H],10)){_=1;break}}if(_){for(var Fe=b;Fe>=0&&++l[Fe]>9;Fe--)if(l[Fe]=0,Fe===0)if(v<mu)v=v+1,l[Fe]=1;else return new Ur(Wi.toBuffer(e?td:rd))}}if(O=Re.fromNumber(0),W=Re.fromNumber(0),i===0)O=Re.fromNumber(0),W=Re.fromNumber(0);else if(b-p<17)for(Fe=p,W=Re.fromNumber(l[Fe++]),O=new Re(0,0);Fe<=b;Fe++)W=W.multiply(Re.fromNumber(10)),W=W.add(Re.fromNumber(l[Fe]));else{for(Fe=p,O=Re.fromNumber(l[Fe++]);Fe<=b-17;Fe++)O=O.multiply(Re.fromNumber(10)),O=O.add(Re.fromNumber(l[Fe]));for(W=Re.fromNumber(l[Fe++]);Fe<=b;Fe++)W=W.multiply(Re.fromNumber(10)),W=W.add(Re.fromNumber(l[Fe]))}var Ce=mN(O,Re.fromString("100000000000000000"));Ce.low=Ce.low.add(W),wN(Ce.low,W)&&(Ce.high=Ce.high.add(Re.fromNumber(1))),ne=v+ig;var ge={low:Re.fromNumber(0),high:Re.fromNumber(0)};Ce.high.shiftRightUnsigned(49).and(Re.fromNumber(1)).equals(Re.fromNumber)?(ge.high=ge.high.or(Re.fromNumber(3).shiftLeft(61)),ge.high=ge.high.or(Re.fromNumber(ne).and(Re.fromNumber(16383).shiftLeft(47))),ge.high=ge.high.or(Ce.high.and(Re.fromNumber(140737488355327)))):(ge.high=ge.high.or(Re.fromNumber(ne&16383).shiftLeft(49)),ge.high=ge.high.or(Ce.high.and(Re.fromNumber(562949953421311)))),ge.low=Ce.low,e&&(ge.high=ge.high.or(Re.fromString("9223372036854775808")));var Je=Wi.allocBuffer(16);return U=0,Je[U++]=ge.low.low_&255,Je[U++]=ge.low.low_>>8&255,Je[U++]=ge.low.low_>>16&255,Je[U++]=ge.low.low_>>24&255,Je[U++]=ge.low.high_&255,Je[U++]=ge.low.high_>>8&255,Je[U++]=ge.low.high_>>16&255,Je[U++]=ge.low.high_>>24&255,Je[U++]=ge.high.low_&255,Je[U++]=ge.high.low_>>8&255,Je[U++]=ge.high.low_>>16&255,Je[U++]=ge.high.low_>>24&255,Je[U++]=ge.high.high_&255,Je[U++]=ge.high.high_>>8&255,Je[U++]=ge.high.high_>>16&255,Je[U++]=ge.high.high_>>24&255,new Ur(Je)};var hN=31,MB=16383,bN=30,gN=31;ig=6176;Ur.prototype.toString=function(){for(var t,e,r,n,i,o,f=0,s=new Array(36),u=0;u<s.length;u++)s[u]=0;var l=0,c,w,p=!1,b,v={parts:new Array(4)},H,O,W=[];l=0;var ne=this.bytes;n=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,r=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,e=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,t=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,l=0;var U={low:new Re(n,r),high:new Re(e,t)};if(U.high.lessThan(Re.ZERO)&&W.push("-"),i=t>>26&hN,i>>3==3){if(i===bN)return W.join("")+"Infinity";if(i===gN)return"NaN";o=t>>15&MB,b=8+(t>>14&1)}else b=t>>14&7,o=t>>17&MB;if(c=o-ig,v.parts[0]=(t&16383)+((b&15)<<14),v.parts[1]=e,v.parts[2]=r,v.parts[3]=n,v.parts[0]===0&&v.parts[1]===0&&v.parts[2]===0&&v.parts[3]===0)p=!0;else for(O=3;O>=0;O--){var M=0,P=dN(v);if(v=P.quotient,M=P.rem.low_,!!M)for(H=8;H>=0;H--)s[O*9+H]=M%10,M=Math.floor(M/10)}if(p)f=1,s[l]=0;else for(f=36,u=0;!s[l];)u++,f=f-1,l=l+1;if(w=f-1+c,w>=34||w<=-7||c>0){for(W.push(s[l++]),f=f-1,f&&W.push("."),u=0;u<f;u++)W.push(s[l++]);W.push("E"),w>0?W.push("+"+w):W.push(w)}else if(c>=0)for(u=0;u<f;u++)W.push(s[l++]);else{var F=f+c;if(F>0)for(u=0;u<F;u++)W.push(s[l++]);else W.push("0");for(W.push(".");F++<0;)W.push("0");for(u=0;u<f-Math.max(F-1,0);u++)W.push(s[l++])}return W.join("")};Ur.prototype.toJSON=function(){return{$numberDecimal:this.toString()}};og.exports=Ur;og.exports.Decimal128=Ur});var od=k((KK,fg)=>{function id(){if(!(this instanceof id))return new id;this._bsontype="MinKey"}fg.exports=id;fg.exports.MinKey=id});var sd=k((YK,sg)=>{function fd(){if(!(this instanceof fd))return new fd;this._bsontype="MaxKey"}sg.exports=fd;sg.exports.MaxKey=fd});var ad=k((GK,ag)=>{function wu(t,e,r){if(!(this instanceof wu))return new wu(t,e,r);this._bsontype="DBRef",this.namespace=t,this.oid=e,this.db=r}wu.prototype.toJSON=function(){return{$ref:this.namespace,$id:this.oid,$db:this.db==null?"":this.db}};ag.exports=wu;ag.exports.DBRef=wu});var VB=k(ld=>{"use strict";ld.byteLength=jN;ld.toByteArray=qN;ld.fromByteArray=kN;var ni=[],un=[],yN=typeof Uint8Array!="undefined"?Uint8Array:Array,lg="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(Hf=0,zB=lg.length;Hf<zB;++Hf)ni[Hf]=lg[Hf],un[lg.charCodeAt(Hf)]=Hf;var Hf,zB;un["-".charCodeAt(0)]=62;un["_".charCodeAt(0)]=63;function LB(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");r===-1&&(r=e);var n=r===e?0:4-r%4;return[r,n]}function jN(t){var e=LB(t),r=e[0],n=e[1];return(r+n)*3/4-n}function _N(t,e,r){return(e+r)*3/4-r}function qN(t){var e,r=LB(t),n=r[0],i=r[1],o=new yN(_N(t,n,i)),f=0,s=i>0?n-4:n,u;for(u=0;u<s;u+=4)e=un[t.charCodeAt(u)]<<18|un[t.charCodeAt(u+1)]<<12|un[t.charCodeAt(u+2)]<<6|un[t.charCodeAt(u+3)],o[f++]=e>>16&255,o[f++]=e>>8&255,o[f++]=e&255;return i===2&&(e=un[t.charCodeAt(u)]<<2|un[t.charCodeAt(u+1)]>>4,o[f++]=e&255),i===1&&(e=un[t.charCodeAt(u)]<<10|un[t.charCodeAt(u+1)]<<4|un[t.charCodeAt(u+2)]>>2,o[f++]=e>>8&255,o[f++]=e&255),o}function vN(t){return ni[t>>18&63]+ni[t>>12&63]+ni[t>>6&63]+ni[t&63]}function TN(t,e,r){for(var n,i=[],o=e;o<r;o+=3)n=(t[o]<<16&16711680)+(t[o+1]<<8&65280)+(t[o+2]&255),i.push(vN(n));return i.join("")}function kN(t){for(var e,r=t.length,n=r%3,i=[],o=16383,f=0,s=r-n;f<s;f+=o)i.push(TN(t,f,f+o>s?s:f+o));return n===1?(e=t[r-1],i.push(ni[e>>2]+ni[e<<4&63]+"==")):n===2&&(e=(t[r-2]<<8)+t[r-1],i.push(ni[e>>10]+ni[e>>4&63]+ni[e<<2&63]+"=")),i.join("")}});var CB=k(ug=>{ug.read=function(t,e,r,n,i){var o,f,s=i*8-n-1,u=(1<<s)-1,l=u>>1,c=-7,w=r?i-1:0,p=r?-1:1,b=t[e+w];for(w+=p,o=b&(1<<-c)-1,b>>=-c,c+=s;c>0;o=o*256+t[e+w],w+=p,c-=8);for(f=o&(1<<-c)-1,o>>=-c,c+=n;c>0;f=f*256+t[e+w],w+=p,c-=8);if(o===0)o=1-l;else{if(o===u)return f?NaN:(b?-1:1)*(1/0);f=f+Math.pow(2,n),o=o-l}return(b?-1:1)*f*Math.pow(2,o-n)};ug.write=function(t,e,r,n,i,o){var f,s,u,l=o*8-i-1,c=(1<<l)-1,w=c>>1,p=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,b=n?0:o-1,v=n?1:-1,H=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,f=c):(f=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-f))<1&&(f--,u*=2),f+w>=1?e+=p/u:e+=p*Math.pow(2,1-w),e*u>=2&&(f++,u/=2),f+w>=c?(s=0,f=c):f+w>=1?(s=(e*u-1)*Math.pow(2,i),f=f+w):(s=e*Math.pow(2,w-1)*Math.pow(2,i),f=0));i>=8;t[r+b]=s&255,b+=v,s/=256,i-=8);for(f=f<<i|s,l+=i;l>0;t[r+b]=f&255,b+=v,f/=256,l-=8);t[r+b-v]|=H*128}});var nI=k(Cs=>{"use strict";var cg=VB(),Vs=CB(),WB=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;Cs.Buffer=D;Cs.SlowBuffer=AN;Cs.INSPECT_MAX_BYTES=50;var ud=2147483647;Cs.kMaxLength=ud;D.TYPED_ARRAY_SUPPORT=BN();!D.TYPED_ARRAY_SUPPORT&&typeof console!="undefined"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function BN(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),t.foo()===42}catch{return!1}}Object.defineProperty(D.prototype,"parent",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.buffer}});Object.defineProperty(D.prototype,"offset",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.byteOffset}});function Ki(t){if(t>ud)throw new RangeError('The value "'+t+'" is invalid for option "size"');var e=new Uint8Array(t);return Object.setPrototypeOf(e,D.prototype),e}function D(t,e,r){if(typeof t=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return pg(t)}return KB(t,e,r)}D.poolSize=8192;function KB(t,e,r){if(typeof t=="string")return xN(t,e);if(ArrayBuffer.isView(t))return SN(t);if(t==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(ii(t,ArrayBuffer)||t&&ii(t.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(ii(t,SharedArrayBuffer)||t&&ii(t.buffer,SharedArrayBuffer)))return mg(t,e,r);if(typeof t=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var n=t.valueOf&&t.valueOf();if(n!=null&&n!==t)return D.from(n,e,r);var i=EN(t);if(i)return i;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof t[Symbol.toPrimitive]=="function")return D.from(t[Symbol.toPrimitive]("string"),e,r);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}D.from=function(t,e,r){return KB(t,e,r)};Object.setPrototypeOf(D.prototype,Uint8Array.prototype);Object.setPrototypeOf(D,Uint8Array);function YB(t){if(typeof t!="number")throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function IN(t,e,r){return YB(t),t<=0?Ki(t):e!==void 0?typeof r=="string"?Ki(t).fill(e,r):Ki(t).fill(e):Ki(t)}D.alloc=function(t,e,r){return IN(t,e,r)};function pg(t){return YB(t),Ki(t<0?0:wg(t)|0)}D.allocUnsafe=function(t){return pg(t)};D.allocUnsafeSlow=function(t){return pg(t)};function xN(t,e){if((typeof e!="string"||e==="")&&(e="utf8"),!D.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var r=GB(t,e)|0,n=Ki(r),i=n.write(t,e);return i!==r&&(n=n.slice(0,i)),n}function dg(t){for(var e=t.length<0?0:wg(t.length)|0,r=Ki(e),n=0;n<e;n+=1)r[n]=t[n]&255;return r}function SN(t){if(ii(t,Uint8Array)){var e=new Uint8Array(t);return mg(e.buffer,e.byteOffset,e.byteLength)}return dg(t)}function mg(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('"length" is outside of buffer bounds');var n;return e===void 0&&r===void 0?n=new Uint8Array(t):r===void 0?n=new Uint8Array(t,e):n=new Uint8Array(t,e,r),Object.setPrototypeOf(n,D.prototype),n}function EN(t){if(D.isBuffer(t)){var e=wg(t.length)|0,r=Ki(e);return r.length===0||t.copy(r,0,0,e),r}if(t.length!==void 0)return typeof t.length!="number"||bg(t.length)?Ki(0):dg(t);if(t.type==="Buffer"&&Array.isArray(t.data))return dg(t.data)}function wg(t){if(t>=ud)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+ud.toString(16)+" bytes");return t|0}function AN(t){return+t!=t&&(t=0),D.alloc(+t)}D.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==D.prototype};D.compare=function(e,r){if(ii(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),ii(r,Uint8Array)&&(r=D.from(r,r.offset,r.byteLength)),!D.isBuffer(e)||!D.isBuffer(r))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===r)return 0;for(var n=e.length,i=r.length,o=0,f=Math.min(n,i);o<f;++o)if(e[o]!==r[o]){n=e[o],i=r[o];break}return n<i?-1:i<n?1:0};D.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}};D.concat=function(e,r){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(e.length===0)return D.alloc(0);var n;if(r===void 0)for(r=0,n=0;n<e.length;++n)r+=e[n].length;var i=D.allocUnsafe(r),o=0;for(n=0;n<e.length;++n){var f=e[n];if(ii(f,Uint8Array))o+f.length>i.length?D.from(f).copy(i,o):Uint8Array.prototype.set.call(i,f,o);else if(D.isBuffer(f))f.copy(i,o);else throw new TypeError('"list" argument must be an Array of Buffers');o+=f.length}return i};function GB(t,e){if(D.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||ii(t,ArrayBuffer))return t.byteLength;if(typeof t!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var r=t.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&r===0)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return hg(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r*2;case"hex":return r>>>1;case"base64":return rI(t).length;default:if(i)return n?-1:hg(t).length;e=(""+e).toLowerCase(),i=!0}}D.byteLength=GB;function ON(t,e,r){var n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((r===void 0||r>this.length)&&(r=this.length),r<=0)||(r>>>=0,e>>>=0,r<=e))return"";for(t||(t="utf8");;)switch(t){case"hex":return LN(this,e,r);case"utf8":case"utf-8":return QB(this,e,r);case"ascii":return MN(this,e,r);case"latin1":case"binary":return zN(this,e,r);case"base64":return HN(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return VN(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}D.prototype._isBuffer=!0;function Uf(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}D.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var r=0;r<e;r+=2)Uf(this,r,r+1);return this};D.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var r=0;r<e;r+=4)Uf(this,r,r+3),Uf(this,r+1,r+2);return this};D.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var r=0;r<e;r+=8)Uf(this,r,r+7),Uf(this,r+1,r+6),Uf(this,r+2,r+5),Uf(this,r+3,r+4);return this};D.prototype.toString=function(){var e=this.length;return e===0?"":arguments.length===0?QB(this,0,e):ON.apply(this,arguments)};D.prototype.toLocaleString=D.prototype.toString;D.prototype.equals=function(e){if(!D.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e?!0:D.compare(this,e)===0};D.prototype.inspect=function(){var e="",r=Cs.INSPECT_MAX_BYTES;return e=this.toString("hex",0,r).replace(/(.{2})/g,"$1 ").trim(),this.length>r&&(e+=" ... "),"<Buffer "+e+">"};WB&&(D.prototype[WB]=D.prototype.inspect);D.prototype.compare=function(e,r,n,i,o){if(ii(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),!D.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(r===void 0&&(r=0),n===void 0&&(n=e?e.length:0),i===void 0&&(i=0),o===void 0&&(o=this.length),r<0||n>e.length||i<0||o>this.length)throw new RangeError("out of range index");if(i>=o&&r>=n)return 0;if(i>=o)return-1;if(r>=n)return 1;if(r>>>=0,n>>>=0,i>>>=0,o>>>=0,this===e)return 0;for(var f=o-i,s=n-r,u=Math.min(f,s),l=this.slice(i,o),c=e.slice(r,n),w=0;w<u;++w)if(l[w]!==c[w]){f=l[w],s=c[w];break}return f<s?-1:s<f?1:0};function ZB(t,e,r,n,i){if(t.length===0)return-1;if(typeof r=="string"?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,bg(r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0)if(i)r=0;else return-1;if(typeof e=="string"&&(e=D.from(e,n)),D.isBuffer(e))return e.length===0?-1:JB(t,e,r,n,i);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):JB(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function JB(t,e,r,n,i){var o=1,f=t.length,s=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(t.length<2||e.length<2)return-1;o=2,f/=2,s/=2,r/=2}function u(b,v){return o===1?b[v]:b.readUInt16BE(v*o)}var l;if(i){var c=-1;for(l=r;l<f;l++)if(u(t,l)===u(e,c===-1?0:l-c)){if(c===-1&&(c=l),l-c+1===s)return c*o}else c!==-1&&(l-=l-c),c=-1}else for(r+s>f&&(r=f-s),l=r;l>=0;l--){for(var w=!0,p=0;p<s;p++)if(u(t,l+p)!==u(e,p)){w=!1;break}if(w)return l}return-1}D.prototype.includes=function(e,r,n){return this.indexOf(e,r,n)!==-1};D.prototype.indexOf=function(e,r,n){return ZB(this,e,r,n,!0)};D.prototype.lastIndexOf=function(e,r,n){return ZB(this,e,r,n,!1)};function FN(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n),n>i&&(n=i)):n=i;var o=e.length;n>o/2&&(n=o/2);for(var f=0;f<n;++f){var s=parseInt(e.substr(f*2,2),16);if(bg(s))return f;t[r+f]=s}return f}function DN(t,e,r,n){return cd(hg(e,t.length-r),t,r,n)}function NN(t,e,r,n){return cd(KN(e),t,r,n)}function PN(t,e,r,n){return cd(rI(e),t,r,n)}function RN(t,e,r,n){return cd(YN(e,t.length-r),t,r,n)}D.prototype.write=function(e,r,n,i){if(r===void 0)i="utf8",n=this.length,r=0;else if(n===void 0&&typeof r=="string")i=r,n=this.length,r=0;else if(isFinite(r))r=r>>>0,isFinite(n)?(n=n>>>0,i===void 0&&(i="utf8")):(i=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var o=this.length-r;if((n===void 0||n>o)&&(n=o),e.length>0&&(n<0||r<0)||r>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var f=!1;;)switch(i){case"hex":return FN(this,e,r,n);case"utf8":case"utf-8":return DN(this,e,r,n);case"ascii":case"latin1":case"binary":return NN(this,e,r,n);case"base64":return PN(this,e,r,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return RN(this,e,r,n);default:if(f)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),f=!0}};D.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function HN(t,e,r){return e===0&&r===t.length?cg.fromByteArray(t):cg.fromByteArray(t.slice(e,r))}function QB(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var o=t[i],f=null,s=o>239?4:o>223?3:o>191?2:1;if(i+s<=r){var u,l,c,w;switch(s){case 1:o<128&&(f=o);break;case 2:u=t[i+1],(u&192)==128&&(w=(o&31)<<6|u&63,w>127&&(f=w));break;case 3:u=t[i+1],l=t[i+2],(u&192)==128&&(l&192)==128&&(w=(o&15)<<12|(u&63)<<6|l&63,w>2047&&(w<55296||w>57343)&&(f=w));break;case 4:u=t[i+1],l=t[i+2],c=t[i+3],(u&192)==128&&(l&192)==128&&(c&192)==128&&(w=(o&15)<<18|(u&63)<<12|(l&63)<<6|c&63,w>65535&&w<1114112&&(f=w))}}f===null?(f=65533,s=1):f>65535&&(f-=65536,n.push(f>>>10&1023|55296),f=56320|f&1023),n.push(f),i+=s}return UN(n)}var XB=4096;function UN(t){var e=t.length;if(e<=XB)return String.fromCharCode.apply(String,t);for(var r="",n=0;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=XB));return r}function MN(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]&127);return n}function zN(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]);return n}function LN(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=e;o<r;++o)i+=GN[t[o]];return i}function VN(t,e,r){for(var n=t.slice(e,r),i="",o=0;o<n.length-1;o+=2)i+=String.fromCharCode(n[o]+n[o+1]*256);return i}D.prototype.slice=function(e,r){var n=this.length;e=~~e,r=r===void 0?n:~~r,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),r<0?(r+=n,r<0&&(r=0)):r>n&&(r=n),r<e&&(r=e);var i=this.subarray(e,r);return Object.setPrototypeOf(i,D.prototype),i};function nr(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}D.prototype.readUintLE=D.prototype.readUIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||nr(e,r,this.length);for(var i=this[e],o=1,f=0;++f<r&&(o*=256);)i+=this[e+f]*o;return i};D.prototype.readUintBE=D.prototype.readUIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||nr(e,r,this.length);for(var i=this[e+--r],o=1;r>0&&(o*=256);)i+=this[e+--r]*o;return i};D.prototype.readUint8=D.prototype.readUInt8=function(e,r){return e=e>>>0,r||nr(e,1,this.length),this[e]};D.prototype.readUint16LE=D.prototype.readUInt16LE=function(e,r){return e=e>>>0,r||nr(e,2,this.length),this[e]|this[e+1]<<8};D.prototype.readUint16BE=D.prototype.readUInt16BE=function(e,r){return e=e>>>0,r||nr(e,2,this.length),this[e]<<8|this[e+1]};D.prototype.readUint32LE=D.prototype.readUInt32LE=function(e,r){return e=e>>>0,r||nr(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216};D.prototype.readUint32BE=D.prototype.readUInt32BE=function(e,r){return e=e>>>0,r||nr(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])};D.prototype.readIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||nr(e,r,this.length);for(var i=this[e],o=1,f=0;++f<r&&(o*=256);)i+=this[e+f]*o;return o*=128,i>=o&&(i-=Math.pow(2,8*r)),i};D.prototype.readIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||nr(e,r,this.length);for(var i=r,o=1,f=this[e+--i];i>0&&(o*=256);)f+=this[e+--i]*o;return o*=128,f>=o&&(f-=Math.pow(2,8*r)),f};D.prototype.readInt8=function(e,r){return e=e>>>0,r||nr(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]};D.prototype.readInt16LE=function(e,r){e=e>>>0,r||nr(e,2,this.length);var n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n};D.prototype.readInt16BE=function(e,r){e=e>>>0,r||nr(e,2,this.length);var n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n};D.prototype.readInt32LE=function(e,r){return e=e>>>0,r||nr(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24};D.prototype.readInt32BE=function(e,r){return e=e>>>0,r||nr(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]};D.prototype.readFloatLE=function(e,r){return e=e>>>0,r||nr(e,4,this.length),Vs.read(this,e,!0,23,4)};D.prototype.readFloatBE=function(e,r){return e=e>>>0,r||nr(e,4,this.length),Vs.read(this,e,!1,23,4)};D.prototype.readDoubleLE=function(e,r){return e=e>>>0,r||nr(e,8,this.length),Vs.read(this,e,!0,52,8)};D.prototype.readDoubleBE=function(e,r){return e=e>>>0,r||nr(e,8,this.length),Vs.read(this,e,!1,52,8)};function Mr(t,e,r,n,i,o){if(!D.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<o)throw new RangeError('"value" argument is out of bounds');if(r+n>t.length)throw new RangeError("Index out of range")}D.prototype.writeUintLE=D.prototype.writeUIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var o=Math.pow(2,8*n)-1;Mr(this,e,r,n,o,0)}var f=1,s=0;for(this[r]=e&255;++s<n&&(f*=256);)this[r+s]=e/f&255;return r+n};D.prototype.writeUintBE=D.prototype.writeUIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var o=Math.pow(2,8*n)-1;Mr(this,e,r,n,o,0)}var f=n-1,s=1;for(this[r+f]=e&255;--f>=0&&(s*=256);)this[r+f]=e/s&255;return r+n};D.prototype.writeUint8=D.prototype.writeUInt8=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,1,255,0),this[r]=e&255,r+1};D.prototype.writeUint16LE=D.prototype.writeUInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,2,65535,0),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeUint16BE=D.prototype.writeUInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,2,65535,0),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeUint32LE=D.prototype.writeUInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,4,4294967295,0),this[r+3]=e>>>24,this[r+2]=e>>>16,this[r+1]=e>>>8,this[r]=e&255,r+4};D.prototype.writeUint32BE=D.prototype.writeUInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,4,4294967295,0),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};D.prototype.writeIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var o=Math.pow(2,8*n-1);Mr(this,e,r,n,o-1,-o)}var f=0,s=1,u=0;for(this[r]=e&255;++f<n&&(s*=256);)e<0&&u===0&&this[r+f-1]!==0&&(u=1),this[r+f]=(e/s>>0)-u&255;return r+n};D.prototype.writeIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var o=Math.pow(2,8*n-1);Mr(this,e,r,n,o-1,-o)}var f=n-1,s=1,u=0;for(this[r+f]=e&255;--f>=0&&(s*=256);)e<0&&u===0&&this[r+f+1]!==0&&(u=1),this[r+f]=(e/s>>0)-u&255;return r+n};D.prototype.writeInt8=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,1,127,-128),e<0&&(e=255+e+1),this[r]=e&255,r+1};D.prototype.writeInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,2,32767,-32768),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,2,32767,-32768),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,4,2147483647,-2147483648),this[r]=e&255,this[r+1]=e>>>8,this[r+2]=e>>>16,this[r+3]=e>>>24,r+4};D.prototype.writeInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Mr(this,e,r,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};function $B(t,e,r,n,i,o){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function eI(t,e,r,n,i){return e=+e,r=r>>>0,i||$B(t,e,r,4,34028234663852886e22,-34028234663852886e22),Vs.write(t,e,r,n,23,4),r+4}D.prototype.writeFloatLE=function(e,r,n){return eI(this,e,r,!0,n)};D.prototype.writeFloatBE=function(e,r,n){return eI(this,e,r,!1,n)};function tI(t,e,r,n,i){return e=+e,r=r>>>0,i||$B(t,e,r,8,17976931348623157e292,-17976931348623157e292),Vs.write(t,e,r,n,52,8),r+8}D.prototype.writeDoubleLE=function(e,r,n){return tI(this,e,r,!0,n)};D.prototype.writeDoubleBE=function(e,r,n){return tI(this,e,r,!1,n)};D.prototype.copy=function(e,r,n,i){if(!D.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!i&&i!==0&&(i=this.length),r>=e.length&&(r=e.length),r||(r=0),i>0&&i<n&&(i=n),i===n||e.length===0||this.length===0)return 0;if(r<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-r<i-n&&(i=e.length-r+n);var o=i-n;return this===e&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(r,n,i):Uint8Array.prototype.set.call(e,this.subarray(n,i),r),o};D.prototype.fill=function(e,r,n,i){if(typeof e=="string"){if(typeof r=="string"?(i=r,r=0,n=this.length):typeof n=="string"&&(i=n,n=this.length),i!==void 0&&typeof i!="string")throw new TypeError("encoding must be a string");if(typeof i=="string"&&!D.isEncoding(i))throw new TypeError("Unknown encoding: "+i);if(e.length===1){var o=e.charCodeAt(0);(i==="utf8"&&o<128||i==="latin1")&&(e=o)}}else typeof e=="number"?e=e&255:typeof e=="boolean"&&(e=Number(e));if(r<0||this.length<r||this.length<n)throw new RangeError("Out of range index");if(n<=r)return this;r=r>>>0,n=n===void 0?this.length:n>>>0,e||(e=0);var f;if(typeof e=="number")for(f=r;f<n;++f)this[f]=e;else{var s=D.isBuffer(e)?e:D.from(e,i),u=s.length;if(u===0)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(f=0;f<n-r;++f)this[f+r]=s[f%u]}return this};var CN=/[^+/0-9A-Za-z-_]/g;function WN(t){if(t=t.split("=")[0],t=t.trim().replace(CN,""),t.length<2)return"";for(;t.length%4!=0;)t=t+"=";return t}function hg(t,e){e=e||1/0;for(var r,n=t.length,i=null,o=[],f=0;f<n;++f){if(r=t.charCodeAt(f),r>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&o.push(239,191,189);continue}else if(f+1===n){(e-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;o.push(r)}else if(r<2048){if((e-=2)<0)break;o.push(r>>6|192,r&63|128)}else if(r<65536){if((e-=3)<0)break;o.push(r>>12|224,r>>6&63|128,r&63|128)}else if(r<1114112){if((e-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,r&63|128)}else throw new Error("Invalid code point")}return o}function KN(t){for(var e=[],r=0;r<t.length;++r)e.push(t.charCodeAt(r)&255);return e}function YN(t,e){for(var r,n,i,o=[],f=0;f<t.length&&!((e-=2)<0);++f)r=t.charCodeAt(f),n=r>>8,i=r%256,o.push(i),o.push(n);return o}function rI(t){return cg.toByteArray(WN(t))}function cd(t,e,r,n){for(var i=0;i<n&&!(i+r>=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function ii(t,e){return t instanceof e||t!=null&&t.constructor!=null&&t.constructor.name!=null&&t.constructor.name===e.name}function bg(t){return t!==t}var GN=function(){for(var t="0123456789abcdef",e=new Array(256),r=0;r<16;++r)for(var n=r*16,i=0;i<16;++i)e[n+i]=t[r]+t[i];return e}()});var hu=k((XK,gg)=>{typeof global!="undefined"&&(ar=nI().Buffer);var ar,pd=Ao();function yt(t,e){if(!(this instanceof yt))return new yt(t,e);if(t!=null&&typeof t!="string"&&!ar.isBuffer(t)&&!(t instanceof Uint8Array)&&!Array.isArray(t))throw new Error("only String, Buffer, Uint8Array or Array accepted");if(this._bsontype="Binary",t instanceof Number?(this.sub_type=t,this.position=0):(this.sub_type=e??ZN,this.position=0),t!=null&&!(t instanceof Number)){if(typeof t=="string")if(typeof ar!="undefined")this.buffer=pd.toBuffer(t);else if(typeof Uint8Array!="undefined"||Object.prototype.toString.call(t)==="[object Array]")this.buffer=JN(t);else throw new Error("only String, Buffer, Uint8Array or Array accepted");else this.buffer=t;this.position=t.length}else typeof ar!="undefined"?this.buffer=pd.allocBuffer(yt.BUFFER_SIZE):typeof Uint8Array!="undefined"?this.buffer=new Uint8Array(new ArrayBuffer(yt.BUFFER_SIZE)):this.buffer=new Array(yt.BUFFER_SIZE),this.position=0}yt.prototype.put=function(e){if(e.length!=null&&typeof e!="number"&&e.length!==1)throw new Error("only accepts single character String, Uint8Array or Array");if(typeof e!="number"&&e<0||e>255)throw new Error("only accepts number in a valid unsigned byte range 0-255");var r=null;if(typeof e=="string"?r=e.charCodeAt(0):e.length!=null?r=e[0]:r=e,this.buffer.length>this.position)this.buffer[this.position++]=r;else if(typeof ar!="undefined"&&ar.isBuffer(this.buffer)){var n=pd.allocBuffer(yt.BUFFER_SIZE+this.buffer.length);this.buffer.copy(n,0,0,this.buffer.length),this.buffer=n,this.buffer[this.position++]=r}else{n=null,Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?n=new Uint8Array(new ArrayBuffer(yt.BUFFER_SIZE+this.buffer.length)):n=new Array(yt.BUFFER_SIZE+this.buffer.length);for(var i=0;i<this.buffer.length;i++)n[i]=this.buffer[i];this.buffer=n,this.buffer[this.position++]=r}};yt.prototype.write=function(e,r){if(r=typeof r=="number"?r:this.position,this.buffer.length<r+e.length){var n=null;if(typeof ar!="undefined"&&ar.isBuffer(this.buffer))n=pd.allocBuffer(this.buffer.length+e.length),this.buffer.copy(n,0,0,this.buffer.length);else if(Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"){n=new Uint8Array(new ArrayBuffer(this.buffer.length+e.length));for(var i=0;i<this.position;i++)n[i]=this.buffer[i]}this.buffer=n}if(typeof ar!="undefined"&&ar.isBuffer(e)&&ar.isBuffer(this.buffer))e.copy(this.buffer,r,0,e.length),this.position=r+e.length>this.position?r+e.length:this.position;else if(typeof ar!="undefined"&&typeof e=="string"&&ar.isBuffer(this.buffer))this.buffer.write(e,r,"binary"),this.position=r+e.length>this.position?r+e.length:this.position;else if(Object.prototype.toString.call(e)==="[object Uint8Array]"||Object.prototype.toString.call(e)==="[object Array]"&&typeof e!="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e[i];this.position=r>this.position?r:this.position}else if(typeof e=="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e.charCodeAt(i);this.position=r>this.position?r:this.position}};yt.prototype.read=function(e,r){if(r=r&&r>0?r:this.position,this.buffer.slice)return this.buffer.slice(e,e+r);for(var n=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(r)):new Array(r),i=0;i<r;i++)n[i]=this.buffer[e++];return n};yt.prototype.value=function(e){if(e=e??!1,e&&typeof ar!="undefined"&&ar.isBuffer(this.buffer)&&this.buffer.length===this.position)return this.buffer;if(typeof ar!="undefined"&&ar.isBuffer(this.buffer))return e?this.buffer.slice(0,this.position):this.buffer.toString("binary",0,this.position);if(e){if(this.buffer.slice!=null)return this.buffer.slice(0,this.position);for(var r=Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?new Uint8Array(new ArrayBuffer(this.position)):new Array(this.position),n=0;n<this.position;n++)r[n]=this.buffer[n];return r}else return QN(this.buffer,0,this.position)};yt.prototype.length=function(){return this.position};yt.prototype.toJSON=function(){return this.buffer!=null?this.buffer.toString("base64"):""};yt.prototype.toString=function(t){return this.buffer!=null?this.buffer.slice(0,this.position).toString(t):""};var ZN=0,JN=function(t){for(var e=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(t.length)):new Array(t.length),r=0;r<t.length;r++)e[r]=t.charCodeAt(r);return e},QN=function(t,e,r){for(var n="",i=e;i<r;i++)n=n+String.fromCharCode(t[i]);return n};yt.BUFFER_SIZE=256;yt.SUBTYPE_DEFAULT=0;yt.SUBTYPE_FUNCTION=1;yt.SUBTYPE_BYTE_ARRAY=2;yt.SUBTYPE_UUID_OLD=3;yt.SUBTYPE_UUID=4;yt.SUBTYPE_MD5=5;yt.SUBTYPE_USER_DEFINED=128;gg.exports=yt;gg.exports.Binary=yt});var iI=k((exports,module)=>{"use strict";var Long=Ms().Long,Double=Vp().Double,Timestamp=Cp().Timestamp,ObjectID=Gp().ObjectID,Symbol=Qp().Symbol,Code=Xp().Code,MinKey=od().MinKey,MaxKey=sd().MaxKey,Decimal128=nd(),Int32=tg(),DBRef=ad().DBRef,BSONRegExp=Jp().BSONRegExp,Binary=hu().Binary,utils=Ao(),deserialize=function(t,e,r){e=e??{};var n=e&&e.index?e.index:0,i=t[n]|t[n+1]<<8|t[n+2]<<16|t[n+3]<<24;if(i<5||t.length<i||i+n>t.length)throw new Error("corrupt bson message");if(t[n+i-1]!==0)throw new Error("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");return deserializeObject(t,n,e,r)},deserializeObject=function(t,e,r,n){var i=r.evalFunctions==null?!1:r.evalFunctions,o=r.cacheFunctions==null?!1:r.cacheFunctions,f=r.cacheFunctionsCrc32==null?!1:r.cacheFunctionsCrc32;if(!f)var s=null;var u=r.fieldsAsRaw==null?null:r.fieldsAsRaw,l=r.raw==null?!1:r.raw,c=typeof r.bsonRegExp=="boolean"?r.bsonRegExp:!1,w=r.promoteBuffers==null?!1:r.promoteBuffers,p=r.promoteLongs==null?!0:r.promoteLongs,b=r.promoteValues==null?!0:r.promoteValues,v=e;if(t.length<5)throw new Error("corrupt bson message < 5 bytes long");var H=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(H<5||H>t.length)throw new Error("corrupt bson message");for(var O=n?[]:{},W=0,ne=!1;!ne;){var U=t[e++];if(U===0)break;for(var M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");var P=n?W++:t.toString("utf8",e,M);if(e=M+1,U===BSON.BSON_DATA_STRING){var F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[P]=t.toString("utf8",e,e+F-1),e=e+F}else if(U===BSON.BSON_DATA_OID){var ae=utils.allocBuffer(12);t.copy(ae,0,e,e+12),O[P]=new ObjectID(ae),e=e+12}else if(U===BSON.BSON_DATA_INT&&b===!1)O[P]=new Int32(t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24);else if(U===BSON.BSON_DATA_INT)O[P]=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;else if(U===BSON.BSON_DATA_NUMBER&&b===!1)O[P]=new Double(t.readDoubleLE(e)),e=e+8;else if(U===BSON.BSON_DATA_NUMBER)O[P]=t.readDoubleLE(e),e=e+8;else if(U===BSON.BSON_DATA_DATE){var ie=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,de=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;O[P]=new Date(new Long(ie,de).toNumber())}else if(U===BSON.BSON_DATA_BOOLEAN){if(t[e]!==0&&t[e]!==1)throw new Error("illegal boolean type value");O[P]=t[e++]===1}else if(U===BSON.BSON_DATA_OBJECT){var Ze=e,_=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;if(_<=0||_>t.length-e)throw new Error("bad embedded document length in bson");l?O[P]=t.slice(e,e+_):O[P]=deserializeObject(t,Ze,r,!1),e=e+_}else if(U===BSON.BSON_DATA_ARRAY){Ze=e,_=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var Fe=r,Ce=e+_;if(u&&u[P]){Fe={};for(var ge in r)Fe[ge]=r[ge];Fe.raw=!0}if(O[P]=deserializeObject(t,Ze,Fe,!0),e=e+_,t[e-1]!==0)throw new Error("invalid array terminator byte");if(e!==Ce)throw new Error("corrupted array bson")}else if(U===BSON.BSON_DATA_UNDEFINED)O[P]=void 0;else if(U===BSON.BSON_DATA_NULL)O[P]=null;else if(U===BSON.BSON_DATA_LONG){ie=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,de=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;var Je=new Long(ie,de);p&&b===!0?O[P]=Je.lessThanOrEqual(JS_INT_MAX_LONG)&&Je.greaterThanOrEqual(JS_INT_MIN_LONG)?Je.toNumber():Je:O[P]=Je}else if(U===BSON.BSON_DATA_DECIMAL128){var te=utils.allocBuffer(16);t.copy(te,0,e,e+16),e=e+16;var kt=new Decimal128(te);O[P]=kt.toObject?kt.toObject():kt}else if(U===BSON.BSON_DATA_BINARY){var st=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,Sr=st,xi=t[e++];if(st<0)throw new Error("Negative binary type element size found");if(st>t.length)throw new Error("Binary type size larger than document size");if(t.slice!=null){if(xi===Binary.SUBTYPE_BYTE_ARRAY){if(st=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,st<0)throw new Error("Negative binary type element size found for subtype 0x02");if(st>Sr-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(st<Sr-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}w&&b?O[P]=t.slice(e,e+st):O[P]=new Binary(t.slice(e,e+st),xi)}else{var bf=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(st)):new Array(st);if(xi===Binary.SUBTYPE_BYTE_ARRAY){if(st=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,st<0)throw new Error("Negative binary type element size found for subtype 0x02");if(st>Sr-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(st<Sr-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}for(M=0;M<st;M++)bf[M]=t[e+M];w&&b?O[P]=bf:O[P]=new Binary(bf,xi)}e=e+st}else if(U===BSON.BSON_DATA_REGEXP&&c===!1){for(M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");var gf=t.toString("utf8",e,M);for(e=M+1,M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");var En=t.toString("utf8",e,M);e=M+1;var Cr=new Array(En.length);for(M=0;M<En.length;M++)switch(En[M]){case"m":Cr[M]="m";break;case"s":Cr[M]="g";break;case"i":Cr[M]="i";break}O[P]=new RegExp(gf,Cr.join(""))}else if(U===BSON.BSON_DATA_REGEXP&&c===!0){for(M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");for(gf=t.toString("utf8",e,M),e=M+1,M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");En=t.toString("utf8",e,M),e=M+1,O[P]=new BSONRegExp(gf,En)}else if(U===BSON.BSON_DATA_SYMBOL){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[P]=new Symbol(t.toString("utf8",e,e+F-1)),e=e+F}else if(U===BSON.BSON_DATA_TIMESTAMP)ie=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,de=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,O[P]=new Timestamp(ie,de);else if(U===BSON.BSON_DATA_MIN_KEY)O[P]=new MinKey;else if(U===BSON.BSON_DATA_MAX_KEY)O[P]=new MaxKey;else if(U===BSON.BSON_DATA_CODE){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var Zt=t.toString("utf8",e,e+F-1);if(i)if(o){var Si=f?s(Zt):Zt;O[P]=isolateEvalWithHash(functionCache,Si,Zt,O)}else O[P]=isolateEval(Zt);else O[P]=new Code(Zt);e=e+F}else if(U===BSON.BSON_DATA_CODE_W_SCOPE){var An=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(An<4+4+4+1)throw new Error("code_w_scope total size shorter minimum expected length");if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");Zt=t.toString("utf8",e,e+F-1),e=e+F,Ze=e,_=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var C=deserializeObject(t,Ze,r,!1);if(e=e+_,An<4+4+_+F)throw new Error("code_w_scope total size is to short, truncating scope");if(An>4+4+_+F)throw new Error("code_w_scope total size is to long, clips outer document");i?(o?(Si=f?s(Zt):Zt,O[P]=isolateEvalWithHash(functionCache,Si,Zt,O)):O[P]=isolateEval(Zt),O[P].scope=C):O[P]=new Code(Zt,C)}else if(U===BSON.BSON_DATA_DBPOINTER){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var cs=t.toString("utf8",e,e+F-1);e=e+F;var ps=utils.allocBuffer(12);t.copy(ps,0,e,e+12),ae=new ObjectID(ps),e=e+12;var jr=cs.split("."),yf=jr.shift(),Za=jr.join(".");O[P]=new DBRef(Za,ae,yf)}else throw new Error("Detected unknown BSON type "+U.toString(16)+' for fieldname "'+P+'", are you using the latest BSON parser')}if(H!==e-v)throw n?new Error("corrupt array bson"):new Error("corrupt object bson");return O.$id!=null&&(O=new DBRef(O.$ref,O.$id,O.$db)),O},isolateEvalWithHash=function(functionCache,hash,functionString,object){var value=null;return functionCache[hash]==null&&(eval("value = "+functionString),functionCache[hash]=value),functionCache[hash].bind(object)},isolateEval=function(functionString){var value=null;return eval("value = "+functionString),value},BSON={},functionCache=BSON.functionCache={};BSON.BSON_DATA_NUMBER=1;BSON.BSON_DATA_STRING=2;BSON.BSON_DATA_OBJECT=3;BSON.BSON_DATA_ARRAY=4;BSON.BSON_DATA_BINARY=5;BSON.BSON_DATA_UNDEFINED=6;BSON.BSON_DATA_OID=7;BSON.BSON_DATA_BOOLEAN=8;BSON.BSON_DATA_DATE=9;BSON.BSON_DATA_NULL=10;BSON.BSON_DATA_REGEXP=11;BSON.BSON_DATA_DBPOINTER=12;BSON.BSON_DATA_CODE=13;BSON.BSON_DATA_SYMBOL=14;BSON.BSON_DATA_CODE_W_SCOPE=15;BSON.BSON_DATA_INT=16;BSON.BSON_DATA_TIMESTAMP=17;BSON.BSON_DATA_LONG=18;BSON.BSON_DATA_DECIMAL128=19;BSON.BSON_DATA_MIN_KEY=255;BSON.BSON_DATA_MAX_KEY=127;BSON.BSON_BINARY_SUBTYPE_DEFAULT=0;BSON.BSON_BINARY_SUBTYPE_FUNCTION=1;BSON.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;BSON.BSON_BINARY_SUBTYPE_UUID=3;BSON.BSON_BINARY_SUBTYPE_MD5=4;BSON.BSON_BINARY_SUBTYPE_USER_DEFINED=128;BSON.BSON_INT32_MAX=2147483647;BSON.BSON_INT32_MIN=-2147483648;BSON.BSON_INT64_MAX=Math.pow(2,63)-1;BSON.BSON_INT64_MIN=-Math.pow(2,63);BSON.JS_INT_MAX=9007199254740992;BSON.JS_INT_MIN=-9007199254740992;var JS_INT_MAX_LONG=Long.fromNumber(9007199254740992),JS_INT_MIN_LONG=Long.fromNumber(-9007199254740992);module.exports=deserialize});var oI=k(yg=>{var XN=function(t,e,r,n,i){var o,f,s=r==="big",u=i*8-n-1,l=(1<<u)-1,c=l>>1,w=-7,p=s?0:i-1,b=s?1:-1,v=t[e+p];for(p+=b,o=v&(1<<-w)-1,v>>=-w,w+=u;w>0;o=o*256+t[e+p],p+=b,w-=8);for(f=o&(1<<-w)-1,o>>=-w,w+=n;w>0;f=f*256+t[e+p],p+=b,w-=8);if(o===0)o=1-c;else{if(o===l)return f?NaN:(v?-1:1)*(1/0);f=f+Math.pow(2,n),o=o-c}return(v?-1:1)*f*Math.pow(2,o-n)},$N=function(t,e,r,n,i,o){var f,s,u,l=n==="big",c=o*8-i-1,w=(1<<c)-1,p=w>>1,b=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,v=l?o-1:0,H=l?-1:1,O=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,f=w):(f=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-f))<1&&(f--,u*=2),f+p>=1?e+=b/u:e+=b*Math.pow(2,1-p),e*u>=2&&(f++,u/=2),f+p>=w?(s=0,f=w):f+p>=1?(s=(e*u-1)*Math.pow(2,i),f=f+p):(s=e*Math.pow(2,p-1)*Math.pow(2,i),f=0));i>=8;t[r+v]=s&255,v+=H,s/=256,i-=8);for(f=f<<i|s,c+=i;c>0;t[r+v]=f&255,v+=H,f/=256,c-=8);t[r+v-H]|=O*128};yg.readIEEE754=XN;yg.writeIEEE754=$N});var uI=k((eY,lI)=>{"use strict";var jg=oI().writeIEEE754,fI=Ms().Long,eP=Yb(),sI=hu().Binary,tP=Ao().normalizedFunctionString,dd=/\x00/,aI=["$db","$ref","$id","$clusterTime"],_g=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},qg=function(e){return Object.prototype.toString.call(e)==="[object RegExp]"},vg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_STRING;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o+1,t[n-1]=0;var f=t.write(r,n+4,"utf8");return t[n+3]=f+1>>24&255,t[n+2]=f+1>>16&255,t[n+1]=f+1>>8&255,t[n]=f+1&255,n=n+4+f,t[n++]=0,n},Tg=function(t,e,r,n,i){if(Math.floor(r)===r&&r>=ee.JS_INT_MIN&&r<=ee.JS_INT_MAX)if(r>=ee.BSON_INT32_MIN&&r<=ee.BSON_INT32_MAX){t[n++]=ee.BSON_DATA_INT;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255}else if(r>=ee.JS_INT_MIN&&r<=ee.JS_INT_MAX)t[n++]=ee.BSON_DATA_NUMBER,o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+o,t[n++]=0,jg(t,r,n,"little",52,8),n=n+8;else{t[n++]=ee.BSON_DATA_LONG,o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+o,t[n++]=0;var f=fI.fromNumber(r),s=f.getLowBits(),u=f.getHighBits();t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255}else t[n++]=ee.BSON_DATA_NUMBER,o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+o,t[n++]=0,jg(t,r,n,"little",52,8),n=n+8;return n},bu=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_NULL;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,n},kg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_BOOLEAN;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,t[n++]=r?1:0,n},Bg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_DATE;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=fI.fromNumber(r.getTime()),s=f.getLowBits(),u=f.getHighBits();return t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255,n},Ig=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_REGEXP;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+o,t[n++]=0,r.source&&r.source.match(dd)!=null)throw Error("value "+r.source+" must not contain null bytes");return n=n+t.write(r.source,n,"utf8"),t[n++]=0,r.global&&(t[n++]=115),r.ignoreCase&&(t[n++]=105),r.multiline&&(t[n++]=109),t[n++]=0,n},xg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_REGEXP;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+o,t[n++]=0,r.pattern.match(dd)!=null)throw Error("pattern "+r.pattern+" must not contain null bytes");return n=n+t.write(r.pattern,n,"utf8"),t[n++]=0,n=n+t.write(r.options.split("").sort().join(""),n,"utf8"),t[n++]=0,n},Sg=function(t,e,r,n,i){r===null?t[n++]=ee.BSON_DATA_NULL:r._bsontype==="MinKey"?t[n++]=ee.BSON_DATA_MIN_KEY:t[n++]=ee.BSON_DATA_MAX_KEY;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,n},Eg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_OID;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+o,t[n++]=0,typeof r.id=="string")t.write(r.id,n,"binary");else if(r.id&&r.id.copy)r.id.copy(t,n,0,12);else throw new Error("object ["+JSON.stringify(r)+"] is not a valid ObjectId");return n+12},Ag=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_BINARY;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=r.length;return t[n++]=f&255,t[n++]=f>>8&255,t[n++]=f>>16&255,t[n++]=f>>24&255,t[n++]=ee.BSON_BINARY_SUBTYPE_DEFAULT,r.copy(t,n,0,f),n=n+f,n},Og=function(t,e,r,n,i,o,f,s,u,l){for(var c=0;c<l.length;c++)if(l[c]===r)throw new Error("cyclic dependency detected");l.push(r),t[n++]=Array.isArray(r)?ee.BSON_DATA_ARRAY:ee.BSON_DATA_OBJECT;var w=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+w,t[n++]=0;var p=gu(t,r,i,n,o+1,f,s,l);return l.pop(),p},Fg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_DECIMAL128;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,r.bytes.copy(t,n,0,16),n+16},Dg=function(t,e,r,n,i){t[n++]=r._bsontype==="Long"?ee.BSON_DATA_LONG:ee.BSON_DATA_TIMESTAMP;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=r.getLowBits(),s=r.getHighBits();return t[n++]=f&255,t[n++]=f>>8&255,t[n++]=f>>16&255,t[n++]=f>>24&255,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,n},Ng=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_INT;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255,n},Pg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_NUMBER;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,jg(t,r,n,"little",52,8),n=n+8,n},Rg=function(t,e,r,n,i,o,f){t[n++]=ee.BSON_DATA_CODE;var s=f?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=tP(r),l=t.write(u,n+4,"utf8")+1;return t[n]=l&255,t[n+1]=l>>8&255,t[n+2]=l>>16&255,t[n+3]=l>>24&255,n=n+4+l-1,t[n++]=0,n},Hg=function(t,e,r,n,i,o,f,s,u){if(r.scope&&typeof r.scope=="object"){t[n++]=ee.BSON_DATA_CODE_W_SCOPE;var l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+l,t[n++]=0;var c=n,w=typeof r.code=="string"?r.code:r.code.toString();n=n+4;var p=t.write(w,n+4,"utf8")+1;t[n]=p&255,t[n+1]=p>>8&255,t[n+2]=p>>16&255,t[n+3]=p>>24&255,t[n+4+p-1]=0,n=n+p+4;var b=gu(t,r.scope,i,n,o+1,f,s);n=b-1;var v=b-c;t[c++]=v&255,t[c++]=v>>8&255,t[c++]=v>>16&255,t[c++]=v>>24&255,t[n++]=0}else{t[n++]=ee.BSON_DATA_CODE,l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+l,t[n++]=0,w=r.code.toString();var H=t.write(w,n+4,"utf8")+1;t[n]=H&255,t[n+1]=H>>8&255,t[n+2]=H>>16&255,t[n+3]=H>>24&255,n=n+4+H-1,t[n++]=0}return n},Ug=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_BINARY;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=r.value(!0),s=r.position;return r.sub_type===sI.SUBTYPE_BYTE_ARRAY&&(s=s+4),t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=r.sub_type,r.sub_type===sI.SUBTYPE_BYTE_ARRAY&&(s=s-4,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255),f.copy(t,n,0,r.position),n=n+r.position,n},Mg=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_SYMBOL;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=t.write(r.value,n+4,"utf8")+1;return t[n]=f&255,t[n+1]=f>>8&255,t[n+2]=f>>16&255,t[n+3]=f>>24&255,n=n+4+f-1,t[n++]=0,n},zg=function(t,e,r,n,i,o,f){t[n++]=ee.BSON_DATA_OBJECT;var s=f?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=n,l;r.db!=null?l=gu(t,{$ref:r.namespace,$id:r.oid,$db:r.db},!1,n,i+1,o):l=gu(t,{$ref:r.namespace,$id:r.oid},!1,n,i+1,o);var c=l-u;return t[u++]=c&255,t[u++]=c>>8&255,t[u++]=c>>16&255,t[u++]=c>>24&255,l},gu=function(e,r,n,i,o,f,s,u){i=i||0,u=u||[],u.push(r);var l=i+4;if(Array.isArray(r))for(var c=0;c<r.length;c++){var w=""+c,p=r[c];if(p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}var b=typeof p;if(b==="string")l=vg(e,w,p,l,!0);else if(b==="number")l=Tg(e,w,p,l,!0);else{if(b==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(b==="boolean")l=kg(e,w,p,l,!0);else if(p instanceof Date||_g(p))l=Bg(e,w,p,l,!0);else if(p===void 0)l=bu(e,w,p,l,!0);else if(p===null)l=bu(e,w,p,l,!0);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=Eg(e,w,p,l,!0);else if(Buffer.isBuffer(p))l=Ag(e,w,p,l,!0);else if(p instanceof RegExp||qg(p))l=Ig(e,w,p,l,!0);else if(b==="object"&&p._bsontype==null)l=Og(e,w,p,l,n,o,f,s,!0,u);else if(b==="object"&&p._bsontype==="Decimal128")l=Fg(e,w,p,l,!0);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=Dg(e,w,p,l,!0);else if(p._bsontype==="Double")l=Pg(e,w,p,l,!0);else if(typeof p=="function"&&f)l=Rg(e,w,p,l,n,o,f,!0);else if(p._bsontype==="Code")l=Hg(e,w,p,l,n,o,f,s,!0);else if(p._bsontype==="Binary")l=Ug(e,w,p,l,!0);else if(p._bsontype==="Symbol")l=Mg(e,w,p,l,!0);else if(p._bsontype==="DBRef")l=zg(e,w,p,l,o,f,!0);else if(p._bsontype==="BSONRegExp")l=xg(e,w,p,l,!0);else if(p._bsontype==="Int32")l=Ng(e,w,p,l,!0);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=Sg(e,w,p,l,!0);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}else if(r instanceof eP)for(var v=r.entries(),H=!1;!H;){var O=v.next();if(H=O.done,!H){if(w=O.value[0],p=O.value[1],b=typeof p,typeof w=="string"&&aI.indexOf(w)===-1){if(w.match(dd)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(b==="string")l=vg(e,w,p,l);else if(b==="number")l=Tg(e,w,p,l);else{if(b==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(b==="boolean")l=kg(e,w,p,l);else if(p instanceof Date||_g(p))l=Bg(e,w,p,l);else if(p===null||p===void 0&&s===!1)l=bu(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=Eg(e,w,p,l);else if(Buffer.isBuffer(p))l=Ag(e,w,p,l);else if(p instanceof RegExp||qg(p))l=Ig(e,w,p,l);else if(b==="object"&&p._bsontype==null)l=Og(e,w,p,l,n,o,f,s,!1,u);else if(b==="object"&&p._bsontype==="Decimal128")l=Fg(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=Dg(e,w,p,l);else if(p._bsontype==="Double")l=Pg(e,w,p,l);else if(p._bsontype==="Code")l=Hg(e,w,p,l,n,o,f,s);else if(typeof p=="function"&&f)l=Rg(e,w,p,l,n,o,f);else if(p._bsontype==="Binary")l=Ug(e,w,p,l);else if(p._bsontype==="Symbol")l=Mg(e,w,p,l);else if(p._bsontype==="DBRef")l=zg(e,w,p,l,o,f);else if(p._bsontype==="BSONRegExp")l=xg(e,w,p,l);else if(p._bsontype==="Int32")l=Ng(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=Sg(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}else{if(r.toBSON){if(typeof r.toBSON!="function")throw new Error("toBSON is not a function");if(r=r.toBSON(),r!=null&&typeof r!="object")throw new Error("toBSON function did not return an object")}for(w in r){if(p=r[w],p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}if(b=typeof p,typeof w=="string"&&aI.indexOf(w)===-1){if(w.match(dd)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(b==="string")l=vg(e,w,p,l);else if(b==="number")l=Tg(e,w,p,l);else{if(b==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(b==="boolean")l=kg(e,w,p,l);else if(p instanceof Date||_g(p))l=Bg(e,w,p,l);else if(p===void 0)s===!1&&(l=bu(e,w,p,l));else if(p===null)l=bu(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=Eg(e,w,p,l);else if(Buffer.isBuffer(p))l=Ag(e,w,p,l);else if(p instanceof RegExp||qg(p))l=Ig(e,w,p,l);else if(b==="object"&&p._bsontype==null)l=Og(e,w,p,l,n,o,f,s,!1,u);else if(b==="object"&&p._bsontype==="Decimal128")l=Fg(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=Dg(e,w,p,l);else if(p._bsontype==="Double")l=Pg(e,w,p,l);else if(p._bsontype==="Code")l=Hg(e,w,p,l,n,o,f,s);else if(typeof p=="function"&&f)l=Rg(e,w,p,l,n,o,f);else if(p._bsontype==="Binary")l=Ug(e,w,p,l);else if(p._bsontype==="Symbol")l=Mg(e,w,p,l);else if(p._bsontype==="DBRef")l=zg(e,w,p,l,o,f);else if(p._bsontype==="BSONRegExp")l=xg(e,w,p,l);else if(p._bsontype==="Int32")l=Ng(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=Sg(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}u.pop(),e[l++]=0;var W=l-i;return e[i++]=W&255,e[i++]=W>>8&255,e[i++]=W>>16&255,e[i++]=W>>24&255,l},ee={};ee.BSON_DATA_NUMBER=1;ee.BSON_DATA_STRING=2;ee.BSON_DATA_OBJECT=3;ee.BSON_DATA_ARRAY=4;ee.BSON_DATA_BINARY=5;ee.BSON_DATA_UNDEFINED=6;ee.BSON_DATA_OID=7;ee.BSON_DATA_BOOLEAN=8;ee.BSON_DATA_DATE=9;ee.BSON_DATA_NULL=10;ee.BSON_DATA_REGEXP=11;ee.BSON_DATA_CODE=13;ee.BSON_DATA_SYMBOL=14;ee.BSON_DATA_CODE_W_SCOPE=15;ee.BSON_DATA_INT=16;ee.BSON_DATA_TIMESTAMP=17;ee.BSON_DATA_LONG=18;ee.BSON_DATA_DECIMAL128=19;ee.BSON_DATA_MIN_KEY=255;ee.BSON_DATA_MAX_KEY=127;ee.BSON_BINARY_SUBTYPE_DEFAULT=0;ee.BSON_BINARY_SUBTYPE_FUNCTION=1;ee.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;ee.BSON_BINARY_SUBTYPE_UUID=3;ee.BSON_BINARY_SUBTYPE_MD5=4;ee.BSON_BINARY_SUBTYPE_USER_DEFINED=128;ee.BSON_INT32_MAX=2147483647;ee.BSON_INT32_MIN=-2147483648;ee.BSON_INT64_MAX=Math.pow(2,63)-1;ee.BSON_INT64_MIN=-Math.pow(2,63);ee.JS_INT_MAX=9007199254740992;ee.JS_INT_MIN=-9007199254740992;lI.exports=gu});var wI=k((tY,mI)=>{"use strict";var rP=Ms().Long,nP=Vp().Double,iP=Cp().Timestamp,oP=Gp().ObjectID,fP=Qp().Symbol,sP=Jp().BSONRegExp,aP=Xp().Code,lP=nd(),uP=od().MinKey,cP=sd().MaxKey,pP=ad().DBRef,cI=hu().Binary,pI=Ao().normalizedFunctionString,dP=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},yu=function(e,r,n){var i=4+1;if(Array.isArray(e))for(var o=0;o<e.length;o++)i+=dI(o.toString(),e[o],r,!0,n);else{e.toBSON&&(e=e.toBSON());for(var f in e)i+=dI(f,e[f],r,!1,n)}return i};function dI(t,e,r,n,i){switch(e&&e.toBSON&&(e=e.toBSON()),typeof e){case"string":return 1+Buffer.byteLength(t,"utf8")+1+4+Buffer.byteLength(e,"utf8")+1;case"number":return Math.floor(e)===e&&e>=Fo.JS_INT_MIN&&e<=Fo.JS_INT_MAX&&e>=Fo.BSON_INT32_MIN&&e<=Fo.BSON_INT32_MAX?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(4+1):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);case"undefined":return n||!i?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1:0;case"boolean":return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+1);case"object":if(e==null||e instanceof uP||e instanceof cP||e._bsontype==="MinKey"||e._bsontype==="MaxKey")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1;if(e instanceof oP||e._bsontype==="ObjectID"||e._bsontype==="ObjectId")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(12+1);if(e instanceof Date||dP(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(typeof Buffer!="undefined"&&Buffer.isBuffer(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+4+1)+e.length;if(e instanceof rP||e instanceof nP||e instanceof iP||e._bsontype==="Long"||e._bsontype==="Double"||e._bsontype==="Timestamp")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(e instanceof lP||e._bsontype==="Decimal128")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(16+1);if(e instanceof aP||e._bsontype==="Code")return e.scope!=null&&Object.keys(e.scope).length>0?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(e.code.toString(),"utf8")+1+yu(e.scope,r,i):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(e.code.toString(),"utf8")+1;if(e instanceof cI||e._bsontype==="Binary")return e.sub_type===cI.SUBTYPE_BYTE_ARRAY?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1+4):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1);if(e instanceof fP||e._bsontype==="Symbol")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+Buffer.byteLength(e.value,"utf8")+4+1+1;if(e instanceof pP||e._bsontype==="DBRef"){var o={$ref:e.namespace,$id:e.oid};return e.db!=null&&(o.$db=e.db),(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+yu(o,r,i)}else return e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1:e instanceof sP||e._bsontype==="BSONRegExp"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.pattern,"utf8")+1+Buffer.byteLength(e.options,"utf8")+1:(t!=null?Buffer.byteLength(t,"utf8")+1:0)+yu(e,r,i)+1;case"function":if(e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"||String.call(e)==="[object RegExp]")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1;if(r&&e.scope!=null&&Object.keys(e.scope).length>0)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(pI(e),"utf8")+1+yu(e.scope,r,i);if(r)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(pI(e),"utf8")+1}return 0}var Fo={};Fo.BSON_INT32_MAX=2147483647;Fo.BSON_INT32_MIN=-2147483648;Fo.JS_INT_MAX=9007199254740992;Fo.JS_INT_MIN=-9007199254740992;mI.exports=yu});var gI=k((rY,lr)=>{"use strict";var mP=Yb(),wP=Ms(),hP=Vp(),bP=Cp(),gP=Gp(),yP=Jp(),jP=Qp(),_P=tg(),qP=Xp(),vP=nd(),TP=od(),kP=sd(),BP=ad(),IP=hu(),xP=iI(),hI=uI(),SP=wI(),Lg=Ao(),bI=1024*1024*17,md=Lg.allocBuffer(bI),Ve=function(){};Ve.prototype.serialize=function(e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,o=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,f=typeof r.minInternalBufferSize=="number"?r.minInternalBufferSize:bI;md.length<f&&(md=Lg.allocBuffer(f));var s=hI(md,e,n,0,0,i,o,[]),u=Lg.allocBuffer(s);return md.copy(u,0,0,u.length),u};Ve.prototype.serializeWithBufferAndIndex=function(t,e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,o=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,f=typeof r.index=="number"?r.index:0,s=hI(e,t,n,f||0,0,i,o);return s-1};Ve.prototype.deserialize=function(t,e){return xP(t,e)};Ve.prototype.calculateObjectSize=function(t,e){e=e||{};var r=typeof e.serializeFunctions=="boolean"?e.serializeFunctions:!1,n=typeof e.ignoreUndefined=="boolean"?e.ignoreUndefined:!0;return SP(t,r,n)};Ve.prototype.deserializeStream=function(t,e,r,n,i,o){o=o??{};for(var f=e,s=0;s<r;s++){var u=t[f]|t[f+1]<<8|t[f+2]<<16|t[f+3]<<24;o.index=f,n[i+s]=this.deserialize(t,o),f=f+u}return f};Ve.BSON_INT32_MAX=2147483647;Ve.BSON_INT32_MIN=-2147483648;Ve.BSON_INT64_MAX=Math.pow(2,63)-1;Ve.BSON_INT64_MIN=-Math.pow(2,63);Ve.JS_INT_MAX=9007199254740992;Ve.JS_INT_MIN=-9007199254740992;Ve.BSON_DATA_NUMBER=1;Ve.BSON_DATA_STRING=2;Ve.BSON_DATA_OBJECT=3;Ve.BSON_DATA_ARRAY=4;Ve.BSON_DATA_BINARY=5;Ve.BSON_DATA_OID=7;Ve.BSON_DATA_BOOLEAN=8;Ve.BSON_DATA_DATE=9;Ve.BSON_DATA_NULL=10;Ve.BSON_DATA_REGEXP=11;Ve.BSON_DATA_CODE=13;Ve.BSON_DATA_SYMBOL=14;Ve.BSON_DATA_CODE_W_SCOPE=15;Ve.BSON_DATA_INT=16;Ve.BSON_DATA_TIMESTAMP=17;Ve.BSON_DATA_LONG=18;Ve.BSON_DATA_MIN_KEY=255;Ve.BSON_DATA_MAX_KEY=127;Ve.BSON_BINARY_SUBTYPE_DEFAULT=0;Ve.BSON_BINARY_SUBTYPE_FUNCTION=1;Ve.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;Ve.BSON_BINARY_SUBTYPE_UUID=3;Ve.BSON_BINARY_SUBTYPE_MD5=4;Ve.BSON_BINARY_SUBTYPE_USER_DEFINED=128;lr.exports=Ve;lr.exports.Code=qP;lr.exports.Map=mP;lr.exports.Symbol=jP;lr.exports.BSON=Ve;lr.exports.DBRef=BP;lr.exports.Binary=IP;lr.exports.ObjectID=gP;lr.exports.Long=wP;lr.exports.Timestamp=bP;lr.exports.Double=hP;lr.exports.Int32=_P;lr.exports.MinKey=TP;lr.exports.MaxKey=kP;lr.exports.BSONRegExp=yP;lr.exports.Decimal128=vP});function yI(t,e,r){if(!(t in Mf))throw new Error(`invalid type: ${t}`);return Mf[t].toPrimitive(e,r)}function jI(t,e,r){if(!(t in Mf))throw new Error(`invalid type: ${t}`);return"fromPrimitive"in Mf[t]?Mf[t].fromPrimitive?.(e,r):e}function EP(t){return Boolean(t)}function AP(t){return Boolean(t)}function OP(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for FLOAT: ${t}`);return e}function FP(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for DOUBLE: ${t}`);return e}function DP(t){let e=parseInt(t,10);if(e<-128||e>127||isNaN(e))throw new Error(`invalid value for INT8: ${t}`);return e}function NP(t){let e=parseInt(t,10);if(e<0||e>255||isNaN(e))throw new Error(`invalid value for UINT8: ${t}`);return e}function PP(t){let e=parseInt(t,10);if(e<-32768||e>32767||isNaN(e))throw new Error(`invalid value for INT16: ${t}`);return e}function RP(t){let e=parseInt(t,10);if(e<0||e>65535||isNaN(e))throw new Error(`invalid value for UINT16: ${t}`);return e}function _I(t){let e=parseInt(t,10);if(e<-2147483648||e>2147483647||isNaN(e))throw new Error(`invalid value for INT32: ${t}`);return e}function HP(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(n<-2147483648||n>2147483647||isNaN(n))throw new Error(`invalid value for INT32: ${t}`);return n}function UP(t){let e=parseInt(t,10);if(e<0||e>281474976710655||isNaN(e))throw new Error(`invalid value for UINT32: ${t}`);return e}function qI(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT64: ${t}`);return e}function MP(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(isNaN(n))throw new Error(`invalid value for INT64: ${t}`);return n}function zP(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for UINT64: ${t}`);return e}function LP(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT96: ${t}`);return e}function vI(t){return Buffer.from(t)}function TI(t){return Buffer.from(t)}function VP(t){return Buffer.from(t,"utf8")}function CP(t){return t.toString()}function WP(t){return Buffer.from(JSON.stringify(t))}function KP(t){return JSON.parse(t)}function YP(t){return Buffer.from(Vg.default.serialize(t))}function GP(t){return Vg.default.deserialize(t)}function ZP(t){let e=parseInt(t,10);if(e<0||e>18446744073709552e3||isNaN(e))throw new Error(`invalid value for TIME_MILLIS: ${t}`);return e}function JP(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIME_MICROS: ${t}`);return e}function QP(t){if(t instanceof Date)return t.getTime()/kI;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for DATE: ${t}`);return e}}function XP(t){return new Date(t*kI)}function $P(t){if(t instanceof Date)return t.getTime();{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MILLIS: ${t}`);return e}}function eR(t){return new Date(t)}function tR(t){if(t instanceof Date)return t.getTime()*1e3;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MICROS: ${t}`);return e}}function rR(t){return new Date(t/1e3)}function nR(t){if(!t.months||!t.days||!t.milliseconds)throw new Error("value for INTERVAL must be object { months: ..., days: ..., milliseconds: ... }");let e=Buffer.alloc(12);return e.writeUInt32LE(t.months,0),e.writeUInt32LE(t.days,4),e.writeUInt32LE(t.milliseconds,8),e}function iR(t){let e=Buffer.from(t),r=e.readUInt32LE(0),n=e.readUInt32LE(4),i=e.readUInt32LE(8);return{months:r,days:n,milliseconds:i}}function BI(t,e){return Math.round(t*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function II(t,e){let r=0;if(t.length<=4)for(let i=0;i<t.length;i++)r+=t[i]<<8*(t.length-i-1);else for(let i=0;i<t.length;i++)r+=t[i]*2**(8*(t.length-1-i));return Math.round(r*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}var Vg,Mf,kI,Cg=K(()=>{Vg=ce(gI()),Mf={BOOLEAN:{primitiveType:"BOOLEAN",toPrimitive:EP,fromPrimitive:AP},INT32:{primitiveType:"INT32",toPrimitive:_I},INT64:{primitiveType:"INT64",toPrimitive:qI},INT96:{primitiveType:"INT96",toPrimitive:LP},FLOAT:{primitiveType:"FLOAT",toPrimitive:OP},DOUBLE:{primitiveType:"DOUBLE",toPrimitive:FP},BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",toPrimitive:vI},FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",toPrimitive:vI},UTF8:{primitiveType:"BYTE_ARRAY",originalType:"UTF8",toPrimitive:VP,fromPrimitive:CP},TIME_MILLIS:{primitiveType:"INT32",originalType:"TIME_MILLIS",toPrimitive:ZP},TIME_MICROS:{primitiveType:"INT64",originalType:"TIME_MICROS",toPrimitive:JP},DATE:{primitiveType:"INT32",originalType:"DATE",toPrimitive:QP,fromPrimitive:XP},TIMESTAMP_MILLIS:{primitiveType:"INT64",originalType:"TIMESTAMP_MILLIS",toPrimitive:$P,fromPrimitive:eR},TIMESTAMP_MICROS:{primitiveType:"INT64",originalType:"TIMESTAMP_MICROS",toPrimitive:tR,fromPrimitive:rR},UINT_8:{primitiveType:"INT32",originalType:"UINT_8",toPrimitive:NP},UINT_16:{primitiveType:"INT32",originalType:"UINT_16",toPrimitive:RP},UINT_32:{primitiveType:"INT32",originalType:"UINT_32",toPrimitive:UP},UINT_64:{primitiveType:"INT64",originalType:"UINT_64",toPrimitive:zP},INT_8:{primitiveType:"INT32",originalType:"INT_8",toPrimitive:DP},INT_16:{primitiveType:"INT32",originalType:"INT_16",toPrimitive:PP},INT_32:{primitiveType:"INT32",originalType:"INT_32",toPrimitive:_I},INT_64:{primitiveType:"INT64",originalType:"INT_64",toPrimitive:qI},JSON:{primitiveType:"BYTE_ARRAY",originalType:"JSON",toPrimitive:WP,fromPrimitive:KP},BSON:{primitiveType:"BYTE_ARRAY",originalType:"BSON",toPrimitive:YP,fromPrimitive:GP},INTERVAL:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"INTERVAL",typeLength:12,toPrimitive:nR,fromPrimitive:iR},DECIMAL_INT32:{primitiveType:"INT32",originalType:"DECIMAL_INT32",toPrimitive:HP,fromPrimitive:BI},DECIMAL_INT64:{primitiveType:"INT64",originalType:"DECIMAL_INT64",toPrimitive:MP,fromPrimitive:BI},DECIMAL_BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",originalType:"DECIMAL_BYTE_ARRAY",toPrimitive:TI,fromPrimitive:II},DECIMAL_FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"DECIMAL_FIXED_LEN_BYTE_ARRAY",toPrimitive:TI,fromPrimitive:II}};kI=864e5});function Wg(t){let e={};for(let r of t.fieldList)e[r.key]={dlevels:[],rlevels:[],values:[],pageHeaders:[],count:0};return{rowCount:0,columnData:e}}function xI(t,e,r){let n=Wg(t).columnData;if(Kg(t.fields,e,n,0,0),r.rowCount===0){r.rowCount=1,r.columnData=n;return}r.rowCount+=1;for(let i of t.fieldList)Array.prototype.push.apply(r.columnData[i.key].rlevels,n[i.key].rlevels),Array.prototype.push.apply(r.columnData[i.key].dlevels,n[i.key].dlevels),Array.prototype.push.apply(r.columnData[i.key].values,n[i.key].values),r.columnData[i.key].count+=n[i.key].count}function Kg(t,e,r,n,i){for(let o in t){let f=t[o],s=[];if(e&&f.name in e&&e[f.name]!==void 0&&e[f.name]!==null&&(e[f.name].constructor===Array?s=e[f.name]:s.push(e[f.name])),s.length===0&&Boolean(e)&&f.repetitionType==="REQUIRED")throw new Error(`missing required field: ${f.name}`);if(s.length>1&&f.repetitionType!=="REPEATED")throw new Error(`too many values for field: ${f.name}`);if(s.length===0){f.isNested?Kg(f.fields,null,r,n,i):(r[f.key].count+=1,r[f.key].rlevels.push(n),r[f.key].dlevels.push(i));continue}for(let u=0;u<s.length;u++){let l=u===0?n:f.rLevelMax;f.isNested?Kg(f.fields,s[u],r,l,f.dLevelMax):(r[f.key].count+=1,r[f.key].rlevels.push(l),r[f.key].dlevels.push(f.dLevelMax),r[f.key].values.push(yI(f.originalType||f.primitiveType,s[u])))}}}function wd(t,e){let r=[];for(let n=0;n<e.rowCount;n++)r.push({});for(let n in e.columnData)oR(t,e,n,r);return r}function oR(t,e,r,n){let i=e.columnData[r];if(!i.count)return;let o=t.findField(r),f=t.findFieldBranch(r),s=new Array(o.rLevelMax+1).fill(0),u=0;for(let l=0;l<i.count;l++){let c=i.dlevels[l],w=i.rlevels[l];s[w]++,s.fill(0,w+1);let p=0,b=n[s[p++]-1];for(let v of f){if(v===o||c<v.dLevelMax)break;if(v.repetitionType==="REPEATED"){v.name in b||(b[v.name]=[]);let H=s[p++];for(;b[v.name].length<=H;)b[v.name].push({});b=b[v.name][H]}else b[v.name]=b[v.name]||{},b=b[v.name]}if(c===o.dLevelMax){let v=jI(o.originalType||o.primitiveType,i.values[u],o);if(u++,o.repetitionType==="REPEATED"){o.name in b||(b[o.name]=[]);let H=s[p];for(;b[o.name].length<=H;)b[o.name].push(null);b[o.name][H]=v}else b[o.name]=v}}}var Yg=K(()=>{Cg()});function Gg(t,e){for(let r in t){let n=t[r];n.fields?Gg(n.fields,e):n.compression=e}}function SI(t,e,r,n){let i={};for(let o in t){let f=t[o],s=!f.optional,u=Boolean(f.repeated),l=e,c=r,w="REQUIRED";if(s||(w="OPTIONAL",c++),u&&(w="REPEATED",l++,s&&c++),f.fields){let v=n.concat([o]);i[o]={name:o,path:v,key:v.join(),repetitionType:w,rLevelMax:l,dLevelMax:c,isNested:!0,fieldCount:Object.keys(f.fields).length,fields:SI(f.fields,l,c,v)};continue}let p=Mf[f.type];if(!p)throw new Error(`invalid parquet type: ${f.type}`);if(f.encoding=f.encoding||"PLAIN",!(f.encoding in Hl))throw new Error(`unsupported parquet encoding: ${f.encoding}`);if(f.compression=f.compression||"UNCOMPRESSED",!(f.compression in Mp))throw new Error(`unsupported compression method: ${f.compression}`);let b=n.concat([o]);i[o]={name:o,primitiveType:p.primitiveType,originalType:p.originalType,path:b,key:b.join(),repetitionType:w,encoding:f.encoding,compression:f.compression,typeLength:f.typeLength||p.typeLength,presision:f.presision,scale:f.scale,rLevelMax:l,dLevelMax:c}}return i}function EI(t){let e=[];for(let r in t)e.push(t[r]),t[r].isNested&&(e=e.concat(EI(t[r].fields)));return e}var ju,Zg=K(()=>{zh();Lp();Yg();Cg();ju=class{constructor(e){this.schema=e,this.fields=SI(e,0,0,[]),this.fieldList=EI(this.fields)}findField(e){typeof e=="string"?e=e.split(","):e=e.slice(0);let r=this.fields;for(;e.length>1;e.shift())r=r[e[0]].fields;return r[e[0]]}findFieldBranch(e){typeof e=="string"&&(e=e.split(","));let r=[],n=this.fields;for(;e.length>0;e.shift())r.push(n[e[0]]),e.length>1&&(n=n[e[0]].fields);return r}shredRecord(e,r){xI(this,e,r)}materializeRecords(e){return wd(this,e)}compress(e){return Gg(this.schema,e),Gg(this.fields,e),this}buffer(){return Wg(this)}}});var Jg,AI=K(()=>{Yg();Jg=class{constructor(e,r,n,i){this.rowGroup=[];this.metadata=e,this.envelopeReader=r,this.schema=n,this.columnList=i,this.rowGroupIndex=0}async next(){if(this.rowGroup.length===0){if(this.rowGroupIndex>=this.metadata.row_groups.length)return null;let e=await this.envelopeReader.readRowGroup(this.schema,this.metadata.row_groups[this.rowGroupIndex],this.columnList);this.rowGroup=wd(this.schema,e),this.rowGroupIndex++}return this.rowGroup.shift()}rewind(){this.rowGroup=[],this.rowGroupIndex=0}[Symbol.asyncIterator](){let e=!1;return{next:async()=>{if(e)return{done:e,value:null};let r=await this.next();return r===null?{done:!0,value:r}:{done:!1,value:r}},return:async()=>(e=!0,{done:e,value:null}),throw:async()=>(e=!0,{done:!0,value:null})}}}});var Yi,Qg=K(()=>{Kb();Zg();AI();kc();Wb();Yi=class{static async openBlob(e){let r=async(f,s)=>{let u=await e.slice(f,f+s).arrayBuffer();return Buffer.from(u)},n=async()=>{},i=e.size,o=new Ci(r,n,i);try{await o.readHeader();let f=await o.readFooter();return new Yi(f,o)}catch(f){throw await o.close(),f}}static async openArrayBuffer(e){let r=async(f,s)=>Buffer.from(e,f,s),n=async()=>{},i=e.byteLength,o=new Ci(r,n,i);try{await o.readHeader();let f=await o.readFooter();return new Yi(f,o)}catch(f){throw await o.close(),f}}static async openBuffer(e){let r=await Ci.openBuffer(e);try{await r.readHeader();let n=await r.readFooter();return new Yi(n,r)}catch(n){throw await r.close(),n}}constructor(e,r){if(e.version!==R_)throw new Error("invalid parquet version");this.metadata=e,this.envelopeReader=r;let n=this.metadata.schema[0],{schema:i}=Cb(this.metadata.schema,1,n.num_children);this.schema=new ju(i)}async close(){await this.envelopeReader.close()}getCursor(e){return e||(e=[]),e=e.map(r=>Array.isArray(r)?r:[r]),new Jg(this.metadata,this.envelopeReader,this.schema,e)}getRowCount(){return Number(this.metadata.num_rows)}getSchema(){return this.schema}getMetadata(){let e={};for(let r of this.metadata.key_value_metadata)e[r.key]=r.value;return e}[Symbol.asyncIterator](){return this.getCursor()[Symbol.asyncIterator]()}}});async function OI(t,e){let r=new Blob([t]);for await(let n of Xg(r,e))return n;return null}async function*Xg(t,e){let r=await Yi.openBlob(t),n=[];try{let i=r.getCursor(),o;for(;o=await i.next();)n.push(o)}finally{await r.close()}yield n}var FI=K(()=>{Qg()});var Gi=k(DI=>{var x={};x.Offset;x.Table;x.SIZEOF_SHORT=2;x.SIZEOF_INT=4;x.FILE_IDENTIFIER_LENGTH=4;x.SIZE_PREFIX_LENGTH=4;x.Encoding={UTF8_BYTES:1,UTF16_STRING:2};x.int32=new Int32Array(2);x.float32=new Float32Array(x.int32.buffer);x.float64=new Float64Array(x.int32.buffer);x.isLittleEndian=new Uint16Array(new Uint8Array([1,0]).buffer)[0]===1;x.Long=function(t,e){this.low=t|0,this.high=e|0};x.Long.create=function(t,e){return t==0&&e==0?x.Long.ZERO:new x.Long(t,e)};x.Long.prototype.toFloat64=function(){return(this.low>>>0)+this.high*4294967296};x.Long.prototype.equals=function(t){return this.low==t.low&&this.high==t.high};x.Long.ZERO=new x.Long(0,0);x.Builder=function(t){if(t)var e=t;else var e=1024;this.bb=x.ByteBuffer.allocate(e),this.space=e,this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1};x.Builder.prototype.clear=function(){this.bb.clear(),this.space=this.bb.capacity(),this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1};x.Builder.prototype.forceDefaults=function(t){this.force_defaults=t};x.Builder.prototype.dataBuffer=function(){return this.bb};x.Builder.prototype.asUint8Array=function(){return this.bb.bytes().subarray(this.bb.position(),this.bb.position()+this.offset())};x.Builder.prototype.prep=function(t,e){t>this.minalign&&(this.minalign=t);for(var r=~(this.bb.capacity()-this.space+e)+1&t-1;this.space<r+t+e;){var n=this.bb.capacity();this.bb=x.Builder.growByteBuffer(this.bb),this.space+=this.bb.capacity()-n}this.pad(r)};x.Builder.prototype.pad=function(t){for(var e=0;e<t;e++)this.bb.writeInt8(--this.space,0)};x.Builder.prototype.writeInt8=function(t){this.bb.writeInt8(this.space-=1,t)};x.Builder.prototype.writeInt16=function(t){this.bb.writeInt16(this.space-=2,t)};x.Builder.prototype.writeInt32=function(t){this.bb.writeInt32(this.space-=4,t)};x.Builder.prototype.writeInt64=function(t){this.bb.writeInt64(this.space-=8,t)};x.Builder.prototype.writeFloat32=function(t){this.bb.writeFloat32(this.space-=4,t)};x.Builder.prototype.writeFloat64=function(t){this.bb.writeFloat64(this.space-=8,t)};x.Builder.prototype.addInt8=function(t){this.prep(1,0),this.writeInt8(t)};x.Builder.prototype.addInt16=function(t){this.prep(2,0),this.writeInt16(t)};x.Builder.prototype.addInt32=function(t){this.prep(4,0),this.writeInt32(t)};x.Builder.prototype.addInt64=function(t){this.prep(8,0),this.writeInt64(t)};x.Builder.prototype.addFloat32=function(t){this.prep(4,0),this.writeFloat32(t)};x.Builder.prototype.addFloat64=function(t){this.prep(8,0),this.writeFloat64(t)};x.Builder.prototype.addFieldInt8=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt8(e),this.slot(t))};x.Builder.prototype.addFieldInt16=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt16(e),this.slot(t))};x.Builder.prototype.addFieldInt32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt32(e),this.slot(t))};x.Builder.prototype.addFieldInt64=function(t,e,r){(this.force_defaults||!e.equals(r))&&(this.addInt64(e),this.slot(t))};x.Builder.prototype.addFieldFloat32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat32(e),this.slot(t))};x.Builder.prototype.addFieldFloat64=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat64(e),this.slot(t))};x.Builder.prototype.addFieldOffset=function(t,e,r){(this.force_defaults||e!=r)&&(this.addOffset(e),this.slot(t))};x.Builder.prototype.addFieldStruct=function(t,e,r){e!=r&&(this.nested(e),this.slot(t))};x.Builder.prototype.nested=function(t){if(t!=this.offset())throw new Error("FlatBuffers: struct must be serialized inline.")};x.Builder.prototype.notNested=function(){if(this.isNested)throw new Error("FlatBuffers: object serialization must not be nested.")};x.Builder.prototype.slot=function(t){this.vtable[t]=this.offset()};x.Builder.prototype.offset=function(){return this.bb.capacity()-this.space};x.Builder.growByteBuffer=function(t){var e=t.capacity();if(e&3221225472)throw new Error("FlatBuffers: cannot grow buffer beyond 2 gigabytes.");var r=e<<1,n=x.ByteBuffer.allocate(r);return n.setPosition(r-e),n.bytes().set(t.bytes(),r-e),n};x.Builder.prototype.addOffset=function(t){this.prep(x.SIZEOF_INT,0),this.writeInt32(this.offset()-t+x.SIZEOF_INT)};x.Builder.prototype.startObject=function(t){this.notNested(),this.vtable==null&&(this.vtable=[]),this.vtable_in_use=t;for(var e=0;e<t;e++)this.vtable[e]=0;this.isNested=!0,this.object_start=this.offset()};x.Builder.prototype.endObject=function(){if(this.vtable==null||!this.isNested)throw new Error("FlatBuffers: endObject called without startObject");this.addInt32(0);for(var t=this.offset(),e=this.vtable_in_use-1;e>=0&&this.vtable[e]==0;e--);for(var r=e+1;e>=0;e--)this.addInt16(this.vtable[e]!=0?t-this.vtable[e]:0);var n=2;this.addInt16(t-this.object_start);var i=(r+n)*x.SIZEOF_SHORT;this.addInt16(i);var o=0,f=this.space;e:for(e=0;e<this.vtables.length;e++){var s=this.bb.capacity()-this.vtables[e];if(i==this.bb.readInt16(s)){for(var u=x.SIZEOF_SHORT;u<i;u+=x.SIZEOF_SHORT)if(this.bb.readInt16(f+u)!=this.bb.readInt16(s+u))continue e;o=this.vtables[e];break}}return o?(this.space=this.bb.capacity()-t,this.bb.writeInt32(this.space,o-t)):(this.vtables.push(this.offset()),this.bb.writeInt32(this.bb.capacity()-t,this.offset()-t)),this.isNested=!1,t};x.Builder.prototype.finish=function(t,e,r){var n=r?x.SIZE_PREFIX_LENGTH:0;if(e){var i=e;if(this.prep(this.minalign,x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH+n),i.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var o=x.FILE_IDENTIFIER_LENGTH-1;o>=0;o--)this.writeInt8(i.charCodeAt(o))}this.prep(this.minalign,x.SIZEOF_INT+n),this.addOffset(t),n&&this.addInt32(this.bb.capacity()-this.space),this.bb.setPosition(this.space)};x.Builder.prototype.finishSizePrefixed=function(t,e){this.finish(t,e,!0)};x.Builder.prototype.requiredField=function(t,e){var r=this.bb.capacity()-t,n=r-this.bb.readInt32(r),i=this.bb.readInt16(n+e)!=0;if(!i)throw new Error("FlatBuffers: field "+e+" must be set")};x.Builder.prototype.startVector=function(t,e,r){this.notNested(),this.vector_num_elems=e,this.prep(x.SIZEOF_INT,t*e),this.prep(r,t*e)};x.Builder.prototype.endVector=function(){return this.writeInt32(this.vector_num_elems),this.offset()};x.Builder.prototype.createString=function(t){if(t instanceof Uint8Array)var e=t;else for(var e=[],r=0;r<t.length;){var n,i=t.charCodeAt(r++);if(i<55296||i>=56320)n=i;else{var o=t.charCodeAt(r++);n=(i<<10)+o+(65536-(55296<<10)-56320)}n<128?e.push(n):(n<2048?e.push(n>>6&31|192):(n<65536?e.push(n>>12&15|224):e.push(n>>18&7|240,n>>12&63|128),e.push(n>>6&63|128)),e.push(n&63|128))}this.addInt8(0),this.startVector(1,e.length,1),this.bb.setPosition(this.space-=e.length);for(var r=0,f=this.space,s=this.bb.bytes();r<e.length;r++)s[f++]=e[r];return this.endVector()};x.Builder.prototype.createLong=function(t,e){return x.Long.create(t,e)};x.ByteBuffer=function(t){this.bytes_=t,this.position_=0};x.ByteBuffer.allocate=function(t){return new x.ByteBuffer(new Uint8Array(t))};x.ByteBuffer.prototype.clear=function(){this.position_=0};x.ByteBuffer.prototype.bytes=function(){return this.bytes_};x.ByteBuffer.prototype.position=function(){return this.position_};x.ByteBuffer.prototype.setPosition=function(t){this.position_=t};x.ByteBuffer.prototype.capacity=function(){return this.bytes_.length};x.ByteBuffer.prototype.readInt8=function(t){return this.readUint8(t)<<24>>24};x.ByteBuffer.prototype.readUint8=function(t){return this.bytes_[t]};x.ByteBuffer.prototype.readInt16=function(t){return this.readUint16(t)<<16>>16};x.ByteBuffer.prototype.readUint16=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8};x.ByteBuffer.prototype.readInt32=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8|this.bytes_[t+2]<<16|this.bytes_[t+3]<<24};x.ByteBuffer.prototype.readUint32=function(t){return this.readInt32(t)>>>0};x.ByteBuffer.prototype.readInt64=function(t){return new x.Long(this.readInt32(t),this.readInt32(t+4))};x.ByteBuffer.prototype.readUint64=function(t){return new x.Long(this.readUint32(t),this.readUint32(t+4))};x.ByteBuffer.prototype.readFloat32=function(t){return x.int32[0]=this.readInt32(t),x.float32[0]};x.ByteBuffer.prototype.readFloat64=function(t){return x.int32[x.isLittleEndian?0:1]=this.readInt32(t),x.int32[x.isLittleEndian?1:0]=this.readInt32(t+4),x.float64[0]};x.ByteBuffer.prototype.writeInt8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeUint8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeInt16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.ByteBuffer.prototype.writeUint16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.ByteBuffer.prototype.writeInt32=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8,this.bytes_[t+2]=e>>16,this.bytes_[t+3]=e>>24};x.ByteBuffer.prototype.writeUint32=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8,this.bytes_[t+2]=e>>16,this.bytes_[t+3]=e>>24};x.ByteBuffer.prototype.writeInt64=function(t,e){this.writeInt32(t,e.low),this.writeInt32(t+4,e.high)};x.ByteBuffer.prototype.writeUint64=function(t,e){this.writeUint32(t,e.low),this.writeUint32(t+4,e.high)};x.ByteBuffer.prototype.writeFloat32=function(t,e){x.float32[0]=e,this.writeInt32(t,x.int32[0])};x.ByteBuffer.prototype.writeFloat64=function(t,e){x.float64[0]=e,this.writeInt32(t,x.int32[x.isLittleEndian?0:1]),this.writeInt32(t+4,x.int32[x.isLittleEndian?1:0])};x.ByteBuffer.prototype.getBufferIdentifier=function(){if(this.bytes_.length<this.position_+x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: ByteBuffer is too short to contain an identifier.");for(var t="",e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)t+=String.fromCharCode(this.readInt8(this.position_+x.SIZEOF_INT+e));return t};x.ByteBuffer.prototype.__offset=function(t,e){var r=t-this.readInt32(t);return e<this.readInt16(r)?this.readInt16(r+e):0};x.ByteBuffer.prototype.__union=function(t,e){return t.bb_pos=e+this.readInt32(e),t.bb=this,t};x.ByteBuffer.prototype.__string=function(t,e){t+=this.readInt32(t);var r=this.readInt32(t),n="",i=0;if(t+=x.SIZEOF_INT,e===x.Encoding.UTF8_BYTES)return this.bytes_.subarray(t,t+r);for(;i<r;){var o,f=this.readUint8(t+i++);if(f<192)o=f;else{var s=this.readUint8(t+i++);if(f<224)o=(f&31)<<6|s&63;else{var u=this.readUint8(t+i++);if(f<240)o=(f&15)<<12|(s&63)<<6|u&63;else{var l=this.readUint8(t+i++);o=(f&7)<<18|(s&63)<<12|(u&63)<<6|l&63}}}o<65536?n+=String.fromCharCode(o):(o-=65536,n+=String.fromCharCode((o>>10)+55296,(o&(1<<10)-1)+56320))}return n};x.ByteBuffer.prototype.__indirect=function(t){return t+this.readInt32(t)};x.ByteBuffer.prototype.__vector=function(t){return t+this.readInt32(t)+x.SIZEOF_INT};x.ByteBuffer.prototype.__vector_len=function(t){return this.readInt32(t+this.readInt32(t))};x.ByteBuffer.prototype.__has_identifier=function(t){if(t.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)if(t.charCodeAt(e)!=this.readInt8(this.position_+x.SIZEOF_INT+e))return!1;return!0};x.ByteBuffer.prototype.createLong=function(t,e){return x.Long.create(t,e)};DI.flatbuffers=x});var NI=k(ty=>{"use strict";function Zi(t,e,r){return e<=t&&t<=r}function hd(t){if(t===void 0)return{};if(t===Object(t))return t;throw TypeError("Could not convert argument to dictionary")}function fR(t){for(var e=String(t),r=e.length,n=0,i=[];n<r;){var o=e.charCodeAt(n);if(o<55296||o>57343)i.push(o);else if(56320<=o&&o<=57343)i.push(65533);else if(55296<=o&&o<=56319)if(n===r-1)i.push(65533);else{var f=t.charCodeAt(n+1);if(56320<=f&&f<=57343){var s=o&1023,u=f&1023;i.push(65536+(s<<10)+u),n+=1}else i.push(65533)}n+=1}return i}function sR(t){for(var e="",r=0;r<t.length;++r){var n=t[r];n<=65535?e+=String.fromCharCode(n):(n-=65536,e+=String.fromCharCode((n>>10)+55296,(n&1023)+56320))}return e}var bd=-1;function $g(t){this.tokens=[].slice.call(t)}$g.prototype={endOfStream:function(){return!this.tokens.length},read:function(){return this.tokens.length?this.tokens.shift():bd},prepend:function(t){if(Array.isArray(t))for(var e=t;e.length;)this.tokens.unshift(e.pop());else this.tokens.unshift(t)},push:function(t){if(Array.isArray(t))for(var e=t;e.length;)this.tokens.push(e.shift());else this.tokens.push(t)}};var Ws=-1;function ey(t,e){if(t)throw TypeError("Decoder error");return e||65533}var gd="utf-8";function yd(t,e){if(!(this instanceof yd))return new yd(t,e);if(t=t!==void 0?String(t).toLowerCase():gd,t!==gd)throw new Error("Encoding not supported. Only utf-8 is supported");e=hd(e),this._streaming=!1,this._BOMseen=!1,this._decoder=null,this._fatal=Boolean(e.fatal),this._ignoreBOM=Boolean(e.ignoreBOM),Object.defineProperty(this,"encoding",{value:"utf-8"}),Object.defineProperty(this,"fatal",{value:this._fatal}),Object.defineProperty(this,"ignoreBOM",{value:this._ignoreBOM})}yd.prototype={decode:function(e,r){var n;typeof e=="object"&&e instanceof ArrayBuffer?n=new Uint8Array(e):typeof e=="object"&&"buffer"in e&&e.buffer instanceof ArrayBuffer?n=new Uint8Array(e.buffer,e.byteOffset,e.byteLength):n=new Uint8Array(0),r=hd(r),this._streaming||(this._decoder=new aR({fatal:this._fatal}),this._BOMseen=!1),this._streaming=Boolean(r.stream);for(var i=new $g(n),o=[],f;!i.endOfStream()&&(f=this._decoder.handler(i,i.read()),f!==Ws);)f!==null&&(Array.isArray(f)?o.push.apply(o,f):o.push(f));if(!this._streaming){do{if(f=this._decoder.handler(i,i.read()),f===Ws)break;f!==null&&(Array.isArray(f)?o.push.apply(o,f):o.push(f))}while(!i.endOfStream());this._decoder=null}return o.length&&["utf-8"].indexOf(this.encoding)!==-1&&!this._ignoreBOM&&!this._BOMseen&&(o[0]===65279?(this._BOMseen=!0,o.shift()):this._BOMseen=!0),sR(o)}};function jd(t,e){if(!(this instanceof jd))return new jd(t,e);if(t=t!==void 0?String(t).toLowerCase():gd,t!==gd)throw new Error("Encoding not supported. Only utf-8 is supported");e=hd(e),this._streaming=!1,this._encoder=null,this._options={fatal:Boolean(e.fatal)},Object.defineProperty(this,"encoding",{value:"utf-8"})}jd.prototype={encode:function(e,r){e=e?String(e):"",r=hd(r),this._streaming||(this._encoder=new lR(this._options)),this._streaming=Boolean(r.stream);for(var n=[],i=new $g(fR(e)),o;!i.endOfStream()&&(o=this._encoder.handler(i,i.read()),o!==Ws);)Array.isArray(o)?n.push.apply(n,o):n.push(o);if(!this._streaming){for(;o=this._encoder.handler(i,i.read()),o!==Ws;)Array.isArray(o)?n.push.apply(n,o):n.push(o);this._encoder=null}return new Uint8Array(n)}};function aR(t){var e=t.fatal,r=0,n=0,i=0,o=128,f=191;this.handler=function(s,u){if(u===bd&&i!==0)return i=0,ey(e);if(u===bd)return Ws;if(i===0){if(Zi(u,0,127))return u;if(Zi(u,194,223))i=1,r=u-192;else if(Zi(u,224,239))u===224&&(o=160),u===237&&(f=159),i=2,r=u-224;else if(Zi(u,240,244))u===240&&(o=144),u===244&&(f=143),i=3,r=u-240;else return ey(e);return r=r<<6*i,null}if(!Zi(u,o,f))return r=i=n=0,o=128,f=191,s.prepend(u),ey(e);if(o=128,f=191,n+=1,r+=u-128<<6*(i-n),n!==i)return null;var l=r;return r=i=n=0,l}}function lR(t){var e=t.fatal;this.handler=function(r,n){if(n===bd)return Ws;if(Zi(n,0,127))return n;var i,o;Zi(n,128,2047)?(i=1,o=192):Zi(n,2048,65535)?(i=2,o=224):Zi(n,65536,1114111)&&(i=3,o=240);for(var f=[(n>>6*i)+o];i>0;){var s=n>>6*(i-1);f.push(128|s&63),i-=1}return f}}ty.TextEncoder=jd;ty.TextDecoder=yd});var zf=k(Ks=>{"use strict";Object.defineProperty(Ks,"__esModule",{value:!0});Ks.encodeUtf8=Ks.decodeUtf8=void 0;var PI=NI(),uR=new(typeof TextDecoder!="undefined"?TextDecoder:PI.TextDecoder)("utf-8");Ks.decodeUtf8=t=>uR.decode(t);var cR=new(typeof TextEncoder!="undefined"?TextEncoder:PI.TextEncoder);Ks.encodeUtf8=t=>cR.encode(t)});var Ys=k(zr=>{"use strict";Object.defineProperty(zr,"__esModule",{value:!0});zr.AsyncQueue=zr.ReadableInterop=zr.ArrowJSON=zr.ITERATOR_DONE=void 0;var RI=_u();zr.ITERATOR_DONE=Object.freeze({done:!0,value:void 0});var HI=class{constructor(e){this._json=e}get schema(){return this._json.schema}get batches(){return this._json.batches||[]}get dictionaries(){return this._json.dictionaries||[]}};zr.ArrowJSON=HI;var ry=class{tee(){return this._getDOMStream().tee()}pipe(e,r){return this._getNodeStream().pipe(e,r)}pipeTo(e,r){return this._getDOMStream().pipeTo(e,r)}pipeThrough(e,r){return this._getDOMStream().pipeThrough(e,r)}_getDOMStream(){return this._DOMStream||(this._DOMStream=this.toDOMStream())}_getNodeStream(){return this._nodeStream||(this._nodeStream=this.toNodeStream())}};zr.ReadableInterop=ry;var UI=class extends ry{constructor(){super();this._values=[],this.resolvers=[],this._closedPromise=new Promise(e=>this._closedPromiseResolve=e)}get closed(){return this._closedPromise}async cancel(e){await this.return(e)}write(e){this._ensureOpen()&&(this.resolvers.length<=0?this._values.push(e):this.resolvers.shift().resolve({done:!1,value:e}))}abort(e){this._closedPromiseResolve&&(this.resolvers.length<=0?this._error={error:e}:this.resolvers.shift().reject({done:!0,value:e}))}close(){if(this._closedPromiseResolve){let{resolvers:e}=this;for(;e.length>0;)e.shift().resolve(zr.ITERATOR_DONE);this._closedPromiseResolve(),this._closedPromiseResolve=void 0}}[Symbol.asyncIterator](){return this}toDOMStream(e){return RI.default.toDOMStream(this._closedPromiseResolve||this._error?this:this._values,e)}toNodeStream(e){return RI.default.toNodeStream(this._closedPromiseResolve||this._error?this:this._values,e)}async throw(e){return await this.abort(e),zr.ITERATOR_DONE}async return(e){return await this.close(),zr.ITERATOR_DONE}async read(e){return(await this.next(e,"read")).value}async peek(e){return(await this.next(e,"peek")).value}next(...e){return this._values.length>0?Promise.resolve({done:!1,value:this._values.shift()}):this._error?Promise.reject({done:!0,value:this._error.error}):this._closedPromiseResolve?new Promise((r,n)=>{this.resolvers.push({resolve:r,reject:n})}):Promise.resolve(zr.ITERATOR_DONE)}_ensureOpen(){if(this._closedPromiseResolve)return!0;throw new Error(`${this} is closed`)}};zr.AsyncQueue=UI});var gr=k(oe=>{"use strict";Object.defineProperty(oe,"__esModule",{value:!0});oe.isReadableNodeStream=oe.isWritableNodeStream=oe.isReadableDOMStream=oe.isWritableDOMStream=oe.isFetchResponse=oe.isFSReadStream=oe.isFileHandle=oe.isUnderlyingSink=oe.isIteratorResult=oe.isArrayLike=oe.isArrowJSON=oe.isAsyncIterable=oe.isIterable=oe.isObservable=oe.isPromise=oe.isObject=oe.BigUint64ArrayAvailable=oe.BigUint64Array=oe.BigInt64ArrayAvailable=oe.BigInt64Array=oe.BigIntAvailable=oe.BigInt=void 0;var _d=Ys(),[pR,dR]=(()=>{let t=()=>{throw new Error("BigInt is not available in this environment")};function e(){throw t()}return e.asIntN=()=>{throw t()},e.asUintN=()=>{throw t()},typeof BigInt!="undefined"?[BigInt,!0]:[e,!1]})();oe.BigInt=pR;oe.BigIntAvailable=dR;var[mR,wR]=(()=>{let t=()=>{throw new Error("BigInt64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigInt64Array!="undefined"?[BigInt64Array,!0]:[e,!1]})();oe.BigInt64Array=mR;oe.BigInt64ArrayAvailable=wR;var[hR,bR]=(()=>{let t=()=>{throw new Error("BigUint64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigUint64Array!="undefined"?[BigUint64Array,!0]:[e,!1]})();oe.BigUint64Array=hR;oe.BigUint64ArrayAvailable=bR;var ny=t=>typeof t=="number",MI=t=>typeof t=="boolean",ur=t=>typeof t=="function";oe.isObject=t=>t!=null&&Object(t)===t;oe.isPromise=t=>oe.isObject(t)&&ur(t.then);oe.isObservable=t=>oe.isObject(t)&&ur(t.subscribe);oe.isIterable=t=>oe.isObject(t)&&ur(t[Symbol.iterator]);oe.isAsyncIterable=t=>oe.isObject(t)&&ur(t[Symbol.asyncIterator]);oe.isArrowJSON=t=>oe.isObject(t)&&oe.isObject(t.schema);oe.isArrayLike=t=>oe.isObject(t)&&ny(t.length);oe.isIteratorResult=t=>oe.isObject(t)&&"done"in t&&"value"in t;oe.isUnderlyingSink=t=>oe.isObject(t)&&ur(t.abort)&&ur(t.close)&&ur(t.start)&&ur(t.write);oe.isFileHandle=t=>oe.isObject(t)&&ur(t.stat)&&ny(t.fd);oe.isFSReadStream=t=>oe.isReadableNodeStream(t)&&ny(t.bytesRead);oe.isFetchResponse=t=>oe.isObject(t)&&oe.isReadableDOMStream(t.body);oe.isWritableDOMStream=t=>oe.isObject(t)&&ur(t.abort)&&ur(t.getWriter)&&!(t instanceof _d.ReadableInterop);oe.isReadableDOMStream=t=>oe.isObject(t)&&ur(t.cancel)&&ur(t.getReader)&&!(t instanceof _d.ReadableInterop);oe.isWritableNodeStream=t=>oe.isObject(t)&&ur(t.end)&&ur(t.write)&&MI(t.writable)&&!(t instanceof _d.ReadableInterop);oe.isReadableNodeStream=t=>oe.isObject(t)&&ur(t.read)&&ur(t.pipe)&&MI(t.readable)&&!(t instanceof _d.ReadableInterop)});var Xt=k(X=>{"use strict";Object.defineProperty(X,"__esModule",{value:!0});X.compareArrayLike=X.rebaseValueOffsets=X.toUint8ClampedArrayAsyncIterator=X.toFloat64ArrayAsyncIterator=X.toFloat32ArrayAsyncIterator=X.toUint32ArrayAsyncIterator=X.toUint16ArrayAsyncIterator=X.toUint8ArrayAsyncIterator=X.toInt32ArrayAsyncIterator=X.toInt16ArrayAsyncIterator=X.toInt8ArrayAsyncIterator=X.toArrayBufferViewAsyncIterator=X.toUint8ClampedArrayIterator=X.toFloat64ArrayIterator=X.toFloat32ArrayIterator=X.toUint32ArrayIterator=X.toUint16ArrayIterator=X.toUint8ArrayIterator=X.toInt32ArrayIterator=X.toInt16ArrayIterator=X.toInt8ArrayIterator=X.toArrayBufferViewIterator=X.toUint8ClampedArray=X.toFloat64Array=X.toFloat32Array=X.toBigUint64Array=X.toUint32Array=X.toUint16Array=X.toUint8Array=X.toBigInt64Array=X.toInt32Array=X.toInt16Array=X.toInt8Array=X.toArrayBufferView=X.joinUint8Arrays=X.memcpy=void 0;var gR=Gi(),yR=zf(),jR=gR.flatbuffers.ByteBuffer,Lf=gr(),iy=typeof SharedArrayBuffer!="undefined"?SharedArrayBuffer:ArrayBuffer;function _R(t){let e=t[0]?[t[0]]:[],r,n,i,o;for(let f,s,u=0,l=0,c=t.length;++u<c;){if(f=e[l],s=t[u],!f||!s||f.buffer!==s.buffer||s.byteOffset<f.byteOffset){s&&(e[++l]=s);continue}if({byteOffset:r,byteLength:i}=f,{byteOffset:n,byteLength:o}=s,r+i<n||n+o<r){s&&(e[++l]=s);continue}e[l]=new Uint8Array(f.buffer,r,n-r+o)}return e}function oy(t,e,r=0,n=e.byteLength){let i=t.byteLength,o=new Uint8Array(t.buffer,t.byteOffset,i),f=new Uint8Array(e.buffer,e.byteOffset,Math.min(n,i));return o.set(f,r),t}X.memcpy=oy;function qR(t,e){let r=_R(t),n=r.reduce((c,w)=>c+w.byteLength,0),i,o,f,s=0,u=-1,l=Math.min(e||1/0,n);for(let c=r.length;++u<c;){if(i=r[u],o=i.subarray(0,Math.min(i.length,l-s)),l<=s+o.length){o.length<i.length?r[u]=i.subarray(o.length):o.length===i.length&&u++,f?oy(f,o,s):f=o;break}oy(f||(f=new Uint8Array(l)),o,s),s+=o.length}return[f||new Uint8Array(0),r.slice(u),n-(f?f.byteLength:0)]}X.joinUint8Arrays=qR;function Br(t,e){let r=Lf.isIteratorResult(e)?e.value:e;return r instanceof t?t===Uint8Array?new t(r.buffer,r.byteOffset,r.byteLength):r:r?(typeof r=="string"&&(r=yR.encodeUtf8(r)),r instanceof ArrayBuffer?new t(r):r instanceof iy?new t(r):r instanceof jR?Br(t,r.bytes()):ArrayBuffer.isView(r)?r.byteLength<=0?new t(0):new t(r.buffer,r.byteOffset,r.byteLength/t.BYTES_PER_ELEMENT):t.from(r)):new t(0)}X.toArrayBufferView=Br;X.toInt8Array=t=>Br(Int8Array,t);X.toInt16Array=t=>Br(Int16Array,t);X.toInt32Array=t=>Br(Int32Array,t);X.toBigInt64Array=t=>Br(Lf.BigInt64Array,t);X.toUint8Array=t=>Br(Uint8Array,t);X.toUint16Array=t=>Br(Uint16Array,t);X.toUint32Array=t=>Br(Uint32Array,t);X.toBigUint64Array=t=>Br(Lf.BigUint64Array,t);X.toFloat32Array=t=>Br(Float32Array,t);X.toFloat64Array=t=>Br(Float64Array,t);X.toUint8ClampedArray=t=>Br(Uint8ClampedArray,t);var fy=t=>(t.next(),t);function*oi(t,e){let r=function*(i){yield i},n=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof iy?r(e):Lf.isIterable(e)?e:r(e);return yield*fy(function*(i){let o=null;do o=i.next(yield Br(t,o));while(!o.done)}(n[Symbol.iterator]())),new t}X.toArrayBufferViewIterator=oi;X.toInt8ArrayIterator=t=>oi(Int8Array,t);X.toInt16ArrayIterator=t=>oi(Int16Array,t);X.toInt32ArrayIterator=t=>oi(Int32Array,t);X.toUint8ArrayIterator=t=>oi(Uint8Array,t);X.toUint16ArrayIterator=t=>oi(Uint16Array,t);X.toUint32ArrayIterator=t=>oi(Uint32Array,t);X.toFloat32ArrayIterator=t=>oi(Float32Array,t);X.toFloat64ArrayIterator=t=>oi(Float64Array,t);X.toUint8ClampedArrayIterator=t=>oi(Uint8ClampedArray,t);async function*Pn(t,e){if(Lf.isPromise(e))return yield*Pn(t,await e);let r=async function*(o){yield await o},n=async function*(o){yield*fy(function*(f){let s=null;do s=f.next(yield s&&s.value);while(!s.done)}(o[Symbol.iterator]()))},i=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof iy?r(e):Lf.isIterable(e)?n(e):Lf.isAsyncIterable(e)?e:r(e);return yield*fy(async function*(o){let f=null;do f=await o.next(yield Br(t,f));while(!f.done)}(i[Symbol.asyncIterator]())),new t}X.toArrayBufferViewAsyncIterator=Pn;X.toInt8ArrayAsyncIterator=t=>Pn(Int8Array,t);X.toInt16ArrayAsyncIterator=t=>Pn(Int16Array,t);X.toInt32ArrayAsyncIterator=t=>Pn(Int32Array,t);X.toUint8ArrayAsyncIterator=t=>Pn(Uint8Array,t);X.toUint16ArrayAsyncIterator=t=>Pn(Uint16Array,t);X.toUint32ArrayAsyncIterator=t=>Pn(Uint32Array,t);X.toFloat32ArrayAsyncIterator=t=>Pn(Float32Array,t);X.toFloat64ArrayAsyncIterator=t=>Pn(Float64Array,t);X.toUint8ClampedArrayAsyncIterator=t=>Pn(Uint8ClampedArray,t);function vR(t,e,r){if(t!==0){r=r.slice(0,e+1);for(let n=-1;++n<=e;)r[n]+=t}return r}X.rebaseValueOffsets=vR;function TR(t,e){let r=0,n=t.length;if(n!==e.length)return!1;if(n>0)do if(t[r]!==e[r])return!1;while(++r<n);return!0}X.compareArrayLike=TR});var _u=k(ay=>{"use strict";Object.defineProperty(ay,"__esModule",{value:!0});var Ir=Xt();ay.default={fromIterable(t){return qd(kR(t))},fromAsyncIterable(t){return qd(BR(t))},fromDOMStream(t){return qd(IR(t))},fromNodeStream(t){return qd(xR(t))},toDOMStream(t,e){throw new Error('"toDOMStream" not available in this environment')},toNodeStream(t,e){throw new Error('"toNodeStream" not available in this environment')}};var qd=t=>(t.next(),t);function*kR(t){let e,r=!1,n=[],i,o,f,s=0;function u(){return o==="peek"?Ir.joinUint8Arrays(n,f)[0]:([i,n,s]=Ir.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let l=Ir.toUint8ArrayIterator(t)[Symbol.iterator]();try{do if({done:e,value:i}=isNaN(f-s)?l.next(void 0):l.next(f-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield u());while(f<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&l.throw(c)}finally{r===!1&&typeof l.return=="function"&&l.return(null)}return null}async function*BR(t){let e,r=!1,n=[],i,o,f,s=0;function u(){return o==="peek"?Ir.joinUint8Arrays(n,f)[0]:([i,n,s]=Ir.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let l=Ir.toUint8ArrayAsyncIterator(t)[Symbol.asyncIterator]();try{do if({done:e,value:i}=isNaN(f-s)?await l.next(void 0):await l.next(f-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield u());while(f<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&await l.throw(c)}finally{r===!1&&typeof l.return=="function"&&await l.return(new Uint8Array(0))}return null}async function*IR(t){let e=!1,r=!1,n=[],i,o,f,s=0;function u(){return o==="peek"?Ir.joinUint8Arrays(n,f)[0]:([i,n,s]=Ir.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let l=new zI(t);try{do if({done:e,value:i}=isNaN(f-s)?await l.read(void 0):await l.read(f-s),!e&&i.byteLength>0&&(n.push(Ir.toUint8Array(i)),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield u());while(f<s);while(!e)}catch(c){(r=!0)&&await l.cancel(c)}finally{r===!1?await l.cancel():t.locked&&l.releaseLock()}return null}var zI=class{constructor(e){this.source=e,this.byobReader=null,this.defaultReader=null;try{this.supportsBYOB=!!(this.reader=this.getBYOBReader())}catch{this.supportsBYOB=!(this.reader=this.getDefaultReader())}}get closed(){return this.reader?this.reader.closed.catch(()=>{}):Promise.resolve()}releaseLock(){this.reader&&this.reader.releaseLock(),this.reader=this.byobReader=this.defaultReader=null}async cancel(e){let{reader:r,source:n}=this;r&&await r.cancel(e).catch(()=>{}),n&&n.locked&&this.releaseLock()}async read(e){if(e===0)return{done:this.reader==null,value:new Uint8Array(0)};let r=!this.supportsBYOB||typeof e!="number"?await this.getDefaultReader().read():await this.readFromBYOBReader(e);return!r.done&&(r.value=Ir.toUint8Array(r)),r}getDefaultReader(){return this.byobReader&&this.releaseLock(),this.defaultReader||(this.defaultReader=this.source.getReader(),this.defaultReader.closed.catch(()=>{})),this.reader=this.defaultReader}getBYOBReader(){return this.defaultReader&&this.releaseLock(),this.byobReader||(this.byobReader=this.source.getReader({mode:"byob"}),this.byobReader.closed.catch(()=>{})),this.reader=this.byobReader}async readFromBYOBReader(e){return await LI(this.getBYOBReader(),new ArrayBuffer(e),0,e)}};async function LI(t,e,r,n){if(r>=n)return{done:!1,value:new Uint8Array(e,0,n)};let{done:i,value:o}=await t.read(new Uint8Array(e,r,n-r));return(r+=o.byteLength)<n&&!i?await LI(t,o.buffer,r,n):{done:i,value:new Uint8Array(o.buffer,0,r)}}var sy=(t,e)=>{let r=i=>n([e,i]),n;return[e,r,new Promise(i=>(n=i)&&t.once(e,r))]};async function*xR(t){let e=[],r="error",n=!1,i=null,o,f,s=0,u=[],l;function c(){return o==="peek"?Ir.joinUint8Arrays(u,f)[0]:([l,u,s]=Ir.joinUint8Arrays(u,f),l)}if({cmd:o,size:f}=yield null,t.isTTY)return yield new Uint8Array(0),null;try{e[0]=sy(t,"end"),e[1]=sy(t,"error");do{if(e[2]=sy(t,"readable"),[r,i]=await Promise.race(e.map(p=>p[2])),r==="error")break;if((n=r==="end")||(isFinite(f-s)?(l=Ir.toUint8Array(t.read(f-s)),l.byteLength<f-s&&(l=Ir.toUint8Array(t.read(void 0)))):l=Ir.toUint8Array(t.read(void 0)),l.byteLength>0&&(u.push(l),s+=l.byteLength)),n||f<=s)do({cmd:o,size:f}=yield c());while(f<s)}while(!n)}finally{await w(e,r==="error"?i:null)}return null;function w(p,b){return l=u=null,new Promise((v,H)=>{for(let[O,W]of p)t.off(O,W);try{let O=t.destroy;O&&O.call(t,b),b=void 0}catch(O){b=O||b}finally{b!=null?H(b):v()}})}}});var Ut=k(Gs=>{"use strict";Object.defineProperty(Gs,"__esModule",{value:!0});Gs.Vector=Gs.AbstractVector=void 0;var vd=class{};Gs.AbstractVector=vd;Gs.Vector=vd;vd.prototype.data=null});var zo=k(J=>{"use strict";Object.defineProperty(J,"__esModule",{value:!0});J.Schema=J.Buffer=J.Field=J.DictionaryEncoding=J.KeyValue=J.Duration=J.Interval=J.Timestamp=J.Time=J.Date=J.Decimal=J.Bool=J.FixedSizeBinary=J.LargeBinary=J.LargeUtf8=J.Binary=J.Utf8=J.FloatingPoint=J.Int=J.Union=J.Map=J.FixedSizeList=J.LargeList=J.List=J.Struct_=J.Null=J.Endianness=J.DictionaryKind=J.Type=J.IntervalUnit=J.TimeUnit=J.DateUnit=J.Precision=J.UnionMode=J.Feature=J.MetadataVersion=void 0;var jt=Gi(),SR;(function(t){t[t.V1=0]="V1",t[t.V2=1]="V2",t[t.V3=2]="V3",t[t.V4=3]="V4",t[t.V5=4]="V5"})(SR=J.MetadataVersion||(J.MetadataVersion={}));var ER;(function(t){t[t.UNUSED=0]="UNUSED",t[t.DICTIONARY_REPLACEMENT=1]="DICTIONARY_REPLACEMENT",t[t.COMPRESSED_BODY=2]="COMPRESSED_BODY"})(ER=J.Feature||(J.Feature={}));var ly;(function(t){t[t.Sparse=0]="Sparse",t[t.Dense=1]="Dense"})(ly=J.UnionMode||(J.UnionMode={}));var uy;(function(t){t[t.HALF=0]="HALF",t[t.SINGLE=1]="SINGLE",t[t.DOUBLE=2]="DOUBLE"})(uy=J.Precision||(J.Precision={}));var cy;(function(t){t[t.DAY=0]="DAY",t[t.MILLISECOND=1]="MILLISECOND"})(cy=J.DateUnit||(J.DateUnit={}));var Vf;(function(t){t[t.SECOND=0]="SECOND",t[t.MILLISECOND=1]="MILLISECOND",t[t.MICROSECOND=2]="MICROSECOND",t[t.NANOSECOND=3]="NANOSECOND"})(Vf=J.TimeUnit||(J.TimeUnit={}));var py;(function(t){t[t.YEAR_MONTH=0]="YEAR_MONTH",t[t.DAY_TIME=1]="DAY_TIME"})(py=J.IntervalUnit||(J.IntervalUnit={}));var dy;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.FloatingPoint=3]="FloatingPoint",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct_=13]="Struct_",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Duration=18]="Duration",t[t.LargeBinary=19]="LargeBinary",t[t.LargeUtf8=20]="LargeUtf8",t[t.LargeList=21]="LargeList"})(dy=J.Type||(J.Type={}));var my;(function(t){t[t.DenseArray=0]="DenseArray"})(my=J.DictionaryKind||(J.DictionaryKind={}));var wy;(function(t){t[t.Little=0]="Little",t[t.Big=1]="Big"})(wy=J.Endianness||(J.Endianness={}));var Cf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsNull(e,r){return(r||new Cf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsNull(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Cf).__init(e.readInt32(e.position())+e.position(),e)}static startNull(e){e.startObject(0)}static endNull(e){return e.endObject()}static createNull(e){return Cf.startNull(e),Cf.endNull(e)}};J.Null=Cf;var Wf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsStruct_(e,r){return(r||new Wf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsStruct_(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Wf).__init(e.readInt32(e.position())+e.position(),e)}static startStruct_(e){e.startObject(0)}static endStruct_(e){return e.endObject()}static createStruct_(e){return Wf.startStruct_(e),Wf.endStruct_(e)}};J.Struct_=Wf;var Kf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsList(e,r){return(r||new Kf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsList(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Kf).__init(e.readInt32(e.position())+e.position(),e)}static startList(e){e.startObject(0)}static endList(e){return e.endObject()}static createList(e){return Kf.startList(e),Kf.endList(e)}};J.List=Kf;var Yf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeList(e,r){return(r||new Yf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeList(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Yf).__init(e.readInt32(e.position())+e.position(),e)}static startLargeList(e){e.startObject(0)}static endLargeList(e){return e.endObject()}static createLargeList(e){return Yf.startLargeList(e),Yf.endLargeList(e)}};J.LargeList=Yf;var Do=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeList(e,r){return(r||new Do).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeList(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Do).__init(e.readInt32(e.position())+e.position(),e)}listSize(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeList(e){e.startObject(1)}static addListSize(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeList(e){return e.endObject()}static createFixedSizeList(e,r){return Do.startFixedSizeList(e),Do.addListSize(e,r),Do.endFixedSizeList(e)}};J.FixedSizeList=Do;var No=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMap(e,r){return(r||new No).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMap(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new No).__init(e.readInt32(e.position())+e.position(),e)}keysSorted(){let e=this.bb.__offset(this.bb_pos,4);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startMap(e){e.startObject(1)}static addKeysSorted(e,r){e.addFieldInt8(0,+r,0)}static endMap(e){return e.endObject()}static createMap(e,r){return No.startMap(e),No.addKeysSorted(e,r),No.endMap(e)}};J.Map=No;var Ji=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUnion(e,r){return(r||new Ji).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUnion(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ji).__init(e.readInt32(e.position())+e.position(),e)}mode(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):ly.Sparse}typeIds(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.readInt32(this.bb.__vector(this.bb_pos+r)+e*4):0}typeIdsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}typeIdsArray(){let e=this.bb.__offset(this.bb_pos,6);return e?new Int32Array(this.bb.bytes().buffer,this.bb.bytes().byteOffset+this.bb.__vector(this.bb_pos+e),this.bb.__vector_len(this.bb_pos+e)):null}static startUnion(e){e.startObject(2)}static addMode(e,r){e.addFieldInt16(0,r,ly.Sparse)}static addTypeIds(e,r){e.addFieldOffset(1,r,0)}static createTypeIdsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addInt32(r[n]);return e.endVector()}static startTypeIdsVector(e,r){e.startVector(4,r,4)}static endUnion(e){return e.endObject()}static createUnion(e,r,n){return Ji.startUnion(e),Ji.addMode(e,r),Ji.addTypeIds(e,n),Ji.endUnion(e)}};J.Union=Ji;var fi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInt(e,r){return(r||new fi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInt(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new fi).__init(e.readInt32(e.position())+e.position(),e)}bitWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}isSigned(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startInt(e){e.startObject(2)}static addBitWidth(e,r){e.addFieldInt32(0,r,0)}static addIsSigned(e,r){e.addFieldInt8(1,+r,0)}static endInt(e){return e.endObject()}static createInt(e,r,n){return fi.startInt(e),fi.addBitWidth(e,r),fi.addIsSigned(e,n),fi.endInt(e)}};J.Int=fi;var Po=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFloatingPoint(e,r){return(r||new Po).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFloatingPoint(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Po).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):uy.HALF}static startFloatingPoint(e){e.startObject(1)}static addPrecision(e,r){e.addFieldInt16(0,r,uy.HALF)}static endFloatingPoint(e){return e.endObject()}static createFloatingPoint(e,r){return Po.startFloatingPoint(e),Po.addPrecision(e,r),Po.endFloatingPoint(e)}};J.FloatingPoint=Po;var Gf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUtf8(e,r){return(r||new Gf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUtf8(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Gf).__init(e.readInt32(e.position())+e.position(),e)}static startUtf8(e){e.startObject(0)}static endUtf8(e){return e.endObject()}static createUtf8(e){return Gf.startUtf8(e),Gf.endUtf8(e)}};J.Utf8=Gf;var Zf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBinary(e,r){return(r||new Zf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBinary(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Zf).__init(e.readInt32(e.position())+e.position(),e)}static startBinary(e){e.startObject(0)}static endBinary(e){return e.endObject()}static createBinary(e){return Zf.startBinary(e),Zf.endBinary(e)}};J.Binary=Zf;var Jf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeUtf8(e,r){return(r||new Jf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeUtf8(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Jf).__init(e.readInt32(e.position())+e.position(),e)}static startLargeUtf8(e){e.startObject(0)}static endLargeUtf8(e){return e.endObject()}static createLargeUtf8(e){return Jf.startLargeUtf8(e),Jf.endLargeUtf8(e)}};J.LargeUtf8=Jf;var Qf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeBinary(e,r){return(r||new Qf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeBinary(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Qf).__init(e.readInt32(e.position())+e.position(),e)}static startLargeBinary(e){e.startObject(0)}static endLargeBinary(e){return e.endObject()}static createLargeBinary(e){return Qf.startLargeBinary(e),Qf.endLargeBinary(e)}};J.LargeBinary=Qf;var Ro=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeBinary(e,r){return(r||new Ro).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeBinary(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ro).__init(e.readInt32(e.position())+e.position(),e)}byteWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeBinary(e){e.startObject(1)}static addByteWidth(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeBinary(e){return e.endObject()}static createFixedSizeBinary(e,r){return Ro.startFixedSizeBinary(e),Ro.addByteWidth(e,r),Ro.endFixedSizeBinary(e)}};J.FixedSizeBinary=Ro;var Xf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBool(e,r){return(r||new Xf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBool(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Xf).__init(e.readInt32(e.position())+e.position(),e)}static startBool(e){e.startObject(0)}static endBool(e){return e.endObject()}static createBool(e){return Xf.startBool(e),Xf.endBool(e)}};J.Bool=Xf;var si=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDecimal(e,r){return(r||new si).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDecimal(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new si).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}scale(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):0}bitWidth(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readInt32(this.bb_pos+e):128}static startDecimal(e){e.startObject(3)}static addPrecision(e,r){e.addFieldInt32(0,r,0)}static addScale(e,r){e.addFieldInt32(1,r,0)}static addBitWidth(e,r){e.addFieldInt32(2,r,128)}static endDecimal(e){return e.endObject()}static createDecimal(e,r,n,i){return si.startDecimal(e),si.addPrecision(e,r),si.addScale(e,n),si.addBitWidth(e,i),si.endDecimal(e)}};J.Decimal=si;var Ho=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDate(e,r){return(r||new Ho).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDate(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ho).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):cy.MILLISECOND}static startDate(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,cy.MILLISECOND)}static endDate(e){return e.endObject()}static createDate(e,r){return Ho.startDate(e),Ho.addUnit(e,r),Ho.endDate(e)}};J.Date=Ho;var Qi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTime(e,r){return(r||new Qi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTime(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Qi).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Vf.MILLISECOND}bitWidth(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):32}static startTime(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,Vf.MILLISECOND)}static addBitWidth(e,r){e.addFieldInt32(1,r,32)}static endTime(e){return e.endObject()}static createTime(e,r,n){return Qi.startTime(e),Qi.addUnit(e,r),Qi.addBitWidth(e,n),Qi.endTime(e)}};J.Time=Qi;var Xi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTimestamp(e,r){return(r||new Xi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTimestamp(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Xi).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Vf.SECOND}timezone(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startTimestamp(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,Vf.SECOND)}static addTimezone(e,r){e.addFieldOffset(1,r,0)}static endTimestamp(e){return e.endObject()}static createTimestamp(e,r,n){return Xi.startTimestamp(e),Xi.addUnit(e,r),Xi.addTimezone(e,n),Xi.endTimestamp(e)}};J.Timestamp=Xi;var Uo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInterval(e,r){return(r||new Uo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInterval(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Uo).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):py.YEAR_MONTH}static startInterval(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,py.YEAR_MONTH)}static endInterval(e){return e.endObject()}static createInterval(e,r){return Uo.startInterval(e),Uo.addUnit(e,r),Uo.endInterval(e)}};J.Interval=Uo;var Mo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDuration(e,r){return(r||new Mo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDuration(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Mo).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Vf.MILLISECOND}static startDuration(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,Vf.MILLISECOND)}static endDuration(e){return e.endObject()}static createDuration(e,r){return Mo.startDuration(e),Mo.addUnit(e,r),Mo.endDuration(e)}};J.Duration=Mo;var Rn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsKeyValue(e,r){return(r||new Rn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsKeyValue(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Rn).__init(e.readInt32(e.position())+e.position(),e)}key(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}value(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startKeyValue(e){e.startObject(2)}static addKey(e,r){e.addFieldOffset(0,r,0)}static addValue(e,r){e.addFieldOffset(1,r,0)}static endKeyValue(e){return e.endObject()}static createKeyValue(e,r,n){return Rn.startKeyValue(e),Rn.addKey(e,r),Rn.addValue(e,n),Rn.endKeyValue(e)}};J.KeyValue=Rn;var cn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryEncoding(e,r){return(r||new cn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryEncoding(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new cn).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}indexType(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new fi).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isOrdered(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}dictionaryKind(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt16(this.bb_pos+e):my.DenseArray}static startDictionaryEncoding(e){e.startObject(4)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addIndexType(e,r){e.addFieldOffset(1,r,0)}static addIsOrdered(e,r){e.addFieldInt8(2,+r,0)}static addDictionaryKind(e,r){e.addFieldInt16(3,r,my.DenseArray)}static endDictionaryEncoding(e){return e.endObject()}static createDictionaryEncoding(e,r,n,i,o){return cn.startDictionaryEncoding(e),cn.addId(e,r),cn.addIndexType(e,n),cn.addIsOrdered(e,i),cn.addDictionaryKind(e,o),cn.endDictionaryEncoding(e)}};J.DictionaryEncoding=cn;var yr=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsField(e,r){return(r||new yr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsField(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new yr).__init(e.readInt32(e.position())+e.position(),e)}name(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}nullable(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}typeType(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readUint8(this.bb_pos+e):dy.NONE}type(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.__union(e,this.bb_pos+r):null}dictionary(e){let r=this.bb.__offset(this.bb_pos,12);return r?(e||new cn).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}children(e,r){let n=this.bb.__offset(this.bb_pos,14);return n?(r||new yr).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}childrenLength(){let e=this.bb.__offset(this.bb_pos,14);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,16);return n?(r||new Rn).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,16);return e?this.bb.__vector_len(this.bb_pos+e):0}static startField(e){e.startObject(7)}static addName(e,r){e.addFieldOffset(0,r,0)}static addNullable(e,r){e.addFieldInt8(1,+r,0)}static addTypeType(e,r){e.addFieldInt8(2,r,dy.NONE)}static addType(e,r){e.addFieldOffset(3,r,0)}static addDictionary(e,r){e.addFieldOffset(4,r,0)}static addChildren(e,r){e.addFieldOffset(5,r,0)}static createChildrenVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startChildrenVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(6,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endField(e){return e.endObject()}static createField(e,r,n,i,o,f,s,u){return yr.startField(e),yr.addName(e,r),yr.addNullable(e,n),yr.addTypeType(e,i),yr.addType(e,o),yr.addDictionary(e,f),yr.addChildren(e,s),yr.addCustomMetadata(e,u),yr.endField(e)}};J.Field=yr;var VI=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}length(){return this.bb.readInt64(this.bb_pos+8)}static createBuffer(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};J.Buffer=VI;var Hn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsSchema(e,r){return(r||new Hn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsSchema(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Hn).__init(e.readInt32(e.position())+e.position(),e)}endianness(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):wy.Little}fields(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new yr).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}fieldsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new Rn).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}features(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.readInt64(this.bb.__vector(this.bb_pos+r)+e*8):this.bb.createLong(0,0)}featuresLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}static startSchema(e){e.startObject(4)}static addEndianness(e,r){e.addFieldInt16(0,r,wy.Little)}static addFields(e,r){e.addFieldOffset(1,r,0)}static createFieldsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startFieldsVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(2,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static addFeatures(e,r){e.addFieldOffset(3,r,0)}static createFeaturesVector(e,r){e.startVector(8,r.length,8);for(let n=r.length-1;n>=0;n--)e.addInt64(r[n]);return e.endVector()}static startFeaturesVector(e,r){e.startVector(8,r,8)}static endSchema(e){return e.endObject()}static finishSchemaBuffer(e,r){e.finish(r)}static finishSizePrefixedSchemaBuffer(e,r){e.finish(r,void 0,!0)}static createSchema(e,r,n,i,o){return Hn.startSchema(e),Hn.addEndianness(e,r),Hn.addFields(e,n),Hn.addCustomMetadata(e,i),Hn.addFeatures(e,o),Hn.endSchema(e)}};J.Schema=Hn});var Bd=k(Mt=>{"use strict";Object.defineProperty(Mt,"__esModule",{value:!0});Mt.Message=Mt.DictionaryBatch=Mt.RecordBatch=Mt.BodyCompression=Mt.FieldNode=Mt.MessageHeader=Mt.BodyCompressionMethod=Mt.CompressionType=void 0;var Td=Gi(),kd=zo(),hy;(function(t){t[t.LZ4_FRAME=0]="LZ4_FRAME",t[t.ZSTD=1]="ZSTD"})(hy=Mt.CompressionType||(Mt.CompressionType={}));var by;(function(t){t[t.BUFFER=0]="BUFFER"})(by=Mt.BodyCompressionMethod||(Mt.BodyCompressionMethod={}));var gy;(function(t){t[t.NONE=0]="NONE",t[t.Schema=1]="Schema",t[t.DictionaryBatch=2]="DictionaryBatch",t[t.RecordBatch=3]="RecordBatch",t[t.Tensor=4]="Tensor",t[t.SparseTensor=5]="SparseTensor"})(gy=Mt.MessageHeader||(Mt.MessageHeader={}));var yy=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}length(){return this.bb.readInt64(this.bb_pos)}nullCount(){return this.bb.readInt64(this.bb_pos+8)}static createFieldNode(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};Mt.FieldNode=yy;var ai=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBodyCompression(e,r){return(r||new ai).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBodyCompression(e,r){return e.setPosition(e.position()+Td.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ai).__init(e.readInt32(e.position())+e.position(),e)}codec(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt8(this.bb_pos+e):hy.LZ4_FRAME}method(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt8(this.bb_pos+e):by.BUFFER}static startBodyCompression(e){e.startObject(2)}static addCodec(e,r){e.addFieldInt8(0,r,hy.LZ4_FRAME)}static addMethod(e,r){e.addFieldInt8(1,r,by.BUFFER)}static endBodyCompression(e){return e.endObject()}static createBodyCompression(e,r,n){return ai.startBodyCompression(e),ai.addCodec(e,r),ai.addMethod(e,n),ai.endBodyCompression(e)}};Mt.BodyCompression=ai;var pn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsRecordBatch(e,r){return(r||new pn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsRecordBatch(e,r){return e.setPosition(e.position()+Td.flatbuffers.SIZE_PREFIX_LENGTH),(r||new pn).__init(e.readInt32(e.position())+e.position(),e)}length(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}nodes(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new yy).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}nodesLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}buffers(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new kd.Buffer).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}buffersLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}compression(e){let r=this.bb.__offset(this.bb_pos,10);return r?(e||new ai).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}static startRecordBatch(e){e.startObject(4)}static addLength(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addNodes(e,r){e.addFieldOffset(1,r,0)}static startNodesVector(e,r){e.startVector(16,r,8)}static addBuffers(e,r){e.addFieldOffset(2,r,0)}static startBuffersVector(e,r){e.startVector(16,r,8)}static addCompression(e,r){e.addFieldOffset(3,r,0)}static endRecordBatch(e){return e.endObject()}static createRecordBatch(e,r,n,i,o){return pn.startRecordBatch(e),pn.addLength(e,r),pn.addNodes(e,n),pn.addBuffers(e,i),pn.addCompression(e,o),pn.endRecordBatch(e)}};Mt.RecordBatch=pn;var li=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryBatch(e,r){return(r||new li).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryBatch(e,r){return e.setPosition(e.position()+Td.flatbuffers.SIZE_PREFIX_LENGTH),(r||new li).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}data(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new pn).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isDelta(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startDictionaryBatch(e){e.startObject(3)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addData(e,r){e.addFieldOffset(1,r,0)}static addIsDelta(e,r){e.addFieldInt8(2,+r,0)}static endDictionaryBatch(e){return e.endObject()}static createDictionaryBatch(e,r,n,i){return li.startDictionaryBatch(e),li.addId(e,r),li.addData(e,n),li.addIsDelta(e,i),li.endDictionaryBatch(e)}};Mt.DictionaryBatch=li;var dn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMessage(e,r){return(r||new dn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMessage(e,r){return e.setPosition(e.position()+Td.flatbuffers.SIZE_PREFIX_LENGTH),(r||new dn).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):kd.MetadataVersion.V1}headerType(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readUint8(this.bb_pos+e):gy.NONE}header(e){let r=this.bb.__offset(this.bb_pos,8);return r?this.bb.__union(e,this.bb_pos+r):null}bodyLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new kd.KeyValue).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startMessage(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,kd.MetadataVersion.V1)}static addHeaderType(e,r){e.addFieldInt8(1,r,gy.NONE)}static addHeader(e,r){e.addFieldOffset(2,r,0)}static addBodyLength(e,r){e.addFieldInt64(3,r,e.createLong(0,0))}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endMessage(e){return e.endObject()}static finishMessageBuffer(e,r){e.finish(r)}static finishSizePrefixedMessageBuffer(e,r){e.finish(r,void 0,!0)}static createMessage(e,r,n,i,o,f){return dn.startMessage(e),dn.addVersion(e,r),dn.addHeaderType(e,n),dn.addHeader(e,i),dn.addBodyLength(e,o),dn.addCustomMetadata(e,f),dn.endMessage(e)}};Mt.Message=dn});var bt=k(St=>{"use strict";Object.defineProperty(St,"__esModule",{value:!0});St.BufferType=St.Type=St.MessageHeader=St.MetadataVersion=St.IntervalUnit=St.UnionMode=St.Precision=St.TimeUnit=St.DateUnit=void 0;var Zs=zo();Object.defineProperty(St,"DateUnit",{enumerable:!0,get:function(){return Zs.DateUnit}});Object.defineProperty(St,"TimeUnit",{enumerable:!0,get:function(){return Zs.TimeUnit}});Object.defineProperty(St,"Precision",{enumerable:!0,get:function(){return Zs.Precision}});Object.defineProperty(St,"UnionMode",{enumerable:!0,get:function(){return Zs.UnionMode}});Object.defineProperty(St,"IntervalUnit",{enumerable:!0,get:function(){return Zs.IntervalUnit}});Object.defineProperty(St,"MetadataVersion",{enumerable:!0,get:function(){return Zs.MetadataVersion}});var AR=Bd();Object.defineProperty(St,"MessageHeader",{enumerable:!0,get:function(){return AR.MessageHeader}});var OR;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.Float=3]="Float",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct=13]="Struct",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Dictionary=-1]="Dictionary",t[t.Int8=-2]="Int8",t[t.Int16=-3]="Int16",t[t.Int32=-4]="Int32",t[t.Int64=-5]="Int64",t[t.Uint8=-6]="Uint8",t[t.Uint16=-7]="Uint16",t[t.Uint32=-8]="Uint32",t[t.Uint64=-9]="Uint64",t[t.Float16=-10]="Float16",t[t.Float32=-11]="Float32",t[t.Float64=-12]="Float64",t[t.DateDay=-13]="DateDay",t[t.DateMillisecond=-14]="DateMillisecond",t[t.TimestampSecond=-15]="TimestampSecond",t[t.TimestampMillisecond=-16]="TimestampMillisecond",t[t.TimestampMicrosecond=-17]="TimestampMicrosecond",t[t.TimestampNanosecond=-18]="TimestampNanosecond",t[t.TimeSecond=-19]="TimeSecond",t[t.TimeMillisecond=-20]="TimeMillisecond",t[t.TimeMicrosecond=-21]="TimeMicrosecond",t[t.TimeNanosecond=-22]="TimeNanosecond",t[t.DenseUnion=-23]="DenseUnion",t[t.SparseUnion=-24]="SparseUnion",t[t.IntervalDayTime=-25]="IntervalDayTime",t[t.IntervalYearMonth=-26]="IntervalYearMonth"})(OR=St.Type||(St.Type={}));var FR;(function(t){t[t.OFFSET=0]="OFFSET",t[t.DATA=1]="DATA",t[t.VALIDITY=2]="VALIDITY",t[t.TYPE=3]="TYPE"})(FR=St.BufferType||(St.BufferType={}))});var ui=k(Wt=>{"use strict";Object.defineProperty(Wt,"__esModule",{value:!0});Wt.popcnt_uint32=Wt.popcnt_array=Wt.popcnt_bit_range=Wt.BitIterator=Wt.packBools=Wt.truncateBitmap=Wt.setBool=Wt.getBit=Wt.getBool=void 0;function CI(t,e,r,n){return(r&1<<n)!=0}Wt.getBool=CI;function WI(t,e,r,n){return(r&1<<n)>>n}Wt.getBit=WI;function DR(t,e,r){return r?!!(t[e>>3]|=1<<e%8)||!0:!(t[e>>3]&=~(1<<e%8))&&!1}Wt.setBool=DR;function NR(t,e,r){let n=r.byteLength+7&~7;if(t>0||r.byteLength<n){let i=new Uint8Array(n);return i.set(t%8==0?r.subarray(t>>3):KI(new Id(r,t,e,null,CI)).subarray(0,n)),i}return r}Wt.truncateBitmap=NR;function KI(t){let e=[],r=0,n=0,i=0;for(let f of t)f&&(i|=1<<n),++n==8&&(e[r++]=i,i=n=0);(r===0||n>0)&&(e[r++]=i);let o=new Uint8Array(e.length+7&~7);return o.set(e),o}Wt.packBools=KI;var Id=class{constructor(e,r,n,i,o){this.bytes=e,this.length=n,this.context=i,this.get=o,this.bit=r%8,this.byteIndex=r>>3,this.byte=e[this.byteIndex++],this.index=0}next(){return this.index<this.length?(this.bit===8&&(this.bit=0,this.byte=this.bytes[this.byteIndex++]),{value:this.get(this.context,this.index++,this.byte,this.bit++)}):{done:!0,value:null}}[Symbol.iterator](){return this}};Wt.BitIterator=Id;function jy(t,e,r){if(r-e<=0)return 0;if(r-e<8){let o=0;for(let f of new Id(t,e,r-e,t,WI))o+=f;return o}let n=r>>3<<3,i=e+(e%8==0?0:8-e%8);return jy(t,e,i)+jy(t,n,r)+YI(t,i>>3,n-i>>3)}Wt.popcnt_bit_range=jy;function YI(t,e,r){let n=0,i=e|0,o=new DataView(t.buffer,t.byteOffset,t.byteLength),f=r===void 0?t.byteLength:i+r;for(;f-i>=4;)n+=xd(o.getUint32(i)),i+=4;for(;f-i>=2;)n+=xd(o.getUint16(i)),i+=2;for(;f-i>=1;)n+=xd(o.getUint8(i)),i+=1;return n}Wt.popcnt_array=YI;function xd(t){let e=t|0;return e=e-(e>>>1&1431655765),e=(e&858993459)+(e>>>2&858993459),(e+(e>>>4)&252645135)*16843009>>>24}Wt.popcnt_uint32=xd});var nt=k(Y=>{"use strict";Object.defineProperty(Y,"__esModule",{value:!0});Y.strideForType=Y.Dictionary=Y.Map_=Y.FixedSizeList=Y.FixedSizeBinary=Y.SparseUnion=Y.DenseUnion=Y.Union=Y.Struct=Y.List=Y.IntervalYearMonth=Y.IntervalDayTime=Y.Interval=Y.TimestampNanosecond=Y.TimestampMicrosecond=Y.TimestampMillisecond=Y.TimestampSecond=Y.Timestamp=Y.TimeNanosecond=Y.TimeMicrosecond=Y.TimeMillisecond=Y.TimeSecond=Y.Time=Y.DateMillisecond=Y.DateDay=Y.Date_=Y.Decimal=Y.Bool=Y.Utf8=Y.Binary=Y.Float64=Y.Float32=Y.Float16=Y.Float=Y.Uint64=Y.Uint32=Y.Uint16=Y.Uint8=Y.Int64=Y.Int32=Y.Int16=Y.Int8=Y.Int=Y.Null=Y.DataType=void 0;var $=bt(),Et=class{static isNull(e){return e&&e.typeId===$.Type.Null}static isInt(e){return e&&e.typeId===$.Type.Int}static isFloat(e){return e&&e.typeId===$.Type.Float}static isBinary(e){return e&&e.typeId===$.Type.Binary}static isUtf8(e){return e&&e.typeId===$.Type.Utf8}static isBool(e){return e&&e.typeId===$.Type.Bool}static isDecimal(e){return e&&e.typeId===$.Type.Decimal}static isDate(e){return e&&e.typeId===$.Type.Date}static isTime(e){return e&&e.typeId===$.Type.Time}static isTimestamp(e){return e&&e.typeId===$.Type.Timestamp}static isInterval(e){return e&&e.typeId===$.Type.Interval}static isList(e){return e&&e.typeId===$.Type.List}static isStruct(e){return e&&e.typeId===$.Type.Struct}static isUnion(e){return e&&e.typeId===$.Type.Union}static isFixedSizeBinary(e){return e&&e.typeId===$.Type.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===$.Type.FixedSizeList}static isMap(e){return e&&e.typeId===$.Type.Map}static isDictionary(e){return e&&e.typeId===$.Type.Dictionary}get typeId(){return $.Type.NONE}};Y.DataType=Et;Et[Symbol.toStringTag]=(t=>(t.children=null,t.ArrayType=Array,t[Symbol.toStringTag]="DataType"))(Et.prototype);var Sd=class extends Et{toString(){return"Null"}get typeId(){return $.Type.Null}};Y.Null=Sd;Sd[Symbol.toStringTag]=(t=>t[Symbol.toStringTag]="Null")(Sd.prototype);var mn=class extends Et{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return $.Type.Int}get ArrayType(){switch(this.bitWidth){case 8:return this.isSigned?Int8Array:Uint8Array;case 16:return this.isSigned?Int16Array:Uint16Array;case 32:return this.isSigned?Int32Array:Uint32Array;case 64:return this.isSigned?Int32Array:Uint32Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`${this.isSigned?"I":"Ui"}nt${this.bitWidth}`}};Y.Int=mn;mn[Symbol.toStringTag]=(t=>(t.isSigned=null,t.bitWidth=null,t[Symbol.toStringTag]="Int"))(mn.prototype);var _y=class extends mn{constructor(){super(!0,8)}};Y.Int8=_y;var qy=class extends mn{constructor(){super(!0,16)}};Y.Int16=qy;var vy=class extends mn{constructor(){super(!0,32)}};Y.Int32=vy;var Ty=class extends mn{constructor(){super(!0,64)}};Y.Int64=Ty;var ky=class extends mn{constructor(){super(!1,8)}};Y.Uint8=ky;var By=class extends mn{constructor(){super(!1,16)}};Y.Uint16=By;var Iy=class extends mn{constructor(){super(!1,32)}};Y.Uint32=Iy;var xy=class extends mn{constructor(){super(!1,64)}};Y.Uint64=xy;Object.defineProperty(_y.prototype,"ArrayType",{value:Int8Array});Object.defineProperty(qy.prototype,"ArrayType",{value:Int16Array});Object.defineProperty(vy.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Ty.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(ky.prototype,"ArrayType",{value:Uint8Array});Object.defineProperty(By.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Iy.prototype,"ArrayType",{value:Uint32Array});Object.defineProperty(xy.prototype,"ArrayType",{value:Uint32Array});var $f=class extends Et{constructor(e){super();this.precision=e}get typeId(){return $.Type.Float}get ArrayType(){switch(this.precision){case $.Precision.HALF:return Uint16Array;case $.Precision.SINGLE:return Float32Array;case $.Precision.DOUBLE:return Float64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`Float${this.precision<<5||16}`}};Y.Float=$f;$f[Symbol.toStringTag]=(t=>(t.precision=null,t[Symbol.toStringTag]="Float"))($f.prototype);var Sy=class extends $f{constructor(){super($.Precision.HALF)}};Y.Float16=Sy;var Ey=class extends $f{constructor(){super($.Precision.SINGLE)}};Y.Float32=Ey;var Ay=class extends $f{constructor(){super($.Precision.DOUBLE)}};Y.Float64=Ay;Object.defineProperty(Sy.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Ey.prototype,"ArrayType",{value:Float32Array});Object.defineProperty(Ay.prototype,"ArrayType",{value:Float64Array});var Ed=class extends Et{constructor(){super()}get typeId(){return $.Type.Binary}toString(){return"Binary"}};Y.Binary=Ed;Ed[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Binary"))(Ed.prototype);var Ad=class extends Et{constructor(){super()}get typeId(){return $.Type.Utf8}toString(){return"Utf8"}};Y.Utf8=Ad;Ad[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Utf8"))(Ad.prototype);var Od=class extends Et{constructor(){super()}get typeId(){return $.Type.Bool}toString(){return"Bool"}};Y.Bool=Od;Od[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Bool"))(Od.prototype);var Fd=class extends Et{constructor(e,r){super();this.scale=e,this.precision=r}get typeId(){return $.Type.Decimal}toString(){return`Decimal[${this.precision}e${this.scale>0?"+":""}${this.scale}]`}};Y.Decimal=Fd;Fd[Symbol.toStringTag]=(t=>(t.scale=null,t.precision=null,t.ArrayType=Uint32Array,t[Symbol.toStringTag]="Decimal"))(Fd.prototype);var Js=class extends Et{constructor(e){super();this.unit=e}get typeId(){return $.Type.Date}toString(){return`Date${(this.unit+1)*32}<${$.DateUnit[this.unit]}>`}};Y.Date_=Js;Js[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Date"))(Js.prototype);var GI=class extends Js{constructor(){super($.DateUnit.DAY)}};Y.DateDay=GI;var ZI=class extends Js{constructor(){super($.DateUnit.MILLISECOND)}};Y.DateMillisecond=ZI;var Lo=class extends Et{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return $.Type.Time}toString(){return`Time${this.bitWidth}<${$.TimeUnit[this.unit]}>`}};Y.Time=Lo;Lo[Symbol.toStringTag]=(t=>(t.unit=null,t.bitWidth=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Time"))(Lo.prototype);var JI=class extends Lo{constructor(){super($.TimeUnit.SECOND,32)}};Y.TimeSecond=JI;var QI=class extends Lo{constructor(){super($.TimeUnit.MILLISECOND,32)}};Y.TimeMillisecond=QI;var XI=class extends Lo{constructor(){super($.TimeUnit.MICROSECOND,64)}};Y.TimeMicrosecond=XI;var $I=class extends Lo{constructor(){super($.TimeUnit.NANOSECOND,64)}};Y.TimeNanosecond=$I;var Vo=class extends Et{constructor(e,r){super();this.unit=e,this.timezone=r}get typeId(){return $.Type.Timestamp}toString(){return`Timestamp<${$.TimeUnit[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}};Y.Timestamp=Vo;Vo[Symbol.toStringTag]=(t=>(t.unit=null,t.timezone=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Timestamp"))(Vo.prototype);var e1=class extends Vo{constructor(e){super($.TimeUnit.SECOND,e)}};Y.TimestampSecond=e1;var t1=class extends Vo{constructor(e){super($.TimeUnit.MILLISECOND,e)}};Y.TimestampMillisecond=t1;var r1=class extends Vo{constructor(e){super($.TimeUnit.MICROSECOND,e)}};Y.TimestampMicrosecond=r1;var n1=class extends Vo{constructor(e){super($.TimeUnit.NANOSECOND,e)}};Y.TimestampNanosecond=n1;var Qs=class extends Et{constructor(e){super();this.unit=e}get typeId(){return $.Type.Interval}toString(){return`Interval<${$.IntervalUnit[this.unit]}>`}};Y.Interval=Qs;Qs[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Interval"))(Qs.prototype);var i1=class extends Qs{constructor(){super($.IntervalUnit.DAY_TIME)}};Y.IntervalDayTime=i1;var o1=class extends Qs{constructor(){super($.IntervalUnit.YEAR_MONTH)}};Y.IntervalYearMonth=o1;var Dd=class extends Et{constructor(e){super();this.children=[e]}get typeId(){return $.Type.List}toString(){return`List<${this.valueType}>`}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}};Y.List=Dd;Dd[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="List"))(Dd.prototype);var Nd=class extends Et{constructor(e){super();this.children=e}get typeId(){return $.Type.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};Y.Struct=Nd;Nd[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="Struct"))(Nd.prototype);var Xs=class extends Et{constructor(e,r,n){super();this.mode=e,this.children=n,this.typeIds=r=Int32Array.from(r),this.typeIdToChildIndex=r.reduce((i,o,f)=>(i[o]=f)&&i||i,Object.create(null))}get typeId(){return $.Type.Union}toString(){return`${this[Symbol.toStringTag]}<${this.children.map(e=>`${e.type}`).join(" | ")}>`}};Y.Union=Xs;Xs[Symbol.toStringTag]=(t=>(t.mode=null,t.typeIds=null,t.children=null,t.typeIdToChildIndex=null,t.ArrayType=Int8Array,t[Symbol.toStringTag]="Union"))(Xs.prototype);var f1=class extends Xs{constructor(e,r){super($.UnionMode.Dense,e,r)}};Y.DenseUnion=f1;var s1=class extends Xs{constructor(e,r){super($.UnionMode.Sparse,e,r)}};Y.SparseUnion=s1;var Pd=class extends Et{constructor(e){super();this.byteWidth=e}get typeId(){return $.Type.FixedSizeBinary}toString(){return`FixedSizeBinary[${this.byteWidth}]`}};Y.FixedSizeBinary=Pd;Pd[Symbol.toStringTag]=(t=>(t.byteWidth=null,t.ArrayType=Uint8Array,t[Symbol.toStringTag]="FixedSizeBinary"))(Pd.prototype);var Rd=class extends Et{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return $.Type.FixedSizeList}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}toString(){return`FixedSizeList[${this.listSize}]<${this.valueType}>`}};Y.FixedSizeList=Rd;Rd[Symbol.toStringTag]=(t=>(t.children=null,t.listSize=null,t[Symbol.toStringTag]="FixedSizeList"))(Rd.prototype);var Hd=class extends Et{constructor(e,r=!1){super();this.children=[e],this.keysSorted=r}get typeId(){return $.Type.Map}get keyType(){return this.children[0].type.children[0].type}get valueType(){return this.children[0].type.children[1].type}toString(){return`Map<{${this.children[0].type.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};Y.Map_=Hd;Hd[Symbol.toStringTag]=(t=>(t.children=null,t.keysSorted=null,t[Symbol.toStringTag]="Map_"))(Hd.prototype);var PR=(t=>()=>++t)(-1),Ud=class extends Et{constructor(e,r,n,i){super();this.indices=r,this.dictionary=e,this.isOrdered=i||!1,this.id=n==null?PR():typeof n=="number"?n:n.low}get typeId(){return $.Type.Dictionary}get children(){return this.dictionary.children}get valueType(){return this.dictionary}get ArrayType(){return this.dictionary.ArrayType}toString(){return`Dictionary<${this.indices}, ${this.dictionary}>`}};Y.Dictionary=Ud;Ud[Symbol.toStringTag]=(t=>(t.id=null,t.indices=null,t.isOrdered=null,t.dictionary=null,t[Symbol.toStringTag]="Dictionary"))(Ud.prototype);function RR(t){let e=t;switch(t.typeId){case $.Type.Decimal:return 4;case $.Type.Timestamp:return 2;case $.Type.Date:return 1+e.unit;case $.Type.Interval:return 1+e.unit;case $.Type.Int:return 1+ +(e.bitWidth>32);case $.Type.Time:return 1+ +(e.bitWidth>32);case $.Type.FixedSizeList:return e.listSize;case $.Type.FixedSizeBinary:return e.byteWidth;default:return 1}}Y.strideForType=RR});var Un=k(es=>{"use strict";Object.defineProperty(es,"__esModule",{value:!0});es.Data=es.kUnknownNullCount=void 0;var HR=ui(),UR=ui(),fe=bt(),MR=nt(),Ye=Xt();es.kUnknownNullCount=-1;var Be=class{constructor(e,r,n,i,o,f,s){this.type=e,this.dictionary=s,this.offset=Math.floor(Math.max(r||0,0)),this.length=Math.floor(Math.max(n||0,0)),this._nullCount=Math.floor(Math.max(i||0,-1)),this.childData=(f||[]).map(l=>l instanceof Be?l:l.data);let u;o instanceof Be?(this.stride=o.stride,this.values=o.values,this.typeIds=o.typeIds,this.nullBitmap=o.nullBitmap,this.valueOffsets=o.valueOffsets):(this.stride=MR.strideForType(e),o&&((u=o[0])&&(this.valueOffsets=u),(u=o[1])&&(this.values=u),(u=o[2])&&(this.nullBitmap=u),(u=o[3])&&(this.typeIds=u)))}get typeId(){return this.type.typeId}get ArrayType(){return this.type.ArrayType}get buffers(){return[this.valueOffsets,this.values,this.nullBitmap,this.typeIds]}get byteLength(){let e=0,{valueOffsets:r,values:n,nullBitmap:i,typeIds:o}=this;return r&&(e+=r.byteLength),n&&(e+=n.byteLength),i&&(e+=i.byteLength),o&&(e+=o.byteLength),this.childData.reduce((f,s)=>f+s.byteLength,e)}get nullCount(){let e=this._nullCount,r;return e<=es.kUnknownNullCount&&(r=this.nullBitmap)&&(this._nullCount=e=this.length-UR.popcnt_bit_range(r,this.offset,this.offset+this.length)),e}clone(e,r=this.offset,n=this.length,i=this._nullCount,o=this,f=this.childData){return new Be(e,r,n,i,o,f,this.dictionary)}slice(e,r){let{stride:n,typeId:i,childData:o}=this,f=+(this._nullCount===0)-1,s=i===16?n:1,u=this._sliceBuffers(e,r,n,i);return this.clone(this.type,this.offset+e,r,f,u,!o.length||this.valueOffsets?o:this._sliceChildren(o,s*e,s*r))}_changeLengthAndBackfillNullBitmap(e){if(this.typeId===fe.Type.Null)return this.clone(this.type,0,e,0);let{length:r,nullCount:n}=this,i=new Uint8Array((e+63&~63)>>3).fill(255,0,r>>3);i[r>>3]=(1<<r-(r&~7))-1,n>0&&i.set(HR.truncateBitmap(this.offset,r,this.nullBitmap),0);let o=this.buffers;return o[fe.BufferType.VALIDITY]=i,this.clone(this.type,0,e,n+(e-r),o)}_sliceBuffers(e,r,n,i){let o,{buffers:f}=this;return(o=f[fe.BufferType.TYPE])&&(f[fe.BufferType.TYPE]=o.subarray(e,e+r)),(o=f[fe.BufferType.OFFSET])&&(f[fe.BufferType.OFFSET]=o.subarray(e,e+r+1))||(o=f[fe.BufferType.DATA])&&(f[fe.BufferType.DATA]=i===6?o:o.subarray(n*e,n*(e+r))),f}_sliceChildren(e,r,n){return e.map(i=>i.slice(r,n))}static new(e,r,n,i,o,f,s){switch(o instanceof Be?o=o.buffers:o||(o=[]),e.typeId){case fe.Type.Null:return Be.Null(e,r,n);case fe.Type.Int:return Be.Int(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Dictionary:return Be.Dictionary(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[],s);case fe.Type.Float:return Be.Float(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Bool:return Be.Bool(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Decimal:return Be.Decimal(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Date:return Be.Date(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Time:return Be.Time(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Timestamp:return Be.Timestamp(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Interval:return Be.Interval(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.FixedSizeBinary:return Be.FixedSizeBinary(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Binary:return Be.Binary(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],o[fe.BufferType.DATA]||[]);case fe.Type.Utf8:return Be.Utf8(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],o[fe.BufferType.DATA]||[]);case fe.Type.List:return Be.List(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],(f||[])[0]);case fe.Type.FixedSizeList:return Be.FixedSizeList(e,r,n,i||0,o[fe.BufferType.VALIDITY],(f||[])[0]);case fe.Type.Struct:return Be.Struct(e,r,n,i||0,o[fe.BufferType.VALIDITY],f||[]);case fe.Type.Map:return Be.Map(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],(f||[])[0]);case fe.Type.Union:return Be.Union(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.TYPE]||[],o[fe.BufferType.OFFSET]||f,f)}throw new Error(`Unrecognized typeId ${e.typeId}`)}static Null(e,r,n){return new Be(e,r,n,0)}static Int(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Dictionary(e,r,n,i,o,f,s){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.indices.ArrayType,f),Ye.toUint8Array(o)],[],s)}static Float(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Bool(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Decimal(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Date(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Time(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Timestamp(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Interval(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static FixedSizeBinary(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Binary(e,r,n,i,o,f,s){return new Be(e,r,n,i,[Ye.toInt32Array(f),Ye.toUint8Array(s),Ye.toUint8Array(o)])}static Utf8(e,r,n,i,o,f,s){return new Be(e,r,n,i,[Ye.toInt32Array(f),Ye.toUint8Array(s),Ye.toUint8Array(o)])}static List(e,r,n,i,o,f,s){return new Be(e,r,n,i,[Ye.toInt32Array(f),void 0,Ye.toUint8Array(o)],s?[s]:[])}static FixedSizeList(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,void 0,Ye.toUint8Array(o)],f?[f]:[])}static Struct(e,r,n,i,o,f){return new Be(e,r,n,i,[void 0,void 0,Ye.toUint8Array(o)],f)}static Map(e,r,n,i,o,f,s){return new Be(e,r,n,i,[Ye.toInt32Array(f),void 0,Ye.toUint8Array(o)],s?[s]:[])}static Union(e,r,n,i,o,f,s,u){let l=[void 0,void 0,Ye.toUint8Array(o),Ye.toArrayBufferView(e.ArrayType,f)];return e.mode===fe.UnionMode.Sparse?new Be(e,r,n,i,l,s):(l[fe.BufferType.OFFSET]=Ye.toInt32Array(s),new Be(e,r,n,i,l,u))}};es.Data=Be;Be.prototype.childData=Object.freeze([])});var Oy=k(Md=>{"use strict";Object.defineProperty(Md,"__esModule",{value:!0});Md.valueToString=void 0;var zR=void 0;function LR(t){if(t===null)return"null";if(t===zR)return"undefined";switch(typeof t){case"number":return`${t}`;case"bigint":return`${t}`;case"string":return`"${t}"`}return typeof t[Symbol.toPrimitive]=="function"?t[Symbol.toPrimitive]("string"):ArrayBuffer.isView(t)?`[${t}]`:JSON.stringify(t)}Md.valueToString=LR});var a1=k(zd=>{"use strict";Object.defineProperty(zd,"__esModule",{value:!0});zd.createIsValidFunction=void 0;var Fy=Oy(),VR=gr();function CR(t){if(!t||t.length<=0)return function(i){return!0};let e="",r=t.filter(n=>n===n);return r.length>0&&(e=`
12
+ `)+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}function $T(t){return Array.isArray(t)}$e.isArray=$T;function Vh(t){return typeof t=="boolean"}$e.isBoolean=Vh;function kp(t){return t===null}$e.isNull=kp;function YF(t){return t==null}$e.isNullOrUndefined=YF;function eB(t){return typeof t=="number"}$e.isNumber=eB;function Ip(t){return typeof t=="string"}$e.isString=Ip;function GF(t){return typeof t=="symbol"}$e.isSymbol=GF;function Oo(t){return t===void 0}$e.isUndefined=Oo;function xp(t){return Vs(t)&&Wh(t)==="[object RegExp]"}$e.isRegExp=xp;function Vs(t){return typeof t=="object"&&t!==null}$e.isObject=Vs;function Ch(t){return Vs(t)&&Wh(t)==="[object Date]"}$e.isDate=Ch;function Sp(t){return Vs(t)&&(Wh(t)==="[object Error]"||t instanceof Error)}$e.isError=Sp;function Ep(t){return typeof t=="function"}$e.isFunction=Ep;function ZF(t){return t===null||typeof t=="boolean"||typeof t=="number"||typeof t=="string"||typeof t=="symbol"||typeof t=="undefined"}$e.isPrimitive=ZF;$e.isBuffer=JT();function Wh(t){return Object.prototype.toString.call(t)}function Kh(t){return t<10?"0"+t.toString(10):t.toString(10)}var JF=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function QF(){var t=new Date,e=[Kh(t.getHours()),Kh(t.getMinutes()),Kh(t.getSeconds())].join(":");return[t.getDate(),JF[t.getMonth()],e].join(" ")}$e.log=function(){console.log("%s - %s",QF(),$e.format.apply($e,arguments))};$e.inherits=QT();$e._extend=function(t,e){if(!e||!Vs(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};function tB(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var Hf=typeof Symbol!="undefined"?Symbol("util.promisify.custom"):void 0;$e.promisify=function(e){if(typeof e!="function")throw new TypeError('The "original" argument must be of type Function');if(Hf&&e[Hf]){var r=e[Hf];if(typeof r!="function")throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(r,Hf,{value:r,enumerable:!1,writable:!1,configurable:!0}),r}function r(){for(var n,i,o=new Promise(function(u,l){n=u,i=l}),f=[],s=0;s<arguments.length;s++)f.push(arguments[s]);f.push(function(u,l){u?i(u):n(l)});try{e.apply(this,f)}catch(u){i(u)}return o}return Object.setPrototypeOf(r,Object.getPrototypeOf(e)),Hf&&Object.defineProperty(r,Hf,{value:r,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(r,XT(e))};$e.promisify.custom=Hf;function XF(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}function $F(t){if(typeof t!="function")throw new TypeError('The "original" argument must be of type Function');function e(){for(var r=[],n=0;n<arguments.length;n++)r.push(arguments[n]);var i=r.pop();if(typeof i!="function")throw new TypeError("The last argument must be of type Function");var o=this,f=function(){return i.apply(o,arguments)};t.apply(this,r).then(function(s){process.nextTick(f,null,s)},function(s){process.nextTick(XF,s,f)})}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,XT(t)),e}$e.callbackify=$F});var Dp=B((QC,Fp)=>{var rB="inspect",Ap=Eo(),Yh=parseInt(Math.random()*16777215,10),nB=new RegExp("^[0-9a-fA-F]{24}$");try{Buffer&&Buffer.from&&(Op=!0,rB=Nn().inspect.custom||"inspect")}catch{Op=!1}var Op,Qe=function t(e){if(e instanceof t)return e;if(!(this instanceof t))return new t(e);if(this._bsontype="ObjectID",e==null||typeof e=="number"){this.id=this.generate(e),t.cacheHexString&&(this.__id=this.toString("hex"));return}var r=t.isValid(e);if(!r&&e!=null)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(r&&typeof e=="string"&&e.length===24&&Op)return new t(Ap.toBuffer(e,"hex"));if(r&&typeof e=="string"&&e.length===24)return t.createFromHexString(e);if(e!=null&&e.length===12)this.id=e;else{if(e!=null&&typeof e.toHexString=="function")return e;throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters")}t.cacheHexString&&(this.__id=this.toString("hex"))},iB=[];for(Fr=0;Fr<256;Fr++)iB[Fr]=(Fr<=15?"0":"")+Fr.toString(16);var Fr;Qe.prototype.toHexString=function(){if(Qe.cacheHexString&&this.__id)return this.__id;var t="";if(!this.id||!this.id.length)throw new Error("invalid ObjectId, ObjectId.id must be either a string or a Buffer, but is ["+JSON.stringify(this.id)+"]");if(this.id instanceof Yl)return t=eD(this.id),Qe.cacheHexString&&(this.__id=t),t;for(var e=0;e<this.id.length;e++)t+=iB[this.id.charCodeAt(e)];return Qe.cacheHexString&&(this.__id=t),t};Qe.prototype.get_inc=function(){return Qe.index=(Qe.index+1)%16777215};Qe.prototype.getInc=function(){return this.get_inc()};Qe.prototype.generate=function(t){typeof t!="number"&&(t=~~(Date.now()/1e3));var e=(typeof process=="undefined"||process.pid===1?Math.floor(Math.random()*1e5):process.pid)%65535,r=this.get_inc(),n=Ap.allocBuffer(12);return n[3]=t&255,n[2]=t>>8&255,n[1]=t>>16&255,n[0]=t>>24&255,n[6]=Yh&255,n[5]=Yh>>8&255,n[4]=Yh>>16&255,n[8]=e&255,n[7]=e>>8&255,n[11]=r&255,n[10]=r>>8&255,n[9]=r>>16&255,n};Qe.prototype.toString=function(t){return this.id&&this.id.copy?this.id.toString(typeof t=="string"?t:"hex"):this.toHexString()};Qe.prototype[rB]=Qe.prototype.toString;Qe.prototype.toJSON=function(){return this.toHexString()};Qe.prototype.equals=function(e){return e instanceof Qe?this.toString()===e.toString():typeof e=="string"&&Qe.isValid(e)&&e.length===12&&this.id instanceof Yl?e===this.id.toString("binary"):typeof e=="string"&&Qe.isValid(e)&&e.length===24?e.toLowerCase()===this.toHexString():typeof e=="string"&&Qe.isValid(e)&&e.length===12?e===this.id:e!=null&&(e instanceof Qe||e.toHexString)?e.toHexString()===this.toHexString():!1};Qe.prototype.getTimestamp=function(){var t=new Date,e=this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24;return t.setTime(Math.floor(e)*1e3),t};Qe.index=~~(Math.random()*16777215);Qe.createPk=function(){return new Qe};Qe.createFromTime=function(e){var r=Ap.toBuffer([0,0,0,0,0,0,0,0,0,0,0,0]);return r[3]=e&255,r[2]=e>>8&255,r[1]=e>>16&255,r[0]=e>>24&255,new Qe(r)};var Kl=[];Fr=0;for(;Fr<10;)Kl[48+Fr]=Fr++;for(;Fr<16;)Kl[65-10+Fr]=Kl[97-10+Fr]=Fr++;var Yl=Buffer,eD=function(t){return t.toString("hex")};Qe.createFromHexString=function(e){if(typeof e=="undefined"||e!=null&&e.length!==24)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(Op)return new Qe(Ap.toBuffer(e,"hex"));for(var r=new Yl(12),n=0,i=0;i<24;)r[n++]=Kl[e.charCodeAt(i++)]<<4|Kl[e.charCodeAt(i++)];return new Qe(r)};Qe.isValid=function(e){return e==null?!1:typeof e=="number"?!0:typeof e=="string"?e.length===12||e.length===24&&nB.test(e):e instanceof Qe||e instanceof Yl?!0:typeof e.toHexString=="function"&&(e.id instanceof Yl||typeof e.id=="string")?e.id.length===12||e.id.length===24&&nB.test(e.id):!1};Object.defineProperty(Qe.prototype,"generationTime",{enumerable:!0,get:function(){return this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24},set:function(t){this.id[3]=t&255,this.id[2]=t>>8&255,this.id[1]=t>>16&255,this.id[0]=t>>24&255}});Fp.exports=Qe;Fp.exports.ObjectID=Qe;Fp.exports.ObjectId=Qe});var Np=B((XC,Gh)=>{function Pp(t,e){if(!(this instanceof Pp))return new Pp;this._bsontype="BSONRegExp",this.pattern=t||"",this.options=e||"";for(var r=0;r<this.options.length;r++)if(!(this.options[r]==="i"||this.options[r]==="m"||this.options[r]==="x"||this.options[r]==="l"||this.options[r]==="s"||this.options[r]==="u"))throw new Error("the regular expression options ["+this.options[r]+"] is not supported")}Gh.exports=Pp;Gh.exports.BSONRegExp=Pp});var Rp=B(($C,Zh)=>{var tD=Buffer&&Nn().inspect.custom||"inspect";function Fo(t){if(!(this instanceof Fo))return new Fo(t);this._bsontype="Symbol",this.value=t}Fo.prototype.valueOf=function(){return this.value};Fo.prototype.toString=function(){return this.value};Fo.prototype[tD]=function(){return this.value};Fo.prototype.toJSON=function(){return this.value};Zh.exports=Fo;Zh.exports.Symbol=Fo});var Qh=B((e5,Jh)=>{var Cs=function(t){if(!(this instanceof Cs))return new Cs(t);this._bsontype="Int32",this.value=t};Cs.prototype.valueOf=function(){return this.value};Cs.prototype.toJSON=function(){return this.value};Jh.exports=Cs;Jh.exports.Int32=Cs});var Hp=B((t5,$h)=>{var Xh=function t(e,r){if(!(this instanceof t))return new t(e,r);this._bsontype="Code",this.code=e,this.scope=r};Xh.prototype.toJSON=function(){return{scope:this.scope,code:this.code}};$h.exports=Xh;$h.exports.Code=Xh});var Vp=B((r5,tb)=>{"use strict";var Re=Ms(),rD=/^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/,nD=/^(\+|-)?(Infinity|inf)$/i,iD=/^(\+|-)?NaN$/i,Gl=6111,zp=-6176,eb=6176,oD=34,Up=[124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),Mp=[248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),Lp=[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),fD=/^([-+])?(\d+)?$/,Li=Eo(),oB=function(t){return!isNaN(parseInt(t,10))},sD=function(t){var e=Re.fromNumber(1e3*1e3*1e3),r=Re.fromNumber(0),n=0;if(!t.parts[0]&&!t.parts[1]&&!t.parts[2]&&!t.parts[3])return{quotient:t,rem:r};for(n=0;n<=3;n++)r=r.shiftLeft(32),r=r.add(new Re(t.parts[n],0)),t.parts[n]=r.div(e).low_,r=r.modulo(e);return{quotient:t,rem:r}},aD=function(t,e){if(!t&&!e)return{high:Re.fromNumber(0),low:Re.fromNumber(0)};var r=t.shiftRightUnsigned(32),n=new Re(t.getLowBits(),0),i=e.shiftRightUnsigned(32),o=new Re(e.getLowBits(),0),f=r.multiply(i),s=r.multiply(o),u=n.multiply(i),l=n.multiply(o);return f=f.add(s.shiftRightUnsigned(32)),s=new Re(s.getLowBits(),0).add(u).add(l.shiftRightUnsigned(32)),f=f.add(s.shiftRightUnsigned(32)),l=s.shiftLeft(32).add(new Re(l.getLowBits(),0)),{high:f,low:l}},lD=function(t,e){var r=t.high_>>>0,n=e.high_>>>0;if(r<n)return!0;if(r===n){var i=t.low_>>>0,o=e.low_>>>0;if(i<o)return!0}return!1},Dr=function(t){this._bsontype="Decimal128",this.bytes=t};Dr.fromString=function(t){var e=!1,r=!1,n=!1,i=0,o=0,f=0,s=0,u=0,l=[0],c=0,w=0,p=0,g=0,T=0,L=0,O=[0,0],K=[0,0],ne=0,H=0;if(t=t.trim(),t.length>=7e3)throw new Error(""+t+" not a valid Decimal128 string");var z=t.match(rD),N=t.match(nD),F=t.match(iD);if(!z&&!N&&!F||t.length===0)throw new Error(""+t+" not a valid Decimal128 string");if(z&&z[4]&&z[2]===void 0)throw new Error(""+t+" not a valid Decimal128 string");if((t[H]==="+"||t[H]==="-")&&(e=t[H++]==="-"),!oB(t[H])&&t[H]!=="."){if(t[H]==="i"||t[H]==="I")return new Dr(Li.toBuffer(e?Mp:Lp));if(t[H]==="N")return new Dr(Li.toBuffer(Up))}for(;oB(t[H])||t[H]===".";){if(t[H]==="."){if(r)return new Dr(Li.toBuffer(Up));r=!0,H=H+1;continue}c<34&&(t[H]!=="0"||n)&&(n||(u=o),n=!0,l[w++]=parseInt(t[H],10),c=c+1),n&&(f=f+1),r&&(s=s+1),o=o+1,H=H+1}if(r&&!o)throw new Error(""+t+" not a valid Decimal128 string");if(t[H]==="e"||t[H]==="E"){var ae=t.substr(++H).match(fD);if(!ae||!ae[2])return new Dr(Li.toBuffer(Up));T=parseInt(ae[0],10),H=H+ae[0].length}if(t[H])return new Dr(Li.toBuffer(Up));if(p=0,!c)p=0,g=0,l[0]=0,f=1,c=1,i=0;else if(g=c-1,i=f,T!==0&&i!==1)for(;t[u+i-1]==="0";)i=i-1;for(T<=s&&s-T>1<<14?T=zp:T=T-s;T>Gl;){if(g=g+1,g-p>oD){var ie=l.join("");if(ie.match(/^0+$/)){T=Gl;break}else return new Dr(Li.toBuffer(e?Mp:Lp))}T=T-1}for(;T<zp||c<f;){if(g===0){T=zp,i=0;break}if(c<f?f=f-1:g=g-1,T<Gl)T=T+1;else if(ie=l.join(""),ie.match(/^0+$/)){T=Gl;break}else return new Dr(Li.toBuffer(e?Mp:Lp))}if(g-p+1<i&&t[i]!=="0"){var de=o;r&&T===zp&&(u=u+1,de=de+1);var Ze=parseInt(t[u+g+1],10),_=0;if(Ze>=5&&(_=1,Ze===5)){for(_=l[g]%2==1,L=u+g+2;L<de;L++)if(parseInt(t[L],10)){_=1;break}}if(_){for(var Fe=g;Fe>=0&&++l[Fe]>9;Fe--)if(l[Fe]=0,Fe===0)if(T<Gl)T=T+1,l[Fe]=1;else return new Dr(Li.toBuffer(e?Mp:Lp))}}if(O=Re.fromNumber(0),K=Re.fromNumber(0),i===0)O=Re.fromNumber(0),K=Re.fromNumber(0);else if(g-p<17)for(Fe=p,K=Re.fromNumber(l[Fe++]),O=new Re(0,0);Fe<=g;Fe++)K=K.multiply(Re.fromNumber(10)),K=K.add(Re.fromNumber(l[Fe]));else{for(Fe=p,O=Re.fromNumber(l[Fe++]);Fe<=g-17;Fe++)O=O.multiply(Re.fromNumber(10)),O=O.add(Re.fromNumber(l[Fe]));for(K=Re.fromNumber(l[Fe++]);Fe<=g;Fe++)K=K.multiply(Re.fromNumber(10)),K=K.add(Re.fromNumber(l[Fe]))}var Ce=aD(O,Re.fromString("100000000000000000"));Ce.low=Ce.low.add(K),lD(Ce.low,K)&&(Ce.high=Ce.high.add(Re.fromNumber(1))),ne=T+eb;var ge={low:Re.fromNumber(0),high:Re.fromNumber(0)};Ce.high.shiftRightUnsigned(49).and(Re.fromNumber(1)).equals(Re.fromNumber)?(ge.high=ge.high.or(Re.fromNumber(3).shiftLeft(61)),ge.high=ge.high.or(Re.fromNumber(ne).and(Re.fromNumber(16383).shiftLeft(47))),ge.high=ge.high.or(Ce.high.and(Re.fromNumber(140737488355327)))):(ge.high=ge.high.or(Re.fromNumber(ne&16383).shiftLeft(49)),ge.high=ge.high.or(Ce.high.and(Re.fromNumber(562949953421311)))),ge.low=Ce.low,e&&(ge.high=ge.high.or(Re.fromString("9223372036854775808")));var Je=Li.allocBuffer(16);return H=0,Je[H++]=ge.low.low_&255,Je[H++]=ge.low.low_>>8&255,Je[H++]=ge.low.low_>>16&255,Je[H++]=ge.low.low_>>24&255,Je[H++]=ge.low.high_&255,Je[H++]=ge.low.high_>>8&255,Je[H++]=ge.low.high_>>16&255,Je[H++]=ge.low.high_>>24&255,Je[H++]=ge.high.low_&255,Je[H++]=ge.high.low_>>8&255,Je[H++]=ge.high.low_>>16&255,Je[H++]=ge.high.low_>>24&255,Je[H++]=ge.high.high_&255,Je[H++]=ge.high.high_>>8&255,Je[H++]=ge.high.high_>>16&255,Je[H++]=ge.high.high_>>24&255,new Dr(Je)};var uD=31,fB=16383,cD=30,pD=31;eb=6176;Dr.prototype.toString=function(){for(var t,e,r,n,i,o,f=0,s=new Array(36),u=0;u<s.length;u++)s[u]=0;var l=0,c,w,p=!1,g,T={parts:new Array(4)},L,O,K=[];l=0;var ne=this.bytes;n=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,r=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,e=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,t=ne[l++]|ne[l++]<<8|ne[l++]<<16|ne[l++]<<24,l=0;var H={low:new Re(n,r),high:new Re(e,t)};if(H.high.lessThan(Re.ZERO)&&K.push("-"),i=t>>26&uD,i>>3==3){if(i===cD)return K.join("")+"Infinity";if(i===pD)return"NaN";o=t>>15&fB,g=8+(t>>14&1)}else g=t>>14&7,o=t>>17&fB;if(c=o-eb,T.parts[0]=(t&16383)+((g&15)<<14),T.parts[1]=e,T.parts[2]=r,T.parts[3]=n,T.parts[0]===0&&T.parts[1]===0&&T.parts[2]===0&&T.parts[3]===0)p=!0;else for(O=3;O>=0;O--){var z=0,N=sD(T);if(T=N.quotient,z=N.rem.low_,!!z)for(L=8;L>=0;L--)s[O*9+L]=z%10,z=Math.floor(z/10)}if(p)f=1,s[l]=0;else for(f=36,u=0;!s[l];)u++,f=f-1,l=l+1;if(w=f-1+c,w>=34||w<=-7||c>0){for(K.push(s[l++]),f=f-1,f&&K.push("."),u=0;u<f;u++)K.push(s[l++]);K.push("E"),w>0?K.push("+"+w):K.push(w)}else if(c>=0)for(u=0;u<f;u++)K.push(s[l++]);else{var F=f+c;if(F>0)for(u=0;u<F;u++)K.push(s[l++]);else K.push("0");for(K.push(".");F++<0;)K.push("0");for(u=0;u<f-Math.max(F-1,0);u++)K.push(s[l++])}return K.join("")};Dr.prototype.toJSON=function(){return{$numberDecimal:this.toString()}};tb.exports=Dr;tb.exports.Decimal128=Dr});var Wp=B((n5,rb)=>{function Cp(){if(!(this instanceof Cp))return new Cp;this._bsontype="MinKey"}rb.exports=Cp;rb.exports.MinKey=Cp});var Yp=B((i5,nb)=>{function Kp(){if(!(this instanceof Kp))return new Kp;this._bsontype="MaxKey"}nb.exports=Kp;nb.exports.MaxKey=Kp});var Gp=B((o5,ib)=>{function Zl(t,e,r){if(!(this instanceof Zl))return new Zl(t,e,r);this._bsontype="DBRef",this.namespace=t,this.oid=e,this.db=r}Zl.prototype.toJSON=function(){return{$ref:this.namespace,$id:this.oid,$db:this.db==null?"":this.db}};ib.exports=Zl;ib.exports.DBRef=Zl});var lB=B(Zp=>{"use strict";Zp.byteLength=mD;Zp.toByteArray=hD;Zp.fromByteArray=yD;var ri=[],fn=[],dD=typeof Uint8Array!="undefined"?Uint8Array:Array,ob="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(zf=0,sB=ob.length;zf<sB;++zf)ri[zf]=ob[zf],fn[ob.charCodeAt(zf)]=zf;var zf,sB;fn["-".charCodeAt(0)]=62;fn["_".charCodeAt(0)]=63;function aB(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");r===-1&&(r=e);var n=r===e?0:4-r%4;return[r,n]}function mD(t){var e=aB(t),r=e[0],n=e[1];return(r+n)*3/4-n}function wD(t,e,r){return(e+r)*3/4-r}function hD(t){var e,r=aB(t),n=r[0],i=r[1],o=new dD(wD(t,n,i)),f=0,s=i>0?n-4:n,u;for(u=0;u<s;u+=4)e=fn[t.charCodeAt(u)]<<18|fn[t.charCodeAt(u+1)]<<12|fn[t.charCodeAt(u+2)]<<6|fn[t.charCodeAt(u+3)],o[f++]=e>>16&255,o[f++]=e>>8&255,o[f++]=e&255;return i===2&&(e=fn[t.charCodeAt(u)]<<2|fn[t.charCodeAt(u+1)]>>4,o[f++]=e&255),i===1&&(e=fn[t.charCodeAt(u)]<<10|fn[t.charCodeAt(u+1)]<<4|fn[t.charCodeAt(u+2)]>>2,o[f++]=e>>8&255,o[f++]=e&255),o}function bD(t){return ri[t>>18&63]+ri[t>>12&63]+ri[t>>6&63]+ri[t&63]}function gD(t,e,r){for(var n,i=[],o=e;o<r;o+=3)n=(t[o]<<16&16711680)+(t[o+1]<<8&65280)+(t[o+2]&255),i.push(bD(n));return i.join("")}function yD(t){for(var e,r=t.length,n=r%3,i=[],o=16383,f=0,s=r-n;f<s;f+=o)i.push(gD(t,f,f+o>s?s:f+o));return n===1?(e=t[r-1],i.push(ri[e>>2]+ri[e<<4&63]+"==")):n===2&&(e=(t[r-2]<<8)+t[r-1],i.push(ri[e>>10]+ri[e>>4&63]+ri[e<<2&63]+"=")),i.join("")}});var uB=B(fb=>{fb.read=function(t,e,r,n,i){var o,f,s=i*8-n-1,u=(1<<s)-1,l=u>>1,c=-7,w=r?i-1:0,p=r?-1:1,g=t[e+w];for(w+=p,o=g&(1<<-c)-1,g>>=-c,c+=s;c>0;o=o*256+t[e+w],w+=p,c-=8);for(f=o&(1<<-c)-1,o>>=-c,c+=n;c>0;f=f*256+t[e+w],w+=p,c-=8);if(o===0)o=1-l;else{if(o===u)return f?NaN:(g?-1:1)*(1/0);f=f+Math.pow(2,n),o=o-l}return(g?-1:1)*f*Math.pow(2,o-n)};fb.write=function(t,e,r,n,i,o){var f,s,u,l=o*8-i-1,c=(1<<l)-1,w=c>>1,p=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,g=n?0:o-1,T=n?1:-1,L=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,f=c):(f=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-f))<1&&(f--,u*=2),f+w>=1?e+=p/u:e+=p*Math.pow(2,1-w),e*u>=2&&(f++,u/=2),f+w>=c?(s=0,f=c):f+w>=1?(s=(e*u-1)*Math.pow(2,i),f=f+w):(s=e*Math.pow(2,w-1)*Math.pow(2,i),f=0));i>=8;t[r+g]=s&255,g+=T,s/=256,i-=8);for(f=f<<i|s,l+=i;l>0;t[r+g]=f&255,g+=T,f/=256,l-=8);t[r+g-T]|=L*128}});var vB=B(Ks=>{"use strict";var sb=lB(),Ws=uB(),cB=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;Ks.Buffer=D;Ks.SlowBuffer=BD;Ks.INSPECT_MAX_BYTES=50;var Jp=2147483647;Ks.kMaxLength=Jp;D.TYPED_ARRAY_SUPPORT=jD();!D.TYPED_ARRAY_SUPPORT&&typeof console!="undefined"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function jD(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),t.foo()===42}catch{return!1}}Object.defineProperty(D.prototype,"parent",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.buffer}});Object.defineProperty(D.prototype,"offset",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.byteOffset}});function Vi(t){if(t>Jp)throw new RangeError('The value "'+t+'" is invalid for option "size"');var e=new Uint8Array(t);return Object.setPrototypeOf(e,D.prototype),e}function D(t,e,r){if(typeof t=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return ab(t)}return pB(t,e,r)}D.poolSize=8192;function pB(t,e,r){if(typeof t=="string")return qD(t,e);if(ArrayBuffer.isView(t))return vD(t);if(t==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(ni(t,ArrayBuffer)||t&&ni(t.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(ni(t,SharedArrayBuffer)||t&&ni(t.buffer,SharedArrayBuffer)))return ub(t,e,r);if(typeof t=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var n=t.valueOf&&t.valueOf();if(n!=null&&n!==t)return D.from(n,e,r);var i=TD(t);if(i)return i;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof t[Symbol.toPrimitive]=="function")return D.from(t[Symbol.toPrimitive]("string"),e,r);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}D.from=function(t,e,r){return pB(t,e,r)};Object.setPrototypeOf(D.prototype,Uint8Array.prototype);Object.setPrototypeOf(D,Uint8Array);function dB(t){if(typeof t!="number")throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function _D(t,e,r){return dB(t),t<=0?Vi(t):e!==void 0?typeof r=="string"?Vi(t).fill(e,r):Vi(t).fill(e):Vi(t)}D.alloc=function(t,e,r){return _D(t,e,r)};function ab(t){return dB(t),Vi(t<0?0:cb(t)|0)}D.allocUnsafe=function(t){return ab(t)};D.allocUnsafeSlow=function(t){return ab(t)};function qD(t,e){if((typeof e!="string"||e==="")&&(e="utf8"),!D.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var r=mB(t,e)|0,n=Vi(r),i=n.write(t,e);return i!==r&&(n=n.slice(0,i)),n}function lb(t){for(var e=t.length<0?0:cb(t.length)|0,r=Vi(e),n=0;n<e;n+=1)r[n]=t[n]&255;return r}function vD(t){if(ni(t,Uint8Array)){var e=new Uint8Array(t);return ub(e.buffer,e.byteOffset,e.byteLength)}return lb(t)}function ub(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('"length" is outside of buffer bounds');var n;return e===void 0&&r===void 0?n=new Uint8Array(t):r===void 0?n=new Uint8Array(t,e):n=new Uint8Array(t,e,r),Object.setPrototypeOf(n,D.prototype),n}function TD(t){if(D.isBuffer(t)){var e=cb(t.length)|0,r=Vi(e);return r.length===0||t.copy(r,0,0,e),r}if(t.length!==void 0)return typeof t.length!="number"||db(t.length)?Vi(0):lb(t);if(t.type==="Buffer"&&Array.isArray(t.data))return lb(t.data)}function cb(t){if(t>=Jp)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+Jp.toString(16)+" bytes");return t|0}function BD(t){return+t!=t&&(t=0),D.alloc(+t)}D.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==D.prototype};D.compare=function(e,r){if(ni(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),ni(r,Uint8Array)&&(r=D.from(r,r.offset,r.byteLength)),!D.isBuffer(e)||!D.isBuffer(r))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===r)return 0;for(var n=e.length,i=r.length,o=0,f=Math.min(n,i);o<f;++o)if(e[o]!==r[o]){n=e[o],i=r[o];break}return n<i?-1:i<n?1:0};D.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}};D.concat=function(e,r){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(e.length===0)return D.alloc(0);var n;if(r===void 0)for(r=0,n=0;n<e.length;++n)r+=e[n].length;var i=D.allocUnsafe(r),o=0;for(n=0;n<e.length;++n){var f=e[n];if(ni(f,Uint8Array))o+f.length>i.length?D.from(f).copy(i,o):Uint8Array.prototype.set.call(i,f,o);else if(D.isBuffer(f))f.copy(i,o);else throw new TypeError('"list" argument must be an Array of Buffers');o+=f.length}return i};function mB(t,e){if(D.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||ni(t,ArrayBuffer))return t.byteLength;if(typeof t!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var r=t.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&r===0)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return pb(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r*2;case"hex":return r>>>1;case"base64":return qB(t).length;default:if(i)return n?-1:pb(t).length;e=(""+e).toLowerCase(),i=!0}}D.byteLength=mB;function kD(t,e,r){var n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((r===void 0||r>this.length)&&(r=this.length),r<=0)||(r>>>=0,e>>>=0,r<=e))return"";for(t||(t="utf8");;)switch(t){case"hex":return ND(this,e,r);case"utf8":case"utf-8":return bB(this,e,r);case"ascii":return DD(this,e,r);case"latin1":case"binary":return PD(this,e,r);case"base64":return OD(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return RD(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}D.prototype._isBuffer=!0;function Uf(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}D.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var r=0;r<e;r+=2)Uf(this,r,r+1);return this};D.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var r=0;r<e;r+=4)Uf(this,r,r+3),Uf(this,r+1,r+2);return this};D.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var r=0;r<e;r+=8)Uf(this,r,r+7),Uf(this,r+1,r+6),Uf(this,r+2,r+5),Uf(this,r+3,r+4);return this};D.prototype.toString=function(){var e=this.length;return e===0?"":arguments.length===0?bB(this,0,e):kD.apply(this,arguments)};D.prototype.toLocaleString=D.prototype.toString;D.prototype.equals=function(e){if(!D.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e?!0:D.compare(this,e)===0};D.prototype.inspect=function(){var e="",r=Ks.INSPECT_MAX_BYTES;return e=this.toString("hex",0,r).replace(/(.{2})/g,"$1 ").trim(),this.length>r&&(e+=" ... "),"<Buffer "+e+">"};cB&&(D.prototype[cB]=D.prototype.inspect);D.prototype.compare=function(e,r,n,i,o){if(ni(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),!D.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(r===void 0&&(r=0),n===void 0&&(n=e?e.length:0),i===void 0&&(i=0),o===void 0&&(o=this.length),r<0||n>e.length||i<0||o>this.length)throw new RangeError("out of range index");if(i>=o&&r>=n)return 0;if(i>=o)return-1;if(r>=n)return 1;if(r>>>=0,n>>>=0,i>>>=0,o>>>=0,this===e)return 0;for(var f=o-i,s=n-r,u=Math.min(f,s),l=this.slice(i,o),c=e.slice(r,n),w=0;w<u;++w)if(l[w]!==c[w]){f=l[w],s=c[w];break}return f<s?-1:s<f?1:0};function wB(t,e,r,n,i){if(t.length===0)return-1;if(typeof r=="string"?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,db(r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0)if(i)r=0;else return-1;if(typeof e=="string"&&(e=D.from(e,n)),D.isBuffer(e))return e.length===0?-1:hB(t,e,r,n,i);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):hB(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function hB(t,e,r,n,i){var o=1,f=t.length,s=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(t.length<2||e.length<2)return-1;o=2,f/=2,s/=2,r/=2}function u(g,T){return o===1?g[T]:g.readUInt16BE(T*o)}var l;if(i){var c=-1;for(l=r;l<f;l++)if(u(t,l)===u(e,c===-1?0:l-c)){if(c===-1&&(c=l),l-c+1===s)return c*o}else c!==-1&&(l-=l-c),c=-1}else for(r+s>f&&(r=f-s),l=r;l>=0;l--){for(var w=!0,p=0;p<s;p++)if(u(t,l+p)!==u(e,p)){w=!1;break}if(w)return l}return-1}D.prototype.includes=function(e,r,n){return this.indexOf(e,r,n)!==-1};D.prototype.indexOf=function(e,r,n){return wB(this,e,r,n,!0)};D.prototype.lastIndexOf=function(e,r,n){return wB(this,e,r,n,!1)};function ID(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n),n>i&&(n=i)):n=i;var o=e.length;n>o/2&&(n=o/2);for(var f=0;f<n;++f){var s=parseInt(e.substr(f*2,2),16);if(db(s))return f;t[r+f]=s}return f}function xD(t,e,r,n){return Qp(pb(e,t.length-r),t,r,n)}function SD(t,e,r,n){return Qp(UD(e),t,r,n)}function ED(t,e,r,n){return Qp(qB(e),t,r,n)}function AD(t,e,r,n){return Qp(MD(e,t.length-r),t,r,n)}D.prototype.write=function(e,r,n,i){if(r===void 0)i="utf8",n=this.length,r=0;else if(n===void 0&&typeof r=="string")i=r,n=this.length,r=0;else if(isFinite(r))r=r>>>0,isFinite(n)?(n=n>>>0,i===void 0&&(i="utf8")):(i=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var o=this.length-r;if((n===void 0||n>o)&&(n=o),e.length>0&&(n<0||r<0)||r>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var f=!1;;)switch(i){case"hex":return ID(this,e,r,n);case"utf8":case"utf-8":return xD(this,e,r,n);case"ascii":case"latin1":case"binary":return SD(this,e,r,n);case"base64":return ED(this,e,r,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return AD(this,e,r,n);default:if(f)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),f=!0}};D.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function OD(t,e,r){return e===0&&r===t.length?sb.fromByteArray(t):sb.fromByteArray(t.slice(e,r))}function bB(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var o=t[i],f=null,s=o>239?4:o>223?3:o>191?2:1;if(i+s<=r){var u,l,c,w;switch(s){case 1:o<128&&(f=o);break;case 2:u=t[i+1],(u&192)==128&&(w=(o&31)<<6|u&63,w>127&&(f=w));break;case 3:u=t[i+1],l=t[i+2],(u&192)==128&&(l&192)==128&&(w=(o&15)<<12|(u&63)<<6|l&63,w>2047&&(w<55296||w>57343)&&(f=w));break;case 4:u=t[i+1],l=t[i+2],c=t[i+3],(u&192)==128&&(l&192)==128&&(c&192)==128&&(w=(o&15)<<18|(u&63)<<12|(l&63)<<6|c&63,w>65535&&w<1114112&&(f=w))}}f===null?(f=65533,s=1):f>65535&&(f-=65536,n.push(f>>>10&1023|55296),f=56320|f&1023),n.push(f),i+=s}return FD(n)}var gB=4096;function FD(t){var e=t.length;if(e<=gB)return String.fromCharCode.apply(String,t);for(var r="",n=0;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=gB));return r}function DD(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]&127);return n}function PD(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]);return n}function ND(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=e;o<r;++o)i+=LD[t[o]];return i}function RD(t,e,r){for(var n=t.slice(e,r),i="",o=0;o<n.length-1;o+=2)i+=String.fromCharCode(n[o]+n[o+1]*256);return i}D.prototype.slice=function(e,r){var n=this.length;e=~~e,r=r===void 0?n:~~r,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),r<0?(r+=n,r<0&&(r=0)):r>n&&(r=n),r<e&&(r=e);var i=this.subarray(e,r);return Object.setPrototypeOf(i,D.prototype),i};function rr(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}D.prototype.readUintLE=D.prototype.readUIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||rr(e,r,this.length);for(var i=this[e],o=1,f=0;++f<r&&(o*=256);)i+=this[e+f]*o;return i};D.prototype.readUintBE=D.prototype.readUIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||rr(e,r,this.length);for(var i=this[e+--r],o=1;r>0&&(o*=256);)i+=this[e+--r]*o;return i};D.prototype.readUint8=D.prototype.readUInt8=function(e,r){return e=e>>>0,r||rr(e,1,this.length),this[e]};D.prototype.readUint16LE=D.prototype.readUInt16LE=function(e,r){return e=e>>>0,r||rr(e,2,this.length),this[e]|this[e+1]<<8};D.prototype.readUint16BE=D.prototype.readUInt16BE=function(e,r){return e=e>>>0,r||rr(e,2,this.length),this[e]<<8|this[e+1]};D.prototype.readUint32LE=D.prototype.readUInt32LE=function(e,r){return e=e>>>0,r||rr(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216};D.prototype.readUint32BE=D.prototype.readUInt32BE=function(e,r){return e=e>>>0,r||rr(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])};D.prototype.readIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||rr(e,r,this.length);for(var i=this[e],o=1,f=0;++f<r&&(o*=256);)i+=this[e+f]*o;return o*=128,i>=o&&(i-=Math.pow(2,8*r)),i};D.prototype.readIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||rr(e,r,this.length);for(var i=r,o=1,f=this[e+--i];i>0&&(o*=256);)f+=this[e+--i]*o;return o*=128,f>=o&&(f-=Math.pow(2,8*r)),f};D.prototype.readInt8=function(e,r){return e=e>>>0,r||rr(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]};D.prototype.readInt16LE=function(e,r){e=e>>>0,r||rr(e,2,this.length);var n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n};D.prototype.readInt16BE=function(e,r){e=e>>>0,r||rr(e,2,this.length);var n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n};D.prototype.readInt32LE=function(e,r){return e=e>>>0,r||rr(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24};D.prototype.readInt32BE=function(e,r){return e=e>>>0,r||rr(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]};D.prototype.readFloatLE=function(e,r){return e=e>>>0,r||rr(e,4,this.length),Ws.read(this,e,!0,23,4)};D.prototype.readFloatBE=function(e,r){return e=e>>>0,r||rr(e,4,this.length),Ws.read(this,e,!1,23,4)};D.prototype.readDoubleLE=function(e,r){return e=e>>>0,r||rr(e,8,this.length),Ws.read(this,e,!0,52,8)};D.prototype.readDoubleBE=function(e,r){return e=e>>>0,r||rr(e,8,this.length),Ws.read(this,e,!1,52,8)};function Pr(t,e,r,n,i,o){if(!D.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<o)throw new RangeError('"value" argument is out of bounds');if(r+n>t.length)throw new RangeError("Index out of range")}D.prototype.writeUintLE=D.prototype.writeUIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var o=Math.pow(2,8*n)-1;Pr(this,e,r,n,o,0)}var f=1,s=0;for(this[r]=e&255;++s<n&&(f*=256);)this[r+s]=e/f&255;return r+n};D.prototype.writeUintBE=D.prototype.writeUIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var o=Math.pow(2,8*n)-1;Pr(this,e,r,n,o,0)}var f=n-1,s=1;for(this[r+f]=e&255;--f>=0&&(s*=256);)this[r+f]=e/s&255;return r+n};D.prototype.writeUint8=D.prototype.writeUInt8=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,1,255,0),this[r]=e&255,r+1};D.prototype.writeUint16LE=D.prototype.writeUInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,2,65535,0),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeUint16BE=D.prototype.writeUInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,2,65535,0),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeUint32LE=D.prototype.writeUInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,4,4294967295,0),this[r+3]=e>>>24,this[r+2]=e>>>16,this[r+1]=e>>>8,this[r]=e&255,r+4};D.prototype.writeUint32BE=D.prototype.writeUInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,4,4294967295,0),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};D.prototype.writeIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var o=Math.pow(2,8*n-1);Pr(this,e,r,n,o-1,-o)}var f=0,s=1,u=0;for(this[r]=e&255;++f<n&&(s*=256);)e<0&&u===0&&this[r+f-1]!==0&&(u=1),this[r+f]=(e/s>>0)-u&255;return r+n};D.prototype.writeIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var o=Math.pow(2,8*n-1);Pr(this,e,r,n,o-1,-o)}var f=n-1,s=1,u=0;for(this[r+f]=e&255;--f>=0&&(s*=256);)e<0&&u===0&&this[r+f+1]!==0&&(u=1),this[r+f]=(e/s>>0)-u&255;return r+n};D.prototype.writeInt8=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,1,127,-128),e<0&&(e=255+e+1),this[r]=e&255,r+1};D.prototype.writeInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,2,32767,-32768),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,2,32767,-32768),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,4,2147483647,-2147483648),this[r]=e&255,this[r+1]=e>>>8,this[r+2]=e>>>16,this[r+3]=e>>>24,r+4};D.prototype.writeInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Pr(this,e,r,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};function yB(t,e,r,n,i,o){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function jB(t,e,r,n,i){return e=+e,r=r>>>0,i||yB(t,e,r,4,34028234663852886e22,-34028234663852886e22),Ws.write(t,e,r,n,23,4),r+4}D.prototype.writeFloatLE=function(e,r,n){return jB(this,e,r,!0,n)};D.prototype.writeFloatBE=function(e,r,n){return jB(this,e,r,!1,n)};function _B(t,e,r,n,i){return e=+e,r=r>>>0,i||yB(t,e,r,8,17976931348623157e292,-17976931348623157e292),Ws.write(t,e,r,n,52,8),r+8}D.prototype.writeDoubleLE=function(e,r,n){return _B(this,e,r,!0,n)};D.prototype.writeDoubleBE=function(e,r,n){return _B(this,e,r,!1,n)};D.prototype.copy=function(e,r,n,i){if(!D.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!i&&i!==0&&(i=this.length),r>=e.length&&(r=e.length),r||(r=0),i>0&&i<n&&(i=n),i===n||e.length===0||this.length===0)return 0;if(r<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-r<i-n&&(i=e.length-r+n);var o=i-n;return this===e&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(r,n,i):Uint8Array.prototype.set.call(e,this.subarray(n,i),r),o};D.prototype.fill=function(e,r,n,i){if(typeof e=="string"){if(typeof r=="string"?(i=r,r=0,n=this.length):typeof n=="string"&&(i=n,n=this.length),i!==void 0&&typeof i!="string")throw new TypeError("encoding must be a string");if(typeof i=="string"&&!D.isEncoding(i))throw new TypeError("Unknown encoding: "+i);if(e.length===1){var o=e.charCodeAt(0);(i==="utf8"&&o<128||i==="latin1")&&(e=o)}}else typeof e=="number"?e=e&255:typeof e=="boolean"&&(e=Number(e));if(r<0||this.length<r||this.length<n)throw new RangeError("Out of range index");if(n<=r)return this;r=r>>>0,n=n===void 0?this.length:n>>>0,e||(e=0);var f;if(typeof e=="number")for(f=r;f<n;++f)this[f]=e;else{var s=D.isBuffer(e)?e:D.from(e,i),u=s.length;if(u===0)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(f=0;f<n-r;++f)this[f+r]=s[f%u]}return this};var HD=/[^+/0-9A-Za-z-_]/g;function zD(t){if(t=t.split("=")[0],t=t.trim().replace(HD,""),t.length<2)return"";for(;t.length%4!=0;)t=t+"=";return t}function pb(t,e){e=e||1/0;for(var r,n=t.length,i=null,o=[],f=0;f<n;++f){if(r=t.charCodeAt(f),r>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&o.push(239,191,189);continue}else if(f+1===n){(e-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;o.push(r)}else if(r<2048){if((e-=2)<0)break;o.push(r>>6|192,r&63|128)}else if(r<65536){if((e-=3)<0)break;o.push(r>>12|224,r>>6&63|128,r&63|128)}else if(r<1114112){if((e-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,r&63|128)}else throw new Error("Invalid code point")}return o}function UD(t){for(var e=[],r=0;r<t.length;++r)e.push(t.charCodeAt(r)&255);return e}function MD(t,e){for(var r,n,i,o=[],f=0;f<t.length&&!((e-=2)<0);++f)r=t.charCodeAt(f),n=r>>8,i=r%256,o.push(i),o.push(n);return o}function qB(t){return sb.toByteArray(zD(t))}function Qp(t,e,r,n){for(var i=0;i<n&&!(i+r>=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function ni(t,e){return t instanceof e||t!=null&&t.constructor!=null&&t.constructor.name!=null&&t.constructor.name===e.name}function db(t){return t!==t}var LD=function(){for(var t="0123456789abcdef",e=new Array(256),r=0;r<16;++r)for(var n=r*16,i=0;i<16;++i)e[n+i]=t[r]+t[i];return e}()});var Jl=B((l5,mb)=>{typeof global!="undefined"&&(ar=vB().Buffer);var ar,Xp=Eo();function yt(t,e){if(!(this instanceof yt))return new yt(t,e);if(t!=null&&typeof t!="string"&&!ar.isBuffer(t)&&!(t instanceof Uint8Array)&&!Array.isArray(t))throw new Error("only String, Buffer, Uint8Array or Array accepted");if(this._bsontype="Binary",t instanceof Number?(this.sub_type=t,this.position=0):(this.sub_type=e??VD,this.position=0),t!=null&&!(t instanceof Number)){if(typeof t=="string")if(typeof ar!="undefined")this.buffer=Xp.toBuffer(t);else if(typeof Uint8Array!="undefined"||Object.prototype.toString.call(t)==="[object Array]")this.buffer=CD(t);else throw new Error("only String, Buffer, Uint8Array or Array accepted");else this.buffer=t;this.position=t.length}else typeof ar!="undefined"?this.buffer=Xp.allocBuffer(yt.BUFFER_SIZE):typeof Uint8Array!="undefined"?this.buffer=new Uint8Array(new ArrayBuffer(yt.BUFFER_SIZE)):this.buffer=new Array(yt.BUFFER_SIZE),this.position=0}yt.prototype.put=function(e){if(e.length!=null&&typeof e!="number"&&e.length!==1)throw new Error("only accepts single character String, Uint8Array or Array");if(typeof e!="number"&&e<0||e>255)throw new Error("only accepts number in a valid unsigned byte range 0-255");var r=null;if(typeof e=="string"?r=e.charCodeAt(0):e.length!=null?r=e[0]:r=e,this.buffer.length>this.position)this.buffer[this.position++]=r;else if(typeof ar!="undefined"&&ar.isBuffer(this.buffer)){var n=Xp.allocBuffer(yt.BUFFER_SIZE+this.buffer.length);this.buffer.copy(n,0,0,this.buffer.length),this.buffer=n,this.buffer[this.position++]=r}else{n=null,Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?n=new Uint8Array(new ArrayBuffer(yt.BUFFER_SIZE+this.buffer.length)):n=new Array(yt.BUFFER_SIZE+this.buffer.length);for(var i=0;i<this.buffer.length;i++)n[i]=this.buffer[i];this.buffer=n,this.buffer[this.position++]=r}};yt.prototype.write=function(e,r){if(r=typeof r=="number"?r:this.position,this.buffer.length<r+e.length){var n=null;if(typeof ar!="undefined"&&ar.isBuffer(this.buffer))n=Xp.allocBuffer(this.buffer.length+e.length),this.buffer.copy(n,0,0,this.buffer.length);else if(Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"){n=new Uint8Array(new ArrayBuffer(this.buffer.length+e.length));for(var i=0;i<this.position;i++)n[i]=this.buffer[i]}this.buffer=n}if(typeof ar!="undefined"&&ar.isBuffer(e)&&ar.isBuffer(this.buffer))e.copy(this.buffer,r,0,e.length),this.position=r+e.length>this.position?r+e.length:this.position;else if(typeof ar!="undefined"&&typeof e=="string"&&ar.isBuffer(this.buffer))this.buffer.write(e,r,"binary"),this.position=r+e.length>this.position?r+e.length:this.position;else if(Object.prototype.toString.call(e)==="[object Uint8Array]"||Object.prototype.toString.call(e)==="[object Array]"&&typeof e!="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e[i];this.position=r>this.position?r:this.position}else if(typeof e=="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e.charCodeAt(i);this.position=r>this.position?r:this.position}};yt.prototype.read=function(e,r){if(r=r&&r>0?r:this.position,this.buffer.slice)return this.buffer.slice(e,e+r);for(var n=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(r)):new Array(r),i=0;i<r;i++)n[i]=this.buffer[e++];return n};yt.prototype.value=function(e){if(e=e??!1,e&&typeof ar!="undefined"&&ar.isBuffer(this.buffer)&&this.buffer.length===this.position)return this.buffer;if(typeof ar!="undefined"&&ar.isBuffer(this.buffer))return e?this.buffer.slice(0,this.position):this.buffer.toString("binary",0,this.position);if(e){if(this.buffer.slice!=null)return this.buffer.slice(0,this.position);for(var r=Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?new Uint8Array(new ArrayBuffer(this.position)):new Array(this.position),n=0;n<this.position;n++)r[n]=this.buffer[n];return r}else return WD(this.buffer,0,this.position)};yt.prototype.length=function(){return this.position};yt.prototype.toJSON=function(){return this.buffer!=null?this.buffer.toString("base64"):""};yt.prototype.toString=function(t){return this.buffer!=null?this.buffer.slice(0,this.position).toString(t):""};var VD=0,CD=function(t){for(var e=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(t.length)):new Array(t.length),r=0;r<t.length;r++)e[r]=t.charCodeAt(r);return e},WD=function(t,e,r){for(var n="",i=e;i<r;i++)n=n+String.fromCharCode(t[i]);return n};yt.BUFFER_SIZE=256;yt.SUBTYPE_DEFAULT=0;yt.SUBTYPE_FUNCTION=1;yt.SUBTYPE_BYTE_ARRAY=2;yt.SUBTYPE_UUID_OLD=3;yt.SUBTYPE_UUID=4;yt.SUBTYPE_MD5=5;yt.SUBTYPE_USER_DEFINED=128;mb.exports=yt;mb.exports.Binary=yt});var TB=B((exports,module)=>{"use strict";var Long=Ms().Long,Double=qp().Double,Timestamp=vp().Timestamp,ObjectID=Dp().ObjectID,Symbol=Rp().Symbol,Code=Hp().Code,MinKey=Wp().MinKey,MaxKey=Yp().MaxKey,Decimal128=Vp(),Int32=Qh(),DBRef=Gp().DBRef,BSONRegExp=Np().BSONRegExp,Binary=Jl().Binary,utils=Eo(),deserialize=function(t,e,r){e=e??{};var n=e&&e.index?e.index:0,i=t[n]|t[n+1]<<8|t[n+2]<<16|t[n+3]<<24;if(i<5||t.length<i||i+n>t.length)throw new Error("corrupt bson message");if(t[n+i-1]!==0)throw new Error("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");return deserializeObject(t,n,e,r)},deserializeObject=function(t,e,r,n){var i=r.evalFunctions==null?!1:r.evalFunctions,o=r.cacheFunctions==null?!1:r.cacheFunctions,f=r.cacheFunctionsCrc32==null?!1:r.cacheFunctionsCrc32;if(!f)var s=null;var u=r.fieldsAsRaw==null?null:r.fieldsAsRaw,l=r.raw==null?!1:r.raw,c=typeof r.bsonRegExp=="boolean"?r.bsonRegExp:!1,w=r.promoteBuffers==null?!1:r.promoteBuffers,p=r.promoteLongs==null?!0:r.promoteLongs,g=r.promoteValues==null?!0:r.promoteValues,T=e;if(t.length<5)throw new Error("corrupt bson message < 5 bytes long");var L=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(L<5||L>t.length)throw new Error("corrupt bson message");for(var O=n?[]:{},K=0,ne=!1;!ne;){var H=t[e++];if(H===0)break;for(var z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");var N=n?K++:t.toString("utf8",e,z);if(e=z+1,H===BSON.BSON_DATA_STRING){var F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[N]=t.toString("utf8",e,e+F-1),e=e+F}else if(H===BSON.BSON_DATA_OID){var ae=utils.allocBuffer(12);t.copy(ae,0,e,e+12),O[N]=new ObjectID(ae),e=e+12}else if(H===BSON.BSON_DATA_INT&&g===!1)O[N]=new Int32(t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24);else if(H===BSON.BSON_DATA_INT)O[N]=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;else if(H===BSON.BSON_DATA_NUMBER&&g===!1)O[N]=new Double(t.readDoubleLE(e)),e=e+8;else if(H===BSON.BSON_DATA_NUMBER)O[N]=t.readDoubleLE(e),e=e+8;else if(H===BSON.BSON_DATA_DATE){var ie=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,de=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;O[N]=new Date(new Long(ie,de).toNumber())}else if(H===BSON.BSON_DATA_BOOLEAN){if(t[e]!==0&&t[e]!==1)throw new Error("illegal boolean type value");O[N]=t[e++]===1}else if(H===BSON.BSON_DATA_OBJECT){var Ze=e,_=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;if(_<=0||_>t.length-e)throw new Error("bad embedded document length in bson");l?O[N]=t.slice(e,e+_):O[N]=deserializeObject(t,Ze,r,!1),e=e+_}else if(H===BSON.BSON_DATA_ARRAY){Ze=e,_=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var Fe=r,Ce=e+_;if(u&&u[N]){Fe={};for(var ge in r)Fe[ge]=r[ge];Fe.raw=!0}if(O[N]=deserializeObject(t,Ze,Fe,!0),e=e+_,t[e-1]!==0)throw new Error("invalid array terminator byte");if(e!==Ce)throw new Error("corrupted array bson")}else if(H===BSON.BSON_DATA_UNDEFINED)O[N]=void 0;else if(H===BSON.BSON_DATA_NULL)O[N]=null;else if(H===BSON.BSON_DATA_LONG){ie=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,de=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;var Je=new Long(ie,de);p&&g===!0?O[N]=Je.lessThanOrEqual(JS_INT_MAX_LONG)&&Je.greaterThanOrEqual(JS_INT_MIN_LONG)?Je.toNumber():Je:O[N]=Je}else if(H===BSON.BSON_DATA_DECIMAL128){var te=utils.allocBuffer(16);t.copy(te,0,e,e+16),e=e+16;var Bt=new Decimal128(te);O[N]=Bt.toObject?Bt.toObject():Bt}else if(H===BSON.BSON_DATA_BINARY){var st=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,Er=st,Ai=t[e++];if(st<0)throw new Error("Negative binary type element size found");if(st>t.length)throw new Error("Binary type size larger than document size");if(t.slice!=null){if(Ai===Binary.SUBTYPE_BYTE_ARRAY){if(st=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,st<0)throw new Error("Negative binary type element size found for subtype 0x02");if(st>Er-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(st<Er-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}w&&g?O[N]=t.slice(e,e+st):O[N]=new Binary(t.slice(e,e+st),Ai)}else{var vf=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(st)):new Array(st);if(Ai===Binary.SUBTYPE_BYTE_ARRAY){if(st=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,st<0)throw new Error("Negative binary type element size found for subtype 0x02");if(st>Er-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(st<Er-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}for(z=0;z<st;z++)vf[z]=t[e+z];w&&g?O[N]=vf:O[N]=new Binary(vf,Ai)}e=e+st}else if(H===BSON.BSON_DATA_REGEXP&&c===!1){for(z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");var Tf=t.toString("utf8",e,z);for(e=z+1,z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");var An=t.toString("utf8",e,z);e=z+1;var Wr=new Array(An.length);for(z=0;z<An.length;z++)switch(An[z]){case"m":Wr[z]="m";break;case"s":Wr[z]="g";break;case"i":Wr[z]="i";break}O[N]=new RegExp(Tf,Wr.join(""))}else if(H===BSON.BSON_DATA_REGEXP&&c===!0){for(z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");for(Tf=t.toString("utf8",e,z),e=z+1,z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");An=t.toString("utf8",e,z),e=z+1,O[N]=new BSONRegExp(Tf,An)}else if(H===BSON.BSON_DATA_SYMBOL){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[N]=new Symbol(t.toString("utf8",e,e+F-1)),e=e+F}else if(H===BSON.BSON_DATA_TIMESTAMP)ie=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,de=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,O[N]=new Timestamp(ie,de);else if(H===BSON.BSON_DATA_MIN_KEY)O[N]=new MinKey;else if(H===BSON.BSON_DATA_MAX_KEY)O[N]=new MaxKey;else if(H===BSON.BSON_DATA_CODE){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var Zt=t.toString("utf8",e,e+F-1);if(i)if(o){var Oi=f?s(Zt):Zt;O[N]=isolateEvalWithHash(functionCache,Oi,Zt,O)}else O[N]=isolateEval(Zt);else O[N]=new Code(Zt);e=e+F}else if(H===BSON.BSON_DATA_CODE_W_SCOPE){var On=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(On<4+4+4+1)throw new Error("code_w_scope total size shorter minimum expected length");if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");Zt=t.toString("utf8",e,e+F-1),e=e+F,Ze=e,_=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var C=deserializeObject(t,Ze,r,!1);if(e=e+_,On<4+4+_+F)throw new Error("code_w_scope total size is to short, truncating scope");if(On>4+4+_+F)throw new Error("code_w_scope total size is to long, clips outer document");i?(o?(Oi=f?s(Zt):Zt,O[N]=isolateEvalWithHash(functionCache,Oi,Zt,O)):O[N]=isolateEval(Zt),O[N].scope=C):O[N]=new Code(Zt,C)}else if(H===BSON.BSON_DATA_DBPOINTER){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var vs=t.toString("utf8",e,e+F-1);e=e+F;var Ts=utils.allocBuffer(12);t.copy(Ts,0,e,e+12),ae=new ObjectID(Ts),e=e+12;var jr=vs.split("."),Bf=jr.shift(),ul=jr.join(".");O[N]=new DBRef(ul,ae,Bf)}else throw new Error("Detected unknown BSON type "+H.toString(16)+' for fieldname "'+N+'", are you using the latest BSON parser')}if(L!==e-T)throw n?new Error("corrupt array bson"):new Error("corrupt object bson");return O.$id!=null&&(O=new DBRef(O.$ref,O.$id,O.$db)),O},isolateEvalWithHash=function(functionCache,hash,functionString,object){var value=null;return functionCache[hash]==null&&(eval("value = "+functionString),functionCache[hash]=value),functionCache[hash].bind(object)},isolateEval=function(functionString){var value=null;return eval("value = "+functionString),value},BSON={},functionCache=BSON.functionCache={};BSON.BSON_DATA_NUMBER=1;BSON.BSON_DATA_STRING=2;BSON.BSON_DATA_OBJECT=3;BSON.BSON_DATA_ARRAY=4;BSON.BSON_DATA_BINARY=5;BSON.BSON_DATA_UNDEFINED=6;BSON.BSON_DATA_OID=7;BSON.BSON_DATA_BOOLEAN=8;BSON.BSON_DATA_DATE=9;BSON.BSON_DATA_NULL=10;BSON.BSON_DATA_REGEXP=11;BSON.BSON_DATA_DBPOINTER=12;BSON.BSON_DATA_CODE=13;BSON.BSON_DATA_SYMBOL=14;BSON.BSON_DATA_CODE_W_SCOPE=15;BSON.BSON_DATA_INT=16;BSON.BSON_DATA_TIMESTAMP=17;BSON.BSON_DATA_LONG=18;BSON.BSON_DATA_DECIMAL128=19;BSON.BSON_DATA_MIN_KEY=255;BSON.BSON_DATA_MAX_KEY=127;BSON.BSON_BINARY_SUBTYPE_DEFAULT=0;BSON.BSON_BINARY_SUBTYPE_FUNCTION=1;BSON.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;BSON.BSON_BINARY_SUBTYPE_UUID=3;BSON.BSON_BINARY_SUBTYPE_MD5=4;BSON.BSON_BINARY_SUBTYPE_USER_DEFINED=128;BSON.BSON_INT32_MAX=2147483647;BSON.BSON_INT32_MIN=-2147483648;BSON.BSON_INT64_MAX=Math.pow(2,63)-1;BSON.BSON_INT64_MIN=-Math.pow(2,63);BSON.JS_INT_MAX=9007199254740992;BSON.JS_INT_MIN=-9007199254740992;var JS_INT_MAX_LONG=Long.fromNumber(9007199254740992),JS_INT_MIN_LONG=Long.fromNumber(-9007199254740992);module.exports=deserialize});var BB=B(wb=>{var KD=function(t,e,r,n,i){var o,f,s=r==="big",u=i*8-n-1,l=(1<<u)-1,c=l>>1,w=-7,p=s?0:i-1,g=s?1:-1,T=t[e+p];for(p+=g,o=T&(1<<-w)-1,T>>=-w,w+=u;w>0;o=o*256+t[e+p],p+=g,w-=8);for(f=o&(1<<-w)-1,o>>=-w,w+=n;w>0;f=f*256+t[e+p],p+=g,w-=8);if(o===0)o=1-c;else{if(o===l)return f?NaN:(T?-1:1)*(1/0);f=f+Math.pow(2,n),o=o-c}return(T?-1:1)*f*Math.pow(2,o-n)},YD=function(t,e,r,n,i,o){var f,s,u,l=n==="big",c=o*8-i-1,w=(1<<c)-1,p=w>>1,g=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,T=l?o-1:0,L=l?-1:1,O=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,f=w):(f=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-f))<1&&(f--,u*=2),f+p>=1?e+=g/u:e+=g*Math.pow(2,1-p),e*u>=2&&(f++,u/=2),f+p>=w?(s=0,f=w):f+p>=1?(s=(e*u-1)*Math.pow(2,i),f=f+p):(s=e*Math.pow(2,p-1)*Math.pow(2,i),f=0));i>=8;t[r+T]=s&255,T+=L,s/=256,i-=8);for(f=f<<i|s,c+=i;c>0;t[r+T]=f&255,T+=L,f/=256,c-=8);t[r+T-L]|=O*128};wb.readIEEE754=KD;wb.writeIEEE754=YD});var EB=B((c5,SB)=>{"use strict";var hb=BB().writeIEEE754,kB=Ms().Long,GD=Ph(),IB=Jl().Binary,ZD=Eo().normalizedFunctionString,$p=/\x00/,xB=["$db","$ref","$id","$clusterTime"],bb=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},gb=function(e){return Object.prototype.toString.call(e)==="[object RegExp]"},yb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_STRING;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o+1,t[n-1]=0;var f=t.write(r,n+4,"utf8");return t[n+3]=f+1>>24&255,t[n+2]=f+1>>16&255,t[n+1]=f+1>>8&255,t[n]=f+1&255,n=n+4+f,t[n++]=0,n},jb=function(t,e,r,n,i){if(Math.floor(r)===r&&r>=ee.JS_INT_MIN&&r<=ee.JS_INT_MAX)if(r>=ee.BSON_INT32_MIN&&r<=ee.BSON_INT32_MAX){t[n++]=ee.BSON_DATA_INT;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255}else if(r>=ee.JS_INT_MIN&&r<=ee.JS_INT_MAX)t[n++]=ee.BSON_DATA_NUMBER,o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+o,t[n++]=0,hb(t,r,n,"little",52,8),n=n+8;else{t[n++]=ee.BSON_DATA_LONG,o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+o,t[n++]=0;var f=kB.fromNumber(r),s=f.getLowBits(),u=f.getHighBits();t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255}else t[n++]=ee.BSON_DATA_NUMBER,o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+o,t[n++]=0,hb(t,r,n,"little",52,8),n=n+8;return n},Ql=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_NULL;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,n},_b=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_BOOLEAN;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,t[n++]=r?1:0,n},qb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_DATE;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=kB.fromNumber(r.getTime()),s=f.getLowBits(),u=f.getHighBits();return t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255,n},vb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_REGEXP;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+o,t[n++]=0,r.source&&r.source.match($p)!=null)throw Error("value "+r.source+" must not contain null bytes");return n=n+t.write(r.source,n,"utf8"),t[n++]=0,r.global&&(t[n++]=115),r.ignoreCase&&(t[n++]=105),r.multiline&&(t[n++]=109),t[n++]=0,n},Tb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_REGEXP;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+o,t[n++]=0,r.pattern.match($p)!=null)throw Error("pattern "+r.pattern+" must not contain null bytes");return n=n+t.write(r.pattern,n,"utf8"),t[n++]=0,n=n+t.write(r.options.split("").sort().join(""),n,"utf8"),t[n++]=0,n},Bb=function(t,e,r,n,i){r===null?t[n++]=ee.BSON_DATA_NULL:r._bsontype==="MinKey"?t[n++]=ee.BSON_DATA_MIN_KEY:t[n++]=ee.BSON_DATA_MAX_KEY;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,n},kb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_OID;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+o,t[n++]=0,typeof r.id=="string")t.write(r.id,n,"binary");else if(r.id&&r.id.copy)r.id.copy(t,n,0,12);else throw new Error("object ["+JSON.stringify(r)+"] is not a valid ObjectId");return n+12},Ib=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_BINARY;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=r.length;return t[n++]=f&255,t[n++]=f>>8&255,t[n++]=f>>16&255,t[n++]=f>>24&255,t[n++]=ee.BSON_BINARY_SUBTYPE_DEFAULT,r.copy(t,n,0,f),n=n+f,n},xb=function(t,e,r,n,i,o,f,s,u,l){for(var c=0;c<l.length;c++)if(l[c]===r)throw new Error("cyclic dependency detected");l.push(r),t[n++]=Array.isArray(r)?ee.BSON_DATA_ARRAY:ee.BSON_DATA_OBJECT;var w=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+w,t[n++]=0;var p=Xl(t,r,i,n,o+1,f,s,l);return l.pop(),p},Sb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_DECIMAL128;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,r.bytes.copy(t,n,0,16),n+16},Eb=function(t,e,r,n,i){t[n++]=r._bsontype==="Long"?ee.BSON_DATA_LONG:ee.BSON_DATA_TIMESTAMP;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=r.getLowBits(),s=r.getHighBits();return t[n++]=f&255,t[n++]=f>>8&255,t[n++]=f>>16&255,t[n++]=f>>24&255,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,n},Ab=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_INT;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255,n},Ob=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_NUMBER;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+o,t[n++]=0,hb(t,r,n,"little",52,8),n=n+8,n},Fb=function(t,e,r,n,i,o,f){t[n++]=ee.BSON_DATA_CODE;var s=f?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=ZD(r),l=t.write(u,n+4,"utf8")+1;return t[n]=l&255,t[n+1]=l>>8&255,t[n+2]=l>>16&255,t[n+3]=l>>24&255,n=n+4+l-1,t[n++]=0,n},Db=function(t,e,r,n,i,o,f,s,u){if(r.scope&&typeof r.scope=="object"){t[n++]=ee.BSON_DATA_CODE_W_SCOPE;var l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+l,t[n++]=0;var c=n,w=typeof r.code=="string"?r.code:r.code.toString();n=n+4;var p=t.write(w,n+4,"utf8")+1;t[n]=p&255,t[n+1]=p>>8&255,t[n+2]=p>>16&255,t[n+3]=p>>24&255,t[n+4+p-1]=0,n=n+p+4;var g=Xl(t,r.scope,i,n,o+1,f,s);n=g-1;var T=g-c;t[c++]=T&255,t[c++]=T>>8&255,t[c++]=T>>16&255,t[c++]=T>>24&255,t[n++]=0}else{t[n++]=ee.BSON_DATA_CODE,l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+l,t[n++]=0,w=r.code.toString();var L=t.write(w,n+4,"utf8")+1;t[n]=L&255,t[n+1]=L>>8&255,t[n+2]=L>>16&255,t[n+3]=L>>24&255,n=n+4+L-1,t[n++]=0}return n},Pb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_BINARY;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=r.value(!0),s=r.position;return r.sub_type===IB.SUBTYPE_BYTE_ARRAY&&(s=s+4),t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=r.sub_type,r.sub_type===IB.SUBTYPE_BYTE_ARRAY&&(s=s-4,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255),f.copy(t,n,0,r.position),n=n+r.position,n},Nb=function(t,e,r,n,i){t[n++]=ee.BSON_DATA_SYMBOL;var o=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+o,t[n++]=0;var f=t.write(r.value,n+4,"utf8")+1;return t[n]=f&255,t[n+1]=f>>8&255,t[n+2]=f>>16&255,t[n+3]=f>>24&255,n=n+4+f-1,t[n++]=0,n},Rb=function(t,e,r,n,i,o,f){t[n++]=ee.BSON_DATA_OBJECT;var s=f?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=n,l;r.db!=null?l=Xl(t,{$ref:r.namespace,$id:r.oid,$db:r.db},!1,n,i+1,o):l=Xl(t,{$ref:r.namespace,$id:r.oid},!1,n,i+1,o);var c=l-u;return t[u++]=c&255,t[u++]=c>>8&255,t[u++]=c>>16&255,t[u++]=c>>24&255,l},Xl=function(e,r,n,i,o,f,s,u){i=i||0,u=u||[],u.push(r);var l=i+4;if(Array.isArray(r))for(var c=0;c<r.length;c++){var w=""+c,p=r[c];if(p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}var g=typeof p;if(g==="string")l=yb(e,w,p,l,!0);else if(g==="number")l=jb(e,w,p,l,!0);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=_b(e,w,p,l,!0);else if(p instanceof Date||bb(p))l=qb(e,w,p,l,!0);else if(p===void 0)l=Ql(e,w,p,l,!0);else if(p===null)l=Ql(e,w,p,l,!0);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=kb(e,w,p,l,!0);else if(Buffer.isBuffer(p))l=Ib(e,w,p,l,!0);else if(p instanceof RegExp||gb(p))l=vb(e,w,p,l,!0);else if(g==="object"&&p._bsontype==null)l=xb(e,w,p,l,n,o,f,s,!0,u);else if(g==="object"&&p._bsontype==="Decimal128")l=Sb(e,w,p,l,!0);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=Eb(e,w,p,l,!0);else if(p._bsontype==="Double")l=Ob(e,w,p,l,!0);else if(typeof p=="function"&&f)l=Fb(e,w,p,l,n,o,f,!0);else if(p._bsontype==="Code")l=Db(e,w,p,l,n,o,f,s,!0);else if(p._bsontype==="Binary")l=Pb(e,w,p,l,!0);else if(p._bsontype==="Symbol")l=Nb(e,w,p,l,!0);else if(p._bsontype==="DBRef")l=Rb(e,w,p,l,o,f,!0);else if(p._bsontype==="BSONRegExp")l=Tb(e,w,p,l,!0);else if(p._bsontype==="Int32")l=Ab(e,w,p,l,!0);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=Bb(e,w,p,l,!0);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}else if(r instanceof GD)for(var T=r.entries(),L=!1;!L;){var O=T.next();if(L=O.done,!L){if(w=O.value[0],p=O.value[1],g=typeof p,typeof w=="string"&&xB.indexOf(w)===-1){if(w.match($p)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(g==="string")l=yb(e,w,p,l);else if(g==="number")l=jb(e,w,p,l);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=_b(e,w,p,l);else if(p instanceof Date||bb(p))l=qb(e,w,p,l);else if(p===null||p===void 0&&s===!1)l=Ql(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=kb(e,w,p,l);else if(Buffer.isBuffer(p))l=Ib(e,w,p,l);else if(p instanceof RegExp||gb(p))l=vb(e,w,p,l);else if(g==="object"&&p._bsontype==null)l=xb(e,w,p,l,n,o,f,s,!1,u);else if(g==="object"&&p._bsontype==="Decimal128")l=Sb(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=Eb(e,w,p,l);else if(p._bsontype==="Double")l=Ob(e,w,p,l);else if(p._bsontype==="Code")l=Db(e,w,p,l,n,o,f,s);else if(typeof p=="function"&&f)l=Fb(e,w,p,l,n,o,f);else if(p._bsontype==="Binary")l=Pb(e,w,p,l);else if(p._bsontype==="Symbol")l=Nb(e,w,p,l);else if(p._bsontype==="DBRef")l=Rb(e,w,p,l,o,f);else if(p._bsontype==="BSONRegExp")l=Tb(e,w,p,l);else if(p._bsontype==="Int32")l=Ab(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=Bb(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}else{if(r.toBSON){if(typeof r.toBSON!="function")throw new Error("toBSON is not a function");if(r=r.toBSON(),r!=null&&typeof r!="object")throw new Error("toBSON function did not return an object")}for(w in r){if(p=r[w],p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}if(g=typeof p,typeof w=="string"&&xB.indexOf(w)===-1){if(w.match($p)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(g==="string")l=yb(e,w,p,l);else if(g==="number")l=jb(e,w,p,l);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=_b(e,w,p,l);else if(p instanceof Date||bb(p))l=qb(e,w,p,l);else if(p===void 0)s===!1&&(l=Ql(e,w,p,l));else if(p===null)l=Ql(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=kb(e,w,p,l);else if(Buffer.isBuffer(p))l=Ib(e,w,p,l);else if(p instanceof RegExp||gb(p))l=vb(e,w,p,l);else if(g==="object"&&p._bsontype==null)l=xb(e,w,p,l,n,o,f,s,!1,u);else if(g==="object"&&p._bsontype==="Decimal128")l=Sb(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=Eb(e,w,p,l);else if(p._bsontype==="Double")l=Ob(e,w,p,l);else if(p._bsontype==="Code")l=Db(e,w,p,l,n,o,f,s);else if(typeof p=="function"&&f)l=Fb(e,w,p,l,n,o,f);else if(p._bsontype==="Binary")l=Pb(e,w,p,l);else if(p._bsontype==="Symbol")l=Nb(e,w,p,l);else if(p._bsontype==="DBRef")l=Rb(e,w,p,l,o,f);else if(p._bsontype==="BSONRegExp")l=Tb(e,w,p,l);else if(p._bsontype==="Int32")l=Ab(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=Bb(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}u.pop(),e[l++]=0;var K=l-i;return e[i++]=K&255,e[i++]=K>>8&255,e[i++]=K>>16&255,e[i++]=K>>24&255,l},ee={};ee.BSON_DATA_NUMBER=1;ee.BSON_DATA_STRING=2;ee.BSON_DATA_OBJECT=3;ee.BSON_DATA_ARRAY=4;ee.BSON_DATA_BINARY=5;ee.BSON_DATA_UNDEFINED=6;ee.BSON_DATA_OID=7;ee.BSON_DATA_BOOLEAN=8;ee.BSON_DATA_DATE=9;ee.BSON_DATA_NULL=10;ee.BSON_DATA_REGEXP=11;ee.BSON_DATA_CODE=13;ee.BSON_DATA_SYMBOL=14;ee.BSON_DATA_CODE_W_SCOPE=15;ee.BSON_DATA_INT=16;ee.BSON_DATA_TIMESTAMP=17;ee.BSON_DATA_LONG=18;ee.BSON_DATA_DECIMAL128=19;ee.BSON_DATA_MIN_KEY=255;ee.BSON_DATA_MAX_KEY=127;ee.BSON_BINARY_SUBTYPE_DEFAULT=0;ee.BSON_BINARY_SUBTYPE_FUNCTION=1;ee.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;ee.BSON_BINARY_SUBTYPE_UUID=3;ee.BSON_BINARY_SUBTYPE_MD5=4;ee.BSON_BINARY_SUBTYPE_USER_DEFINED=128;ee.BSON_INT32_MAX=2147483647;ee.BSON_INT32_MIN=-2147483648;ee.BSON_INT64_MAX=Math.pow(2,63)-1;ee.BSON_INT64_MIN=-Math.pow(2,63);ee.JS_INT_MAX=9007199254740992;ee.JS_INT_MIN=-9007199254740992;SB.exports=Xl});var PB=B((p5,DB)=>{"use strict";var JD=Ms().Long,QD=qp().Double,XD=vp().Timestamp,$D=Dp().ObjectID,eP=Rp().Symbol,tP=Np().BSONRegExp,rP=Hp().Code,nP=Vp(),iP=Wp().MinKey,oP=Yp().MaxKey,fP=Gp().DBRef,AB=Jl().Binary,OB=Eo().normalizedFunctionString,sP=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},$l=function(e,r,n){var i=4+1;if(Array.isArray(e))for(var o=0;o<e.length;o++)i+=FB(o.toString(),e[o],r,!0,n);else{e.toBSON&&(e=e.toBSON());for(var f in e)i+=FB(f,e[f],r,!1,n)}return i};function FB(t,e,r,n,i){switch(e&&e.toBSON&&(e=e.toBSON()),typeof e){case"string":return 1+Buffer.byteLength(t,"utf8")+1+4+Buffer.byteLength(e,"utf8")+1;case"number":return Math.floor(e)===e&&e>=Do.JS_INT_MIN&&e<=Do.JS_INT_MAX&&e>=Do.BSON_INT32_MIN&&e<=Do.BSON_INT32_MAX?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(4+1):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);case"undefined":return n||!i?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1:0;case"boolean":return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+1);case"object":if(e==null||e instanceof iP||e instanceof oP||e._bsontype==="MinKey"||e._bsontype==="MaxKey")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1;if(e instanceof $D||e._bsontype==="ObjectID"||e._bsontype==="ObjectId")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(12+1);if(e instanceof Date||sP(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(typeof Buffer!="undefined"&&Buffer.isBuffer(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+4+1)+e.length;if(e instanceof JD||e instanceof QD||e instanceof XD||e._bsontype==="Long"||e._bsontype==="Double"||e._bsontype==="Timestamp")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(e instanceof nP||e._bsontype==="Decimal128")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(16+1);if(e instanceof rP||e._bsontype==="Code")return e.scope!=null&&Object.keys(e.scope).length>0?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(e.code.toString(),"utf8")+1+$l(e.scope,r,i):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(e.code.toString(),"utf8")+1;if(e instanceof AB||e._bsontype==="Binary")return e.sub_type===AB.SUBTYPE_BYTE_ARRAY?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1+4):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1);if(e instanceof eP||e._bsontype==="Symbol")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+Buffer.byteLength(e.value,"utf8")+4+1+1;if(e instanceof fP||e._bsontype==="DBRef"){var o={$ref:e.namespace,$id:e.oid};return e.db!=null&&(o.$db=e.db),(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+$l(o,r,i)}else return e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1:e instanceof tP||e._bsontype==="BSONRegExp"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.pattern,"utf8")+1+Buffer.byteLength(e.options,"utf8")+1:(t!=null?Buffer.byteLength(t,"utf8")+1:0)+$l(e,r,i)+1;case"function":if(e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"||String.call(e)==="[object RegExp]")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1;if(r&&e.scope!=null&&Object.keys(e.scope).length>0)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(OB(e),"utf8")+1+$l(e.scope,r,i);if(r)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(OB(e),"utf8")+1}return 0}var Do={};Do.BSON_INT32_MAX=2147483647;Do.BSON_INT32_MIN=-2147483648;Do.JS_INT_MAX=9007199254740992;Do.JS_INT_MIN=-9007199254740992;DB.exports=$l});var HB=B((d5,lr)=>{"use strict";var aP=Ph(),lP=Ms(),uP=qp(),cP=vp(),pP=Dp(),dP=Np(),mP=Rp(),wP=Qh(),hP=Hp(),bP=Vp(),gP=Wp(),yP=Yp(),jP=Gp(),_P=Jl(),qP=TB(),NB=EB(),vP=PB(),Hb=Eo(),RB=1024*1024*17,ed=Hb.allocBuffer(RB),Ve=function(){};Ve.prototype.serialize=function(e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,o=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,f=typeof r.minInternalBufferSize=="number"?r.minInternalBufferSize:RB;ed.length<f&&(ed=Hb.allocBuffer(f));var s=NB(ed,e,n,0,0,i,o,[]),u=Hb.allocBuffer(s);return ed.copy(u,0,0,u.length),u};Ve.prototype.serializeWithBufferAndIndex=function(t,e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,o=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,f=typeof r.index=="number"?r.index:0,s=NB(e,t,n,f||0,0,i,o);return s-1};Ve.prototype.deserialize=function(t,e){return qP(t,e)};Ve.prototype.calculateObjectSize=function(t,e){e=e||{};var r=typeof e.serializeFunctions=="boolean"?e.serializeFunctions:!1,n=typeof e.ignoreUndefined=="boolean"?e.ignoreUndefined:!0;return vP(t,r,n)};Ve.prototype.deserializeStream=function(t,e,r,n,i,o){o=o??{};for(var f=e,s=0;s<r;s++){var u=t[f]|t[f+1]<<8|t[f+2]<<16|t[f+3]<<24;o.index=f,n[i+s]=this.deserialize(t,o),f=f+u}return f};Ve.BSON_INT32_MAX=2147483647;Ve.BSON_INT32_MIN=-2147483648;Ve.BSON_INT64_MAX=Math.pow(2,63)-1;Ve.BSON_INT64_MIN=-Math.pow(2,63);Ve.JS_INT_MAX=9007199254740992;Ve.JS_INT_MIN=-9007199254740992;Ve.BSON_DATA_NUMBER=1;Ve.BSON_DATA_STRING=2;Ve.BSON_DATA_OBJECT=3;Ve.BSON_DATA_ARRAY=4;Ve.BSON_DATA_BINARY=5;Ve.BSON_DATA_OID=7;Ve.BSON_DATA_BOOLEAN=8;Ve.BSON_DATA_DATE=9;Ve.BSON_DATA_NULL=10;Ve.BSON_DATA_REGEXP=11;Ve.BSON_DATA_CODE=13;Ve.BSON_DATA_SYMBOL=14;Ve.BSON_DATA_CODE_W_SCOPE=15;Ve.BSON_DATA_INT=16;Ve.BSON_DATA_TIMESTAMP=17;Ve.BSON_DATA_LONG=18;Ve.BSON_DATA_MIN_KEY=255;Ve.BSON_DATA_MAX_KEY=127;Ve.BSON_BINARY_SUBTYPE_DEFAULT=0;Ve.BSON_BINARY_SUBTYPE_FUNCTION=1;Ve.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;Ve.BSON_BINARY_SUBTYPE_UUID=3;Ve.BSON_BINARY_SUBTYPE_MD5=4;Ve.BSON_BINARY_SUBTYPE_USER_DEFINED=128;lr.exports=Ve;lr.exports.Code=hP;lr.exports.Map=aP;lr.exports.Symbol=mP;lr.exports.BSON=Ve;lr.exports.DBRef=jP;lr.exports.Binary=_P;lr.exports.ObjectID=pP;lr.exports.Long=lP;lr.exports.Timestamp=cP;lr.exports.Double=uP;lr.exports.Int32=wP;lr.exports.MinKey=gP;lr.exports.MaxKey=yP;lr.exports.BSONRegExp=dP;lr.exports.Decimal128=bP});function zB(t,e,r){if(!(t in Mf))throw new Error(`invalid type: ${t}`);return Mf[t].toPrimitive(e,r)}function UB(t,e,r){if(!(t in Mf))throw new Error(`invalid type: ${t}`);return"fromPrimitive"in Mf[t]?Mf[t].fromPrimitive?.(e,r):e}function TP(t){return Boolean(t)}function BP(t){return Boolean(t)}function kP(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for FLOAT: ${t}`);return e}function IP(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for DOUBLE: ${t}`);return e}function xP(t){let e=parseInt(t,10);if(e<-128||e>127||isNaN(e))throw new Error(`invalid value for INT8: ${t}`);return e}function SP(t){let e=parseInt(t,10);if(e<0||e>255||isNaN(e))throw new Error(`invalid value for UINT8: ${t}`);return e}function EP(t){let e=parseInt(t,10);if(e<-32768||e>32767||isNaN(e))throw new Error(`invalid value for INT16: ${t}`);return e}function AP(t){let e=parseInt(t,10);if(e<0||e>65535||isNaN(e))throw new Error(`invalid value for UINT16: ${t}`);return e}function MB(t){let e=parseInt(t,10);if(e<-2147483648||e>2147483647||isNaN(e))throw new Error(`invalid value for INT32: ${t}`);return e}function OP(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(n<-2147483648||n>2147483647||isNaN(n))throw new Error(`invalid value for INT32: ${t}`);return n}function FP(t){let e=parseInt(t,10);if(e<0||e>281474976710655||isNaN(e))throw new Error(`invalid value for UINT32: ${t}`);return e}function LB(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT64: ${t}`);return e}function DP(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(isNaN(n))throw new Error(`invalid value for INT64: ${t}`);return n}function PP(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for UINT64: ${t}`);return e}function NP(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT96: ${t}`);return e}function VB(t){return Buffer.from(t)}function CB(t){return Buffer.from(t)}function RP(t){return Buffer.from(t,"utf8")}function HP(t){return t.toString()}function zP(t){return Buffer.from(JSON.stringify(t))}function UP(t){return JSON.parse(t)}function MP(t){return Buffer.from(zb.default.serialize(t))}function LP(t){return zb.default.deserialize(t)}function VP(t){let e=parseInt(t,10);if(e<0||e>18446744073709552e3||isNaN(e))throw new Error(`invalid value for TIME_MILLIS: ${t}`);return e}function CP(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIME_MICROS: ${t}`);return e}function WP(t){if(t instanceof Date)return t.getTime()/WB;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for DATE: ${t}`);return e}}function KP(t){return new Date(t*WB)}function YP(t){if(t instanceof Date)return t.getTime();{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MILLIS: ${t}`);return e}}function GP(t){return new Date(t)}function ZP(t){if(t instanceof Date)return t.getTime()*1e3;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MICROS: ${t}`);return e}}function JP(t){return new Date(t/1e3)}function QP(t){if(!t.months||!t.days||!t.milliseconds)throw new Error("value for INTERVAL must be object { months: ..., days: ..., milliseconds: ... }");let e=Buffer.alloc(12);return e.writeUInt32LE(t.months,0),e.writeUInt32LE(t.days,4),e.writeUInt32LE(t.milliseconds,8),e}function XP(t){let e=Buffer.from(t),r=e.readUInt32LE(0),n=e.readUInt32LE(4),i=e.readUInt32LE(8);return{months:r,days:n,milliseconds:i}}function KB(t,e){return Math.round(t*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function YB(t,e){let r=0;if(t.length<=4)for(let i=0;i<t.length;i++)r+=t[i]<<8*(t.length-i-1);else for(let i=0;i<t.length;i++)r+=t[i]*2**(8*(t.length-1-i));return Math.round(r*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}var zb,Mf,WB,Ub=W(()=>{zb=le(HB()),Mf={BOOLEAN:{primitiveType:"BOOLEAN",toPrimitive:TP,fromPrimitive:BP},INT32:{primitiveType:"INT32",toPrimitive:MB},INT64:{primitiveType:"INT64",toPrimitive:LB},INT96:{primitiveType:"INT96",toPrimitive:NP},FLOAT:{primitiveType:"FLOAT",toPrimitive:kP},DOUBLE:{primitiveType:"DOUBLE",toPrimitive:IP},BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",toPrimitive:VB},FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",toPrimitive:VB},UTF8:{primitiveType:"BYTE_ARRAY",originalType:"UTF8",toPrimitive:RP,fromPrimitive:HP},TIME_MILLIS:{primitiveType:"INT32",originalType:"TIME_MILLIS",toPrimitive:VP},TIME_MICROS:{primitiveType:"INT64",originalType:"TIME_MICROS",toPrimitive:CP},DATE:{primitiveType:"INT32",originalType:"DATE",toPrimitive:WP,fromPrimitive:KP},TIMESTAMP_MILLIS:{primitiveType:"INT64",originalType:"TIMESTAMP_MILLIS",toPrimitive:YP,fromPrimitive:GP},TIMESTAMP_MICROS:{primitiveType:"INT64",originalType:"TIMESTAMP_MICROS",toPrimitive:ZP,fromPrimitive:JP},UINT_8:{primitiveType:"INT32",originalType:"UINT_8",toPrimitive:SP},UINT_16:{primitiveType:"INT32",originalType:"UINT_16",toPrimitive:AP},UINT_32:{primitiveType:"INT32",originalType:"UINT_32",toPrimitive:FP},UINT_64:{primitiveType:"INT64",originalType:"UINT_64",toPrimitive:PP},INT_8:{primitiveType:"INT32",originalType:"INT_8",toPrimitive:xP},INT_16:{primitiveType:"INT32",originalType:"INT_16",toPrimitive:EP},INT_32:{primitiveType:"INT32",originalType:"INT_32",toPrimitive:MB},INT_64:{primitiveType:"INT64",originalType:"INT_64",toPrimitive:LB},JSON:{primitiveType:"BYTE_ARRAY",originalType:"JSON",toPrimitive:zP,fromPrimitive:UP},BSON:{primitiveType:"BYTE_ARRAY",originalType:"BSON",toPrimitive:MP,fromPrimitive:LP},INTERVAL:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"INTERVAL",typeLength:12,toPrimitive:QP,fromPrimitive:XP},DECIMAL_INT32:{primitiveType:"INT32",originalType:"DECIMAL_INT32",toPrimitive:OP,fromPrimitive:KB},DECIMAL_INT64:{primitiveType:"INT64",originalType:"DECIMAL_INT64",toPrimitive:DP,fromPrimitive:KB},DECIMAL_BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",originalType:"DECIMAL_BYTE_ARRAY",toPrimitive:CB,fromPrimitive:YB},DECIMAL_FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"DECIMAL_FIXED_LEN_BYTE_ARRAY",toPrimitive:CB,fromPrimitive:YB}};WB=864e5});function Mb(t){let e={};for(let r of t.fieldList)e[r.key]={dlevels:[],rlevels:[],values:[],pageHeaders:[],count:0};return{rowCount:0,columnData:e}}function td(t,e,r){let n=Mb(t).columnData;if(Lb(t.fields,e,n,0,0),r.rowCount===0){r.rowCount=1,r.columnData=n;return}r.rowCount+=1;for(let i of t.fieldList)Array.prototype.push.apply(r.columnData[i.key].rlevels,n[i.key].rlevels),Array.prototype.push.apply(r.columnData[i.key].dlevels,n[i.key].dlevels),Array.prototype.push.apply(r.columnData[i.key].values,n[i.key].values),r.columnData[i.key].count+=n[i.key].count}function Lb(t,e,r,n,i){for(let o in t){let f=t[o],s=[];if(e&&f.name in e&&e[f.name]!==void 0&&e[f.name]!==null&&(e[f.name].constructor===Array?s=e[f.name]:s.push(e[f.name])),s.length===0&&Boolean(e)&&f.repetitionType==="REQUIRED")throw new Error(`missing required field: ${f.name}`);if(s.length>1&&f.repetitionType!=="REPEATED")throw new Error(`too many values for field: ${f.name}`);if(s.length===0){f.isNested?Lb(f.fields,null,r,n,i):(r[f.key].count+=1,r[f.key].rlevels.push(n),r[f.key].dlevels.push(i));continue}for(let u=0;u<s.length;u++){let l=u===0?n:f.rLevelMax;f.isNested?Lb(f.fields,s[u],r,l,f.dLevelMax):(r[f.key].count+=1,r[f.key].rlevels.push(l),r[f.key].dlevels.push(f.dLevelMax),r[f.key].values.push(zB(f.originalType||f.primitiveType,s[u])))}}}function rd(t,e){let r=[];for(let n=0;n<e.rowCount;n++)r.push({});for(let n in e.columnData){let i=e.columnData[n];i.count&&$P(t,i,n,r)}return r}function $P(t,e,r,n){let i=t.findField(r),o=t.findFieldBranch(r),f=new Array(i.rLevelMax+1).fill(0),s=0;for(let u=0;u<e.count;u++){let l=e.dlevels[u],c=e.rlevels[u];f[c]++,f.fill(0,c+1);let w=0,p=n[f[w++]-1];for(let g of o){if(g===i||l<g.dLevelMax)break;switch(g.repetitionType){case"REPEATED":g.name in p||(p[g.name]=[]);let T=f[w++];for(;p[g.name].length<=T;)p[g.name].push({});p=p[g.name][T];break;default:p[g.name]=p[g.name]||{},p=p[g.name]}}if(l===i.dLevelMax){let g=UB(i.originalType||i.primitiveType,e.values[s],i);switch(s++,i.repetitionType){case"REPEATED":i.name in p||(p[i.name]=[]);let T=f[w];for(;p[i.name].length<=T;)p[i.name].push(null);p[i.name][T]=g;break;default:p[i.name]=g}}}}var nd=W(()=>{Ub()});function Vb(t,e){for(let r in t){let n=t[r];n.fields?Vb(n.fields,e):n.compression=e}}function GB(t,e,r,n){let i={};for(let o in t){let f=t[o],s=!f.optional,u=Boolean(f.repeated),l=e,c=r,w="REQUIRED";if(s||(w="OPTIONAL",c++),u&&(w="REPEATED",l++,s&&c++),f.fields){let T=n.concat([o]);i[o]={name:o,path:T,key:T.join(),repetitionType:w,rLevelMax:l,dLevelMax:c,isNested:!0,fieldCount:Object.keys(f.fields).length,fields:GB(f.fields,l,c,T)};continue}let p=Mf[f.type];if(!p)throw new Error(`invalid parquet type: ${f.type}`);if(f.encoding=f.encoding||"PLAIN",!(f.encoding in qo))throw new Error(`unsupported parquet encoding: ${f.encoding}`);if(f.compression=f.compression||"UNCOMPRESSED",!(f.compression in Vl))throw new Error(`unsupported compression method: ${f.compression}`);let g=n.concat([o]);i[o]={name:o,primitiveType:p.primitiveType,originalType:p.originalType,path:g,key:g.join(),repetitionType:w,encoding:f.encoding,compression:f.compression,typeLength:f.typeLength||p.typeLength,presision:f.presision,scale:f.scale,rLevelMax:l,dLevelMax:c}}return i}function ZB(t){let e=[];for(let r in t)e.push(t[r]),t[r].isNested&&(e=e.concat(ZB(t[r].fields)));return e}var eu,Cb=W(()=>{Mc();Cl();nd();Ub();eu=class{constructor(e){this.schema=e,this.fields=GB(e,0,0,[]),this.fieldList=ZB(this.fields)}findField(e){typeof e=="string"?e=e.split(","):e=e.slice(0);let r=this.fields;for(;e.length>1;e.shift())r=r[e[0]].fields;return r[e[0]]}findFieldBranch(e){typeof e=="string"&&(e=e.split(","));let r=[],n=this.fields;for(;e.length>0;e.shift())r.push(n[e[0]]),e.length>1&&(n=n[e[0]].fields);return r}shredRecord(e,r){td(this,e,r)}materializeRecords(e){return rd(this,e)}compress(e){return Vb(this.schema,e),Vb(this.fields,e),this}buffer(){return Mb(this)}}});var Ci,JB=W(()=>{(function(u){u[u.BOOLEAN=0]="BOOLEAN",u[u.INT32=1]="INT32",u[u.INT64=2]="INT64",u[u.INT96=3]="INT96",u[u.FLOAT=4]="FLOAT",u[u.DOUBLE=5]="DOUBLE",u[u.BYTE_ARRAY=6]="BYTE_ARRAY",u[u.FIXED_LEN_BYTE_ARRAY=7]="FIXED_LEN_BYTE_ARRAY"})(Ci||(Ci={}))});var Ys,QB=W(()=>{(function(F){F[F.UTF8=0]="UTF8",F[F.MAP=1]="MAP",F[F.MAP_KEY_VALUE=2]="MAP_KEY_VALUE",F[F.LIST=3]="LIST",F[F.ENUM=4]="ENUM",F[F.DECIMAL=5]="DECIMAL",F[F.DATE=6]="DATE",F[F.TIME_MILLIS=7]="TIME_MILLIS",F[F.TIME_MICROS=8]="TIME_MICROS",F[F.TIMESTAMP_MILLIS=9]="TIMESTAMP_MILLIS",F[F.TIMESTAMP_MICROS=10]="TIMESTAMP_MICROS",F[F.UINT_8=11]="UINT_8",F[F.UINT_16=12]="UINT_16",F[F.UINT_32=13]="UINT_32",F[F.UINT_64=14]="UINT_64",F[F.INT_8=15]="INT_8",F[F.INT_16=16]="INT_16",F[F.INT_32=17]="INT_32",F[F.INT_64=18]="INT_64",F[F.JSON=19]="JSON",F[F.BSON=20]="BSON",F[F.INTERVAL=21]="INTERVAL"})(Ys||(Ys={}))});var Gs,XB=W(()=>{(function(n){n[n.REQUIRED=0]="REQUIRED",n[n.OPTIONAL=1]="OPTIONAL",n[n.REPEATED=2]="REPEATED"})(Gs||(Gs={}))});var Nr,$B=W(()=>{(function(u){u[u.PLAIN=0]="PLAIN",u[u.PLAIN_DICTIONARY=2]="PLAIN_DICTIONARY",u[u.RLE=3]="RLE",u[u.BIT_PACKED=4]="BIT_PACKED",u[u.DELTA_BINARY_PACKED=5]="DELTA_BINARY_PACKED",u[u.DELTA_LENGTH_BYTE_ARRAY=6]="DELTA_LENGTH_BYTE_ARRAY",u[u.DELTA_BYTE_ARRAY=7]="DELTA_BYTE_ARRAY",u[u.RLE_DICTIONARY=8]="RLE_DICTIONARY"})(Nr||(Nr={}))});var Zs,ek=W(()=>{(function(u){u[u.UNCOMPRESSED=0]="UNCOMPRESSED",u[u.SNAPPY=1]="SNAPPY",u[u.GZIP=2]="GZIP",u[u.LZO=3]="LZO",u[u.BROTLI=4]="BROTLI",u[u.LZ4=5]="LZ4",u[u.ZSTD=6]="ZSTD",u[u.LZ4_RAW=7]="LZ4_RAW"})(Zs||(Zs={}))});var Lf,tk=W(()=>{(function(i){i[i.DATA_PAGE=0]="DATA_PAGE",i[i.INDEX_PAGE=1]="INDEX_PAGE",i[i.DICTIONARY_PAGE=2]="DICTIONARY_PAGE",i[i.DATA_PAGE_V2=3]="DATA_PAGE_V2"})(Lf||(Lf={}))});var rk,nk=W(()=>{(function(n){n[n.UNORDERED=0]="UNORDERED",n[n.ASCENDING=1]="ASCENDING",n[n.DESCENDING=2]="DESCENDING"})(rk||(rk={}))});var Tr=B((S5,ok)=>{var Wb=4294967296,ik=[];for(Js=0;Js<256;Js++)ik[Js]=(Js>15?"":"0")+Js.toString(16);var Js,tu=ok.exports=function(t,e){t instanceof Buffer?(this.buffer=t,this.offset=e||0):Object.prototype.toString.call(t)=="[object Uint8Array]"?(this.buffer=new Buffer(t),this.offset=e||0):(this.buffer=this.buffer||new Buffer(8),this.offset=0,this.setValue.apply(this,arguments))};tu.MAX_INT=Math.pow(2,53);tu.MIN_INT=-Math.pow(2,53);tu.prototype={constructor:tu,_2scomp:function(){for(var t=this.buffer,e=this.offset,r=1,n=e+7;n>=e;n--){var i=(t[n]^255)+r;t[n]=i&255,r=i>>8}},setValue:function(t,e){var r=!1;if(arguments.length==1)if(typeof t=="number"){if(r=t<0,t=Math.abs(t),e=t%Wb,t=t/Wb,t>Wb)throw new RangeError(t+" is outside Int64 range");t=t|0}else if(typeof t=="string")t=(t+"").replace(/^0x/,""),e=t.substr(-8),t=t.length>8?t.substr(0,t.length-8):"",t=parseInt(t,16),e=parseInt(e,16);else throw new Error(t+" must be a Number or String");for(var n=this.buffer,i=this.offset,o=7;o>=0;o--)n[i+o]=e&255,e=o==4?t:e>>>8;r&&this._2scomp()},toNumber:function(t){for(var e=this.buffer,r=this.offset,n=e[r]&128,i=0,o=1,f=7,s=1;f>=0;f--,s*=256){var u=e[r+f];n&&(u=(u^255)+o,o=u>>8,u=u&255),i+=u*s}return!t&&i>=tu.MAX_INT?n?-1/0:1/0:n?-i:i},valueOf:function(){return this.toNumber(!1)},toString:function(t){return this.valueOf().toString(t||10)},toOctetString:function(t){for(var e=new Array(8),r=this.buffer,n=this.offset,i=0;i<8;i++)e[i]=ik[r[n+i]];return e.join(t||"")},toBuffer:function(t){if(t&&this.offset===0)return this.buffer;var e=new Buffer(8);return this.buffer.copy(e,0,this.offset,this.offset+8),e},copy:function(t,e){this.buffer.copy(t,e||0,this.offset,this.offset+8)},compare:function(t){if((this.buffer[this.offset]&128)!=(t.buffer[t.offset]&128))return t.buffer[t.offset]-this.buffer[this.offset];for(var e=0;e<8;e++)if(this.buffer[this.offset+e]!==t.buffer[t.offset+e])return this.buffer[this.offset+e]-t.buffer[t.offset+e];return 0},equals:function(t){return this.compare(t)===0},inspect:function(){return"[Int64 value:"+this+" octets:"+this.toOctetString(" ")+"]"}}});var Po=B((ii,Kb)=>{var id=Nn(),ru=ii.Type={STOP:0,VOID:1,BOOL:2,BYTE:3,I08:3,DOUBLE:4,I16:6,I32:8,I64:10,STRING:11,UTF7:11,STRUCT:12,MAP:13,SET:14,LIST:15,UTF8:16,UTF16:17};ii.MessageType={CALL:1,REPLY:2,EXCEPTION:3,ONEWAY:4};ii.TException=od;function od(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}id.inherits(od,Error);var eN=ii.TApplicationExceptionType={UNKNOWN:0,UNKNOWN_METHOD:1,INVALID_MESSAGE_TYPE:2,WRONG_METHOD_NAME:3,BAD_SEQUENCE_ID:4,MISSING_RESULT:5,INTERNAL_ERROR:6,PROTOCOL_ERROR:7,INVALID_TRANSFORM:8,INVALID_PROTOCOL:9,UNSUPPORTED_CLIENT_TYPE:10};ii.TApplicationException=fd;function fd(t,e){od.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.type=t||eN.UNKNOWN,this.name=this.constructor.name,this.message=e}id.inherits(fd,od);fd.prototype.read=function(t){for(var e,r=t.readStructBegin("TApplicationException");r=t.readFieldBegin(),r.ftype!=ru.STOP;){switch(r.fid){case 1:r.ftype==ru.STRING?(r=t.readString(),this.message=r):r=t.skip(r.ftype);break;case 2:r.ftype==ru.I32?(r=t.readI32(),this.type=r):r=t.skip(r.ftype);break;default:r=t.skip(r.ftype);break}t.readFieldEnd()}t.readStructEnd()};fd.prototype.write=function(t){t.writeStructBegin("TApplicationException"),this.message&&(t.writeFieldBegin("message",ru.STRING,1),t.writeString(this.message),t.writeFieldEnd()),this.code&&(t.writeFieldBegin("type",ru.I32,2),t.writeI32(this.code),t.writeFieldEnd()),t.writeFieldStop(),t.writeStructEnd()};var E5=ii.TProtocolExceptionType={UNKNOWN:0,INVALID_DATA:1,NEGATIVE_SIZE:2,SIZE_LIMIT:3,BAD_VERSION:4,NOT_IMPLEMENTED:5,DEPTH_LIMIT:6};ii.TProtocolException=fk;function fk(t,e){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.type=t,this.message=e}id.inherits(fk,Error);ii.objectLength=function(t){return Object.keys(t).length};ii.inherits=function(t,e){id.inherits(t,e)};var sd,ad;sd=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i=t.length,o=[],f,s;for(f=0;f<i;f++)s=t[f],r===null?o.push(s):r===ad||r===sd?o.push(r(s,e.slice(1))):o.push(new n(s));return o};ad=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i={},o;for(var f in t)t.hasOwnProperty(f)&&(o=t[f],r===null?i[f]=o:r===ad||r===sd?i[f]=r(o,e.slice(1)):i[f]=new n(o));return i};Kb.exports.copyMap=ad;Kb.exports.copyList=sd});var ak=B((A5,sk)=>{var Qs=null;typeof WebSocket!="undefined"?Qs=WebSocket:typeof MozWebSocket!="undefined"?Qs=MozWebSocket:typeof global!="undefined"?Qs=global.WebSocket||global.MozWebSocket:typeof window!="undefined"?Qs=window.WebSocket||window.MozWebSocket:typeof self!="undefined"&&(Qs=self.WebSocket||self.MozWebSocket);sk.exports=Qs});var Gb=B((O5,Yb)=>{"use strict";var Xs=typeof Reflect=="object"?Reflect:null,lk=Xs&&typeof Xs.apply=="function"?Xs.apply:function(e,r,n){return Function.prototype.apply.call(e,r,n)},ld;Xs&&typeof Xs.ownKeys=="function"?ld=Xs.ownKeys:Object.getOwnPropertySymbols?ld=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:ld=function(e){return Object.getOwnPropertyNames(e)};function tN(t){console&&console.warn&&console.warn(t)}var uk=Number.isNaN||function(e){return e!==e};function at(){at.init.call(this)}Yb.exports=at;Yb.exports.once=oN;at.EventEmitter=at;at.prototype._events=void 0;at.prototype._eventsCount=0;at.prototype._maxListeners=void 0;var ck=10;function ud(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(at,"defaultMaxListeners",{enumerable:!0,get:function(){return ck},set:function(t){if(typeof t!="number"||t<0||uk(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");ck=t}});at.init=function(){(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0};at.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||uk(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};function pk(t){return t._maxListeners===void 0?at.defaultMaxListeners:t._maxListeners}at.prototype.getMaxListeners=function(){return pk(this)};at.prototype.emit=function(e){for(var r=[],n=1;n<arguments.length;n++)r.push(arguments[n]);var i=e==="error",o=this._events;if(o!==void 0)i=i&&o.error===void 0;else if(!i)return!1;if(i){var f;if(r.length>0&&(f=r[0]),f instanceof Error)throw f;var s=new Error("Unhandled error."+(f?" ("+f.message+")":""));throw s.context=f,s}var u=o[e];if(u===void 0)return!1;if(typeof u=="function")lk(u,this,r);else for(var l=u.length,c=bk(u,l),n=0;n<l;++n)lk(c[n],this,r);return!0};function dk(t,e,r,n){var i,o,f;if(ud(r),o=t._events,o===void 0?(o=t._events=Object.create(null),t._eventsCount=0):(o.newListener!==void 0&&(t.emit("newListener",e,r.listener?r.listener:r),o=t._events),f=o[e]),f===void 0)f=o[e]=r,++t._eventsCount;else if(typeof f=="function"?f=o[e]=n?[r,f]:[f,r]:n?f.unshift(r):f.push(r),i=pk(t),i>0&&f.length>i&&!f.warned){f.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+f.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=t,s.type=e,s.count=f.length,tN(s)}return t}at.prototype.addListener=function(e,r){return dk(this,e,r,!1)};at.prototype.on=at.prototype.addListener;at.prototype.prependListener=function(e,r){return dk(this,e,r,!0)};function rN(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function mk(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=rN.bind(n);return i.listener=r,n.wrapFn=i,i}at.prototype.once=function(e,r){return ud(r),this.on(e,mk(this,e,r)),this};at.prototype.prependOnceListener=function(e,r){return ud(r),this.prependListener(e,mk(this,e,r)),this};at.prototype.removeListener=function(e,r){var n,i,o,f,s;if(ud(r),i=this._events,i===void 0)return this;if(n=i[e],n===void 0)return this;if(n===r||n.listener===r)--this._eventsCount==0?this._events=Object.create(null):(delete i[e],i.removeListener&&this.emit("removeListener",e,n.listener||r));else if(typeof n!="function"){for(o=-1,f=n.length-1;f>=0;f--)if(n[f]===r||n[f].listener===r){s=n[f].listener,o=f;break}if(o<0)return this;o===0?n.shift():nN(n,o),n.length===1&&(i[e]=n[0]),i.removeListener!==void 0&&this.emit("removeListener",e,s||r)}return this};at.prototype.off=at.prototype.removeListener;at.prototype.removeAllListeners=function(e){var r,n,i;if(n=this._events,n===void 0)return this;if(n.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):n[e]!==void 0&&(--this._eventsCount==0?this._events=Object.create(null):delete n[e]),this;if(arguments.length===0){var o=Object.keys(n),f;for(i=0;i<o.length;++i)f=o[i],f!=="removeListener"&&this.removeAllListeners(f);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(r=n[e],typeof r=="function")this.removeListener(e,r);else if(r!==void 0)for(i=r.length-1;i>=0;i--)this.removeListener(e,r[i]);return this};function wk(t,e,r){var n=t._events;if(n===void 0)return[];var i=n[e];return i===void 0?[]:typeof i=="function"?r?[i.listener||i]:[i]:r?iN(i):bk(i,i.length)}at.prototype.listeners=function(e){return wk(this,e,!0)};at.prototype.rawListeners=function(e){return wk(this,e,!1)};at.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):hk.call(t,e)};at.prototype.listenerCount=hk;function hk(t){var e=this._events;if(e!==void 0){var r=e[t];if(typeof r=="function")return 1;if(r!==void 0)return r.length}return 0}at.prototype.eventNames=function(){return this._eventsCount>0?ld(this._events):[]};function bk(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function nN(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function iN(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function oN(t,e){return new Promise(function(r,n){function i(f){t.removeListener(e,o),n(f)}function o(){typeof t.removeListener=="function"&&t.removeListener("error",i),r([].slice.call(arguments))}gk(t,e,o,{once:!0}),e!=="error"&&fN(t,i,{once:!0})})}function fN(t,e,r){typeof t.on=="function"&&gk(t,"error",e,r)}function gk(t,e,r,n){if(typeof t.on=="function")n.once?t.once(e,r):t.on(e,r);else if(typeof t.addEventListener=="function")t.addEventListener(e,function i(o){n.once&&t.removeEventListener(e,i),r(o)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t)}});var cd=B(No=>{var Zb=Math.pow(2,8),sN=Math.pow(2,16),yk=Math.pow(2,24),jk=Math.pow(2,32),aN=Math.pow(2,40),lN=Math.pow(2,48),Jb=Math.pow(2,52),uN=Math.pow(2,1022);No.readByte=function(t){return t>127?t-256:t};No.readI16=function(t,e){e=e||0;var r=t[e+1];return r+=t[e]<<8,t[e]&128&&(r-=sN),r};No.readI32=function(t,e){e=e||0;var r=t[e+3];return r+=t[e+2]<<8,r+=t[e+1]<<16,r+=t[e]*yk,t[e]&128&&(r-=jk),r};No.writeI16=function(t,e){return t[1]=e&255,e>>=8,t[0]=e&255,t};No.writeI32=function(t,e){return t[3]=e&255,e>>=8,t[2]=e&255,e>>=8,t[1]=e&255,e>>=8,t[0]=e&255,t};No.readDouble=function(t,e){e=e||0;var r=t[e]&128,n=(t[e+1]&240)>>4;n+=(t[e]&127)<<4;var i=t[e+7];switch(i+=t[e+6]<<8,i+=t[e+5]<<16,i+=t[e+4]*yk,i+=t[e+3]*jk,i+=t[e+2]*aN,i+=(t[e+1]&15)*lN,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Jb,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};No.writeDouble=function(t,e){var r,n,i;return t[0]=e<0?128:0,e=Math.abs(e),e!==e?(r=2251799813685248,n=2047):e===1/0?(r=0,n=2047):(n=Math.floor(Math.log(e)/Math.LN2),i=Math.pow(2,-n),e*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(e*i-1)*Jb,n+=1023):(r=e*uN*Jb,n=0)),t[1]=n<<4&240,t[0]|=n>>4&127,t[7]=r&255,r=Math.floor(r/Zb),t[6]=r&255,r=Math.floor(r/Zb),t[5]=r&255,r=Math.floor(r/Zb),t[4]=r&255,r>>=8,t[3]=r&255,r>>=8,t[2]=r&255,r>>=8,t[1]|=r&15,t}});var Vf=B((D5,qk)=>{var cN=Nn();qk.exports=_k;function _k(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}cN.inherits(_k,Error)});var dd=B(Wi=>{var pN=Nn(),$s=function(){},vk=console.log,pd="error";function nu(t){return function(){var e=["thrift: ["+t+"] "].concat(Array.from(arguments));return vk(pN.format.apply(null,e))}}var Qb=$s,Xb=$s,$b=$s,eg=$s,tg=$s;Wi.setLogFunc=function(t){vk=t};var dN=Wi.setLogLevel=function(t){switch(Qb=Xb=$b=eg=tg=$s,pd=t,pd){case"trace":Qb=nu("TRACE");case"debug":Xb=nu("DEBUG");case"error":$b=nu("ERROR");case"warning":eg=nu("WARN");case"info":tg=nu("INFO")}};dN(pd);Wi.getLogLevel=function(){return pd};Wi.trace=function(){return Qb.apply(null,arguments)};Wi.debug=function(){return Xb.apply(null,arguments)};Wi.error=function(){return $b.apply(null,arguments)};Wi.warning=function(){return eg.apply(null,arguments)};Wi.info=function(){return tg.apply(null,arguments)}});var ig=B((N5,Tk)=>{var mN=dd(),Ki=Tr(),kt=Po(),pt=kt.Type;Tk.exports=R;var rg=Math.pow(2,8),wN=Math.pow(2,24),hN=Math.pow(2,32),bN=Math.pow(2,40),gN=Math.pow(2,48),ng=Math.pow(2,52),yN=Math.pow(2,1022);function R(t){this.trans=t,this.lastField_=[],this.lastFieldId_=0,this.string_limit_=0,this.string_buf_=null,this.string_buf_size_=0,this.container_limit_=0,this.booleanField_={name:null,hasBoolValue:!1},this.boolValue_={hasBoolValue:!1,boolValue:!1}}R.PROTOCOL_ID=-126;R.VERSION_N=1;R.VERSION_MASK=31;R.TYPE_MASK=-32;R.TYPE_BITS=7;R.TYPE_SHIFT_AMOUNT=5;R.Types={CT_STOP:0,CT_BOOLEAN_TRUE:1,CT_BOOLEAN_FALSE:2,CT_BYTE:3,CT_I16:4,CT_I32:5,CT_I64:6,CT_DOUBLE:7,CT_BINARY:8,CT_LIST:9,CT_SET:10,CT_MAP:11,CT_STRUCT:12};R.TTypeToCType=[R.Types.CT_STOP,0,R.Types.CT_BOOLEAN_TRUE,R.Types.CT_BYTE,R.Types.CT_DOUBLE,0,R.Types.CT_I16,0,R.Types.CT_I32,0,R.Types.CT_I64,R.Types.CT_BINARY,R.Types.CT_STRUCT,R.Types.CT_MAP,R.Types.CT_SET,R.Types.CT_LIST];R.prototype.getTransport=function(){return this.trans};R.prototype.getCompactType=function(t){return R.TTypeToCType[t]};R.prototype.getTType=function(t){switch(t){case pt.STOP:return pt.STOP;case R.Types.CT_BOOLEAN_FALSE:case R.Types.CT_BOOLEAN_TRUE:return pt.BOOL;case R.Types.CT_BYTE:return pt.BYTE;case R.Types.CT_I16:return pt.I16;case R.Types.CT_I32:return pt.I32;case R.Types.CT_I64:return pt.I64;case R.Types.CT_DOUBLE:return pt.DOUBLE;case R.Types.CT_BINARY:return pt.STRING;case R.Types.CT_LIST:return pt.LIST;case R.Types.CT_SET:return pt.SET;case R.Types.CT_MAP:return pt.MAP;case R.Types.CT_STRUCT:return pt.STRUCT;default:throw new kt.TProtocolException(kt.TProtocolExceptionType.INVALID_DATA,"Unknown type: "+t)}return pt.STOP};R.prototype.flush=function(){return this.trans.flush()};R.prototype.writeMessageBegin=function(t,e,r){this.writeByte(R.PROTOCOL_ID),this.writeByte(R.VERSION_N&R.VERSION_MASK|e<<R.TYPE_SHIFT_AMOUNT&R.TYPE_MASK),this.writeVarint32(r),this.writeString(t),this._seqid?mN.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};R.prototype.writeMessageEnd=function(){};R.prototype.writeStructBegin=function(t){this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0};R.prototype.writeStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};R.prototype.writeFieldBegin=function(t,e,r){if(e!=pt.BOOL)return this.writeFieldBeginInternal(t,e,r,-1);this.booleanField_.name=t,this.booleanField_.fieldType=e,this.booleanField_.fieldId=r};R.prototype.writeFieldEnd=function(){};R.prototype.writeFieldStop=function(){this.writeByte(R.Types.CT_STOP)};R.prototype.writeMapBegin=function(t,e,r){r===0?this.writeByte(0):(this.writeVarint32(r),this.writeByte(this.getCompactType(t)<<4|this.getCompactType(e)))};R.prototype.writeMapEnd=function(){};R.prototype.writeListBegin=function(t,e){this.writeCollectionBegin(t,e)};R.prototype.writeListEnd=function(){};R.prototype.writeSetBegin=function(t,e){this.writeCollectionBegin(t,e)};R.prototype.writeSetEnd=function(){};R.prototype.writeBool=function(t){this.booleanField_.name!==null?(this.writeFieldBeginInternal(this.booleanField_.name,this.booleanField_.fieldType,this.booleanField_.fieldId,t?R.Types.CT_BOOLEAN_TRUE:R.Types.CT_BOOLEAN_FALSE),this.booleanField_.name=null):this.writeByte(t?R.Types.CT_BOOLEAN_TRUE:R.Types.CT_BOOLEAN_FALSE)};R.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};R.prototype.writeI16=function(t){this.writeVarint32(this.i32ToZigzag(t))};R.prototype.writeI32=function(t){this.writeVarint32(this.i32ToZigzag(t))};R.prototype.writeI64=function(t){this.writeVarint64(this.i64ToZigzag(t))};R.prototype.writeDouble=function(t){var e=new Buffer(8),r,n,i;e[7]=t<0?128:0,t=Math.abs(t),t!==t?(r=2251799813685248,n=2047):t===1/0?(r=0,n=2047):(n=Math.floor(Math.log(t)/Math.LN2),i=Math.pow(2,-n),t*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(t*i-1)*ng,n+=1023):(r=t*yN*ng,n=0)),e[6]=n<<4&240,e[7]|=n>>4&127,e[0]=r&255,r=Math.floor(r/rg),e[1]=r&255,r=Math.floor(r/rg),e[2]=r&255,r=Math.floor(r/rg),e[3]=r&255,r>>=8,e[4]=r&255,r>>=8,e[5]=r&255,r>>=8,e[6]|=r&15,this.trans.write(e)};R.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeVarint32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeVarint32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};R.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};R.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};R.prototype.writeFieldBeginInternal=function(t,e,r,n){var i=n==-1?this.getCompactType(e):n;r>this.lastFieldId_&&r-this.lastFieldId_<=15?this.writeByte(r-this.lastFieldId_<<4|i):(this.writeByte(i),this.writeI16(r)),this.lastFieldId_=r};R.prototype.writeCollectionBegin=function(t,e){e<=14?this.writeByte(e<<4|this.getCompactType(t)):(this.writeByte(240|this.getCompactType(t)),this.writeVarint32(e))};R.prototype.writeVarint32=function(t){for(var e=new Buffer(5),r=0;;)if((t&~127)==0){e[r++]=t;break}else e[r++]=t&127|128,t=t>>>7;var n=new Buffer(r);e.copy(n,0,0,r),this.trans.write(n)};R.prototype.writeVarint64=function(t){if(typeof t=="number"&&(t=new Ki(t)),!(t instanceof Ki))throw new kt.TProtocolException(kt.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);for(var e=new Buffer(10),r=0,n=t.buffer.readUInt32BE(0,!0),i=t.buffer.readUInt32BE(4,!0),o=0;;)if((i&~127)==0&&n===0){e[r++]=i;break}else e[r++]=i&127|128,o=n<<25,i=i>>>7,n=n>>>7,i=i|o;var f=new Buffer(r);e.copy(f,0,0,r),this.trans.write(f)};R.prototype.i64ToZigzag=function(t){if(typeof t=="string"?t=new Ki(parseInt(t,10)):typeof t=="number"&&(t=new Ki(t)),!(t instanceof Ki))throw new kt.TProtocolException(kt.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=e>>>31;return e=(e<<1|r>>>31)^(n?4294967295:0),r=r<<1^(n?4294967295:0),new Ki(e,r)};R.prototype.i32ToZigzag=function(t){return t<<1^(t&2147483648?4294967295:0)};R.prototype.readMessageBegin=function(){var t=this.trans.readByte();if(t!=R.PROTOCOL_ID)throw new kt.TProtocolException(kt.TProtocolExceptionType.BAD_VERSION,"Bad protocol identifier "+t);var e=this.trans.readByte(),r=e&R.VERSION_MASK;if(r!=R.VERSION_N)throw new kt.TProtocolException(kt.TProtocolExceptionType.BAD_VERSION,"Bad protocol version "+r);var n=e>>R.TYPE_SHIFT_AMOUNT&R.TYPE_BITS,i=this.readVarint32(),o=this.readString();return{fname:o,mtype:n,rseqid:i}};R.prototype.readMessageEnd=function(){};R.prototype.readStructBegin=function(){return this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0,{fname:""}};R.prototype.readStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};R.prototype.readFieldBegin=function(){var t=0,e=this.trans.readByte(e),r=e&15;if(r==R.Types.CT_STOP)return{fname:null,ftype:kt.Type.STOP,fid:0};var n=(e&240)>>>4;n===0?t=this.readI16():t=this.lastFieldId_+n;var i=this.getTType(r);return(r==R.Types.CT_BOOLEAN_TRUE||r==R.Types.CT_BOOLEAN_FALSE)&&(this.boolValue_.hasBoolValue=!0,this.boolValue_.boolValue=r==R.Types.CT_BOOLEAN_TRUE),this.lastFieldId_=t,{fname:null,ftype:i,fid:t}};R.prototype.readFieldEnd=function(){};R.prototype.readMapBegin=function(){var t=this.readVarint32();if(t<0)throw new kt.TProtocolException(kt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative map size");var e=0;t!==0&&(e=this.trans.readByte());var r=this.getTType((e&240)>>>4),n=this.getTType(e&15);return{ktype:r,vtype:n,size:t}};R.prototype.readMapEnd=function(){};R.prototype.readListBegin=function(){var t=this.trans.readByte(),e=t>>>4&15;if(e==15&&(e=this.readVarint32()),e<0)throw new kt.TProtocolException(kt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative list size");var r=this.getTType(t&15);return{etype:r,size:e}};R.prototype.readListEnd=function(){};R.prototype.readSetBegin=function(){return this.readListBegin()};R.prototype.readSetEnd=function(){};R.prototype.readBool=function(){var t=!1,e=0;if(this.boolValue_.hasBoolValue===!0)t=this.boolValue_.boolValue,this.boolValue_.hasBoolValue=!1;else{var r=this.trans.readByte();e=r.rsize,t=r.value==R.Types.CT_BOOLEAN_TRUE}return t};R.prototype.readByte=function(){return this.trans.readByte()};R.prototype.readI16=function(){return this.readI32()};R.prototype.readI32=function(){return this.zigzagToI32(this.readVarint32())};R.prototype.readI64=function(){return this.zigzagToI64(this.readVarint64())};R.prototype.readDouble=function(){var t=this.trans.read(8),e=0,r=t[e+7]&128,n=(t[e+6]&240)>>4;n+=(t[e+7]&127)<<4;var i=t[e];switch(i+=t[e+1]<<8,i+=t[e+2]<<16,i+=t[e+3]*wN,i+=t[e+4]*hN,i+=t[e+5]*bN,i+=(t[e+6]&15)*gN,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=ng,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};R.prototype.readBinary=function(){var t=this.readVarint32();if(t===0)return new Buffer(0);if(t<0)throw new kt.TProtocolException(kt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};R.prototype.readString=function(){var t=this.readVarint32();if(t===0)return"";if(t<0)throw new kt.TProtocolException(kt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};R.prototype.readVarint32=function(){return this.readVarint64().toNumber()};R.prototype.readVarint64=function(){for(var t=0,e=0,r=0,n=0;;){var i=this.trans.readByte();if(t++,n<=25?e=e|(i&127)<<n:25<n&&n<32?(e=e|(i&127)<<n,r=r|(i&127)>>>32-n):r=r|(i&127)<<n-32,n+=7,!(i&128))break;if(t>=10)throw new kt.TProtocolException(kt.TProtocolExceptionType.INVALID_DATA,"Variable-length int over 10 bytes.")}return new Ki(r,e)};R.prototype.zigzagToI32=function(t){return t>>>1^-1*(t&1)};R.prototype.zigzagToI64=function(t){var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=new Ki(e&0,r&1);n._2scomp();var i=n.buffer.readUInt32BE(0,!0),o=n.buffer.readUInt32BE(4,!0),f=e<<31;return e=e>>>1^i,r=(r>>>1|f)^o,new Ki(e,r)};R.prototype.skip=function(t){switch(t){case pt.BOOL:this.readBool();break;case pt.BYTE:this.readByte();break;case pt.I16:this.readI16();break;case pt.I32:this.readI32();break;case pt.I64:this.readI64();break;case pt.DOUBLE:this.readDouble();break;case pt.STRING:this.readString();break;case pt.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===pt.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case pt.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case pt.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case pt.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var sg=B((R5,Sk)=>{var Bk=dd(),og=cd(),kk=Tr(),Yi=Po(),Rr=Yi.Type;Sk.exports=he;var Ik=-65536,fg=-2147418112,xk=255;he.VERSION_MASK=Ik;he.VERSION_1=fg;he.TYPE_MASK=xk;function he(t,e,r){this.trans=t,this.strictRead=e!==void 0?e:!1,this.strictWrite=r!==void 0?r:!0,this._seqid=null}he.prototype.flush=function(){return this.trans.flush()};he.prototype.writeMessageBegin=function(t,e,r){this.strictWrite?(this.writeI32(fg|e),this.writeString(t),this.writeI32(r)):(this.writeString(t),this.writeByte(e),this.writeI32(r)),this._seqid!==null?Bk.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};he.prototype.writeMessageEnd=function(){this._seqid!==null?this._seqid=null:Bk.warning("No seqid to unset")};he.prototype.writeStructBegin=function(t){};he.prototype.writeStructEnd=function(){};he.prototype.writeFieldBegin=function(t,e,r){this.writeByte(e),this.writeI16(r)};he.prototype.writeFieldEnd=function(){};he.prototype.writeFieldStop=function(){this.writeByte(Rr.STOP)};he.prototype.writeMapBegin=function(t,e,r){this.writeByte(t),this.writeByte(e),this.writeI32(r)};he.prototype.writeMapEnd=function(){};he.prototype.writeListBegin=function(t,e){this.writeByte(t),this.writeI32(e)};he.prototype.writeListEnd=function(){};he.prototype.writeSetBegin=function(t,e){this.writeByte(t),this.writeI32(e)};he.prototype.writeSetEnd=function(){};he.prototype.writeBool=function(t){t?this.writeByte(1):this.writeByte(0)};he.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};he.prototype.writeI16=function(t){this.trans.write(og.writeI16(new Buffer(2),t))};he.prototype.writeI32=function(t){this.trans.write(og.writeI32(new Buffer(4),t))};he.prototype.writeI64=function(t){t.buffer?this.trans.write(t.buffer):this.trans.write(new kk(t).buffer)};he.prototype.writeDouble=function(t){this.trans.write(og.writeDouble(new Buffer(8),t))};he.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeI32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeI32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};he.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};he.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};he.prototype.readMessageBegin=function(){var t=this.readI32(),e,r,n;if(t<0){var i=t&Ik;if(i!=fg)throw new Yi.TProtocolException(Yi.TProtocolExceptionType.BAD_VERSION,"Bad version in readMessageBegin: "+t);e=t&xk,r=this.readString(),n=this.readI32()}else{if(this.strictRead)throw new Yi.TProtocolException(Yi.TProtocolExceptionType.BAD_VERSION,"No protocol version header");r=this.trans.read(t),e=this.readByte(),n=this.readI32()}return{fname:r,mtype:e,rseqid:n}};he.prototype.readMessageEnd=function(){};he.prototype.readStructBegin=function(){return{fname:""}};he.prototype.readStructEnd=function(){};he.prototype.readFieldBegin=function(){var t=this.readByte();if(t==Rr.STOP)return{fname:null,ftype:t,fid:0};var e=this.readI16();return{fname:null,ftype:t,fid:e}};he.prototype.readFieldEnd=function(){};he.prototype.readMapBegin=function(){var t=this.readByte(),e=this.readByte(),r=this.readI32();return{ktype:t,vtype:e,size:r}};he.prototype.readMapEnd=function(){};he.prototype.readListBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};he.prototype.readListEnd=function(){};he.prototype.readSetBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};he.prototype.readSetEnd=function(){};he.prototype.readBool=function(){var t=this.readByte();return t!==0};he.prototype.readByte=function(){return this.trans.readByte()};he.prototype.readI16=function(){return this.trans.readI16()};he.prototype.readI32=function(){return this.trans.readI32()};he.prototype.readI64=function(){var t=this.trans.read(8);return new kk(t)};he.prototype.readDouble=function(){return this.trans.readDouble()};he.prototype.readBinary=function(){var t=this.readI32();if(t===0)return new Buffer(0);if(t<0)throw new Yi.TProtocolException(Yi.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};he.prototype.readString=function(){var t=this.readI32();if(t===0)return"";if(t<0)throw new Yi.TProtocolException(Yi.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};he.prototype.getTransport=function(){return this.trans};he.prototype.skip=function(t){switch(t){case Rr.BOOL:this.readBool();break;case Rr.BYTE:this.readByte();break;case Rr.I16:this.readI16();break;case Rr.I32:this.readI32();break;case Rr.I64:this.readI64();break;case Rr.DOUBLE:this.readDouble();break;case Rr.STRING:this.readString();break;case Rr.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Rr.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Rr.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Rr.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case Rr.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var ag=B((H5,Pk)=>{var jN=Nn(),md=ig(),Ek=sg(),_N=Vf();function iu(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}jN.inherits(iu,Error);Pk.exports=Rt;var qN=0,vN=1,TN=0,BN=32/8,kN=48/8,IN=64/8,xN=96/8,Ak=112/8,Ok=4095,Fk=1,SN=1073741823;function Gi(t){var e=ou();this.outputBuffer=null;var r=this;this.transport=new e(null,function(n){r.outputBuffer=n}),this.transport.inBuf=t||Buffer.alloc(0),this.transport.writeCursor=this.transport.inBuf.length,this.protocol=new md(this.transport)}Gi.prototype.readVarint32=function(){return this.protocol.readVarint32()};Gi.prototype.writeVarint32=function(t){this.protocol.writeVarint32(t)};Gi.prototype.readString=function(){return this.protocol.readString()};Gi.prototype.writeString=function(t){this.protocol.writeString(t)};Gi.prototype.getOutCount=function(){return this.transport.outCount};Gi.prototype.write=function(t){this.transport.write(t)};Gi.prototype.toBuffer=function(){return this.transport.flush(),this.outputBuffer};Rt.SubprotocolId={BINARY:0,JSON:1,COMPACT:2};function Rt(){this.maxFrameSize=SN,this.protocolId=Rt.SubprotocolId.BINARY,this.rheaders={},this.wheaders={},this.inBuf=Buffer.alloc(0),this.outCount=0,this.flags=null,this.seqid=0,this.shouldWriteHeaders=!0}var Dk=function(t,e){if(typeof t!="string"||typeof e!="string")throw new iu("Header key and values must be strings")},EN=function(t){for(var e=Object.keys(Rt.SubprotocolId),r=0;r<e.length;r++)if(t===Rt.SubprotocolId[e[r]])return!0;throw new Error(t+" is not a valid protocol id")};Rt.prototype.setSeqId=function(t){this.seqid=t};Rt.prototype.getSeqId=function(t){return this.seqid};Rt.prototype.setFlags=function(t){this.flags=t};Rt.prototype.getReadHeaders=function(){return this.rheaders};Rt.prototype.setReadHeader=function(t,e){Dk(t,e),this.rheaders[t]=e};Rt.prototype.clearReadHeaders=function(){this.rheaders={}};Rt.prototype.getWriteHeaders=function(){return this.wheaders};Rt.prototype.setWriteHeader=function(t,e){Dk(t,e),this.wheaders[t]=e};Rt.prototype.clearWriteHeaders=function(){this.wheaders={}};Rt.prototype.setMaxFrameSize=function(t){this.maxFrameSize=t};Rt.prototype.setProtocolId=function(t){EN(t),this.protocolId=t};Rt.prototype.getProtocolId=function(){return this.protocolId};var AN=function(t){var e=t.readInt32BE();return(e&Ek.VERSION_MASK)===Ek.VERSION_1},ON=function(t){var e=t.readInt8(qN),r=t.readInt8(vN);return e===md.PROTOCOL_ID&&(r&md.VERSION_MASK)===md.VERSION_N};Rt.prototype.readHeaders=function(){var t=this.inBuf,e=!1;if(AN(t)&&(this.setProtocolId(Rt.SubprotocolId.BINARY),e=!0),ON(t)&&(this.setProtocolId(Rt.SubprotocolId.COMPACT),e=!0),e){this.shouldWriteHeaders=!1;return}var r=t.readInt32BE(TN);if(r>this.maxFrameSize)throw new iu("Frame exceeds maximum frame size");var n=t.readInt16BE(BN);if(this.shouldWriteHeaders=n===Ok,!!this.shouldWriteHeaders){this.setFlags(t.readInt16BE(kN)),this.setSeqId(t.readInt32BE(IN));var i=t.readInt16BE(xN)*4,o=Ak+i;if(o>t.length)throw new iu("Header size is greater than frame size");var f=Buffer.alloc(i);t.copy(f,0,Ak,o);var s=new Gi(f);this.setProtocolId(s.readVarint32());var u=s.readVarint32();if(u>0)throw new iu("Transforms are not yet supported");for(;;)try{var l=s.readVarint32();if(l!==Fk)break;for(var c=s.readVarint32(),w=0;w<c;w++){var p=s.readString(),g=s.readString();this.setReadHeader(p,g)}}catch(T){if(T instanceof _N)break;throw T}return this.read(o),this.getReadHeaders()}};Rt.prototype.writeHeaders=function(){if(!!this.shouldWriteHeaders){var t=this.getWriteHeaders(),e=new Gi;e.writeVarint32(this.protocolId),e.writeVarint32(0);var r=Object.keys(t);if(r.length>0){e.writeVarint32(Fk),e.writeVarint32(r.length);for(var n=0;n<r.length;n++){var i=r[n],o=t[i];e.writeString(i),e.writeString(o)}}var f=e.getOutCount(),s=(4-f%4)%4,u=Buffer.alloc(2);u.writeInt16BE(Math.floor((f+s)/4));var l=Buffer.alloc(s);l.fill(0),e.write(l);var c=e.toBuffer(),w=Buffer.alloc(4);w.writeInt32BE(10+this.outCount+c.length);var p=Buffer.alloc(2);p.writeInt16BE(Ok);var g=Buffer.alloc(2);g.writeInt16BE(0);var T=Buffer.alloc(4);T.writeInt32BE(this.getSeqId());var L=Buffer.concat([w,p,g,T,u,c]);this.outBuffers.unshift(L),this.outCount+=L.length}}});var ou=B((z5,Nk)=>{var wd=cd(),FN=Vf(),DN=ag();Nk.exports=It;function It(t,e){this.defaultReadBufferSize=1024,this.writeBufferSize=512,this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0,this.onFlush=e}It.prototype=new DN;It.prototype.reset=function(){this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0};It.receiver=function(t,e){var r=new It;return function(n){if(r.writeCursor+n.length>r.inBuf.length){var i=new Buffer(r.writeCursor+n.length);r.inBuf.copy(i,0,0,r.writeCursor),r.inBuf=i}n.copy(r.inBuf,r.writeCursor,0),r.writeCursor+=n.length,t(r,e)}};It.prototype.commitPosition=function(){var t=this.writeCursor-this.readCursor,e=t*2>this.defaultReadBufferSize?t*2:this.defaultReadBufferSize,r=new Buffer(e);t>0&&this.inBuf.copy(r,0,this.readCursor,this.writeCursor),this.readCursor=0,this.writeCursor=t,this.inBuf=r};It.prototype.rollbackPosition=function(){this.readCursor=0};It.prototype.isOpen=function(){return!0};It.prototype.open=function(){};It.prototype.close=function(){};It.prototype.setCurrSeqId=function(t){this._seqid=t};It.prototype.ensureAvailable=function(t){if(this.readCursor+t>this.writeCursor)throw new FN};It.prototype.read=function(t){this.ensureAvailable(t);var e=new Buffer(t);return this.inBuf.copy(e,0,this.readCursor,this.readCursor+t),this.readCursor+=t,e};It.prototype.readByte=function(){return this.ensureAvailable(1),wd.readByte(this.inBuf[this.readCursor++])};It.prototype.readI16=function(){this.ensureAvailable(2);var t=wd.readI16(this.inBuf,this.readCursor);return this.readCursor+=2,t};It.prototype.readI32=function(){this.ensureAvailable(4);var t=wd.readI32(this.inBuf,this.readCursor);return this.readCursor+=4,t};It.prototype.readDouble=function(){this.ensureAvailable(8);var t=wd.readDouble(this.inBuf,this.readCursor);return this.readCursor+=8,t};It.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readCursor,this.readCursor+t);return this.readCursor+=t,e};It.prototype.borrow=function(){var t={buf:this.inBuf,readIndex:this.readCursor,writeIndex:this.writeCursor};return t};It.prototype.consume=function(t){this.readCursor+=t};It.prototype.write=function(t){typeof t=="string"&&(t=new Buffer(t,"utf8")),this.outBuffers.push(t),this.outCount+=t.length};It.prototype.flush=function(){var t=this._seqid;if(this._seqid=null,!(this.outCount<1)){var e=new Buffer(this.outCount),r=0;this.outBuffers.forEach(function(n){n.copy(e,r,0),r+=n.length}),this.onFlush&&this.onFlush(e,t),this.outBuffers=[],this.outCount=0}}});var ug=B((U5,Mk)=>{var Rk=Tr(),Hk=Mk.exports={},PN=Math.pow(2,24),zk=Math.pow(2,31),lg=Math.pow(2,32),Uk=Math.pow(10,11);Hk.toDecimalString=function(t){var e=t.buffer,r=t.offset;if(!e[r]&&!(e[r+1]&224)||!~e[r]&&!~(e[r+1]&224))return t.toString();var n=e[r]&128;if(n){for(var i=!1,o=new Buffer(8),f=7;f>=0;--f)o[f]=~e[r+f]+(i?0:1)&255,i|=e[r+f];e=o}var s=e[r+1]+(e[r]<<8),u=e[r+7]+(e[r+6]<<8)+(e[r+5]<<16)+e[r+4]*PN+(e[r+3]+(e[r+2]<<8))*lg+s*74976710656,l=Math.floor(u/Uk)+s*2814;return u=("00000000000"+String(u%Uk)).slice(-11),(n?"-":"")+String(l)+u};Hk.fromDecimalString=function(t){var e=t.charAt(0)==="-";if(t.length<(e?17:16))return new Rk(+t);if(t.length>(e?20:19))throw new RangeError("Too many digits for Int64: "+t);var r=+t.slice(e?1:0,-15),n=+t.slice(-15)+r*2764472320,i=Math.floor(n/lg)+r*232830;if(n=n%lg,i>=zk&&!(e&&i==zk&&n==0))throw new RangeError("The magnitude is too large for Int64.");return e&&(i=~i,n===0?i=i+1&4294967295:n=~n+1,i=2147483648|i),new Rk(i,n)}});var Ck=B((V5,Vk)=>{var Lk=Tr(),M5=ug(),L5=Vk.exports=function(){"use strict";var t,e,r={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:`
13
+ `,r:"\r",t:" "},n,i=function(g){throw new SyntaxError(g)},o=function(g){return g&&g!==e&&i("Expected '"+g+"' instead of '"+e+"'"),e=n.charAt(t),t+=1,e},f=function(){var g,T="";for(e==="-"&&(T="-",o("-"));e>="0"&&e<="9";)T+=e,o();if(e===".")for(T+=".";o()&&e>="0"&&e<="9";)T+=e;if(e==="e"||e==="E")for(T+=e,o(),(e==="-"||e==="+")&&(T+=e,o());e>="0"&&e<="9";)T+=e,o();if(g=+T,!isFinite(g))i("Bad number");else return g>=Lk.MAX_INT||g<=Lk.MIN_INT?T:g},s=function(){var g,T,L="",O;if(e==='"')for(;o();){if(e==='"')return o(),L;if(e==="\\")if(o(),e==="u"){for(O=0,T=0;T<4&&(g=parseInt(o(),16),!!isFinite(g));T+=1)O=O*16+g;L+=String.fromCharCode(O)}else if(typeof r[e]=="string")L+=r[e];else break;else L+=e}i("Bad string")},u=function(){for(;e&&e<=" ";)o()},l=function(){switch(e){case"t":return o("t"),o("r"),o("u"),o("e"),!0;case"f":return o("f"),o("a"),o("l"),o("s"),o("e"),!1;case"n":return o("n"),o("u"),o("l"),o("l"),null}i("Unexpected '"+e+"'")},c,w=function(){var g=[];if(e==="["){if(o("["),u(),e==="]")return o("]"),g;for(;e;){if(g.push(c()),u(),e==="]")return o("]"),g;o(","),u()}}i("Bad array")},p=function(){var g,T={};if(e==="{"){if(o("{"),u(),e==="}")return o("}"),T;for(;e;){if(g=s(),u(),o(":"),Object.hasOwnProperty.call(T,g)&&i('Duplicate key "'+g+'"'),T[g]=c(),u(),e==="}")return o("}"),T;o(","),u()}}i("Bad object")};return c=function(){switch(u(),e){case"{":return p();case"[":return w();case'"':return s();case"-":return f();default:return e>="0"&&e<="9"?f():l()}},function(g){var T;return n=g,t=0,e=" ",T=c(),u(),e&&i("Syntax error"),T}}()});var fu=B((W5,Yk)=>{var cg=Tr(),NN=Po(),Ke=NN.Type,C5=Nn(),Wk=ug(),RN=Ck(),Kk=Vf();Yk.exports=Z;function Z(t){this.tstack=[],this.tpos=[],this.trans=t}Z.Type={};Z.Type[Ke.BOOL]='"tf"';Z.Type[Ke.BYTE]='"i8"';Z.Type[Ke.I16]='"i16"';Z.Type[Ke.I32]='"i32"';Z.Type[Ke.I64]='"i64"';Z.Type[Ke.DOUBLE]='"dbl"';Z.Type[Ke.STRUCT]='"rec"';Z.Type[Ke.STRING]='"str"';Z.Type[Ke.MAP]='"map"';Z.Type[Ke.LIST]='"lst"';Z.Type[Ke.SET]='"set"';Z.RType={};Z.RType.tf=Ke.BOOL;Z.RType.i8=Ke.BYTE;Z.RType.i16=Ke.I16;Z.RType.i32=Ke.I32;Z.RType.i64=Ke.I64;Z.RType.dbl=Ke.DOUBLE;Z.RType.rec=Ke.STRUCT;Z.RType.str=Ke.STRING;Z.RType.map=Ke.MAP;Z.RType.lst=Ke.LIST;Z.RType.set=Ke.SET;Z.Version=1;Z.prototype.flush=function(){return this.writeToTransportIfStackIsFlushable(),this.trans.flush()};Z.prototype.writeToTransportIfStackIsFlushable=function(){this.tstack.length===1&&this.trans.write(this.tstack.pop())};Z.prototype.writeMessageBegin=function(t,e,r){this.tstack.push([Z.Version,'"'+t+'"',e,r])};Z.prototype.writeMessageEnd=function(){var t=this.tstack.pop();this.wobj=this.tstack.pop(),this.wobj.push(t),this.wbuf="["+this.wobj.join(",")+"]",this.trans.write(this.wbuf)};Z.prototype.writeStructBegin=function(t){this.tpos.push(this.tstack.length),this.tstack.push({})};Z.prototype.writeStructEnd=function(){var t=this.tpos.pop(),e=this.tstack[t],r="{",n=!0;for(var i in e)n?n=!1:r+=",",r+=i+":"+e[i];r+="}",this.tstack[t]=r,this.writeToTransportIfStackIsFlushable()};Z.prototype.writeFieldBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push({fieldId:'"'+r+'"',fieldType:Z.Type[e]})};Z.prototype.writeFieldEnd=function(){var t=this.tstack.pop(),e=this.tstack.pop();":"+t==":[object Object]"?this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+JSON.stringify(t)+"}":this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+t+"}",this.tpos.pop(),this.writeToTransportIfStackIsFlushable()};Z.prototype.writeFieldStop=function(){};Z.prototype.writeMapBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push([Z.Type[t],Z.Type[e],0])};Z.prototype.writeMapEnd=function(){var t=this.tpos.pop();if(t!=this.tstack.length){(this.tstack.length-t-1)%2!=0&&this.tstack.push("");var e=(this.tstack.length-t-1)/2;this.tstack[t][this.tstack[t].length-1]=e;for(var r="}",n=!0;this.tstack.length>t+1;){var i=this.tstack.pop(),o=this.tstack.pop();n?n=!1:r=","+r,isNaN(o)||(o='"'+o+'"'),r=o+":"+i+r}r="{"+r,this.tstack[t].push(r),this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()}};Z.prototype.writeListBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Z.Type[t],e])};Z.prototype.writeListEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};Z.prototype.writeSetBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Z.Type[t],e])};Z.prototype.writeSetEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};Z.prototype.writeBool=function(t){this.tstack.push(t?1:0)};Z.prototype.writeByte=function(t){this.tstack.push(t)};Z.prototype.writeI16=function(t){this.tstack.push(t)};Z.prototype.writeI32=function(t){this.tstack.push(t)};Z.prototype.writeI64=function(t){t instanceof cg?this.tstack.push(Wk.toDecimalString(t)):this.tstack.push(t)};Z.prototype.writeDouble=function(t){this.tstack.push(t)};Z.prototype.writeString=function(t){if(t===null)this.tstack.push(null);else{if(typeof t=="string")var e=t;else if(t instanceof Buffer)var e=t.toString("utf8");else throw new Error("writeString called without a string/Buffer argument: "+t);for(var r="",n=0;n<e.length;n++){var i=e.charAt(n);i==='"'?r+='\\"':i==="\\"?r+="\\\\":i==="\b"?r+="\\b":i==="\f"?r+="\\f":i===`
14
+ `?r+="\\n":i==="\r"?r+="\\r":i===" "?r+="\\t":r+=i}this.tstack.push('"'+r+'"')}};Z.prototype.writeBinary=function(t){if(typeof t=="string")var e=new Buffer(t,"binary");else if(t instanceof Buffer||Object.prototype.toString.call(t)=="[object Uint8Array]")var e=t;else throw new Error("writeBinary called without a string/Buffer argument: "+t);this.tstack.push('"'+e.toString("base64")+'"')};Z.prototype.readMessageBegin=function(){this.rstack=[],this.rpos=[];var t=this.trans.borrow();if(t.readIndex>=t.writeIndex)throw new Kk;var e=t.readIndex;if(t.buf[e]!==91)throw new Error("Malformed JSON input, no opening bracket");e++;for(var r=1,n=!1;e<t.writeIndex;e++){var i=t.buf[e];if(n)i===34?n=!1:i===92&&(e+=1);else if(i===91)r+=1;else if(i===93){if(r-=1,r===0)break}else i===34&&(n=!0)}if(r!==0)throw new Kk;this.robj=RN(t.buf.slice(t.readIndex,e+1).toString()),this.trans.consume(e+1-t.readIndex);var o=this.robj.shift();if(o!=Z.Version)throw new Error("Wrong thrift protocol version: "+o);var f={};return f.fname=this.robj.shift(),f.mtype=this.robj.shift(),f.rseqid=this.robj.shift(),this.rstack.push(this.robj.shift()),f};Z.prototype.readMessageEnd=function(){};Z.prototype.readStructBegin=function(){var t={};return t.fname="",this.rstack[this.rstack.length-1]instanceof Array&&this.rstack.push(this.rstack[this.rstack.length-1].shift()),t};Z.prototype.readStructEnd=function(){this.rstack.pop()};Z.prototype.readFieldBegin=function(){var t={},e=-1,r=Ke.STOP;for(var n in this.rstack[this.rstack.length-1])if(n!==null){e=parseInt(n,10),this.rpos.push(this.rstack.length);var i=this.rstack[this.rstack.length-1][e];delete this.rstack[this.rstack.length-1][e],this.rstack.push(i);break}if(e!=-1)for(var o in this.rstack[this.rstack.length-1])Z.RType[o]!==null&&(r=Z.RType[o],this.rstack[this.rstack.length-1]=this.rstack[this.rstack.length-1][o]);return t.fname="",t.ftype=r,t.fid=e,t};Z.prototype.readFieldEnd=function(){for(var t=this.rpos.pop();this.rstack.length>t;)this.rstack.pop()};Z.prototype.readMapBegin=function(){var t=this.rstack.pop(),e=t.shift();e instanceof Array&&(this.rstack.push(t),t=e,e=t.shift());var r={};return r.ktype=Z.RType[e],r.vtype=Z.RType[t.shift()],r.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),r};Z.prototype.readMapEnd=function(){this.readFieldEnd()};Z.prototype.readListBegin=function(){var t=this.rstack[this.rstack.length-1],e={};return e.etype=Z.RType[t.shift()],e.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),e};Z.prototype.readListEnd=function(){var t=this.rpos.pop()-2,e=this.rstack;e.pop(),e instanceof Array&&e.length>t&&e[t].length>0&&e.push(e[t].shift())};Z.prototype.readSetBegin=function(){return this.readListBegin()};Z.prototype.readSetEnd=function(){return this.readListEnd()};Z.prototype.readBool=function(){return this.readValue()=="1"};Z.prototype.readByte=function(){return this.readI32()};Z.prototype.readI16=function(){return this.readI32()};Z.prototype.readI32=function(t){return+this.readValue()};Z.prototype.readValue=function(t){t===void 0&&(t=this.rstack[this.rstack.length-1]);var e={};if(t instanceof Array)t.length===0?e.value=void 0:e.value=t.shift();else if(!(t instanceof cg)&&t instanceof Object){for(var r in t)if(r!==null){this.rstack.push(t[r]),delete t[r],e.value=r;break}}else e.value=t,this.rstack.pop();return e.value};Z.prototype.readI64=function(){var t=this.readValue();return typeof t=="string"?Wk.fromDecimalString(t):new cg(t)};Z.prototype.readDouble=function(){return this.readI32()};Z.prototype.readBinary=function(){return new Buffer(this.readValue(),"base64")};Z.prototype.readString=function(){return this.readValue()};Z.prototype.getTransport=function(){return this.trans};Z.prototype.skip=function(t){switch(t){case Ke.BOOL:this.readBool();break;case Ke.BYTE:this.readByte();break;case Ke.I16:this.readI16();break;case Ke.I32:this.readI32();break;case Ke.I64:this.readI64();break;case Ke.DOUBLE:this.readDouble();break;case Ke.STRING:this.readString();break;case Ke.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Ke.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Ke.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Ke.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case Ke.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var pg=B((K5,Gk)=>{Gk.exports=HN;function HN(t,e){t.Client&&(t=t.Client);var r=function(o,f){e.write(o,f)},n=new e.transport(void 0,r),i=new t(n,e.protocol);return n.client=i,e.client=i,i}});var Zk=B(ea=>{"use strict";Object.defineProperty(ea,"__esModule",{value:!0});var zN=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},UN=typeof window!="undefined"&&typeof window.document!="undefined",MN=(typeof self=="undefined"?"undefined":zN(self))==="object"&&self.constructor&&self.constructor.name==="DedicatedWorkerGlobalScope",LN=typeof process!="undefined"&&process.versions!=null&&process.versions.node!=null,VN=function(){return typeof window!="undefined"&&window.name==="nodejs"||navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")};ea.isBrowser=UN;ea.isWebWorker=MN;ea.isNode=LN;ea.isJsDom=VN});var $k=B(hd=>{var CN=Nn(),Jk=ak(),Qk=Gb().EventEmitter,Xk=Po(),WN=ou(),KN=fu(),YN=Vf(),GN=pg(),ZN=Zk();hd.WSConnection=Br;function Br(t,e,r){Qk.call(this),this.options=r||{},this.host=t,this.port=e,this.secure=this.options.secure||!1,this.transport=this.options.transport||WN,this.protocol=this.options.protocol||KN,this.path=this.options.path,this.send_pending=[],this.seqId2Service={},this.wsOptions={host:this.host,port:this.port||80,path:this.options.path||"/",headers:this.options.headers||{}};for(var n in this.options.wsOptions)this.wsOptions[n]=this.options.wsOptions[n]}CN.inherits(Br,Qk);Br.prototype.__reset=function(){this.socket=null,this.send_pending=[]};Br.prototype.__onOpen=function(){this.emit("open"),this.send_pending.length>0&&(this.send_pending.forEach(function(t){this.socket.send(t)},this),this.send_pending=[])};Br.prototype.__onClose=function(t){this.emit("close"),this.__reset()};Br.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,o=this.seqId2Service[r.rseqid];o&&(i=this.client[o],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(f,s){t.commitPosition();var u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(f,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new Xk.TApplicationException(Xk.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(f){if(f instanceof YN)t.rollbackPosition();else throw f}};Br.prototype.__onData=function(t){Object.prototype.toString.call(t)==="[object ArrayBuffer]"&&(t=new Uint8Array(t));var e=new Buffer(t);this.transport.receiver(this.__decodeCallback.bind(this))(e)};Br.prototype.__onMessage=function(t){this.__onData(t.data)};Br.prototype.__onError=function(t){this.emit("error",t),this.socket.close()};Br.prototype.isOpen=function(){return this.socket&&this.socket.readyState===this.socket.OPEN};Br.prototype.open=function(){this.socket&&this.socket.readyState!==this.socket.CLOSED||(ZN.isBrowser?this.socket=new Jk(this.uri()):this.socket=new Jk(this.uri(),"",this.wsOptions),this.socket.binaryType="arraybuffer",this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};Br.prototype.close=function(){this.socket.close()};Br.prototype.uri=function(){var t=this.secure?"wss":"ws",e="",r=this.path||"/",n=this.host;return this.port&&(t==="wss"&&this.port!==443||t==="ws"&&this.port!==80)&&(e=":"+this.port),t+"://"+n+e+r};Br.prototype.write=function(t){this.isOpen()?this.socket.send(t):this.send_pending.push(t)};hd.createWSConnection=function(t,e,r){return new Br(t,e,r)};hd.createWSClient=GN});var tI=B(bd=>{var JN=Nn(),QN=Gb().EventEmitter,eI=Po(),XN=ou(),$N=fu(),eR=Vf(),tR=pg();bd.XHRConnection=Hr;function Hr(t,e,r){this.options=r||{},this.wpos=0,this.rpos=0,this.useCORS=r&&r.useCORS,this.send_buf="",this.recv_buf="",this.transport=r.transport||XN,this.protocol=r.protocol||$N,this.headers=r.headers||{},t=t||window.location.host,e=e||window.location.port;var n=r.https?"https://":"http://",i=r.path||"/";e===""&&(e=void 0),!e||e===80||e==="80"?this.url=n+t+i:this.url=n+t+":"+e+i,this.seqId2Service={}}JN.inherits(Hr,QN);Hr.prototype.getXmlHttpRequestObject=function(){try{return new XMLHttpRequest}catch{}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch{}try{return new ActiveXObject("Microsoft.XMLHTTP")}catch{}throw"Your browser doesn't support XHR."};Hr.prototype.flush=function(){var t=this;if(this.url===void 0||this.url==="")return this.send_buf;var e=this.getXmlHttpRequestObject();e.overrideMimeType&&e.overrideMimeType("application/json"),e.onreadystatechange=function(){this.readyState==4&&this.status==200&&t.setRecvBuffer(this.responseText)},e.open("POST",this.url,!0),Object.keys(this.headers).forEach(function(r){e.setRequestHeader(r,t.headers[r])}),e.send(this.send_buf)};Hr.prototype.setRecvBuffer=function(t){if(this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0,Object.prototype.toString.call(t)=="[object ArrayBuffer]")var e=new Uint8Array(t);var r=new Buffer(e||t);this.transport.receiver(this.__decodeCallback.bind(this))(r)};Hr.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,o=this.seqId2Service[r.rseqid];o&&(i=this.client[o],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(f,s){t.commitPosition();var u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(f,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new eI.TApplicationException(eI.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(f){if(f instanceof eR)t.rollbackPosition();else throw f}};Hr.prototype.isOpen=function(){return!0};Hr.prototype.open=function(){};Hr.prototype.close=function(){};Hr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};Hr.prototype.readAll=function(){return this.recv_buf};Hr.prototype.write=function(t){this.send_buf=t,this.flush()};Hr.prototype.getSendBuffer=function(){return this.send_buf};bd.createXHRConnection=function(t,e,r){return new Hr(t,e,r)};bd.createXHRClient=tR});var nI=B((rI,dg)=>{(function(t){"use strict";if(typeof bootstrap=="function")bootstrap("promise",t);else if(typeof rI=="object"&&typeof dg=="object")dg.exports=t();else if(typeof define=="function"&&define.amd)define(t);else if(typeof ses!="undefined")if(ses.ok())ses.makeQ=t;else return;else if(typeof window!="undefined"||typeof self!="undefined"){var e=typeof window!="undefined"?window:self,r=e.Q;e.Q=t(),e.Q.noConflict=function(){return e.Q=r,this}}else throw new Error("This environment was not anticipated by Q. Please file a bug.")})(function(){"use strict";var t=!1;try{throw new Error}catch(h){t=!!h.stack}var e=de(),r,n=function(){},i=function(){var h={task:void 0,next:null},y=h,I=!1,M=void 0,me=!1,Ee=[];function be(){for(var ct,Pt;h.next;)h=h.next,ct=h.task,h.task=void 0,Pt=h.domain,Pt&&(h.domain=void 0,Pt.enter()),lt(ct,Pt);for(;Ee.length;)ct=Ee.pop(),lt(ct);I=!1}function lt(ct,Pt){try{ct()}catch(go){if(me)throw Pt&&Pt.exit(),setTimeout(be,0),Pt&&Pt.enter(),go;setTimeout(function(){throw go},0)}Pt&&Pt.exit()}if(i=function(ct){y=y.next={task:ct,domain:me&&process.domain,next:null},I||(I=!0,M())},typeof process=="object"&&process.toString()==="[object process]"&&process.nextTick)me=!0,M=function(){process.nextTick(be)};else if(typeof setImmediate=="function")typeof window!="undefined"?M=setImmediate.bind(window,be):M=function(){setImmediate(be)};else if(typeof MessageChannel!="undefined"){var rt=new MessageChannel;rt.port1.onmessage=function(){M=ut,rt.port1.onmessage=be,be()};var ut=function(){rt.port2.postMessage(0)};M=function(){setTimeout(be,0),ut()}}else M=function(){setTimeout(be,0)};return i.runAfter=function(ct){Ee.push(ct),I||(I=!0,M())},i}(),o=Function.call;function f(h){return function(){return o.apply(h,arguments)}}var s=f(Array.prototype.slice),u=f(Array.prototype.reduce||function(h,y){var I=0,M=this.length;if(arguments.length===1)do{if(I in this){y=this[I++];break}if(++I>=M)throw new TypeError}while(1);for(;I<M;I++)I in this&&(y=h(y,this[I],I));return y}),l=f(Array.prototype.indexOf||function(h){for(var y=0;y<this.length;y++)if(this[y]===h)return y;return-1}),c=f(Array.prototype.map||function(h,y){var I=this,M=[];return u(I,function(me,Ee,be){M.push(h.call(y,Ee,be,I))},void 0),M}),w=Object.create||function(h){function y(){}return y.prototype=h,new y},p=Object.defineProperty||function(h,y,I){return h[y]=I.value,h},g=f(Object.prototype.hasOwnProperty),T=Object.keys||function(h){var y=[];for(var I in h)g(h,I)&&y.push(I);return y},L=f(Object.prototype.toString);function O(h){return h===Object(h)}function K(h){return L(h)==="[object StopIteration]"||h instanceof ne}var ne;typeof ReturnValue!="undefined"?ne=ReturnValue:ne=function(h){this.value=h};var H="From previous event:";function z(h,y){if(t&&y.stack&&typeof h=="object"&&h!==null&&h.stack){for(var I=[],M=y;M;M=M.source)M.stack&&(!h.__minimumStackCounter__||h.__minimumStackCounter__>M.stackCounter)&&(p(h,"__minimumStackCounter__",{value:M.stackCounter,configurable:!0}),I.unshift(M.stack));I.unshift(h.stack);var me=I.join(`
15
+ `+H+`
16
+ `),Ee=N(me);p(h,"stack",{value:Ee,configurable:!0})}}function N(h){for(var y=h.split(`
17
+ `),I=[],M=0;M<y.length;++M){var me=y[M];!ie(me)&&!F(me)&&me&&I.push(me)}return I.join(`
18
+ `)}function F(h){return h.indexOf("(module.js:")!==-1||h.indexOf("(node.js:")!==-1}function ae(h){var y=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(h);if(y)return[y[1],Number(y[2])];var I=/at ([^ ]+):(\d+):(?:\d+)$/.exec(h);if(I)return[I[1],Number(I[2])];var M=/.*@(.+):(\d+)$/.exec(h);if(M)return[M[1],Number(M[2])]}function ie(h){var y=ae(h);if(!y)return!1;var I=y[0],M=y[1];return I===r&&M>=e&&M<=Is}function de(){if(!!t)try{throw new Error}catch(M){var h=M.stack.split(`
19
+ `),y=h[0].indexOf("@")>0?h[1]:h[2],I=ae(y);return I?(r=I[0],I[1]):void 0}}function Ze(h,y,I){return function(){return typeof console!="undefined"&&typeof console.warn=="function"&&console.warn(y+" is deprecated, use "+I+" instead.",new Error("").stack),h.apply(h,arguments)}}function _(h){return h instanceof te?h:Ai(h)?ul(h):Bf(h)}_.resolve=_,_.nextTick=i,_.longStackSupport=!1;var Fe=1;typeof process=="object"&&process&&process.env&&process.env.Q_DEBUG&&(_.longStackSupport=!0),_.defer=Ce;function Ce(){var h=[],y=[],I,M=w(Ce.prototype),me=w(te.prototype);if(me.promiseDispatch=function(be,lt,rt){var ut=s(arguments);h?(h.push(ut),lt==="when"&&rt[1]&&y.push(rt[1])):_.nextTick(function(){I.promiseDispatch.apply(I,ut)})},me.valueOf=function(){if(h)return me;var be=st(I);return Er(be)&&(I=be),be},me.inspect=function(){return I?I.inspect():{state:"pending"}},_.longStackSupport&&t)try{throw new Error}catch(be){me.stack=be.stack.substring(be.stack.indexOf(`
20
+ `)+1),me.stackCounter=Fe++}function Ee(be){I=be,_.longStackSupport&&t&&(me.source=be),u(h,function(lt,rt){_.nextTick(function(){be.promiseDispatch.apply(be,rt)})},void 0),h=void 0,y=void 0}return M.promise=me,M.resolve=function(be){I||Ee(_(be))},M.fulfill=function(be){I||Ee(Bf(be))},M.reject=function(be){I||Ee(jr(be))},M.notify=function(be){I||u(y,function(lt,rt){_.nextTick(function(){rt(be)})},void 0)},M}Ce.prototype.makeNodeResolver=function(){var h=this;return function(y,I){y?h.reject(y):arguments.length>2?h.resolve(s(arguments,1)):h.resolve(I)}},_.Promise=ge,_.promise=ge;function ge(h){if(typeof h!="function")throw new TypeError("resolver must be a function.");var y=Ce();try{h(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}return y.promise}ge.race=Je,ge.all=bo,ge.reject=jr,ge.resolve=_,_.passByCopy=function(h){return h},te.prototype.passByCopy=function(){return this},_.join=function(h,y){return _(h).join(y)},te.prototype.join=function(h){return _([this,h]).spread(function(y,I){if(y===I)return y;throw new Error("Q can't join: not the same: "+y+" "+I)})},_.race=Je;function Je(h){return ge(function(y,I){for(var M=0,me=h.length;M<me;M++)_(h[M]).then(y,I)})}te.prototype.race=function(){return this.then(_.race)},_.makePromise=te;function te(h,y,I){y===void 0&&(y=function(Ee){return jr(new Error("Promise does not support operation: "+Ee))}),I===void 0&&(I=function(){return{state:"unknown"}});var M=w(te.prototype);if(M.promiseDispatch=function(Ee,be,lt){var rt;try{h[be]?rt=h[be].apply(M,lt):rt=y.call(M,be,lt)}catch(ut){rt=jr(ut)}Ee&&Ee(rt)},M.inspect=I,I){var me=I();me.state==="rejected"&&(M.exception=me.reason),M.valueOf=function(){var Ee=I();return Ee.state==="pending"||Ee.state==="rejected"?M:Ee.value}}return M}te.prototype.toString=function(){return"[object Promise]"},te.prototype.then=function(h,y,I){var M=this,me=Ce(),Ee=!1;function be(ut){try{return typeof h=="function"?h(ut):ut}catch(ct){return jr(ct)}}function lt(ut){if(typeof y=="function"){z(ut,M);try{return y(ut)}catch(ct){return jr(ct)}}return jr(ut)}function rt(ut){return typeof I=="function"?I(ut):ut}return _.nextTick(function(){M.promiseDispatch(function(ut){Ee||(Ee=!0,me.resolve(be(ut)))},"when",[function(ut){Ee||(Ee=!0,me.resolve(lt(ut)))}])}),M.promiseDispatch(void 0,"when",[void 0,function(ut){var ct,Pt=!1;try{ct=rt(ut)}catch(go){if(Pt=!0,_.onerror)_.onerror(go);else throw go}Pt||me.notify(ct)}]),me.promise},_.tap=function(h,y){return _(h).tap(y)},te.prototype.tap=function(h){return h=_(h),this.then(function(y){return h.fcall(y).thenResolve(y)})},_.when=Bt;function Bt(h,y,I,M){return _(h).then(y,I,M)}te.prototype.thenResolve=function(h){return this.then(function(){return h})},_.thenResolve=function(h,y){return _(h).thenResolve(y)},te.prototype.thenReject=function(h){return this.then(function(){throw h})},_.thenReject=function(h,y){return _(h).thenReject(y)},_.nearer=st;function st(h){if(Er(h)){var y=h.inspect();if(y.state==="fulfilled")return y.value}return h}_.isPromise=Er;function Er(h){return h instanceof te}_.isPromiseAlike=Ai;function Ai(h){return O(h)&&typeof h.then=="function"}_.isPending=vf;function vf(h){return Er(h)&&h.inspect().state==="pending"}te.prototype.isPending=function(){return this.inspect().state==="pending"},_.isFulfilled=Tf;function Tf(h){return!Er(h)||h.inspect().state==="fulfilled"}te.prototype.isFulfilled=function(){return this.inspect().state==="fulfilled"},_.isRejected=An;function An(h){return Er(h)&&h.inspect().state==="rejected"}te.prototype.isRejected=function(){return this.inspect().state==="rejected"};var Wr=[],Zt=[],Oi=[],On=!0;function C(){Wr.length=0,Zt.length=0,On||(On=!0)}function vs(h,y){!On||(typeof process=="object"&&typeof process.emit=="function"&&_.nextTick.runAfter(function(){l(Zt,h)!==-1&&(process.emit("unhandledRejection",y,h),Oi.push(h))}),Zt.push(h),y&&typeof y.stack!="undefined"?Wr.push(y.stack):Wr.push("(no stack) "+y))}function Ts(h){if(!!On){var y=l(Zt,h);y!==-1&&(typeof process=="object"&&typeof process.emit=="function"&&_.nextTick.runAfter(function(){var I=l(Oi,h);I!==-1&&(process.emit("rejectionHandled",Wr[y],h),Oi.splice(I,1))}),Zt.splice(y,1),Wr.splice(y,1))}}_.resetUnhandledRejections=C,_.getUnhandledReasons=function(){return Wr.slice()},_.stopUnhandledRejectionTracking=function(){C(),On=!1},C(),_.reject=jr;function jr(h){var y=te({when:function(I){return I&&Ts(this),I?I(h):this}},function(){return this},function(){return{state:"rejected",reason:h}});return vs(y,h),y}_.fulfill=Bf;function Bf(h){return te({when:function(){return h},get:function(y){return h[y]},set:function(y,I){h[y]=I},delete:function(y){delete h[y]},post:function(y,I){return y==null?h.apply(void 0,I):h[y].apply(h,I)},apply:function(y,I){return h.apply(y,I)},keys:function(){return T(h)}},void 0,function(){return{state:"fulfilled",value:h}})}function ul(h){var y=Ce();return _.nextTick(function(){try{h.then(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}}),y.promise}_.master=xw;function xw(h){return te({isDef:function(){}},function(I,M){return cl(h,I,M)},function(){return _(h).inspect()})}_.spread=Oc;function Oc(h,y,I){return _(h).spread(y,I)}te.prototype.spread=function(h,y){return this.all().then(function(I){return h.apply(void 0,I)},y)},_.async=Bs;function Bs(h){return function(){function y(Ee,be){var lt;if(typeof StopIteration=="undefined"){try{lt=I[Ee](be)}catch(rt){return jr(rt)}return lt.done?_(lt.value):Bt(lt.value,M,me)}else{try{lt=I[Ee](be)}catch(rt){return K(rt)?_(rt.value):jr(rt)}return Bt(lt,M,me)}}var I=h.apply(this,arguments),M=y.bind(y,"next"),me=y.bind(y,"throw");return M()}}_.spawn=Sw;function Sw(h){_.done(_.async(h)())}_.return=Ew;function Ew(h){throw new ne(h)}_.promised=Fc;function Fc(h){return function(){return Oc([this,bo(arguments)],function(y,I){return h.apply(y,I)})}}_.dispatch=cl;function cl(h,y,I){return _(h).dispatch(y,I)}te.prototype.dispatch=function(h,y){var I=this,M=Ce();return _.nextTick(function(){I.promiseDispatch(M.resolve,h,y)}),M.promise},_.get=function(h,y){return _(h).dispatch("get",[y])},te.prototype.get=function(h){return this.dispatch("get",[h])},_.set=function(h,y,I){return _(h).dispatch("set",[y,I])},te.prototype.set=function(h,y){return this.dispatch("set",[h,y])},_.del=_.delete=function(h,y){return _(h).dispatch("delete",[y])},te.prototype.del=te.prototype.delete=function(h){return this.dispatch("delete",[h])},_.mapply=_.post=function(h,y,I){return _(h).dispatch("post",[y,I])},te.prototype.mapply=te.prototype.post=function(h,y){return this.dispatch("post",[h,y])},_.send=_.mcall=_.invoke=function(h,y){return _(h).dispatch("post",[y,s(arguments,2)])},te.prototype.send=te.prototype.mcall=te.prototype.invoke=function(h){return this.dispatch("post",[h,s(arguments,1)])},_.fapply=function(h,y){return _(h).dispatch("apply",[void 0,y])},te.prototype.fapply=function(h){return this.dispatch("apply",[void 0,h])},_.try=_.fcall=function(h){return _(h).dispatch("apply",[void 0,s(arguments,1)])},te.prototype.fcall=function(){return this.dispatch("apply",[void 0,s(arguments)])},_.fbind=function(h){var y=_(h),I=s(arguments,1);return function(){return y.dispatch("apply",[this,I.concat(s(arguments))])}},te.prototype.fbind=function(){var h=this,y=s(arguments);return function(){return h.dispatch("apply",[this,y.concat(s(arguments))])}},_.keys=function(h){return _(h).dispatch("keys",[])},te.prototype.keys=function(){return this.dispatch("keys",[])},_.all=bo;function bo(h){return Bt(h,function(y){var I=0,M=Ce();return u(y,function(me,Ee,be){var lt;Er(Ee)&&(lt=Ee.inspect()).state==="fulfilled"?y[be]=lt.value:(++I,Bt(Ee,function(rt){y[be]=rt,--I==0&&M.resolve(y)},M.reject,function(rt){M.notify({index:be,value:rt})}))},void 0),I===0&&M.resolve(y),M.promise})}te.prototype.all=function(){return bo(this)},_.any=ks;function ks(h){if(h.length===0)return _.resolve();var y=_.defer(),I=0;return u(h,function(M,me,Ee){var be=h[Ee];I++,Bt(be,lt,rt,ut);function lt(ct){y.resolve(ct)}function rt(ct){if(I--,I===0){var Pt=ct||new Error(""+ct);Pt.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+Pt.message,y.reject(Pt)}}function ut(ct){y.notify({index:Ee,value:ct})}},void 0),y.promise}te.prototype.any=function(){return ks(this)},_.allResolved=Ze(mr,"allResolved","allSettled");function mr(h){return Bt(h,function(y){return y=c(y,_),Bt(bo(c(y,function(I){return Bt(I,n,n)})),function(){return y})})}te.prototype.allResolved=function(){return mr(this)},_.allSettled=pl;function pl(h){return _(h).allSettled()}te.prototype.allSettled=function(){return this.then(function(h){return bo(c(h,function(y){y=_(y);function I(){return y.inspect()}return y.then(I,I)}))})},_.fail=_.catch=function(h,y){return _(h).then(void 0,y)},te.prototype.fail=te.prototype.catch=function(h){return this.then(void 0,h)},_.progress=S_;function S_(h,y){return _(h).then(void 0,void 0,y)}te.prototype.progress=function(h){return this.then(void 0,void 0,h)},_.fin=_.finally=function(h,y){return _(h).finally(y)},te.prototype.fin=te.prototype.finally=function(h){if(!h||typeof h.apply!="function")throw new Error("Q can't apply finally callback");return h=_(h),this.then(function(y){return h.fcall().then(function(){return y})},function(y){return h.fcall().then(function(){throw y})})},_.done=function(h,y,I,M){return _(h).done(y,I,M)},te.prototype.done=function(h,y,I){var M=function(Ee){_.nextTick(function(){if(z(Ee,me),_.onerror)_.onerror(Ee);else throw Ee})},me=h||y||I?this.then(h,y,I):this;typeof process=="object"&&process&&process.domain&&(M=process.domain.bind(M)),me.then(void 0,M)},_.timeout=function(h,y,I){return _(h).timeout(y,I)},te.prototype.timeout=function(h,y){var I=Ce(),M=setTimeout(function(){(!y||typeof y=="string")&&(y=new Error(y||"Timed out after "+h+" ms"),y.code="ETIMEDOUT"),I.reject(y)},h);return this.then(function(me){clearTimeout(M),I.resolve(me)},function(me){clearTimeout(M),I.reject(me)},I.notify),I.promise},_.delay=function(h,y){return y===void 0&&(y=h,h=void 0),_(h).delay(y)},te.prototype.delay=function(h){return this.then(function(y){var I=Ce();return setTimeout(function(){I.resolve(y)},h),I.promise})},_.nfapply=function(h,y){return _(h).nfapply(y)},te.prototype.nfapply=function(h){var y=Ce(),I=s(h);return I.push(y.makeNodeResolver()),this.fapply(I).fail(y.reject),y.promise},_.nfcall=function(h){var y=s(arguments,1);return _(h).nfapply(y)},te.prototype.nfcall=function(){var h=s(arguments),y=Ce();return h.push(y.makeNodeResolver()),this.fapply(h).fail(y.reject),y.promise},_.nfbind=_.denodeify=function(h){if(h===void 0)throw new Error("Q can't wrap an undefined function");var y=s(arguments,1);return function(){var I=y.concat(s(arguments)),M=Ce();return I.push(M.makeNodeResolver()),_(h).fapply(I).fail(M.reject),M.promise}},te.prototype.nfbind=te.prototype.denodeify=function(){var h=s(arguments);return h.unshift(this),_.denodeify.apply(void 0,h)},_.nbind=function(h,y){var I=s(arguments,2);return function(){var M=I.concat(s(arguments)),me=Ce();M.push(me.makeNodeResolver());function Ee(){return h.apply(y,arguments)}return _(Ee).fapply(M).fail(me.reject),me.promise}},te.prototype.nbind=function(){var h=s(arguments,0);return h.unshift(this),_.nbind.apply(void 0,h)},_.nmapply=_.npost=function(h,y,I){return _(h).npost(y,I)},te.prototype.nmapply=te.prototype.npost=function(h,y){var I=s(y||[]),M=Ce();return I.push(M.makeNodeResolver()),this.dispatch("post",[h,I]).fail(M.reject),M.promise},_.nsend=_.nmcall=_.ninvoke=function(h,y){var I=s(arguments,2),M=Ce();return I.push(M.makeNodeResolver()),_(h).dispatch("post",[y,I]).fail(M.reject),M.promise},te.prototype.nsend=te.prototype.nmcall=te.prototype.ninvoke=function(h){var y=s(arguments,1),I=Ce();return y.push(I.makeNodeResolver()),this.dispatch("post",[h,y]).fail(I.reject),I.promise},_.nodeify=Ne;function Ne(h,y){return _(h).nodeify(y)}te.prototype.nodeify=function(h){if(h)this.then(function(y){_.nextTick(function(){h(null,y)})},function(y){_.nextTick(function(){h(y)})});else return this},_.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var Is=de();return _})});var sI=B(fI=>{var rR=Nn(),iI=Po();fI.Multiplexer=oI;function nR(t,e,r){function n(i,o,f){e.call(this,i,o,f)}return rR.inherits(n,e),n.prototype.writeMessageBegin=function(i,o,f){o==iI.MessageType.CALL||o==iI.MessageType.ONEWAY?(r.seqId2Service[f]=t,n.super_.prototype.writeMessageBegin.call(this,t+":"+i,o,f)):n.super_.prototype.writeMessageBegin.call(this,i,o,f)},n}function oI(){this.seqid=0}oI.prototype.createClient=function(t,e,r){e.Client&&(e=e.Client);var n=function(u,l){r.write(u,l)},i=new r.transport(void 0,n),o=new nR(t,r.protocol,r),f=new e(i,o),s=this;return f.new_seqid=function(){return s.seqid+=1,s.seqid},typeof r.client!="object"&&(r.client={}),r.client[t]=f,f}});var lI=B((Q5,aI)=>{var ta=cd(),iR=Vf(),oR=ag();aI.exports=Ht;function Ht(t,e){this.inBuf=t||new Buffer(0),this.outBuffers=[],this.outCount=0,this.readPos=0,this.onFlush=e}Ht.prototype=new oR;Ht.receiver=function(t,e){var r=null;return function(n){for(r&&(n=Buffer.concat([r,n]),r=null);n.length;){if(n.length<4){r=n;return}var i=ta.readI32(n,0);if(n.length<4+i){r=n;return}var o=n.slice(4,4+i);r=n.slice(4+i),t(new Ht(o),e),n=r,r=null}}};Ht.prototype.commitPosition=function(){},Ht.prototype.rollbackPosition=function(){},Ht.prototype.isOpen=function(){return!0};Ht.prototype.open=function(){};Ht.prototype.close=function(){};Ht.prototype.setCurrSeqId=function(t){this._seqid=t};Ht.prototype.ensureAvailable=function(t){if(this.readPos+t>this.inBuf.length)throw new iR};Ht.prototype.read=function(t){this.ensureAvailable(t);var e=this.readPos+t;if(this.inBuf.length<e)throw new Error("read("+t+") failed - not enough data");var r=this.inBuf.slice(this.readPos,e);return this.readPos=e,r};Ht.prototype.readByte=function(){return this.ensureAvailable(1),ta.readByte(this.inBuf[this.readPos++])};Ht.prototype.readI16=function(){this.ensureAvailable(2);var t=ta.readI16(this.inBuf,this.readPos);return this.readPos+=2,t};Ht.prototype.readI32=function(){this.ensureAvailable(4);var t=ta.readI32(this.inBuf,this.readPos);return this.readPos+=4,t};Ht.prototype.readDouble=function(){this.ensureAvailable(8);var t=ta.readDouble(this.inBuf,this.readPos);return this.readPos+=8,t};Ht.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readPos,this.readPos+t);return this.readPos+=t,e};Ht.prototype.borrow=function(){return{buf:this.inBuf,readIndex:this.readPos,writeIndex:this.inBuf.length}};Ht.prototype.consume=function(t){this.readPos+=t};Ht.prototype.write=function(t,e){typeof t=="string"&&(t=new Buffer(t,e||"utf8")),this.outBuffers.push(t),this.outCount+=t.length};Ht.prototype.flush=function(){var t=this._seqid;this._seqid=null;var e=new Buffer(this.outCount),r=0;if(this.outBuffers.forEach(function(i){i.copy(e,r,0),r+=i.length}),this.onFlush){var n=new Buffer(e.length+4);ta.writeI32(n,e.length),e.copy(n,4,0,e.length),this.onFlush&&this.onFlush(n,t)}this.outBuffers=[],this.outCount=0}});var cI=B((X5,uI)=>{var fR=dd();uI.exports=kr;function kr(t){this.__reset(t)}kr.prototype.__reset=function(t){this.url=t,this.socket=null,this.callbacks=[],this.send_pending=[],this.send_buf="",this.recv_buf="",this.rb_wpos=0,this.rb_rpos=0};kr.prototype.flush=function(t,e){var r=this;this.isOpen()?(this.socket.send(this.send_buf),this.callbacks.push(function(){var n=e;return function(i){r.setRecvBuffer(i),n()}}())):this.send_pending.push({buf:this.send_buf,cb:e})};kr.prototype.__onOpen=function(){var t=this;this.send_pending.length>0&&(this.send_pending.forEach(function(e){t.socket.send(e.buf),t.callbacks.push(function(){var r=e.cb;return function(n){t.setRecvBuffer(n),r()}}())}),this.send_pending=[])};kr.prototype.__onClose=function(t){this.__reset(this.url)};kr.prototype.__onMessage=function(t){this.callbacks.length&&this.callbacks.shift()(t.data)};kr.prototype.__onError=function(t){fR.error("websocket: "+t.toString()),this.socket.close()};kr.prototype.setRecvBuffer=function(t){this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0};kr.prototype.isOpen=function(){return this.socket&&this.socket.readyState==this.socket.OPEN};kr.prototype.open=function(){this.socket&&this.socket.readyState!=this.socket.CLOSED||(this.socket=new WebSocket(this.url),this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};kr.prototype.close=function(){this.socket.close()};kr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};kr.prototype.readAll=function(){return this.recv_buf};kr.prototype.write=function(t){this.send_buf=t};kr.prototype.getSendBuffer=function(){return this.send_buf}});var ze=B(nr=>{nr.Thrift=Po();var mg=$k();nr.WSConnection=mg.WSConnection;nr.createWSConnection=mg.createWSConnection;nr.createWSClient=mg.createWSClient;var wg=tI();nr.XHRConnection=wg.XHRConnection;nr.createXHRConnection=wg.createXHRConnection;nr.createXHRClient=wg.createXHRClient;nr.Int64=Tr();nr.Q=nI();var sR=sI();nr.Multiplexer=sR.Multiplexer;nr.TBufferedTransport=ou();nr.TFramedTransport=lI();nr.TWebSocketTransport=cI();nr.Protocol=fu();nr.TJSONProtocol=fu();nr.TBinaryProtocol=sg();nr.TCompactProtocol=ig()});var hg,zr,Zi,su=W(()=>{hg=le(Tr()),zr=le(ze()),Zi=class{constructor(e){e!=null&&e.max!=null&&(this.max=e.max),e!=null&&e.min!=null&&(this.min=e.min),e!=null&&e.null_count!=null&&(typeof e.null_count=="number"?this.null_count=new hg.default(e.null_count):this.null_count=e.null_count),e!=null&&e.distinct_count!=null&&(typeof e.distinct_count=="number"?this.distinct_count=new hg.default(e.distinct_count):this.distinct_count=e.distinct_count),e!=null&&e.max_value!=null&&(this.max_value=e.max_value),e!=null&&e.min_value!=null&&(this.min_value=e.min_value)}write(e){e.writeStructBegin("Statistics"),this.max!=null&&(e.writeFieldBegin("max",zr.Thrift.Type.STRING,1),e.writeBinary(this.max),e.writeFieldEnd()),this.min!=null&&(e.writeFieldBegin("min",zr.Thrift.Type.STRING,2),e.writeBinary(this.min),e.writeFieldEnd()),this.null_count!=null&&(e.writeFieldBegin("null_count",zr.Thrift.Type.I64,3),e.writeI64(this.null_count),e.writeFieldEnd()),this.distinct_count!=null&&(e.writeFieldBegin("distinct_count",zr.Thrift.Type.I64,4),e.writeI64(this.distinct_count),e.writeFieldEnd()),this.max_value!=null&&(e.writeFieldBegin("max_value",zr.Thrift.Type.STRING,5),e.writeBinary(this.max_value),e.writeFieldEnd()),this.min_value!=null&&(e.writeFieldBegin("min_value",zr.Thrift.Type.STRING,6),e.writeBinary(this.min_value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===zr.Thrift.Type.STOP)break;switch(o){case 1:if(i===zr.Thrift.Type.STRING){let f=e.readBinary();r.max=f}else e.skip(i);break;case 2:if(i===zr.Thrift.Type.STRING){let f=e.readBinary();r.min=f}else e.skip(i);break;case 3:if(i===zr.Thrift.Type.I64){let f=e.readI64();r.null_count=f}else e.skip(i);break;case 4:if(i===zr.Thrift.Type.I64){let f=e.readI64();r.distinct_count=f}else e.skip(i);break;case 5:if(i===zr.Thrift.Type.STRING){let f=e.readBinary();r.max_value=f}else e.skip(i);break;case 6:if(i===zr.Thrift.Type.STRING){let f=e.readBinary();r.min_value=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}return e.readStructEnd(),new Zi(r)}}});var pI,au,bg=W(()=>{pI=le(ze()),au=class{constructor(){}write(e){e.writeStructBegin("StringType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===pI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new au}}});var dI,lu,gg=W(()=>{dI=le(ze()),lu=class{constructor(){}write(e){e.writeStructBegin("UUIDType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===dI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new lu}}});var mI,uu,yg=W(()=>{mI=le(ze()),uu=class{constructor(){}write(e){e.writeStructBegin("MapType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===mI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new uu}}});var wI,cu,jg=W(()=>{wI=le(ze()),cu=class{constructor(){}write(e){e.writeStructBegin("ListType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===wI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new cu}}});var hI,pu,_g=W(()=>{hI=le(ze()),pu=class{constructor(){}write(e){e.writeStructBegin("EnumType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===hI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new pu}}});var bI,du,qg=W(()=>{bI=le(ze()),du=class{constructor(){}write(e){e.writeStructBegin("DateType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===bI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new du}}});var gI,mu,vg=W(()=>{gI=le(ze()),mu=class{constructor(){}write(e){e.writeStructBegin("NullType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===gI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new mu}}});var sn,wu,Tg=W(()=>{sn=le(ze()),wu=class{constructor(e){if(e!=null&&e.scale!=null)this.scale=e.scale;else throw new sn.Thrift.TProtocolException(sn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[scale] is unset!");if(e!=null&&e.precision!=null)this.precision=e.precision;else throw new sn.Thrift.TProtocolException(sn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[precision] is unset!")}write(e){e.writeStructBegin("DecimalType"),this.scale!=null&&(e.writeFieldBegin("scale",sn.Thrift.Type.I32,1),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",sn.Thrift.Type.I32,2),e.writeI32(this.precision),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===sn.Thrift.Type.STOP)break;switch(o){case 1:if(i===sn.Thrift.Type.I32){let f=e.readI32();r.scale=f}else e.skip(i);break;case 2:if(i===sn.Thrift.Type.I32){let f=e.readI32();r.precision=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.scale!==void 0&&r.precision!==void 0)return new wu(r);throw new sn.Thrift.TProtocolException(sn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DecimalType from input")}}});var yI,hu,Bg=W(()=>{yI=le(ze()),hu=class{constructor(){}write(e){e.writeStructBegin("MilliSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===yI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new hu}}});var jI,bu,kg=W(()=>{jI=le(ze()),bu=class{constructor(){}write(e){e.writeStructBegin("MicroSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===jI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new bu}}});var wr,oi,gd=W(()=>{wr=le(ze());kg();Bg();oi=class{constructor(e){let r=0;if(e!=null){if(e.MILLIS!=null&&(r++,this.MILLIS=e.MILLIS),e.MICROS!=null&&(r++,this.MICROS=e.MICROS),r>1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromMILLIS(e){return new oi({MILLIS:e})}static fromMICROS(e){return new oi({MICROS:e})}write(e){e.writeStructBegin("TimeUnit"),this.MILLIS!=null&&(e.writeFieldBegin("MILLIS",wr.Thrift.Type.STRUCT,1),this.MILLIS.write(e),e.writeFieldEnd()),this.MICROS!=null&&(e.writeFieldBegin("MICROS",wr.Thrift.Type.STRUCT,2),this.MICROS.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===wr.Thrift.Type.STOP)break;switch(f){case 1:if(o===wr.Thrift.Type.STRUCT){r++;let s=hu.read(e);n=oi.fromMILLIS(s)}else e.skip(o);break;case 2:if(o===wr.Thrift.Type.STRUCT){r++;let s=bu.read(e);n=oi.fromMICROS(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new wr.Thrift.TProtocolException(wr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}}});var an,gu,Ig=W(()=>{an=le(ze());gd();gu=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new an.Thrift.TProtocolException(an.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new an.Thrift.TProtocolException(an.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimestampType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",an.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",an.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===an.Thrift.Type.STOP)break;switch(o){case 1:if(i===an.Thrift.Type.BOOL){let f=e.readBool();r.isAdjustedToUTC=f}else e.skip(i);break;case 2:if(i===an.Thrift.Type.STRUCT){let f=oi.read(e);r.unit=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new gu(r);throw new an.Thrift.TProtocolException(an.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimestampType from input")}}});var ln,yu,xg=W(()=>{ln=le(ze());gd();yu=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new ln.Thrift.TProtocolException(ln.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new ln.Thrift.TProtocolException(ln.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimeType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",ln.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",ln.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===ln.Thrift.Type.STOP)break;switch(o){case 1:if(i===ln.Thrift.Type.BOOL){let f=e.readBool();r.isAdjustedToUTC=f}else e.skip(i);break;case 2:if(i===ln.Thrift.Type.STRUCT){let f=oi.read(e);r.unit=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new yu(r);throw new ln.Thrift.TProtocolException(ln.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimeType from input")}}});var un,ju,Sg=W(()=>{un=le(ze()),ju=class{constructor(e){if(e!=null&&e.bitWidth!=null)this.bitWidth=e.bitWidth;else throw new un.Thrift.TProtocolException(un.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[bitWidth] is unset!");if(e!=null&&e.isSigned!=null)this.isSigned=e.isSigned;else throw new un.Thrift.TProtocolException(un.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isSigned] is unset!")}write(e){e.writeStructBegin("IntType"),this.bitWidth!=null&&(e.writeFieldBegin("bitWidth",un.Thrift.Type.BYTE,1),e.writeByte(this.bitWidth),e.writeFieldEnd()),this.isSigned!=null&&(e.writeFieldBegin("isSigned",un.Thrift.Type.BOOL,2),e.writeBool(this.isSigned),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===un.Thrift.Type.STOP)break;switch(o){case 1:if(i===un.Thrift.Type.BYTE){let f=e.readByte();r.bitWidth=f}else e.skip(i);break;case 2:if(i===un.Thrift.Type.BOOL){let f=e.readBool();r.isSigned=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.bitWidth!==void 0&&r.isSigned!==void 0)return new ju(r);throw new un.Thrift.TProtocolException(un.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read IntType from input")}}});var _I,_u,Eg=W(()=>{_I=le(ze()),_u=class{constructor(){}write(e){e.writeStructBegin("JsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===_I.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new _u}}});var qI,qu,Ag=W(()=>{qI=le(ze()),qu=class{constructor(){}write(e){e.writeStructBegin("BsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===qI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new qu}}});var Ue,ot,Og=W(()=>{Ue=le(ze());Ag();qg();Tg();_g();Sg();Eg();jg();yg();vg();bg();Ig();xg();gg();ot=class{constructor(e){let r=0;if(e!=null){if(e.STRING!=null&&(r++,this.STRING=e.STRING),e.MAP!=null&&(r++,this.MAP=e.MAP),e.LIST!=null&&(r++,this.LIST=e.LIST),e.ENUM!=null&&(r++,this.ENUM=e.ENUM),e.DECIMAL!=null&&(r++,this.DECIMAL=e.DECIMAL),e.DATE!=null&&(r++,this.DATE=e.DATE),e.TIME!=null&&(r++,this.TIME=e.TIME),e.TIMESTAMP!=null&&(r++,this.TIMESTAMP=e.TIMESTAMP),e.INTEGER!=null&&(r++,this.INTEGER=e.INTEGER),e.UNKNOWN!=null&&(r++,this.UNKNOWN=e.UNKNOWN),e.JSON!=null&&(r++,this.JSON=e.JSON),e.BSON!=null&&(r++,this.BSON=e.BSON),e.UUID!=null&&(r++,this.UUID=e.UUID),r>1)throw new Ue.Thrift.TProtocolException(Ue.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Ue.Thrift.TProtocolException(Ue.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromSTRING(e){return new ot({STRING:e})}static fromMAP(e){return new ot({MAP:e})}static fromLIST(e){return new ot({LIST:e})}static fromENUM(e){return new ot({ENUM:e})}static fromDECIMAL(e){return new ot({DECIMAL:e})}static fromDATE(e){return new ot({DATE:e})}static fromTIME(e){return new ot({TIME:e})}static fromTIMESTAMP(e){return new ot({TIMESTAMP:e})}static fromINTEGER(e){return new ot({INTEGER:e})}static fromUNKNOWN(e){return new ot({UNKNOWN:e})}static fromJSON(e){return new ot({JSON:e})}static fromBSON(e){return new ot({BSON:e})}static fromUUID(e){return new ot({UUID:e})}write(e){e.writeStructBegin("LogicalType"),this.STRING!=null&&(e.writeFieldBegin("STRING",Ue.Thrift.Type.STRUCT,1),this.STRING.write(e),e.writeFieldEnd()),this.MAP!=null&&(e.writeFieldBegin("MAP",Ue.Thrift.Type.STRUCT,2),this.MAP.write(e),e.writeFieldEnd()),this.LIST!=null&&(e.writeFieldBegin("LIST",Ue.Thrift.Type.STRUCT,3),this.LIST.write(e),e.writeFieldEnd()),this.ENUM!=null&&(e.writeFieldBegin("ENUM",Ue.Thrift.Type.STRUCT,4),this.ENUM.write(e),e.writeFieldEnd()),this.DECIMAL!=null&&(e.writeFieldBegin("DECIMAL",Ue.Thrift.Type.STRUCT,5),this.DECIMAL.write(e),e.writeFieldEnd()),this.DATE!=null&&(e.writeFieldBegin("DATE",Ue.Thrift.Type.STRUCT,6),this.DATE.write(e),e.writeFieldEnd()),this.TIME!=null&&(e.writeFieldBegin("TIME",Ue.Thrift.Type.STRUCT,7),this.TIME.write(e),e.writeFieldEnd()),this.TIMESTAMP!=null&&(e.writeFieldBegin("TIMESTAMP",Ue.Thrift.Type.STRUCT,8),this.TIMESTAMP.write(e),e.writeFieldEnd()),this.INTEGER!=null&&(e.writeFieldBegin("INTEGER",Ue.Thrift.Type.STRUCT,10),this.INTEGER.write(e),e.writeFieldEnd()),this.UNKNOWN!=null&&(e.writeFieldBegin("UNKNOWN",Ue.Thrift.Type.STRUCT,11),this.UNKNOWN.write(e),e.writeFieldEnd()),this.JSON!=null&&(e.writeFieldBegin("JSON",Ue.Thrift.Type.STRUCT,12),this.JSON.write(e),e.writeFieldEnd()),this.BSON!=null&&(e.writeFieldBegin("BSON",Ue.Thrift.Type.STRUCT,13),this.BSON.write(e),e.writeFieldEnd()),this.UUID!=null&&(e.writeFieldBegin("UUID",Ue.Thrift.Type.STRUCT,14),this.UUID.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===Ue.Thrift.Type.STOP)break;switch(f){case 1:if(o===Ue.Thrift.Type.STRUCT){r++;let s=au.read(e);n=ot.fromSTRING(s)}else e.skip(o);break;case 2:if(o===Ue.Thrift.Type.STRUCT){r++;let s=uu.read(e);n=ot.fromMAP(s)}else e.skip(o);break;case 3:if(o===Ue.Thrift.Type.STRUCT){r++;let s=cu.read(e);n=ot.fromLIST(s)}else e.skip(o);break;case 4:if(o===Ue.Thrift.Type.STRUCT){r++;let s=pu.read(e);n=ot.fromENUM(s)}else e.skip(o);break;case 5:if(o===Ue.Thrift.Type.STRUCT){r++;let s=wu.read(e);n=ot.fromDECIMAL(s)}else e.skip(o);break;case 6:if(o===Ue.Thrift.Type.STRUCT){r++;let s=du.read(e);n=ot.fromDATE(s)}else e.skip(o);break;case 7:if(o===Ue.Thrift.Type.STRUCT){r++;let s=yu.read(e);n=ot.fromTIME(s)}else e.skip(o);break;case 8:if(o===Ue.Thrift.Type.STRUCT){r++;let s=gu.read(e);n=ot.fromTIMESTAMP(s)}else e.skip(o);break;case 10:if(o===Ue.Thrift.Type.STRUCT){r++;let s=ju.read(e);n=ot.fromINTEGER(s)}else e.skip(o);break;case 11:if(o===Ue.Thrift.Type.STRUCT){r++;let s=mu.read(e);n=ot.fromUNKNOWN(s)}else e.skip(o);break;case 12:if(o===Ue.Thrift.Type.STRUCT){r++;let s=_u.read(e);n=ot.fromJSON(s)}else e.skip(o);break;case 13:if(o===Ue.Thrift.Type.STRUCT){r++;let s=qu.read(e);n=ot.fromBSON(s)}else e.skip(o);break;case 14:if(o===Ue.Thrift.Type.STRUCT){r++;let s=lu.read(e);n=ot.fromUUID(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Ue.Thrift.TProtocolException(Ue.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Ue.Thrift.TProtocolException(Ue.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Ue.Thrift.TProtocolException(Ue.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}}});var wt,Ro,Fg=W(()=>{wt=le(ze());Og();Ro=class{constructor(e){if(e!=null&&e.type!=null&&(this.type=e.type),e!=null&&e.type_length!=null&&(this.type_length=e.type_length),e!=null&&e.repetition_type!=null&&(this.repetition_type=e.repetition_type),e!=null&&e.name!=null)this.name=e.name;else throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[name] is unset!");e!=null&&e.num_children!=null&&(this.num_children=e.num_children),e!=null&&e.converted_type!=null&&(this.converted_type=e.converted_type),e!=null&&e.scale!=null&&(this.scale=e.scale),e!=null&&e.precision!=null&&(this.precision=e.precision),e!=null&&e.field_id!=null&&(this.field_id=e.field_id),e!=null&&e.logicalType!=null&&(this.logicalType=e.logicalType)}write(e){e.writeStructBegin("SchemaElement"),this.type!=null&&(e.writeFieldBegin("type",wt.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.type_length!=null&&(e.writeFieldBegin("type_length",wt.Thrift.Type.I32,2),e.writeI32(this.type_length),e.writeFieldEnd()),this.repetition_type!=null&&(e.writeFieldBegin("repetition_type",wt.Thrift.Type.I32,3),e.writeI32(this.repetition_type),e.writeFieldEnd()),this.name!=null&&(e.writeFieldBegin("name",wt.Thrift.Type.STRING,4),e.writeString(this.name),e.writeFieldEnd()),this.num_children!=null&&(e.writeFieldBegin("num_children",wt.Thrift.Type.I32,5),e.writeI32(this.num_children),e.writeFieldEnd()),this.converted_type!=null&&(e.writeFieldBegin("converted_type",wt.Thrift.Type.I32,6),e.writeI32(this.converted_type),e.writeFieldEnd()),this.scale!=null&&(e.writeFieldBegin("scale",wt.Thrift.Type.I32,7),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",wt.Thrift.Type.I32,8),e.writeI32(this.precision),e.writeFieldEnd()),this.field_id!=null&&(e.writeFieldBegin("field_id",wt.Thrift.Type.I32,9),e.writeI32(this.field_id),e.writeFieldEnd()),this.logicalType!=null&&(e.writeFieldBegin("logicalType",wt.Thrift.Type.STRUCT,10),this.logicalType.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===wt.Thrift.Type.STOP)break;switch(o){case 1:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.type_length=f}else e.skip(i);break;case 3:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.repetition_type=f}else e.skip(i);break;case 4:if(i===wt.Thrift.Type.STRING){let f=e.readString();r.name=f}else e.skip(i);break;case 5:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.num_children=f}else e.skip(i);break;case 6:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.converted_type=f}else e.skip(i);break;case 7:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.scale=f}else e.skip(i);break;case 8:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.precision=f}else e.skip(i);break;case 9:if(i===wt.Thrift.Type.I32){let f=e.readI32();r.field_id=f}else e.skip(i);break;case 10:if(i===wt.Thrift.Type.STRUCT){let f=ot.read(e);r.logicalType=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.name!==void 0)return new Ro(r);throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SchemaElement from input")}}});var xt,Cf,Dg=W(()=>{xt=le(ze());su();Cf=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_level_encoding!=null)this.definition_level_encoding=e.definition_level_encoding;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_level_encoding] is unset!");if(e!=null&&e.repetition_level_encoding!=null)this.repetition_level_encoding=e.repetition_level_encoding;else throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_level_encoding] is unset!");e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",xt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",xt.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_level_encoding!=null&&(e.writeFieldBegin("definition_level_encoding",xt.Thrift.Type.I32,3),e.writeI32(this.definition_level_encoding),e.writeFieldEnd()),this.repetition_level_encoding!=null&&(e.writeFieldBegin("repetition_level_encoding",xt.Thrift.Type.I32,4),e.writeI32(this.repetition_level_encoding),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",xt.Thrift.Type.STRUCT,5),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===xt.Thrift.Type.STOP)break;switch(o){case 1:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.definition_level_encoding=f}else e.skip(i);break;case 4:if(i===xt.Thrift.Type.I32){let f=e.readI32();r.repetition_level_encoding=f}else e.skip(i);break;case 5:if(i===xt.Thrift.Type.STRUCT){let f=Zi.read(e);r.statistics=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0&&r.definition_level_encoding!==void 0&&r.repetition_level_encoding!==void 0)return new Cf(r);throw new xt.Thrift.TProtocolException(xt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeader from input")}}});var vI,vu,Pg=W(()=>{vI=le(ze()),vu=class{constructor(){}write(e){e.writeStructBegin("IndexPageHeader"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===vI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new vu}}});var Ur,Tu,Ng=W(()=>{Ur=le(ze()),Tu=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");e!=null&&e.is_sorted!=null&&(this.is_sorted=e.is_sorted)}write(e){e.writeStructBegin("DictionaryPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",Ur.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Ur.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.is_sorted!=null&&(e.writeFieldBegin("is_sorted",Ur.Thrift.Type.BOOL,3),e.writeBool(this.is_sorted),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Ur.Thrift.Type.STOP)break;switch(o){case 1:if(i===Ur.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===Ur.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===Ur.Thrift.Type.BOOL){let f=e.readBool();r.is_sorted=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0)return new Tu(r);throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DictionaryPageHeader from input")}}});var tt,Wf,Rg=W(()=>{tt=le(ze());su();Wf=class{constructor(e){this.is_compressed=!0;if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new tt.Thrift.TProtocolException(tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.num_nulls!=null)this.num_nulls=e.num_nulls;else throw new tt.Thrift.TProtocolException(tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_nulls] is unset!");if(e!=null&&e.num_rows!=null)this.num_rows=e.num_rows;else throw new tt.Thrift.TProtocolException(tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new tt.Thrift.TProtocolException(tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_levels_byte_length!=null)this.definition_levels_byte_length=e.definition_levels_byte_length;else throw new tt.Thrift.TProtocolException(tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_levels_byte_length] is unset!");if(e!=null&&e.repetition_levels_byte_length!=null)this.repetition_levels_byte_length=e.repetition_levels_byte_length;else throw new tt.Thrift.TProtocolException(tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_levels_byte_length] is unset!");e!=null&&e.is_compressed!=null&&(this.is_compressed=e.is_compressed),e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeaderV2"),this.num_values!=null&&(e.writeFieldBegin("num_values",tt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.num_nulls!=null&&(e.writeFieldBegin("num_nulls",tt.Thrift.Type.I32,2),e.writeI32(this.num_nulls),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",tt.Thrift.Type.I32,3),e.writeI32(this.num_rows),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",tt.Thrift.Type.I32,4),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_levels_byte_length!=null&&(e.writeFieldBegin("definition_levels_byte_length",tt.Thrift.Type.I32,5),e.writeI32(this.definition_levels_byte_length),e.writeFieldEnd()),this.repetition_levels_byte_length!=null&&(e.writeFieldBegin("repetition_levels_byte_length",tt.Thrift.Type.I32,6),e.writeI32(this.repetition_levels_byte_length),e.writeFieldEnd()),this.is_compressed!=null&&(e.writeFieldBegin("is_compressed",tt.Thrift.Type.BOOL,7),e.writeBool(this.is_compressed),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",tt.Thrift.Type.STRUCT,8),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===tt.Thrift.Type.STOP)break;switch(o){case 1:if(i===tt.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===tt.Thrift.Type.I32){let f=e.readI32();r.num_nulls=f}else e.skip(i);break;case 3:if(i===tt.Thrift.Type.I32){let f=e.readI32();r.num_rows=f}else e.skip(i);break;case 4:if(i===tt.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 5:if(i===tt.Thrift.Type.I32){let f=e.readI32();r.definition_levels_byte_length=f}else e.skip(i);break;case 6:if(i===tt.Thrift.Type.I32){let f=e.readI32();r.repetition_levels_byte_length=f}else e.skip(i);break;case 7:if(i===tt.Thrift.Type.BOOL){let f=e.readBool();r.is_compressed=f}else e.skip(i);break;case 8:if(i===tt.Thrift.Type.STRUCT){let f=Zi.read(e);r.statistics=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.num_nulls!==void 0&&r.num_rows!==void 0&&r.encoding!==void 0&&r.definition_levels_byte_length!==void 0&&r.repetition_levels_byte_length!==void 0)return new Wf(r);throw new tt.Thrift.TProtocolException(tt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeaderV2 from input")}}});var ht,Ho,TI=W(()=>{ht=le(ze());Dg();Rg();Ng();Pg();Ho=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.uncompressed_page_size!=null)this.uncompressed_page_size=e.uncompressed_page_size;else throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[uncompressed_page_size] is unset!");if(e!=null&&e.compressed_page_size!=null)this.compressed_page_size=e.compressed_page_size;else throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[compressed_page_size] is unset!");e!=null&&e.crc!=null&&(this.crc=e.crc),e!=null&&e.data_page_header!=null&&(this.data_page_header=e.data_page_header),e!=null&&e.index_page_header!=null&&(this.index_page_header=e.index_page_header),e!=null&&e.dictionary_page_header!=null&&(this.dictionary_page_header=e.dictionary_page_header),e!=null&&e.data_page_header_v2!=null&&(this.data_page_header_v2=e.data_page_header_v2)}write(e){e.writeStructBegin("PageHeader"),this.type!=null&&(e.writeFieldBegin("type",ht.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.uncompressed_page_size!=null&&(e.writeFieldBegin("uncompressed_page_size",ht.Thrift.Type.I32,2),e.writeI32(this.uncompressed_page_size),e.writeFieldEnd()),this.compressed_page_size!=null&&(e.writeFieldBegin("compressed_page_size",ht.Thrift.Type.I32,3),e.writeI32(this.compressed_page_size),e.writeFieldEnd()),this.crc!=null&&(e.writeFieldBegin("crc",ht.Thrift.Type.I32,4),e.writeI32(this.crc),e.writeFieldEnd()),this.data_page_header!=null&&(e.writeFieldBegin("data_page_header",ht.Thrift.Type.STRUCT,5),this.data_page_header.write(e),e.writeFieldEnd()),this.index_page_header!=null&&(e.writeFieldBegin("index_page_header",ht.Thrift.Type.STRUCT,6),this.index_page_header.write(e),e.writeFieldEnd()),this.dictionary_page_header!=null&&(e.writeFieldBegin("dictionary_page_header",ht.Thrift.Type.STRUCT,7),this.dictionary_page_header.write(e),e.writeFieldEnd()),this.data_page_header_v2!=null&&(e.writeFieldBegin("data_page_header_v2",ht.Thrift.Type.STRUCT,8),this.data_page_header_v2.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===ht.Thrift.Type.STOP)break;switch(o){case 1:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.uncompressed_page_size=f}else e.skip(i);break;case 3:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.compressed_page_size=f}else e.skip(i);break;case 4:if(i===ht.Thrift.Type.I32){let f=e.readI32();r.crc=f}else e.skip(i);break;case 5:if(i===ht.Thrift.Type.STRUCT){let f=Cf.read(e);r.data_page_header=f}else e.skip(i);break;case 6:if(i===ht.Thrift.Type.STRUCT){let f=vu.read(e);r.index_page_header=f}else e.skip(i);break;case 7:if(i===ht.Thrift.Type.STRUCT){let f=Tu.read(e);r.dictionary_page_header=f}else e.skip(i);break;case 8:if(i===ht.Thrift.Type.STRUCT){let f=Wf.read(e);r.data_page_header_v2=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.uncompressed_page_size!==void 0&&r.compressed_page_size!==void 0)return new Ho(r);throw new ht.Thrift.TProtocolException(ht.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageHeader from input")}}});var fi,Ji,yd=W(()=>{fi=le(ze()),Ji=class{constructor(e){if(e!=null&&e.key!=null)this.key=e.key;else throw new fi.Thrift.TProtocolException(fi.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[key] is unset!");e!=null&&e.value!=null&&(this.value=e.value)}write(e){e.writeStructBegin("KeyValue"),this.key!=null&&(e.writeFieldBegin("key",fi.Thrift.Type.STRING,1),e.writeString(this.key),e.writeFieldEnd()),this.value!=null&&(e.writeFieldBegin("value",fi.Thrift.Type.STRING,2),e.writeString(this.value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===fi.Thrift.Type.STOP)break;switch(o){case 1:if(i===fi.Thrift.Type.STRING){let f=e.readString();r.key=f}else e.skip(i);break;case 2:if(i===fi.Thrift.Type.STRING){let f=e.readString();r.value=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.key!==void 0)return new Ji(r);throw new fi.Thrift.TProtocolException(fi.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read KeyValue from input")}}});var hr,Bu,Hg=W(()=>{hr=le(ze()),Bu=class{constructor(e){if(e!=null&&e.column_idx!=null)this.column_idx=e.column_idx;else throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[column_idx] is unset!");if(e!=null&&e.descending!=null)this.descending=e.descending;else throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[descending] is unset!");if(e!=null&&e.nulls_first!=null)this.nulls_first=e.nulls_first;else throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[nulls_first] is unset!")}write(e){e.writeStructBegin("SortingColumn"),this.column_idx!=null&&(e.writeFieldBegin("column_idx",hr.Thrift.Type.I32,1),e.writeI32(this.column_idx),e.writeFieldEnd()),this.descending!=null&&(e.writeFieldBegin("descending",hr.Thrift.Type.BOOL,2),e.writeBool(this.descending),e.writeFieldEnd()),this.nulls_first!=null&&(e.writeFieldBegin("nulls_first",hr.Thrift.Type.BOOL,3),e.writeBool(this.nulls_first),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===hr.Thrift.Type.STOP)break;switch(o){case 1:if(i===hr.Thrift.Type.I32){let f=e.readI32();r.column_idx=f}else e.skip(i);break;case 2:if(i===hr.Thrift.Type.BOOL){let f=e.readBool();r.descending=f}else e.skip(i);break;case 3:if(i===hr.Thrift.Type.BOOL){let f=e.readBool();r.nulls_first=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.column_idx!==void 0&&r.descending!==void 0&&r.nulls_first!==void 0)return new Bu(r);throw new hr.Thrift.TProtocolException(hr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SortingColumn from input")}}});var br,ku,zg=W(()=>{br=le(ze()),ku=class{constructor(e){if(e!=null&&e.page_type!=null)this.page_type=e.page_type;else throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[page_type] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.count!=null)this.count=e.count;else throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[count] is unset!")}write(e){e.writeStructBegin("PageEncodingStats"),this.page_type!=null&&(e.writeFieldBegin("page_type",br.Thrift.Type.I32,1),e.writeI32(this.page_type),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",br.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.count!=null&&(e.writeFieldBegin("count",br.Thrift.Type.I32,3),e.writeI32(this.count),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===br.Thrift.Type.STOP)break;switch(o){case 1:if(i===br.Thrift.Type.I32){let f=e.readI32();r.page_type=f}else e.skip(i);break;case 2:if(i===br.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===br.Thrift.Type.I32){let f=e.readI32();r.count=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.page_type!==void 0&&r.encoding!==void 0&&r.count!==void 0)return new ku(r);throw new br.Thrift.TProtocolException(br.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageEncodingStats from input")}}});var Kf,we,Yf,Ug=W(()=>{Kf=le(Tr()),we=le(ze());yd();zg();su();Yf=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.encodings!=null)this.encodings=e.encodings;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encodings] is unset!");if(e!=null&&e.path_in_schema!=null)this.path_in_schema=e.path_in_schema;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[path_in_schema] is unset!");if(e!=null&&e.codec!=null)this.codec=e.codec;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[codec] is unset!");if(e!=null&&e.num_values!=null)typeof e.num_values=="number"?this.num_values=new Kf.default(e.num_values):this.num_values=e.num_values;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.total_uncompressed_size!=null)typeof e.total_uncompressed_size=="number"?this.total_uncompressed_size=new Kf.default(e.total_uncompressed_size):this.total_uncompressed_size=e.total_uncompressed_size;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_uncompressed_size] is unset!");if(e!=null&&e.total_compressed_size!=null)typeof e.total_compressed_size=="number"?this.total_compressed_size=new Kf.default(e.total_compressed_size):this.total_compressed_size=e.total_compressed_size;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_compressed_size] is unset!");if(e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.data_page_offset!=null)typeof e.data_page_offset=="number"?this.data_page_offset=new Kf.default(e.data_page_offset):this.data_page_offset=e.data_page_offset;else throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[data_page_offset] is unset!");e!=null&&e.index_page_offset!=null&&(typeof e.index_page_offset=="number"?this.index_page_offset=new Kf.default(e.index_page_offset):this.index_page_offset=e.index_page_offset),e!=null&&e.dictionary_page_offset!=null&&(typeof e.dictionary_page_offset=="number"?this.dictionary_page_offset=new Kf.default(e.dictionary_page_offset):this.dictionary_page_offset=e.dictionary_page_offset),e!=null&&e.statistics!=null&&(this.statistics=e.statistics),e!=null&&e.encoding_stats!=null&&(this.encoding_stats=e.encoding_stats)}write(e){e.writeStructBegin("ColumnMetaData"),this.type!=null&&(e.writeFieldBegin("type",we.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.encodings!=null&&(e.writeFieldBegin("encodings",we.Thrift.Type.LIST,2),e.writeListBegin(we.Thrift.Type.I32,this.encodings.length),this.encodings.forEach(r=>{e.writeI32(r)}),e.writeListEnd(),e.writeFieldEnd()),this.path_in_schema!=null&&(e.writeFieldBegin("path_in_schema",we.Thrift.Type.LIST,3),e.writeListBegin(we.Thrift.Type.STRING,this.path_in_schema.length),this.path_in_schema.forEach(r=>{e.writeString(r)}),e.writeListEnd(),e.writeFieldEnd()),this.codec!=null&&(e.writeFieldBegin("codec",we.Thrift.Type.I32,4),e.writeI32(this.codec),e.writeFieldEnd()),this.num_values!=null&&(e.writeFieldBegin("num_values",we.Thrift.Type.I64,5),e.writeI64(this.num_values),e.writeFieldEnd()),this.total_uncompressed_size!=null&&(e.writeFieldBegin("total_uncompressed_size",we.Thrift.Type.I64,6),e.writeI64(this.total_uncompressed_size),e.writeFieldEnd()),this.total_compressed_size!=null&&(e.writeFieldBegin("total_compressed_size",we.Thrift.Type.I64,7),e.writeI64(this.total_compressed_size),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",we.Thrift.Type.LIST,8),e.writeListBegin(we.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.data_page_offset!=null&&(e.writeFieldBegin("data_page_offset",we.Thrift.Type.I64,9),e.writeI64(this.data_page_offset),e.writeFieldEnd()),this.index_page_offset!=null&&(e.writeFieldBegin("index_page_offset",we.Thrift.Type.I64,10),e.writeI64(this.index_page_offset),e.writeFieldEnd()),this.dictionary_page_offset!=null&&(e.writeFieldBegin("dictionary_page_offset",we.Thrift.Type.I64,11),e.writeI64(this.dictionary_page_offset),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",we.Thrift.Type.STRUCT,12),this.statistics.write(e),e.writeFieldEnd()),this.encoding_stats!=null&&(e.writeFieldBegin("encoding_stats",we.Thrift.Type.LIST,13),e.writeListBegin(we.Thrift.Type.STRUCT,this.encoding_stats.length),this.encoding_stats.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===we.Thrift.Type.STOP)break;switch(o){case 1:if(i===we.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readI32();f.push(c)}e.readListEnd(),r.encodings=f}else e.skip(i);break;case 3:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readString();f.push(c)}e.readListEnd(),r.path_in_schema=f}else e.skip(i);break;case 4:if(i===we.Thrift.Type.I32){let f=e.readI32();r.codec=f}else e.skip(i);break;case 5:if(i===we.Thrift.Type.I64){let f=e.readI64();r.num_values=f}else e.skip(i);break;case 6:if(i===we.Thrift.Type.I64){let f=e.readI64();r.total_uncompressed_size=f}else e.skip(i);break;case 7:if(i===we.Thrift.Type.I64){let f=e.readI64();r.total_compressed_size=f}else e.skip(i);break;case 8:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Ji.read(e);f.push(c)}e.readListEnd(),r.key_value_metadata=f}else e.skip(i);break;case 9:if(i===we.Thrift.Type.I64){let f=e.readI64();r.data_page_offset=f}else e.skip(i);break;case 10:if(i===we.Thrift.Type.I64){let f=e.readI64();r.index_page_offset=f}else e.skip(i);break;case 11:if(i===we.Thrift.Type.I64){let f=e.readI64();r.dictionary_page_offset=f}else e.skip(i);break;case 12:if(i===we.Thrift.Type.STRUCT){let f=Zi.read(e);r.statistics=f}else e.skip(i);break;case 13:if(i===we.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=ku.read(e);f.push(c)}e.readListEnd(),r.encoding_stats=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.encodings!==void 0&&r.path_in_schema!==void 0&&r.codec!==void 0&&r.num_values!==void 0&&r.total_uncompressed_size!==void 0&&r.total_compressed_size!==void 0&&r.data_page_offset!==void 0)return new Yf(r);throw new we.Thrift.TProtocolException(we.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnMetaData from input")}}});var jd,Vt,Gf,Mg=W(()=>{jd=le(Tr()),Vt=le(ze());Ug();Gf=class{constructor(e){if(e!=null&&e.file_path!=null&&(this.file_path=e.file_path),e!=null&&e.file_offset!=null)typeof e.file_offset=="number"?this.file_offset=new jd.default(e.file_offset):this.file_offset=e.file_offset;else throw new Vt.Thrift.TProtocolException(Vt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[file_offset] is unset!");e!=null&&e.meta_data!=null&&(this.meta_data=e.meta_data),e!=null&&e.offset_index_offset!=null&&(typeof e.offset_index_offset=="number"?this.offset_index_offset=new jd.default(e.offset_index_offset):this.offset_index_offset=e.offset_index_offset),e!=null&&e.offset_index_length!=null&&(this.offset_index_length=e.offset_index_length),e!=null&&e.column_index_offset!=null&&(typeof e.column_index_offset=="number"?this.column_index_offset=new jd.default(e.column_index_offset):this.column_index_offset=e.column_index_offset),e!=null&&e.column_index_length!=null&&(this.column_index_length=e.column_index_length)}write(e){e.writeStructBegin("ColumnChunk"),this.file_path!=null&&(e.writeFieldBegin("file_path",Vt.Thrift.Type.STRING,1),e.writeString(this.file_path),e.writeFieldEnd()),this.file_offset!=null&&(e.writeFieldBegin("file_offset",Vt.Thrift.Type.I64,2),e.writeI64(this.file_offset),e.writeFieldEnd()),this.meta_data!=null&&(e.writeFieldBegin("meta_data",Vt.Thrift.Type.STRUCT,3),this.meta_data.write(e),e.writeFieldEnd()),this.offset_index_offset!=null&&(e.writeFieldBegin("offset_index_offset",Vt.Thrift.Type.I64,4),e.writeI64(this.offset_index_offset),e.writeFieldEnd()),this.offset_index_length!=null&&(e.writeFieldBegin("offset_index_length",Vt.Thrift.Type.I32,5),e.writeI32(this.offset_index_length),e.writeFieldEnd()),this.column_index_offset!=null&&(e.writeFieldBegin("column_index_offset",Vt.Thrift.Type.I64,6),e.writeI64(this.column_index_offset),e.writeFieldEnd()),this.column_index_length!=null&&(e.writeFieldBegin("column_index_length",Vt.Thrift.Type.I32,7),e.writeI32(this.column_index_length),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Vt.Thrift.Type.STOP)break;switch(o){case 1:if(i===Vt.Thrift.Type.STRING){let f=e.readString();r.file_path=f}else e.skip(i);break;case 2:if(i===Vt.Thrift.Type.I64){let f=e.readI64();r.file_offset=f}else e.skip(i);break;case 3:if(i===Vt.Thrift.Type.STRUCT){let f=Yf.read(e);r.meta_data=f}else e.skip(i);break;case 4:if(i===Vt.Thrift.Type.I64){let f=e.readI64();r.offset_index_offset=f}else e.skip(i);break;case 5:if(i===Vt.Thrift.Type.I32){let f=e.readI32();r.offset_index_length=f}else e.skip(i);break;case 6:if(i===Vt.Thrift.Type.I64){let f=e.readI64();r.column_index_offset=f}else e.skip(i);break;case 7:if(i===Vt.Thrift.Type.I32){let f=e.readI32();r.column_index_length=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.file_offset!==void 0)return new Gf(r);throw new Vt.Thrift.TProtocolException(Vt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnChunk from input")}}});var Lg,Ct,Zf,Vg=W(()=>{Lg=le(Tr()),Ct=le(ze());Mg();Hg();Zf=class{constructor(e){if(e!=null&&e.columns!=null)this.columns=e.columns;else throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[columns] is unset!");if(e!=null&&e.total_byte_size!=null)typeof e.total_byte_size=="number"?this.total_byte_size=new Lg.default(e.total_byte_size):this.total_byte_size=e.total_byte_size;else throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_byte_size] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new Lg.default(e.num_rows):this.num_rows=e.num_rows;else throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");e!=null&&e.sorting_columns!=null&&(this.sorting_columns=e.sorting_columns)}write(e){e.writeStructBegin("RowGroup"),this.columns!=null&&(e.writeFieldBegin("columns",Ct.Thrift.Type.LIST,1),e.writeListBegin(Ct.Thrift.Type.STRUCT,this.columns.length),this.columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.total_byte_size!=null&&(e.writeFieldBegin("total_byte_size",Ct.Thrift.Type.I64,2),e.writeI64(this.total_byte_size),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",Ct.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.sorting_columns!=null&&(e.writeFieldBegin("sorting_columns",Ct.Thrift.Type.LIST,4),e.writeListBegin(Ct.Thrift.Type.STRUCT,this.sorting_columns.length),this.sorting_columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Ct.Thrift.Type.STOP)break;switch(o){case 1:if(i===Ct.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Gf.read(e);f.push(c)}e.readListEnd(),r.columns=f}else e.skip(i);break;case 2:if(i===Ct.Thrift.Type.I64){let f=e.readI64();r.total_byte_size=f}else e.skip(i);break;case 3:if(i===Ct.Thrift.Type.I64){let f=e.readI64();r.num_rows=f}else e.skip(i);break;case 4:if(i===Ct.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Bu.read(e);f.push(c)}e.readListEnd(),r.sorting_columns=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.columns!==void 0&&r.total_byte_size!==void 0&&r.num_rows!==void 0)return new Zf(r);throw new Ct.Thrift.TProtocolException(Ct.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read RowGroup from input")}}});var BI,Iu,Cg=W(()=>{BI=le(ze()),Iu=class{constructor(){}write(e){e.writeStructBegin("TypeDefinedOrder"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===BI.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Iu}}});var aR,lR,kI=W(()=>{aR=le(Tr()),lR=le(ze())});var uR,II=W(()=>{uR=le(ze())});var cR,pR,xI=W(()=>{cR=le(Tr()),pR=le(ze())});var Mr,ra,Wg=W(()=>{Mr=le(ze());Cg();ra=class{constructor(e){let r=0;if(e!=null){if(e.TYPE_ORDER!=null&&(r++,this.TYPE_ORDER=e.TYPE_ORDER),r>1)throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromTYPE_ORDER(e){return new ra({TYPE_ORDER:e})}write(e){e.writeStructBegin("ColumnOrder"),this.TYPE_ORDER!=null&&(e.writeFieldBegin("TYPE_ORDER",Mr.Thrift.Type.STRUCT,1),this.TYPE_ORDER.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===Mr.Thrift.Type.STOP)break;switch(f){case 1:if(o===Mr.Thrift.Type.STRUCT){r++;let s=Iu.read(e);n=ra.fromTYPE_ORDER(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}}});var SI,ft,Jf,EI=W(()=>{SI=le(Tr()),ft=le(ze());Wg();yd();Vg();Fg();Jf=class{constructor(e=null){if(e!=null&&e.version!=null)this.version=e.version;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[version] is unset!");if(e!=null&&e.schema!=null)this.schema=e.schema;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[schema] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new SI.default(e.num_rows):this.num_rows=e.num_rows;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.row_groups!=null)this.row_groups=e.row_groups;else throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[row_groups] is unset!");e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.created_by!=null&&(this.created_by=e.created_by),e!=null&&e.column_orders!=null&&(this.column_orders=e.column_orders)}write(e){e.writeStructBegin("FileMetaData"),this.version!=null&&(e.writeFieldBegin("version",ft.Thrift.Type.I32,1),e.writeI32(this.version),e.writeFieldEnd()),this.schema!=null&&(e.writeFieldBegin("schema",ft.Thrift.Type.LIST,2),e.writeListBegin(ft.Thrift.Type.STRUCT,this.schema.length),this.schema.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",ft.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.row_groups!=null&&(e.writeFieldBegin("row_groups",ft.Thrift.Type.LIST,4),e.writeListBegin(ft.Thrift.Type.STRUCT,this.row_groups.length),this.row_groups.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",ft.Thrift.Type.LIST,5),e.writeListBegin(ft.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.created_by!=null&&(e.writeFieldBegin("created_by",ft.Thrift.Type.STRING,6),e.writeString(this.created_by),e.writeFieldEnd()),this.column_orders!=null&&(e.writeFieldBegin("column_orders",ft.Thrift.Type.LIST,7),e.writeListBegin(ft.Thrift.Type.STRUCT,this.column_orders.length),this.column_orders.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===ft.Thrift.Type.STOP)break;switch(o){case 1:if(i===ft.Thrift.Type.I32){let f=e.readI32();r.version=f}else e.skip(i);break;case 2:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Ro.read(e);f.push(c)}e.readListEnd(),r.schema=f}else e.skip(i);break;case 3:if(i===ft.Thrift.Type.I64){let f=e.readI64();r.num_rows=f}else e.skip(i);break;case 4:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Zf.read(e);f.push(c)}e.readListEnd(),r.row_groups=f}else e.skip(i);break;case 5:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Ji.read(e);f.push(c)}e.readListEnd(),r.key_value_metadata=f}else e.skip(i);break;case 6:if(i===ft.Thrift.Type.STRING){let f=e.readString();r.created_by=f}else e.skip(i);break;case 7:if(i===ft.Thrift.Type.LIST){let f=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=ra.read(e);f.push(c)}e.readListEnd(),r.column_orders=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.version!==void 0&&r.schema!==void 0&&r.num_rows!==void 0&&r.row_groups!==void 0)return new Jf(r);throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read FileMetaData from input")}}});var xu=W(()=>{JB();QB();XB();$B();ek();tk();nk();su();bg();gg();yg();jg();_g();qg();vg();Tg();Bg();kg();Ig();xg();Sg();Eg();Ag();Fg();Dg();Pg();Ng();Rg();TI();yd();Hg();zg();Ug();Mg();Vg();Cg();kI();II();xI();EI();gd();Og();Wg()});var na,AI,Su,Kg,Yg=W(()=>{na="PAR1",AI="PARE",Su="INT32",Kg="RLE"});function Eu(t){let e=[],r=new zo.TBufferedTransport(void 0,i=>{e.push(i)}),n=new zo.TCompactProtocol(r);return t.write(n),r.flush(),Buffer.concat(e)}function cn(t,e){for(let r in t)if(t[r]===e)return r;throw new Error("Invalid ENUM value")}function OI(t,e){e||(e=0);let r=new Gg(t);r.readPos=e;let n=new zo.TCompactProtocol(r),i=Jf.read(n);return{length:r.readPos-e,metadata:i}}function FI(t,e){e||(e=0);let r=new Gg(t);r.readPos=e;let n=new zo.TCompactProtocol(r),i=Ho.read(n);return{length:r.readPos-e,pageHeader:i}}function si(t){return t===0?0:Math.ceil(Math.log2(t+1))}function DI(t,e){for(let r=0;r<t.length;r++){if(t[r].length>e.length)continue;let n=!0;for(let i=0;i<e.length;i++)if(!(t[r][i]===e[i]||t[r][i]==="+"||t[r][i]==="#")&&!(i>=t[r].length&&t[r][t[r].length-1]==="#")){n=!1;break}if(n)return r}return-1}var zo,Gg,_d=W(()=>{zo=le(ze());xu();Gg=class extends zo.TFramedTransport{constructor(){super(...arguments);this.readPos=0}}});async function PI(t,e){let r={buffer:t,offset:0,size:t.length},n={rlevels:[],dlevels:[],values:[],pageHeaders:[],count:0},i=e.dictionary||[];for(;r.offset<r.size&&(!e.numValues||n.dlevels.length<Number(e.numValues));){let o=await Zg(r,e);if(o.dictionary){i=o.dictionary;continue}i.length&&(o.values=o.values.map(f=>i[f]));for(let f=0;f<o.rlevels.length;f++){n.rlevels.push(o.rlevels[f]),n.dlevels.push(o.dlevels[f]);let s=o.values[f];s!==void 0&&n.values.push(s)}n.count+=o.count,n.pageHeaders.push(o.pageHeader)}return n}async function Zg(t,e){let r,{pageHeader:n,length:i}=FI(t.buffer,t.offset);t.offset+=i;let o=cn(Lf,n.type);switch(o){case"DATA_PAGE":r=await dR(t,n,e);break;case"DATA_PAGE_V2":r=await mR(t,n,e);break;case"DICTIONARY_PAGE":r={dictionary:await wR(t,n,e),pageHeader:n};break;default:throw new Error(`invalid page type: ${o}`)}return r}function Jg(t,e,r){let n={},i=e;for(let o=0;o<r;o++){let f=t[i],s=i>0?cn(Gs,f.repetition_type):"ROOT",u=!1,l=!1;switch(s){case"REQUIRED":break;case"OPTIONAL":u=!0;break;case"REPEATED":l=!0;break;default:throw new Error("parquet: unknown repetition type")}if(f.num_children>0){let c=Jg(t,i+1,f.num_children);i=c.next,n[f.name]={optional:u,repeated:l,fields:c.schema}}else{let c=cn(Ci,f.type),w=c;switch(f.converted_type&&(w=cn(Ys,f.converted_type)),w){case"DECIMAL":w=`${w}_${c}`;break;default:}n[f.name]={type:w,typeLength:f.type_length,presision:f.precision,scale:f.scale,optional:u,repeated:l},i++}}return{schema:n,offset:e,next:i}}function Qf(t,e,r,n,i){if(!(e in qo))throw new Error(`invalid encoding: ${e}`);return qo[e].decodeValues(t,r,n,i)}async function dR(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header?.num_values,o=t;if(r.compression!=="UNCOMPRESSED"){let T=await _p(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);o={buffer:T,offset:0,size:T.length},t.offset=n}let f=cn(Nr,e.data_page_header?.repetition_level_encoding),s=new Array(i);r.column.rLevelMax>0?s=Qf(Su,f,o,i,{bitWidth:si(r.column.rLevelMax),disableEnvelope:!1}):s.fill(0);let u=cn(Nr,e.data_page_header?.definition_level_encoding),l=new Array(i);r.column.dLevelMax>0?l=Qf(Su,u,o,i,{bitWidth:si(r.column.dLevelMax),disableEnvelope:!1}):l.fill(0);let c=0;for(let T of l)T===r.column.dLevelMax&&c++;let w=cn(Nr,e.data_page_header?.encoding),p={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},g=Qf(r.column.primitiveType,w,o,c,p);return{dlevels:l,rlevels:s,values:g,count:i,pageHeader:e}}async function mR(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header_v2?.num_values,o=i-e.data_page_header_v2?.num_nulls,f=cn(Nr,e.data_page_header_v2?.encoding),s=new Array(i);r.column.rLevelMax>0?s=Qf(Su,Kg,t,i,{bitWidth:si(r.column.rLevelMax),disableEnvelope:!0}):s.fill(0);let u=new Array(i);r.column.dLevelMax>0?u=Qf(Su,Kg,t,i,{bitWidth:si(r.column.dLevelMax),disableEnvelope:!0}):u.fill(0);let l=t;if(e.data_page_header_v2?.is_compressed){let p=await _p(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);l={buffer:p,offset:0,size:p.length},t.offset=n}let c={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},w=Qf(r.column.primitiveType,f,l,o,c);return{dlevels:u,rlevels:s,values:w,count:i,pageHeader:e}}async function wR(t,e,r){let n=t.offset+e.compressed_page_size,i={offset:0,buffer:t.buffer.slice(t.offset,n),size:n-t.offset};if(t.offset=n,r.compression!=="UNCOMPRESSED"){let f=await _p(r.compression,i.buffer.slice(i.offset,n),e.uncompressed_page_size);i={buffer:f,offset:0,size:f.length},t.offset=n}let o=e?.dictionary_page_header?.num_values||0;return Qf(r.column.primitiveType,r.column.encoding,i,o,r).map(f=>f.toString())}var Qg=W(()=>{Mc();xu();Cl();Yg();_d()});var hR,Au,Xg=W(()=>{Cb();Qg();nd();Yg();xu();_d();Qg();hR={defaultDictionarySize:1e6},Au=class{constructor(e,r){this.metadata=null;this.file=e,this.props={...hR,...r}}close(){this.file.close()}async*rowIterator(e){for await(let r of this.rowBatchIterator(e))for(let n of r)yield n}async*rowBatchIterator(e){let r=await this.getSchema();for await(let n of this.rowGroupIterator(e))yield rd(r,n)}async*rowGroupIterator(e){let r=(e?.columnList||[]).map(f=>Array.isArray(f)?f:[f]),n=await this.getFileMetadata(),i=await this.getSchema(),o=n?.row_groups.length||0;for(let f=0;f<o;f++)yield await this.readRowGroup(i,n.row_groups[f],r)}async getRowCount(){let e=await this.getFileMetadata();return Number(e.num_rows)}async getSchema(){let e=await this.getFileMetadata(),r=e.schema[0],{schema:n}=Jg(e.schema,1,r.num_children);return new eu(n)}async getSchemaMetadata(){let e=await this.getFileMetadata(),r={};for(let n of e.key_value_metadata)r[n.key]=n.value;return r}async getFileMetadata(){return this.metadata||(await this.readHeader(),this.metadata=this.readFooter()),this.metadata}async readHeader(){let r=(await this.file.read(0,na.length)).toString();switch(r){case na:break;case AI:throw new Error("Encrypted parquet file not supported");default:throw new Error(`Invalid parquet file (magic=${r})`)}}async readFooter(){let e=na.length+4,r=await this.file.read(this.file.size-e,e),n=r.slice(4).toString();if(n!==na)throw new Error(`Not a valid parquet file (magic="${n})`);let i=r.readUInt32LE(0),o=this.file.size-i-e;if(o<na.length)throw new Error(`Invalid metadata size ${o}`);let f=await this.file.read(o,i),{metadata:s}=OI(f);return s}async readRowGroup(e,r,n){let i={rowCount:Number(r.num_rows),columnData:{}};for(let o of r.columns){let s=o.meta_data?.path_in_schema;n.length>0&&DI(n,s)<0||(i.columnData[s.join()]=await this.readColumnChunk(e,o))}return i}async readColumnChunk(e,r){if(r.file_path!==void 0&&r.file_path!==null)throw new Error("external references are not supported");let n=e.findField(r.meta_data?.path_in_schema),i=cn(Ci,r.meta_data?.type);if(i!==n.primitiveType)throw new Error(`chunk type not matching schema: ${i}`);let o=cn(Zs,r.meta_data?.codec),f=Number(r.meta_data?.data_page_offset),s=Number(r.meta_data?.total_compressed_size);r.file_path||(s=Math.min(this.file.size-f,Number(r.meta_data?.total_compressed_size)));let u={type:i,rLevelMax:n.rLevelMax,dLevelMax:n.dLevelMax,compression:o,column:n,numValues:r.meta_data?.num_values,dictionary:[]},l,c=r?.meta_data?.dictionary_page_offset;if(c){let p=Number(c);l=await this.getDictionary(p,u,f)}l=u.dictionary?.length?u.dictionary:l;let w=await this.file.read(f,s);return await PI(w,{...u,dictionary:l})}async getDictionary(e,r,n){if(e===0)return[];let i=Math.min(this.file.size-e,this.props.defaultDictionarySize),o=await this.file.read(e,i),f={buffer:o,offset:0,size:o.length};return(await Zg(f,r)).dictionary}}});async function NI(t,e){let r=new Blob([t]);for await(let n of $g(r,e))return n;return null}async function*$g(t,e){let r=Dw(t),i=new Au(r).rowBatchIterator(e?.parquet);for await(let o of i)yield o}var RI=W(()=>{Zn();Xg()});var Qi=B(HI=>{var x={};x.Offset;x.Table;x.SIZEOF_SHORT=2;x.SIZEOF_INT=4;x.FILE_IDENTIFIER_LENGTH=4;x.SIZE_PREFIX_LENGTH=4;x.Encoding={UTF8_BYTES:1,UTF16_STRING:2};x.int32=new Int32Array(2);x.float32=new Float32Array(x.int32.buffer);x.float64=new Float64Array(x.int32.buffer);x.isLittleEndian=new Uint16Array(new Uint8Array([1,0]).buffer)[0]===1;x.Long=function(t,e){this.low=t|0,this.high=e|0};x.Long.create=function(t,e){return t==0&&e==0?x.Long.ZERO:new x.Long(t,e)};x.Long.prototype.toFloat64=function(){return(this.low>>>0)+this.high*4294967296};x.Long.prototype.equals=function(t){return this.low==t.low&&this.high==t.high};x.Long.ZERO=new x.Long(0,0);x.Builder=function(t){if(t)var e=t;else var e=1024;this.bb=x.ByteBuffer.allocate(e),this.space=e,this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1};x.Builder.prototype.clear=function(){this.bb.clear(),this.space=this.bb.capacity(),this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1};x.Builder.prototype.forceDefaults=function(t){this.force_defaults=t};x.Builder.prototype.dataBuffer=function(){return this.bb};x.Builder.prototype.asUint8Array=function(){return this.bb.bytes().subarray(this.bb.position(),this.bb.position()+this.offset())};x.Builder.prototype.prep=function(t,e){t>this.minalign&&(this.minalign=t);for(var r=~(this.bb.capacity()-this.space+e)+1&t-1;this.space<r+t+e;){var n=this.bb.capacity();this.bb=x.Builder.growByteBuffer(this.bb),this.space+=this.bb.capacity()-n}this.pad(r)};x.Builder.prototype.pad=function(t){for(var e=0;e<t;e++)this.bb.writeInt8(--this.space,0)};x.Builder.prototype.writeInt8=function(t){this.bb.writeInt8(this.space-=1,t)};x.Builder.prototype.writeInt16=function(t){this.bb.writeInt16(this.space-=2,t)};x.Builder.prototype.writeInt32=function(t){this.bb.writeInt32(this.space-=4,t)};x.Builder.prototype.writeInt64=function(t){this.bb.writeInt64(this.space-=8,t)};x.Builder.prototype.writeFloat32=function(t){this.bb.writeFloat32(this.space-=4,t)};x.Builder.prototype.writeFloat64=function(t){this.bb.writeFloat64(this.space-=8,t)};x.Builder.prototype.addInt8=function(t){this.prep(1,0),this.writeInt8(t)};x.Builder.prototype.addInt16=function(t){this.prep(2,0),this.writeInt16(t)};x.Builder.prototype.addInt32=function(t){this.prep(4,0),this.writeInt32(t)};x.Builder.prototype.addInt64=function(t){this.prep(8,0),this.writeInt64(t)};x.Builder.prototype.addFloat32=function(t){this.prep(4,0),this.writeFloat32(t)};x.Builder.prototype.addFloat64=function(t){this.prep(8,0),this.writeFloat64(t)};x.Builder.prototype.addFieldInt8=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt8(e),this.slot(t))};x.Builder.prototype.addFieldInt16=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt16(e),this.slot(t))};x.Builder.prototype.addFieldInt32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt32(e),this.slot(t))};x.Builder.prototype.addFieldInt64=function(t,e,r){(this.force_defaults||!e.equals(r))&&(this.addInt64(e),this.slot(t))};x.Builder.prototype.addFieldFloat32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat32(e),this.slot(t))};x.Builder.prototype.addFieldFloat64=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat64(e),this.slot(t))};x.Builder.prototype.addFieldOffset=function(t,e,r){(this.force_defaults||e!=r)&&(this.addOffset(e),this.slot(t))};x.Builder.prototype.addFieldStruct=function(t,e,r){e!=r&&(this.nested(e),this.slot(t))};x.Builder.prototype.nested=function(t){if(t!=this.offset())throw new Error("FlatBuffers: struct must be serialized inline.")};x.Builder.prototype.notNested=function(){if(this.isNested)throw new Error("FlatBuffers: object serialization must not be nested.")};x.Builder.prototype.slot=function(t){this.vtable[t]=this.offset()};x.Builder.prototype.offset=function(){return this.bb.capacity()-this.space};x.Builder.growByteBuffer=function(t){var e=t.capacity();if(e&3221225472)throw new Error("FlatBuffers: cannot grow buffer beyond 2 gigabytes.");var r=e<<1,n=x.ByteBuffer.allocate(r);return n.setPosition(r-e),n.bytes().set(t.bytes(),r-e),n};x.Builder.prototype.addOffset=function(t){this.prep(x.SIZEOF_INT,0),this.writeInt32(this.offset()-t+x.SIZEOF_INT)};x.Builder.prototype.startObject=function(t){this.notNested(),this.vtable==null&&(this.vtable=[]),this.vtable_in_use=t;for(var e=0;e<t;e++)this.vtable[e]=0;this.isNested=!0,this.object_start=this.offset()};x.Builder.prototype.endObject=function(){if(this.vtable==null||!this.isNested)throw new Error("FlatBuffers: endObject called without startObject");this.addInt32(0);for(var t=this.offset(),e=this.vtable_in_use-1;e>=0&&this.vtable[e]==0;e--);for(var r=e+1;e>=0;e--)this.addInt16(this.vtable[e]!=0?t-this.vtable[e]:0);var n=2;this.addInt16(t-this.object_start);var i=(r+n)*x.SIZEOF_SHORT;this.addInt16(i);var o=0,f=this.space;e:for(e=0;e<this.vtables.length;e++){var s=this.bb.capacity()-this.vtables[e];if(i==this.bb.readInt16(s)){for(var u=x.SIZEOF_SHORT;u<i;u+=x.SIZEOF_SHORT)if(this.bb.readInt16(f+u)!=this.bb.readInt16(s+u))continue e;o=this.vtables[e];break}}return o?(this.space=this.bb.capacity()-t,this.bb.writeInt32(this.space,o-t)):(this.vtables.push(this.offset()),this.bb.writeInt32(this.bb.capacity()-t,this.offset()-t)),this.isNested=!1,t};x.Builder.prototype.finish=function(t,e,r){var n=r?x.SIZE_PREFIX_LENGTH:0;if(e){var i=e;if(this.prep(this.minalign,x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH+n),i.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var o=x.FILE_IDENTIFIER_LENGTH-1;o>=0;o--)this.writeInt8(i.charCodeAt(o))}this.prep(this.minalign,x.SIZEOF_INT+n),this.addOffset(t),n&&this.addInt32(this.bb.capacity()-this.space),this.bb.setPosition(this.space)};x.Builder.prototype.finishSizePrefixed=function(t,e){this.finish(t,e,!0)};x.Builder.prototype.requiredField=function(t,e){var r=this.bb.capacity()-t,n=r-this.bb.readInt32(r),i=this.bb.readInt16(n+e)!=0;if(!i)throw new Error("FlatBuffers: field "+e+" must be set")};x.Builder.prototype.startVector=function(t,e,r){this.notNested(),this.vector_num_elems=e,this.prep(x.SIZEOF_INT,t*e),this.prep(r,t*e)};x.Builder.prototype.endVector=function(){return this.writeInt32(this.vector_num_elems),this.offset()};x.Builder.prototype.createString=function(t){if(t instanceof Uint8Array)var e=t;else for(var e=[],r=0;r<t.length;){var n,i=t.charCodeAt(r++);if(i<55296||i>=56320)n=i;else{var o=t.charCodeAt(r++);n=(i<<10)+o+(65536-(55296<<10)-56320)}n<128?e.push(n):(n<2048?e.push(n>>6&31|192):(n<65536?e.push(n>>12&15|224):e.push(n>>18&7|240,n>>12&63|128),e.push(n>>6&63|128)),e.push(n&63|128))}this.addInt8(0),this.startVector(1,e.length,1),this.bb.setPosition(this.space-=e.length);for(var r=0,f=this.space,s=this.bb.bytes();r<e.length;r++)s[f++]=e[r];return this.endVector()};x.Builder.prototype.createLong=function(t,e){return x.Long.create(t,e)};x.ByteBuffer=function(t){this.bytes_=t,this.position_=0};x.ByteBuffer.allocate=function(t){return new x.ByteBuffer(new Uint8Array(t))};x.ByteBuffer.prototype.clear=function(){this.position_=0};x.ByteBuffer.prototype.bytes=function(){return this.bytes_};x.ByteBuffer.prototype.position=function(){return this.position_};x.ByteBuffer.prototype.setPosition=function(t){this.position_=t};x.ByteBuffer.prototype.capacity=function(){return this.bytes_.length};x.ByteBuffer.prototype.readInt8=function(t){return this.readUint8(t)<<24>>24};x.ByteBuffer.prototype.readUint8=function(t){return this.bytes_[t]};x.ByteBuffer.prototype.readInt16=function(t){return this.readUint16(t)<<16>>16};x.ByteBuffer.prototype.readUint16=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8};x.ByteBuffer.prototype.readInt32=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8|this.bytes_[t+2]<<16|this.bytes_[t+3]<<24};x.ByteBuffer.prototype.readUint32=function(t){return this.readInt32(t)>>>0};x.ByteBuffer.prototype.readInt64=function(t){return new x.Long(this.readInt32(t),this.readInt32(t+4))};x.ByteBuffer.prototype.readUint64=function(t){return new x.Long(this.readUint32(t),this.readUint32(t+4))};x.ByteBuffer.prototype.readFloat32=function(t){return x.int32[0]=this.readInt32(t),x.float32[0]};x.ByteBuffer.prototype.readFloat64=function(t){return x.int32[x.isLittleEndian?0:1]=this.readInt32(t),x.int32[x.isLittleEndian?1:0]=this.readInt32(t+4),x.float64[0]};x.ByteBuffer.prototype.writeInt8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeUint8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeInt16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.ByteBuffer.prototype.writeUint16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.ByteBuffer.prototype.writeInt32=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8,this.bytes_[t+2]=e>>16,this.bytes_[t+3]=e>>24};x.ByteBuffer.prototype.writeUint32=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8,this.bytes_[t+2]=e>>16,this.bytes_[t+3]=e>>24};x.ByteBuffer.prototype.writeInt64=function(t,e){this.writeInt32(t,e.low),this.writeInt32(t+4,e.high)};x.ByteBuffer.prototype.writeUint64=function(t,e){this.writeUint32(t,e.low),this.writeUint32(t+4,e.high)};x.ByteBuffer.prototype.writeFloat32=function(t,e){x.float32[0]=e,this.writeInt32(t,x.int32[0])};x.ByteBuffer.prototype.writeFloat64=function(t,e){x.float64[0]=e,this.writeInt32(t,x.int32[x.isLittleEndian?0:1]),this.writeInt32(t+4,x.int32[x.isLittleEndian?1:0])};x.ByteBuffer.prototype.getBufferIdentifier=function(){if(this.bytes_.length<this.position_+x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: ByteBuffer is too short to contain an identifier.");for(var t="",e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)t+=String.fromCharCode(this.readInt8(this.position_+x.SIZEOF_INT+e));return t};x.ByteBuffer.prototype.__offset=function(t,e){var r=t-this.readInt32(t);return e<this.readInt16(r)?this.readInt16(r+e):0};x.ByteBuffer.prototype.__union=function(t,e){return t.bb_pos=e+this.readInt32(e),t.bb=this,t};x.ByteBuffer.prototype.__string=function(t,e){t+=this.readInt32(t);var r=this.readInt32(t),n="",i=0;if(t+=x.SIZEOF_INT,e===x.Encoding.UTF8_BYTES)return this.bytes_.subarray(t,t+r);for(;i<r;){var o,f=this.readUint8(t+i++);if(f<192)o=f;else{var s=this.readUint8(t+i++);if(f<224)o=(f&31)<<6|s&63;else{var u=this.readUint8(t+i++);if(f<240)o=(f&15)<<12|(s&63)<<6|u&63;else{var l=this.readUint8(t+i++);o=(f&7)<<18|(s&63)<<12|(u&63)<<6|l&63}}}o<65536?n+=String.fromCharCode(o):(o-=65536,n+=String.fromCharCode((o>>10)+55296,(o&(1<<10)-1)+56320))}return n};x.ByteBuffer.prototype.__indirect=function(t){return t+this.readInt32(t)};x.ByteBuffer.prototype.__vector=function(t){return t+this.readInt32(t)+x.SIZEOF_INT};x.ByteBuffer.prototype.__vector_len=function(t){return this.readInt32(t+this.readInt32(t))};x.ByteBuffer.prototype.__has_identifier=function(t){if(t.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)if(t.charCodeAt(e)!=this.readInt8(this.position_+x.SIZEOF_INT+e))return!1;return!0};x.ByteBuffer.prototype.createLong=function(t,e){return x.Long.create(t,e)};HI.flatbuffers=x});var zI=B(ry=>{"use strict";function Xi(t,e,r){return e<=t&&t<=r}function qd(t){if(t===void 0)return{};if(t===Object(t))return t;throw TypeError("Could not convert argument to dictionary")}function bR(t){for(var e=String(t),r=e.length,n=0,i=[];n<r;){var o=e.charCodeAt(n);if(o<55296||o>57343)i.push(o);else if(56320<=o&&o<=57343)i.push(65533);else if(55296<=o&&o<=56319)if(n===r-1)i.push(65533);else{var f=t.charCodeAt(n+1);if(56320<=f&&f<=57343){var s=o&1023,u=f&1023;i.push(65536+(s<<10)+u),n+=1}else i.push(65533)}n+=1}return i}function gR(t){for(var e="",r=0;r<t.length;++r){var n=t[r];n<=65535?e+=String.fromCharCode(n):(n-=65536,e+=String.fromCharCode((n>>10)+55296,(n&1023)+56320))}return e}var vd=-1;function ey(t){this.tokens=[].slice.call(t)}ey.prototype={endOfStream:function(){return!this.tokens.length},read:function(){return this.tokens.length?this.tokens.shift():vd},prepend:function(t){if(Array.isArray(t))for(var e=t;e.length;)this.tokens.unshift(e.pop());else this.tokens.unshift(t)},push:function(t){if(Array.isArray(t))for(var e=t;e.length;)this.tokens.push(e.shift());else this.tokens.push(t)}};var ia=-1;function ty(t,e){if(t)throw TypeError("Decoder error");return e||65533}var Td="utf-8";function Bd(t,e){if(!(this instanceof Bd))return new Bd(t,e);if(t=t!==void 0?String(t).toLowerCase():Td,t!==Td)throw new Error("Encoding not supported. Only utf-8 is supported");e=qd(e),this._streaming=!1,this._BOMseen=!1,this._decoder=null,this._fatal=Boolean(e.fatal),this._ignoreBOM=Boolean(e.ignoreBOM),Object.defineProperty(this,"encoding",{value:"utf-8"}),Object.defineProperty(this,"fatal",{value:this._fatal}),Object.defineProperty(this,"ignoreBOM",{value:this._ignoreBOM})}Bd.prototype={decode:function(e,r){var n;typeof e=="object"&&e instanceof ArrayBuffer?n=new Uint8Array(e):typeof e=="object"&&"buffer"in e&&e.buffer instanceof ArrayBuffer?n=new Uint8Array(e.buffer,e.byteOffset,e.byteLength):n=new Uint8Array(0),r=qd(r),this._streaming||(this._decoder=new yR({fatal:this._fatal}),this._BOMseen=!1),this._streaming=Boolean(r.stream);for(var i=new ey(n),o=[],f;!i.endOfStream()&&(f=this._decoder.handler(i,i.read()),f!==ia);)f!==null&&(Array.isArray(f)?o.push.apply(o,f):o.push(f));if(!this._streaming){do{if(f=this._decoder.handler(i,i.read()),f===ia)break;f!==null&&(Array.isArray(f)?o.push.apply(o,f):o.push(f))}while(!i.endOfStream());this._decoder=null}return o.length&&["utf-8"].indexOf(this.encoding)!==-1&&!this._ignoreBOM&&!this._BOMseen&&(o[0]===65279?(this._BOMseen=!0,o.shift()):this._BOMseen=!0),gR(o)}};function kd(t,e){if(!(this instanceof kd))return new kd(t,e);if(t=t!==void 0?String(t).toLowerCase():Td,t!==Td)throw new Error("Encoding not supported. Only utf-8 is supported");e=qd(e),this._streaming=!1,this._encoder=null,this._options={fatal:Boolean(e.fatal)},Object.defineProperty(this,"encoding",{value:"utf-8"})}kd.prototype={encode:function(e,r){e=e?String(e):"",r=qd(r),this._streaming||(this._encoder=new jR(this._options)),this._streaming=Boolean(r.stream);for(var n=[],i=new ey(bR(e)),o;!i.endOfStream()&&(o=this._encoder.handler(i,i.read()),o!==ia);)Array.isArray(o)?n.push.apply(n,o):n.push(o);if(!this._streaming){for(;o=this._encoder.handler(i,i.read()),o!==ia;)Array.isArray(o)?n.push.apply(n,o):n.push(o);this._encoder=null}return new Uint8Array(n)}};function yR(t){var e=t.fatal,r=0,n=0,i=0,o=128,f=191;this.handler=function(s,u){if(u===vd&&i!==0)return i=0,ty(e);if(u===vd)return ia;if(i===0){if(Xi(u,0,127))return u;if(Xi(u,194,223))i=1,r=u-192;else if(Xi(u,224,239))u===224&&(o=160),u===237&&(f=159),i=2,r=u-224;else if(Xi(u,240,244))u===240&&(o=144),u===244&&(f=143),i=3,r=u-240;else return ty(e);return r=r<<6*i,null}if(!Xi(u,o,f))return r=i=n=0,o=128,f=191,s.prepend(u),ty(e);if(o=128,f=191,n+=1,r+=u-128<<6*(i-n),n!==i)return null;var l=r;return r=i=n=0,l}}function jR(t){var e=t.fatal;this.handler=function(r,n){if(n===vd)return ia;if(Xi(n,0,127))return n;var i,o;Xi(n,128,2047)?(i=1,o=192):Xi(n,2048,65535)?(i=2,o=224):Xi(n,65536,1114111)&&(i=3,o=240);for(var f=[(n>>6*i)+o];i>0;){var s=n>>6*(i-1);f.push(128|s&63),i-=1}return f}}ry.TextEncoder=kd;ry.TextDecoder=Bd});var Xf=B(oa=>{"use strict";Object.defineProperty(oa,"__esModule",{value:!0});oa.encodeUtf8=oa.decodeUtf8=void 0;var UI=zI(),_R=new(typeof TextDecoder!="undefined"?TextDecoder:UI.TextDecoder)("utf-8");oa.decodeUtf8=t=>_R.decode(t);var qR=new(typeof TextEncoder!="undefined"?TextEncoder:UI.TextEncoder);oa.encodeUtf8=t=>qR.encode(t)});var fa=B(Lr=>{"use strict";Object.defineProperty(Lr,"__esModule",{value:!0});Lr.AsyncQueue=Lr.ReadableInterop=Lr.ArrowJSON=Lr.ITERATOR_DONE=void 0;var MI=Ou();Lr.ITERATOR_DONE=Object.freeze({done:!0,value:void 0});var LI=class{constructor(e){this._json=e}get schema(){return this._json.schema}get batches(){return this._json.batches||[]}get dictionaries(){return this._json.dictionaries||[]}};Lr.ArrowJSON=LI;var ny=class{tee(){return this._getDOMStream().tee()}pipe(e,r){return this._getNodeStream().pipe(e,r)}pipeTo(e,r){return this._getDOMStream().pipeTo(e,r)}pipeThrough(e,r){return this._getDOMStream().pipeThrough(e,r)}_getDOMStream(){return this._DOMStream||(this._DOMStream=this.toDOMStream())}_getNodeStream(){return this._nodeStream||(this._nodeStream=this.toNodeStream())}};Lr.ReadableInterop=ny;var VI=class extends ny{constructor(){super();this._values=[],this.resolvers=[],this._closedPromise=new Promise(e=>this._closedPromiseResolve=e)}get closed(){return this._closedPromise}async cancel(e){await this.return(e)}write(e){this._ensureOpen()&&(this.resolvers.length<=0?this._values.push(e):this.resolvers.shift().resolve({done:!1,value:e}))}abort(e){this._closedPromiseResolve&&(this.resolvers.length<=0?this._error={error:e}:this.resolvers.shift().reject({done:!0,value:e}))}close(){if(this._closedPromiseResolve){let{resolvers:e}=this;for(;e.length>0;)e.shift().resolve(Lr.ITERATOR_DONE);this._closedPromiseResolve(),this._closedPromiseResolve=void 0}}[Symbol.asyncIterator](){return this}toDOMStream(e){return MI.default.toDOMStream(this._closedPromiseResolve||this._error?this:this._values,e)}toNodeStream(e){return MI.default.toNodeStream(this._closedPromiseResolve||this._error?this:this._values,e)}async throw(e){return await this.abort(e),Lr.ITERATOR_DONE}async return(e){return await this.close(),Lr.ITERATOR_DONE}async read(e){return(await this.next(e,"read")).value}async peek(e){return(await this.next(e,"peek")).value}next(...e){return this._values.length>0?Promise.resolve({done:!1,value:this._values.shift()}):this._error?Promise.reject({done:!0,value:this._error.error}):this._closedPromiseResolve?new Promise((r,n)=>{this.resolvers.push({resolve:r,reject:n})}):Promise.resolve(Lr.ITERATOR_DONE)}_ensureOpen(){if(this._closedPromiseResolve)return!0;throw new Error(`${this} is closed`)}};Lr.AsyncQueue=VI});var gr=B(oe=>{"use strict";Object.defineProperty(oe,"__esModule",{value:!0});oe.isReadableNodeStream=oe.isWritableNodeStream=oe.isReadableDOMStream=oe.isWritableDOMStream=oe.isFetchResponse=oe.isFSReadStream=oe.isFileHandle=oe.isUnderlyingSink=oe.isIteratorResult=oe.isArrayLike=oe.isArrowJSON=oe.isAsyncIterable=oe.isIterable=oe.isObservable=oe.isPromise=oe.isObject=oe.BigUint64ArrayAvailable=oe.BigUint64Array=oe.BigInt64ArrayAvailable=oe.BigInt64Array=oe.BigIntAvailable=oe.BigInt=void 0;var Id=fa(),[vR,TR]=(()=>{let t=()=>{throw new Error("BigInt is not available in this environment")};function e(){throw t()}return e.asIntN=()=>{throw t()},e.asUintN=()=>{throw t()},typeof BigInt!="undefined"?[BigInt,!0]:[e,!1]})();oe.BigInt=vR;oe.BigIntAvailable=TR;var[BR,kR]=(()=>{let t=()=>{throw new Error("BigInt64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigInt64Array!="undefined"?[BigInt64Array,!0]:[e,!1]})();oe.BigInt64Array=BR;oe.BigInt64ArrayAvailable=kR;var[IR,xR]=(()=>{let t=()=>{throw new Error("BigUint64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigUint64Array!="undefined"?[BigUint64Array,!0]:[e,!1]})();oe.BigUint64Array=IR;oe.BigUint64ArrayAvailable=xR;var iy=t=>typeof t=="number",CI=t=>typeof t=="boolean",ur=t=>typeof t=="function";oe.isObject=t=>t!=null&&Object(t)===t;oe.isPromise=t=>oe.isObject(t)&&ur(t.then);oe.isObservable=t=>oe.isObject(t)&&ur(t.subscribe);oe.isIterable=t=>oe.isObject(t)&&ur(t[Symbol.iterator]);oe.isAsyncIterable=t=>oe.isObject(t)&&ur(t[Symbol.asyncIterator]);oe.isArrowJSON=t=>oe.isObject(t)&&oe.isObject(t.schema);oe.isArrayLike=t=>oe.isObject(t)&&iy(t.length);oe.isIteratorResult=t=>oe.isObject(t)&&"done"in t&&"value"in t;oe.isUnderlyingSink=t=>oe.isObject(t)&&ur(t.abort)&&ur(t.close)&&ur(t.start)&&ur(t.write);oe.isFileHandle=t=>oe.isObject(t)&&ur(t.stat)&&iy(t.fd);oe.isFSReadStream=t=>oe.isReadableNodeStream(t)&&iy(t.bytesRead);oe.isFetchResponse=t=>oe.isObject(t)&&oe.isReadableDOMStream(t.body);oe.isWritableDOMStream=t=>oe.isObject(t)&&ur(t.abort)&&ur(t.getWriter)&&!(t instanceof Id.ReadableInterop);oe.isReadableDOMStream=t=>oe.isObject(t)&&ur(t.cancel)&&ur(t.getReader)&&!(t instanceof Id.ReadableInterop);oe.isWritableNodeStream=t=>oe.isObject(t)&&ur(t.end)&&ur(t.write)&&CI(t.writable)&&!(t instanceof Id.ReadableInterop);oe.isReadableNodeStream=t=>oe.isObject(t)&&ur(t.read)&&ur(t.pipe)&&CI(t.readable)&&!(t instanceof Id.ReadableInterop)});var Xt=B(X=>{"use strict";Object.defineProperty(X,"__esModule",{value:!0});X.compareArrayLike=X.rebaseValueOffsets=X.toUint8ClampedArrayAsyncIterator=X.toFloat64ArrayAsyncIterator=X.toFloat32ArrayAsyncIterator=X.toUint32ArrayAsyncIterator=X.toUint16ArrayAsyncIterator=X.toUint8ArrayAsyncIterator=X.toInt32ArrayAsyncIterator=X.toInt16ArrayAsyncIterator=X.toInt8ArrayAsyncIterator=X.toArrayBufferViewAsyncIterator=X.toUint8ClampedArrayIterator=X.toFloat64ArrayIterator=X.toFloat32ArrayIterator=X.toUint32ArrayIterator=X.toUint16ArrayIterator=X.toUint8ArrayIterator=X.toInt32ArrayIterator=X.toInt16ArrayIterator=X.toInt8ArrayIterator=X.toArrayBufferViewIterator=X.toUint8ClampedArray=X.toFloat64Array=X.toFloat32Array=X.toBigUint64Array=X.toUint32Array=X.toUint16Array=X.toUint8Array=X.toBigInt64Array=X.toInt32Array=X.toInt16Array=X.toInt8Array=X.toArrayBufferView=X.joinUint8Arrays=X.memcpy=void 0;var SR=Qi(),ER=Xf(),AR=SR.flatbuffers.ByteBuffer,$f=gr(),oy=typeof SharedArrayBuffer!="undefined"?SharedArrayBuffer:ArrayBuffer;function OR(t){let e=t[0]?[t[0]]:[],r,n,i,o;for(let f,s,u=0,l=0,c=t.length;++u<c;){if(f=e[l],s=t[u],!f||!s||f.buffer!==s.buffer||s.byteOffset<f.byteOffset){s&&(e[++l]=s);continue}if({byteOffset:r,byteLength:i}=f,{byteOffset:n,byteLength:o}=s,r+i<n||n+o<r){s&&(e[++l]=s);continue}e[l]=new Uint8Array(f.buffer,r,n-r+o)}return e}function fy(t,e,r=0,n=e.byteLength){let i=t.byteLength,o=new Uint8Array(t.buffer,t.byteOffset,i),f=new Uint8Array(e.buffer,e.byteOffset,Math.min(n,i));return o.set(f,r),t}X.memcpy=fy;function FR(t,e){let r=OR(t),n=r.reduce((c,w)=>c+w.byteLength,0),i,o,f,s=0,u=-1,l=Math.min(e||1/0,n);for(let c=r.length;++u<c;){if(i=r[u],o=i.subarray(0,Math.min(i.length,l-s)),l<=s+o.length){o.length<i.length?r[u]=i.subarray(o.length):o.length===i.length&&u++,f?fy(f,o,s):f=o;break}fy(f||(f=new Uint8Array(l)),o,s),s+=o.length}return[f||new Uint8Array(0),r.slice(u),n-(f?f.byteLength:0)]}X.joinUint8Arrays=FR;function Ir(t,e){let r=$f.isIteratorResult(e)?e.value:e;return r instanceof t?t===Uint8Array?new t(r.buffer,r.byteOffset,r.byteLength):r:r?(typeof r=="string"&&(r=ER.encodeUtf8(r)),r instanceof ArrayBuffer?new t(r):r instanceof oy?new t(r):r instanceof AR?Ir(t,r.bytes()):ArrayBuffer.isView(r)?r.byteLength<=0?new t(0):new t(r.buffer,r.byteOffset,r.byteLength/t.BYTES_PER_ELEMENT):t.from(r)):new t(0)}X.toArrayBufferView=Ir;X.toInt8Array=t=>Ir(Int8Array,t);X.toInt16Array=t=>Ir(Int16Array,t);X.toInt32Array=t=>Ir(Int32Array,t);X.toBigInt64Array=t=>Ir($f.BigInt64Array,t);X.toUint8Array=t=>Ir(Uint8Array,t);X.toUint16Array=t=>Ir(Uint16Array,t);X.toUint32Array=t=>Ir(Uint32Array,t);X.toBigUint64Array=t=>Ir($f.BigUint64Array,t);X.toFloat32Array=t=>Ir(Float32Array,t);X.toFloat64Array=t=>Ir(Float64Array,t);X.toUint8ClampedArray=t=>Ir(Uint8ClampedArray,t);var sy=t=>(t.next(),t);function*ai(t,e){let r=function*(i){yield i},n=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof oy?r(e):$f.isIterable(e)?e:r(e);return yield*sy(function*(i){let o=null;do o=i.next(yield Ir(t,o));while(!o.done)}(n[Symbol.iterator]())),new t}X.toArrayBufferViewIterator=ai;X.toInt8ArrayIterator=t=>ai(Int8Array,t);X.toInt16ArrayIterator=t=>ai(Int16Array,t);X.toInt32ArrayIterator=t=>ai(Int32Array,t);X.toUint8ArrayIterator=t=>ai(Uint8Array,t);X.toUint16ArrayIterator=t=>ai(Uint16Array,t);X.toUint32ArrayIterator=t=>ai(Uint32Array,t);X.toFloat32ArrayIterator=t=>ai(Float32Array,t);X.toFloat64ArrayIterator=t=>ai(Float64Array,t);X.toUint8ClampedArrayIterator=t=>ai(Uint8ClampedArray,t);async function*Rn(t,e){if($f.isPromise(e))return yield*Rn(t,await e);let r=async function*(o){yield await o},n=async function*(o){yield*sy(function*(f){let s=null;do s=f.next(yield s&&s.value);while(!s.done)}(o[Symbol.iterator]()))},i=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof oy?r(e):$f.isIterable(e)?n(e):$f.isAsyncIterable(e)?e:r(e);return yield*sy(async function*(o){let f=null;do f=await o.next(yield Ir(t,f));while(!f.done)}(i[Symbol.asyncIterator]())),new t}X.toArrayBufferViewAsyncIterator=Rn;X.toInt8ArrayAsyncIterator=t=>Rn(Int8Array,t);X.toInt16ArrayAsyncIterator=t=>Rn(Int16Array,t);X.toInt32ArrayAsyncIterator=t=>Rn(Int32Array,t);X.toUint8ArrayAsyncIterator=t=>Rn(Uint8Array,t);X.toUint16ArrayAsyncIterator=t=>Rn(Uint16Array,t);X.toUint32ArrayAsyncIterator=t=>Rn(Uint32Array,t);X.toFloat32ArrayAsyncIterator=t=>Rn(Float32Array,t);X.toFloat64ArrayAsyncIterator=t=>Rn(Float64Array,t);X.toUint8ClampedArrayAsyncIterator=t=>Rn(Uint8ClampedArray,t);function DR(t,e,r){if(t!==0){r=r.slice(0,e+1);for(let n=-1;++n<=e;)r[n]+=t}return r}X.rebaseValueOffsets=DR;function PR(t,e){let r=0,n=t.length;if(n!==e.length)return!1;if(n>0)do if(t[r]!==e[r])return!1;while(++r<n);return!0}X.compareArrayLike=PR});var Ou=B(ly=>{"use strict";Object.defineProperty(ly,"__esModule",{value:!0});var xr=Xt();ly.default={fromIterable(t){return xd(NR(t))},fromAsyncIterable(t){return xd(RR(t))},fromDOMStream(t){return xd(HR(t))},fromNodeStream(t){return xd(zR(t))},toDOMStream(t,e){throw new Error('"toDOMStream" not available in this environment')},toNodeStream(t,e){throw new Error('"toNodeStream" not available in this environment')}};var xd=t=>(t.next(),t);function*NR(t){let e,r=!1,n=[],i,o,f,s=0;function u(){return o==="peek"?xr.joinUint8Arrays(n,f)[0]:([i,n,s]=xr.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let l=xr.toUint8ArrayIterator(t)[Symbol.iterator]();try{do if({done:e,value:i}=isNaN(f-s)?l.next(void 0):l.next(f-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield u());while(f<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&l.throw(c)}finally{r===!1&&typeof l.return=="function"&&l.return(null)}return null}async function*RR(t){let e,r=!1,n=[],i,o,f,s=0;function u(){return o==="peek"?xr.joinUint8Arrays(n,f)[0]:([i,n,s]=xr.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let l=xr.toUint8ArrayAsyncIterator(t)[Symbol.asyncIterator]();try{do if({done:e,value:i}=isNaN(f-s)?await l.next(void 0):await l.next(f-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield u());while(f<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&await l.throw(c)}finally{r===!1&&typeof l.return=="function"&&await l.return(new Uint8Array(0))}return null}async function*HR(t){let e=!1,r=!1,n=[],i,o,f,s=0;function u(){return o==="peek"?xr.joinUint8Arrays(n,f)[0]:([i,n,s]=xr.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let l=new WI(t);try{do if({done:e,value:i}=isNaN(f-s)?await l.read(void 0):await l.read(f-s),!e&&i.byteLength>0&&(n.push(xr.toUint8Array(i)),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield u());while(f<s);while(!e)}catch(c){(r=!0)&&await l.cancel(c)}finally{r===!1?await l.cancel():t.locked&&l.releaseLock()}return null}var WI=class{constructor(e){this.source=e,this.byobReader=null,this.defaultReader=null;try{this.supportsBYOB=!!(this.reader=this.getBYOBReader())}catch{this.supportsBYOB=!(this.reader=this.getDefaultReader())}}get closed(){return this.reader?this.reader.closed.catch(()=>{}):Promise.resolve()}releaseLock(){this.reader&&this.reader.releaseLock(),this.reader=this.byobReader=this.defaultReader=null}async cancel(e){let{reader:r,source:n}=this;r&&await r.cancel(e).catch(()=>{}),n&&n.locked&&this.releaseLock()}async read(e){if(e===0)return{done:this.reader==null,value:new Uint8Array(0)};let r=!this.supportsBYOB||typeof e!="number"?await this.getDefaultReader().read():await this.readFromBYOBReader(e);return!r.done&&(r.value=xr.toUint8Array(r)),r}getDefaultReader(){return this.byobReader&&this.releaseLock(),this.defaultReader||(this.defaultReader=this.source.getReader(),this.defaultReader.closed.catch(()=>{})),this.reader=this.defaultReader}getBYOBReader(){return this.defaultReader&&this.releaseLock(),this.byobReader||(this.byobReader=this.source.getReader({mode:"byob"}),this.byobReader.closed.catch(()=>{})),this.reader=this.byobReader}async readFromBYOBReader(e){return await KI(this.getBYOBReader(),new ArrayBuffer(e),0,e)}};async function KI(t,e,r,n){if(r>=n)return{done:!1,value:new Uint8Array(e,0,n)};let{done:i,value:o}=await t.read(new Uint8Array(e,r,n-r));return(r+=o.byteLength)<n&&!i?await KI(t,o.buffer,r,n):{done:i,value:new Uint8Array(o.buffer,0,r)}}var ay=(t,e)=>{let r=i=>n([e,i]),n;return[e,r,new Promise(i=>(n=i)&&t.once(e,r))]};async function*zR(t){let e=[],r="error",n=!1,i=null,o,f,s=0,u=[],l;function c(){return o==="peek"?xr.joinUint8Arrays(u,f)[0]:([l,u,s]=xr.joinUint8Arrays(u,f),l)}if({cmd:o,size:f}=yield null,t.isTTY)return yield new Uint8Array(0),null;try{e[0]=ay(t,"end"),e[1]=ay(t,"error");do{if(e[2]=ay(t,"readable"),[r,i]=await Promise.race(e.map(p=>p[2])),r==="error")break;if((n=r==="end")||(isFinite(f-s)?(l=xr.toUint8Array(t.read(f-s)),l.byteLength<f-s&&(l=xr.toUint8Array(t.read(void 0)))):l=xr.toUint8Array(t.read(void 0)),l.byteLength>0&&(u.push(l),s+=l.byteLength)),n||f<=s)do({cmd:o,size:f}=yield c());while(f<s)}while(!n)}finally{await w(e,r==="error"?i:null)}return null;function w(p,g){return l=u=null,new Promise((T,L)=>{for(let[O,K]of p)t.off(O,K);try{let O=t.destroy;O&&O.call(t,g),g=void 0}catch(O){g=O||g}finally{g!=null?L(g):T()}})}}});var zt=B(sa=>{"use strict";Object.defineProperty(sa,"__esModule",{value:!0});sa.Vector=sa.AbstractVector=void 0;var Sd=class{};sa.AbstractVector=Sd;sa.Vector=Sd;Sd.prototype.data=null});var Yo=B(J=>{"use strict";Object.defineProperty(J,"__esModule",{value:!0});J.Schema=J.Buffer=J.Field=J.DictionaryEncoding=J.KeyValue=J.Duration=J.Interval=J.Timestamp=J.Time=J.Date=J.Decimal=J.Bool=J.FixedSizeBinary=J.LargeBinary=J.LargeUtf8=J.Binary=J.Utf8=J.FloatingPoint=J.Int=J.Union=J.Map=J.FixedSizeList=J.LargeList=J.List=J.Struct_=J.Null=J.Endianness=J.DictionaryKind=J.Type=J.IntervalUnit=J.TimeUnit=J.DateUnit=J.Precision=J.UnionMode=J.Feature=J.MetadataVersion=void 0;var jt=Qi(),UR;(function(t){t[t.V1=0]="V1",t[t.V2=1]="V2",t[t.V3=2]="V3",t[t.V4=3]="V4",t[t.V5=4]="V5"})(UR=J.MetadataVersion||(J.MetadataVersion={}));var MR;(function(t){t[t.UNUSED=0]="UNUSED",t[t.DICTIONARY_REPLACEMENT=1]="DICTIONARY_REPLACEMENT",t[t.COMPRESSED_BODY=2]="COMPRESSED_BODY"})(MR=J.Feature||(J.Feature={}));var uy;(function(t){t[t.Sparse=0]="Sparse",t[t.Dense=1]="Dense"})(uy=J.UnionMode||(J.UnionMode={}));var cy;(function(t){t[t.HALF=0]="HALF",t[t.SINGLE=1]="SINGLE",t[t.DOUBLE=2]="DOUBLE"})(cy=J.Precision||(J.Precision={}));var py;(function(t){t[t.DAY=0]="DAY",t[t.MILLISECOND=1]="MILLISECOND"})(py=J.DateUnit||(J.DateUnit={}));var es;(function(t){t[t.SECOND=0]="SECOND",t[t.MILLISECOND=1]="MILLISECOND",t[t.MICROSECOND=2]="MICROSECOND",t[t.NANOSECOND=3]="NANOSECOND"})(es=J.TimeUnit||(J.TimeUnit={}));var dy;(function(t){t[t.YEAR_MONTH=0]="YEAR_MONTH",t[t.DAY_TIME=1]="DAY_TIME"})(dy=J.IntervalUnit||(J.IntervalUnit={}));var my;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.FloatingPoint=3]="FloatingPoint",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct_=13]="Struct_",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Duration=18]="Duration",t[t.LargeBinary=19]="LargeBinary",t[t.LargeUtf8=20]="LargeUtf8",t[t.LargeList=21]="LargeList"})(my=J.Type||(J.Type={}));var wy;(function(t){t[t.DenseArray=0]="DenseArray"})(wy=J.DictionaryKind||(J.DictionaryKind={}));var hy;(function(t){t[t.Little=0]="Little",t[t.Big=1]="Big"})(hy=J.Endianness||(J.Endianness={}));var ts=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsNull(e,r){return(r||new ts).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsNull(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ts).__init(e.readInt32(e.position())+e.position(),e)}static startNull(e){e.startObject(0)}static endNull(e){return e.endObject()}static createNull(e){return ts.startNull(e),ts.endNull(e)}};J.Null=ts;var rs=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsStruct_(e,r){return(r||new rs).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsStruct_(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new rs).__init(e.readInt32(e.position())+e.position(),e)}static startStruct_(e){e.startObject(0)}static endStruct_(e){return e.endObject()}static createStruct_(e){return rs.startStruct_(e),rs.endStruct_(e)}};J.Struct_=rs;var ns=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsList(e,r){return(r||new ns).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsList(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ns).__init(e.readInt32(e.position())+e.position(),e)}static startList(e){e.startObject(0)}static endList(e){return e.endObject()}static createList(e){return ns.startList(e),ns.endList(e)}};J.List=ns;var is=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeList(e,r){return(r||new is).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeList(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new is).__init(e.readInt32(e.position())+e.position(),e)}static startLargeList(e){e.startObject(0)}static endLargeList(e){return e.endObject()}static createLargeList(e){return is.startLargeList(e),is.endLargeList(e)}};J.LargeList=is;var Uo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeList(e,r){return(r||new Uo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeList(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Uo).__init(e.readInt32(e.position())+e.position(),e)}listSize(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeList(e){e.startObject(1)}static addListSize(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeList(e){return e.endObject()}static createFixedSizeList(e,r){return Uo.startFixedSizeList(e),Uo.addListSize(e,r),Uo.endFixedSizeList(e)}};J.FixedSizeList=Uo;var Mo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMap(e,r){return(r||new Mo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMap(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Mo).__init(e.readInt32(e.position())+e.position(),e)}keysSorted(){let e=this.bb.__offset(this.bb_pos,4);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startMap(e){e.startObject(1)}static addKeysSorted(e,r){e.addFieldInt8(0,+r,0)}static endMap(e){return e.endObject()}static createMap(e,r){return Mo.startMap(e),Mo.addKeysSorted(e,r),Mo.endMap(e)}};J.Map=Mo;var $i=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUnion(e,r){return(r||new $i).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUnion(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new $i).__init(e.readInt32(e.position())+e.position(),e)}mode(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):uy.Sparse}typeIds(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.readInt32(this.bb.__vector(this.bb_pos+r)+e*4):0}typeIdsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}typeIdsArray(){let e=this.bb.__offset(this.bb_pos,6);return e?new Int32Array(this.bb.bytes().buffer,this.bb.bytes().byteOffset+this.bb.__vector(this.bb_pos+e),this.bb.__vector_len(this.bb_pos+e)):null}static startUnion(e){e.startObject(2)}static addMode(e,r){e.addFieldInt16(0,r,uy.Sparse)}static addTypeIds(e,r){e.addFieldOffset(1,r,0)}static createTypeIdsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addInt32(r[n]);return e.endVector()}static startTypeIdsVector(e,r){e.startVector(4,r,4)}static endUnion(e){return e.endObject()}static createUnion(e,r,n){return $i.startUnion(e),$i.addMode(e,r),$i.addTypeIds(e,n),$i.endUnion(e)}};J.Union=$i;var li=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInt(e,r){return(r||new li).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInt(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new li).__init(e.readInt32(e.position())+e.position(),e)}bitWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}isSigned(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startInt(e){e.startObject(2)}static addBitWidth(e,r){e.addFieldInt32(0,r,0)}static addIsSigned(e,r){e.addFieldInt8(1,+r,0)}static endInt(e){return e.endObject()}static createInt(e,r,n){return li.startInt(e),li.addBitWidth(e,r),li.addIsSigned(e,n),li.endInt(e)}};J.Int=li;var Lo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFloatingPoint(e,r){return(r||new Lo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFloatingPoint(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Lo).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):cy.HALF}static startFloatingPoint(e){e.startObject(1)}static addPrecision(e,r){e.addFieldInt16(0,r,cy.HALF)}static endFloatingPoint(e){return e.endObject()}static createFloatingPoint(e,r){return Lo.startFloatingPoint(e),Lo.addPrecision(e,r),Lo.endFloatingPoint(e)}};J.FloatingPoint=Lo;var os=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUtf8(e,r){return(r||new os).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUtf8(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new os).__init(e.readInt32(e.position())+e.position(),e)}static startUtf8(e){e.startObject(0)}static endUtf8(e){return e.endObject()}static createUtf8(e){return os.startUtf8(e),os.endUtf8(e)}};J.Utf8=os;var fs=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBinary(e,r){return(r||new fs).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBinary(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new fs).__init(e.readInt32(e.position())+e.position(),e)}static startBinary(e){e.startObject(0)}static endBinary(e){return e.endObject()}static createBinary(e){return fs.startBinary(e),fs.endBinary(e)}};J.Binary=fs;var ss=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeUtf8(e,r){return(r||new ss).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeUtf8(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ss).__init(e.readInt32(e.position())+e.position(),e)}static startLargeUtf8(e){e.startObject(0)}static endLargeUtf8(e){return e.endObject()}static createLargeUtf8(e){return ss.startLargeUtf8(e),ss.endLargeUtf8(e)}};J.LargeUtf8=ss;var as=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeBinary(e,r){return(r||new as).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeBinary(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new as).__init(e.readInt32(e.position())+e.position(),e)}static startLargeBinary(e){e.startObject(0)}static endLargeBinary(e){return e.endObject()}static createLargeBinary(e){return as.startLargeBinary(e),as.endLargeBinary(e)}};J.LargeBinary=as;var Vo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeBinary(e,r){return(r||new Vo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeBinary(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Vo).__init(e.readInt32(e.position())+e.position(),e)}byteWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeBinary(e){e.startObject(1)}static addByteWidth(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeBinary(e){return e.endObject()}static createFixedSizeBinary(e,r){return Vo.startFixedSizeBinary(e),Vo.addByteWidth(e,r),Vo.endFixedSizeBinary(e)}};J.FixedSizeBinary=Vo;var ls=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBool(e,r){return(r||new ls).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBool(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ls).__init(e.readInt32(e.position())+e.position(),e)}static startBool(e){e.startObject(0)}static endBool(e){return e.endObject()}static createBool(e){return ls.startBool(e),ls.endBool(e)}};J.Bool=ls;var ui=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDecimal(e,r){return(r||new ui).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDecimal(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ui).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}scale(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):0}bitWidth(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readInt32(this.bb_pos+e):128}static startDecimal(e){e.startObject(3)}static addPrecision(e,r){e.addFieldInt32(0,r,0)}static addScale(e,r){e.addFieldInt32(1,r,0)}static addBitWidth(e,r){e.addFieldInt32(2,r,128)}static endDecimal(e){return e.endObject()}static createDecimal(e,r,n,i){return ui.startDecimal(e),ui.addPrecision(e,r),ui.addScale(e,n),ui.addBitWidth(e,i),ui.endDecimal(e)}};J.Decimal=ui;var Co=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDate(e,r){return(r||new Co).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDate(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Co).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):py.MILLISECOND}static startDate(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,py.MILLISECOND)}static endDate(e){return e.endObject()}static createDate(e,r){return Co.startDate(e),Co.addUnit(e,r),Co.endDate(e)}};J.Date=Co;var eo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTime(e,r){return(r||new eo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTime(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new eo).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):es.MILLISECOND}bitWidth(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):32}static startTime(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,es.MILLISECOND)}static addBitWidth(e,r){e.addFieldInt32(1,r,32)}static endTime(e){return e.endObject()}static createTime(e,r,n){return eo.startTime(e),eo.addUnit(e,r),eo.addBitWidth(e,n),eo.endTime(e)}};J.Time=eo;var to=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTimestamp(e,r){return(r||new to).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTimestamp(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new to).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):es.SECOND}timezone(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startTimestamp(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,es.SECOND)}static addTimezone(e,r){e.addFieldOffset(1,r,0)}static endTimestamp(e){return e.endObject()}static createTimestamp(e,r,n){return to.startTimestamp(e),to.addUnit(e,r),to.addTimezone(e,n),to.endTimestamp(e)}};J.Timestamp=to;var Wo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInterval(e,r){return(r||new Wo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInterval(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Wo).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):dy.YEAR_MONTH}static startInterval(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,dy.YEAR_MONTH)}static endInterval(e){return e.endObject()}static createInterval(e,r){return Wo.startInterval(e),Wo.addUnit(e,r),Wo.endInterval(e)}};J.Interval=Wo;var Ko=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDuration(e,r){return(r||new Ko).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDuration(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ko).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):es.MILLISECOND}static startDuration(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,es.MILLISECOND)}static endDuration(e){return e.endObject()}static createDuration(e,r){return Ko.startDuration(e),Ko.addUnit(e,r),Ko.endDuration(e)}};J.Duration=Ko;var Hn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsKeyValue(e,r){return(r||new Hn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsKeyValue(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Hn).__init(e.readInt32(e.position())+e.position(),e)}key(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}value(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startKeyValue(e){e.startObject(2)}static addKey(e,r){e.addFieldOffset(0,r,0)}static addValue(e,r){e.addFieldOffset(1,r,0)}static endKeyValue(e){return e.endObject()}static createKeyValue(e,r,n){return Hn.startKeyValue(e),Hn.addKey(e,r),Hn.addValue(e,n),Hn.endKeyValue(e)}};J.KeyValue=Hn;var pn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryEncoding(e,r){return(r||new pn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryEncoding(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new pn).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}indexType(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new li).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isOrdered(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}dictionaryKind(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt16(this.bb_pos+e):wy.DenseArray}static startDictionaryEncoding(e){e.startObject(4)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addIndexType(e,r){e.addFieldOffset(1,r,0)}static addIsOrdered(e,r){e.addFieldInt8(2,+r,0)}static addDictionaryKind(e,r){e.addFieldInt16(3,r,wy.DenseArray)}static endDictionaryEncoding(e){return e.endObject()}static createDictionaryEncoding(e,r,n,i,o){return pn.startDictionaryEncoding(e),pn.addId(e,r),pn.addIndexType(e,n),pn.addIsOrdered(e,i),pn.addDictionaryKind(e,o),pn.endDictionaryEncoding(e)}};J.DictionaryEncoding=pn;var yr=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsField(e,r){return(r||new yr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsField(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new yr).__init(e.readInt32(e.position())+e.position(),e)}name(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}nullable(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}typeType(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readUint8(this.bb_pos+e):my.NONE}type(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.__union(e,this.bb_pos+r):null}dictionary(e){let r=this.bb.__offset(this.bb_pos,12);return r?(e||new pn).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}children(e,r){let n=this.bb.__offset(this.bb_pos,14);return n?(r||new yr).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}childrenLength(){let e=this.bb.__offset(this.bb_pos,14);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,16);return n?(r||new Hn).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,16);return e?this.bb.__vector_len(this.bb_pos+e):0}static startField(e){e.startObject(7)}static addName(e,r){e.addFieldOffset(0,r,0)}static addNullable(e,r){e.addFieldInt8(1,+r,0)}static addTypeType(e,r){e.addFieldInt8(2,r,my.NONE)}static addType(e,r){e.addFieldOffset(3,r,0)}static addDictionary(e,r){e.addFieldOffset(4,r,0)}static addChildren(e,r){e.addFieldOffset(5,r,0)}static createChildrenVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startChildrenVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(6,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endField(e){return e.endObject()}static createField(e,r,n,i,o,f,s,u){return yr.startField(e),yr.addName(e,r),yr.addNullable(e,n),yr.addTypeType(e,i),yr.addType(e,o),yr.addDictionary(e,f),yr.addChildren(e,s),yr.addCustomMetadata(e,u),yr.endField(e)}};J.Field=yr;var YI=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}length(){return this.bb.readInt64(this.bb_pos+8)}static createBuffer(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};J.Buffer=YI;var zn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsSchema(e,r){return(r||new zn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsSchema(e,r){return e.setPosition(e.position()+jt.flatbuffers.SIZE_PREFIX_LENGTH),(r||new zn).__init(e.readInt32(e.position())+e.position(),e)}endianness(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):hy.Little}fields(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new yr).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}fieldsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new Hn).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}features(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.readInt64(this.bb.__vector(this.bb_pos+r)+e*8):this.bb.createLong(0,0)}featuresLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}static startSchema(e){e.startObject(4)}static addEndianness(e,r){e.addFieldInt16(0,r,hy.Little)}static addFields(e,r){e.addFieldOffset(1,r,0)}static createFieldsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startFieldsVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(2,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static addFeatures(e,r){e.addFieldOffset(3,r,0)}static createFeaturesVector(e,r){e.startVector(8,r.length,8);for(let n=r.length-1;n>=0;n--)e.addInt64(r[n]);return e.endVector()}static startFeaturesVector(e,r){e.startVector(8,r,8)}static endSchema(e){return e.endObject()}static finishSchemaBuffer(e,r){e.finish(r)}static finishSizePrefixedSchemaBuffer(e,r){e.finish(r,void 0,!0)}static createSchema(e,r,n,i,o){return zn.startSchema(e),zn.addEndianness(e,r),zn.addFields(e,n),zn.addCustomMetadata(e,i),zn.addFeatures(e,o),zn.endSchema(e)}};J.Schema=zn});var Od=B(Ut=>{"use strict";Object.defineProperty(Ut,"__esModule",{value:!0});Ut.Message=Ut.DictionaryBatch=Ut.RecordBatch=Ut.BodyCompression=Ut.FieldNode=Ut.MessageHeader=Ut.BodyCompressionMethod=Ut.CompressionType=void 0;var Ed=Qi(),Ad=Yo(),by;(function(t){t[t.LZ4_FRAME=0]="LZ4_FRAME",t[t.ZSTD=1]="ZSTD"})(by=Ut.CompressionType||(Ut.CompressionType={}));var gy;(function(t){t[t.BUFFER=0]="BUFFER"})(gy=Ut.BodyCompressionMethod||(Ut.BodyCompressionMethod={}));var yy;(function(t){t[t.NONE=0]="NONE",t[t.Schema=1]="Schema",t[t.DictionaryBatch=2]="DictionaryBatch",t[t.RecordBatch=3]="RecordBatch",t[t.Tensor=4]="Tensor",t[t.SparseTensor=5]="SparseTensor"})(yy=Ut.MessageHeader||(Ut.MessageHeader={}));var jy=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}length(){return this.bb.readInt64(this.bb_pos)}nullCount(){return this.bb.readInt64(this.bb_pos+8)}static createFieldNode(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};Ut.FieldNode=jy;var ci=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBodyCompression(e,r){return(r||new ci).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBodyCompression(e,r){return e.setPosition(e.position()+Ed.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ci).__init(e.readInt32(e.position())+e.position(),e)}codec(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt8(this.bb_pos+e):by.LZ4_FRAME}method(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt8(this.bb_pos+e):gy.BUFFER}static startBodyCompression(e){e.startObject(2)}static addCodec(e,r){e.addFieldInt8(0,r,by.LZ4_FRAME)}static addMethod(e,r){e.addFieldInt8(1,r,gy.BUFFER)}static endBodyCompression(e){return e.endObject()}static createBodyCompression(e,r,n){return ci.startBodyCompression(e),ci.addCodec(e,r),ci.addMethod(e,n),ci.endBodyCompression(e)}};Ut.BodyCompression=ci;var dn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsRecordBatch(e,r){return(r||new dn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsRecordBatch(e,r){return e.setPosition(e.position()+Ed.flatbuffers.SIZE_PREFIX_LENGTH),(r||new dn).__init(e.readInt32(e.position())+e.position(),e)}length(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}nodes(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new jy).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}nodesLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}buffers(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new Ad.Buffer).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}buffersLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}compression(e){let r=this.bb.__offset(this.bb_pos,10);return r?(e||new ci).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}static startRecordBatch(e){e.startObject(4)}static addLength(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addNodes(e,r){e.addFieldOffset(1,r,0)}static startNodesVector(e,r){e.startVector(16,r,8)}static addBuffers(e,r){e.addFieldOffset(2,r,0)}static startBuffersVector(e,r){e.startVector(16,r,8)}static addCompression(e,r){e.addFieldOffset(3,r,0)}static endRecordBatch(e){return e.endObject()}static createRecordBatch(e,r,n,i,o){return dn.startRecordBatch(e),dn.addLength(e,r),dn.addNodes(e,n),dn.addBuffers(e,i),dn.addCompression(e,o),dn.endRecordBatch(e)}};Ut.RecordBatch=dn;var pi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryBatch(e,r){return(r||new pi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryBatch(e,r){return e.setPosition(e.position()+Ed.flatbuffers.SIZE_PREFIX_LENGTH),(r||new pi).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}data(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new dn).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isDelta(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startDictionaryBatch(e){e.startObject(3)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addData(e,r){e.addFieldOffset(1,r,0)}static addIsDelta(e,r){e.addFieldInt8(2,+r,0)}static endDictionaryBatch(e){return e.endObject()}static createDictionaryBatch(e,r,n,i){return pi.startDictionaryBatch(e),pi.addId(e,r),pi.addData(e,n),pi.addIsDelta(e,i),pi.endDictionaryBatch(e)}};Ut.DictionaryBatch=pi;var mn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMessage(e,r){return(r||new mn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMessage(e,r){return e.setPosition(e.position()+Ed.flatbuffers.SIZE_PREFIX_LENGTH),(r||new mn).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Ad.MetadataVersion.V1}headerType(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readUint8(this.bb_pos+e):yy.NONE}header(e){let r=this.bb.__offset(this.bb_pos,8);return r?this.bb.__union(e,this.bb_pos+r):null}bodyLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new Ad.KeyValue).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startMessage(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,Ad.MetadataVersion.V1)}static addHeaderType(e,r){e.addFieldInt8(1,r,yy.NONE)}static addHeader(e,r){e.addFieldOffset(2,r,0)}static addBodyLength(e,r){e.addFieldInt64(3,r,e.createLong(0,0))}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endMessage(e){return e.endObject()}static finishMessageBuffer(e,r){e.finish(r)}static finishSizePrefixedMessageBuffer(e,r){e.finish(r,void 0,!0)}static createMessage(e,r,n,i,o,f){return mn.startMessage(e),mn.addVersion(e,r),mn.addHeaderType(e,n),mn.addHeader(e,i),mn.addBodyLength(e,o),mn.addCustomMetadata(e,f),mn.endMessage(e)}};Ut.Message=mn});var bt=B(St=>{"use strict";Object.defineProperty(St,"__esModule",{value:!0});St.BufferType=St.Type=St.MessageHeader=St.MetadataVersion=St.IntervalUnit=St.UnionMode=St.Precision=St.TimeUnit=St.DateUnit=void 0;var aa=Yo();Object.defineProperty(St,"DateUnit",{enumerable:!0,get:function(){return aa.DateUnit}});Object.defineProperty(St,"TimeUnit",{enumerable:!0,get:function(){return aa.TimeUnit}});Object.defineProperty(St,"Precision",{enumerable:!0,get:function(){return aa.Precision}});Object.defineProperty(St,"UnionMode",{enumerable:!0,get:function(){return aa.UnionMode}});Object.defineProperty(St,"IntervalUnit",{enumerable:!0,get:function(){return aa.IntervalUnit}});Object.defineProperty(St,"MetadataVersion",{enumerable:!0,get:function(){return aa.MetadataVersion}});var LR=Od();Object.defineProperty(St,"MessageHeader",{enumerable:!0,get:function(){return LR.MessageHeader}});var VR;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.Float=3]="Float",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct=13]="Struct",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Dictionary=-1]="Dictionary",t[t.Int8=-2]="Int8",t[t.Int16=-3]="Int16",t[t.Int32=-4]="Int32",t[t.Int64=-5]="Int64",t[t.Uint8=-6]="Uint8",t[t.Uint16=-7]="Uint16",t[t.Uint32=-8]="Uint32",t[t.Uint64=-9]="Uint64",t[t.Float16=-10]="Float16",t[t.Float32=-11]="Float32",t[t.Float64=-12]="Float64",t[t.DateDay=-13]="DateDay",t[t.DateMillisecond=-14]="DateMillisecond",t[t.TimestampSecond=-15]="TimestampSecond",t[t.TimestampMillisecond=-16]="TimestampMillisecond",t[t.TimestampMicrosecond=-17]="TimestampMicrosecond",t[t.TimestampNanosecond=-18]="TimestampNanosecond",t[t.TimeSecond=-19]="TimeSecond",t[t.TimeMillisecond=-20]="TimeMillisecond",t[t.TimeMicrosecond=-21]="TimeMicrosecond",t[t.TimeNanosecond=-22]="TimeNanosecond",t[t.DenseUnion=-23]="DenseUnion",t[t.SparseUnion=-24]="SparseUnion",t[t.IntervalDayTime=-25]="IntervalDayTime",t[t.IntervalYearMonth=-26]="IntervalYearMonth"})(VR=St.Type||(St.Type={}));var CR;(function(t){t[t.OFFSET=0]="OFFSET",t[t.DATA=1]="DATA",t[t.VALIDITY=2]="VALIDITY",t[t.TYPE=3]="TYPE"})(CR=St.BufferType||(St.BufferType={}))});var di=B(Wt=>{"use strict";Object.defineProperty(Wt,"__esModule",{value:!0});Wt.popcnt_uint32=Wt.popcnt_array=Wt.popcnt_bit_range=Wt.BitIterator=Wt.packBools=Wt.truncateBitmap=Wt.setBool=Wt.getBit=Wt.getBool=void 0;function GI(t,e,r,n){return(r&1<<n)!=0}Wt.getBool=GI;function ZI(t,e,r,n){return(r&1<<n)>>n}Wt.getBit=ZI;function WR(t,e,r){return r?!!(t[e>>3]|=1<<e%8)||!0:!(t[e>>3]&=~(1<<e%8))&&!1}Wt.setBool=WR;function KR(t,e,r){let n=r.byteLength+7&~7;if(t>0||r.byteLength<n){let i=new Uint8Array(n);return i.set(t%8==0?r.subarray(t>>3):JI(new Fd(r,t,e,null,GI)).subarray(0,n)),i}return r}Wt.truncateBitmap=KR;function JI(t){let e=[],r=0,n=0,i=0;for(let f of t)f&&(i|=1<<n),++n==8&&(e[r++]=i,i=n=0);(r===0||n>0)&&(e[r++]=i);let o=new Uint8Array(e.length+7&~7);return o.set(e),o}Wt.packBools=JI;var Fd=class{constructor(e,r,n,i,o){this.bytes=e,this.length=n,this.context=i,this.get=o,this.bit=r%8,this.byteIndex=r>>3,this.byte=e[this.byteIndex++],this.index=0}next(){return this.index<this.length?(this.bit===8&&(this.bit=0,this.byte=this.bytes[this.byteIndex++]),{value:this.get(this.context,this.index++,this.byte,this.bit++)}):{done:!0,value:null}}[Symbol.iterator](){return this}};Wt.BitIterator=Fd;function _y(t,e,r){if(r-e<=0)return 0;if(r-e<8){let o=0;for(let f of new Fd(t,e,r-e,t,ZI))o+=f;return o}let n=r>>3<<3,i=e+(e%8==0?0:8-e%8);return _y(t,e,i)+_y(t,n,r)+QI(t,i>>3,n-i>>3)}Wt.popcnt_bit_range=_y;function QI(t,e,r){let n=0,i=e|0,o=new DataView(t.buffer,t.byteOffset,t.byteLength),f=r===void 0?t.byteLength:i+r;for(;f-i>=4;)n+=Dd(o.getUint32(i)),i+=4;for(;f-i>=2;)n+=Dd(o.getUint16(i)),i+=2;for(;f-i>=1;)n+=Dd(o.getUint8(i)),i+=1;return n}Wt.popcnt_array=QI;function Dd(t){let e=t|0;return e=e-(e>>>1&1431655765),e=(e&858993459)+(e>>>2&858993459),(e+(e>>>4)&252645135)*16843009>>>24}Wt.popcnt_uint32=Dd});var nt=B(Y=>{"use strict";Object.defineProperty(Y,"__esModule",{value:!0});Y.strideForType=Y.Dictionary=Y.Map_=Y.FixedSizeList=Y.FixedSizeBinary=Y.SparseUnion=Y.DenseUnion=Y.Union=Y.Struct=Y.List=Y.IntervalYearMonth=Y.IntervalDayTime=Y.Interval=Y.TimestampNanosecond=Y.TimestampMicrosecond=Y.TimestampMillisecond=Y.TimestampSecond=Y.Timestamp=Y.TimeNanosecond=Y.TimeMicrosecond=Y.TimeMillisecond=Y.TimeSecond=Y.Time=Y.DateMillisecond=Y.DateDay=Y.Date_=Y.Decimal=Y.Bool=Y.Utf8=Y.Binary=Y.Float64=Y.Float32=Y.Float16=Y.Float=Y.Uint64=Y.Uint32=Y.Uint16=Y.Uint8=Y.Int64=Y.Int32=Y.Int16=Y.Int8=Y.Int=Y.Null=Y.DataType=void 0;var $=bt(),Et=class{static isNull(e){return e&&e.typeId===$.Type.Null}static isInt(e){return e&&e.typeId===$.Type.Int}static isFloat(e){return e&&e.typeId===$.Type.Float}static isBinary(e){return e&&e.typeId===$.Type.Binary}static isUtf8(e){return e&&e.typeId===$.Type.Utf8}static isBool(e){return e&&e.typeId===$.Type.Bool}static isDecimal(e){return e&&e.typeId===$.Type.Decimal}static isDate(e){return e&&e.typeId===$.Type.Date}static isTime(e){return e&&e.typeId===$.Type.Time}static isTimestamp(e){return e&&e.typeId===$.Type.Timestamp}static isInterval(e){return e&&e.typeId===$.Type.Interval}static isList(e){return e&&e.typeId===$.Type.List}static isStruct(e){return e&&e.typeId===$.Type.Struct}static isUnion(e){return e&&e.typeId===$.Type.Union}static isFixedSizeBinary(e){return e&&e.typeId===$.Type.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===$.Type.FixedSizeList}static isMap(e){return e&&e.typeId===$.Type.Map}static isDictionary(e){return e&&e.typeId===$.Type.Dictionary}get typeId(){return $.Type.NONE}};Y.DataType=Et;Et[Symbol.toStringTag]=(t=>(t.children=null,t.ArrayType=Array,t[Symbol.toStringTag]="DataType"))(Et.prototype);var Pd=class extends Et{toString(){return"Null"}get typeId(){return $.Type.Null}};Y.Null=Pd;Pd[Symbol.toStringTag]=(t=>t[Symbol.toStringTag]="Null")(Pd.prototype);var wn=class extends Et{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return $.Type.Int}get ArrayType(){switch(this.bitWidth){case 8:return this.isSigned?Int8Array:Uint8Array;case 16:return this.isSigned?Int16Array:Uint16Array;case 32:return this.isSigned?Int32Array:Uint32Array;case 64:return this.isSigned?Int32Array:Uint32Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`${this.isSigned?"I":"Ui"}nt${this.bitWidth}`}};Y.Int=wn;wn[Symbol.toStringTag]=(t=>(t.isSigned=null,t.bitWidth=null,t[Symbol.toStringTag]="Int"))(wn.prototype);var qy=class extends wn{constructor(){super(!0,8)}};Y.Int8=qy;var vy=class extends wn{constructor(){super(!0,16)}};Y.Int16=vy;var Ty=class extends wn{constructor(){super(!0,32)}};Y.Int32=Ty;var By=class extends wn{constructor(){super(!0,64)}};Y.Int64=By;var ky=class extends wn{constructor(){super(!1,8)}};Y.Uint8=ky;var Iy=class extends wn{constructor(){super(!1,16)}};Y.Uint16=Iy;var xy=class extends wn{constructor(){super(!1,32)}};Y.Uint32=xy;var Sy=class extends wn{constructor(){super(!1,64)}};Y.Uint64=Sy;Object.defineProperty(qy.prototype,"ArrayType",{value:Int8Array});Object.defineProperty(vy.prototype,"ArrayType",{value:Int16Array});Object.defineProperty(Ty.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(By.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(ky.prototype,"ArrayType",{value:Uint8Array});Object.defineProperty(Iy.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(xy.prototype,"ArrayType",{value:Uint32Array});Object.defineProperty(Sy.prototype,"ArrayType",{value:Uint32Array});var us=class extends Et{constructor(e){super();this.precision=e}get typeId(){return $.Type.Float}get ArrayType(){switch(this.precision){case $.Precision.HALF:return Uint16Array;case $.Precision.SINGLE:return Float32Array;case $.Precision.DOUBLE:return Float64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`Float${this.precision<<5||16}`}};Y.Float=us;us[Symbol.toStringTag]=(t=>(t.precision=null,t[Symbol.toStringTag]="Float"))(us.prototype);var Ey=class extends us{constructor(){super($.Precision.HALF)}};Y.Float16=Ey;var Ay=class extends us{constructor(){super($.Precision.SINGLE)}};Y.Float32=Ay;var Oy=class extends us{constructor(){super($.Precision.DOUBLE)}};Y.Float64=Oy;Object.defineProperty(Ey.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Ay.prototype,"ArrayType",{value:Float32Array});Object.defineProperty(Oy.prototype,"ArrayType",{value:Float64Array});var Nd=class extends Et{constructor(){super()}get typeId(){return $.Type.Binary}toString(){return"Binary"}};Y.Binary=Nd;Nd[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Binary"))(Nd.prototype);var Rd=class extends Et{constructor(){super()}get typeId(){return $.Type.Utf8}toString(){return"Utf8"}};Y.Utf8=Rd;Rd[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Utf8"))(Rd.prototype);var Hd=class extends Et{constructor(){super()}get typeId(){return $.Type.Bool}toString(){return"Bool"}};Y.Bool=Hd;Hd[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Bool"))(Hd.prototype);var zd=class extends Et{constructor(e,r){super();this.scale=e,this.precision=r}get typeId(){return $.Type.Decimal}toString(){return`Decimal[${this.precision}e${this.scale>0?"+":""}${this.scale}]`}};Y.Decimal=zd;zd[Symbol.toStringTag]=(t=>(t.scale=null,t.precision=null,t.ArrayType=Uint32Array,t[Symbol.toStringTag]="Decimal"))(zd.prototype);var la=class extends Et{constructor(e){super();this.unit=e}get typeId(){return $.Type.Date}toString(){return`Date${(this.unit+1)*32}<${$.DateUnit[this.unit]}>`}};Y.Date_=la;la[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Date"))(la.prototype);var XI=class extends la{constructor(){super($.DateUnit.DAY)}};Y.DateDay=XI;var $I=class extends la{constructor(){super($.DateUnit.MILLISECOND)}};Y.DateMillisecond=$I;var Go=class extends Et{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return $.Type.Time}toString(){return`Time${this.bitWidth}<${$.TimeUnit[this.unit]}>`}};Y.Time=Go;Go[Symbol.toStringTag]=(t=>(t.unit=null,t.bitWidth=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Time"))(Go.prototype);var e1=class extends Go{constructor(){super($.TimeUnit.SECOND,32)}};Y.TimeSecond=e1;var t1=class extends Go{constructor(){super($.TimeUnit.MILLISECOND,32)}};Y.TimeMillisecond=t1;var r1=class extends Go{constructor(){super($.TimeUnit.MICROSECOND,64)}};Y.TimeMicrosecond=r1;var n1=class extends Go{constructor(){super($.TimeUnit.NANOSECOND,64)}};Y.TimeNanosecond=n1;var Zo=class extends Et{constructor(e,r){super();this.unit=e,this.timezone=r}get typeId(){return $.Type.Timestamp}toString(){return`Timestamp<${$.TimeUnit[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}};Y.Timestamp=Zo;Zo[Symbol.toStringTag]=(t=>(t.unit=null,t.timezone=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Timestamp"))(Zo.prototype);var i1=class extends Zo{constructor(e){super($.TimeUnit.SECOND,e)}};Y.TimestampSecond=i1;var o1=class extends Zo{constructor(e){super($.TimeUnit.MILLISECOND,e)}};Y.TimestampMillisecond=o1;var f1=class extends Zo{constructor(e){super($.TimeUnit.MICROSECOND,e)}};Y.TimestampMicrosecond=f1;var s1=class extends Zo{constructor(e){super($.TimeUnit.NANOSECOND,e)}};Y.TimestampNanosecond=s1;var ua=class extends Et{constructor(e){super();this.unit=e}get typeId(){return $.Type.Interval}toString(){return`Interval<${$.IntervalUnit[this.unit]}>`}};Y.Interval=ua;ua[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Interval"))(ua.prototype);var a1=class extends ua{constructor(){super($.IntervalUnit.DAY_TIME)}};Y.IntervalDayTime=a1;var l1=class extends ua{constructor(){super($.IntervalUnit.YEAR_MONTH)}};Y.IntervalYearMonth=l1;var Ud=class extends Et{constructor(e){super();this.children=[e]}get typeId(){return $.Type.List}toString(){return`List<${this.valueType}>`}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}};Y.List=Ud;Ud[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="List"))(Ud.prototype);var Md=class extends Et{constructor(e){super();this.children=e}get typeId(){return $.Type.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};Y.Struct=Md;Md[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="Struct"))(Md.prototype);var ca=class extends Et{constructor(e,r,n){super();this.mode=e,this.children=n,this.typeIds=r=Int32Array.from(r),this.typeIdToChildIndex=r.reduce((i,o,f)=>(i[o]=f)&&i||i,Object.create(null))}get typeId(){return $.Type.Union}toString(){return`${this[Symbol.toStringTag]}<${this.children.map(e=>`${e.type}`).join(" | ")}>`}};Y.Union=ca;ca[Symbol.toStringTag]=(t=>(t.mode=null,t.typeIds=null,t.children=null,t.typeIdToChildIndex=null,t.ArrayType=Int8Array,t[Symbol.toStringTag]="Union"))(ca.prototype);var u1=class extends ca{constructor(e,r){super($.UnionMode.Dense,e,r)}};Y.DenseUnion=u1;var c1=class extends ca{constructor(e,r){super($.UnionMode.Sparse,e,r)}};Y.SparseUnion=c1;var Ld=class extends Et{constructor(e){super();this.byteWidth=e}get typeId(){return $.Type.FixedSizeBinary}toString(){return`FixedSizeBinary[${this.byteWidth}]`}};Y.FixedSizeBinary=Ld;Ld[Symbol.toStringTag]=(t=>(t.byteWidth=null,t.ArrayType=Uint8Array,t[Symbol.toStringTag]="FixedSizeBinary"))(Ld.prototype);var Vd=class extends Et{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return $.Type.FixedSizeList}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}toString(){return`FixedSizeList[${this.listSize}]<${this.valueType}>`}};Y.FixedSizeList=Vd;Vd[Symbol.toStringTag]=(t=>(t.children=null,t.listSize=null,t[Symbol.toStringTag]="FixedSizeList"))(Vd.prototype);var Cd=class extends Et{constructor(e,r=!1){super();this.children=[e],this.keysSorted=r}get typeId(){return $.Type.Map}get keyType(){return this.children[0].type.children[0].type}get valueType(){return this.children[0].type.children[1].type}toString(){return`Map<{${this.children[0].type.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};Y.Map_=Cd;Cd[Symbol.toStringTag]=(t=>(t.children=null,t.keysSorted=null,t[Symbol.toStringTag]="Map_"))(Cd.prototype);var YR=(t=>()=>++t)(-1),Wd=class extends Et{constructor(e,r,n,i){super();this.indices=r,this.dictionary=e,this.isOrdered=i||!1,this.id=n==null?YR():typeof n=="number"?n:n.low}get typeId(){return $.Type.Dictionary}get children(){return this.dictionary.children}get valueType(){return this.dictionary}get ArrayType(){return this.dictionary.ArrayType}toString(){return`Dictionary<${this.indices}, ${this.dictionary}>`}};Y.Dictionary=Wd;Wd[Symbol.toStringTag]=(t=>(t.id=null,t.indices=null,t.isOrdered=null,t.dictionary=null,t[Symbol.toStringTag]="Dictionary"))(Wd.prototype);function GR(t){let e=t;switch(t.typeId){case $.Type.Decimal:return 4;case $.Type.Timestamp:return 2;case $.Type.Date:return 1+e.unit;case $.Type.Interval:return 1+e.unit;case $.Type.Int:return 1+ +(e.bitWidth>32);case $.Type.Time:return 1+ +(e.bitWidth>32);case $.Type.FixedSizeList:return e.listSize;case $.Type.FixedSizeBinary:return e.byteWidth;default:return 1}}Y.strideForType=GR});var Un=B(cs=>{"use strict";Object.defineProperty(cs,"__esModule",{value:!0});cs.Data=cs.kUnknownNullCount=void 0;var ZR=di(),JR=di(),fe=bt(),QR=nt(),Ye=Xt();cs.kUnknownNullCount=-1;var ke=class{constructor(e,r,n,i,o,f,s){this.type=e,this.dictionary=s,this.offset=Math.floor(Math.max(r||0,0)),this.length=Math.floor(Math.max(n||0,0)),this._nullCount=Math.floor(Math.max(i||0,-1)),this.childData=(f||[]).map(l=>l instanceof ke?l:l.data);let u;o instanceof ke?(this.stride=o.stride,this.values=o.values,this.typeIds=o.typeIds,this.nullBitmap=o.nullBitmap,this.valueOffsets=o.valueOffsets):(this.stride=QR.strideForType(e),o&&((u=o[0])&&(this.valueOffsets=u),(u=o[1])&&(this.values=u),(u=o[2])&&(this.nullBitmap=u),(u=o[3])&&(this.typeIds=u)))}get typeId(){return this.type.typeId}get ArrayType(){return this.type.ArrayType}get buffers(){return[this.valueOffsets,this.values,this.nullBitmap,this.typeIds]}get byteLength(){let e=0,{valueOffsets:r,values:n,nullBitmap:i,typeIds:o}=this;return r&&(e+=r.byteLength),n&&(e+=n.byteLength),i&&(e+=i.byteLength),o&&(e+=o.byteLength),this.childData.reduce((f,s)=>f+s.byteLength,e)}get nullCount(){let e=this._nullCount,r;return e<=cs.kUnknownNullCount&&(r=this.nullBitmap)&&(this._nullCount=e=this.length-JR.popcnt_bit_range(r,this.offset,this.offset+this.length)),e}clone(e,r=this.offset,n=this.length,i=this._nullCount,o=this,f=this.childData){return new ke(e,r,n,i,o,f,this.dictionary)}slice(e,r){let{stride:n,typeId:i,childData:o}=this,f=+(this._nullCount===0)-1,s=i===16?n:1,u=this._sliceBuffers(e,r,n,i);return this.clone(this.type,this.offset+e,r,f,u,!o.length||this.valueOffsets?o:this._sliceChildren(o,s*e,s*r))}_changeLengthAndBackfillNullBitmap(e){if(this.typeId===fe.Type.Null)return this.clone(this.type,0,e,0);let{length:r,nullCount:n}=this,i=new Uint8Array((e+63&~63)>>3).fill(255,0,r>>3);i[r>>3]=(1<<r-(r&~7))-1,n>0&&i.set(ZR.truncateBitmap(this.offset,r,this.nullBitmap),0);let o=this.buffers;return o[fe.BufferType.VALIDITY]=i,this.clone(this.type,0,e,n+(e-r),o)}_sliceBuffers(e,r,n,i){let o,{buffers:f}=this;return(o=f[fe.BufferType.TYPE])&&(f[fe.BufferType.TYPE]=o.subarray(e,e+r)),(o=f[fe.BufferType.OFFSET])&&(f[fe.BufferType.OFFSET]=o.subarray(e,e+r+1))||(o=f[fe.BufferType.DATA])&&(f[fe.BufferType.DATA]=i===6?o:o.subarray(n*e,n*(e+r))),f}_sliceChildren(e,r,n){return e.map(i=>i.slice(r,n))}static new(e,r,n,i,o,f,s){switch(o instanceof ke?o=o.buffers:o||(o=[]),e.typeId){case fe.Type.Null:return ke.Null(e,r,n);case fe.Type.Int:return ke.Int(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Dictionary:return ke.Dictionary(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[],s);case fe.Type.Float:return ke.Float(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Bool:return ke.Bool(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Decimal:return ke.Decimal(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Date:return ke.Date(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Time:return ke.Time(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Timestamp:return ke.Timestamp(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Interval:return ke.Interval(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.FixedSizeBinary:return ke.FixedSizeBinary(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.DATA]||[]);case fe.Type.Binary:return ke.Binary(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],o[fe.BufferType.DATA]||[]);case fe.Type.Utf8:return ke.Utf8(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],o[fe.BufferType.DATA]||[]);case fe.Type.List:return ke.List(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],(f||[])[0]);case fe.Type.FixedSizeList:return ke.FixedSizeList(e,r,n,i||0,o[fe.BufferType.VALIDITY],(f||[])[0]);case fe.Type.Struct:return ke.Struct(e,r,n,i||0,o[fe.BufferType.VALIDITY],f||[]);case fe.Type.Map:return ke.Map(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.OFFSET]||[],(f||[])[0]);case fe.Type.Union:return ke.Union(e,r,n,i||0,o[fe.BufferType.VALIDITY],o[fe.BufferType.TYPE]||[],o[fe.BufferType.OFFSET]||f,f)}throw new Error(`Unrecognized typeId ${e.typeId}`)}static Null(e,r,n){return new ke(e,r,n,0)}static Int(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Dictionary(e,r,n,i,o,f,s){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.indices.ArrayType,f),Ye.toUint8Array(o)],[],s)}static Float(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Bool(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Decimal(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Date(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Time(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Timestamp(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Interval(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static FixedSizeBinary(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,Ye.toArrayBufferView(e.ArrayType,f),Ye.toUint8Array(o)])}static Binary(e,r,n,i,o,f,s){return new ke(e,r,n,i,[Ye.toInt32Array(f),Ye.toUint8Array(s),Ye.toUint8Array(o)])}static Utf8(e,r,n,i,o,f,s){return new ke(e,r,n,i,[Ye.toInt32Array(f),Ye.toUint8Array(s),Ye.toUint8Array(o)])}static List(e,r,n,i,o,f,s){return new ke(e,r,n,i,[Ye.toInt32Array(f),void 0,Ye.toUint8Array(o)],s?[s]:[])}static FixedSizeList(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,void 0,Ye.toUint8Array(o)],f?[f]:[])}static Struct(e,r,n,i,o,f){return new ke(e,r,n,i,[void 0,void 0,Ye.toUint8Array(o)],f)}static Map(e,r,n,i,o,f,s){return new ke(e,r,n,i,[Ye.toInt32Array(f),void 0,Ye.toUint8Array(o)],s?[s]:[])}static Union(e,r,n,i,o,f,s,u){let l=[void 0,void 0,Ye.toUint8Array(o),Ye.toArrayBufferView(e.ArrayType,f)];return e.mode===fe.UnionMode.Sparse?new ke(e,r,n,i,l,s):(l[fe.BufferType.OFFSET]=Ye.toInt32Array(s),new ke(e,r,n,i,l,u))}};cs.Data=ke;ke.prototype.childData=Object.freeze([])});var Fy=B(Kd=>{"use strict";Object.defineProperty(Kd,"__esModule",{value:!0});Kd.valueToString=void 0;var XR=void 0;function $R(t){if(t===null)return"null";if(t===XR)return"undefined";switch(typeof t){case"number":return`${t}`;case"bigint":return`${t}`;case"string":return`"${t}"`}return typeof t[Symbol.toPrimitive]=="function"?t[Symbol.toPrimitive]("string"):ArrayBuffer.isView(t)?`[${t}]`:JSON.stringify(t)}Kd.valueToString=$R});var p1=B(Yd=>{"use strict";Object.defineProperty(Yd,"__esModule",{value:!0});Yd.createIsValidFunction=void 0;var Dy=Fy(),eH=gr();function tH(t){if(!t||t.length<=0)return function(i){return!0};let e="",r=t.filter(n=>n===n);return r.length>0&&(e=`
21
21
  switch (x) {${r.map(n=>`
22
- case ${WR(n)}:`).join("")}
22
+ case ${rH(n)}:`).join("")}
23
23
  return false;
24
24
  }`),t.length!==r.length&&(e=`if (x !== x) return false;
25
25
  ${e}`),new Function("x",`${e}
26
- return true;`)}zd.createIsValidFunction=CR;function WR(t){return typeof t!="bigint"?Fy.valueToString(t):VR.BigIntAvailable?`${Fy.valueToString(t)}n`:`"${Fy.valueToString(t)}"`}});var Co=k(wn=>{"use strict";Object.defineProperty(wn,"__esModule",{value:!0});wn.WideBufferBuilder=wn.OffsetsBufferBuilder=wn.BitmapBufferBuilder=wn.DataBufferBuilder=wn.BufferBuilder=void 0;var l1=Xt(),Dy=gr(),Ny=(t,e)=>(t*e+63&~63||64)/e,KR=(t,e=0)=>t.length>=e?t.subarray(0,e):l1.memcpy(new t.constructor(e),t,0),qu=class{constructor(e,r=1){this.buffer=e,this.stride=r,this.BYTES_PER_ELEMENT=e.BYTES_PER_ELEMENT,this.ArrayType=e.constructor,this._resize(this.length=e.length/r|0)}get byteLength(){return this.length*this.stride*this.BYTES_PER_ELEMENT|0}get reservedLength(){return this.buffer.length/this.stride}get reservedByteLength(){return this.buffer.byteLength}set(e,r){return this}append(e){return this.set(this.length,e)}reserve(e){if(e>0){this.length+=e;let r=this.stride,n=this.length*r,i=this.buffer.length;n>=i&&this._resize(i===0?Ny(n*1,this.BYTES_PER_ELEMENT):Ny(n*2,this.BYTES_PER_ELEMENT))}return this}flush(e=this.length){e=Ny(e*this.stride,this.BYTES_PER_ELEMENT);let r=KR(this.buffer,e);return this.clear(),r}clear(){return this.length=0,this._resize(0),this}_resize(e){return this.buffer=l1.memcpy(new this.ArrayType(e),this.buffer)}};wn.BufferBuilder=qu;qu.prototype.offset=0;var Ld=class extends qu{last(){return this.get(this.length-1)}get(e){return this.buffer[e]}set(e,r){return this.reserve(e-this.length+1),this.buffer[e*this.stride]=r,this}};wn.DataBufferBuilder=Ld;var u1=class extends Ld{constructor(e=new Uint8Array(0)){super(e,1/8);this.numValid=0}get numInvalid(){return this.length-this.numValid}get(e){return this.buffer[e>>3]>>e%8&1}set(e,r){let{buffer:n}=this.reserve(e-this.length+1),i=e>>3,o=e%8,f=n[i]>>o&1;return r?f===0&&(n[i]|=1<<o,++this.numValid):f===1&&(n[i]&=~(1<<o),--this.numValid),this}clear(){return this.numValid=0,super.clear()}};wn.BitmapBufferBuilder=u1;var c1=class extends Ld{constructor(e=new Int32Array(1)){super(e,1)}append(e){return this.set(this.length-1,e)}set(e,r){let n=this.length-1,i=this.reserve(e-n+1).buffer;return n<e++&&i.fill(i[n],n,e),i[e]=i[e-1]+r,this}flush(e=this.length-1){return e>this.length&&this.set(e-1,0),super.flush(e+1)}};wn.OffsetsBufferBuilder=c1;var p1=class extends qu{get ArrayType64(){return this._ArrayType64||(this._ArrayType64=this.buffer instanceof Int32Array?Dy.BigInt64Array:Dy.BigUint64Array)}set(e,r){switch(this.reserve(e-this.length+1),typeof r){case"bigint":this.buffer64[e]=r;break;case"number":this.buffer[e*this.stride]=r;break;default:this.buffer.set(r,e*this.stride)}return this}_resize(e){let r=super._resize(e),n=r.byteLength/(this.BYTES_PER_ELEMENT*this.stride);return Dy.BigIntAvailable&&(this.buffer64=new this.ArrayType64(r.buffer,r.byteOffset,n)),r}};wn.WideBufferBuilder=p1});var At=k(Wo=>{"use strict";Object.defineProperty(Wo,"__esModule",{value:!0});Wo.VariableWidthBuilder=Wo.FixedWidthBuilder=Wo.Builder=void 0;var YR=Ut(),$s=bt(),GR=Un(),ZR=a1(),Py=Co(),JR=nt(),hn=class{constructor({type:e,nullValues:r}){this.length=0,this.finished=!1,this.type=e,this.children=[],this.nullValues=r,this.stride=JR.strideForType(e),this._nulls=new Py.BitmapBufferBuilder,r&&r.length>0&&(this._isValid=ZR.createIsValidFunction(r))}static new(e){}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e){throw new Error('"throughDOM" not available in this environment')}static throughIterable(e){return QR(e)}static throughAsyncIterable(e){return XR(e)}toVector(){return YR.Vector.new(this.flush())}get ArrayType(){return this.type.ArrayType}get nullCount(){return this._nulls.numInvalid}get numChildren(){return this.children.length}get byteLength(){let e=0;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),this._typeIds&&(e+=this._typeIds.byteLength),this.children.reduce((r,n)=>r+n.byteLength,e)}get reservedLength(){return this._nulls.reservedLength}get reservedByteLength(){let e=0;return this._offsets&&(e+=this._offsets.reservedByteLength),this._values&&(e+=this._values.reservedByteLength),this._nulls&&(e+=this._nulls.reservedByteLength),this._typeIds&&(e+=this._typeIds.reservedByteLength),this.children.reduce((r,n)=>r+n.reservedByteLength,e)}get valueOffsets(){return this._offsets?this._offsets.buffer:null}get values(){return this._values?this._values.buffer:null}get nullBitmap(){return this._nulls?this._nulls.buffer:null}get typeIds(){return this._typeIds?this._typeIds.buffer:null}append(e){return this.set(this.length,e)}isValid(e){return this._isValid(e)}set(e,r){return this.setValid(e,this.isValid(r))&&this.setValue(e,r),this}setValue(e,r){this._setValue(this,e,r)}setValid(e,r){return this.length=this._nulls.set(e,+r).length,r}addChild(e,r=`${this.numChildren}`){throw new Error(`Cannot append children to non-nested type "${this.type}"`)}getChildAt(e){return this.children[e]||null}flush(){let e=[],r=this._values,n=this._offsets,i=this._typeIds,{length:o,nullCount:f}=this;i?(e[$s.BufferType.TYPE]=i.flush(o),n&&(e[$s.BufferType.OFFSET]=n.flush(o))):n?(r&&(e[$s.BufferType.DATA]=r.flush(n.last())),e[$s.BufferType.OFFSET]=n.flush(o)):r&&(e[$s.BufferType.DATA]=r.flush(o)),f>0&&(e[$s.BufferType.VALIDITY]=this._nulls.flush(o));let s=GR.Data.new(this.type,0,o,f,e,this.children.map(u=>u.flush()));return this.clear(),s}finish(){return this.finished=!0,this.children.forEach(e=>e.finish()),this}clear(){return this.length=0,this._offsets&&this._offsets.clear(),this._values&&this._values.clear(),this._nulls&&this._nulls.clear(),this._typeIds&&this._typeIds.clear(),this.children.forEach(e=>e.clear()),this}};Wo.Builder=hn;hn.prototype.length=1;hn.prototype.stride=1;hn.prototype.children=null;hn.prototype.finished=!1;hn.prototype.nullValues=null;hn.prototype._isValid=()=>!0;var d1=class extends hn{constructor(e){super(e);this._values=new Py.DataBufferBuilder(new this.ArrayType(0),this.stride)}setValue(e,r){let n=this._values;return n.reserve(e-n.length+1),super.setValue(e,r)}};Wo.FixedWidthBuilder=d1;var m1=class extends hn{constructor(e){super(e);this._pendingLength=0,this._offsets=new Py.OffsetsBufferBuilder}setValue(e,r){let n=this._pending||(this._pending=new Map),i=n.get(e);i&&(this._pendingLength-=i.length),this._pendingLength+=r.length,n.set(e,r)}setValid(e,r){return super.setValid(e,r)?!0:((this._pending||(this._pending=new Map)).set(e,void 0),!1)}clear(){return this._pendingLength=0,this._pending=void 0,super.clear()}flush(){return this._flush(),super.flush()}finish(){return this._flush(),super.finish()}_flush(){let e=this._pending,r=this._pendingLength;return this._pendingLength=0,this._pending=void 0,e&&e.size>0&&this._flushPending(e,r),this}};Wo.VariableWidthBuilder=m1;function QR(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return function*(i){let o=0,f=hn.new(t);for(let s of i)f.append(s)[n]>=r&&++o&&(yield f.toVector());(f.finish().length>0||o===0)&&(yield f.toVector())}}function XR(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return async function*(i){let o=0,f=hn.new(t);for await(let s of i)f.append(s)[n]>=r&&++o&&(yield f.toVector());(f.finish().length>0||o===0)&&(yield f.toVector())}}});var Ry=k(Vd=>{"use strict";Object.defineProperty(Vd,"__esModule",{value:!0});Vd.BoolBuilder=void 0;var $R=Co(),eH=At(),w1=class extends eH.Builder{constructor(e){super(e);this._values=new $R.BitmapBufferBuilder}setValue(e,r){this._values.set(e,+r)}};Vd.BoolBuilder=w1});var Hy=k(Cd=>{"use strict";Object.defineProperty(Cd,"__esModule",{value:!0});Cd.NullBuilder=void 0;var tH=At(),h1=class extends tH.Builder{setValue(e,r){}setValid(e,r){return this.length=Math.max(e+1,this.length),r}};Cd.NullBuilder=h1});var Uy=k(Ko=>{"use strict";Object.defineProperty(Ko,"__esModule",{value:!0});Ko.DateMillisecondBuilder=Ko.DateDayBuilder=Ko.DateBuilder=void 0;var rH=At(),Wd=class extends rH.FixedWidthBuilder{};Ko.DateBuilder=Wd;var b1=class extends Wd{};Ko.DateDayBuilder=b1;var g1=class extends Wd{};Ko.DateMillisecondBuilder=g1});var My=k(Kd=>{"use strict";Object.defineProperty(Kd,"__esModule",{value:!0});Kd.DecimalBuilder=void 0;var nH=At(),y1=class extends nH.FixedWidthBuilder{};Kd.DecimalBuilder=y1});var Ly=k(Yd=>{"use strict";Object.defineProperty(Yd,"__esModule",{value:!0});Yd.DictionaryBuilder=void 0;var iH=nt(),zy=At(),j1=class extends zy.Builder{constructor({type:e,nullValues:r,dictionaryHashFunction:n}){super({type:new iH.Dictionary(e.dictionary,e.indices,e.id,e.isOrdered)});this._nulls=null,this._dictionaryOffset=0,this._keysToIndices=Object.create(null),this.indices=zy.Builder.new({type:this.type.indices,nullValues:r}),this.dictionary=zy.Builder.new({type:this.type.dictionary,nullValues:null}),typeof n=="function"&&(this.valueToKey=n)}get values(){return this.indices.values}get nullCount(){return this.indices.nullCount}get nullBitmap(){return this.indices.nullBitmap}get byteLength(){return this.indices.byteLength+this.dictionary.byteLength}get reservedLength(){return this.indices.reservedLength+this.dictionary.reservedLength}get reservedByteLength(){return this.indices.reservedByteLength+this.dictionary.reservedByteLength}isValid(e){return this.indices.isValid(e)}setValid(e,r){let n=this.indices;return r=n.setValid(e,r),this.length=n.length,r}setValue(e,r){let n=this._keysToIndices,i=this.valueToKey(r),o=n[i];return o===void 0&&(n[i]=o=this._dictionaryOffset+this.dictionary.append(r).length-1),this.indices.setValue(e,o)}flush(){let e=this.type,r=this._dictionary,n=this.dictionary.toVector(),i=this.indices.flush().clone(e);return i.dictionary=r?r.concat(n):n,this.finished||(this._dictionaryOffset+=n.length),this._dictionary=i.dictionary,this.clear(),i}finish(){return this.indices.finish(),this.dictionary.finish(),this._dictionaryOffset=0,this._keysToIndices=Object.create(null),super.finish()}clear(){return this.indices.clear(),this.dictionary.clear(),super.clear()}valueToKey(e){return typeof e=="string"?e:`${e}`}};Yd.DictionaryBuilder=j1});var Vy=k(Gd=>{"use strict";Object.defineProperty(Gd,"__esModule",{value:!0});Gd.FixedSizeBinaryBuilder=void 0;var oH=At(),_1=class extends oH.FixedWidthBuilder{};Gd.FixedSizeBinaryBuilder=_1});var vu=k(ta=>{"use strict";Object.defineProperty(ta,"__esModule",{value:!0});ta.float64ToUint16=ta.uint16ToFloat64=void 0;var q1=new Float64Array(1),ea=new Uint32Array(q1.buffer);function fH(t){let e=(t&31744)>>10,r=(t&1023)/1024,n=(-1)**((t&32768)>>15);switch(e){case 31:return n*(r?NaN:1/0);case 0:return n*(r?6103515625e-14*r:0)}return n*2**(e-15)*(1+r)}ta.uint16ToFloat64=fH;function sH(t){if(t!==t)return 32256;q1[0]=t;let e=(ea[1]&2147483648)>>16&65535,r=ea[1]&2146435072,n=0;return r>=1089470464?ea[0]>0?r=31744:(r=(r&2080374784)>>16,n=(ea[1]&1048575)>>10):r<=1056964608?(n=1048576+(ea[1]&1048575),n=1048576+(n<<(r>>20)-998)>>21,r=0):(r=r-1056964608>>10,n=(ea[1]&1048575)+512>>10),e|r|n&65535}ta.float64ToUint16=sH});var Cy=k(ci=>{"use strict";Object.defineProperty(ci,"__esModule",{value:!0});ci.Float64Builder=ci.Float32Builder=ci.Float16Builder=ci.FloatBuilder=void 0;var aH=vu(),lH=At(),Tu=class extends lH.FixedWidthBuilder{};ci.FloatBuilder=Tu;var v1=class extends Tu{setValue(e,r){this._values.set(e,aH.float64ToUint16(r))}};ci.Float16Builder=v1;var T1=class extends Tu{setValue(e,r){this._values.set(e,r)}};ci.Float32Builder=T1;var k1=class extends Tu{setValue(e,r){this._values.set(e,r)}};ci.Float64Builder=k1});var Iu=k($t=>{"use strict";Object.defineProperty($t,"__esModule",{value:!0});$t.BN=$t.bignumToBigInt=$t.bignumToString=$t.isArrowBigNumSymbol=void 0;var uH=Xt(),ku=gr();$t.isArrowBigNumSymbol=Symbol.for("isArrowBigNum");function Mn(t,...e){return e.length===0?Object.setPrototypeOf(uH.toArrayBufferView(this.TypedArray,t),this.constructor.prototype):Object.setPrototypeOf(new this.TypedArray(t,...e),this.constructor.prototype)}Mn.prototype[$t.isArrowBigNumSymbol]=!0;Mn.prototype.toJSON=function(){return`"${$t.bignumToString(this)}"`};Mn.prototype.valueOf=function(){return B1(this)};Mn.prototype.toString=function(){return $t.bignumToString(this)};Mn.prototype[Symbol.toPrimitive]=function(t="default"){switch(t){case"number":return B1(this);case"string":return $t.bignumToString(this);case"default":return $t.bignumToBigInt(this)}return $t.bignumToString(this)};function ra(...t){return Mn.apply(this,t)}function na(...t){return Mn.apply(this,t)}function Bu(...t){return Mn.apply(this,t)}Object.setPrototypeOf(ra.prototype,Object.create(Int32Array.prototype));Object.setPrototypeOf(na.prototype,Object.create(Uint32Array.prototype));Object.setPrototypeOf(Bu.prototype,Object.create(Uint32Array.prototype));Object.assign(ra.prototype,Mn.prototype,{constructor:ra,signed:!0,TypedArray:Int32Array,BigIntArray:ku.BigInt64Array});Object.assign(na.prototype,Mn.prototype,{constructor:na,signed:!1,TypedArray:Uint32Array,BigIntArray:ku.BigUint64Array});Object.assign(Bu.prototype,Mn.prototype,{constructor:Bu,signed:!0,TypedArray:Uint32Array,BigIntArray:ku.BigUint64Array});function B1(t){let{buffer:e,byteOffset:r,length:n,signed:i}=t,o=new Int32Array(e,r,n),f=0,s=0,u=o.length,l,c;for(;s<u;)c=o[s++],l=o[s++],i||(l=l>>>0),f+=(c>>>0)+l*s**32;return f}ku.BigIntAvailable?($t.bignumToBigInt=t=>t.byteLength===8?new t.BigIntArray(t.buffer,t.byteOffset,1)[0]:Wy(t),$t.bignumToString=t=>t.byteLength===8?`${new t.BigIntArray(t.buffer,t.byteOffset,1)[0]}`:Wy(t)):($t.bignumToString=Wy,$t.bignumToBigInt=$t.bignumToString);function Wy(t){let e="",r=new Uint32Array(2),n=new Uint16Array(t.buffer,t.byteOffset,t.byteLength/2),i=new Uint32Array((n=new Uint16Array(n).reverse()).buffer),o=-1,f=n.length-1;do{for(r[0]=n[o=0];o<f;)n[o++]=r[1]=r[0]/10,r[0]=(r[0]-r[1]*10<<16)+n[o];n[o]=r[1]=r[0]/10,r[0]=r[0]-r[1]*10,e=`${r[0]}${e}`}while(i[0]||i[1]||i[2]||i[3]);return e||"0"}var Zd=class{static new(e,r){switch(r){case!0:return new ra(e);case!1:return new na(e)}switch(e.constructor){case Int8Array:case Int16Array:case Int32Array:case ku.BigInt64Array:return new ra(e)}return e.byteLength===16?new Bu(e):new na(e)}static signed(e){return new ra(e)}static unsigned(e){return new na(e)}static decimal(e){return new Bu(e)}constructor(e,r){return Zd.new(e,r)}};$t.BN=Zd});var Ky=k(Kt=>{"use strict";Object.defineProperty(Kt,"__esModule",{value:!0});Kt.Uint64Builder=Kt.Uint32Builder=Kt.Uint16Builder=Kt.Uint8Builder=Kt.Int64Builder=Kt.Int32Builder=Kt.Int16Builder=Kt.Int8Builder=Kt.IntBuilder=void 0;var cH=Iu(),I1=Co(),pH=gr(),dH=At(),pi=class extends dH.FixedWidthBuilder{setValue(e,r){this._values.set(e,r)}};Kt.IntBuilder=pi;var x1=class extends pi{};Kt.Int8Builder=x1;var S1=class extends pi{};Kt.Int16Builder=S1;var E1=class extends pi{};Kt.Int32Builder=E1;var A1=class extends pi{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(Jd));super(e);this._values=new I1.WideBufferBuilder(new Int32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(Jd(e))}};Kt.Int64Builder=A1;var O1=class extends pi{};Kt.Uint8Builder=O1;var F1=class extends pi{};Kt.Uint16Builder=F1;var D1=class extends pi{};Kt.Uint32Builder=D1;var N1=class extends pi{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(Jd));super(e);this._values=new I1.WideBufferBuilder(new Uint32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(Jd(e))}};Kt.Uint64Builder=N1;var Jd=(t=>e=>(ArrayBuffer.isView(e)&&(t.buffer=e.buffer,t.byteOffset=e.byteOffset,t.byteLength=e.byteLength,e=cH.bignumToBigInt(t),t.buffer=null),e))({BigIntArray:pH.BigInt64Array})});var Yy=k(bn=>{"use strict";Object.defineProperty(bn,"__esModule",{value:!0});bn.TimeNanosecondBuilder=bn.TimeMicrosecondBuilder=bn.TimeMillisecondBuilder=bn.TimeSecondBuilder=bn.TimeBuilder=void 0;var mH=At(),ia=class extends mH.FixedWidthBuilder{};bn.TimeBuilder=ia;var P1=class extends ia{};bn.TimeSecondBuilder=P1;var R1=class extends ia{};bn.TimeMillisecondBuilder=R1;var H1=class extends ia{};bn.TimeMicrosecondBuilder=H1;var U1=class extends ia{};bn.TimeNanosecondBuilder=U1});var Gy=k(gn=>{"use strict";Object.defineProperty(gn,"__esModule",{value:!0});gn.TimestampNanosecondBuilder=gn.TimestampMicrosecondBuilder=gn.TimestampMillisecondBuilder=gn.TimestampSecondBuilder=gn.TimestampBuilder=void 0;var wH=At(),oa=class extends wH.FixedWidthBuilder{};gn.TimestampBuilder=oa;var M1=class extends oa{};gn.TimestampSecondBuilder=M1;var z1=class extends oa{};gn.TimestampMillisecondBuilder=z1;var L1=class extends oa{};gn.TimestampMicrosecondBuilder=L1;var V1=class extends oa{};gn.TimestampNanosecondBuilder=V1});var Zy=k(Yo=>{"use strict";Object.defineProperty(Yo,"__esModule",{value:!0});Yo.IntervalYearMonthBuilder=Yo.IntervalDayTimeBuilder=Yo.IntervalBuilder=void 0;var hH=At(),Qd=class extends hH.FixedWidthBuilder{};Yo.IntervalBuilder=Qd;var C1=class extends Qd{};Yo.IntervalDayTimeBuilder=C1;var W1=class extends Qd{};Yo.IntervalYearMonthBuilder=W1});var $d=k(Xd=>{"use strict";Object.defineProperty(Xd,"__esModule",{value:!0});Xd.BinaryBuilder=void 0;var bH=Xt(),gH=Co(),yH=At(),K1=class extends yH.VariableWidthBuilder{constructor(e){super(e);this._values=new gH.BufferBuilder(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,bH.toUint8Array(r))}_flushPending(e,r){let n=this._offsets,i=this._values.reserve(r).buffer,o=0,f=0,s=0,u;for([o,u]of e)u===void 0?n.set(o,0):(f=u.length,i.set(u,s),n.set(o,f),s+=f)}};Xd.BinaryBuilder=K1});var tm=k(em=>{"use strict";Object.defineProperty(em,"__esModule",{value:!0});em.Utf8Builder=void 0;var jH=zf(),_H=$d(),qH=Co(),vH=At(),Jy=class extends vH.VariableWidthBuilder{constructor(e){super(e);this._values=new qH.BufferBuilder(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,jH.encodeUtf8(r))}_flushPending(e,r){}};em.Utf8Builder=Jy;Jy.prototype._flushPending=_H.BinaryBuilder.prototype._flushPending});var Qy=k(rm=>{"use strict";Object.defineProperty(rm,"__esModule",{value:!0});rm.Run=void 0;var TH=Ut(),Y1=class{get length(){return this._values.length}get(e){return this._values[e]}clear(){return this._values=null,this}bind(e){return e instanceof TH.Vector?e:(this._values=e,this)}};rm.Run=Y1});var ir=k(fa=>{"use strict";Object.defineProperty(fa,"__esModule",{value:!0});fa.Field=fa.Schema=void 0;var kH=nt(),yn=class{constructor(e=[],r,n){this.fields=e||[],this.metadata=r||new Map,n||(n=Xy(e)),this.dictionaries=n}get[Symbol.toStringTag](){return"Schema"}toString(){return`Schema<{ ${this.fields.map((e,r)=>`${r}: ${e}`).join(", ")} }>`}select(...e){let r=e.reduce((n,i)=>(n[i]=!0)&&n,Object.create(null));return new yn(this.fields.filter(n=>r[n.name]),this.metadata)}selectAt(...e){return new yn(e.map(r=>this.fields[r]).filter(Boolean),this.metadata)}assign(...e){let r=e[0]instanceof yn?e[0]:Array.isArray(e[0])?new yn(e[0]):new yn(e),n=[...this.fields],i=nm(nm(new Map,this.metadata),r.metadata),o=r.fields.filter(s=>{let u=n.findIndex(l=>l.name===s.name);return~u?(n[u]=s.clone({metadata:nm(nm(new Map,n[u].metadata),s.metadata)}))&&!1:!0}),f=Xy(o,new Map);return new yn([...n,...o],i,new Map([...this.dictionaries,...f]))}};fa.Schema=yn;var $i=class{constructor(e,r,n=!1,i){this.name=e,this.type=r,this.nullable=n,this.metadata=i||new Map}static new(...e){let[r,n,i,o]=e;return e[0]&&typeof e[0]=="object"&&({name:r}=e[0],n===void 0&&(n=e[0].type),i===void 0&&(i=e[0].nullable),o===void 0&&(o=e[0].metadata)),new $i(`${r}`,n,i,o)}get typeId(){return this.type.typeId}get[Symbol.toStringTag](){return"Field"}toString(){return`${this.name}: ${this.type}`}clone(...e){let[r,n,i,o]=e;return!e[0]||typeof e[0]!="object"?[r=this.name,n=this.type,i=this.nullable,o=this.metadata]=e:{name:r=this.name,type:n=this.type,nullable:i=this.nullable,metadata:o=this.metadata}=e[0],$i.new(r,n,i,o)}};fa.Field=$i;function nm(t,e){return new Map([...t||new Map,...e||new Map])}function Xy(t,e=new Map){for(let r=-1,n=t.length;++r<n;){let o=t[r].type;if(kH.DataType.isDictionary(o)){if(!e.has(o.id))e.set(o.id,o.dictionary);else if(e.get(o.id)!==o.dictionary)throw new Error("Cannot create Schema containing two different dictionaries with the same Id")}o.children&&o.children.length>0&&Xy(o.children,e)}return e}yn.prototype.fields=null;yn.prototype.metadata=null;yn.prototype.dictionaries=null;$i.prototype.type=null;$i.prototype.name=null;$i.prototype.nullable=null;$i.prototype.metadata=null});var $y=k(im=>{"use strict";Object.defineProperty(im,"__esModule",{value:!0});im.ListBuilder=void 0;var BH=Qy(),IH=ir(),xH=nt(),SH=Co(),EH=At(),G1=class extends EH.VariableWidthBuilder{constructor(e){super(e);this._run=new BH.Run,this._offsets=new SH.OffsetsBufferBuilder}addChild(e,r="0"){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new xH.List(new IH.Field(r,e.type,!0)),this.numChildren-1}clear(){return this._run.clear(),super.clear()}_flushPending(e){let r=this._run,n=this._offsets,i=this._setValue,o=0,f;for([o,f]of e)f===void 0?n.set(o,0):(n.set(o,f.length),i(this,o,r.bind(f)))}};im.ListBuilder=G1});var ej=k(om=>{"use strict";Object.defineProperty(om,"__esModule",{value:!0});om.FixedSizeListBuilder=void 0;var AH=Qy(),OH=ir(),FH=At(),DH=nt(),Z1=class extends FH.Builder{constructor(){super(...arguments);this._run=new AH.Run}setValue(e,r){super.setValue(e,this._run.bind(r))}addChild(e,r="0"){if(this.numChildren>0)throw new Error("FixedSizeListBuilder can only have one child.");let n=this.children.push(e);return this.type=new DH.FixedSizeList(this.type.listSize,new OH.Field(r,e.type,!0)),n}clear(){return this._run.clear(),super.clear()}};om.FixedSizeListBuilder=Z1});var tj=k(fm=>{"use strict";Object.defineProperty(fm,"__esModule",{value:!0});fm.MapBuilder=void 0;var NH=ir(),PH=nt(),RH=At(),J1=class extends RH.VariableWidthBuilder{set(e,r){return super.set(e,r)}setValue(e,r){r=r instanceof Map?r:new Map(Object.entries(r));let n=this._pending||(this._pending=new Map),i=n.get(e);i&&(this._pendingLength-=i.size),this._pendingLength+=r.size,n.set(e,r)}addChild(e,r=`${this.numChildren}`){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new PH.Map_(new NH.Field(r,e.type,!0),this.type.keysSorted),this.numChildren-1}_flushPending(e){let r=this._offsets,n=this._setValue;e.forEach((i,o)=>{i===void 0?r.set(o,0):(r.set(o,i.size),n(this,o,i))})}};fm.MapBuilder=J1});var rj=k(sm=>{"use strict";Object.defineProperty(sm,"__esModule",{value:!0});sm.StructBuilder=void 0;var HH=ir(),UH=At(),MH=nt(),Q1=class extends UH.Builder{addChild(e,r=`${this.numChildren}`){let n=this.children.push(e);return this.type=new MH.Struct([...this.type.children,new HH.Field(r,e.type,!0)]),n}};sm.StructBuilder=Q1});var nj=k(Go=>{"use strict";Object.defineProperty(Go,"__esModule",{value:!0});Go.DenseUnionBuilder=Go.SparseUnionBuilder=Go.UnionBuilder=void 0;var zH=ir(),X1=Co(),LH=At(),VH=nt(),am=class extends LH.Builder{constructor(e){super(e);this._typeIds=new X1.DataBufferBuilder(new Int8Array(0),1),typeof e.valueToChildTypeId=="function"&&(this._valueToChildTypeId=e.valueToChildTypeId)}get typeIdToChildIndex(){return this.type.typeIdToChildIndex}append(e,r){return this.set(this.length,e,r)}set(e,r,n){return n===void 0&&(n=this._valueToChildTypeId(this,r,e)),this.setValid(e,this.isValid(r))&&this.setValue(e,r,n),this}setValue(e,r,n){this._typeIds.set(e,n),super.setValue(e,r)}addChild(e,r=`${this.children.length}`){let n=this.children.push(e),{type:{children:i,mode:o,typeIds:f}}=this,s=[...i,new zH.Field(r,e.type)];return this.type=new VH.Union(o,[...f,n],s),n}_valueToChildTypeId(e,r,n){throw new Error("Cannot map UnionBuilder value to child typeId. Pass the `childTypeId` as the second argument to unionBuilder.append(), or supply a `valueToChildTypeId` function as part of the UnionBuilder constructor options.")}};Go.UnionBuilder=am;var $1=class extends am{};Go.SparseUnionBuilder=$1;var ex=class extends am{constructor(e){super(e);this._offsets=new X1.DataBufferBuilder(new Int32Array(0))}setValue(e,r,n){let i=this.type.typeIdToChildIndex[n];return this._offsets.set(e,this.getChildAt(i).length),super.setValue(e,r,n)}};Go.DenseUnionBuilder=ex});var cr=k(lm=>{"use strict";Object.defineProperty(lm,"__esModule",{value:!0});lm.Visitor=void 0;var CH=Un(),WH=Ut(),A=bt(),KH=nt(),dt=class{visitMany(e,...r){return e.map((n,i)=>this.visit(n,...r.map(o=>o[i])))}visit(...e){return this.getVisitFn(e[0],!1).apply(this,e)}getVisitFn(e,r=!0){return YH(this,e,r)}visitNull(e,...r){return null}visitBool(e,...r){return null}visitInt(e,...r){return null}visitFloat(e,...r){return null}visitUtf8(e,...r){return null}visitBinary(e,...r){return null}visitFixedSizeBinary(e,...r){return null}visitDate(e,...r){return null}visitTimestamp(e,...r){return null}visitTime(e,...r){return null}visitDecimal(e,...r){return null}visitList(e,...r){return null}visitStruct(e,...r){return null}visitUnion(e,...r){return null}visitDictionary(e,...r){return null}visitInterval(e,...r){return null}visitFixedSizeList(e,...r){return null}visitMap(e,...r){return null}};lm.Visitor=dt;function YH(t,e,r=!0){let n=null,i=A.Type.NONE;switch(e instanceof CH.Data||e instanceof WH.Vector?i=ij(e.type):e instanceof KH.DataType?i=ij(e):typeof(i=e)!="number"&&(i=A.Type[e]),i){case A.Type.Null:n=t.visitNull;break;case A.Type.Bool:n=t.visitBool;break;case A.Type.Int:n=t.visitInt;break;case A.Type.Int8:n=t.visitInt8||t.visitInt;break;case A.Type.Int16:n=t.visitInt16||t.visitInt;break;case A.Type.Int32:n=t.visitInt32||t.visitInt;break;case A.Type.Int64:n=t.visitInt64||t.visitInt;break;case A.Type.Uint8:n=t.visitUint8||t.visitInt;break;case A.Type.Uint16:n=t.visitUint16||t.visitInt;break;case A.Type.Uint32:n=t.visitUint32||t.visitInt;break;case A.Type.Uint64:n=t.visitUint64||t.visitInt;break;case A.Type.Float:n=t.visitFloat;break;case A.Type.Float16:n=t.visitFloat16||t.visitFloat;break;case A.Type.Float32:n=t.visitFloat32||t.visitFloat;break;case A.Type.Float64:n=t.visitFloat64||t.visitFloat;break;case A.Type.Utf8:n=t.visitUtf8;break;case A.Type.Binary:n=t.visitBinary;break;case A.Type.FixedSizeBinary:n=t.visitFixedSizeBinary;break;case A.Type.Date:n=t.visitDate;break;case A.Type.DateDay:n=t.visitDateDay||t.visitDate;break;case A.Type.DateMillisecond:n=t.visitDateMillisecond||t.visitDate;break;case A.Type.Timestamp:n=t.visitTimestamp;break;case A.Type.TimestampSecond:n=t.visitTimestampSecond||t.visitTimestamp;break;case A.Type.TimestampMillisecond:n=t.visitTimestampMillisecond||t.visitTimestamp;break;case A.Type.TimestampMicrosecond:n=t.visitTimestampMicrosecond||t.visitTimestamp;break;case A.Type.TimestampNanosecond:n=t.visitTimestampNanosecond||t.visitTimestamp;break;case A.Type.Time:n=t.visitTime;break;case A.Type.TimeSecond:n=t.visitTimeSecond||t.visitTime;break;case A.Type.TimeMillisecond:n=t.visitTimeMillisecond||t.visitTime;break;case A.Type.TimeMicrosecond:n=t.visitTimeMicrosecond||t.visitTime;break;case A.Type.TimeNanosecond:n=t.visitTimeNanosecond||t.visitTime;break;case A.Type.Decimal:n=t.visitDecimal;break;case A.Type.List:n=t.visitList;break;case A.Type.Struct:n=t.visitStruct;break;case A.Type.Union:n=t.visitUnion;break;case A.Type.DenseUnion:n=t.visitDenseUnion||t.visitUnion;break;case A.Type.SparseUnion:n=t.visitSparseUnion||t.visitUnion;break;case A.Type.Dictionary:n=t.visitDictionary;break;case A.Type.Interval:n=t.visitInterval;break;case A.Type.IntervalDayTime:n=t.visitIntervalDayTime||t.visitInterval;break;case A.Type.IntervalYearMonth:n=t.visitIntervalYearMonth||t.visitInterval;break;case A.Type.FixedSizeList:n=t.visitFixedSizeList;break;case A.Type.Map:n=t.visitMap;break}if(typeof n=="function")return n;if(!r)return()=>null;throw new Error(`Unrecognized type '${A.Type[i]}'`)}function ij(t){switch(t.typeId){case A.Type.Null:return A.Type.Null;case A.Type.Int:{let{bitWidth:e,isSigned:r}=t;switch(e){case 8:return r?A.Type.Int8:A.Type.Uint8;case 16:return r?A.Type.Int16:A.Type.Uint16;case 32:return r?A.Type.Int32:A.Type.Uint32;case 64:return r?A.Type.Int64:A.Type.Uint64}return A.Type.Int}case A.Type.Float:switch(t.precision){case A.Precision.HALF:return A.Type.Float16;case A.Precision.SINGLE:return A.Type.Float32;case A.Precision.DOUBLE:return A.Type.Float64}return A.Type.Float;case A.Type.Binary:return A.Type.Binary;case A.Type.Utf8:return A.Type.Utf8;case A.Type.Bool:return A.Type.Bool;case A.Type.Decimal:return A.Type.Decimal;case A.Type.Time:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimeSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimeMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimeMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimeNanosecond}return A.Type.Time;case A.Type.Timestamp:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimestampSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimestampMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimestampMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimestampNanosecond}return A.Type.Timestamp;case A.Type.Date:switch(t.unit){case A.DateUnit.DAY:return A.Type.DateDay;case A.DateUnit.MILLISECOND:return A.Type.DateMillisecond}return A.Type.Date;case A.Type.Interval:switch(t.unit){case A.IntervalUnit.DAY_TIME:return A.Type.IntervalDayTime;case A.IntervalUnit.YEAR_MONTH:return A.Type.IntervalYearMonth}return A.Type.Interval;case A.Type.Map:return A.Type.Map;case A.Type.List:return A.Type.List;case A.Type.Struct:return A.Type.Struct;case A.Type.Union:switch(t.mode){case A.UnionMode.Dense:return A.Type.DenseUnion;case A.UnionMode.Sparse:return A.Type.SparseUnion}return A.Type.Union;case A.Type.FixedSizeBinary:return A.Type.FixedSizeBinary;case A.Type.FixedSizeList:return A.Type.FixedSizeList;case A.Type.Dictionary:return A.Type.Dictionary}throw new Error(`Unrecognized type '${A.Type[t.typeId]}'`)}dt.prototype.visitInt8=null;dt.prototype.visitInt16=null;dt.prototype.visitInt32=null;dt.prototype.visitInt64=null;dt.prototype.visitUint8=null;dt.prototype.visitUint16=null;dt.prototype.visitUint32=null;dt.prototype.visitUint64=null;dt.prototype.visitFloat16=null;dt.prototype.visitFloat32=null;dt.prototype.visitFloat64=null;dt.prototype.visitDateDay=null;dt.prototype.visitDateMillisecond=null;dt.prototype.visitTimestampSecond=null;dt.prototype.visitTimestampMillisecond=null;dt.prototype.visitTimestampMicrosecond=null;dt.prototype.visitTimestampNanosecond=null;dt.prototype.visitTimeSecond=null;dt.prototype.visitTimeMillisecond=null;dt.prototype.visitTimeMicrosecond=null;dt.prototype.visitTimeNanosecond=null;dt.prototype.visitDenseUnion=null;dt.prototype.visitSparseUnion=null;dt.prototype.visitIntervalDayTime=null;dt.prototype.visitIntervalYearMonth=null});var sj=k(sa=>{"use strict";Object.defineProperty(sa,"__esModule",{value:!0});sa.instance=sa.SetVisitor=void 0;var GH=Ut(),ZH=cr(),JH=zf(),QH=vu(),XH=Xt(),jn=bt(),Ie=class extends ZH.Visitor{};sa.SetVisitor=Ie;var $H=(t,e,r)=>{t[e]=r/864e5|0},oj=(t,e,r)=>{t[e]=r%4294967296|0,t[e+1]=r/4294967296|0},e3=(t,e,r)=>{t[e]=r*1e3%4294967296|0,t[e+1]=r*1e3/4294967296|0},t3=(t,e,r)=>{t[e]=r*1e6%4294967296|0,t[e+1]=r*1e6/4294967296|0},tx=(t,e,r,n)=>{let{[r]:i,[r+1]:o}=e;i!=null&&o!=null&&t.set(n.subarray(0,o-i),i)},r3=({offset:t,values:e},r,n)=>{let i=t+r;n?e[i>>3]|=1<<i%8:e[i>>3]&=~(1<<i%8)},rx=({values:t},e,r)=>{$H(t,e,r.valueOf())},nx=({values:t},e,r)=>{oj(t,e*2,r.valueOf())},di=({stride:t,values:e},r,n)=>{e[t*r]=n},ix=({stride:t,values:e},r,n)=>{e[t*r]=QH.float64ToUint16(n)},fj=(t,e,r)=>{switch(typeof r){case"bigint":t.values64[e]=r;break;case"number":t.values[e*t.stride]=r;break;default:{let n=r,{stride:i,ArrayType:o}=t,f=XH.toArrayBufferView(o,n);t.values.set(f.subarray(0,i),i*e)}}},n3=({stride:t,values:e},r,n)=>{e.set(n.subarray(0,t),t*r)},i3=({values:t,valueOffsets:e},r,n)=>tx(t,e,r,n),o3=({values:t,valueOffsets:e},r,n)=>{tx(t,e,r,JH.encodeUtf8(n))},f3=(t,e,r)=>{t.type.bitWidth<64?di(t,e,r):fj(t,e,r)},s3=(t,e,r)=>{t.type.precision!==jn.Precision.HALF?di(t,e,r):ix(t,e,r)},a3=(t,e,r)=>{t.type.unit===jn.DateUnit.DAY?rx(t,e,r):nx(t,e,r)},ox=({values:t},e,r)=>oj(t,e*2,r/1e3),fx=({values:t},e,r)=>oj(t,e*2,r),sx=({values:t},e,r)=>e3(t,e*2,r),ax=({values:t},e,r)=>t3(t,e*2,r),l3=(t,e,r)=>{switch(t.type.unit){case jn.TimeUnit.SECOND:return ox(t,e,r);case jn.TimeUnit.MILLISECOND:return fx(t,e,r);case jn.TimeUnit.MICROSECOND:return sx(t,e,r);case jn.TimeUnit.NANOSECOND:return ax(t,e,r)}},lx=({values:t,stride:e},r,n)=>{t[e*r]=n},ux=({values:t,stride:e},r,n)=>{t[e*r]=n},cx=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},px=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},u3=(t,e,r)=>{switch(t.type.unit){case jn.TimeUnit.SECOND:return lx(t,e,r);case jn.TimeUnit.MILLISECOND:return ux(t,e,r);case jn.TimeUnit.MICROSECOND:return cx(t,e,r);case jn.TimeUnit.NANOSECOND:return px(t,e,r)}},c3=({values:t},e,r)=>{t.set(r.subarray(0,4),4*e)},p3=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets;for(let o=-1,f=i[e],s=i[e+1];f<s;)n.set(f++,r.get(++o))},d3=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets,o=r instanceof Map?[...r]:Object.entries(r);for(let f=-1,s=i[e],u=i[e+1];s<u;)n.set(s++,o[++f])},m3=(t,e)=>(r,n,i)=>r&&r.set(t,e[i]),w3=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(i)),h3=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(n.name)),b3=(t,e)=>(r,n,i)=>r&&r.set(t,e[n.name]),g3=(t,e,r)=>{let n=r instanceof Map?h3(e,r):r instanceof GH.Vector?w3(e,r):Array.isArray(r)?m3(e,r):b3(e,r);t.type.children.forEach((i,o)=>n(t.getChildAt(o),i,o))},y3=(t,e,r)=>{t.type.mode===jn.UnionMode.Dense?dx(t,e,r):mx(t,e,r)},dx=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(t.valueOffsets[e],r)},mx=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(e,r)},j3=(t,e,r)=>{let n=t.getKey(e);n!==null&&t.setValue(n,r)},_3=(t,e,r)=>{t.type.unit===jn.IntervalUnit.DAY_TIME?wx(t,e,r):hx(t,e,r)},wx=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},hx=({values:t},e,r)=>{t[e]=r[0]*12+r[1]%12},q3=(t,e,r)=>{let n=t.getChildAt(0),{stride:i}=t;for(let o=-1,f=e*i;++o<i;)n.set(f+o,r.get(o))};Ie.prototype.visitBool=r3;Ie.prototype.visitInt=f3;Ie.prototype.visitInt8=di;Ie.prototype.visitInt16=di;Ie.prototype.visitInt32=di;Ie.prototype.visitInt64=fj;Ie.prototype.visitUint8=di;Ie.prototype.visitUint16=di;Ie.prototype.visitUint32=di;Ie.prototype.visitUint64=fj;Ie.prototype.visitFloat=s3;Ie.prototype.visitFloat16=ix;Ie.prototype.visitFloat32=di;Ie.prototype.visitFloat64=di;Ie.prototype.visitUtf8=o3;Ie.prototype.visitBinary=i3;Ie.prototype.visitFixedSizeBinary=n3;Ie.prototype.visitDate=a3;Ie.prototype.visitDateDay=rx;Ie.prototype.visitDateMillisecond=nx;Ie.prototype.visitTimestamp=l3;Ie.prototype.visitTimestampSecond=ox;Ie.prototype.visitTimestampMillisecond=fx;Ie.prototype.visitTimestampMicrosecond=sx;Ie.prototype.visitTimestampNanosecond=ax;Ie.prototype.visitTime=u3;Ie.prototype.visitTimeSecond=lx;Ie.prototype.visitTimeMillisecond=ux;Ie.prototype.visitTimeMicrosecond=cx;Ie.prototype.visitTimeNanosecond=px;Ie.prototype.visitDecimal=c3;Ie.prototype.visitList=p3;Ie.prototype.visitStruct=g3;Ie.prototype.visitUnion=y3;Ie.prototype.visitDenseUnion=dx;Ie.prototype.visitSparseUnion=mx;Ie.prototype.visitDictionary=j3;Ie.prototype.visitInterval=_3;Ie.prototype.visitIntervalDayTime=wx;Ie.prototype.visitIntervalYearMonth=hx;Ie.prototype.visitFixedSizeList=q3;Ie.prototype.visitMap=d3;sa.instance=new Ie});var bx=k(aa=>{"use strict";Object.defineProperty(aa,"__esModule",{value:!0});aa.instance=aa.GetBuilderCtor=void 0;var v3=cr(),T3=$d(),k3=Ry(),aj=Uy(),B3=My(),I3=Ly(),x3=Vy(),S3=ej(),um=Cy(),lj=Zy(),eo=Ky(),E3=$y(),A3=tj(),O3=Hy(),F3=rj(),xu=Gy(),Su=Yy(),uj=nj(),D3=tm(),cj=class extends v3.Visitor{visitNull(){return O3.NullBuilder}visitBool(){return k3.BoolBuilder}visitInt(){return eo.IntBuilder}visitInt8(){return eo.Int8Builder}visitInt16(){return eo.Int16Builder}visitInt32(){return eo.Int32Builder}visitInt64(){return eo.Int64Builder}visitUint8(){return eo.Uint8Builder}visitUint16(){return eo.Uint16Builder}visitUint32(){return eo.Uint32Builder}visitUint64(){return eo.Uint64Builder}visitFloat(){return um.FloatBuilder}visitFloat16(){return um.Float16Builder}visitFloat32(){return um.Float32Builder}visitFloat64(){return um.Float64Builder}visitUtf8(){return D3.Utf8Builder}visitBinary(){return T3.BinaryBuilder}visitFixedSizeBinary(){return x3.FixedSizeBinaryBuilder}visitDate(){return aj.DateBuilder}visitDateDay(){return aj.DateDayBuilder}visitDateMillisecond(){return aj.DateMillisecondBuilder}visitTimestamp(){return xu.TimestampBuilder}visitTimestampSecond(){return xu.TimestampSecondBuilder}visitTimestampMillisecond(){return xu.TimestampMillisecondBuilder}visitTimestampMicrosecond(){return xu.TimestampMicrosecondBuilder}visitTimestampNanosecond(){return xu.TimestampNanosecondBuilder}visitTime(){return Su.TimeBuilder}visitTimeSecond(){return Su.TimeSecondBuilder}visitTimeMillisecond(){return Su.TimeMillisecondBuilder}visitTimeMicrosecond(){return Su.TimeMicrosecondBuilder}visitTimeNanosecond(){return Su.TimeNanosecondBuilder}visitDecimal(){return B3.DecimalBuilder}visitList(){return E3.ListBuilder}visitStruct(){return F3.StructBuilder}visitUnion(){return uj.UnionBuilder}visitDenseUnion(){return uj.DenseUnionBuilder}visitSparseUnion(){return uj.SparseUnionBuilder}visitDictionary(){return I3.DictionaryBuilder}visitInterval(){return lj.IntervalBuilder}visitIntervalDayTime(){return lj.IntervalDayTimeBuilder}visitIntervalYearMonth(){return lj.IntervalYearMonthBuilder}visitFixedSizeList(){return S3.FixedSizeListBuilder}visitMap(){return A3.MapBuilder}};aa.GetBuilderCtor=cj;aa.instance=new cj});var pm=k(G=>{"use strict";Object.defineProperty(G,"__esModule",{value:!0});G.DenseUnionBuilder=G.SparseUnionBuilder=G.UnionBuilder=G.StructBuilder=G.MapBuilder=G.FixedSizeListBuilder=G.ListBuilder=G.BinaryBuilder=G.Utf8Builder=G.IntervalYearMonthBuilder=G.IntervalDayTimeBuilder=G.IntervalBuilder=G.TimestampNanosecondBuilder=G.TimestampMicrosecondBuilder=G.TimestampMillisecondBuilder=G.TimestampSecondBuilder=G.TimestampBuilder=G.TimeNanosecondBuilder=G.TimeMicrosecondBuilder=G.TimeMillisecondBuilder=G.TimeSecondBuilder=G.TimeBuilder=G.Uint64Builder=G.Uint32Builder=G.Uint16Builder=G.Uint8Builder=G.Int64Builder=G.Int32Builder=G.Int16Builder=G.Int8Builder=G.IntBuilder=G.Float64Builder=G.Float32Builder=G.Float16Builder=G.FloatBuilder=G.FixedSizeBinaryBuilder=G.DictionaryBuilder=G.DecimalBuilder=G.DateMillisecondBuilder=G.DateDayBuilder=G.DateBuilder=G.NullBuilder=G.BoolBuilder=G.Builder=void 0;var N3=At();Object.defineProperty(G,"Builder",{enumerable:!0,get:function(){return N3.Builder}});var P3=Ry();Object.defineProperty(G,"BoolBuilder",{enumerable:!0,get:function(){return P3.BoolBuilder}});var R3=Hy();Object.defineProperty(G,"NullBuilder",{enumerable:!0,get:function(){return R3.NullBuilder}});var pj=Uy();Object.defineProperty(G,"DateBuilder",{enumerable:!0,get:function(){return pj.DateBuilder}});Object.defineProperty(G,"DateDayBuilder",{enumerable:!0,get:function(){return pj.DateDayBuilder}});Object.defineProperty(G,"DateMillisecondBuilder",{enumerable:!0,get:function(){return pj.DateMillisecondBuilder}});var H3=My();Object.defineProperty(G,"DecimalBuilder",{enumerable:!0,get:function(){return H3.DecimalBuilder}});var U3=Ly();Object.defineProperty(G,"DictionaryBuilder",{enumerable:!0,get:function(){return U3.DictionaryBuilder}});var M3=Vy();Object.defineProperty(G,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return M3.FixedSizeBinaryBuilder}});var cm=Cy();Object.defineProperty(G,"FloatBuilder",{enumerable:!0,get:function(){return cm.FloatBuilder}});Object.defineProperty(G,"Float16Builder",{enumerable:!0,get:function(){return cm.Float16Builder}});Object.defineProperty(G,"Float32Builder",{enumerable:!0,get:function(){return cm.Float32Builder}});Object.defineProperty(G,"Float64Builder",{enumerable:!0,get:function(){return cm.Float64Builder}});var to=Ky();Object.defineProperty(G,"IntBuilder",{enumerable:!0,get:function(){return to.IntBuilder}});Object.defineProperty(G,"Int8Builder",{enumerable:!0,get:function(){return to.Int8Builder}});Object.defineProperty(G,"Int16Builder",{enumerable:!0,get:function(){return to.Int16Builder}});Object.defineProperty(G,"Int32Builder",{enumerable:!0,get:function(){return to.Int32Builder}});Object.defineProperty(G,"Int64Builder",{enumerable:!0,get:function(){return to.Int64Builder}});Object.defineProperty(G,"Uint8Builder",{enumerable:!0,get:function(){return to.Uint8Builder}});Object.defineProperty(G,"Uint16Builder",{enumerable:!0,get:function(){return to.Uint16Builder}});Object.defineProperty(G,"Uint32Builder",{enumerable:!0,get:function(){return to.Uint32Builder}});Object.defineProperty(G,"Uint64Builder",{enumerable:!0,get:function(){return to.Uint64Builder}});var Eu=Yy();Object.defineProperty(G,"TimeBuilder",{enumerable:!0,get:function(){return Eu.TimeBuilder}});Object.defineProperty(G,"TimeSecondBuilder",{enumerable:!0,get:function(){return Eu.TimeSecondBuilder}});Object.defineProperty(G,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Eu.TimeMillisecondBuilder}});Object.defineProperty(G,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Eu.TimeMicrosecondBuilder}});Object.defineProperty(G,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Eu.TimeNanosecondBuilder}});var Au=Gy();Object.defineProperty(G,"TimestampBuilder",{enumerable:!0,get:function(){return Au.TimestampBuilder}});Object.defineProperty(G,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Au.TimestampSecondBuilder}});Object.defineProperty(G,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Au.TimestampMillisecondBuilder}});Object.defineProperty(G,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Au.TimestampMicrosecondBuilder}});Object.defineProperty(G,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Au.TimestampNanosecondBuilder}});var dj=Zy();Object.defineProperty(G,"IntervalBuilder",{enumerable:!0,get:function(){return dj.IntervalBuilder}});Object.defineProperty(G,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return dj.IntervalDayTimeBuilder}});Object.defineProperty(G,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return dj.IntervalYearMonthBuilder}});var z3=tm();Object.defineProperty(G,"Utf8Builder",{enumerable:!0,get:function(){return z3.Utf8Builder}});var L3=$d();Object.defineProperty(G,"BinaryBuilder",{enumerable:!0,get:function(){return L3.BinaryBuilder}});var V3=$y();Object.defineProperty(G,"ListBuilder",{enumerable:!0,get:function(){return V3.ListBuilder}});var C3=ej();Object.defineProperty(G,"FixedSizeListBuilder",{enumerable:!0,get:function(){return C3.FixedSizeListBuilder}});var W3=tj();Object.defineProperty(G,"MapBuilder",{enumerable:!0,get:function(){return W3.MapBuilder}});var K3=rj();Object.defineProperty(G,"StructBuilder",{enumerable:!0,get:function(){return K3.StructBuilder}});var mj=nj();Object.defineProperty(G,"UnionBuilder",{enumerable:!0,get:function(){return mj.UnionBuilder}});Object.defineProperty(G,"SparseUnionBuilder",{enumerable:!0,get:function(){return mj.SparseUnionBuilder}});Object.defineProperty(G,"DenseUnionBuilder",{enumerable:!0,get:function(){return mj.DenseUnionBuilder}});var wj=bt(),Y3=tm(),G3=At(),gx=sj(),yx=bx();G3.Builder.new=jx;function jx(t){let e=t.type,r=new(yx.instance.getVisitFn(e)())(t);if(e.children&&e.children.length>0){let n=t.children||[],i={nullValues:t.nullValues},o=Array.isArray(n)?(f,s)=>n[s]||i:({name:f})=>n[f]||i;e.children.forEach((f,s)=>{let{type:u}=f,l=o(f,s);r.children.push(jx({...l,type:u}))})}return r}Object.keys(wj.Type).map(t=>wj.Type[t]).filter(t=>typeof t=="number"&&t!==wj.Type.NONE).forEach(t=>{let e=yx.instance.visit(t);e.prototype._setValue=gx.instance.getVisitFn(t)});Y3.Utf8Builder.prototype._setValue=gx.instance.visitBinary});var _x=k(la=>{"use strict";Object.defineProperty(la,"__esModule",{value:!0});la.Block=la.Footer=void 0;var Z3=Gi(),dm=zo(),_n=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFooter(e,r){return(r||new _n).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFooter(e,r){return e.setPosition(e.position()+Z3.flatbuffers.SIZE_PREFIX_LENGTH),(r||new _n).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):dm.MetadataVersion.V1}schema(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new dm.Schema).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}dictionaries(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new mm).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}dictionariesLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}recordBatches(e,r){let n=this.bb.__offset(this.bb_pos,10);return n?(r||new mm).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}recordBatchesLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new dm.KeyValue).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startFooter(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,dm.MetadataVersion.V1)}static addSchema(e,r){e.addFieldOffset(1,r,0)}static addDictionaries(e,r){e.addFieldOffset(2,r,0)}static startDictionariesVector(e,r){e.startVector(24,r,8)}static addRecordBatches(e,r){e.addFieldOffset(3,r,0)}static startRecordBatchesVector(e,r){e.startVector(24,r,8)}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endFooter(e){return e.endObject()}static finishFooterBuffer(e,r){e.finish(r)}static finishSizePrefixedFooterBuffer(e,r){e.finish(r,void 0,!0)}static createFooter(e,r,n,i,o,f){return _n.startFooter(e),_n.addVersion(e,r),_n.addSchema(e,n),_n.addDictionaries(e,i),_n.addRecordBatches(e,o),_n.addCustomMetadata(e,f),_n.endFooter(e)}};la.Footer=_n;var mm=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}metaDataLength(){return this.bb.readInt32(this.bb_pos+8)}bodyLength(){return this.bb.readInt64(this.bb_pos+16)}static createBlock(e,r,n,i){return e.prep(8,24),e.writeInt64(i),e.pad(4),e.writeInt32(n),e.writeInt64(r),e.offset()}};la.Block=mm});var gj=k(ua=>{"use strict";Object.defineProperty(ua,"__esModule",{value:!0});ua.FileBlock=ua.Footer=void 0;var zn=_x(),hj=Gi(),qx=hj.flatbuffers.Long,J3=hj.flatbuffers.Builder,Q3=hj.flatbuffers.ByteBuffer,vx=ir(),Tx=bt(),X3=Xt(),bj=class{constructor(e,r=Tx.MetadataVersion.V4,n,i){this.schema=e,this.version=r,n&&(this._recordBatches=n),i&&(this._dictionaryBatches=i)}static decode(e){e=new Q3(X3.toUint8Array(e));let r=zn.Footer.getRootAsFooter(e),n=vx.Schema.decode(r.schema());return new kx(n,r)}static encode(e){let r=new J3,n=vx.Schema.encode(r,e.schema);zn.Footer.startRecordBatchesVector(r,e.numRecordBatches),[...e.recordBatches()].slice().reverse().forEach(f=>Zo.encode(r,f));let i=r.endVector();zn.Footer.startDictionariesVector(r,e.numDictionaries),[...e.dictionaryBatches()].slice().reverse().forEach(f=>Zo.encode(r,f));let o=r.endVector();return zn.Footer.startFooter(r),zn.Footer.addSchema(r,n),zn.Footer.addVersion(r,Tx.MetadataVersion.V4),zn.Footer.addRecordBatches(r,i),zn.Footer.addDictionaries(r,o),zn.Footer.finishFooterBuffer(r,zn.Footer.endFooter(r)),r.asUint8Array()}get numRecordBatches(){return this._recordBatches.length}get numDictionaries(){return this._dictionaryBatches.length}*recordBatches(){for(let e,r=-1,n=this.numRecordBatches;++r<n;)(e=this.getRecordBatch(r))&&(yield e)}*dictionaryBatches(){for(let e,r=-1,n=this.numDictionaries;++r<n;)(e=this.getDictionaryBatch(r))&&(yield e)}getRecordBatch(e){return e>=0&&e<this.numRecordBatches&&this._recordBatches[e]||null}getDictionaryBatch(e){return e>=0&&e<this.numDictionaries&&this._dictionaryBatches[e]||null}};ua.Footer=bj;var kx=class extends bj{constructor(e,r){super(e,r.version());this._footer=r}get numRecordBatches(){return this._footer.recordBatchesLength()}get numDictionaries(){return this._footer.dictionariesLength()}getRecordBatch(e){if(e>=0&&e<this.numRecordBatches){let r=this._footer.recordBatches(e);if(r)return Zo.decode(r)}return null}getDictionaryBatch(e){if(e>=0&&e<this.numDictionaries){let r=this._footer.dictionaries(e);if(r)return Zo.decode(r)}return null}},Zo=class{constructor(e,r,n){this.metaDataLength=e,this.offset=typeof n=="number"?n:n.low,this.bodyLength=typeof r=="number"?r:r.low}static decode(e){return new Zo(e.metaDataLength(),e.bodyLength(),e.offset())}static encode(e,r){let{metaDataLength:n}=r,i=new qx(r.offset,0),o=new qx(r.bodyLength,0);return zn.Block.createBlock(e,i,n,o)}};ua.FileBlock=Zo});var $o=k(Xo=>{"use strict";Object.defineProperty(Xo,"__esModule",{value:!0});Xo.AsyncByteStream=Xo.ByteStream=Xo.AsyncByteQueue=void 0;var Jo=_u(),Bx=zf(),Ou=Ys(),yj=Xt(),ca=gr(),jj=class extends Ou.AsyncQueue{write(e){if((e=yj.toUint8Array(e)).byteLength>0)return super.write(e)}toString(e=!1){return e?Bx.decodeUtf8(this.toUint8Array(!0)):this.toUint8Array(!1).then(Bx.decodeUtf8)}toUint8Array(e=!1){return e?yj.joinUint8Arrays(this._values)[0]:(async()=>{let r=[],n=0;for await(let i of this)r.push(i),n+=i.byteLength;return yj.joinUint8Arrays(r,n)[0]})()}};Xo.AsyncByteQueue=jj;var Ix=class{constructor(e){e&&(this.source=new xx(Jo.default.fromIterable(e)))}[Symbol.iterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}};Xo.ByteStream=Ix;var wm=class{constructor(e){e instanceof wm?this.source=e.source:e instanceof jj?this.source=new Qo(Jo.default.fromAsyncIterable(e)):ca.isReadableNodeStream(e)?this.source=new Qo(Jo.default.fromNodeStream(e)):ca.isReadableDOMStream(e)?this.source=new Qo(Jo.default.fromDOMStream(e)):ca.isFetchResponse(e)?this.source=new Qo(Jo.default.fromDOMStream(e.body)):ca.isIterable(e)?this.source=new Qo(Jo.default.fromIterable(e)):ca.isPromise(e)?this.source=new Qo(Jo.default.fromAsyncIterable(e)):ca.isAsyncIterable(e)&&(this.source=new Qo(Jo.default.fromAsyncIterable(e)))}[Symbol.asyncIterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}get closed(){return this.source.closed}cancel(e){return this.source.cancel(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}};Xo.AsyncByteStream=wm;var xx=class{constructor(e){this.source=e}cancel(e){this.return(e)}peek(e){return this.next(e,"peek").value}read(e){return this.next(e,"read").value}next(e,r="read"){return this.source.next({cmd:r,size:e})}throw(e){return Object.create(this.source.throw&&this.source.throw(e)||Ou.ITERATOR_DONE)}return(e){return Object.create(this.source.return&&this.source.return(e)||Ou.ITERATOR_DONE)}},Qo=class{constructor(e){this.source=e,this._closedPromise=new Promise(r=>this._closedPromiseResolve=r)}async cancel(e){await this.return(e)}get closed(){return this._closedPromise}async read(e){return(await this.next(e,"read")).value}async peek(e){return(await this.next(e,"peek")).value}async next(e,r="read"){return await this.source.next({cmd:r,size:e})}async throw(e){let r=this.source.throw&&await this.source.throw(e)||Ou.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}async return(e){let r=this.source.return&&await this.source.return(e)||Ou.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}}});var _j=k(pa=>{"use strict";Object.defineProperty(pa,"__esModule",{value:!0});pa.AsyncRandomAccessFile=pa.RandomAccessFile=void 0;var Sx=$o(),$3=Xt(),Ex=class extends Sx.ByteStream{constructor(e,r){super();this.position=0,this.buffer=$3.toUint8Array(e),this.size=typeof r=="undefined"?this.buffer.byteLength:r}readInt32(e){let{buffer:r,byteOffset:n}=this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)}seek(e){return this.position=Math.min(e,this.size),e<this.size}read(e){let{buffer:r,size:n,position:i}=this;return r&&i<n?(typeof e!="number"&&(e=1/0),this.position=Math.min(n,i+Math.min(n-i,e)),r.subarray(i,this.position)):null}readAt(e,r){let n=this.buffer,i=Math.min(this.size,e+r);return n?n.subarray(e,i):new Uint8Array(r)}close(){this.buffer&&(this.buffer=null)}throw(e){return this.close(),{done:!0,value:e}}return(e){return this.close(),{done:!0,value:e}}};pa.RandomAccessFile=Ex;var Ax=class extends Sx.AsyncByteStream{constructor(e,r){super();this.position=0,this._handle=e,typeof r=="number"?this.size=r:this._pending=(async()=>{this.size=(await e.stat()).size,delete this._pending})()}async readInt32(e){let{buffer:r,byteOffset:n}=await this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)}async seek(e){return this._pending&&await this._pending,this.position=Math.min(e,this.size),e<this.size}async read(e){this._pending&&await this._pending;let{_handle:r,size:n,position:i}=this;if(r&&i<n){typeof e!="number"&&(e=1/0);let o=i,f=0,s=0,u=Math.min(n,o+Math.min(n-o,e)),l=new Uint8Array(Math.max(0,(this.position=u)-o));for(;(o+=s)<u&&(f+=s)<l.byteLength;)({bytesRead:s}=await r.read(l,f,l.byteLength-f,o));return l}return null}async readAt(e,r){this._pending&&await this._pending;let{_handle:n,size:i}=this;if(n&&e+r<i){let o=Math.min(i,e+r),f=new Uint8Array(o-e);return(await n.read(f,0,r,e)).buffer}return new Uint8Array(r)}async close(){let e=this._handle;this._handle=null,e&&await e.close()}async throw(e){return await this.close(),{done:!0,value:e}}async return(e){return await this.close(),{done:!0,value:e}}};pa.AsyncRandomAccessFile=Ax});var vj=k(mi=>{"use strict";Object.defineProperty(mi,"__esModule",{value:!0});mi.Int128=mi.Int64=mi.Uint64=mi.BaseInt64=void 0;var eU=1<<16;function da(t){return t<0&&(t=4294967295+t+1),`0x${t.toString(16)}`}var ma=8,qj=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8],hm=class{constructor(e){this.buffer=e}high(){return this.buffer[1]}low(){return this.buffer[0]}_times(e){let r=new Uint32Array([this.buffer[1]>>>16,this.buffer[1]&65535,this.buffer[0]>>>16,this.buffer[0]&65535]),n=new Uint32Array([e.buffer[1]>>>16,e.buffer[1]&65535,e.buffer[0]>>>16,e.buffer[0]&65535]),i=r[3]*n[3];this.buffer[0]=i&65535;let o=i>>>16;return i=r[2]*n[3],o+=i,i=r[3]*n[2]>>>0,o+=i,this.buffer[0]+=o<<16,this.buffer[1]=o>>>0<i?eU:0,this.buffer[1]+=o>>>16,this.buffer[1]+=r[1]*n[3]+r[2]*n[2]+r[3]*n[1],this.buffer[1]+=r[0]*n[3]+r[1]*n[2]+r[2]*n[1]+r[3]*n[0]<<16,this}_plus(e){let r=this.buffer[0]+e.buffer[0]>>>0;this.buffer[1]+=e.buffer[1],r<this.buffer[0]>>>0&&++this.buffer[1],this.buffer[0]=r}lessThan(e){return this.buffer[1]<e.buffer[1]||this.buffer[1]===e.buffer[1]&&this.buffer[0]<e.buffer[0]}equals(e){return this.buffer[1]===e.buffer[1]&&this.buffer[0]==e.buffer[0]}greaterThan(e){return e.lessThan(this)}hex(){return`${da(this.buffer[1])} ${da(this.buffer[0])}`}};mi.BaseInt64=hm;var it=class extends hm{times(e){return this._times(e),this}plus(e){return this._plus(e),this}static from(e,r=new Uint32Array(2)){return it.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return it.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.length,i=new it(r);for(let o=0;o<n;){let f=ma<n-o?ma:n-o,s=new it(new Uint32Array([parseInt(e.substr(o,f),10),0])),u=new it(new Uint32Array([qj[f],0]));i.times(u),i.plus(s),o+=f}return i}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)it.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new it(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new it(new Uint32Array(e.buffer)).plus(r)}};mi.Uint64=it;var Jr=class extends hm{negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[0]==0&&++this.buffer[1],this}times(e){return this._times(e),this}plus(e){return this._plus(e),this}lessThan(e){let r=this.buffer[1]<<0,n=e.buffer[1]<<0;return r<n||r===n&&this.buffer[0]<e.buffer[0]}static from(e,r=new Uint32Array(2)){return Jr.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return Jr.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.startsWith("-"),i=e.length,o=new Jr(r);for(let f=n?1:0;f<i;){let s=ma<i-f?ma:i-f,u=new Jr(new Uint32Array([parseInt(e.substr(f,s),10),0])),l=new Jr(new Uint32Array([qj[s],0]));o.times(l),o.plus(u),f+=s}return n?o.negate():o}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)Jr.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new Jr(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Jr(new Uint32Array(e.buffer)).plus(r)}};mi.Int64=Jr;var Ln=class{constructor(e){this.buffer=e}high(){return new Jr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2))}low(){return new Jr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset,2))}negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[2]=~this.buffer[2],this.buffer[3]=~this.buffer[3],this.buffer[0]==0&&++this.buffer[1],this.buffer[1]==0&&++this.buffer[2],this.buffer[2]==0&&++this.buffer[3],this}times(e){let r=new it(new Uint32Array([this.buffer[3],0])),n=new it(new Uint32Array([this.buffer[2],0])),i=new it(new Uint32Array([this.buffer[1],0])),o=new it(new Uint32Array([this.buffer[0],0])),f=new it(new Uint32Array([e.buffer[3],0])),s=new it(new Uint32Array([e.buffer[2],0])),u=new it(new Uint32Array([e.buffer[1],0])),l=new it(new Uint32Array([e.buffer[0],0])),c=it.multiply(o,l);this.buffer[0]=c.low();let w=new it(new Uint32Array([c.high(),0]));return c=it.multiply(i,l),w.plus(c),c=it.multiply(o,u),w.plus(c),this.buffer[1]=w.low(),this.buffer[3]=w.lessThan(c)?1:0,this.buffer[2]=w.high(),new it(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2)).plus(it.multiply(n,l)).plus(it.multiply(i,u)).plus(it.multiply(o,s)),this.buffer[3]+=it.multiply(r,l).plus(it.multiply(n,u)).plus(it.multiply(i,s)).plus(it.multiply(o,f)).low(),this}plus(e){let r=new Uint32Array(4);return r[3]=this.buffer[3]+e.buffer[3]>>>0,r[2]=this.buffer[2]+e.buffer[2]>>>0,r[1]=this.buffer[1]+e.buffer[1]>>>0,r[0]=this.buffer[0]+e.buffer[0]>>>0,r[0]<this.buffer[0]>>>0&&++r[1],r[1]<this.buffer[1]>>>0&&++r[2],r[2]<this.buffer[2]>>>0&&++r[3],this.buffer[3]=r[3],this.buffer[2]=r[2],this.buffer[1]=r[1],this.buffer[0]=r[0],this}hex(){return`${da(this.buffer[3])} ${da(this.buffer[2])} ${da(this.buffer[1])} ${da(this.buffer[0])}`}static multiply(e,r){return new Ln(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Ln(new Uint32Array(e.buffer)).plus(r)}static from(e,r=new Uint32Array(4)){return Ln.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(4)){return Ln.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(4)){let n=e.startsWith("-"),i=e.length,o=new Ln(r);for(let f=n?1:0;f<i;){let s=ma<i-f?ma:i-f,u=new Ln(new Uint32Array([parseInt(e.substr(f,s),10),0,0,0])),l=new Ln(new Uint32Array([qj[s],0,0,0]));o.times(l),o.plus(u),f+=s}return n?o.negate():o}static convertArray(e){let r=new Uint32Array(e.length*4);for(let n=-1,i=e.length;++n<i;)Ln.from(e[n],new Uint32Array(r.buffer,r.byteOffset+4*4*n,4));return r}};mi.Int128=Ln});var Nx=k(wa=>{"use strict";Object.defineProperty(wa,"__esModule",{value:!0});wa.JSONVectorLoader=wa.VectorLoader=void 0;var er=Un(),tU=ir(),ro=nt(),rU=cr(),Ox=ui(),nU=zf(),bm=vj(),Fx=bt(),wi=Xt(),Tj=class extends rU.Visitor{constructor(e,r,n,i){super();this.nodesIndex=-1,this.buffersIndex=-1,this.bytes=e,this.nodes=r,this.buffers=n,this.dictionaries=i}visit(e){return super.visit(e instanceof tU.Field?e.type:e)}visitNull(e,{length:r}=this.nextFieldNode()){return er.Data.Null(e,0,r)}visitBool(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Bool(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitInt(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Int(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFloat(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Float(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitUtf8(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Utf8(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.readData(e))}visitBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Binary(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.readData(e))}visitFixedSizeBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.FixedSizeBinary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDate(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Date(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTimestamp(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Timestamp(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTime(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Time(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDecimal(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Decimal(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitList(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.List(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.visit(e.children[0]))}visitStruct(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Struct(e,0,r,n,this.readNullBitmap(e,n),this.visitMany(e.children))}visitUnion(e){return e.mode===Fx.UnionMode.Sparse?this.visitSparseUnion(e):this.visitDenseUnion(e)}visitDenseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Union(e,0,r,n,this.readNullBitmap(e,n),this.readTypeIds(e),this.readOffsets(e),this.visitMany(e.children))}visitSparseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Union(e,0,r,n,this.readNullBitmap(e,n),this.readTypeIds(e),this.visitMany(e.children))}visitDictionary(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Dictionary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e.indices),this.readDictionary(e))}visitInterval(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Interval(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFixedSizeList(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.FixedSizeList(e,0,r,n,this.readNullBitmap(e,n),this.visit(e.children[0]))}visitMap(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Map(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.visit(e.children[0]))}nextFieldNode(){return this.nodes[++this.nodesIndex]}nextBufferRange(){return this.buffers[++this.buffersIndex]}readNullBitmap(e,r,n=this.nextBufferRange()){return r>0&&this.readData(e,n)||new Uint8Array(0)}readOffsets(e,r){return this.readData(e,r)}readTypeIds(e,r){return this.readData(e,r)}readData(e,{length:r,offset:n}=this.nextBufferRange()){return this.bytes.subarray(n,n+r)}readDictionary(e){return this.dictionaries.get(e.id)}};wa.VectorLoader=Tj;var Dx=class extends Tj{constructor(e,r,n,i){super(new Uint8Array(0),r,n,i);this.sources=e}readNullBitmap(e,r,{offset:n}=this.nextBufferRange()){return r<=0?new Uint8Array(0):Ox.packBools(this.sources[n])}readOffsets(e,{offset:r}=this.nextBufferRange()){return wi.toArrayBufferView(Uint8Array,wi.toArrayBufferView(Int32Array,this.sources[r]))}readTypeIds(e,{offset:r}=this.nextBufferRange()){return wi.toArrayBufferView(Uint8Array,wi.toArrayBufferView(e.ArrayType,this.sources[r]))}readData(e,{offset:r}=this.nextBufferRange()){let{sources:n}=this;return ro.DataType.isTimestamp(e)||(ro.DataType.isInt(e)||ro.DataType.isTime(e))&&e.bitWidth===64||ro.DataType.isDate(e)&&e.unit===Fx.DateUnit.MILLISECOND?wi.toArrayBufferView(Uint8Array,bm.Int64.convertArray(n[r])):ro.DataType.isDecimal(e)?wi.toArrayBufferView(Uint8Array,bm.Int128.convertArray(n[r])):ro.DataType.isBinary(e)||ro.DataType.isFixedSizeBinary(e)?iU(n[r]):ro.DataType.isBool(e)?Ox.packBools(n[r]):ro.DataType.isUtf8(e)?nU.encodeUtf8(n[r].join("")):wi.toArrayBufferView(Uint8Array,wi.toArrayBufferView(e.ArrayType,n[r].map(i=>+i)))}};wa.JSONVectorLoader=Dx;function iU(t){let e=t.join(""),r=new Uint8Array(e.length/2);for(let n=0;n<e.length;n+=2)r[n>>1]=parseInt(e.substr(n,2),16);return r}});var Fu=k(ba=>{"use strict";Object.defineProperty(ba,"__esModule",{value:!0});ba.StructRow=ba.MapRow=void 0;var Px=Oy(),pr=Symbol.for("parent"),ha=Symbol.for("rowIndex"),Qr=Symbol.for("keyToIdx"),Xr=Symbol.for("idxToVal"),kj=Symbol.for("nodejs.util.inspect.custom"),hi=class{constructor(e,r){this[pr]=e,this.size=r}entries(){return this[Symbol.iterator]()}has(e){return this.get(e)!==void 0}get(e){let r;if(e!=null){let n=this[Qr]||(this[Qr]=new Map),i=n.get(e);if(i!==void 0){let o=this[Xr]||(this[Xr]=new Array(this.size));(r=o[i])!==void 0||(o[i]=r=this.getValue(i))}else if((i=this.getIndex(e))>-1){n.set(e,i);let o=this[Xr]||(this[Xr]=new Array(this.size));(r=o[i])!==void 0||(o[i]=r=this.getValue(i))}}return r}set(e,r){if(e!=null){let n=this[Qr]||(this[Qr]=new Map),i=n.get(e);if(i===void 0&&n.set(e,i=this.getIndex(e)),i>-1){let o=this[Xr]||(this[Xr]=new Array(this.size));o[i]=this.setValue(i,r)}}return this}clear(){throw new Error(`Clearing ${this[Symbol.toStringTag]} not supported.`)}delete(e){throw new Error(`Deleting ${this[Symbol.toStringTag]} values not supported.`)}*[Symbol.iterator](){let e=this.keys(),r=this.values(),n=this[Qr]||(this[Qr]=new Map),i=this[Xr]||(this[Xr]=new Array(this.size));for(let o,f,s=0,u,l;!((u=e.next()).done||(l=r.next()).done);++s)o=u.value,f=l.value,i[s]=f,n.has(o)||n.set(o,s),yield[o,f]}forEach(e,r){let n=this.keys(),i=this.values(),o=r===void 0?e:(u,l,c)=>e.call(r,u,l,c),f=this[Qr]||(this[Qr]=new Map),s=this[Xr]||(this[Xr]=new Array(this.size));for(let u,l,c=0,w,p;!((w=n.next()).done||(p=i.next()).done);++c)u=w.value,l=p.value,s[c]=l,f.has(u)||f.set(u,c),o(l,u,this)}toArray(){return[...this.values()]}toJSON(){let e={};return this.forEach((r,n)=>e[n]=r),e}inspect(){return this.toString()}[kj](){return this.toString()}toString(){let e=[];return this.forEach((r,n)=>{n=Px.valueToString(n),r=Px.valueToString(r),e.push(`${n}: ${r}`)}),`{ ${e.join(", ")} }`}};hi[Symbol.toStringTag]=(t=>(Object.defineProperties(t,{size:{writable:!0,enumerable:!1,configurable:!1,value:0},[pr]:{writable:!0,enumerable:!1,configurable:!1,value:null},[ha]:{writable:!0,enumerable:!1,configurable:!1,value:-1}}),t[Symbol.toStringTag]="Row"))(hi.prototype);var Rx=class extends hi{constructor(e){super(e,e.length);return oU(this)}keys(){return this[pr].getChildAt(0)[Symbol.iterator]()}values(){return this[pr].getChildAt(1)[Symbol.iterator]()}getKey(e){return this[pr].getChildAt(0).get(e)}getIndex(e){return this[pr].getChildAt(0).indexOf(e)}getValue(e){return this[pr].getChildAt(1).get(e)}setValue(e,r){this[pr].getChildAt(1).set(e,r)}};ba.MapRow=Rx;var Hx=class extends hi{constructor(e){super(e,e.type.children.length);return Ux(this)}*keys(){for(let e of this[pr].type.children)yield e.name}*values(){for(let e of this[pr].type.children)yield this[e.name]}getKey(e){return this[pr].type.children[e].name}getIndex(e){return this[pr].type.children.findIndex(r=>r.name===e)}getValue(e){return this[pr].getChildAt(e).get(this[ha])}setValue(e,r){return this[pr].getChildAt(e).set(this[ha],r)}};ba.StructRow=Hx;Object.setPrototypeOf(hi.prototype,Map.prototype);var Ux=(()=>{let t={enumerable:!0,configurable:!1,get:null,set:null};return e=>{let r=-1,n=e[Qr]||(e[Qr]=new Map),i=f=>function(){return this.get(f)},o=f=>function(s){return this.set(f,s)};for(let f of e.keys())n.set(f,++r),t.get=i(f),t.set=o(f),Object.prototype.hasOwnProperty.call(e,f)||(t.enumerable=!0,Object.defineProperty(e,f,t)),Object.prototype.hasOwnProperty.call(e,r)||(t.enumerable=!1,Object.defineProperty(e,r,t));return t.get=t.set=null,e}})(),oU=(()=>{if(typeof Proxy=="undefined")return Ux;let t=hi.prototype.has,e=hi.prototype.get,r=hi.prototype.set,n=hi.prototype.getKey,i={isExtensible(){return!1},deleteProperty(){return!1},preventExtensions(){return!0},ownKeys(o){return[...o.keys()].map(f=>`${f}`)},has(o,f){switch(f){case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:case pr:case ha:case Xr:case Qr:case kj:return!0}return typeof f=="number"&&!o.has(f)&&(f=o.getKey(f)),o.has(f)},get(o,f,s){switch(f){case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:case pr:case ha:case Xr:case Qr:case kj:return Reflect.get(o,f,s)}return typeof f=="number"&&!t.call(s,f)&&(f=n.call(s,f)),e.call(s,f)},set(o,f,s,u){switch(f){case pr:case ha:case Xr:case Qr:return Reflect.set(o,f,s,u);case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:return!1}return typeof f=="number"&&!t.call(u,f)&&(f=n.call(u,f)),t.call(u,f)?!!r.call(u,f,s):!1}};return o=>new Proxy(o,i)})()});var Nu=k(ef=>{"use strict";Object.defineProperty(ef,"__esModule",{value:!0});ef.createElementComparator=ef.clampRange=ef.clampIndex=void 0;var Mx=Ut(),zx=Fu(),fU=Xt(),Lx=gr();function sU(t,e,r){let n=t.length,i=e>-1?e:n+e%n;return r?r(t,i):i}ef.clampIndex=sU;var Vx;function aU(t,e,r,n){let{length:i=0}=t,o=typeof e!="number"?0:e,f=typeof r!="number"?i:r;return o<0&&(o=(o%i+i)%i),f<0&&(f=(f%i+i)%i),f<o&&(Vx=o,o=f,f=Vx),f>i&&(f=i),n?n(t,o,f):[o,f]}ef.clampRange=aU;var lU=Lx.BigIntAvailable?Lx.BigInt(0):0,Cx=t=>t!==t;function Du(t){let e=typeof t;if(e!=="object"||t===null)return Cx(t)?Cx:e!=="bigint"?r=>r===t:r=>lU+r===t;if(t instanceof Date){let r=t.valueOf();return n=>n instanceof Date?n.valueOf()===r:!1}return ArrayBuffer.isView(t)?r=>r?fU.compareArrayLike(t,r):!1:t instanceof Map?cU(t):Array.isArray(t)?uU(t):t instanceof Mx.Vector?pU(t):dU(t)}ef.createElementComparator=Du;function uU(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Du(t[r]);return gm(e)}function cU(t){let e=-1,r=[];return t.forEach(n=>r[++e]=Du(n)),gm(r)}function pU(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Du(t.get(r));return gm(e)}function dU(t){let e=Object.keys(t);if(e.length===0)return()=>!1;let r=[];for(let n=-1,i=e.length;++n<i;)r[n]=Du(t[e[n]]);return gm(r,e)}function gm(t,e){return r=>{if(!r||typeof r!="object")return!1;switch(r.constructor){case Array:return mU(t,r);case Map:case zx.MapRow:case zx.StructRow:return Wx(t,r,r.keys());case Object:case void 0:return Wx(t,r,e||Object.keys(r))}return r instanceof Mx.Vector?wU(t,r):!1}}function mU(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e[n]))return!1;return!0}function wU(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e.get(n)))return!1;return!0}function Wx(t,e,r){let n=r[Symbol.iterator](),i=e instanceof Map?e.keys():Object.keys(e)[Symbol.iterator](),o=e instanceof Map?e.values():Object.values(e)[Symbol.iterator](),f=0,s=t.length,u=o.next(),l=n.next(),c=i.next();for(;f<s&&!l.done&&!c.done&&!u.done&&!(l.value!==c.value||!t[f](u.value));++f,l=n.next(),c=i.next(),u=o.next());return f===s&&l.done&&c.done&&u.done?!0:(n.return&&n.return(),i.return&&i.return(),o.return&&o.return(),!1)}});var ga=k(Lr=>{"use strict";Object.defineProperty(Lr,"__esModule",{value:!0});Lr.selectColumnChildrenArgs=Lr.selectVectorChildrenArgs=Lr.selectChunkArgs=Lr.selectFieldArgs=Lr.selectColumnArgs=Lr.selectArgs=void 0;var Kx=Un(),Yx=ir(),tf=ya(),Pu=Ut(),Gx=nt(),hU=nf(),rf=Array.isArray;Lr.selectArgs=(t,e)=>ym(t,e,[],0);Lr.selectColumnArgs=t=>{let[e,r]=Ij(t,[[],[]]);return r.map((n,i)=>n instanceof tf.Column?tf.Column.new(n.field.clone(e[i]),n):n instanceof Pu.Vector?tf.Column.new(e[i],n):tf.Column.new(e[i],[]))};Lr.selectFieldArgs=t=>Ij(t,[[],[]]);Lr.selectChunkArgs=(t,e)=>Bj(t,e,[],0);Lr.selectVectorChildrenArgs=(t,e)=>Zx(t,e,[],0);Lr.selectColumnChildrenArgs=(t,e)=>Jx(t,e,[],0);function ym(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)rf(i=e[f])?o=ym(t,i,r,o).length:i instanceof t&&(r[o++]=i);return r}function Bj(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)rf(i=e[f])?o=Bj(t,i,r,o).length:i instanceof hU.Chunked?o=Bj(t,i.chunks,r,o).length:i instanceof t&&(r[o++]=i);return r}function Zx(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)rf(i=e[f])?o=Zx(t,i,r,o).length:i instanceof t?o=ym(Pu.Vector,i.schema.fields.map((u,l)=>i.getChildAt(l)),r,o).length:i instanceof Pu.Vector&&(r[o++]=i);return r}function Jx(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)rf(i=e[f])?o=Jx(t,i,r,o).length:i instanceof t?o=ym(tf.Column,i.schema.fields.map((u,l)=>tf.Column.new(u,i.getChildAt(l))),r,o).length:i instanceof tf.Column&&(r[o++]=i);return r}var bU=(t,[e,r],n)=>(t[0][n]=e,t[1][n]=r,t);function Ij(t,e){let r,n;switch(n=t.length){case 0:return e;case 1:if(r=e[0],!t[0])return e;if(rf(t[0]))return Ij(t[0],e);t[0]instanceof Kx.Data||t[0]instanceof Pu.Vector||t[0]instanceof Gx.DataType||([r,t]=Object.entries(t[0]).reduce(bU,e));break;default:rf(r=t[n-1])?t=rf(t[0])?t[0]:t.slice(0,n-1):(t=rf(t[0])?t[0]:t,r=[])}let i=-1,o=-1,f=-1,s=t.length,u,l,[c,w]=e;for(;++f<s;)l=t[f],l instanceof tf.Column&&(w[++o]=l)?c[++i]=l.field.clone(r[f],l.type,!0):({[f]:u=f}=r,l instanceof Gx.DataType&&(w[++o]=l)?c[++i]=Yx.Field.new(u,l,!0):l&&l.type&&(w[++o]=l)&&(l instanceof Kx.Data&&(w[o]=l=Pu.Vector.new(l)),c[++i]=Yx.Field.new(u,l.type,!0)));return e}});var nf=k(jm=>{"use strict";Object.defineProperty(jm,"__esModule",{value:!0});jm.Chunked=void 0;var gU=Nu(),Qx=nt(),yU=ga(),Xx=Ut(),$x=class{constructor(e){this.chunks=e,this.chunkIndex=0,this.chunkIterator=this.getChunkIterator()}next(){for(;this.chunkIndex<this.chunks.length;){let e=this.chunkIterator.next();if(!e.done)return e;++this.chunkIndex<this.chunks.length&&(this.chunkIterator=this.getChunkIterator())}return{done:!0,value:null}}getChunkIterator(){return this.chunks[this.chunkIndex][Symbol.iterator]()}[Symbol.iterator](){return this}},no=class extends Xx.AbstractVector{constructor(e,r=[],n=jU(r)){super();this._nullCount=-1,this._type=e,this._chunks=r,this._chunkOffsets=n,this._length=n[n.length-1],this._numChildren=(this._type.children||[]).length}static flatten(...e){return yU.selectChunkArgs(Xx.Vector,e)}static concat(...e){let r=no.flatten(...e);return new no(r[0].type,r)}get type(){return this._type}get length(){return this._length}get chunks(){return this._chunks}get typeId(){return this._type.typeId}get VectorName(){return`Chunked<${this._type}>`}get data(){return this._chunks[0]?this._chunks[0].data:null}get ArrayType(){return this._type.ArrayType}get numChildren(){return this._numChildren}get stride(){return this._chunks[0]?this._chunks[0].stride:1}get byteLength(){return this._chunks.reduce((e,r)=>e+r.byteLength,0)}get nullCount(){let e=this._nullCount;return e<0&&(this._nullCount=e=this._chunks.reduce((r,{nullCount:n})=>r+n,0)),e}get indices(){if(Qx.DataType.isDictionary(this._type)){if(!this._indices){let e=this._chunks;this._indices=e.length===1?e[0].indices:no.concat(...e.map(r=>r.indices))}return this._indices}return null}get dictionary(){return Qx.DataType.isDictionary(this._type)?this._chunks[this._chunks.length-1].data.dictionary:null}[Symbol.iterator](){return new $x(this._chunks)}clone(e=this._chunks){return new no(this._type,e)}concat(...e){return this.clone(no.flatten(this,...e))}slice(e,r){return gU.clampRange(this,e,r,this._sliceInternal)}getChildAt(e){if(e<0||e>=this._numChildren)return null;let r=this._children||(this._children=[]),n,i,o;return(n=r[e])?n:(i=(this._type.children||[])[e])&&(o=this._chunks.map(f=>f.getChildAt(e)).filter(f=>f!=null),o.length>0)?r[e]=new no(i.type,o):null}search(e,r){let n=e,i=this._chunkOffsets,o=i.length-1;if(n<0||n>=i[o])return null;if(o<=1)return r?r(this,0,n):[0,n];let f=0,s=0,u=0;do{if(f+1===o)return r?r(this,f,n-s):[f,n-s];u=f+(o-f)/2|0,n>=i[u]?f=u:o=u}while(n<i[o]&&n>=(s=i[f]));return null}isValid(e){return!!this.search(e,this.isValidInternal)}get(e){return this.search(e,this.getInternal)}set(e,r){this.search(e,({chunks:n},i,o)=>n[i].set(o,r))}indexOf(e,r){return r&&typeof r=="number"?this.search(r,(n,i,o)=>this.indexOfInternal(n,i,o,e)):this.indexOfInternal(this,0,Math.max(0,r||0),e)}toArray(){let{chunks:e}=this,r=e.length,n=this._type.ArrayType;if(r<=0)return new n(0);if(r<=1)return e[0].toArray();let i=0,o=new Array(r);for(let u=-1;++u<r;)i+=(o[u]=e[u].toArray()).length;n!==o[0].constructor&&(n=o[0].constructor);let f=new n(i),s=n===Array?qU:_U;for(let u=-1,l=0;++u<r;)l=s(o[u],f,l);return f}getInternal({_chunks:e},r,n){return e[r].get(n)}isValidInternal({_chunks:e},r,n){return e[r].isValid(n)}indexOfInternal({_chunks:e},r,n,i){let o=r-1,f=e.length,s=n,u=0,l=-1;for(;++o<f;){if(~(l=e[o].indexOf(i,s)))return u+l;s=0,u+=e[o].length}return-1}_sliceInternal(e,r,n){let i=[],{chunks:o,_chunkOffsets:f}=e;for(let s=-1,u=o.length;++s<u;){let l=o[s],c=l.length,w=f[s];if(w>=n)break;if(r>=w+c)continue;if(w>=r&&w+c<=n){i.push(l);continue}let p=Math.max(0,r-w),b=Math.min(n-w,c);i.push(l.slice(p,b))}return e.clone(i)}};jm.Chunked=no;function jU(t){let e=new Uint32Array((t||[]).length+1),r=e[0]=0,n=e.length;for(let i=0;++i<n;)e[i]=r+=t[i-1].length;return e}var _U=(t,e,r)=>(e.set(t,r),r+t.length),qU=(t,e,r)=>{let n=r;for(let i=-1,o=t.length;++i<o;)e[n++]=t[i];return n}});var ya=k(_m=>{"use strict";Object.defineProperty(_m,"__esModule",{value:!0});_m.Column=void 0;var eS=ir(),tS=Ut(),xj=nf(),ts=class extends xj.Chunked{constructor(e,r=[],n){r=xj.Chunked.flatten(...r);super(e.type,r,n);if(this._field=e,r.length===1&&!(this instanceof Sj))return new Sj(e,r[0],this._chunkOffsets)}static new(...e){let[r,n,...i]=e;typeof r!="string"&&!(r instanceof eS.Field)&&(n=r,r="");let o=xj.Chunked.flatten(Array.isArray(n)?[...n,...i]:n instanceof tS.Vector?[n,...i]:[tS.Vector.new(n,...i)]);if(typeof r=="string"){let f=o[0].data.type;r=new eS.Field(r,f,!0)}else!r.nullable&&o.some(({nullCount:f})=>f>0)&&(r=r.clone({nullable:!0}));return new ts(r,o)}get field(){return this._field}get name(){return this._field.name}get nullable(){return this._field.nullable}get metadata(){return this._field.metadata}clone(e=this._chunks){return new ts(this._field,e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r=this._children||(this._children=[]),n,i,o;return(n=r[e])?n:(i=(this.type.children||[])[e])&&(o=this._chunks.map(f=>f.getChildAt(e)).filter(f=>f!=null),o.length>0)?r[e]=new ts(i,o):null}};_m.Column=ts;var Sj=class extends ts{constructor(e,r,n){super(e,[r],n);this._chunk=r}search(e,r){return r?r(this,0,e):[0,e]}isValid(e){return this._chunk.isValid(e)}get(e){return this._chunk.get(e)}set(e,r){this._chunk.set(e,r)}indexOf(e,r){return this._chunk.indexOf(e,r)}}});var rS=k(ja=>{"use strict";Object.defineProperty(ja,"__esModule",{value:!0});ja.instance=ja.TypeAssembler=void 0;var vU=Gi(),TU=vU.flatbuffers.Long,kU=cr(),le=zo(),Ej=class extends kU.Visitor{visit(e,r){return e==null||r==null?void 0:super.visit(e,r)}visitNull(e,r){return le.Null.startNull(r),le.Null.endNull(r)}visitInt(e,r){return le.Int.startInt(r),le.Int.addBitWidth(r,e.bitWidth),le.Int.addIsSigned(r,e.isSigned),le.Int.endInt(r)}visitFloat(e,r){return le.FloatingPoint.startFloatingPoint(r),le.FloatingPoint.addPrecision(r,e.precision),le.FloatingPoint.endFloatingPoint(r)}visitBinary(e,r){return le.Binary.startBinary(r),le.Binary.endBinary(r)}visitBool(e,r){return le.Bool.startBool(r),le.Bool.endBool(r)}visitUtf8(e,r){return le.Utf8.startUtf8(r),le.Utf8.endUtf8(r)}visitDecimal(e,r){return le.Decimal.startDecimal(r),le.Decimal.addScale(r,e.scale),le.Decimal.addPrecision(r,e.precision),le.Decimal.endDecimal(r)}visitDate(e,r){return le.Date.startDate(r),le.Date.addUnit(r,e.unit),le.Date.endDate(r)}visitTime(e,r){return le.Time.startTime(r),le.Time.addUnit(r,e.unit),le.Time.addBitWidth(r,e.bitWidth),le.Time.endTime(r)}visitTimestamp(e,r){let n=e.timezone&&r.createString(e.timezone)||void 0;return le.Timestamp.startTimestamp(r),le.Timestamp.addUnit(r,e.unit),n!==void 0&&le.Timestamp.addTimezone(r,n),le.Timestamp.endTimestamp(r)}visitInterval(e,r){return le.Interval.startInterval(r),le.Interval.addUnit(r,e.unit),le.Interval.endInterval(r)}visitList(e,r){return le.List.startList(r),le.List.endList(r)}visitStruct(e,r){return le.Struct_.startStruct_(r),le.Struct_.endStruct_(r)}visitUnion(e,r){le.Union.startTypeIdsVector(r,e.typeIds.length);let n=le.Union.createTypeIdsVector(r,e.typeIds);return le.Union.startUnion(r),le.Union.addMode(r,e.mode),le.Union.addTypeIds(r,n),le.Union.endUnion(r)}visitDictionary(e,r){let n=this.visit(e.indices,r);return le.DictionaryEncoding.startDictionaryEncoding(r),le.DictionaryEncoding.addId(r,new TU(e.id,0)),le.DictionaryEncoding.addIsOrdered(r,e.isOrdered),n!==void 0&&le.DictionaryEncoding.addIndexType(r,n),le.DictionaryEncoding.endDictionaryEncoding(r)}visitFixedSizeBinary(e,r){return le.FixedSizeBinary.startFixedSizeBinary(r),le.FixedSizeBinary.addByteWidth(r,e.byteWidth),le.FixedSizeBinary.endFixedSizeBinary(r)}visitFixedSizeList(e,r){return le.FixedSizeList.startFixedSizeList(r),le.FixedSizeList.addListSize(r,e.listSize),le.FixedSizeList.endFixedSizeList(r)}visitMap(e,r){return le.Map.startMap(r),le.Map.addKeysSorted(r,e.keysSorted),le.Map.endMap(r)}};ja.TypeAssembler=Ej;ja.instance=new Ej});var lS=k(bi=>{"use strict";Object.defineProperty(bi,"__esModule",{value:!0});bi.fieldFromJSON=bi.dictionaryBatchFromJSON=bi.recordBatchFromJSON=bi.schemaFromJSON=void 0;var _a=ir(),qt=nt(),rs=ns(),qa=bt();function BU(t,e=new Map){return new _a.Schema(xU(t,e),qm(t.customMetadata),e)}bi.schemaFromJSON=BU;function nS(t){return new rs.RecordBatch(t.count,oS(t.columns),fS(t.columns))}bi.recordBatchFromJSON=nS;function IU(t){return new rs.DictionaryBatch(nS(t.data),t.id,t.isDelta)}bi.dictionaryBatchFromJSON=IU;function xU(t,e){return(t.fields||[]).filter(Boolean).map(r=>_a.Field.fromJSON(r,e))}function iS(t,e){return(t.children||[]).filter(Boolean).map(r=>_a.Field.fromJSON(r,e))}function oS(t){return(t||[]).reduce((e,r)=>[...e,new rs.FieldNode(r.count,SU(r.VALIDITY)),...oS(r.children)],[])}function fS(t,e=[]){for(let r=-1,n=(t||[]).length;++r<n;){let i=t[r];i.VALIDITY&&e.push(new rs.BufferRegion(e.length,i.VALIDITY.length)),i.TYPE&&e.push(new rs.BufferRegion(e.length,i.TYPE.length)),i.OFFSET&&e.push(new rs.BufferRegion(e.length,i.OFFSET.length)),i.DATA&&e.push(new rs.BufferRegion(e.length,i.DATA.length)),e=fS(i.children,e)}return e}function SU(t){return(t||[]).reduce((e,r)=>e+ +(r===0),0)}function EU(t,e){let r,n,i,o,f,s;return!e||!(o=t.dictionary)?(f=aS(t,iS(t,e)),i=new _a.Field(t.name,f,t.nullable,qm(t.customMetadata))):e.has(r=o.id)?(n=(n=o.indexType)?sS(n):new qt.Int32,s=new qt.Dictionary(e.get(r),n,r,o.isOrdered),i=new _a.Field(t.name,s,t.nullable,qm(t.customMetadata))):(n=(n=o.indexType)?sS(n):new qt.Int32,e.set(r,f=aS(t,iS(t,e))),s=new qt.Dictionary(f,n,r,o.isOrdered),i=new _a.Field(t.name,s,t.nullable,qm(t.customMetadata))),i||null}bi.fieldFromJSON=EU;function qm(t){return new Map(Object.entries(t||{}))}function sS(t){return new qt.Int(t.isSigned,t.bitWidth)}function aS(t,e){let r=t.type.name;switch(r){case"NONE":return new qt.Null;case"null":return new qt.Null;case"binary":return new qt.Binary;case"utf8":return new qt.Utf8;case"bool":return new qt.Bool;case"list":return new qt.List((e||[])[0]);case"struct":return new qt.Struct(e||[]);case"struct_":return new qt.Struct(e||[])}switch(r){case"int":{let n=t.type;return new qt.Int(n.isSigned,n.bitWidth)}case"floatingpoint":{let n=t.type;return new qt.Float(qa.Precision[n.precision])}case"decimal":{let n=t.type;return new qt.Decimal(n.scale,n.precision)}case"date":{let n=t.type;return new qt.Date_(qa.DateUnit[n.unit])}case"time":{let n=t.type;return new qt.Time(qa.TimeUnit[n.unit],n.bitWidth)}case"timestamp":{let n=t.type;return new qt.Timestamp(qa.TimeUnit[n.unit],n.timezone)}case"interval":{let n=t.type;return new qt.Interval(qa.IntervalUnit[n.unit])}case"union":{let n=t.type;return new qt.Union(qa.UnionMode[n.mode],n.typeIds||[],e||[])}case"fixedsizebinary":{let n=t.type;return new qt.FixedSizeBinary(n.byteWidth)}case"fixedsizelist":{let n=t.type;return new qt.FixedSizeList(n.listSize,(e||[])[0])}case"map":{let n=t.type;return new qt.Map_((e||[])[0],n.keysSorted)}}throw new Error(`Unrecognized type: "${r}"`)}});var ns=k(vn=>{"use strict";Object.defineProperty(vn,"__esModule",{value:!0});vn.FieldNode=vn.BufferRegion=vn.DictionaryBatch=vn.RecordBatch=vn.Message=void 0;var Aj=Gi(),se=zo(),Tt=Bd(),or=ir(),AU=Xt(),Ot=bt(),Oj=rS(),vm=lS(),is=Aj.flatbuffers.Long,OU=Aj.flatbuffers.Builder,FU=Aj.flatbuffers.ByteBuffer,vt=nt(),of=class{constructor(e,r,n,i){this._version=r,this._headerType=n,this.body=new Uint8Array(0),i&&(this._createHeader=()=>i),this._bodyLength=typeof e=="number"?e:e.low}static fromJSON(e,r){let n=new of(0,Ot.MetadataVersion.V4,r);return n._createHeader=DU(e,r),n}static decode(e){e=new FU(AU.toUint8Array(e));let r=Tt.Message.getRootAsMessage(e),n=r.bodyLength(),i=r.version(),o=r.headerType(),f=new of(n,i,o);return f._createHeader=NU(r,o),f}static encode(e){let r=new OU,n=-1;return e.isSchema()?n=or.Schema.encode(r,e.header()):e.isRecordBatch()?n=qn.encode(r,e.header()):e.isDictionaryBatch()&&(n=gi.encode(r,e.header())),Tt.Message.startMessage(r),Tt.Message.addVersion(r,Ot.MetadataVersion.V4),Tt.Message.addHeader(r,n),Tt.Message.addHeaderType(r,e.headerType),Tt.Message.addBodyLength(r,new is(e.bodyLength,0)),Tt.Message.finishMessageBuffer(r,Tt.Message.endMessage(r)),r.asUint8Array()}static from(e,r=0){if(e instanceof or.Schema)return new of(0,Ot.MetadataVersion.V4,Ot.MessageHeader.Schema,e);if(e instanceof qn)return new of(r,Ot.MetadataVersion.V4,Ot.MessageHeader.RecordBatch,e);if(e instanceof gi)return new of(r,Ot.MetadataVersion.V4,Ot.MessageHeader.DictionaryBatch,e);throw new Error(`Unrecognized Message header: ${e}`)}get type(){return this.headerType}get version(){return this._version}get headerType(){return this._headerType}get bodyLength(){return this._bodyLength}header(){return this._createHeader()}isSchema(){return this.headerType===Ot.MessageHeader.Schema}isRecordBatch(){return this.headerType===Ot.MessageHeader.RecordBatch}isDictionaryBatch(){return this.headerType===Ot.MessageHeader.DictionaryBatch}};vn.Message=of;var qn=class{constructor(e,r,n){this._nodes=r,this._buffers=n,this._length=typeof e=="number"?e:e.low}get nodes(){return this._nodes}get length(){return this._length}get buffers(){return this._buffers}};vn.RecordBatch=qn;var gi=class{constructor(e,r,n=!1){this._data=e,this._isDelta=n,this._id=typeof r=="number"?r:r.low}get id(){return this._id}get data(){return this._data}get isDelta(){return this._isDelta}get length(){return this.data.length}get nodes(){return this.data.nodes}get buffers(){return this.data.buffers}};vn.DictionaryBatch=gi;var os=class{constructor(e,r){this.offset=typeof e=="number"?e:e.low,this.length=typeof r=="number"?r:r.low}};vn.BufferRegion=os;var fs=class{constructor(e,r){this.length=typeof e=="number"?e:e.low,this.nullCount=typeof r=="number"?r:r.low}};vn.FieldNode=fs;function DU(t,e){return()=>{switch(e){case Ot.MessageHeader.Schema:return or.Schema.fromJSON(t);case Ot.MessageHeader.RecordBatch:return qn.fromJSON(t);case Ot.MessageHeader.DictionaryBatch:return gi.fromJSON(t)}throw new Error(`Unrecognized Message type: { name: ${Ot.MessageHeader[e]}, type: ${e} }`)}}function NU(t,e){return()=>{switch(e){case Ot.MessageHeader.Schema:return or.Schema.decode(t.header(new se.Schema));case Ot.MessageHeader.RecordBatch:return qn.decode(t.header(new Tt.RecordBatch),t.version());case Ot.MessageHeader.DictionaryBatch:return gi.decode(t.header(new Tt.DictionaryBatch),t.version())}throw new Error(`Unrecognized Message type: { name: ${Ot.MessageHeader[e]}, type: ${e} }`)}}or.Field.encode=KU;or.Field.decode=CU;or.Field.fromJSON=vm.fieldFromJSON;or.Schema.encode=WU;or.Schema.decode=PU;or.Schema.fromJSON=vm.schemaFromJSON;qn.encode=YU;qn.decode=RU;qn.fromJSON=vm.recordBatchFromJSON;gi.encode=GU;gi.decode=HU;gi.fromJSON=vm.dictionaryBatchFromJSON;fs.encode=ZU;fs.decode=MU;os.encode=JU;os.decode=UU;function PU(t,e=new Map){let r=VU(t,e);return new or.Schema(r,Tm(t),e)}function RU(t,e=Ot.MetadataVersion.V4){return new qn(t.length(),zU(t),LU(t,e))}function HU(t,e=Ot.MetadataVersion.V4){return new gi(qn.decode(t.data(),e),t.id(),t.isDelta())}function UU(t){return new os(t.offset(),t.length())}function MU(t){return new fs(t.length(),t.nullCount())}function zU(t){let e=[];for(let r,n=-1,i=-1,o=t.nodesLength();++n<o;)(r=t.nodes(n))&&(e[++i]=fs.decode(r));return e}function LU(t,e){let r=[];for(let n,i=-1,o=-1,f=t.buffersLength();++i<f;)(n=t.buffers(i))&&(e<Ot.MetadataVersion.V4&&(n.bb_pos+=8*(i+1)),r[++o]=os.decode(n));return r}function VU(t,e){let r=[];for(let n,i=-1,o=-1,f=t.fieldsLength();++i<f;)(n=t.fields(i))&&(r[++o]=or.Field.decode(n,e));return r}function uS(t,e){let r=[];for(let n,i=-1,o=-1,f=t.childrenLength();++i<f;)(n=t.children(i))&&(r[++o]=or.Field.decode(n,e));return r}function CU(t,e){let r,n,i,o,f,s;return!e||!(s=t.dictionary())?(i=pS(t,uS(t,e)),n=new or.Field(t.name(),i,t.nullable(),Tm(t))):e.has(r=s.id().low)?(o=(o=s.indexType())?cS(o):new vt.Int32,f=new vt.Dictionary(e.get(r),o,r,s.isOrdered()),n=new or.Field(t.name(),f,t.nullable(),Tm(t))):(o=(o=s.indexType())?cS(o):new vt.Int32,e.set(r,i=pS(t,uS(t,e))),f=new vt.Dictionary(i,o,r,s.isOrdered()),n=new or.Field(t.name(),f,t.nullable(),Tm(t))),n||null}function Tm(t){let e=new Map;if(t)for(let r,n,i=-1,o=t.customMetadataLength()|0;++i<o;)(r=t.customMetadata(i))&&(n=r.key())!=null&&e.set(n,r.value());return e}function cS(t){return new vt.Int(t.isSigned(),t.bitWidth())}function pS(t,e){let r=t.typeType();switch(r){case se.Type.NONE:return new vt.Null;case se.Type.Null:return new vt.Null;case se.Type.Binary:return new vt.Binary;case se.Type.Utf8:return new vt.Utf8;case se.Type.Bool:return new vt.Bool;case se.Type.List:return new vt.List((e||[])[0]);case se.Type.Struct_:return new vt.Struct(e||[])}switch(r){case se.Type.Int:{let n=t.type(new se.Int);return new vt.Int(n.isSigned(),n.bitWidth())}case se.Type.FloatingPoint:{let n=t.type(new se.FloatingPoint);return new vt.Float(n.precision())}case se.Type.Decimal:{let n=t.type(new se.Decimal);return new vt.Decimal(n.scale(),n.precision())}case se.Type.Date:{let n=t.type(new se.Date);return new vt.Date_(n.unit())}case se.Type.Time:{let n=t.type(new se.Time);return new vt.Time(n.unit(),n.bitWidth())}case se.Type.Timestamp:{let n=t.type(new se.Timestamp);return new vt.Timestamp(n.unit(),n.timezone())}case se.Type.Interval:{let n=t.type(new se.Interval);return new vt.Interval(n.unit())}case se.Type.Union:{let n=t.type(new se.Union);return new vt.Union(n.mode(),n.typeIdsArray()||[],e||[])}case se.Type.FixedSizeBinary:{let n=t.type(new se.FixedSizeBinary);return new vt.FixedSizeBinary(n.byteWidth())}case se.Type.FixedSizeList:{let n=t.type(new se.FixedSizeList);return new vt.FixedSizeList(n.listSize(),(e||[])[0])}case se.Type.Map:{let n=t.type(new se.Map);return new vt.Map_((e||[])[0],n.keysSorted())}}throw new Error(`Unrecognized type: "${se.Type[r]}" (${r})`)}function WU(t,e){let r=e.fields.map(o=>or.Field.encode(t,o));se.Schema.startFieldsVector(t,r.length);let n=se.Schema.createFieldsVector(t,r),i=e.metadata&&e.metadata.size>0?se.Schema.createCustomMetadataVector(t,[...e.metadata].map(([o,f])=>{let s=t.createString(`${o}`),u=t.createString(`${f}`);return se.KeyValue.startKeyValue(t),se.KeyValue.addKey(t,s),se.KeyValue.addValue(t,u),se.KeyValue.endKeyValue(t)})):-1;return se.Schema.startSchema(t),se.Schema.addFields(t,n),se.Schema.addEndianness(t,QU?se.Endianness.Little:se.Endianness.Big),i!==-1&&se.Schema.addCustomMetadata(t,i),se.Schema.endSchema(t)}function KU(t,e){let r=-1,n=-1,i=-1,o=e.type,f=e.typeId;vt.DataType.isDictionary(o)?(f=o.dictionary.typeId,i=Oj.instance.visit(o,t),n=Oj.instance.visit(o.dictionary,t)):n=Oj.instance.visit(o,t);let s=(o.children||[]).map(c=>or.Field.encode(t,c)),u=se.Field.createChildrenVector(t,s),l=e.metadata&&e.metadata.size>0?se.Field.createCustomMetadataVector(t,[...e.metadata].map(([c,w])=>{let p=t.createString(`${c}`),b=t.createString(`${w}`);return se.KeyValue.startKeyValue(t),se.KeyValue.addKey(t,p),se.KeyValue.addValue(t,b),se.KeyValue.endKeyValue(t)})):-1;return e.name&&(r=t.createString(e.name)),se.Field.startField(t),se.Field.addType(t,n),se.Field.addTypeType(t,f),se.Field.addChildren(t,u),se.Field.addNullable(t,!!e.nullable),r!==-1&&se.Field.addName(t,r),i!==-1&&se.Field.addDictionary(t,i),l!==-1&&se.Field.addCustomMetadata(t,l),se.Field.endField(t)}function YU(t,e){let r=e.nodes||[],n=e.buffers||[];Tt.RecordBatch.startNodesVector(t,r.length),r.slice().reverse().forEach(f=>fs.encode(t,f));let i=t.endVector();Tt.RecordBatch.startBuffersVector(t,n.length),n.slice().reverse().forEach(f=>os.encode(t,f));let o=t.endVector();return Tt.RecordBatch.startRecordBatch(t),Tt.RecordBatch.addLength(t,new is(e.length,0)),Tt.RecordBatch.addNodes(t,i),Tt.RecordBatch.addBuffers(t,o),Tt.RecordBatch.endRecordBatch(t)}function GU(t,e){let r=qn.encode(t,e.data);return Tt.DictionaryBatch.startDictionaryBatch(t),Tt.DictionaryBatch.addId(t,new is(e.id,0)),Tt.DictionaryBatch.addIsDelta(t,e.isDelta),Tt.DictionaryBatch.addData(t,r),Tt.DictionaryBatch.endDictionaryBatch(t)}function ZU(t,e){return Tt.FieldNode.createFieldNode(t,new is(e.length,0),new is(e.nullCount,0))}function JU(t,e){return se.Buffer.createBuffer(t,new is(e.offset,0),new is(e.length,0))}var QU=function(){let t=new ArrayBuffer(2);return new DataView(t).setInt16(0,256,!0),new Int16Array(t)[0]===256}()});var Bm=k(Ge=>{"use strict";Object.defineProperty(Ge,"__esModule",{value:!0});Ge.magicX2AndPadding=Ge.magicAndPadding=Ge.magicLength=Ge.checkForMagicArrowString=Ge.MAGIC=Ge.MAGIC_STR=Ge.PADDING=Ge.JSONMessageReader=Ge.AsyncMessageReader=Ge.MessageReader=void 0;var ff=bt(),XU=Gi(),dS=XU.flatbuffers.ByteBuffer,Ru=ns(),$U=gr(),eM=_j(),mS=Xt(),km=$o(),Vn=Ys(),Fj=t=>`Expected ${ff.MessageHeader[t]} Message in stream, but was null or length 0.`,Dj=t=>`Header pointer of flatbuffer-encoded ${ff.MessageHeader[t]} Message is null or length 0.`,wS=(t,e)=>`Expected to read ${t} metadata bytes, but only read ${e}.`,hS=(t,e)=>`Expected to read ${t} bytes for message body, but only read ${e}.`,Nj=class{constructor(e){this.source=e instanceof km.ByteStream?e:new km.ByteStream(e)}[Symbol.iterator](){return this}next(){let e;return(e=this.readMetadataLength()).done||e.value===-1&&(e=this.readMetadataLength()).done||(e=this.readMetadata(e.value)).done?Vn.ITERATOR_DONE:e}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Fj(e));return r.value}readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=mS.toUint8Array(this.source.read(e));if(r.byteLength<e)throw new Error(hS(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}readSchema(e=!1){let r=ff.MessageHeader.Schema,n=this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(Dj(r));return i}readMetadataLength(){let e=this.source.read(Ge.PADDING),r=e&&new dS(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}readMetadata(e){let r=this.source.read(e);if(!r)return Vn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(wS(e,r.byteLength));return{done:!1,value:Ru.Message.decode(r)}}};Ge.MessageReader=Nj;var bS=class{constructor(e,r){this.source=e instanceof km.AsyncByteStream?e:$U.isFileHandle(e)?new eM.AsyncRandomAccessFile(e,r):new km.AsyncByteStream(e)}[Symbol.asyncIterator](){return this}async next(){let e;return(e=await this.readMetadataLength()).done||e.value===-1&&(e=await this.readMetadataLength()).done||(e=await this.readMetadata(e.value)).done?Vn.ITERATOR_DONE:e}async throw(e){return await this.source.throw(e)}async return(e){return await this.source.return(e)}async readMessage(e){let r;if((r=await this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Fj(e));return r.value}async readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=mS.toUint8Array(await this.source.read(e));if(r.byteLength<e)throw new Error(hS(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}async readSchema(e=!1){let r=ff.MessageHeader.Schema,n=await this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(Dj(r));return i}async readMetadataLength(){let e=await this.source.read(Ge.PADDING),r=e&&new dS(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}async readMetadata(e){let r=await this.source.read(e);if(!r)return Vn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(wS(e,r.byteLength));return{done:!1,value:Ru.Message.decode(r)}}};Ge.AsyncMessageReader=bS;var gS=class extends Nj{constructor(e){super(new Uint8Array(0));this._schema=!1,this._body=[],this._batchIndex=0,this._dictionaryIndex=0,this._json=e instanceof Vn.ArrowJSON?e:new Vn.ArrowJSON(e)}next(){let{_json:e}=this;if(!this._schema){this._schema=!0;let r=Ru.Message.fromJSON(e.schema,ff.MessageHeader.Schema);return{done:!1,value:r}}if(this._dictionaryIndex<e.dictionaries.length){let r=e.dictionaries[this._dictionaryIndex++];this._body=r.data.columns;let n=Ru.Message.fromJSON(r,ff.MessageHeader.DictionaryBatch);return{done:!1,value:n}}if(this._batchIndex<e.batches.length){let r=e.batches[this._batchIndex++];this._body=r.columns;let n=Ru.Message.fromJSON(r,ff.MessageHeader.RecordBatch);return{done:!1,value:n}}return this._body=[],Vn.ITERATOR_DONE}readMessageBody(e){return r(this._body);function r(n){return(n||[]).reduce((i,o)=>[...i,...o.VALIDITY&&[o.VALIDITY]||[],...o.TYPE&&[o.TYPE]||[],...o.OFFSET&&[o.OFFSET]||[],...o.DATA&&[o.DATA]||[],...r(o.children)],[])}}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Fj(e));return r.value}readSchema(){let e=ff.MessageHeader.Schema,r=this.readMessage(e),n=r&&r.header();if(!r||!n)throw new Error(Dj(e));return n}};Ge.JSONMessageReader=gS;Ge.PADDING=4;Ge.MAGIC_STR="ARROW1";Ge.MAGIC=new Uint8Array(Ge.MAGIC_STR.length);for(let t=0;t<Ge.MAGIC_STR.length;t+=1|0)Ge.MAGIC[t]=Ge.MAGIC_STR.charCodeAt(t);function tM(t,e=0){for(let r=-1,n=Ge.MAGIC.length;++r<n;)if(Ge.MAGIC[r]!==t[e+r])return!1;return!0}Ge.checkForMagicArrowString=tM;Ge.magicLength=Ge.MAGIC.length;Ge.magicAndPadding=Ge.magicLength+Ge.PADDING;Ge.magicX2AndPadding=Ge.magicLength*2+Ge.PADDING});var Uj=k(Ft=>{"use strict";Object.defineProperty(Ft,"__esModule",{value:!0});Ft.compareTypes=Ft.compareFields=Ft.compareSchemas=Ft.instance=Ft.TypeComparator=void 0;var rM=cr(),je=class extends rM.Visitor{compareSchemas(e,r){return e===r||r instanceof e.constructor&&this.compareManyFields(e.fields,r.fields)}compareManyFields(e,r){return e===r||Array.isArray(e)&&Array.isArray(r)&&e.length===r.length&&e.every((n,i)=>this.compareFields(n,r[i]))}compareFields(e,r){return e===r||r instanceof e.constructor&&e.name===r.name&&e.nullable===r.nullable&&this.visit(e.type,r.type)}};Ft.TypeComparator=je;function Vr(t,e){return e instanceof t.constructor}function Hu(t,e){return t===e||Vr(t,e)}function io(t,e){return t===e||Vr(t,e)&&t.bitWidth===e.bitWidth&&t.isSigned===e.isSigned}function Im(t,e){return t===e||Vr(t,e)&&t.precision===e.precision}function nM(t,e){return t===e||Vr(t,e)&&t.byteWidth===e.byteWidth}function Pj(t,e){return t===e||Vr(t,e)&&t.unit===e.unit}function Uu(t,e){return t===e||Vr(t,e)&&t.unit===e.unit&&t.timezone===e.timezone}function Mu(t,e){return t===e||Vr(t,e)&&t.unit===e.unit&&t.bitWidth===e.bitWidth}function iM(t,e){return t===e||Vr(t,e)&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}function oM(t,e){return t===e||Vr(t,e)&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}function Rj(t,e){return t===e||Vr(t,e)&&t.mode===e.mode&&t.typeIds.every((r,n)=>r===e.typeIds[n])&&Ft.instance.compareManyFields(t.children,e.children)}function fM(t,e){return t===e||Vr(t,e)&&t.id===e.id&&t.isOrdered===e.isOrdered&&Ft.instance.visit(t.indices,e.indices)&&Ft.instance.visit(t.dictionary,e.dictionary)}function Hj(t,e){return t===e||Vr(t,e)&&t.unit===e.unit}function sM(t,e){return t===e||Vr(t,e)&&t.listSize===e.listSize&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}function aM(t,e){return t===e||Vr(t,e)&&t.keysSorted===e.keysSorted&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}je.prototype.visitNull=Hu;je.prototype.visitBool=Hu;je.prototype.visitInt=io;je.prototype.visitInt8=io;je.prototype.visitInt16=io;je.prototype.visitInt32=io;je.prototype.visitInt64=io;je.prototype.visitUint8=io;je.prototype.visitUint16=io;je.prototype.visitUint32=io;je.prototype.visitUint64=io;je.prototype.visitFloat=Im;je.prototype.visitFloat16=Im;je.prototype.visitFloat32=Im;je.prototype.visitFloat64=Im;je.prototype.visitUtf8=Hu;je.prototype.visitBinary=Hu;je.prototype.visitFixedSizeBinary=nM;je.prototype.visitDate=Pj;je.prototype.visitDateDay=Pj;je.prototype.visitDateMillisecond=Pj;je.prototype.visitTimestamp=Uu;je.prototype.visitTimestampSecond=Uu;je.prototype.visitTimestampMillisecond=Uu;je.prototype.visitTimestampMicrosecond=Uu;je.prototype.visitTimestampNanosecond=Uu;je.prototype.visitTime=Mu;je.prototype.visitTimeSecond=Mu;je.prototype.visitTimeMillisecond=Mu;je.prototype.visitTimeMicrosecond=Mu;je.prototype.visitTimeNanosecond=Mu;je.prototype.visitDecimal=Hu;je.prototype.visitList=iM;je.prototype.visitStruct=oM;je.prototype.visitUnion=Rj;je.prototype.visitDenseUnion=Rj;je.prototype.visitSparseUnion=Rj;je.prototype.visitDictionary=fM;je.prototype.visitInterval=Hj;je.prototype.visitIntervalDayTime=Hj;je.prototype.visitIntervalYearMonth=Hj;je.prototype.visitFixedSizeList=sM;je.prototype.visitMap=aM;Ft.instance=new je;function lM(t,e){return Ft.instance.compareSchemas(t,e)}Ft.compareSchemas=lM;function uM(t,e){return Ft.instance.compareFields(t,e)}Ft.compareFields=uM;function cM(t,e){return Ft.instance.visit(t,e)}Ft.compareTypes=cM});var vS=k(xm=>{"use strict";Object.defineProperty(xm,"__esModule",{value:!0});xm.VectorAssembler=void 0;var pM=cr(),yS=bt(),dM=oo(),Mj=Xt(),zj=ui(),mM=ga(),jS=ns(),_S=nt(),Yt=class extends pM.Visitor{constructor(){super();this._byteLength=0,this._nodes=[],this._buffers=[],this._bufferRegions=[]}static assemble(...e){let r=new Yt,n=mM.selectVectorChildrenArgs(dM.RecordBatch,e),[i=r]=r.visitMany(n);return i}visit(e){if(!_S.DataType.isDictionary(e.type)){let{data:r,length:n,nullCount:i}=e;if(n>2147483647)throw new RangeError("Cannot write arrays larger than 2^31 - 1 in length");_S.DataType.isNull(e.type)||Cn.call(this,i<=0?new Uint8Array(0):zj.truncateBitmap(r.offset,n,r.nullBitmap)),this.nodes.push(new jS.FieldNode(n,i))}return super.visit(e)}visitNull(e){return this}visitDictionary(e){return this.visit(e.indices)}get nodes(){return this._nodes}get buffers(){return this._buffers}get byteLength(){return this._byteLength}get bufferRegions(){return this._bufferRegions}};xm.VectorAssembler=Yt;function Cn(t){let e=t.byteLength+7&~7;return this.buffers.push(t),this.bufferRegions.push(new jS.BufferRegion(this._byteLength,e)),this._byteLength+=e,this}function wM(t){let{type:e,length:r,typeIds:n,valueOffsets:i}=t;if(Cn.call(this,n),e.mode===yS.UnionMode.Sparse)return Vj.call(this,t);if(e.mode===yS.UnionMode.Dense){if(t.offset<=0)return Cn.call(this,i),Vj.call(this,t);{let o=n.reduce((c,w)=>Math.max(c,w),n[0]),f=new Int32Array(o+1),s=new Int32Array(o+1).fill(-1),u=new Int32Array(r),l=Mj.rebaseValueOffsets(-i[0],r,i);for(let c,w,p=-1;++p<r;)(w=s[c=n[p]])===-1&&(w=s[c]=l[c]),u[p]=l[p]-w,++f[c];Cn.call(this,u);for(let c,w=-1,p=e.children.length;++w<p;)if(c=t.getChildAt(w)){let b=e.typeIds[w],v=Math.min(r,f[b]);this.visit(c.slice(s[b],v))}}}return this}function hM(t){let e;return t.nullCount>=t.length?Cn.call(this,new Uint8Array(0)):(e=t.values)instanceof Uint8Array?Cn.call(this,zj.truncateBitmap(t.offset,t.length,e)):Cn.call(this,zj.packBools(t))}function sf(t){return Cn.call(this,t.values.subarray(0,t.length*t.stride))}function qS(t){let{length:e,values:r,valueOffsets:n}=t,i=n[0],o=n[e],f=Math.min(o-i,r.byteLength-i);return Cn.call(this,Mj.rebaseValueOffsets(-n[0],e,n)),Cn.call(this,r.subarray(i,i+f)),this}function Lj(t){let{length:e,valueOffsets:r}=t;return r&&Cn.call(this,Mj.rebaseValueOffsets(r[0],e,r)),this.visit(t.getChildAt(0))}function Vj(t){return this.visitMany(t.type.children.map((e,r)=>t.getChildAt(r)).filter(Boolean))[0]}Yt.prototype.visitBool=hM;Yt.prototype.visitInt=sf;Yt.prototype.visitFloat=sf;Yt.prototype.visitUtf8=qS;Yt.prototype.visitBinary=qS;Yt.prototype.visitFixedSizeBinary=sf;Yt.prototype.visitDate=sf;Yt.prototype.visitTimestamp=sf;Yt.prototype.visitTime=sf;Yt.prototype.visitDecimal=sf;Yt.prototype.visitList=Lj;Yt.prototype.visitStruct=Vj;Yt.prototype.visitUnion=wM;Yt.prototype.visitInterval=sf;Yt.prototype.visitFixedSizeList=Lj;Yt.prototype.visitMap=Lj});var kS=k(Sm=>{"use strict";Object.defineProperty(Sm,"__esModule",{value:!0});Sm.JSONTypeAssembler=void 0;var bM=cr(),dr=zo(),va=bt(),TS=class extends bM.Visitor{visit(e){return e==null?void 0:super.visit(e)}visitNull({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitInt({typeId:e,bitWidth:r,isSigned:n}){return{name:dr.Type[e].toLowerCase(),bitWidth:r,isSigned:n}}visitFloat({typeId:e,precision:r}){return{name:dr.Type[e].toLowerCase(),precision:va.Precision[r]}}visitBinary({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitBool({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitUtf8({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitDecimal({typeId:e,scale:r,precision:n}){return{name:dr.Type[e].toLowerCase(),scale:r,precision:n}}visitDate({typeId:e,unit:r}){return{name:dr.Type[e].toLowerCase(),unit:va.DateUnit[r]}}visitTime({typeId:e,unit:r,bitWidth:n}){return{name:dr.Type[e].toLowerCase(),unit:va.TimeUnit[r],bitWidth:n}}visitTimestamp({typeId:e,timezone:r,unit:n}){return{name:dr.Type[e].toLowerCase(),unit:va.TimeUnit[n],timezone:r}}visitInterval({typeId:e,unit:r}){return{name:dr.Type[e].toLowerCase(),unit:va.IntervalUnit[r]}}visitList({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitStruct({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitUnion({typeId:e,mode:r,typeIds:n}){return{name:dr.Type[e].toLowerCase(),mode:va.UnionMode[r],typeIds:[...n]}}visitDictionary(e){return this.visit(e.dictionary)}visitFixedSizeBinary({typeId:e,byteWidth:r}){return{name:dr.Type[e].toLowerCase(),byteWidth:r}}visitFixedSizeList({typeId:e,listSize:r}){return{name:dr.Type[e].toLowerCase(),listSize:r}}visitMap({typeId:e,keysSorted:r}){return{name:dr.Type[e].toLowerCase(),keysSorted:r}}};Sm.JSONTypeAssembler=TS});var xS=k(Om=>{"use strict";Object.defineProperty(Om,"__esModule",{value:!0});Om.JSONVectorAssembler=void 0;var gM=Iu(),zu=ya(),yM=Ut(),jM=cr(),_M=bt(),qM=oo(),Cj=bt(),Em=ui(),vM=ga(),BS=nt(),Am=class extends jM.Visitor{static assemble(...e){return new Am().visitMany(vM.selectColumnChildrenArgs(qM.RecordBatch,e))}visit(e){let{data:r,name:n,length:i}=e,{offset:o,nullCount:f,nullBitmap:s}=r,u=BS.DataType.isDictionary(e.type)?e.type.indices:e.type,l=Object.assign([],r.buffers,{[_M.BufferType.VALIDITY]:void 0});return{name:n,count:i,VALIDITY:BS.DataType.isNull(u)?void 0:f<=0?Array.from({length:i},()=>1):[...new Em.BitIterator(s,o,i,null,Em.getBit)],...super.visit(yM.Vector.new(r.clone(u,o,i,0,l)))}}visitNull(){return{}}visitBool({values:e,offset:r,length:n}){return{DATA:[...new Em.BitIterator(e,r,n,null,Em.getBool)]}}visitInt(e){return{DATA:e.type.bitWidth<64?[...e.values]:[...Lu(e.values,2)]}}visitFloat(e){return{DATA:[...e.values]}}visitUtf8(e){return{DATA:[...e],OFFSET:[...e.valueOffsets]}}visitBinary(e){return{DATA:[...IS(e)],OFFSET:[...e.valueOffsets]}}visitFixedSizeBinary(e){return{DATA:[...IS(e)]}}visitDate(e){return{DATA:e.type.unit===Cj.DateUnit.DAY?[...e.values]:[...Lu(e.values,2)]}}visitTimestamp(e){return{DATA:[...Lu(e.values,2)]}}visitTime(e){return{DATA:e.type.unit<Cj.TimeUnit.MICROSECOND?[...e.values]:[...Lu(e.values,2)]}}visitDecimal(e){return{DATA:[...Lu(e.values,4)]}}visitList(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new zu.Column(r,[e.getChildAt(n)])))}}visitStruct(e){return{children:e.type.children.map((r,n)=>this.visit(new zu.Column(r,[e.getChildAt(n)])))}}visitUnion(e){return{TYPE:[...e.typeIds],OFFSET:e.type.mode===Cj.UnionMode.Dense?[...e.valueOffsets]:void 0,children:e.type.children.map((r,n)=>this.visit(new zu.Column(r,[e.getChildAt(n)])))}}visitInterval(e){return{DATA:[...e.values]}}visitFixedSizeList(e){return{children:e.type.children.map((r,n)=>this.visit(new zu.Column(r,[e.getChildAt(n)])))}}visitMap(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new zu.Column(r,[e.getChildAt(n)])))}}};Om.JSONVectorAssembler=Am;function*IS(t){for(let e of t)yield e.reduce((r,n)=>`${r}${("0"+(n&255).toString(16)).slice(-2)}`,"").toUpperCase()}function*Lu(t,e){for(let r=-1,n=t.length/e;++r<n;)yield`${gM.BN.new(t.subarray((r+0)*e,(r+1)*e),!1)}`}});var Rm=k(ji=>{"use strict";Object.defineProperty(ji,"__esModule",{value:!0});ji.RecordBatchJSONWriter=ji.RecordBatchFileWriter=ji.RecordBatchStreamWriter=ji.RecordBatchWriter=void 0;var Wj=Cu(),TM=Bm(),kM=ya(),BM=nt(),IM=ir(),Fm=ns(),Kj=ns(),Ta=gj(),Yj=bt(),SS=Uj(),Gj=$o(),ES=vS(),xM=kS(),AS=xS(),SM=Xt(),Zj=oo(),EM=Ys(),yi=gr(),Vu=class extends EM.ReadableInterop{constructor(e){super();this._position=0,this._started=!1,this._sink=new Gj.AsyncByteQueue,this._schema=null,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,yi.isObject(e)||(e={autoDestroy:!0,writeLegacyIpcFormat:!1}),this._autoDestroy=typeof e.autoDestroy=="boolean"?e.autoDestroy:!0,this._writeLegacyIpcFormat=typeof e.writeLegacyIpcFormat=="boolean"?e.writeLegacyIpcFormat:!1}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}toString(e=!1){return this._sink.toString(e)}toUint8Array(e=!1){return this._sink.toUint8Array(e)}writeAll(e){return yi.isPromise(e)?e.then(r=>this.writeAll(r)):yi.isAsyncIterable(e)?Qj(this,e):Jj(this,e)}get closed(){return this._sink.closed}[Symbol.asyncIterator](){return this._sink[Symbol.asyncIterator]()}toDOMStream(e){return this._sink.toDOMStream(e)}toNodeStream(e){return this._sink.toNodeStream(e)}close(){return this.reset()._sink.close()}abort(e){return this.reset()._sink.abort(e)}finish(){return this._autoDestroy?this.close():this.reset(this._sink,this._schema),this}reset(e=this._sink,r=null){return e===this._sink||e instanceof Gj.AsyncByteQueue?this._sink=e:(this._sink=new Gj.AsyncByteQueue,e&&yi.isWritableDOMStream(e)?this.toDOMStream({type:"bytes"}).pipeTo(e):e&&yi.isWritableNodeStream(e)&&this.toNodeStream({objectMode:!1}).pipe(e)),this._started&&this._schema&&this._writeFooter(this._schema),this._started=!1,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,(!r||!SS.compareSchemas(r,this._schema))&&(r===null?(this._position=0,this._schema=null):(this._started=!0,this._schema=r,this._writeSchema(r))),this}write(e){let r=null;if(this._sink){if(e==null)return this.finish()&&void 0;if(e instanceof Wj.Table&&!(r=e.schema))return this.finish()&&void 0;if(e instanceof Zj.RecordBatch&&!(r=e.schema))return this.finish()&&void 0}else throw new Error("RecordBatchWriter is closed");if(r&&!SS.compareSchemas(r,this._schema)){if(this._started&&this._autoDestroy)return this.close();this.reset(this._sink,r)}e instanceof Zj.RecordBatch?e instanceof Zj._InternalEmptyPlaceholderRecordBatch||this._writeRecordBatch(e):e instanceof Wj.Table?this.writeAll(e.chunks):yi.isIterable(e)&&this.writeAll(e)}_writeMessage(e,r=8){let n=r-1,i=Fm.Message.encode(e),o=i.byteLength,f=this._writeLegacyIpcFormat?4:8,s=o+f+n&~n,u=s-o-f;return e.headerType===Yj.MessageHeader.RecordBatch?this._recordBatchBlocks.push(new Ta.FileBlock(s,e.bodyLength,this._position)):e.headerType===Yj.MessageHeader.DictionaryBatch&&this._dictionaryBlocks.push(new Ta.FileBlock(s,e.bodyLength,this._position)),this._writeLegacyIpcFormat||this._write(Int32Array.of(-1)),this._write(Int32Array.of(s-f)),o>0&&this._write(i),this._writePadding(u)}_write(e){if(this._started){let r=SM.toUint8Array(e);r&&r.byteLength>0&&(this._sink.write(r),this._position+=r.byteLength)}return this}_writeSchema(e){return this._writeMessage(Fm.Message.from(e))}_writeFooter(e){return this._writeLegacyIpcFormat?this._write(Int32Array.of(0)):this._write(Int32Array.of(-1,0))}_writeMagic(){return this._write(TM.MAGIC)}_writePadding(e){return e>0?this._write(new Uint8Array(e)):this}_writeRecordBatch(e){let{byteLength:r,nodes:n,bufferRegions:i,buffers:o}=ES.VectorAssembler.assemble(e),f=new Kj.RecordBatch(e.length,n,i),s=Fm.Message.from(f,r);return this._writeDictionaries(e)._writeMessage(s)._writeBodyBuffers(o)}_writeDictionaryBatch(e,r,n=!1){this._dictionaryDeltaOffsets.set(r,e.length+(this._dictionaryDeltaOffsets.get(r)||0));let{byteLength:i,nodes:o,bufferRegions:f,buffers:s}=ES.VectorAssembler.assemble(e),u=new Kj.RecordBatch(e.length,o,f),l=new Kj.DictionaryBatch(u,r,n),c=Fm.Message.from(l,i);return this._writeMessage(c)._writeBodyBuffers(s)}_writeBodyBuffers(e){let r,n,i;for(let o=-1,f=e.length;++o<f;)(r=e[o])&&(n=r.byteLength)>0&&(this._write(r),(i=(n+7&~7)-n)>0&&this._writePadding(i));return this}_writeDictionaries(e){for(let[r,n]of e.dictionaries){let i=this._dictionaryDeltaOffsets.get(r)||0;if(i===0||(n=n.slice(i)).length>0){let o="chunks"in n?n.chunks:[n];for(let f of o)this._writeDictionaryBatch(f,r,i>0),i+=f.length}}return this}};ji.RecordBatchWriter=Vu;var Dm=class extends Vu{static writeAll(e,r){let n=new Dm(r);return yi.isPromise(e)?e.then(i=>n.writeAll(i)):yi.isAsyncIterable(e)?Qj(n,e):Jj(n,e)}};ji.RecordBatchStreamWriter=Dm;var Nm=class extends Vu{static writeAll(e){let r=new Nm;return yi.isPromise(e)?e.then(n=>r.writeAll(n)):yi.isAsyncIterable(e)?Qj(r,e):Jj(r,e)}constructor(){super();this._autoDestroy=!0}_writeSchema(e){return this._writeMagic()._writePadding(2)}_writeFooter(e){let r=Ta.Footer.encode(new Ta.Footer(e,Yj.MetadataVersion.V4,this._recordBatchBlocks,this._dictionaryBlocks));return super._writeFooter(e)._write(r)._write(Int32Array.of(r.byteLength))._writeMagic()}};ji.RecordBatchFileWriter=Nm;var Pm=class extends Vu{constructor(){super();this._autoDestroy=!0,this._recordBatches=[],this._dictionaries=[]}static writeAll(e){return new Pm().writeAll(e)}_writeMessage(){return this}_writeFooter(e){return this}_writeSchema(e){return this._write(`{
27
- "schema": ${JSON.stringify({fields:e.fields.map(OS)},null,2)}`)}_writeDictionaries(e){return e.dictionaries.size>0&&this._dictionaries.push(e),this}_writeDictionaryBatch(e,r,n=!1){return this._dictionaryDeltaOffsets.set(r,e.length+(this._dictionaryDeltaOffsets.get(r)||0)),this._write(this._dictionaryBlocks.length===0?" ":`,
28
- `),this._write(`${AM(e,r,n)}`),this._dictionaryBlocks.push(new Ta.FileBlock(0,0,0)),this}_writeRecordBatch(e){return this._writeDictionaries(e),this._recordBatches.push(e),this}close(){if(this._dictionaries.length>0){this._write(`,
26
+ return true;`)}Yd.createIsValidFunction=tH;function rH(t){return typeof t!="bigint"?Dy.valueToString(t):eH.BigIntAvailable?`${Dy.valueToString(t)}n`:`"${Dy.valueToString(t)}"`}});var Jo=B(hn=>{"use strict";Object.defineProperty(hn,"__esModule",{value:!0});hn.WideBufferBuilder=hn.OffsetsBufferBuilder=hn.BitmapBufferBuilder=hn.DataBufferBuilder=hn.BufferBuilder=void 0;var d1=Xt(),Py=gr(),Ny=(t,e)=>(t*e+63&~63||64)/e,nH=(t,e=0)=>t.length>=e?t.subarray(0,e):d1.memcpy(new t.constructor(e),t,0),Fu=class{constructor(e,r=1){this.buffer=e,this.stride=r,this.BYTES_PER_ELEMENT=e.BYTES_PER_ELEMENT,this.ArrayType=e.constructor,this._resize(this.length=e.length/r|0)}get byteLength(){return this.length*this.stride*this.BYTES_PER_ELEMENT|0}get reservedLength(){return this.buffer.length/this.stride}get reservedByteLength(){return this.buffer.byteLength}set(e,r){return this}append(e){return this.set(this.length,e)}reserve(e){if(e>0){this.length+=e;let r=this.stride,n=this.length*r,i=this.buffer.length;n>=i&&this._resize(i===0?Ny(n*1,this.BYTES_PER_ELEMENT):Ny(n*2,this.BYTES_PER_ELEMENT))}return this}flush(e=this.length){e=Ny(e*this.stride,this.BYTES_PER_ELEMENT);let r=nH(this.buffer,e);return this.clear(),r}clear(){return this.length=0,this._resize(0),this}_resize(e){return this.buffer=d1.memcpy(new this.ArrayType(e),this.buffer)}};hn.BufferBuilder=Fu;Fu.prototype.offset=0;var Gd=class extends Fu{last(){return this.get(this.length-1)}get(e){return this.buffer[e]}set(e,r){return this.reserve(e-this.length+1),this.buffer[e*this.stride]=r,this}};hn.DataBufferBuilder=Gd;var m1=class extends Gd{constructor(e=new Uint8Array(0)){super(e,1/8);this.numValid=0}get numInvalid(){return this.length-this.numValid}get(e){return this.buffer[e>>3]>>e%8&1}set(e,r){let{buffer:n}=this.reserve(e-this.length+1),i=e>>3,o=e%8,f=n[i]>>o&1;return r?f===0&&(n[i]|=1<<o,++this.numValid):f===1&&(n[i]&=~(1<<o),--this.numValid),this}clear(){return this.numValid=0,super.clear()}};hn.BitmapBufferBuilder=m1;var w1=class extends Gd{constructor(e=new Int32Array(1)){super(e,1)}append(e){return this.set(this.length-1,e)}set(e,r){let n=this.length-1,i=this.reserve(e-n+1).buffer;return n<e++&&i.fill(i[n],n,e),i[e]=i[e-1]+r,this}flush(e=this.length-1){return e>this.length&&this.set(e-1,0),super.flush(e+1)}};hn.OffsetsBufferBuilder=w1;var h1=class extends Fu{get ArrayType64(){return this._ArrayType64||(this._ArrayType64=this.buffer instanceof Int32Array?Py.BigInt64Array:Py.BigUint64Array)}set(e,r){switch(this.reserve(e-this.length+1),typeof r){case"bigint":this.buffer64[e]=r;break;case"number":this.buffer[e*this.stride]=r;break;default:this.buffer.set(r,e*this.stride)}return this}_resize(e){let r=super._resize(e),n=r.byteLength/(this.BYTES_PER_ELEMENT*this.stride);return Py.BigIntAvailable&&(this.buffer64=new this.ArrayType64(r.buffer,r.byteOffset,n)),r}};hn.WideBufferBuilder=h1});var At=B(Qo=>{"use strict";Object.defineProperty(Qo,"__esModule",{value:!0});Qo.VariableWidthBuilder=Qo.FixedWidthBuilder=Qo.Builder=void 0;var iH=zt(),pa=bt(),oH=Un(),fH=p1(),Ry=Jo(),sH=nt(),bn=class{constructor({type:e,nullValues:r}){this.length=0,this.finished=!1,this.type=e,this.children=[],this.nullValues=r,this.stride=sH.strideForType(e),this._nulls=new Ry.BitmapBufferBuilder,r&&r.length>0&&(this._isValid=fH.createIsValidFunction(r))}static new(e){}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e){throw new Error('"throughDOM" not available in this environment')}static throughIterable(e){return aH(e)}static throughAsyncIterable(e){return lH(e)}toVector(){return iH.Vector.new(this.flush())}get ArrayType(){return this.type.ArrayType}get nullCount(){return this._nulls.numInvalid}get numChildren(){return this.children.length}get byteLength(){let e=0;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),this._typeIds&&(e+=this._typeIds.byteLength),this.children.reduce((r,n)=>r+n.byteLength,e)}get reservedLength(){return this._nulls.reservedLength}get reservedByteLength(){let e=0;return this._offsets&&(e+=this._offsets.reservedByteLength),this._values&&(e+=this._values.reservedByteLength),this._nulls&&(e+=this._nulls.reservedByteLength),this._typeIds&&(e+=this._typeIds.reservedByteLength),this.children.reduce((r,n)=>r+n.reservedByteLength,e)}get valueOffsets(){return this._offsets?this._offsets.buffer:null}get values(){return this._values?this._values.buffer:null}get nullBitmap(){return this._nulls?this._nulls.buffer:null}get typeIds(){return this._typeIds?this._typeIds.buffer:null}append(e){return this.set(this.length,e)}isValid(e){return this._isValid(e)}set(e,r){return this.setValid(e,this.isValid(r))&&this.setValue(e,r),this}setValue(e,r){this._setValue(this,e,r)}setValid(e,r){return this.length=this._nulls.set(e,+r).length,r}addChild(e,r=`${this.numChildren}`){throw new Error(`Cannot append children to non-nested type "${this.type}"`)}getChildAt(e){return this.children[e]||null}flush(){let e=[],r=this._values,n=this._offsets,i=this._typeIds,{length:o,nullCount:f}=this;i?(e[pa.BufferType.TYPE]=i.flush(o),n&&(e[pa.BufferType.OFFSET]=n.flush(o))):n?(r&&(e[pa.BufferType.DATA]=r.flush(n.last())),e[pa.BufferType.OFFSET]=n.flush(o)):r&&(e[pa.BufferType.DATA]=r.flush(o)),f>0&&(e[pa.BufferType.VALIDITY]=this._nulls.flush(o));let s=oH.Data.new(this.type,0,o,f,e,this.children.map(u=>u.flush()));return this.clear(),s}finish(){return this.finished=!0,this.children.forEach(e=>e.finish()),this}clear(){return this.length=0,this._offsets&&this._offsets.clear(),this._values&&this._values.clear(),this._nulls&&this._nulls.clear(),this._typeIds&&this._typeIds.clear(),this.children.forEach(e=>e.clear()),this}};Qo.Builder=bn;bn.prototype.length=1;bn.prototype.stride=1;bn.prototype.children=null;bn.prototype.finished=!1;bn.prototype.nullValues=null;bn.prototype._isValid=()=>!0;var b1=class extends bn{constructor(e){super(e);this._values=new Ry.DataBufferBuilder(new this.ArrayType(0),this.stride)}setValue(e,r){let n=this._values;return n.reserve(e-n.length+1),super.setValue(e,r)}};Qo.FixedWidthBuilder=b1;var g1=class extends bn{constructor(e){super(e);this._pendingLength=0,this._offsets=new Ry.OffsetsBufferBuilder}setValue(e,r){let n=this._pending||(this._pending=new Map),i=n.get(e);i&&(this._pendingLength-=i.length),this._pendingLength+=r.length,n.set(e,r)}setValid(e,r){return super.setValid(e,r)?!0:((this._pending||(this._pending=new Map)).set(e,void 0),!1)}clear(){return this._pendingLength=0,this._pending=void 0,super.clear()}flush(){return this._flush(),super.flush()}finish(){return this._flush(),super.finish()}_flush(){let e=this._pending,r=this._pendingLength;return this._pendingLength=0,this._pending=void 0,e&&e.size>0&&this._flushPending(e,r),this}};Qo.VariableWidthBuilder=g1;function aH(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return function*(i){let o=0,f=bn.new(t);for(let s of i)f.append(s)[n]>=r&&++o&&(yield f.toVector());(f.finish().length>0||o===0)&&(yield f.toVector())}}function lH(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return async function*(i){let o=0,f=bn.new(t);for await(let s of i)f.append(s)[n]>=r&&++o&&(yield f.toVector());(f.finish().length>0||o===0)&&(yield f.toVector())}}});var Hy=B(Zd=>{"use strict";Object.defineProperty(Zd,"__esModule",{value:!0});Zd.BoolBuilder=void 0;var uH=Jo(),cH=At(),y1=class extends cH.Builder{constructor(e){super(e);this._values=new uH.BitmapBufferBuilder}setValue(e,r){this._values.set(e,+r)}};Zd.BoolBuilder=y1});var zy=B(Jd=>{"use strict";Object.defineProperty(Jd,"__esModule",{value:!0});Jd.NullBuilder=void 0;var pH=At(),j1=class extends pH.Builder{setValue(e,r){}setValid(e,r){return this.length=Math.max(e+1,this.length),r}};Jd.NullBuilder=j1});var Uy=B(Xo=>{"use strict";Object.defineProperty(Xo,"__esModule",{value:!0});Xo.DateMillisecondBuilder=Xo.DateDayBuilder=Xo.DateBuilder=void 0;var dH=At(),Qd=class extends dH.FixedWidthBuilder{};Xo.DateBuilder=Qd;var _1=class extends Qd{};Xo.DateDayBuilder=_1;var q1=class extends Qd{};Xo.DateMillisecondBuilder=q1});var My=B(Xd=>{"use strict";Object.defineProperty(Xd,"__esModule",{value:!0});Xd.DecimalBuilder=void 0;var mH=At(),v1=class extends mH.FixedWidthBuilder{};Xd.DecimalBuilder=v1});var Vy=B($d=>{"use strict";Object.defineProperty($d,"__esModule",{value:!0});$d.DictionaryBuilder=void 0;var wH=nt(),Ly=At(),T1=class extends Ly.Builder{constructor({type:e,nullValues:r,dictionaryHashFunction:n}){super({type:new wH.Dictionary(e.dictionary,e.indices,e.id,e.isOrdered)});this._nulls=null,this._dictionaryOffset=0,this._keysToIndices=Object.create(null),this.indices=Ly.Builder.new({type:this.type.indices,nullValues:r}),this.dictionary=Ly.Builder.new({type:this.type.dictionary,nullValues:null}),typeof n=="function"&&(this.valueToKey=n)}get values(){return this.indices.values}get nullCount(){return this.indices.nullCount}get nullBitmap(){return this.indices.nullBitmap}get byteLength(){return this.indices.byteLength+this.dictionary.byteLength}get reservedLength(){return this.indices.reservedLength+this.dictionary.reservedLength}get reservedByteLength(){return this.indices.reservedByteLength+this.dictionary.reservedByteLength}isValid(e){return this.indices.isValid(e)}setValid(e,r){let n=this.indices;return r=n.setValid(e,r),this.length=n.length,r}setValue(e,r){let n=this._keysToIndices,i=this.valueToKey(r),o=n[i];return o===void 0&&(n[i]=o=this._dictionaryOffset+this.dictionary.append(r).length-1),this.indices.setValue(e,o)}flush(){let e=this.type,r=this._dictionary,n=this.dictionary.toVector(),i=this.indices.flush().clone(e);return i.dictionary=r?r.concat(n):n,this.finished||(this._dictionaryOffset+=n.length),this._dictionary=i.dictionary,this.clear(),i}finish(){return this.indices.finish(),this.dictionary.finish(),this._dictionaryOffset=0,this._keysToIndices=Object.create(null),super.finish()}clear(){return this.indices.clear(),this.dictionary.clear(),super.clear()}valueToKey(e){return typeof e=="string"?e:`${e}`}};$d.DictionaryBuilder=T1});var Cy=B(em=>{"use strict";Object.defineProperty(em,"__esModule",{value:!0});em.FixedSizeBinaryBuilder=void 0;var hH=At(),B1=class extends hH.FixedWidthBuilder{};em.FixedSizeBinaryBuilder=B1});var Du=B(ma=>{"use strict";Object.defineProperty(ma,"__esModule",{value:!0});ma.float64ToUint16=ma.uint16ToFloat64=void 0;var k1=new Float64Array(1),da=new Uint32Array(k1.buffer);function bH(t){let e=(t&31744)>>10,r=(t&1023)/1024,n=(-1)**((t&32768)>>15);switch(e){case 31:return n*(r?NaN:1/0);case 0:return n*(r?6103515625e-14*r:0)}return n*2**(e-15)*(1+r)}ma.uint16ToFloat64=bH;function gH(t){if(t!==t)return 32256;k1[0]=t;let e=(da[1]&2147483648)>>16&65535,r=da[1]&2146435072,n=0;return r>=1089470464?da[0]>0?r=31744:(r=(r&2080374784)>>16,n=(da[1]&1048575)>>10):r<=1056964608?(n=1048576+(da[1]&1048575),n=1048576+(n<<(r>>20)-998)>>21,r=0):(r=r-1056964608>>10,n=(da[1]&1048575)+512>>10),e|r|n&65535}ma.float64ToUint16=gH});var Wy=B(mi=>{"use strict";Object.defineProperty(mi,"__esModule",{value:!0});mi.Float64Builder=mi.Float32Builder=mi.Float16Builder=mi.FloatBuilder=void 0;var yH=Du(),jH=At(),Pu=class extends jH.FixedWidthBuilder{};mi.FloatBuilder=Pu;var I1=class extends Pu{setValue(e,r){this._values.set(e,yH.float64ToUint16(r))}};mi.Float16Builder=I1;var x1=class extends Pu{setValue(e,r){this._values.set(e,r)}};mi.Float32Builder=x1;var S1=class extends Pu{setValue(e,r){this._values.set(e,r)}};mi.Float64Builder=S1});var Hu=B($t=>{"use strict";Object.defineProperty($t,"__esModule",{value:!0});$t.BN=$t.bignumToBigInt=$t.bignumToString=$t.isArrowBigNumSymbol=void 0;var _H=Xt(),Nu=gr();$t.isArrowBigNumSymbol=Symbol.for("isArrowBigNum");function Mn(t,...e){return e.length===0?Object.setPrototypeOf(_H.toArrayBufferView(this.TypedArray,t),this.constructor.prototype):Object.setPrototypeOf(new this.TypedArray(t,...e),this.constructor.prototype)}Mn.prototype[$t.isArrowBigNumSymbol]=!0;Mn.prototype.toJSON=function(){return`"${$t.bignumToString(this)}"`};Mn.prototype.valueOf=function(){return E1(this)};Mn.prototype.toString=function(){return $t.bignumToString(this)};Mn.prototype[Symbol.toPrimitive]=function(t="default"){switch(t){case"number":return E1(this);case"string":return $t.bignumToString(this);case"default":return $t.bignumToBigInt(this)}return $t.bignumToString(this)};function wa(...t){return Mn.apply(this,t)}function ha(...t){return Mn.apply(this,t)}function Ru(...t){return Mn.apply(this,t)}Object.setPrototypeOf(wa.prototype,Object.create(Int32Array.prototype));Object.setPrototypeOf(ha.prototype,Object.create(Uint32Array.prototype));Object.setPrototypeOf(Ru.prototype,Object.create(Uint32Array.prototype));Object.assign(wa.prototype,Mn.prototype,{constructor:wa,signed:!0,TypedArray:Int32Array,BigIntArray:Nu.BigInt64Array});Object.assign(ha.prototype,Mn.prototype,{constructor:ha,signed:!1,TypedArray:Uint32Array,BigIntArray:Nu.BigUint64Array});Object.assign(Ru.prototype,Mn.prototype,{constructor:Ru,signed:!0,TypedArray:Uint32Array,BigIntArray:Nu.BigUint64Array});function E1(t){let{buffer:e,byteOffset:r,length:n,signed:i}=t,o=new Int32Array(e,r,n),f=0,s=0,u=o.length,l,c;for(;s<u;)c=o[s++],l=o[s++],i||(l=l>>>0),f+=(c>>>0)+l*s**32;return f}Nu.BigIntAvailable?($t.bignumToBigInt=t=>t.byteLength===8?new t.BigIntArray(t.buffer,t.byteOffset,1)[0]:Ky(t),$t.bignumToString=t=>t.byteLength===8?`${new t.BigIntArray(t.buffer,t.byteOffset,1)[0]}`:Ky(t)):($t.bignumToString=Ky,$t.bignumToBigInt=$t.bignumToString);function Ky(t){let e="",r=new Uint32Array(2),n=new Uint16Array(t.buffer,t.byteOffset,t.byteLength/2),i=new Uint32Array((n=new Uint16Array(n).reverse()).buffer),o=-1,f=n.length-1;do{for(r[0]=n[o=0];o<f;)n[o++]=r[1]=r[0]/10,r[0]=(r[0]-r[1]*10<<16)+n[o];n[o]=r[1]=r[0]/10,r[0]=r[0]-r[1]*10,e=`${r[0]}${e}`}while(i[0]||i[1]||i[2]||i[3]);return e||"0"}var tm=class{static new(e,r){switch(r){case!0:return new wa(e);case!1:return new ha(e)}switch(e.constructor){case Int8Array:case Int16Array:case Int32Array:case Nu.BigInt64Array:return new wa(e)}return e.byteLength===16?new Ru(e):new ha(e)}static signed(e){return new wa(e)}static unsigned(e){return new ha(e)}static decimal(e){return new Ru(e)}constructor(e,r){return tm.new(e,r)}};$t.BN=tm});var Yy=B(Kt=>{"use strict";Object.defineProperty(Kt,"__esModule",{value:!0});Kt.Uint64Builder=Kt.Uint32Builder=Kt.Uint16Builder=Kt.Uint8Builder=Kt.Int64Builder=Kt.Int32Builder=Kt.Int16Builder=Kt.Int8Builder=Kt.IntBuilder=void 0;var qH=Hu(),A1=Jo(),vH=gr(),TH=At(),wi=class extends TH.FixedWidthBuilder{setValue(e,r){this._values.set(e,r)}};Kt.IntBuilder=wi;var O1=class extends wi{};Kt.Int8Builder=O1;var F1=class extends wi{};Kt.Int16Builder=F1;var D1=class extends wi{};Kt.Int32Builder=D1;var P1=class extends wi{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(rm));super(e);this._values=new A1.WideBufferBuilder(new Int32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(rm(e))}};Kt.Int64Builder=P1;var N1=class extends wi{};Kt.Uint8Builder=N1;var R1=class extends wi{};Kt.Uint16Builder=R1;var H1=class extends wi{};Kt.Uint32Builder=H1;var z1=class extends wi{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(rm));super(e);this._values=new A1.WideBufferBuilder(new Uint32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(rm(e))}};Kt.Uint64Builder=z1;var rm=(t=>e=>(ArrayBuffer.isView(e)&&(t.buffer=e.buffer,t.byteOffset=e.byteOffset,t.byteLength=e.byteLength,e=qH.bignumToBigInt(t),t.buffer=null),e))({BigIntArray:vH.BigInt64Array})});var Gy=B(gn=>{"use strict";Object.defineProperty(gn,"__esModule",{value:!0});gn.TimeNanosecondBuilder=gn.TimeMicrosecondBuilder=gn.TimeMillisecondBuilder=gn.TimeSecondBuilder=gn.TimeBuilder=void 0;var BH=At(),ba=class extends BH.FixedWidthBuilder{};gn.TimeBuilder=ba;var U1=class extends ba{};gn.TimeSecondBuilder=U1;var M1=class extends ba{};gn.TimeMillisecondBuilder=M1;var L1=class extends ba{};gn.TimeMicrosecondBuilder=L1;var V1=class extends ba{};gn.TimeNanosecondBuilder=V1});var Zy=B(yn=>{"use strict";Object.defineProperty(yn,"__esModule",{value:!0});yn.TimestampNanosecondBuilder=yn.TimestampMicrosecondBuilder=yn.TimestampMillisecondBuilder=yn.TimestampSecondBuilder=yn.TimestampBuilder=void 0;var kH=At(),ga=class extends kH.FixedWidthBuilder{};yn.TimestampBuilder=ga;var C1=class extends ga{};yn.TimestampSecondBuilder=C1;var W1=class extends ga{};yn.TimestampMillisecondBuilder=W1;var K1=class extends ga{};yn.TimestampMicrosecondBuilder=K1;var Y1=class extends ga{};yn.TimestampNanosecondBuilder=Y1});var Jy=B($o=>{"use strict";Object.defineProperty($o,"__esModule",{value:!0});$o.IntervalYearMonthBuilder=$o.IntervalDayTimeBuilder=$o.IntervalBuilder=void 0;var IH=At(),nm=class extends IH.FixedWidthBuilder{};$o.IntervalBuilder=nm;var G1=class extends nm{};$o.IntervalDayTimeBuilder=G1;var Z1=class extends nm{};$o.IntervalYearMonthBuilder=Z1});var om=B(im=>{"use strict";Object.defineProperty(im,"__esModule",{value:!0});im.BinaryBuilder=void 0;var xH=Xt(),SH=Jo(),EH=At(),J1=class extends EH.VariableWidthBuilder{constructor(e){super(e);this._values=new SH.BufferBuilder(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,xH.toUint8Array(r))}_flushPending(e,r){let n=this._offsets,i=this._values.reserve(r).buffer,o=0,f=0,s=0,u;for([o,u]of e)u===void 0?n.set(o,0):(f=u.length,i.set(u,s),n.set(o,f),s+=f)}};im.BinaryBuilder=J1});var sm=B(fm=>{"use strict";Object.defineProperty(fm,"__esModule",{value:!0});fm.Utf8Builder=void 0;var AH=Xf(),OH=om(),FH=Jo(),DH=At(),Qy=class extends DH.VariableWidthBuilder{constructor(e){super(e);this._values=new FH.BufferBuilder(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,AH.encodeUtf8(r))}_flushPending(e,r){}};fm.Utf8Builder=Qy;Qy.prototype._flushPending=OH.BinaryBuilder.prototype._flushPending});var Xy=B(am=>{"use strict";Object.defineProperty(am,"__esModule",{value:!0});am.Run=void 0;var PH=zt(),Q1=class{get length(){return this._values.length}get(e){return this._values[e]}clear(){return this._values=null,this}bind(e){return e instanceof PH.Vector?e:(this._values=e,this)}};am.Run=Q1});var ir=B(ya=>{"use strict";Object.defineProperty(ya,"__esModule",{value:!0});ya.Field=ya.Schema=void 0;var NH=nt(),jn=class{constructor(e=[],r,n){this.fields=e||[],this.metadata=r||new Map,n||(n=$y(e)),this.dictionaries=n}get[Symbol.toStringTag](){return"Schema"}toString(){return`Schema<{ ${this.fields.map((e,r)=>`${r}: ${e}`).join(", ")} }>`}select(...e){let r=e.reduce((n,i)=>(n[i]=!0)&&n,Object.create(null));return new jn(this.fields.filter(n=>r[n.name]),this.metadata)}selectAt(...e){return new jn(e.map(r=>this.fields[r]).filter(Boolean),this.metadata)}assign(...e){let r=e[0]instanceof jn?e[0]:Array.isArray(e[0])?new jn(e[0]):new jn(e),n=[...this.fields],i=lm(lm(new Map,this.metadata),r.metadata),o=r.fields.filter(s=>{let u=n.findIndex(l=>l.name===s.name);return~u?(n[u]=s.clone({metadata:lm(lm(new Map,n[u].metadata),s.metadata)}))&&!1:!0}),f=$y(o,new Map);return new jn([...n,...o],i,new Map([...this.dictionaries,...f]))}};ya.Schema=jn;var ro=class{constructor(e,r,n=!1,i){this.name=e,this.type=r,this.nullable=n,this.metadata=i||new Map}static new(...e){let[r,n,i,o]=e;return e[0]&&typeof e[0]=="object"&&({name:r}=e[0],n===void 0&&(n=e[0].type),i===void 0&&(i=e[0].nullable),o===void 0&&(o=e[0].metadata)),new ro(`${r}`,n,i,o)}get typeId(){return this.type.typeId}get[Symbol.toStringTag](){return"Field"}toString(){return`${this.name}: ${this.type}`}clone(...e){let[r,n,i,o]=e;return!e[0]||typeof e[0]!="object"?[r=this.name,n=this.type,i=this.nullable,o=this.metadata]=e:{name:r=this.name,type:n=this.type,nullable:i=this.nullable,metadata:o=this.metadata}=e[0],ro.new(r,n,i,o)}};ya.Field=ro;function lm(t,e){return new Map([...t||new Map,...e||new Map])}function $y(t,e=new Map){for(let r=-1,n=t.length;++r<n;){let o=t[r].type;if(NH.DataType.isDictionary(o)){if(!e.has(o.id))e.set(o.id,o.dictionary);else if(e.get(o.id)!==o.dictionary)throw new Error("Cannot create Schema containing two different dictionaries with the same Id")}o.children&&o.children.length>0&&$y(o.children,e)}return e}jn.prototype.fields=null;jn.prototype.metadata=null;jn.prototype.dictionaries=null;ro.prototype.type=null;ro.prototype.name=null;ro.prototype.nullable=null;ro.prototype.metadata=null});var ej=B(um=>{"use strict";Object.defineProperty(um,"__esModule",{value:!0});um.ListBuilder=void 0;var RH=Xy(),HH=ir(),zH=nt(),UH=Jo(),MH=At(),X1=class extends MH.VariableWidthBuilder{constructor(e){super(e);this._run=new RH.Run,this._offsets=new UH.OffsetsBufferBuilder}addChild(e,r="0"){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new zH.List(new HH.Field(r,e.type,!0)),this.numChildren-1}clear(){return this._run.clear(),super.clear()}_flushPending(e){let r=this._run,n=this._offsets,i=this._setValue,o=0,f;for([o,f]of e)f===void 0?n.set(o,0):(n.set(o,f.length),i(this,o,r.bind(f)))}};um.ListBuilder=X1});var tj=B(cm=>{"use strict";Object.defineProperty(cm,"__esModule",{value:!0});cm.FixedSizeListBuilder=void 0;var LH=Xy(),VH=ir(),CH=At(),WH=nt(),$1=class extends CH.Builder{constructor(){super(...arguments);this._run=new LH.Run}setValue(e,r){super.setValue(e,this._run.bind(r))}addChild(e,r="0"){if(this.numChildren>0)throw new Error("FixedSizeListBuilder can only have one child.");let n=this.children.push(e);return this.type=new WH.FixedSizeList(this.type.listSize,new VH.Field(r,e.type,!0)),n}clear(){return this._run.clear(),super.clear()}};cm.FixedSizeListBuilder=$1});var rj=B(pm=>{"use strict";Object.defineProperty(pm,"__esModule",{value:!0});pm.MapBuilder=void 0;var KH=ir(),YH=nt(),GH=At(),ex=class extends GH.VariableWidthBuilder{set(e,r){return super.set(e,r)}setValue(e,r){r=r instanceof Map?r:new Map(Object.entries(r));let n=this._pending||(this._pending=new Map),i=n.get(e);i&&(this._pendingLength-=i.size),this._pendingLength+=r.size,n.set(e,r)}addChild(e,r=`${this.numChildren}`){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new YH.Map_(new KH.Field(r,e.type,!0),this.type.keysSorted),this.numChildren-1}_flushPending(e){let r=this._offsets,n=this._setValue;e.forEach((i,o)=>{i===void 0?r.set(o,0):(r.set(o,i.size),n(this,o,i))})}};pm.MapBuilder=ex});var nj=B(dm=>{"use strict";Object.defineProperty(dm,"__esModule",{value:!0});dm.StructBuilder=void 0;var ZH=ir(),JH=At(),QH=nt(),tx=class extends JH.Builder{addChild(e,r=`${this.numChildren}`){let n=this.children.push(e);return this.type=new QH.Struct([...this.type.children,new ZH.Field(r,e.type,!0)]),n}};dm.StructBuilder=tx});var ij=B(ef=>{"use strict";Object.defineProperty(ef,"__esModule",{value:!0});ef.DenseUnionBuilder=ef.SparseUnionBuilder=ef.UnionBuilder=void 0;var XH=ir(),rx=Jo(),$H=At(),e3=nt(),mm=class extends $H.Builder{constructor(e){super(e);this._typeIds=new rx.DataBufferBuilder(new Int8Array(0),1),typeof e.valueToChildTypeId=="function"&&(this._valueToChildTypeId=e.valueToChildTypeId)}get typeIdToChildIndex(){return this.type.typeIdToChildIndex}append(e,r){return this.set(this.length,e,r)}set(e,r,n){return n===void 0&&(n=this._valueToChildTypeId(this,r,e)),this.setValid(e,this.isValid(r))&&this.setValue(e,r,n),this}setValue(e,r,n){this._typeIds.set(e,n),super.setValue(e,r)}addChild(e,r=`${this.children.length}`){let n=this.children.push(e),{type:{children:i,mode:o,typeIds:f}}=this,s=[...i,new XH.Field(r,e.type)];return this.type=new e3.Union(o,[...f,n],s),n}_valueToChildTypeId(e,r,n){throw new Error("Cannot map UnionBuilder value to child typeId. Pass the `childTypeId` as the second argument to unionBuilder.append(), or supply a `valueToChildTypeId` function as part of the UnionBuilder constructor options.")}};ef.UnionBuilder=mm;var nx=class extends mm{};ef.SparseUnionBuilder=nx;var ix=class extends mm{constructor(e){super(e);this._offsets=new rx.DataBufferBuilder(new Int32Array(0))}setValue(e,r,n){let i=this.type.typeIdToChildIndex[n];return this._offsets.set(e,this.getChildAt(i).length),super.setValue(e,r,n)}};ef.DenseUnionBuilder=ix});var cr=B(wm=>{"use strict";Object.defineProperty(wm,"__esModule",{value:!0});wm.Visitor=void 0;var t3=Un(),r3=zt(),A=bt(),n3=nt(),dt=class{visitMany(e,...r){return e.map((n,i)=>this.visit(n,...r.map(o=>o[i])))}visit(...e){return this.getVisitFn(e[0],!1).apply(this,e)}getVisitFn(e,r=!0){return i3(this,e,r)}visitNull(e,...r){return null}visitBool(e,...r){return null}visitInt(e,...r){return null}visitFloat(e,...r){return null}visitUtf8(e,...r){return null}visitBinary(e,...r){return null}visitFixedSizeBinary(e,...r){return null}visitDate(e,...r){return null}visitTimestamp(e,...r){return null}visitTime(e,...r){return null}visitDecimal(e,...r){return null}visitList(e,...r){return null}visitStruct(e,...r){return null}visitUnion(e,...r){return null}visitDictionary(e,...r){return null}visitInterval(e,...r){return null}visitFixedSizeList(e,...r){return null}visitMap(e,...r){return null}};wm.Visitor=dt;function i3(t,e,r=!0){let n=null,i=A.Type.NONE;switch(e instanceof t3.Data||e instanceof r3.Vector?i=oj(e.type):e instanceof n3.DataType?i=oj(e):typeof(i=e)!="number"&&(i=A.Type[e]),i){case A.Type.Null:n=t.visitNull;break;case A.Type.Bool:n=t.visitBool;break;case A.Type.Int:n=t.visitInt;break;case A.Type.Int8:n=t.visitInt8||t.visitInt;break;case A.Type.Int16:n=t.visitInt16||t.visitInt;break;case A.Type.Int32:n=t.visitInt32||t.visitInt;break;case A.Type.Int64:n=t.visitInt64||t.visitInt;break;case A.Type.Uint8:n=t.visitUint8||t.visitInt;break;case A.Type.Uint16:n=t.visitUint16||t.visitInt;break;case A.Type.Uint32:n=t.visitUint32||t.visitInt;break;case A.Type.Uint64:n=t.visitUint64||t.visitInt;break;case A.Type.Float:n=t.visitFloat;break;case A.Type.Float16:n=t.visitFloat16||t.visitFloat;break;case A.Type.Float32:n=t.visitFloat32||t.visitFloat;break;case A.Type.Float64:n=t.visitFloat64||t.visitFloat;break;case A.Type.Utf8:n=t.visitUtf8;break;case A.Type.Binary:n=t.visitBinary;break;case A.Type.FixedSizeBinary:n=t.visitFixedSizeBinary;break;case A.Type.Date:n=t.visitDate;break;case A.Type.DateDay:n=t.visitDateDay||t.visitDate;break;case A.Type.DateMillisecond:n=t.visitDateMillisecond||t.visitDate;break;case A.Type.Timestamp:n=t.visitTimestamp;break;case A.Type.TimestampSecond:n=t.visitTimestampSecond||t.visitTimestamp;break;case A.Type.TimestampMillisecond:n=t.visitTimestampMillisecond||t.visitTimestamp;break;case A.Type.TimestampMicrosecond:n=t.visitTimestampMicrosecond||t.visitTimestamp;break;case A.Type.TimestampNanosecond:n=t.visitTimestampNanosecond||t.visitTimestamp;break;case A.Type.Time:n=t.visitTime;break;case A.Type.TimeSecond:n=t.visitTimeSecond||t.visitTime;break;case A.Type.TimeMillisecond:n=t.visitTimeMillisecond||t.visitTime;break;case A.Type.TimeMicrosecond:n=t.visitTimeMicrosecond||t.visitTime;break;case A.Type.TimeNanosecond:n=t.visitTimeNanosecond||t.visitTime;break;case A.Type.Decimal:n=t.visitDecimal;break;case A.Type.List:n=t.visitList;break;case A.Type.Struct:n=t.visitStruct;break;case A.Type.Union:n=t.visitUnion;break;case A.Type.DenseUnion:n=t.visitDenseUnion||t.visitUnion;break;case A.Type.SparseUnion:n=t.visitSparseUnion||t.visitUnion;break;case A.Type.Dictionary:n=t.visitDictionary;break;case A.Type.Interval:n=t.visitInterval;break;case A.Type.IntervalDayTime:n=t.visitIntervalDayTime||t.visitInterval;break;case A.Type.IntervalYearMonth:n=t.visitIntervalYearMonth||t.visitInterval;break;case A.Type.FixedSizeList:n=t.visitFixedSizeList;break;case A.Type.Map:n=t.visitMap;break}if(typeof n=="function")return n;if(!r)return()=>null;throw new Error(`Unrecognized type '${A.Type[i]}'`)}function oj(t){switch(t.typeId){case A.Type.Null:return A.Type.Null;case A.Type.Int:{let{bitWidth:e,isSigned:r}=t;switch(e){case 8:return r?A.Type.Int8:A.Type.Uint8;case 16:return r?A.Type.Int16:A.Type.Uint16;case 32:return r?A.Type.Int32:A.Type.Uint32;case 64:return r?A.Type.Int64:A.Type.Uint64}return A.Type.Int}case A.Type.Float:switch(t.precision){case A.Precision.HALF:return A.Type.Float16;case A.Precision.SINGLE:return A.Type.Float32;case A.Precision.DOUBLE:return A.Type.Float64}return A.Type.Float;case A.Type.Binary:return A.Type.Binary;case A.Type.Utf8:return A.Type.Utf8;case A.Type.Bool:return A.Type.Bool;case A.Type.Decimal:return A.Type.Decimal;case A.Type.Time:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimeSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimeMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimeMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimeNanosecond}return A.Type.Time;case A.Type.Timestamp:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimestampSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimestampMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimestampMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimestampNanosecond}return A.Type.Timestamp;case A.Type.Date:switch(t.unit){case A.DateUnit.DAY:return A.Type.DateDay;case A.DateUnit.MILLISECOND:return A.Type.DateMillisecond}return A.Type.Date;case A.Type.Interval:switch(t.unit){case A.IntervalUnit.DAY_TIME:return A.Type.IntervalDayTime;case A.IntervalUnit.YEAR_MONTH:return A.Type.IntervalYearMonth}return A.Type.Interval;case A.Type.Map:return A.Type.Map;case A.Type.List:return A.Type.List;case A.Type.Struct:return A.Type.Struct;case A.Type.Union:switch(t.mode){case A.UnionMode.Dense:return A.Type.DenseUnion;case A.UnionMode.Sparse:return A.Type.SparseUnion}return A.Type.Union;case A.Type.FixedSizeBinary:return A.Type.FixedSizeBinary;case A.Type.FixedSizeList:return A.Type.FixedSizeList;case A.Type.Dictionary:return A.Type.Dictionary}throw new Error(`Unrecognized type '${A.Type[t.typeId]}'`)}dt.prototype.visitInt8=null;dt.prototype.visitInt16=null;dt.prototype.visitInt32=null;dt.prototype.visitInt64=null;dt.prototype.visitUint8=null;dt.prototype.visitUint16=null;dt.prototype.visitUint32=null;dt.prototype.visitUint64=null;dt.prototype.visitFloat16=null;dt.prototype.visitFloat32=null;dt.prototype.visitFloat64=null;dt.prototype.visitDateDay=null;dt.prototype.visitDateMillisecond=null;dt.prototype.visitTimestampSecond=null;dt.prototype.visitTimestampMillisecond=null;dt.prototype.visitTimestampMicrosecond=null;dt.prototype.visitTimestampNanosecond=null;dt.prototype.visitTimeSecond=null;dt.prototype.visitTimeMillisecond=null;dt.prototype.visitTimeMicrosecond=null;dt.prototype.visitTimeNanosecond=null;dt.prototype.visitDenseUnion=null;dt.prototype.visitSparseUnion=null;dt.prototype.visitIntervalDayTime=null;dt.prototype.visitIntervalYearMonth=null});var aj=B(ja=>{"use strict";Object.defineProperty(ja,"__esModule",{value:!0});ja.instance=ja.SetVisitor=void 0;var o3=zt(),f3=cr(),s3=Xf(),a3=Du(),l3=Xt(),_n=bt(),Ie=class extends f3.Visitor{};ja.SetVisitor=Ie;var u3=(t,e,r)=>{t[e]=r/864e5|0},fj=(t,e,r)=>{t[e]=r%4294967296|0,t[e+1]=r/4294967296|0},c3=(t,e,r)=>{t[e]=r*1e3%4294967296|0,t[e+1]=r*1e3/4294967296|0},p3=(t,e,r)=>{t[e]=r*1e6%4294967296|0,t[e+1]=r*1e6/4294967296|0},ox=(t,e,r,n)=>{let{[r]:i,[r+1]:o}=e;i!=null&&o!=null&&t.set(n.subarray(0,o-i),i)},d3=({offset:t,values:e},r,n)=>{let i=t+r;n?e[i>>3]|=1<<i%8:e[i>>3]&=~(1<<i%8)},fx=({values:t},e,r)=>{u3(t,e,r.valueOf())},sx=({values:t},e,r)=>{fj(t,e*2,r.valueOf())},hi=({stride:t,values:e},r,n)=>{e[t*r]=n},ax=({stride:t,values:e},r,n)=>{e[t*r]=a3.float64ToUint16(n)},sj=(t,e,r)=>{switch(typeof r){case"bigint":t.values64[e]=r;break;case"number":t.values[e*t.stride]=r;break;default:{let n=r,{stride:i,ArrayType:o}=t,f=l3.toArrayBufferView(o,n);t.values.set(f.subarray(0,i),i*e)}}},m3=({stride:t,values:e},r,n)=>{e.set(n.subarray(0,t),t*r)},w3=({values:t,valueOffsets:e},r,n)=>ox(t,e,r,n),h3=({values:t,valueOffsets:e},r,n)=>{ox(t,e,r,s3.encodeUtf8(n))},b3=(t,e,r)=>{t.type.bitWidth<64?hi(t,e,r):sj(t,e,r)},g3=(t,e,r)=>{t.type.precision!==_n.Precision.HALF?hi(t,e,r):ax(t,e,r)},y3=(t,e,r)=>{t.type.unit===_n.DateUnit.DAY?fx(t,e,r):sx(t,e,r)},lx=({values:t},e,r)=>fj(t,e*2,r/1e3),ux=({values:t},e,r)=>fj(t,e*2,r),cx=({values:t},e,r)=>c3(t,e*2,r),px=({values:t},e,r)=>p3(t,e*2,r),j3=(t,e,r)=>{switch(t.type.unit){case _n.TimeUnit.SECOND:return lx(t,e,r);case _n.TimeUnit.MILLISECOND:return ux(t,e,r);case _n.TimeUnit.MICROSECOND:return cx(t,e,r);case _n.TimeUnit.NANOSECOND:return px(t,e,r)}},dx=({values:t,stride:e},r,n)=>{t[e*r]=n},mx=({values:t,stride:e},r,n)=>{t[e*r]=n},wx=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},hx=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},_3=(t,e,r)=>{switch(t.type.unit){case _n.TimeUnit.SECOND:return dx(t,e,r);case _n.TimeUnit.MILLISECOND:return mx(t,e,r);case _n.TimeUnit.MICROSECOND:return wx(t,e,r);case _n.TimeUnit.NANOSECOND:return hx(t,e,r)}},q3=({values:t},e,r)=>{t.set(r.subarray(0,4),4*e)},v3=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets;for(let o=-1,f=i[e],s=i[e+1];f<s;)n.set(f++,r.get(++o))},T3=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets,o=r instanceof Map?[...r]:Object.entries(r);for(let f=-1,s=i[e],u=i[e+1];s<u;)n.set(s++,o[++f])},B3=(t,e)=>(r,n,i)=>r&&r.set(t,e[i]),k3=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(i)),I3=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(n.name)),x3=(t,e)=>(r,n,i)=>r&&r.set(t,e[n.name]),S3=(t,e,r)=>{let n=r instanceof Map?I3(e,r):r instanceof o3.Vector?k3(e,r):Array.isArray(r)?B3(e,r):x3(e,r);t.type.children.forEach((i,o)=>n(t.getChildAt(o),i,o))},E3=(t,e,r)=>{t.type.mode===_n.UnionMode.Dense?bx(t,e,r):gx(t,e,r)},bx=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(t.valueOffsets[e],r)},gx=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(e,r)},A3=(t,e,r)=>{let n=t.getKey(e);n!==null&&t.setValue(n,r)},O3=(t,e,r)=>{t.type.unit===_n.IntervalUnit.DAY_TIME?yx(t,e,r):jx(t,e,r)},yx=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},jx=({values:t},e,r)=>{t[e]=r[0]*12+r[1]%12},F3=(t,e,r)=>{let n=t.getChildAt(0),{stride:i}=t;for(let o=-1,f=e*i;++o<i;)n.set(f+o,r.get(o))};Ie.prototype.visitBool=d3;Ie.prototype.visitInt=b3;Ie.prototype.visitInt8=hi;Ie.prototype.visitInt16=hi;Ie.prototype.visitInt32=hi;Ie.prototype.visitInt64=sj;Ie.prototype.visitUint8=hi;Ie.prototype.visitUint16=hi;Ie.prototype.visitUint32=hi;Ie.prototype.visitUint64=sj;Ie.prototype.visitFloat=g3;Ie.prototype.visitFloat16=ax;Ie.prototype.visitFloat32=hi;Ie.prototype.visitFloat64=hi;Ie.prototype.visitUtf8=h3;Ie.prototype.visitBinary=w3;Ie.prototype.visitFixedSizeBinary=m3;Ie.prototype.visitDate=y3;Ie.prototype.visitDateDay=fx;Ie.prototype.visitDateMillisecond=sx;Ie.prototype.visitTimestamp=j3;Ie.prototype.visitTimestampSecond=lx;Ie.prototype.visitTimestampMillisecond=ux;Ie.prototype.visitTimestampMicrosecond=cx;Ie.prototype.visitTimestampNanosecond=px;Ie.prototype.visitTime=_3;Ie.prototype.visitTimeSecond=dx;Ie.prototype.visitTimeMillisecond=mx;Ie.prototype.visitTimeMicrosecond=wx;Ie.prototype.visitTimeNanosecond=hx;Ie.prototype.visitDecimal=q3;Ie.prototype.visitList=v3;Ie.prototype.visitStruct=S3;Ie.prototype.visitUnion=E3;Ie.prototype.visitDenseUnion=bx;Ie.prototype.visitSparseUnion=gx;Ie.prototype.visitDictionary=A3;Ie.prototype.visitInterval=O3;Ie.prototype.visitIntervalDayTime=yx;Ie.prototype.visitIntervalYearMonth=jx;Ie.prototype.visitFixedSizeList=F3;Ie.prototype.visitMap=T3;ja.instance=new Ie});var _x=B(_a=>{"use strict";Object.defineProperty(_a,"__esModule",{value:!0});_a.instance=_a.GetBuilderCtor=void 0;var D3=cr(),P3=om(),N3=Hy(),lj=Uy(),R3=My(),H3=Vy(),z3=Cy(),U3=tj(),hm=Wy(),uj=Jy(),no=Yy(),M3=ej(),L3=rj(),V3=zy(),C3=nj(),zu=Zy(),Uu=Gy(),cj=ij(),W3=sm(),pj=class extends D3.Visitor{visitNull(){return V3.NullBuilder}visitBool(){return N3.BoolBuilder}visitInt(){return no.IntBuilder}visitInt8(){return no.Int8Builder}visitInt16(){return no.Int16Builder}visitInt32(){return no.Int32Builder}visitInt64(){return no.Int64Builder}visitUint8(){return no.Uint8Builder}visitUint16(){return no.Uint16Builder}visitUint32(){return no.Uint32Builder}visitUint64(){return no.Uint64Builder}visitFloat(){return hm.FloatBuilder}visitFloat16(){return hm.Float16Builder}visitFloat32(){return hm.Float32Builder}visitFloat64(){return hm.Float64Builder}visitUtf8(){return W3.Utf8Builder}visitBinary(){return P3.BinaryBuilder}visitFixedSizeBinary(){return z3.FixedSizeBinaryBuilder}visitDate(){return lj.DateBuilder}visitDateDay(){return lj.DateDayBuilder}visitDateMillisecond(){return lj.DateMillisecondBuilder}visitTimestamp(){return zu.TimestampBuilder}visitTimestampSecond(){return zu.TimestampSecondBuilder}visitTimestampMillisecond(){return zu.TimestampMillisecondBuilder}visitTimestampMicrosecond(){return zu.TimestampMicrosecondBuilder}visitTimestampNanosecond(){return zu.TimestampNanosecondBuilder}visitTime(){return Uu.TimeBuilder}visitTimeSecond(){return Uu.TimeSecondBuilder}visitTimeMillisecond(){return Uu.TimeMillisecondBuilder}visitTimeMicrosecond(){return Uu.TimeMicrosecondBuilder}visitTimeNanosecond(){return Uu.TimeNanosecondBuilder}visitDecimal(){return R3.DecimalBuilder}visitList(){return M3.ListBuilder}visitStruct(){return C3.StructBuilder}visitUnion(){return cj.UnionBuilder}visitDenseUnion(){return cj.DenseUnionBuilder}visitSparseUnion(){return cj.SparseUnionBuilder}visitDictionary(){return H3.DictionaryBuilder}visitInterval(){return uj.IntervalBuilder}visitIntervalDayTime(){return uj.IntervalDayTimeBuilder}visitIntervalYearMonth(){return uj.IntervalYearMonthBuilder}visitFixedSizeList(){return U3.FixedSizeListBuilder}visitMap(){return L3.MapBuilder}};_a.GetBuilderCtor=pj;_a.instance=new pj});var gm=B(G=>{"use strict";Object.defineProperty(G,"__esModule",{value:!0});G.DenseUnionBuilder=G.SparseUnionBuilder=G.UnionBuilder=G.StructBuilder=G.MapBuilder=G.FixedSizeListBuilder=G.ListBuilder=G.BinaryBuilder=G.Utf8Builder=G.IntervalYearMonthBuilder=G.IntervalDayTimeBuilder=G.IntervalBuilder=G.TimestampNanosecondBuilder=G.TimestampMicrosecondBuilder=G.TimestampMillisecondBuilder=G.TimestampSecondBuilder=G.TimestampBuilder=G.TimeNanosecondBuilder=G.TimeMicrosecondBuilder=G.TimeMillisecondBuilder=G.TimeSecondBuilder=G.TimeBuilder=G.Uint64Builder=G.Uint32Builder=G.Uint16Builder=G.Uint8Builder=G.Int64Builder=G.Int32Builder=G.Int16Builder=G.Int8Builder=G.IntBuilder=G.Float64Builder=G.Float32Builder=G.Float16Builder=G.FloatBuilder=G.FixedSizeBinaryBuilder=G.DictionaryBuilder=G.DecimalBuilder=G.DateMillisecondBuilder=G.DateDayBuilder=G.DateBuilder=G.NullBuilder=G.BoolBuilder=G.Builder=void 0;var K3=At();Object.defineProperty(G,"Builder",{enumerable:!0,get:function(){return K3.Builder}});var Y3=Hy();Object.defineProperty(G,"BoolBuilder",{enumerable:!0,get:function(){return Y3.BoolBuilder}});var G3=zy();Object.defineProperty(G,"NullBuilder",{enumerable:!0,get:function(){return G3.NullBuilder}});var dj=Uy();Object.defineProperty(G,"DateBuilder",{enumerable:!0,get:function(){return dj.DateBuilder}});Object.defineProperty(G,"DateDayBuilder",{enumerable:!0,get:function(){return dj.DateDayBuilder}});Object.defineProperty(G,"DateMillisecondBuilder",{enumerable:!0,get:function(){return dj.DateMillisecondBuilder}});var Z3=My();Object.defineProperty(G,"DecimalBuilder",{enumerable:!0,get:function(){return Z3.DecimalBuilder}});var J3=Vy();Object.defineProperty(G,"DictionaryBuilder",{enumerable:!0,get:function(){return J3.DictionaryBuilder}});var Q3=Cy();Object.defineProperty(G,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return Q3.FixedSizeBinaryBuilder}});var bm=Wy();Object.defineProperty(G,"FloatBuilder",{enumerable:!0,get:function(){return bm.FloatBuilder}});Object.defineProperty(G,"Float16Builder",{enumerable:!0,get:function(){return bm.Float16Builder}});Object.defineProperty(G,"Float32Builder",{enumerable:!0,get:function(){return bm.Float32Builder}});Object.defineProperty(G,"Float64Builder",{enumerable:!0,get:function(){return bm.Float64Builder}});var io=Yy();Object.defineProperty(G,"IntBuilder",{enumerable:!0,get:function(){return io.IntBuilder}});Object.defineProperty(G,"Int8Builder",{enumerable:!0,get:function(){return io.Int8Builder}});Object.defineProperty(G,"Int16Builder",{enumerable:!0,get:function(){return io.Int16Builder}});Object.defineProperty(G,"Int32Builder",{enumerable:!0,get:function(){return io.Int32Builder}});Object.defineProperty(G,"Int64Builder",{enumerable:!0,get:function(){return io.Int64Builder}});Object.defineProperty(G,"Uint8Builder",{enumerable:!0,get:function(){return io.Uint8Builder}});Object.defineProperty(G,"Uint16Builder",{enumerable:!0,get:function(){return io.Uint16Builder}});Object.defineProperty(G,"Uint32Builder",{enumerable:!0,get:function(){return io.Uint32Builder}});Object.defineProperty(G,"Uint64Builder",{enumerable:!0,get:function(){return io.Uint64Builder}});var Mu=Gy();Object.defineProperty(G,"TimeBuilder",{enumerable:!0,get:function(){return Mu.TimeBuilder}});Object.defineProperty(G,"TimeSecondBuilder",{enumerable:!0,get:function(){return Mu.TimeSecondBuilder}});Object.defineProperty(G,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Mu.TimeMillisecondBuilder}});Object.defineProperty(G,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Mu.TimeMicrosecondBuilder}});Object.defineProperty(G,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Mu.TimeNanosecondBuilder}});var Lu=Zy();Object.defineProperty(G,"TimestampBuilder",{enumerable:!0,get:function(){return Lu.TimestampBuilder}});Object.defineProperty(G,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Lu.TimestampSecondBuilder}});Object.defineProperty(G,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Lu.TimestampMillisecondBuilder}});Object.defineProperty(G,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Lu.TimestampMicrosecondBuilder}});Object.defineProperty(G,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Lu.TimestampNanosecondBuilder}});var mj=Jy();Object.defineProperty(G,"IntervalBuilder",{enumerable:!0,get:function(){return mj.IntervalBuilder}});Object.defineProperty(G,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return mj.IntervalDayTimeBuilder}});Object.defineProperty(G,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return mj.IntervalYearMonthBuilder}});var X3=sm();Object.defineProperty(G,"Utf8Builder",{enumerable:!0,get:function(){return X3.Utf8Builder}});var $3=om();Object.defineProperty(G,"BinaryBuilder",{enumerable:!0,get:function(){return $3.BinaryBuilder}});var ez=ej();Object.defineProperty(G,"ListBuilder",{enumerable:!0,get:function(){return ez.ListBuilder}});var tz=tj();Object.defineProperty(G,"FixedSizeListBuilder",{enumerable:!0,get:function(){return tz.FixedSizeListBuilder}});var rz=rj();Object.defineProperty(G,"MapBuilder",{enumerable:!0,get:function(){return rz.MapBuilder}});var nz=nj();Object.defineProperty(G,"StructBuilder",{enumerable:!0,get:function(){return nz.StructBuilder}});var wj=ij();Object.defineProperty(G,"UnionBuilder",{enumerable:!0,get:function(){return wj.UnionBuilder}});Object.defineProperty(G,"SparseUnionBuilder",{enumerable:!0,get:function(){return wj.SparseUnionBuilder}});Object.defineProperty(G,"DenseUnionBuilder",{enumerable:!0,get:function(){return wj.DenseUnionBuilder}});var hj=bt(),iz=sm(),oz=At(),qx=aj(),vx=_x();oz.Builder.new=Tx;function Tx(t){let e=t.type,r=new(vx.instance.getVisitFn(e)())(t);if(e.children&&e.children.length>0){let n=t.children||[],i={nullValues:t.nullValues},o=Array.isArray(n)?(f,s)=>n[s]||i:({name:f})=>n[f]||i;e.children.forEach((f,s)=>{let{type:u}=f,l=o(f,s);r.children.push(Tx({...l,type:u}))})}return r}Object.keys(hj.Type).map(t=>hj.Type[t]).filter(t=>typeof t=="number"&&t!==hj.Type.NONE).forEach(t=>{let e=vx.instance.visit(t);e.prototype._setValue=qx.instance.getVisitFn(t)});iz.Utf8Builder.prototype._setValue=qx.instance.visitBinary});var Bx=B(qa=>{"use strict";Object.defineProperty(qa,"__esModule",{value:!0});qa.Block=qa.Footer=void 0;var fz=Qi(),ym=Yo(),qn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFooter(e,r){return(r||new qn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFooter(e,r){return e.setPosition(e.position()+fz.flatbuffers.SIZE_PREFIX_LENGTH),(r||new qn).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):ym.MetadataVersion.V1}schema(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new ym.Schema).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}dictionaries(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new jm).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}dictionariesLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}recordBatches(e,r){let n=this.bb.__offset(this.bb_pos,10);return n?(r||new jm).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}recordBatchesLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new ym.KeyValue).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startFooter(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,ym.MetadataVersion.V1)}static addSchema(e,r){e.addFieldOffset(1,r,0)}static addDictionaries(e,r){e.addFieldOffset(2,r,0)}static startDictionariesVector(e,r){e.startVector(24,r,8)}static addRecordBatches(e,r){e.addFieldOffset(3,r,0)}static startRecordBatchesVector(e,r){e.startVector(24,r,8)}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endFooter(e){return e.endObject()}static finishFooterBuffer(e,r){e.finish(r)}static finishSizePrefixedFooterBuffer(e,r){e.finish(r,void 0,!0)}static createFooter(e,r,n,i,o,f){return qn.startFooter(e),qn.addVersion(e,r),qn.addSchema(e,n),qn.addDictionaries(e,i),qn.addRecordBatches(e,o),qn.addCustomMetadata(e,f),qn.endFooter(e)}};qa.Footer=qn;var jm=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}metaDataLength(){return this.bb.readInt32(this.bb_pos+8)}bodyLength(){return this.bb.readInt64(this.bb_pos+16)}static createBlock(e,r,n,i){return e.prep(8,24),e.writeInt64(i),e.pad(4),e.writeInt32(n),e.writeInt64(r),e.offset()}};qa.Block=jm});var yj=B(va=>{"use strict";Object.defineProperty(va,"__esModule",{value:!0});va.FileBlock=va.Footer=void 0;var Ln=Bx(),bj=Qi(),kx=bj.flatbuffers.Long,sz=bj.flatbuffers.Builder,az=bj.flatbuffers.ByteBuffer,Ix=ir(),xx=bt(),lz=Xt(),gj=class{constructor(e,r=xx.MetadataVersion.V4,n,i){this.schema=e,this.version=r,n&&(this._recordBatches=n),i&&(this._dictionaryBatches=i)}static decode(e){e=new az(lz.toUint8Array(e));let r=Ln.Footer.getRootAsFooter(e),n=Ix.Schema.decode(r.schema());return new Sx(n,r)}static encode(e){let r=new sz,n=Ix.Schema.encode(r,e.schema);Ln.Footer.startRecordBatchesVector(r,e.numRecordBatches),[...e.recordBatches()].slice().reverse().forEach(f=>tf.encode(r,f));let i=r.endVector();Ln.Footer.startDictionariesVector(r,e.numDictionaries),[...e.dictionaryBatches()].slice().reverse().forEach(f=>tf.encode(r,f));let o=r.endVector();return Ln.Footer.startFooter(r),Ln.Footer.addSchema(r,n),Ln.Footer.addVersion(r,xx.MetadataVersion.V4),Ln.Footer.addRecordBatches(r,i),Ln.Footer.addDictionaries(r,o),Ln.Footer.finishFooterBuffer(r,Ln.Footer.endFooter(r)),r.asUint8Array()}get numRecordBatches(){return this._recordBatches.length}get numDictionaries(){return this._dictionaryBatches.length}*recordBatches(){for(let e,r=-1,n=this.numRecordBatches;++r<n;)(e=this.getRecordBatch(r))&&(yield e)}*dictionaryBatches(){for(let e,r=-1,n=this.numDictionaries;++r<n;)(e=this.getDictionaryBatch(r))&&(yield e)}getRecordBatch(e){return e>=0&&e<this.numRecordBatches&&this._recordBatches[e]||null}getDictionaryBatch(e){return e>=0&&e<this.numDictionaries&&this._dictionaryBatches[e]||null}};va.Footer=gj;var Sx=class extends gj{constructor(e,r){super(e,r.version());this._footer=r}get numRecordBatches(){return this._footer.recordBatchesLength()}get numDictionaries(){return this._footer.dictionariesLength()}getRecordBatch(e){if(e>=0&&e<this.numRecordBatches){let r=this._footer.recordBatches(e);if(r)return tf.decode(r)}return null}getDictionaryBatch(e){if(e>=0&&e<this.numDictionaries){let r=this._footer.dictionaries(e);if(r)return tf.decode(r)}return null}},tf=class{constructor(e,r,n){this.metaDataLength=e,this.offset=typeof n=="number"?n:n.low,this.bodyLength=typeof r=="number"?r:r.low}static decode(e){return new tf(e.metaDataLength(),e.bodyLength(),e.offset())}static encode(e,r){let{metaDataLength:n}=r,i=new kx(r.offset,0),o=new kx(r.bodyLength,0);return Ln.Block.createBlock(e,i,n,o)}};va.FileBlock=tf});var ff=B(of=>{"use strict";Object.defineProperty(of,"__esModule",{value:!0});of.AsyncByteStream=of.ByteStream=of.AsyncByteQueue=void 0;var rf=Ou(),Ex=Xf(),Vu=fa(),jj=Xt(),Ta=gr(),_j=class extends Vu.AsyncQueue{write(e){if((e=jj.toUint8Array(e)).byteLength>0)return super.write(e)}toString(e=!1){return e?Ex.decodeUtf8(this.toUint8Array(!0)):this.toUint8Array(!1).then(Ex.decodeUtf8)}toUint8Array(e=!1){return e?jj.joinUint8Arrays(this._values)[0]:(async()=>{let r=[],n=0;for await(let i of this)r.push(i),n+=i.byteLength;return jj.joinUint8Arrays(r,n)[0]})()}};of.AsyncByteQueue=_j;var Ax=class{constructor(e){e&&(this.source=new Ox(rf.default.fromIterable(e)))}[Symbol.iterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}};of.ByteStream=Ax;var _m=class{constructor(e){e instanceof _m?this.source=e.source:e instanceof _j?this.source=new nf(rf.default.fromAsyncIterable(e)):Ta.isReadableNodeStream(e)?this.source=new nf(rf.default.fromNodeStream(e)):Ta.isReadableDOMStream(e)?this.source=new nf(rf.default.fromDOMStream(e)):Ta.isFetchResponse(e)?this.source=new nf(rf.default.fromDOMStream(e.body)):Ta.isIterable(e)?this.source=new nf(rf.default.fromIterable(e)):Ta.isPromise(e)?this.source=new nf(rf.default.fromAsyncIterable(e)):Ta.isAsyncIterable(e)&&(this.source=new nf(rf.default.fromAsyncIterable(e)))}[Symbol.asyncIterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}get closed(){return this.source.closed}cancel(e){return this.source.cancel(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}};of.AsyncByteStream=_m;var Ox=class{constructor(e){this.source=e}cancel(e){this.return(e)}peek(e){return this.next(e,"peek").value}read(e){return this.next(e,"read").value}next(e,r="read"){return this.source.next({cmd:r,size:e})}throw(e){return Object.create(this.source.throw&&this.source.throw(e)||Vu.ITERATOR_DONE)}return(e){return Object.create(this.source.return&&this.source.return(e)||Vu.ITERATOR_DONE)}},nf=class{constructor(e){this.source=e,this._closedPromise=new Promise(r=>this._closedPromiseResolve=r)}async cancel(e){await this.return(e)}get closed(){return this._closedPromise}async read(e){return(await this.next(e,"read")).value}async peek(e){return(await this.next(e,"peek")).value}async next(e,r="read"){return await this.source.next({cmd:r,size:e})}async throw(e){let r=this.source.throw&&await this.source.throw(e)||Vu.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}async return(e){let r=this.source.return&&await this.source.return(e)||Vu.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}}});var qj=B(Ba=>{"use strict";Object.defineProperty(Ba,"__esModule",{value:!0});Ba.AsyncRandomAccessFile=Ba.RandomAccessFile=void 0;var Fx=ff(),uz=Xt(),Dx=class extends Fx.ByteStream{constructor(e,r){super();this.position=0,this.buffer=uz.toUint8Array(e),this.size=typeof r=="undefined"?this.buffer.byteLength:r}readInt32(e){let{buffer:r,byteOffset:n}=this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)}seek(e){return this.position=Math.min(e,this.size),e<this.size}read(e){let{buffer:r,size:n,position:i}=this;return r&&i<n?(typeof e!="number"&&(e=1/0),this.position=Math.min(n,i+Math.min(n-i,e)),r.subarray(i,this.position)):null}readAt(e,r){let n=this.buffer,i=Math.min(this.size,e+r);return n?n.subarray(e,i):new Uint8Array(r)}close(){this.buffer&&(this.buffer=null)}throw(e){return this.close(),{done:!0,value:e}}return(e){return this.close(),{done:!0,value:e}}};Ba.RandomAccessFile=Dx;var Px=class extends Fx.AsyncByteStream{constructor(e,r){super();this.position=0,this._handle=e,typeof r=="number"?this.size=r:this._pending=(async()=>{this.size=(await e.stat()).size,delete this._pending})()}async readInt32(e){let{buffer:r,byteOffset:n}=await this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)}async seek(e){return this._pending&&await this._pending,this.position=Math.min(e,this.size),e<this.size}async read(e){this._pending&&await this._pending;let{_handle:r,size:n,position:i}=this;if(r&&i<n){typeof e!="number"&&(e=1/0);let o=i,f=0,s=0,u=Math.min(n,o+Math.min(n-o,e)),l=new Uint8Array(Math.max(0,(this.position=u)-o));for(;(o+=s)<u&&(f+=s)<l.byteLength;)({bytesRead:s}=await r.read(l,f,l.byteLength-f,o));return l}return null}async readAt(e,r){this._pending&&await this._pending;let{_handle:n,size:i}=this;if(n&&e+r<i){let o=Math.min(i,e+r),f=new Uint8Array(o-e);return(await n.read(f,0,r,e)).buffer}return new Uint8Array(r)}async close(){let e=this._handle;this._handle=null,e&&await e.close()}async throw(e){return await this.close(),{done:!0,value:e}}async return(e){return await this.close(),{done:!0,value:e}}};Ba.AsyncRandomAccessFile=Px});var Tj=B(bi=>{"use strict";Object.defineProperty(bi,"__esModule",{value:!0});bi.Int128=bi.Int64=bi.Uint64=bi.BaseInt64=void 0;var cz=1<<16;function ka(t){return t<0&&(t=4294967295+t+1),`0x${t.toString(16)}`}var Ia=8,vj=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8],qm=class{constructor(e){this.buffer=e}high(){return this.buffer[1]}low(){return this.buffer[0]}_times(e){let r=new Uint32Array([this.buffer[1]>>>16,this.buffer[1]&65535,this.buffer[0]>>>16,this.buffer[0]&65535]),n=new Uint32Array([e.buffer[1]>>>16,e.buffer[1]&65535,e.buffer[0]>>>16,e.buffer[0]&65535]),i=r[3]*n[3];this.buffer[0]=i&65535;let o=i>>>16;return i=r[2]*n[3],o+=i,i=r[3]*n[2]>>>0,o+=i,this.buffer[0]+=o<<16,this.buffer[1]=o>>>0<i?cz:0,this.buffer[1]+=o>>>16,this.buffer[1]+=r[1]*n[3]+r[2]*n[2]+r[3]*n[1],this.buffer[1]+=r[0]*n[3]+r[1]*n[2]+r[2]*n[1]+r[3]*n[0]<<16,this}_plus(e){let r=this.buffer[0]+e.buffer[0]>>>0;this.buffer[1]+=e.buffer[1],r<this.buffer[0]>>>0&&++this.buffer[1],this.buffer[0]=r}lessThan(e){return this.buffer[1]<e.buffer[1]||this.buffer[1]===e.buffer[1]&&this.buffer[0]<e.buffer[0]}equals(e){return this.buffer[1]===e.buffer[1]&&this.buffer[0]==e.buffer[0]}greaterThan(e){return e.lessThan(this)}hex(){return`${ka(this.buffer[1])} ${ka(this.buffer[0])}`}};bi.BaseInt64=qm;var it=class extends qm{times(e){return this._times(e),this}plus(e){return this._plus(e),this}static from(e,r=new Uint32Array(2)){return it.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return it.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.length,i=new it(r);for(let o=0;o<n;){let f=Ia<n-o?Ia:n-o,s=new it(new Uint32Array([parseInt(e.substr(o,f),10),0])),u=new it(new Uint32Array([vj[f],0]));i.times(u),i.plus(s),o+=f}return i}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)it.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new it(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new it(new Uint32Array(e.buffer)).plus(r)}};bi.Uint64=it;var Qr=class extends qm{negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[0]==0&&++this.buffer[1],this}times(e){return this._times(e),this}plus(e){return this._plus(e),this}lessThan(e){let r=this.buffer[1]<<0,n=e.buffer[1]<<0;return r<n||r===n&&this.buffer[0]<e.buffer[0]}static from(e,r=new Uint32Array(2)){return Qr.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return Qr.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.startsWith("-"),i=e.length,o=new Qr(r);for(let f=n?1:0;f<i;){let s=Ia<i-f?Ia:i-f,u=new Qr(new Uint32Array([parseInt(e.substr(f,s),10),0])),l=new Qr(new Uint32Array([vj[s],0]));o.times(l),o.plus(u),f+=s}return n?o.negate():o}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)Qr.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new Qr(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Qr(new Uint32Array(e.buffer)).plus(r)}};bi.Int64=Qr;var Vn=class{constructor(e){this.buffer=e}high(){return new Qr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2))}low(){return new Qr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset,2))}negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[2]=~this.buffer[2],this.buffer[3]=~this.buffer[3],this.buffer[0]==0&&++this.buffer[1],this.buffer[1]==0&&++this.buffer[2],this.buffer[2]==0&&++this.buffer[3],this}times(e){let r=new it(new Uint32Array([this.buffer[3],0])),n=new it(new Uint32Array([this.buffer[2],0])),i=new it(new Uint32Array([this.buffer[1],0])),o=new it(new Uint32Array([this.buffer[0],0])),f=new it(new Uint32Array([e.buffer[3],0])),s=new it(new Uint32Array([e.buffer[2],0])),u=new it(new Uint32Array([e.buffer[1],0])),l=new it(new Uint32Array([e.buffer[0],0])),c=it.multiply(o,l);this.buffer[0]=c.low();let w=new it(new Uint32Array([c.high(),0]));return c=it.multiply(i,l),w.plus(c),c=it.multiply(o,u),w.plus(c),this.buffer[1]=w.low(),this.buffer[3]=w.lessThan(c)?1:0,this.buffer[2]=w.high(),new it(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2)).plus(it.multiply(n,l)).plus(it.multiply(i,u)).plus(it.multiply(o,s)),this.buffer[3]+=it.multiply(r,l).plus(it.multiply(n,u)).plus(it.multiply(i,s)).plus(it.multiply(o,f)).low(),this}plus(e){let r=new Uint32Array(4);return r[3]=this.buffer[3]+e.buffer[3]>>>0,r[2]=this.buffer[2]+e.buffer[2]>>>0,r[1]=this.buffer[1]+e.buffer[1]>>>0,r[0]=this.buffer[0]+e.buffer[0]>>>0,r[0]<this.buffer[0]>>>0&&++r[1],r[1]<this.buffer[1]>>>0&&++r[2],r[2]<this.buffer[2]>>>0&&++r[3],this.buffer[3]=r[3],this.buffer[2]=r[2],this.buffer[1]=r[1],this.buffer[0]=r[0],this}hex(){return`${ka(this.buffer[3])} ${ka(this.buffer[2])} ${ka(this.buffer[1])} ${ka(this.buffer[0])}`}static multiply(e,r){return new Vn(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Vn(new Uint32Array(e.buffer)).plus(r)}static from(e,r=new Uint32Array(4)){return Vn.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(4)){return Vn.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(4)){let n=e.startsWith("-"),i=e.length,o=new Vn(r);for(let f=n?1:0;f<i;){let s=Ia<i-f?Ia:i-f,u=new Vn(new Uint32Array([parseInt(e.substr(f,s),10),0,0,0])),l=new Vn(new Uint32Array([vj[s],0,0,0]));o.times(l),o.plus(u),f+=s}return n?o.negate():o}static convertArray(e){let r=new Uint32Array(e.length*4);for(let n=-1,i=e.length;++n<i;)Vn.from(e[n],new Uint32Array(r.buffer,r.byteOffset+4*4*n,4));return r}};bi.Int128=Vn});var zx=B(xa=>{"use strict";Object.defineProperty(xa,"__esModule",{value:!0});xa.JSONVectorLoader=xa.VectorLoader=void 0;var er=Un(),pz=ir(),oo=nt(),dz=cr(),Nx=di(),mz=Xf(),vm=Tj(),Rx=bt(),gi=Xt(),Bj=class extends dz.Visitor{constructor(e,r,n,i){super();this.nodesIndex=-1,this.buffersIndex=-1,this.bytes=e,this.nodes=r,this.buffers=n,this.dictionaries=i}visit(e){return super.visit(e instanceof pz.Field?e.type:e)}visitNull(e,{length:r}=this.nextFieldNode()){return er.Data.Null(e,0,r)}visitBool(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Bool(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitInt(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Int(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFloat(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Float(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitUtf8(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Utf8(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.readData(e))}visitBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Binary(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.readData(e))}visitFixedSizeBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.FixedSizeBinary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDate(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Date(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTimestamp(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Timestamp(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTime(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Time(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDecimal(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Decimal(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitList(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.List(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.visit(e.children[0]))}visitStruct(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Struct(e,0,r,n,this.readNullBitmap(e,n),this.visitMany(e.children))}visitUnion(e){return e.mode===Rx.UnionMode.Sparse?this.visitSparseUnion(e):this.visitDenseUnion(e)}visitDenseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Union(e,0,r,n,this.readNullBitmap(e,n),this.readTypeIds(e),this.readOffsets(e),this.visitMany(e.children))}visitSparseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Union(e,0,r,n,this.readNullBitmap(e,n),this.readTypeIds(e),this.visitMany(e.children))}visitDictionary(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Dictionary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e.indices),this.readDictionary(e))}visitInterval(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Interval(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFixedSizeList(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.FixedSizeList(e,0,r,n,this.readNullBitmap(e,n),this.visit(e.children[0]))}visitMap(e,{length:r,nullCount:n}=this.nextFieldNode()){return er.Data.Map(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.visit(e.children[0]))}nextFieldNode(){return this.nodes[++this.nodesIndex]}nextBufferRange(){return this.buffers[++this.buffersIndex]}readNullBitmap(e,r,n=this.nextBufferRange()){return r>0&&this.readData(e,n)||new Uint8Array(0)}readOffsets(e,r){return this.readData(e,r)}readTypeIds(e,r){return this.readData(e,r)}readData(e,{length:r,offset:n}=this.nextBufferRange()){return this.bytes.subarray(n,n+r)}readDictionary(e){return this.dictionaries.get(e.id)}};xa.VectorLoader=Bj;var Hx=class extends Bj{constructor(e,r,n,i){super(new Uint8Array(0),r,n,i);this.sources=e}readNullBitmap(e,r,{offset:n}=this.nextBufferRange()){return r<=0?new Uint8Array(0):Nx.packBools(this.sources[n])}readOffsets(e,{offset:r}=this.nextBufferRange()){return gi.toArrayBufferView(Uint8Array,gi.toArrayBufferView(Int32Array,this.sources[r]))}readTypeIds(e,{offset:r}=this.nextBufferRange()){return gi.toArrayBufferView(Uint8Array,gi.toArrayBufferView(e.ArrayType,this.sources[r]))}readData(e,{offset:r}=this.nextBufferRange()){let{sources:n}=this;return oo.DataType.isTimestamp(e)||(oo.DataType.isInt(e)||oo.DataType.isTime(e))&&e.bitWidth===64||oo.DataType.isDate(e)&&e.unit===Rx.DateUnit.MILLISECOND?gi.toArrayBufferView(Uint8Array,vm.Int64.convertArray(n[r])):oo.DataType.isDecimal(e)?gi.toArrayBufferView(Uint8Array,vm.Int128.convertArray(n[r])):oo.DataType.isBinary(e)||oo.DataType.isFixedSizeBinary(e)?wz(n[r]):oo.DataType.isBool(e)?Nx.packBools(n[r]):oo.DataType.isUtf8(e)?mz.encodeUtf8(n[r].join("")):gi.toArrayBufferView(Uint8Array,gi.toArrayBufferView(e.ArrayType,n[r].map(i=>+i)))}};xa.JSONVectorLoader=Hx;function wz(t){let e=t.join(""),r=new Uint8Array(e.length/2);for(let n=0;n<e.length;n+=2)r[n>>1]=parseInt(e.substr(n,2),16);return r}});var Cu=B(Ea=>{"use strict";Object.defineProperty(Ea,"__esModule",{value:!0});Ea.StructRow=Ea.MapRow=void 0;var Ux=Fy(),pr=Symbol.for("parent"),Sa=Symbol.for("rowIndex"),Xr=Symbol.for("keyToIdx"),$r=Symbol.for("idxToVal"),kj=Symbol.for("nodejs.util.inspect.custom"),yi=class{constructor(e,r){this[pr]=e,this.size=r}entries(){return this[Symbol.iterator]()}has(e){return this.get(e)!==void 0}get(e){let r;if(e!=null){let n=this[Xr]||(this[Xr]=new Map),i=n.get(e);if(i!==void 0){let o=this[$r]||(this[$r]=new Array(this.size));(r=o[i])!==void 0||(o[i]=r=this.getValue(i))}else if((i=this.getIndex(e))>-1){n.set(e,i);let o=this[$r]||(this[$r]=new Array(this.size));(r=o[i])!==void 0||(o[i]=r=this.getValue(i))}}return r}set(e,r){if(e!=null){let n=this[Xr]||(this[Xr]=new Map),i=n.get(e);if(i===void 0&&n.set(e,i=this.getIndex(e)),i>-1){let o=this[$r]||(this[$r]=new Array(this.size));o[i]=this.setValue(i,r)}}return this}clear(){throw new Error(`Clearing ${this[Symbol.toStringTag]} not supported.`)}delete(e){throw new Error(`Deleting ${this[Symbol.toStringTag]} values not supported.`)}*[Symbol.iterator](){let e=this.keys(),r=this.values(),n=this[Xr]||(this[Xr]=new Map),i=this[$r]||(this[$r]=new Array(this.size));for(let o,f,s=0,u,l;!((u=e.next()).done||(l=r.next()).done);++s)o=u.value,f=l.value,i[s]=f,n.has(o)||n.set(o,s),yield[o,f]}forEach(e,r){let n=this.keys(),i=this.values(),o=r===void 0?e:(u,l,c)=>e.call(r,u,l,c),f=this[Xr]||(this[Xr]=new Map),s=this[$r]||(this[$r]=new Array(this.size));for(let u,l,c=0,w,p;!((w=n.next()).done||(p=i.next()).done);++c)u=w.value,l=p.value,s[c]=l,f.has(u)||f.set(u,c),o(l,u,this)}toArray(){return[...this.values()]}toJSON(){let e={};return this.forEach((r,n)=>e[n]=r),e}inspect(){return this.toString()}[kj](){return this.toString()}toString(){let e=[];return this.forEach((r,n)=>{n=Ux.valueToString(n),r=Ux.valueToString(r),e.push(`${n}: ${r}`)}),`{ ${e.join(", ")} }`}};yi[Symbol.toStringTag]=(t=>(Object.defineProperties(t,{size:{writable:!0,enumerable:!1,configurable:!1,value:0},[pr]:{writable:!0,enumerable:!1,configurable:!1,value:null},[Sa]:{writable:!0,enumerable:!1,configurable:!1,value:-1}}),t[Symbol.toStringTag]="Row"))(yi.prototype);var Mx=class extends yi{constructor(e){super(e,e.length);return hz(this)}keys(){return this[pr].getChildAt(0)[Symbol.iterator]()}values(){return this[pr].getChildAt(1)[Symbol.iterator]()}getKey(e){return this[pr].getChildAt(0).get(e)}getIndex(e){return this[pr].getChildAt(0).indexOf(e)}getValue(e){return this[pr].getChildAt(1).get(e)}setValue(e,r){this[pr].getChildAt(1).set(e,r)}};Ea.MapRow=Mx;var Lx=class extends yi{constructor(e){super(e,e.type.children.length);return Vx(this)}*keys(){for(let e of this[pr].type.children)yield e.name}*values(){for(let e of this[pr].type.children)yield this[e.name]}getKey(e){return this[pr].type.children[e].name}getIndex(e){return this[pr].type.children.findIndex(r=>r.name===e)}getValue(e){return this[pr].getChildAt(e).get(this[Sa])}setValue(e,r){return this[pr].getChildAt(e).set(this[Sa],r)}};Ea.StructRow=Lx;Object.setPrototypeOf(yi.prototype,Map.prototype);var Vx=(()=>{let t={enumerable:!0,configurable:!1,get:null,set:null};return e=>{let r=-1,n=e[Xr]||(e[Xr]=new Map),i=f=>function(){return this.get(f)},o=f=>function(s){return this.set(f,s)};for(let f of e.keys())n.set(f,++r),t.get=i(f),t.set=o(f),Object.prototype.hasOwnProperty.call(e,f)||(t.enumerable=!0,Object.defineProperty(e,f,t)),Object.prototype.hasOwnProperty.call(e,r)||(t.enumerable=!1,Object.defineProperty(e,r,t));return t.get=t.set=null,e}})(),hz=(()=>{if(typeof Proxy=="undefined")return Vx;let t=yi.prototype.has,e=yi.prototype.get,r=yi.prototype.set,n=yi.prototype.getKey,i={isExtensible(){return!1},deleteProperty(){return!1},preventExtensions(){return!0},ownKeys(o){return[...o.keys()].map(f=>`${f}`)},has(o,f){switch(f){case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:case pr:case Sa:case $r:case Xr:case kj:return!0}return typeof f=="number"&&!o.has(f)&&(f=o.getKey(f)),o.has(f)},get(o,f,s){switch(f){case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:case pr:case Sa:case $r:case Xr:case kj:return Reflect.get(o,f,s)}return typeof f=="number"&&!t.call(s,f)&&(f=n.call(s,f)),e.call(s,f)},set(o,f,s,u){switch(f){case pr:case Sa:case $r:case Xr:return Reflect.set(o,f,s,u);case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:return!1}return typeof f=="number"&&!t.call(u,f)&&(f=n.call(u,f)),t.call(u,f)?!!r.call(u,f,s):!1}};return o=>new Proxy(o,i)})()});var Ku=B(sf=>{"use strict";Object.defineProperty(sf,"__esModule",{value:!0});sf.createElementComparator=sf.clampRange=sf.clampIndex=void 0;var Cx=zt(),Wx=Cu(),bz=Xt(),Kx=gr();function gz(t,e,r){let n=t.length,i=e>-1?e:n+e%n;return r?r(t,i):i}sf.clampIndex=gz;var Yx;function yz(t,e,r,n){let{length:i=0}=t,o=typeof e!="number"?0:e,f=typeof r!="number"?i:r;return o<0&&(o=(o%i+i)%i),f<0&&(f=(f%i+i)%i),f<o&&(Yx=o,o=f,f=Yx),f>i&&(f=i),n?n(t,o,f):[o,f]}sf.clampRange=yz;var jz=Kx.BigIntAvailable?Kx.BigInt(0):0,Gx=t=>t!==t;function Wu(t){let e=typeof t;if(e!=="object"||t===null)return Gx(t)?Gx:e!=="bigint"?r=>r===t:r=>jz+r===t;if(t instanceof Date){let r=t.valueOf();return n=>n instanceof Date?n.valueOf()===r:!1}return ArrayBuffer.isView(t)?r=>r?bz.compareArrayLike(t,r):!1:t instanceof Map?qz(t):Array.isArray(t)?_z(t):t instanceof Cx.Vector?vz(t):Tz(t)}sf.createElementComparator=Wu;function _z(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Wu(t[r]);return Tm(e)}function qz(t){let e=-1,r=[];return t.forEach(n=>r[++e]=Wu(n)),Tm(r)}function vz(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Wu(t.get(r));return Tm(e)}function Tz(t){let e=Object.keys(t);if(e.length===0)return()=>!1;let r=[];for(let n=-1,i=e.length;++n<i;)r[n]=Wu(t[e[n]]);return Tm(r,e)}function Tm(t,e){return r=>{if(!r||typeof r!="object")return!1;switch(r.constructor){case Array:return Bz(t,r);case Map:case Wx.MapRow:case Wx.StructRow:return Zx(t,r,r.keys());case Object:case void 0:return Zx(t,r,e||Object.keys(r))}return r instanceof Cx.Vector?kz(t,r):!1}}function Bz(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e[n]))return!1;return!0}function kz(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e.get(n)))return!1;return!0}function Zx(t,e,r){let n=r[Symbol.iterator](),i=e instanceof Map?e.keys():Object.keys(e)[Symbol.iterator](),o=e instanceof Map?e.values():Object.values(e)[Symbol.iterator](),f=0,s=t.length,u=o.next(),l=n.next(),c=i.next();for(;f<s&&!l.done&&!c.done&&!u.done&&!(l.value!==c.value||!t[f](u.value));++f,l=n.next(),c=i.next(),u=o.next());return f===s&&l.done&&c.done&&u.done?!0:(n.return&&n.return(),i.return&&i.return(),o.return&&o.return(),!1)}});var Aa=B(Vr=>{"use strict";Object.defineProperty(Vr,"__esModule",{value:!0});Vr.selectColumnChildrenArgs=Vr.selectVectorChildrenArgs=Vr.selectChunkArgs=Vr.selectFieldArgs=Vr.selectColumnArgs=Vr.selectArgs=void 0;var Jx=Un(),Qx=ir(),af=Oa(),Yu=zt(),Xx=nt(),Iz=uf(),lf=Array.isArray;Vr.selectArgs=(t,e)=>Bm(t,e,[],0);Vr.selectColumnArgs=t=>{let[e,r]=xj(t,[[],[]]);return r.map((n,i)=>n instanceof af.Column?af.Column.new(n.field.clone(e[i]),n):n instanceof Yu.Vector?af.Column.new(e[i],n):af.Column.new(e[i],[]))};Vr.selectFieldArgs=t=>xj(t,[[],[]]);Vr.selectChunkArgs=(t,e)=>Ij(t,e,[],0);Vr.selectVectorChildrenArgs=(t,e)=>$x(t,e,[],0);Vr.selectColumnChildrenArgs=(t,e)=>eS(t,e,[],0);function Bm(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)lf(i=e[f])?o=Bm(t,i,r,o).length:i instanceof t&&(r[o++]=i);return r}function Ij(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)lf(i=e[f])?o=Ij(t,i,r,o).length:i instanceof Iz.Chunked?o=Ij(t,i.chunks,r,o).length:i instanceof t&&(r[o++]=i);return r}function $x(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)lf(i=e[f])?o=$x(t,i,r,o).length:i instanceof t?o=Bm(Yu.Vector,i.schema.fields.map((u,l)=>i.getChildAt(l)),r,o).length:i instanceof Yu.Vector&&(r[o++]=i);return r}function eS(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)lf(i=e[f])?o=eS(t,i,r,o).length:i instanceof t?o=Bm(af.Column,i.schema.fields.map((u,l)=>af.Column.new(u,i.getChildAt(l))),r,o).length:i instanceof af.Column&&(r[o++]=i);return r}var xz=(t,[e,r],n)=>(t[0][n]=e,t[1][n]=r,t);function xj(t,e){let r,n;switch(n=t.length){case 0:return e;case 1:if(r=e[0],!t[0])return e;if(lf(t[0]))return xj(t[0],e);t[0]instanceof Jx.Data||t[0]instanceof Yu.Vector||t[0]instanceof Xx.DataType||([r,t]=Object.entries(t[0]).reduce(xz,e));break;default:lf(r=t[n-1])?t=lf(t[0])?t[0]:t.slice(0,n-1):(t=lf(t[0])?t[0]:t,r=[])}let i=-1,o=-1,f=-1,s=t.length,u,l,[c,w]=e;for(;++f<s;)l=t[f],l instanceof af.Column&&(w[++o]=l)?c[++i]=l.field.clone(r[f],l.type,!0):({[f]:u=f}=r,l instanceof Xx.DataType&&(w[++o]=l)?c[++i]=Qx.Field.new(u,l,!0):l&&l.type&&(w[++o]=l)&&(l instanceof Jx.Data&&(w[o]=l=Yu.Vector.new(l)),c[++i]=Qx.Field.new(u,l.type,!0)));return e}});var uf=B(km=>{"use strict";Object.defineProperty(km,"__esModule",{value:!0});km.Chunked=void 0;var Sz=Ku(),tS=nt(),Ez=Aa(),rS=zt(),nS=class{constructor(e){this.chunks=e,this.chunkIndex=0,this.chunkIterator=this.getChunkIterator()}next(){for(;this.chunkIndex<this.chunks.length;){let e=this.chunkIterator.next();if(!e.done)return e;++this.chunkIndex<this.chunks.length&&(this.chunkIterator=this.getChunkIterator())}return{done:!0,value:null}}getChunkIterator(){return this.chunks[this.chunkIndex][Symbol.iterator]()}[Symbol.iterator](){return this}},fo=class extends rS.AbstractVector{constructor(e,r=[],n=Az(r)){super();this._nullCount=-1,this._type=e,this._chunks=r,this._chunkOffsets=n,this._length=n[n.length-1],this._numChildren=(this._type.children||[]).length}static flatten(...e){return Ez.selectChunkArgs(rS.Vector,e)}static concat(...e){let r=fo.flatten(...e);return new fo(r[0].type,r)}get type(){return this._type}get length(){return this._length}get chunks(){return this._chunks}get typeId(){return this._type.typeId}get VectorName(){return`Chunked<${this._type}>`}get data(){return this._chunks[0]?this._chunks[0].data:null}get ArrayType(){return this._type.ArrayType}get numChildren(){return this._numChildren}get stride(){return this._chunks[0]?this._chunks[0].stride:1}get byteLength(){return this._chunks.reduce((e,r)=>e+r.byteLength,0)}get nullCount(){let e=this._nullCount;return e<0&&(this._nullCount=e=this._chunks.reduce((r,{nullCount:n})=>r+n,0)),e}get indices(){if(tS.DataType.isDictionary(this._type)){if(!this._indices){let e=this._chunks;this._indices=e.length===1?e[0].indices:fo.concat(...e.map(r=>r.indices))}return this._indices}return null}get dictionary(){return tS.DataType.isDictionary(this._type)?this._chunks[this._chunks.length-1].data.dictionary:null}[Symbol.iterator](){return new nS(this._chunks)}clone(e=this._chunks){return new fo(this._type,e)}concat(...e){return this.clone(fo.flatten(this,...e))}slice(e,r){return Sz.clampRange(this,e,r,this._sliceInternal)}getChildAt(e){if(e<0||e>=this._numChildren)return null;let r=this._children||(this._children=[]),n,i,o;return(n=r[e])?n:(i=(this._type.children||[])[e])&&(o=this._chunks.map(f=>f.getChildAt(e)).filter(f=>f!=null),o.length>0)?r[e]=new fo(i.type,o):null}search(e,r){let n=e,i=this._chunkOffsets,o=i.length-1;if(n<0||n>=i[o])return null;if(o<=1)return r?r(this,0,n):[0,n];let f=0,s=0,u=0;do{if(f+1===o)return r?r(this,f,n-s):[f,n-s];u=f+(o-f)/2|0,n>=i[u]?f=u:o=u}while(n<i[o]&&n>=(s=i[f]));return null}isValid(e){return!!this.search(e,this.isValidInternal)}get(e){return this.search(e,this.getInternal)}set(e,r){this.search(e,({chunks:n},i,o)=>n[i].set(o,r))}indexOf(e,r){return r&&typeof r=="number"?this.search(r,(n,i,o)=>this.indexOfInternal(n,i,o,e)):this.indexOfInternal(this,0,Math.max(0,r||0),e)}toArray(){let{chunks:e}=this,r=e.length,n=this._type.ArrayType;if(r<=0)return new n(0);if(r<=1)return e[0].toArray();let i=0,o=new Array(r);for(let u=-1;++u<r;)i+=(o[u]=e[u].toArray()).length;n!==o[0].constructor&&(n=o[0].constructor);let f=new n(i),s=n===Array?Fz:Oz;for(let u=-1,l=0;++u<r;)l=s(o[u],f,l);return f}getInternal({_chunks:e},r,n){return e[r].get(n)}isValidInternal({_chunks:e},r,n){return e[r].isValid(n)}indexOfInternal({_chunks:e},r,n,i){let o=r-1,f=e.length,s=n,u=0,l=-1;for(;++o<f;){if(~(l=e[o].indexOf(i,s)))return u+l;s=0,u+=e[o].length}return-1}_sliceInternal(e,r,n){let i=[],{chunks:o,_chunkOffsets:f}=e;for(let s=-1,u=o.length;++s<u;){let l=o[s],c=l.length,w=f[s];if(w>=n)break;if(r>=w+c)continue;if(w>=r&&w+c<=n){i.push(l);continue}let p=Math.max(0,r-w),g=Math.min(n-w,c);i.push(l.slice(p,g))}return e.clone(i)}};km.Chunked=fo;function Az(t){let e=new Uint32Array((t||[]).length+1),r=e[0]=0,n=e.length;for(let i=0;++i<n;)e[i]=r+=t[i-1].length;return e}var Oz=(t,e,r)=>(e.set(t,r),r+t.length),Fz=(t,e,r)=>{let n=r;for(let i=-1,o=t.length;++i<o;)e[n++]=t[i];return n}});var Oa=B(Im=>{"use strict";Object.defineProperty(Im,"__esModule",{value:!0});Im.Column=void 0;var iS=ir(),oS=zt(),Sj=uf(),ps=class extends Sj.Chunked{constructor(e,r=[],n){r=Sj.Chunked.flatten(...r);super(e.type,r,n);if(this._field=e,r.length===1&&!(this instanceof Ej))return new Ej(e,r[0],this._chunkOffsets)}static new(...e){let[r,n,...i]=e;typeof r!="string"&&!(r instanceof iS.Field)&&(n=r,r="");let o=Sj.Chunked.flatten(Array.isArray(n)?[...n,...i]:n instanceof oS.Vector?[n,...i]:[oS.Vector.new(n,...i)]);if(typeof r=="string"){let f=o[0].data.type;r=new iS.Field(r,f,!0)}else!r.nullable&&o.some(({nullCount:f})=>f>0)&&(r=r.clone({nullable:!0}));return new ps(r,o)}get field(){return this._field}get name(){return this._field.name}get nullable(){return this._field.nullable}get metadata(){return this._field.metadata}clone(e=this._chunks){return new ps(this._field,e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r=this._children||(this._children=[]),n,i,o;return(n=r[e])?n:(i=(this.type.children||[])[e])&&(o=this._chunks.map(f=>f.getChildAt(e)).filter(f=>f!=null),o.length>0)?r[e]=new ps(i,o):null}};Im.Column=ps;var Ej=class extends ps{constructor(e,r,n){super(e,[r],n);this._chunk=r}search(e,r){return r?r(this,0,e):[0,e]}isValid(e){return this._chunk.isValid(e)}get(e){return this._chunk.get(e)}set(e,r){this._chunk.set(e,r)}indexOf(e,r){return this._chunk.indexOf(e,r)}}});var fS=B(Fa=>{"use strict";Object.defineProperty(Fa,"__esModule",{value:!0});Fa.instance=Fa.TypeAssembler=void 0;var Dz=Qi(),Pz=Dz.flatbuffers.Long,Nz=cr(),ue=Yo(),Aj=class extends Nz.Visitor{visit(e,r){return e==null||r==null?void 0:super.visit(e,r)}visitNull(e,r){return ue.Null.startNull(r),ue.Null.endNull(r)}visitInt(e,r){return ue.Int.startInt(r),ue.Int.addBitWidth(r,e.bitWidth),ue.Int.addIsSigned(r,e.isSigned),ue.Int.endInt(r)}visitFloat(e,r){return ue.FloatingPoint.startFloatingPoint(r),ue.FloatingPoint.addPrecision(r,e.precision),ue.FloatingPoint.endFloatingPoint(r)}visitBinary(e,r){return ue.Binary.startBinary(r),ue.Binary.endBinary(r)}visitBool(e,r){return ue.Bool.startBool(r),ue.Bool.endBool(r)}visitUtf8(e,r){return ue.Utf8.startUtf8(r),ue.Utf8.endUtf8(r)}visitDecimal(e,r){return ue.Decimal.startDecimal(r),ue.Decimal.addScale(r,e.scale),ue.Decimal.addPrecision(r,e.precision),ue.Decimal.endDecimal(r)}visitDate(e,r){return ue.Date.startDate(r),ue.Date.addUnit(r,e.unit),ue.Date.endDate(r)}visitTime(e,r){return ue.Time.startTime(r),ue.Time.addUnit(r,e.unit),ue.Time.addBitWidth(r,e.bitWidth),ue.Time.endTime(r)}visitTimestamp(e,r){let n=e.timezone&&r.createString(e.timezone)||void 0;return ue.Timestamp.startTimestamp(r),ue.Timestamp.addUnit(r,e.unit),n!==void 0&&ue.Timestamp.addTimezone(r,n),ue.Timestamp.endTimestamp(r)}visitInterval(e,r){return ue.Interval.startInterval(r),ue.Interval.addUnit(r,e.unit),ue.Interval.endInterval(r)}visitList(e,r){return ue.List.startList(r),ue.List.endList(r)}visitStruct(e,r){return ue.Struct_.startStruct_(r),ue.Struct_.endStruct_(r)}visitUnion(e,r){ue.Union.startTypeIdsVector(r,e.typeIds.length);let n=ue.Union.createTypeIdsVector(r,e.typeIds);return ue.Union.startUnion(r),ue.Union.addMode(r,e.mode),ue.Union.addTypeIds(r,n),ue.Union.endUnion(r)}visitDictionary(e,r){let n=this.visit(e.indices,r);return ue.DictionaryEncoding.startDictionaryEncoding(r),ue.DictionaryEncoding.addId(r,new Pz(e.id,0)),ue.DictionaryEncoding.addIsOrdered(r,e.isOrdered),n!==void 0&&ue.DictionaryEncoding.addIndexType(r,n),ue.DictionaryEncoding.endDictionaryEncoding(r)}visitFixedSizeBinary(e,r){return ue.FixedSizeBinary.startFixedSizeBinary(r),ue.FixedSizeBinary.addByteWidth(r,e.byteWidth),ue.FixedSizeBinary.endFixedSizeBinary(r)}visitFixedSizeList(e,r){return ue.FixedSizeList.startFixedSizeList(r),ue.FixedSizeList.addListSize(r,e.listSize),ue.FixedSizeList.endFixedSizeList(r)}visitMap(e,r){return ue.Map.startMap(r),ue.Map.addKeysSorted(r,e.keysSorted),ue.Map.endMap(r)}};Fa.TypeAssembler=Aj;Fa.instance=new Aj});var dS=B(ji=>{"use strict";Object.defineProperty(ji,"__esModule",{value:!0});ji.fieldFromJSON=ji.dictionaryBatchFromJSON=ji.recordBatchFromJSON=ji.schemaFromJSON=void 0;var Da=ir(),qt=nt(),ds=ms(),Pa=bt();function Rz(t,e=new Map){return new Da.Schema(zz(t,e),xm(t.customMetadata),e)}ji.schemaFromJSON=Rz;function sS(t){return new ds.RecordBatch(t.count,lS(t.columns),uS(t.columns))}ji.recordBatchFromJSON=sS;function Hz(t){return new ds.DictionaryBatch(sS(t.data),t.id,t.isDelta)}ji.dictionaryBatchFromJSON=Hz;function zz(t,e){return(t.fields||[]).filter(Boolean).map(r=>Da.Field.fromJSON(r,e))}function aS(t,e){return(t.children||[]).filter(Boolean).map(r=>Da.Field.fromJSON(r,e))}function lS(t){return(t||[]).reduce((e,r)=>[...e,new ds.FieldNode(r.count,Uz(r.VALIDITY)),...lS(r.children)],[])}function uS(t,e=[]){for(let r=-1,n=(t||[]).length;++r<n;){let i=t[r];i.VALIDITY&&e.push(new ds.BufferRegion(e.length,i.VALIDITY.length)),i.TYPE&&e.push(new ds.BufferRegion(e.length,i.TYPE.length)),i.OFFSET&&e.push(new ds.BufferRegion(e.length,i.OFFSET.length)),i.DATA&&e.push(new ds.BufferRegion(e.length,i.DATA.length)),e=uS(i.children,e)}return e}function Uz(t){return(t||[]).reduce((e,r)=>e+ +(r===0),0)}function Mz(t,e){let r,n,i,o,f,s;return!e||!(o=t.dictionary)?(f=pS(t,aS(t,e)),i=new Da.Field(t.name,f,t.nullable,xm(t.customMetadata))):e.has(r=o.id)?(n=(n=o.indexType)?cS(n):new qt.Int32,s=new qt.Dictionary(e.get(r),n,r,o.isOrdered),i=new Da.Field(t.name,s,t.nullable,xm(t.customMetadata))):(n=(n=o.indexType)?cS(n):new qt.Int32,e.set(r,f=pS(t,aS(t,e))),s=new qt.Dictionary(f,n,r,o.isOrdered),i=new Da.Field(t.name,s,t.nullable,xm(t.customMetadata))),i||null}ji.fieldFromJSON=Mz;function xm(t){return new Map(Object.entries(t||{}))}function cS(t){return new qt.Int(t.isSigned,t.bitWidth)}function pS(t,e){let r=t.type.name;switch(r){case"NONE":return new qt.Null;case"null":return new qt.Null;case"binary":return new qt.Binary;case"utf8":return new qt.Utf8;case"bool":return new qt.Bool;case"list":return new qt.List((e||[])[0]);case"struct":return new qt.Struct(e||[]);case"struct_":return new qt.Struct(e||[])}switch(r){case"int":{let n=t.type;return new qt.Int(n.isSigned,n.bitWidth)}case"floatingpoint":{let n=t.type;return new qt.Float(Pa.Precision[n.precision])}case"decimal":{let n=t.type;return new qt.Decimal(n.scale,n.precision)}case"date":{let n=t.type;return new qt.Date_(Pa.DateUnit[n.unit])}case"time":{let n=t.type;return new qt.Time(Pa.TimeUnit[n.unit],n.bitWidth)}case"timestamp":{let n=t.type;return new qt.Timestamp(Pa.TimeUnit[n.unit],n.timezone)}case"interval":{let n=t.type;return new qt.Interval(Pa.IntervalUnit[n.unit])}case"union":{let n=t.type;return new qt.Union(Pa.UnionMode[n.mode],n.typeIds||[],e||[])}case"fixedsizebinary":{let n=t.type;return new qt.FixedSizeBinary(n.byteWidth)}case"fixedsizelist":{let n=t.type;return new qt.FixedSizeList(n.listSize,(e||[])[0])}case"map":{let n=t.type;return new qt.Map_((e||[])[0],n.keysSorted)}}throw new Error(`Unrecognized type: "${r}"`)}});var ms=B(Tn=>{"use strict";Object.defineProperty(Tn,"__esModule",{value:!0});Tn.FieldNode=Tn.BufferRegion=Tn.DictionaryBatch=Tn.RecordBatch=Tn.Message=void 0;var Oj=Qi(),se=Yo(),Tt=Od(),or=ir(),Lz=Xt(),Ot=bt(),Fj=fS(),Sm=dS(),ws=Oj.flatbuffers.Long,Vz=Oj.flatbuffers.Builder,Cz=Oj.flatbuffers.ByteBuffer,vt=nt(),cf=class{constructor(e,r,n,i){this._version=r,this._headerType=n,this.body=new Uint8Array(0),i&&(this._createHeader=()=>i),this._bodyLength=typeof e=="number"?e:e.low}static fromJSON(e,r){let n=new cf(0,Ot.MetadataVersion.V4,r);return n._createHeader=Wz(e,r),n}static decode(e){e=new Cz(Lz.toUint8Array(e));let r=Tt.Message.getRootAsMessage(e),n=r.bodyLength(),i=r.version(),o=r.headerType(),f=new cf(n,i,o);return f._createHeader=Kz(r,o),f}static encode(e){let r=new Vz,n=-1;return e.isSchema()?n=or.Schema.encode(r,e.header()):e.isRecordBatch()?n=vn.encode(r,e.header()):e.isDictionaryBatch()&&(n=_i.encode(r,e.header())),Tt.Message.startMessage(r),Tt.Message.addVersion(r,Ot.MetadataVersion.V4),Tt.Message.addHeader(r,n),Tt.Message.addHeaderType(r,e.headerType),Tt.Message.addBodyLength(r,new ws(e.bodyLength,0)),Tt.Message.finishMessageBuffer(r,Tt.Message.endMessage(r)),r.asUint8Array()}static from(e,r=0){if(e instanceof or.Schema)return new cf(0,Ot.MetadataVersion.V4,Ot.MessageHeader.Schema,e);if(e instanceof vn)return new cf(r,Ot.MetadataVersion.V4,Ot.MessageHeader.RecordBatch,e);if(e instanceof _i)return new cf(r,Ot.MetadataVersion.V4,Ot.MessageHeader.DictionaryBatch,e);throw new Error(`Unrecognized Message header: ${e}`)}get type(){return this.headerType}get version(){return this._version}get headerType(){return this._headerType}get bodyLength(){return this._bodyLength}header(){return this._createHeader()}isSchema(){return this.headerType===Ot.MessageHeader.Schema}isRecordBatch(){return this.headerType===Ot.MessageHeader.RecordBatch}isDictionaryBatch(){return this.headerType===Ot.MessageHeader.DictionaryBatch}};Tn.Message=cf;var vn=class{constructor(e,r,n){this._nodes=r,this._buffers=n,this._length=typeof e=="number"?e:e.low}get nodes(){return this._nodes}get length(){return this._length}get buffers(){return this._buffers}};Tn.RecordBatch=vn;var _i=class{constructor(e,r,n=!1){this._data=e,this._isDelta=n,this._id=typeof r=="number"?r:r.low}get id(){return this._id}get data(){return this._data}get isDelta(){return this._isDelta}get length(){return this.data.length}get nodes(){return this.data.nodes}get buffers(){return this.data.buffers}};Tn.DictionaryBatch=_i;var hs=class{constructor(e,r){this.offset=typeof e=="number"?e:e.low,this.length=typeof r=="number"?r:r.low}};Tn.BufferRegion=hs;var bs=class{constructor(e,r){this.length=typeof e=="number"?e:e.low,this.nullCount=typeof r=="number"?r:r.low}};Tn.FieldNode=bs;function Wz(t,e){return()=>{switch(e){case Ot.MessageHeader.Schema:return or.Schema.fromJSON(t);case Ot.MessageHeader.RecordBatch:return vn.fromJSON(t);case Ot.MessageHeader.DictionaryBatch:return _i.fromJSON(t)}throw new Error(`Unrecognized Message type: { name: ${Ot.MessageHeader[e]}, type: ${e} }`)}}function Kz(t,e){return()=>{switch(e){case Ot.MessageHeader.Schema:return or.Schema.decode(t.header(new se.Schema));case Ot.MessageHeader.RecordBatch:return vn.decode(t.header(new Tt.RecordBatch),t.version());case Ot.MessageHeader.DictionaryBatch:return _i.decode(t.header(new Tt.DictionaryBatch),t.version())}throw new Error(`Unrecognized Message type: { name: ${Ot.MessageHeader[e]}, type: ${e} }`)}}or.Field.encode=nU;or.Field.decode=tU;or.Field.fromJSON=Sm.fieldFromJSON;or.Schema.encode=rU;or.Schema.decode=Yz;or.Schema.fromJSON=Sm.schemaFromJSON;vn.encode=iU;vn.decode=Gz;vn.fromJSON=Sm.recordBatchFromJSON;_i.encode=oU;_i.decode=Zz;_i.fromJSON=Sm.dictionaryBatchFromJSON;bs.encode=fU;bs.decode=Qz;hs.encode=sU;hs.decode=Jz;function Yz(t,e=new Map){let r=eU(t,e);return new or.Schema(r,Em(t),e)}function Gz(t,e=Ot.MetadataVersion.V4){return new vn(t.length(),Xz(t),$z(t,e))}function Zz(t,e=Ot.MetadataVersion.V4){return new _i(vn.decode(t.data(),e),t.id(),t.isDelta())}function Jz(t){return new hs(t.offset(),t.length())}function Qz(t){return new bs(t.length(),t.nullCount())}function Xz(t){let e=[];for(let r,n=-1,i=-1,o=t.nodesLength();++n<o;)(r=t.nodes(n))&&(e[++i]=bs.decode(r));return e}function $z(t,e){let r=[];for(let n,i=-1,o=-1,f=t.buffersLength();++i<f;)(n=t.buffers(i))&&(e<Ot.MetadataVersion.V4&&(n.bb_pos+=8*(i+1)),r[++o]=hs.decode(n));return r}function eU(t,e){let r=[];for(let n,i=-1,o=-1,f=t.fieldsLength();++i<f;)(n=t.fields(i))&&(r[++o]=or.Field.decode(n,e));return r}function mS(t,e){let r=[];for(let n,i=-1,o=-1,f=t.childrenLength();++i<f;)(n=t.children(i))&&(r[++o]=or.Field.decode(n,e));return r}function tU(t,e){let r,n,i,o,f,s;return!e||!(s=t.dictionary())?(i=hS(t,mS(t,e)),n=new or.Field(t.name(),i,t.nullable(),Em(t))):e.has(r=s.id().low)?(o=(o=s.indexType())?wS(o):new vt.Int32,f=new vt.Dictionary(e.get(r),o,r,s.isOrdered()),n=new or.Field(t.name(),f,t.nullable(),Em(t))):(o=(o=s.indexType())?wS(o):new vt.Int32,e.set(r,i=hS(t,mS(t,e))),f=new vt.Dictionary(i,o,r,s.isOrdered()),n=new or.Field(t.name(),f,t.nullable(),Em(t))),n||null}function Em(t){let e=new Map;if(t)for(let r,n,i=-1,o=t.customMetadataLength()|0;++i<o;)(r=t.customMetadata(i))&&(n=r.key())!=null&&e.set(n,r.value());return e}function wS(t){return new vt.Int(t.isSigned(),t.bitWidth())}function hS(t,e){let r=t.typeType();switch(r){case se.Type.NONE:return new vt.Null;case se.Type.Null:return new vt.Null;case se.Type.Binary:return new vt.Binary;case se.Type.Utf8:return new vt.Utf8;case se.Type.Bool:return new vt.Bool;case se.Type.List:return new vt.List((e||[])[0]);case se.Type.Struct_:return new vt.Struct(e||[])}switch(r){case se.Type.Int:{let n=t.type(new se.Int);return new vt.Int(n.isSigned(),n.bitWidth())}case se.Type.FloatingPoint:{let n=t.type(new se.FloatingPoint);return new vt.Float(n.precision())}case se.Type.Decimal:{let n=t.type(new se.Decimal);return new vt.Decimal(n.scale(),n.precision())}case se.Type.Date:{let n=t.type(new se.Date);return new vt.Date_(n.unit())}case se.Type.Time:{let n=t.type(new se.Time);return new vt.Time(n.unit(),n.bitWidth())}case se.Type.Timestamp:{let n=t.type(new se.Timestamp);return new vt.Timestamp(n.unit(),n.timezone())}case se.Type.Interval:{let n=t.type(new se.Interval);return new vt.Interval(n.unit())}case se.Type.Union:{let n=t.type(new se.Union);return new vt.Union(n.mode(),n.typeIdsArray()||[],e||[])}case se.Type.FixedSizeBinary:{let n=t.type(new se.FixedSizeBinary);return new vt.FixedSizeBinary(n.byteWidth())}case se.Type.FixedSizeList:{let n=t.type(new se.FixedSizeList);return new vt.FixedSizeList(n.listSize(),(e||[])[0])}case se.Type.Map:{let n=t.type(new se.Map);return new vt.Map_((e||[])[0],n.keysSorted())}}throw new Error(`Unrecognized type: "${se.Type[r]}" (${r})`)}function rU(t,e){let r=e.fields.map(o=>or.Field.encode(t,o));se.Schema.startFieldsVector(t,r.length);let n=se.Schema.createFieldsVector(t,r),i=e.metadata&&e.metadata.size>0?se.Schema.createCustomMetadataVector(t,[...e.metadata].map(([o,f])=>{let s=t.createString(`${o}`),u=t.createString(`${f}`);return se.KeyValue.startKeyValue(t),se.KeyValue.addKey(t,s),se.KeyValue.addValue(t,u),se.KeyValue.endKeyValue(t)})):-1;return se.Schema.startSchema(t),se.Schema.addFields(t,n),se.Schema.addEndianness(t,aU?se.Endianness.Little:se.Endianness.Big),i!==-1&&se.Schema.addCustomMetadata(t,i),se.Schema.endSchema(t)}function nU(t,e){let r=-1,n=-1,i=-1,o=e.type,f=e.typeId;vt.DataType.isDictionary(o)?(f=o.dictionary.typeId,i=Fj.instance.visit(o,t),n=Fj.instance.visit(o.dictionary,t)):n=Fj.instance.visit(o,t);let s=(o.children||[]).map(c=>or.Field.encode(t,c)),u=se.Field.createChildrenVector(t,s),l=e.metadata&&e.metadata.size>0?se.Field.createCustomMetadataVector(t,[...e.metadata].map(([c,w])=>{let p=t.createString(`${c}`),g=t.createString(`${w}`);return se.KeyValue.startKeyValue(t),se.KeyValue.addKey(t,p),se.KeyValue.addValue(t,g),se.KeyValue.endKeyValue(t)})):-1;return e.name&&(r=t.createString(e.name)),se.Field.startField(t),se.Field.addType(t,n),se.Field.addTypeType(t,f),se.Field.addChildren(t,u),se.Field.addNullable(t,!!e.nullable),r!==-1&&se.Field.addName(t,r),i!==-1&&se.Field.addDictionary(t,i),l!==-1&&se.Field.addCustomMetadata(t,l),se.Field.endField(t)}function iU(t,e){let r=e.nodes||[],n=e.buffers||[];Tt.RecordBatch.startNodesVector(t,r.length),r.slice().reverse().forEach(f=>bs.encode(t,f));let i=t.endVector();Tt.RecordBatch.startBuffersVector(t,n.length),n.slice().reverse().forEach(f=>hs.encode(t,f));let o=t.endVector();return Tt.RecordBatch.startRecordBatch(t),Tt.RecordBatch.addLength(t,new ws(e.length,0)),Tt.RecordBatch.addNodes(t,i),Tt.RecordBatch.addBuffers(t,o),Tt.RecordBatch.endRecordBatch(t)}function oU(t,e){let r=vn.encode(t,e.data);return Tt.DictionaryBatch.startDictionaryBatch(t),Tt.DictionaryBatch.addId(t,new ws(e.id,0)),Tt.DictionaryBatch.addIsDelta(t,e.isDelta),Tt.DictionaryBatch.addData(t,r),Tt.DictionaryBatch.endDictionaryBatch(t)}function fU(t,e){return Tt.FieldNode.createFieldNode(t,new ws(e.length,0),new ws(e.nullCount,0))}function sU(t,e){return se.Buffer.createBuffer(t,new ws(e.offset,0),new ws(e.length,0))}var aU=function(){let t=new ArrayBuffer(2);return new DataView(t).setInt16(0,256,!0),new Int16Array(t)[0]===256}()});var Om=B(Ge=>{"use strict";Object.defineProperty(Ge,"__esModule",{value:!0});Ge.magicX2AndPadding=Ge.magicAndPadding=Ge.magicLength=Ge.checkForMagicArrowString=Ge.MAGIC=Ge.MAGIC_STR=Ge.PADDING=Ge.JSONMessageReader=Ge.AsyncMessageReader=Ge.MessageReader=void 0;var pf=bt(),lU=Qi(),bS=lU.flatbuffers.ByteBuffer,Gu=ms(),uU=gr(),cU=qj(),gS=Xt(),Am=ff(),Cn=fa(),Dj=t=>`Expected ${pf.MessageHeader[t]} Message in stream, but was null or length 0.`,Pj=t=>`Header pointer of flatbuffer-encoded ${pf.MessageHeader[t]} Message is null or length 0.`,yS=(t,e)=>`Expected to read ${t} metadata bytes, but only read ${e}.`,jS=(t,e)=>`Expected to read ${t} bytes for message body, but only read ${e}.`,Nj=class{constructor(e){this.source=e instanceof Am.ByteStream?e:new Am.ByteStream(e)}[Symbol.iterator](){return this}next(){let e;return(e=this.readMetadataLength()).done||e.value===-1&&(e=this.readMetadataLength()).done||(e=this.readMetadata(e.value)).done?Cn.ITERATOR_DONE:e}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Dj(e));return r.value}readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=gS.toUint8Array(this.source.read(e));if(r.byteLength<e)throw new Error(jS(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}readSchema(e=!1){let r=pf.MessageHeader.Schema,n=this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(Pj(r));return i}readMetadataLength(){let e=this.source.read(Ge.PADDING),r=e&&new bS(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}readMetadata(e){let r=this.source.read(e);if(!r)return Cn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(yS(e,r.byteLength));return{done:!1,value:Gu.Message.decode(r)}}};Ge.MessageReader=Nj;var _S=class{constructor(e,r){this.source=e instanceof Am.AsyncByteStream?e:uU.isFileHandle(e)?new cU.AsyncRandomAccessFile(e,r):new Am.AsyncByteStream(e)}[Symbol.asyncIterator](){return this}async next(){let e;return(e=await this.readMetadataLength()).done||e.value===-1&&(e=await this.readMetadataLength()).done||(e=await this.readMetadata(e.value)).done?Cn.ITERATOR_DONE:e}async throw(e){return await this.source.throw(e)}async return(e){return await this.source.return(e)}async readMessage(e){let r;if((r=await this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Dj(e));return r.value}async readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=gS.toUint8Array(await this.source.read(e));if(r.byteLength<e)throw new Error(jS(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}async readSchema(e=!1){let r=pf.MessageHeader.Schema,n=await this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(Pj(r));return i}async readMetadataLength(){let e=await this.source.read(Ge.PADDING),r=e&&new bS(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}async readMetadata(e){let r=await this.source.read(e);if(!r)return Cn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(yS(e,r.byteLength));return{done:!1,value:Gu.Message.decode(r)}}};Ge.AsyncMessageReader=_S;var qS=class extends Nj{constructor(e){super(new Uint8Array(0));this._schema=!1,this._body=[],this._batchIndex=0,this._dictionaryIndex=0,this._json=e instanceof Cn.ArrowJSON?e:new Cn.ArrowJSON(e)}next(){let{_json:e}=this;if(!this._schema){this._schema=!0;let r=Gu.Message.fromJSON(e.schema,pf.MessageHeader.Schema);return{done:!1,value:r}}if(this._dictionaryIndex<e.dictionaries.length){let r=e.dictionaries[this._dictionaryIndex++];this._body=r.data.columns;let n=Gu.Message.fromJSON(r,pf.MessageHeader.DictionaryBatch);return{done:!1,value:n}}if(this._batchIndex<e.batches.length){let r=e.batches[this._batchIndex++];this._body=r.columns;let n=Gu.Message.fromJSON(r,pf.MessageHeader.RecordBatch);return{done:!1,value:n}}return this._body=[],Cn.ITERATOR_DONE}readMessageBody(e){return r(this._body);function r(n){return(n||[]).reduce((i,o)=>[...i,...o.VALIDITY&&[o.VALIDITY]||[],...o.TYPE&&[o.TYPE]||[],...o.OFFSET&&[o.OFFSET]||[],...o.DATA&&[o.DATA]||[],...r(o.children)],[])}}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Dj(e));return r.value}readSchema(){let e=pf.MessageHeader.Schema,r=this.readMessage(e),n=r&&r.header();if(!r||!n)throw new Error(Pj(e));return n}};Ge.JSONMessageReader=qS;Ge.PADDING=4;Ge.MAGIC_STR="ARROW1";Ge.MAGIC=new Uint8Array(Ge.MAGIC_STR.length);for(let t=0;t<Ge.MAGIC_STR.length;t+=1|0)Ge.MAGIC[t]=Ge.MAGIC_STR.charCodeAt(t);function pU(t,e=0){for(let r=-1,n=Ge.MAGIC.length;++r<n;)if(Ge.MAGIC[r]!==t[e+r])return!1;return!0}Ge.checkForMagicArrowString=pU;Ge.magicLength=Ge.MAGIC.length;Ge.magicAndPadding=Ge.magicLength+Ge.PADDING;Ge.magicX2AndPadding=Ge.magicLength*2+Ge.PADDING});var Uj=B(Ft=>{"use strict";Object.defineProperty(Ft,"__esModule",{value:!0});Ft.compareTypes=Ft.compareFields=Ft.compareSchemas=Ft.instance=Ft.TypeComparator=void 0;var dU=cr(),je=class extends dU.Visitor{compareSchemas(e,r){return e===r||r instanceof e.constructor&&this.compareManyFields(e.fields,r.fields)}compareManyFields(e,r){return e===r||Array.isArray(e)&&Array.isArray(r)&&e.length===r.length&&e.every((n,i)=>this.compareFields(n,r[i]))}compareFields(e,r){return e===r||r instanceof e.constructor&&e.name===r.name&&e.nullable===r.nullable&&this.visit(e.type,r.type)}};Ft.TypeComparator=je;function Cr(t,e){return e instanceof t.constructor}function Zu(t,e){return t===e||Cr(t,e)}function so(t,e){return t===e||Cr(t,e)&&t.bitWidth===e.bitWidth&&t.isSigned===e.isSigned}function Fm(t,e){return t===e||Cr(t,e)&&t.precision===e.precision}function mU(t,e){return t===e||Cr(t,e)&&t.byteWidth===e.byteWidth}function Rj(t,e){return t===e||Cr(t,e)&&t.unit===e.unit}function Ju(t,e){return t===e||Cr(t,e)&&t.unit===e.unit&&t.timezone===e.timezone}function Qu(t,e){return t===e||Cr(t,e)&&t.unit===e.unit&&t.bitWidth===e.bitWidth}function wU(t,e){return t===e||Cr(t,e)&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}function hU(t,e){return t===e||Cr(t,e)&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}function Hj(t,e){return t===e||Cr(t,e)&&t.mode===e.mode&&t.typeIds.every((r,n)=>r===e.typeIds[n])&&Ft.instance.compareManyFields(t.children,e.children)}function bU(t,e){return t===e||Cr(t,e)&&t.id===e.id&&t.isOrdered===e.isOrdered&&Ft.instance.visit(t.indices,e.indices)&&Ft.instance.visit(t.dictionary,e.dictionary)}function zj(t,e){return t===e||Cr(t,e)&&t.unit===e.unit}function gU(t,e){return t===e||Cr(t,e)&&t.listSize===e.listSize&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}function yU(t,e){return t===e||Cr(t,e)&&t.keysSorted===e.keysSorted&&t.children.length===e.children.length&&Ft.instance.compareManyFields(t.children,e.children)}je.prototype.visitNull=Zu;je.prototype.visitBool=Zu;je.prototype.visitInt=so;je.prototype.visitInt8=so;je.prototype.visitInt16=so;je.prototype.visitInt32=so;je.prototype.visitInt64=so;je.prototype.visitUint8=so;je.prototype.visitUint16=so;je.prototype.visitUint32=so;je.prototype.visitUint64=so;je.prototype.visitFloat=Fm;je.prototype.visitFloat16=Fm;je.prototype.visitFloat32=Fm;je.prototype.visitFloat64=Fm;je.prototype.visitUtf8=Zu;je.prototype.visitBinary=Zu;je.prototype.visitFixedSizeBinary=mU;je.prototype.visitDate=Rj;je.prototype.visitDateDay=Rj;je.prototype.visitDateMillisecond=Rj;je.prototype.visitTimestamp=Ju;je.prototype.visitTimestampSecond=Ju;je.prototype.visitTimestampMillisecond=Ju;je.prototype.visitTimestampMicrosecond=Ju;je.prototype.visitTimestampNanosecond=Ju;je.prototype.visitTime=Qu;je.prototype.visitTimeSecond=Qu;je.prototype.visitTimeMillisecond=Qu;je.prototype.visitTimeMicrosecond=Qu;je.prototype.visitTimeNanosecond=Qu;je.prototype.visitDecimal=Zu;je.prototype.visitList=wU;je.prototype.visitStruct=hU;je.prototype.visitUnion=Hj;je.prototype.visitDenseUnion=Hj;je.prototype.visitSparseUnion=Hj;je.prototype.visitDictionary=bU;je.prototype.visitInterval=zj;je.prototype.visitIntervalDayTime=zj;je.prototype.visitIntervalYearMonth=zj;je.prototype.visitFixedSizeList=gU;je.prototype.visitMap=yU;Ft.instance=new je;function jU(t,e){return Ft.instance.compareSchemas(t,e)}Ft.compareSchemas=jU;function _U(t,e){return Ft.instance.compareFields(t,e)}Ft.compareFields=_U;function qU(t,e){return Ft.instance.visit(t,e)}Ft.compareTypes=qU});var IS=B(Dm=>{"use strict";Object.defineProperty(Dm,"__esModule",{value:!0});Dm.VectorAssembler=void 0;var vU=cr(),vS=bt(),TU=ao(),Mj=Xt(),Lj=di(),BU=Aa(),TS=ms(),BS=nt(),Yt=class extends vU.Visitor{constructor(){super();this._byteLength=0,this._nodes=[],this._buffers=[],this._bufferRegions=[]}static assemble(...e){let r=new Yt,n=BU.selectVectorChildrenArgs(TU.RecordBatch,e),[i=r]=r.visitMany(n);return i}visit(e){if(!BS.DataType.isDictionary(e.type)){let{data:r,length:n,nullCount:i}=e;if(n>2147483647)throw new RangeError("Cannot write arrays larger than 2^31 - 1 in length");BS.DataType.isNull(e.type)||Wn.call(this,i<=0?new Uint8Array(0):Lj.truncateBitmap(r.offset,n,r.nullBitmap)),this.nodes.push(new TS.FieldNode(n,i))}return super.visit(e)}visitNull(e){return this}visitDictionary(e){return this.visit(e.indices)}get nodes(){return this._nodes}get buffers(){return this._buffers}get byteLength(){return this._byteLength}get bufferRegions(){return this._bufferRegions}};Dm.VectorAssembler=Yt;function Wn(t){let e=t.byteLength+7&~7;return this.buffers.push(t),this.bufferRegions.push(new TS.BufferRegion(this._byteLength,e)),this._byteLength+=e,this}function kU(t){let{type:e,length:r,typeIds:n,valueOffsets:i}=t;if(Wn.call(this,n),e.mode===vS.UnionMode.Sparse)return Cj.call(this,t);if(e.mode===vS.UnionMode.Dense){if(t.offset<=0)return Wn.call(this,i),Cj.call(this,t);{let o=n.reduce((c,w)=>Math.max(c,w),n[0]),f=new Int32Array(o+1),s=new Int32Array(o+1).fill(-1),u=new Int32Array(r),l=Mj.rebaseValueOffsets(-i[0],r,i);for(let c,w,p=-1;++p<r;)(w=s[c=n[p]])===-1&&(w=s[c]=l[c]),u[p]=l[p]-w,++f[c];Wn.call(this,u);for(let c,w=-1,p=e.children.length;++w<p;)if(c=t.getChildAt(w)){let g=e.typeIds[w],T=Math.min(r,f[g]);this.visit(c.slice(s[g],T))}}}return this}function IU(t){let e;return t.nullCount>=t.length?Wn.call(this,new Uint8Array(0)):(e=t.values)instanceof Uint8Array?Wn.call(this,Lj.truncateBitmap(t.offset,t.length,e)):Wn.call(this,Lj.packBools(t))}function df(t){return Wn.call(this,t.values.subarray(0,t.length*t.stride))}function kS(t){let{length:e,values:r,valueOffsets:n}=t,i=n[0],o=n[e],f=Math.min(o-i,r.byteLength-i);return Wn.call(this,Mj.rebaseValueOffsets(-n[0],e,n)),Wn.call(this,r.subarray(i,i+f)),this}function Vj(t){let{length:e,valueOffsets:r}=t;return r&&Wn.call(this,Mj.rebaseValueOffsets(r[0],e,r)),this.visit(t.getChildAt(0))}function Cj(t){return this.visitMany(t.type.children.map((e,r)=>t.getChildAt(r)).filter(Boolean))[0]}Yt.prototype.visitBool=IU;Yt.prototype.visitInt=df;Yt.prototype.visitFloat=df;Yt.prototype.visitUtf8=kS;Yt.prototype.visitBinary=kS;Yt.prototype.visitFixedSizeBinary=df;Yt.prototype.visitDate=df;Yt.prototype.visitTimestamp=df;Yt.prototype.visitTime=df;Yt.prototype.visitDecimal=df;Yt.prototype.visitList=Vj;Yt.prototype.visitStruct=Cj;Yt.prototype.visitUnion=kU;Yt.prototype.visitInterval=df;Yt.prototype.visitFixedSizeList=Vj;Yt.prototype.visitMap=Vj});var SS=B(Pm=>{"use strict";Object.defineProperty(Pm,"__esModule",{value:!0});Pm.JSONTypeAssembler=void 0;var xU=cr(),dr=Yo(),Na=bt(),xS=class extends xU.Visitor{visit(e){return e==null?void 0:super.visit(e)}visitNull({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitInt({typeId:e,bitWidth:r,isSigned:n}){return{name:dr.Type[e].toLowerCase(),bitWidth:r,isSigned:n}}visitFloat({typeId:e,precision:r}){return{name:dr.Type[e].toLowerCase(),precision:Na.Precision[r]}}visitBinary({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitBool({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitUtf8({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitDecimal({typeId:e,scale:r,precision:n}){return{name:dr.Type[e].toLowerCase(),scale:r,precision:n}}visitDate({typeId:e,unit:r}){return{name:dr.Type[e].toLowerCase(),unit:Na.DateUnit[r]}}visitTime({typeId:e,unit:r,bitWidth:n}){return{name:dr.Type[e].toLowerCase(),unit:Na.TimeUnit[r],bitWidth:n}}visitTimestamp({typeId:e,timezone:r,unit:n}){return{name:dr.Type[e].toLowerCase(),unit:Na.TimeUnit[n],timezone:r}}visitInterval({typeId:e,unit:r}){return{name:dr.Type[e].toLowerCase(),unit:Na.IntervalUnit[r]}}visitList({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitStruct({typeId:e}){return{name:dr.Type[e].toLowerCase()}}visitUnion({typeId:e,mode:r,typeIds:n}){return{name:dr.Type[e].toLowerCase(),mode:Na.UnionMode[r],typeIds:[...n]}}visitDictionary(e){return this.visit(e.dictionary)}visitFixedSizeBinary({typeId:e,byteWidth:r}){return{name:dr.Type[e].toLowerCase(),byteWidth:r}}visitFixedSizeList({typeId:e,listSize:r}){return{name:dr.Type[e].toLowerCase(),listSize:r}}visitMap({typeId:e,keysSorted:r}){return{name:dr.Type[e].toLowerCase(),keysSorted:r}}};Pm.JSONTypeAssembler=xS});var OS=B(Hm=>{"use strict";Object.defineProperty(Hm,"__esModule",{value:!0});Hm.JSONVectorAssembler=void 0;var SU=Hu(),Xu=Oa(),EU=zt(),AU=cr(),OU=bt(),FU=ao(),Wj=bt(),Nm=di(),DU=Aa(),ES=nt(),Rm=class extends AU.Visitor{static assemble(...e){return new Rm().visitMany(DU.selectColumnChildrenArgs(FU.RecordBatch,e))}visit(e){let{data:r,name:n,length:i}=e,{offset:o,nullCount:f,nullBitmap:s}=r,u=ES.DataType.isDictionary(e.type)?e.type.indices:e.type,l=Object.assign([],r.buffers,{[OU.BufferType.VALIDITY]:void 0});return{name:n,count:i,VALIDITY:ES.DataType.isNull(u)?void 0:f<=0?Array.from({length:i},()=>1):[...new Nm.BitIterator(s,o,i,null,Nm.getBit)],...super.visit(EU.Vector.new(r.clone(u,o,i,0,l)))}}visitNull(){return{}}visitBool({values:e,offset:r,length:n}){return{DATA:[...new Nm.BitIterator(e,r,n,null,Nm.getBool)]}}visitInt(e){return{DATA:e.type.bitWidth<64?[...e.values]:[...$u(e.values,2)]}}visitFloat(e){return{DATA:[...e.values]}}visitUtf8(e){return{DATA:[...e],OFFSET:[...e.valueOffsets]}}visitBinary(e){return{DATA:[...AS(e)],OFFSET:[...e.valueOffsets]}}visitFixedSizeBinary(e){return{DATA:[...AS(e)]}}visitDate(e){return{DATA:e.type.unit===Wj.DateUnit.DAY?[...e.values]:[...$u(e.values,2)]}}visitTimestamp(e){return{DATA:[...$u(e.values,2)]}}visitTime(e){return{DATA:e.type.unit<Wj.TimeUnit.MICROSECOND?[...e.values]:[...$u(e.values,2)]}}visitDecimal(e){return{DATA:[...$u(e.values,4)]}}visitList(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new Xu.Column(r,[e.getChildAt(n)])))}}visitStruct(e){return{children:e.type.children.map((r,n)=>this.visit(new Xu.Column(r,[e.getChildAt(n)])))}}visitUnion(e){return{TYPE:[...e.typeIds],OFFSET:e.type.mode===Wj.UnionMode.Dense?[...e.valueOffsets]:void 0,children:e.type.children.map((r,n)=>this.visit(new Xu.Column(r,[e.getChildAt(n)])))}}visitInterval(e){return{DATA:[...e.values]}}visitFixedSizeList(e){return{children:e.type.children.map((r,n)=>this.visit(new Xu.Column(r,[e.getChildAt(n)])))}}visitMap(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new Xu.Column(r,[e.getChildAt(n)])))}}};Hm.JSONVectorAssembler=Rm;function*AS(t){for(let e of t)yield e.reduce((r,n)=>`${r}${("0"+(n&255).toString(16)).slice(-2)}`,"").toUpperCase()}function*$u(t,e){for(let r=-1,n=t.length/e;++r<n;)yield`${SU.BN.new(t.subarray((r+0)*e,(r+1)*e),!1)}`}});var Vm=B(vi=>{"use strict";Object.defineProperty(vi,"__esModule",{value:!0});vi.RecordBatchJSONWriter=vi.RecordBatchFileWriter=vi.RecordBatchStreamWriter=vi.RecordBatchWriter=void 0;var Kj=tc(),PU=Om(),NU=Oa(),RU=nt(),HU=ir(),zm=ms(),Yj=ms(),Ra=yj(),Gj=bt(),FS=Uj(),Zj=ff(),DS=IS(),zU=SS(),PS=OS(),UU=Xt(),Jj=ao(),MU=fa(),qi=gr(),ec=class extends MU.ReadableInterop{constructor(e){super();this._position=0,this._started=!1,this._sink=new Zj.AsyncByteQueue,this._schema=null,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,qi.isObject(e)||(e={autoDestroy:!0,writeLegacyIpcFormat:!1}),this._autoDestroy=typeof e.autoDestroy=="boolean"?e.autoDestroy:!0,this._writeLegacyIpcFormat=typeof e.writeLegacyIpcFormat=="boolean"?e.writeLegacyIpcFormat:!1}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}toString(e=!1){return this._sink.toString(e)}toUint8Array(e=!1){return this._sink.toUint8Array(e)}writeAll(e){return qi.isPromise(e)?e.then(r=>this.writeAll(r)):qi.isAsyncIterable(e)?Xj(this,e):Qj(this,e)}get closed(){return this._sink.closed}[Symbol.asyncIterator](){return this._sink[Symbol.asyncIterator]()}toDOMStream(e){return this._sink.toDOMStream(e)}toNodeStream(e){return this._sink.toNodeStream(e)}close(){return this.reset()._sink.close()}abort(e){return this.reset()._sink.abort(e)}finish(){return this._autoDestroy?this.close():this.reset(this._sink,this._schema),this}reset(e=this._sink,r=null){return e===this._sink||e instanceof Zj.AsyncByteQueue?this._sink=e:(this._sink=new Zj.AsyncByteQueue,e&&qi.isWritableDOMStream(e)?this.toDOMStream({type:"bytes"}).pipeTo(e):e&&qi.isWritableNodeStream(e)&&this.toNodeStream({objectMode:!1}).pipe(e)),this._started&&this._schema&&this._writeFooter(this._schema),this._started=!1,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,(!r||!FS.compareSchemas(r,this._schema))&&(r===null?(this._position=0,this._schema=null):(this._started=!0,this._schema=r,this._writeSchema(r))),this}write(e){let r=null;if(this._sink){if(e==null)return this.finish()&&void 0;if(e instanceof Kj.Table&&!(r=e.schema))return this.finish()&&void 0;if(e instanceof Jj.RecordBatch&&!(r=e.schema))return this.finish()&&void 0}else throw new Error("RecordBatchWriter is closed");if(r&&!FS.compareSchemas(r,this._schema)){if(this._started&&this._autoDestroy)return this.close();this.reset(this._sink,r)}e instanceof Jj.RecordBatch?e instanceof Jj._InternalEmptyPlaceholderRecordBatch||this._writeRecordBatch(e):e instanceof Kj.Table?this.writeAll(e.chunks):qi.isIterable(e)&&this.writeAll(e)}_writeMessage(e,r=8){let n=r-1,i=zm.Message.encode(e),o=i.byteLength,f=this._writeLegacyIpcFormat?4:8,s=o+f+n&~n,u=s-o-f;return e.headerType===Gj.MessageHeader.RecordBatch?this._recordBatchBlocks.push(new Ra.FileBlock(s,e.bodyLength,this._position)):e.headerType===Gj.MessageHeader.DictionaryBatch&&this._dictionaryBlocks.push(new Ra.FileBlock(s,e.bodyLength,this._position)),this._writeLegacyIpcFormat||this._write(Int32Array.of(-1)),this._write(Int32Array.of(s-f)),o>0&&this._write(i),this._writePadding(u)}_write(e){if(this._started){let r=UU.toUint8Array(e);r&&r.byteLength>0&&(this._sink.write(r),this._position+=r.byteLength)}return this}_writeSchema(e){return this._writeMessage(zm.Message.from(e))}_writeFooter(e){return this._writeLegacyIpcFormat?this._write(Int32Array.of(0)):this._write(Int32Array.of(-1,0))}_writeMagic(){return this._write(PU.MAGIC)}_writePadding(e){return e>0?this._write(new Uint8Array(e)):this}_writeRecordBatch(e){let{byteLength:r,nodes:n,bufferRegions:i,buffers:o}=DS.VectorAssembler.assemble(e),f=new Yj.RecordBatch(e.length,n,i),s=zm.Message.from(f,r);return this._writeDictionaries(e)._writeMessage(s)._writeBodyBuffers(o)}_writeDictionaryBatch(e,r,n=!1){this._dictionaryDeltaOffsets.set(r,e.length+(this._dictionaryDeltaOffsets.get(r)||0));let{byteLength:i,nodes:o,bufferRegions:f,buffers:s}=DS.VectorAssembler.assemble(e),u=new Yj.RecordBatch(e.length,o,f),l=new Yj.DictionaryBatch(u,r,n),c=zm.Message.from(l,i);return this._writeMessage(c)._writeBodyBuffers(s)}_writeBodyBuffers(e){let r,n,i;for(let o=-1,f=e.length;++o<f;)(r=e[o])&&(n=r.byteLength)>0&&(this._write(r),(i=(n+7&~7)-n)>0&&this._writePadding(i));return this}_writeDictionaries(e){for(let[r,n]of e.dictionaries){let i=this._dictionaryDeltaOffsets.get(r)||0;if(i===0||(n=n.slice(i)).length>0){let o="chunks"in n?n.chunks:[n];for(let f of o)this._writeDictionaryBatch(f,r,i>0),i+=f.length}}return this}};vi.RecordBatchWriter=ec;var Um=class extends ec{static writeAll(e,r){let n=new Um(r);return qi.isPromise(e)?e.then(i=>n.writeAll(i)):qi.isAsyncIterable(e)?Xj(n,e):Qj(n,e)}};vi.RecordBatchStreamWriter=Um;var Mm=class extends ec{static writeAll(e){let r=new Mm;return qi.isPromise(e)?e.then(n=>r.writeAll(n)):qi.isAsyncIterable(e)?Xj(r,e):Qj(r,e)}constructor(){super();this._autoDestroy=!0}_writeSchema(e){return this._writeMagic()._writePadding(2)}_writeFooter(e){let r=Ra.Footer.encode(new Ra.Footer(e,Gj.MetadataVersion.V4,this._recordBatchBlocks,this._dictionaryBlocks));return super._writeFooter(e)._write(r)._write(Int32Array.of(r.byteLength))._writeMagic()}};vi.RecordBatchFileWriter=Mm;var Lm=class extends ec{constructor(){super();this._autoDestroy=!0,this._recordBatches=[],this._dictionaries=[]}static writeAll(e){return new Lm().writeAll(e)}_writeMessage(){return this}_writeFooter(e){return this}_writeSchema(e){return this._write(`{
27
+ "schema": ${JSON.stringify({fields:e.fields.map(NS)},null,2)}`)}_writeDictionaries(e){return e.dictionaries.size>0&&this._dictionaries.push(e),this}_writeDictionaryBatch(e,r,n=!1){return this._dictionaryDeltaOffsets.set(r,e.length+(this._dictionaryDeltaOffsets.get(r)||0)),this._write(this._dictionaryBlocks.length===0?" ":`,
28
+ `),this._write(`${LU(e,r,n)}`),this._dictionaryBlocks.push(new Ra.FileBlock(0,0,0)),this}_writeRecordBatch(e){return this._writeDictionaries(e),this._recordBatches.push(e),this}close(){if(this._dictionaries.length>0){this._write(`,
29
29
  "dictionaries": [
30
30
  `);for(let e of this._dictionaries)super._writeDictionaries(e);this._write(`
31
31
  ]`)}if(this._recordBatches.length>0){for(let e=-1,r=this._recordBatches.length;++e<r;)this._write(e===0?`,
32
32
  "batches": [
33
33
  `:`,
34
- `),this._write(`${OM(this._recordBatches[e])}`),this._recordBatchBlocks.push(new Ta.FileBlock(0,0,0));this._write(`
34
+ `),this._write(`${VU(this._recordBatches[e])}`),this._recordBatchBlocks.push(new Ra.FileBlock(0,0,0));this._write(`
35
35
  ]`)}return this._schema&&this._write(`
36
- }`),this._dictionaries=[],this._recordBatches=[],super.close()}};ji.RecordBatchJSONWriter=Pm;function Jj(t,e){let r=e;e instanceof Wj.Table&&(r=e.chunks,t.reset(void 0,e.schema));for(let n of r)t.write(n);return t.finish()}async function Qj(t,e){for await(let r of e)t.write(r);return t.finish()}function OS({name:t,type:e,nullable:r}){let n=new xM.JSONTypeAssembler;return{name:t,nullable:r,type:n.visit(e),children:(e.children||[]).map(OS),dictionary:BM.DataType.isDictionary(e)?{id:e.id,isOrdered:e.isOrdered,indexType:n.visit(e.indices)}:void 0}}function AM(t,e,r=!1){let n=new IM.Field(`${e}`,t.type,t.nullCount>0),i=AS.JSONVectorAssembler.assemble(new kM.Column(n,[t]));return JSON.stringify({id:e,isDelta:r,data:{count:t.length,columns:i}},null,2)}function OM(t){return JSON.stringify({count:t.length,columns:AS.JSONVectorAssembler.assemble(t)},null,2)}});var e0=k(af=>{"use strict";Object.defineProperty(af,"__esModule",{value:!0});af.distributeVectorsIntoRecordBatches=af.distributeColumnsIntoRecordBatches=af.ensureSameLengthData=void 0;var FS=Un(),Xj=ir(),FM=nf(),DM=oo(),$j=new Uint8Array(0),DS=t=>[$j,$j,new Uint8Array(t),$j];function NM(t,e,r=e.reduce((n,i)=>Math.max(n,i.length),0)){let n,i,o=-1,f=e.length,s=[...t.fields],u=[],l=(r+63&~63)>>3;for(;++o<f;)(n=e[o])&&n.length===r?u[o]=n:((i=s[o]).nullable||(s[o]=s[o].clone({nullable:!0})),u[o]=n?n._changeLengthAndBackfillNullBitmap(r):FS.Data.new(i.type,0,r,r,DS(l)));return[new Xj.Schema(s),r,u]}af.ensureSameLengthData=NM;function PM(t){return NS(new Xj.Schema(t.map(({field:e})=>e)),t)}af.distributeColumnsIntoRecordBatches=PM;function NS(t,e){return RM(t,e.map(r=>r instanceof FM.Chunked?r.chunks.map(n=>n.data):[r.data]))}af.distributeVectorsIntoRecordBatches=NS;function RM(t,e){let r=[...t.fields],n=[],i={numBatches:e.reduce((w,p)=>Math.max(w,p.length),0)},o=0,f=0,s=-1,u=e.length,l,c=[];for(;i.numBatches-- >0;){for(f=Number.POSITIVE_INFINITY,s=-1;++s<u;)c[s]=l=e[s].shift(),f=Math.min(f,l?l.length:f);isFinite(f)&&(c=HM(r,f,c,e,i),f>0&&(n[o++]=[f,c.slice()]))}return[t=new Xj.Schema(r,t.metadata),n.map(w=>new DM.RecordBatch(t,...w))]}function HM(t,e,r,n,i){let o,f,s=0,u=-1,l=n.length,c=(e+63&~63)>>3;for(;++u<l;)(o=r[u])&&(s=o.length)>=e?s===e?r[u]=o:(r[u]=o.slice(0,e),o=o.slice(e,s-e),i.numBatches=Math.max(i.numBatches,n[u].unshift(o))):((f=t[u]).nullable||(t[u]=f.clone({nullable:!0})),r[u]=o?o._changeLengthAndBackfillNullBitmap(e):FS.Data.new(f.type,0,e,e,DS(c)));return r}});var zt=k(Hm=>{"use strict";Object.defineProperty(Hm,"__esModule",{value:!0});Hm.BaseVector=void 0;var UM=bt(),MM=nf(),zM=Nu(),t0=Ut(),r0=class extends t0.AbstractVector{constructor(e,r){super();this._children=r,this.numChildren=e.childData.length,this._bindDataAccessors(this.data=e)}get type(){return this.data.type}get typeId(){return this.data.typeId}get length(){return this.data.length}get offset(){return this.data.offset}get stride(){return this.data.stride}get nullCount(){return this.data.nullCount}get byteLength(){return this.data.byteLength}get VectorName(){return`${UM.Type[this.typeId]}Vector`}get ArrayType(){return this.type.ArrayType}get values(){return this.data.values}get typeIds(){return this.data.typeIds}get nullBitmap(){return this.data.nullBitmap}get valueOffsets(){return this.data.valueOffsets}get[Symbol.toStringTag](){return`${this.VectorName}<${this.type[Symbol.toStringTag]}>`}clone(e,r=this._children){return t0.Vector.new(e,r)}concat(...e){return MM.Chunked.concat(this,...e)}slice(e,r){return zM.clampRange(this,e,r,this._sliceInternal)}isValid(e){if(this.nullCount>0){let r=this.offset+e;return(this.nullBitmap[r>>3]&1<<r%8)!==0}return!0}getChildAt(e){return e<0||e>=this.numChildren?null:(this._children||(this._children=[]))[e]||(this._children[e]=t0.Vector.new(this.data.childData[e]))}toJSON(){return[...this]}_sliceInternal(e,r,n){return e.clone(e.data.slice(r,n-r),null)}_bindDataAccessors(e){}};Hm.BaseVector=r0;r0.prototype[Symbol.isConcatSpreadable]=!0});var n0=k(Um=>{"use strict";Object.defineProperty(Um,"__esModule",{value:!0});Um.BinaryVector=void 0;var LM=Ut(),VM=zt(),CM=nt(),PS=class extends VM.BaseVector{asUtf8(){return LM.Vector.new(this.data.clone(new CM.Utf8))}};Um.BinaryVector=PS});var i0=k(Mm=>{"use strict";Object.defineProperty(Mm,"__esModule",{value:!0});Mm.BoolVector=void 0;var WM=nt(),KM=zt(),YM=_i(),RS=class extends KM.BaseVector{static from(e){return YM.vectorFromValuesWithType(()=>new WM.Bool,e)}};Mm.BoolVector=RS});var f0=k(lf=>{"use strict";Object.defineProperty(lf,"__esModule",{value:!0});lf.DateMillisecondVector=lf.DateDayVector=lf.DateVector=void 0;var GM=bt(),ZM=zt(),HS=_i(),o0=nt(),zm=class extends ZM.BaseVector{static from(...e){return e.length===2?HS.vectorFromValuesWithType(()=>e[1]===GM.DateUnit.DAY?new o0.DateDay:new o0.DateMillisecond,e[0]):HS.vectorFromValuesWithType(()=>new o0.DateMillisecond,e[0])}};lf.DateVector=zm;var US=class extends zm{};lf.DateDayVector=US;var MS=class extends zm{};lf.DateMillisecondVector=MS});var s0=k(Lm=>{"use strict";Object.defineProperty(Lm,"__esModule",{value:!0});Lm.DecimalVector=void 0;var JM=zt(),zS=class extends JM.BaseVector{};Lm.DecimalVector=zS});var Cm=k(Vm=>{"use strict";Object.defineProperty(Vm,"__esModule",{value:!0});Vm.DictionaryVector=void 0;var QM=Un(),LS=Ut(),XM=zt(),$M=_i(),ez=nt(),a0=class extends XM.BaseVector{constructor(e){super(e);this.indices=LS.Vector.new(e.clone(this.type.indices))}static from(...e){if(e.length===3){let[r,n,i]=e,o=new ez.Dictionary(r.type,n,null,null);return LS.Vector.new(QM.Data.Dictionary(o,0,i.length,0,null,i,r))}return $M.vectorFromValuesWithType(()=>e[0].type,e[0])}get dictionary(){return this.data.dictionary}reverseLookup(e){return this.dictionary.indexOf(e)}getKey(e){return this.indices.get(e)}getValue(e){return this.dictionary.get(e)}setKey(e,r){return this.indices.set(e,r)}setValue(e,r){return this.dictionary.set(e,r)}};Vm.DictionaryVector=a0;a0.prototype.indices=null});var l0=k(Wm=>{"use strict";Object.defineProperty(Wm,"__esModule",{value:!0});Wm.FixedSizeBinaryVector=void 0;var tz=zt(),VS=class extends tz.BaseVector{};Wm.FixedSizeBinaryVector=VS});var u0=k(Km=>{"use strict";Object.defineProperty(Km,"__esModule",{value:!0});Km.FixedSizeListVector=void 0;var rz=zt(),CS=class extends rz.BaseVector{};Km.FixedSizeListVector=CS});var m0=k(qi=>{"use strict";Object.defineProperty(qi,"__esModule",{value:!0});qi.Float64Vector=qi.Float32Vector=qi.Float16Vector=qi.FloatVector=void 0;var nz=Un(),iz=Ut(),oz=zt(),fz=_i(),ss=nt(),Wu=class extends oz.BaseVector{static from(e){let r=lz(this);if(e instanceof ArrayBuffer||ArrayBuffer.isView(e)){let n=az(e.constructor)||r;if(r===null&&(r=n),r&&r===n){let i=new r,o=e.byteLength/i.ArrayType.BYTES_PER_ELEMENT;if(!sz(r,e.constructor))return iz.Vector.new(nz.Data.Float(i,0,o,0,null,e))}}if(r)return fz.vectorFromValuesWithType(()=>new r,e);throw e instanceof DataView||e instanceof ArrayBuffer?new TypeError(`Cannot infer float type from instance of ${e.constructor.name}`):new TypeError("Unrecognized FloatVector input")}};qi.FloatVector=Wu;var c0=class extends Wu{toFloat32Array(){return new Float32Array(this)}toFloat64Array(){return new Float64Array(this)}};qi.Float16Vector=c0;var p0=class extends Wu{};qi.Float32Vector=p0;var d0=class extends Wu{};qi.Float64Vector=d0;var sz=(t,e)=>t===ss.Float16&&e!==Uint16Array,az=t=>{switch(t){case Uint16Array:return ss.Float16;case Float32Array:return ss.Float32;case Float64Array:return ss.Float64;default:return null}},lz=t=>{switch(t){case c0:return ss.Float16;case p0:return ss.Float32;case d0:return ss.Float64;default:return null}}});var w0=k(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});uf.IntervalYearMonthVector=uf.IntervalDayTimeVector=uf.IntervalVector=void 0;var uz=zt(),Ym=class extends uz.BaseVector{};uf.IntervalVector=Ym;var WS=class extends Ym{};uf.IntervalDayTimeVector=WS;var KS=class extends Ym{};uf.IntervalYearMonthVector=KS});var Gm=k(Gt=>{"use strict";Object.defineProperty(Gt,"__esModule",{value:!0});Gt.Uint64Vector=Gt.Uint32Vector=Gt.Uint16Vector=Gt.Uint8Vector=Gt.Int64Vector=Gt.Int32Vector=Gt.Int16Vector=Gt.Int8Vector=Gt.IntVector=void 0;var cz=Un(),pz=Ut(),dz=zt(),mz=_i(),YS=gr(),GS=Xt(),Dt=nt(),vi=class extends dz.BaseVector{static from(...e){let[r,n=!1]=e,i=bz(this,n);if(r instanceof ArrayBuffer||ArrayBuffer.isView(r)){let o=hz(r.constructor,n)||i;if(i===null&&(i=o),i&&i===o){let f=new i,s=r.byteLength/f.ArrayType.BYTES_PER_ELEMENT;return wz(i,r.constructor)&&(s*=.5),pz.Vector.new(cz.Data.Int(f,0,s,0,null,r))}}if(i)return mz.vectorFromValuesWithType(()=>new i,r);throw r instanceof DataView||r instanceof ArrayBuffer?new TypeError(`Cannot infer integer type from instance of ${r.constructor.name}`):new TypeError("Unrecognized IntVector input")}};Gt.IntVector=vi;var h0=class extends vi{};Gt.Int8Vector=h0;var b0=class extends vi{};Gt.Int16Vector=b0;var g0=class extends vi{};Gt.Int32Vector=g0;var y0=class extends vi{toBigInt64Array(){return GS.toBigInt64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigInt64Array())}};Gt.Int64Vector=y0;var j0=class extends vi{};Gt.Uint8Vector=j0;var _0=class extends vi{};Gt.Uint16Vector=_0;var q0=class extends vi{};Gt.Uint32Vector=q0;var v0=class extends vi{toBigUint64Array(){return GS.toBigUint64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigUint64Array())}};Gt.Uint64Vector=v0;var wz=(t,e)=>(t===Dt.Int64||t===Dt.Uint64)&&(e===Int32Array||e===Uint32Array),hz=(t,e)=>{switch(t){case Int8Array:return Dt.Int8;case Int16Array:return Dt.Int16;case Int32Array:return e?Dt.Int64:Dt.Int32;case YS.BigInt64Array:return Dt.Int64;case Uint8Array:return Dt.Uint8;case Uint16Array:return Dt.Uint16;case Uint32Array:return e?Dt.Uint64:Dt.Uint32;case YS.BigUint64Array:return Dt.Uint64;default:return null}},bz=(t,e)=>{switch(t){case h0:return Dt.Int8;case b0:return Dt.Int16;case g0:return e?Dt.Int64:Dt.Int32;case y0:return Dt.Int64;case j0:return Dt.Uint8;case _0:return Dt.Uint16;case q0:return e?Dt.Uint64:Dt.Uint32;case v0:return Dt.Uint64;default:return null}}});var T0=k(Zm=>{"use strict";Object.defineProperty(Zm,"__esModule",{value:!0});Zm.ListVector=void 0;var gz=zt(),ZS=class extends gz.BaseVector{};Zm.ListVector=ZS});var k0=k(Jm=>{"use strict";Object.defineProperty(Jm,"__esModule",{value:!0});Jm.MapVector=void 0;var yz=Fu(),jz=Ut(),_z=zt(),qz=nt(),JS=class extends _z.BaseVector{asList(){let e=this.type.children[0];return jz.Vector.new(this.data.clone(new qz.List(e)))}bind(e){let r=this.getChildAt(0),{[e]:n,[e+1]:i}=this.valueOffsets;return new yz.MapRow(r.slice(n,i))}};Jm.MapVector=JS});var B0=k(Qm=>{"use strict";Object.defineProperty(Qm,"__esModule",{value:!0});Qm.NullVector=void 0;var vz=zt(),QS=class extends vz.BaseVector{};Qm.NullVector=QS});var I0=k(Xm=>{"use strict";Object.defineProperty(Xm,"__esModule",{value:!0});Xm.StructVector=void 0;var Tz=Fu(),kz=zt(),Bz=Symbol.for("rowIndex"),XS=class extends kz.BaseVector{bind(e){let r=this._row||(this._row=new Tz.StructRow(this)),n=Object.create(r);return n[Bz]=e,n}};Xm.StructVector=XS});var x0=k(Tn=>{"use strict";Object.defineProperty(Tn,"__esModule",{value:!0});Tn.TimestampNanosecondVector=Tn.TimestampMicrosecondVector=Tn.TimestampMillisecondVector=Tn.TimestampSecondVector=Tn.TimestampVector=void 0;var Iz=zt(),ka=class extends Iz.BaseVector{};Tn.TimestampVector=ka;var $S=class extends ka{};Tn.TimestampSecondVector=$S;var eE=class extends ka{};Tn.TimestampMillisecondVector=eE;var tE=class extends ka{};Tn.TimestampMicrosecondVector=tE;var rE=class extends ka{};Tn.TimestampNanosecondVector=rE});var S0=k(kn=>{"use strict";Object.defineProperty(kn,"__esModule",{value:!0});kn.TimeNanosecondVector=kn.TimeMicrosecondVector=kn.TimeMillisecondVector=kn.TimeSecondVector=kn.TimeVector=void 0;var xz=zt(),Ba=class extends xz.BaseVector{};kn.TimeVector=Ba;var nE=class extends Ba{};kn.TimeSecondVector=nE;var iE=class extends Ba{};kn.TimeMillisecondVector=iE;var oE=class extends Ba{};kn.TimeMicrosecondVector=oE;var fE=class extends Ba{};kn.TimeNanosecondVector=fE});var E0=k(cf=>{"use strict";Object.defineProperty(cf,"__esModule",{value:!0});cf.SparseUnionVector=cf.DenseUnionVector=cf.UnionVector=void 0;var Sz=zt(),$m=class extends Sz.BaseVector{get typeIdToChildIndex(){return this.data.type.typeIdToChildIndex}};cf.UnionVector=$m;var sE=class extends $m{get valueOffsets(){return this.data.valueOffsets}};cf.DenseUnionVector=sE;var aE=class extends $m{};cf.SparseUnionVector=aE});var A0=k(ew=>{"use strict";Object.defineProperty(ew,"__esModule",{value:!0});ew.Utf8Vector=void 0;var Ez=Ut(),Az=zt(),lE=nt(),Oz=_i(),uE=class extends Az.BaseVector{static from(e){return Oz.vectorFromValuesWithType(()=>new lE.Utf8,e)}asBinary(){return Ez.Vector.new(this.data.clone(new lE.Binary))}};ew.Utf8Vector=uE});var cE=k(pf=>{"use strict";Object.defineProperty(pf,"__esModule",{value:!0});pf.partial2=pf.partial1=pf.partial0=void 0;function Fz(t){return function(){return t(this)}}pf.partial0=Fz;function Dz(t){return function(e){return t(this,e)}}pf.partial1=Dz;function Nz(t){return function(e,r){return t(this,e,r)}}pf.partial2=Nz});var D0=k(Ia=>{"use strict";Object.defineProperty(Ia,"__esModule",{value:!0});Ia.instance=Ia.GetVisitor=void 0;var tw=Iu(),Pz=cr(),Rz=zf(),Hz=vu(),Bn=bt(),_e=class extends Pz.Visitor{};Ia.GetVisitor=_e;var Uz=(t,e)=>864e5*t[e],O0=(t,e)=>4294967296*t[e+1]+(t[e]>>>0),Mz=(t,e)=>4294967296*(t[e+1]/1e3)+(t[e]>>>0)/1e3,zz=(t,e)=>4294967296*(t[e+1]/1e6)+(t[e]>>>0)/1e6,pE=t=>new Date(t),Lz=(t,e)=>pE(Uz(t,e)),Vz=(t,e)=>pE(O0(t,e)),Cz=(t,e)=>null,dE=(t,e,r)=>{let{[r]:n,[r+1]:i}=e;return n!=null&&i!=null?t.subarray(n,i):null},Wz=({offset:t,values:e},r)=>{let n=t+r;return(e[n>>3]&1<<n%8)!=0},mE=({values:t},e)=>Lz(t,e),wE=({values:t},e)=>Vz(t,e*2),Ti=({stride:t,values:e},r)=>e[t*r],hE=({stride:t,values:e},r)=>Hz.uint16ToFloat64(e[t*r]),F0=({stride:t,values:e,type:r},n)=>tw.BN.new(e.subarray(t*n,t*(n+1)),r.isSigned),Kz=({stride:t,values:e},r)=>e.subarray(t*r,t*(r+1)),Yz=({values:t,valueOffsets:e},r)=>dE(t,e,r),Gz=({values:t,valueOffsets:e},r)=>{let n=dE(t,e,r);return n!==null?Rz.decodeUtf8(n):null},Zz=(t,e)=>t.type.bitWidth<64?Ti(t,e):F0(t,e),Jz=(t,e)=>t.type.precision!==Bn.Precision.HALF?Ti(t,e):hE(t,e),Qz=(t,e)=>t.type.unit===Bn.DateUnit.DAY?mE(t,e):wE(t,e),bE=({values:t},e)=>1e3*O0(t,e*2),gE=({values:t},e)=>O0(t,e*2),yE=({values:t},e)=>Mz(t,e*2),jE=({values:t},e)=>zz(t,e*2),Xz=(t,e)=>{switch(t.type.unit){case Bn.TimeUnit.SECOND:return bE(t,e);case Bn.TimeUnit.MILLISECOND:return gE(t,e);case Bn.TimeUnit.MICROSECOND:return yE(t,e);case Bn.TimeUnit.NANOSECOND:return jE(t,e)}},_E=({values:t,stride:e},r)=>t[e*r],qE=({values:t,stride:e},r)=>t[e*r],vE=({values:t},e)=>tw.BN.signed(t.subarray(2*e,2*(e+1))),TE=({values:t},e)=>tw.BN.signed(t.subarray(2*e,2*(e+1))),$z=(t,e)=>{switch(t.type.unit){case Bn.TimeUnit.SECOND:return _E(t,e);case Bn.TimeUnit.MILLISECOND:return qE(t,e);case Bn.TimeUnit.MICROSECOND:return vE(t,e);case Bn.TimeUnit.NANOSECOND:return TE(t,e)}},eL=({values:t},e)=>tw.BN.decimal(t.subarray(4*e,4*(e+1))),tL=(t,e)=>{let r=t.getChildAt(0),{valueOffsets:n,stride:i}=t;return r.slice(n[e*i],n[e*i+1])},rL=(t,e)=>t.bind(e),nL=(t,e)=>t.bind(e),iL=(t,e)=>t.type.mode===Bn.UnionMode.Dense?kE(t,e):BE(t,e),kE=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(t.valueOffsets[e]):null},BE=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(e):null},oL=(t,e)=>t.getValue(t.getKey(e)),fL=(t,e)=>t.type.unit===Bn.IntervalUnit.DAY_TIME?IE(t,e):xE(t,e),IE=({values:t},e)=>t.subarray(2*e,2*(e+1)),xE=({values:t},e)=>{let r=t[e],n=new Int32Array(2);return n[0]=r/12|0,n[1]=r%12|0,n},sL=(t,e)=>{let r=t.getChildAt(0),{stride:n}=t;return r.slice(e*n,(e+1)*n)};_e.prototype.visitNull=Cz;_e.prototype.visitBool=Wz;_e.prototype.visitInt=Zz;_e.prototype.visitInt8=Ti;_e.prototype.visitInt16=Ti;_e.prototype.visitInt32=Ti;_e.prototype.visitInt64=F0;_e.prototype.visitUint8=Ti;_e.prototype.visitUint16=Ti;_e.prototype.visitUint32=Ti;_e.prototype.visitUint64=F0;_e.prototype.visitFloat=Jz;_e.prototype.visitFloat16=hE;_e.prototype.visitFloat32=Ti;_e.prototype.visitFloat64=Ti;_e.prototype.visitUtf8=Gz;_e.prototype.visitBinary=Yz;_e.prototype.visitFixedSizeBinary=Kz;_e.prototype.visitDate=Qz;_e.prototype.visitDateDay=mE;_e.prototype.visitDateMillisecond=wE;_e.prototype.visitTimestamp=Xz;_e.prototype.visitTimestampSecond=bE;_e.prototype.visitTimestampMillisecond=gE;_e.prototype.visitTimestampMicrosecond=yE;_e.prototype.visitTimestampNanosecond=jE;_e.prototype.visitTime=$z;_e.prototype.visitTimeSecond=_E;_e.prototype.visitTimeMillisecond=qE;_e.prototype.visitTimeMicrosecond=vE;_e.prototype.visitTimeNanosecond=TE;_e.prototype.visitDecimal=eL;_e.prototype.visitList=tL;_e.prototype.visitStruct=nL;_e.prototype.visitUnion=iL;_e.prototype.visitDenseUnion=kE;_e.prototype.visitSparseUnion=BE;_e.prototype.visitDictionary=oL;_e.prototype.visitInterval=fL;_e.prototype.visitIntervalDayTime=IE;_e.prototype.visitIntervalYearMonth=xE;_e.prototype.visitFixedSizeList=sL;_e.prototype.visitMap=rL;Ia.instance=new _e});var OE=k(xa=>{"use strict";Object.defineProperty(xa,"__esModule",{value:!0});xa.instance=xa.IndexOfVisitor=void 0;var aL=cr(),SE=ui(),EE=Nu(),qe=class extends aL.Visitor{};xa.IndexOfVisitor=qe;function lL(t,e){return e===null&&t.length>0?0:-1}function uL(t,e){let{nullBitmap:r}=t.data;if(!r||t.nullCount<=0)return-1;let n=0;for(let i of new SE.BitIterator(r,t.data.offset+(e||0),t.length,r,SE.getBool)){if(!i)return n;++n}return-1}function Ne(t,e,r){if(e===void 0)return-1;if(e===null)return uL(t,r);let n=EE.createElementComparator(e);for(let i=(r||0)-1,o=t.length;++i<o;)if(n(t.get(i)))return i;return-1}function AE(t,e,r){let n=EE.createElementComparator(e);for(let i=(r||0)-1,o=t.length;++i<o;)if(n(t.get(i)))return i;return-1}qe.prototype.visitNull=lL;qe.prototype.visitBool=Ne;qe.prototype.visitInt=Ne;qe.prototype.visitInt8=Ne;qe.prototype.visitInt16=Ne;qe.prototype.visitInt32=Ne;qe.prototype.visitInt64=Ne;qe.prototype.visitUint8=Ne;qe.prototype.visitUint16=Ne;qe.prototype.visitUint32=Ne;qe.prototype.visitUint64=Ne;qe.prototype.visitFloat=Ne;qe.prototype.visitFloat16=Ne;qe.prototype.visitFloat32=Ne;qe.prototype.visitFloat64=Ne;qe.prototype.visitUtf8=Ne;qe.prototype.visitBinary=Ne;qe.prototype.visitFixedSizeBinary=Ne;qe.prototype.visitDate=Ne;qe.prototype.visitDateDay=Ne;qe.prototype.visitDateMillisecond=Ne;qe.prototype.visitTimestamp=Ne;qe.prototype.visitTimestampSecond=Ne;qe.prototype.visitTimestampMillisecond=Ne;qe.prototype.visitTimestampMicrosecond=Ne;qe.prototype.visitTimestampNanosecond=Ne;qe.prototype.visitTime=Ne;qe.prototype.visitTimeSecond=Ne;qe.prototype.visitTimeMillisecond=Ne;qe.prototype.visitTimeMicrosecond=Ne;qe.prototype.visitTimeNanosecond=Ne;qe.prototype.visitDecimal=Ne;qe.prototype.visitList=Ne;qe.prototype.visitStruct=Ne;qe.prototype.visitUnion=Ne;qe.prototype.visitDenseUnion=AE;qe.prototype.visitSparseUnion=AE;qe.prototype.visitDictionary=Ne;qe.prototype.visitInterval=Ne;qe.prototype.visitIntervalDayTime=Ne;qe.prototype.visitIntervalYearMonth=Ne;qe.prototype.visitFixedSizeList=Ne;qe.prototype.visitMap=Ne;xa.instance=new qe});var N0=k(Sa=>{"use strict";Object.defineProperty(Sa,"__esModule",{value:!0});Sa.instance=Sa.IteratorVisitor=void 0;var rw=bt(),cL=cr(),pL=ui(),FE=D0(),ve=class extends cL.Visitor{};Sa.IteratorVisitor=ve;function dL(t){let e=FE.instance.getVisitFn(t);return new pL.BitIterator(t.data.nullBitmap,t.data.offset,t.length,t,(r,n,i,o)=>(i&1<<o)!=0?e(r,n):null)}var DE=class{constructor(e,r){this.vector=e,this.getFn=r,this.index=0}next(){return this.index<this.vector.length?{value:this.getFn(this.vector,this.index++)}:{done:!0,value:null}}[Symbol.iterator](){return this}};function Ae(t){if(t.nullCount>0)return dL(t);let{type:e,typeId:r,length:n}=t;return t.stride===1&&(r===rw.Type.Timestamp||r===rw.Type.Int&&e.bitWidth!==64||r===rw.Type.Time&&e.bitWidth!==64||r===rw.Type.Float&&e.precision>0)?t.data.values.subarray(0,n)[Symbol.iterator]():new DE(t,FE.instance.getVisitFn(t))}ve.prototype.visitNull=Ae;ve.prototype.visitBool=Ae;ve.prototype.visitInt=Ae;ve.prototype.visitInt8=Ae;ve.prototype.visitInt16=Ae;ve.prototype.visitInt32=Ae;ve.prototype.visitInt64=Ae;ve.prototype.visitUint8=Ae;ve.prototype.visitUint16=Ae;ve.prototype.visitUint32=Ae;ve.prototype.visitUint64=Ae;ve.prototype.visitFloat=Ae;ve.prototype.visitFloat16=Ae;ve.prototype.visitFloat32=Ae;ve.prototype.visitFloat64=Ae;ve.prototype.visitUtf8=Ae;ve.prototype.visitBinary=Ae;ve.prototype.visitFixedSizeBinary=Ae;ve.prototype.visitDate=Ae;ve.prototype.visitDateDay=Ae;ve.prototype.visitDateMillisecond=Ae;ve.prototype.visitTimestamp=Ae;ve.prototype.visitTimestampSecond=Ae;ve.prototype.visitTimestampMillisecond=Ae;ve.prototype.visitTimestampMicrosecond=Ae;ve.prototype.visitTimestampNanosecond=Ae;ve.prototype.visitTime=Ae;ve.prototype.visitTimeSecond=Ae;ve.prototype.visitTimeMillisecond=Ae;ve.prototype.visitTimeMicrosecond=Ae;ve.prototype.visitTimeNanosecond=Ae;ve.prototype.visitDecimal=Ae;ve.prototype.visitList=Ae;ve.prototype.visitStruct=Ae;ve.prototype.visitUnion=Ae;ve.prototype.visitDenseUnion=Ae;ve.prototype.visitSparseUnion=Ae;ve.prototype.visitDictionary=Ae;ve.prototype.visitInterval=Ae;ve.prototype.visitIntervalDayTime=Ae;ve.prototype.visitIntervalYearMonth=Ae;ve.prototype.visitFixedSizeList=Ae;ve.prototype.visitMap=Ae;Sa.instance=new ve});var NE=k(Ea=>{"use strict";Object.defineProperty(Ea,"__esModule",{value:!0});Ea.instance=Ea.ToArrayVisitor=void 0;var Ku=bt(),mL=cr(),wL=N0(),Te=class extends mL.Visitor{};Ea.ToArrayVisitor=Te;function Oe(t){let{type:e,length:r,stride:n}=t;switch(e.typeId){case Ku.Type.Int:case Ku.Type.Float:case Ku.Type.Decimal:case Ku.Type.Time:case Ku.Type.Timestamp:return t.data.values.subarray(0,r*n)}return[...wL.instance.visit(t)]}Te.prototype.visitNull=Oe;Te.prototype.visitBool=Oe;Te.prototype.visitInt=Oe;Te.prototype.visitInt8=Oe;Te.prototype.visitInt16=Oe;Te.prototype.visitInt32=Oe;Te.prototype.visitInt64=Oe;Te.prototype.visitUint8=Oe;Te.prototype.visitUint16=Oe;Te.prototype.visitUint32=Oe;Te.prototype.visitUint64=Oe;Te.prototype.visitFloat=Oe;Te.prototype.visitFloat16=Oe;Te.prototype.visitFloat32=Oe;Te.prototype.visitFloat64=Oe;Te.prototype.visitUtf8=Oe;Te.prototype.visitBinary=Oe;Te.prototype.visitFixedSizeBinary=Oe;Te.prototype.visitDate=Oe;Te.prototype.visitDateDay=Oe;Te.prototype.visitDateMillisecond=Oe;Te.prototype.visitTimestamp=Oe;Te.prototype.visitTimestampSecond=Oe;Te.prototype.visitTimestampMillisecond=Oe;Te.prototype.visitTimestampMicrosecond=Oe;Te.prototype.visitTimestampNanosecond=Oe;Te.prototype.visitTime=Oe;Te.prototype.visitTimeSecond=Oe;Te.prototype.visitTimeMillisecond=Oe;Te.prototype.visitTimeMicrosecond=Oe;Te.prototype.visitTimeNanosecond=Oe;Te.prototype.visitDecimal=Oe;Te.prototype.visitList=Oe;Te.prototype.visitStruct=Oe;Te.prototype.visitUnion=Oe;Te.prototype.visitDenseUnion=Oe;Te.prototype.visitSparseUnion=Oe;Te.prototype.visitDictionary=Oe;Te.prototype.visitInterval=Oe;Te.prototype.visitIntervalDayTime=Oe;Te.prototype.visitIntervalYearMonth=Oe;Te.prototype.visitFixedSizeList=Oe;Te.prototype.visitMap=Oe;Ea.instance=new Te});var PE=k(Aa=>{"use strict";Object.defineProperty(Aa,"__esModule",{value:!0});Aa.instance=Aa.ByteWidthVisitor=void 0;var hL=cr(),bL=bt(),Yu=(t,e)=>t+e,P0=t=>`Cannot compute the byte width of variable-width column ${t}`,R0=class extends hL.Visitor{visitNull(e){return 0}visitInt(e){return e.bitWidth/8}visitFloat(e){return e.ArrayType.BYTES_PER_ELEMENT}visitBinary(e){throw new Error(P0(e))}visitUtf8(e){throw new Error(P0(e))}visitBool(e){return 1/8}visitDecimal(e){return 16}visitDate(e){return(e.unit+1)*4}visitTime(e){return e.bitWidth/8}visitTimestamp(e){return e.unit===bL.TimeUnit.SECOND?4:8}visitInterval(e){return(e.unit+1)*4}visitList(e){throw new Error(P0(e))}visitStruct(e){return this.visitFields(e.children).reduce(Yu,0)}visitUnion(e){return this.visitFields(e.children).reduce(Yu,0)}visitFixedSizeBinary(e){return e.byteWidth}visitFixedSizeList(e){return e.listSize*this.visitFields(e.children).reduce(Yu,0)}visitMap(e){return this.visitFields(e.children).reduce(Yu,0)}visitDictionary(e){return this.visit(e.indices)}visitFields(e){return(e||[]).map(r=>this.visit(r.type))}visitSchema(e){return this.visitFields(e.fields).reduce(Yu,0)}};Aa.ByteWidthVisitor=R0;Aa.instance=new R0});var RE=k(Oa=>{"use strict";Object.defineProperty(Oa,"__esModule",{value:!0});Oa.instance=Oa.GetVectorConstructor=void 0;var gL=cr(),yL=n0(),jL=i0(),H0=f0(),_L=s0(),qL=Cm(),vL=l0(),TL=u0(),nw=m0(),U0=w0(),fo=Gm(),kL=T0(),BL=k0(),IL=B0(),xL=I0(),Gu=x0(),Zu=S0(),M0=E0(),SL=A0(),z0=class extends gL.Visitor{visitNull(){return IL.NullVector}visitBool(){return jL.BoolVector}visitInt(){return fo.IntVector}visitInt8(){return fo.Int8Vector}visitInt16(){return fo.Int16Vector}visitInt32(){return fo.Int32Vector}visitInt64(){return fo.Int64Vector}visitUint8(){return fo.Uint8Vector}visitUint16(){return fo.Uint16Vector}visitUint32(){return fo.Uint32Vector}visitUint64(){return fo.Uint64Vector}visitFloat(){return nw.FloatVector}visitFloat16(){return nw.Float16Vector}visitFloat32(){return nw.Float32Vector}visitFloat64(){return nw.Float64Vector}visitUtf8(){return SL.Utf8Vector}visitBinary(){return yL.BinaryVector}visitFixedSizeBinary(){return vL.FixedSizeBinaryVector}visitDate(){return H0.DateVector}visitDateDay(){return H0.DateDayVector}visitDateMillisecond(){return H0.DateMillisecondVector}visitTimestamp(){return Gu.TimestampVector}visitTimestampSecond(){return Gu.TimestampSecondVector}visitTimestampMillisecond(){return Gu.TimestampMillisecondVector}visitTimestampMicrosecond(){return Gu.TimestampMicrosecondVector}visitTimestampNanosecond(){return Gu.TimestampNanosecondVector}visitTime(){return Zu.TimeVector}visitTimeSecond(){return Zu.TimeSecondVector}visitTimeMillisecond(){return Zu.TimeMillisecondVector}visitTimeMicrosecond(){return Zu.TimeMicrosecondVector}visitTimeNanosecond(){return Zu.TimeNanosecondVector}visitDecimal(){return _L.DecimalVector}visitList(){return kL.ListVector}visitStruct(){return xL.StructVector}visitUnion(){return M0.UnionVector}visitDenseUnion(){return M0.DenseUnionVector}visitSparseUnion(){return M0.SparseUnionVector}visitDictionary(){return qL.DictionaryVector}visitInterval(){return U0.IntervalVector}visitIntervalDayTime(){return U0.IntervalDayTimeVector}visitIntervalYearMonth(){return U0.IntervalYearMonthVector}visitFixedSizeList(){return TL.FixedSizeListVector}visitMap(){return BL.MapVector}};Oa.GetVectorConstructor=z0;Oa.instance=new z0});var _i=k(V=>{"use strict";Object.defineProperty(V,"__esModule",{value:!0});V.vectorFromValuesWithType=V.StructRow=V.MapRow=V.Utf8Vector=V.SparseUnionVector=V.DenseUnionVector=V.UnionVector=V.TimeNanosecondVector=V.TimeMicrosecondVector=V.TimeMillisecondVector=V.TimeSecondVector=V.TimeVector=V.TimestampNanosecondVector=V.TimestampMicrosecondVector=V.TimestampMillisecondVector=V.TimestampSecondVector=V.TimestampVector=V.StructVector=V.NullVector=V.MapVector=V.ListVector=V.Uint64Vector=V.Uint32Vector=V.Uint16Vector=V.Uint8Vector=V.Int64Vector=V.Int32Vector=V.Int16Vector=V.Int8Vector=V.IntVector=V.IntervalYearMonthVector=V.IntervalDayTimeVector=V.IntervalVector=V.Float64Vector=V.Float32Vector=V.Float16Vector=V.FloatVector=V.FixedSizeListVector=V.FixedSizeBinaryVector=V.DictionaryVector=V.DecimalVector=V.DateMillisecondVector=V.DateDayVector=V.DateVector=V.Chunked=V.BoolVector=V.BinaryVector=V.BaseVector=V.Vector=void 0;var EL=Ut();Object.defineProperty(V,"Vector",{enumerable:!0,get:function(){return EL.Vector}});var AL=zt();Object.defineProperty(V,"BaseVector",{enumerable:!0,get:function(){return AL.BaseVector}});var OL=n0();Object.defineProperty(V,"BinaryVector",{enumerable:!0,get:function(){return OL.BinaryVector}});var FL=i0();Object.defineProperty(V,"BoolVector",{enumerable:!0,get:function(){return FL.BoolVector}});var DL=nf();Object.defineProperty(V,"Chunked",{enumerable:!0,get:function(){return DL.Chunked}});var L0=f0();Object.defineProperty(V,"DateVector",{enumerable:!0,get:function(){return L0.DateVector}});Object.defineProperty(V,"DateDayVector",{enumerable:!0,get:function(){return L0.DateDayVector}});Object.defineProperty(V,"DateMillisecondVector",{enumerable:!0,get:function(){return L0.DateMillisecondVector}});var NL=s0();Object.defineProperty(V,"DecimalVector",{enumerable:!0,get:function(){return NL.DecimalVector}});var PL=Cm();Object.defineProperty(V,"DictionaryVector",{enumerable:!0,get:function(){return PL.DictionaryVector}});var RL=l0();Object.defineProperty(V,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return RL.FixedSizeBinaryVector}});var HL=u0();Object.defineProperty(V,"FixedSizeListVector",{enumerable:!0,get:function(){return HL.FixedSizeListVector}});var iw=m0();Object.defineProperty(V,"FloatVector",{enumerable:!0,get:function(){return iw.FloatVector}});Object.defineProperty(V,"Float16Vector",{enumerable:!0,get:function(){return iw.Float16Vector}});Object.defineProperty(V,"Float32Vector",{enumerable:!0,get:function(){return iw.Float32Vector}});Object.defineProperty(V,"Float64Vector",{enumerable:!0,get:function(){return iw.Float64Vector}});var V0=w0();Object.defineProperty(V,"IntervalVector",{enumerable:!0,get:function(){return V0.IntervalVector}});Object.defineProperty(V,"IntervalDayTimeVector",{enumerable:!0,get:function(){return V0.IntervalDayTimeVector}});Object.defineProperty(V,"IntervalYearMonthVector",{enumerable:!0,get:function(){return V0.IntervalYearMonthVector}});var so=Gm();Object.defineProperty(V,"IntVector",{enumerable:!0,get:function(){return so.IntVector}});Object.defineProperty(V,"Int8Vector",{enumerable:!0,get:function(){return so.Int8Vector}});Object.defineProperty(V,"Int16Vector",{enumerable:!0,get:function(){return so.Int16Vector}});Object.defineProperty(V,"Int32Vector",{enumerable:!0,get:function(){return so.Int32Vector}});Object.defineProperty(V,"Int64Vector",{enumerable:!0,get:function(){return so.Int64Vector}});Object.defineProperty(V,"Uint8Vector",{enumerable:!0,get:function(){return so.Uint8Vector}});Object.defineProperty(V,"Uint16Vector",{enumerable:!0,get:function(){return so.Uint16Vector}});Object.defineProperty(V,"Uint32Vector",{enumerable:!0,get:function(){return so.Uint32Vector}});Object.defineProperty(V,"Uint64Vector",{enumerable:!0,get:function(){return so.Uint64Vector}});var UL=T0();Object.defineProperty(V,"ListVector",{enumerable:!0,get:function(){return UL.ListVector}});var ML=k0();Object.defineProperty(V,"MapVector",{enumerable:!0,get:function(){return ML.MapVector}});var zL=B0();Object.defineProperty(V,"NullVector",{enumerable:!0,get:function(){return zL.NullVector}});var LL=I0();Object.defineProperty(V,"StructVector",{enumerable:!0,get:function(){return LL.StructVector}});var Ju=x0();Object.defineProperty(V,"TimestampVector",{enumerable:!0,get:function(){return Ju.TimestampVector}});Object.defineProperty(V,"TimestampSecondVector",{enumerable:!0,get:function(){return Ju.TimestampSecondVector}});Object.defineProperty(V,"TimestampMillisecondVector",{enumerable:!0,get:function(){return Ju.TimestampMillisecondVector}});Object.defineProperty(V,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return Ju.TimestampMicrosecondVector}});Object.defineProperty(V,"TimestampNanosecondVector",{enumerable:!0,get:function(){return Ju.TimestampNanosecondVector}});var Qu=S0();Object.defineProperty(V,"TimeVector",{enumerable:!0,get:function(){return Qu.TimeVector}});Object.defineProperty(V,"TimeSecondVector",{enumerable:!0,get:function(){return Qu.TimeSecondVector}});Object.defineProperty(V,"TimeMillisecondVector",{enumerable:!0,get:function(){return Qu.TimeMillisecondVector}});Object.defineProperty(V,"TimeMicrosecondVector",{enumerable:!0,get:function(){return Qu.TimeMicrosecondVector}});Object.defineProperty(V,"TimeNanosecondVector",{enumerable:!0,get:function(){return Qu.TimeNanosecondVector}});var C0=E0();Object.defineProperty(V,"UnionVector",{enumerable:!0,get:function(){return C0.UnionVector}});Object.defineProperty(V,"DenseUnionVector",{enumerable:!0,get:function(){return C0.DenseUnionVector}});Object.defineProperty(V,"SparseUnionVector",{enumerable:!0,get:function(){return C0.SparseUnionVector}});var VL=A0();Object.defineProperty(V,"Utf8Vector",{enumerable:!0,get:function(){return VL.Utf8Vector}});var HE=Fu();Object.defineProperty(V,"MapRow",{enumerable:!0,get:function(){return HE.MapRow}});Object.defineProperty(V,"StructRow",{enumerable:!0,get:function(){return HE.StructRow}});var Xu=cE(),W0=bt(),Fa=Ut(),UE=nf(),as=zt(),CL=ui(),ow=gr(),ME=At(),zE=D0(),LE=sj(),VE=OE(),CE=NE(),WE=N0(),KE=PE(),YE=RE();Fa.Vector.new=WL;Fa.Vector.from=YL;function WL(t,...e){return new(YE.instance.getVisitFn(t)())(t,...e)}function KL(t,e){if(ow.isIterable(e))return Fa.Vector.from({nullValues:[null,void 0],type:t(),values:e});if(ow.isAsyncIterable(e))return Fa.Vector.from({nullValues:[null,void 0],type:t(),values:e});let{values:r=[],type:n=t(),nullValues:i=[null,void 0]}={...e};return ow.isIterable(r)?Fa.Vector.from({nullValues:i,...e,type:n}):Fa.Vector.from({nullValues:i,...e,type:n})}V.vectorFromValuesWithType=KL;function YL(t){let{values:e=[],...r}={nullValues:[null,void 0],...t};if(ow.isIterable(e)){let n=[...ME.Builder.throughIterable(r)(e)];return n.length===1?n[0]:UE.Chunked.concat(n)}return(async n=>{let i=ME.Builder.throughAsyncIterable(r);for await(let o of i(e))n.push(o);return n.length===1?n[0]:UE.Chunked.concat(n)})([])}as.BaseVector.prototype.get=function(e){return zE.instance.visit(this,e)};as.BaseVector.prototype.set=function(e,r){return LE.instance.visit(this,e,r)};as.BaseVector.prototype.indexOf=function(e,r){return VE.instance.visit(this,e,r)};as.BaseVector.prototype.toArray=function(){return CE.instance.visit(this)};as.BaseVector.prototype.getByteWidth=function(){return KE.instance.visit(this.type)};as.BaseVector.prototype[Symbol.iterator]=function(){return WE.instance.visit(this)};as.BaseVector.prototype._bindDataAccessors=QL;Object.keys(W0.Type).map(t=>W0.Type[t]).filter(t=>typeof t=="number").filter(t=>t!==W0.Type.NONE).forEach(t=>{let e=YE.instance.visit(t);e.prototype.get=Xu.partial1(zE.instance.getVisitFn(t)),e.prototype.set=Xu.partial2(LE.instance.getVisitFn(t)),e.prototype.indexOf=Xu.partial2(VE.instance.getVisitFn(t)),e.prototype.toArray=Xu.partial0(CE.instance.getVisitFn(t)),e.prototype.getByteWidth=GL(KE.instance.getVisitFn(t)),e.prototype[Symbol.iterator]=Xu.partial0(WE.instance.getVisitFn(t))});function GL(t){return function(){return t(this.type)}}function ZL(t){return function(e){return this.isValid(e)?t.call(this,e):null}}function JL(t){return function(e,r){CL.setBool(this.nullBitmap,this.offset+e,r!=null)&&t.call(this,e,r)}}function QL(){let t=this.nullBitmap;t&&t.byteLength>0&&(this.get=ZL(this.get),this.set=JL(this.set))}});var Cu=k(fw=>{"use strict";Object.defineProperty(fw,"__esModule",{value:!0});fw.Table=void 0;var XL=ya(),GE=ir(),K0=oo(),$L=$u(),Y0=nt(),ZE=ga(),G0=gr(),JE=Rm(),QE=e0(),Z0=_i(),fr=class extends Z0.Chunked{constructor(...e){let r=null;e[0]instanceof GE.Schema&&(r=e.shift());let n=ZE.selectArgs(K0.RecordBatch,e);if(!r&&!(r=n[0]&&n[0].schema))throw new TypeError("Table must be initialized with a Schema or at least one RecordBatch");n[0]||(n[0]=new K0._InternalEmptyPlaceholderRecordBatch(r));super(new Y0.Struct(r.fields),n);this._schema=r,this._chunks=n}static empty(e=new GE.Schema([])){return new fr(e,[])}static from(e){if(!e)return fr.empty();if(typeof e=="object"){let n=G0.isIterable(e.values)?e8(e):G0.isAsyncIterable(e.values)?t8(e):null;if(n!==null)return n}let r=$L.RecordBatchReader.from(e);return G0.isPromise(r)?(async()=>await fr.from(await r))():r.isSync()&&(r=r.open())?r.schema?new fr(r.schema,[...r]):fr.empty():(async n=>{let i=await n,o=i.schema,f=[];if(o){for await(let s of i)f.push(s);return new fr(o,f)}return fr.empty()})(r.open())}static async fromAsync(e){return await fr.from(e)}static fromStruct(e){return fr.new(e.data.childData,e.type.children)}static new(...e){return new fr(...QE.distributeColumnsIntoRecordBatches(ZE.selectColumnArgs(e)))}get schema(){return this._schema}get length(){return this._length}get chunks(){return this._chunks}get numCols(){return this._numChildren}clone(e=this._chunks){return new fr(this._schema,e)}getColumn(e){return this.getColumnAt(this.getColumnIndex(e))}getColumnAt(e){return this.getChildAt(e)}getColumnIndex(e){return this._schema.fields.findIndex(r=>r.name===e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r,n,i=this._schema.fields,o=this._children||(this._children=[]);if(n=o[e])return n;if(r=i[e]){let f=this._chunks.map(s=>s.getChildAt(e)).filter(s=>s!=null);if(f.length>0)return o[e]=new XL.Column(r,f)}return null}serialize(e="binary",r=!0){return(r?JE.RecordBatchStreamWriter:JE.RecordBatchFileWriter).writeAll(this).toUint8Array(!0)}count(){return this._length}select(...e){let r=this._schema.fields.reduce((n,i,o)=>n.set(i.name,o),new Map);return this.selectAt(...e.map(n=>r.get(n)).filter(n=>n>-1))}selectAt(...e){let r=this._schema.selectAt(...e);return new fr(r,this._chunks.map(({length:n,data:{childData:i}})=>new K0.RecordBatch(r,n,e.map(o=>i[o]).filter(Boolean))))}assign(e){let r=this._schema.fields,[n,i]=e.schema.fields.reduce((s,u,l)=>{let[c,w]=s,p=r.findIndex(b=>b.name===u.name);return~p?w[p]=l:c.push(l),s},[[],[]]),o=this._schema.assign(e.schema),f=[...r.map((s,u,l,c=i[u])=>c===void 0?this.getColumnAt(u):e.getColumnAt(c)),...n.map(s=>e.getColumnAt(s))].filter(Boolean);return new fr(...QE.distributeVectorsIntoRecordBatches(o,f))}};fw.Table=fr;function e8(t){let{type:e}=t;return e instanceof Y0.Struct?fr.fromStruct(Z0.StructVector.from(t)):null}function t8(t){let{type:e}=t;return e instanceof Y0.Struct?Z0.StructVector.from(t).then(r=>fr.fromStruct(r)):null}});var oo=k(Da=>{"use strict";Object.defineProperty(Da,"__esModule",{value:!0});Da._InternalEmptyPlaceholderRecordBatch=Da.RecordBatch=void 0;var J0=Un(),Q0=Cu(),r8=Ut(),n8=cr(),i8=ir(),o8=gr(),f8=nf(),s8=ga(),X0=nt(),a8=e0(),l8=_i(),df=class extends l8.StructVector{constructor(...e){let r,n=e[0],i;if(e[1]instanceof J0.Data)[,r,i]=e;else{let o=n.fields,[,f,s]=e;r=J0.Data.Struct(new X0.Struct(o),0,f,0,null,s)}super(r,i);this._schema=n}static from(e){return o8.isIterable(e.values),Q0.Table.from(e)}static new(...e){let[r,n]=s8.selectFieldArgs(e),i=n.filter(o=>o instanceof r8.Vector);return new df(...a8.ensureSameLengthData(new i8.Schema(r),i.map(o=>o.data)))}clone(e,r=this._children){return new df(this._schema,e,r)}concat(...e){let r=this._schema,n=f8.Chunked.flatten(this,...e);return new Q0.Table(r,n.map(({data:i})=>new df(r,i)))}get schema(){return this._schema}get numCols(){return this._schema.fields.length}get dictionaries(){return this._dictionaries||(this._dictionaries=sw.collect(this))}select(...e){let r=this._schema.fields.reduce((n,i,o)=>n.set(i.name,o),new Map);return this.selectAt(...e.map(n=>r.get(n)).filter(n=>n>-1))}selectAt(...e){let r=this._schema.selectAt(...e),n=e.map(i=>this.data.childData[i]).filter(Boolean);return new df(r,this.length,n)}};Da.RecordBatch=df;var XE=class extends df{constructor(e){super(e,0,e.fields.map(r=>J0.Data.new(r.type,0,0,0)))}};Da._InternalEmptyPlaceholderRecordBatch=XE;var sw=class extends n8.Visitor{constructor(){super(...arguments);this.dictionaries=new Map}static collect(e){return new sw().visit(e.data,new X0.Struct(e.schema.fields)).dictionaries}visit(e,r){return X0.DataType.isDictionary(r)?this.visitDictionary(e,r):(e.childData.forEach((n,i)=>this.visit(n,r.children[i].type)),this)}visitDictionary(e,r){let n=e.dictionary;return n&&n.length>0&&this.dictionaries.set(r.id,n),this}}});var $u=k(Sn=>{"use strict";Object.defineProperty(Sn,"__esModule",{value:!0});Sn.AsyncRecordBatchFileReader=Sn.RecordBatchFileReader=Sn.AsyncRecordBatchStreamReader=Sn.RecordBatchStreamReader=Sn.RecordBatchReader=void 0;var $E=Ut(),aw=bt(),eA=gj(),tA=_u(),rA=$o(),ec=_j(),nA=Nx(),$0=oo(),ls=Ys(),In=Bm(),xn=gr(),ki=class extends ls.ReadableInterop{constructor(e){super();this._impl=e}get closed(){return this._impl.closed}get schema(){return this._impl.schema}get autoDestroy(){return this._impl.autoDestroy}get dictionaries(){return this._impl.dictionaries}get numDictionaries(){return this._impl.numDictionaries}get numRecordBatches(){return this._impl.numRecordBatches}get footer(){return this._impl.isFile()?this._impl.footer:null}isSync(){return this._impl.isSync()}isAsync(){return this._impl.isAsync()}isFile(){return this._impl.isFile()}isStream(){return this._impl.isStream()}next(){return this._impl.next()}throw(e){return this._impl.throw(e)}return(e){return this._impl.return(e)}cancel(){return this._impl.cancel()}reset(e){return this._impl.reset(e),this._DOMStream=void 0,this._nodeStream=void 0,this}open(e){let r=this._impl.open(e);return xn.isPromise(r)?r.then(()=>this):this}readRecordBatch(e){return this._impl.isFile()?this._impl.readRecordBatch(e):null}[Symbol.iterator](){return this._impl[Symbol.iterator]()}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}toDOMStream(){return tA.default.toDOMStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this})}toNodeStream(){return tA.default.toNodeStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this},{objectMode:!0})}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}static from(e){return e instanceof ki?e:xn.isArrowJSON(e)?u8(e):xn.isFileHandle(e)?d8(e):xn.isPromise(e)?(async()=>await ki.from(await e))():xn.isFetchResponse(e)||xn.isReadableDOMStream(e)||xn.isReadableNodeStream(e)||xn.isAsyncIterable(e)?p8(new rA.AsyncByteStream(e)):c8(new rA.ByteStream(e))}static readAll(e){return e instanceof ki?e.isSync()?sA(e):aA(e):xn.isArrowJSON(e)||ArrayBuffer.isView(e)||xn.isIterable(e)||xn.isIteratorResult(e)?sA(e):aA(e)}};Sn.RecordBatchReader=ki;var Na=class extends ki{constructor(e){super(e);this._impl=e}[Symbol.iterator](){return this._impl[Symbol.iterator]()}async*[Symbol.asyncIterator](){yield*this[Symbol.iterator]()}};Sn.RecordBatchStreamReader=Na;var Pa=class extends ki{constructor(e){super(e);this._impl=e}[Symbol.iterator](){throw new Error("AsyncRecordBatchStreamReader is not Iterable")}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}};Sn.AsyncRecordBatchStreamReader=Pa;var lw=class extends Na{constructor(e){super(e);this._impl=e}};Sn.RecordBatchFileReader=lw;var e_=class extends Pa{constructor(e){super(e);this._impl=e}};Sn.AsyncRecordBatchFileReader=e_;var t_=class{constructor(e=new Map){this.closed=!1,this.autoDestroy=!0,this._dictionaryIndex=0,this._recordBatchIndex=0,this.dictionaries=e}get numDictionaries(){return this._dictionaryIndex}get numRecordBatches(){return this._recordBatchIndex}isSync(){return!1}isAsync(){return!1}isFile(){return!1}isStream(){return!1}reset(e){return this._dictionaryIndex=0,this._recordBatchIndex=0,this.schema=e,this.dictionaries=new Map,this}_loadRecordBatch(e,r){return new $0.RecordBatch(this.schema,e.length,this._loadVectors(e,r,this.schema.fields))}_loadDictionaryBatch(e,r){let{id:n,isDelta:i,data:o}=e,{dictionaries:f,schema:s}=this,u=f.get(n);if(i||!u){let l=s.dictionaries.get(n);return u&&i?u.concat($E.Vector.new(this._loadVectors(o,r,[l])[0])):$E.Vector.new(this._loadVectors(o,r,[l])[0])}return u}_loadVectors(e,r,n){return new nA.VectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}},tc=class extends t_{constructor(e,r){super(r);this._reader=xn.isArrowJSON(e)?new In.JSONMessageReader(this._handle=e):new In.MessageReader(this._handle=e)}isSync(){return!0}isStream(){return!0}[Symbol.iterator](){return this}cancel(){!this.closed&&(this.closed=!0)&&(this.reset()._reader.return(),this._reader=null,this.dictionaries=null)}open(e){return this.closed||(this.autoDestroy=fA(this,e),this.schema||(this.schema=this._reader.readSchema())||this.cancel()),this}throw(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.throw(e):ls.ITERATOR_DONE}return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.return(e):ls.ITERATOR_DONE}next(){if(this.closed)return ls.ITERATOR_DONE;let e,{_reader:r}=this;for(;e=this._readNextMessageAndValidate();)if(e.isSchema())this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),o=this._loadRecordBatch(n,i);return{done:!1,value:o}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),o=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,o)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new $0._InternalEmptyPlaceholderRecordBatch(this.schema)}):this.return()}_readNextMessageAndValidate(e){return this._reader.readMessage(e)}},rc=class extends t_{constructor(e,r){super(r);this._reader=new In.AsyncMessageReader(this._handle=e)}isAsync(){return!0}isStream(){return!0}[Symbol.asyncIterator](){return this}async cancel(){!this.closed&&(this.closed=!0)&&(await this.reset()._reader.return(),this._reader=null,this.dictionaries=null)}async open(e){return this.closed||(this.autoDestroy=fA(this,e),this.schema||(this.schema=await this._reader.readSchema())||await this.cancel()),this}async throw(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.throw(e):ls.ITERATOR_DONE}async return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.return(e):ls.ITERATOR_DONE}async next(){if(this.closed)return ls.ITERATOR_DONE;let e,{_reader:r}=this;for(;e=await this._readNextMessageAndValidate();)if(e.isSchema())await this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=await r.readMessageBody(e.bodyLength),o=this._loadRecordBatch(n,i);return{done:!1,value:o}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=await r.readMessageBody(e.bodyLength),o=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,o)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new $0._InternalEmptyPlaceholderRecordBatch(this.schema)}):await this.return()}async _readNextMessageAndValidate(e){return await this._reader.readMessage(e)}},r_=class extends tc{constructor(e,r){super(e instanceof ec.RandomAccessFile?e:new ec.RandomAccessFile(e),r)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isSync(){return!0}isFile(){return!0}open(e){if(!this.closed&&!this._footer){this.schema=(this._footer=this._readFooter()).schema;for(let r of this._footer.dictionaryBatches())r&&this._readDictionaryBatch(this._dictionaryIndex++)}return super.open(e)}readRecordBatch(e){if(this.closed)return null;this._footer||this.open();let r=this._footer&&this._footer.getRecordBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(aw.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),o=this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,o)}}return null}_readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(aw.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),o=this._reader.readMessageBody(n.bodyLength),f=this._loadDictionaryBatch(i,o);this.dictionaries.set(i.id,f)}}}_readFooter(){let{_handle:e}=this,r=e.size-In.magicAndPadding,n=e.readInt32(r),i=e.readAt(r-n,n);return eA.Footer.decode(i)}_readNextMessageAndValidate(e){if(this._footer||this.open(),this._footer&&this._recordBatchIndex<this.numRecordBatches){let r=this._footer&&this._footer.getRecordBatch(this._recordBatchIndex);if(r&&this._handle.seek(r.offset))return this._reader.readMessage(e)}return null}},iA=class extends rc{constructor(e,...r){let n=typeof r[0]!="number"?r.shift():void 0,i=r[0]instanceof Map?r.shift():void 0;super(e instanceof ec.AsyncRandomAccessFile?e:new ec.AsyncRandomAccessFile(e,n),i)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isFile(){return!0}isAsync(){return!0}async open(e){if(!this.closed&&!this._footer){this.schema=(this._footer=await this._readFooter()).schema;for(let r of this._footer.dictionaryBatches())r&&await this._readDictionaryBatch(this._dictionaryIndex++)}return await super.open(e)}async readRecordBatch(e){if(this.closed)return null;this._footer||await this.open();let r=this._footer&&this._footer.getRecordBatch(e);if(r&&await this._handle.seek(r.offset)){let n=await this._reader.readMessage(aw.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),o=await this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,o)}}return null}async _readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&await this._handle.seek(r.offset)){let n=await this._reader.readMessage(aw.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),o=await this._reader.readMessageBody(n.bodyLength),f=this._loadDictionaryBatch(i,o);this.dictionaries.set(i.id,f)}}}async _readFooter(){let{_handle:e}=this;e._pending&&await e._pending;let r=e.size-In.magicAndPadding,n=await e.readInt32(r),i=await e.readAt(r-n,n);return eA.Footer.decode(i)}async _readNextMessageAndValidate(e){if(this._footer||await this.open(),this._footer&&this._recordBatchIndex<this.numRecordBatches){let r=this._footer.getRecordBatch(this._recordBatchIndex);if(r&&await this._handle.seek(r.offset))return await this._reader.readMessage(e)}return null}},oA=class extends tc{constructor(e,r){super(e,r)}_loadVectors(e,r,n){return new nA.JSONVectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}};function fA(t,e){return e&&typeof e.autoDestroy=="boolean"?e.autoDestroy:t.autoDestroy}function*sA(t){let e=ki.from(t);try{if(!e.open({autoDestroy:!1}).closed)do yield e;while(!e.reset().open().closed)}finally{e.cancel()}}async function*aA(t){let e=await ki.from(t);try{if(!(await e.open({autoDestroy:!1})).closed)do yield e;while(!(await e.reset().open()).closed)}finally{await e.cancel()}}function u8(t){return new Na(new oA(t))}function c8(t){let e=t.peek(In.magicLength+7&~7);return e&&e.byteLength>=4?In.checkForMagicArrowString(e)?new lw(new r_(t.read())):new Na(new tc(t)):new Na(new tc(function*(){}()))}async function p8(t){let e=await t.peek(In.magicLength+7&~7);return e&&e.byteLength>=4?In.checkForMagicArrowString(e)?new lw(new r_(await t.read())):new Pa(new rc(t)):new Pa(new rc(async function*(){}()))}async function d8(t){let{size:e}=await t.stat(),r=new ec.AsyncRandomAccessFile(t,e);return e>=In.magicX2AndPadding&&In.checkForMagicArrowString(await r.readAt(0,In.magicLength+7&~7))?new e_(new iA(r)):new Pa(new rc(r))}});var cA=k(uw=>{"use strict";Object.defineProperty(uw,"__esModule",{value:!0});uw.toDOMStream=void 0;var lA=Xt(),uA=gr();function m8(t,e){if(uA.isAsyncIterable(t))return h8(t,e);if(uA.isIterable(t))return w8(t,e);throw new Error("toDOMStream() must be called with an Iterable or AsyncIterable")}uw.toDOMStream=m8;function w8(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,start(f){o(f,r||(r=t[Symbol.iterator]()))},pull(f){r?o(f,r):f.close()},cancel(){(r&&r.return&&r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});function o(f,s){let u,l=null,c=f.desiredSize||null;for(;!(l=s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=lA.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),f.enqueue(l.value),c!=null&&--c<=0)return;f.close()}}function h8(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,async start(f){await o(f,r||(r=t[Symbol.asyncIterator]()))},async pull(f){r?await o(f,r):f.close()},async cancel(){(r&&r.return&&await r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});async function o(f,s){let u,l=null,c=f.desiredSize||null;for(;!(l=await s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=lA.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),f.enqueue(l.value),c!=null&&--c<=0)return;f.close()}}});var mA=k(Ra=>{"use strict";Object.defineProperty(Ra,"__esModule",{value:!0});Ra.BuilderTransform=Ra.builderThroughDOMStream=void 0;var b8=pm();function g8(t){return new n_(t)}Ra.builderThroughDOMStream=g8;var n_=class{constructor(e){this._numChunks=0,this._finished=!1,this._bufferedSize=0;let{["readableStrategy"]:r,["writableStrategy"]:n,["queueingStrategy"]:i="count",...o}=e;this._controller=null,this._builder=b8.Builder.new(o),this._getSize=i!=="bytes"?pA:dA;let{["highWaterMark"]:f=i==="bytes"?2**14:1e3}={...r},{["highWaterMark"]:s=i==="bytes"?2**14:1e3}={...n};this.readable=new ReadableStream({cancel:()=>{this._builder.clear()},pull:u=>{this._maybeFlush(this._builder,this._controller=u)},start:u=>{this._maybeFlush(this._builder,this._controller=u)}},{highWaterMark:f,size:i!=="bytes"?pA:dA}),this.writable=new WritableStream({abort:()=>{this._builder.clear()},write:()=>{this._maybeFlush(this._builder,this._controller)},close:()=>{this._maybeFlush(this._builder.finish(),this._controller)}},{highWaterMark:s,size:u=>this._writeValueAndReturnChunkSize(u)})}_writeValueAndReturnChunkSize(e){let r=this._bufferedSize;return this._bufferedSize=this._getSize(this._builder.append(e)),this._bufferedSize-r}_maybeFlush(e,r){r!==null&&(this._bufferedSize>=r.desiredSize&&++this._numChunks&&this._enqueue(r,e.toVector()),e.finished&&((e.length>0||this._numChunks===0)&&++this._numChunks&&this._enqueue(r,e.toVector()),!this._finished&&(this._finished=!0)&&this._enqueue(r,null)))}_enqueue(e,r){this._bufferedSize=0,this._controller=null,r===null?e.close():e.enqueue(r)}};Ra.BuilderTransform=n_;var pA=t=>t.length,dA=t=>t.byteLength});var wA=k(cw=>{"use strict";Object.defineProperty(cw,"__esModule",{value:!0});cw.recordBatchReaderThroughDOMStream=void 0;var y8=$o(),j8=$u();function _8(t,e){let r=new y8.AsyncByteQueue,n=null,i=new ReadableStream({async cancel(){await r.close()},async start(s){await f(s,n||(n=await o()))},async pull(s){n?await f(s,n):s.close()}});return{writable:new WritableStream(r,{highWaterMark:2**14,...t}),readable:i};async function o(){return await(await j8.RecordBatchReader.from(r)).open(e)}async function f(s,u){let l=s.desiredSize,c=null;for(;!(c=await u.next()).done;)if(s.enqueue(c.value),l!=null&&--l<=0)return;s.close()}}cw.recordBatchReaderThroughDOMStream=_8});var hA=k(pw=>{"use strict";Object.defineProperty(pw,"__esModule",{value:!0});pw.recordBatchWriterThroughDOMStream=void 0;var q8=$o();function v8(t,e){let r=new this(t),n=new q8.AsyncByteStream(r),i=new ReadableStream({type:"bytes",async cancel(){await n.cancel()},async pull(f){await o(f)},async start(f){await o(f)}},{highWaterMark:2**14,...e});return{writable:new WritableStream(r,t),readable:i};async function o(f){let s=null,u=f.desiredSize;for(;s=await n.read(u||null);)if(f.enqueue(s),u!=null&&(u-=s.byteLength)<=0)return;f.close()}}pw.recordBatchWriterThroughDOMStream=v8});var l_=k(ze=>{"use strict";Object.defineProperty(ze,"__esModule",{value:!0});ze.custom=ze.or=ze.and=ze.col=ze.lit=ze.CustomPredicate=ze.Not=ze.GTeq=ze.LTeq=ze.Equals=ze.Or=ze.And=ze.CombinationPredicate=ze.ComparisonPredicate=ze.Predicate=ze.Col=ze.Literal=ze.Value=void 0;var T8=Cm(),mf=class{eq(e){return e instanceof mf||(e=new ao(e)),new o_(this,e)}le(e){return e instanceof mf||(e=new ao(e)),new f_(this,e)}ge(e){return e instanceof mf||(e=new ao(e)),new s_(this,e)}lt(e){return new za(this.ge(e))}gt(e){return new za(this.le(e))}ne(e){return new za(this.eq(e))}};ze.Value=mf;var ao=class extends mf{constructor(e){super();this.v=e}};ze.Literal=ao;var i_=class extends mf{constructor(e){super();this.name=e}bind(e){if(!this.colidx){this.colidx=-1;let n=e.schema.fields;for(let i=-1;++i<n.length;)if(n[i].name===this.name){this.colidx=i;break}if(this.colidx<0)throw new Error(`Failed to bind Col "${this.name}"`)}let r=this.vector=e.getChildAt(this.colidx);return n=>r.get(n)}};ze.Col=i_;var Ha=class{and(...e){return new Ua(this,...e)}or(...e){return new Ma(this,...e)}not(){return new za(this)}};ze.Predicate=Ha;var nc=class extends Ha{constructor(e,r){super();this.left=e,this.right=r}bind(e){return this.left instanceof ao?this.right instanceof ao?this._bindLitLit(e,this.left,this.right):this._bindLitCol(e,this.left,this.right):this.right instanceof ao?this._bindColLit(e,this.left,this.right):this._bindColCol(e,this.left,this.right)}};ze.ComparisonPredicate=nc;var ic=class extends Ha{constructor(...e){super();this.children=e}};ze.CombinationPredicate=ic;ic.prototype.children=Object.freeze([]);var Ua=class extends ic{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof Ua?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.every(o=>o(n,i))}};ze.And=Ua;var Ma=class extends ic{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof Ma?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.some(o=>o(n,i))}};ze.Or=Ma;var o_=class extends nc{_bindLitLit(e,r,n){let i=r.v==n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)==o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);if(r.vector instanceof T8.DictionaryVector){let o,f=r.vector;return f.dictionary!==this.lastDictionary?(o=f.reverseLookup(n.v),this.lastDictionary=f.dictionary,this.lastKey=o):o=this.lastKey,o===-1?()=>!1:s=>f.getKey(s)===o}else return(o,f)=>i(o,f)==n.v}_bindLitCol(e,r,n){return this._bindColLit(e,n,r)}};ze.Equals=o_;var f_=class extends nc{_bindLitLit(e,r,n){let i=r.v<=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)<=o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);return(o,f)=>i(o,f)<=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(o,f)=>r.v<=i(o,f)}};ze.LTeq=f_;var s_=class extends nc{_bindLitLit(e,r,n){let i=r.v>=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)>=o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);return(o,f)=>i(o,f)>=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(o,f)=>r.v>=i(o,f)}};ze.GTeq=s_;var za=class extends Ha{constructor(e){super();this.child=e}bind(e){let r=this.child.bind(e);return(n,i)=>!r(n,i)}};ze.Not=za;var a_=class extends Ha{constructor(e,r){super();this.next=e,this.bind_=r}bind(e){return this.bind_(e),this.next}};ze.CustomPredicate=a_;function k8(t){return new ao(t)}ze.lit=k8;function B8(t){return new i_(t)}ze.col=B8;function I8(...t){return new Ua(...t)}ze.and=I8;function x8(...t){return new Ma(...t)}ze.or=x8;function S8(t,e){return new a_(t,e)}ze.custom=S8});var _A=k(wf=>{"use strict";Object.defineProperty(wf,"__esModule",{value:!0});wf.FilteredDataFrame=wf.CountByResult=wf.DataFrame=void 0;var La=Cu(),bA=Gm(),u_=ir(),gA=l_(),E8=oo(),yA=nt();La.Table.prototype.countBy=function(t){return new us(this.chunks).countBy(t)};La.Table.prototype.scan=function(t,e){return new us(this.chunks).scan(t,e)};La.Table.prototype.scanReverse=function(t,e){return new us(this.chunks).scanReverse(t,e)};La.Table.prototype.filter=function(t){return new us(this.chunks).filter(t)};var us=class extends La.Table{filter(e){return new oc(this.chunks,e)}scan(e,r){let n=this.chunks,i=n.length;for(let o=-1;++o<i;){let f=n[o];r&&r(f);for(let s=-1,u=f.length;++s<u;)e(s,f)}}scanReverse(e,r){let n=this.chunks,i=n.length;for(let o=i;--o>=0;){let f=n[o];r&&r(f);for(let s=f.length;--s>=0;)e(s,f)}}countBy(e){let r=this.chunks,n=r.length,i=typeof e=="string"?new gA.Col(e):e;i.bind(r[n-1]);let o=i.vector;if(!yA.DataType.isDictionary(o.type))throw new Error("countBy currently only supports dictionary-encoded columns");let f=Math.ceil(Math.log(o.length)/Math.log(256)),s=f==4?Uint32Array:f>=2?Uint16Array:Uint8Array,u=new s(o.dictionary.length);for(let l=-1;++l<n;){let c=r[l];i.bind(c);let w=i.vector.indices;for(let p=-1,b=c.length;++p<b;){let v=w.get(p);v!==null&&u[v]++}}return new dw(o.dictionary,bA.IntVector.from(u))}};wf.DataFrame=us;var dw=class extends La.Table{constructor(e,r){let n=new u_.Schema([new u_.Field("values",e.type),new u_.Field("counts",r.type)]);super(new E8.RecordBatch(n,r.length,[e,r]))}toJSON(){let e=this.getColumnAt(0),r=this.getColumnAt(1),n={};for(let i=-1;++i<this.length;)n[e.get(i)]=r.get(i);return n}};wf.CountByResult=dw;var jA=class{constructor(e,r){this.batches=e,this.predicate=r,this.batchIndex=0,this.index=0,this.batch=this.batches[this.batchIndex],this.predicateFunc=this.predicate.bind(this.batch)}next(){for(;this.batchIndex<this.batches.length;){for(;this.index<this.batch.length;){if(this.predicateFunc(this.index,this.batch))return{value:this.batch.get(this.index++)};this.index++}++this.batchIndex<this.batches.length&&(this.index=0,this.batch=this.batches[this.batchIndex],this.predicateFunc=this.predicate.bind(this.batch))}return{done:!0,value:null}}[Symbol.iterator](){return this}},oc=class extends us{constructor(e,r){super(e);this._predicate=r}scan(e,r){let n=this._chunks,i=n.length;for(let o=-1;++o<i;){let f=n[o],s=this._predicate.bind(f),u=!1;for(let l=-1,c=f.length;++l<c;)s(l,f)&&(r&&!u&&(r(f),u=!0),e(l,f))}}scanReverse(e,r){let n=this._chunks,i=n.length;for(let o=i;--o>=0;){let f=n[o],s=this._predicate.bind(f),u=!1;for(let l=f.length;--l>=0;)s(l,f)&&(r&&!u&&(r(f),u=!0),e(l,f))}}count(){let e=0,r=this._chunks,n=r.length;for(let i=-1;++i<n;){let o=r[i],f=this._predicate.bind(o);for(let s=-1,u=o.length;++s<u;)f(s,o)&&++e}return e}[Symbol.iterator](){return new jA(this._chunks,this._predicate)}filter(e){return new oc(this._chunks,this._predicate.and(e))}countBy(e){let r=this._chunks,n=r.length,i=typeof e=="string"?new gA.Col(e):e;i.bind(r[n-1]);let o=i.vector;if(!yA.DataType.isDictionary(o.type))throw new Error("countBy currently only supports dictionary-encoded columns");let f=Math.ceil(Math.log(o.length)/Math.log(256)),s=f==4?Uint32Array:f>=2?Uint16Array:Uint8Array,u=new s(o.dictionary.length);for(let l=-1;++l<n;){let c=r[l],w=this._predicate.bind(c);i.bind(c);let p=i.vector.indices;for(let b=-1,v=c.length;++b<v;){let H=p.get(b);H!==null&&w(b,c)&&u[H]++}}return new dw(o.dictionary,bA.IntVector.from(u))}};wf.FilteredDataFrame=oc});var TA=k(d=>{"use strict";Object.defineProperty(d,"__esModule",{value:!0});d.util=d.predicate=d.CountByResult=d.FilteredDataFrame=d.DataFrame=d.RecordBatch=d.Message=d.JSONMessageReader=d.AsyncMessageReader=d.MessageReader=d.RecordBatchJSONWriter=d.RecordBatchStreamWriter=d.RecordBatchFileWriter=d.RecordBatchWriter=d.AsyncRecordBatchStreamReader=d.AsyncRecordBatchFileReader=d.RecordBatchStreamReader=d.RecordBatchFileReader=d.RecordBatchReader=d.AsyncByteQueue=d.AsyncByteStream=d.ByteStream=d.Utf8Builder=d.SparseUnionBuilder=d.DenseUnionBuilder=d.UnionBuilder=d.TimeNanosecondBuilder=d.TimeMicrosecondBuilder=d.TimeMillisecondBuilder=d.TimeSecondBuilder=d.TimeBuilder=d.TimestampNanosecondBuilder=d.TimestampMicrosecondBuilder=d.TimestampMillisecondBuilder=d.TimestampSecondBuilder=d.TimestampBuilder=d.StructBuilder=d.NullBuilder=d.MapBuilder=d.ListBuilder=d.Uint64Builder=d.Uint32Builder=d.Uint16Builder=d.Uint8Builder=d.Int64Builder=d.Int32Builder=d.Int16Builder=d.Int8Builder=d.IntBuilder=d.IntervalYearMonthBuilder=d.IntervalDayTimeBuilder=d.IntervalBuilder=d.Float64Builder=d.Float32Builder=d.Float16Builder=d.FloatBuilder=d.FixedSizeListBuilder=d.FixedSizeBinaryBuilder=d.DictionaryBuilder=d.DecimalBuilder=d.DateMillisecondBuilder=d.DateDayBuilder=d.DateBuilder=d.BoolBuilder=d.BinaryBuilder=d.Builder=d.Utf8Vector=d.SparseUnionVector=d.DenseUnionVector=d.UnionVector=d.TimeNanosecondVector=d.TimeMicrosecondVector=d.TimeMillisecondVector=d.TimeSecondVector=d.TimeVector=d.TimestampNanosecondVector=d.TimestampMicrosecondVector=d.TimestampMillisecondVector=d.TimestampSecondVector=d.TimestampVector=d.StructVector=d.NullVector=d.MapVector=d.ListVector=d.Uint64Vector=d.Uint32Vector=d.Uint16Vector=d.Uint8Vector=d.Int64Vector=d.Int32Vector=d.Int16Vector=d.Int8Vector=d.IntVector=d.IntervalYearMonthVector=d.IntervalDayTimeVector=d.IntervalVector=d.Float64Vector=d.Float32Vector=d.Float16Vector=d.FloatVector=d.FixedSizeListVector=d.FixedSizeBinaryVector=d.DictionaryVector=d.DecimalVector=d.DateMillisecondVector=d.DateDayVector=d.DateVector=d.Chunked=d.BoolVector=d.BinaryVector=d.BaseVector=d.Vector=d.Field=d.Schema=d.Visitor=d.Column=d.Table=d.Map_=d.FixedSizeList=d.IntervalYearMonth=d.IntervalDayTime=d.Interval=d.Dictionary=d.SparseUnion=d.DenseUnion=d.Union=d.Struct=d.List=d.Decimal=d.TimeNanosecond=d.TimeMicrosecond=d.TimeMillisecond=d.TimeSecond=d.Time=d.TimestampNanosecond=d.TimestampMicrosecond=d.TimestampMillisecond=d.TimestampSecond=d.Timestamp=d.DateMillisecond=d.DateDay=d.Date_=d.FixedSizeBinary=d.Binary=d.Utf8=d.Float64=d.Float32=d.Float16=d.Float=d.Uint64=d.Uint32=d.Uint16=d.Uint8=d.Int64=d.Int32=d.Int16=d.Int8=d.Int=d.Bool=d.Null=d.DataType=d.Data=d.BufferType=d.Type=d.MessageHeader=d.MetadataVersion=d.IntervalUnit=d.UnionMode=d.Precision=d.TimeUnit=d.DateUnit=void 0;var Va=zo();Object.defineProperty(d,"DateUnit",{enumerable:!0,get:function(){return Va.DateUnit}});Object.defineProperty(d,"TimeUnit",{enumerable:!0,get:function(){return Va.TimeUnit}});Object.defineProperty(d,"Precision",{enumerable:!0,get:function(){return Va.Precision}});Object.defineProperty(d,"UnionMode",{enumerable:!0,get:function(){return Va.UnionMode}});Object.defineProperty(d,"IntervalUnit",{enumerable:!0,get:function(){return Va.IntervalUnit}});Object.defineProperty(d,"MetadataVersion",{enumerable:!0,get:function(){return Va.MetadataVersion}});var A8=Bd();Object.defineProperty(d,"MessageHeader",{enumerable:!0,get:function(){return A8.MessageHeader}});var qA=bt();Object.defineProperty(d,"Type",{enumerable:!0,get:function(){return qA.Type}});Object.defineProperty(d,"BufferType",{enumerable:!0,get:function(){return qA.BufferType}});var O8=Un();Object.defineProperty(d,"Data",{enumerable:!0,get:function(){return O8.Data}});var xe=nt();Object.defineProperty(d,"DataType",{enumerable:!0,get:function(){return xe.DataType}});Object.defineProperty(d,"Null",{enumerable:!0,get:function(){return xe.Null}});Object.defineProperty(d,"Bool",{enumerable:!0,get:function(){return xe.Bool}});Object.defineProperty(d,"Int",{enumerable:!0,get:function(){return xe.Int}});Object.defineProperty(d,"Int8",{enumerable:!0,get:function(){return xe.Int8}});Object.defineProperty(d,"Int16",{enumerable:!0,get:function(){return xe.Int16}});Object.defineProperty(d,"Int32",{enumerable:!0,get:function(){return xe.Int32}});Object.defineProperty(d,"Int64",{enumerable:!0,get:function(){return xe.Int64}});Object.defineProperty(d,"Uint8",{enumerable:!0,get:function(){return xe.Uint8}});Object.defineProperty(d,"Uint16",{enumerable:!0,get:function(){return xe.Uint16}});Object.defineProperty(d,"Uint32",{enumerable:!0,get:function(){return xe.Uint32}});Object.defineProperty(d,"Uint64",{enumerable:!0,get:function(){return xe.Uint64}});Object.defineProperty(d,"Float",{enumerable:!0,get:function(){return xe.Float}});Object.defineProperty(d,"Float16",{enumerable:!0,get:function(){return xe.Float16}});Object.defineProperty(d,"Float32",{enumerable:!0,get:function(){return xe.Float32}});Object.defineProperty(d,"Float64",{enumerable:!0,get:function(){return xe.Float64}});Object.defineProperty(d,"Utf8",{enumerable:!0,get:function(){return xe.Utf8}});Object.defineProperty(d,"Binary",{enumerable:!0,get:function(){return xe.Binary}});Object.defineProperty(d,"FixedSizeBinary",{enumerable:!0,get:function(){return xe.FixedSizeBinary}});Object.defineProperty(d,"Date_",{enumerable:!0,get:function(){return xe.Date_}});Object.defineProperty(d,"DateDay",{enumerable:!0,get:function(){return xe.DateDay}});Object.defineProperty(d,"DateMillisecond",{enumerable:!0,get:function(){return xe.DateMillisecond}});Object.defineProperty(d,"Timestamp",{enumerable:!0,get:function(){return xe.Timestamp}});Object.defineProperty(d,"TimestampSecond",{enumerable:!0,get:function(){return xe.TimestampSecond}});Object.defineProperty(d,"TimestampMillisecond",{enumerable:!0,get:function(){return xe.TimestampMillisecond}});Object.defineProperty(d,"TimestampMicrosecond",{enumerable:!0,get:function(){return xe.TimestampMicrosecond}});Object.defineProperty(d,"TimestampNanosecond",{enumerable:!0,get:function(){return xe.TimestampNanosecond}});Object.defineProperty(d,"Time",{enumerable:!0,get:function(){return xe.Time}});Object.defineProperty(d,"TimeSecond",{enumerable:!0,get:function(){return xe.TimeSecond}});Object.defineProperty(d,"TimeMillisecond",{enumerable:!0,get:function(){return xe.TimeMillisecond}});Object.defineProperty(d,"TimeMicrosecond",{enumerable:!0,get:function(){return xe.TimeMicrosecond}});Object.defineProperty(d,"TimeNanosecond",{enumerable:!0,get:function(){return xe.TimeNanosecond}});Object.defineProperty(d,"Decimal",{enumerable:!0,get:function(){return xe.Decimal}});Object.defineProperty(d,"List",{enumerable:!0,get:function(){return xe.List}});Object.defineProperty(d,"Struct",{enumerable:!0,get:function(){return xe.Struct}});Object.defineProperty(d,"Union",{enumerable:!0,get:function(){return xe.Union}});Object.defineProperty(d,"DenseUnion",{enumerable:!0,get:function(){return xe.DenseUnion}});Object.defineProperty(d,"SparseUnion",{enumerable:!0,get:function(){return xe.SparseUnion}});Object.defineProperty(d,"Dictionary",{enumerable:!0,get:function(){return xe.Dictionary}});Object.defineProperty(d,"Interval",{enumerable:!0,get:function(){return xe.Interval}});Object.defineProperty(d,"IntervalDayTime",{enumerable:!0,get:function(){return xe.IntervalDayTime}});Object.defineProperty(d,"IntervalYearMonth",{enumerable:!0,get:function(){return xe.IntervalYearMonth}});Object.defineProperty(d,"FixedSizeList",{enumerable:!0,get:function(){return xe.FixedSizeList}});Object.defineProperty(d,"Map_",{enumerable:!0,get:function(){return xe.Map_}});var F8=Cu();Object.defineProperty(d,"Table",{enumerable:!0,get:function(){return F8.Table}});var D8=ya();Object.defineProperty(d,"Column",{enumerable:!0,get:function(){return D8.Column}});var N8=cr();Object.defineProperty(d,"Visitor",{enumerable:!0,get:function(){return N8.Visitor}});var vA=ir();Object.defineProperty(d,"Schema",{enumerable:!0,get:function(){return vA.Schema}});Object.defineProperty(d,"Field",{enumerable:!0,get:function(){return vA.Field}});var ke=_i();Object.defineProperty(d,"Vector",{enumerable:!0,get:function(){return ke.Vector}});Object.defineProperty(d,"BaseVector",{enumerable:!0,get:function(){return ke.BaseVector}});Object.defineProperty(d,"BinaryVector",{enumerable:!0,get:function(){return ke.BinaryVector}});Object.defineProperty(d,"BoolVector",{enumerable:!0,get:function(){return ke.BoolVector}});Object.defineProperty(d,"Chunked",{enumerable:!0,get:function(){return ke.Chunked}});Object.defineProperty(d,"DateVector",{enumerable:!0,get:function(){return ke.DateVector}});Object.defineProperty(d,"DateDayVector",{enumerable:!0,get:function(){return ke.DateDayVector}});Object.defineProperty(d,"DateMillisecondVector",{enumerable:!0,get:function(){return ke.DateMillisecondVector}});Object.defineProperty(d,"DecimalVector",{enumerable:!0,get:function(){return ke.DecimalVector}});Object.defineProperty(d,"DictionaryVector",{enumerable:!0,get:function(){return ke.DictionaryVector}});Object.defineProperty(d,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return ke.FixedSizeBinaryVector}});Object.defineProperty(d,"FixedSizeListVector",{enumerable:!0,get:function(){return ke.FixedSizeListVector}});Object.defineProperty(d,"FloatVector",{enumerable:!0,get:function(){return ke.FloatVector}});Object.defineProperty(d,"Float16Vector",{enumerable:!0,get:function(){return ke.Float16Vector}});Object.defineProperty(d,"Float32Vector",{enumerable:!0,get:function(){return ke.Float32Vector}});Object.defineProperty(d,"Float64Vector",{enumerable:!0,get:function(){return ke.Float64Vector}});Object.defineProperty(d,"IntervalVector",{enumerable:!0,get:function(){return ke.IntervalVector}});Object.defineProperty(d,"IntervalDayTimeVector",{enumerable:!0,get:function(){return ke.IntervalDayTimeVector}});Object.defineProperty(d,"IntervalYearMonthVector",{enumerable:!0,get:function(){return ke.IntervalYearMonthVector}});Object.defineProperty(d,"IntVector",{enumerable:!0,get:function(){return ke.IntVector}});Object.defineProperty(d,"Int8Vector",{enumerable:!0,get:function(){return ke.Int8Vector}});Object.defineProperty(d,"Int16Vector",{enumerable:!0,get:function(){return ke.Int16Vector}});Object.defineProperty(d,"Int32Vector",{enumerable:!0,get:function(){return ke.Int32Vector}});Object.defineProperty(d,"Int64Vector",{enumerable:!0,get:function(){return ke.Int64Vector}});Object.defineProperty(d,"Uint8Vector",{enumerable:!0,get:function(){return ke.Uint8Vector}});Object.defineProperty(d,"Uint16Vector",{enumerable:!0,get:function(){return ke.Uint16Vector}});Object.defineProperty(d,"Uint32Vector",{enumerable:!0,get:function(){return ke.Uint32Vector}});Object.defineProperty(d,"Uint64Vector",{enumerable:!0,get:function(){return ke.Uint64Vector}});Object.defineProperty(d,"ListVector",{enumerable:!0,get:function(){return ke.ListVector}});Object.defineProperty(d,"MapVector",{enumerable:!0,get:function(){return ke.MapVector}});Object.defineProperty(d,"NullVector",{enumerable:!0,get:function(){return ke.NullVector}});Object.defineProperty(d,"StructVector",{enumerable:!0,get:function(){return ke.StructVector}});Object.defineProperty(d,"TimestampVector",{enumerable:!0,get:function(){return ke.TimestampVector}});Object.defineProperty(d,"TimestampSecondVector",{enumerable:!0,get:function(){return ke.TimestampSecondVector}});Object.defineProperty(d,"TimestampMillisecondVector",{enumerable:!0,get:function(){return ke.TimestampMillisecondVector}});Object.defineProperty(d,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return ke.TimestampMicrosecondVector}});Object.defineProperty(d,"TimestampNanosecondVector",{enumerable:!0,get:function(){return ke.TimestampNanosecondVector}});Object.defineProperty(d,"TimeVector",{enumerable:!0,get:function(){return ke.TimeVector}});Object.defineProperty(d,"TimeSecondVector",{enumerable:!0,get:function(){return ke.TimeSecondVector}});Object.defineProperty(d,"TimeMillisecondVector",{enumerable:!0,get:function(){return ke.TimeMillisecondVector}});Object.defineProperty(d,"TimeMicrosecondVector",{enumerable:!0,get:function(){return ke.TimeMicrosecondVector}});Object.defineProperty(d,"TimeNanosecondVector",{enumerable:!0,get:function(){return ke.TimeNanosecondVector}});Object.defineProperty(d,"UnionVector",{enumerable:!0,get:function(){return ke.UnionVector}});Object.defineProperty(d,"DenseUnionVector",{enumerable:!0,get:function(){return ke.DenseUnionVector}});Object.defineProperty(d,"SparseUnionVector",{enumerable:!0,get:function(){return ke.SparseUnionVector}});Object.defineProperty(d,"Utf8Vector",{enumerable:!0,get:function(){return ke.Utf8Vector}});var Se=pm();Object.defineProperty(d,"Builder",{enumerable:!0,get:function(){return Se.Builder}});Object.defineProperty(d,"BinaryBuilder",{enumerable:!0,get:function(){return Se.BinaryBuilder}});Object.defineProperty(d,"BoolBuilder",{enumerable:!0,get:function(){return Se.BoolBuilder}});Object.defineProperty(d,"DateBuilder",{enumerable:!0,get:function(){return Se.DateBuilder}});Object.defineProperty(d,"DateDayBuilder",{enumerable:!0,get:function(){return Se.DateDayBuilder}});Object.defineProperty(d,"DateMillisecondBuilder",{enumerable:!0,get:function(){return Se.DateMillisecondBuilder}});Object.defineProperty(d,"DecimalBuilder",{enumerable:!0,get:function(){return Se.DecimalBuilder}});Object.defineProperty(d,"DictionaryBuilder",{enumerable:!0,get:function(){return Se.DictionaryBuilder}});Object.defineProperty(d,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return Se.FixedSizeBinaryBuilder}});Object.defineProperty(d,"FixedSizeListBuilder",{enumerable:!0,get:function(){return Se.FixedSizeListBuilder}});Object.defineProperty(d,"FloatBuilder",{enumerable:!0,get:function(){return Se.FloatBuilder}});Object.defineProperty(d,"Float16Builder",{enumerable:!0,get:function(){return Se.Float16Builder}});Object.defineProperty(d,"Float32Builder",{enumerable:!0,get:function(){return Se.Float32Builder}});Object.defineProperty(d,"Float64Builder",{enumerable:!0,get:function(){return Se.Float64Builder}});Object.defineProperty(d,"IntervalBuilder",{enumerable:!0,get:function(){return Se.IntervalBuilder}});Object.defineProperty(d,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return Se.IntervalDayTimeBuilder}});Object.defineProperty(d,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return Se.IntervalYearMonthBuilder}});Object.defineProperty(d,"IntBuilder",{enumerable:!0,get:function(){return Se.IntBuilder}});Object.defineProperty(d,"Int8Builder",{enumerable:!0,get:function(){return Se.Int8Builder}});Object.defineProperty(d,"Int16Builder",{enumerable:!0,get:function(){return Se.Int16Builder}});Object.defineProperty(d,"Int32Builder",{enumerable:!0,get:function(){return Se.Int32Builder}});Object.defineProperty(d,"Int64Builder",{enumerable:!0,get:function(){return Se.Int64Builder}});Object.defineProperty(d,"Uint8Builder",{enumerable:!0,get:function(){return Se.Uint8Builder}});Object.defineProperty(d,"Uint16Builder",{enumerable:!0,get:function(){return Se.Uint16Builder}});Object.defineProperty(d,"Uint32Builder",{enumerable:!0,get:function(){return Se.Uint32Builder}});Object.defineProperty(d,"Uint64Builder",{enumerable:!0,get:function(){return Se.Uint64Builder}});Object.defineProperty(d,"ListBuilder",{enumerable:!0,get:function(){return Se.ListBuilder}});Object.defineProperty(d,"MapBuilder",{enumerable:!0,get:function(){return Se.MapBuilder}});Object.defineProperty(d,"NullBuilder",{enumerable:!0,get:function(){return Se.NullBuilder}});Object.defineProperty(d,"StructBuilder",{enumerable:!0,get:function(){return Se.StructBuilder}});Object.defineProperty(d,"TimestampBuilder",{enumerable:!0,get:function(){return Se.TimestampBuilder}});Object.defineProperty(d,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Se.TimestampSecondBuilder}});Object.defineProperty(d,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Se.TimestampMillisecondBuilder}});Object.defineProperty(d,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Se.TimestampMicrosecondBuilder}});Object.defineProperty(d,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Se.TimestampNanosecondBuilder}});Object.defineProperty(d,"TimeBuilder",{enumerable:!0,get:function(){return Se.TimeBuilder}});Object.defineProperty(d,"TimeSecondBuilder",{enumerable:!0,get:function(){return Se.TimeSecondBuilder}});Object.defineProperty(d,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Se.TimeMillisecondBuilder}});Object.defineProperty(d,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Se.TimeMicrosecondBuilder}});Object.defineProperty(d,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Se.TimeNanosecondBuilder}});Object.defineProperty(d,"UnionBuilder",{enumerable:!0,get:function(){return Se.UnionBuilder}});Object.defineProperty(d,"DenseUnionBuilder",{enumerable:!0,get:function(){return Se.DenseUnionBuilder}});Object.defineProperty(d,"SparseUnionBuilder",{enumerable:!0,get:function(){return Se.SparseUnionBuilder}});Object.defineProperty(d,"Utf8Builder",{enumerable:!0,get:function(){return Se.Utf8Builder}});var c_=$o();Object.defineProperty(d,"ByteStream",{enumerable:!0,get:function(){return c_.ByteStream}});Object.defineProperty(d,"AsyncByteStream",{enumerable:!0,get:function(){return c_.AsyncByteStream}});Object.defineProperty(d,"AsyncByteQueue",{enumerable:!0,get:function(){return c_.AsyncByteQueue}});var fc=$u();Object.defineProperty(d,"RecordBatchReader",{enumerable:!0,get:function(){return fc.RecordBatchReader}});Object.defineProperty(d,"RecordBatchFileReader",{enumerable:!0,get:function(){return fc.RecordBatchFileReader}});Object.defineProperty(d,"RecordBatchStreamReader",{enumerable:!0,get:function(){return fc.RecordBatchStreamReader}});Object.defineProperty(d,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return fc.AsyncRecordBatchFileReader}});Object.defineProperty(d,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return fc.AsyncRecordBatchStreamReader}});var mw=Rm();Object.defineProperty(d,"RecordBatchWriter",{enumerable:!0,get:function(){return mw.RecordBatchWriter}});Object.defineProperty(d,"RecordBatchFileWriter",{enumerable:!0,get:function(){return mw.RecordBatchFileWriter}});Object.defineProperty(d,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return mw.RecordBatchStreamWriter}});Object.defineProperty(d,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return mw.RecordBatchJSONWriter}});var p_=Bm();Object.defineProperty(d,"MessageReader",{enumerable:!0,get:function(){return p_.MessageReader}});Object.defineProperty(d,"AsyncMessageReader",{enumerable:!0,get:function(){return p_.AsyncMessageReader}});Object.defineProperty(d,"JSONMessageReader",{enumerable:!0,get:function(){return p_.JSONMessageReader}});var P8=ns();Object.defineProperty(d,"Message",{enumerable:!0,get:function(){return P8.Message}});var R8=oo();Object.defineProperty(d,"RecordBatch",{enumerable:!0,get:function(){return R8.RecordBatch}});var d_=_A();Object.defineProperty(d,"DataFrame",{enumerable:!0,get:function(){return d_.DataFrame}});Object.defineProperty(d,"FilteredDataFrame",{enumerable:!0,get:function(){return d_.FilteredDataFrame}});Object.defineProperty(d,"CountByResult",{enumerable:!0,get:function(){return d_.CountByResult}});var H8=Iu(),U8=vj(),M8=ui(),z8=vu(),L8=Xt(),V8=Nu(),C8=l_();d.predicate=C8;var m_=Uj();d.util={...H8,...U8,...M8,...z8,...L8,...V8,compareSchemas:m_.compareSchemas,compareFields:m_.compareFields,compareTypes:m_.compareTypes}});var y_=k(m=>{"use strict";Object.defineProperty(m,"__esModule",{value:!0});m.Utf8Builder=m.SparseUnionBuilder=m.DenseUnionBuilder=m.UnionBuilder=m.TimeNanosecondBuilder=m.TimeMicrosecondBuilder=m.TimeMillisecondBuilder=m.TimeSecondBuilder=m.TimeBuilder=m.TimestampNanosecondBuilder=m.TimestampMicrosecondBuilder=m.TimestampMillisecondBuilder=m.TimestampSecondBuilder=m.TimestampBuilder=m.StructBuilder=m.NullBuilder=m.MapBuilder=m.ListBuilder=m.Uint64Builder=m.Uint32Builder=m.Uint16Builder=m.Uint8Builder=m.Int64Builder=m.Int32Builder=m.Int16Builder=m.Int8Builder=m.IntBuilder=m.IntervalYearMonthBuilder=m.IntervalDayTimeBuilder=m.IntervalBuilder=m.Float64Builder=m.Float32Builder=m.Float16Builder=m.FloatBuilder=m.FixedSizeListBuilder=m.FixedSizeBinaryBuilder=m.DictionaryBuilder=m.DecimalBuilder=m.DateMillisecondBuilder=m.DateDayBuilder=m.DateBuilder=m.BoolBuilder=m.BinaryBuilder=m.Builder=m.util=m.predicate=m.CountByResult=m.FilteredDataFrame=m.DataFrame=m.RecordBatch=m.Message=m.JSONMessageReader=m.AsyncMessageReader=m.MessageReader=m.RecordBatchJSONWriter=m.RecordBatchStreamWriter=m.RecordBatchFileWriter=m.RecordBatchWriter=m.AsyncRecordBatchStreamReader=m.AsyncRecordBatchFileReader=m.RecordBatchStreamReader=m.RecordBatchFileReader=m.RecordBatchReader=m.AsyncByteQueue=m.AsyncByteStream=m.ByteStream=m.Utf8Vector=m.SparseUnionVector=m.DenseUnionVector=m.UnionVector=m.TimeNanosecondVector=m.TimeMicrosecondVector=m.TimeMillisecondVector=m.TimeSecondVector=m.TimeVector=m.TimestampNanosecondVector=m.TimestampMicrosecondVector=m.TimestampMillisecondVector=m.TimestampSecondVector=m.TimestampVector=m.StructVector=m.NullVector=m.MapVector=m.ListVector=m.Uint64Vector=m.Uint32Vector=m.Uint16Vector=m.Uint8Vector=m.Int64Vector=m.Int32Vector=m.Int16Vector=m.Int8Vector=m.IntVector=m.IntervalYearMonthVector=m.IntervalDayTimeVector=m.IntervalVector=m.Float64Vector=m.Float32Vector=m.Float16Vector=m.FloatVector=m.FixedSizeListVector=m.FixedSizeBinaryVector=m.DictionaryVector=m.DecimalVector=m.DateMillisecondVector=m.DateDayVector=m.DateVector=m.Chunked=m.BoolVector=m.BinaryVector=m.BaseVector=m.Vector=m.Visitor=m.Field=m.Schema=m.Column=m.Table=m.Map_=m.FixedSizeList=m.IntervalYearMonth=m.IntervalDayTime=m.Interval=m.Dictionary=m.SparseUnion=m.DenseUnion=m.Union=m.Struct=m.List=m.Decimal=m.TimeNanosecond=m.TimeMicrosecond=m.TimeMillisecond=m.TimeSecond=m.Time=m.TimestampNanosecond=m.TimestampMicrosecond=m.TimestampMillisecond=m.TimestampSecond=m.Timestamp=m.DateMillisecond=m.DateDay=m.Date_=m.FixedSizeBinary=m.Binary=m.Utf8=m.Float64=m.Float32=m.Float16=m.Float=m.Uint64=m.Uint32=m.Uint16=m.Uint8=m.Int64=m.Int32=m.Int16=m.Int8=m.Int=m.Bool=m.Null=m.DataType=m.Data=m.BufferType=m.UnionMode=m.Type=m.TimeUnit=m.Precision=m.MetadataVersion=m.MessageHeader=m.IntervalUnit=m.DateUnit=void 0;var W8=_u(),K8=pm(),w_=$u(),h_=Rm(),Y8=cA(),G8=mA(),b_=wA(),g_=hA();W8.default.toDOMStream=Y8.toDOMStream;K8.Builder.throughDOM=G8.builderThroughDOMStream;w_.RecordBatchReader.throughDOM=b_.recordBatchReaderThroughDOMStream;w_.RecordBatchFileReader.throughDOM=b_.recordBatchReaderThroughDOMStream;w_.RecordBatchStreamReader.throughDOM=b_.recordBatchReaderThroughDOMStream;h_.RecordBatchWriter.throughDOM=g_.recordBatchWriterThroughDOMStream;h_.RecordBatchFileWriter.throughDOM=g_.recordBatchWriterThroughDOMStream;h_.RecordBatchStreamWriter.throughDOM=g_.recordBatchWriterThroughDOMStream;var B=TA();Object.defineProperty(m,"DateUnit",{enumerable:!0,get:function(){return B.DateUnit}});Object.defineProperty(m,"IntervalUnit",{enumerable:!0,get:function(){return B.IntervalUnit}});Object.defineProperty(m,"MessageHeader",{enumerable:!0,get:function(){return B.MessageHeader}});Object.defineProperty(m,"MetadataVersion",{enumerable:!0,get:function(){return B.MetadataVersion}});Object.defineProperty(m,"Precision",{enumerable:!0,get:function(){return B.Precision}});Object.defineProperty(m,"TimeUnit",{enumerable:!0,get:function(){return B.TimeUnit}});Object.defineProperty(m,"Type",{enumerable:!0,get:function(){return B.Type}});Object.defineProperty(m,"UnionMode",{enumerable:!0,get:function(){return B.UnionMode}});Object.defineProperty(m,"BufferType",{enumerable:!0,get:function(){return B.BufferType}});Object.defineProperty(m,"Data",{enumerable:!0,get:function(){return B.Data}});Object.defineProperty(m,"DataType",{enumerable:!0,get:function(){return B.DataType}});Object.defineProperty(m,"Null",{enumerable:!0,get:function(){return B.Null}});Object.defineProperty(m,"Bool",{enumerable:!0,get:function(){return B.Bool}});Object.defineProperty(m,"Int",{enumerable:!0,get:function(){return B.Int}});Object.defineProperty(m,"Int8",{enumerable:!0,get:function(){return B.Int8}});Object.defineProperty(m,"Int16",{enumerable:!0,get:function(){return B.Int16}});Object.defineProperty(m,"Int32",{enumerable:!0,get:function(){return B.Int32}});Object.defineProperty(m,"Int64",{enumerable:!0,get:function(){return B.Int64}});Object.defineProperty(m,"Uint8",{enumerable:!0,get:function(){return B.Uint8}});Object.defineProperty(m,"Uint16",{enumerable:!0,get:function(){return B.Uint16}});Object.defineProperty(m,"Uint32",{enumerable:!0,get:function(){return B.Uint32}});Object.defineProperty(m,"Uint64",{enumerable:!0,get:function(){return B.Uint64}});Object.defineProperty(m,"Float",{enumerable:!0,get:function(){return B.Float}});Object.defineProperty(m,"Float16",{enumerable:!0,get:function(){return B.Float16}});Object.defineProperty(m,"Float32",{enumerable:!0,get:function(){return B.Float32}});Object.defineProperty(m,"Float64",{enumerable:!0,get:function(){return B.Float64}});Object.defineProperty(m,"Utf8",{enumerable:!0,get:function(){return B.Utf8}});Object.defineProperty(m,"Binary",{enumerable:!0,get:function(){return B.Binary}});Object.defineProperty(m,"FixedSizeBinary",{enumerable:!0,get:function(){return B.FixedSizeBinary}});Object.defineProperty(m,"Date_",{enumerable:!0,get:function(){return B.Date_}});Object.defineProperty(m,"DateDay",{enumerable:!0,get:function(){return B.DateDay}});Object.defineProperty(m,"DateMillisecond",{enumerable:!0,get:function(){return B.DateMillisecond}});Object.defineProperty(m,"Timestamp",{enumerable:!0,get:function(){return B.Timestamp}});Object.defineProperty(m,"TimestampSecond",{enumerable:!0,get:function(){return B.TimestampSecond}});Object.defineProperty(m,"TimestampMillisecond",{enumerable:!0,get:function(){return B.TimestampMillisecond}});Object.defineProperty(m,"TimestampMicrosecond",{enumerable:!0,get:function(){return B.TimestampMicrosecond}});Object.defineProperty(m,"TimestampNanosecond",{enumerable:!0,get:function(){return B.TimestampNanosecond}});Object.defineProperty(m,"Time",{enumerable:!0,get:function(){return B.Time}});Object.defineProperty(m,"TimeSecond",{enumerable:!0,get:function(){return B.TimeSecond}});Object.defineProperty(m,"TimeMillisecond",{enumerable:!0,get:function(){return B.TimeMillisecond}});Object.defineProperty(m,"TimeMicrosecond",{enumerable:!0,get:function(){return B.TimeMicrosecond}});Object.defineProperty(m,"TimeNanosecond",{enumerable:!0,get:function(){return B.TimeNanosecond}});Object.defineProperty(m,"Decimal",{enumerable:!0,get:function(){return B.Decimal}});Object.defineProperty(m,"List",{enumerable:!0,get:function(){return B.List}});Object.defineProperty(m,"Struct",{enumerable:!0,get:function(){return B.Struct}});Object.defineProperty(m,"Union",{enumerable:!0,get:function(){return B.Union}});Object.defineProperty(m,"DenseUnion",{enumerable:!0,get:function(){return B.DenseUnion}});Object.defineProperty(m,"SparseUnion",{enumerable:!0,get:function(){return B.SparseUnion}});Object.defineProperty(m,"Dictionary",{enumerable:!0,get:function(){return B.Dictionary}});Object.defineProperty(m,"Interval",{enumerable:!0,get:function(){return B.Interval}});Object.defineProperty(m,"IntervalDayTime",{enumerable:!0,get:function(){return B.IntervalDayTime}});Object.defineProperty(m,"IntervalYearMonth",{enumerable:!0,get:function(){return B.IntervalYearMonth}});Object.defineProperty(m,"FixedSizeList",{enumerable:!0,get:function(){return B.FixedSizeList}});Object.defineProperty(m,"Map_",{enumerable:!0,get:function(){return B.Map_}});Object.defineProperty(m,"Table",{enumerable:!0,get:function(){return B.Table}});Object.defineProperty(m,"Column",{enumerable:!0,get:function(){return B.Column}});Object.defineProperty(m,"Schema",{enumerable:!0,get:function(){return B.Schema}});Object.defineProperty(m,"Field",{enumerable:!0,get:function(){return B.Field}});Object.defineProperty(m,"Visitor",{enumerable:!0,get:function(){return B.Visitor}});Object.defineProperty(m,"Vector",{enumerable:!0,get:function(){return B.Vector}});Object.defineProperty(m,"BaseVector",{enumerable:!0,get:function(){return B.BaseVector}});Object.defineProperty(m,"BinaryVector",{enumerable:!0,get:function(){return B.BinaryVector}});Object.defineProperty(m,"BoolVector",{enumerable:!0,get:function(){return B.BoolVector}});Object.defineProperty(m,"Chunked",{enumerable:!0,get:function(){return B.Chunked}});Object.defineProperty(m,"DateVector",{enumerable:!0,get:function(){return B.DateVector}});Object.defineProperty(m,"DateDayVector",{enumerable:!0,get:function(){return B.DateDayVector}});Object.defineProperty(m,"DateMillisecondVector",{enumerable:!0,get:function(){return B.DateMillisecondVector}});Object.defineProperty(m,"DecimalVector",{enumerable:!0,get:function(){return B.DecimalVector}});Object.defineProperty(m,"DictionaryVector",{enumerable:!0,get:function(){return B.DictionaryVector}});Object.defineProperty(m,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return B.FixedSizeBinaryVector}});Object.defineProperty(m,"FixedSizeListVector",{enumerable:!0,get:function(){return B.FixedSizeListVector}});Object.defineProperty(m,"FloatVector",{enumerable:!0,get:function(){return B.FloatVector}});Object.defineProperty(m,"Float16Vector",{enumerable:!0,get:function(){return B.Float16Vector}});Object.defineProperty(m,"Float32Vector",{enumerable:!0,get:function(){return B.Float32Vector}});Object.defineProperty(m,"Float64Vector",{enumerable:!0,get:function(){return B.Float64Vector}});Object.defineProperty(m,"IntervalVector",{enumerable:!0,get:function(){return B.IntervalVector}});Object.defineProperty(m,"IntervalDayTimeVector",{enumerable:!0,get:function(){return B.IntervalDayTimeVector}});Object.defineProperty(m,"IntervalYearMonthVector",{enumerable:!0,get:function(){return B.IntervalYearMonthVector}});Object.defineProperty(m,"IntVector",{enumerable:!0,get:function(){return B.IntVector}});Object.defineProperty(m,"Int8Vector",{enumerable:!0,get:function(){return B.Int8Vector}});Object.defineProperty(m,"Int16Vector",{enumerable:!0,get:function(){return B.Int16Vector}});Object.defineProperty(m,"Int32Vector",{enumerable:!0,get:function(){return B.Int32Vector}});Object.defineProperty(m,"Int64Vector",{enumerable:!0,get:function(){return B.Int64Vector}});Object.defineProperty(m,"Uint8Vector",{enumerable:!0,get:function(){return B.Uint8Vector}});Object.defineProperty(m,"Uint16Vector",{enumerable:!0,get:function(){return B.Uint16Vector}});Object.defineProperty(m,"Uint32Vector",{enumerable:!0,get:function(){return B.Uint32Vector}});Object.defineProperty(m,"Uint64Vector",{enumerable:!0,get:function(){return B.Uint64Vector}});Object.defineProperty(m,"ListVector",{enumerable:!0,get:function(){return B.ListVector}});Object.defineProperty(m,"MapVector",{enumerable:!0,get:function(){return B.MapVector}});Object.defineProperty(m,"NullVector",{enumerable:!0,get:function(){return B.NullVector}});Object.defineProperty(m,"StructVector",{enumerable:!0,get:function(){return B.StructVector}});Object.defineProperty(m,"TimestampVector",{enumerable:!0,get:function(){return B.TimestampVector}});Object.defineProperty(m,"TimestampSecondVector",{enumerable:!0,get:function(){return B.TimestampSecondVector}});Object.defineProperty(m,"TimestampMillisecondVector",{enumerable:!0,get:function(){return B.TimestampMillisecondVector}});Object.defineProperty(m,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return B.TimestampMicrosecondVector}});Object.defineProperty(m,"TimestampNanosecondVector",{enumerable:!0,get:function(){return B.TimestampNanosecondVector}});Object.defineProperty(m,"TimeVector",{enumerable:!0,get:function(){return B.TimeVector}});Object.defineProperty(m,"TimeSecondVector",{enumerable:!0,get:function(){return B.TimeSecondVector}});Object.defineProperty(m,"TimeMillisecondVector",{enumerable:!0,get:function(){return B.TimeMillisecondVector}});Object.defineProperty(m,"TimeMicrosecondVector",{enumerable:!0,get:function(){return B.TimeMicrosecondVector}});Object.defineProperty(m,"TimeNanosecondVector",{enumerable:!0,get:function(){return B.TimeNanosecondVector}});Object.defineProperty(m,"UnionVector",{enumerable:!0,get:function(){return B.UnionVector}});Object.defineProperty(m,"DenseUnionVector",{enumerable:!0,get:function(){return B.DenseUnionVector}});Object.defineProperty(m,"SparseUnionVector",{enumerable:!0,get:function(){return B.SparseUnionVector}});Object.defineProperty(m,"Utf8Vector",{enumerable:!0,get:function(){return B.Utf8Vector}});Object.defineProperty(m,"ByteStream",{enumerable:!0,get:function(){return B.ByteStream}});Object.defineProperty(m,"AsyncByteStream",{enumerable:!0,get:function(){return B.AsyncByteStream}});Object.defineProperty(m,"AsyncByteQueue",{enumerable:!0,get:function(){return B.AsyncByteQueue}});Object.defineProperty(m,"RecordBatchReader",{enumerable:!0,get:function(){return B.RecordBatchReader}});Object.defineProperty(m,"RecordBatchFileReader",{enumerable:!0,get:function(){return B.RecordBatchFileReader}});Object.defineProperty(m,"RecordBatchStreamReader",{enumerable:!0,get:function(){return B.RecordBatchStreamReader}});Object.defineProperty(m,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return B.AsyncRecordBatchFileReader}});Object.defineProperty(m,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return B.AsyncRecordBatchStreamReader}});Object.defineProperty(m,"RecordBatchWriter",{enumerable:!0,get:function(){return B.RecordBatchWriter}});Object.defineProperty(m,"RecordBatchFileWriter",{enumerable:!0,get:function(){return B.RecordBatchFileWriter}});Object.defineProperty(m,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return B.RecordBatchStreamWriter}});Object.defineProperty(m,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return B.RecordBatchJSONWriter}});Object.defineProperty(m,"MessageReader",{enumerable:!0,get:function(){return B.MessageReader}});Object.defineProperty(m,"AsyncMessageReader",{enumerable:!0,get:function(){return B.AsyncMessageReader}});Object.defineProperty(m,"JSONMessageReader",{enumerable:!0,get:function(){return B.JSONMessageReader}});Object.defineProperty(m,"Message",{enumerable:!0,get:function(){return B.Message}});Object.defineProperty(m,"RecordBatch",{enumerable:!0,get:function(){return B.RecordBatch}});Object.defineProperty(m,"DataFrame",{enumerable:!0,get:function(){return B.DataFrame}});Object.defineProperty(m,"FilteredDataFrame",{enumerable:!0,get:function(){return B.FilteredDataFrame}});Object.defineProperty(m,"CountByResult",{enumerable:!0,get:function(){return B.CountByResult}});Object.defineProperty(m,"predicate",{enumerable:!0,get:function(){return B.predicate}});Object.defineProperty(m,"util",{enumerable:!0,get:function(){return B.util}});Object.defineProperty(m,"Builder",{enumerable:!0,get:function(){return B.Builder}});Object.defineProperty(m,"BinaryBuilder",{enumerable:!0,get:function(){return B.BinaryBuilder}});Object.defineProperty(m,"BoolBuilder",{enumerable:!0,get:function(){return B.BoolBuilder}});Object.defineProperty(m,"DateBuilder",{enumerable:!0,get:function(){return B.DateBuilder}});Object.defineProperty(m,"DateDayBuilder",{enumerable:!0,get:function(){return B.DateDayBuilder}});Object.defineProperty(m,"DateMillisecondBuilder",{enumerable:!0,get:function(){return B.DateMillisecondBuilder}});Object.defineProperty(m,"DecimalBuilder",{enumerable:!0,get:function(){return B.DecimalBuilder}});Object.defineProperty(m,"DictionaryBuilder",{enumerable:!0,get:function(){return B.DictionaryBuilder}});Object.defineProperty(m,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return B.FixedSizeBinaryBuilder}});Object.defineProperty(m,"FixedSizeListBuilder",{enumerable:!0,get:function(){return B.FixedSizeListBuilder}});Object.defineProperty(m,"FloatBuilder",{enumerable:!0,get:function(){return B.FloatBuilder}});Object.defineProperty(m,"Float16Builder",{enumerable:!0,get:function(){return B.Float16Builder}});Object.defineProperty(m,"Float32Builder",{enumerable:!0,get:function(){return B.Float32Builder}});Object.defineProperty(m,"Float64Builder",{enumerable:!0,get:function(){return B.Float64Builder}});Object.defineProperty(m,"IntervalBuilder",{enumerable:!0,get:function(){return B.IntervalBuilder}});Object.defineProperty(m,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return B.IntervalDayTimeBuilder}});Object.defineProperty(m,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return B.IntervalYearMonthBuilder}});Object.defineProperty(m,"IntBuilder",{enumerable:!0,get:function(){return B.IntBuilder}});Object.defineProperty(m,"Int8Builder",{enumerable:!0,get:function(){return B.Int8Builder}});Object.defineProperty(m,"Int16Builder",{enumerable:!0,get:function(){return B.Int16Builder}});Object.defineProperty(m,"Int32Builder",{enumerable:!0,get:function(){return B.Int32Builder}});Object.defineProperty(m,"Int64Builder",{enumerable:!0,get:function(){return B.Int64Builder}});Object.defineProperty(m,"Uint8Builder",{enumerable:!0,get:function(){return B.Uint8Builder}});Object.defineProperty(m,"Uint16Builder",{enumerable:!0,get:function(){return B.Uint16Builder}});Object.defineProperty(m,"Uint32Builder",{enumerable:!0,get:function(){return B.Uint32Builder}});Object.defineProperty(m,"Uint64Builder",{enumerable:!0,get:function(){return B.Uint64Builder}});Object.defineProperty(m,"ListBuilder",{enumerable:!0,get:function(){return B.ListBuilder}});Object.defineProperty(m,"MapBuilder",{enumerable:!0,get:function(){return B.MapBuilder}});Object.defineProperty(m,"NullBuilder",{enumerable:!0,get:function(){return B.NullBuilder}});Object.defineProperty(m,"StructBuilder",{enumerable:!0,get:function(){return B.StructBuilder}});Object.defineProperty(m,"TimestampBuilder",{enumerable:!0,get:function(){return B.TimestampBuilder}});Object.defineProperty(m,"TimestampSecondBuilder",{enumerable:!0,get:function(){return B.TimestampSecondBuilder}});Object.defineProperty(m,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return B.TimestampMillisecondBuilder}});Object.defineProperty(m,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return B.TimestampMicrosecondBuilder}});Object.defineProperty(m,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return B.TimestampNanosecondBuilder}});Object.defineProperty(m,"TimeBuilder",{enumerable:!0,get:function(){return B.TimeBuilder}});Object.defineProperty(m,"TimeSecondBuilder",{enumerable:!0,get:function(){return B.TimeSecondBuilder}});Object.defineProperty(m,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return B.TimeMillisecondBuilder}});Object.defineProperty(m,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return B.TimeMicrosecondBuilder}});Object.defineProperty(m,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return B.TimeNanosecondBuilder}});Object.defineProperty(m,"UnionBuilder",{enumerable:!0,get:function(){return B.UnionBuilder}});Object.defineProperty(m,"DenseUnionBuilder",{enumerable:!0,get:function(){return B.DenseUnionBuilder}});Object.defineProperty(m,"SparseUnionBuilder",{enumerable:!0,get:function(){return B.SparseUnionBuilder}});Object.defineProperty(m,"Utf8Builder",{enumerable:!0,get:function(){return B.Utf8Builder}})});var gw={};F_(gw,{Compression:()=>e6,Encoding:()=>t6,WriterProperties:()=>Ya,WriterPropertiesBuilder:()=>Lt,WriterVersion:()=>r6,default:()=>SA,readParquet:()=>Q8,writeParquet:()=>$8});function sc(){return(ww===null||ww.buffer!==ye.memory.buffer)&&(ww=new Uint8Array(ye.memory.buffer)),ww}function BA(t,e){return kA.decode(sc().subarray(t,t+e))}function lc(t){ac===lo.length&&lo.push(lo.length+1);let e=ac;return ac=lo[e],lo[e]=t,e}function Ca(t){return lo[t]}function Z8(t){t<36||(lo[t]=ac,ac=t)}function uc(t){let e=Ca(t);return Z8(t),e}function Wa(t,e,r){if(r===void 0){let s=hw.encode(t),u=e(s.length);return sc().subarray(u,u+s.length).set(s),Wn=s.length,u}let n=t.length,i=e(n),o=sc(),f=0;for(;f<n;f++){let s=t.charCodeAt(f);if(s>127)break;o[i+f]=s}if(f!==n){f!==0&&(t=t.slice(f)),i=r(i,n,n=f+t.length*3);let s=sc().subarray(i+f,i+n);f+=J8(t,s).written}return Wn=f,i}function IA(t,e){let r=e(t.length*1);return sc().set(t,r/1),Wn=t.length,r}function Ka(){return(bw===null||bw.buffer!==ye.memory.buffer)&&(bw=new Int32Array(ye.memory.buffer)),bw}function Q8(t){try{let i=ye.__wbindgen_add_to_stack_pointer(-16),o=IA(t,ye.__wbindgen_malloc),f=Wn;ye.readParquet(i,o,f);var e=Ka()[i/4+0],r=Ka()[i/4+1],n=Ka()[i/4+2];if(n)throw uc(r);return uc(e)}finally{ye.__wbindgen_add_to_stack_pointer(16)}}function X8(t,e){if(!(t instanceof e))throw new Error(`expected instance of ${e.name}`);return t.ptr}function $8(t,e){try{let f=ye.__wbindgen_add_to_stack_pointer(-16),s=IA(t,ye.__wbindgen_malloc),u=Wn;X8(e,Ya);var r=e.ptr;e.ptr=0,ye.writeParquet(f,s,u,r);var n=Ka()[f/4+0],i=Ka()[f/4+1],o=Ka()[f/4+2];if(o)throw uc(i);return uc(n)}finally{ye.__wbindgen_add_to_stack_pointer(16)}}async function n6(t,e){if(typeof Response=="function"&&t instanceof Response){if(typeof WebAssembly.instantiateStreaming=="function")try{return await WebAssembly.instantiateStreaming(t,e)}catch(n){if(t.headers.get("Content-Type")!="application/wasm")console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n",n);else throw n}let r=await t.arrayBuffer();return await WebAssembly.instantiate(r,e)}else{let r=await WebAssembly.instantiate(t,e);return r instanceof WebAssembly.Instance?{instance:r,module:t}:r}}async function xA(t){let e={};e.wbg={},e.wbg.__wbindgen_string_new=function(i,o){let f=BA(i,o);return lc(f)},e.wbg.__wbindgen_object_drop_ref=function(i){uc(i)},e.wbg.__wbg_buffer_7af23f65f6c64548=function(i){let o=Ca(i).buffer;return lc(o)},e.wbg.__wbg_newwithbyteoffsetandlength_ce1e75f0ce5f7974=function(i,o,f){let s=new Uint8Array(Ca(i),o>>>0,f>>>0);return lc(s)},e.wbg.__wbg_set_f25e869e4565d2a2=function(i,o,f){Ca(i).set(Ca(o),f>>>0)},e.wbg.__wbg_length_0acb1cf9bbaf8519=function(i){return Ca(i).length},e.wbg.__wbg_newwithlength_8f0657faca9f1422=function(i){let o=new Uint8Array(i>>>0);return lc(o)},e.wbg.__wbindgen_throw=function(i,o){throw new Error(BA(i,o))},e.wbg.__wbindgen_memory=function(){let i=ye.memory;return lc(i)},(typeof t=="string"||typeof Request=="function"&&t instanceof Request||typeof URL=="function"&&t instanceof URL)&&(t=fetch(t));let{instance:r,module:n}=await n6(await t,e);return ye=r.exports,xA.__wbindgen_wasm_module=n,ye}var ye,kA,ww,lo,ac,Wn,hw,J8,bw,e6,t6,r6,Ya,Lt,SA,EA=K(()=>{kA=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});kA.decode();ww=null;lo=new Array(32).fill(void 0);lo.push(void 0,null,!0,!1);ac=lo.length;Wn=0,hw=new TextEncoder("utf-8"),J8=typeof hw.encodeInto=="function"?function(t,e){return hw.encodeInto(t,e)}:function(t,e){let r=hw.encode(t);return e.set(r),{read:t.length,written:r.length}};bw=null;e6=Object.freeze({UNCOMPRESSED:0,"0":"UNCOMPRESSED",SNAPPY:1,"1":"SNAPPY",GZIP:2,"2":"GZIP",BROTLI:3,"3":"BROTLI",LZ4:4,"4":"LZ4",ZSTD:5,"5":"ZSTD"}),t6=Object.freeze({PLAIN:0,"0":"PLAIN",PLAIN_DICTIONARY:1,"1":"PLAIN_DICTIONARY",RLE:2,"2":"RLE",BIT_PACKED:3,"3":"BIT_PACKED",DELTA_BINARY_PACKED:4,"4":"DELTA_BINARY_PACKED",DELTA_LENGTH_BYTE_ARRAY:5,"5":"DELTA_LENGTH_BYTE_ARRAY",DELTA_BYTE_ARRAY:6,"6":"DELTA_BYTE_ARRAY",RLE_DICTIONARY:7,"7":"RLE_DICTIONARY",BYTE_STREAM_SPLIT:8,"8":"BYTE_STREAM_SPLIT"}),r6=Object.freeze({V1:0,"0":"V1",V2:1,"1":"V2"}),Ya=class{static __wrap(e){let r=Object.create(Ya.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();ye.__wbg_writerproperties_free(e)}},Lt=class{static __wrap(e){let r=Object.create(Lt.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();ye.__wbg_writerpropertiesbuilder_free(e)}constructor(){let e=ye.writerpropertiesbuilder_new();return Lt.__wrap(e)}build(){let e=this.__destroy_into_raw(),r=ye.writerpropertiesbuilder_build(e);return Ya.__wrap(r)}setWriterVersion(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setWriterVersion(r,e);return Lt.__wrap(n)}setDataPagesizeLimit(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setDataPagesizeLimit(r,e);return Lt.__wrap(n)}setDictionaryPagesizeLimit(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setDictionaryPagesizeLimit(r,e);return Lt.__wrap(n)}setWriteBatchSize(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setWriteBatchSize(r,e);return Lt.__wrap(n)}setMaxRowGroupSize(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setMaxRowGroupSize(r,e);return Lt.__wrap(n)}setCreatedBy(e){let r=this.__destroy_into_raw(),n=Wa(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),i=Wn,o=ye.writerpropertiesbuilder_setCreatedBy(r,n,i);return Lt.__wrap(o)}setEncoding(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setEncoding(r,e);return Lt.__wrap(n)}setCompression(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setCompression(r,e);return Lt.__wrap(n)}setDictionaryEnabled(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setDictionaryEnabled(r,e);return Lt.__wrap(n)}setStatisticsEnabled(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setStatisticsEnabled(r,e);return Lt.__wrap(n)}setMaxStatisticsSize(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setMaxStatisticsSize(r,e);return Lt.__wrap(n)}setColumnEncoding(e,r){let n=this.__destroy_into_raw(),i=Wa(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Wn,f=ye.writerpropertiesbuilder_setColumnEncoding(n,i,o,r);return Lt.__wrap(f)}setColumnCompression(e,r){let n=this.__destroy_into_raw(),i=Wa(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Wn,f=ye.writerpropertiesbuilder_setColumnCompression(n,i,o,r);return Lt.__wrap(f)}setColumnDictionaryEnabled(e,r){let n=this.__destroy_into_raw(),i=Wa(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Wn,f=ye.writerpropertiesbuilder_setColumnDictionaryEnabled(n,i,o,r);return Lt.__wrap(f)}setColumnStatisticsEnabled(e,r){let n=this.__destroy_into_raw(),i=Wa(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Wn,f=ye.writerpropertiesbuilder_setColumnStatisticsEnabled(n,i,o,r);return Lt.__wrap(f)}setColumnMaxStatisticsSize(e,r){let n=this.__destroy_into_raw(),i=Wa(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Wn,f=ye.writerpropertiesbuilder_setColumnMaxStatisticsSize(n,i,o,r);return Lt.__wrap(f)}};SA=xA});async function cc(t){return j_!==null?j_:(await SA(t),j_=gw,gw)}var j_,__=K(()=>{EA();j_=null});async function AA(t,e){let r=e?.parquet?.wasmUrl,n=await cc(r),i=new Uint8Array(t),o=n.readParquet(i),f=o.buffer.slice(o.byteOffset,o.byteLength+o.byteOffset);return i6(f)}function i6(t){let e=yw.RecordBatchStreamReader.from(t),r=[];for(let n of e)r.push(n);return new yw.Table(r)}var yw,OA=K(()=>{yw=ce(y_());__()});function s6(t,e){return new ArrayBuffer(0)}var o6,f6,FA,DA=K(()=>{o6=typeof __VERSION__!="undefined"?__VERSION__:"latest",f6={},FA={name:"Apache Parquet",id:"parquet",module:"parquet",version:o6,extensions:["parquet"],mimeTypes:["application/octet-stream"],encodeSync:s6,binary:!0,options:f6}});var NA=K(()=>{__()});async function RA(t,e){let r=e?.parquet?.wasmUrl,n=await cc(r),i=a6(t),o=new n.WriterPropertiesBuilder().build(),f=n.writeParquet(i,o);return f.buffer.slice(f.byteOffset,f.byteLength+f.byteOffset)}function a6(t){return PA.RecordBatchStreamWriter.writeAll(t).toUint8Array(!0)}var PA,HA=K(()=>{PA=ce(y_());NA()});var l6,u6,UA,MA=K(()=>{HA();l6=typeof __VERSION__!="undefined"?__VERSION__:"latest",u6={parquet:{wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},UA={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:l6,extensions:["parquet"],mimeTypes:["application/octet-stream"],encode:RA,binary:!0,options:u6}});function zA(t,e){if(!t)throw new Error(e||"loader assertion failed.")}var LA=K(()=>{});function c6(t){let e={};for(let r of t)e[r.name]&&console.warn("Schema: duplicated field name",r.name,r),e[r.name]=!0}function VA(t,e){return new Map([...t||new Map,...e||new Map])}var Kn,CA=K(()=>{LA();Kn=class{constructor(e,r){zA(Array.isArray(e)),c6(e),this.fields=e,this.metadata=r||new Map}compareTo(e){if(this.metadata!==e.metadata||this.fields.length!==e.fields.length)return!1;for(let r=0;r<this.fields.length;++r)if(!this.fields[r].compareTo(e.fields[r]))return!1;return!0}select(...e){let r=Object.create(null);for(let i of e)r[i]=!0;let n=this.fields.filter(i=>r[i.name]);return new Kn(n,this.metadata)}selectAt(...e){let r=e.map(n=>this.fields[n]).filter(Boolean);return new Kn(r,this.metadata)}assign(e){let r,n=this.metadata;if(e instanceof Kn){let f=e;r=f.fields,n=VA(VA(new Map,this.metadata),f.metadata)}else r=e;let i=Object.create(null);for(let f of this.fields)i[f.name]=f;for(let f of r)i[f.name]=f;let o=Object.values(i);return new Kn(o,n)}}});var uo,WA=K(()=>{uo=class{constructor(e,r,n=!1,i=new Map){this.name=e,this.type=r,this.nullable=n,this.metadata=i}get typeId(){return this.type&&this.type.typeId}clone(){return new uo(this.name,this.type,this.nullable,this.metadata)}compareTo(e){return this.name===e.name&&this.type===e.type&&this.nullable===e.nullable&&this.metadata===e.metadata}toString(){return`${this.type}${this.nullable?", nullable":""}${this.metadata?`, metadata: ${this.metadata}`:""}`}}});var Xe,KA=K(()=>{(function(C){C[C.NONE=0]="NONE",C[C.Null=1]="Null",C[C.Int=2]="Int",C[C.Float=3]="Float",C[C.Binary=4]="Binary",C[C.Utf8=5]="Utf8",C[C.Bool=6]="Bool",C[C.Decimal=7]="Decimal",C[C.Date=8]="Date",C[C.Time=9]="Time",C[C.Timestamp=10]="Timestamp",C[C.Interval=11]="Interval",C[C.List=12]="List",C[C.Struct=13]="Struct",C[C.Union=14]="Union",C[C.FixedSizeBinary=15]="FixedSizeBinary",C[C.FixedSizeList=16]="FixedSizeList",C[C.Map=17]="Map",C[C.Dictionary=-1]="Dictionary",C[C.Int8=-2]="Int8",C[C.Int16=-3]="Int16",C[C.Int32=-4]="Int32",C[C.Int64=-5]="Int64",C[C.Uint8=-6]="Uint8",C[C.Uint16=-7]="Uint16",C[C.Uint32=-8]="Uint32",C[C.Uint64=-9]="Uint64",C[C.Float16=-10]="Float16",C[C.Float32=-11]="Float32",C[C.Float64=-12]="Float64",C[C.DateDay=-13]="DateDay",C[C.DateMillisecond=-14]="DateMillisecond",C[C.TimestampSecond=-15]="TimestampSecond",C[C.TimestampMillisecond=-16]="TimestampMillisecond",C[C.TimestampMicrosecond=-17]="TimestampMicrosecond",C[C.TimestampNanosecond=-18]="TimestampNanosecond",C[C.TimeSecond=-19]="TimeSecond",C[C.TimeMillisecond=-20]="TimeMillisecond",C[C.TimeMicrosecond=-21]="TimeMicrosecond",C[C.TimeNanosecond=-22]="TimeNanosecond",C[C.DenseUnion=-23]="DenseUnion",C[C.SparseUnion=-24]="SparseUnion",C[C.IntervalDayTime=-25]="IntervalDayTime",C[C.IntervalYearMonth=-26]="IntervalYearMonth"})(Xe||(Xe={}))});var xr,q_,pc,Bi,dc,mc,hf,co,wc,hc,bc,YA,gc,Ga,Ii,po,yc,p6,v_,GA,T_,k_,d6,B_,I_,jc,ZA=K(()=>{KA();xr=class{static isNull(e){return e&&e.typeId===Xe.Null}static isInt(e){return e&&e.typeId===Xe.Int}static isFloat(e){return e&&e.typeId===Xe.Float}static isBinary(e){return e&&e.typeId===Xe.Binary}static isUtf8(e){return e&&e.typeId===Xe.Utf8}static isBool(e){return e&&e.typeId===Xe.Bool}static isDecimal(e){return e&&e.typeId===Xe.Decimal}static isDate(e){return e&&e.typeId===Xe.Date}static isTime(e){return e&&e.typeId===Xe.Time}static isTimestamp(e){return e&&e.typeId===Xe.Timestamp}static isInterval(e){return e&&e.typeId===Xe.Interval}static isList(e){return e&&e.typeId===Xe.List}static isStruct(e){return e&&e.typeId===Xe.Struct}static isUnion(e){return e&&e.typeId===Xe.Union}static isFixedSizeBinary(e){return e&&e.typeId===Xe.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===Xe.FixedSizeList}static isMap(e){return e&&e.typeId===Xe.Map}static isDictionary(e){return e&&e.typeId===Xe.Dictionary}get typeId(){return Xe.NONE}compareTo(e){return this===e}},q_=class extends xr{get typeId(){return Xe.Null}get[Symbol.toStringTag](){return"Null"}toString(){return"Null"}},pc=class extends xr{get typeId(){return Xe.Bool}get[Symbol.toStringTag](){return"Bool"}toString(){return"Bool"}},Bi=class extends xr{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return Xe.Int}get[Symbol.toStringTag](){return"Int"}toString(){return`${this.isSigned?"I":"Ui"}nt${this.bitWidth}`}},dc=class extends Bi{constructor(){super(!0,8)}},mc=class extends Bi{constructor(){super(!0,16)}},hf=class extends Bi{constructor(){super(!0,32)}},co=class extends Bi{constructor(){super(!0,64)}},wc=class extends Bi{constructor(){super(!1,16)}},hc=class extends Bi{constructor(){super(!1,32)}},bc=class extends Bi{constructor(){super(!1,64)}},YA={HALF:16,SINGLE:32,DOUBLE:64},gc=class extends xr{constructor(e){super();this.precision=e}get typeId(){return Xe.Float}get[Symbol.toStringTag](){return"Float"}toString(){return`Float${this.precision}`}},Ga=class extends gc{constructor(){super(YA.SINGLE)}},Ii=class extends gc{constructor(){super(YA.DOUBLE)}},po=class extends xr{constructor(){super()}get typeId(){return Xe.Binary}toString(){return"Binary"}get[Symbol.toStringTag](){return"Binary"}},yc=class extends xr{get typeId(){return Xe.Utf8}get[Symbol.toStringTag](){return"Utf8"}toString(){return"Utf8"}},p6={DAY:0,MILLISECOND:1},v_=class extends xr{constructor(e){super();this.unit=e}get typeId(){return Xe.Date}get[Symbol.toStringTag](){return"Date"}toString(){return`Date${(this.unit+1)*32}<${p6[this.unit]}>`}},GA={SECOND:1,MILLISECOND:1e3,MICROSECOND:1e6,NANOSECOND:1e9},T_=class extends xr{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return Xe.Time}toString(){return`Time${this.bitWidth}<${GA[this.unit]}>`}get[Symbol.toStringTag](){return"Time"}},k_=class extends xr{constructor(e,r=null){super();this.unit=e,this.timezone=r}get typeId(){return Xe.Timestamp}get[Symbol.toStringTag](){return"Timestamp"}toString(){return`Timestamp<${GA[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}},d6={DAY_TIME:0,YEAR_MONTH:1},B_=class extends xr{constructor(e){super();this.unit=e}get typeId(){return Xe.Interval}get[Symbol.toStringTag](){return"Interval"}toString(){return`Interval<${d6[this.unit]}>`}},I_=class extends xr{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return Xe.FixedSizeList}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get[Symbol.toStringTag](){return"FixedSizeList"}toString(){return`FixedSizeList[${this.listSize}]<${this.valueType}>`}},jc=class extends xr{constructor(e){super();this.children=e}get typeId(){return Xe.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}get[Symbol.toStringTag](){return"Struct"}}});var JA=K(()=>{CA();WA();ZA()});var QA=K(()=>{JA()});function XA(t){let e=$A(t.schema);return new Kn(e)}function I6(t){let e=new Map;for(let r in t)if(r!=="name"){let n=typeof t[r]!="string"?JSON.stringify(t[r]):t[r];e.set(r,n)}return e}function $A(t){let e=[];for(let r in t){let n=t[r];if(n.fields){let i=$A(n.fields),o=new uo(r,new jc(i),n.optional);e.push(o)}else{let i=B6[n.type],o=I6(n),f=new uo(r,new i,n.optional,o);e.push(f)}}return e}var B6,eO=K(()=>{QA();B6={BOOLEAN:pc,INT32:hf,INT64:Ii,INT96:Ii,FLOAT:Ga,DOUBLE:Ii,BYTE_ARRAY:po,FIXED_LEN_BYTE_ARRAY:po,UTF8:yc,DATE:hf,TIME_MILLIS:co,TIME_MICROS:co,TIMESTAMP_MILLIS:co,TIMESTAMP_MICROS:co,UINT_8:hf,UINT_16:wc,UINT_32:hc,UINT_64:bc,INT_8:dc,INT_16:mc,INT_32:hf,INT_64:co,JSON:po,BSON:po,INTERVAL:po,DECIMAL_INT32:Ga,DECIMAL_INT64:Ii,DECIMAL_BYTE_ARRAY:Ii,DECIMAL_FIXED_LEN_BYTE_ARRAY:Ii}});var rO={};F_(rO,{ParquetEnvelopeReader:()=>Ci,ParquetLoader:()=>tO,ParquetReader:()=>Yi,ParquetSchema:()=>ju,ParquetWasmLoader:()=>x6,ParquetWasmWorkerLoader:()=>vw,ParquetWasmWriter:()=>UA,ParquetWorkerLoader:()=>Tw,_ParquetWriter:()=>FA,_typecheckParquetLoader:()=>S6,convertParquetToArrowSchema:()=>XA,preloadCompressions:()=>OB});var tO,x6,S6,nO=K(()=>{D_();N_();FI();OA();DA();MA();Lp();Zg();Qg();Kb();eO();tO={...Tw,parse:OI,parseFileInBatches:Xg},x6={...vw,parse:AA},S6=tO});var A6=k((eG,iO)=>{var E6=(nO(),rO);globalThis.loaders=globalThis.loaders||{};iO.exports=Object.assign(globalThis.loaders,E6)});A6();})();
36
+ }`),this._dictionaries=[],this._recordBatches=[],super.close()}};vi.RecordBatchJSONWriter=Lm;function Qj(t,e){let r=e;e instanceof Kj.Table&&(r=e.chunks,t.reset(void 0,e.schema));for(let n of r)t.write(n);return t.finish()}async function Xj(t,e){for await(let r of e)t.write(r);return t.finish()}function NS({name:t,type:e,nullable:r}){let n=new zU.JSONTypeAssembler;return{name:t,nullable:r,type:n.visit(e),children:(e.children||[]).map(NS),dictionary:RU.DataType.isDictionary(e)?{id:e.id,isOrdered:e.isOrdered,indexType:n.visit(e.indices)}:void 0}}function LU(t,e,r=!1){let n=new HU.Field(`${e}`,t.type,t.nullCount>0),i=PS.JSONVectorAssembler.assemble(new NU.Column(n,[t]));return JSON.stringify({id:e,isDelta:r,data:{count:t.length,columns:i}},null,2)}function VU(t){return JSON.stringify({count:t.length,columns:PS.JSONVectorAssembler.assemble(t)},null,2)}});var t0=B(mf=>{"use strict";Object.defineProperty(mf,"__esModule",{value:!0});mf.distributeVectorsIntoRecordBatches=mf.distributeColumnsIntoRecordBatches=mf.ensureSameLengthData=void 0;var RS=Un(),$j=ir(),CU=uf(),WU=ao(),e0=new Uint8Array(0),HS=t=>[e0,e0,new Uint8Array(t),e0];function KU(t,e,r=e.reduce((n,i)=>Math.max(n,i.length),0)){let n,i,o=-1,f=e.length,s=[...t.fields],u=[],l=(r+63&~63)>>3;for(;++o<f;)(n=e[o])&&n.length===r?u[o]=n:((i=s[o]).nullable||(s[o]=s[o].clone({nullable:!0})),u[o]=n?n._changeLengthAndBackfillNullBitmap(r):RS.Data.new(i.type,0,r,r,HS(l)));return[new $j.Schema(s),r,u]}mf.ensureSameLengthData=KU;function YU(t){return zS(new $j.Schema(t.map(({field:e})=>e)),t)}mf.distributeColumnsIntoRecordBatches=YU;function zS(t,e){return GU(t,e.map(r=>r instanceof CU.Chunked?r.chunks.map(n=>n.data):[r.data]))}mf.distributeVectorsIntoRecordBatches=zS;function GU(t,e){let r=[...t.fields],n=[],i={numBatches:e.reduce((w,p)=>Math.max(w,p.length),0)},o=0,f=0,s=-1,u=e.length,l,c=[];for(;i.numBatches-- >0;){for(f=Number.POSITIVE_INFINITY,s=-1;++s<u;)c[s]=l=e[s].shift(),f=Math.min(f,l?l.length:f);isFinite(f)&&(c=ZU(r,f,c,e,i),f>0&&(n[o++]=[f,c.slice()]))}return[t=new $j.Schema(r,t.metadata),n.map(w=>new WU.RecordBatch(t,...w))]}function ZU(t,e,r,n,i){let o,f,s=0,u=-1,l=n.length,c=(e+63&~63)>>3;for(;++u<l;)(o=r[u])&&(s=o.length)>=e?s===e?r[u]=o:(r[u]=o.slice(0,e),o=o.slice(e,s-e),i.numBatches=Math.max(i.numBatches,n[u].unshift(o))):((f=t[u]).nullable||(t[u]=f.clone({nullable:!0})),r[u]=o?o._changeLengthAndBackfillNullBitmap(e):RS.Data.new(f.type,0,e,e,HS(c)));return r}});var Mt=B(Cm=>{"use strict";Object.defineProperty(Cm,"__esModule",{value:!0});Cm.BaseVector=void 0;var JU=bt(),QU=uf(),XU=Ku(),r0=zt(),n0=class extends r0.AbstractVector{constructor(e,r){super();this._children=r,this.numChildren=e.childData.length,this._bindDataAccessors(this.data=e)}get type(){return this.data.type}get typeId(){return this.data.typeId}get length(){return this.data.length}get offset(){return this.data.offset}get stride(){return this.data.stride}get nullCount(){return this.data.nullCount}get byteLength(){return this.data.byteLength}get VectorName(){return`${JU.Type[this.typeId]}Vector`}get ArrayType(){return this.type.ArrayType}get values(){return this.data.values}get typeIds(){return this.data.typeIds}get nullBitmap(){return this.data.nullBitmap}get valueOffsets(){return this.data.valueOffsets}get[Symbol.toStringTag](){return`${this.VectorName}<${this.type[Symbol.toStringTag]}>`}clone(e,r=this._children){return r0.Vector.new(e,r)}concat(...e){return QU.Chunked.concat(this,...e)}slice(e,r){return XU.clampRange(this,e,r,this._sliceInternal)}isValid(e){if(this.nullCount>0){let r=this.offset+e;return(this.nullBitmap[r>>3]&1<<r%8)!==0}return!0}getChildAt(e){return e<0||e>=this.numChildren?null:(this._children||(this._children=[]))[e]||(this._children[e]=r0.Vector.new(this.data.childData[e]))}toJSON(){return[...this]}_sliceInternal(e,r,n){return e.clone(e.data.slice(r,n-r),null)}_bindDataAccessors(e){}};Cm.BaseVector=n0;n0.prototype[Symbol.isConcatSpreadable]=!0});var i0=B(Wm=>{"use strict";Object.defineProperty(Wm,"__esModule",{value:!0});Wm.BinaryVector=void 0;var $U=zt(),eM=Mt(),tM=nt(),US=class extends eM.BaseVector{asUtf8(){return $U.Vector.new(this.data.clone(new tM.Utf8))}};Wm.BinaryVector=US});var o0=B(Km=>{"use strict";Object.defineProperty(Km,"__esModule",{value:!0});Km.BoolVector=void 0;var rM=nt(),nM=Mt(),iM=Ti(),MS=class extends nM.BaseVector{static from(e){return iM.vectorFromValuesWithType(()=>new rM.Bool,e)}};Km.BoolVector=MS});var s0=B(wf=>{"use strict";Object.defineProperty(wf,"__esModule",{value:!0});wf.DateMillisecondVector=wf.DateDayVector=wf.DateVector=void 0;var oM=bt(),fM=Mt(),LS=Ti(),f0=nt(),Ym=class extends fM.BaseVector{static from(...e){return e.length===2?LS.vectorFromValuesWithType(()=>e[1]===oM.DateUnit.DAY?new f0.DateDay:new f0.DateMillisecond,e[0]):LS.vectorFromValuesWithType(()=>new f0.DateMillisecond,e[0])}};wf.DateVector=Ym;var VS=class extends Ym{};wf.DateDayVector=VS;var CS=class extends Ym{};wf.DateMillisecondVector=CS});var a0=B(Gm=>{"use strict";Object.defineProperty(Gm,"__esModule",{value:!0});Gm.DecimalVector=void 0;var sM=Mt(),WS=class extends sM.BaseVector{};Gm.DecimalVector=WS});var Jm=B(Zm=>{"use strict";Object.defineProperty(Zm,"__esModule",{value:!0});Zm.DictionaryVector=void 0;var aM=Un(),KS=zt(),lM=Mt(),uM=Ti(),cM=nt(),l0=class extends lM.BaseVector{constructor(e){super(e);this.indices=KS.Vector.new(e.clone(this.type.indices))}static from(...e){if(e.length===3){let[r,n,i]=e,o=new cM.Dictionary(r.type,n,null,null);return KS.Vector.new(aM.Data.Dictionary(o,0,i.length,0,null,i,r))}return uM.vectorFromValuesWithType(()=>e[0].type,e[0])}get dictionary(){return this.data.dictionary}reverseLookup(e){return this.dictionary.indexOf(e)}getKey(e){return this.indices.get(e)}getValue(e){return this.dictionary.get(e)}setKey(e,r){return this.indices.set(e,r)}setValue(e,r){return this.dictionary.set(e,r)}};Zm.DictionaryVector=l0;l0.prototype.indices=null});var u0=B(Qm=>{"use strict";Object.defineProperty(Qm,"__esModule",{value:!0});Qm.FixedSizeBinaryVector=void 0;var pM=Mt(),YS=class extends pM.BaseVector{};Qm.FixedSizeBinaryVector=YS});var c0=B(Xm=>{"use strict";Object.defineProperty(Xm,"__esModule",{value:!0});Xm.FixedSizeListVector=void 0;var dM=Mt(),GS=class extends dM.BaseVector{};Xm.FixedSizeListVector=GS});var w0=B(Bi=>{"use strict";Object.defineProperty(Bi,"__esModule",{value:!0});Bi.Float64Vector=Bi.Float32Vector=Bi.Float16Vector=Bi.FloatVector=void 0;var mM=Un(),wM=zt(),hM=Mt(),bM=Ti(),gs=nt(),rc=class extends hM.BaseVector{static from(e){let r=jM(this);if(e instanceof ArrayBuffer||ArrayBuffer.isView(e)){let n=yM(e.constructor)||r;if(r===null&&(r=n),r&&r===n){let i=new r,o=e.byteLength/i.ArrayType.BYTES_PER_ELEMENT;if(!gM(r,e.constructor))return wM.Vector.new(mM.Data.Float(i,0,o,0,null,e))}}if(r)return bM.vectorFromValuesWithType(()=>new r,e);throw e instanceof DataView||e instanceof ArrayBuffer?new TypeError(`Cannot infer float type from instance of ${e.constructor.name}`):new TypeError("Unrecognized FloatVector input")}};Bi.FloatVector=rc;var p0=class extends rc{toFloat32Array(){return new Float32Array(this)}toFloat64Array(){return new Float64Array(this)}};Bi.Float16Vector=p0;var d0=class extends rc{};Bi.Float32Vector=d0;var m0=class extends rc{};Bi.Float64Vector=m0;var gM=(t,e)=>t===gs.Float16&&e!==Uint16Array,yM=t=>{switch(t){case Uint16Array:return gs.Float16;case Float32Array:return gs.Float32;case Float64Array:return gs.Float64;default:return null}},jM=t=>{switch(t){case p0:return gs.Float16;case d0:return gs.Float32;case m0:return gs.Float64;default:return null}}});var h0=B(hf=>{"use strict";Object.defineProperty(hf,"__esModule",{value:!0});hf.IntervalYearMonthVector=hf.IntervalDayTimeVector=hf.IntervalVector=void 0;var _M=Mt(),$m=class extends _M.BaseVector{};hf.IntervalVector=$m;var ZS=class extends $m{};hf.IntervalDayTimeVector=ZS;var JS=class extends $m{};hf.IntervalYearMonthVector=JS});var ew=B(Gt=>{"use strict";Object.defineProperty(Gt,"__esModule",{value:!0});Gt.Uint64Vector=Gt.Uint32Vector=Gt.Uint16Vector=Gt.Uint8Vector=Gt.Int64Vector=Gt.Int32Vector=Gt.Int16Vector=Gt.Int8Vector=Gt.IntVector=void 0;var qM=Un(),vM=zt(),TM=Mt(),BM=Ti(),QS=gr(),XS=Xt(),Dt=nt(),ki=class extends TM.BaseVector{static from(...e){let[r,n=!1]=e,i=xM(this,n);if(r instanceof ArrayBuffer||ArrayBuffer.isView(r)){let o=IM(r.constructor,n)||i;if(i===null&&(i=o),i&&i===o){let f=new i,s=r.byteLength/f.ArrayType.BYTES_PER_ELEMENT;return kM(i,r.constructor)&&(s*=.5),vM.Vector.new(qM.Data.Int(f,0,s,0,null,r))}}if(i)return BM.vectorFromValuesWithType(()=>new i,r);throw r instanceof DataView||r instanceof ArrayBuffer?new TypeError(`Cannot infer integer type from instance of ${r.constructor.name}`):new TypeError("Unrecognized IntVector input")}};Gt.IntVector=ki;var b0=class extends ki{};Gt.Int8Vector=b0;var g0=class extends ki{};Gt.Int16Vector=g0;var y0=class extends ki{};Gt.Int32Vector=y0;var j0=class extends ki{toBigInt64Array(){return XS.toBigInt64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigInt64Array())}};Gt.Int64Vector=j0;var _0=class extends ki{};Gt.Uint8Vector=_0;var q0=class extends ki{};Gt.Uint16Vector=q0;var v0=class extends ki{};Gt.Uint32Vector=v0;var T0=class extends ki{toBigUint64Array(){return XS.toBigUint64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigUint64Array())}};Gt.Uint64Vector=T0;var kM=(t,e)=>(t===Dt.Int64||t===Dt.Uint64)&&(e===Int32Array||e===Uint32Array),IM=(t,e)=>{switch(t){case Int8Array:return Dt.Int8;case Int16Array:return Dt.Int16;case Int32Array:return e?Dt.Int64:Dt.Int32;case QS.BigInt64Array:return Dt.Int64;case Uint8Array:return Dt.Uint8;case Uint16Array:return Dt.Uint16;case Uint32Array:return e?Dt.Uint64:Dt.Uint32;case QS.BigUint64Array:return Dt.Uint64;default:return null}},xM=(t,e)=>{switch(t){case b0:return Dt.Int8;case g0:return Dt.Int16;case y0:return e?Dt.Int64:Dt.Int32;case j0:return Dt.Int64;case _0:return Dt.Uint8;case q0:return Dt.Uint16;case v0:return e?Dt.Uint64:Dt.Uint32;case T0:return Dt.Uint64;default:return null}}});var B0=B(tw=>{"use strict";Object.defineProperty(tw,"__esModule",{value:!0});tw.ListVector=void 0;var SM=Mt(),$S=class extends SM.BaseVector{};tw.ListVector=$S});var k0=B(rw=>{"use strict";Object.defineProperty(rw,"__esModule",{value:!0});rw.MapVector=void 0;var EM=Cu(),AM=zt(),OM=Mt(),FM=nt(),eE=class extends OM.BaseVector{asList(){let e=this.type.children[0];return AM.Vector.new(this.data.clone(new FM.List(e)))}bind(e){let r=this.getChildAt(0),{[e]:n,[e+1]:i}=this.valueOffsets;return new EM.MapRow(r.slice(n,i))}};rw.MapVector=eE});var I0=B(nw=>{"use strict";Object.defineProperty(nw,"__esModule",{value:!0});nw.NullVector=void 0;var DM=Mt(),tE=class extends DM.BaseVector{};nw.NullVector=tE});var x0=B(iw=>{"use strict";Object.defineProperty(iw,"__esModule",{value:!0});iw.StructVector=void 0;var PM=Cu(),NM=Mt(),RM=Symbol.for("rowIndex"),rE=class extends NM.BaseVector{bind(e){let r=this._row||(this._row=new PM.StructRow(this)),n=Object.create(r);return n[RM]=e,n}};iw.StructVector=rE});var S0=B(Bn=>{"use strict";Object.defineProperty(Bn,"__esModule",{value:!0});Bn.TimestampNanosecondVector=Bn.TimestampMicrosecondVector=Bn.TimestampMillisecondVector=Bn.TimestampSecondVector=Bn.TimestampVector=void 0;var HM=Mt(),Ha=class extends HM.BaseVector{};Bn.TimestampVector=Ha;var nE=class extends Ha{};Bn.TimestampSecondVector=nE;var iE=class extends Ha{};Bn.TimestampMillisecondVector=iE;var oE=class extends Ha{};Bn.TimestampMicrosecondVector=oE;var fE=class extends Ha{};Bn.TimestampNanosecondVector=fE});var E0=B(kn=>{"use strict";Object.defineProperty(kn,"__esModule",{value:!0});kn.TimeNanosecondVector=kn.TimeMicrosecondVector=kn.TimeMillisecondVector=kn.TimeSecondVector=kn.TimeVector=void 0;var zM=Mt(),za=class extends zM.BaseVector{};kn.TimeVector=za;var sE=class extends za{};kn.TimeSecondVector=sE;var aE=class extends za{};kn.TimeMillisecondVector=aE;var lE=class extends za{};kn.TimeMicrosecondVector=lE;var uE=class extends za{};kn.TimeNanosecondVector=uE});var A0=B(bf=>{"use strict";Object.defineProperty(bf,"__esModule",{value:!0});bf.SparseUnionVector=bf.DenseUnionVector=bf.UnionVector=void 0;var UM=Mt(),ow=class extends UM.BaseVector{get typeIdToChildIndex(){return this.data.type.typeIdToChildIndex}};bf.UnionVector=ow;var cE=class extends ow{get valueOffsets(){return this.data.valueOffsets}};bf.DenseUnionVector=cE;var pE=class extends ow{};bf.SparseUnionVector=pE});var O0=B(fw=>{"use strict";Object.defineProperty(fw,"__esModule",{value:!0});fw.Utf8Vector=void 0;var MM=zt(),LM=Mt(),dE=nt(),VM=Ti(),mE=class extends LM.BaseVector{static from(e){return VM.vectorFromValuesWithType(()=>new dE.Utf8,e)}asBinary(){return MM.Vector.new(this.data.clone(new dE.Binary))}};fw.Utf8Vector=mE});var wE=B(gf=>{"use strict";Object.defineProperty(gf,"__esModule",{value:!0});gf.partial2=gf.partial1=gf.partial0=void 0;function CM(t){return function(){return t(this)}}gf.partial0=CM;function WM(t){return function(e){return t(this,e)}}gf.partial1=WM;function KM(t){return function(e,r){return t(this,e,r)}}gf.partial2=KM});var P0=B(Ua=>{"use strict";Object.defineProperty(Ua,"__esModule",{value:!0});Ua.instance=Ua.GetVisitor=void 0;var sw=Hu(),YM=cr(),GM=Xf(),ZM=Du(),In=bt(),_e=class extends YM.Visitor{};Ua.GetVisitor=_e;var JM=(t,e)=>864e5*t[e],F0=(t,e)=>4294967296*t[e+1]+(t[e]>>>0),QM=(t,e)=>4294967296*(t[e+1]/1e3)+(t[e]>>>0)/1e3,XM=(t,e)=>4294967296*(t[e+1]/1e6)+(t[e]>>>0)/1e6,hE=t=>new Date(t),$M=(t,e)=>hE(JM(t,e)),eL=(t,e)=>hE(F0(t,e)),tL=(t,e)=>null,bE=(t,e,r)=>{let{[r]:n,[r+1]:i}=e;return n!=null&&i!=null?t.subarray(n,i):null},rL=({offset:t,values:e},r)=>{let n=t+r;return(e[n>>3]&1<<n%8)!=0},gE=({values:t},e)=>$M(t,e),yE=({values:t},e)=>eL(t,e*2),Ii=({stride:t,values:e},r)=>e[t*r],jE=({stride:t,values:e},r)=>ZM.uint16ToFloat64(e[t*r]),D0=({stride:t,values:e,type:r},n)=>sw.BN.new(e.subarray(t*n,t*(n+1)),r.isSigned),nL=({stride:t,values:e},r)=>e.subarray(t*r,t*(r+1)),iL=({values:t,valueOffsets:e},r)=>bE(t,e,r),oL=({values:t,valueOffsets:e},r)=>{let n=bE(t,e,r);return n!==null?GM.decodeUtf8(n):null},fL=(t,e)=>t.type.bitWidth<64?Ii(t,e):D0(t,e),sL=(t,e)=>t.type.precision!==In.Precision.HALF?Ii(t,e):jE(t,e),aL=(t,e)=>t.type.unit===In.DateUnit.DAY?gE(t,e):yE(t,e),_E=({values:t},e)=>1e3*F0(t,e*2),qE=({values:t},e)=>F0(t,e*2),vE=({values:t},e)=>QM(t,e*2),TE=({values:t},e)=>XM(t,e*2),lL=(t,e)=>{switch(t.type.unit){case In.TimeUnit.SECOND:return _E(t,e);case In.TimeUnit.MILLISECOND:return qE(t,e);case In.TimeUnit.MICROSECOND:return vE(t,e);case In.TimeUnit.NANOSECOND:return TE(t,e)}},BE=({values:t,stride:e},r)=>t[e*r],kE=({values:t,stride:e},r)=>t[e*r],IE=({values:t},e)=>sw.BN.signed(t.subarray(2*e,2*(e+1))),xE=({values:t},e)=>sw.BN.signed(t.subarray(2*e,2*(e+1))),uL=(t,e)=>{switch(t.type.unit){case In.TimeUnit.SECOND:return BE(t,e);case In.TimeUnit.MILLISECOND:return kE(t,e);case In.TimeUnit.MICROSECOND:return IE(t,e);case In.TimeUnit.NANOSECOND:return xE(t,e)}},cL=({values:t},e)=>sw.BN.decimal(t.subarray(4*e,4*(e+1))),pL=(t,e)=>{let r=t.getChildAt(0),{valueOffsets:n,stride:i}=t;return r.slice(n[e*i],n[e*i+1])},dL=(t,e)=>t.bind(e),mL=(t,e)=>t.bind(e),wL=(t,e)=>t.type.mode===In.UnionMode.Dense?SE(t,e):EE(t,e),SE=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(t.valueOffsets[e]):null},EE=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(e):null},hL=(t,e)=>t.getValue(t.getKey(e)),bL=(t,e)=>t.type.unit===In.IntervalUnit.DAY_TIME?AE(t,e):OE(t,e),AE=({values:t},e)=>t.subarray(2*e,2*(e+1)),OE=({values:t},e)=>{let r=t[e],n=new Int32Array(2);return n[0]=r/12|0,n[1]=r%12|0,n},gL=(t,e)=>{let r=t.getChildAt(0),{stride:n}=t;return r.slice(e*n,(e+1)*n)};_e.prototype.visitNull=tL;_e.prototype.visitBool=rL;_e.prototype.visitInt=fL;_e.prototype.visitInt8=Ii;_e.prototype.visitInt16=Ii;_e.prototype.visitInt32=Ii;_e.prototype.visitInt64=D0;_e.prototype.visitUint8=Ii;_e.prototype.visitUint16=Ii;_e.prototype.visitUint32=Ii;_e.prototype.visitUint64=D0;_e.prototype.visitFloat=sL;_e.prototype.visitFloat16=jE;_e.prototype.visitFloat32=Ii;_e.prototype.visitFloat64=Ii;_e.prototype.visitUtf8=oL;_e.prototype.visitBinary=iL;_e.prototype.visitFixedSizeBinary=nL;_e.prototype.visitDate=aL;_e.prototype.visitDateDay=gE;_e.prototype.visitDateMillisecond=yE;_e.prototype.visitTimestamp=lL;_e.prototype.visitTimestampSecond=_E;_e.prototype.visitTimestampMillisecond=qE;_e.prototype.visitTimestampMicrosecond=vE;_e.prototype.visitTimestampNanosecond=TE;_e.prototype.visitTime=uL;_e.prototype.visitTimeSecond=BE;_e.prototype.visitTimeMillisecond=kE;_e.prototype.visitTimeMicrosecond=IE;_e.prototype.visitTimeNanosecond=xE;_e.prototype.visitDecimal=cL;_e.prototype.visitList=pL;_e.prototype.visitStruct=mL;_e.prototype.visitUnion=wL;_e.prototype.visitDenseUnion=SE;_e.prototype.visitSparseUnion=EE;_e.prototype.visitDictionary=hL;_e.prototype.visitInterval=bL;_e.prototype.visitIntervalDayTime=AE;_e.prototype.visitIntervalYearMonth=OE;_e.prototype.visitFixedSizeList=gL;_e.prototype.visitMap=dL;Ua.instance=new _e});var NE=B(Ma=>{"use strict";Object.defineProperty(Ma,"__esModule",{value:!0});Ma.instance=Ma.IndexOfVisitor=void 0;var yL=cr(),FE=di(),DE=Ku(),qe=class extends yL.Visitor{};Ma.IndexOfVisitor=qe;function jL(t,e){return e===null&&t.length>0?0:-1}function _L(t,e){let{nullBitmap:r}=t.data;if(!r||t.nullCount<=0)return-1;let n=0;for(let i of new FE.BitIterator(r,t.data.offset+(e||0),t.length,r,FE.getBool)){if(!i)return n;++n}return-1}function Pe(t,e,r){if(e===void 0)return-1;if(e===null)return _L(t,r);let n=DE.createElementComparator(e);for(let i=(r||0)-1,o=t.length;++i<o;)if(n(t.get(i)))return i;return-1}function PE(t,e,r){let n=DE.createElementComparator(e);for(let i=(r||0)-1,o=t.length;++i<o;)if(n(t.get(i)))return i;return-1}qe.prototype.visitNull=jL;qe.prototype.visitBool=Pe;qe.prototype.visitInt=Pe;qe.prototype.visitInt8=Pe;qe.prototype.visitInt16=Pe;qe.prototype.visitInt32=Pe;qe.prototype.visitInt64=Pe;qe.prototype.visitUint8=Pe;qe.prototype.visitUint16=Pe;qe.prototype.visitUint32=Pe;qe.prototype.visitUint64=Pe;qe.prototype.visitFloat=Pe;qe.prototype.visitFloat16=Pe;qe.prototype.visitFloat32=Pe;qe.prototype.visitFloat64=Pe;qe.prototype.visitUtf8=Pe;qe.prototype.visitBinary=Pe;qe.prototype.visitFixedSizeBinary=Pe;qe.prototype.visitDate=Pe;qe.prototype.visitDateDay=Pe;qe.prototype.visitDateMillisecond=Pe;qe.prototype.visitTimestamp=Pe;qe.prototype.visitTimestampSecond=Pe;qe.prototype.visitTimestampMillisecond=Pe;qe.prototype.visitTimestampMicrosecond=Pe;qe.prototype.visitTimestampNanosecond=Pe;qe.prototype.visitTime=Pe;qe.prototype.visitTimeSecond=Pe;qe.prototype.visitTimeMillisecond=Pe;qe.prototype.visitTimeMicrosecond=Pe;qe.prototype.visitTimeNanosecond=Pe;qe.prototype.visitDecimal=Pe;qe.prototype.visitList=Pe;qe.prototype.visitStruct=Pe;qe.prototype.visitUnion=Pe;qe.prototype.visitDenseUnion=PE;qe.prototype.visitSparseUnion=PE;qe.prototype.visitDictionary=Pe;qe.prototype.visitInterval=Pe;qe.prototype.visitIntervalDayTime=Pe;qe.prototype.visitIntervalYearMonth=Pe;qe.prototype.visitFixedSizeList=Pe;qe.prototype.visitMap=Pe;Ma.instance=new qe});var N0=B(La=>{"use strict";Object.defineProperty(La,"__esModule",{value:!0});La.instance=La.IteratorVisitor=void 0;var aw=bt(),qL=cr(),vL=di(),RE=P0(),ve=class extends qL.Visitor{};La.IteratorVisitor=ve;function TL(t){let e=RE.instance.getVisitFn(t);return new vL.BitIterator(t.data.nullBitmap,t.data.offset,t.length,t,(r,n,i,o)=>(i&1<<o)!=0?e(r,n):null)}var HE=class{constructor(e,r){this.vector=e,this.getFn=r,this.index=0}next(){return this.index<this.vector.length?{value:this.getFn(this.vector,this.index++)}:{done:!0,value:null}}[Symbol.iterator](){return this}};function Ae(t){if(t.nullCount>0)return TL(t);let{type:e,typeId:r,length:n}=t;return t.stride===1&&(r===aw.Type.Timestamp||r===aw.Type.Int&&e.bitWidth!==64||r===aw.Type.Time&&e.bitWidth!==64||r===aw.Type.Float&&e.precision>0)?t.data.values.subarray(0,n)[Symbol.iterator]():new HE(t,RE.instance.getVisitFn(t))}ve.prototype.visitNull=Ae;ve.prototype.visitBool=Ae;ve.prototype.visitInt=Ae;ve.prototype.visitInt8=Ae;ve.prototype.visitInt16=Ae;ve.prototype.visitInt32=Ae;ve.prototype.visitInt64=Ae;ve.prototype.visitUint8=Ae;ve.prototype.visitUint16=Ae;ve.prototype.visitUint32=Ae;ve.prototype.visitUint64=Ae;ve.prototype.visitFloat=Ae;ve.prototype.visitFloat16=Ae;ve.prototype.visitFloat32=Ae;ve.prototype.visitFloat64=Ae;ve.prototype.visitUtf8=Ae;ve.prototype.visitBinary=Ae;ve.prototype.visitFixedSizeBinary=Ae;ve.prototype.visitDate=Ae;ve.prototype.visitDateDay=Ae;ve.prototype.visitDateMillisecond=Ae;ve.prototype.visitTimestamp=Ae;ve.prototype.visitTimestampSecond=Ae;ve.prototype.visitTimestampMillisecond=Ae;ve.prototype.visitTimestampMicrosecond=Ae;ve.prototype.visitTimestampNanosecond=Ae;ve.prototype.visitTime=Ae;ve.prototype.visitTimeSecond=Ae;ve.prototype.visitTimeMillisecond=Ae;ve.prototype.visitTimeMicrosecond=Ae;ve.prototype.visitTimeNanosecond=Ae;ve.prototype.visitDecimal=Ae;ve.prototype.visitList=Ae;ve.prototype.visitStruct=Ae;ve.prototype.visitUnion=Ae;ve.prototype.visitDenseUnion=Ae;ve.prototype.visitSparseUnion=Ae;ve.prototype.visitDictionary=Ae;ve.prototype.visitInterval=Ae;ve.prototype.visitIntervalDayTime=Ae;ve.prototype.visitIntervalYearMonth=Ae;ve.prototype.visitFixedSizeList=Ae;ve.prototype.visitMap=Ae;La.instance=new ve});var zE=B(Va=>{"use strict";Object.defineProperty(Va,"__esModule",{value:!0});Va.instance=Va.ToArrayVisitor=void 0;var nc=bt(),BL=cr(),kL=N0(),Te=class extends BL.Visitor{};Va.ToArrayVisitor=Te;function Oe(t){let{type:e,length:r,stride:n}=t;switch(e.typeId){case nc.Type.Int:case nc.Type.Float:case nc.Type.Decimal:case nc.Type.Time:case nc.Type.Timestamp:return t.data.values.subarray(0,r*n)}return[...kL.instance.visit(t)]}Te.prototype.visitNull=Oe;Te.prototype.visitBool=Oe;Te.prototype.visitInt=Oe;Te.prototype.visitInt8=Oe;Te.prototype.visitInt16=Oe;Te.prototype.visitInt32=Oe;Te.prototype.visitInt64=Oe;Te.prototype.visitUint8=Oe;Te.prototype.visitUint16=Oe;Te.prototype.visitUint32=Oe;Te.prototype.visitUint64=Oe;Te.prototype.visitFloat=Oe;Te.prototype.visitFloat16=Oe;Te.prototype.visitFloat32=Oe;Te.prototype.visitFloat64=Oe;Te.prototype.visitUtf8=Oe;Te.prototype.visitBinary=Oe;Te.prototype.visitFixedSizeBinary=Oe;Te.prototype.visitDate=Oe;Te.prototype.visitDateDay=Oe;Te.prototype.visitDateMillisecond=Oe;Te.prototype.visitTimestamp=Oe;Te.prototype.visitTimestampSecond=Oe;Te.prototype.visitTimestampMillisecond=Oe;Te.prototype.visitTimestampMicrosecond=Oe;Te.prototype.visitTimestampNanosecond=Oe;Te.prototype.visitTime=Oe;Te.prototype.visitTimeSecond=Oe;Te.prototype.visitTimeMillisecond=Oe;Te.prototype.visitTimeMicrosecond=Oe;Te.prototype.visitTimeNanosecond=Oe;Te.prototype.visitDecimal=Oe;Te.prototype.visitList=Oe;Te.prototype.visitStruct=Oe;Te.prototype.visitUnion=Oe;Te.prototype.visitDenseUnion=Oe;Te.prototype.visitSparseUnion=Oe;Te.prototype.visitDictionary=Oe;Te.prototype.visitInterval=Oe;Te.prototype.visitIntervalDayTime=Oe;Te.prototype.visitIntervalYearMonth=Oe;Te.prototype.visitFixedSizeList=Oe;Te.prototype.visitMap=Oe;Va.instance=new Te});var UE=B(Ca=>{"use strict";Object.defineProperty(Ca,"__esModule",{value:!0});Ca.instance=Ca.ByteWidthVisitor=void 0;var IL=cr(),xL=bt(),ic=(t,e)=>t+e,R0=t=>`Cannot compute the byte width of variable-width column ${t}`,H0=class extends IL.Visitor{visitNull(e){return 0}visitInt(e){return e.bitWidth/8}visitFloat(e){return e.ArrayType.BYTES_PER_ELEMENT}visitBinary(e){throw new Error(R0(e))}visitUtf8(e){throw new Error(R0(e))}visitBool(e){return 1/8}visitDecimal(e){return 16}visitDate(e){return(e.unit+1)*4}visitTime(e){return e.bitWidth/8}visitTimestamp(e){return e.unit===xL.TimeUnit.SECOND?4:8}visitInterval(e){return(e.unit+1)*4}visitList(e){throw new Error(R0(e))}visitStruct(e){return this.visitFields(e.children).reduce(ic,0)}visitUnion(e){return this.visitFields(e.children).reduce(ic,0)}visitFixedSizeBinary(e){return e.byteWidth}visitFixedSizeList(e){return e.listSize*this.visitFields(e.children).reduce(ic,0)}visitMap(e){return this.visitFields(e.children).reduce(ic,0)}visitDictionary(e){return this.visit(e.indices)}visitFields(e){return(e||[]).map(r=>this.visit(r.type))}visitSchema(e){return this.visitFields(e.fields).reduce(ic,0)}};Ca.ByteWidthVisitor=H0;Ca.instance=new H0});var ME=B(Wa=>{"use strict";Object.defineProperty(Wa,"__esModule",{value:!0});Wa.instance=Wa.GetVectorConstructor=void 0;var SL=cr(),EL=i0(),AL=o0(),z0=s0(),OL=a0(),FL=Jm(),DL=u0(),PL=c0(),lw=w0(),U0=h0(),lo=ew(),NL=B0(),RL=k0(),HL=I0(),zL=x0(),oc=S0(),fc=E0(),M0=A0(),UL=O0(),L0=class extends SL.Visitor{visitNull(){return HL.NullVector}visitBool(){return AL.BoolVector}visitInt(){return lo.IntVector}visitInt8(){return lo.Int8Vector}visitInt16(){return lo.Int16Vector}visitInt32(){return lo.Int32Vector}visitInt64(){return lo.Int64Vector}visitUint8(){return lo.Uint8Vector}visitUint16(){return lo.Uint16Vector}visitUint32(){return lo.Uint32Vector}visitUint64(){return lo.Uint64Vector}visitFloat(){return lw.FloatVector}visitFloat16(){return lw.Float16Vector}visitFloat32(){return lw.Float32Vector}visitFloat64(){return lw.Float64Vector}visitUtf8(){return UL.Utf8Vector}visitBinary(){return EL.BinaryVector}visitFixedSizeBinary(){return DL.FixedSizeBinaryVector}visitDate(){return z0.DateVector}visitDateDay(){return z0.DateDayVector}visitDateMillisecond(){return z0.DateMillisecondVector}visitTimestamp(){return oc.TimestampVector}visitTimestampSecond(){return oc.TimestampSecondVector}visitTimestampMillisecond(){return oc.TimestampMillisecondVector}visitTimestampMicrosecond(){return oc.TimestampMicrosecondVector}visitTimestampNanosecond(){return oc.TimestampNanosecondVector}visitTime(){return fc.TimeVector}visitTimeSecond(){return fc.TimeSecondVector}visitTimeMillisecond(){return fc.TimeMillisecondVector}visitTimeMicrosecond(){return fc.TimeMicrosecondVector}visitTimeNanosecond(){return fc.TimeNanosecondVector}visitDecimal(){return OL.DecimalVector}visitList(){return NL.ListVector}visitStruct(){return zL.StructVector}visitUnion(){return M0.UnionVector}visitDenseUnion(){return M0.DenseUnionVector}visitSparseUnion(){return M0.SparseUnionVector}visitDictionary(){return FL.DictionaryVector}visitInterval(){return U0.IntervalVector}visitIntervalDayTime(){return U0.IntervalDayTimeVector}visitIntervalYearMonth(){return U0.IntervalYearMonthVector}visitFixedSizeList(){return PL.FixedSizeListVector}visitMap(){return RL.MapVector}};Wa.GetVectorConstructor=L0;Wa.instance=new L0});var Ti=B(V=>{"use strict";Object.defineProperty(V,"__esModule",{value:!0});V.vectorFromValuesWithType=V.StructRow=V.MapRow=V.Utf8Vector=V.SparseUnionVector=V.DenseUnionVector=V.UnionVector=V.TimeNanosecondVector=V.TimeMicrosecondVector=V.TimeMillisecondVector=V.TimeSecondVector=V.TimeVector=V.TimestampNanosecondVector=V.TimestampMicrosecondVector=V.TimestampMillisecondVector=V.TimestampSecondVector=V.TimestampVector=V.StructVector=V.NullVector=V.MapVector=V.ListVector=V.Uint64Vector=V.Uint32Vector=V.Uint16Vector=V.Uint8Vector=V.Int64Vector=V.Int32Vector=V.Int16Vector=V.Int8Vector=V.IntVector=V.IntervalYearMonthVector=V.IntervalDayTimeVector=V.IntervalVector=V.Float64Vector=V.Float32Vector=V.Float16Vector=V.FloatVector=V.FixedSizeListVector=V.FixedSizeBinaryVector=V.DictionaryVector=V.DecimalVector=V.DateMillisecondVector=V.DateDayVector=V.DateVector=V.Chunked=V.BoolVector=V.BinaryVector=V.BaseVector=V.Vector=void 0;var ML=zt();Object.defineProperty(V,"Vector",{enumerable:!0,get:function(){return ML.Vector}});var LL=Mt();Object.defineProperty(V,"BaseVector",{enumerable:!0,get:function(){return LL.BaseVector}});var VL=i0();Object.defineProperty(V,"BinaryVector",{enumerable:!0,get:function(){return VL.BinaryVector}});var CL=o0();Object.defineProperty(V,"BoolVector",{enumerable:!0,get:function(){return CL.BoolVector}});var WL=uf();Object.defineProperty(V,"Chunked",{enumerable:!0,get:function(){return WL.Chunked}});var V0=s0();Object.defineProperty(V,"DateVector",{enumerable:!0,get:function(){return V0.DateVector}});Object.defineProperty(V,"DateDayVector",{enumerable:!0,get:function(){return V0.DateDayVector}});Object.defineProperty(V,"DateMillisecondVector",{enumerable:!0,get:function(){return V0.DateMillisecondVector}});var KL=a0();Object.defineProperty(V,"DecimalVector",{enumerable:!0,get:function(){return KL.DecimalVector}});var YL=Jm();Object.defineProperty(V,"DictionaryVector",{enumerable:!0,get:function(){return YL.DictionaryVector}});var GL=u0();Object.defineProperty(V,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return GL.FixedSizeBinaryVector}});var ZL=c0();Object.defineProperty(V,"FixedSizeListVector",{enumerable:!0,get:function(){return ZL.FixedSizeListVector}});var uw=w0();Object.defineProperty(V,"FloatVector",{enumerable:!0,get:function(){return uw.FloatVector}});Object.defineProperty(V,"Float16Vector",{enumerable:!0,get:function(){return uw.Float16Vector}});Object.defineProperty(V,"Float32Vector",{enumerable:!0,get:function(){return uw.Float32Vector}});Object.defineProperty(V,"Float64Vector",{enumerable:!0,get:function(){return uw.Float64Vector}});var C0=h0();Object.defineProperty(V,"IntervalVector",{enumerable:!0,get:function(){return C0.IntervalVector}});Object.defineProperty(V,"IntervalDayTimeVector",{enumerable:!0,get:function(){return C0.IntervalDayTimeVector}});Object.defineProperty(V,"IntervalYearMonthVector",{enumerable:!0,get:function(){return C0.IntervalYearMonthVector}});var uo=ew();Object.defineProperty(V,"IntVector",{enumerable:!0,get:function(){return uo.IntVector}});Object.defineProperty(V,"Int8Vector",{enumerable:!0,get:function(){return uo.Int8Vector}});Object.defineProperty(V,"Int16Vector",{enumerable:!0,get:function(){return uo.Int16Vector}});Object.defineProperty(V,"Int32Vector",{enumerable:!0,get:function(){return uo.Int32Vector}});Object.defineProperty(V,"Int64Vector",{enumerable:!0,get:function(){return uo.Int64Vector}});Object.defineProperty(V,"Uint8Vector",{enumerable:!0,get:function(){return uo.Uint8Vector}});Object.defineProperty(V,"Uint16Vector",{enumerable:!0,get:function(){return uo.Uint16Vector}});Object.defineProperty(V,"Uint32Vector",{enumerable:!0,get:function(){return uo.Uint32Vector}});Object.defineProperty(V,"Uint64Vector",{enumerable:!0,get:function(){return uo.Uint64Vector}});var JL=B0();Object.defineProperty(V,"ListVector",{enumerable:!0,get:function(){return JL.ListVector}});var QL=k0();Object.defineProperty(V,"MapVector",{enumerable:!0,get:function(){return QL.MapVector}});var XL=I0();Object.defineProperty(V,"NullVector",{enumerable:!0,get:function(){return XL.NullVector}});var $L=x0();Object.defineProperty(V,"StructVector",{enumerable:!0,get:function(){return $L.StructVector}});var sc=S0();Object.defineProperty(V,"TimestampVector",{enumerable:!0,get:function(){return sc.TimestampVector}});Object.defineProperty(V,"TimestampSecondVector",{enumerable:!0,get:function(){return sc.TimestampSecondVector}});Object.defineProperty(V,"TimestampMillisecondVector",{enumerable:!0,get:function(){return sc.TimestampMillisecondVector}});Object.defineProperty(V,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return sc.TimestampMicrosecondVector}});Object.defineProperty(V,"TimestampNanosecondVector",{enumerable:!0,get:function(){return sc.TimestampNanosecondVector}});var ac=E0();Object.defineProperty(V,"TimeVector",{enumerable:!0,get:function(){return ac.TimeVector}});Object.defineProperty(V,"TimeSecondVector",{enumerable:!0,get:function(){return ac.TimeSecondVector}});Object.defineProperty(V,"TimeMillisecondVector",{enumerable:!0,get:function(){return ac.TimeMillisecondVector}});Object.defineProperty(V,"TimeMicrosecondVector",{enumerable:!0,get:function(){return ac.TimeMicrosecondVector}});Object.defineProperty(V,"TimeNanosecondVector",{enumerable:!0,get:function(){return ac.TimeNanosecondVector}});var W0=A0();Object.defineProperty(V,"UnionVector",{enumerable:!0,get:function(){return W0.UnionVector}});Object.defineProperty(V,"DenseUnionVector",{enumerable:!0,get:function(){return W0.DenseUnionVector}});Object.defineProperty(V,"SparseUnionVector",{enumerable:!0,get:function(){return W0.SparseUnionVector}});var e8=O0();Object.defineProperty(V,"Utf8Vector",{enumerable:!0,get:function(){return e8.Utf8Vector}});var LE=Cu();Object.defineProperty(V,"MapRow",{enumerable:!0,get:function(){return LE.MapRow}});Object.defineProperty(V,"StructRow",{enumerable:!0,get:function(){return LE.StructRow}});var lc=wE(),K0=bt(),Ka=zt(),VE=uf(),ys=Mt(),t8=di(),cw=gr(),CE=At(),WE=P0(),KE=aj(),YE=NE(),GE=zE(),ZE=N0(),JE=UE(),QE=ME();Ka.Vector.new=r8;Ka.Vector.from=i8;function r8(t,...e){return new(QE.instance.getVisitFn(t)())(t,...e)}function n8(t,e){if(cw.isIterable(e))return Ka.Vector.from({nullValues:[null,void 0],type:t(),values:e});if(cw.isAsyncIterable(e))return Ka.Vector.from({nullValues:[null,void 0],type:t(),values:e});let{values:r=[],type:n=t(),nullValues:i=[null,void 0]}={...e};return cw.isIterable(r)?Ka.Vector.from({nullValues:i,...e,type:n}):Ka.Vector.from({nullValues:i,...e,type:n})}V.vectorFromValuesWithType=n8;function i8(t){let{values:e=[],...r}={nullValues:[null,void 0],...t};if(cw.isIterable(e)){let n=[...CE.Builder.throughIterable(r)(e)];return n.length===1?n[0]:VE.Chunked.concat(n)}return(async n=>{let i=CE.Builder.throughAsyncIterable(r);for await(let o of i(e))n.push(o);return n.length===1?n[0]:VE.Chunked.concat(n)})([])}ys.BaseVector.prototype.get=function(e){return WE.instance.visit(this,e)};ys.BaseVector.prototype.set=function(e,r){return KE.instance.visit(this,e,r)};ys.BaseVector.prototype.indexOf=function(e,r){return YE.instance.visit(this,e,r)};ys.BaseVector.prototype.toArray=function(){return GE.instance.visit(this)};ys.BaseVector.prototype.getByteWidth=function(){return JE.instance.visit(this.type)};ys.BaseVector.prototype[Symbol.iterator]=function(){return ZE.instance.visit(this)};ys.BaseVector.prototype._bindDataAccessors=a8;Object.keys(K0.Type).map(t=>K0.Type[t]).filter(t=>typeof t=="number").filter(t=>t!==K0.Type.NONE).forEach(t=>{let e=QE.instance.visit(t);e.prototype.get=lc.partial1(WE.instance.getVisitFn(t)),e.prototype.set=lc.partial2(KE.instance.getVisitFn(t)),e.prototype.indexOf=lc.partial2(YE.instance.getVisitFn(t)),e.prototype.toArray=lc.partial0(GE.instance.getVisitFn(t)),e.prototype.getByteWidth=o8(JE.instance.getVisitFn(t)),e.prototype[Symbol.iterator]=lc.partial0(ZE.instance.getVisitFn(t))});function o8(t){return function(){return t(this.type)}}function f8(t){return function(e){return this.isValid(e)?t.call(this,e):null}}function s8(t){return function(e,r){t8.setBool(this.nullBitmap,this.offset+e,r!=null)&&t.call(this,e,r)}}function a8(){let t=this.nullBitmap;t&&t.byteLength>0&&(this.get=f8(this.get),this.set=s8(this.set))}});var tc=B(pw=>{"use strict";Object.defineProperty(pw,"__esModule",{value:!0});pw.Table=void 0;var l8=Oa(),XE=ir(),Y0=ao(),u8=uc(),G0=nt(),$E=Aa(),Z0=gr(),eA=Vm(),tA=t0(),J0=Ti(),fr=class extends J0.Chunked{constructor(...e){let r=null;e[0]instanceof XE.Schema&&(r=e.shift());let n=$E.selectArgs(Y0.RecordBatch,e);if(!r&&!(r=n[0]&&n[0].schema))throw new TypeError("Table must be initialized with a Schema or at least one RecordBatch");n[0]||(n[0]=new Y0._InternalEmptyPlaceholderRecordBatch(r));super(new G0.Struct(r.fields),n);this._schema=r,this._chunks=n}static empty(e=new XE.Schema([])){return new fr(e,[])}static from(e){if(!e)return fr.empty();if(typeof e=="object"){let n=Z0.isIterable(e.values)?c8(e):Z0.isAsyncIterable(e.values)?p8(e):null;if(n!==null)return n}let r=u8.RecordBatchReader.from(e);return Z0.isPromise(r)?(async()=>await fr.from(await r))():r.isSync()&&(r=r.open())?r.schema?new fr(r.schema,[...r]):fr.empty():(async n=>{let i=await n,o=i.schema,f=[];if(o){for await(let s of i)f.push(s);return new fr(o,f)}return fr.empty()})(r.open())}static async fromAsync(e){return await fr.from(e)}static fromStruct(e){return fr.new(e.data.childData,e.type.children)}static new(...e){return new fr(...tA.distributeColumnsIntoRecordBatches($E.selectColumnArgs(e)))}get schema(){return this._schema}get length(){return this._length}get chunks(){return this._chunks}get numCols(){return this._numChildren}clone(e=this._chunks){return new fr(this._schema,e)}getColumn(e){return this.getColumnAt(this.getColumnIndex(e))}getColumnAt(e){return this.getChildAt(e)}getColumnIndex(e){return this._schema.fields.findIndex(r=>r.name===e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r,n,i=this._schema.fields,o=this._children||(this._children=[]);if(n=o[e])return n;if(r=i[e]){let f=this._chunks.map(s=>s.getChildAt(e)).filter(s=>s!=null);if(f.length>0)return o[e]=new l8.Column(r,f)}return null}serialize(e="binary",r=!0){return(r?eA.RecordBatchStreamWriter:eA.RecordBatchFileWriter).writeAll(this).toUint8Array(!0)}count(){return this._length}select(...e){let r=this._schema.fields.reduce((n,i,o)=>n.set(i.name,o),new Map);return this.selectAt(...e.map(n=>r.get(n)).filter(n=>n>-1))}selectAt(...e){let r=this._schema.selectAt(...e);return new fr(r,this._chunks.map(({length:n,data:{childData:i}})=>new Y0.RecordBatch(r,n,e.map(o=>i[o]).filter(Boolean))))}assign(e){let r=this._schema.fields,[n,i]=e.schema.fields.reduce((s,u,l)=>{let[c,w]=s,p=r.findIndex(g=>g.name===u.name);return~p?w[p]=l:c.push(l),s},[[],[]]),o=this._schema.assign(e.schema),f=[...r.map((s,u,l,c=i[u])=>c===void 0?this.getColumnAt(u):e.getColumnAt(c)),...n.map(s=>e.getColumnAt(s))].filter(Boolean);return new fr(...tA.distributeVectorsIntoRecordBatches(o,f))}};pw.Table=fr;function c8(t){let{type:e}=t;return e instanceof G0.Struct?fr.fromStruct(J0.StructVector.from(t)):null}function p8(t){let{type:e}=t;return e instanceof G0.Struct?J0.StructVector.from(t).then(r=>fr.fromStruct(r)):null}});var ao=B(Ya=>{"use strict";Object.defineProperty(Ya,"__esModule",{value:!0});Ya._InternalEmptyPlaceholderRecordBatch=Ya.RecordBatch=void 0;var Q0=Un(),X0=tc(),d8=zt(),m8=cr(),w8=ir(),h8=gr(),b8=uf(),g8=Aa(),$0=nt(),y8=t0(),j8=Ti(),yf=class extends j8.StructVector{constructor(...e){let r,n=e[0],i;if(e[1]instanceof Q0.Data)[,r,i]=e;else{let o=n.fields,[,f,s]=e;r=Q0.Data.Struct(new $0.Struct(o),0,f,0,null,s)}super(r,i);this._schema=n}static from(e){return h8.isIterable(e.values),X0.Table.from(e)}static new(...e){let[r,n]=g8.selectFieldArgs(e),i=n.filter(o=>o instanceof d8.Vector);return new yf(...y8.ensureSameLengthData(new w8.Schema(r),i.map(o=>o.data)))}clone(e,r=this._children){return new yf(this._schema,e,r)}concat(...e){let r=this._schema,n=b8.Chunked.flatten(this,...e);return new X0.Table(r,n.map(({data:i})=>new yf(r,i)))}get schema(){return this._schema}get numCols(){return this._schema.fields.length}get dictionaries(){return this._dictionaries||(this._dictionaries=dw.collect(this))}select(...e){let r=this._schema.fields.reduce((n,i,o)=>n.set(i.name,o),new Map);return this.selectAt(...e.map(n=>r.get(n)).filter(n=>n>-1))}selectAt(...e){let r=this._schema.selectAt(...e),n=e.map(i=>this.data.childData[i]).filter(Boolean);return new yf(r,this.length,n)}};Ya.RecordBatch=yf;var rA=class extends yf{constructor(e){super(e,0,e.fields.map(r=>Q0.Data.new(r.type,0,0,0)))}};Ya._InternalEmptyPlaceholderRecordBatch=rA;var dw=class extends m8.Visitor{constructor(){super(...arguments);this.dictionaries=new Map}static collect(e){return new dw().visit(e.data,new $0.Struct(e.schema.fields)).dictionaries}visit(e,r){return $0.DataType.isDictionary(r)?this.visitDictionary(e,r):(e.childData.forEach((n,i)=>this.visit(n,r.children[i].type)),this)}visitDictionary(e,r){let n=e.dictionary;return n&&n.length>0&&this.dictionaries.set(r.id,n),this}}});var uc=B(En=>{"use strict";Object.defineProperty(En,"__esModule",{value:!0});En.AsyncRecordBatchFileReader=En.RecordBatchFileReader=En.AsyncRecordBatchStreamReader=En.RecordBatchStreamReader=En.RecordBatchReader=void 0;var nA=zt(),mw=bt(),iA=yj(),oA=Ou(),fA=ff(),cc=qj(),sA=zx(),e_=ao(),js=fa(),xn=Om(),Sn=gr(),xi=class extends js.ReadableInterop{constructor(e){super();this._impl=e}get closed(){return this._impl.closed}get schema(){return this._impl.schema}get autoDestroy(){return this._impl.autoDestroy}get dictionaries(){return this._impl.dictionaries}get numDictionaries(){return this._impl.numDictionaries}get numRecordBatches(){return this._impl.numRecordBatches}get footer(){return this._impl.isFile()?this._impl.footer:null}isSync(){return this._impl.isSync()}isAsync(){return this._impl.isAsync()}isFile(){return this._impl.isFile()}isStream(){return this._impl.isStream()}next(){return this._impl.next()}throw(e){return this._impl.throw(e)}return(e){return this._impl.return(e)}cancel(){return this._impl.cancel()}reset(e){return this._impl.reset(e),this._DOMStream=void 0,this._nodeStream=void 0,this}open(e){let r=this._impl.open(e);return Sn.isPromise(r)?r.then(()=>this):this}readRecordBatch(e){return this._impl.isFile()?this._impl.readRecordBatch(e):null}[Symbol.iterator](){return this._impl[Symbol.iterator]()}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}toDOMStream(){return oA.default.toDOMStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this})}toNodeStream(){return oA.default.toNodeStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this},{objectMode:!0})}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}static from(e){return e instanceof xi?e:Sn.isArrowJSON(e)?_8(e):Sn.isFileHandle(e)?T8(e):Sn.isPromise(e)?(async()=>await xi.from(await e))():Sn.isFetchResponse(e)||Sn.isReadableDOMStream(e)||Sn.isReadableNodeStream(e)||Sn.isAsyncIterable(e)?v8(new fA.AsyncByteStream(e)):q8(new fA.ByteStream(e))}static readAll(e){return e instanceof xi?e.isSync()?cA(e):pA(e):Sn.isArrowJSON(e)||ArrayBuffer.isView(e)||Sn.isIterable(e)||Sn.isIteratorResult(e)?cA(e):pA(e)}};En.RecordBatchReader=xi;var Ga=class extends xi{constructor(e){super(e);this._impl=e}[Symbol.iterator](){return this._impl[Symbol.iterator]()}async*[Symbol.asyncIterator](){yield*this[Symbol.iterator]()}};En.RecordBatchStreamReader=Ga;var Za=class extends xi{constructor(e){super(e);this._impl=e}[Symbol.iterator](){throw new Error("AsyncRecordBatchStreamReader is not Iterable")}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}};En.AsyncRecordBatchStreamReader=Za;var ww=class extends Ga{constructor(e){super(e);this._impl=e}};En.RecordBatchFileReader=ww;var t_=class extends Za{constructor(e){super(e);this._impl=e}};En.AsyncRecordBatchFileReader=t_;var r_=class{constructor(e=new Map){this.closed=!1,this.autoDestroy=!0,this._dictionaryIndex=0,this._recordBatchIndex=0,this.dictionaries=e}get numDictionaries(){return this._dictionaryIndex}get numRecordBatches(){return this._recordBatchIndex}isSync(){return!1}isAsync(){return!1}isFile(){return!1}isStream(){return!1}reset(e){return this._dictionaryIndex=0,this._recordBatchIndex=0,this.schema=e,this.dictionaries=new Map,this}_loadRecordBatch(e,r){return new e_.RecordBatch(this.schema,e.length,this._loadVectors(e,r,this.schema.fields))}_loadDictionaryBatch(e,r){let{id:n,isDelta:i,data:o}=e,{dictionaries:f,schema:s}=this,u=f.get(n);if(i||!u){let l=s.dictionaries.get(n);return u&&i?u.concat(nA.Vector.new(this._loadVectors(o,r,[l])[0])):nA.Vector.new(this._loadVectors(o,r,[l])[0])}return u}_loadVectors(e,r,n){return new sA.VectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}},pc=class extends r_{constructor(e,r){super(r);this._reader=Sn.isArrowJSON(e)?new xn.JSONMessageReader(this._handle=e):new xn.MessageReader(this._handle=e)}isSync(){return!0}isStream(){return!0}[Symbol.iterator](){return this}cancel(){!this.closed&&(this.closed=!0)&&(this.reset()._reader.return(),this._reader=null,this.dictionaries=null)}open(e){return this.closed||(this.autoDestroy=uA(this,e),this.schema||(this.schema=this._reader.readSchema())||this.cancel()),this}throw(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.throw(e):js.ITERATOR_DONE}return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.return(e):js.ITERATOR_DONE}next(){if(this.closed)return js.ITERATOR_DONE;let e,{_reader:r}=this;for(;e=this._readNextMessageAndValidate();)if(e.isSchema())this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),o=this._loadRecordBatch(n,i);return{done:!1,value:o}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),o=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,o)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new e_._InternalEmptyPlaceholderRecordBatch(this.schema)}):this.return()}_readNextMessageAndValidate(e){return this._reader.readMessage(e)}},dc=class extends r_{constructor(e,r){super(r);this._reader=new xn.AsyncMessageReader(this._handle=e)}isAsync(){return!0}isStream(){return!0}[Symbol.asyncIterator](){return this}async cancel(){!this.closed&&(this.closed=!0)&&(await this.reset()._reader.return(),this._reader=null,this.dictionaries=null)}async open(e){return this.closed||(this.autoDestroy=uA(this,e),this.schema||(this.schema=await this._reader.readSchema())||await this.cancel()),this}async throw(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.throw(e):js.ITERATOR_DONE}async return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.return(e):js.ITERATOR_DONE}async next(){if(this.closed)return js.ITERATOR_DONE;let e,{_reader:r}=this;for(;e=await this._readNextMessageAndValidate();)if(e.isSchema())await this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=await r.readMessageBody(e.bodyLength),o=this._loadRecordBatch(n,i);return{done:!1,value:o}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=await r.readMessageBody(e.bodyLength),o=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,o)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new e_._InternalEmptyPlaceholderRecordBatch(this.schema)}):await this.return()}async _readNextMessageAndValidate(e){return await this._reader.readMessage(e)}},n_=class extends pc{constructor(e,r){super(e instanceof cc.RandomAccessFile?e:new cc.RandomAccessFile(e),r)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isSync(){return!0}isFile(){return!0}open(e){if(!this.closed&&!this._footer){this.schema=(this._footer=this._readFooter()).schema;for(let r of this._footer.dictionaryBatches())r&&this._readDictionaryBatch(this._dictionaryIndex++)}return super.open(e)}readRecordBatch(e){if(this.closed)return null;this._footer||this.open();let r=this._footer&&this._footer.getRecordBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(mw.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),o=this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,o)}}return null}_readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(mw.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),o=this._reader.readMessageBody(n.bodyLength),f=this._loadDictionaryBatch(i,o);this.dictionaries.set(i.id,f)}}}_readFooter(){let{_handle:e}=this,r=e.size-xn.magicAndPadding,n=e.readInt32(r),i=e.readAt(r-n,n);return iA.Footer.decode(i)}_readNextMessageAndValidate(e){if(this._footer||this.open(),this._footer&&this._recordBatchIndex<this.numRecordBatches){let r=this._footer&&this._footer.getRecordBatch(this._recordBatchIndex);if(r&&this._handle.seek(r.offset))return this._reader.readMessage(e)}return null}},aA=class extends dc{constructor(e,...r){let n=typeof r[0]!="number"?r.shift():void 0,i=r[0]instanceof Map?r.shift():void 0;super(e instanceof cc.AsyncRandomAccessFile?e:new cc.AsyncRandomAccessFile(e,n),i)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isFile(){return!0}isAsync(){return!0}async open(e){if(!this.closed&&!this._footer){this.schema=(this._footer=await this._readFooter()).schema;for(let r of this._footer.dictionaryBatches())r&&await this._readDictionaryBatch(this._dictionaryIndex++)}return await super.open(e)}async readRecordBatch(e){if(this.closed)return null;this._footer||await this.open();let r=this._footer&&this._footer.getRecordBatch(e);if(r&&await this._handle.seek(r.offset)){let n=await this._reader.readMessage(mw.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),o=await this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,o)}}return null}async _readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&await this._handle.seek(r.offset)){let n=await this._reader.readMessage(mw.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),o=await this._reader.readMessageBody(n.bodyLength),f=this._loadDictionaryBatch(i,o);this.dictionaries.set(i.id,f)}}}async _readFooter(){let{_handle:e}=this;e._pending&&await e._pending;let r=e.size-xn.magicAndPadding,n=await e.readInt32(r),i=await e.readAt(r-n,n);return iA.Footer.decode(i)}async _readNextMessageAndValidate(e){if(this._footer||await this.open(),this._footer&&this._recordBatchIndex<this.numRecordBatches){let r=this._footer.getRecordBatch(this._recordBatchIndex);if(r&&await this._handle.seek(r.offset))return await this._reader.readMessage(e)}return null}},lA=class extends pc{constructor(e,r){super(e,r)}_loadVectors(e,r,n){return new sA.JSONVectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}};function uA(t,e){return e&&typeof e.autoDestroy=="boolean"?e.autoDestroy:t.autoDestroy}function*cA(t){let e=xi.from(t);try{if(!e.open({autoDestroy:!1}).closed)do yield e;while(!e.reset().open().closed)}finally{e.cancel()}}async function*pA(t){let e=await xi.from(t);try{if(!(await e.open({autoDestroy:!1})).closed)do yield e;while(!(await e.reset().open()).closed)}finally{await e.cancel()}}function _8(t){return new Ga(new lA(t))}function q8(t){let e=t.peek(xn.magicLength+7&~7);return e&&e.byteLength>=4?xn.checkForMagicArrowString(e)?new ww(new n_(t.read())):new Ga(new pc(t)):new Ga(new pc(function*(){}()))}async function v8(t){let e=await t.peek(xn.magicLength+7&~7);return e&&e.byteLength>=4?xn.checkForMagicArrowString(e)?new ww(new n_(await t.read())):new Za(new dc(t)):new Za(new dc(async function*(){}()))}async function T8(t){let{size:e}=await t.stat(),r=new cc.AsyncRandomAccessFile(t,e);return e>=xn.magicX2AndPadding&&xn.checkForMagicArrowString(await r.readAt(0,xn.magicLength+7&~7))?new t_(new aA(r)):new Za(new dc(r))}});var wA=B(hw=>{"use strict";Object.defineProperty(hw,"__esModule",{value:!0});hw.toDOMStream=void 0;var dA=Xt(),mA=gr();function B8(t,e){if(mA.isAsyncIterable(t))return I8(t,e);if(mA.isIterable(t))return k8(t,e);throw new Error("toDOMStream() must be called with an Iterable or AsyncIterable")}hw.toDOMStream=B8;function k8(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,start(f){o(f,r||(r=t[Symbol.iterator]()))},pull(f){r?o(f,r):f.close()},cancel(){(r&&r.return&&r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});function o(f,s){let u,l=null,c=f.desiredSize||null;for(;!(l=s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=dA.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),f.enqueue(l.value),c!=null&&--c<=0)return;f.close()}}function I8(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,async start(f){await o(f,r||(r=t[Symbol.asyncIterator]()))},async pull(f){r?await o(f,r):f.close()},async cancel(){(r&&r.return&&await r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});async function o(f,s){let u,l=null,c=f.desiredSize||null;for(;!(l=await s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=dA.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),f.enqueue(l.value),c!=null&&--c<=0)return;f.close()}}});var gA=B(Ja=>{"use strict";Object.defineProperty(Ja,"__esModule",{value:!0});Ja.BuilderTransform=Ja.builderThroughDOMStream=void 0;var x8=gm();function S8(t){return new i_(t)}Ja.builderThroughDOMStream=S8;var i_=class{constructor(e){this._numChunks=0,this._finished=!1,this._bufferedSize=0;let{["readableStrategy"]:r,["writableStrategy"]:n,["queueingStrategy"]:i="count",...o}=e;this._controller=null,this._builder=x8.Builder.new(o),this._getSize=i!=="bytes"?hA:bA;let{["highWaterMark"]:f=i==="bytes"?2**14:1e3}={...r},{["highWaterMark"]:s=i==="bytes"?2**14:1e3}={...n};this.readable=new ReadableStream({cancel:()=>{this._builder.clear()},pull:u=>{this._maybeFlush(this._builder,this._controller=u)},start:u=>{this._maybeFlush(this._builder,this._controller=u)}},{highWaterMark:f,size:i!=="bytes"?hA:bA}),this.writable=new WritableStream({abort:()=>{this._builder.clear()},write:()=>{this._maybeFlush(this._builder,this._controller)},close:()=>{this._maybeFlush(this._builder.finish(),this._controller)}},{highWaterMark:s,size:u=>this._writeValueAndReturnChunkSize(u)})}_writeValueAndReturnChunkSize(e){let r=this._bufferedSize;return this._bufferedSize=this._getSize(this._builder.append(e)),this._bufferedSize-r}_maybeFlush(e,r){r!==null&&(this._bufferedSize>=r.desiredSize&&++this._numChunks&&this._enqueue(r,e.toVector()),e.finished&&((e.length>0||this._numChunks===0)&&++this._numChunks&&this._enqueue(r,e.toVector()),!this._finished&&(this._finished=!0)&&this._enqueue(r,null)))}_enqueue(e,r){this._bufferedSize=0,this._controller=null,r===null?e.close():e.enqueue(r)}};Ja.BuilderTransform=i_;var hA=t=>t.length,bA=t=>t.byteLength});var yA=B(bw=>{"use strict";Object.defineProperty(bw,"__esModule",{value:!0});bw.recordBatchReaderThroughDOMStream=void 0;var E8=ff(),A8=uc();function O8(t,e){let r=new E8.AsyncByteQueue,n=null,i=new ReadableStream({async cancel(){await r.close()},async start(s){await f(s,n||(n=await o()))},async pull(s){n?await f(s,n):s.close()}});return{writable:new WritableStream(r,{highWaterMark:2**14,...t}),readable:i};async function o(){return await(await A8.RecordBatchReader.from(r)).open(e)}async function f(s,u){let l=s.desiredSize,c=null;for(;!(c=await u.next()).done;)if(s.enqueue(c.value),l!=null&&--l<=0)return;s.close()}}bw.recordBatchReaderThroughDOMStream=O8});var jA=B(gw=>{"use strict";Object.defineProperty(gw,"__esModule",{value:!0});gw.recordBatchWriterThroughDOMStream=void 0;var F8=ff();function D8(t,e){let r=new this(t),n=new F8.AsyncByteStream(r),i=new ReadableStream({type:"bytes",async cancel(){await n.cancel()},async pull(f){await o(f)},async start(f){await o(f)}},{highWaterMark:2**14,...e});return{writable:new WritableStream(r,t),readable:i};async function o(f){let s=null,u=f.desiredSize;for(;s=await n.read(u||null);)if(f.enqueue(s),u!=null&&(u-=s.byteLength)<=0)return;f.close()}}gw.recordBatchWriterThroughDOMStream=D8});var u_=B(Me=>{"use strict";Object.defineProperty(Me,"__esModule",{value:!0});Me.custom=Me.or=Me.and=Me.col=Me.lit=Me.CustomPredicate=Me.Not=Me.GTeq=Me.LTeq=Me.Equals=Me.Or=Me.And=Me.CombinationPredicate=Me.ComparisonPredicate=Me.Predicate=Me.Col=Me.Literal=Me.Value=void 0;var P8=Jm(),jf=class{eq(e){return e instanceof jf||(e=new co(e)),new f_(this,e)}le(e){return e instanceof jf||(e=new co(e)),new s_(this,e)}ge(e){return e instanceof jf||(e=new co(e)),new a_(this,e)}lt(e){return new el(this.ge(e))}gt(e){return new el(this.le(e))}ne(e){return new el(this.eq(e))}};Me.Value=jf;var co=class extends jf{constructor(e){super();this.v=e}};Me.Literal=co;var o_=class extends jf{constructor(e){super();this.name=e}bind(e){if(!this.colidx){this.colidx=-1;let n=e.schema.fields;for(let i=-1;++i<n.length;)if(n[i].name===this.name){this.colidx=i;break}if(this.colidx<0)throw new Error(`Failed to bind Col "${this.name}"`)}let r=this.vector=e.getChildAt(this.colidx);return n=>r.get(n)}};Me.Col=o_;var Qa=class{and(...e){return new Xa(this,...e)}or(...e){return new $a(this,...e)}not(){return new el(this)}};Me.Predicate=Qa;var mc=class extends Qa{constructor(e,r){super();this.left=e,this.right=r}bind(e){return this.left instanceof co?this.right instanceof co?this._bindLitLit(e,this.left,this.right):this._bindLitCol(e,this.left,this.right):this.right instanceof co?this._bindColLit(e,this.left,this.right):this._bindColCol(e,this.left,this.right)}};Me.ComparisonPredicate=mc;var wc=class extends Qa{constructor(...e){super();this.children=e}};Me.CombinationPredicate=wc;wc.prototype.children=Object.freeze([]);var Xa=class extends wc{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof Xa?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.every(o=>o(n,i))}};Me.And=Xa;var $a=class extends wc{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof $a?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.some(o=>o(n,i))}};Me.Or=$a;var f_=class extends mc{_bindLitLit(e,r,n){let i=r.v==n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)==o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);if(r.vector instanceof P8.DictionaryVector){let o,f=r.vector;return f.dictionary!==this.lastDictionary?(o=f.reverseLookup(n.v),this.lastDictionary=f.dictionary,this.lastKey=o):o=this.lastKey,o===-1?()=>!1:s=>f.getKey(s)===o}else return(o,f)=>i(o,f)==n.v}_bindLitCol(e,r,n){return this._bindColLit(e,n,r)}};Me.Equals=f_;var s_=class extends mc{_bindLitLit(e,r,n){let i=r.v<=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)<=o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);return(o,f)=>i(o,f)<=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(o,f)=>r.v<=i(o,f)}};Me.LTeq=s_;var a_=class extends mc{_bindLitLit(e,r,n){let i=r.v>=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)>=o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);return(o,f)=>i(o,f)>=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(o,f)=>r.v>=i(o,f)}};Me.GTeq=a_;var el=class extends Qa{constructor(e){super();this.child=e}bind(e){let r=this.child.bind(e);return(n,i)=>!r(n,i)}};Me.Not=el;var l_=class extends Qa{constructor(e,r){super();this.next=e,this.bind_=r}bind(e){return this.bind_(e),this.next}};Me.CustomPredicate=l_;function N8(t){return new co(t)}Me.lit=N8;function R8(t){return new o_(t)}Me.col=R8;function H8(...t){return new Xa(...t)}Me.and=H8;function z8(...t){return new $a(...t)}Me.or=z8;function U8(t,e){return new l_(t,e)}Me.custom=U8});var BA=B(_f=>{"use strict";Object.defineProperty(_f,"__esModule",{value:!0});_f.FilteredDataFrame=_f.CountByResult=_f.DataFrame=void 0;var tl=tc(),_A=ew(),c_=ir(),qA=u_(),M8=ao(),vA=nt();tl.Table.prototype.countBy=function(t){return new _s(this.chunks).countBy(t)};tl.Table.prototype.scan=function(t,e){return new _s(this.chunks).scan(t,e)};tl.Table.prototype.scanReverse=function(t,e){return new _s(this.chunks).scanReverse(t,e)};tl.Table.prototype.filter=function(t){return new _s(this.chunks).filter(t)};var _s=class extends tl.Table{filter(e){return new hc(this.chunks,e)}scan(e,r){let n=this.chunks,i=n.length;for(let o=-1;++o<i;){let f=n[o];r&&r(f);for(let s=-1,u=f.length;++s<u;)e(s,f)}}scanReverse(e,r){let n=this.chunks,i=n.length;for(let o=i;--o>=0;){let f=n[o];r&&r(f);for(let s=f.length;--s>=0;)e(s,f)}}countBy(e){let r=this.chunks,n=r.length,i=typeof e=="string"?new qA.Col(e):e;i.bind(r[n-1]);let o=i.vector;if(!vA.DataType.isDictionary(o.type))throw new Error("countBy currently only supports dictionary-encoded columns");let f=Math.ceil(Math.log(o.length)/Math.log(256)),s=f==4?Uint32Array:f>=2?Uint16Array:Uint8Array,u=new s(o.dictionary.length);for(let l=-1;++l<n;){let c=r[l];i.bind(c);let w=i.vector.indices;for(let p=-1,g=c.length;++p<g;){let T=w.get(p);T!==null&&u[T]++}}return new yw(o.dictionary,_A.IntVector.from(u))}};_f.DataFrame=_s;var yw=class extends tl.Table{constructor(e,r){let n=new c_.Schema([new c_.Field("values",e.type),new c_.Field("counts",r.type)]);super(new M8.RecordBatch(n,r.length,[e,r]))}toJSON(){let e=this.getColumnAt(0),r=this.getColumnAt(1),n={};for(let i=-1;++i<this.length;)n[e.get(i)]=r.get(i);return n}};_f.CountByResult=yw;var TA=class{constructor(e,r){this.batches=e,this.predicate=r,this.batchIndex=0,this.index=0,this.batch=this.batches[this.batchIndex],this.predicateFunc=this.predicate.bind(this.batch)}next(){for(;this.batchIndex<this.batches.length;){for(;this.index<this.batch.length;){if(this.predicateFunc(this.index,this.batch))return{value:this.batch.get(this.index++)};this.index++}++this.batchIndex<this.batches.length&&(this.index=0,this.batch=this.batches[this.batchIndex],this.predicateFunc=this.predicate.bind(this.batch))}return{done:!0,value:null}}[Symbol.iterator](){return this}},hc=class extends _s{constructor(e,r){super(e);this._predicate=r}scan(e,r){let n=this._chunks,i=n.length;for(let o=-1;++o<i;){let f=n[o],s=this._predicate.bind(f),u=!1;for(let l=-1,c=f.length;++l<c;)s(l,f)&&(r&&!u&&(r(f),u=!0),e(l,f))}}scanReverse(e,r){let n=this._chunks,i=n.length;for(let o=i;--o>=0;){let f=n[o],s=this._predicate.bind(f),u=!1;for(let l=f.length;--l>=0;)s(l,f)&&(r&&!u&&(r(f),u=!0),e(l,f))}}count(){let e=0,r=this._chunks,n=r.length;for(let i=-1;++i<n;){let o=r[i],f=this._predicate.bind(o);for(let s=-1,u=o.length;++s<u;)f(s,o)&&++e}return e}[Symbol.iterator](){return new TA(this._chunks,this._predicate)}filter(e){return new hc(this._chunks,this._predicate.and(e))}countBy(e){let r=this._chunks,n=r.length,i=typeof e=="string"?new qA.Col(e):e;i.bind(r[n-1]);let o=i.vector;if(!vA.DataType.isDictionary(o.type))throw new Error("countBy currently only supports dictionary-encoded columns");let f=Math.ceil(Math.log(o.length)/Math.log(256)),s=f==4?Uint32Array:f>=2?Uint16Array:Uint8Array,u=new s(o.dictionary.length);for(let l=-1;++l<n;){let c=r[l],w=this._predicate.bind(c);i.bind(c);let p=i.vector.indices;for(let g=-1,T=c.length;++g<T;){let L=p.get(g);L!==null&&w(g,c)&&u[L]++}}return new yw(o.dictionary,_A.IntVector.from(u))}};_f.FilteredDataFrame=hc});var xA=B(d=>{"use strict";Object.defineProperty(d,"__esModule",{value:!0});d.util=d.predicate=d.CountByResult=d.FilteredDataFrame=d.DataFrame=d.RecordBatch=d.Message=d.JSONMessageReader=d.AsyncMessageReader=d.MessageReader=d.RecordBatchJSONWriter=d.RecordBatchStreamWriter=d.RecordBatchFileWriter=d.RecordBatchWriter=d.AsyncRecordBatchStreamReader=d.AsyncRecordBatchFileReader=d.RecordBatchStreamReader=d.RecordBatchFileReader=d.RecordBatchReader=d.AsyncByteQueue=d.AsyncByteStream=d.ByteStream=d.Utf8Builder=d.SparseUnionBuilder=d.DenseUnionBuilder=d.UnionBuilder=d.TimeNanosecondBuilder=d.TimeMicrosecondBuilder=d.TimeMillisecondBuilder=d.TimeSecondBuilder=d.TimeBuilder=d.TimestampNanosecondBuilder=d.TimestampMicrosecondBuilder=d.TimestampMillisecondBuilder=d.TimestampSecondBuilder=d.TimestampBuilder=d.StructBuilder=d.NullBuilder=d.MapBuilder=d.ListBuilder=d.Uint64Builder=d.Uint32Builder=d.Uint16Builder=d.Uint8Builder=d.Int64Builder=d.Int32Builder=d.Int16Builder=d.Int8Builder=d.IntBuilder=d.IntervalYearMonthBuilder=d.IntervalDayTimeBuilder=d.IntervalBuilder=d.Float64Builder=d.Float32Builder=d.Float16Builder=d.FloatBuilder=d.FixedSizeListBuilder=d.FixedSizeBinaryBuilder=d.DictionaryBuilder=d.DecimalBuilder=d.DateMillisecondBuilder=d.DateDayBuilder=d.DateBuilder=d.BoolBuilder=d.BinaryBuilder=d.Builder=d.Utf8Vector=d.SparseUnionVector=d.DenseUnionVector=d.UnionVector=d.TimeNanosecondVector=d.TimeMicrosecondVector=d.TimeMillisecondVector=d.TimeSecondVector=d.TimeVector=d.TimestampNanosecondVector=d.TimestampMicrosecondVector=d.TimestampMillisecondVector=d.TimestampSecondVector=d.TimestampVector=d.StructVector=d.NullVector=d.MapVector=d.ListVector=d.Uint64Vector=d.Uint32Vector=d.Uint16Vector=d.Uint8Vector=d.Int64Vector=d.Int32Vector=d.Int16Vector=d.Int8Vector=d.IntVector=d.IntervalYearMonthVector=d.IntervalDayTimeVector=d.IntervalVector=d.Float64Vector=d.Float32Vector=d.Float16Vector=d.FloatVector=d.FixedSizeListVector=d.FixedSizeBinaryVector=d.DictionaryVector=d.DecimalVector=d.DateMillisecondVector=d.DateDayVector=d.DateVector=d.Chunked=d.BoolVector=d.BinaryVector=d.BaseVector=d.Vector=d.Field=d.Schema=d.Visitor=d.Column=d.Table=d.Map_=d.FixedSizeList=d.IntervalYearMonth=d.IntervalDayTime=d.Interval=d.Dictionary=d.SparseUnion=d.DenseUnion=d.Union=d.Struct=d.List=d.Decimal=d.TimeNanosecond=d.TimeMicrosecond=d.TimeMillisecond=d.TimeSecond=d.Time=d.TimestampNanosecond=d.TimestampMicrosecond=d.TimestampMillisecond=d.TimestampSecond=d.Timestamp=d.DateMillisecond=d.DateDay=d.Date_=d.FixedSizeBinary=d.Binary=d.Utf8=d.Float64=d.Float32=d.Float16=d.Float=d.Uint64=d.Uint32=d.Uint16=d.Uint8=d.Int64=d.Int32=d.Int16=d.Int8=d.Int=d.Bool=d.Null=d.DataType=d.Data=d.BufferType=d.Type=d.MessageHeader=d.MetadataVersion=d.IntervalUnit=d.UnionMode=d.Precision=d.TimeUnit=d.DateUnit=void 0;var rl=Yo();Object.defineProperty(d,"DateUnit",{enumerable:!0,get:function(){return rl.DateUnit}});Object.defineProperty(d,"TimeUnit",{enumerable:!0,get:function(){return rl.TimeUnit}});Object.defineProperty(d,"Precision",{enumerable:!0,get:function(){return rl.Precision}});Object.defineProperty(d,"UnionMode",{enumerable:!0,get:function(){return rl.UnionMode}});Object.defineProperty(d,"IntervalUnit",{enumerable:!0,get:function(){return rl.IntervalUnit}});Object.defineProperty(d,"MetadataVersion",{enumerable:!0,get:function(){return rl.MetadataVersion}});var L8=Od();Object.defineProperty(d,"MessageHeader",{enumerable:!0,get:function(){return L8.MessageHeader}});var kA=bt();Object.defineProperty(d,"Type",{enumerable:!0,get:function(){return kA.Type}});Object.defineProperty(d,"BufferType",{enumerable:!0,get:function(){return kA.BufferType}});var V8=Un();Object.defineProperty(d,"Data",{enumerable:!0,get:function(){return V8.Data}});var xe=nt();Object.defineProperty(d,"DataType",{enumerable:!0,get:function(){return xe.DataType}});Object.defineProperty(d,"Null",{enumerable:!0,get:function(){return xe.Null}});Object.defineProperty(d,"Bool",{enumerable:!0,get:function(){return xe.Bool}});Object.defineProperty(d,"Int",{enumerable:!0,get:function(){return xe.Int}});Object.defineProperty(d,"Int8",{enumerable:!0,get:function(){return xe.Int8}});Object.defineProperty(d,"Int16",{enumerable:!0,get:function(){return xe.Int16}});Object.defineProperty(d,"Int32",{enumerable:!0,get:function(){return xe.Int32}});Object.defineProperty(d,"Int64",{enumerable:!0,get:function(){return xe.Int64}});Object.defineProperty(d,"Uint8",{enumerable:!0,get:function(){return xe.Uint8}});Object.defineProperty(d,"Uint16",{enumerable:!0,get:function(){return xe.Uint16}});Object.defineProperty(d,"Uint32",{enumerable:!0,get:function(){return xe.Uint32}});Object.defineProperty(d,"Uint64",{enumerable:!0,get:function(){return xe.Uint64}});Object.defineProperty(d,"Float",{enumerable:!0,get:function(){return xe.Float}});Object.defineProperty(d,"Float16",{enumerable:!0,get:function(){return xe.Float16}});Object.defineProperty(d,"Float32",{enumerable:!0,get:function(){return xe.Float32}});Object.defineProperty(d,"Float64",{enumerable:!0,get:function(){return xe.Float64}});Object.defineProperty(d,"Utf8",{enumerable:!0,get:function(){return xe.Utf8}});Object.defineProperty(d,"Binary",{enumerable:!0,get:function(){return xe.Binary}});Object.defineProperty(d,"FixedSizeBinary",{enumerable:!0,get:function(){return xe.FixedSizeBinary}});Object.defineProperty(d,"Date_",{enumerable:!0,get:function(){return xe.Date_}});Object.defineProperty(d,"DateDay",{enumerable:!0,get:function(){return xe.DateDay}});Object.defineProperty(d,"DateMillisecond",{enumerable:!0,get:function(){return xe.DateMillisecond}});Object.defineProperty(d,"Timestamp",{enumerable:!0,get:function(){return xe.Timestamp}});Object.defineProperty(d,"TimestampSecond",{enumerable:!0,get:function(){return xe.TimestampSecond}});Object.defineProperty(d,"TimestampMillisecond",{enumerable:!0,get:function(){return xe.TimestampMillisecond}});Object.defineProperty(d,"TimestampMicrosecond",{enumerable:!0,get:function(){return xe.TimestampMicrosecond}});Object.defineProperty(d,"TimestampNanosecond",{enumerable:!0,get:function(){return xe.TimestampNanosecond}});Object.defineProperty(d,"Time",{enumerable:!0,get:function(){return xe.Time}});Object.defineProperty(d,"TimeSecond",{enumerable:!0,get:function(){return xe.TimeSecond}});Object.defineProperty(d,"TimeMillisecond",{enumerable:!0,get:function(){return xe.TimeMillisecond}});Object.defineProperty(d,"TimeMicrosecond",{enumerable:!0,get:function(){return xe.TimeMicrosecond}});Object.defineProperty(d,"TimeNanosecond",{enumerable:!0,get:function(){return xe.TimeNanosecond}});Object.defineProperty(d,"Decimal",{enumerable:!0,get:function(){return xe.Decimal}});Object.defineProperty(d,"List",{enumerable:!0,get:function(){return xe.List}});Object.defineProperty(d,"Struct",{enumerable:!0,get:function(){return xe.Struct}});Object.defineProperty(d,"Union",{enumerable:!0,get:function(){return xe.Union}});Object.defineProperty(d,"DenseUnion",{enumerable:!0,get:function(){return xe.DenseUnion}});Object.defineProperty(d,"SparseUnion",{enumerable:!0,get:function(){return xe.SparseUnion}});Object.defineProperty(d,"Dictionary",{enumerable:!0,get:function(){return xe.Dictionary}});Object.defineProperty(d,"Interval",{enumerable:!0,get:function(){return xe.Interval}});Object.defineProperty(d,"IntervalDayTime",{enumerable:!0,get:function(){return xe.IntervalDayTime}});Object.defineProperty(d,"IntervalYearMonth",{enumerable:!0,get:function(){return xe.IntervalYearMonth}});Object.defineProperty(d,"FixedSizeList",{enumerable:!0,get:function(){return xe.FixedSizeList}});Object.defineProperty(d,"Map_",{enumerable:!0,get:function(){return xe.Map_}});var C8=tc();Object.defineProperty(d,"Table",{enumerable:!0,get:function(){return C8.Table}});var W8=Oa();Object.defineProperty(d,"Column",{enumerable:!0,get:function(){return W8.Column}});var K8=cr();Object.defineProperty(d,"Visitor",{enumerable:!0,get:function(){return K8.Visitor}});var IA=ir();Object.defineProperty(d,"Schema",{enumerable:!0,get:function(){return IA.Schema}});Object.defineProperty(d,"Field",{enumerable:!0,get:function(){return IA.Field}});var Be=Ti();Object.defineProperty(d,"Vector",{enumerable:!0,get:function(){return Be.Vector}});Object.defineProperty(d,"BaseVector",{enumerable:!0,get:function(){return Be.BaseVector}});Object.defineProperty(d,"BinaryVector",{enumerable:!0,get:function(){return Be.BinaryVector}});Object.defineProperty(d,"BoolVector",{enumerable:!0,get:function(){return Be.BoolVector}});Object.defineProperty(d,"Chunked",{enumerable:!0,get:function(){return Be.Chunked}});Object.defineProperty(d,"DateVector",{enumerable:!0,get:function(){return Be.DateVector}});Object.defineProperty(d,"DateDayVector",{enumerable:!0,get:function(){return Be.DateDayVector}});Object.defineProperty(d,"DateMillisecondVector",{enumerable:!0,get:function(){return Be.DateMillisecondVector}});Object.defineProperty(d,"DecimalVector",{enumerable:!0,get:function(){return Be.DecimalVector}});Object.defineProperty(d,"DictionaryVector",{enumerable:!0,get:function(){return Be.DictionaryVector}});Object.defineProperty(d,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return Be.FixedSizeBinaryVector}});Object.defineProperty(d,"FixedSizeListVector",{enumerable:!0,get:function(){return Be.FixedSizeListVector}});Object.defineProperty(d,"FloatVector",{enumerable:!0,get:function(){return Be.FloatVector}});Object.defineProperty(d,"Float16Vector",{enumerable:!0,get:function(){return Be.Float16Vector}});Object.defineProperty(d,"Float32Vector",{enumerable:!0,get:function(){return Be.Float32Vector}});Object.defineProperty(d,"Float64Vector",{enumerable:!0,get:function(){return Be.Float64Vector}});Object.defineProperty(d,"IntervalVector",{enumerable:!0,get:function(){return Be.IntervalVector}});Object.defineProperty(d,"IntervalDayTimeVector",{enumerable:!0,get:function(){return Be.IntervalDayTimeVector}});Object.defineProperty(d,"IntervalYearMonthVector",{enumerable:!0,get:function(){return Be.IntervalYearMonthVector}});Object.defineProperty(d,"IntVector",{enumerable:!0,get:function(){return Be.IntVector}});Object.defineProperty(d,"Int8Vector",{enumerable:!0,get:function(){return Be.Int8Vector}});Object.defineProperty(d,"Int16Vector",{enumerable:!0,get:function(){return Be.Int16Vector}});Object.defineProperty(d,"Int32Vector",{enumerable:!0,get:function(){return Be.Int32Vector}});Object.defineProperty(d,"Int64Vector",{enumerable:!0,get:function(){return Be.Int64Vector}});Object.defineProperty(d,"Uint8Vector",{enumerable:!0,get:function(){return Be.Uint8Vector}});Object.defineProperty(d,"Uint16Vector",{enumerable:!0,get:function(){return Be.Uint16Vector}});Object.defineProperty(d,"Uint32Vector",{enumerable:!0,get:function(){return Be.Uint32Vector}});Object.defineProperty(d,"Uint64Vector",{enumerable:!0,get:function(){return Be.Uint64Vector}});Object.defineProperty(d,"ListVector",{enumerable:!0,get:function(){return Be.ListVector}});Object.defineProperty(d,"MapVector",{enumerable:!0,get:function(){return Be.MapVector}});Object.defineProperty(d,"NullVector",{enumerable:!0,get:function(){return Be.NullVector}});Object.defineProperty(d,"StructVector",{enumerable:!0,get:function(){return Be.StructVector}});Object.defineProperty(d,"TimestampVector",{enumerable:!0,get:function(){return Be.TimestampVector}});Object.defineProperty(d,"TimestampSecondVector",{enumerable:!0,get:function(){return Be.TimestampSecondVector}});Object.defineProperty(d,"TimestampMillisecondVector",{enumerable:!0,get:function(){return Be.TimestampMillisecondVector}});Object.defineProperty(d,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return Be.TimestampMicrosecondVector}});Object.defineProperty(d,"TimestampNanosecondVector",{enumerable:!0,get:function(){return Be.TimestampNanosecondVector}});Object.defineProperty(d,"TimeVector",{enumerable:!0,get:function(){return Be.TimeVector}});Object.defineProperty(d,"TimeSecondVector",{enumerable:!0,get:function(){return Be.TimeSecondVector}});Object.defineProperty(d,"TimeMillisecondVector",{enumerable:!0,get:function(){return Be.TimeMillisecondVector}});Object.defineProperty(d,"TimeMicrosecondVector",{enumerable:!0,get:function(){return Be.TimeMicrosecondVector}});Object.defineProperty(d,"TimeNanosecondVector",{enumerable:!0,get:function(){return Be.TimeNanosecondVector}});Object.defineProperty(d,"UnionVector",{enumerable:!0,get:function(){return Be.UnionVector}});Object.defineProperty(d,"DenseUnionVector",{enumerable:!0,get:function(){return Be.DenseUnionVector}});Object.defineProperty(d,"SparseUnionVector",{enumerable:!0,get:function(){return Be.SparseUnionVector}});Object.defineProperty(d,"Utf8Vector",{enumerable:!0,get:function(){return Be.Utf8Vector}});var Se=gm();Object.defineProperty(d,"Builder",{enumerable:!0,get:function(){return Se.Builder}});Object.defineProperty(d,"BinaryBuilder",{enumerable:!0,get:function(){return Se.BinaryBuilder}});Object.defineProperty(d,"BoolBuilder",{enumerable:!0,get:function(){return Se.BoolBuilder}});Object.defineProperty(d,"DateBuilder",{enumerable:!0,get:function(){return Se.DateBuilder}});Object.defineProperty(d,"DateDayBuilder",{enumerable:!0,get:function(){return Se.DateDayBuilder}});Object.defineProperty(d,"DateMillisecondBuilder",{enumerable:!0,get:function(){return Se.DateMillisecondBuilder}});Object.defineProperty(d,"DecimalBuilder",{enumerable:!0,get:function(){return Se.DecimalBuilder}});Object.defineProperty(d,"DictionaryBuilder",{enumerable:!0,get:function(){return Se.DictionaryBuilder}});Object.defineProperty(d,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return Se.FixedSizeBinaryBuilder}});Object.defineProperty(d,"FixedSizeListBuilder",{enumerable:!0,get:function(){return Se.FixedSizeListBuilder}});Object.defineProperty(d,"FloatBuilder",{enumerable:!0,get:function(){return Se.FloatBuilder}});Object.defineProperty(d,"Float16Builder",{enumerable:!0,get:function(){return Se.Float16Builder}});Object.defineProperty(d,"Float32Builder",{enumerable:!0,get:function(){return Se.Float32Builder}});Object.defineProperty(d,"Float64Builder",{enumerable:!0,get:function(){return Se.Float64Builder}});Object.defineProperty(d,"IntervalBuilder",{enumerable:!0,get:function(){return Se.IntervalBuilder}});Object.defineProperty(d,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return Se.IntervalDayTimeBuilder}});Object.defineProperty(d,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return Se.IntervalYearMonthBuilder}});Object.defineProperty(d,"IntBuilder",{enumerable:!0,get:function(){return Se.IntBuilder}});Object.defineProperty(d,"Int8Builder",{enumerable:!0,get:function(){return Se.Int8Builder}});Object.defineProperty(d,"Int16Builder",{enumerable:!0,get:function(){return Se.Int16Builder}});Object.defineProperty(d,"Int32Builder",{enumerable:!0,get:function(){return Se.Int32Builder}});Object.defineProperty(d,"Int64Builder",{enumerable:!0,get:function(){return Se.Int64Builder}});Object.defineProperty(d,"Uint8Builder",{enumerable:!0,get:function(){return Se.Uint8Builder}});Object.defineProperty(d,"Uint16Builder",{enumerable:!0,get:function(){return Se.Uint16Builder}});Object.defineProperty(d,"Uint32Builder",{enumerable:!0,get:function(){return Se.Uint32Builder}});Object.defineProperty(d,"Uint64Builder",{enumerable:!0,get:function(){return Se.Uint64Builder}});Object.defineProperty(d,"ListBuilder",{enumerable:!0,get:function(){return Se.ListBuilder}});Object.defineProperty(d,"MapBuilder",{enumerable:!0,get:function(){return Se.MapBuilder}});Object.defineProperty(d,"NullBuilder",{enumerable:!0,get:function(){return Se.NullBuilder}});Object.defineProperty(d,"StructBuilder",{enumerable:!0,get:function(){return Se.StructBuilder}});Object.defineProperty(d,"TimestampBuilder",{enumerable:!0,get:function(){return Se.TimestampBuilder}});Object.defineProperty(d,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Se.TimestampSecondBuilder}});Object.defineProperty(d,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Se.TimestampMillisecondBuilder}});Object.defineProperty(d,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Se.TimestampMicrosecondBuilder}});Object.defineProperty(d,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Se.TimestampNanosecondBuilder}});Object.defineProperty(d,"TimeBuilder",{enumerable:!0,get:function(){return Se.TimeBuilder}});Object.defineProperty(d,"TimeSecondBuilder",{enumerable:!0,get:function(){return Se.TimeSecondBuilder}});Object.defineProperty(d,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Se.TimeMillisecondBuilder}});Object.defineProperty(d,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Se.TimeMicrosecondBuilder}});Object.defineProperty(d,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Se.TimeNanosecondBuilder}});Object.defineProperty(d,"UnionBuilder",{enumerable:!0,get:function(){return Se.UnionBuilder}});Object.defineProperty(d,"DenseUnionBuilder",{enumerable:!0,get:function(){return Se.DenseUnionBuilder}});Object.defineProperty(d,"SparseUnionBuilder",{enumerable:!0,get:function(){return Se.SparseUnionBuilder}});Object.defineProperty(d,"Utf8Builder",{enumerable:!0,get:function(){return Se.Utf8Builder}});var p_=ff();Object.defineProperty(d,"ByteStream",{enumerable:!0,get:function(){return p_.ByteStream}});Object.defineProperty(d,"AsyncByteStream",{enumerable:!0,get:function(){return p_.AsyncByteStream}});Object.defineProperty(d,"AsyncByteQueue",{enumerable:!0,get:function(){return p_.AsyncByteQueue}});var bc=uc();Object.defineProperty(d,"RecordBatchReader",{enumerable:!0,get:function(){return bc.RecordBatchReader}});Object.defineProperty(d,"RecordBatchFileReader",{enumerable:!0,get:function(){return bc.RecordBatchFileReader}});Object.defineProperty(d,"RecordBatchStreamReader",{enumerable:!0,get:function(){return bc.RecordBatchStreamReader}});Object.defineProperty(d,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return bc.AsyncRecordBatchFileReader}});Object.defineProperty(d,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return bc.AsyncRecordBatchStreamReader}});var jw=Vm();Object.defineProperty(d,"RecordBatchWriter",{enumerable:!0,get:function(){return jw.RecordBatchWriter}});Object.defineProperty(d,"RecordBatchFileWriter",{enumerable:!0,get:function(){return jw.RecordBatchFileWriter}});Object.defineProperty(d,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return jw.RecordBatchStreamWriter}});Object.defineProperty(d,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return jw.RecordBatchJSONWriter}});var d_=Om();Object.defineProperty(d,"MessageReader",{enumerable:!0,get:function(){return d_.MessageReader}});Object.defineProperty(d,"AsyncMessageReader",{enumerable:!0,get:function(){return d_.AsyncMessageReader}});Object.defineProperty(d,"JSONMessageReader",{enumerable:!0,get:function(){return d_.JSONMessageReader}});var Y8=ms();Object.defineProperty(d,"Message",{enumerable:!0,get:function(){return Y8.Message}});var G8=ao();Object.defineProperty(d,"RecordBatch",{enumerable:!0,get:function(){return G8.RecordBatch}});var m_=BA();Object.defineProperty(d,"DataFrame",{enumerable:!0,get:function(){return m_.DataFrame}});Object.defineProperty(d,"FilteredDataFrame",{enumerable:!0,get:function(){return m_.FilteredDataFrame}});Object.defineProperty(d,"CountByResult",{enumerable:!0,get:function(){return m_.CountByResult}});var Z8=Hu(),J8=Tj(),Q8=di(),X8=Du(),$8=Xt(),e6=Ku(),t6=u_();d.predicate=t6;var w_=Uj();d.util={...Z8,...J8,...Q8,...X8,...$8,...e6,compareSchemas:w_.compareSchemas,compareFields:w_.compareFields,compareTypes:w_.compareTypes}});var j_=B(m=>{"use strict";Object.defineProperty(m,"__esModule",{value:!0});m.Utf8Builder=m.SparseUnionBuilder=m.DenseUnionBuilder=m.UnionBuilder=m.TimeNanosecondBuilder=m.TimeMicrosecondBuilder=m.TimeMillisecondBuilder=m.TimeSecondBuilder=m.TimeBuilder=m.TimestampNanosecondBuilder=m.TimestampMicrosecondBuilder=m.TimestampMillisecondBuilder=m.TimestampSecondBuilder=m.TimestampBuilder=m.StructBuilder=m.NullBuilder=m.MapBuilder=m.ListBuilder=m.Uint64Builder=m.Uint32Builder=m.Uint16Builder=m.Uint8Builder=m.Int64Builder=m.Int32Builder=m.Int16Builder=m.Int8Builder=m.IntBuilder=m.IntervalYearMonthBuilder=m.IntervalDayTimeBuilder=m.IntervalBuilder=m.Float64Builder=m.Float32Builder=m.Float16Builder=m.FloatBuilder=m.FixedSizeListBuilder=m.FixedSizeBinaryBuilder=m.DictionaryBuilder=m.DecimalBuilder=m.DateMillisecondBuilder=m.DateDayBuilder=m.DateBuilder=m.BoolBuilder=m.BinaryBuilder=m.Builder=m.util=m.predicate=m.CountByResult=m.FilteredDataFrame=m.DataFrame=m.RecordBatch=m.Message=m.JSONMessageReader=m.AsyncMessageReader=m.MessageReader=m.RecordBatchJSONWriter=m.RecordBatchStreamWriter=m.RecordBatchFileWriter=m.RecordBatchWriter=m.AsyncRecordBatchStreamReader=m.AsyncRecordBatchFileReader=m.RecordBatchStreamReader=m.RecordBatchFileReader=m.RecordBatchReader=m.AsyncByteQueue=m.AsyncByteStream=m.ByteStream=m.Utf8Vector=m.SparseUnionVector=m.DenseUnionVector=m.UnionVector=m.TimeNanosecondVector=m.TimeMicrosecondVector=m.TimeMillisecondVector=m.TimeSecondVector=m.TimeVector=m.TimestampNanosecondVector=m.TimestampMicrosecondVector=m.TimestampMillisecondVector=m.TimestampSecondVector=m.TimestampVector=m.StructVector=m.NullVector=m.MapVector=m.ListVector=m.Uint64Vector=m.Uint32Vector=m.Uint16Vector=m.Uint8Vector=m.Int64Vector=m.Int32Vector=m.Int16Vector=m.Int8Vector=m.IntVector=m.IntervalYearMonthVector=m.IntervalDayTimeVector=m.IntervalVector=m.Float64Vector=m.Float32Vector=m.Float16Vector=m.FloatVector=m.FixedSizeListVector=m.FixedSizeBinaryVector=m.DictionaryVector=m.DecimalVector=m.DateMillisecondVector=m.DateDayVector=m.DateVector=m.Chunked=m.BoolVector=m.BinaryVector=m.BaseVector=m.Vector=m.Visitor=m.Field=m.Schema=m.Column=m.Table=m.Map_=m.FixedSizeList=m.IntervalYearMonth=m.IntervalDayTime=m.Interval=m.Dictionary=m.SparseUnion=m.DenseUnion=m.Union=m.Struct=m.List=m.Decimal=m.TimeNanosecond=m.TimeMicrosecond=m.TimeMillisecond=m.TimeSecond=m.Time=m.TimestampNanosecond=m.TimestampMicrosecond=m.TimestampMillisecond=m.TimestampSecond=m.Timestamp=m.DateMillisecond=m.DateDay=m.Date_=m.FixedSizeBinary=m.Binary=m.Utf8=m.Float64=m.Float32=m.Float16=m.Float=m.Uint64=m.Uint32=m.Uint16=m.Uint8=m.Int64=m.Int32=m.Int16=m.Int8=m.Int=m.Bool=m.Null=m.DataType=m.Data=m.BufferType=m.UnionMode=m.Type=m.TimeUnit=m.Precision=m.MetadataVersion=m.MessageHeader=m.IntervalUnit=m.DateUnit=void 0;var r6=Ou(),n6=gm(),h_=uc(),b_=Vm(),i6=wA(),o6=gA(),g_=yA(),y_=jA();r6.default.toDOMStream=i6.toDOMStream;n6.Builder.throughDOM=o6.builderThroughDOMStream;h_.RecordBatchReader.throughDOM=g_.recordBatchReaderThroughDOMStream;h_.RecordBatchFileReader.throughDOM=g_.recordBatchReaderThroughDOMStream;h_.RecordBatchStreamReader.throughDOM=g_.recordBatchReaderThroughDOMStream;b_.RecordBatchWriter.throughDOM=y_.recordBatchWriterThroughDOMStream;b_.RecordBatchFileWriter.throughDOM=y_.recordBatchWriterThroughDOMStream;b_.RecordBatchStreamWriter.throughDOM=y_.recordBatchWriterThroughDOMStream;var k=xA();Object.defineProperty(m,"DateUnit",{enumerable:!0,get:function(){return k.DateUnit}});Object.defineProperty(m,"IntervalUnit",{enumerable:!0,get:function(){return k.IntervalUnit}});Object.defineProperty(m,"MessageHeader",{enumerable:!0,get:function(){return k.MessageHeader}});Object.defineProperty(m,"MetadataVersion",{enumerable:!0,get:function(){return k.MetadataVersion}});Object.defineProperty(m,"Precision",{enumerable:!0,get:function(){return k.Precision}});Object.defineProperty(m,"TimeUnit",{enumerable:!0,get:function(){return k.TimeUnit}});Object.defineProperty(m,"Type",{enumerable:!0,get:function(){return k.Type}});Object.defineProperty(m,"UnionMode",{enumerable:!0,get:function(){return k.UnionMode}});Object.defineProperty(m,"BufferType",{enumerable:!0,get:function(){return k.BufferType}});Object.defineProperty(m,"Data",{enumerable:!0,get:function(){return k.Data}});Object.defineProperty(m,"DataType",{enumerable:!0,get:function(){return k.DataType}});Object.defineProperty(m,"Null",{enumerable:!0,get:function(){return k.Null}});Object.defineProperty(m,"Bool",{enumerable:!0,get:function(){return k.Bool}});Object.defineProperty(m,"Int",{enumerable:!0,get:function(){return k.Int}});Object.defineProperty(m,"Int8",{enumerable:!0,get:function(){return k.Int8}});Object.defineProperty(m,"Int16",{enumerable:!0,get:function(){return k.Int16}});Object.defineProperty(m,"Int32",{enumerable:!0,get:function(){return k.Int32}});Object.defineProperty(m,"Int64",{enumerable:!0,get:function(){return k.Int64}});Object.defineProperty(m,"Uint8",{enumerable:!0,get:function(){return k.Uint8}});Object.defineProperty(m,"Uint16",{enumerable:!0,get:function(){return k.Uint16}});Object.defineProperty(m,"Uint32",{enumerable:!0,get:function(){return k.Uint32}});Object.defineProperty(m,"Uint64",{enumerable:!0,get:function(){return k.Uint64}});Object.defineProperty(m,"Float",{enumerable:!0,get:function(){return k.Float}});Object.defineProperty(m,"Float16",{enumerable:!0,get:function(){return k.Float16}});Object.defineProperty(m,"Float32",{enumerable:!0,get:function(){return k.Float32}});Object.defineProperty(m,"Float64",{enumerable:!0,get:function(){return k.Float64}});Object.defineProperty(m,"Utf8",{enumerable:!0,get:function(){return k.Utf8}});Object.defineProperty(m,"Binary",{enumerable:!0,get:function(){return k.Binary}});Object.defineProperty(m,"FixedSizeBinary",{enumerable:!0,get:function(){return k.FixedSizeBinary}});Object.defineProperty(m,"Date_",{enumerable:!0,get:function(){return k.Date_}});Object.defineProperty(m,"DateDay",{enumerable:!0,get:function(){return k.DateDay}});Object.defineProperty(m,"DateMillisecond",{enumerable:!0,get:function(){return k.DateMillisecond}});Object.defineProperty(m,"Timestamp",{enumerable:!0,get:function(){return k.Timestamp}});Object.defineProperty(m,"TimestampSecond",{enumerable:!0,get:function(){return k.TimestampSecond}});Object.defineProperty(m,"TimestampMillisecond",{enumerable:!0,get:function(){return k.TimestampMillisecond}});Object.defineProperty(m,"TimestampMicrosecond",{enumerable:!0,get:function(){return k.TimestampMicrosecond}});Object.defineProperty(m,"TimestampNanosecond",{enumerable:!0,get:function(){return k.TimestampNanosecond}});Object.defineProperty(m,"Time",{enumerable:!0,get:function(){return k.Time}});Object.defineProperty(m,"TimeSecond",{enumerable:!0,get:function(){return k.TimeSecond}});Object.defineProperty(m,"TimeMillisecond",{enumerable:!0,get:function(){return k.TimeMillisecond}});Object.defineProperty(m,"TimeMicrosecond",{enumerable:!0,get:function(){return k.TimeMicrosecond}});Object.defineProperty(m,"TimeNanosecond",{enumerable:!0,get:function(){return k.TimeNanosecond}});Object.defineProperty(m,"Decimal",{enumerable:!0,get:function(){return k.Decimal}});Object.defineProperty(m,"List",{enumerable:!0,get:function(){return k.List}});Object.defineProperty(m,"Struct",{enumerable:!0,get:function(){return k.Struct}});Object.defineProperty(m,"Union",{enumerable:!0,get:function(){return k.Union}});Object.defineProperty(m,"DenseUnion",{enumerable:!0,get:function(){return k.DenseUnion}});Object.defineProperty(m,"SparseUnion",{enumerable:!0,get:function(){return k.SparseUnion}});Object.defineProperty(m,"Dictionary",{enumerable:!0,get:function(){return k.Dictionary}});Object.defineProperty(m,"Interval",{enumerable:!0,get:function(){return k.Interval}});Object.defineProperty(m,"IntervalDayTime",{enumerable:!0,get:function(){return k.IntervalDayTime}});Object.defineProperty(m,"IntervalYearMonth",{enumerable:!0,get:function(){return k.IntervalYearMonth}});Object.defineProperty(m,"FixedSizeList",{enumerable:!0,get:function(){return k.FixedSizeList}});Object.defineProperty(m,"Map_",{enumerable:!0,get:function(){return k.Map_}});Object.defineProperty(m,"Table",{enumerable:!0,get:function(){return k.Table}});Object.defineProperty(m,"Column",{enumerable:!0,get:function(){return k.Column}});Object.defineProperty(m,"Schema",{enumerable:!0,get:function(){return k.Schema}});Object.defineProperty(m,"Field",{enumerable:!0,get:function(){return k.Field}});Object.defineProperty(m,"Visitor",{enumerable:!0,get:function(){return k.Visitor}});Object.defineProperty(m,"Vector",{enumerable:!0,get:function(){return k.Vector}});Object.defineProperty(m,"BaseVector",{enumerable:!0,get:function(){return k.BaseVector}});Object.defineProperty(m,"BinaryVector",{enumerable:!0,get:function(){return k.BinaryVector}});Object.defineProperty(m,"BoolVector",{enumerable:!0,get:function(){return k.BoolVector}});Object.defineProperty(m,"Chunked",{enumerable:!0,get:function(){return k.Chunked}});Object.defineProperty(m,"DateVector",{enumerable:!0,get:function(){return k.DateVector}});Object.defineProperty(m,"DateDayVector",{enumerable:!0,get:function(){return k.DateDayVector}});Object.defineProperty(m,"DateMillisecondVector",{enumerable:!0,get:function(){return k.DateMillisecondVector}});Object.defineProperty(m,"DecimalVector",{enumerable:!0,get:function(){return k.DecimalVector}});Object.defineProperty(m,"DictionaryVector",{enumerable:!0,get:function(){return k.DictionaryVector}});Object.defineProperty(m,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return k.FixedSizeBinaryVector}});Object.defineProperty(m,"FixedSizeListVector",{enumerable:!0,get:function(){return k.FixedSizeListVector}});Object.defineProperty(m,"FloatVector",{enumerable:!0,get:function(){return k.FloatVector}});Object.defineProperty(m,"Float16Vector",{enumerable:!0,get:function(){return k.Float16Vector}});Object.defineProperty(m,"Float32Vector",{enumerable:!0,get:function(){return k.Float32Vector}});Object.defineProperty(m,"Float64Vector",{enumerable:!0,get:function(){return k.Float64Vector}});Object.defineProperty(m,"IntervalVector",{enumerable:!0,get:function(){return k.IntervalVector}});Object.defineProperty(m,"IntervalDayTimeVector",{enumerable:!0,get:function(){return k.IntervalDayTimeVector}});Object.defineProperty(m,"IntervalYearMonthVector",{enumerable:!0,get:function(){return k.IntervalYearMonthVector}});Object.defineProperty(m,"IntVector",{enumerable:!0,get:function(){return k.IntVector}});Object.defineProperty(m,"Int8Vector",{enumerable:!0,get:function(){return k.Int8Vector}});Object.defineProperty(m,"Int16Vector",{enumerable:!0,get:function(){return k.Int16Vector}});Object.defineProperty(m,"Int32Vector",{enumerable:!0,get:function(){return k.Int32Vector}});Object.defineProperty(m,"Int64Vector",{enumerable:!0,get:function(){return k.Int64Vector}});Object.defineProperty(m,"Uint8Vector",{enumerable:!0,get:function(){return k.Uint8Vector}});Object.defineProperty(m,"Uint16Vector",{enumerable:!0,get:function(){return k.Uint16Vector}});Object.defineProperty(m,"Uint32Vector",{enumerable:!0,get:function(){return k.Uint32Vector}});Object.defineProperty(m,"Uint64Vector",{enumerable:!0,get:function(){return k.Uint64Vector}});Object.defineProperty(m,"ListVector",{enumerable:!0,get:function(){return k.ListVector}});Object.defineProperty(m,"MapVector",{enumerable:!0,get:function(){return k.MapVector}});Object.defineProperty(m,"NullVector",{enumerable:!0,get:function(){return k.NullVector}});Object.defineProperty(m,"StructVector",{enumerable:!0,get:function(){return k.StructVector}});Object.defineProperty(m,"TimestampVector",{enumerable:!0,get:function(){return k.TimestampVector}});Object.defineProperty(m,"TimestampSecondVector",{enumerable:!0,get:function(){return k.TimestampSecondVector}});Object.defineProperty(m,"TimestampMillisecondVector",{enumerable:!0,get:function(){return k.TimestampMillisecondVector}});Object.defineProperty(m,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return k.TimestampMicrosecondVector}});Object.defineProperty(m,"TimestampNanosecondVector",{enumerable:!0,get:function(){return k.TimestampNanosecondVector}});Object.defineProperty(m,"TimeVector",{enumerable:!0,get:function(){return k.TimeVector}});Object.defineProperty(m,"TimeSecondVector",{enumerable:!0,get:function(){return k.TimeSecondVector}});Object.defineProperty(m,"TimeMillisecondVector",{enumerable:!0,get:function(){return k.TimeMillisecondVector}});Object.defineProperty(m,"TimeMicrosecondVector",{enumerable:!0,get:function(){return k.TimeMicrosecondVector}});Object.defineProperty(m,"TimeNanosecondVector",{enumerable:!0,get:function(){return k.TimeNanosecondVector}});Object.defineProperty(m,"UnionVector",{enumerable:!0,get:function(){return k.UnionVector}});Object.defineProperty(m,"DenseUnionVector",{enumerable:!0,get:function(){return k.DenseUnionVector}});Object.defineProperty(m,"SparseUnionVector",{enumerable:!0,get:function(){return k.SparseUnionVector}});Object.defineProperty(m,"Utf8Vector",{enumerable:!0,get:function(){return k.Utf8Vector}});Object.defineProperty(m,"ByteStream",{enumerable:!0,get:function(){return k.ByteStream}});Object.defineProperty(m,"AsyncByteStream",{enumerable:!0,get:function(){return k.AsyncByteStream}});Object.defineProperty(m,"AsyncByteQueue",{enumerable:!0,get:function(){return k.AsyncByteQueue}});Object.defineProperty(m,"RecordBatchReader",{enumerable:!0,get:function(){return k.RecordBatchReader}});Object.defineProperty(m,"RecordBatchFileReader",{enumerable:!0,get:function(){return k.RecordBatchFileReader}});Object.defineProperty(m,"RecordBatchStreamReader",{enumerable:!0,get:function(){return k.RecordBatchStreamReader}});Object.defineProperty(m,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return k.AsyncRecordBatchFileReader}});Object.defineProperty(m,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return k.AsyncRecordBatchStreamReader}});Object.defineProperty(m,"RecordBatchWriter",{enumerable:!0,get:function(){return k.RecordBatchWriter}});Object.defineProperty(m,"RecordBatchFileWriter",{enumerable:!0,get:function(){return k.RecordBatchFileWriter}});Object.defineProperty(m,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return k.RecordBatchStreamWriter}});Object.defineProperty(m,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return k.RecordBatchJSONWriter}});Object.defineProperty(m,"MessageReader",{enumerable:!0,get:function(){return k.MessageReader}});Object.defineProperty(m,"AsyncMessageReader",{enumerable:!0,get:function(){return k.AsyncMessageReader}});Object.defineProperty(m,"JSONMessageReader",{enumerable:!0,get:function(){return k.JSONMessageReader}});Object.defineProperty(m,"Message",{enumerable:!0,get:function(){return k.Message}});Object.defineProperty(m,"RecordBatch",{enumerable:!0,get:function(){return k.RecordBatch}});Object.defineProperty(m,"DataFrame",{enumerable:!0,get:function(){return k.DataFrame}});Object.defineProperty(m,"FilteredDataFrame",{enumerable:!0,get:function(){return k.FilteredDataFrame}});Object.defineProperty(m,"CountByResult",{enumerable:!0,get:function(){return k.CountByResult}});Object.defineProperty(m,"predicate",{enumerable:!0,get:function(){return k.predicate}});Object.defineProperty(m,"util",{enumerable:!0,get:function(){return k.util}});Object.defineProperty(m,"Builder",{enumerable:!0,get:function(){return k.Builder}});Object.defineProperty(m,"BinaryBuilder",{enumerable:!0,get:function(){return k.BinaryBuilder}});Object.defineProperty(m,"BoolBuilder",{enumerable:!0,get:function(){return k.BoolBuilder}});Object.defineProperty(m,"DateBuilder",{enumerable:!0,get:function(){return k.DateBuilder}});Object.defineProperty(m,"DateDayBuilder",{enumerable:!0,get:function(){return k.DateDayBuilder}});Object.defineProperty(m,"DateMillisecondBuilder",{enumerable:!0,get:function(){return k.DateMillisecondBuilder}});Object.defineProperty(m,"DecimalBuilder",{enumerable:!0,get:function(){return k.DecimalBuilder}});Object.defineProperty(m,"DictionaryBuilder",{enumerable:!0,get:function(){return k.DictionaryBuilder}});Object.defineProperty(m,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return k.FixedSizeBinaryBuilder}});Object.defineProperty(m,"FixedSizeListBuilder",{enumerable:!0,get:function(){return k.FixedSizeListBuilder}});Object.defineProperty(m,"FloatBuilder",{enumerable:!0,get:function(){return k.FloatBuilder}});Object.defineProperty(m,"Float16Builder",{enumerable:!0,get:function(){return k.Float16Builder}});Object.defineProperty(m,"Float32Builder",{enumerable:!0,get:function(){return k.Float32Builder}});Object.defineProperty(m,"Float64Builder",{enumerable:!0,get:function(){return k.Float64Builder}});Object.defineProperty(m,"IntervalBuilder",{enumerable:!0,get:function(){return k.IntervalBuilder}});Object.defineProperty(m,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return k.IntervalDayTimeBuilder}});Object.defineProperty(m,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return k.IntervalYearMonthBuilder}});Object.defineProperty(m,"IntBuilder",{enumerable:!0,get:function(){return k.IntBuilder}});Object.defineProperty(m,"Int8Builder",{enumerable:!0,get:function(){return k.Int8Builder}});Object.defineProperty(m,"Int16Builder",{enumerable:!0,get:function(){return k.Int16Builder}});Object.defineProperty(m,"Int32Builder",{enumerable:!0,get:function(){return k.Int32Builder}});Object.defineProperty(m,"Int64Builder",{enumerable:!0,get:function(){return k.Int64Builder}});Object.defineProperty(m,"Uint8Builder",{enumerable:!0,get:function(){return k.Uint8Builder}});Object.defineProperty(m,"Uint16Builder",{enumerable:!0,get:function(){return k.Uint16Builder}});Object.defineProperty(m,"Uint32Builder",{enumerable:!0,get:function(){return k.Uint32Builder}});Object.defineProperty(m,"Uint64Builder",{enumerable:!0,get:function(){return k.Uint64Builder}});Object.defineProperty(m,"ListBuilder",{enumerable:!0,get:function(){return k.ListBuilder}});Object.defineProperty(m,"MapBuilder",{enumerable:!0,get:function(){return k.MapBuilder}});Object.defineProperty(m,"NullBuilder",{enumerable:!0,get:function(){return k.NullBuilder}});Object.defineProperty(m,"StructBuilder",{enumerable:!0,get:function(){return k.StructBuilder}});Object.defineProperty(m,"TimestampBuilder",{enumerable:!0,get:function(){return k.TimestampBuilder}});Object.defineProperty(m,"TimestampSecondBuilder",{enumerable:!0,get:function(){return k.TimestampSecondBuilder}});Object.defineProperty(m,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return k.TimestampMillisecondBuilder}});Object.defineProperty(m,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return k.TimestampMicrosecondBuilder}});Object.defineProperty(m,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return k.TimestampNanosecondBuilder}});Object.defineProperty(m,"TimeBuilder",{enumerable:!0,get:function(){return k.TimeBuilder}});Object.defineProperty(m,"TimeSecondBuilder",{enumerable:!0,get:function(){return k.TimeSecondBuilder}});Object.defineProperty(m,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return k.TimeMillisecondBuilder}});Object.defineProperty(m,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return k.TimeMicrosecondBuilder}});Object.defineProperty(m,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return k.TimeNanosecondBuilder}});Object.defineProperty(m,"UnionBuilder",{enumerable:!0,get:function(){return k.UnionBuilder}});Object.defineProperty(m,"DenseUnionBuilder",{enumerable:!0,get:function(){return k.DenseUnionBuilder}});Object.defineProperty(m,"SparseUnionBuilder",{enumerable:!0,get:function(){return k.SparseUnionBuilder}});Object.defineProperty(m,"Utf8Builder",{enumerable:!0,get:function(){return k.Utf8Builder}})});var Tw={};D_(Tw,{Compression:()=>c6,Encoding:()=>p6,WriterProperties:()=>fl,WriterPropertiesBuilder:()=>Lt,WriterVersion:()=>d6,default:()=>FA,readParquet:()=>a6,writeParquet:()=>u6});function gc(){return(_w===null||_w.buffer!==ye.memory.buffer)&&(_w=new Uint8Array(ye.memory.buffer)),_w}function EA(t,e){return SA.decode(gc().subarray(t,t+e))}function jc(t){yc===po.length&&po.push(po.length+1);let e=yc;return yc=po[e],po[e]=t,e}function nl(t){return po[t]}function f6(t){t<36||(po[t]=yc,yc=t)}function _c(t){let e=nl(t);return f6(t),e}function il(t,e,r){if(r===void 0){let s=qw.encode(t),u=e(s.length);return gc().subarray(u,u+s.length).set(s),Kn=s.length,u}let n=t.length,i=e(n),o=gc(),f=0;for(;f<n;f++){let s=t.charCodeAt(f);if(s>127)break;o[i+f]=s}if(f!==n){f!==0&&(t=t.slice(f)),i=r(i,n,n=f+t.length*3);let s=gc().subarray(i+f,i+n);f+=s6(t,s).written}return Kn=f,i}function AA(t,e){let r=e(t.length*1);return gc().set(t,r/1),Kn=t.length,r}function ol(){return(vw===null||vw.buffer!==ye.memory.buffer)&&(vw=new Int32Array(ye.memory.buffer)),vw}function a6(t){try{let i=ye.__wbindgen_add_to_stack_pointer(-16),o=AA(t,ye.__wbindgen_malloc),f=Kn;ye.readParquet(i,o,f);var e=ol()[i/4+0],r=ol()[i/4+1],n=ol()[i/4+2];if(n)throw _c(r);return _c(e)}finally{ye.__wbindgen_add_to_stack_pointer(16)}}function l6(t,e){if(!(t instanceof e))throw new Error(`expected instance of ${e.name}`);return t.ptr}function u6(t,e){try{let f=ye.__wbindgen_add_to_stack_pointer(-16),s=AA(t,ye.__wbindgen_malloc),u=Kn;l6(e,fl);var r=e.ptr;e.ptr=0,ye.writeParquet(f,s,u,r);var n=ol()[f/4+0],i=ol()[f/4+1],o=ol()[f/4+2];if(o)throw _c(i);return _c(n)}finally{ye.__wbindgen_add_to_stack_pointer(16)}}async function m6(t,e){if(typeof Response=="function"&&t instanceof Response){if(typeof WebAssembly.instantiateStreaming=="function")try{return await WebAssembly.instantiateStreaming(t,e)}catch(n){if(t.headers.get("Content-Type")!="application/wasm")console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n",n);else throw n}let r=await t.arrayBuffer();return await WebAssembly.instantiate(r,e)}else{let r=await WebAssembly.instantiate(t,e);return r instanceof WebAssembly.Instance?{instance:r,module:t}:r}}async function OA(t){let e={};e.wbg={},e.wbg.__wbindgen_string_new=function(i,o){let f=EA(i,o);return jc(f)},e.wbg.__wbindgen_object_drop_ref=function(i){_c(i)},e.wbg.__wbg_buffer_7af23f65f6c64548=function(i){let o=nl(i).buffer;return jc(o)},e.wbg.__wbg_newwithbyteoffsetandlength_ce1e75f0ce5f7974=function(i,o,f){let s=new Uint8Array(nl(i),o>>>0,f>>>0);return jc(s)},e.wbg.__wbg_set_f25e869e4565d2a2=function(i,o,f){nl(i).set(nl(o),f>>>0)},e.wbg.__wbg_length_0acb1cf9bbaf8519=function(i){return nl(i).length},e.wbg.__wbg_newwithlength_8f0657faca9f1422=function(i){let o=new Uint8Array(i>>>0);return jc(o)},e.wbg.__wbindgen_throw=function(i,o){throw new Error(EA(i,o))},e.wbg.__wbindgen_memory=function(){let i=ye.memory;return jc(i)},(typeof t=="string"||typeof Request=="function"&&t instanceof Request||typeof URL=="function"&&t instanceof URL)&&(t=fetch(t));let{instance:r,module:n}=await m6(await t,e);return ye=r.exports,OA.__wbindgen_wasm_module=n,ye}var ye,SA,_w,po,yc,Kn,qw,s6,vw,c6,p6,d6,fl,Lt,FA,DA=W(()=>{SA=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});SA.decode();_w=null;po=new Array(32).fill(void 0);po.push(void 0,null,!0,!1);yc=po.length;Kn=0,qw=new TextEncoder("utf-8"),s6=typeof qw.encodeInto=="function"?function(t,e){return qw.encodeInto(t,e)}:function(t,e){let r=qw.encode(t);return e.set(r),{read:t.length,written:r.length}};vw=null;c6=Object.freeze({UNCOMPRESSED:0,"0":"UNCOMPRESSED",SNAPPY:1,"1":"SNAPPY",GZIP:2,"2":"GZIP",BROTLI:3,"3":"BROTLI",LZ4:4,"4":"LZ4",ZSTD:5,"5":"ZSTD"}),p6=Object.freeze({PLAIN:0,"0":"PLAIN",PLAIN_DICTIONARY:1,"1":"PLAIN_DICTIONARY",RLE:2,"2":"RLE",BIT_PACKED:3,"3":"BIT_PACKED",DELTA_BINARY_PACKED:4,"4":"DELTA_BINARY_PACKED",DELTA_LENGTH_BYTE_ARRAY:5,"5":"DELTA_LENGTH_BYTE_ARRAY",DELTA_BYTE_ARRAY:6,"6":"DELTA_BYTE_ARRAY",RLE_DICTIONARY:7,"7":"RLE_DICTIONARY",BYTE_STREAM_SPLIT:8,"8":"BYTE_STREAM_SPLIT"}),d6=Object.freeze({V1:0,"0":"V1",V2:1,"1":"V2"}),fl=class{static __wrap(e){let r=Object.create(fl.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();ye.__wbg_writerproperties_free(e)}},Lt=class{static __wrap(e){let r=Object.create(Lt.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();ye.__wbg_writerpropertiesbuilder_free(e)}constructor(){let e=ye.writerpropertiesbuilder_new();return Lt.__wrap(e)}build(){let e=this.__destroy_into_raw(),r=ye.writerpropertiesbuilder_build(e);return fl.__wrap(r)}setWriterVersion(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setWriterVersion(r,e);return Lt.__wrap(n)}setDataPagesizeLimit(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setDataPagesizeLimit(r,e);return Lt.__wrap(n)}setDictionaryPagesizeLimit(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setDictionaryPagesizeLimit(r,e);return Lt.__wrap(n)}setWriteBatchSize(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setWriteBatchSize(r,e);return Lt.__wrap(n)}setMaxRowGroupSize(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setMaxRowGroupSize(r,e);return Lt.__wrap(n)}setCreatedBy(e){let r=this.__destroy_into_raw(),n=il(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),i=Kn,o=ye.writerpropertiesbuilder_setCreatedBy(r,n,i);return Lt.__wrap(o)}setEncoding(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setEncoding(r,e);return Lt.__wrap(n)}setCompression(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setCompression(r,e);return Lt.__wrap(n)}setDictionaryEnabled(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setDictionaryEnabled(r,e);return Lt.__wrap(n)}setStatisticsEnabled(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setStatisticsEnabled(r,e);return Lt.__wrap(n)}setMaxStatisticsSize(e){let r=this.__destroy_into_raw(),n=ye.writerpropertiesbuilder_setMaxStatisticsSize(r,e);return Lt.__wrap(n)}setColumnEncoding(e,r){let n=this.__destroy_into_raw(),i=il(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Kn,f=ye.writerpropertiesbuilder_setColumnEncoding(n,i,o,r);return Lt.__wrap(f)}setColumnCompression(e,r){let n=this.__destroy_into_raw(),i=il(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Kn,f=ye.writerpropertiesbuilder_setColumnCompression(n,i,o,r);return Lt.__wrap(f)}setColumnDictionaryEnabled(e,r){let n=this.__destroy_into_raw(),i=il(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Kn,f=ye.writerpropertiesbuilder_setColumnDictionaryEnabled(n,i,o,r);return Lt.__wrap(f)}setColumnStatisticsEnabled(e,r){let n=this.__destroy_into_raw(),i=il(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Kn,f=ye.writerpropertiesbuilder_setColumnStatisticsEnabled(n,i,o,r);return Lt.__wrap(f)}setColumnMaxStatisticsSize(e,r){let n=this.__destroy_into_raw(),i=il(e,ye.__wbindgen_malloc,ye.__wbindgen_realloc),o=Kn,f=ye.writerpropertiesbuilder_setColumnMaxStatisticsSize(n,i,o,r);return Lt.__wrap(f)}};FA=OA});async function qc(t){return __!==null?__:(await FA(t),__=Tw,Tw)}var __,q_=W(()=>{DA();__=null});async function PA(t,e){let r=e?.parquet?.wasmUrl,n=await qc(r),i=new Uint8Array(t),o=n.readParquet(i),f=o.buffer.slice(o.byteOffset,o.byteLength+o.byteOffset);return w6(f)}function w6(t){let e=Bw.RecordBatchStreamReader.from(t),r=[];for(let n of e)r.push(n);return new Bw.Table(r)}var Bw,NA=W(()=>{Bw=le(j_());q_()});function g6(t,e){return new ArrayBuffer(0)}var h6,b6,RA,HA=W(()=>{h6=typeof __VERSION__!="undefined"?__VERSION__:"latest",b6={},RA={name:"Apache Parquet",id:"parquet",module:"parquet",version:h6,extensions:["parquet"],mimeTypes:["application/octet-stream"],encodeSync:g6,binary:!0,options:b6}});var zA=W(()=>{q_()});async function MA(t,e){let r=e?.parquet?.wasmUrl,n=await qc(r),i=y6(t),o=new n.WriterPropertiesBuilder().build(),f=n.writeParquet(i,o);return f.buffer.slice(f.byteOffset,f.byteLength+f.byteOffset)}function y6(t){return UA.RecordBatchStreamWriter.writeAll(t).toUint8Array(!0)}var UA,LA=W(()=>{UA=le(j_());zA()});var j6,_6,VA,CA=W(()=>{LA();j6=typeof __VERSION__!="undefined"?__VERSION__:"latest",_6={parquet:{wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},VA={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:j6,extensions:["parquet"],mimeTypes:["application/octet-stream"],encode:MA,binary:!0,options:_6}});function WA(t,e){return new Promise((r,n)=>{t.write(e,i=>{i?n(i):r()})})}function KA(t){return new Promise((e,r)=>{t.close(n=>{n?r(n):e()})})}function YA(t,e){return new Promise((r,n)=>{let i=G_.createWriteStream(t,e);i.once("open",o=>r(i)),i.once("error",o=>n(o))})}var GA=W(()=>{Zn()});function al(t,e,r,n){if(!(e in qo))throw new Error(`invalid encoding: ${e}`);return qo[e].encodeValues(t,r,n)}async function B6(t,e){let r=Buffer.alloc(0);t.rLevelMax>0&&(r=al(kw,qs,e.rlevels,{bitWidth:si(t.rLevelMax)}));let n=Buffer.alloc(0);t.dLevelMax>0&&(n=al(kw,qs,e.dlevels,{bitWidth:si(t.dLevelMax)}));let i=al(t.primitiveType,t.encoding,e.values,{typeLength:t.typeLength,bitWidth:t.typeLength}),o=Buffer.concat([r,n,i]),f=await Dh(t.compression,o),s=new Ho({type:Lf.DATA_PAGE,data_page_header:new Cf({num_values:e.count,encoding:Nr[t.encoding],definition_level_encoding:Nr[qs],repetition_level_encoding:Nr[qs]}),uncompressed_page_size:o.length,compressed_page_size:f.length}),u=Eu(s),l=Buffer.concat([u,f]);return{header:s,headerSize:u.length,page:l}}async function k6(t,e,r){let n=al(t.primitiveType,t.encoding,e.values,{typeLength:t.typeLength,bitWidth:t.typeLength}),i=await Dh(t.compression,n),o=Buffer.alloc(0);t.rLevelMax>0&&(o=al(kw,qs,e.rlevels,{bitWidth:si(t.rLevelMax),disableEnvelope:!0}));let f=Buffer.alloc(0);t.dLevelMax>0&&(f=al(kw,qs,e.dlevels,{bitWidth:si(t.dLevelMax),disableEnvelope:!0}));let s=new Ho({type:Lf.DATA_PAGE_V2,data_page_header_v2:new Wf({num_values:e.count,num_nulls:e.count-e.values.length,num_rows:r,encoding:Nr[t.encoding],definition_levels_byte_length:f.length,repetition_levels_byte_length:o.length,is_compressed:t.compression!=="UNCOMPRESSED"}),uncompressed_page_size:o.length+f.length+n.length,compressed_page_size:o.length+f.length+i.length}),u=Eu(s),l=Buffer.concat([u,o,f,i]);return{header:s,headerSize:u.length,page:l}}async function I6(t,e,r,n){let i=e.columnData[t.path.join()],o=(n.baseOffset||0)+r,f,s=0,u=0;{let p=n.useDataPageV2?await k6(t,i,e.rowCount):await B6(t,i);f=p.page,s+=p.header.uncompressed_page_size+p.headerSize,u+=p.header.compressed_page_size+p.headerSize}let l=new Yf({path_in_schema:t.path,num_values:i.count,data_page_offset:o,encodings:[],total_uncompressed_size:s,total_compressed_size:u,type:Ci[t.primitiveType],codec:Zs[t.compression]});l.encodings.push(Nr[qs]),l.encodings.push(Nr[t.encoding]);let c=o+f.length;return{body:Buffer.concat([f,Eu(l)]),metadata:l,metadataOffset:c}}async function x6(t,e,r){let n=new Zf({num_rows:e.rowCount,columns:[],total_byte_size:0}),i=Buffer.alloc(0);for(let o of t.fieldList){if(o.isNested)continue;let f=await I6(o,e,i.length,r),s=new Gf({file_offset:f.metadataOffset,meta_data:f.metadata});n.columns.push(s),n.total_byte_size=new ZA.default(Number(n.total_byte_size)+f.body.length),i=Buffer.concat([i,f.body])}return{body:i,metadata:n}}function S6(t,e,r,n){let i=new Jf({version:q6,created_by:"parquets",num_rows:e,row_groups:r,schema:[],key_value_metadata:[]});for(let s in n){let u=new Ji({key:s,value:n[s]});i.key_value_metadata?.push?.(u)}{let s=new Ro({name:"root",num_children:Object.keys(t.fields).length});i.schema.push(s)}for(let s of t.fieldList){let u=Gs[s.repetitionType],l=new Ro({name:s.name,repetition_type:u});s.isNested?l.num_children=s.fieldCount:l.type=Ci[s.primitiveType],s.originalType&&(l.converted_type=Ys[s.originalType]),l.type_length=s.typeLength,i.schema.push(l)}let o=Eu(i),f=Buffer.alloc(o.length+8);return o.copy(f),f.writeUInt32LE(o.length,o.length),f.write(JA,o.length+4),f}var ZA,JA,q6,v6,T6,kw,qs,sl,Iw,QA=W(()=>{Mc();Cl();nd();xu();GA();_d();ZA=le(Tr()),JA="PAR1",q6=1,v6=8192,T6=4096,kw="INT32",qs="RLE",sl=class{static async openFile(e,r,n){let i=await YA(r,n);return sl.openStream(e,i,n)}static async openStream(e,r,n={}){let i=await Iw.openStream(e,r,n);return new sl(e,i,n)}constructor(e,r,n){this.schema=e,this.envelopeWriter=r,this.rowBuffer={},this.rowGroupSize=n.rowGroupSize||T6,this.closed=!1,this.userMetadata={},this.writeHeader()}async writeHeader(){try{await this.envelopeWriter.writeHeader()}catch(e){throw await this.envelopeWriter.close(),e}}async appendRow(e){if(this.closed)throw new Error("writer was closed");td(this.schema,e,this.rowBuffer),this.rowBuffer.rowCount>=this.rowGroupSize&&(this.rowBuffer={})}async close(e){if(this.closed)throw new Error("writer was closed");this.closed=!0,(this.rowBuffer.rowCount>0||this.rowBuffer.rowCount>=this.rowGroupSize)&&(this.rowBuffer={}),await this.envelopeWriter.writeFooter(this.userMetadata),await this.envelopeWriter.close(),e&&e()}setMetadata(e,r){this.userMetadata[String(e)]=String(r)}setRowGroupSize(e){this.rowGroupSize=e}setPageSize(e){this.envelopeWriter.setPageSize(e)}},Iw=class{static async openStream(e,r,n){let i=WA.bind(void 0,r),o=KA.bind(void 0,r);return new Iw(e,i,o,0,n)}constructor(e,r,n,i,o){this.schema=e,this.write=r,this.close=n,this.offset=i,this.rowCount=0,this.rowGroups=[],this.pageSize=o.pageSize||v6,this.useDataPageV2="useDataPageV2"in o?Boolean(o.useDataPageV2):!1}writeSection(e){return this.offset+=e.length,this.write(e)}writeHeader(){return this.writeSection(Buffer.from(JA))}async writeRowGroup(e){let r=await x6(this.schema,e,{baseOffset:this.offset,pageSize:this.pageSize,useDataPageV2:this.useDataPageV2});return this.rowCount+=e.rowCount,this.rowGroups.push(r.metadata),await this.writeSection(r.body)}writeFooter(e){return e||(e={}),this.writeSection(S6(this.schema,this.rowCount,this.rowGroups,e))}setPageSize(e){this.pageSize=e}}});function XA(t,e){if(!t)throw new Error(e||"loader assertion failed.")}var $A=W(()=>{});function E6(t){let e={};for(let r of t)e[r.name]&&console.warn("Schema: duplicated field name",r.name,r),e[r.name]=!0}function eO(t,e){return new Map([...t||new Map,...e||new Map])}var Yn,tO=W(()=>{$A();Yn=class{constructor(e,r){XA(Array.isArray(e)),E6(e),this.fields=e,this.metadata=r||new Map}compareTo(e){if(this.metadata!==e.metadata||this.fields.length!==e.fields.length)return!1;for(let r=0;r<this.fields.length;++r)if(!this.fields[r].compareTo(e.fields[r]))return!1;return!0}select(...e){let r=Object.create(null);for(let i of e)r[i]=!0;let n=this.fields.filter(i=>r[i.name]);return new Yn(n,this.metadata)}selectAt(...e){let r=e.map(n=>this.fields[n]).filter(Boolean);return new Yn(r,this.metadata)}assign(e){let r,n=this.metadata;if(e instanceof Yn){let f=e;r=f.fields,n=eO(eO(new Map,this.metadata),f.metadata)}else r=e;let i=Object.create(null);for(let f of this.fields)i[f.name]=f;for(let f of r)i[f.name]=f;let o=Object.values(i);return new Yn(o,n)}}});var mo,rO=W(()=>{mo=class{constructor(e,r,n=!1,i=new Map){this.name=e,this.type=r,this.nullable=n,this.metadata=i}get typeId(){return this.type&&this.type.typeId}clone(){return new mo(this.name,this.type,this.nullable,this.metadata)}compareTo(e){return this.name===e.name&&this.type===e.type&&this.nullable===e.nullable&&this.metadata===e.metadata}toString(){return`${this.type}${this.nullable?", nullable":""}${this.metadata?`, metadata: ${this.metadata}`:""}`}}});var Xe,nO=W(()=>{(function(C){C[C.NONE=0]="NONE",C[C.Null=1]="Null",C[C.Int=2]="Int",C[C.Float=3]="Float",C[C.Binary=4]="Binary",C[C.Utf8=5]="Utf8",C[C.Bool=6]="Bool",C[C.Decimal=7]="Decimal",C[C.Date=8]="Date",C[C.Time=9]="Time",C[C.Timestamp=10]="Timestamp",C[C.Interval=11]="Interval",C[C.List=12]="List",C[C.Struct=13]="Struct",C[C.Union=14]="Union",C[C.FixedSizeBinary=15]="FixedSizeBinary",C[C.FixedSizeList=16]="FixedSizeList",C[C.Map=17]="Map",C[C.Dictionary=-1]="Dictionary",C[C.Int8=-2]="Int8",C[C.Int16=-3]="Int16",C[C.Int32=-4]="Int32",C[C.Int64=-5]="Int64",C[C.Uint8=-6]="Uint8",C[C.Uint16=-7]="Uint16",C[C.Uint32=-8]="Uint32",C[C.Uint64=-9]="Uint64",C[C.Float16=-10]="Float16",C[C.Float32=-11]="Float32",C[C.Float64=-12]="Float64",C[C.DateDay=-13]="DateDay",C[C.DateMillisecond=-14]="DateMillisecond",C[C.TimestampSecond=-15]="TimestampSecond",C[C.TimestampMillisecond=-16]="TimestampMillisecond",C[C.TimestampMicrosecond=-17]="TimestampMicrosecond",C[C.TimestampNanosecond=-18]="TimestampNanosecond",C[C.TimeSecond=-19]="TimeSecond",C[C.TimeMillisecond=-20]="TimeMillisecond",C[C.TimeMicrosecond=-21]="TimeMicrosecond",C[C.TimeNanosecond=-22]="TimeNanosecond",C[C.DenseUnion=-23]="DenseUnion",C[C.SparseUnion=-24]="SparseUnion",C[C.IntervalDayTime=-25]="IntervalDayTime",C[C.IntervalYearMonth=-26]="IntervalYearMonth"})(Xe||(Xe={}))});var Sr,v_,vc,Si,Tc,Bc,qf,wo,kc,Ic,xc,iO,Sc,ll,Ei,ho,Ec,A6,T_,oO,B_,k_,O6,I_,x_,Ac,fO=W(()=>{nO();Sr=class{static isNull(e){return e&&e.typeId===Xe.Null}static isInt(e){return e&&e.typeId===Xe.Int}static isFloat(e){return e&&e.typeId===Xe.Float}static isBinary(e){return e&&e.typeId===Xe.Binary}static isUtf8(e){return e&&e.typeId===Xe.Utf8}static isBool(e){return e&&e.typeId===Xe.Bool}static isDecimal(e){return e&&e.typeId===Xe.Decimal}static isDate(e){return e&&e.typeId===Xe.Date}static isTime(e){return e&&e.typeId===Xe.Time}static isTimestamp(e){return e&&e.typeId===Xe.Timestamp}static isInterval(e){return e&&e.typeId===Xe.Interval}static isList(e){return e&&e.typeId===Xe.List}static isStruct(e){return e&&e.typeId===Xe.Struct}static isUnion(e){return e&&e.typeId===Xe.Union}static isFixedSizeBinary(e){return e&&e.typeId===Xe.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===Xe.FixedSizeList}static isMap(e){return e&&e.typeId===Xe.Map}static isDictionary(e){return e&&e.typeId===Xe.Dictionary}get typeId(){return Xe.NONE}compareTo(e){return this===e}},v_=class extends Sr{get typeId(){return Xe.Null}get[Symbol.toStringTag](){return"Null"}toString(){return"Null"}},vc=class extends Sr{get typeId(){return Xe.Bool}get[Symbol.toStringTag](){return"Bool"}toString(){return"Bool"}},Si=class extends Sr{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return Xe.Int}get[Symbol.toStringTag](){return"Int"}toString(){return`${this.isSigned?"I":"Ui"}nt${this.bitWidth}`}},Tc=class extends Si{constructor(){super(!0,8)}},Bc=class extends Si{constructor(){super(!0,16)}},qf=class extends Si{constructor(){super(!0,32)}},wo=class extends Si{constructor(){super(!0,64)}},kc=class extends Si{constructor(){super(!1,16)}},Ic=class extends Si{constructor(){super(!1,32)}},xc=class extends Si{constructor(){super(!1,64)}},iO={HALF:16,SINGLE:32,DOUBLE:64},Sc=class extends Sr{constructor(e){super();this.precision=e}get typeId(){return Xe.Float}get[Symbol.toStringTag](){return"Float"}toString(){return`Float${this.precision}`}},ll=class extends Sc{constructor(){super(iO.SINGLE)}},Ei=class extends Sc{constructor(){super(iO.DOUBLE)}},ho=class extends Sr{constructor(){super()}get typeId(){return Xe.Binary}toString(){return"Binary"}get[Symbol.toStringTag](){return"Binary"}},Ec=class extends Sr{get typeId(){return Xe.Utf8}get[Symbol.toStringTag](){return"Utf8"}toString(){return"Utf8"}},A6={DAY:0,MILLISECOND:1},T_=class extends Sr{constructor(e){super();this.unit=e}get typeId(){return Xe.Date}get[Symbol.toStringTag](){return"Date"}toString(){return`Date${(this.unit+1)*32}<${A6[this.unit]}>`}},oO={SECOND:1,MILLISECOND:1e3,MICROSECOND:1e6,NANOSECOND:1e9},B_=class extends Sr{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return Xe.Time}toString(){return`Time${this.bitWidth}<${oO[this.unit]}>`}get[Symbol.toStringTag](){return"Time"}},k_=class extends Sr{constructor(e,r=null){super();this.unit=e,this.timezone=r}get typeId(){return Xe.Timestamp}get[Symbol.toStringTag](){return"Timestamp"}toString(){return`Timestamp<${oO[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}},O6={DAY_TIME:0,YEAR_MONTH:1},I_=class extends Sr{constructor(e){super();this.unit=e}get typeId(){return Xe.Interval}get[Symbol.toStringTag](){return"Interval"}toString(){return`Interval<${O6[this.unit]}>`}},x_=class extends Sr{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return Xe.FixedSizeList}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get[Symbol.toStringTag](){return"FixedSizeList"}toString(){return`FixedSizeList[${this.listSize}]<${this.valueType}>`}},Ac=class extends Sr{constructor(e){super();this.children=e}get typeId(){return Xe.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}get[Symbol.toStringTag](){return"Struct"}}});var sO=W(()=>{tO();rO();fO()});var aO=W(()=>{sO()});function lO(t){let e=uO(t.schema);return new Yn(e)}function K6(t){let e=new Map;for(let r in t)if(r!=="name"){let n=typeof t[r]!="string"?JSON.stringify(t[r]):t[r];e.set(r,n)}return e}function uO(t){let e=[];for(let r in t){let n=t[r];if(n.fields){let i=uO(n.fields),o=new mo(r,new Ac(i),n.optional);e.push(o)}else{let i=W6[n.type],o=K6(n),f=new mo(r,new i,n.optional,o);e.push(f)}}return e}var W6,cO=W(()=>{aO();W6={BOOLEAN:vc,INT32:qf,INT64:Ei,INT96:Ei,FLOAT:ll,DOUBLE:Ei,BYTE_ARRAY:ho,FIXED_LEN_BYTE_ARRAY:ho,UTF8:Ec,DATE:qf,TIME_MILLIS:wo,TIME_MICROS:wo,TIMESTAMP_MILLIS:wo,TIMESTAMP_MICROS:wo,UINT_8:qf,UINT_16:kc,UINT_32:Ic,UINT_64:xc,INT_8:Tc,INT_16:Bc,INT_32:qf,INT_64:wo,JSON:ho,BSON:ho,INTERVAL:ho,DECIMAL_INT32:ll,DECIMAL_INT64:Ei,DECIMAL_BYTE_ARRAY:Ei,DECIMAL_FIXED_LEN_BYTE_ARRAY:Ei}});var dO={};D_(dO,{ParquetEncoder:()=>sl,ParquetLoader:()=>pO,ParquetReader:()=>Au,ParquetSchema:()=>eu,ParquetWasmLoader:()=>Y6,ParquetWasmWorkerLoader:()=>Aw,ParquetWasmWriter:()=>VA,ParquetWorkerLoader:()=>Ow,_ParquetWriter:()=>RA,_typecheckParquetLoader:()=>G6,convertParquetToArrowSchema:()=>lO,preloadCompressions:()=>KT});var pO,Y6,G6,mO=W(()=>{P_();N_();RI();NA();HA();CA();Cl();Cb();Xg();QA();cO();pO={...Ow,parse:NI,parseFileInBatches:$g},Y6={...Aw,parse:PA},G6=pO});var J6=B((TG,wO)=>{var Z6=(mO(),dO);globalThis.loaders=globalThis.loaders||{};wO.exports=Object.assign(globalThis.loaders,Z6)});J6();})();
37
37
  /*!
38
38
  *
39
39
  * Copyright 2009-2017 Kris Kowal under the terms of the MIT