w-json-stream 1.0.12 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -0
- package/.github/workflows/ci-test.yml +24 -0
- package/README.md +6 -7
- package/SECURITY.md +5 -0
- package/dist/into-stream.umd.js +2 -2
- package/dist/into-stream.umd.js.map +1 -1
- package/dist/json-stream-stringify.umd.js +2 -2
- package/dist/json-stream-stringify.umd.js.map +1 -1
- package/dist/through.umd.js +2 -2
- package/dist/through.umd.js.map +1 -1
- package/dist/w-json-stream.umd.js +2 -2
- package/dist/w-json-stream.umd.js.map +1 -1
- package/dist/w-json-stream.wk.umd.js +1 -1
- package/docs/WJsonStream.mjs.html +1 -1
- package/docs/examples/ex-large-webworker.html +3 -3
- package/docs/examples/ex-large.html +2 -2
- package/docs/examples/ex-small-stream.html +2 -2
- package/docs/examples/ex-small.html +2 -2
- package/docs/examples/ex-stream-createParseStream.html +2 -2
- package/docs/examples/ex-stream-createParseStreamWithFilter.html +3 -3
- package/docs/examples/ex-stream-createStringifyStream.html +2 -2
- package/docs/global.html +1 -1
- package/docs/index.html +1 -1
- package/examples/ex-large-webworker.html +1 -1
- package/package.json +3 -3
package/.eslintrc.js
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Node.js CI
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
node-version: [16.x]
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
17
|
+
uses: actions/setup-node@v1
|
|
18
|
+
with:
|
|
19
|
+
node-version: ${{ matrix.node-version }}
|
|
20
|
+
- run: npm cache clean -f
|
|
21
|
+
- run: npm install
|
|
22
|
+
- run: npm test
|
|
23
|
+
env:
|
|
24
|
+
CI: true
|
package/README.md
CHANGED
|
@@ -3,7 +3,6 @@ A tool for JSON parse and stringify by stream and web worker.
|
|
|
3
3
|
|
|
4
4
|

|
|
5
5
|
[](https://npmjs.org/package/w-json-stream)
|
|
6
|
-
[](https://travis-ci.org/yuda-lyu/w-json-stream)
|
|
7
6
|
[](https://npmjs.org/package/w-json-stream)
|
|
8
7
|
[](https://github.com/yuda-lyu/w-json-stream)
|
|
9
8
|
[](https://npmjs.org/package/w-json-stream)
|
|
@@ -443,10 +442,10 @@ testStream()
|
|
|
443
442
|
```alias
|
|
444
443
|
|
|
445
444
|
<!-- for basic -->
|
|
446
|
-
<script src="https://cdn.jsdelivr.net/npm/w-json-stream@1.0.
|
|
445
|
+
<script src="https://cdn.jsdelivr.net/npm/w-json-stream@1.0.15/dist/w-json-stream.umd.js"></script>
|
|
447
446
|
|
|
448
447
|
<!-- for web workers -->
|
|
449
|
-
<script src="https://cdn.jsdelivr.net/npm/w-json-stream@1.0.
|
|
448
|
+
<script src="https://cdn.jsdelivr.net/npm/w-json-stream@1.0.15/dist/w-json-stream.wk.umd.js"></script>
|
|
450
449
|
|
|
451
450
|
```
|
|
452
451
|
|
|
@@ -456,16 +455,16 @@ testStream()
|
|
|
456
455
|
|
|
457
456
|
> **stringify and parse for large data:** [ex-large.html](https://yuda-lyu.github.io/w-json-stream/examples/ex-large.html) [[source code](https://github.com/yuda-lyu/w-json-stream/blob/master/docs/examples/ex-large.html)]
|
|
458
457
|
|
|
459
|
-
> **createParseStream
|
|
458
|
+
> **createParseStream:** [ex-stream-createParseStream.html](https://yuda-lyu.github.io/w-json-stream/examples/ex-stream-createParseStream.html) [[source code](https://github.com/yuda-lyu/w-json-stream/blob/master/docs/examples/ex-stream-createParseStream.html)] * ReadableStream does not support IE11.
|
|
460
459
|
|
|
461
460
|
> **createParseStream with filter:** [ex-stream-createParseStreamWithFilter.html](https://yuda-lyu.github.io/w-json-stream/examples/ex-stream-createParseStreamWithFilter.html) [[source code](https://github.com/yuda-lyu/w-json-stream/blob/master/docs/examples/ex-stream-createParseStreamWithFilter.html)]
|
|
462
461
|
|
|
463
|
-
> **createStringifyStream
|
|
462
|
+
> **createStringifyStream:** [ex-stream-createStringifyStream.html](https://yuda-lyu.github.io/w-json-stream/examples/ex-stream-createStringifyStream.html) [[source code](https://github.com/yuda-lyu/w-json-stream/blob/master/docs/examples/ex-stream-createStringifyStream.html)] * WritableStream does not support IE11 and Firefox.
|
|
464
463
|
|
|
465
|
-
> **stringify and parse for large data in web worker
|
|
464
|
+
> **stringify and parse for large data in web worker:** [ex-large-webworker.html](https://yuda-lyu.github.io/w-json-stream/examples/ex-large-webworker.html) [[source code](https://github.com/yuda-lyu/w-json-stream/blob/master/docs/examples/ex-large-webworker.html)] * WebWorkers(from blob) does not support IE11.
|
|
466
465
|
```alias
|
|
467
466
|
|
|
468
|
-
console.log('
|
|
467
|
+
console.log('WebWorkers(from blob) does not support IE11')
|
|
469
468
|
|
|
470
469
|
let json = window['w-json-stream']
|
|
471
470
|
console.log(json)
|
package/SECURITY.md
ADDED
package/dist/into-stream.umd.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* into-stream v1.0.
|
|
2
|
+
* into-stream v1.0.15
|
|
3
3
|
* (c) 2018-2021 yuda-lyu(semisphere)
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
|
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self)["into-stream"]=e()}(this,(function(){"use strict";function t(t,e,r,n,i,o,a){try{var s=t[o](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,i)}function e(e){return function(){var r=this,n=arguments;return new Promise((function(i,o){var a=e.apply(r,n);function s(e){t(a,i,o,s,u,"next",e)}function u(e){t(a,i,o,s,u,"throw",e)}s(void 0)}))}}function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var n="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function i(t){if(t.__esModule)return t;var e=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(t).forEach((function(r){var n=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,n.get?n:{enumerable:!0,get:function(){return t[r]}})})),e}function o(t){var e={exports:{}};return t(e,e.exports),e.exports}var a=o((function(t){var e=function(t){var e,n=Object.prototype,i=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",s=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var i=e&&e.prototype instanceof v?e:v,o=Object.create(i.prototype),a=new L(n||[]);return o._invoke=function(t,e,r){var n=h;return function(i,o){if(n===p)throw new Error("Generator is already running");if(n===g){if("throw"===i)throw o;return j()}for(r.method=i,r.arg=o;;){var a=r.delegate;if(a){var s=T(a,r);if(s){if(s===y)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===h)throw n=g,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=p;var u=c(t,e,r);if("normal"===u.type){if(n=r.done?g:d,u.arg===y)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=g,r.method="throw",r.arg=u.arg)}}}(t,r,a),o}function c(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var h="suspendedStart",d="suspendedYield",p="executing",g="completed",y={};function v(){}function b(){}function w(){}var m={};m[a]=function(){return this};var _=Object.getPrototypeOf,E=_&&_(_(O([])));E&&E!==n&&i.call(E,a)&&(m=E);var S=w.prototype=v.prototype=Object.create(m);function x(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function k(t,e){function n(o,a,s,u){var f=c(t[o],t,a);if("throw"!==f.type){var l=f.arg,h=l.value;return h&&"object"===r(h)&&i.call(h,"__await")?e.resolve(h.__await).then((function(t){n("next",t,s,u)}),(function(t){n("throw",t,s,u)})):e.resolve(h).then((function(t){l.value=t,s(l)}),(function(t){return n("throw",t,s,u)}))}u(f.arg)}var o;this._invoke=function(t,r){function i(){return new e((function(e,i){n(t,r,e,i)}))}return o=o?o.then(i,i):i()}}function T(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,T(t,r),"throw"===r.method))return y;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return y}var i=c(n,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,y;var o=i.arg;return o?o.done?(r[t.resultName]=o.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,y):o:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,y)}function R(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function A(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function L(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(R,this),this.reset(!0)}function O(t){if(t){var r=t[a];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function r(){for(;++n<t.length;)if(i.call(t,n))return r.value=t[n],r.done=!1,r;return r.value=e,r.done=!0,r};return o.next=o}}return{next:j}}function j(){return{value:e,done:!0}}return b.prototype=S.constructor=w,w.constructor=b,b.displayName=f(w,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,u,"GeneratorFunction")),t.prototype=Object.create(S),t},t.awrap=function(t){return{__await:t}},x(k.prototype),k.prototype[s]=function(){return this},t.AsyncIterator=k,t.async=function(e,r,n,i,o){void 0===o&&(o=Promise);var a=new k(l(e,r,n,i),o);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},x(S),f(S,u,"Generator"),S[a]=function(){return this},S.toString=function(){return"[object Generator]"},t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=O,L.prototype={constructor:L,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(A),!t)for(var r in this)"t"===r.charAt(0)&&i.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function n(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var u=i.call(a,"catchLoc"),f=i.call(a,"finallyLoc");if(u&&f){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!f)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,y):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),y},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),A(r),y}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;A(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:O(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),y}},t}(t.exports);try{regeneratorRuntime=e}catch(t){Function("r","regeneratorRuntime = r")(e)}})),s="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};function u(){throw new Error("setTimeout has not been defined")}function f(){throw new Error("clearTimeout has not been defined")}var l=u,c=f;function h(t){if(l===setTimeout)return setTimeout(t,0);if((l===u||!l)&&setTimeout)return l=setTimeout,setTimeout(t,0);try{return l(t,0)}catch(e){try{return l.call(null,t,0)}catch(e){return l.call(this,t,0)}}}"function"==typeof s.setTimeout&&(l=setTimeout),"function"==typeof s.clearTimeout&&(c=clearTimeout);var d,p=[],g=!1,y=-1;function v(){g&&d&&(g=!1,d.length?p=d.concat(p):y=-1,p.length&&b())}function b(){if(!g){var t=h(v);g=!0;for(var e=p.length;e;){for(d=p,p=[];++y<e;)d&&d[y].run();y=-1,e=p.length}d=null,g=!1,function(t){if(c===clearTimeout)return clearTimeout(t);if((c===f||!c)&&clearTimeout)return c=clearTimeout,clearTimeout(t);try{c(t)}catch(e){try{return c.call(null,t)}catch(e){return c.call(this,t)}}}(t)}}function w(t,e){this.fun=t,this.array=e}w.prototype.run=function(){this.fun.apply(null,this.array)};function m(){}var _=m,E=m,S=m,x=m,k=m,T=m,R=m;var A=s.performance||{},L=A.now||A.mozNow||A.msNow||A.oNow||A.webkitNow||function(){return(new Date).getTime()};var O=new Date;var j={nextTick:function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];p.push(new w(t,e)),1!==p.length||g||h(b)},title:"browser",browser:!0,env:{},argv:[],version:"",versions:{},on:_,addListener:E,once:S,off:x,removeListener:k,removeAllListeners:T,emit:R,binding:function(t){throw new Error("process.binding is not supported")},cwd:function(){return"/"},chdir:function(t){throw new Error("process.chdir is not supported")},umask:function(){return 0},hrtime:function(t){var e=.001*L.call(A),r=Math.floor(e),n=Math.floor(e%1*1e9);return t&&(r-=t[0],(n-=t[1])<0&&(r--,n+=1e9)),[r,n]},platform:"browser",release:{},config:{},uptime:function(){return(new Date-O)/1e3}},M=o((function(t){void 0===j||!j.version||0===j.version.indexOf("v0.")||0===j.version.indexOf("v1.")&&0!==j.version.indexOf("v1.8.")?t.exports={nextTick:function(t,e,r,n){if("function"!=typeof t)throw new TypeError('"callback" argument must be a function');var i,o,a=arguments.length;switch(a){case 0:case 1:return j.nextTick(t);case 2:return j.nextTick((function(){t.call(null,e)}));case 3:return j.nextTick((function(){t.call(null,e,r)}));case 4:return j.nextTick((function(){t.call(null,e,r,n)}));default:for(i=new Array(a-1),o=0;o<i.length;)i[o++]=arguments[o];return j.nextTick((function(){t.apply(null,i)}))}}}:t.exports=j})),P={}.toString,C=Array.isArray||function(t){return"[object Array]"==P.call(t)};function B(){}function U(){U.init.call(this)}function N(t){return void 0===t._maxListeners?U.defaultMaxListeners:t._maxListeners}function D(t,e,r){if(e)t.call(r);else for(var n=t.length,i=G(t,n),o=0;o<n;++o)i[o].call(r)}function I(t,e,r,n){if(e)t.call(r,n);else for(var i=t.length,o=G(t,i),a=0;a<i;++a)o[a].call(r,n)}function Y(t,e,r,n,i){if(e)t.call(r,n,i);else for(var o=t.length,a=G(t,o),s=0;s<o;++s)a[s].call(r,n,i)}function W(t,e,r,n,i,o){if(e)t.call(r,n,i,o);else for(var a=t.length,s=G(t,a),u=0;u<a;++u)s[u].call(r,n,i,o)}function z(t,e,r,n){if(e)t.apply(r,n);else for(var i=t.length,o=G(t,i),a=0;a<i;++a)o[a].apply(r,n)}function F(t,e,r,n){var i,o,a,s;if("function"!=typeof r)throw new TypeError('"listener" argument must be a function');if((o=t._events)?(o.newListener&&(t.emit("newListener",e,r.listener?r.listener:r),o=t._events),a=o[e]):(o=t._events=new B,t._eventsCount=0),a){if("function"==typeof a?a=o[e]=n?[r,a]:[a,r]:n?a.unshift(r):a.push(r),!a.warned&&(i=N(t))&&i>0&&a.length>i){a.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+e+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=t,u.type=e,u.count=a.length,s=u,"function"==typeof console.warn?console.warn(s):console.log(s)}}else a=o[e]=r,++t._eventsCount;return t}function q(t,e,r){var n=!1;function i(){t.removeListener(e,i),n||(n=!0,r.apply(t,arguments))}return i.listener=r,i}function H(t){var e=this._events;if(e){var r=e[t];if("function"==typeof r)return 1;if(r)return r.length}return 0}function G(t,e){for(var r=new Array(e);e--;)r[e]=t[e];return r}B.prototype=Object.create(null),U.EventEmitter=U,U.usingDomains=!1,U.prototype.domain=void 0,U.prototype._events=void 0,U.prototype._maxListeners=void 0,U.defaultMaxListeners=10,U.init=function(){this.domain=null,U.usingDomains&&undefined.active,this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=new B,this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},U.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||isNaN(t))throw new TypeError('"n" argument must be a positive number');return this._maxListeners=t,this},U.prototype.getMaxListeners=function(){return N(this)},U.prototype.emit=function(t){var e,r,n,i,o,a,s,u="error"===t;if(a=this._events)u=u&&null==a.error;else if(!u)return!1;if(s=this.domain,u){if(e=arguments[1],!s){if(e instanceof Error)throw e;var f=new Error('Uncaught, unspecified "error" event. ('+e+")");throw f.context=e,f}return e||(e=new Error('Uncaught, unspecified "error" event')),e.domainEmitter=this,e.domain=s,e.domainThrown=!1,s.emit("error",e),!1}if(!(r=a[t]))return!1;var l="function"==typeof r;switch(n=arguments.length){case 1:D(r,l,this);break;case 2:I(r,l,this,arguments[1]);break;case 3:Y(r,l,this,arguments[1],arguments[2]);break;case 4:W(r,l,this,arguments[1],arguments[2],arguments[3]);break;default:for(i=new Array(n-1),o=1;o<n;o++)i[o-1]=arguments[o];z(r,l,this,i)}return!0},U.prototype.addListener=function(t,e){return F(this,t,e,!1)},U.prototype.on=U.prototype.addListener,U.prototype.prependListener=function(t,e){return F(this,t,e,!0)},U.prototype.once=function(t,e){if("function"!=typeof e)throw new TypeError('"listener" argument must be a function');return this.on(t,q(this,t,e)),this},U.prototype.prependOnceListener=function(t,e){if("function"!=typeof e)throw new TypeError('"listener" argument must be a function');return this.prependListener(t,q(this,t,e)),this},U.prototype.removeListener=function(t,e){var r,n,i,o,a;if("function"!=typeof e)throw new TypeError('"listener" argument must be a function');if(!(n=this._events))return this;if(!(r=n[t]))return this;if(r===e||r.listener&&r.listener===e)0==--this._eventsCount?this._events=new B:(delete n[t],n.removeListener&&this.emit("removeListener",t,r.listener||e));else if("function"!=typeof r){for(i=-1,o=r.length;o-- >0;)if(r[o]===e||r[o].listener&&r[o].listener===e){a=r[o].listener,i=o;break}if(i<0)return this;if(1===r.length){if(r[0]=void 0,0==--this._eventsCount)return this._events=new B,this;delete n[t]}else!function(t,e){for(var r=e,n=r+1,i=t.length;n<i;r+=1,n+=1)t[r]=t[n];t.pop()}(r,i);n.removeListener&&this.emit("removeListener",t,a||e)}return this},U.prototype.removeAllListeners=function(t){var e,r;if(!(r=this._events))return this;if(!r.removeListener)return 0===arguments.length?(this._events=new B,this._eventsCount=0):r[t]&&(0==--this._eventsCount?this._events=new B:delete r[t]),this;if(0===arguments.length){for(var n,i=Object.keys(r),o=0;o<i.length;++o)"removeListener"!==(n=i[o])&&this.removeAllListeners(n);return this.removeAllListeners("removeListener"),this._events=new B,this._eventsCount=0,this}if("function"==typeof(e=r[t]))this.removeListener(t,e);else if(e)do{this.removeListener(t,e[e.length-1])}while(e[0]);return this},U.prototype.listeners=function(t){var e,r=this._events;return r&&(e=r[t])?"function"==typeof e?[e.listener||e]:function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(e):[]},U.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):H.call(t,e)},U.prototype.listenerCount=H,U.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]};var J=i(Object.freeze({__proto__:null,default:U,EventEmitter:U})),$=J.EventEmitter,V=[],Z=[],K="undefined"!=typeof Uint8Array?Uint8Array:Array,X=!1;function Q(){X=!0;for(var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",e=0,r=t.length;e<r;++e)V[e]=t[e],Z[t.charCodeAt(e)]=e;Z["-".charCodeAt(0)]=62,Z["_".charCodeAt(0)]=63}function tt(t,e,r){for(var n,i,o=[],a=e;a<r;a+=3)n=(t[a]<<16)+(t[a+1]<<8)+t[a+2],o.push(V[(i=n)>>18&63]+V[i>>12&63]+V[i>>6&63]+V[63&i]);return o.join("")}function et(t){var e;X||Q();for(var r=t.length,n=r%3,i="",o=[],a=16383,s=0,u=r-n;s<u;s+=a)o.push(tt(t,s,s+a>u?u:s+a));return 1===n?(e=t[r-1],i+=V[e>>2],i+=V[e<<4&63],i+="=="):2===n&&(e=(t[r-2]<<8)+t[r-1],i+=V[e>>10],i+=V[e>>4&63],i+=V[e<<2&63],i+="="),o.push(i),o.join("")}function rt(t,e,r,n,i){var o,a,s=8*i-n-1,u=(1<<s)-1,f=u>>1,l=-7,c=r?i-1:0,h=r?-1:1,d=t[e+c];for(c+=h,o=d&(1<<-l)-1,d>>=-l,l+=s;l>0;o=256*o+t[e+c],c+=h,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+t[e+c],c+=h,l-=8);if(0===o)o=1-f;else{if(o===u)return a?NaN:1/0*(d?-1:1);a+=Math.pow(2,n),o-=f}return(d?-1:1)*a*Math.pow(2,o-n)}function nt(t,e,r,n,i,o){var a,s,u,f=8*o-i-1,l=(1<<f)-1,c=l>>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,d=n?0:o-1,p=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,a=l):(a=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-a))<1&&(a--,u*=2),(e+=a+c>=1?h/u:h*Math.pow(2,1-c))*u>=2&&(a++,u/=2),a+c>=l?(s=0,a=l):a+c>=1?(s=(e*u-1)*Math.pow(2,i),a+=c):(s=e*Math.pow(2,c-1)*Math.pow(2,i),a=0));i>=8;t[r+d]=255&s,d+=p,s/=256,i-=8);for(a=a<<i|s,f+=i;f>0;t[r+d]=255&a,d+=p,a/=256,f-=8);t[r+d-p]|=128*g}var it={}.toString,ot=Array.isArray||function(t){return"[object Array]"==it.call(t)};ft.TYPED_ARRAY_SUPPORT=void 0===s.TYPED_ARRAY_SUPPORT||s.TYPED_ARRAY_SUPPORT;var at=st();function st(){return ft.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function ut(t,e){if(st()<e)throw new RangeError("Invalid typed array length");return ft.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e)).__proto__=ft.prototype:(null===t&&(t=new ft(e)),t.length=e),t}function ft(t,e,r){if(!(ft.TYPED_ARRAY_SUPPORT||this instanceof ft))return new ft(t,e,r);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return ht(this,t)}return lt(this,t,e,r)}function lt(t,e,r,n){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?function(t,e,r,n){if(e.byteLength,r<0||e.byteLength<r)throw new RangeError("'offset' is out of bounds");if(e.byteLength<r+(n||0))throw new RangeError("'length' is out of bounds");e=void 0===r&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,r):new Uint8Array(e,r,n);ft.TYPED_ARRAY_SUPPORT?(t=e).__proto__=ft.prototype:t=dt(t,e);return t}(t,e,r,n):"string"==typeof e?function(t,e,r){"string"==typeof r&&""!==r||(r="utf8");if(!ft.isEncoding(r))throw new TypeError('"encoding" must be a valid string encoding');var n=0|yt(e,r),i=(t=ut(t,n)).write(e,r);i!==n&&(t=t.slice(0,i));return t}(t,e,r):function(t,e){if(gt(e)){var r=0|pt(e.length);return 0===(t=ut(t,r)).length||e.copy(t,0,0,r),t}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||(n=e.length)!=n?ut(t,0):dt(t,e);if("Buffer"===e.type&&ot(e.data))return dt(t,e.data)}var n;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(t,e)}function ct(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function ht(t,e){if(ct(e),t=ut(t,e<0?0:0|pt(e)),!ft.TYPED_ARRAY_SUPPORT)for(var r=0;r<e;++r)t[r]=0;return t}function dt(t,e){var r=e.length<0?0:0|pt(e.length);t=ut(t,r);for(var n=0;n<r;n+=1)t[n]=255&e[n];return t}function pt(t){if(t>=st())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+st().toString(16)+" bytes");return 0|t}function gt(t){return!(null==t||!t._isBuffer)}function yt(t,e){if(gt(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var r=t.length;if(0===r)return 0;for(var n=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":case void 0:return Ft(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return qt(t).length;default:if(n)return Ft(t).length;e=(""+e).toLowerCase(),n=!0}}function vt(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return Mt(this,e,r);case"utf8":case"utf-8":return At(this,e,r);case"ascii":return Ot(this,e,r);case"latin1":case"binary":return jt(this,e,r);case"base64":return Rt(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Pt(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}function bt(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function wt(t,e,r,n,i){if(0===t.length)return-1;if("string"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,isNaN(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)return-1;r=0}if("string"==typeof e&&(e=ft.from(e,n)),gt(e))return 0===e.length?-1:mt(t,e,r,n,i);if("number"==typeof e)return e&=255,ft.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):mt(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function mt(t,e,r,n,i){var o,a=1,s=t.length,u=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;a=2,s/=2,u/=2,r/=2}function f(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}if(i){var l=-1;for(o=r;o<s;o++)if(f(t,o)===f(e,-1===l?0:o-l)){if(-1===l&&(l=o),o-l+1===u)return l*a}else-1!==l&&(o-=o-l),l=-1}else for(r+u>s&&(r=s-u),o=r;o>=0;o--){for(var c=!0,h=0;h<u;h++)if(f(t,o+h)!==f(e,h)){c=!1;break}if(c)return o}return-1}function _t(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n))>i&&(n=i):n=i;var o=e.length;if(o%2!=0)throw new TypeError("Invalid hex string");n>o/2&&(n=o/2);for(var a=0;a<n;++a){var s=parseInt(e.substr(2*a,2),16);if(isNaN(s))return a;t[r+a]=s}return a}function Et(t,e,r,n){return Ht(Ft(e,t.length-r),t,r,n)}function St(t,e,r,n){return Ht(function(t){for(var e=[],r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,n)}function xt(t,e,r,n){return St(t,e,r,n)}function kt(t,e,r,n){return Ht(qt(e),t,r,n)}function Tt(t,e,r,n){return Ht(function(t,e){for(var r,n,i,o=[],a=0;a<t.length&&!((e-=2)<0);++a)n=(r=t.charCodeAt(a))>>8,i=r%256,o.push(i),o.push(n);return o}(e,t.length-r),t,r,n)}function Rt(t,e,r){return 0===e&&r===t.length?et(t):et(t.slice(e,r))}function At(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var o,a,s,u,f=t[i],l=null,c=f>239?4:f>223?3:f>191?2:1;if(i+c<=r)switch(c){case 1:f<128&&(l=f);break;case 2:128==(192&(o=t[i+1]))&&(u=(31&f)<<6|63&o)>127&&(l=u);break;case 3:o=t[i+1],a=t[i+2],128==(192&o)&&128==(192&a)&&(u=(15&f)<<12|(63&o)<<6|63&a)>2047&&(u<55296||u>57343)&&(l=u);break;case 4:o=t[i+1],a=t[i+2],s=t[i+3],128==(192&o)&&128==(192&a)&&128==(192&s)&&(u=(15&f)<<18|(63&o)<<12|(63&a)<<6|63&s)>65535&&u<1114112&&(l=u)}null===l?(l=65533,c=1):l>65535&&(l-=65536,n.push(l>>>10&1023|55296),l=56320|1023&l),n.push(l),i+=c}return function(t){var e=t.length;if(e<=Lt)return String.fromCharCode.apply(String,t);var r="",n=0;for(;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=Lt));return r}(n)}ft.poolSize=8192,ft._augment=function(t){return t.__proto__=ft.prototype,t},ft.from=function(t,e,r){return lt(null,t,e,r)},ft.TYPED_ARRAY_SUPPORT&&(ft.prototype.__proto__=Uint8Array.prototype,ft.__proto__=Uint8Array),ft.alloc=function(t,e,r){return function(t,e,r,n){return ct(e),e<=0?ut(t,e):void 0!==r?"string"==typeof n?ut(t,e).fill(r,n):ut(t,e).fill(r):ut(t,e)}(null,t,e,r)},ft.allocUnsafe=function(t){return ht(null,t)},ft.allocUnsafeSlow=function(t){return ht(null,t)},ft.isBuffer=Gt,ft.compare=function(t,e){if(!gt(t)||!gt(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var r=t.length,n=e.length,i=0,o=Math.min(r,n);i<o;++i)if(t[i]!==e[i]){r=t[i],n=e[i];break}return r<n?-1:n<r?1:0},ft.isEncoding=function(t){switch(String(t).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}},ft.concat=function(t,e){if(!ot(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return ft.alloc(0);var r;if(void 0===e)for(e=0,r=0;r<t.length;++r)e+=t[r].length;var n=ft.allocUnsafe(e),i=0;for(r=0;r<t.length;++r){var o=t[r];if(!gt(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(n,i),i+=o.length}return n},ft.byteLength=yt,ft.prototype._isBuffer=!0,ft.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)bt(this,e,e+1);return this},ft.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)bt(this,e,e+3),bt(this,e+1,e+2);return this},ft.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)bt(this,e,e+7),bt(this,e+1,e+6),bt(this,e+2,e+5),bt(this,e+3,e+4);return this},ft.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?At(this,0,t):vt.apply(this,arguments)},ft.prototype.equals=function(t){if(!gt(t))throw new TypeError("Argument must be a Buffer");return this===t||0===ft.compare(this,t)},ft.prototype.inspect=function(){var t="";return this.length>0&&(t=this.toString("hex",0,50).match(/.{2}/g).join(" "),this.length>50&&(t+=" ... ")),"<Buffer "+t+">"},ft.prototype.compare=function(t,e,r,n,i){if(!gt(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),e<0||r>t.length||n<0||i>this.length)throw new RangeError("out of range index");if(n>=i&&e>=r)return 0;if(n>=i)return-1;if(e>=r)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(n>>>=0),a=(r>>>=0)-(e>>>=0),s=Math.min(o,a),u=this.slice(n,i),f=t.slice(e,r),l=0;l<s;++l)if(u[l]!==f[l]){o=u[l],a=f[l];break}return o<a?-1:a<o?1:0},ft.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},ft.prototype.indexOf=function(t,e,r){return wt(this,t,e,r,!0)},ft.prototype.lastIndexOf=function(t,e,r){return wt(this,t,e,r,!1)},ft.prototype.write=function(t,e,r,n){if(void 0===e)n="utf8",r=this.length,e=0;else if(void 0===r&&"string"==typeof e)n=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(r)?(r|=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var i=this.length-e;if((void 0===r||r>i)&&(r=i),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var o=!1;;)switch(n){case"hex":return _t(this,t,e,r);case"utf8":case"utf-8":return Et(this,t,e,r);case"ascii":return St(this,t,e,r);case"latin1":case"binary":return xt(this,t,e,r);case"base64":return kt(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Tt(this,t,e,r);default:if(o)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),o=!0}},ft.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Lt=4096;function Ot(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(127&t[i]);return n}function jt(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 Mt(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+=zt(t[o]);return i}function Pt(t,e,r){for(var n=t.slice(e,r),i="",o=0;o<n.length;o+=2)i+=String.fromCharCode(n[o]+256*n[o+1]);return i}function Ct(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")}function Bt(t,e,r,n,i,o){if(!gt(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")}function Ut(t,e,r,n){e<0&&(e=65535+e+1);for(var i=0,o=Math.min(t.length-r,2);i<o;++i)t[r+i]=(e&255<<8*(n?i:1-i))>>>8*(n?i:1-i)}function Nt(t,e,r,n){e<0&&(e=4294967295+e+1);for(var i=0,o=Math.min(t.length-r,4);i<o;++i)t[r+i]=e>>>8*(n?i:3-i)&255}function Dt(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 It(t,e,r,n,i){return i||Dt(t,0,r,4),nt(t,e,r,n,23,4),r+4}function Yt(t,e,r,n,i){return i||Dt(t,0,r,8),nt(t,e,r,n,52,8),r+8}ft.prototype.slice=function(t,e){var r,n=this.length;if((t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t),ft.TYPED_ARRAY_SUPPORT)(r=this.subarray(t,e)).__proto__=ft.prototype;else{var i=e-t;r=new ft(i,void 0);for(var o=0;o<i;++o)r[o]=this[o+t]}return r},ft.prototype.readUIntLE=function(t,e,r){t|=0,e|=0,r||Ct(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return n},ft.prototype.readUIntBE=function(t,e,r){t|=0,e|=0,r||Ct(t,e,this.length);for(var n=this[t+--e],i=1;e>0&&(i*=256);)n+=this[t+--e]*i;return n},ft.prototype.readUInt8=function(t,e){return e||Ct(t,1,this.length),this[t]},ft.prototype.readUInt16LE=function(t,e){return e||Ct(t,2,this.length),this[t]|this[t+1]<<8},ft.prototype.readUInt16BE=function(t,e){return e||Ct(t,2,this.length),this[t]<<8|this[t+1]},ft.prototype.readUInt32LE=function(t,e){return e||Ct(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},ft.prototype.readUInt32BE=function(t,e){return e||Ct(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},ft.prototype.readIntLE=function(t,e,r){t|=0,e|=0,r||Ct(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return n>=(i*=128)&&(n-=Math.pow(2,8*e)),n},ft.prototype.readIntBE=function(t,e,r){t|=0,e|=0,r||Ct(t,e,this.length);for(var n=e,i=1,o=this[t+--n];n>0&&(i*=256);)o+=this[t+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*e)),o},ft.prototype.readInt8=function(t,e){return e||Ct(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},ft.prototype.readInt16LE=function(t,e){e||Ct(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},ft.prototype.readInt16BE=function(t,e){e||Ct(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},ft.prototype.readInt32LE=function(t,e){return e||Ct(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},ft.prototype.readInt32BE=function(t,e){return e||Ct(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},ft.prototype.readFloatLE=function(t,e){return e||Ct(t,4,this.length),rt(this,t,!0,23,4)},ft.prototype.readFloatBE=function(t,e){return e||Ct(t,4,this.length),rt(this,t,!1,23,4)},ft.prototype.readDoubleLE=function(t,e){return e||Ct(t,8,this.length),rt(this,t,!0,52,8)},ft.prototype.readDoubleBE=function(t,e){return e||Ct(t,8,this.length),rt(this,t,!1,52,8)},ft.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e|=0,r|=0,n)||Bt(this,t,e,r,Math.pow(2,8*r)-1,0);var i=1,o=0;for(this[e]=255&t;++o<r&&(i*=256);)this[e+o]=t/i&255;return e+r},ft.prototype.writeUIntBE=function(t,e,r,n){(t=+t,e|=0,r|=0,n)||Bt(this,t,e,r,Math.pow(2,8*r)-1,0);var i=r-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+r},ft.prototype.writeUInt8=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,1,255,0),ft.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},ft.prototype.writeUInt16LE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,2,65535,0),ft.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):Ut(this,t,e,!0),e+2},ft.prototype.writeUInt16BE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,2,65535,0),ft.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):Ut(this,t,e,!1),e+2},ft.prototype.writeUInt32LE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,4,4294967295,0),ft.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):Nt(this,t,e,!0),e+4},ft.prototype.writeUInt32BE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,4,4294967295,0),ft.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):Nt(this,t,e,!1),e+4},ft.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*r-1);Bt(this,t,e,r,i-1,-i)}var o=0,a=1,s=0;for(this[e]=255&t;++o<r&&(a*=256);)t<0&&0===s&&0!==this[e+o-1]&&(s=1),this[e+o]=(t/a>>0)-s&255;return e+r},ft.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*r-1);Bt(this,t,e,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[e+o]=255&t;--o>=0&&(a*=256);)t<0&&0===s&&0!==this[e+o+1]&&(s=1),this[e+o]=(t/a>>0)-s&255;return e+r},ft.prototype.writeInt8=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,1,127,-128),ft.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},ft.prototype.writeInt16LE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,2,32767,-32768),ft.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):Ut(this,t,e,!0),e+2},ft.prototype.writeInt16BE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,2,32767,-32768),ft.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):Ut(this,t,e,!1),e+2},ft.prototype.writeInt32LE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,4,2147483647,-2147483648),ft.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):Nt(this,t,e,!0),e+4},ft.prototype.writeInt32BE=function(t,e,r){return t=+t,e|=0,r||Bt(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),ft.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):Nt(this,t,e,!1),e+4},ft.prototype.writeFloatLE=function(t,e,r){return It(this,t,e,!0,r)},ft.prototype.writeFloatBE=function(t,e,r){return It(this,t,e,!1,r)},ft.prototype.writeDoubleLE=function(t,e,r){return Yt(this,t,e,!0,r)},ft.prototype.writeDoubleBE=function(t,e,r){return Yt(this,t,e,!1,r)},ft.prototype.copy=function(t,e,r,n){if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n<r&&(n=r),n===r)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(r<0||r>=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-e<n-r&&(n=t.length-e+r);var i,o=n-r;if(this===t&&r<e&&e<n)for(i=o-1;i>=0;--i)t[i+e]=this[i+r];else if(o<1e3||!ft.TYPED_ARRAY_SUPPORT)for(i=0;i<o;++i)t[i+e]=this[i+r];else Uint8Array.prototype.set.call(t,this.subarray(r,r+o),e);return o},ft.prototype.fill=function(t,e,r,n){if("string"==typeof t){if("string"==typeof e?(n=e,e=0,r=this.length):"string"==typeof r&&(n=r,r=this.length),1===t.length){var i=t.charCodeAt(0);i<256&&(t=i)}if(void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!ft.isEncoding(n))throw new TypeError("Unknown encoding: "+n)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<r)throw new RangeError("Out of range index");if(r<=e)return this;var o;if(e>>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),"number"==typeof t)for(o=e;o<r;++o)this[o]=t;else{var a=gt(t)?t:Ft(new ft(t,n).toString()),s=a.length;for(o=0;o<r-e;++o)this[o+e]=a[o%s]}return this};var Wt=/[^+\/0-9A-Za-z-_]/g;function zt(t){return t<16?"0"+t.toString(16):t.toString(16)}function Ft(t,e){var r;e=e||1/0;for(var n=t.length,i=null,o=[],a=0;a<n;++a){if((r=t.charCodeAt(a))>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(a+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=65536+(i-55296<<10|r-56320)}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,63&r|128)}else if(r<65536){if((e-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return o}function qt(t){return function(t){var e,r,n,i,o,a;X||Q();var s=t.length;if(s%4>0)throw new Error("Invalid string. Length must be a multiple of 4");o="="===t[s-2]?2:"="===t[s-1]?1:0,a=new K(3*s/4-o),n=o>0?s-4:s;var u=0;for(e=0,r=0;e<n;e+=4,r+=3)i=Z[t.charCodeAt(e)]<<18|Z[t.charCodeAt(e+1)]<<12|Z[t.charCodeAt(e+2)]<<6|Z[t.charCodeAt(e+3)],a[u++]=i>>16&255,a[u++]=i>>8&255,a[u++]=255&i;return 2===o?(i=Z[t.charCodeAt(e)]<<2|Z[t.charCodeAt(e+1)]>>4,a[u++]=255&i):1===o&&(i=Z[t.charCodeAt(e)]<<10|Z[t.charCodeAt(e+1)]<<4|Z[t.charCodeAt(e+2)]>>2,a[u++]=i>>8&255,a[u++]=255&i),a}(function(t){if((t=function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}(t).replace(Wt,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function Ht(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 Gt(t){return null!=t&&(!!t._isBuffer||Jt(t)||function(t){return"function"==typeof t.readFloatLE&&"function"==typeof t.slice&&Jt(t.slice(0,0))}(t))}function Jt(t){return!!t.constructor&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}var $t=i(Object.freeze({__proto__:null,Buffer:ft,INSPECT_MAX_BYTES:50,SlowBuffer:function(t){return+t!=t&&(t=0),ft.alloc(+t)},isBuffer:Gt,kMaxLength:at})),Vt=o((function(t,e){var r=$t.Buffer;function n(t,e){for(var r in t)e[r]=t[r]}function i(t,e,n){return r(t,e,n)}r.from&&r.alloc&&r.allocUnsafe&&r.allocUnsafeSlow?t.exports=$t:(n($t,e),e.Buffer=i),n(r,i),i.from=function(t,e,n){if("number"==typeof t)throw new TypeError("Argument must not be a number");return r(t,e,n)},i.alloc=function(t,e,n){if("number"!=typeof t)throw new TypeError("Argument must be a number");var i=r(t);return void 0!==e?"string"==typeof n?i.fill(e,n):i.fill(e):i.fill(0),i},i.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return r(t)},i.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return $t.SlowBuffer(t)}}));function Zt(t){return Object.prototype.toString.call(t)}var Kt={isArray:function(t){return Array.isArray?Array.isArray(t):"[object Array]"===Zt(t)},isBoolean:function(t){return"boolean"==typeof t},isNull:function(t){return null===t},isNullOrUndefined:function(t){return null==t},isNumber:function(t){return"number"==typeof t},isString:function(t){return"string"==typeof t},isSymbol:function(t){return"symbol"===r(t)},isUndefined:function(t){return void 0===t},isRegExp:function(t){return"[object RegExp]"===Zt(t)},isObject:function(t){return"object"===r(t)&&null!==t},isDate:function(t){return"[object Date]"===Zt(t)},isError:function(t){return"[object Error]"===Zt(t)||t instanceof Error},isFunction:function(t){return"function"==typeof t},isPrimitive:function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"===r(t)||void 0===t},isBuffer:ft.isBuffer},Xt=o((function(t){"function"==typeof Object.create?t.exports=function(t,e){e&&(t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:t.exports=function(t,e){if(e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}}})),Qt="function"==typeof Object.create?function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:function(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t},te=/%[sdj%]/g;function ee(t){if(!ve(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(ae(arguments[r]));return e.join(" ")}r=1;for(var n=arguments,i=n.length,o=String(t).replace(te,(function(t){if("%%"===t)return"%";if(r>=i)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}})),a=n[r];r<i;a=n[++r])pe(a)||!_e(a)?o+=" "+a:o+=" "+ae(a);return o}function re(t,e){if(we(s.process))return function(){return re(t,e).apply(this,arguments)};if(!0===j.noDeprecation)return t;var r=!1;return function(){if(!r){if(j.throwDeprecation)throw new Error(e);j.traceDeprecation?console.trace(e):console.error(e),r=!0}return t.apply(this,arguments)}}var ne,ie={};function oe(t){if(we(ne)&&(ne=j.env.NODE_DEBUG||""),t=t.toUpperCase(),!ie[t])if(new RegExp("\\b"+t+"\\b","i").test(ne)){ie[t]=function(){var e=ee.apply(null,arguments);console.error("%s %d: %s",t,0,e)}}else ie[t]=function(){};return ie[t]}function ae(t,e){var r={seen:[],stylize:ue};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),de(e)?r.showHidden=e:e&&Me(r,e),we(r.showHidden)&&(r.showHidden=!1),we(r.depth)&&(r.depth=2),we(r.colors)&&(r.colors=!1),we(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=se),fe(r,t,r.depth)}function se(t,e){var r=ae.styles[e];return r?"["+ae.colors[r][0]+"m"+t+"["+ae.colors[r][1]+"m":t}function ue(t,e){return t}function fe(t,e,r){if(t.customInspect&&e&&xe(e.inspect)&&e.inspect!==ae&&(!e.constructor||e.constructor.prototype!==e)){var n=e.inspect(r,t);return ve(n)||(n=fe(t,n,r)),n}var i=function(t,e){if(we(e))return t.stylize("undefined","undefined");if(ve(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(ye(e))return t.stylize(""+e,"number");if(de(e))return t.stylize(""+e,"boolean");if(pe(e))return t.stylize("null","null")}(t,e);if(i)return i;var o=Object.keys(e),a=function(t){var e={};return t.forEach((function(t,r){e[t]=!0})),e}(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),Se(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return le(e);if(0===o.length){if(xe(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(me(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(Ee(e))return t.stylize(Date.prototype.toString.call(e),"date");if(Se(e))return le(e)}var u,f="",l=!1,c=["{","}"];(he(e)&&(l=!0,c=["[","]"]),xe(e))&&(f=" [Function"+(e.name?": "+e.name:"")+"]");return me(e)&&(f=" "+RegExp.prototype.toString.call(e)),Ee(e)&&(f=" "+Date.prototype.toUTCString.call(e)),Se(e)&&(f=" "+le(e)),0!==o.length||l&&0!=e.length?r<0?me(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special"):(t.seen.push(e),u=l?function(t,e,r,n,i){for(var o=[],a=0,s=e.length;a<s;++a)Pe(e,String(a))?o.push(ce(t,e,r,n,String(a),!0)):o.push("");return i.forEach((function(i){i.match(/^\d+$/)||o.push(ce(t,e,r,n,i,!0))})),o}(t,e,r,a,o):o.map((function(n){return ce(t,e,r,a,n,l)})),t.seen.pop(),function(t,e,r){if(t.reduce((function(t,e){return e.indexOf("\n"),t+e.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60)return r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+r[1];return r[0]+e+" "+t.join(", ")+" "+r[1]}(u,f,c)):c[0]+f+c[1]}function le(t){return"["+Error.prototype.toString.call(t)+"]"}function ce(t,e,r,n,i,o){var a,s,u;if((u=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]}).get?s=u.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):u.set&&(s=t.stylize("[Setter]","special")),Pe(n,i)||(a="["+i+"]"),s||(t.seen.indexOf(u.value)<0?(s=pe(r)?fe(t,u.value,null):fe(t,u.value,r-1)).indexOf("\n")>-1&&(s=o?s.split("\n").map((function(t){return" "+t})).join("\n").substr(2):"\n"+s.split("\n").map((function(t){return" "+t})).join("\n")):s=t.stylize("[Circular]","special")),we(a)){if(o&&i.match(/^\d+$/))return s;(a=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=t.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=t.stylize(a,"string"))}return a+": "+s}function he(t){return Array.isArray(t)}function de(t){return"boolean"==typeof t}function pe(t){return null===t}function ge(t){return null==t}function ye(t){return"number"==typeof t}function ve(t){return"string"==typeof t}function be(t){return"symbol"===r(t)}function we(t){return void 0===t}function me(t){return _e(t)&&"[object RegExp]"===Re(t)}function _e(t){return"object"===r(t)&&null!==t}function Ee(t){return _e(t)&&"[object Date]"===Re(t)}function Se(t){return _e(t)&&("[object Error]"===Re(t)||t instanceof Error)}function xe(t){return"function"==typeof t}function ke(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"===r(t)||void 0===t}function Te(t){return ft.isBuffer(t)}function Re(t){return Object.prototype.toString.call(t)}function Ae(t){return t<10?"0"+t.toString(10):t.toString(10)}ae.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]},ae.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};var Le=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function Oe(){var t=new Date,e=[Ae(t.getHours()),Ae(t.getMinutes()),Ae(t.getSeconds())].join(":");return[t.getDate(),Le[t.getMonth()],e].join(" ")}function je(){console.log("%s - %s",Oe(),ee.apply(null,arguments))}function Me(t,e){if(!e||!_e(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}function Pe(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var Ce={inherits:Qt,_extend:Me,log:je,isBuffer:Te,isPrimitive:ke,isFunction:xe,isError:Se,isDate:Ee,isObject:_e,isRegExp:me,isUndefined:we,isSymbol:be,isString:ve,isNumber:ye,isNullOrUndefined:ge,isNull:pe,isBoolean:de,isArray:he,inspect:ae,deprecate:re,format:ee,debuglog:oe},Be=i(Object.freeze({__proto__:null,format:ee,deprecate:re,debuglog:oe,inspect:ae,isArray:he,isBoolean:de,isNull:pe,isNullOrUndefined:ge,isNumber:ye,isString:ve,isSymbol:be,isUndefined:we,isRegExp:me,isObject:_e,isDate:Ee,isError:Se,isFunction:xe,isPrimitive:ke,isBuffer:Te,log:je,inherits:Qt,_extend:Me,default:Ce})),Ue=o((function(t){var e=Vt.Buffer;t.exports=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.head=null,this.tail=null,this.length=0}return t.prototype.push=function(t){var e={data:t,next:null};this.length>0?this.tail.next=e:this.head=e,this.tail=e,++this.length},t.prototype.unshift=function(t){var e={data:t,next:this.head};0===this.length&&(this.tail=e),this.head=e,++this.length},t.prototype.shift=function(){if(0!==this.length){var t=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,t}},t.prototype.clear=function(){this.head=this.tail=null,this.length=0},t.prototype.join=function(t){if(0===this.length)return"";for(var e=this.head,r=""+e.data;e=e.next;)r+=t+e.data;return r},t.prototype.concat=function(t){if(0===this.length)return e.alloc(0);if(1===this.length)return this.head.data;for(var r,n,i,o=e.allocUnsafe(t>>>0),a=this.head,s=0;a;)r=a.data,n=o,i=s,r.copy(n,i),s+=a.data.length,a=a.next;return o},t}(),Be&&Be.inspect&&Be.inspect.custom&&(t.exports.prototype[Be.inspect.custom]=function(){var t=Be.inspect({length:this.length});return this.constructor.name+" "+t})}));function Ne(t,e){t.emit("error",e)}var De=function(t,e){var r=this,n=this._readableState&&this._readableState.destroyed,i=this._writableState&&this._writableState.destroyed;return n||i?(e?e(t):!t||this._writableState&&this._writableState.errorEmitted||M.nextTick(Ne,this,t),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,(function(t){!e&&t?(M.nextTick(Ne,r,t),r._writableState&&(r._writableState.errorEmitted=!0)):e&&e(t)})),this)},Ie=function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},Ye=function(t,e){if(We("noDeprecation"))return t;var r=!1;return function(){if(!r){if(We("throwDeprecation"))throw new Error(e);We("traceDeprecation")?console.trace(e):console.warn(e),r=!0}return t.apply(this,arguments)}};function We(t){try{if(!n.localStorage)return!1}catch(t){return!1}var e=n.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}var ze=Qe;function Fe(t){var e=this;this.next=null,this.entry=null,this.finish=function(){!function(t,e,r){var n=t.entry;t.entry=null;for(;n;){var i=n.callback;e.pendingcb--,i(r),n=n.next}e.corkedRequestsFree?e.corkedRequestsFree.next=t:e.corkedRequestsFree=t}(e,t)}}var qe,He=!j.browser&&["v0.10","v0.9."].indexOf(j.version.slice(0,5))>-1?setImmediate:M.nextTick;Qe.WritableState=Xe;var Ge=Object.create(Kt);Ge.inherits=Xt;var Je,$e={deprecate:Ye},Ve=Vt.Buffer,Ze=n.Uint8Array||function(){};function Ke(){}function Xe(t,e){t=t||{};var r=e instanceof(qe=qe||sr);this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.writableObjectMode);var n=t.highWaterMark,i=t.writableHighWaterMark,o=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:r&&(i||0===i)?i:o,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var a=!1===t.decodeStrings;this.decodeStrings=!a,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(t){!function(t,e){var r=t._writableState,n=r.sync,i=r.writecb;if(function(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}(r),e)!function(t,e,r,n,i){--e.pendingcb,r?(M.nextTick(i,n),M.nextTick(or,t,e),t._writableState.errorEmitted=!0,t.emit("error",n)):(i(n),t._writableState.errorEmitted=!0,t.emit("error",n),or(t,e))}(t,r,n,e,i);else{var o=nr(r);o||r.corked||r.bufferProcessing||!r.bufferedRequest||rr(t,r),n?He(er,t,r,o,i):er(t,r,o,i)}}(e,t)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new Fe(this)}function Qe(t){if(qe=qe||sr,!(Je.call(Qe,this)||this instanceof qe))return new Qe(t);this._writableState=new Xe(t,this),this.writable=!0,t&&("function"==typeof t.write&&(this._write=t.write),"function"==typeof t.writev&&(this._writev=t.writev),"function"==typeof t.destroy&&(this._destroy=t.destroy),"function"==typeof t.final&&(this._final=t.final)),$.call(this)}function tr(t,e,r,n,i,o,a){e.writelen=n,e.writecb=a,e.writing=!0,e.sync=!0,r?t._writev(i,e.onwrite):t._write(i,o,e.onwrite),e.sync=!1}function er(t,e,r,n){r||function(t,e){0===e.length&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}(t,e),e.pendingcb--,n(),or(t,e)}function rr(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writev&&r&&r.next){var n=e.bufferedRequestCount,i=new Array(n),o=e.corkedRequestsFree;o.entry=r;for(var a=0,s=!0;r;)i[a]=r,r.isBuf||(s=!1),r=r.next,a+=1;i.allBuffers=s,tr(t,e,!0,e.length,i,"",o.finish),e.pendingcb++,e.lastBufferedRequest=null,o.next?(e.corkedRequestsFree=o.next,o.next=null):e.corkedRequestsFree=new Fe(e),e.bufferedRequestCount=0}else{for(;r;){var u=r.chunk,f=r.encoding,l=r.callback;if(tr(t,e,!1,e.objectMode?1:u.length,u,f,l),r=r.next,e.bufferedRequestCount--,e.writing)break}null===r&&(e.lastBufferedRequest=null)}e.bufferedRequest=r,e.bufferProcessing=!1}function nr(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!t.finished&&!t.writing}function ir(t,e){t._final((function(r){e.pendingcb--,r&&t.emit("error",r),e.prefinished=!0,t.emit("prefinish"),or(t,e)}))}function or(t,e){var r=nr(e);return r&&(!function(t,e){e.prefinished||e.finalCalled||("function"==typeof t._final?(e.pendingcb++,e.finalCalled=!0,M.nextTick(ir,t,e)):(e.prefinished=!0,t.emit("prefinish")))}(t,e),0===e.pendingcb&&(e.finished=!0,t.emit("finish"))),r}Ge.inherits(Qe,$),Xe.prototype.getBuffer=function(){for(var t=this.bufferedRequest,e=[];t;)e.push(t),t=t.next;return e},function(){try{Object.defineProperty(Xe.prototype,"buffer",{get:$e.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(t){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(Je=Function.prototype[Symbol.hasInstance],Object.defineProperty(Qe,Symbol.hasInstance,{value:function(t){return!!Je.call(this,t)||this===Qe&&(t&&t._writableState instanceof Xe)}})):Je=function(t){return t instanceof this},Qe.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},Qe.prototype.write=function(t,e,r){var n=this._writableState,i=!1,o=!n.objectMode&&function(t){return Ve.isBuffer(t)||t instanceof Ze}(t);return o&&!Ve.isBuffer(t)&&(t=function(t){return Ve.from(t)}(t)),"function"==typeof e&&(r=e,e=null),o?e="buffer":e||(e=n.defaultEncoding),"function"!=typeof r&&(r=Ke),n.ended?function(t,e){var r=new Error("write after end");t.emit("error",r),M.nextTick(e,r)}(this,r):(o||function(t,e,r,n){var i=!0,o=!1;return null===r?o=new TypeError("May not write null values to stream"):"string"==typeof r||void 0===r||e.objectMode||(o=new TypeError("Invalid non-string/buffer chunk")),o&&(t.emit("error",o),M.nextTick(n,o),i=!1),i}(this,n,t,r))&&(n.pendingcb++,i=function(t,e,r,n,i,o){if(!r){var a=function(t,e,r){t.objectMode||!1===t.decodeStrings||"string"!=typeof e||(e=Ve.from(e,r));return e}(e,n,i);n!==a&&(r=!0,i="buffer",n=a)}var s=e.objectMode?1:n.length;e.length+=s;var u=e.length<e.highWaterMark;u||(e.needDrain=!0);if(e.writing||e.corked){var f=e.lastBufferedRequest;e.lastBufferedRequest={chunk:n,encoding:i,isBuf:r,callback:o,next:null},f?f.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else tr(t,e,!1,s,n,i,o);return u}(this,n,o,t,e,r)),i},Qe.prototype.cork=function(){this._writableState.corked++},Qe.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,t.writing||t.corked||t.finished||t.bufferProcessing||!t.bufferedRequest||rr(this,t))},Qe.prototype.setDefaultEncoding=function(t){if("string"==typeof t&&(t=t.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((t+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+t);return this._writableState.defaultEncoding=t,this},Object.defineProperty(Qe.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Qe.prototype._write=function(t,e,r){r(new Error("_write() is not implemented"))},Qe.prototype._writev=null,Qe.prototype.end=function(t,e,r){var n=this._writableState;"function"==typeof t?(r=t,t=null,e=null):"function"==typeof e&&(r=e,e=null),null!=t&&this.write(t,e),n.corked&&(n.corked=1,this.uncork()),n.ending||n.finished||function(t,e,r){e.ending=!0,or(t,e),r&&(e.finished?M.nextTick(r):t.once("finish",r));e.ended=!0,t.writable=!1}(this,n,r)},Object.defineProperty(Qe.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(t){this._writableState&&(this._writableState.destroyed=t)}}),Qe.prototype.destroy=De,Qe.prototype._undestroy=Ie,Qe.prototype._destroy=function(t,e){this.end(),e(t)};var ar=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e},sr=hr,ur=Object.create(Kt);ur.inherits=Xt,ur.inherits(hr,Lr);for(var fr=ar(ze.prototype),lr=0;lr<fr.length;lr++){var cr=fr[lr];hr.prototype[cr]||(hr.prototype[cr]=ze.prototype[cr])}function hr(t){if(!(this instanceof hr))return new hr(t);Lr.call(this,t),ze.call(this,t),t&&!1===t.readable&&(this.readable=!1),t&&!1===t.writable&&(this.writable=!1),this.allowHalfOpen=!0,t&&!1===t.allowHalfOpen&&(this.allowHalfOpen=!1),this.once("end",dr)}function dr(){this.allowHalfOpen||this._writableState.ended||M.nextTick(pr,this)}function pr(t){t.end()}Object.defineProperty(hr.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(hr.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(t){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=t,this._writableState.destroyed=t)}}),hr.prototype._destroy=function(t,e){this.push(null),this.end(),M.nextTick(e,t)};var gr=Vt.Buffer,yr=gr.isEncoding||function(t){switch((t=""+t)&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};var vr=br;function br(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(gr.isEncoding===yr||!yr(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=_r,this.end=Er,e=4;break;case"utf8":this.fillLast=mr,e=4;break;case"base64":this.text=Sr,this.end=xr,e=3;break;default:return this.write=kr,void(this.end=Tr)}this.lastNeed=0,this.lastTotal=0,this.lastChar=gr.allocUnsafe(e)}function wr(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function mr(t){var e=this.lastTotal-this.lastNeed,r=function(t,e,r){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==r?r:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function _r(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function Er(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function Sr(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function xr(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function kr(t){return t.toString(this.encoding)}function Tr(t){return t&&t.length?this.write(t):""}br.prototype.write=function(t){if(0===t.length)return"";var e,r;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""},br.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},br.prototype.text=function(t,e){var r=function(t,e,r){var n=e.length-1;if(n<r)return 0;var i=wr(e[n]);if(i>=0)return i>0&&(t.lastNeed=i-1),i;if(--n<r||-2===i)return 0;if((i=wr(e[n]))>=0)return i>0&&(t.lastNeed=i-2),i;if(--n<r||-2===i)return 0;if((i=wr(e[n]))>=0)return i>0&&(2===i?i=0:t.lastNeed=i-3),i;return 0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)},br.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length};var Rr,Ar={StringDecoder:vr},Lr=Dr;Dr.ReadableState=Nr,J.EventEmitter;var Or=function(t,e){return t.listeners(e).length},jr=Vt.Buffer,Mr=n.Uint8Array||function(){};var Pr=Object.create(Kt);Pr.inherits=Xt;var Cr,Br=void 0;Br=Be&&Be.debuglog?Be.debuglog("stream"):function(){},Pr.inherits(Dr,$);var Ur=["error","close","destroy","pause","resume"];function Nr(t,e){t=t||{};var r=e instanceof(Rr=Rr||sr);this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.readableObjectMode);var n=t.highWaterMark,i=t.readableHighWaterMark,o=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:r&&(i||0===i)?i:o,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new Ue,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(Cr||(Cr=Ar.StringDecoder),this.decoder=new Cr(t.encoding),this.encoding=t.encoding)}function Dr(t){if(Rr=Rr||sr,!(this instanceof Dr))return new Dr(t);this._readableState=new Nr(t,this),this.readable=!0,t&&("function"==typeof t.read&&(this._read=t.read),"function"==typeof t.destroy&&(this._destroy=t.destroy)),$.call(this)}function Ir(t,e,r,n,i){var o,a=t._readableState;null===e?(a.reading=!1,function(t,e){if(e.ended)return;if(e.decoder){var r=e.decoder.end();r&&r.length&&(e.buffer.push(r),e.length+=e.objectMode?1:r.length)}e.ended=!0,Fr(t)}(t,a)):(i||(o=function(t,e){var r;(function(t){return jr.isBuffer(t)||t instanceof Mr})(e)||"string"==typeof e||void 0===e||t.objectMode||(r=new TypeError("Invalid non-string/buffer chunk"));return r}(a,e)),o?t.emit("error",o):a.objectMode||e&&e.length>0?("string"==typeof e||a.objectMode||Object.getPrototypeOf(e)===jr.prototype||(e=function(t){return jr.from(t)}(e)),n?a.endEmitted?t.emit("error",new Error("stream.unshift() after end event")):Yr(t,a,e,!0):a.ended?t.emit("error",new Error("stream.push() after EOF")):(a.reading=!1,a.decoder&&!r?(e=a.decoder.write(e),a.objectMode||0!==e.length?Yr(t,a,e,!1):Hr(t,a)):Yr(t,a,e,!1))):n||(a.reading=!1));return function(t){return!t.ended&&(t.needReadable||t.length<t.highWaterMark||0===t.length)}(a)}function Yr(t,e,r,n){e.flowing&&0===e.length&&!e.sync?(t.emit("data",r),t.read(0)):(e.length+=e.objectMode?1:r.length,n?e.buffer.unshift(r):e.buffer.push(r),e.needReadable&&Fr(t)),Hr(t,e)}Object.defineProperty(Dr.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(t){this._readableState&&(this._readableState.destroyed=t)}}),Dr.prototype.destroy=De,Dr.prototype._undestroy=Ie,Dr.prototype._destroy=function(t,e){this.push(null),e(t)},Dr.prototype.push=function(t,e){var r,n=this._readableState;return n.objectMode?r=!0:"string"==typeof t&&((e=e||n.defaultEncoding)!==n.encoding&&(t=jr.from(t,e),e=""),r=!0),Ir(this,t,e,!1,r)},Dr.prototype.unshift=function(t){return Ir(this,t,null,!0,!1)},Dr.prototype.isPaused=function(){return!1===this._readableState.flowing},Dr.prototype.setEncoding=function(t){return Cr||(Cr=Ar.StringDecoder),this._readableState.decoder=new Cr(t),this._readableState.encoding=t,this};var Wr=8388608;function zr(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=function(t){return t>=Wr?t=Wr:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}function Fr(t){var e=t._readableState;e.needReadable=!1,e.emittedReadable||(Br("emitReadable",e.flowing),e.emittedReadable=!0,e.sync?M.nextTick(qr,t):qr(t))}function qr(t){Br("emit readable"),t.emit("readable"),Vr(t)}function Hr(t,e){e.readingMore||(e.readingMore=!0,M.nextTick(Gr,t,e))}function Gr(t,e){for(var r=e.length;!e.reading&&!e.flowing&&!e.ended&&e.length<e.highWaterMark&&(Br("maybeReadMore read 0"),t.read(0),r!==e.length);)r=e.length;e.readingMore=!1}function Jr(t){Br("readable nexttick read 0"),t.read(0)}function $r(t,e){e.reading||(Br("resume read 0"),t.read(0)),e.resumeScheduled=!1,e.awaitDrain=0,t.emit("resume"),Vr(t),e.flowing&&!e.reading&&t.read(0)}function Vr(t){var e=t._readableState;for(Br("flow",e.flowing);e.flowing&&null!==t.read(););}function Zr(t,e){return 0===e.length?null:(e.objectMode?r=e.buffer.shift():!t||t>=e.length?(r=e.decoder?e.buffer.join(""):1===e.buffer.length?e.buffer.head.data:e.buffer.concat(e.length),e.buffer.clear()):r=function(t,e,r){var n;t<e.head.data.length?(n=e.head.data.slice(0,t),e.head.data=e.head.data.slice(t)):n=t===e.head.data.length?e.shift():r?function(t,e){var r=e.head,n=1,i=r.data;t-=i.length;for(;r=r.next;){var o=r.data,a=t>o.length?o.length:t;if(a===o.length?i+=o:i+=o.slice(0,t),0===(t-=a)){a===o.length?(++n,r.next?e.head=r.next:e.head=e.tail=null):(e.head=r,r.data=o.slice(a));break}++n}return e.length-=n,i}(t,e):function(t,e){var r=jr.allocUnsafe(t),n=e.head,i=1;n.data.copy(r),t-=n.data.length;for(;n=n.next;){var o=n.data,a=t>o.length?o.length:t;if(o.copy(r,r.length-t,0,a),0===(t-=a)){a===o.length?(++i,n.next?e.head=n.next:e.head=e.tail=null):(e.head=n,n.data=o.slice(a));break}++i}return e.length-=i,r}(t,e);return n}(t,e.buffer,e.decoder),r);var r}function Kr(t){var e=t._readableState;if(e.length>0)throw new Error('"endReadable()" called on non-empty stream');e.endEmitted||(e.ended=!0,M.nextTick(Xr,e,t))}function Xr(t,e){t.endEmitted||0!==t.length||(t.endEmitted=!0,e.readable=!1,e.emit("end"))}function Qr(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}Dr.prototype.read=function(t){Br("read",t),t=parseInt(t,10);var e=this._readableState,r=t;if(0!==t&&(e.emittedReadable=!1),0===t&&e.needReadable&&(e.length>=e.highWaterMark||e.ended))return Br("read: emitReadable",e.length,e.ended),0===e.length&&e.ended?Kr(this):Fr(this),null;if(0===(t=zr(t,e))&&e.ended)return 0===e.length&&Kr(this),null;var n,i=e.needReadable;return Br("need readable",i),(0===e.length||e.length-t<e.highWaterMark)&&Br("length less than watermark",i=!0),e.ended||e.reading?Br("reading or ended",i=!1):i&&(Br("do read"),e.reading=!0,e.sync=!0,0===e.length&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=zr(r,e))),null===(n=t>0?Zr(t,e):null)?(e.needReadable=!0,t=0):e.length-=t,0===e.length&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&Kr(this)),null!==n&&this.emit("data",n),n},Dr.prototype._read=function(t){this.emit("error",new Error("_read() is not implemented"))},Dr.prototype.pipe=function(t,e){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=t;break;case 1:n.pipes=[n.pipes,t];break;default:n.pipes.push(t)}n.pipesCount+=1,Br("pipe count=%d opts=%j",n.pipesCount,e);var i=(!e||!1!==e.end)&&t!==j.stdout&&t!==j.stderr?a:p;function o(e,i){Br("onunpipe"),e===r&&i&&!1===i.hasUnpiped&&(i.hasUnpiped=!0,Br("cleanup"),t.removeListener("close",h),t.removeListener("finish",d),t.removeListener("drain",s),t.removeListener("error",c),t.removeListener("unpipe",o),r.removeListener("end",a),r.removeListener("end",p),r.removeListener("data",l),u=!0,!n.awaitDrain||t._writableState&&!t._writableState.needDrain||s())}function a(){Br("onend"),t.end()}n.endEmitted?M.nextTick(i):r.once("end",i),t.on("unpipe",o);var s=function(t){return function(){var e=t._readableState;Br("pipeOnDrain",e.awaitDrain),e.awaitDrain&&e.awaitDrain--,0===e.awaitDrain&&Or(t,"data")&&(e.flowing=!0,Vr(t))}}(r);t.on("drain",s);var u=!1;var f=!1;function l(e){Br("ondata"),f=!1,!1!==t.write(e)||f||((1===n.pipesCount&&n.pipes===t||n.pipesCount>1&&-1!==Qr(n.pipes,t))&&!u&&(Br("false write response, pause",r._readableState.awaitDrain),r._readableState.awaitDrain++,f=!0),r.pause())}function c(e){Br("onerror",e),p(),t.removeListener("error",c),0===Or(t,"error")&&t.emit("error",e)}function h(){t.removeListener("finish",d),p()}function d(){Br("onfinish"),t.removeListener("close",h),p()}function p(){Br("unpipe"),r.unpipe(t)}return r.on("data",l),function(t,e,r){if("function"==typeof t.prependListener)return t.prependListener(e,r);t._events&&t._events[e]?C(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]:t.on(e,r)}(t,"error",c),t.once("close",h),t.once("finish",d),t.emit("pipe",r),n.flowing||(Br("pipe resume"),r.resume()),t},Dr.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(0===e.pipesCount)return this;if(1===e.pipesCount)return t&&t!==e.pipes||(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r)),this;if(!t){var n=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var o=0;o<i;o++)n[o].emit("unpipe",this,r);return this}var a=Qr(e.pipes,t);return-1===a||(e.pipes.splice(a,1),e.pipesCount-=1,1===e.pipesCount&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,r)),this},Dr.prototype.on=function(t,e){var r=$.prototype.on.call(this,t,e);if("data"===t)!1!==this._readableState.flowing&&this.resume();else if("readable"===t){var n=this._readableState;n.endEmitted||n.readableListening||(n.readableListening=n.needReadable=!0,n.emittedReadable=!1,n.reading?n.length&&Fr(this):M.nextTick(Jr,this))}return r},Dr.prototype.addListener=Dr.prototype.on,Dr.prototype.resume=function(){var t=this._readableState;return t.flowing||(Br("resume"),t.flowing=!0,function(t,e){e.resumeScheduled||(e.resumeScheduled=!0,M.nextTick($r,t,e))}(this,t)),this},Dr.prototype.pause=function(){return Br("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(Br("pause"),this._readableState.flowing=!1,this.emit("pause")),this},Dr.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;for(var i in t.on("end",(function(){if(Br("wrapped end"),r.decoder&&!r.ended){var t=r.decoder.end();t&&t.length&&e.push(t)}e.push(null)})),t.on("data",(function(i){(Br("wrapped data"),r.decoder&&(i=r.decoder.write(i)),r.objectMode&&null==i)||(r.objectMode||i&&i.length)&&(e.push(i)||(n=!0,t.pause()))})),t)void 0===this[i]&&"function"==typeof t[i]&&(this[i]=function(e){return function(){return t[e].apply(t,arguments)}}(i));for(var o=0;o<Ur.length;o++)t.on(Ur[o],this.emit.bind(this,Ur[o]));return this._read=function(e){Br("wrapped _read",e),n&&(n=!1,t.resume())},this},Object.defineProperty(Dr.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Dr._fromList=Zr;var tn=nn,en=Object.create(Kt);function rn(t,e){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(!n)return this.emit("error",new Error("write callback called multiple times"));r.writechunk=null,r.writecb=null,null!=e&&this.push(e),n(t);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function nn(t){if(!(this instanceof nn))return new nn(t);sr.call(this,t),this._transformState={afterTransform:rn.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&("function"==typeof t.transform&&(this._transform=t.transform),"function"==typeof t.flush&&(this._flush=t.flush)),this.on("prefinish",on)}function on(){var t=this;"function"==typeof this._flush?this._flush((function(e,r){an(t,e,r)})):an(this,null,null)}function an(t,e,r){if(e)return t.emit("error",e);if(null!=r&&t.push(r),t._writableState.length)throw new Error("Calling transform done when ws.length != 0");if(t._transformState.transforming)throw new Error("Calling transform done when still transforming");return t.push(null)}en.inherits=Xt,en.inherits(nn,sr),nn.prototype.push=function(t,e){return this._transformState.needTransform=!1,sr.prototype.push.call(this,t,e)},nn.prototype._transform=function(t,e,r){throw new Error("_transform() is not implemented")},nn.prototype._write=function(t,e,r){var n=this._transformState;if(n.writecb=r,n.writechunk=t,n.writeencoding=e,!n.transforming){var i=this._readableState;(n.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}},nn.prototype._read=function(t){var e=this._transformState;null!==e.writechunk&&e.writecb&&!e.transforming?(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform)):e.needTransform=!0},nn.prototype._destroy=function(t,e){var r=this;sr.prototype._destroy.call(this,t,(function(t){e(t),r.emit("close")}))};var sn=fn,un=Object.create(Kt);function fn(t){if(!(this instanceof fn))return new fn(t);tn.call(this,t)}un.inherits=Xt,un.inherits(fn,tn),fn.prototype._transform=function(t,e,r){r(null,t)};var ln=o((function(t,e){(e=t.exports=Lr).Stream=e,e.Readable=e,e.Writable=ze,e.Duplex=sr,e.Transform=tn,e.PassThrough=sn})).Readable,cn=dn;dn.ctor=pn,dn.obj=function(t,e){("function"==typeof t||Array.isArray(t))&&(e=t,t={});return(t=yn(t)).objectMode=!0,t.highWaterMark=16,dn(t,e)};var hn=pn();function dn(t,e){("object"!==r(t)||Array.isArray(t))&&(e=t,t={});var n,i=new hn(t);return i._from=Array.isArray(e)?(n=(n=e).slice(),function(t,e){var r=null,i=n.length?n.shift():null;i instanceof Error&&(r=i,i=null),e(r,i)}):e||gn,i}function pn(t,e){function r(e){if(!(this instanceof r))return new r(e);this._reading=!1,this._callback=function(t,e){if(n.destroyed)return;if(t)return n.destroy(t);if(null===e)return n.push(null);n._reading=!1,n.push(e)&&n._read(i)},this.destroyed=!1,ln.call(this,e||t);var n=this,i=this._readableState.highWaterMark}return"function"==typeof t&&(e=t,t={}),t=yn(t),Xt(r,ln),r.prototype._from=e||gn,r.prototype._read=function(t){this._reading||this.destroyed||(this._reading=!0,this._from(t,this._callback))},r.prototype.destroy=function(t){if(!this.destroyed){this.destroyed=!0;var e=this;j.nextTick((function(){t&&e.emit("error",t),e.emit("close")}))}},r}function gn(){}function yn(t){return t=t||{}}var vn,bn=1,wn={},mn=!1,_n=s.document;function En(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),r=0;r<e.length;r++)e[r]=arguments[r+1];var n={callback:t,args:e};return wn[bn]=n,vn(bn),bn++}function Sn(t){if(mn)setTimeout(Sn,0,t);else{var e=wn[t];if(e){mn=!0;try{!function(t){var e=t.callback,r=t.args;switch(r.length){case 0:e();break;case 1:e(r[0]);break;case 2:e(r[0],r[1]);break;case 3:e(r[0],r[1],r[2]);break;default:e.apply(void 0,r)}}(e)}finally{!function(t){delete wn[t]}(t),mn=!1}}}}var xn,kn,Tn,Rn,An=Object.getPrototypeOf&&Object.getPrototypeOf(s);function Ln(t){var e,r=Object.prototype.toString.call(t);if(e="[object Promise]"===r)return!0;if("[object Function]"!==r)return!1;try{e="function"!=typeof t.subscribe&&"function"==typeof t.then}catch(t){}return e}function On(t){var r,n,i;function o(e){((t=e)instanceof ArrayBuffer||ArrayBuffer.isView(t)&&!ft.isBuffer(t))&&(t=ft.from(t));var o=!(r=Ln(t)?t:null)&&t[Symbol.iterator]&&"string"!=typeof t&&!ft.isBuffer(t);n=o?t[Symbol.iterator]():null;var a=!r&&t[Symbol.asyncIterator];i=a?t[Symbol.asyncIterator]():null}return Array.isArray(t)&&(t=t.slice()),o(t),cn((function s(u,f){var l=this;if(r)e(a.mark((function t(){return a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.t0=o,t.next=4,r;case 4:return t.t1=t.sent,t.next=7,(0,t.t0)(t.t1);case 7:s.call(l,u,f),t.next=13;break;case 10:t.prev=10,t.t2=t.catch(0),f(t.t2);case 13:case"end":return t.stop()}}),t,null,[[0,10]])})))();else if(n){var c=n.next();En(f,null,c.done?null:c.value)}else if(i)e(a.mark((function t(){var e;return a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,i.next();case 3:e=t.sent,En(f,null,e.done?null:e.value),t.next=10;break;case 7:t.prev=7,t.t0=t.catch(0),En(f,t.t0);case 10:case"end":return t.stop()}}),t,null,[[0,7]])})))();else if(0!==t.length){var h=t.slice(0,u);t=t.slice(u),En(f,null,h)}else En(f,null,null)}))}return An=An&&An.setTimeout?An:s,"[object process]"==={}.toString.call(s.process)?vn=function(t){j.nextTick((function(){Sn(t)}))}:!function(){if(s.postMessage&&!s.importScripts){var t=!0,e=s.onmessage;return s.onmessage=function(){t=!1},s.postMessage("","*"),s.onmessage=e,t}}()?s.MessageChannel?((kn=new MessageChannel).port1.onmessage=function(t){Sn(t.data)},vn=function(t){kn.port2.postMessage(t)}):_n&&"onreadystatechange"in _n.createElement("script")?(xn=_n.documentElement,vn=function(t){var e=_n.createElement("script");e.onreadystatechange=function(){Sn(t),e.onreadystatechange=null,xn.removeChild(e),e=null},xn.appendChild(e)}):vn=function(t){setTimeout(Sn,0,t)}:(Tn="setImmediate$"+Math.random()+"$",Rn=function(t){t.source===s&&"string"==typeof t.data&&0===t.data.indexOf(Tn)&&Sn(+t.data.slice(Tn.length))},s.addEventListener?s.addEventListener("message",Rn,!1):s.attachEvent("onmessage",Rn),vn=function(t){s.postMessage(Tn+t,"*")}),On.object=function(t){var r,n,i;function o(e){r=Ln(t=e)?t:null,n=!r&&t[Symbol.iterator]?t[Symbol.iterator]():null,i=!r&&t[Symbol.asyncIterator]?t[Symbol.asyncIterator]():null}return Array.isArray(t)&&(t=t.slice()),o(t),cn.obj((function s(u,f){var l=this;if(r)e(a.mark((function t(){return a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.t0=o,t.next=4,r;case 4:return t.t1=t.sent,t.next=7,(0,t.t0)(t.t1);case 7:s.call(l,u,f),t.next=13;break;case 10:t.prev=10,t.t2=t.catch(0),f(t.t2);case 13:case"end":return t.stop()}}),t,null,[[0,10]])})))();else if(n){var c=n.next();En(f,null,c.done?null:c.value)}else i?e(a.mark((function t(){var e;return a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,i.next();case 3:e=t.sent,En(f,null,e.done?null:e.value),t.next=10;break;case 7:t.prev=7,t.t0=t.catch(0),En(f,t.t0);case 10:case"end":return t.stop()}}),t,null,[[0,7]])})))():(this.push(t),En(f,null,null))}))},On}));
|
|
6
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self)["into-stream"]=e()}(this,(function(){"use strict";function t(t,e,r,n,i,o,a){try{var s=t[o](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,i)}function e(e){return function(){var r=this,n=arguments;return new Promise((function(i,o){var a=e.apply(r,n);function s(e){t(a,i,o,s,u,"next",e)}function u(e){t(a,i,o,s,u,"throw",e)}s(void 0)}))}}function r(t){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}var n="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function i(t){if(t.__esModule)return t;var e=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(t).forEach((function(r){var n=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,n.get?n:{enumerable:!0,get:function(){return t[r]}})})),e}function o(t){var e={exports:{}};return t(e,e.exports),e.exports}var a=o((function(t){var e=function(t){var e,n=Object.prototype,i=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",s=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var i=e&&e.prototype instanceof v?e:v,o=Object.create(i.prototype),a=new L(n||[]);return o._invoke=function(t,e,r){var n=h;return function(i,o){if(n===p)throw new Error("Generator is already running");if(n===g){if("throw"===i)throw o;return j()}for(r.method=i,r.arg=o;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===y)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===h)throw n=g,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=p;var u=c(t,e,r);if("normal"===u.type){if(n=r.done?g:d,u.arg===y)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=g,r.method="throw",r.arg=u.arg)}}}(t,r,a),o}function c(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var h="suspendedStart",d="suspendedYield",p="executing",g="completed",y={};function v(){}function b(){}function w(){}var m={};f(m,a,(function(){return this}));var _=Object.getPrototypeOf,E=_&&_(_(O([])));E&&E!==n&&i.call(E,a)&&(m=E);var S=w.prototype=v.prototype=Object.create(m);function x(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function T(t,e){function n(o,a,s,u){var f=c(t[o],t,a);if("throw"!==f.type){var l=f.arg,h=l.value;return h&&"object"===r(h)&&i.call(h,"__await")?e.resolve(h.__await).then((function(t){n("next",t,s,u)}),(function(t){n("throw",t,s,u)})):e.resolve(h).then((function(t){l.value=t,s(l)}),(function(t){return n("throw",t,s,u)}))}u(f.arg)}var o;this._invoke=function(t,r){function i(){return new e((function(e,i){n(t,r,e,i)}))}return o=o?o.then(i,i):i()}}function k(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,k(t,r),"throw"===r.method))return y;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return y}var i=c(n,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,y;var o=i.arg;return o?o.done?(r[t.resultName]=o.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,y):o:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,y)}function R(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function A(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function L(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(R,this),this.reset(!0)}function O(t){if(t){var r=t[a];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function r(){for(;++n<t.length;)if(i.call(t,n))return r.value=t[n],r.done=!1,r;return r.value=e,r.done=!0,r};return o.next=o}}return{next:j}}function j(){return{value:e,done:!0}}return b.prototype=w,f(S,"constructor",w),f(w,"constructor",b),b.displayName=f(w,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,u,"GeneratorFunction")),t.prototype=Object.create(S),t},t.awrap=function(t){return{__await:t}},x(T.prototype),f(T.prototype,s,(function(){return this})),t.AsyncIterator=T,t.async=function(e,r,n,i,o){void 0===o&&(o=Promise);var a=new T(l(e,r,n,i),o);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},x(S),f(S,u,"Generator"),f(S,a,(function(){return this})),f(S,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=O,L.prototype={constructor:L,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(A),!t)for(var r in this)"t"===r.charAt(0)&&i.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function n(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var u=i.call(a,"catchLoc"),f=i.call(a,"finallyLoc");if(u&&f){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!f)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,y):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),y},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),A(r),y}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;A(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:O(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),y}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"===("undefined"==typeof globalThis?"undefined":r(globalThis))?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}})),s=a,u="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};function f(){throw new Error("setTimeout has not been defined")}function l(){throw new Error("clearTimeout has not been defined")}var c=f,h=l;function d(t){if(c===setTimeout)return setTimeout(t,0);if((c===f||!c)&&setTimeout)return c=setTimeout,setTimeout(t,0);try{return c(t,0)}catch(e){try{return c.call(null,t,0)}catch(e){return c.call(this,t,0)}}}"function"==typeof u.setTimeout&&(c=setTimeout),"function"==typeof u.clearTimeout&&(h=clearTimeout);var p,g=[],y=!1,v=-1;function b(){y&&p&&(y=!1,p.length?g=p.concat(g):v=-1,g.length&&w())}function w(){if(!y){var t=d(b);y=!0;for(var e=g.length;e;){for(p=g,g=[];++v<e;)p&&p[v].run();v=-1,e=g.length}p=null,y=!1,function(t){if(h===clearTimeout)return clearTimeout(t);if((h===l||!h)&&clearTimeout)return h=clearTimeout,clearTimeout(t);try{h(t)}catch(e){try{return h.call(null,t)}catch(e){return h.call(this,t)}}}(t)}}function m(t,e){this.fun=t,this.array=e}m.prototype.run=function(){this.fun.apply(null,this.array)};function _(){}var E=_,S=_,x=_,T=_,k=_,R=_,A=_;var L=u.performance||{},O=L.now||L.mozNow||L.msNow||L.oNow||L.webkitNow||function(){return(new Date).getTime()};var j=new Date;var M={nextTick:function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];g.push(new m(t,e)),1!==g.length||y||d(w)},title:"browser",browser:!0,env:{},argv:[],version:"",versions:{},on:E,addListener:S,once:x,off:T,removeListener:k,removeAllListeners:R,emit:A,binding:function(t){throw new Error("process.binding is not supported")},cwd:function(){return"/"},chdir:function(t){throw new Error("process.chdir is not supported")},umask:function(){return 0},hrtime:function(t){var e=.001*O.call(L),r=Math.floor(e),n=Math.floor(e%1*1e9);return t&&(r-=t[0],(n-=t[1])<0&&(r--,n+=1e9)),[r,n]},platform:"browser",release:{},config:{},uptime:function(){return(new Date-j)/1e3}},P=M,C=o((function(t){void 0===P||!P.version||0===P.version.indexOf("v0.")||0===P.version.indexOf("v1.")&&0!==P.version.indexOf("v1.8.")?t.exports={nextTick:function(t,e,r,n){if("function"!=typeof t)throw new TypeError('"callback" argument must be a function');var i,o,a=arguments.length;switch(a){case 0:case 1:return P.nextTick(t);case 2:return P.nextTick((function(){t.call(null,e)}));case 3:return P.nextTick((function(){t.call(null,e,r)}));case 4:return P.nextTick((function(){t.call(null,e,r,n)}));default:for(i=new Array(a-1),o=0;o<i.length;)i[o++]=arguments[o];return P.nextTick((function(){t.apply(null,i)}))}}}:t.exports=P})),B={}.toString,U=Array.isArray||function(t){return"[object Array]"==B.call(t)};function N(){}function D(){D.init.call(this)}function I(t){return void 0===t._maxListeners?D.defaultMaxListeners:t._maxListeners}function Y(t,e,r){if(e)t.call(r);else for(var n=t.length,i=$(t,n),o=0;o<n;++o)i[o].call(r)}function W(t,e,r,n){if(e)t.call(r,n);else for(var i=t.length,o=$(t,i),a=0;a<i;++a)o[a].call(r,n)}function z(t,e,r,n,i){if(e)t.call(r,n,i);else for(var o=t.length,a=$(t,o),s=0;s<o;++s)a[s].call(r,n,i)}function F(t,e,r,n,i,o){if(e)t.call(r,n,i,o);else for(var a=t.length,s=$(t,a),u=0;u<a;++u)s[u].call(r,n,i,o)}function q(t,e,r,n){if(e)t.apply(r,n);else for(var i=t.length,o=$(t,i),a=0;a<i;++a)o[a].apply(r,n)}function H(t,e,r,n){var i,o,a,s;if("function"!=typeof r)throw new TypeError('"listener" argument must be a function');if((o=t._events)?(o.newListener&&(t.emit("newListener",e,r.listener?r.listener:r),o=t._events),a=o[e]):(o=t._events=new N,t._eventsCount=0),a){if("function"==typeof a?a=o[e]=n?[r,a]:[a,r]:n?a.unshift(r):a.push(r),!a.warned&&(i=I(t))&&i>0&&a.length>i){a.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+e+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=t,u.type=e,u.count=a.length,s=u,"function"==typeof console.warn?console.warn(s):console.log(s)}}else a=o[e]=r,++t._eventsCount;return t}function G(t,e,r){var n=!1;function i(){t.removeListener(e,i),n||(n=!0,r.apply(t,arguments))}return i.listener=r,i}function J(t){var e=this._events;if(e){var r=e[t];if("function"==typeof r)return 1;if(r)return r.length}return 0}function $(t,e){for(var r=new Array(e);e--;)r[e]=t[e];return r}N.prototype=Object.create(null),D.EventEmitter=D,D.usingDomains=!1,D.prototype.domain=void 0,D.prototype._events=void 0,D.prototype._maxListeners=void 0,D.defaultMaxListeners=10,D.init=function(){this.domain=null,D.usingDomains&&undefined.active,this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=new N,this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},D.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||isNaN(t))throw new TypeError('"n" argument must be a positive number');return this._maxListeners=t,this},D.prototype.getMaxListeners=function(){return I(this)},D.prototype.emit=function(t){var e,r,n,i,o,a,s,u="error"===t;if(a=this._events)u=u&&null==a.error;else if(!u)return!1;if(s=this.domain,u){if(e=arguments[1],!s){if(e instanceof Error)throw e;var f=new Error('Uncaught, unspecified "error" event. ('+e+")");throw f.context=e,f}return e||(e=new Error('Uncaught, unspecified "error" event')),e.domainEmitter=this,e.domain=s,e.domainThrown=!1,s.emit("error",e),!1}if(!(r=a[t]))return!1;var l="function"==typeof r;switch(n=arguments.length){case 1:Y(r,l,this);break;case 2:W(r,l,this,arguments[1]);break;case 3:z(r,l,this,arguments[1],arguments[2]);break;case 4:F(r,l,this,arguments[1],arguments[2],arguments[3]);break;default:for(i=new Array(n-1),o=1;o<n;o++)i[o-1]=arguments[o];q(r,l,this,i)}return!0},D.prototype.addListener=function(t,e){return H(this,t,e,!1)},D.prototype.on=D.prototype.addListener,D.prototype.prependListener=function(t,e){return H(this,t,e,!0)},D.prototype.once=function(t,e){if("function"!=typeof e)throw new TypeError('"listener" argument must be a function');return this.on(t,G(this,t,e)),this},D.prototype.prependOnceListener=function(t,e){if("function"!=typeof e)throw new TypeError('"listener" argument must be a function');return this.prependListener(t,G(this,t,e)),this},D.prototype.removeListener=function(t,e){var r,n,i,o,a;if("function"!=typeof e)throw new TypeError('"listener" argument must be a function');if(!(n=this._events))return this;if(!(r=n[t]))return this;if(r===e||r.listener&&r.listener===e)0==--this._eventsCount?this._events=new N:(delete n[t],n.removeListener&&this.emit("removeListener",t,r.listener||e));else if("function"!=typeof r){for(i=-1,o=r.length;o-- >0;)if(r[o]===e||r[o].listener&&r[o].listener===e){a=r[o].listener,i=o;break}if(i<0)return this;if(1===r.length){if(r[0]=void 0,0==--this._eventsCount)return this._events=new N,this;delete n[t]}else!function(t,e){for(var r=e,n=r+1,i=t.length;n<i;r+=1,n+=1)t[r]=t[n];t.pop()}(r,i);n.removeListener&&this.emit("removeListener",t,a||e)}return this},D.prototype.removeAllListeners=function(t){var e,r;if(!(r=this._events))return this;if(!r.removeListener)return 0===arguments.length?(this._events=new N,this._eventsCount=0):r[t]&&(0==--this._eventsCount?this._events=new N:delete r[t]),this;if(0===arguments.length){for(var n,i=Object.keys(r),o=0;o<i.length;++o)"removeListener"!==(n=i[o])&&this.removeAllListeners(n);return this.removeAllListeners("removeListener"),this._events=new N,this._eventsCount=0,this}if("function"==typeof(e=r[t]))this.removeListener(t,e);else if(e)do{this.removeListener(t,e[e.length-1])}while(e[0]);return this},D.prototype.listeners=function(t){var e,r=this._events;return r&&(e=r[t])?"function"==typeof e?[e.listener||e]:function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(e):[]},D.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):J.call(t,e)},D.prototype.listenerCount=J,D.prototype.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]};var V=i(Object.freeze({__proto__:null,default:D,EventEmitter:D})),Z=V.EventEmitter,K=[],X=[],Q="undefined"!=typeof Uint8Array?Uint8Array:Array,tt=!1;function et(){tt=!0;for(var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",e=0,r=t.length;e<r;++e)K[e]=t[e],X[t.charCodeAt(e)]=e;X["-".charCodeAt(0)]=62,X["_".charCodeAt(0)]=63}function rt(t,e,r){for(var n,i,o=[],a=e;a<r;a+=3)n=(t[a]<<16)+(t[a+1]<<8)+t[a+2],o.push(K[(i=n)>>18&63]+K[i>>12&63]+K[i>>6&63]+K[63&i]);return o.join("")}function nt(t){var e;tt||et();for(var r=t.length,n=r%3,i="",o=[],a=16383,s=0,u=r-n;s<u;s+=a)o.push(rt(t,s,s+a>u?u:s+a));return 1===n?(e=t[r-1],i+=K[e>>2],i+=K[e<<4&63],i+="=="):2===n&&(e=(t[r-2]<<8)+t[r-1],i+=K[e>>10],i+=K[e>>4&63],i+=K[e<<2&63],i+="="),o.push(i),o.join("")}function it(t,e,r,n,i){var o,a,s=8*i-n-1,u=(1<<s)-1,f=u>>1,l=-7,c=r?i-1:0,h=r?-1:1,d=t[e+c];for(c+=h,o=d&(1<<-l)-1,d>>=-l,l+=s;l>0;o=256*o+t[e+c],c+=h,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+t[e+c],c+=h,l-=8);if(0===o)o=1-f;else{if(o===u)return a?NaN:1/0*(d?-1:1);a+=Math.pow(2,n),o-=f}return(d?-1:1)*a*Math.pow(2,o-n)}function ot(t,e,r,n,i,o){var a,s,u,f=8*o-i-1,l=(1<<f)-1,c=l>>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,d=n?0:o-1,p=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,a=l):(a=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-a))<1&&(a--,u*=2),(e+=a+c>=1?h/u:h*Math.pow(2,1-c))*u>=2&&(a++,u/=2),a+c>=l?(s=0,a=l):a+c>=1?(s=(e*u-1)*Math.pow(2,i),a+=c):(s=e*Math.pow(2,c-1)*Math.pow(2,i),a=0));i>=8;t[r+d]=255&s,d+=p,s/=256,i-=8);for(a=a<<i|s,f+=i;f>0;t[r+d]=255&a,d+=p,a/=256,f-=8);t[r+d-p]|=128*g}var at={}.toString,st=Array.isArray||function(t){return"[object Array]"==at.call(t)};ct.TYPED_ARRAY_SUPPORT=void 0===u.TYPED_ARRAY_SUPPORT||u.TYPED_ARRAY_SUPPORT;var ut=ft();function ft(){return ct.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function lt(t,e){if(ft()<e)throw new RangeError("Invalid typed array length");return ct.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e)).__proto__=ct.prototype:(null===t&&(t=new ct(e)),t.length=e),t}function ct(t,e,r){if(!(ct.TYPED_ARRAY_SUPPORT||this instanceof ct))return new ct(t,e,r);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return pt(this,t)}return ht(this,t,e,r)}function ht(t,e,r,n){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?function(t,e,r,n){if(e.byteLength,r<0||e.byteLength<r)throw new RangeError("'offset' is out of bounds");if(e.byteLength<r+(n||0))throw new RangeError("'length' is out of bounds");e=void 0===r&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,r):new Uint8Array(e,r,n);ct.TYPED_ARRAY_SUPPORT?(t=e).__proto__=ct.prototype:t=gt(t,e);return t}(t,e,r,n):"string"==typeof e?function(t,e,r){"string"==typeof r&&""!==r||(r="utf8");if(!ct.isEncoding(r))throw new TypeError('"encoding" must be a valid string encoding');var n=0|bt(e,r),i=(t=lt(t,n)).write(e,r);i!==n&&(t=t.slice(0,i));return t}(t,e,r):function(t,e){if(vt(e)){var r=0|yt(e.length);return 0===(t=lt(t,r)).length||e.copy(t,0,0,r),t}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||(n=e.length)!=n?lt(t,0):gt(t,e);if("Buffer"===e.type&&st(e.data))return gt(t,e.data)}var n;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(t,e)}function dt(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function pt(t,e){if(dt(e),t=lt(t,e<0?0:0|yt(e)),!ct.TYPED_ARRAY_SUPPORT)for(var r=0;r<e;++r)t[r]=0;return t}function gt(t,e){var r=e.length<0?0:0|yt(e.length);t=lt(t,r);for(var n=0;n<r;n+=1)t[n]=255&e[n];return t}function yt(t){if(t>=ft())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+ft().toString(16)+" bytes");return 0|t}function vt(t){return!(null==t||!t._isBuffer)}function bt(t,e){if(vt(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var r=t.length;if(0===r)return 0;for(var n=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":case void 0:return Ht(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return Gt(t).length;default:if(n)return Ht(t).length;e=(""+e).toLowerCase(),n=!0}}function wt(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return Ct(this,e,r);case"utf8":case"utf-8":return Ot(this,e,r);case"ascii":return Mt(this,e,r);case"latin1":case"binary":return Pt(this,e,r);case"base64":return Lt(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Bt(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}function mt(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function _t(t,e,r,n,i){if(0===t.length)return-1;if("string"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,isNaN(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)return-1;r=0}if("string"==typeof e&&(e=ct.from(e,n)),vt(e))return 0===e.length?-1:Et(t,e,r,n,i);if("number"==typeof e)return e&=255,ct.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):Et(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function Et(t,e,r,n,i){var o,a=1,s=t.length,u=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;a=2,s/=2,u/=2,r/=2}function f(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}if(i){var l=-1;for(o=r;o<s;o++)if(f(t,o)===f(e,-1===l?0:o-l)){if(-1===l&&(l=o),o-l+1===u)return l*a}else-1!==l&&(o-=o-l),l=-1}else for(r+u>s&&(r=s-u),o=r;o>=0;o--){for(var c=!0,h=0;h<u;h++)if(f(t,o+h)!==f(e,h)){c=!1;break}if(c)return o}return-1}function St(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n))>i&&(n=i):n=i;var o=e.length;if(o%2!=0)throw new TypeError("Invalid hex string");n>o/2&&(n=o/2);for(var a=0;a<n;++a){var s=parseInt(e.substr(2*a,2),16);if(isNaN(s))return a;t[r+a]=s}return a}function xt(t,e,r,n){return Jt(Ht(e,t.length-r),t,r,n)}function Tt(t,e,r,n){return Jt(function(t){for(var e=[],r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,n)}function kt(t,e,r,n){return Tt(t,e,r,n)}function Rt(t,e,r,n){return Jt(Gt(e),t,r,n)}function At(t,e,r,n){return Jt(function(t,e){for(var r,n,i,o=[],a=0;a<t.length&&!((e-=2)<0);++a)n=(r=t.charCodeAt(a))>>8,i=r%256,o.push(i),o.push(n);return o}(e,t.length-r),t,r,n)}function Lt(t,e,r){return 0===e&&r===t.length?nt(t):nt(t.slice(e,r))}function Ot(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var o,a,s,u,f=t[i],l=null,c=f>239?4:f>223?3:f>191?2:1;if(i+c<=r)switch(c){case 1:f<128&&(l=f);break;case 2:128==(192&(o=t[i+1]))&&(u=(31&f)<<6|63&o)>127&&(l=u);break;case 3:o=t[i+1],a=t[i+2],128==(192&o)&&128==(192&a)&&(u=(15&f)<<12|(63&o)<<6|63&a)>2047&&(u<55296||u>57343)&&(l=u);break;case 4:o=t[i+1],a=t[i+2],s=t[i+3],128==(192&o)&&128==(192&a)&&128==(192&s)&&(u=(15&f)<<18|(63&o)<<12|(63&a)<<6|63&s)>65535&&u<1114112&&(l=u)}null===l?(l=65533,c=1):l>65535&&(l-=65536,n.push(l>>>10&1023|55296),l=56320|1023&l),n.push(l),i+=c}return function(t){var e=t.length;if(e<=jt)return String.fromCharCode.apply(String,t);var r="",n=0;for(;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=jt));return r}(n)}ct.poolSize=8192,ct._augment=function(t){return t.__proto__=ct.prototype,t},ct.from=function(t,e,r){return ht(null,t,e,r)},ct.TYPED_ARRAY_SUPPORT&&(ct.prototype.__proto__=Uint8Array.prototype,ct.__proto__=Uint8Array),ct.alloc=function(t,e,r){return function(t,e,r,n){return dt(e),e<=0?lt(t,e):void 0!==r?"string"==typeof n?lt(t,e).fill(r,n):lt(t,e).fill(r):lt(t,e)}(null,t,e,r)},ct.allocUnsafe=function(t){return pt(null,t)},ct.allocUnsafeSlow=function(t){return pt(null,t)},ct.isBuffer=$t,ct.compare=function(t,e){if(!vt(t)||!vt(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var r=t.length,n=e.length,i=0,o=Math.min(r,n);i<o;++i)if(t[i]!==e[i]){r=t[i],n=e[i];break}return r<n?-1:n<r?1:0},ct.isEncoding=function(t){switch(String(t).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}},ct.concat=function(t,e){if(!st(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return ct.alloc(0);var r;if(void 0===e)for(e=0,r=0;r<t.length;++r)e+=t[r].length;var n=ct.allocUnsafe(e),i=0;for(r=0;r<t.length;++r){var o=t[r];if(!vt(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(n,i),i+=o.length}return n},ct.byteLength=bt,ct.prototype._isBuffer=!0,ct.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)mt(this,e,e+1);return this},ct.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)mt(this,e,e+3),mt(this,e+1,e+2);return this},ct.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)mt(this,e,e+7),mt(this,e+1,e+6),mt(this,e+2,e+5),mt(this,e+3,e+4);return this},ct.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?Ot(this,0,t):wt.apply(this,arguments)},ct.prototype.equals=function(t){if(!vt(t))throw new TypeError("Argument must be a Buffer");return this===t||0===ct.compare(this,t)},ct.prototype.inspect=function(){var t="";return this.length>0&&(t=this.toString("hex",0,50).match(/.{2}/g).join(" "),this.length>50&&(t+=" ... ")),"<Buffer "+t+">"},ct.prototype.compare=function(t,e,r,n,i){if(!vt(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),e<0||r>t.length||n<0||i>this.length)throw new RangeError("out of range index");if(n>=i&&e>=r)return 0;if(n>=i)return-1;if(e>=r)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(n>>>=0),a=(r>>>=0)-(e>>>=0),s=Math.min(o,a),u=this.slice(n,i),f=t.slice(e,r),l=0;l<s;++l)if(u[l]!==f[l]){o=u[l],a=f[l];break}return o<a?-1:a<o?1:0},ct.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},ct.prototype.indexOf=function(t,e,r){return _t(this,t,e,r,!0)},ct.prototype.lastIndexOf=function(t,e,r){return _t(this,t,e,r,!1)},ct.prototype.write=function(t,e,r,n){if(void 0===e)n="utf8",r=this.length,e=0;else if(void 0===r&&"string"==typeof e)n=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(r)?(r|=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var i=this.length-e;if((void 0===r||r>i)&&(r=i),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var o=!1;;)switch(n){case"hex":return St(this,t,e,r);case"utf8":case"utf-8":return xt(this,t,e,r);case"ascii":return Tt(this,t,e,r);case"latin1":case"binary":return kt(this,t,e,r);case"base64":return Rt(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return At(this,t,e,r);default:if(o)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),o=!0}},ct.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var jt=4096;function Mt(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(127&t[i]);return n}function Pt(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 Ct(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+=qt(t[o]);return i}function Bt(t,e,r){for(var n=t.slice(e,r),i="",o=0;o<n.length;o+=2)i+=String.fromCharCode(n[o]+256*n[o+1]);return i}function Ut(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")}function Nt(t,e,r,n,i,o){if(!vt(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")}function Dt(t,e,r,n){e<0&&(e=65535+e+1);for(var i=0,o=Math.min(t.length-r,2);i<o;++i)t[r+i]=(e&255<<8*(n?i:1-i))>>>8*(n?i:1-i)}function It(t,e,r,n){e<0&&(e=4294967295+e+1);for(var i=0,o=Math.min(t.length-r,4);i<o;++i)t[r+i]=e>>>8*(n?i:3-i)&255}function Yt(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 Wt(t,e,r,n,i){return i||Yt(t,0,r,4),ot(t,e,r,n,23,4),r+4}function zt(t,e,r,n,i){return i||Yt(t,0,r,8),ot(t,e,r,n,52,8),r+8}ct.prototype.slice=function(t,e){var r,n=this.length;if((t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t),ct.TYPED_ARRAY_SUPPORT)(r=this.subarray(t,e)).__proto__=ct.prototype;else{var i=e-t;r=new ct(i,void 0);for(var o=0;o<i;++o)r[o]=this[o+t]}return r},ct.prototype.readUIntLE=function(t,e,r){t|=0,e|=0,r||Ut(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return n},ct.prototype.readUIntBE=function(t,e,r){t|=0,e|=0,r||Ut(t,e,this.length);for(var n=this[t+--e],i=1;e>0&&(i*=256);)n+=this[t+--e]*i;return n},ct.prototype.readUInt8=function(t,e){return e||Ut(t,1,this.length),this[t]},ct.prototype.readUInt16LE=function(t,e){return e||Ut(t,2,this.length),this[t]|this[t+1]<<8},ct.prototype.readUInt16BE=function(t,e){return e||Ut(t,2,this.length),this[t]<<8|this[t+1]},ct.prototype.readUInt32LE=function(t,e){return e||Ut(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},ct.prototype.readUInt32BE=function(t,e){return e||Ut(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},ct.prototype.readIntLE=function(t,e,r){t|=0,e|=0,r||Ut(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return n>=(i*=128)&&(n-=Math.pow(2,8*e)),n},ct.prototype.readIntBE=function(t,e,r){t|=0,e|=0,r||Ut(t,e,this.length);for(var n=e,i=1,o=this[t+--n];n>0&&(i*=256);)o+=this[t+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*e)),o},ct.prototype.readInt8=function(t,e){return e||Ut(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},ct.prototype.readInt16LE=function(t,e){e||Ut(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},ct.prototype.readInt16BE=function(t,e){e||Ut(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},ct.prototype.readInt32LE=function(t,e){return e||Ut(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},ct.prototype.readInt32BE=function(t,e){return e||Ut(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},ct.prototype.readFloatLE=function(t,e){return e||Ut(t,4,this.length),it(this,t,!0,23,4)},ct.prototype.readFloatBE=function(t,e){return e||Ut(t,4,this.length),it(this,t,!1,23,4)},ct.prototype.readDoubleLE=function(t,e){return e||Ut(t,8,this.length),it(this,t,!0,52,8)},ct.prototype.readDoubleBE=function(t,e){return e||Ut(t,8,this.length),it(this,t,!1,52,8)},ct.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e|=0,r|=0,n)||Nt(this,t,e,r,Math.pow(2,8*r)-1,0);var i=1,o=0;for(this[e]=255&t;++o<r&&(i*=256);)this[e+o]=t/i&255;return e+r},ct.prototype.writeUIntBE=function(t,e,r,n){(t=+t,e|=0,r|=0,n)||Nt(this,t,e,r,Math.pow(2,8*r)-1,0);var i=r-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+r},ct.prototype.writeUInt8=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,1,255,0),ct.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},ct.prototype.writeUInt16LE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,2,65535,0),ct.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):Dt(this,t,e,!0),e+2},ct.prototype.writeUInt16BE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,2,65535,0),ct.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):Dt(this,t,e,!1),e+2},ct.prototype.writeUInt32LE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,4,4294967295,0),ct.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):It(this,t,e,!0),e+4},ct.prototype.writeUInt32BE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,4,4294967295,0),ct.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):It(this,t,e,!1),e+4},ct.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*r-1);Nt(this,t,e,r,i-1,-i)}var o=0,a=1,s=0;for(this[e]=255&t;++o<r&&(a*=256);)t<0&&0===s&&0!==this[e+o-1]&&(s=1),this[e+o]=(t/a>>0)-s&255;return e+r},ct.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*r-1);Nt(this,t,e,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[e+o]=255&t;--o>=0&&(a*=256);)t<0&&0===s&&0!==this[e+o+1]&&(s=1),this[e+o]=(t/a>>0)-s&255;return e+r},ct.prototype.writeInt8=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,1,127,-128),ct.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},ct.prototype.writeInt16LE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,2,32767,-32768),ct.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):Dt(this,t,e,!0),e+2},ct.prototype.writeInt16BE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,2,32767,-32768),ct.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):Dt(this,t,e,!1),e+2},ct.prototype.writeInt32LE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,4,2147483647,-2147483648),ct.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):It(this,t,e,!0),e+4},ct.prototype.writeInt32BE=function(t,e,r){return t=+t,e|=0,r||Nt(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),ct.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):It(this,t,e,!1),e+4},ct.prototype.writeFloatLE=function(t,e,r){return Wt(this,t,e,!0,r)},ct.prototype.writeFloatBE=function(t,e,r){return Wt(this,t,e,!1,r)},ct.prototype.writeDoubleLE=function(t,e,r){return zt(this,t,e,!0,r)},ct.prototype.writeDoubleBE=function(t,e,r){return zt(this,t,e,!1,r)},ct.prototype.copy=function(t,e,r,n){if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n<r&&(n=r),n===r)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(r<0||r>=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-e<n-r&&(n=t.length-e+r);var i,o=n-r;if(this===t&&r<e&&e<n)for(i=o-1;i>=0;--i)t[i+e]=this[i+r];else if(o<1e3||!ct.TYPED_ARRAY_SUPPORT)for(i=0;i<o;++i)t[i+e]=this[i+r];else Uint8Array.prototype.set.call(t,this.subarray(r,r+o),e);return o},ct.prototype.fill=function(t,e,r,n){if("string"==typeof t){if("string"==typeof e?(n=e,e=0,r=this.length):"string"==typeof r&&(n=r,r=this.length),1===t.length){var i=t.charCodeAt(0);i<256&&(t=i)}if(void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!ct.isEncoding(n))throw new TypeError("Unknown encoding: "+n)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<r)throw new RangeError("Out of range index");if(r<=e)return this;var o;if(e>>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),"number"==typeof t)for(o=e;o<r;++o)this[o]=t;else{var a=vt(t)?t:Ht(new ct(t,n).toString()),s=a.length;for(o=0;o<r-e;++o)this[o+e]=a[o%s]}return this};var Ft=/[^+\/0-9A-Za-z-_]/g;function qt(t){return t<16?"0"+t.toString(16):t.toString(16)}function Ht(t,e){var r;e=e||1/0;for(var n=t.length,i=null,o=[],a=0;a<n;++a){if((r=t.charCodeAt(a))>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(a+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=65536+(i-55296<<10|r-56320)}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,63&r|128)}else if(r<65536){if((e-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return o}function Gt(t){return function(t){var e,r,n,i,o,a;tt||et();var s=t.length;if(s%4>0)throw new Error("Invalid string. Length must be a multiple of 4");o="="===t[s-2]?2:"="===t[s-1]?1:0,a=new Q(3*s/4-o),n=o>0?s-4:s;var u=0;for(e=0,r=0;e<n;e+=4,r+=3)i=X[t.charCodeAt(e)]<<18|X[t.charCodeAt(e+1)]<<12|X[t.charCodeAt(e+2)]<<6|X[t.charCodeAt(e+3)],a[u++]=i>>16&255,a[u++]=i>>8&255,a[u++]=255&i;return 2===o?(i=X[t.charCodeAt(e)]<<2|X[t.charCodeAt(e+1)]>>4,a[u++]=255&i):1===o&&(i=X[t.charCodeAt(e)]<<10|X[t.charCodeAt(e+1)]<<4|X[t.charCodeAt(e+2)]>>2,a[u++]=i>>8&255,a[u++]=255&i),a}(function(t){if((t=function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}(t).replace(Ft,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function Jt(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 $t(t){return null!=t&&(!!t._isBuffer||Vt(t)||function(t){return"function"==typeof t.readFloatLE&&"function"==typeof t.slice&&Vt(t.slice(0,0))}(t))}function Vt(t){return!!t.constructor&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}var Zt=i(Object.freeze({__proto__:null,Buffer:ct,INSPECT_MAX_BYTES:50,SlowBuffer:function(t){return+t!=t&&(t=0),ct.alloc(+t)},isBuffer:$t,kMaxLength:ut})),Kt=o((function(t,e){var r=Zt.Buffer;function n(t,e){for(var r in t)e[r]=t[r]}function i(t,e,n){return r(t,e,n)}r.from&&r.alloc&&r.allocUnsafe&&r.allocUnsafeSlow?t.exports=Zt:(n(Zt,e),e.Buffer=i),n(r,i),i.from=function(t,e,n){if("number"==typeof t)throw new TypeError("Argument must not be a number");return r(t,e,n)},i.alloc=function(t,e,n){if("number"!=typeof t)throw new TypeError("Argument must be a number");var i=r(t);return void 0!==e?"string"==typeof n?i.fill(e,n):i.fill(e):i.fill(0),i},i.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return r(t)},i.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return Zt.SlowBuffer(t)}}));function Xt(t){return Object.prototype.toString.call(t)}var Qt,te={isArray:function(t){return Array.isArray?Array.isArray(t):"[object Array]"===Xt(t)},isBoolean:function(t){return"boolean"==typeof t},isNull:function(t){return null===t},isNullOrUndefined:function(t){return null==t},isNumber:function(t){return"number"==typeof t},isString:function(t){return"string"==typeof t},isSymbol:function(t){return"symbol"===r(t)},isUndefined:function(t){return void 0===t},isRegExp:function(t){return"[object RegExp]"===Xt(t)},isObject:function(t){return"object"===r(t)&&null!==t},isDate:function(t){return"[object Date]"===Xt(t)},isError:function(t){return"[object Error]"===Xt(t)||t instanceof Error},isFunction:function(t){return"function"==typeof t},isPrimitive:function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"===r(t)||void 0===t},isBuffer:Zt.Buffer.isBuffer},ee=o((function(t){"function"==typeof Object.create?t.exports=function(t,e){e&&(t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:t.exports=function(t,e){if(e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}}}));Qt="function"==typeof Object.create?function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:function(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t};var re=Qt,ne=/%[sdj%]/g;function ie(t){if(!me(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(fe(arguments[r]));return e.join(" ")}r=1;for(var n=arguments,i=n.length,o=String(t).replace(ne,(function(t){if("%%"===t)return"%";if(r>=i)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}})),a=n[r];r<i;a=n[++r])ve(a)||!xe(a)?o+=" "+a:o+=" "+fe(a);return o}function oe(t,e){if(Ee(u.process))return function(){return oe(t,e).apply(this,arguments)};if(!0===P.noDeprecation)return t;var r=!1;return function(){if(!r){if(P.throwDeprecation)throw new Error(e);P.traceDeprecation?console.trace(e):console.error(e),r=!0}return t.apply(this,arguments)}}var ae,se={};function ue(t){if(Ee(ae)&&(ae=P.env.NODE_DEBUG||""),t=t.toUpperCase(),!se[t])if(new RegExp("\\b"+t+"\\b","i").test(ae)){se[t]=function(){var e=ie.apply(null,arguments);console.error("%s %d: %s",t,0,e)}}else se[t]=function(){};return se[t]}function fe(t,e){var r={seen:[],stylize:ce};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),ye(e)?r.showHidden=e:e&&Be(r,e),Ee(r.showHidden)&&(r.showHidden=!1),Ee(r.depth)&&(r.depth=2),Ee(r.colors)&&(r.colors=!1),Ee(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=le),he(r,t,r.depth)}function le(t,e){var r=fe.styles[e];return r?"["+fe.colors[r][0]+"m"+t+"["+fe.colors[r][1]+"m":t}function ce(t,e){return t}function he(t,e,r){if(t.customInspect&&e&&Re(e.inspect)&&e.inspect!==fe&&(!e.constructor||e.constructor.prototype!==e)){var n=e.inspect(r,t);return me(n)||(n=he(t,n,r)),n}var i=function(t,e){if(Ee(e))return t.stylize("undefined","undefined");if(me(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(we(e))return t.stylize(""+e,"number");if(ye(e))return t.stylize(""+e,"boolean");if(ve(e))return t.stylize("null","null")}(t,e);if(i)return i;var o=Object.keys(e),a=function(t){var e={};return t.forEach((function(t,r){e[t]=!0})),e}(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),ke(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return de(e);if(0===o.length){if(Re(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(Se(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(Te(e))return t.stylize(Date.prototype.toString.call(e),"date");if(ke(e))return de(e)}var u,f="",l=!1,c=["{","}"];(ge(e)&&(l=!0,c=["[","]"]),Re(e))&&(f=" [Function"+(e.name?": "+e.name:"")+"]");return Se(e)&&(f=" "+RegExp.prototype.toString.call(e)),Te(e)&&(f=" "+Date.prototype.toUTCString.call(e)),ke(e)&&(f=" "+de(e)),0!==o.length||l&&0!=e.length?r<0?Se(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special"):(t.seen.push(e),u=l?function(t,e,r,n,i){for(var o=[],a=0,s=e.length;a<s;++a)Ue(e,String(a))?o.push(pe(t,e,r,n,String(a),!0)):o.push("");return i.forEach((function(i){i.match(/^\d+$/)||o.push(pe(t,e,r,n,i,!0))})),o}(t,e,r,a,o):o.map((function(n){return pe(t,e,r,a,n,l)})),t.seen.pop(),function(t,e,r){if(t.reduce((function(t,e){return e.indexOf("\n"),t+e.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60)return r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+r[1];return r[0]+e+" "+t.join(", ")+" "+r[1]}(u,f,c)):c[0]+f+c[1]}function de(t){return"["+Error.prototype.toString.call(t)+"]"}function pe(t,e,r,n,i,o){var a,s,u;if((u=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]}).get?s=u.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):u.set&&(s=t.stylize("[Setter]","special")),Ue(n,i)||(a="["+i+"]"),s||(t.seen.indexOf(u.value)<0?(s=ve(r)?he(t,u.value,null):he(t,u.value,r-1)).indexOf("\n")>-1&&(s=o?s.split("\n").map((function(t){return" "+t})).join("\n").substr(2):"\n"+s.split("\n").map((function(t){return" "+t})).join("\n")):s=t.stylize("[Circular]","special")),Ee(a)){if(o&&i.match(/^\d+$/))return s;(a=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=t.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=t.stylize(a,"string"))}return a+": "+s}function ge(t){return Array.isArray(t)}function ye(t){return"boolean"==typeof t}function ve(t){return null===t}function be(t){return null==t}function we(t){return"number"==typeof t}function me(t){return"string"==typeof t}function _e(t){return"symbol"===r(t)}function Ee(t){return void 0===t}function Se(t){return xe(t)&&"[object RegExp]"===Oe(t)}function xe(t){return"object"===r(t)&&null!==t}function Te(t){return xe(t)&&"[object Date]"===Oe(t)}function ke(t){return xe(t)&&("[object Error]"===Oe(t)||t instanceof Error)}function Re(t){return"function"==typeof t}function Ae(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"===r(t)||void 0===t}function Le(t){return ct.isBuffer(t)}function Oe(t){return Object.prototype.toString.call(t)}function je(t){return t<10?"0"+t.toString(10):t.toString(10)}fe.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]},fe.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};var Me=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function Pe(){var t=new Date,e=[je(t.getHours()),je(t.getMinutes()),je(t.getSeconds())].join(":");return[t.getDate(),Me[t.getMonth()],e].join(" ")}function Ce(){console.log("%s - %s",Pe(),ie.apply(null,arguments))}function Be(t,e){if(!e||!xe(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}function Ue(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var Ne={inherits:re,_extend:Be,log:Ce,isBuffer:Le,isPrimitive:Ae,isFunction:Re,isError:ke,isDate:Te,isObject:xe,isRegExp:Se,isUndefined:Ee,isSymbol:_e,isString:me,isNumber:we,isNullOrUndefined:be,isNull:ve,isBoolean:ye,isArray:ge,inspect:fe,deprecate:oe,format:ie,debuglog:ue},De=i(Object.freeze({__proto__:null,format:ie,deprecate:oe,debuglog:ue,inspect:fe,isArray:ge,isBoolean:ye,isNull:ve,isNullOrUndefined:be,isNumber:we,isString:me,isSymbol:_e,isUndefined:Ee,isRegExp:Se,isObject:xe,isDate:Te,isError:ke,isFunction:Re,isPrimitive:Ae,isBuffer:Le,log:Ce,inherits:re,_extend:Be,default:Ne})),Ie=o((function(t){var e=Kt.Buffer;t.exports=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.head=null,this.tail=null,this.length=0}return t.prototype.push=function(t){var e={data:t,next:null};this.length>0?this.tail.next=e:this.head=e,this.tail=e,++this.length},t.prototype.unshift=function(t){var e={data:t,next:this.head};0===this.length&&(this.tail=e),this.head=e,++this.length},t.prototype.shift=function(){if(0!==this.length){var t=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,t}},t.prototype.clear=function(){this.head=this.tail=null,this.length=0},t.prototype.join=function(t){if(0===this.length)return"";for(var e=this.head,r=""+e.data;e=e.next;)r+=t+e.data;return r},t.prototype.concat=function(t){if(0===this.length)return e.alloc(0);if(1===this.length)return this.head.data;for(var r,n,i,o=e.allocUnsafe(t>>>0),a=this.head,s=0;a;)r=a.data,n=o,i=s,r.copy(n,i),s+=a.data.length,a=a.next;return o},t}(),De&&De.inspect&&De.inspect.custom&&(t.exports.prototype[De.inspect.custom]=function(){var t=De.inspect({length:this.length});return this.constructor.name+" "+t})}));function Ye(t,e){t.emit("error",e)}var We=function(t,e){var r=this,n=this._readableState&&this._readableState.destroyed,i=this._writableState&&this._writableState.destroyed;return n||i?(e?e(t):!t||this._writableState&&this._writableState.errorEmitted||C.nextTick(Ye,this,t),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,(function(t){!e&&t?(C.nextTick(Ye,r,t),r._writableState&&(r._writableState.errorEmitted=!0)):e&&e(t)})),this)},ze=function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},Fe=function(t,e){if(qe("noDeprecation"))return t;var r=!1;return function(){if(!r){if(qe("throwDeprecation"))throw new Error(e);qe("traceDeprecation")?console.trace(e):console.warn(e),r=!0}return t.apply(this,arguments)}};function qe(t){try{if(!n.localStorage)return!1}catch(t){return!1}var e=n.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}var He=hr,Ge=nr;function Je(t){var e=this;this.next=null,this.entry=null,this.finish=function(){!function(t,e,r){var n=t.entry;t.entry=null;for(;n;){var i=n.callback;e.pendingcb--,i(r),n=n.next}e.corkedRequestsFree?e.corkedRequestsFree.next=t:e.corkedRequestsFree=t}(e,t)}}var $e,Ve=!P.browser&&["v0.10","v0.9."].indexOf(P.version.slice(0,5))>-1?setImmediate:C.nextTick;nr.WritableState=rr;var Ze=Object.create(te);Ze.inherits=ee;var Ke,Xe={deprecate:Fe},Qe=Kt.Buffer,tr=n.Uint8Array||function(){};function er(){}function rr(t,e){t=t||{};var r=e instanceof($e=$e||He);this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.writableObjectMode);var n=t.highWaterMark,i=t.writableHighWaterMark,o=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:r&&(i||0===i)?i:o,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var a=!1===t.decodeStrings;this.decodeStrings=!a,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(t){!function(t,e){var r=t._writableState,n=r.sync,i=r.writecb;if(function(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}(r),e)!function(t,e,r,n,i){--e.pendingcb,r?(C.nextTick(i,n),C.nextTick(fr,t,e),t._writableState.errorEmitted=!0,t.emit("error",n)):(i(n),t._writableState.errorEmitted=!0,t.emit("error",n),fr(t,e))}(t,r,n,e,i);else{var o=sr(r);o||r.corked||r.bufferProcessing||!r.bufferedRequest||ar(t,r),n?Ve(or,t,r,o,i):or(t,r,o,i)}}(e,t)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new Je(this)}function nr(t){if($e=$e||He,!(Ke.call(nr,this)||this instanceof $e))return new nr(t);this._writableState=new rr(t,this),this.writable=!0,t&&("function"==typeof t.write&&(this._write=t.write),"function"==typeof t.writev&&(this._writev=t.writev),"function"==typeof t.destroy&&(this._destroy=t.destroy),"function"==typeof t.final&&(this._final=t.final)),Z.call(this)}function ir(t,e,r,n,i,o,a){e.writelen=n,e.writecb=a,e.writing=!0,e.sync=!0,r?t._writev(i,e.onwrite):t._write(i,o,e.onwrite),e.sync=!1}function or(t,e,r,n){r||function(t,e){0===e.length&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}(t,e),e.pendingcb--,n(),fr(t,e)}function ar(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writev&&r&&r.next){var n=e.bufferedRequestCount,i=new Array(n),o=e.corkedRequestsFree;o.entry=r;for(var a=0,s=!0;r;)i[a]=r,r.isBuf||(s=!1),r=r.next,a+=1;i.allBuffers=s,ir(t,e,!0,e.length,i,"",o.finish),e.pendingcb++,e.lastBufferedRequest=null,o.next?(e.corkedRequestsFree=o.next,o.next=null):e.corkedRequestsFree=new Je(e),e.bufferedRequestCount=0}else{for(;r;){var u=r.chunk,f=r.encoding,l=r.callback;if(ir(t,e,!1,e.objectMode?1:u.length,u,f,l),r=r.next,e.bufferedRequestCount--,e.writing)break}null===r&&(e.lastBufferedRequest=null)}e.bufferedRequest=r,e.bufferProcessing=!1}function sr(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!t.finished&&!t.writing}function ur(t,e){t._final((function(r){e.pendingcb--,r&&t.emit("error",r),e.prefinished=!0,t.emit("prefinish"),fr(t,e)}))}function fr(t,e){var r=sr(e);return r&&(!function(t,e){e.prefinished||e.finalCalled||("function"==typeof t._final?(e.pendingcb++,e.finalCalled=!0,C.nextTick(ur,t,e)):(e.prefinished=!0,t.emit("prefinish")))}(t,e),0===e.pendingcb&&(e.finished=!0,t.emit("finish"))),r}Ze.inherits(nr,Z),rr.prototype.getBuffer=function(){for(var t=this.bufferedRequest,e=[];t;)e.push(t),t=t.next;return e},function(){try{Object.defineProperty(rr.prototype,"buffer",{get:Xe.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(t){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(Ke=Function.prototype[Symbol.hasInstance],Object.defineProperty(nr,Symbol.hasInstance,{value:function(t){return!!Ke.call(this,t)||this===nr&&(t&&t._writableState instanceof rr)}})):Ke=function(t){return t instanceof this},nr.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},nr.prototype.write=function(t,e,r){var n=this._writableState,i=!1,o=!n.objectMode&&function(t){return Qe.isBuffer(t)||t instanceof tr}(t);return o&&!Qe.isBuffer(t)&&(t=function(t){return Qe.from(t)}(t)),"function"==typeof e&&(r=e,e=null),o?e="buffer":e||(e=n.defaultEncoding),"function"!=typeof r&&(r=er),n.ended?function(t,e){var r=new Error("write after end");t.emit("error",r),C.nextTick(e,r)}(this,r):(o||function(t,e,r,n){var i=!0,o=!1;return null===r?o=new TypeError("May not write null values to stream"):"string"==typeof r||void 0===r||e.objectMode||(o=new TypeError("Invalid non-string/buffer chunk")),o&&(t.emit("error",o),C.nextTick(n,o),i=!1),i}(this,n,t,r))&&(n.pendingcb++,i=function(t,e,r,n,i,o){if(!r){var a=function(t,e,r){t.objectMode||!1===t.decodeStrings||"string"!=typeof e||(e=Qe.from(e,r));return e}(e,n,i);n!==a&&(r=!0,i="buffer",n=a)}var s=e.objectMode?1:n.length;e.length+=s;var u=e.length<e.highWaterMark;u||(e.needDrain=!0);if(e.writing||e.corked){var f=e.lastBufferedRequest;e.lastBufferedRequest={chunk:n,encoding:i,isBuf:r,callback:o,next:null},f?f.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else ir(t,e,!1,s,n,i,o);return u}(this,n,o,t,e,r)),i},nr.prototype.cork=function(){this._writableState.corked++},nr.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,t.writing||t.corked||t.finished||t.bufferProcessing||!t.bufferedRequest||ar(this,t))},nr.prototype.setDefaultEncoding=function(t){if("string"==typeof t&&(t=t.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((t+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+t);return this._writableState.defaultEncoding=t,this},Object.defineProperty(nr.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),nr.prototype._write=function(t,e,r){r(new Error("_write() is not implemented"))},nr.prototype._writev=null,nr.prototype.end=function(t,e,r){var n=this._writableState;"function"==typeof t?(r=t,t=null,e=null):"function"==typeof e&&(r=e,e=null),null!=t&&this.write(t,e),n.corked&&(n.corked=1,this.uncork()),n.ending||n.finished||function(t,e,r){e.ending=!0,fr(t,e),r&&(e.finished?C.nextTick(r):t.once("finish",r));e.ended=!0,t.writable=!1}(this,n,r)},Object.defineProperty(nr.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(t){this._writableState&&(this._writableState.destroyed=t)}}),nr.prototype.destroy=We,nr.prototype._undestroy=ze,nr.prototype._destroy=function(t,e){this.end(),e(t)};var lr=Cr,cr=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e},hr=vr,dr=Object.create(te);dr.inherits=ee,dr.inherits(vr,lr);for(var pr=cr(Ge.prototype),gr=0;gr<pr.length;gr++){var yr=pr[gr];vr.prototype[yr]||(vr.prototype[yr]=Ge.prototype[yr])}function vr(t){if(!(this instanceof vr))return new vr(t);lr.call(this,t),Ge.call(this,t),t&&!1===t.readable&&(this.readable=!1),t&&!1===t.writable&&(this.writable=!1),this.allowHalfOpen=!0,t&&!1===t.allowHalfOpen&&(this.allowHalfOpen=!1),this.once("end",br)}function br(){this.allowHalfOpen||this._writableState.ended||C.nextTick(wr,this)}function wr(t){t.end()}Object.defineProperty(vr.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(vr.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(t){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=t,this._writableState.destroyed=t)}}),vr.prototype._destroy=function(t,e){this.push(null),this.end(),C.nextTick(e,t)};var mr=Kt.Buffer,_r=mr.isEncoding||function(t){switch((t=""+t)&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};var Er=Sr;function Sr(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(mr.isEncoding===_r||!_r(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=kr,this.end=Rr,e=4;break;case"utf8":this.fillLast=Tr,e=4;break;case"base64":this.text=Ar,this.end=Lr,e=3;break;default:return this.write=Or,void(this.end=jr)}this.lastNeed=0,this.lastTotal=0,this.lastChar=mr.allocUnsafe(e)}function xr(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function Tr(t){var e=this.lastTotal-this.lastNeed,r=function(t,e,r){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==r?r:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function kr(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function Rr(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function Ar(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function Lr(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function Or(t){return t.toString(this.encoding)}function jr(t){return t&&t.length?this.write(t):""}Sr.prototype.write=function(t){if(0===t.length)return"";var e,r;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""},Sr.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},Sr.prototype.text=function(t,e){var r=function(t,e,r){var n=e.length-1;if(n<r)return 0;var i=xr(e[n]);if(i>=0)return i>0&&(t.lastNeed=i-1),i;if(--n<r||-2===i)return 0;if((i=xr(e[n]))>=0)return i>0&&(t.lastNeed=i-2),i;if(--n<r||-2===i)return 0;if((i=xr(e[n]))>=0)return i>0&&(2===i?i=0:t.lastNeed=i-3),i;return 0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)},Sr.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length};var Mr,Pr={StringDecoder:Er},Cr=Fr;Fr.ReadableState=zr,V.EventEmitter;var Br=function(t,e){return t.listeners(e).length},Ur=Kt.Buffer,Nr=n.Uint8Array||function(){};var Dr=Object.create(te);Dr.inherits=ee;var Ir,Yr=void 0;Yr=De&&De.debuglog?De.debuglog("stream"):function(){},Dr.inherits(Fr,Z);var Wr=["error","close","destroy","pause","resume"];function zr(t,e){t=t||{};var r=e instanceof(Mr=Mr||He);this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.readableObjectMode);var n=t.highWaterMark,i=t.readableHighWaterMark,o=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:r&&(i||0===i)?i:o,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new Ie,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(Ir||(Ir=Pr.StringDecoder),this.decoder=new Ir(t.encoding),this.encoding=t.encoding)}function Fr(t){if(Mr=Mr||He,!(this instanceof Fr))return new Fr(t);this._readableState=new zr(t,this),this.readable=!0,t&&("function"==typeof t.read&&(this._read=t.read),"function"==typeof t.destroy&&(this._destroy=t.destroy)),Z.call(this)}function qr(t,e,r,n,i){var o,a=t._readableState;null===e?(a.reading=!1,function(t,e){if(e.ended)return;if(e.decoder){var r=e.decoder.end();r&&r.length&&(e.buffer.push(r),e.length+=e.objectMode?1:r.length)}e.ended=!0,$r(t)}(t,a)):(i||(o=function(t,e){var r;(function(t){return Ur.isBuffer(t)||t instanceof Nr})(e)||"string"==typeof e||void 0===e||t.objectMode||(r=new TypeError("Invalid non-string/buffer chunk"));return r}(a,e)),o?t.emit("error",o):a.objectMode||e&&e.length>0?("string"==typeof e||a.objectMode||Object.getPrototypeOf(e)===Ur.prototype||(e=function(t){return Ur.from(t)}(e)),n?a.endEmitted?t.emit("error",new Error("stream.unshift() after end event")):Hr(t,a,e,!0):a.ended?t.emit("error",new Error("stream.push() after EOF")):(a.reading=!1,a.decoder&&!r?(e=a.decoder.write(e),a.objectMode||0!==e.length?Hr(t,a,e,!1):Zr(t,a)):Hr(t,a,e,!1))):n||(a.reading=!1));return function(t){return!t.ended&&(t.needReadable||t.length<t.highWaterMark||0===t.length)}(a)}function Hr(t,e,r,n){e.flowing&&0===e.length&&!e.sync?(t.emit("data",r),t.read(0)):(e.length+=e.objectMode?1:r.length,n?e.buffer.unshift(r):e.buffer.push(r),e.needReadable&&$r(t)),Zr(t,e)}Object.defineProperty(Fr.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(t){this._readableState&&(this._readableState.destroyed=t)}}),Fr.prototype.destroy=We,Fr.prototype._undestroy=ze,Fr.prototype._destroy=function(t,e){this.push(null),e(t)},Fr.prototype.push=function(t,e){var r,n=this._readableState;return n.objectMode?r=!0:"string"==typeof t&&((e=e||n.defaultEncoding)!==n.encoding&&(t=Ur.from(t,e),e=""),r=!0),qr(this,t,e,!1,r)},Fr.prototype.unshift=function(t){return qr(this,t,null,!0,!1)},Fr.prototype.isPaused=function(){return!1===this._readableState.flowing},Fr.prototype.setEncoding=function(t){return Ir||(Ir=Pr.StringDecoder),this._readableState.decoder=new Ir(t),this._readableState.encoding=t,this};var Gr=8388608;function Jr(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=function(t){return t>=Gr?t=Gr:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}function $r(t){var e=t._readableState;e.needReadable=!1,e.emittedReadable||(Yr("emitReadable",e.flowing),e.emittedReadable=!0,e.sync?C.nextTick(Vr,t):Vr(t))}function Vr(t){Yr("emit readable"),t.emit("readable"),tn(t)}function Zr(t,e){e.readingMore||(e.readingMore=!0,C.nextTick(Kr,t,e))}function Kr(t,e){for(var r=e.length;!e.reading&&!e.flowing&&!e.ended&&e.length<e.highWaterMark&&(Yr("maybeReadMore read 0"),t.read(0),r!==e.length);)r=e.length;e.readingMore=!1}function Xr(t){Yr("readable nexttick read 0"),t.read(0)}function Qr(t,e){e.reading||(Yr("resume read 0"),t.read(0)),e.resumeScheduled=!1,e.awaitDrain=0,t.emit("resume"),tn(t),e.flowing&&!e.reading&&t.read(0)}function tn(t){var e=t._readableState;for(Yr("flow",e.flowing);e.flowing&&null!==t.read(););}function en(t,e){return 0===e.length?null:(e.objectMode?r=e.buffer.shift():!t||t>=e.length?(r=e.decoder?e.buffer.join(""):1===e.buffer.length?e.buffer.head.data:e.buffer.concat(e.length),e.buffer.clear()):r=function(t,e,r){var n;t<e.head.data.length?(n=e.head.data.slice(0,t),e.head.data=e.head.data.slice(t)):n=t===e.head.data.length?e.shift():r?function(t,e){var r=e.head,n=1,i=r.data;t-=i.length;for(;r=r.next;){var o=r.data,a=t>o.length?o.length:t;if(a===o.length?i+=o:i+=o.slice(0,t),0===(t-=a)){a===o.length?(++n,r.next?e.head=r.next:e.head=e.tail=null):(e.head=r,r.data=o.slice(a));break}++n}return e.length-=n,i}(t,e):function(t,e){var r=Ur.allocUnsafe(t),n=e.head,i=1;n.data.copy(r),t-=n.data.length;for(;n=n.next;){var o=n.data,a=t>o.length?o.length:t;if(o.copy(r,r.length-t,0,a),0===(t-=a)){a===o.length?(++i,n.next?e.head=n.next:e.head=e.tail=null):(e.head=n,n.data=o.slice(a));break}++i}return e.length-=i,r}(t,e);return n}(t,e.buffer,e.decoder),r);var r}function rn(t){var e=t._readableState;if(e.length>0)throw new Error('"endReadable()" called on non-empty stream');e.endEmitted||(e.ended=!0,C.nextTick(nn,e,t))}function nn(t,e){t.endEmitted||0!==t.length||(t.endEmitted=!0,e.readable=!1,e.emit("end"))}function on(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}Fr.prototype.read=function(t){Yr("read",t),t=parseInt(t,10);var e=this._readableState,r=t;if(0!==t&&(e.emittedReadable=!1),0===t&&e.needReadable&&(e.length>=e.highWaterMark||e.ended))return Yr("read: emitReadable",e.length,e.ended),0===e.length&&e.ended?rn(this):$r(this),null;if(0===(t=Jr(t,e))&&e.ended)return 0===e.length&&rn(this),null;var n,i=e.needReadable;return Yr("need readable",i),(0===e.length||e.length-t<e.highWaterMark)&&Yr("length less than watermark",i=!0),e.ended||e.reading?Yr("reading or ended",i=!1):i&&(Yr("do read"),e.reading=!0,e.sync=!0,0===e.length&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=Jr(r,e))),null===(n=t>0?en(t,e):null)?(e.needReadable=!0,t=0):e.length-=t,0===e.length&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&rn(this)),null!==n&&this.emit("data",n),n},Fr.prototype._read=function(t){this.emit("error",new Error("_read() is not implemented"))},Fr.prototype.pipe=function(t,e){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=t;break;case 1:n.pipes=[n.pipes,t];break;default:n.pipes.push(t)}n.pipesCount+=1,Yr("pipe count=%d opts=%j",n.pipesCount,e);var i=(!e||!1!==e.end)&&t!==P.stdout&&t!==P.stderr?a:p;function o(e,i){Yr("onunpipe"),e===r&&i&&!1===i.hasUnpiped&&(i.hasUnpiped=!0,Yr("cleanup"),t.removeListener("close",h),t.removeListener("finish",d),t.removeListener("drain",s),t.removeListener("error",c),t.removeListener("unpipe",o),r.removeListener("end",a),r.removeListener("end",p),r.removeListener("data",l),u=!0,!n.awaitDrain||t._writableState&&!t._writableState.needDrain||s())}function a(){Yr("onend"),t.end()}n.endEmitted?C.nextTick(i):r.once("end",i),t.on("unpipe",o);var s=function(t){return function(){var e=t._readableState;Yr("pipeOnDrain",e.awaitDrain),e.awaitDrain&&e.awaitDrain--,0===e.awaitDrain&&Br(t,"data")&&(e.flowing=!0,tn(t))}}(r);t.on("drain",s);var u=!1;var f=!1;function l(e){Yr("ondata"),f=!1,!1!==t.write(e)||f||((1===n.pipesCount&&n.pipes===t||n.pipesCount>1&&-1!==on(n.pipes,t))&&!u&&(Yr("false write response, pause",r._readableState.awaitDrain),r._readableState.awaitDrain++,f=!0),r.pause())}function c(e){Yr("onerror",e),p(),t.removeListener("error",c),0===Br(t,"error")&&t.emit("error",e)}function h(){t.removeListener("finish",d),p()}function d(){Yr("onfinish"),t.removeListener("close",h),p()}function p(){Yr("unpipe"),r.unpipe(t)}return r.on("data",l),function(t,e,r){if("function"==typeof t.prependListener)return t.prependListener(e,r);t._events&&t._events[e]?U(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]:t.on(e,r)}(t,"error",c),t.once("close",h),t.once("finish",d),t.emit("pipe",r),n.flowing||(Yr("pipe resume"),r.resume()),t},Fr.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(0===e.pipesCount)return this;if(1===e.pipesCount)return t&&t!==e.pipes||(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r)),this;if(!t){var n=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var o=0;o<i;o++)n[o].emit("unpipe",this,r);return this}var a=on(e.pipes,t);return-1===a||(e.pipes.splice(a,1),e.pipesCount-=1,1===e.pipesCount&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,r)),this},Fr.prototype.on=function(t,e){var r=Z.prototype.on.call(this,t,e);if("data"===t)!1!==this._readableState.flowing&&this.resume();else if("readable"===t){var n=this._readableState;n.endEmitted||n.readableListening||(n.readableListening=n.needReadable=!0,n.emittedReadable=!1,n.reading?n.length&&$r(this):C.nextTick(Xr,this))}return r},Fr.prototype.addListener=Fr.prototype.on,Fr.prototype.resume=function(){var t=this._readableState;return t.flowing||(Yr("resume"),t.flowing=!0,function(t,e){e.resumeScheduled||(e.resumeScheduled=!0,C.nextTick(Qr,t,e))}(this,t)),this},Fr.prototype.pause=function(){return Yr("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(Yr("pause"),this._readableState.flowing=!1,this.emit("pause")),this},Fr.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;for(var i in t.on("end",(function(){if(Yr("wrapped end"),r.decoder&&!r.ended){var t=r.decoder.end();t&&t.length&&e.push(t)}e.push(null)})),t.on("data",(function(i){(Yr("wrapped data"),r.decoder&&(i=r.decoder.write(i)),r.objectMode&&null==i)||(r.objectMode||i&&i.length)&&(e.push(i)||(n=!0,t.pause()))})),t)void 0===this[i]&&"function"==typeof t[i]&&(this[i]=function(e){return function(){return t[e].apply(t,arguments)}}(i));for(var o=0;o<Wr.length;o++)t.on(Wr[o],this.emit.bind(this,Wr[o]));return this._read=function(e){Yr("wrapped _read",e),n&&(n=!1,t.resume())},this},Object.defineProperty(Fr.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Fr._fromList=en;var an=fn,sn=Object.create(te);function un(t,e){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(!n)return this.emit("error",new Error("write callback called multiple times"));r.writechunk=null,r.writecb=null,null!=e&&this.push(e),n(t);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function fn(t){if(!(this instanceof fn))return new fn(t);He.call(this,t),this._transformState={afterTransform:un.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&("function"==typeof t.transform&&(this._transform=t.transform),"function"==typeof t.flush&&(this._flush=t.flush)),this.on("prefinish",ln)}function ln(){var t=this;"function"==typeof this._flush?this._flush((function(e,r){cn(t,e,r)})):cn(this,null,null)}function cn(t,e,r){if(e)return t.emit("error",e);if(null!=r&&t.push(r),t._writableState.length)throw new Error("Calling transform done when ws.length != 0");if(t._transformState.transforming)throw new Error("Calling transform done when still transforming");return t.push(null)}sn.inherits=ee,sn.inherits(fn,He),fn.prototype.push=function(t,e){return this._transformState.needTransform=!1,He.prototype.push.call(this,t,e)},fn.prototype._transform=function(t,e,r){throw new Error("_transform() is not implemented")},fn.prototype._write=function(t,e,r){var n=this._transformState;if(n.writecb=r,n.writechunk=t,n.writeencoding=e,!n.transforming){var i=this._readableState;(n.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}},fn.prototype._read=function(t){var e=this._transformState;null!==e.writechunk&&e.writecb&&!e.transforming?(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform)):e.needTransform=!0},fn.prototype._destroy=function(t,e){var r=this;He.prototype._destroy.call(this,t,(function(t){e(t),r.emit("close")}))};var hn=pn,dn=Object.create(te);function pn(t){if(!(this instanceof pn))return new pn(t);an.call(this,t)}dn.inherits=ee,dn.inherits(pn,an),pn.prototype._transform=function(t,e,r){r(null,t)};var gn=o((function(t,e){(e=t.exports=lr).Stream=e,e.Readable=e,e.Writable=Ge,e.Duplex=He,e.Transform=an,e.PassThrough=hn})).Readable,yn=bn;bn.ctor=wn,bn.obj=function(t,e){("function"==typeof t||Array.isArray(t))&&(e=t,t={});return(t=_n(t)).objectMode=!0,t.highWaterMark=16,bn(t,e)};var vn=wn();function bn(t,e){("object"!==r(t)||Array.isArray(t))&&(e=t,t={});var n,i=new vn(t);return i._from=Array.isArray(e)?(n=(n=e).slice(),function(t,e){var r=null,i=n.length?n.shift():null;i instanceof Error&&(r=i,i=null),e(r,i)}):e||mn,i}function wn(t,e){function r(e){if(!(this instanceof r))return new r(e);this._reading=!1,this._callback=function(t,e){if(n.destroyed)return;if(t)return n.destroy(t);if(null===e)return n.push(null);n._reading=!1,n.push(e)&&n._read(i)},this.destroyed=!1,gn.call(this,e||t);var n=this,i=this._readableState.highWaterMark}return"function"==typeof t&&(e=t,t={}),t=_n(t),ee(r,gn),r.prototype._from=e||mn,r.prototype._read=function(t){this._reading||this.destroyed||(this._reading=!0,this._from(t,this._callback))},r.prototype.destroy=function(t){if(!this.destroyed){this.destroyed=!0;var e=this;P.nextTick((function(){t&&e.emit("error",t),e.emit("close")}))}},r}function mn(){}function _n(t){return t=t||{}}var En,Sn=1,xn={},Tn=!1,kn=u.document;function Rn(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),r=0;r<e.length;r++)e[r]=arguments[r+1];var n={callback:t,args:e};return xn[Sn]=n,En(Sn),Sn++}function An(t){if(Tn)setTimeout(An,0,t);else{var e=xn[t];if(e){Tn=!0;try{!function(t){var e=t.callback,r=t.args;switch(r.length){case 0:e();break;case 1:e(r[0]);break;case 2:e(r[0],r[1]);break;case 3:e(r[0],r[1],r[2]);break;default:e.apply(void 0,r)}}(e)}finally{!function(t){delete xn[t]}(t),Tn=!1}}}}var Ln,On,jn,Mn,Pn=Object.getPrototypeOf&&Object.getPrototypeOf(u);function Cn(t){var e,r=Object.prototype.toString.call(t);if(e="[object Promise]"===r)return!0;if("[object Function]"!==r)return!1;try{e="function"!=typeof t.subscribe&&"function"==typeof t.then}catch(t){}return e}function Bn(t){var r,n,i;function o(e){((t=e)instanceof ArrayBuffer||ArrayBuffer.isView(t)&&!ct.isBuffer(t))&&(t=ct.from(t));var o=!(r=Cn(t)?t:null)&&t[Symbol.iterator]&&"string"!=typeof t&&!ct.isBuffer(t);n=o?t[Symbol.iterator]():null;var a=!r&&t[Symbol.asyncIterator];i=a?t[Symbol.asyncIterator]():null}return Array.isArray(t)&&(t=t.slice()),o(t),yn((function a(u,f){var l=this;if(r)e(s.mark((function t(){return s.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.t0=o,t.next=4,r;case 4:return t.t1=t.sent,t.next=7,(0,t.t0)(t.t1);case 7:a.call(l,u,f),t.next=13;break;case 10:t.prev=10,t.t2=t.catch(0),f(t.t2);case 13:case"end":return t.stop()}}),t,null,[[0,10]])})))();else if(n){var c=n.next();Rn(f,null,c.done?null:c.value)}else if(i)e(s.mark((function t(){var e;return s.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,i.next();case 3:e=t.sent,Rn(f,null,e.done?null:e.value),t.next=10;break;case 7:t.prev=7,t.t0=t.catch(0),Rn(f,t.t0);case 10:case"end":return t.stop()}}),t,null,[[0,7]])})))();else if(0!==t.length){var h=t.slice(0,u);t=t.slice(u),Rn(f,null,h)}else Rn(f,null,null)}))}return Pn=Pn&&Pn.setTimeout?Pn:u,"[object process]"==={}.toString.call(u.process)?En=function(t){P.nextTick((function(){An(t)}))}:!function(){if(u.postMessage&&!u.importScripts){var t=!0,e=u.onmessage;return u.onmessage=function(){t=!1},u.postMessage("","*"),u.onmessage=e,t}}()?u.MessageChannel?((On=new MessageChannel).port1.onmessage=function(t){An(t.data)},En=function(t){On.port2.postMessage(t)}):kn&&"onreadystatechange"in kn.createElement("script")?(Ln=kn.documentElement,En=function(t){var e=kn.createElement("script");e.onreadystatechange=function(){An(t),e.onreadystatechange=null,Ln.removeChild(e),e=null},Ln.appendChild(e)}):En=function(t){setTimeout(An,0,t)}:(jn="setImmediate$"+Math.random()+"$",Mn=function(t){t.source===u&&"string"==typeof t.data&&0===t.data.indexOf(jn)&&An(+t.data.slice(jn.length))},u.addEventListener?u.addEventListener("message",Mn,!1):u.attachEvent("onmessage",Mn),En=function(t){u.postMessage(jn+t,"*")}),Bn.object=function(t){var r,n,i;function o(e){r=Cn(t=e)?t:null,n=!r&&t[Symbol.iterator]?t[Symbol.iterator]():null,i=!r&&t[Symbol.asyncIterator]?t[Symbol.asyncIterator]():null}return Array.isArray(t)&&(t=t.slice()),o(t),yn.obj((function a(u,f){var l=this;if(r)e(s.mark((function t(){return s.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.t0=o,t.next=4,r;case 4:return t.t1=t.sent,t.next=7,(0,t.t0)(t.t1);case 7:a.call(l,u,f),t.next=13;break;case 10:t.prev=10,t.t2=t.catch(0),f(t.t2);case 13:case"end":return t.stop()}}),t,null,[[0,10]])})))();else if(n){var c=n.next();Rn(f,null,c.done?null:c.value)}else i?e(s.mark((function t(){var e;return s.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,i.next();case 3:e=t.sent,Rn(f,null,e.done?null:e.value),t.next=10;break;case 7:t.prev=7,t.t0=t.catch(0),Rn(f,t.t0);case 10:case"end":return t.stop()}}),t,null,[[0,7]])})))():(this.push(t),Rn(f,null,null))}))},Bn}));
|
|
7
7
|
//# sourceMappingURL=into-stream.umd.js.map
|