mirror of
https://github.com/danog/telegram-tt.git
synced 2024-11-27 12:55:11 +01:00
2 lines
19 KiB
JavaScript
2 lines
19 KiB
JavaScript
(()=>{var e={5745:function(e,t,r){var n="/",i=r(4155),o=void 0!==o?o:{};"undefined"!=typeof self&&self,e.exports=function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=0)}([function(e,t,r){(function(t){var r,n,i=new Promise((function(e){n=e}));t.onmessage=function(e){i.then((function(){switch(e.data.command){case"decode":r&&r.decode(e.data.pages);break;case"done":r&&(r.sendLastBuffer(),t.close());break;case"init":r=new u(e.data,o)}}))};var u=function(e,t){if(!t)throw new Error("Module with exports required to initialize a decoder instance");this.mainReady=i,this.config=Object.assign({bufferLength:4096,decoderSampleRate:48e3,outputBufferSampleRate:48e3,resampleQuality:3},e),this._opus_decoder_create=t._opus_decoder_create,this._opus_decoder_destroy=t._opus_decoder_destroy,this._speex_resampler_process_interleaved_float=t._speex_resampler_process_interleaved_float,this._speex_resampler_init=t._speex_resampler_init,this._speex_resampler_destroy=t._speex_resampler_destroy,this._opus_decode_float=t._opus_decode_float,this._free=t._free,this._malloc=t._malloc,this.HEAPU8=t.HEAPU8,this.HEAP16=t.HEAP16,this.HEAP32=t.HEAP32,this.HEAPF32=t.HEAPF32,this.outputBuffers=[]};u.prototype.decode=function(e){var t=new DataView(e.buffer),r=this.getPageBoundaries(t),n=r.length-1;r.map((function(r,i){var o=t.getUint8(r+5,!0),u=t.getUint32(r+18,!0);if(2&o&&(this.numberOfChannels=t.getUint8(r+37,!0),this.init()),u>1){for(var s=t.getUint8(r+26,!0),a=r+27+s,f=0;f<s;f++){var c=t.getUint8(r+27+f,!0);if(this.decoderBuffer.set(e.subarray(a,a+=c),this.decoderBufferIndex),this.decoderBufferIndex+=c,c<255){var l=this._opus_decode_float(this.decoder,this.decoderBufferPointer,this.decoderBufferIndex,this.decoderOutputPointer,this.decoderOutputMaxLength,0),h=Math.ceil(l*this.config.outputBufferSampleRate/this.config.decoderSampleRate);this.HEAP32[this.decoderOutputLengthPointer>>2]=l,this.HEAP32[this.resampleOutputLengthPointer>>2]=h,this._speex_resampler_process_interleaved_float(this.resampler,this.decoderOutputPointer,this.decoderOutputLengthPointer,this.resampleOutputBufferPointer,this.resampleOutputLengthPointer),this.sendToOutputBuffers(this.HEAPF32.subarray(this.resampleOutputBufferPointer>>2,(this.resampleOutputBufferPointer>>2)+h*this.numberOfChannels)),this.decoderBufferIndex=0}}(4&o||i==n)&&this.sendLastBuffer()}}),this)},u.prototype.getPageBoundaries=function(e){for(var t=[],r=0;r<e.byteLength-32;r++)1399285583==e.getUint32(r,!0)&&t.push(r);return t},u.prototype.init=function(){this.resetOutputBuffers(),this.initCodec(),this.initResampler()},u.prototype.initCodec=function(){this.decoder&&(this._opus_decoder_destroy(this.decoder),this._free(this.decoderBufferPointer),this._free(this.decoderOutputLengthPointer),this._free(this.decoderOutputPointer));var e=this._malloc(4);this.decoder=this._opus_decoder_create(this.config.decoderSampleRate,this.numberOfChannels,e),this._free(e),this.decoderBufferMaxLength=4e3,this.decoderBufferPointer=this._malloc(this.decoderBufferMaxLength),this.decoderBuffer=this.HEAPU8.subarray(this.decoderBufferPointer,this.decoderBufferPointer+this.decoderBufferMaxLength),this.decoderBufferIndex=0,this.decoderOutputLengthPointer=this._malloc(4),this.decoderOutputMaxLength=this.config.decoderSampleRate*this.numberOfChannels*120/1e3,this.decoderOutputPointer=this._malloc(4*this.decoderOutputMaxLength)},u.prototype.initResampler=function(){this.resampler&&(this._speex_resampler_destroy(this.resampler),this._free(this.resampleOutputLengthPointer),this._free(this.resampleOutputBufferPointer));var e=this._malloc(4);this.resampler=this._speex_resampler_init(this.numberOfChannels,this.config.decoderSampleRate,this.config.outputBufferSampleRate,this.config.resampleQuality,e),this._free(e),this.resampleOutputLengthPointer=this._malloc(4),this.resampleOutputMaxLength=Math.ceil(this.decoderOutputMaxLength*this.config.outputBufferSampleRate/this.config.decoderSampleRate),this.resampleOutputBufferPointer=this._malloc(4*this.resampleOutputMaxLength)},u.prototype.resetOutputBuffers=function(){this.outputBuffers=[],this.outputBufferArrayBuffers=[],this.outputBufferIndex=0;for(var e=0;e<this.numberOfChannels;e++)this.outputBuffers.push(new Float32Array(this.config.bufferLength)),this.outputBufferArrayBuffers.push(this.outputBuffers[e].buffer)},u.prototype.sendLastBuffer=function(){this.sendToOutputBuffers(new Float32Array((this.config.bufferLength-this.outputBufferIndex)*this.numberOfChannels)),t.postMessage(null)},u.prototype.sendToOutputBuffers=function(e){for(var r=0,n=e.length/this.numberOfChannels;r<n;){var i=Math.min(n-r,this.config.bufferLength-this.outputBufferIndex);if(1===this.numberOfChannels)this.outputBuffers[0].set(e.subarray(r,r+i),this.outputBufferIndex);else for(var o=0;o<i;o++)this.outputBuffers.forEach((function(t,n){t[this.outputBufferIndex+o]=e[(r+o)*this.numberOfChannels+n]}),this);r+=i,this.outputBufferIndex+=i,this.outputBufferIndex==this.config.bufferLength&&(t.postMessage(this.outputBuffers,this.outputBufferArrayBuffers),this.resetOutputBuffers())}},o||(o={}),o.mainReady=i,o.OggOpusDecoder=u,o.onRuntimeInitialized=n,e.exports=o}).call(this,r(1))},function(e,t){var r;r=function(){return this}();try{r=r||new Function("return this")()}catch(e){"object"==typeof window&&(r=window)}e.exports=r}]);var u,s={};for(u in o)o.hasOwnProperty(u)&&(s[u]=o[u]);var a=[],f=!1,c=!1,l=!1,h=!1;f="object"==typeof window,c="function"==typeof importScripts,l="object"==typeof i&&"object"==typeof i.versions&&"string"==typeof i.versions.node,h=!f&&!l&&!c;var p,d,m,g,y="";function _(e){return o.locateFile?o.locateFile(e,y):y+e}l?(y=c?r(6470).dirname(y)+"/":n+"/",p=function(e,t){return m||(m=r(516)),g||(g=r(6470)),e=g.normalize(e),m.readFileSync(e,t?null:"utf8")},d=function(e){var t=p(e,!0);return t.buffer||(t=new Uint8Array(t)),B(t.buffer),t},i.argv.length>1&&i.argv[1].replace(/\\/g,"/"),a=i.argv.slice(2),e.exports=o,i.on("uncaughtException",(function(e){if(!(e instanceof we))throw e})),i.on("unhandledRejection",$),o.inspect=function(){return"[Emscripten Module object]"}):h?("undefined"!=typeof read&&(p=function(e){return read(e)}),d=function(e){var t;return"function"==typeof readbuffer?new Uint8Array(readbuffer(e)):(B("object"==typeof(t=read(e,"binary"))),t)},"undefined"!=typeof scriptArgs?a=scriptArgs:void 0!==arguments&&(a=arguments),"undefined"!=typeof print&&("undefined"==typeof console&&(console={}),console.log=print,console.warn=console.error="undefined"!=typeof printErr?printErr:print)):(f||c)&&(c?y=self.location.href:document.currentScript&&(y=document.currentScript.src),y=0!==y.indexOf("blob:")?y.substr(0,y.lastIndexOf("/")+1):"",p=function(e){var t=new XMLHttpRequest;return t.open("GET",e,!1),t.send(null),t.responseText},c&&(d=function(e){var t=new XMLHttpRequest;return t.open("GET",e,!1),t.responseType="arraybuffer",t.send(null),new Uint8Array(t.response)}));var v,b,w=o.print||console.log.bind(console),A=o.printErr||console.warn.bind(console);for(u in s)s.hasOwnProperty(u)&&(o[u]=s[u]);s=null,o.arguments&&(a=o.arguments),o.thisProgram&&o.thisProgram,o.quit&&o.quit,o.wasmBinary&&(v=o.wasmBinary),o.noExitRuntime&&o.noExitRuntime,"object"!=typeof WebAssembly&&A("no native wasm support detected");var x=new WebAssembly.Table({initial:9,maximum:9,element:"anyfunc"}),O=!1;function B(e,t){e||$("Assertion failed: "+t)}var P="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0;function C(e,t,r){for(var n=t+r,i=t;e[i]&&!(i>=n);)++i;if(i-t>16&&e.subarray&&P)return P.decode(e.subarray(t,i));for(var o="";t<i;){var u=e[t++];if(128&u){var s=63&e[t++];if(192!=(224&u)){var a=63&e[t++];if((u=224==(240&u)?(15&u)<<12|s<<6|a:(7&u)<<18|s<<12|a<<6|63&e[t++])<65536)o+=String.fromCharCode(u);else{var f=u-65536;o+=String.fromCharCode(55296|f>>10,56320|1023&f)}}else o+=String.fromCharCode((31&u)<<6|s)}else o+=String.fromCharCode(u)}return o}function R(e,t){return e?C(T,e,t):""}var E,T,L,S=65536;function I(e){E=e,o.HEAP8=new Int8Array(e),o.HEAP16=new Int16Array(e),o.HEAP32=L=new Int32Array(e),o.HEAPU8=T=new Uint8Array(e),o.HEAPU16=new Uint16Array(e),o.HEAPU32=new Uint32Array(e),o.HEAPF32=new Float32Array(e),o.HEAPF64=new Float64Array(e)}var M=5283024,H=39984,j=o.INITIAL_MEMORY||16777216;function U(e){for(;e.length>0;){var t=e.shift();if("function"!=typeof t){var r=t.func;"number"==typeof r?void 0===t.arg?o.dynCall_v(r):o.dynCall_vi(r,t.arg):r(void 0===t.arg?null:t.arg)}else t(o)}}(b=o.wasmMemory?o.wasmMemory:new WebAssembly.Memory({initial:j/S,maximum:j/S}))&&(E=b.buffer),j=E.byteLength,I(E),L[H>>2]=M;var k=[],W=[],F=[],D=[];function z(){if(o.preRun)for("function"==typeof o.preRun&&(o.preRun=[o.preRun]);o.preRun.length;)Q(o.preRun.shift());U(k)}function q(){U(W)}function N(){U(F)}function G(){if(o.postRun)for("function"==typeof o.postRun&&(o.postRun=[o.postRun]);o.postRun.length;)X(o.postRun.shift());U(D)}function Q(e){k.unshift(e)}function X(e){D.unshift(e)}var J=0,V=null,Y=null;function K(e){J++,o.monitorRunDependencies&&o.monitorRunDependencies(J)}function Z(e){if(J--,o.monitorRunDependencies&&o.monitorRunDependencies(J),0==J&&(null!==V&&(clearInterval(V),V=null),Y)){var t=Y;Y=null,t()}}function $(e){throw o.onAbort&&o.onAbort(e),w(e+=""),A(e),O=!0,e="abort("+e+"). Build with -s ASSERTIONS=1 for more info.",new WebAssembly.RuntimeError(e)}function ee(e,t){return String.prototype.startsWith?e.startsWith(t):0===e.indexOf(t)}o.preloadedImages={},o.preloadedAudios={};var te="data:application/octet-stream;base64,";function re(e){return ee(e,te)}var ne="file://";function ie(e){return ee(e,ne)}var oe="decoderWorker.min.wasm";function ue(){try{if(v)return new Uint8Array(v);if(d)return d(oe);throw"both async and sync fetching of the wasm failed"}catch(e){$(e)}}function se(){return v||!f&&!c||"function"!=typeof fetch||ie(oe)?new Promise((function(e,t){e(ue())})):fetch(oe,{credentials:"same-origin"}).then((function(e){if(!e.ok)throw"failed to load wasm binary file at '"+oe+"'";return e.arrayBuffer()})).catch((function(){return ue()}))}function ae(){var e={a:ye};function t(e,t){var r=e.exports;o.asm=r,Z()}function r(e){t(e.instance)}function n(t){return se().then((function(t){return WebAssembly.instantiate(t,e)})).then(t,(function(e){A("failed to asynchronously prepare wasm: "+e),$(e)}))}if(K(),o.instantiateWasm)try{return o.instantiateWasm(e,t)}catch(e){return A("Module.instantiateWasm callback failed with error: "+e),!1}return function(){if(v||"function"!=typeof WebAssembly.instantiateStreaming||re(oe)||ie(oe)||"function"!=typeof fetch)return n(r);fetch(oe,{credentials:"same-origin"}).then((function(t){return WebAssembly.instantiateStreaming(t,e).then(r,(function(e){A("wasm streaming compile failed: "+e),A("falling back to ArrayBuffer instantiation"),n(r)}))}))}(),{}}function fe(){$()}function ce(e,t,r){T.copyWithin(e,t,t+r)}function le(e){$("OOM")}function he(e){le()}re(oe)||(oe=_(oe)),W.push({func:function(){be()}});var pe={mappings:{},buffers:[null,[],[]],printChar:function(e,t){var r=pe.buffers[e];0===t||10===t?((1===e?w:A)(C(r,0)),r.length=0):r.push(t)},varargs:void 0,get:function(){return pe.varargs+=4,L[pe.varargs-4>>2]},getStr:function(e){return R(e)},get64:function(e,t){return e}};function de(e){return 0}function me(e,t,r,n,i){}function ge(e,t,r,n){for(var i=0,o=0;o<r;o++){for(var u=L[t+8*o>>2],s=L[t+(8*o+4)>>2],a=0;a<s;a++)pe.printChar(e,T[u+a]);i+=s}return L[n>>2]=i,0}var ye={c:fe,e:ce,f:he,d:de,b:me,a:ge,memory:b,table:x},_e=ae();o.asm=_e;var ve,be=o.___wasm_call_ctors=function(){return(be=o.___wasm_call_ctors=o.asm.g).apply(null,arguments)};function we(e){this.name="ExitStatus",this.message="Program terminated with exit("+e+")",this.status=e}function Ae(e){function t(){ve||(ve=!0,o.calledRun=!0,O||(q(),N(),o.onRuntimeInitialized&&o.onRuntimeInitialized(),G()))}e=e||a,J>0||(z(),J>0||(o.setStatus?(o.setStatus("Running..."),setTimeout((function(){setTimeout((function(){o.setStatus("")}),1),t()}),1)):t()))}if(o._opus_decoder_create=function(){return(o._opus_decoder_create=o.asm.h).apply(null,arguments)},o._opus_decode_float=function(){return(o._opus_decode_float=o.asm.i).apply(null,arguments)},o._opus_decoder_destroy=function(){return(o._opus_decoder_destroy=o.asm.j).apply(null,arguments)},o._speex_resampler_init=function(){return(o._speex_resampler_init=o.asm.k).apply(null,arguments)},o._speex_resampler_destroy=function(){return(o._speex_resampler_destroy=o.asm.l).apply(null,arguments)},o._speex_resampler_process_interleaved_float=function(){return(o._speex_resampler_process_interleaved_float=o.asm.m).apply(null,arguments)},o._malloc=function(){return(o._malloc=o.asm.n).apply(null,arguments)},o._free=function(){return(o._free=o.asm.o).apply(null,arguments)},o.asm=_e,Y=function e(){ve||Ae(),ve||(Y=e)},o.run=Ae,o.preInit)for("function"==typeof o.preInit&&(o.preInit=[o.preInit]);o.preInit.length>0;)o.preInit.pop()();Ae()},6470:(e,t,r)=>{"use strict";var n=r(4155);function i(e){if("string"!=typeof e)throw new TypeError("Path must be a string. Received "+JSON.stringify(e))}function o(e,t){for(var r,n="",i=0,o=-1,u=0,s=0;s<=e.length;++s){if(s<e.length)r=e.charCodeAt(s);else{if(47===r)break;r=47}if(47===r){if(o===s-1||1===u);else if(o!==s-1&&2===u){if(n.length<2||2!==i||46!==n.charCodeAt(n.length-1)||46!==n.charCodeAt(n.length-2))if(n.length>2){var a=n.lastIndexOf("/");if(a!==n.length-1){-1===a?(n="",i=0):i=(n=n.slice(0,a)).length-1-n.lastIndexOf("/"),o=s,u=0;continue}}else if(2===n.length||1===n.length){n="",i=0,o=s,u=0;continue}t&&(n.length>0?n+="/..":n="..",i=2)}else n.length>0?n+="/"+e.slice(o+1,s):n=e.slice(o+1,s),i=s-o-1;o=s,u=0}else 46===r&&-1!==u?++u:u=-1}return n}var u={resolve:function(){for(var e,t="",r=!1,u=arguments.length-1;u>=-1&&!r;u--){var s;u>=0?s=arguments[u]:(void 0===e&&(e=n.cwd()),s=e),i(s),0!==s.length&&(t=s+"/"+t,r=47===s.charCodeAt(0))}return t=o(t,!r),r?t.length>0?"/"+t:"/":t.length>0?t:"."},normalize:function(e){if(i(e),0===e.length)return".";var t=47===e.charCodeAt(0),r=47===e.charCodeAt(e.length-1);return 0!==(e=o(e,!t)).length||t||(e="."),e.length>0&&r&&(e+="/"),t?"/"+e:e},isAbsolute:function(e){return i(e),e.length>0&&47===e.charCodeAt(0)},join:function(){if(0===arguments.length)return".";for(var e,t=0;t<arguments.length;++t){var r=arguments[t];i(r),r.length>0&&(void 0===e?e=r:e+="/"+r)}return void 0===e?".":u.normalize(e)},relative:function(e,t){if(i(e),i(t),e===t)return"";if((e=u.resolve(e))===(t=u.resolve(t)))return"";for(var r=1;r<e.length&&47===e.charCodeAt(r);++r);for(var n=e.length,o=n-r,s=1;s<t.length&&47===t.charCodeAt(s);++s);for(var a=t.length-s,f=o<a?o:a,c=-1,l=0;l<=f;++l){if(l===f){if(a>f){if(47===t.charCodeAt(s+l))return t.slice(s+l+1);if(0===l)return t.slice(s+l)}else o>f&&(47===e.charCodeAt(r+l)?c=l:0===l&&(c=0));break}var h=e.charCodeAt(r+l);if(h!==t.charCodeAt(s+l))break;47===h&&(c=l)}var p="";for(l=r+c+1;l<=n;++l)l!==n&&47!==e.charCodeAt(l)||(0===p.length?p+="..":p+="/..");return p.length>0?p+t.slice(s+c):(s+=c,47===t.charCodeAt(s)&&++s,t.slice(s))},_makeLong:function(e){return e},dirname:function(e){if(i(e),0===e.length)return".";for(var t=e.charCodeAt(0),r=47===t,n=-1,o=!0,u=e.length-1;u>=1;--u)if(47===(t=e.charCodeAt(u))){if(!o){n=u;break}}else o=!1;return-1===n?r?"/":".":r&&1===n?"//":e.slice(0,n)},basename:function(e,t){if(void 0!==t&&"string"!=typeof t)throw new TypeError('"ext" argument must be a string');i(e);var r,n=0,o=-1,u=!0;if(void 0!==t&&t.length>0&&t.length<=e.length){if(t.length===e.length&&t===e)return"";var s=t.length-1,a=-1;for(r=e.length-1;r>=0;--r){var f=e.charCodeAt(r);if(47===f){if(!u){n=r+1;break}}else-1===a&&(u=!1,a=r+1),s>=0&&(f===t.charCodeAt(s)?-1==--s&&(o=r):(s=-1,o=a))}return n===o?o=a:-1===o&&(o=e.length),e.slice(n,o)}for(r=e.length-1;r>=0;--r)if(47===e.charCodeAt(r)){if(!u){n=r+1;break}}else-1===o&&(u=!1,o=r+1);return-1===o?"":e.slice(n,o)},extname:function(e){i(e);for(var t=-1,r=0,n=-1,o=!0,u=0,s=e.length-1;s>=0;--s){var a=e.charCodeAt(s);if(47!==a)-1===n&&(o=!1,n=s+1),46===a?-1===t?t=s:1!==u&&(u=1):-1!==t&&(u=-1);else if(!o){r=s+1;break}}return-1===t||-1===n||0===u||1===u&&t===n-1&&t===r+1?"":e.slice(t,n)},format:function(e){if(null===e||"object"!=typeof e)throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof e);return function(e,t){var r=t.dir||t.root,n=t.base||(t.name||"")+(t.ext||"");return r?r===t.root?r+n:r+"/"+n:n}(0,e)},parse:function(e){i(e);var t={root:"",dir:"",base:"",ext:"",name:""};if(0===e.length)return t;var r,n=e.charCodeAt(0),o=47===n;o?(t.root="/",r=1):r=0;for(var u=-1,s=0,a=-1,f=!0,c=e.length-1,l=0;c>=r;--c)if(47!==(n=e.charCodeAt(c)))-1===a&&(f=!1,a=c+1),46===n?-1===u?u=c:1!==l&&(l=1):-1!==u&&(l=-1);else if(!f){s=c+1;break}return-1===u||-1===a||0===l||1===l&&u===a-1&&u===s+1?-1!==a&&(t.base=t.name=0===s&&o?e.slice(1,a):e.slice(s,a)):(0===s&&o?(t.name=e.slice(1,u),t.base=e.slice(1,a)):(t.name=e.slice(s,u),t.base=e.slice(s,a)),t.ext=e.slice(u,a)),s>0?t.dir=e.slice(0,s-1):o&&(t.dir="/"),t},sep:"/",delimiter:":",win32:null,posix:null};u.posix=u,e.exports=u},4155:e=>{var t,r,n=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function u(e){if(t===setTimeout)return setTimeout(e,0);if((t===i||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(r){try{return t.call(null,e,0)}catch(r){return t.call(this,e,0)}}}!function(){try{t="function"==typeof setTimeout?setTimeout:i}catch(e){t=i}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(e){r=o}}();var s,a=[],f=!1,c=-1;function l(){f&&s&&(f=!1,s.length?a=s.concat(a):c=-1,a.length&&h())}function h(){if(!f){var e=u(l);f=!0;for(var t=a.length;t;){for(s=a,a=[];++c<t;)s&&s[c].run();c=-1,t=a.length}s=null,f=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===o||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function d(){}n.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];a.push(new p(e,t)),1!==a.length||f||u(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=d,n.addListener=d,n.once=d,n.off=d,n.removeListener=d,n.removeAllListeners=d,n.emit=d,n.prependListener=d,n.prependOnceListener=d,n.listeners=function(e){return[]},n.binding=function(e){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(e){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}},516:()=>{}},t={};!function r(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n].call(o.exports,o,o.exports,r),o.exports}(5745)})();
|
|
//# sourceMappingURL=745.8d34ddd7e74f421eeeed.js.map
|