From e0108f930da53d6ac3e2867efce4d8304e2bab94 Mon Sep 17 00:00:00 2001 From: alexlamsl Date: Wed, 13 Sep 2017 01:06:41 +0800 Subject: [PATCH] Version 3.5.5 --- README.md | 16 ++++++++-------- dist/htmlminifier.js | 28 +++++++++++++--------------- dist/htmlminifier.min.js | 4 ++-- index.html | 2 +- package.json | 2 +- 5 files changed, 25 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 6ae0db3..a20fb77 100644 --- a/README.md +++ b/README.md @@ -23,17 +23,17 @@ How does HTMLMinifier compare to other solutions — [HTML Minifier from Will Pe | Site | Original size *(KB)* | HTMLMinifier | minimize | Will Peavy | htmlcompressor.com | | ---------------------------------------------------------------------------- |:--------------------:| ------------:| --------:| ----------:| ------------------:| | [Google](https://www.google.com/) | 45 | **42** | 45 | 47 | 45 | -| [HTMLMinifier](https://github.com/kangax/html-minifier) | 131 | **102** | 110 | 114 | 109 | -| [Amazon](https://www.amazon.co.uk/) | 204 | **171** | 195 | 199 | n/a | -| [New York Times](https://www.nytimes.com/) | 233 | **159** | 182 | 178 | 166 | -| [Stack Overflow](https://stackoverflow.com/) | 246 | **193** | 202 | 210 | 199 | +| [HTMLMinifier](https://github.com/kangax/html-minifier) | 133 | **104** | 112 | 116 | 111 | +| [Amazon](https://www.amazon.co.uk/) | 203 | **171** | 195 | 199 | n/a | +| [New York Times](https://www.nytimes.com/) | 233 | **158** | 182 | 178 | 166 | +| [Stack Overflow](https://stackoverflow.com/) | 239 | **186** | 195 | 203 | 192 | | [Bootstrap CSS](https://getbootstrap.com/docs/3.3/css/) | 272 | **260** | 269 | 229 | 269 | -| [Twitter](https://twitter.com/) | 291 | **216** | 257 | 280 | 257 | -| [BBC](https://www.bbc.co.uk/) | 311 | **256** | 302 | 310 | 294 | +| [BBC](https://www.bbc.co.uk/) | 279 | **229** | 271 | 278 | 262 | +| [Twitter](https://twitter.com/) | 298 | **223** | 263 | 287 | 263 | | [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States) | 469 | **437** | 453 | 468 | 453 | -| [NBC](https://www.nbc.com/) | 663 | **626** | 659 | 663 | n/a | +| [NBC](https://www.nbc.com/) | 665 | **627** | 661 | 664 | n/a | | [Eloquent Javascript](https://eloquentjavascript.net/1st_edition/print.html) | 870 | **815** | 840 | 864 | n/a | -| [ES6 table](https://kangax.github.io/compat-table/es6/) | 4227 | **3585** | 3998 | n/a | n/a | +| [ES6 table](https://kangax.github.io/compat-table/es6/) | 4228 | **3586** | 3999 | n/a | n/a | | [ES6 draft](https://tc39.github.io/ecma262/) | 5701 | **5087** | 5236 | n/a | n/a | ## Options Quick Reference diff --git a/dist/htmlminifier.js b/dist/htmlminifier.js index a117037..5506992 100644 --- a/dist/htmlminifier.js +++ b/dist/htmlminifier.js @@ -1,5 +1,5 @@ /*! - * HTMLMinifier v3.5.4 (http://kangax.github.io/html-minifier/) + * HTMLMinifier v3.5.5 (http://kangax.github.io/html-minifier/) * Copyright 2010-2017 Juriy "kangax" Zaytsev * Licensed under the MIT license */ @@ -23698,20 +23698,16 @@ var TokenChain = require('./tokenchain'); var UglifyJS = require('uglify-js'); var utils = require('./utils'); -var trimWhitespace = String.prototype.trim ? function(str) { +function trimWhitespace(str) { if (typeof str !== 'string') { return str; } - return str.trim(); -} : function(str) { - if (typeof str !== 'string') { - return str; - } - return str.replace(/^\s+/, '').replace(/\s+$/, ''); -}; + return str.replace(/^[ \n\r\t\f]+/, '').replace(/[ \n\r\t\f]+$/, ''); +} function collapseWhitespaceAll(str) { - return str && str.replace(/\s+/g, function(spaces) { + // Non-breaking space is specifically handled inside the replacer function here: + return str && str.replace(/[ \n\r\t\f\xA0]+/g, function(spaces) { return spaces === '\t' ? '\t' : spaces.replace(/(^|\xA0+)[^\xA0]+/g, '$1 '); }); } @@ -23720,17 +23716,18 @@ function collapseWhitespace(str, options, trimLeft, trimRight, collapseAll) { var lineBreakBefore = '', lineBreakAfter = ''; if (options.preserveLineBreaks) { - str = str.replace(/^\s*?[\n\r]\s*/, function() { + str = str.replace(/^[ \n\r\t\f]*?[\n\r][ \n\r\t\f]*/, function() { lineBreakBefore = '\n'; return ''; - }).replace(/\s*?[\n\r]\s*$/, function() { + }).replace(/[ \n\r\t\f]*?[\n\r][ \n\r\t\f]*$/, function() { lineBreakAfter = '\n'; return ''; }); } if (trimLeft) { - str = str.replace(/^\s+/, function(spaces) { + // Non-breaking space is specifically handled inside the replacer function here: + str = str.replace(/^[ \n\r\t\f\xA0]+/, function(spaces) { var conservative = !lineBreakBefore && options.conservativeCollapse; if (conservative && spaces === '\t') { return '\t'; @@ -23740,7 +23737,8 @@ function collapseWhitespace(str, options, trimLeft, trimRight, collapseAll) { } if (trimRight) { - str = str.replace(/\s+$/, function(spaces) { + // Non-breaking space is specifically handled inside the replacer function here: + str = str.replace(/[ \n\r\t\f\xA0]+$/, function(spaces) { var conservative = !lineBreakAfter && options.conservativeCollapse; if (conservative && spaces === '\t') { return '\t'; @@ -24943,7 +24941,7 @@ function minify(value, options, partialMarkup) { return collapseWhitespace(chunk, { preserveLineBreaks: options.preserveLineBreaks, conservativeCollapse: !options.trimCustomFragments - }, /^\s/.test(chunk), /\s$/.test(chunk)); + }, /^[ \n\r\t\f]/.test(chunk), /[ \n\r\t\f]$/.test(chunk)); } return chunk; }); diff --git a/dist/htmlminifier.min.js b/dist/htmlminifier.min.js index a90af76..b131cff 100644 --- a/dist/htmlminifier.min.js +++ b/dist/htmlminifier.min.js @@ -1,7 +1,7 @@ /*! - * HTMLMinifier v3.5.4 (http://kangax.github.io/html-minifier/) + * HTMLMinifier v3.5.5 (http://kangax.github.io/html-minifier/) * Copyright 2010-2017 Juriy "kangax" Zaytsev * Licensed under the MIT license */ -require=function e(t,n,r){function o(a,s){if(!n[a]){if(!t[a]){var u="function"==typeof require&&require;if(!s&&u)return u(a,!0);if(i)return i(a,!0);var l=new Error("Cannot find module '"+a+"'");throw l.code="MODULE_NOT_FOUND",l}var c=n[a]={exports:{}};t[a][0].call(c.exports,function(e){var n=t[a][1][e];return o(n||e)},c,c.exports,e,t,n,r)}return n[a].exports}for(var i="function"==typeof require&&require,a=0;a0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===e[t-2]?2:"="===e[t-1]?1:0}function o(e){return a[e>>18&63]+a[e>>12&63]+a[e>>6&63]+a[63&e]}function i(e,t,n){for(var r,i=[],a=t;a0?l-4:l;var c=0;for(t=0;t>16&255,a[c++]=o>>8&255,a[c++]=255&o;return 2===i?(o=s[e.charCodeAt(t)]<<2|s[e.charCodeAt(t+1)]>>4,a[c++]=255&o):1===i&&(o=s[e.charCodeAt(t)]<<10|s[e.charCodeAt(t+1)]<<4|s[e.charCodeAt(t+2)]>>2,a[c++]=o>>8&255,a[c++]=255&o),a},n.fromByteArray=function(e){for(var t,n=e.length,r=n%3,o="",s=[],u=0,l=n-r;ul?l:u+16383));return 1===r?(t=e[n-1],o+=a[t>>2],o+=a[t<<4&63],o+="=="):2===r&&(t=(e[n-2]<<8)+e[n-1],o+=a[t>>10],o+=a[t>>4&63],o+=a[t<<2&63],o+="="),s.push(o),s.join("")};for(var a=[],s=[],u="undefined"!=typeof Uint8Array?Uint8Array:Array,l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=0,f=l.length;cW)throw new RangeError("Invalid typed array length");var t=new Uint8Array(e);return t.__proto__=o.prototype,t}function o(e,t,n){if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return u(e)}return i(e,t,n)}function i(e,t,n){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return $(e)?f(e,t,n):"string"==typeof e?l(e,t):p(e)}function a(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function s(e,t,n){return a(e),e<=0?r(e):void 0!==t?"string"==typeof n?r(e).fill(t,n):r(e).fill(t):r(e)}function u(e){return a(e),r(e<0?0:0|h(e))}function l(e,t){if("string"==typeof t&&""!==t||(t="utf8"),!o.isEncoding(t))throw new TypeError('"encoding" must be a valid string encoding');var n=0|d(e,t),i=r(n),a=i.write(e,t);return a!==n&&(i=i.slice(0,a)),i}function c(e){for(var t=e.length<0?0:0|h(e.length),n=r(t),o=0;o=W)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+W.toString(16)+" bytes");return 0|e}function d(e,t){if(o.isBuffer(e))return e.length;if(H(e)||$(e))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return q(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return j(e).length;default:if(r)return q(e).length;t=(""+t).toLowerCase(),r=!0}}function m(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,t>>>=0,n<=t)return"";for(e||(e="utf8");;)switch(e){case"hex":return D(this,t,n);case"utf8":case"utf-8":return k(this,t,n);case"ascii":return S(this,t,n);case"latin1":case"binary":return B(this,t,n);case"base64":return C(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return T(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function g(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function v(e,t,n,r,i){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,K(n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof t&&(t=o.from(t,r)),o.isBuffer(t))return 0===t.length?-1:b(e,t,n,r,i);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):b(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function b(e,t,n,r,o){function i(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}var a=1,s=e.length,u=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,u/=2,n/=2}var l;if(o){var c=-1;for(l=n;ls&&(n=s-u),l=n;l>=0;l--){for(var f=!0,p=0;po&&(r=o):r=o;var i=t.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a239?4:i>223?3:i>191?2:1;if(o+s<=n){var u,l,c,f;switch(s){case 1:i<128&&(a=i);break;case 2:128==(192&(u=e[o+1]))&&(f=(31&i)<<6|63&u)>127&&(a=f);break;case 3:u=e[o+1],l=e[o+2],128==(192&u)&&128==(192&l)&&(f=(15&i)<<12|(63&u)<<6|63&l)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[o+1],l=e[o+2],c=e[o+3],128==(192&u)&&128==(192&l)&&128==(192&c)&&(f=(15&i)<<18|(63&u)<<12|(63&l)<<6|63&c)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,r.push(a>>>10&1023|55296),a=56320|1023&a),r.push(a),o+=s}return O(r)}function O(e){var t=e.length;if(t<=Q)return String.fromCharCode.apply(String,e);for(var n="",r=0;rr)&&(n=r);for(var o="",i=t;in)throw new RangeError("Trying to access beyond buffer length")}function F(e,t,n,r,i,a){if(!o.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}function L(e,t,n,r,o,i){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function M(e,t,n,r,o){return t=+t,n>>>=0,o||L(e,t,n,4,3.4028234663852886e38,-3.4028234663852886e38),Y.write(e,t,n,r,23,4),n+4}function U(e,t,n,r,o){return t=+t,n>>>=0,o||L(e,t,n,8,1.7976931348623157e308,-1.7976931348623157e308),Y.write(e,t,n,r,52,8),n+8}function N(e){if((e=e.trim().replace(Z,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}function P(e){return e<16?"0"+e.toString(16):e.toString(16)}function q(e,t){t=t||1/0;for(var n,r=e.length,o=null,i=[],a=0;a55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;i.push(n)}else if(n<2048){if((t-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function z(e){for(var t=[],n=0;n>8,o=n%256,i.push(o),i.push(r);return i}function j(e){return G.toByteArray(N(e))}function V(e,t,n,r){for(var o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}function $(e){return e instanceof ArrayBuffer||null!=e&&null!=e.constructor&&"ArrayBuffer"===e.constructor.name&&"number"==typeof e.byteLength}function H(e){return"function"==typeof ArrayBuffer.isView&&ArrayBuffer.isView(e)}function K(e){return e!==e}var G=e("base64-js"),Y=e("ieee754");n.Buffer=o,n.SlowBuffer=function(e){return+e!=e&&(e=0),o.alloc(+e)},n.INSPECT_MAX_BYTES=50;var W=2147483647;n.kMaxLength=W,o.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1);return e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===e.foo()}catch(e){return!1}}(),o.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),"undefined"!=typeof Symbol&&Symbol.species&&o[Symbol.species]===o&&Object.defineProperty(o,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),o.poolSize=8192,o.from=function(e,t,n){return i(e,t,n)},o.prototype.__proto__=Uint8Array.prototype,o.__proto__=Uint8Array,o.alloc=function(e,t,n){return s(e,t,n)},o.allocUnsafe=function(e){return u(e)},o.allocUnsafeSlow=function(e){return u(e)},o.isBuffer=function(e){return null!=e&&!0===e._isBuffer},o.compare=function(e,t){if(!o.isBuffer(e)||!o.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var n=e.length,r=t.length,i=0,a=Math.min(n,r);i0&&(e=this.toString("hex",0,t).match(/.{2}/g).join(" "),this.length>t&&(e+=" ... ")),""},o.prototype.compare=function(e,t,n,r,i){if(!o.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,r>>>=0,i>>>=0,this===e)return 0;for(var a=i-r,s=n-t,u=Math.min(a,s),l=this.slice(r,i),c=e.slice(t,n),f=0;f>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var o=this.length-t;if((void 0===n||n>o)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return y(this,e,t,n);case"utf8":case"utf-8":return _(this,e,t,n);case"ascii":return w(this,e,t,n);case"latin1":case"binary":return E(this,e,t,n);case"base64":return A(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,e,t,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Q=4096;o.prototype.slice=function(e,t){var n=this.length;e=~~e,t=void 0===t?n:~~t,e<0?(e+=n)<0&&(e=0):e>n&&(e=n),t<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||R(e,t,this.length);for(var r=this[e],o=1,i=0;++i>>=0,t>>>=0,n||R(e,t,this.length);for(var r=this[e+--t],o=1;t>0&&(o*=256);)r+=this[e+--t]*o;return r},o.prototype.readUInt8=function(e,t){return e>>>=0,t||R(e,1,this.length),this[e]},o.prototype.readUInt16LE=function(e,t){return e>>>=0,t||R(e,2,this.length),this[e]|this[e+1]<<8},o.prototype.readUInt16BE=function(e,t){return e>>>=0,t||R(e,2,this.length),this[e]<<8|this[e+1]},o.prototype.readUInt32LE=function(e,t){return e>>>=0,t||R(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},o.prototype.readUInt32BE=function(e,t){return e>>>=0,t||R(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},o.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||R(e,t,this.length);for(var r=this[e],o=1,i=0;++i=o&&(r-=Math.pow(2,8*t)),r},o.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||R(e,t,this.length);for(var r=t,o=1,i=this[e+--r];r>0&&(o*=256);)i+=this[e+--r]*o;return o*=128,i>=o&&(i-=Math.pow(2,8*t)),i},o.prototype.readInt8=function(e,t){return e>>>=0,t||R(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},o.prototype.readInt16LE=function(e,t){e>>>=0,t||R(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt16BE=function(e,t){e>>>=0,t||R(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt32LE=function(e,t){return e>>>=0,t||R(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},o.prototype.readInt32BE=function(e,t){return e>>>=0,t||R(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},o.prototype.readFloatLE=function(e,t){return e>>>=0,t||R(e,4,this.length),Y.read(this,e,!0,23,4)},o.prototype.readFloatBE=function(e,t){return e>>>=0,t||R(e,4,this.length),Y.read(this,e,!1,23,4)},o.prototype.readDoubleLE=function(e,t){return e>>>=0,t||R(e,8,this.length),Y.read(this,e,!0,52,8)},o.prototype.readDoubleBE=function(e,t){return e>>>=0,t||R(e,8,this.length),Y.read(this,e,!1,52,8)},o.prototype.writeUIntLE=function(e,t,n,r){e=+e,t>>>=0,n>>>=0,r||F(this,e,t,n,Math.pow(2,8*n)-1,0);var o=1,i=0;for(this[t]=255&e;++i>>=0,n>>>=0,r||F(this,e,t,n,Math.pow(2,8*n)-1,0);var o=n-1,i=1;for(this[t+o]=255&e;--o>=0&&(i*=256);)this[t+o]=e/i&255;return t+n},o.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,1,255,0),this[t]=255&e,t+1},o.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},o.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},o.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},o.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},o.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var o=Math.pow(2,8*n-1);F(this,e,t,n,o-1,-o)}var i=0,a=1,s=0;for(this[t]=255&e;++i>0)-s&255;return t+n},o.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var o=Math.pow(2,8*n-1);F(this,e,t,n,o-1,-o)}var i=n-1,a=1,s=0;for(this[t+i]=255&e;--i>=0&&(a*=256);)e<0&&0===s&&0!==this[t+i+1]&&(s=1),this[t+i]=(e/a>>0)-s&255;return t+n},o.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},o.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},o.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},o.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},o.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},o.prototype.writeFloatLE=function(e,t,n){return M(this,e,t,!0,n)},o.prototype.writeFloatBE=function(e,t,n){return M(this,e,t,!1,n)},o.prototype.writeDoubleLE=function(e,t,n){return U(this,e,t,!0,n)},o.prototype.writeDoubleBE=function(e,t,n){return U(this,e,t,!1,n)},o.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t=0;--o)e[o+t]=this[o+n];else if(i<1e3)for(o=0;o>>=0,n=void 0===n?this.length:n>>>0,e||(e=0);var a;if("number"==typeof e)for(a=t;a0?l.errors:null,t):t})})}function o(e){return e?function(e){return e()}:n.nextTick}function i(e,t){var n;return n=u(e,t),n=b.One in t.options.level?l(e,t):e,n=b.Two in t.options.level?c(e,t,!0):n}function a(e,t){return e.stats=s(e.styles,t),e.errors=t.errors,e.inlinedStylesheets=t.inlinedStylesheets,e.warnings=t.warnings,e}function s(e,t){var n=Date.now()-t.stats.startedAt;return delete t.stats.startedAt,t.stats.timeSpent=n,t.stats.efficiency=1-e.length/t.stats.originalSize,t.stats.minifiedSize=e.length,t.stats}var u=e("./optimizer/level-0/optimize"),l=e("./optimizer/level-1/optimize"),c=e("./optimizer/level-2/optimize"),f=e("./optimizer/validator"),p=e("./options/compatibility"),h=e("./options/fetch"),d=e("./options/format").formatFrom,m=e("./options/inline"),g=e("./options/inline-request"),v=e("./options/inline-timeout"),b=e("./options/optimization-level").OptimizationLevel,y=e("./options/optimization-level").optimizationLevelFrom,_=e("./options/rebase"),w=e("./options/rebase-to"),E=e("./reader/input-source-map-tracker"),A=e("./reader/read-sources"),x=e("./writer/simple"),C=e("./writer/source-maps");(t.exports=function(e){e=e||{},this.options={compatibility:p(e.compatibility),fetch:h(e.fetch),format:d(e.format),inline:m(e.inline),inlineRequest:g(e.inlineRequest),inlineTimeout:v(e.inlineTimeout),level:y(e.level),rebase:_(e.rebase),rebaseTo:w(e.rebaseTo),returnPromise:!!e.returnPromise,sourceMap:!!e.sourceMap,sourceMapInlineSources:!!e.sourceMapInlineSources}}).prototype.minify=function(e,t,n){var o=this.options;return o.returnPromise?new Promise(function(n,i){r(e,o,t,function(e,t){return e?i(e):n(t)})}):r(e,o,t,n)}}).call(this,e("_process"))},{"./optimizer/level-0/optimize":9,"./optimizer/level-1/optimize":10,"./optimizer/level-2/optimize":29,"./optimizer/validator":57,"./options/compatibility":59,"./options/fetch":60,"./options/format":61,"./options/inline":64,"./options/inline-request":62,"./options/inline-timeout":63,"./options/optimization-level":65,"./options/rebase":67,"./options/rebase-to":66,"./reader/input-source-map-tracker":71,"./reader/read-sources":77,"./writer/simple":99,"./writer/source-maps":100,_process:113}],8:[function(e,t,n){var r={ASTERISK:"asterisk",BANG:"bang",BACKSLASH:"backslash",UNDERSCORE:"underscore"};t.exports=r},{}],9:[function(e,t,n){t.exports=function(e){return e}},{}],10:[function(e,t,n){function r(e){return e&&"-"==e[1][0]&&parseFloat(e[1])<0}function o(e){return oe.test(e)}function i(e){return ae.test(e)}function a(e){return e.replace(ae,"url(").replace(/\\?\n|\\?\r\n/g,"")}function s(e){var t=e.value;1==t.length&&"none"==t[0][1]&&(t[0][1]="0 0"),1==t.length&&"transparent"==t[0][1]&&(t[0][1]="0 0")}function u(e){var t,n=e.value;3==n.length&&"/"==n[1][1]&&n[0][1]==n[2][1]?t=1:5==n.length&&"/"==n[2][1]&&n[0][1]==n[3][1]&&n[1][1]==n[4][1]?t=2:7==n.length&&"/"==n[3][1]&&n[0][1]==n[4][1]&&n[1][1]==n[5][1]&&n[2][1]==n[6][1]?t=3:9==n.length&&"/"==n[4][1]&&n[0][1]==n[5][1]&&n[1][1]==n[6][1]&&n[2][1]==n[7][1]&&n[3][1]==n[8][1]&&(t=4),t&&(e.value.splice(t),e.dirty=!0)}function l(e,t,n){return-1===t.indexOf("#")&&-1==t.indexOf("rgb")&&-1==t.indexOf("hsl")?F(t):(t=t.replace(/rgb\((\-?\d+),(\-?\d+),(\-?\d+)\)/g,function(e,t,n,r){return M(t,n,r)}).replace(/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/g,function(e,t,n,r){return L(t,n,r)}).replace(/(^|[^='"])#([0-9a-f]{6})/gi,function(e,t,n,r,o){var i=o[r+e.length];return i&&te.test(i)?e:n[0]==n[1]&&n[2]==n[3]&&n[4]==n[5]?(t+"#"+n[0]+n[2]+n[4]).toLowerCase():(t+"#"+n).toLowerCase()}).replace(/(^|[^='"])#([0-9a-f]{3})/gi,function(e,t,n){return t+"#"+n.toLowerCase()}).replace(/(rgb|rgba|hsl|hsla)\(([^\)]+)\)/g,function(e,t,n){var r=n.split(",");return"hsl"==t&&3==r.length||"hsla"==t&&4==r.length||"rgb"==t&&3==r.length&&n.indexOf("%")>0||"rgba"==t&&4==r.length&&n.indexOf("%")>0?(-1==r[1].indexOf("%")&&(r[1]+="%"),-1==r[2].indexOf("%")&&(r[2]+="%"),t+"("+r.join(",")+")"):e}),n.colors.opacity&&-1==e.indexOf("background")&&(t=t.replace(/(?:rgba|hsla)\(0,0%?,0%?,0\)/g,function(e){return Y(t,",").pop().indexOf("gradient(")>-1?e:"transparent"})),F(t))}function c(e){1==e.value.length&&(e.value[0][1]=e.value[0][1].replace(/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\W)/,function(e,t,n){return t.toLowerCase()+n})),e.value[0][1]=e.value[0][1].replace(/,(\S)/g,", $1").replace(/ ?= ?/g,"=")}function f(e,t){var n=e.value[t][1];"normal"==n?n="400":"bold"==n&&(n="700"),e.value[t][1]=n}function p(e){var t,n=e.value;4==n.length&&"0"===n[0][1]&&"0"===n[1][1]&&"0"===n[2][1]&&"0"===n[3][1]&&(t=e.name.indexOf("box-shadow")>-1?2:1),t&&(e.value.splice(t),e.dirty=!0)}function h(e){var t=e.value;1==t.length&&"none"==t[0][1]&&(t[0][1]="0")}function d(e,t,n){return X.test(t)?t.replace(X,function(e,t){var r,o=parseInt(t);return 0===o?e:(n.properties.shorterLengthUnits&&n.units.pt&&3*o%4==0&&(r=3*o/4+"pt"),n.properties.shorterLengthUnits&&n.units.pc&&o%16==0&&(r=o/16+"pc"),n.properties.shorterLengthUnits&&n.units.in&&o%96==0&&(r=o/96+"in"),r&&(r=e.substring(0,e.indexOf(t))+r),r&&r.length0&&("height"==e||"max-height"==e||"width"==e||"max-width"==e)?t:t.replace(n,"$10$2").replace(n,"$10$2")}function b(e,t){return e.indexOf("filter")>-1||-1==t.indexOf(" ")||0===t.indexOf("expression")?t:t.indexOf(K.SINGLE_QUOTE)>-1||t.indexOf(K.DOUBLE_QUOTE)>-1?t:((t=t.replace(/\s+/g," ")).indexOf("calc")>-1&&(t=t.replace(/\) ?\/ ?/g,")/ ")),t.replace(/(\(;?)\s+/g,"$1").replace(/\s+(;?\))/g,"$1").replace(/, /g,","))}function y(e,t){return-1==t.indexOf("0deg")?t:t.replace(/\(0deg\)/g,"(0)")}function _(e,t){return-1==t.indexOf("0")?t:(t.indexOf("-")>-1&&(t=t.replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2").replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2")),t.replace(/(^|\s)0+([1-9])/g,"$1$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/\.([1-9]*)0+(\D|$)/g,function(e,t,n){return(t.length>0?".":"")+t+n}).replace(/(^|\D)0\.(\d)/g,"$1.$2"))}function w(e,t){return"content"==e||e.indexOf("font-feature-settings")>-1||e.indexOf("grid-")>-1?t:ie.test(t)?t.substring(1,t.length-1):t}function E(e){return!/^url\(['"].+['"]\)$/.test(e)||/^url\(['"].*[\*\s\(\)'"].*['"]\)$/.test(e)||/^url\(['"]data:[^;]+;charset/.test(e)?e:e.replace(/["']/g,"")}function A(e,t,n){var r=n(e,t);return void 0===r?t:!1===r?W:r}function x(e,t){var n,k,O,S,B,D,R=t.options,F=R.level[$.One],L=V(e,!0);e:for(var M=0,U=L.length;M0&&F.optimizeBorderRadius?u(n):"filter"==k&&F.optimizeFilter&&R.compatibility.properties.ieFilters?c(n):"font-weight"==k&&F.optimizeFontWeight?f(n,0):"outline"==k&&F.optimizeOutline&&h(n)}j(L),I(L),C(e,R)}function C(e,t){var n,r;for(r=0;r0&&(r.enabled=!0,r.decimalPointMatcher=new RegExp("(\\d)\\.($|"+o.join("|")+")($|W)","g"),r.zeroMatcher=new RegExp("(\\d*)(\\.\\d+)("+o.join("|")+")","g")),r}function D(e){return re.test(e[1])}function T(e){var t;return("filter"==e.name||"-ms-filter"==e.name)&&((t=e.value[0][1]).indexOf("progid")>-1||0===t.indexOf("alpha")||0===t.indexOf("chroma"))}function R(e,t){var n=t.options,r=n.level[$.One],o=n.compatibility.selectors.ie7Hack,i=n.compatibility.selectors.adjacentSpace,a=n.compatibility.properties.spaceAfterClosingBrace,s=n.format,u=!1,l=!1;n.unitsRegexp=n.unitsRegexp||S(n),n.precision=n.precision||B(r.roundingPrecision),n.commentsKept=n.commentsKept||0;for(var c=0,f=e.length;c1?U(p[1],r.selectorsSortingMethod):p[1],x(p[2],t),l=!0}(p[0]==H.COMMENT&&0===p[1].length||r.removeEmpty&&(0===p[1].length||p[2]&&0===p[2].length))&&(e.splice(c,1),c--,f--)}return r.cleanupCharsets&&u&&O(e),e}var F=e("./shorten-hex"),L=e("./shorten-hsl"),M=e("./shorten-rgb"),U=e("./sort-selectors"),N=e("./tidy-rules"),P=e("./tidy-block"),q=e("./tidy-at-rule"),z=e("../hack"),I=e("../remove-unused"),j=e("../restore-from-optimizing"),V=e("../wrap-for-optimizing").all,$=e("../../options/optimization-level").OptimizationLevel,H=e("../../tokenizer/token"),K=e("../../tokenizer/marker"),G=e("../../utils/format-position"),Y=e("../../utils/split"),W="ignore-property",Q="@charset",Z=new RegExp("^"+Q,"i"),J=e("../../options/rounding-precision").DEFAULT,X=/(?:^|\s|\()(-?\d+)px/,ee=/^(\-?[\d\.]+)(m?s)$/,te=/[0-9a-f]/i,ne=/^(?:\-chrome\-|\-[\w\-]+\w|\w[\w\-]+\w|\-\-\S+)$/,re=/^@import/i,oe=/^('.*'|".*")$/,ie=/^['"][a-zA-Z][a-zA-Z\d\-_]+['"]$/,ae=/^url\(/i,se=/^--\S+$/;t.exports=R},{"../../options/optimization-level":65,"../../options/rounding-precision":68,"../../tokenizer/marker":83,"../../tokenizer/token":84,"../../utils/format-position":87,"../../utils/split":96,"../hack":8,"../remove-unused":55,"../restore-from-optimizing":56,"../wrap-for-optimizing":58,"./shorten-hex":11,"./shorten-hsl":12,"./shorten-rgb":13,"./sort-selectors":14,"./tidy-at-rule":15,"./tidy-block":16,"./tidy-rules":17}],11:[function(e,t,n){function r(e,t,n,r){return t+a[n.toLowerCase()]+r}function o(e,t,n){return s[t.toLowerCase()]+n}var i={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#0ff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000",blanchedalmond:"#ffebcd",blue:"#00f",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#0ff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#f0f",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#0f0",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#f00",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#fff",whitesmoke:"#f5f5f5",yellow:"#ff0",yellowgreen:"#9acd32"},a={},s={};for(var u in i){var l=i[u];u.length-1,n=e.replace(c,r);return n!=e&&(n=n.replace(c,r)),t?n.replace(f,o):n}},{}],12:[function(e,t,n){function r(e,t,n){var r,i,a;if((e%=360)<0&&(e+=360),e=~~e/360,t<0?t=0:t>100&&(t=100),t=~~t/100,n<0?n=0:n>100&&(n=100),n=~~n/100,0===t)r=i=a=n;else{var s=n<.5?n*(1+t):n+t-n*t,u=2*n-s;r=o(u,s,e+1/3),i=o(u,s,e),a=o(u,s,e-1/3)}return[~~(255*r),~~(255*i),~~(255*a)]}function o(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}t.exports=function(e,t,n){var o=r(e,t,n),i=o[0].toString(16),a=o[1].toString(16),s=o[2].toString(16);return"#"+(1==i.length?"0":"")+i+(1==a.length?"0":"")+a+(1==s.length?"0":"")+s}},{}],13:[function(e,t,n){t.exports=function(e,t,n){return"#"+("00000"+(Math.max(0,Math.min(parseInt(e),255))<<16|Math.max(0,Math.min(parseInt(t),255))<<8|Math.max(0,Math.min(parseInt(n),255))).toString(16)).slice(-6)}},{}],14:[function(e,t,n){function r(e,t){return i(e[1],t[1])}function o(e,t){return e[1]>t[1]?1:-1}var i=e("../../utils/natural-compare");t.exports=function(e,t){switch(t){case"natural":return e.sort(r);case"standard":return e.sort(o);case"none":case!1:return e}}},{"../../utils/natural-compare":94}],15:[function(e,t,n){t.exports=function(e){return e.replace(/\s+/g," ").replace(/url\(\s+/g,"url(").replace(/\s+\)/g,")").trim()}},{}],16:[function(e,t,n){var r=/^@media\W/;t.exports=function(e,t){var n,o;for(o=e.length-1;o>=0;o--)n=!t&&r.test(e[o][1]),e[o][1]=e[o][1].replace(/\n|\r\n/g," ").replace(/\s+/g," ").replace(/(,|:|\() /g,"$1").replace(/ \)/g,")").replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/,"$1").replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/,"$1").replace(n?/\) /g:null,")");return e}},{}],17:[function(e,t,n){function r(e){var t,n,r,o,i=!1,a=!1;for(r=0,o=e.length;r0)&&!f||b&&x&&!f||(o||r)&&(d||E>0)&&f||(m&&x&&!k?(w.pop(),w.push(n)):m&&!x&&k?(w.push(s.SPACE),w.push(n)):b?w.push(s.SPACE):w.push(n))}else w.push(n),h=!0;else w.push(n),p=!0;else w.push(n),E--;else w.push(n),E++;else w.push(n),d=!1;else w.push(n),d=!0;u=i,i=n==s.BACK_SLASH,A=m,x=b}return C?w.join("").replace(c,"$1 $2]"):w.join("")}function i(e){return-1==e.indexOf("'")&&-1==e.indexOf('"')?e:e.replace(d,"=$1 $2").replace(m,"=$1$2").replace(f,"=$1 $2").replace(p,"=$1$2")}var a=e("../../options/format").Spaces,s=e("../../tokenizer/marker"),u=e("../../utils/format-position"),l=/[\s"'][iI]\s*\]/,c=/([\d\w])([iI])\]/g,f=/="([a-zA-Z][a-zA-Z\d\-_]+)"([iI])/g,p=/="([a-zA-Z][a-zA-Z\d\-_]+)"(\s|\])/g,h=/^(?:(?:)\s*)+/,d=/='([a-zA-Z][a-zA-Z\d\-_]+)'([iI])/g,m=/='([a-zA-Z][a-zA-Z\d\-_]+)'(\s|\])/g,g=/[>\+~]/,v=/\s/,b="*+html ",y="*:first-child+html ",_="<";t.exports=function(e,t,n,a,s){for(var l=[],c=[],f=0,p=e.length;f0&&(m=m.replace(/\+nav(\S|$)/,"+ nav$1")),t&&m.indexOf(b)>-1||t&&m.indexOf(y)>-1||(m.indexOf("*")>-1&&(m=m.replace(/\*([:#\.\[])/g,"$1").replace(/^(\:first\-child)?\+html/,"*$1+html")),c.indexOf(m)>-1||(d[1]=m,c.push(m),l.push(d))))}return 1==l.length&&0===l[0][1].length&&(s.push("Empty selector '"+l[0][1]+"' at "+u(l[0][2][0])+". Ignoring."),l=[]),l}},{"../../options/format":61,"../../tokenizer/marker":83,"../../utils/format-position":87}],18:[function(e,t,n){function r(e){var t,n;for(t=0,n=e.length;t=0;i--){var a=f([p.PROPERTY,[p.PROPERTY_NAME,n[i]]]);a.value=[o[i]],r.unshift(a)}return r}function l(e,t,n){for(var r,u,l,c=t[e.name],f=[a(c.components[0],e,t),a(c.components[1],e,t),a(c.components[2],e,t)],p=0;p<3;p++){var h=f[p];h.name.indexOf("color")>0?r=h:h.name.indexOf("style")>0?u=h:l=h}if(1==e.value.length&&"inherit"==e.value[0][1]||3==e.value.length&&"inherit"==e.value[0][1]&&"inherit"==e.value[1][1]&&"inherit"==e.value[2][1])return r.value=u.value=l.value=[e.value[0]],f;var d,m,g=e.value.slice(0);return g.length>0&&(d=(m=g.filter(s(n))).length>1&&("none"==m[0][1]||"auto"==m[0][1])?m[1]:m[0])&&(l.value=[d],g.splice(g.indexOf(d),1)),g.length>0&&(d=g.filter(i(n))[0])&&(u.value=[d],g.splice(g.indexOf(d),1)),g.length>0&&(d=g.filter(o(n))[0])&&(r.value=[d],g.splice(g.indexOf(d),1)),f}var c=e("./invalid-property-error"),f=e("../wrap-for-optimizing").single,p=e("../../tokenizer/token"),h=e("../../tokenizer/marker"),d=e("../../utils/format-position");t.exports={animation:function(e,t,n){var o,i,s,u=a(e.name+"-duration",e,t),l=a(e.name+"-timing-function",e,t),f=a(e.name+"-delay",e,t),p=a(e.name+"-iteration-count",e,t),h=a(e.name+"-direction",e,t),m=a(e.name+"-fill-mode",e,t),g=a(e.name+"-play-state",e,t),v=a(e.name+"-name",e,t),b=[u,l,f,p,h,m,g,v],y=e.value,_=!1,w=!1,E=!1,A=!1,x=!1,C=!1,k=!1,O=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return u.value=l.value=f.value=p.value=h.value=m.value=g.value=v.value=e.value,b;if(y.length>1&&r(y))throw new c("Invalid animation values at "+d(y[0][2][0])+". Ignoring.");for(i=0,s=y.length;i=0;E--){var A=g[E];if(n.isBackgroundAttachmentKeyword(A[1]))u.value=[A],w=!0;else if(n.isBackgroundClipKeyword(A[1])||n.isBackgroundOriginKeyword(A[1]))b?(l.value=[A],y=!0):(f.value=[A],b=!0),w=!0;else if(n.isBackgroundRepeatKeyword(A[1]))_?s.value.unshift(A):(s.value=[A],_=!0),w=!0;else if(n.isBackgroundPositionKeyword(A[1])||n.isBackgroundSizeKeyword(A[1])||n.isUnit(A[1])||n.isDynamicUnit(A[1])){if(E>0){var x=g[E-1];x[1]==h.FORWARD_SLASH?i.value=[A]:E>1&&g[E-2][1]==h.FORWARD_SLASH?(i.value=[x,A],E-=2):(v||(o.value=[]),o.value.unshift(A),v=!0)}else v||(o.value=[]),o.value.unshift(A),v=!0;w=!0}else p.value[0][1]!=t[p.name].defaultValue&&"none"!=p.value[0][1]||!n.isColor(A[1])&&!n.isPrefixed(A[1])?(n.isUrl(A[1])||n.isFunction(A[1]))&&(r.value=[A],w=!0):(p.value=[A],w=!0)}if(b&&!y&&(l.value=f.value.slice(0)),!w)throw new c("Invalid background value at "+d(g[0][2][0])+". Ignoring.");return m},border:l,borderRadius:function(e,t){for(var n=e.value,r=-1,o=0,i=n.length;o-1?n.slice(0,r):n.slice(0),s.components=u(s,t);var l=a(e.name,e,t);l.value=r>-1?n.slice(r+1):n.slice(0),l.components=u(l,t);for(var f=0;f<4;f++)s.components[f].multiplex=!0,s.components[f].value=s.components[f].value.concat(l.components[f].value);return s.components},font:function(e,t,n){var o,i,s,u,l=a("font-style",e,t),f=a("font-variant",e,t),p=a("font-weight",e,t),m=a("font-stretch",e,t),g=a("font-size",e,t),v=a("line-height",e,t),b=a("font-family",e,t),y=[l,f,p,m,g,v,b],_=e.value,w=0,E=!1,A=!1,x=!1,C=!1,k=!1,O=!1;if(!_[w])throw new c("Missing font values at "+d(e.all[e.position][1][2][0])+". Ignoring.");if(1==_.length&&"inherit"==_[0][1])return l.value=f.value=p.value=m.value=g.value=v.value=b.value=_,y;if(1==_.length&&(n.isFontKeyword(_[0][1])||n.isGlobal(_[0][1])||n.isPrefixed(_[0][1])))return _[0][1]=h.INTERNAL+_[0][1],l.value=f.value=p.value=m.value=g.value=v.value=b.value=_,y;if(_.length>1&&r(_))throw new c("Invalid font values at "+d(_[0][2][0])+". Ignoring.");for(;w<4;){if(o=n.isFontStretchKeyword(_[w][1])||n.isGlobal(_[w][1]),i=n.isFontStyleKeyword(_[w][1])||n.isGlobal(_[w][1]),s=n.isFontVariantKeyword(_[w][1])||n.isGlobal(_[w][1]),u=n.isFontWeightKeyword(_[w][1])||n.isGlobal(_[w][1]),i&&!A)l.value=[_[w]],A=!0;else if(s&&!x)f.value=[_[w]],x=!0;else if(u&&!C)p.value=[_[w]],C=!0;else{if(!o||E){if(i&&A||s&&x||u&&C||o&&E)throw new c("Invalid font style / variant / weight / stretch value at "+d(_[0][2][0])+". Ignoring.");break}m.value=[_[w]],E=!0}w++}if(!(n.isFontSizeKeyword(_[w][1])||n.isUnit(_[w][1])&&!n.isDynamicUnit(_[w][1])))throw new c("Missing font size at "+d(_[0][2][0])+". Ignoring.");if(g.value=[_[w]],k=!0,w++,!_[w])throw new c("Missing font family at "+d(_[0][2][0])+". Ignoring.");for(k&&_[w]&&_[w][1]==h.FORWARD_SLASH&&_[w+1]&&(n.isLineHeightKeyword(_[w+1][1])||n.isUnit(_[w+1][1])||n.isNumber(_[w+1][1]))&&(v.value=[_[w+1]],w++,w++),b.value=[];_[w];)_[w][1]==h.COMMA?O=!1:(O?b.value[b.value.length-1][1]+=h.SPACE+_[w][1]:b.value.push(_[w]),O=!0),w++;if(0===b.value.length)throw new c("Missing font family at "+d(_[0][2][0])+". Ignoring.");return y},fourValues:u,listStyle:function(e,t,n){var r=a("list-style-type",e,t),o=a("list-style-position",e,t),i=a("list-style-image",e,t),s=[r,o,i];if(1==e.value.length&&"inherit"==e.value[0][1])return r.value=o.value=i.value=[e.value[0]],s;var u=e.value.slice(0),l=u.length,c=0;for(c=0,l=u.length;c0&&(n.isListStyleTypeKeyword(u[0][1])||n.isIdentifier(u[0][1]))&&(r.value=[u[0]]),s},multiplex:function(e){return function(t,n,r){var o,i,s,u,l=[],c=t.value;for(o=0,s=c.length;o=0;n--){var o=r(e.components[n]);o.value=e.components[n].value.slice(0),t.components.unshift(o)}return t.dirty=!0,t.value=e.value.slice(0),t},shallow:r}},{"../../tokenizer/token":84,"../wrap-for-optimizing":58}],21:[function(e,t,n){var r=e("./break-up"),o=e("./can-override"),i=e("./restore"),a=e("../../utils/override"),s={animation:{canOverride:o.generic.components([o.generic.time,o.property.animationTimingFunction,o.generic.time,o.property.animationIterationCount,o.property.animationDirection,o.property.animationFillMode,o.property.animationPlayState,o.property.animationName]),components:["animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state","animation-name"],breakUp:r.multiplex(r.animation),defaultValue:"none",restore:i.multiplex(i.withoutDefaults),shorthand:!0,vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-delay":{canOverride:o.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-direction":{canOverride:o.property.animationDirection,componentOf:["animation"],defaultValue:"normal",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-duration":{canOverride:o.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-fill-mode":{canOverride:o.property.animationFillMode,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-iteration-count":{canOverride:o.property.animationIterationCount,componentOf:["animation"],defaultValue:"1",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-name":{canOverride:o.property.animationName,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-play-state":{canOverride:o.property.animationPlayState,componentOf:["animation"],defaultValue:"running",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-timing-function":{canOverride:o.property.animationTimingFunction,componentOf:["animation"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},background:{canOverride:o.generic.components([o.generic.image,o.property.backgroundPosition,o.property.backgroundSize,o.property.backgroundRepeat,o.property.backgroundAttachment,o.property.backgroundOrigin,o.property.backgroundClip,o.generic.color]),components:["background-image","background-position","background-size","background-repeat","background-attachment","background-origin","background-clip","background-color"],breakUp:r.multiplex(r.background),defaultValue:"0 0",restore:i.multiplex(i.background),shortestValue:"0",shorthand:!0},"background-attachment":{canOverride:o.property.backgroundAttachment,componentOf:["background"],defaultValue:"scroll",intoMultiplexMode:"real"},"background-clip":{canOverride:o.property.backgroundClip,componentOf:["background"],defaultValue:"border-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-color":{canOverride:o.generic.color,componentOf:["background"],defaultValue:"transparent",intoMultiplexMode:"real",multiplexLastOnly:!0,nonMergeableValue:"none",shortestValue:"red"},"background-image":{canOverride:o.generic.image,componentOf:["background"],defaultValue:"none",intoMultiplexMode:"default"},"background-origin":{canOverride:o.property.backgroundOrigin,componentOf:["background"],defaultValue:"padding-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-position":{canOverride:o.property.backgroundPosition,componentOf:["background"],defaultValue:["0","0"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0"},"background-repeat":{canOverride:o.property.backgroundRepeat,componentOf:["background"],defaultValue:["repeat"],doubleValues:!0,intoMultiplexMode:"real"},"background-size":{canOverride:o.property.backgroundSize,componentOf:["background"],defaultValue:["auto"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0 0"},bottom:{canOverride:o.property.bottom,defaultValue:"auto"},border:{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-width","border-style","border-color"],defaultValue:"none",overridesShorthands:["border-bottom","border-left","border-right","border-top"],restore:i.withoutDefaults,shorthand:!0,shorthandComponents:!0},"border-bottom":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-bottom-width","border-bottom-style","border-bottom-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-bottom-color":{canOverride:o.generic.color,componentOf:["border-bottom","border-color"],defaultValue:"none"},"border-bottom-left-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-right-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-style":{canOverride:o.property.borderStyle,componentOf:["border-bottom","border-style"],defaultValue:"none"},"border-bottom-width":{canOverride:o.generic.unit,componentOf:["border-bottom","border-width"],defaultValue:"medium",oppositeTo:"border-top-width",shortestValue:"0"},"border-collapse":{canOverride:o.property.borderCollapse,defaultValue:"separate"},"border-color":{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.color,o.generic.color,o.generic.color,o.generic.color]),componentOf:["border"],components:["border-top-color","border-right-color","border-bottom-color","border-left-color"],defaultValue:"none",restore:i.fourValues,shortestValue:"red",shorthand:!0},"border-left":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-left-width","border-left-style","border-left-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-left-color":{canOverride:o.generic.color,componentOf:["border-color","border-left"],defaultValue:"none"},"border-left-style":{canOverride:o.property.borderStyle,componentOf:["border-left","border-style"],defaultValue:"none"},"border-left-width":{canOverride:o.generic.unit,componentOf:["border-left","border-width"],defaultValue:"medium",oppositeTo:"border-right-width",shortestValue:"0"},"border-radius":{breakUp:r.borderRadius,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),components:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],defaultValue:"0",restore:i.borderRadius,shorthand:!0,vendorPrefixes:["-moz-","-o-"]},"border-right":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-right-width","border-right-style","border-right-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-right-color":{canOverride:o.generic.color,componentOf:["border-color","border-right"],defaultValue:"none"},"border-right-style":{canOverride:o.property.borderStyle,componentOf:["border-right","border-style"],defaultValue:"none"},"border-right-width":{canOverride:o.generic.unit,componentOf:["border-right","border-width"],defaultValue:"medium",oppositeTo:"border-left-width",shortestValue:"0"},"border-style":{breakUp:r.fourValues,canOverride:o.generic.components([o.property.borderStyle,o.property.borderStyle,o.property.borderStyle,o.property.borderStyle]),componentOf:["border"],components:["border-top-style","border-right-style","border-bottom-style","border-left-style"],defaultValue:"none",restore:i.fourValues,shorthand:!0},"border-top":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-top-width","border-top-style","border-top-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-top-color":{canOverride:o.generic.color,componentOf:["border-color","border-top"],defaultValue:"none"},"border-top-left-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-right-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-style":{canOverride:o.property.borderStyle,componentOf:["border-style","border-top"],defaultValue:"none"},"border-top-width":{canOverride:o.generic.unit,componentOf:["border-top","border-width"],defaultValue:"medium",oppositeTo:"border-bottom-width",shortestValue:"0"},"border-width":{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),componentOf:["border"],components:["border-top-width","border-right-width","border-bottom-width","border-left-width"],defaultValue:"medium",restore:i.fourValues,shortestValue:"0",shorthand:!0},clear:{canOverride:o.property.clear,defaultValue:"none"},color:{canOverride:o.generic.color,defaultValue:"transparent",shortestValue:"red"},cursor:{canOverride:o.property.cursor,defaultValue:"auto"},display:{canOverride:o.property.display},float:{canOverride:o.property.float,defaultValue:"none"},font:{breakUp:r.font,canOverride:o.generic.components([o.property.fontStyle,o.property.fontVariant,o.property.fontWeight,o.property.fontStretch,o.generic.unit,o.generic.unit,o.property.fontFamily]),components:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],restore:i.font,shorthand:!0},"font-family":{canOverride:o.property.fontFamily,defaultValue:"user|agent|specific"},"font-size":{canOverride:o.generic.unit,defaultValue:"medium",shortestValue:"0"},"font-stretch":{canOverride:o.property.fontStretch,defaultValue:"normal"},"font-style":{canOverride:o.property.fontStyle,defaultValue:"normal"},"font-variant":{canOverride:o.property.fontVariant,defaultValue:"normal"},"font-weight":{canOverride:o.property.fontWeight,defaultValue:"normal",shortestValue:"400"},height:{canOverride:o.generic.unit,defaultValue:"auto",shortestValue:"0"},left:{canOverride:o.property.left,defaultValue:"auto"},"line-height":{canOverride:o.generic.unit,defaultValue:"normal",shortestValue:"0"},"list-style":{canOverride:o.generic.components([o.property.listStyleType,o.property.listStylePosition,o.property.listStyleImage]),components:["list-style-type","list-style-position","list-style-image"],breakUp:r.listStyle,restore:i.withoutDefaults,defaultValue:"outside",shortestValue:"none",shorthand:!0},"list-style-image":{canOverride:o.generic.image,componentOf:["list-style"],defaultValue:"none"},"list-style-position":{canOverride:o.property.listStylePosition,componentOf:["list-style"],defaultValue:"outside",shortestValue:"inside"},"list-style-type":{canOverride:o.property.listStyleType,componentOf:["list-style"],defaultValue:"decimal|disc",shortestValue:"none"},margin:{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),components:["margin-top","margin-right","margin-bottom","margin-left"],defaultValue:"0",restore:i.fourValues,shorthand:!0},"margin-bottom":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-top"},"margin-left":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-right"},"margin-right":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-left"},"margin-top":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-bottom"},outline:{canOverride:o.generic.components([o.generic.color,o.property.outlineStyle,o.generic.unit]),components:["outline-color","outline-style","outline-width"],breakUp:r.outline,restore:i.withoutDefaults,defaultValue:"0",shorthand:!0},"outline-color":{canOverride:o.generic.color,componentOf:["outline"],defaultValue:"invert",shortestValue:"red"},"outline-style":{canOverride:o.property.outlineStyle,componentOf:["outline"],defaultValue:"none"},"outline-width":{canOverride:o.generic.unit,componentOf:["outline"],defaultValue:"medium",shortestValue:"0"},overflow:{canOverride:o.property.overflow,defaultValue:"visible"},"overflow-x":{canOverride:o.property.overflow,defaultValue:"visible"},"overflow-y":{canOverride:o.property.overflow,defaultValue:"visible"},padding:{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),components:["padding-top","padding-right","padding-bottom","padding-left"],defaultValue:"0",restore:i.fourValues,shorthand:!0},"padding-bottom":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-top"},"padding-left":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-right"},"padding-right":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-left"},"padding-top":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-bottom"},position:{canOverride:o.property.position,defaultValue:"static"},right:{canOverride:o.property.right,defaultValue:"auto"},"text-align":{canOverride:o.property.textAlign,defaultValue:"left|right"},"text-decoration":{canOverride:o.property.textDecoration,defaultValue:"none"},"text-overflow":{canOverride:o.property.textOverflow,defaultValue:"none"},"text-shadow":{canOverride:o.property.textShadow,defaultValue:"none"},top:{canOverride:o.property.top,defaultValue:"auto"},transform:{canOverride:o.property.transform,vendorPrefixes:["-moz-","-ms-","-webkit-"]},"vertical-align":{canOverride:o.property.verticalAlign,defaultValue:"baseline"},visibility:{canOverride:o.property.visibility,defaultValue:"visible"},"white-space":{canOverride:o.property.whiteSpace,defaultValue:"normal"},width:{canOverride:o.generic.unit,defaultValue:"auto",shortestValue:"0"},"z-index":{canOverride:o.property.zIndex,defaultValue:"auto"}},u={};for(var l in s){var c=s[l];if("vendorPrefixes"in c){for(var f=0;f~]/.test(a(e[1])),c=0,f=e[2].length;c0?"border-radius":"border-collapse"==e||"border-spacing"==e||"border-image"==e?e:0===e.indexOf("border-")&&/^border\-\w+\-\w+$/.test(e)?e.match(/border\-\w+/)[0]:0===e.indexOf("border-")&&/^border\-\w+$/.test(e)?"border":0===e.indexOf("text-")?e:"-chrome-"==e?e:e.replace(/^\-\w+\-/,"").match(/([a-zA-Z]+)/)[0].toLowerCase()}var i=e("../../tokenizer/token"),a=e("../../writer/one-time").rules,s=e("../../writer/one-time").value;t.exports=r},{"../../tokenizer/token":84,"../../writer/one-time":98}],23:[function(e,t,n){function r(e){this.name="InvalidPropertyError",this.message=e,this.stack=(new Error).stack}(r.prototype=Object.create(Error.prototype)).constructor=r,t.exports=r},{}],24:[function(e,t,n){function r(e){return h.test(e)}function o(e){var t,n,r,o,i,a,s=[],u=[],l=_.ROOT,c=0,p=!1,h=!1;for(i=0,a=e.length;i0&&p&&s.push(u.join("")),s}function i(e,t,n,r,o){return a(t,n,r)&&s(t)&&(t.length<2||!u(e,t))&&(t.length<2||o&&l(t))}function a(e,t,n){var r,o,i,a;for(i=0,a=e.length;i-1?r.substring(0,r.indexOf(f.OPEN_ROUND_BRACKET)):r,-1===t.indexOf(o)&&-1===n.indexOf(o))return!1;return!0}function s(e){var t,n,r,o,i,a;for(i=0,a=e.length;i-1,n=o?t.substring(0,r):t,o&&-1==g.indexOf(n))return!1;if(!o&&g.indexOf(n)>-1)return!1}return!0}function u(e,t){var n,r,o,i,a,s,u,l,c=0;for(u=0,l=t.length;u-1?n.substring(0,n.indexOf(f.OPEN_ROUND_BRACKET)):n,s=o.indexOf(f.OPEN_ROUND_BRACKET)>-1?o.substring(0,o.indexOf(f.OPEN_ROUND_BRACKET)):o,a!=m||s!=m))return!0;return!1}function l(e){var t,n,r,o=0;for(n=0,r=e.length;n-1?1:0:o+=b.indexOf(t)>-1?1:0,o>1)return!1;return!0}function c(e){return d.test(e)}var f=e("../../tokenizer/marker"),p=e("../../utils/split"),h=/\/deep\//,d=/^::/,m=":not",g=[":dir",":lang",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type"],v=/[>\+~]/,b=[":after",":before",":first-letter",":first-line",":lang"],y=["::after","::before","::first-letter","::first-line"],_={DOUBLE_QUOTE:"double-quote",SINGLE_QUOTE:"single-quote",ROOT:"root"};t.exports=function(e,t,n,a){var s,u,l,c=p(e,f.COMMA);for(u=0,l=c.length;u-1&&!i(s,o(s),t,n,a))return!1;return!0}},{"../../tokenizer/marker":83,"../../utils/split":96}],25:[function(e,t,n){var r=e("./is-mergeable"),o=e("./properties/optimize"),i=e("../level-1/sort-selectors"),a=e("../level-1/tidy-rules"),s=e("../../options/optimization-level").OptimizationLevel,u=e("../../writer/one-time").body,l=e("../../writer/one-time").rules,c=e("../../tokenizer/token");t.exports=function(e,t){for(var n=[null,[],[]],f=t.options,p=f.compatibility.selectors.adjacentSpace,h=f.level[s.One].selectorsSortingMethod,d=f.compatibility.selectors.mergeablePseudoClasses,m=f.compatibility.selectors.mergeablePseudoElements,g=f.compatibility.selectors.mergeLimit,v=f.compatibility.selectors.multiplePseudoMerging,b=0,y=e.length;b1?i(n[1],h):n[1],_[2]=[]):n=_:n=[null,[],[]]}}},{"../../options/optimization-level":65,"../../tokenizer/token":84,"../../writer/one-time":98,"../level-1/sort-selectors":14,"../level-1/tidy-rules":17,"./is-mergeable":24,"./properties/optimize":36}],26:[function(e,t,n){function r(e,t,n){var r,o,a,u,l,c,f,p;for(l=0,c=e.length;l=0;p--){var h=e[p];if(h[0]==c.NESTED_BLOCK){var d=u(h[1]),m=s[d];m||(m=[],s[d]=m),m.push(p)}}for(var g in s){var v=s[g];e:for(var b=v.length-1;b>0;b--){var y=v[b],_=e[y],w=v[b-1],E=e[w];t:for(var A=1;A>=-1;A-=2){for(var x=1==A,C=x?y+1:w-1,k=x?w:y,O=x?1:-1,S=x?_:E,B=x?E:_,D=a(S);C!=k;){var T=a(e[C]);if(C+=O,!(n&&r(D,T,i)||o(D,T,i)))continue t}B[2]=x?S[2].concat(B[2]):B[2].concat(S[2]),S[2]=[],f.push(B);continue e}}}return f}},{"../../options/optimization-level":65,"../../tokenizer/token":84,"../../writer/one-time":98,"./extract-properties":22,"./reorderable":47,"./rules-overlap":51}],27:[function(e,t,n){function r(e){return/\.|\*| :/.test(e)}function o(e){var t=p(e[1]);return t.indexOf("__")>-1||t.indexOf("--")>-1}function i(e){return e.replace(/--[^ ,>\+~:]+/g,"")}function a(e,t){var n=i(p(e[1]));for(var r in t){var o=t[r],a=i(p(o[1]));(a.indexOf(n)>-1||n.indexOf(a)>-1)&&delete t[r]}}var s=e("./is-mergeable"),u=e("../level-1/sort-selectors"),l=e("../level-1/tidy-rules"),c=e("../../options/optimization-level").OptimizationLevel,f=e("../../writer/one-time").body,p=e("../../writer/one-time").rules,h=e("../../tokenizer/token");t.exports=function(e,t){for(var n=t.options,i=n.level[c.Two].mergeSemantically,d=n.compatibility.selectors.adjacentSpace,m=n.level[c.One].selectorsSortingMethod,g=n.compatibility.selectors.mergeablePseudoClasses,v=n.compatibility.selectors.mergeablePseudoElements,b=n.compatibility.selectors.multiplePseudoMerging,y={},_=e.length-1;_>=0;_--){var w=e[_];if(w[0]==h.RULE){w[2].length>0&&!i&&r(p(w[1]))&&(y={}),w[2].length>0&&i&&o(w)&&a(w,y);var E=f(w[2]),A=y[E];A&&s(p(w[1]),g,v,b)&&s(p(A[1]),g,v,b)&&(w[2].length>0?(w[1]=l(A[1].concat(w[1]),!1,d,!1,t.warnings),w[1]=w[1].length>1?u(w[1],m):w[1]):w[1]=A[1].concat(w[1]),A[2]=[],y[E]=null),y[f(w[2])]=w}}}},{"../../options/optimization-level":65,"../../tokenizer/token":84,"../../writer/one-time":98,"../level-1/sort-selectors":14,"../level-1/tidy-rules":17,"./is-mergeable":24}],28:[function(e,t,n){var r=e("./reorderable").canReorder,o=e("./extract-properties"),i=e("./properties/optimize"),a=e("../../writer/one-time").rules,s=e("../../tokenizer/token");t.exports=function(e,t){var n,u=t.cache.specificity,l={},c=[];for(n=e.length-1;n>=0;n--)if(e[n][0]==s.RULE&&0!==e[n][2].length){var f=a(e[n][1]);l[f]=[n].concat(l[f]||[]),2==l[f].length&&c.push(f)}for(n=c.length-1;n>=0;n--){var p=l[c[n]];e:for(var h=p.length-1;h>0;h--){var d=p[h-1],m=e[d],g=p[h],v=e[g];t:for(var b=1;b>=-1;b-=2){for(var y=1==b,_=y?d+1:g-1,w=y?g:d,E=y?1:-1,A=y?m:v,x=y?v:m,C=o(A);_!=w;){var k=o(e[_]);_+=E;var O=y?r(C,k,u):r(k,C,u);if(!O&&!y)continue e;if(!O&&y)continue t}y?(Array.prototype.push.apply(A[2],x[2]),x[2]=A[2]):Array.prototype.push.apply(x[2],A[2]),i(x[2],!0,!0,t),A[2]=[]}}}}},{"../../tokenizer/token":84,"../../writer/one-time":98,"./extract-properties":22,"./properties/optimize":36,"./reorderable":47}],29:[function(e,t,n){function r(e){for(var t=0,n=e.length;t=0;y--)a(v[y][2],t,!1);return _.removeEmpty&&r(e),e}var s=e("./merge-adjacent"),u=e("./merge-media-queries"),l=e("./merge-non-adjacent-by-body"),c=e("./merge-non-adjacent-by-selector"),f=e("./reduce-non-adjacent"),p=e("./remove-duplicate-font-at-rules"),h=e("./remove-duplicate-media-queries"),d=e("./remove-duplicates"),m=e("./remove-unused-at-rules"),g=e("./restructure"),v=e("./properties/optimize"),b=e("../../options/optimization-level").OptimizationLevel,y=e("../../tokenizer/token");t.exports=a},{"../../options/optimization-level":65,"../../tokenizer/token":84,"./merge-adjacent":25,"./merge-media-queries":26,"./merge-non-adjacent-by-body":27,"./merge-non-adjacent-by-selector":28,"./properties/optimize":36,"./reduce-non-adjacent":42,"./remove-duplicate-font-at-rules":43,"./remove-duplicate-media-queries":44,"./remove-duplicates":45,"./remove-unused-at-rules":46,"./restructure":50}],30:[function(e,t,n){var r=e("../../../tokenizer/marker");t.exports=function(e,t,n){var o,i,a,s=t.value.length,u=n.value.length,l=Math.max(s,u),c=Math.min(s,u)-1;for(a=0;a=0;t--)if("inherit"==e.value[t][1])return!0;return!1}},{}],33:[function(e,t,n){function r(e,t){var n=i[e.name];return"components"in n&&n.components.indexOf(t.name)>-1}function o(e,t){return e.components.some(function(e){return r(e,t)})}var i=e("../compactable");t.exports=function(e,t,n){return r(e,t)||!n&&!!i[e.name].shorthandComponents&&o(e,t)}},{"../compactable":21}],34:[function(e,t,n){var r=e("../../../tokenizer/marker");t.exports=function(e){return"font"!=e.name||-1==e.value[0][1].indexOf(r.INTERNAL)}},{"../../../tokenizer/marker":83}],35:[function(e,t,n){function r(e,t,n,r){var c,f,p,h=e[t];for(c in n)void 0!==h&&c==h.name||(f=_[c],p=n[c],h&&o(n,c,h)?delete n[c]:f.components.length>Object.keys(p).length||i(p)||a(p,c,r)&&s(p)&&(u(p)?l(e,p,c,r):g(e,p,c,r)))}function o(e,t,n){var r,o=_[t],i=_[n.name];if("overridesShorthands"in o&&o.overridesShorthands.indexOf(n.name)>-1)return!0;if(i&&"componentOf"in i)for(r in e[t])if(i.componentOf.indexOf(r)>-1)return!0;return!1}function i(e){var t,n;for(n in e){if(void 0!==t&&e[n].important!=t)return!0;t=e[n].important}return!1}function a(e,t,n){var r,o,i,a,s=_[t],u=[k.PROPERTY,[k.PROPERTY_NAME,t],[k.PROPERTY_VALUE,s.defaultValue]],l=x(u);for(y([l],n,[]),i=0,a=s.components.length;i=0&&(e[o].name!=n||e[o].unused||r++,!(r>1));o--);return r>1}function m(e,t){for(var n=0,r=e.components.length;n=0;T--)if(a=e[T],b(a)&&!a.block){i=B[a.name].canOverride;t:for(R=T-1;R>=0;R--)if(c=e[R],b(c)&&!c.block&&!c.unused&&!a.unused&&(!c.hack||a.hack||a.important)&&(c.hack||c.important||!a.hack)&&(c.important!=a.important||c.hack[0]==a.hack[0])&&!(c.important==a.important&&(c.hack[0]!=a.hack[0]||c.hack[1]&&c.hack[1]!=a.hack[1])||E(a)||y(c,a)))if(a.shorthand&&C(a,c)){if(!a.important&&c.important)continue;if(!S([c],a.components))continue;if(!g(o.isFunction,c)&&m(a,o))continue;if(!k(a)){c.unused=!0;continue}f=x(a,c),i=B[c.name].canOverride,A(i.bind(null,o),c,f)&&(c.unused=!0)}else if(a.shorthand&&O(a,c)){if(!a.important&&c.important)continue;if(!S([c],a.components))continue;if(!g(o.isFunction,c)&&m(a,o))continue;for(F=(h=c.shorthand?c.components:[c]).length-1;F>=0;F--)if(_=h[F],w=x(a,_),i=B[_.name].canOverride,!A(i.bind(null,o),c,w))continue t;c.unused=!0}else if(t&&c.shorthand&&!a.shorthand&&C(c,a,!0)){if(a.important&&!c.important)continue;if(!a.important&&c.important){a.unused=!0;continue}if(d(e,T-1,c.name))continue;if(m(c,o))continue;if(!k(c))continue;if(f=x(c,a),A(i.bind(null,o),f,a)){var L=!n.properties.backgroundClipMerging&&f.name.indexOf("background-clip")>-1||!n.properties.backgroundOriginMerging&&f.name.indexOf("background-origin")>-1||!n.properties.backgroundSizeMerging&&f.name.indexOf("background-size")>-1,M=B[a.name].nonMergeableValue===a.value[0][1];if(L||M)continue;if(!n.properties.merging&&r(c,o))continue;if(f.value[0][1]!=a.value[0][1]&&(E(c)||E(a)))continue;if(v(c,a))continue;!c.multiplex&&a.multiplex&&l(c,p(a)),s(f,a),c.dirty=!0}}else if(t&&c.shorthand&&a.shorthand&&c.name==a.name){if(!c.multiplex&&a.multiplex)continue;if(!a.important&&c.important){a.unused=!0;continue e}if(a.important&&!c.important){c.unused=!0;continue}if(!k(a)){c.unused=!0;continue}for(F=c.components.length-1;F>=0;F--){var U=c.components[F],N=a.components[F];if(i=B[U.name].canOverride,!A(i.bind(null,o),U,N))continue e}u(c,a),c.dirty=!0}else if(t&&c.shorthand&&a.shorthand&&C(c,a)){if(!c.important&&a.important)continue;if(f=x(c,a),i=B[a.name].canOverride,!A(i.bind(null,o),f,a))continue;if(c.important&&!a.important){a.unused=!0;continue}if(B[a.name].restore(a,B).length>1)continue;s(f=x(c,a),a),a.dirty=!0}else if(c.name==a.name){if(D=!0,a.shorthand)for(F=a.components.length-1;F>=0&&D;F--)_=c.components[F],w=a.components[F],i=B[w.name].canOverride,D=D&&A(i.bind(null,o),_,w);else i=B[a.name].canOverride,D=A(i.bind(null,o),c,a);if(c.important&&!a.important&&D){a.unused=!0;continue}if(!c.important&&a.important&&D){c.unused=!0;continue}if(!D)continue;c.unused=!0}}}},{"../../../tokenizer/marker":83,"../../../tokenizer/token":84,"../../../writer/one-time":98,"../../restore-from-optimizing":56,"../clone":20,"../compactable":21,"../restore-with-components":48,"./every-values-pair":30,"./find-component-in":31,"./has-inherit":32,"./is-component-of":33,"./is-mergeable-shorthand":34,"./overrides-non-component-shorthand":38,"./vendor-prefixes":41}],38:[function(e,t,n){var r=e("../compactable");t.exports=function(e,t){return e.name in r&&"overridesShorthands"in r[e.name]&&r[e.name].overridesShorthands.indexOf(t.name)>-1}},{"../compactable":21}],39:[function(e,t,n){var r=e("../compactable"),o=e("../invalid-property-error");t.exports=function(e,t,n){for(var i,a,s,u=e.length-1;u>=0;u--){var l=e[u],c=r[l.name];if(c&&c.shorthand){l.shorthand=!0,l.dirty=!0;try{if(l.components=c.breakUp(l,r,t),c.shorthandComponents)for(a=0,s=l.components.length;a0?l.multiplex=l.components[0].multiplex:l.unused=!0}}}},{"../compactable":21,"../invalid-property-error":23}],40:[function(e,t,n){var r=e("./vendor-prefixes").same;t.exports=function(e,t,n,o,i){return!(!r(t,n)||i&&e.isVariable(t)!==e.isVariable(n))}},{"./vendor-prefixes":41}],41:[function(e,t,n){function r(e){for(var t,n=[];null!==(t=o.exec(e));)-1==n.indexOf(t[0])&&n.push(t[0]);return n}var o=/(?:^|\W)(\-\w+\-)/g;t.exports={unique:r,same:function(e,t){return r(e).sort().join(",")==r(t).sort().join(",")}}},{}],42:[function(e,t,n){function r(e){for(var t=[],n=0;n=0;c--)if(!n.filterOut(c,i)){var f=t[c].where,p=e[f],h=l(p[2]);i=i.concat(h),a.push(h),s.push(f)}u(i,!0,!1,o);for(var d=s.length,m=i.length-1,g=d-1;g>=0;)if((0===g||i[m]&&a[g].indexOf(i[m])>-1)&&m>-1)m--;else{var v=i.splice(m+1);n.callback(e[s[g]],v,d,g),g--}}var s=e("./is-mergeable"),u=e("./properties/optimize"),l=e("../../utils/clone-array"),c=e("../../tokenizer/token"),f=e("../../writer/one-time").body,p=e("../../writer/one-time").rules;t.exports=function(e,t){for(var n=t.options,a=n.compatibility.selectors.mergeablePseudoClasses,u=n.compatibility.selectors.mergeablePseudoElements,l=n.compatibility.selectors.multiplePseudoMerging,f={},h=[],d=e.length-1;d>=0;d--){var m=e[d];if(m[0]==c.RULE&&0!==m[2].length)for(var g=p(m[1]),v=m[1].length>1&&s(g,a,u,l),b=r(m[1]),y=v?[g].concat(b):[g],_=0,w=y.length;_0,isComplex:v&&0===_})}}o(e,h,f,n,t),i(e,f,n,t)}},{"../../tokenizer/token":84,"../../utils/clone-array":86,"../../writer/one-time":98,"./is-mergeable":24,"./properties/optimize":36}],43:[function(e,t,n){var r=e("../../tokenizer/token"),o=e("../../writer/one-time").all,i="@font-face";t.exports=function(e){var t,n,a,s,u=[];for(a=0,s=e.length;a-1?t[2]=[]:u.push(n))}},{"../../tokenizer/token":84,"../../writer/one-time":98}],44:[function(e,t,n){var r=e("../../tokenizer/token"),o=e("../../writer/one-time").all,i=e("../../writer/one-time").rules;t.exports=function(e){var t,n,a,s,u,l={};for(s=0,u=e.length;s=0;p--)n=e[u[t][p]],a=o(n[2]),s.indexOf(a)>-1?n[2]=[]:s.push(a)}}},{"../../tokenizer/token":84,"../../writer/one-time":98}],46:[function(e,t,n){function r(e,t,n,r){var i,a,s,u,l,c={};for(u=0,l=e.length;u=0;o--)for(var i=e.length-1;i>=0;i--)if(!r(e[i],t[o],n))return!1;return!0},canReorderSingle:r}},{"./rules-overlap":51,"./specificities-overlap":52}],48:[function(e,t,n){var r=e("./compactable");t.exports=function(e){var t=r[e.name];return t&&t.shorthand?t.restore(e,r):e.value}},{"./compactable":21}],49:[function(e,t,n){function r(e){for(var t=0,n=e.length;t=0;p--){var h=c[p],d=i(h);if("background-clip"==h.name){var m=c[p-1],g=i(m);l=!(u=h.value[0][1]==m.value[0][1])&&(g&&!d||!g&&!d||!g&&d&&h.value[0][1]!=m.value[0][1]),u?o(m):l&&(o(h),o(m)),p--}else if("background-size"==h.name){var v=c[p-1],b=i(v);l=!(u=!b&&d)&&(b&&!d||!b&&!d),u?o(v):l?(o(h),f.unshift([a.PROPERTY_VALUE,s.FORWARD_SLASH]),o(v)):1==v.value.length&&o(v),p--}else{if(d||t[h.name].multiplexLastOnly&&!n)continue;o(h)}}return 0===f.length&&1==e.value.length&&"0"==e.value[0][1]&&f.push(e.value[0]),0===f.length&&f.push([a.PROPERTY_VALUE,t[e.name].defaultValue]),r(f)?[f[0]]:f},borderRadius:function(e,t){if(e.multiplex){for(var n=i(e),r=i(e),u=0;u<4;u++){var l=e.components[u],c=i(e);c.value=[l.value[0]],n.components.push(c);var f=i(e);f.value=[l.value[1]||l.value[0]],r.components.push(f)}var p=o(n),h=o(r);return p.length!=h.length||p[0][1]!=h[0][1]||p.length>1&&p[1][1]!=h[1][1]||p.length>2&&p[2][1]!=h[2][1]||p.length>3&&p[3][1]!=h[3][1]?p.concat([[a.PROPERTY_VALUE,s.FORWARD_SLASH]]).concat(h):p}return o(e)},font:function(e,t){var n,o=e.components,i=[],u=0,l=0;if(0===e.value[0][1].indexOf(s.INTERNAL))return e.value[0][1]=e.value[0][1].substring(s.INTERNAL.length),e.value;for(;u<4;)(n=o[u]).value[0][1]!=t[n.name].defaultValue&&Array.prototype.push.apply(i,n.value),u++;for(Array.prototype.push.apply(i,o[u].value),o[++u].value[0][1]!=t[o[u].name].defaultValue&&(Array.prototype.push.apply(i,[[a.PROPERTY_VALUE,s.FORWARD_SLASH]]),Array.prototype.push.apply(i,o[u].value)),u++;o[u].value[l];)i.push(o[u].value[l]),o[u].value[l+1]&&i.push([a.PROPERTY_VALUE,s.COMMA]),l++;return r(i)?[i[0]]:i},fourValues:o,multiplex:function(e){return function(t,n){if(!t.multiplex)return e(t,n,!0);var r,o,u=0,l=[],c={};for(r=0,o=t.components[0].value.length;r=0;i--){var s=n[i],u=t[s.name];s.value[0][1]!=u.defaultValue&&o.unshift(s.value[0])}return 0===o.length&&o.push([a.PROPERTY_VALUE,t[e.name].defaultValue]),r(o)?[o[0]]:o}}},{"../../tokenizer/marker":83,"../../tokenizer/token":84,"./clone":20}],50:[function(e,t,n){function r(e,t){return e>t?1:-1}function o(e,t){var n=c(e);return n[5]=n[5].concat(t[5]),n}var i=e("./reorderable").canReorderSingle,a=e("./extract-properties"),s=e("./is-mergeable"),u=e("./tidy-rule-duplicates"),l=e("../../tokenizer/token"),c=e("../../utils/clone-array"),f=e("../../writer/one-time").body,p=e("../../writer/one-time").rules;t.exports=function(e,t){function n(e,t,n){for(var r=n.length-1;r>=0;r--){var o=c(t,n[r][0]);if(F[o].length>1&&x(e,F[o])){h(o);break}}}function c(e,t){var n=d(t);return F[n]=F[n]||[],F[n].push([e,t]),n}function h(e){var t,n=e.split(U),r=[];for(var o in F){var i=o.split(U);for(t=i.length-1;t>=0;t--)if(n.indexOf(i[t])>-1){r.push(o);break}}for(t=r.length-1;t>=0;t--)delete F[r[t]]}function d(e){for(var t=[],n=0,r=e.length;n=0;r--)s(p(e[r][1]),k,O,B)&&(n.unshift(e[r]),e[r][2].length>0&&-1==t.indexOf(e[r])&&t.push(e[r]));return t.length>1?n:[]}function g(e,t){var r=t[0],o=t[1],i=t[4],a=r.length+o.length+1,s=[],l=[],c=m(T[i]);if(!(c.length<2)){var f=b(c,a,1),p=f[0];if(p[1]>0)return n(e,t,f);for(var h=p[0].length-1;h>=0;h--)s=p[0][h][1].concat(s),l.unshift(p[0][h]);w(e,[t],s=u(s),l)}}function v(e,t){return e[1]>t[1]?1:e[1]==t[1]?0:-1}function b(e,t,n){return y(e,t,n,M-1).sort(v)}function y(e,t,n,r){var o=[[e,_(e,t,n)]];if(e.length>2&&r>0)for(var i=e.length-1;i>=0;i--){var a=Array.prototype.slice.call(e,0);a.splice(i,1),o=o.concat(y(a,t,n,r-1))}return o}function _(e,t,n){for(var r=0,o=e.length-1;o>=0;o--)r+=e[o][2].length>n?p(e[o][1]).length:-1;return r-(e.length-1)*t+1}function w(t,n,r,o){var i,a,s,u,c=[];for(i=o.length-1;i>=0;i--){var p=o[i];for(a=p[2].length-1;a>=0;a--){var h=p[2][a];for(s=0,u=n.length;s=0;i--)c.unshift(n[i][3]);var b=[l.RULE,r,c];e.splice(t,0,b)}function E(e,t){var n=t[4],r=T[n];r&&r.length>1&&(A(e,t)||g(e,t))}function A(e,t){var n,r,o=[],i=[],a=t[4],s=m(T[a]);if(!(s.length<2)){e:for(var u in T){var l=T[u];for(n=s.length-1;n>=0;n--)if(-1==l.indexOf(s[n]))continue e;o.push(u)}if(o.length<2)return!1;for(n=o.length-1;n>=0;n--)for(r=R.length-1;r>=0;r--)if(R[r][4]==o[n]){i.unshift([R[r],s]);break}return x(e,i)}}function x(e,t){for(var n,r=0,o=[],i=t.length-1;i>=0;i--)r+=(n=t[i][0])[4].length+(i>0?1:0),o.push(n);var a=b(t[0][1],r,o.length)[0];if(a[1]>0)return!1;var s=[],l=[];for(i=a[0].length-1;i>=0;i--)s=a[0][i][1].concat(s),l.unshift(a[0][i]);for(w(e,o,s=u(s),l),i=o.length-1;i>=0;i--){n=o[i];var c=R.indexOf(n);delete T[n[4]],c>-1&&-1==L.indexOf(c)&&L.push(c)}return!0}for(var C=t.options,k=C.compatibility.selectors.mergeablePseudoClasses,O=C.compatibility.selectors.mergeablePseudoElements,S=C.compatibility.selectors.mergeLimit,B=C.compatibility.selectors.multiplePseudoMerging,D=t.cache.specificity,T={},R=[],F={},L=[],M=2,U="%",N=e.length-1;N>=0;N--){var P,q,z,I,j,V=e[N];if(V[0]==l.RULE)P=!0;else{if(V[0]!=l.NESTED_BLOCK)continue;P=!1}var $=R.length,H=a(V);L=[];var K=[];for(q=H.length-1;q>=0;q--)for(z=q-1;z>=0;z--)if(!i(H[q],H[z],D)){K.push(q);break}for(q=H.length-1;q>=0;q--){var G=H[q],Y=!1;for(z=0;z<$;z++){var W=R[z];-1==L.indexOf(z)&&(!i(G,W,D)&&!function(e,t,n){if(e[0]!=t[0])return!1;var r=t[4],o=T[r];return o&&o.indexOf(n)>-1}(G,W,V)||T[W[4]]&&T[W[4]].length===S)&&(E(N+1,W),-1==L.indexOf(z)&&(L.push(z),delete T[W[4]])),Y||(Y=G[0]==W[0]&&G[1]==W[1])&&(j=z)}if(P&&!(K.indexOf(q)>-1)){var Q=G[4];Y&&R[j][5].length+G[5].length>S?(E(N+1,R[j]),R.splice(j,1),T[Q]=[V],Y=!1):(T[Q]=T[Q]||[],T[Q].push(V)),Y?R[j]=o(R[j],G):R.push(G)}}for(q=0,I=(L=L.sort(r)).length;q",DOT:".",HASH:"#",NON_ADJACENT_SIBLING:"~",PSEUDO:":"},a=/[a-zA-Z]/,s=":not(",u=/[\s,\(>~\+]/;t.exports=function(e){var t,n,s,l,c,f,p,h=[0,0,0],d=0,m=!1,g=!1;for(f=0,p=e.length;f0&&!m||(t==o.OPEN_ROUND_BRACKET?d++:t==o.CLOSE_ROUND_BRACKET&&1==d?(d--,m=!1):t==o.CLOSE_ROUND_BRACKET?d--:t==i.HASH?h[0]++:t==i.DOT||t==o.OPEN_SQUARE_BRACKET?h[1]++:t!=i.PSEUDO||g||r(e,f)?t==i.PSEUDO?m=!0:(0===f||c)&&a.test(t)&&h[2]++:(h[1]++,m=!1))}else l=!0;else s=!0;n=t==o.BACK_SLASH,g=t==i.PSEUDO,c=!n&&u.test(t)}return h}},{"../../tokenizer/marker":83}],54:[function(e,t,n){function r(e,t){return e[1]>t[1]?1:-1}t.exports=function(e){for(var t=[],n=[],o=0,i=e.length;o=0;t--){var n=e[t];n.unused&&n.all.splice(n.position,1)}}},{}],56:[function(e,t,n){function r(e){e.value[e.value.length-1][1]+=l}function o(e){e.hack[0]==i.UNDERSCORE?e.name=c+e.name:e.hack[0]==i.ASTERISK?e.name=s+e.name:e.hack[0]==i.BACKSLASH?e.value[e.value.length-1][1]+=u+e.hack[1]:e.hack[0]==i.BANG&&(e.value[e.value.length-1][1]+=a.SPACE+f)}var i=e("./hack"),a=e("../tokenizer/marker"),s="*",u="\\",l="!important",c="_",f="!ie";t.exports=function(e,t){var n,i,a,s;for(s=e.length-1;s>=0;s--)(n=e[s]).unused||(n.dirty||n.important||n.hack)&&(t?(i=t(n),n.value=i):i=n.value,n.important&&r(n),n.hack&&o(n),"all"in n&&((a=n.all[n.position])[1][1]=n.name,a.splice(2,a.length-1),Array.prototype.push.apply(a,i)))}},{"../tokenizer/marker":83,"./hack":8}],57:[function(e,t,n){function r(){var e=p("animation-timing-function");return function(t){return e(t)||A.test(t)}}function o(e){return"auto"!=e&&(p("color")(e)||u(e)||i(e)||h(e))}function i(e){return m(e)||l(e)}function a(e){return x.test(e)}function s(e){return C.test(e)}function u(e){return R.test(e)||S.test(e)}function l(e){return k.test(e)}function c(e){return O.test(e)}function f(e){return"none"==e||"inherit"==e||w(e)}function p(e){return function(t){return U[e].indexOf(t)>-1}}function h(e){return B.test(e)}function d(e){return e.length>0&&""+parseFloat(e)===e}function m(e){return T.test(e)}function g(e){return D.test(e)}function v(e){return d(e)&&parseFloat(e)>=0}function b(e){return M.test(e)}function y(e){return F.test(e)}function _(e,t){return e.test(t)}function w(e){return L.test(e)}function E(e){return"auto"==e||d(e)||p("^")(e)}var A=/^(cubic\-bezier|steps)\([^\)]+\)$/,x=new RegExp("^(\\-moz\\-|\\-webkit\\-)?calc\\([^\\)]+\\)$","i"),C=new RegExp("^(var\\(\\-\\-[^\\)]+\\)|[A-Z]+(\\-|[A-Z]|[0-9])+\\(.*?\\)|\\-(\\-|[A-Z]|[0-9])+\\(.*?\\))$","i"),k=/^hsl\(\s*[\-\.\d]+\s*,\s*[\.\d]+%\s*,\s*[\.\d]+%\s*\)|hsla\(\s*[\-\.\d]+\s*,\s*[\.\d]+%\s*,\s*[\.\d]+%\s*,\s*[\.\d]+\s*\)$/,O=/^(\-[a-z0-9_][a-z0-9\-_]*|[a-z][a-z0-9\-_]*)$/i,S=/^#[0-9a-f]{6}$/i,B=/^[a-z]+$/i,D=/^-([a-z0-9]|-)*$/i,T=/^rgb\(\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*\)|rgba\(\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*,\s*[\.\d]+\s*\)$/,R=/^#[0-9a-f]{3}$/i,F=new RegExp("^(\\-?\\+?\\.?\\d+\\.?\\d*(s|ms))$"),L=/^url\([\s\S]+\)$/i,M=new RegExp("^var\\(\\-\\-[^\\)]+\\)$","i"),U={"^":["inherit","initial","unset"],"*-style":["auto","dashed","dotted","double","groove","hidden","inset","none","outset","ridge","solid"],"animation-direction":["alternate","alternate-reverse","normal","reverse"],"animation-fill-mode":["backwards","both","forwards","none"],"animation-iteration-count":["infinite"],"animation-name":["none"],"animation-play-state":["paused","running"],"animation-timing-function":["ease","ease-in","ease-in-out","ease-out","linear","step-end","step-start"],"background-attachment":["fixed","inherit","local","scroll"],"background-clip":["border-box","content-box","inherit","padding-box","text"],"background-origin":["border-box","content-box","inherit","padding-box"],"background-position":["bottom","center","left","right","top"],"background-repeat":["no-repeat","inherit","repeat","repeat-x","repeat-y","round","space"],"background-size":["auto","cover","contain"],"border-collapse":["collapse","inherit","separate"],bottom:["auto"],clear:["both","left","none","right"],color:["transparent"],cursor:["all-scroll","auto","col-resize","crosshair","default","e-resize","help","move","n-resize","ne-resize","no-drop","not-allowed","nw-resize","pointer","progress","row-resize","s-resize","se-resize","sw-resize","text","vertical-text","w-resize","wait"],display:["block","inline","inline-block","inline-table","list-item","none","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group"],float:["left","none","right"],left:["auto"],font:["caption","icon","menu","message-box","small-caption","status-bar","unset"],"font-size":["large","larger","medium","small","smaller","x-large","x-small","xx-large","xx-small"],"font-stretch":["condensed","expanded","extra-condensed","extra-expanded","normal","semi-condensed","semi-expanded","ultra-condensed","ultra-expanded"],"font-style":["italic","normal","oblique"],"font-variant":["normal","small-caps"],"font-weight":["100","200","300","400","500","600","700","800","900","bold","bolder","lighter","normal"],"line-height":["normal"],"list-style-position":["inside","outside"],"list-style-type":["armenian","circle","decimal","decimal-leading-zero","disc","decimal|disc","georgian","lower-alpha","lower-greek","lower-latin","lower-roman","none","square","upper-alpha","upper-latin","upper-roman"],overflow:["auto","hidden","scroll","visible"],position:["absolute","fixed","relative","static"],right:["auto"],"text-align":["center","justify","left","left|right","right"],"text-decoration":["line-through","none","overline","underline"],"text-overflow":["clip","ellipsis"],top:["auto"],"vertical-align":["baseline","bottom","middle","sub","super","text-bottom","text-top","top"],visibility:["collapse","hidden","visible"],"white-space":["normal","nowrap","pre"],width:["inherit","initial","medium","thick","thin"]},N=["%","ch","cm","em","ex","in","mm","pc","pt","px","rem","vh","vm","vmax","vmin","vw"];t.exports=function(e){var t=N.slice(0).filter(function(t){return!(t in e.units)||!0===e.units[t]}),n=new RegExp("^(\\-?\\.?\\d+\\.?\\d*("+t.join("|")+"|)|auto|inherit)$","i");return{colorOpacity:e.colors.opacity,isAnimationDirectionKeyword:p("animation-direction"),isAnimationFillModeKeyword:p("animation-fill-mode"),isAnimationIterationCountKeyword:p("animation-iteration-count"),isAnimationNameKeyword:p("animation-name"),isAnimationPlayStateKeyword:p("animation-play-state"),isAnimationTimingFunction:r(),isBackgroundAttachmentKeyword:p("background-attachment"),isBackgroundClipKeyword:p("background-clip"),isBackgroundOriginKeyword:p("background-origin"),isBackgroundPositionKeyword:p("background-position"),isBackgroundRepeatKeyword:p("background-repeat"),isBackgroundSizeKeyword:p("background-size"),isColor:o,isColorFunction:i,isDynamicUnit:a,isFontKeyword:p("font"),isFontSizeKeyword:p("font-size"),isFontStretchKeyword:p("font-stretch"),isFontStyleKeyword:p("font-style"),isFontVariantKeyword:p("font-variant"),isFontWeightKeyword:p("font-weight"),isFunction:s,isGlobal:p("^"),isHslColor:l,isIdentifier:c,isImage:f,isKeyword:p,isLineHeightKeyword:p("line-height"),isListStylePositionKeyword:p("list-style-position"),isListStyleTypeKeyword:p("list-style-type"),isPrefixed:g,isPositiveNumber:v,isRgbColor:m,isStyleKeyword:p("*-style"),isTime:y,isUnit:_.bind(null,n),isUrl:w,isVariable:b,isWidth:p("width"),isZIndex:E}}},{}],58:[function(e,t,n){function r(e){var t,n,r;for(t=2,n=e.length;t0&&!r[1].match(m.IMPORTANT_WORD_PATTERN)&&m.BANG_SUFFIX_PATTERN.test(r[1])?t=[p.BANG]:r[1].indexOf(m.BACKSLASH)>0&&r[1].indexOf(m.BACKSLASH)==r[1].length-m.BACKSLASH.length-1?t=[p.BACKSLASH,r[1].substring(r[1].indexOf(m.BACKSLASH)+1)]:0===r[1].indexOf(m.BACKSLASH)&&2==r[1].length&&(t=[p.BACKSLASH,r[1].substring(1)]):t=[p.BANG],t}function s(e){if(e.length<3)return!1;var t=e[e.length-1];return!!m.IMPORTANT_TOKEN_PATTERN.test(t[1])||!(!m.IMPORTANT_WORD_PATTERN.test(t[1])||!m.SUFFIX_BANG_PATTERN.test(e[e.length-2][1]))}function u(e){var t=e[e.length-1],n=e[e.length-2];m.IMPORTANT_TOKEN_PATTERN.test(t[1])?t[1]=t[1].replace(m.IMPORTANT_TOKEN_PATTERN,""):(t[1]=t[1].replace(m.IMPORTANT_WORD_PATTERN,""),n[1]=n[1].replace(m.SUFFIX_BANG_PATTERN,"")),0===t[1].length&&e.pop(),0===n[1].length&&e.pop()}function l(e){e[1][1]=e[1][1].substring(1)}function c(e,t){var n=e[e.length-1];n[1]=n[1].substring(0,n[1].indexOf(t[0]==p.BACKSLASH?m.BACKSLASH:m.BANG)).trim(),0===n[1].length&&e.pop()}function f(e){var t=s(e);t&&u(e);var n=a(e);return n[0]==p.ASTERISK||n[0]==p.UNDERSCORE?l(e):n[0]!=p.BACKSLASH&&n[0]!=p.BANG||c(e,n),{block:e[2]&&e[2][0]==d.PROPERTY_BLOCK,components:[],dirty:!1,hack:n,important:t,name:e[1][1],multiplex:e.length>3&&i(e),position:0,shorthand:!1,unused:!1,value:e.slice(2)}}var p=e("./hack"),h=e("../tokenizer/marker"),d=e("../tokenizer/token"),m={ASTERISK:"*",BACKSLASH:"\\",BANG:"!",BANG_SUFFIX_PATTERN:/!\w+$/,IMPORTANT_TOKEN:"!important",IMPORTANT_TOKEN_PATTERN:new RegExp("!important$","i"),IMPORTANT_WORD:"important",IMPORTANT_WORD_PATTERN:new RegExp("important$","i"),SUFFIX_BANG_PATTERN:/!$/,UNDERSCORE:"_",VARIABLE_REFERENCE_PATTERN:/var\(--.+\)$/};t.exports={all:function(e,t,n){var o,i,a,s=[];for(a=e.length-1;a>=0;a--)(i=e[a])[0]==d.PROPERTY&&(!t&&r(i)||n&&n.indexOf(i[1][1])>-1||((o=f(i)).all=e,o.position=a,s.unshift(o)));return s},single:f}},{"../tokenizer/marker":83,"../tokenizer/token":84,"./hack":8}],59:[function(e,t,n){function r(e,t){for(var n in e){var o=e[n];"object"!=typeof o||Array.isArray(o)?t[n]=n in t?t[n]:o:t[n]=r(o,t[n]||{})}return t}function o(e){if("object"==typeof e)return e;if(!/[,\+\-]/.test(e))return i[e]||i["*"];var t=e.split(","),n=t[0]in i?i[t.shift()]:i["*"];return e={},t.forEach(function(t){var n="+"==t[0],r=t.substring(1).split("."),o=r[0],i=r[1];e[o]=e[o]||{},e[o][i]=n}),r(n,e)}var i={"*":{colors:{opacity:!0},properties:{backgroundClipMerging:!0,backgroundOriginMerging:!0,backgroundSizeMerging:!0,colors:!0,ieBangHack:!1,ieFilters:!1,iePrefixHack:!1,ieSuffixHack:!1,merging:!0,shorterLengthUnits:!1,spaceAfterClosingBrace:!0,urlQuotes:!1,zeroUnits:!0},selectors:{adjacentSpace:!1,ie7Hack:!1,mergeablePseudoClasses:[":active",":after",":before",":empty",":checked",":disabled",":empty",":enabled",":first-child",":first-letter",":first-line",":first-of-type",":focus",":hover",":lang",":last-child",":last-of-type",":link",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type",":only-child",":only-of-type",":root",":target",":visited"],mergeablePseudoElements:["::after","::before","::first-letter","::first-line"],mergeLimit:8191,multiplePseudoMerging:!0},units:{ch:!0,in:!0,pc:!0,pt:!0,rem:!0,vh:!0,vm:!0,vmax:!0,vmin:!0,vw:!0}}};i.ie11=i["*"],i.ie10=i["*"],i.ie9=r(i["*"],{properties:{ieFilters:!0,ieSuffixHack:!0}}),i.ie8=r(i.ie9,{colors:{opacity:!1},properties:{backgroundClipMerging:!1,backgroundOriginMerging:!1,backgroundSizeMerging:!1,iePrefixHack:!0,merging:!1},selectors:{mergeablePseudoClasses:[":after",":before",":first-child",":first-letter",":focus",":hover",":visited"],mergeablePseudoElements:[]},units:{ch:!1,rem:!1,vh:!1,vm:!1,vmax:!1,vmin:!1,vw:!1}}),i.ie7=r(i.ie8,{properties:{ieBangHack:!0},selectors:{ie7Hack:!0,mergeablePseudoClasses:[":first-child",":first-letter",":hover",":visited"]}}),t.exports=function(e){return r(i["*"],o(e))}},{}],60:[function(e,t,n){var r=e("../reader/load-remote-resource");t.exports=function(e){return e||r}},{"../reader/load-remote-resource":74}],61:[function(e,t,n){function r(e){var t={};return t[c.AfterAtRule]=e,t[c.AfterBlockBegins]=e,t[c.AfterBlockEnds]=e,t[c.AfterComment]=e,t[c.AfterProperty]=e,t[c.AfterRuleBegins]=e,t[c.AfterRuleEnds]=e,t[c.BeforeBlockEnds]=e,t[c.BetweenSelectors]=e,t}function o(e){var t={};return t[p.AroundSelectorRelation]=e,t[p.BeforeBlockBegins]=e,t[p.BeforeValue]=e,t}function i(e){return e.split(g).reduce(function(e,t){var n=t.split(v),r=n[0],o=n[1];return"breaks"==r||"spaces"==r?e[r]=a(o):"indentBy"==r||"wrapAt"==r?e[r]=parseInt(o):"indentWith"==r&&(e[r]=u(o)),e},{})}function a(e){return e.split(b).reduce(function(e,t){var n=t.split(y),r=n[0],o=n[1];return e[r]=s(o),e},{})}function s(e){switch(e){case _:case w:return!1;case E:case A:return!0;default:return e}}function u(e){switch(e){case"space":return f.Space;case"tab":return f.Tab;default:return e}}var l=e("../utils/override"),c={AfterAtRule:"afterAtRule",AfterBlockBegins:"afterBlockBegins",AfterBlockEnds:"afterBlockEnds",AfterComment:"afterComment",AfterProperty:"afterProperty",AfterRuleBegins:"afterRuleBegins",AfterRuleEnds:"afterRuleEnds",BeforeBlockEnds:"beforeBlockEnds",BetweenSelectors:"betweenSelectors"},f={Space:" ",Tab:"\t"},p={AroundSelectorRelation:"aroundSelectorRelation",BeforeBlockBegins:"beforeBlockBegins",BeforeValue:"beforeValue"},h={breaks:r(!1),indentBy:0,indentWith:f.Space,spaces:o(!1),wrapAt:!1},d="beautify",m="keep-breaks",g=";",v=":",b=",",y="=",_="false",w="off",E="true",A="on";t.exports={Breaks:c,Spaces:p,formatFrom:function(e){return void 0!==e&&!1!==e&&("object"==typeof e&&"indentBy"in e&&(e=l(e,{indentBy:parseInt(e.indentBy)})),"object"==typeof e&&"indentWith"in e&&(e=l(e,{indentWith:u(e.indentWith)})),"object"==typeof e?l(h,e):"object"==typeof e?l(h,e):"string"==typeof e&&e==d?l(h,{breaks:r(!0),indentBy:2,spaces:o(!0)}):"string"==typeof e&&e==m?l(h,{breaks:{afterAtRule:!0,afterBlockBegins:!0,afterBlockEnds:!0,afterComment:!0,afterRuleEnds:!0,beforeBlockEnds:!0}}):"string"==typeof e?l(h,i(e)):h)}}},{"../utils/override":95}],62:[function(e,t,n){(function(n){function r(e){return e?{hostname:o.parse(e).hostname,port:parseInt(o.parse(e).port)}:{}}var o=e("url"),i=e("../utils/override");t.exports=function(e){return i(r(n.env.HTTP_PROXY||n.env.http_proxy),e||{})}}).call(this,e("_process"))},{"../utils/override":95,_process:113,url:162}],63:[function(e,t,n){var r=5e3;t.exports=function(e){return e||r}},{}],64:[function(e,t,n){t.exports=function(e){return Array.isArray(e)?e:!1===e?["none"]:void 0===e?["local"]:e.split(",")}},{}],65:[function(e,t,n){function r(e,t){var n,r=u(c[e],{});for(n in r)"boolean"==typeof r[n]&&(r[n]=t);return r}function o(e){switch(e){case h:case d:return!1;case m:case g:return!0;default:return e}}function i(e){var t,n,r=u(e,{});for(n=0;n<=2;n++)(t=""+n)in r&&(void 0===r[t]||!1===r[t])&&delete r[t],t in r&&!0===r[t]&&(r[t]={}),t in r&&"string"==typeof r[t]&&(r[t]=a(r[t],t));return r}function a(e,t){return e.split(b).reduce(function(e,n){var i=n.split(y),a=i[0],s=o(i[1]);return f==a||p==a?e=u(e,r(t,s)):e[a]=s,e},{})}var s=e("./rounding-precision").roundingPrecisionFrom,u=e("../utils/override"),l={Zero:"0",One:"1",Two:"2"},c={};c[l.Zero]={},c[l.One]={cleanupCharsets:!0,normalizeUrls:!0,optimizeBackground:!0,optimizeBorderRadius:!0,optimizeFilter:!0,optimizeFontWeight:!0,optimizeOutline:!0,removeEmpty:!0,removeNegativePaddings:!0,removeQuotes:!0,removeWhitespace:!0,replaceMultipleZeros:!0,replaceTimeUnits:!0,replaceZeroUnits:!0,roundingPrecision:s(void 0),selectorsSortingMethod:"standard",specialComments:"all",tidyAtRules:!0,tidyBlockScopes:!0,tidySelectors:!0,transform:function(){}},c[l.Two]={mergeAdjacentRules:!0,mergeIntoShorthands:!0,mergeMedia:!0,mergeNonAdjacentRules:!0,mergeSemantically:!1,overrideProperties:!0,removeEmpty:!0,reduceNonAdjacentRules:!0,removeDuplicateFontRules:!0,removeDuplicateMediaBlocks:!0,removeDuplicateRules:!0,removeUnusedAtRules:!1,restructureRules:!1,skipProperties:[]};var f="*",p="all",h="false",d="off",m="true",g="on",v=",",b=";",y=":";t.exports={OptimizationLevel:l,optimizationLevelFrom:function(e){var t=u(c,{}),n=l.Zero,a=l.One,h=l.Two;return void 0===e?(delete t[h],t):("string"==typeof e&&(e=parseInt(e)),"number"==typeof e&&e===parseInt(h)?t:"number"==typeof e&&e===parseInt(a)?(delete t[h],t):"number"==typeof e&&e===parseInt(n)?(delete t[h],delete t[a],t):("object"==typeof e&&(e=i(e)),a in e&&"roundingPrecision"in e[a]&&(e[a].roundingPrecision=s(e[a].roundingPrecision)),h in e&&"skipProperties"in e[h]&&"string"==typeof e[h].skipProperties&&(e[h].skipProperties=e[h].skipProperties.split(v)),(n in e||a in e||h in e)&&(t[n]=u(t[n],e[n])),a in e&&f in e[a]&&(t[a]=u(t[a],r(a,o(e[a][f]))),delete e[a][f]),a in e&&p in e[a]&&(t[a]=u(t[a],r(a,o(e[a][p]))),delete e[a][p]),a in e||h in e?t[a]=u(t[a],e[a]):delete t[a],h in e&&f in e[h]&&(t[h]=u(t[h],r(h,o(e[h][f]))),delete e[h][f]),h in e&&p in e[h]&&(t[h]=u(t[h],r(h,o(e[h][p]))),delete e[h][p]),h in e?t[h]=u(t[h],e[h]):delete t[h],t))}}},{"../utils/override":95,"./rounding-precision":68}],66:[function(e,t,n){(function(n){var r=e("path");t.exports=function(e){return e?r.resolve(e):n.cwd()}}).call(this,e("_process"))},{_process:113,path:111}],67:[function(e,t,n){t.exports=function(e){return void 0===e||!!e}},{}],68:[function(e,t,n){function r(e){return{ch:e,cm:e,em:e,ex:e,in:e,mm:e,pc:e,pt:e,px:e,q:e,rem:e,vh:e,vmax:e,vmin:e,vw:e,"%":e}}function o(e){return null===e||void 0===e?{}:"boolean"==typeof e?{}:"number"==typeof e&&-1==e?r(u):"number"==typeof e?r(e):"string"==typeof e&&a.test(e)?r(parseInt(e)):"string"==typeof e&&e==u?r(u):"object"==typeof e?e:e.split(l).reduce(function(e,t){var n=t.split(c),o=n[0],a=parseInt(n[1]);return(isNaN(a)||-1==a)&&(a=u),s.indexOf(o)>-1?e=i(e,r(a)):e[o]=a,e},{})}var i=e("../utils/override"),a=/^\d+$/,s=["*","all"],u="off",l=",",c="=";t.exports={DEFAULT:u,roundingPrecisionFrom:function(e){return i(r(u),o(e))}}},{"../utils/override":95}],69:[function(e,t,n){(function(n,r){function o(e){var t,n,r,o=[],s=i(e.sourceTokens[0]);for(r=e.sourceTokens.length;e.index0?o(r):n(e)}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer)},{"../tokenizer/token":84,"../utils/has-protocol":88,"../utils/is-data-uri-resource":89,"../utils/is-remote-resource":93,"./is-allowed-resource":72,"./match-data-uri":75,"./rebase-local-map":78,"./rebase-remote-map":79,buffer:4,fs:3,path:111}],70:[function(e,t,n){var r=e("../utils/split"),o=/^\(/,i=/\)$/,a=/^@import/i,s=/['"]\s*/,u=/\s*['"]/,l=/^url\(\s*/i,c=/\s*\)/i;t.exports=function(e){var t,n,f,p;return f=e.replace(a,"").trim().replace(l,"(").replace(c,")").replace(s,"").replace(u,""),p=r(f," "),t=p[0].replace(o,"").replace(i,""),n=p.slice(1).join(" "),[t,n]}},{"../utils/split":96}],71:[function(e,t,n){function r(e){return e}function o(e,t){return t in e}function i(e,t,n,r){for(var o,s=t[0],u=t[1],l=t[2],c={line:s,column:u+n};!o&&c.column>u;)c.column--,o=e[l].originalPositionFor(c);return null===o.line&&s>1&&r>0?i(e,[s-1,u,l],n,r-1):null!==o.line?a(o):t}function a(e){return[e.line,e.column,e.source]}function s(e,t,n){e[t]=new u(n)}var u=e("source-map").SourceMapConsumer;t.exports=function(){var e={};return{all:r.bind(null,e),isTracking:o.bind(null,e),originalPositionFor:i.bind(null,e),track:s.bind(null,e)}}},{"source-map":155}],72:[function(e,t,n){function r(e,t,n){var s,c,f,p,h,d,m=!t;if(0===n.length)return!1;for(t&&!u(e)&&(e=l+e),s=t?a.parse(e).host:e,c=t?e:i.resolve(e),d=0;d399)return f(o.statusCode,null);if(o.statusCode>299)return i=a.resolve(e,o.headers.location),r(i,t,n,f);o.on("data",function(e){s.push(e.toString())}),o.on("end",function(){var e=s.join("");f(null,e)})}}).on("error",function(e){d||(d=!0,f(e.message,null))}).on("timeout",function(){d||(d=!0,f("timeout",null))}).setTimeout(n)}var o=e("http"),i=e("https"),a=e("url"),s=e("../utils/is-http-resource"),u=e("../utils/is-https-resource"),l=e("../utils/override"),c="http:";t.exports=r},{"../utils/is-http-resource":90,"../utils/is-https-resource":91,"../utils/override":95,http:156,https:104,url:162}],75:[function(e,t,n){var r=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;t.exports=function(e){return r.exec(e)}},{}],76:[function(e,t,n){var r="/",o=/\\/g;t.exports=function(e){return e.replace(o,r)}},{}],77:[function(e,t,n){(function(n,r){function o(e,t,r){return"string"==typeof e?i(e,t,r):n.isBuffer(e)?i(e.toString(),t,r):Array.isArray(e)?a(e,t,r):"object"==typeof e?s(e,t,r):void 0}function i(e,t,n){return t.source=void 0,t.sourcesContent[void 0]=e,t.stats.originalSize+=e.length,h(e,t,{inline:t.options.inline},n)}function a(e,t,n){return h(e.reduce(function(e,n){return"string"==typeof n?u(n,e):l(n,t,e)},[]).join(""),t,{inline:["all"]},n)}function s(e,t,n){return h(l(e,t,[]).join(""),t,{inline:["all"]},n)}function u(e,t){return t.push(p(c(e))),t}function l(e,t,n){var r,o,i;for(r in e)i=e[r],o=c(r),n.push(p(o)),t.sourcesContent[o]=i.styles,i.sourceMap&&f(i.sourceMap,o,t);return n}function c(e){var t,n,r=E.resolve("");return N(e)?e:(t=E.isAbsolute(e)?e:E.resolve(e),n=E.relative(r,t),O(n))}function f(e,t,n){var r="string"==typeof e?JSON.parse(e):e,o=N(t)?D(r,t):B(r,t||P,n.options.rebaseTo);n.inputSourceMapTracker.track(t,o)}function p(e){return T("url("+e+")","")+L.SEMICOLON}function h(e,t,n,r){var o,i={};return t.source?N(t.source)?(i.fromBase=t.source,i.toBase=t.source):E.isAbsolute(t.source)?(i.fromBase=E.dirname(t.source),i.toBase=t.options.rebaseTo):(i.fromBase=E.dirname(E.resolve(t.source)),i.toBase=t.options.rebaseTo):(i.fromBase=E.resolve(""),i.toBase=t.options.rebaseTo),o=R(e,t),o=S(o,t.options.rebase,t.validator,i),d(n.inline)?m(o,t,n,r):r(o)}function d(e){return!(1==e.length&&"none"==e[0])}function m(e,t,n,r){return g({afterContent:!1,callback:r,errors:t.errors,externalContext:t,fetch:t.options.fetch,inlinedStylesheets:n.inlinedStylesheets||t.inlinedStylesheets,inline:n.inline,inlineRequest:t.options.inlineRequest,inlineTimeout:t.options.inlineTimeout,isRemote:n.isRemote||!1,localOnly:t.localOnly,outputTokens:[],rebaseTo:t.options.rebaseTo,sourceTokens:e,warnings:t.warnings})}function g(e){var t,n,r;for(n=0,r=e.sourceTokens.length;n-1?(o.warnings.push('Ignoring remote @import of "'+e+'" as it has already been imported.'),o.sourceTokens=o.sourceTokens.slice(1),g(o)):o.localOnly&&o.afterContent?(o.warnings.push('Ignoring remote @import of "'+e+'" as no callback given and after other content.'),o.sourceTokens=o.sourceTokens.slice(1),g(o)):l?(o.warnings.push('Skipping remote @import of "'+e+'" as no protocol given.'),o.outputTokens=o.outputTokens.concat(o.sourceTokens.slice(0,1)),o.sourceTokens=o.sourceTokens.slice(1),g(o)):o.localOnly&&!u?(o.warnings.push('Skipping remote @import of "'+e+'" as no callback given.'),o.outputTokens=o.outputTokens.concat(o.sourceTokens.slice(0,1)),o.sourceTokens=o.sourceTokens.slice(1),g(o)):!a&&o.afterContent?(o.warnings.push('Ignoring remote @import of "'+e+'" as resource is not allowed and after other content.'),o.sourceTokens=o.sourceTokens.slice(1),g(o)):a?(o.inlinedStylesheets.push(e),u?i(null,o.externalContext.sourcesContent[e]):o.fetch(e,o.inlineRequest,o.inlineTimeout,i)):(o.warnings.push('Skipping remote @import of "'+e+'" as resource is not allowed.'),o.outputTokens=o.outputTokens.concat(o.sourceTokens.slice(0,1)),o.sourceTokens=o.sourceTokens.slice(1),g(o))}function y(e,t,n,r){var o,i=E.resolve(""),a=E.isAbsolute(e)?E.resolve(i,"/"==e[0]?e.substring(1):e):E.resolve(r.rebaseTo,e),s=E.relative(i,a),u=C(e,!1,r.inline),l=O(s),c=l in r.externalContext.sourcesContent;if(r.inlinedStylesheets.indexOf(a)>-1)r.warnings.push('Ignoring local @import of "'+e+'" as it has already been imported.');else if(c||w.existsSync(a)&&w.statSync(a).isFile())if(!u&&r.afterContent)r.warnings.push('Ignoring local @import of "'+e+'" as resource is not allowed and after other content.');else if(r.afterContent)r.warnings.push('Ignoring local @import of "'+e+'" as after other content.');else{if(u)return o=c?r.externalContext.sourcesContent[l]:w.readFileSync(a,"utf-8"),r.inlinedStylesheets.push(a),r.inline=r.externalContext.options.inline,r.externalContext.source=l,r.externalContext.sourcesContent[l]=o,r.externalContext.stats.originalSize+=o.length,h(o,r.externalContext,r,function(e){return e=_(e,t,n),r.outputTokens=r.outputTokens.concat(e),r.sourceTokens=r.sourceTokens.slice(1),g(r)});r.warnings.push('Skipping local @import of "'+e+'" as resource is not allowed.'),r.outputTokens=r.outputTokens.concat(r.sourceTokens.slice(0,1))}else r.errors.push('Ignoring local @import of "'+e+'" as resource is missing.');return r.sourceTokens=r.sourceTokens.slice(1),g(r)}function _(e,t,n){return t?[[F.NESTED_BLOCK,[[F.NESTED_BLOCK_SCOPE,"@media "+t,n]],e]]:e}var w=e("fs"),E=e("path"),A=e("./apply-source-maps"),x=e("./extract-import-url-and-media"),C=e("./is-allowed-resource"),k=e("./load-original-sources"),O=e("./normalize-path"),S=e("./rebase"),B=e("./rebase-local-map"),D=e("./rebase-remote-map"),T=e("./restore-import"),R=e("../tokenizer/tokenize"),F=e("../tokenizer/token"),L=e("../tokenizer/marker"),M=e("../utils/has-protocol"),U=e("../utils/is-import"),N=e("../utils/is-remote-resource"),P="uri:unknown";t.exports=function(e,t,n){return o(e,t,function(e){return A(e,t,function(){return k(t,function(){return n(e)})})})}}).call(this,{isBuffer:e("../../../is-buffer/index.js")},e("_process"))},{"../../../is-buffer/index.js":107,"../tokenizer/marker":83,"../tokenizer/token":84,"../tokenizer/tokenize":85,"../utils/has-protocol":88,"../utils/is-import":92,"../utils/is-remote-resource":93,"./apply-source-maps":69,"./extract-import-url-and-media":70,"./is-allowed-resource":72,"./load-original-sources":73,"./normalize-path":76,"./rebase":80,"./rebase-local-map":78,"./rebase-remote-map":79,"./restore-import":81,_process:113,fs:3,path:111}],78:[function(e,t,n){var r=e("path");t.exports=function(e,t,n){var o=r.resolve(""),i=r.resolve(o,t),a=r.dirname(i);return e.sources=e.sources.map(function(e){return r.relative(n,r.resolve(a,e))}),e}},{path:111}],79:[function(e,t,n){var r=e("path"),o=e("url");t.exports=function(e,t){var n=r.dirname(t);return e.sources=e.sources.map(function(e){return o.resolve(n,e)}),e}},{path:111,url:162}],80:[function(e,t,n){function r(e,t,n){var o,u,l;for(u=0,l=e.length;u-1?v:e.indexOf(v)>-1?b:h(e)||d(e)?b:""}function h(e){return k.test(e)}function d(e){return A.test(e)}var m=e("path"),g=e("url"),v='"',b="'",y="url(",_=")",w=/^["']/,E=/["']$/,A=/[\(\)]/,x=/^url\(/i,C=/\)$/,k=/\s/,O="win32"==n.platform;t.exports=function(e,t,n){var o=e.replace(x,"").replace(C,"").trim(),i=o.replace(w,"").replace(E,"").trim(),a=o[0]==b||o[0]==v?o[0]:p(i);return n?r(i,t):y+a+r(i,t)+a+_}}).call(this,e("_process"))},{_process:113,path:111,url:162}],83:[function(e,t,n){var r={ASTERISK:"*",AT:"@",BACK_SLASH:"\\",CLOSE_CURLY_BRACKET:"}",CLOSE_ROUND_BRACKET:")",CLOSE_SQUARE_BRACKET:"]",COLON:":",COMMA:",",DOUBLE_QUOTE:'"',EXCLAMATION:"!",FORWARD_SLASH:"/",INTERNAL:"-clean-css-",NEW_LINE_NIX:"\n",NEW_LINE_WIN:"\r",OPEN_CURLY_BRACKET:"{",OPEN_ROUND_BRACKET:"(",OPEN_SQUARE_BRACKET:"[",SEMICOLON:";",SINGLE_QUOTE:"'",SPACE:" ",TAB:"\t",UNDERSCORE:"_"};t.exports=r},{}],84:[function(e,t,n){var r={AT_RULE:"at-rule",AT_RULE_BLOCK:"at-rule-block",AT_RULE_BLOCK_SCOPE:"at-rule-block-scope",COMMENT:"comment",NESTED_BLOCK:"nested-block",NESTED_BLOCK_SCOPE:"nested-block-scope",PROPERTY:"property",PROPERTY_BLOCK:"property-block",PROPERTY_NAME:"property-name",PROPERTY_VALUE:"property-value",RULE:"rule",RULE_SCOPE:"rule-scope"};t.exports=r},{}],85:[function(e,t,n){function r(e,t,n,h){for(var d,m,g,v,b,_,w,E,A,x,C,k,O,S=[],B=S,D=[],T=[],R=n.level,F=[],L=[],M=[],U=0,N=!1,P=!1,q=!1,z=!1,I=n.position;I.index1)T.push(v),L.push(j),M.push(L.slice(0,L.length-2)),L=L.slice(L.length-2),v=[I.line,I.column-1,I.source],F.push(R),R=p.COMMENT;else if(x)F.push(R),R=p.COMMENT,L.push(j);else if(C)b=L.join("").trim()+j,d=[c.COMMENT,b,[o(v,b,t)]],B.push(d),R=F.pop(),v=T.pop()||null,L=M.pop()||[];else if(k&&e[I.index+1]!=l.ASTERISK)t.warnings.push("Unexpected '*/' at "+f([I.line,I.column,I.source])+"."),L=[];else if(j!=l.SINGLE_QUOTE||_)if(j==l.SINGLE_QUOTE&&R==p.SINGLE_QUOTE)R=F.pop(),L.push(j);else if(j!=l.DOUBLE_QUOTE||_)if(j==l.DOUBLE_QUOTE&&R==p.DOUBLE_QUOTE)R=F.pop(),L.push(j);else if(!x&&!C&&j!=l.CLOSE_ROUND_BRACKET&&j!=l.OPEN_ROUND_BRACKET&&R!=p.COMMENT&&!_&&U>0)L.push(j);else if(j!=l.OPEN_ROUND_BRACKET||_||R==p.COMMENT||q)if(j!=l.CLOSE_ROUND_BRACKET||_||R==p.COMMENT||q)if(j==l.SEMICOLON&&R==p.BLOCK&&L[0]==l.AT)b=L.join("").trim(),S.push([c.AT_RULE,b,[o(v,b,t)]]),L=[];else if(j==l.COMMA&&R==p.BLOCK&&m)b=L.join("").trim(),m[1].push([a(m[0]),b,[o(v,b,t,m[1].length)]]),L=[];else if(j==l.COMMA&&R==p.BLOCK&&i(L)==c.AT_RULE)L.push(j);else if(j==l.COMMA&&R==p.BLOCK)m=[i(L),[],[]],b=L.join("").trim(),m[1].push([a(m[0]),b,[o(v,b,t,0)]]),L=[];else if(j==l.OPEN_CURLY_BRACKET&&R==p.BLOCK&&m&&m[0]==c.NESTED_BLOCK)b=L.join("").trim(),m[1].push([c.NESTED_BLOCK_SCOPE,b,[o(v,b,t)]]),S.push(m),F.push(R),I.column++,I.index++,L=[],m[2]=r(e,t,n,!0),m=null;else if(j==l.OPEN_CURLY_BRACKET&&R==p.BLOCK&&i(L)==c.NESTED_BLOCK)b=L.join("").trim(),(m=m||[c.NESTED_BLOCK,[],[]])[1].push([c.NESTED_BLOCK_SCOPE,b,[o(v,b,t)]]),S.push(m),F.push(R),I.column++,I.index++,L=[],m[2]=r(e,t,n,!0),m=null;else if(j==l.OPEN_CURLY_BRACKET&&R==p.BLOCK)b=L.join("").trim(),(m=m||[i(L),[],[]])[1].push([a(m[0]),b,[o(v,b,t,m[1].length)]]),B=m[2],S.push(m),F.push(R),R=p.RULE,L=[];else if(j==l.OPEN_CURLY_BRACKET&&R==p.RULE&&q)D.push(m),m=[c.PROPERTY_BLOCK,[]],g.push(m),B=m[1],F.push(R),R=p.RULE,q=!1;else if(j==l.OPEN_CURLY_BRACKET&&R==p.RULE&&s(L))b=L.join("").trim(),D.push(m),(m=[c.AT_RULE_BLOCK,[],[]])[1].push([c.AT_RULE_BLOCK_SCOPE,b,[o(v,b,t)]]),B.push(m),B=m[2],F.push(R),R=p.RULE,L=[];else if(j!=l.COLON||R!=p.RULE||q)if(j==l.SEMICOLON&&R==p.RULE&&g&&D.length>0&&L.length>0&&L[0]==l.AT)b=L.join("").trim(),m[1].push([c.AT_RULE,b,[o(v,b,t)]]),L=[];else if(j==l.SEMICOLON&&R==p.RULE&&g&&L.length>0)b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g=null,q=!1,L=[];else if(j==l.SEMICOLON&&R==p.RULE&&g&&0===L.length)g=null,q=!1;else if(j==l.SEMICOLON&&R==p.RULE&&L.length>0&&L[0]==l.AT)b=L.join(""),B.push([c.AT_RULE,b,[o(v,b,t)]]),q=!1,L=[];else if(j==l.SEMICOLON&&R==p.RULE&&z)z=!1,L=[];else if(j==l.SEMICOLON&&R==p.RULE&&0===L.length);else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&q&&L.length>0&&D.length>0)b=L.join(""),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g=null,B=(m=D.pop())[2],R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&L.length>0&&L[0]==l.AT&&D.length>0)b=L.join(""),m[1].push([c.AT_RULE,b,[o(v,b,t)]]),g=null,B=(m=D.pop())[2],R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&D.length>0)g=null,B=(m=D.pop())[2],R=F.pop(),q=!1;else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&L.length>0)b=L.join(""),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g=null,m=D.pop(),B=S,R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&L.length>0&&L[0]==l.AT)g=null,m=null,b=L.join("").trim(),B.push([c.AT_RULE,b,[o(v,b,t)]]),B=S,R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&F[F.length-1]==p.RULE)g=null,B=(m=D.pop())[2],R=F.pop(),q=!1,z=!0,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE)g=null,m=null,B=S,R=F.pop(),q=!1;else if(j==l.CLOSE_CURLY_BRACKET&&R==p.BLOCK&&!h&&I.index<=e.length-1)t.warnings.push("Unexpected '}' at "+f([I.line,I.column,I.source])+"."),L.push(j);else{if(j==l.CLOSE_CURLY_BRACKET&&R==p.BLOCK)break;j==l.OPEN_ROUND_BRACKET&&R==p.RULE&&q?(L.push(j),U++):j==l.CLOSE_ROUND_BRACKET&&R==p.RULE&&q&&1==U?(L.push(j),b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),U--,L=[]):j==l.CLOSE_ROUND_BRACKET&&R==p.RULE&&q?(L.push(j),U--):j==l.FORWARD_SLASH&&e[I.index+1]!=l.ASTERISK&&R==p.RULE&&q&&L.length>0?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.FORWARD_SLASH&&e[I.index+1]!=l.ASTERISK&&R==p.RULE&&q?(g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.COMMA&&R==p.RULE&&q&&L.length>0?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.COMMA&&R==p.RULE&&q?(g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.CLOSE_SQUARE_BRACKET&&g&&g.length>1&&L.length>0&&u(L)?(L.push(j),b=L.join("").trim(),g[g.length-1][1]+=b,L=[]):(w||E&&!A)&&R==p.RULE&&q&&g&&L.length>0?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),L=[]):A&&R==p.RULE&&q&&g&&L.length>1?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),L=[]):A&&R==p.RULE&&q?L=[]:1==L.length&&A?L.pop():(L.length>0||!w&&!E&&!A)&&L.push(j)}else b=L.join("").trim(),g=[c.PROPERTY,[c.PROPERTY_NAME,b,[o(v,b,t)]]],B.push(g),q=!0,L=[];else L.push(j),U--;else L.push(j),U++;else F.push(R),R=p.DOUBLE_QUOTE,L.push(j);else F.push(R),R=p.SINGLE_QUOTE,L.push(j);else L.push(j);O=!O&&j==l.BACK_SLASH,N=x,P=C,I.line=A||E?I.line+1:I.line,I.column=A||E?0:I.column+1}return q&&t.warnings.push("Missing '}' at "+f([I.line,I.column,I.source])+"."),q&&L.length>0&&(b=L.join("").replace(y,""),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),L=[]),L.length>0&&t.warnings.push("Invalid character(s) '"+L.join("")+"' at "+f(v)+". Ignoring."),S}function o(e,t,n,r){var o=e[2];return n.inputSourceMapTracker.isTracking(o)?n.inputSourceMapTracker.originalPositionFor(e,t.length,r):e}function i(e){var t=e[0]==l.AT||e[0]==l.UNDERSCORE,n=e.join("").split(b)[0];return t&&d.indexOf(n)>-1?c.NESTED_BLOCK:t&&h.indexOf(n)>-1?c.AT_RULE:t?c.AT_RULE_BLOCK:c.RULE}function a(e){return e==c.RULE?c.RULE_SCOPE:e==c.NESTED_BLOCK?c.NESTED_BLOCK_SCOPE:e==c.AT_RULE_BLOCK?c.AT_RULE_BLOCK_SCOPE:void 0}function s(e){var t=e.join("").trim();return m.indexOf(t)>-1||g.indexOf(t)>-1}function u(e){return v.test(e.join("")+l.CLOSE_SQUARE_BRACKET)}var l=e("./marker"),c=e("./token"),f=e("../utils/format-position"),p={BLOCK:"block",COMMENT:"comment",DOUBLE_QUOTE:"double-quote",RULE:"rule",SINGLE_QUOTE:"single-quote"},h=["@charset","@import"],d=["@-moz-document","@document","@-moz-keyframes","@-ms-keyframes","@-o-keyframes","@-webkit-keyframes","@keyframes","@media","@supports"],m=["@bottom-center","@bottom-left","@bottom-left-corner","@bottom-right","@bottom-right-corner","@left-bottom","@left-middle","@left-top","@right-bottom","@right-middle","@right-top","@top-center","@top-left","@top-left-corner","@top-right","@top-right-corner"],g=["@footnote","@footnotes","@left","@page-float-bottom","@page-float-top","@right"],v=/^\[\s*\d+\s*\]$/,b=/[\s\(]/,y=/[\s|\}]*$/;t.exports=function(e,t){return r(e,t,{level:p.BLOCK,position:{source:t.source||void 0,line:1,column:0,index:0}},!1)}},{"../utils/format-position":87,"./marker":83,"./token":84}],86:[function(e,t,n){function r(e){for(var t=e.slice(0),n=0,o=t.length;ni?1:-1;return u.length>l.length?1:u.length==l.length?0:-1}},{}],95:[function(e,t,n){function r(e,t){var n,o,i,a={};for(n in e)i=e[n],Array.isArray(i)?a[n]=i.slice(0):a[n]="object"==typeof i&&null!==i?r(i,{}):i;for(o in t)i=t[o],o in a&&Array.isArray(i)?a[o]=i.slice(0):a[o]=o in a&&"object"==typeof i&&null!==i?r(a[o],i):i;return a}t.exports=r},{}],96:[function(e,t,n){var r=e("../tokenizer/marker");t.exports=function(e,t){var n,o=r.OPEN_ROUND_BRACKET,i=r.CLOSE_ROUND_BRACKET,a=0,s=0,u=0,l=e.length,c=[];if(-1==e.indexOf(t))return[e];if(-1==e.indexOf(o))return e.split(t);for(;s0&&s+1=0&&e[t][0]==B.COMMENT;t--);return t}function d(e,t,n,r){var o=e.store,i=t[n],a=i[2][0]==B.PROPERTY_BLOCK,s=ne.format.wrapAt&&(i(e,s),e.output.push(s))}function i(e,t){var n=t.split("\n");e.line+=n.length-1,e.column=n.length>1?0:e.column+n.pop().length}var a=e("./helpers").all,s=e("os").EOL;t.exports=function(e,t){var n={column:0,format:t.options.format,indentBy:0,indentWith:"",line:1,output:[],spaceAfterClosingBrace:t.options.compatibility.properties.spaceAfterClosingBrace,store:r,wrap:t.options.format.wrapAt?o:function(){}};return a(n,e),{styles:n.output.join("")}}},{"./helpers":97,os:110}],100:[function(e,t,n){(function(n){function r(e,t){var n="string"==typeof t,r=n?t:t[1],o=n?null:t[2];(0,e.wrap)(e,r),i(e,r,o),e.output.push(r)}function o(e,t){e.column+t.length>e.format.wrapAt&&(i(e,c,!1),e.output.push(c))}function i(e,t,n){var r=t.split("\n");n&&a(e,n),e.line+=r.length-1,e.column=r.length>1?0:e.column+r.pop().length}function a(e,t){for(var n=0,r=t.length;n0&&this._events[e].length>n&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},r.prototype.on=r.prototype.addListener,r.prototype.once=function(e,t){function n(){this.removeListener(e,n),r||(r=!0,t.apply(this,arguments))}if(!o(t))throw TypeError("listener must be a function");var r=!1;return n.listener=t,this.on(e,n),this},r.prototype.removeListener=function(e,t){var n,r,i,s;if(!o(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(n=this._events[e],i=n.length,r=-1,n===t||o(n.listener)&&n.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(a(n)){for(s=i;s-- >0;)if(n[s]===t||n[s].listener&&n[s].listener===t){r=s;break}if(r<0)return this;1===n.length?(n.length=0,delete this._events[e]):n.splice(r,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},r.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(n=this._events[e],o(n))this.removeListener(e,n);else if(n)for(;n.length;)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},r.prototype.listeners=function(e){return this._events&&this._events[e]?o(this._events[e])?[this._events[e]]:this._events[e].slice():[]},r.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(o(t))return 1;if(t)return t.length}return 0},r.listenerCount=function(e,t){return e.listenerCount(t)}},{}],103:[function(e,t,n){(function(e){!function(r){var o="object"==typeof n&&n,i="object"==typeof t&&t&&t.exports==o&&t,a="object"==typeof e&&e;a.global!==a&&a.window!==a||(r=a);var s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,u=/[\x01-\x7F]/g,l=/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g,c=/<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g,f={"­":"shy","‌":"zwnj","‍":"zwj","‎":"lrm","⁣":"ic","⁢":"it","⁡":"af","‏":"rlm","​":"ZeroWidthSpace","⁠":"NoBreak","̑":"DownBreve","⃛":"tdot","⃜":"DotDot","\t":"Tab","\n":"NewLine"," ":"puncsp"," ":"MediumSpace"," ":"thinsp"," ":"hairsp"," ":"emsp13"," ":"ensp"," ":"emsp14"," ":"emsp"," ":"numsp"," ":"nbsp","  ":"ThickSpace","‾":"oline",_:"lowbar","‐":"dash","–":"ndash","—":"mdash","―":"horbar",",":"comma",";":"semi","⁏":"bsemi",":":"colon","⩴":"Colone","!":"excl","¡":"iexcl","?":"quest","¿":"iquest",".":"period","‥":"nldr","…":"mldr","·":"middot","'":"apos","‘":"lsquo","’":"rsquo","‚":"sbquo","‹":"lsaquo","›":"rsaquo",'"':"quot","“":"ldquo","”":"rdquo","„":"bdquo","«":"laquo","»":"raquo","(":"lpar",")":"rpar","[":"lsqb","]":"rsqb","{":"lcub","}":"rcub","⌈":"lceil","⌉":"rceil","⌊":"lfloor","⌋":"rfloor","⦅":"lopar","⦆":"ropar","⦋":"lbrke","⦌":"rbrke","⦍":"lbrkslu","⦎":"rbrksld","⦏":"lbrksld","⦐":"rbrkslu","⦑":"langd","⦒":"rangd","⦓":"lparlt","⦔":"rpargt","⦕":"gtlPar","⦖":"ltrPar","⟦":"lobrk","⟧":"robrk","⟨":"lang","⟩":"rang","⟪":"Lang","⟫":"Rang","⟬":"loang","⟭":"roang","❲":"lbbrk","❳":"rbbrk","‖":"Vert","§":"sect","¶":"para","@":"commat","*":"ast","/":"sol",undefined:null,"&":"amp","#":"num","%":"percnt","‰":"permil","‱":"pertenk","†":"dagger","‡":"Dagger","•":"bull","⁃":"hybull","′":"prime","″":"Prime","‴":"tprime","⁗":"qprime","‵":"bprime","⁁":"caret","`":"grave","´":"acute","˜":"tilde","^":"Hat","¯":"macr","˘":"breve","˙":"dot","¨":"die","˚":"ring","˝":"dblac","¸":"cedil","˛":"ogon","ˆ":"circ","ˇ":"caron","°":"deg","©":"copy","®":"reg","℗":"copysr","℘":"wp","℞":"rx","℧":"mho","℩":"iiota","←":"larr","↚":"nlarr","→":"rarr","↛":"nrarr","↑":"uarr","↓":"darr","↔":"harr","↮":"nharr","↕":"varr","↖":"nwarr","↗":"nearr","↘":"searr","↙":"swarr","↝":"rarrw","↝̸":"nrarrw","↞":"Larr","↟":"Uarr","↠":"Rarr","↡":"Darr","↢":"larrtl","↣":"rarrtl","↤":"mapstoleft","↥":"mapstoup","↦":"map","↧":"mapstodown","↩":"larrhk","↪":"rarrhk","↫":"larrlp","↬":"rarrlp","↭":"harrw","↰":"lsh","↱":"rsh","↲":"ldsh","↳":"rdsh","↵":"crarr","↶":"cularr","↷":"curarr","↺":"olarr","↻":"orarr","↼":"lharu","↽":"lhard","↾":"uharr","↿":"uharl","⇀":"rharu","⇁":"rhard","⇂":"dharr","⇃":"dharl","⇄":"rlarr","⇅":"udarr","⇆":"lrarr","⇇":"llarr","⇈":"uuarr","⇉":"rrarr","⇊":"ddarr","⇋":"lrhar","⇌":"rlhar","⇐":"lArr","⇍":"nlArr","⇑":"uArr","⇒":"rArr","⇏":"nrArr","⇓":"dArr","⇔":"iff","⇎":"nhArr","⇕":"vArr","⇖":"nwArr","⇗":"neArr","⇘":"seArr","⇙":"swArr","⇚":"lAarr","⇛":"rAarr","⇝":"zigrarr","⇤":"larrb","⇥":"rarrb","⇵":"duarr","⇽":"loarr","⇾":"roarr","⇿":"hoarr","∀":"forall","∁":"comp","∂":"part","∂̸":"npart","∃":"exist","∄":"nexist","∅":"empty","∇":"Del","∈":"in","∉":"notin","∋":"ni","∌":"notni","϶":"bepsi","∏":"prod","∐":"coprod","∑":"sum","+":"plus","±":"pm","÷":"div","×":"times","<":"lt","≮":"nlt","<⃒":"nvlt","=":"equals","≠":"ne","=⃥":"bne","⩵":"Equal",">":"gt","≯":"ngt",">⃒":"nvgt","¬":"not","|":"vert","¦":"brvbar","−":"minus","∓":"mp","∔":"plusdo","⁄":"frasl","∖":"setmn","∗":"lowast","∘":"compfn","√":"Sqrt","∝":"prop","∞":"infin","∟":"angrt","∠":"ang","∠⃒":"nang","∡":"angmsd","∢":"angsph","∣":"mid","∤":"nmid","∥":"par","∦":"npar","∧":"and","∨":"or","∩":"cap","∩︀":"caps","∪":"cup","∪︀":"cups","∫":"int","∬":"Int","∭":"tint","⨌":"qint","∮":"oint","∯":"Conint","∰":"Cconint","∱":"cwint","∲":"cwconint","∳":"awconint","∴":"there4","∵":"becaus","∶":"ratio","∷":"Colon","∸":"minusd","∺":"mDDot","∻":"homtht","∼":"sim","≁":"nsim","∼⃒":"nvsim","∽":"bsim","∽̱":"race","∾":"ac","∾̳":"acE","∿":"acd","≀":"wr","≂":"esim","≂̸":"nesim","≃":"sime","≄":"nsime","≅":"cong","≇":"ncong","≆":"simne","≈":"ap","≉":"nap","≊":"ape","≋":"apid","≋̸":"napid","≌":"bcong","≍":"CupCap","≭":"NotCupCap","≍⃒":"nvap","≎":"bump","≎̸":"nbump","≏":"bumpe","≏̸":"nbumpe","≐":"doteq","≐̸":"nedot","≑":"eDot","≒":"efDot","≓":"erDot","≔":"colone","≕":"ecolon","≖":"ecir","≗":"cire","≙":"wedgeq","≚":"veeeq","≜":"trie","≟":"equest","≡":"equiv","≢":"nequiv","≡⃥":"bnequiv","≤":"le","≰":"nle","≤⃒":"nvle","≥":"ge","≱":"nge","≥⃒":"nvge","≦":"lE","≦̸":"nlE","≧":"gE","≧̸":"ngE","≨︀":"lvnE","≨":"lnE","≩":"gnE","≩︀":"gvnE","≪":"ll","≪̸":"nLtv","≪⃒":"nLt","≫":"gg","≫̸":"nGtv","≫⃒":"nGt","≬":"twixt","≲":"lsim","≴":"nlsim","≳":"gsim","≵":"ngsim","≶":"lg","≸":"ntlg","≷":"gl","≹":"ntgl","≺":"pr","⊀":"npr","≻":"sc","⊁":"nsc","≼":"prcue","⋠":"nprcue","≽":"sccue","⋡":"nsccue","≾":"prsim","≿":"scsim","≿̸":"NotSucceedsTilde","⊂":"sub","⊄":"nsub","⊂⃒":"vnsub","⊃":"sup","⊅":"nsup","⊃⃒":"vnsup","⊆":"sube","⊈":"nsube","⊇":"supe","⊉":"nsupe","⊊︀":"vsubne","⊊":"subne","⊋︀":"vsupne","⊋":"supne","⊍":"cupdot","⊎":"uplus","⊏":"sqsub","⊏̸":"NotSquareSubset","⊐":"sqsup","⊐̸":"NotSquareSuperset","⊑":"sqsube","⋢":"nsqsube","⊒":"sqsupe","⋣":"nsqsupe","⊓":"sqcap","⊓︀":"sqcaps","⊔":"sqcup","⊔︀":"sqcups","⊕":"oplus","⊖":"ominus","⊗":"otimes","⊘":"osol","⊙":"odot","⊚":"ocir","⊛":"oast","⊝":"odash","⊞":"plusb","⊟":"minusb","⊠":"timesb","⊡":"sdotb","⊢":"vdash","⊬":"nvdash","⊣":"dashv","⊤":"top","⊥":"bot","⊧":"models","⊨":"vDash","⊭":"nvDash","⊩":"Vdash","⊮":"nVdash","⊪":"Vvdash","⊫":"VDash","⊯":"nVDash","⊰":"prurel","⊲":"vltri","⋪":"nltri","⊳":"vrtri","⋫":"nrtri","⊴":"ltrie","⋬":"nltrie","⊴⃒":"nvltrie","⊵":"rtrie","⋭":"nrtrie","⊵⃒":"nvrtrie","⊶":"origof","⊷":"imof","⊸":"mumap","⊹":"hercon","⊺":"intcal","⊻":"veebar","⊽":"barvee","⊾":"angrtvb","⊿":"lrtri","⋀":"Wedge","⋁":"Vee","⋂":"xcap","⋃":"xcup","⋄":"diam","⋅":"sdot","⋆":"Star","⋇":"divonx","⋈":"bowtie","⋉":"ltimes","⋊":"rtimes","⋋":"lthree","⋌":"rthree","⋍":"bsime","⋎":"cuvee","⋏":"cuwed","⋐":"Sub","⋑":"Sup","⋒":"Cap","⋓":"Cup","⋔":"fork","⋕":"epar","⋖":"ltdot","⋗":"gtdot","⋘":"Ll","⋘̸":"nLl","⋙":"Gg","⋙̸":"nGg","⋚︀":"lesg","⋚":"leg","⋛":"gel","⋛︀":"gesl","⋞":"cuepr","⋟":"cuesc","⋦":"lnsim","⋧":"gnsim","⋨":"prnsim","⋩":"scnsim","⋮":"vellip","⋯":"ctdot","⋰":"utdot","⋱":"dtdot","⋲":"disin","⋳":"isinsv","⋴":"isins","⋵":"isindot","⋵̸":"notindot","⋶":"notinvc","⋷":"notinvb","⋹":"isinE","⋹̸":"notinE","⋺":"nisd","⋻":"xnis","⋼":"nis","⋽":"notnivc","⋾":"notnivb","⌅":"barwed","⌆":"Barwed","⌌":"drcrop","⌍":"dlcrop","⌎":"urcrop","⌏":"ulcrop","⌐":"bnot","⌒":"profline","⌓":"profsurf","⌕":"telrec","⌖":"target","⌜":"ulcorn","⌝":"urcorn","⌞":"dlcorn","⌟":"drcorn","⌢":"frown","⌣":"smile","⌭":"cylcty","⌮":"profalar","⌶":"topbot","⌽":"ovbar","⌿":"solbar","⍼":"angzarr","⎰":"lmoust","⎱":"rmoust","⎴":"tbrk","⎵":"bbrk","⎶":"bbrktbrk","⏜":"OverParenthesis","⏝":"UnderParenthesis","⏞":"OverBrace","⏟":"UnderBrace","⏢":"trpezium","⏧":"elinters","␣":"blank","─":"boxh","│":"boxv","┌":"boxdr","┐":"boxdl","└":"boxur","┘":"boxul","├":"boxvr","┤":"boxvl","┬":"boxhd","┴":"boxhu","┼":"boxvh","═":"boxH","║":"boxV","╒":"boxdR","╓":"boxDr","╔":"boxDR","╕":"boxdL","╖":"boxDl","╗":"boxDL","╘":"boxuR","╙":"boxUr","╚":"boxUR","╛":"boxuL","╜":"boxUl","╝":"boxUL","╞":"boxvR","╟":"boxVr","╠":"boxVR","╡":"boxvL","╢":"boxVl","╣":"boxVL","╤":"boxHd","╥":"boxhD","╦":"boxHD","╧":"boxHu","╨":"boxhU","╩":"boxHU","╪":"boxvH","╫":"boxVh","╬":"boxVH","▀":"uhblk","▄":"lhblk","█":"block","░":"blk14","▒":"blk12","▓":"blk34","□":"squ","▪":"squf","▫":"EmptyVerySmallSquare","▭":"rect","▮":"marker","▱":"fltns","△":"xutri","▴":"utrif","▵":"utri","▸":"rtrif","▹":"rtri","▽":"xdtri","▾":"dtrif","▿":"dtri","◂":"ltrif","◃":"ltri","◊":"loz","○":"cir","◬":"tridot","◯":"xcirc","◸":"ultri","◹":"urtri","◺":"lltri","◻":"EmptySmallSquare","◼":"FilledSmallSquare","★":"starf","☆":"star","☎":"phone","♀":"female","♂":"male","♠":"spades","♣":"clubs","♥":"hearts","♦":"diams","♪":"sung","✓":"check","✗":"cross","✠":"malt","✶":"sext","❘":"VerticalSeparator","⟈":"bsolhsub","⟉":"suphsol","⟵":"xlarr","⟶":"xrarr","⟷":"xharr","⟸":"xlArr","⟹":"xrArr","⟺":"xhArr","⟼":"xmap","⟿":"dzigrarr","⤂":"nvlArr","⤃":"nvrArr","⤄":"nvHarr","⤅":"Map","⤌":"lbarr","⤍":"rbarr","⤎":"lBarr","⤏":"rBarr","⤐":"RBarr","⤑":"DDotrahd","⤒":"UpArrowBar","⤓":"DownArrowBar","⤖":"Rarrtl","⤙":"latail","⤚":"ratail","⤛":"lAtail","⤜":"rAtail","⤝":"larrfs","⤞":"rarrfs","⤟":"larrbfs","⤠":"rarrbfs","⤣":"nwarhk","⤤":"nearhk","⤥":"searhk","⤦":"swarhk","⤧":"nwnear","⤨":"toea","⤩":"tosa","⤪":"swnwar","⤳":"rarrc","⤳̸":"nrarrc","⤵":"cudarrr","⤶":"ldca","⤷":"rdca","⤸":"cudarrl","⤹":"larrpl","⤼":"curarrm","⤽":"cularrp","⥅":"rarrpl","⥈":"harrcir","⥉":"Uarrocir","⥊":"lurdshar","⥋":"ldrushar","⥎":"LeftRightVector","⥏":"RightUpDownVector","⥐":"DownLeftRightVector","⥑":"LeftUpDownVector","⥒":"LeftVectorBar","⥓":"RightVectorBar","⥔":"RightUpVectorBar","⥕":"RightDownVectorBar","⥖":"DownLeftVectorBar","⥗":"DownRightVectorBar","⥘":"LeftUpVectorBar","⥙":"LeftDownVectorBar","⥚":"LeftTeeVector","⥛":"RightTeeVector","⥜":"RightUpTeeVector","⥝":"RightDownTeeVector","⥞":"DownLeftTeeVector","⥟":"DownRightTeeVector","⥠":"LeftUpTeeVector","⥡":"LeftDownTeeVector","⥢":"lHar","⥣":"uHar","⥤":"rHar","⥥":"dHar","⥦":"luruhar","⥧":"ldrdhar","⥨":"ruluhar","⥩":"rdldhar","⥪":"lharul","⥫":"llhard","⥬":"rharul","⥭":"lrhard","⥮":"udhar","⥯":"duhar","⥰":"RoundImplies","⥱":"erarr","⥲":"simrarr","⥳":"larrsim","⥴":"rarrsim","⥵":"rarrap","⥶":"ltlarr","⥸":"gtrarr","⥹":"subrarr","⥻":"suplarr","⥼":"lfisht","⥽":"rfisht","⥾":"ufisht","⥿":"dfisht","⦚":"vzigzag","⦜":"vangrt","⦝":"angrtvbd","⦤":"ange","⦥":"range","⦦":"dwangle","⦧":"uwangle","⦨":"angmsdaa","⦩":"angmsdab","⦪":"angmsdac","⦫":"angmsdad","⦬":"angmsdae","⦭":"angmsdaf","⦮":"angmsdag","⦯":"angmsdah","⦰":"bemptyv","⦱":"demptyv","⦲":"cemptyv","⦳":"raemptyv","⦴":"laemptyv","⦵":"ohbar","⦶":"omid","⦷":"opar","⦹":"operp","⦻":"olcross","⦼":"odsold","⦾":"olcir","⦿":"ofcir","⧀":"olt","⧁":"ogt","⧂":"cirscir","⧃":"cirE","⧄":"solb","⧅":"bsolb","⧉":"boxbox","⧍":"trisb","⧎":"rtriltri","⧏":"LeftTriangleBar","⧏̸":"NotLeftTriangleBar","⧐":"RightTriangleBar","⧐̸":"NotRightTriangleBar","⧜":"iinfin","⧝":"infintie","⧞":"nvinfin","⧣":"eparsl","⧤":"smeparsl","⧥":"eqvparsl","⧫":"lozf","⧴":"RuleDelayed","⧶":"dsol","⨀":"xodot","⨁":"xoplus","⨂":"xotime","⨄":"xuplus","⨆":"xsqcup","⨍":"fpartint","⨐":"cirfnint","⨑":"awint","⨒":"rppolint","⨓":"scpolint","⨔":"npolint","⨕":"pointint","⨖":"quatint","⨗":"intlarhk","⨢":"pluscir","⨣":"plusacir","⨤":"simplus","⨥":"plusdu","⨦":"plussim","⨧":"plustwo","⨩":"mcomma","⨪":"minusdu","⨭":"loplus","⨮":"roplus","⨯":"Cross","⨰":"timesd","⨱":"timesbar","⨳":"smashp","⨴":"lotimes","⨵":"rotimes","⨶":"otimesas","⨷":"Otimes","⨸":"odiv","⨹":"triplus","⨺":"triminus","⨻":"tritime","⨼":"iprod","⨿":"amalg","⩀":"capdot","⩂":"ncup","⩃":"ncap","⩄":"capand","⩅":"cupor","⩆":"cupcap","⩇":"capcup","⩈":"cupbrcap","⩉":"capbrcup","⩊":"cupcup","⩋":"capcap","⩌":"ccups","⩍":"ccaps","⩐":"ccupssm","⩓":"And","⩔":"Or","⩕":"andand","⩖":"oror","⩗":"orslope","⩘":"andslope","⩚":"andv","⩛":"orv","⩜":"andd","⩝":"ord","⩟":"wedbar","⩦":"sdote","⩪":"simdot","⩭":"congdot","⩭̸":"ncongdot","⩮":"easter","⩯":"apacir","⩰":"apE","⩰̸":"napE","⩱":"eplus","⩲":"pluse","⩳":"Esim","⩷":"eDDot","⩸":"equivDD","⩹":"ltcir","⩺":"gtcir","⩻":"ltquest","⩼":"gtquest","⩽":"les","⩽̸":"nles","⩾":"ges","⩾̸":"nges","⩿":"lesdot","⪀":"gesdot","⪁":"lesdoto","⪂":"gesdoto","⪃":"lesdotor","⪄":"gesdotol","⪅":"lap","⪆":"gap","⪇":"lne","⪈":"gne","⪉":"lnap","⪊":"gnap","⪋":"lEg","⪌":"gEl","⪍":"lsime","⪎":"gsime","⪏":"lsimg","⪐":"gsiml","⪑":"lgE","⪒":"glE","⪓":"lesges","⪔":"gesles","⪕":"els","⪖":"egs","⪗":"elsdot","⪘":"egsdot","⪙":"el","⪚":"eg","⪝":"siml","⪞":"simg","⪟":"simlE","⪠":"simgE","⪡":"LessLess","⪡̸":"NotNestedLessLess","⪢":"GreaterGreater","⪢̸":"NotNestedGreaterGreater","⪤":"glj","⪥":"gla","⪦":"ltcc","⪧":"gtcc","⪨":"lescc","⪩":"gescc","⪪":"smt","⪫":"lat","⪬":"smte","⪬︀":"smtes","⪭":"late","⪭︀":"lates","⪮":"bumpE","⪯":"pre","⪯̸":"npre","⪰":"sce","⪰̸":"nsce","⪳":"prE","⪴":"scE","⪵":"prnE","⪶":"scnE","⪷":"prap","⪸":"scap","⪹":"prnap","⪺":"scnap","⪻":"Pr","⪼":"Sc","⪽":"subdot","⪾":"supdot","⪿":"subplus","⫀":"supplus","⫁":"submult","⫂":"supmult","⫃":"subedot","⫄":"supedot","⫅":"subE","⫅̸":"nsubE","⫆":"supE","⫆̸":"nsupE","⫇":"subsim","⫈":"supsim","⫋︀":"vsubnE","⫋":"subnE","⫌︀":"vsupnE","⫌":"supnE","⫏":"csub","⫐":"csup","⫑":"csube","⫒":"csupe","⫓":"subsup","⫔":"supsub","⫕":"subsub","⫖":"supsup","⫗":"suphsub","⫘":"supdsub","⫙":"forkv","⫚":"topfork","⫛":"mlcp","⫤":"Dashv","⫦":"Vdashl","⫧":"Barv","⫨":"vBar","⫩":"vBarv","⫫":"Vbar","⫬":"Not","⫭":"bNot","⫮":"rnmid","⫯":"cirmid","⫰":"midcir","⫱":"topcir","⫲":"nhpar","⫳":"parsim","⫽":"parsl","⫽⃥":"nparsl","♭":"flat","♮":"natur","♯":"sharp","¤":"curren","¢":"cent",$:"dollar","£":"pound","¥":"yen","€":"euro","¹":"sup1","½":"half","⅓":"frac13","¼":"frac14","⅕":"frac15","⅙":"frac16","⅛":"frac18","²":"sup2","⅔":"frac23","⅖":"frac25","³":"sup3","¾":"frac34","⅗":"frac35","⅜":"frac38","⅘":"frac45","⅚":"frac56","⅝":"frac58","⅞":"frac78","𝒶":"ascr","𝕒":"aopf","𝔞":"afr","𝔸":"Aopf","𝔄":"Afr","𝒜":"Ascr","ª":"ordf","á":"aacute","Á":"Aacute","à":"agrave","À":"Agrave","ă":"abreve","Ă":"Abreve","â":"acirc","Â":"Acirc","å":"aring","Å":"angst","ä":"auml","Ä":"Auml","ã":"atilde","Ã":"Atilde","ą":"aogon","Ą":"Aogon","ā":"amacr","Ā":"Amacr","æ":"aelig","Æ":"AElig","𝒷":"bscr","𝕓":"bopf","𝔟":"bfr","𝔹":"Bopf","ℬ":"Bscr","𝔅":"Bfr","𝔠":"cfr","𝒸":"cscr","𝕔":"copf","ℭ":"Cfr","𝒞":"Cscr","ℂ":"Copf","ć":"cacute","Ć":"Cacute","ĉ":"ccirc","Ĉ":"Ccirc","č":"ccaron","Č":"Ccaron","ċ":"cdot","Ċ":"Cdot","ç":"ccedil","Ç":"Ccedil","℅":"incare","𝔡":"dfr","ⅆ":"dd","𝕕":"dopf","𝒹":"dscr","𝒟":"Dscr","𝔇":"Dfr","ⅅ":"DD","𝔻":"Dopf","ď":"dcaron","Ď":"Dcaron","đ":"dstrok","Đ":"Dstrok","ð":"eth","Ð":"ETH","ⅇ":"ee","ℯ":"escr","𝔢":"efr","𝕖":"eopf","ℰ":"Escr","𝔈":"Efr","𝔼":"Eopf","é":"eacute","É":"Eacute","è":"egrave","È":"Egrave","ê":"ecirc","Ê":"Ecirc","ě":"ecaron","Ě":"Ecaron","ë":"euml","Ë":"Euml","ė":"edot","Ė":"Edot","ę":"eogon","Ę":"Eogon","ē":"emacr","Ē":"Emacr","𝔣":"ffr","𝕗":"fopf","𝒻":"fscr","𝔉":"Ffr","𝔽":"Fopf","ℱ":"Fscr","ff":"fflig","ffi":"ffilig","ffl":"ffllig","fi":"filig",fj:"fjlig","fl":"fllig","ƒ":"fnof","ℊ":"gscr","𝕘":"gopf","𝔤":"gfr","𝒢":"Gscr","𝔾":"Gopf","𝔊":"Gfr","ǵ":"gacute","ğ":"gbreve","Ğ":"Gbreve","ĝ":"gcirc","Ĝ":"Gcirc","ġ":"gdot","Ġ":"Gdot","Ģ":"Gcedil","𝔥":"hfr","ℎ":"planckh","𝒽":"hscr","𝕙":"hopf","ℋ":"Hscr","ℌ":"Hfr","ℍ":"Hopf","ĥ":"hcirc","Ĥ":"Hcirc","ℏ":"hbar","ħ":"hstrok","Ħ":"Hstrok","𝕚":"iopf","𝔦":"ifr","𝒾":"iscr","ⅈ":"ii","𝕀":"Iopf","ℐ":"Iscr","ℑ":"Im","í":"iacute","Í":"Iacute","ì":"igrave","Ì":"Igrave","î":"icirc","Î":"Icirc","ï":"iuml","Ï":"Iuml","ĩ":"itilde","Ĩ":"Itilde","İ":"Idot","į":"iogon","Į":"Iogon","ī":"imacr","Ī":"Imacr","ij":"ijlig","IJ":"IJlig","ı":"imath","𝒿":"jscr","𝕛":"jopf","𝔧":"jfr","𝒥":"Jscr","𝔍":"Jfr","𝕁":"Jopf","ĵ":"jcirc","Ĵ":"Jcirc","ȷ":"jmath","𝕜":"kopf","𝓀":"kscr","𝔨":"kfr","𝒦":"Kscr","𝕂":"Kopf","𝔎":"Kfr","ķ":"kcedil","Ķ":"Kcedil","𝔩":"lfr","𝓁":"lscr","ℓ":"ell","𝕝":"lopf","ℒ":"Lscr","𝔏":"Lfr","𝕃":"Lopf","ĺ":"lacute","Ĺ":"Lacute","ľ":"lcaron","Ľ":"Lcaron","ļ":"lcedil","Ļ":"Lcedil","ł":"lstrok","Ł":"Lstrok","ŀ":"lmidot","Ŀ":"Lmidot","𝔪":"mfr","𝕞":"mopf","𝓂":"mscr","𝔐":"Mfr","𝕄":"Mopf","ℳ":"Mscr","𝔫":"nfr","𝕟":"nopf","𝓃":"nscr","ℕ":"Nopf","𝒩":"Nscr","𝔑":"Nfr","ń":"nacute","Ń":"Nacute","ň":"ncaron","Ň":"Ncaron","ñ":"ntilde","Ñ":"Ntilde","ņ":"ncedil","Ņ":"Ncedil","№":"numero","ŋ":"eng","Ŋ":"ENG","𝕠":"oopf","𝔬":"ofr","ℴ":"oscr","𝒪":"Oscr","𝔒":"Ofr","𝕆":"Oopf","º":"ordm","ó":"oacute","Ó":"Oacute","ò":"ograve","Ò":"Ograve","ô":"ocirc","Ô":"Ocirc","ö":"ouml","Ö":"Ouml","ő":"odblac","Ő":"Odblac","õ":"otilde","Õ":"Otilde","ø":"oslash","Ø":"Oslash","ō":"omacr","Ō":"Omacr","œ":"oelig","Œ":"OElig","𝔭":"pfr","𝓅":"pscr","𝕡":"popf","ℙ":"Popf","𝔓":"Pfr","𝒫":"Pscr","𝕢":"qopf","𝔮":"qfr","𝓆":"qscr","𝒬":"Qscr","𝔔":"Qfr","ℚ":"Qopf","ĸ":"kgreen","𝔯":"rfr","𝕣":"ropf","𝓇":"rscr","ℛ":"Rscr","ℜ":"Re","ℝ":"Ropf","ŕ":"racute","Ŕ":"Racute","ř":"rcaron","Ř":"Rcaron","ŗ":"rcedil","Ŗ":"Rcedil","𝕤":"sopf","𝓈":"sscr","𝔰":"sfr","𝕊":"Sopf","𝔖":"Sfr","𝒮":"Sscr","Ⓢ":"oS","ś":"sacute","Ś":"Sacute","ŝ":"scirc","Ŝ":"Scirc","š":"scaron","Š":"Scaron","ş":"scedil","Ş":"Scedil","ß":"szlig","𝔱":"tfr","𝓉":"tscr","𝕥":"topf","𝒯":"Tscr","𝔗":"Tfr","𝕋":"Topf","ť":"tcaron","Ť":"Tcaron","ţ":"tcedil","Ţ":"Tcedil","™":"trade","ŧ":"tstrok","Ŧ":"Tstrok","𝓊":"uscr","𝕦":"uopf","𝔲":"ufr","𝕌":"Uopf","𝔘":"Ufr","𝒰":"Uscr","ú":"uacute","Ú":"Uacute","ù":"ugrave","Ù":"Ugrave","ŭ":"ubreve","Ŭ":"Ubreve","û":"ucirc","Û":"Ucirc","ů":"uring","Ů":"Uring","ü":"uuml","Ü":"Uuml","ű":"udblac","Ű":"Udblac","ũ":"utilde","Ũ":"Utilde","ų":"uogon","Ų":"Uogon","ū":"umacr","Ū":"Umacr","𝔳":"vfr","𝕧":"vopf","𝓋":"vscr","𝔙":"Vfr","𝕍":"Vopf","𝒱":"Vscr","𝕨":"wopf","𝓌":"wscr","𝔴":"wfr","𝒲":"Wscr","𝕎":"Wopf","𝔚":"Wfr","ŵ":"wcirc","Ŵ":"Wcirc","𝔵":"xfr","𝓍":"xscr","𝕩":"xopf","𝕏":"Xopf","𝔛":"Xfr","𝒳":"Xscr","𝔶":"yfr","𝓎":"yscr","𝕪":"yopf","𝒴":"Yscr","𝔜":"Yfr","𝕐":"Yopf","ý":"yacute","Ý":"Yacute","ŷ":"ycirc","Ŷ":"Ycirc","ÿ":"yuml","Ÿ":"Yuml","𝓏":"zscr","𝔷":"zfr","𝕫":"zopf","ℨ":"Zfr","ℤ":"Zopf","𝒵":"Zscr","ź":"zacute","Ź":"Zacute","ž":"zcaron","Ž":"Zcaron","ż":"zdot","Ż":"Zdot","Ƶ":"imped","þ":"thorn","Þ":"THORN","ʼn":"napos","α":"alpha","Α":"Alpha","β":"beta","Β":"Beta","γ":"gamma","Γ":"Gamma","δ":"delta","Δ":"Delta","ε":"epsi","ϵ":"epsiv","Ε":"Epsilon","ϝ":"gammad","Ϝ":"Gammad","ζ":"zeta","Ζ":"Zeta","η":"eta","Η":"Eta","θ":"theta","ϑ":"thetav","Θ":"Theta","ι":"iota","Ι":"Iota","κ":"kappa","ϰ":"kappav","Κ":"Kappa","λ":"lambda","Λ":"Lambda","μ":"mu","µ":"micro","Μ":"Mu","ν":"nu","Ν":"Nu","ξ":"xi","Ξ":"Xi","ο":"omicron","Ο":"Omicron","π":"pi","ϖ":"piv","Π":"Pi","ρ":"rho","ϱ":"rhov","Ρ":"Rho","σ":"sigma","Σ":"Sigma","ς":"sigmaf","τ":"tau","Τ":"Tau","υ":"upsi","Υ":"Upsilon","ϒ":"Upsi","φ":"phi","ϕ":"phiv","Φ":"Phi","χ":"chi","Χ":"Chi","ψ":"psi","Ψ":"Psi","ω":"omega","Ω":"ohm","а":"acy","А":"Acy","б":"bcy","Б":"Bcy","в":"vcy","В":"Vcy","г":"gcy","Г":"Gcy","ѓ":"gjcy","Ѓ":"GJcy","д":"dcy","Д":"Dcy","ђ":"djcy","Ђ":"DJcy","е":"iecy","Е":"IEcy","ё":"iocy","Ё":"IOcy","є":"jukcy","Є":"Jukcy","ж":"zhcy","Ж":"ZHcy","з":"zcy","З":"Zcy","ѕ":"dscy","Ѕ":"DScy","и":"icy","И":"Icy","і":"iukcy","І":"Iukcy","ї":"yicy","Ї":"YIcy","й":"jcy","Й":"Jcy","ј":"jsercy","Ј":"Jsercy","к":"kcy","К":"Kcy","ќ":"kjcy","Ќ":"KJcy","л":"lcy","Л":"Lcy","љ":"ljcy","Љ":"LJcy","м":"mcy","М":"Mcy","н":"ncy","Н":"Ncy","њ":"njcy","Њ":"NJcy","о":"ocy","О":"Ocy","п":"pcy","П":"Pcy","р":"rcy","Р":"Rcy","с":"scy","С":"Scy","т":"tcy","Т":"Tcy","ћ":"tshcy","Ћ":"TSHcy","у":"ucy","У":"Ucy","ў":"ubrcy","Ў":"Ubrcy","ф":"fcy","Ф":"Fcy","х":"khcy","Х":"KHcy","ц":"tscy","Ц":"TScy","ч":"chcy","Ч":"CHcy","џ":"dzcy","Џ":"DZcy","ш":"shcy","Ш":"SHcy","щ":"shchcy","Щ":"SHCHcy","ъ":"hardcy","Ъ":"HARDcy","ы":"ycy","Ы":"Ycy","ь":"softcy","Ь":"SOFTcy","э":"ecy","Э":"Ecy","ю":"yucy","Ю":"YUcy","я":"yacy","Я":"YAcy","ℵ":"aleph","ℶ":"beth","ℷ":"gimel","ℸ":"daleth"},p=/["&'<>`]/g,h={'"':""","&":"&","'":"'","<":"<",">":">","`":"`"},d=/&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/,m=/[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,g=/&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)([=a-zA-Z0-9])?/g,v={aacute:"á",Aacute:"Á",abreve:"ă",Abreve:"Ă",ac:"∾",acd:"∿",acE:"∾̳",acirc:"â",Acirc:"Â",acute:"´",acy:"а",Acy:"А",aelig:"æ",AElig:"Æ",af:"⁡",afr:"𝔞",Afr:"𝔄",agrave:"à",Agrave:"À",alefsym:"ℵ",aleph:"ℵ",alpha:"α",Alpha:"Α",amacr:"ā",Amacr:"Ā",amalg:"⨿",amp:"&",AMP:"&",and:"∧",And:"⩓",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",aogon:"ą",Aogon:"Ą",aopf:"𝕒",Aopf:"𝔸",ap:"≈",apacir:"⩯",ape:"≊",apE:"⩰",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",aring:"å",Aring:"Å",ascr:"𝒶",Ascr:"𝒜",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",bcy:"б",Bcy:"Б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",beta:"β",Beta:"Β",beth:"ℶ",between:"≬",bfr:"𝔟",Bfr:"𝔅",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bNot:"⫭",bopf:"𝕓",Bopf:"𝔹",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxhD:"╥",boxHd:"╤",boxHD:"╦",boxhu:"┴",boxhU:"╨",boxHu:"╧",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpe:"≏",bumpE:"⪮",bumpeq:"≏",Bumpeq:"≎",cacute:"ć",Cacute:"Ć",cap:"∩",Cap:"⋒",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",ccaron:"č",Ccaron:"Č",ccedil:"ç",Ccedil:"Ç",ccirc:"ĉ",Ccirc:"Ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",Cdot:"Ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",chcy:"ч",CHcy:"Ч",check:"✓",checkmark:"✓",chi:"χ",Chi:"Χ",cir:"○",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cire:"≗",cirE:"⧃",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",colone:"≔",Colone:"⩴",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",cscr:"𝒸",Cscr:"𝒞",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cup:"∪",Cup:"⋓",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",dArr:"⇓",Darr:"↡",dash:"‐",dashv:"⊣",Dashv:"⫤",dbkarow:"⤏",dblac:"˝",dcaron:"ď",Dcaron:"Ď",dcy:"д",Dcy:"Д",dd:"ⅆ",DD:"ⅅ",ddagger:"‡",ddarr:"⇊",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",delta:"δ",Delta:"Δ",demptyv:"⦱",dfisht:"⥿",dfr:"𝔡",Dfr:"𝔇",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",DJcy:"Ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",dopf:"𝕕",Dopf:"𝔻",dot:"˙",Dot:"¨",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",downarrow:"↓",Downarrow:"⇓",DownArrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",dscr:"𝒹",Dscr:"𝒟",dscy:"ѕ",DScy:"Ѕ",dsol:"⧶",dstrok:"đ",Dstrok:"Đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",dzcy:"џ",DZcy:"Џ",dzigrarr:"⟿",eacute:"é",Eacute:"É",easter:"⩮",ecaron:"ě",Ecaron:"Ě",ecir:"≖",ecirc:"ê",Ecirc:"Ê",ecolon:"≕",ecy:"э",Ecy:"Э",eDDot:"⩷",edot:"ė",eDot:"≑",Edot:"Ė",ee:"ⅇ",efDot:"≒",efr:"𝔢",Efr:"𝔈",eg:"⪚",egrave:"è",Egrave:"È",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",emacr:"ē",Emacr:"Ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp:" ",emsp13:" ",emsp14:" ",eng:"ŋ",ENG:"Ŋ",ensp:" ",eogon:"ę",Eogon:"Ę",eopf:"𝕖",Eopf:"𝔼",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",Epsilon:"Ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",esim:"≂",Esim:"⩳",eta:"η",Eta:"Η",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",fcy:"ф",Fcy:"Ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"𝔣",Ffr:"𝔉",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"𝕗",Fopf:"𝔽",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",gamma:"γ",Gamma:"Γ",gammad:"ϝ",Gammad:"Ϝ",gap:"⪆",gbreve:"ğ",Gbreve:"Ğ",Gcedil:"Ģ",gcirc:"ĝ",Gcirc:"Ĝ",gcy:"г",Gcy:"Г",gdot:"ġ",Gdot:"Ġ",ge:"≥",gE:"≧",gel:"⋛",gEl:"⪌",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"𝔤",Gfr:"𝔊",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",gjcy:"ѓ",GJcy:"Ѓ",gl:"≷",gla:"⪥",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",gopf:"𝕘",Gopf:"𝔾",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",gscr:"ℊ",Gscr:"𝒢",gsim:"≳",gsime:"⪎",gsiml:"⪐",gt:">",Gt:"≫",GT:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",hardcy:"ъ",HARDcy:"Ъ",harr:"↔",hArr:"⇔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",hcirc:"ĥ",Hcirc:"Ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",hstrok:"ħ",Hstrok:"Ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",iacute:"í",Iacute:"Í",ic:"⁣",icirc:"î",Icirc:"Î",icy:"и",Icy:"И",Idot:"İ",iecy:"е",IEcy:"Е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",igrave:"ì",Igrave:"Ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",IJlig:"IJ",Im:"ℑ",imacr:"ī",Imacr:"Ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",int:"∫",Int:"∬",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",iocy:"ё",IOcy:"Ё",iogon:"į",Iogon:"Į",iopf:"𝕚",Iopf:"𝕀",iota:"ι",Iota:"Ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",itilde:"ĩ",Itilde:"Ĩ",iukcy:"і",Iukcy:"І",iuml:"ï",Iuml:"Ï",jcirc:"ĵ",Jcirc:"Ĵ",jcy:"й",Jcy:"Й",jfr:"𝔧",Jfr:"𝔍",jmath:"ȷ",jopf:"𝕛",Jopf:"𝕁",jscr:"𝒿",Jscr:"𝒥",jsercy:"ј",Jsercy:"Ј",jukcy:"є",Jukcy:"Є",kappa:"κ",Kappa:"Κ",kappav:"ϰ",kcedil:"ķ",Kcedil:"Ķ",kcy:"к",Kcy:"К",kfr:"𝔨",Kfr:"𝔎",kgreen:"ĸ",khcy:"х",KHcy:"Х",kjcy:"ќ",KJcy:"Ќ",kopf:"𝕜",Kopf:"𝕂",kscr:"𝓀",Kscr:"𝒦",lAarr:"⇚",lacute:"ĺ",Lacute:"Ĺ",laemptyv:"⦴",lagran:"ℒ",lambda:"λ",Lambda:"Λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larr:"←",lArr:"⇐",Larr:"↞",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",latail:"⤙",lAtail:"⤛",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",Lcaron:"Ľ",lcedil:"ļ",Lcedil:"Ļ",lceil:"⌈",lcub:"{",lcy:"л",Lcy:"Л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",leftarrow:"←",Leftarrow:"⇐",LeftArrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",Leftrightarrow:"⇔",LeftRightArrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",leg:"⋚",lEg:"⪋",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",lfr:"𝔩",Lfr:"𝔏",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",ljcy:"љ",LJcy:"Љ",ll:"≪",Ll:"⋘",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",lmidot:"ŀ",Lmidot:"Ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",Longleftarrow:"⟸",LongLeftArrow:"⟵",longleftrightarrow:"⟷",Longleftrightarrow:"⟺",LongLeftRightArrow:"⟷",longmapsto:"⟼",longrightarrow:"⟶",Longrightarrow:"⟹",LongRightArrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",lopf:"𝕝",Lopf:"𝕃",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",lstrok:"ł",Lstrok:"Ł",lt:"<",Lt:"≪",LT:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",map:"↦",Map:"⤅",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",mcy:"м",Mcy:"М",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",mfr:"𝔪",Mfr:"𝔐",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",mopf:"𝕞",Mopf:"𝕄",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",mu:"μ",Mu:"Μ",multimap:"⊸",mumap:"⊸",nabla:"∇",nacute:"ń",Nacute:"Ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",ncaron:"ň",Ncaron:"Ň",ncedil:"ņ",Ncedil:"Ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",Ncy:"Н",ndash:"–",ne:"≠",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",nfr:"𝔫",Nfr:"𝔑",nge:"≱",ngE:"≧̸",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",ngt:"≯",nGt:"≫⃒",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",njcy:"њ",NJcy:"Њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nle:"≰",nlE:"≦̸",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nlt:"≮",nLt:"≪⃒",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",not:"¬",Not:"⫬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrarr:"↛",nrArr:"⇏",nrarrc:"⤳̸",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",nscr:"𝓃",Nscr:"𝒩",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsube:"⊈",nsubE:"⫅̸",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupe:"⊉",nsupE:"⫆̸",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",ntilde:"ñ",Ntilde:"Ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",nu:"ν",Nu:"Ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",oacute:"ó",Oacute:"Ó",oast:"⊛",ocir:"⊚",ocirc:"ô",Ocirc:"Ô",ocy:"о",Ocy:"О",odash:"⊝",odblac:"ő",Odblac:"Ő",odiv:"⨸",odot:"⊙",odsold:"⦼",oelig:"œ",OElig:"Œ",ofcir:"⦿",ofr:"𝔬",Ofr:"𝔒",ogon:"˛",ograve:"ò",Ograve:"Ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",omacr:"ō",Omacr:"Ō",omega:"ω",Omega:"Ω",omicron:"ο",Omicron:"Ο",omid:"⦶",ominus:"⊖",oopf:"𝕠",Oopf:"𝕆",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",or:"∨",Or:"⩔",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",oscr:"ℴ",Oscr:"𝒪",oslash:"ø",Oslash:"Ø",osol:"⊘",otilde:"õ",Otilde:"Õ",otimes:"⊗",Otimes:"⨷",otimesas:"⨶",ouml:"ö",Ouml:"Ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",pcy:"п",Pcy:"П",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",pfr:"𝔭",Pfr:"𝔓",phi:"φ",Phi:"Φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",pi:"π",Pi:"Π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",pr:"≺",Pr:"⪻",prap:"⪷",prcue:"≼",pre:"⪯",prE:"⪳",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",pscr:"𝓅",Pscr:"𝒫",psi:"ψ",Psi:"Ψ",puncsp:" ",qfr:"𝔮",Qfr:"𝔔",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",qscr:"𝓆",Qscr:"𝒬",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",racute:"ŕ",Racute:"Ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarr:"→",rArr:"⇒",Rarr:"↠",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",Rarrtl:"⤖",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",Rcaron:"Ř",rcedil:"ŗ",Rcedil:"Ŗ",rceil:"⌉",rcub:"}",rcy:"р",Rcy:"Р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",rho:"ρ",Rho:"Ρ",rhov:"ϱ",RightAngleBracket:"⟩",rightarrow:"→",Rightarrow:"⇒",RightArrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",sacute:"ś",Sacute:"Ś",sbquo:"‚",sc:"≻",Sc:"⪼",scap:"⪸",scaron:"š",Scaron:"Š",sccue:"≽",sce:"⪰",scE:"⪴",scedil:"ş",Scedil:"Ş",scirc:"ŝ",Scirc:"Ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",scy:"с",Scy:"С",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",sfr:"𝔰",Sfr:"𝔖",sfrown:"⌢",sharp:"♯",shchcy:"щ",SHCHcy:"Щ",shcy:"ш",SHcy:"Ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",sigma:"σ",Sigma:"Σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",SOFTcy:"Ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"𝕤",Sopf:"𝕊",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",sscr:"𝓈",Sscr:"𝒮",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",star:"☆",Star:"⋆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",sube:"⊆",subE:"⫅",subedot:"⫃",submult:"⫁",subne:"⊊",subnE:"⫋",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup:"⊃",Sup:"⋑",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supe:"⊇",supE:"⫆",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supne:"⊋",supnE:"⫌",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",tau:"τ",Tau:"Τ",tbrk:"⎴",tcaron:"ť",Tcaron:"Ť",tcedil:"ţ",Tcedil:"Ţ",tcy:"т",Tcy:"Т",tdot:"⃛",telrec:"⌕",tfr:"𝔱",Tfr:"𝔗",there4:"∴",therefore:"∴",Therefore:"∴",theta:"θ",Theta:"Θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",thorn:"þ",THORN:"Þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",topf:"𝕥",Topf:"𝕋",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"𝓉",Tscr:"𝒯",tscy:"ц",TScy:"Ц",tshcy:"ћ",TSHcy:"Ћ",tstrok:"ŧ",Tstrok:"Ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",uacute:"ú",Uacute:"Ú",uarr:"↑",uArr:"⇑",Uarr:"↟",Uarrocir:"⥉",ubrcy:"ў",Ubrcy:"Ў",ubreve:"ŭ",Ubreve:"Ŭ",ucirc:"û",Ucirc:"Û",ucy:"у",Ucy:"У",udarr:"⇅",udblac:"ű",Udblac:"Ű",udhar:"⥮",ufisht:"⥾",ufr:"𝔲",Ufr:"𝔘",ugrave:"ù",Ugrave:"Ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",Umacr:"Ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",uogon:"ų",Uogon:"Ų",uopf:"𝕦",Uopf:"𝕌",uparrow:"↑",Uparrow:"⇑",UpArrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",updownarrow:"↕",Updownarrow:"⇕",UpDownArrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",upsilon:"υ",Upsilon:"Υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",Uring:"Ů",urtri:"◹",uscr:"𝓊",Uscr:"𝒰",utdot:"⋰",utilde:"ũ",Utilde:"Ũ",utri:"▵",utrif:"▴",uuarr:"⇈",uuml:"ü",Uuml:"Ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",vcy:"в",Vcy:"В",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",vee:"∨",Vee:"⋁",veebar:"⊻",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",vfr:"𝔳",Vfr:"𝔙",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",vopf:"𝕧",Vopf:"𝕍",vprop:"∝",vrtri:"⊳",vscr:"𝓋",Vscr:"𝒱",vsubne:"⊊︀",vsubnE:"⫋︀",vsupne:"⊋︀",vsupnE:"⫌︀",Vvdash:"⊪",vzigzag:"⦚",wcirc:"ŵ",Wcirc:"Ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",wfr:"𝔴",Wfr:"𝔚",wopf:"𝕨",Wopf:"𝕎",wp:"℘",wr:"≀",wreath:"≀",wscr:"𝓌",Wscr:"𝒲",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",xfr:"𝔵",Xfr:"𝔛",xharr:"⟷",xhArr:"⟺",xi:"ξ",Xi:"Ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",xopf:"𝕩",Xopf:"𝕏",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",xscr:"𝓍",Xscr:"𝒳",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",yacute:"ý",Yacute:"Ý",yacy:"я",YAcy:"Я",ycirc:"ŷ",Ycirc:"Ŷ",ycy:"ы",Ycy:"Ы",yen:"¥",yfr:"𝔶",Yfr:"𝔜",yicy:"ї",YIcy:"Ї",yopf:"𝕪",Yopf:"𝕐",yscr:"𝓎",Yscr:"𝒴",yucy:"ю",YUcy:"Ю",yuml:"ÿ",Yuml:"Ÿ",zacute:"ź",Zacute:"Ź",zcaron:"ž",Zcaron:"Ž",zcy:"з",Zcy:"З",zdot:"ż",Zdot:"Ż",zeetrf:"ℨ",ZeroWidthSpace:"​",zeta:"ζ",Zeta:"Ζ",zfr:"𝔷",Zfr:"ℨ",zhcy:"ж",ZHcy:"Ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",zscr:"𝓏",Zscr:"𝒵",zwj:"‍",zwnj:"‌"},b={aacute:"á",Aacute:"Á",acirc:"â",Acirc:"Â",acute:"´",aelig:"æ",AElig:"Æ",agrave:"à",Agrave:"À",amp:"&",AMP:"&",aring:"å",Aring:"Å",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",brvbar:"¦",ccedil:"ç",Ccedil:"Ç",cedil:"¸",cent:"¢",copy:"©",COPY:"©",curren:"¤",deg:"°",divide:"÷",eacute:"é",Eacute:"É",ecirc:"ê",Ecirc:"Ê",egrave:"è",Egrave:"È",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",frac12:"½",frac14:"¼",frac34:"¾",gt:">",GT:">",iacute:"í",Iacute:"Í",icirc:"î",Icirc:"Î",iexcl:"¡",igrave:"ì",Igrave:"Ì",iquest:"¿",iuml:"ï",Iuml:"Ï",laquo:"«",lt:"<",LT:"<",macr:"¯",micro:"µ",middot:"·",nbsp:" ",not:"¬",ntilde:"ñ",Ntilde:"Ñ",oacute:"ó",Oacute:"Ó",ocirc:"ô",Ocirc:"Ô",ograve:"ò",Ograve:"Ò",ordf:"ª",ordm:"º",oslash:"ø",Oslash:"Ø",otilde:"õ",Otilde:"Õ",ouml:"ö",Ouml:"Ö",para:"¶",plusmn:"±",pound:"£",quot:'"',QUOT:'"',raquo:"»",reg:"®",REG:"®",sect:"§",shy:"­",sup1:"¹",sup2:"²",sup3:"³",szlig:"ß",thorn:"þ",THORN:"Þ",times:"×",uacute:"ú",Uacute:"Ú",ucirc:"û",Ucirc:"Û",ugrave:"ù",Ugrave:"Ù",uml:"¨",uuml:"ü",Uuml:"Ü",yacute:"ý",Yacute:"Ý",yen:"¥",yuml:"ÿ"},y={0:"�",128:"€",130:"‚",131:"ƒ",132:"„",133:"…",134:"†",135:"‡",136:"ˆ",137:"‰",138:"Š",139:"‹",140:"Œ",142:"Ž",145:"‘",146:"’",147:"“",148:"”",149:"•",150:"–",151:"—",152:"˜",153:"™",154:"š",155:"›",156:"œ",158:"ž",159:"Ÿ"},_=[1,2,3,4,5,6,7,8,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985,64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998,64999,65e3,65001,65002,65003,65004,65005,65006,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111],w=String.fromCharCode,E={}.hasOwnProperty,A=function(e,t){return E.call(e,t)},x=function(e,t){for(var n=-1,r=e.length;++n=55296&&e<=57343||e>1114111?(t&&B("character reference outside the permissible Unicode range"),"�"):A(y,e)?(t&&B("disallowed character reference"),y[e]):(t&&x(_,e)&&B("disallowed character reference"),e>65535&&(n+=w((e-=65536)>>>10&1023|55296),e=56320|1023&e),n+=w(e))},O=function(e){return"&#x"+e.toString(16).toUpperCase()+";"},S=function(e){return"&#"+e+";"},B=function(e){throw Error("Parse error: "+e)},D=function(e,t){(t=C(t,D.options)).strict&&m.test(e)&&B("forbidden code point");var n=t.encodeEverything,r=t.useNamedReferences,o=t.allowUnsafeSymbols,i=t.decimal?S:O,a=function(e){return i(e.charCodeAt(0))};return n?(e=e.replace(u,function(e){return r&&A(f,e)?"&"+f[e]+";":a(e)}),r&&(e=e.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒").replace(/fj/g,"fj")),r&&(e=e.replace(c,function(e){return"&"+f[e]+";"}))):r?(o||(e=e.replace(p,function(e){return"&"+f[e]+";"})),e=(e=e.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒")).replace(c,function(e){return"&"+f[e]+";"})):o||(e=e.replace(p,a)),e.replace(s,function(e){var t=e.charCodeAt(0),n=e.charCodeAt(1);return i(1024*(t-55296)+n-56320+65536)}).replace(l,a)};D.options={allowUnsafeSymbols:!1,encodeEverything:!1,strict:!1,useNamedReferences:!1,decimal:!1};var T=function(e,t){var n=(t=C(t,T.options)).strict;return n&&d.test(e)&&B("malformed character reference"),e.replace(g,function(e,r,o,i,a,s,u,l){var c,f,p,h,d,m;return r?(p=r,f=o,n&&!f&&B("character reference was not terminated by a semicolon"),c=parseInt(p,10),k(c,n)):i?(h=i,f=a,n&&!f&&B("character reference was not terminated by a semicolon"),c=parseInt(h,16),k(c,n)):s?(d=s,A(v,d)?v[d]:(n&&B("named character reference was not terminated by a semicolon"),e)):(d=u,(m=l)&&t.isAttributeValue?(n&&"="==m&&B("`&` did not start a character reference"),e):(n&&B("named character reference was not terminated by a semicolon"),b[d]+(m||"")))})};T.options={isAttributeValue:!1,strict:!1};var R={version:"1.1.1",encode:D,decode:T,escape:function(e){return e.replace(p,function(e){return h[e]})},unescape:T};if("function"==typeof define&&"object"==typeof define.amd&&define.amd)define(function(){return R});else if(o&&!o.nodeType)if(i)i.exports=R;else for(var F in R)A(R,F)&&(o[F]=R[F]);else r.he=R}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],104:[function(e,t,n){function r(e){if("string"==typeof e&&(e=i.parse(e)),e.protocol||(e.protocol="https:"),"https:"!==e.protocol)throw new Error('Protocol "'+e.protocol+'" not supported. Expected "https:"');return e}var o=e("http"),i=e("url"),a=t.exports;for(var s in o)o.hasOwnProperty(s)&&(a[s]=o[s]);a.request=function(e,t){return e=r(e),o.request.call(this,e,t)},a.get=function(e,t){return e=r(e),o.get.call(this,e,t)}},{http:156,url:162}],105:[function(e,t,n){n.read=function(e,t,n,r,o){var i,a,s=8*o-r-1,u=(1<>1,c=-7,f=n?o-1:0,p=n?-1:1,h=e[t+f];for(f+=p,i=h&(1<<-c)-1,h>>=-c,c+=s;c>0;i=256*i+e[t+f],f+=p,c-=8);for(a=i&(1<<-c)-1,i>>=-c,c+=r;c>0;a=256*a+e[t+f],f+=p,c-=8);if(0===i)i=1-l;else{if(i===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,r),i-=l}return(h?-1:1)*a*Math.pow(2,i-r)},n.write=function(e,t,n,r,o,i){var a,s,u,l=8*i-o-1,c=(1<>1,p=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:i-1,d=r?1:-1,m=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),(t+=a+f>=1?p/u:p*Math.pow(2,1-f))*u>=2&&(a++,u/=2),a+f>=c?(s=0,a=c):a+f>=1?(s=(t*u-1)*Math.pow(2,o),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,o),a=0));o>=8;e[n+h]=255&s,h+=d,s/=256,o-=8);for(a=a<0;e[n+h]=255&a,h+=d,a/=256,l-=8);e[n+h-d]|=128*m}},{}],106:[function(e,t,n){"function"==typeof Object.create?t.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:t.exports=function(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}},{}],107:[function(e,t,n){function r(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}function o(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&r(e.slice(0,0))}t.exports=function(e){return null!=e&&(r(e)||o(e)||!!e._isBuffer)}},{}],108:[function(e,t,n){var r={}.toString;t.exports=Array.isArray||function(e){return"[object Array]"==r.call(e)}},{}],109:[function(e,t,n){"use strict";function r(e){return e.source.slice(1,-1)}var o=e("xml-char-classes");t.exports=new RegExp("^["+r(o.letter)+"_]["+r(o.letter)+r(o.digit)+"\\.\\-_"+r(o.combiningChar)+r(o.extender)+"]*$")},{"xml-char-classes":165}],110:[function(e,t,n){n.endianness=function(){return"LE"},n.hostname=function(){return"undefined"!=typeof location?location.hostname:""},n.loadavg=function(){return[]},n.uptime=function(){return 0},n.freemem=function(){return Number.MAX_VALUE},n.totalmem=function(){return Number.MAX_VALUE},n.cpus=function(){return[]},n.type=function(){return"Browser"},n.release=function(){return"undefined"!=typeof navigator?navigator.appVersion:""},n.networkInterfaces=n.getNetworkInterfaces=function(){return{}},n.arch=function(){return"javascript"},n.platform=function(){return"browser"},n.tmpdir=n.tmpDir=function(){return"/tmp"},n.EOL="\n"},{}],111:[function(e,t,n){(function(e){function t(e,t){for(var n=0,r=e.length-1;r>=0;r--){var o=e[r];"."===o?e.splice(r,1):".."===o?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r=-1&&!o;i--){var a=i>=0?arguments[i]:e.cwd();if("string"!=typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(n=a+"/"+n,o="/"===a.charAt(0))}return n=t(r(n.split("/"),function(e){return!!e}),!o).join("/"),(o?"/":"")+n||"."},n.normalize=function(e){var o=n.isAbsolute(e),i="/"===a(e,-1);return(e=t(r(e.split("/"),function(e){return!!e}),!o).join("/"))||o||(e="."),e&&i&&(e+="/"),(o?"/":"")+e},n.isAbsolute=function(e){return"/"===e.charAt(0)},n.join=function(){var e=Array.prototype.slice.call(arguments,0);return n.normalize(r(e,function(e,t){if("string"!=typeof e)throw new TypeError("Arguments to path.join must be strings");return e}).join("/"))},n.relative=function(e,t){function r(e){for(var t=0;t=0&&""===e[n];n--);return t>n?[]:e.slice(t,n-t+1)}e=n.resolve(e).substr(1),t=n.resolve(t).substr(1);for(var o=r(e.split("/")),i=r(t.split("/")),a=Math.min(o.length,i.length),s=a,u=0;u1)for(var n=1;n1&&(r=n[0]+"@",e=n[1]),r+i((e=e.replace(D,".")).split("."),t).join(".")}function s(e){for(var t,n,r=[],o=0,i=e.length;o=55296&&t<=56319&&o65535&&(t+=L((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=L(e)}).join("")}function l(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:_}function c(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function f(e,t,n){var r=0;for(e=n?F(e/x):e>>1,e+=F(e/t);e>R*E>>1;r+=_)e=F(e/R);return F(r+(R+1)*e/(e+A))}function p(e){var t,n,r,i,a,s,c,p,h,d,m=[],g=e.length,v=0,b=k,A=C;for((n=e.lastIndexOf(O))<0&&(n=0),r=0;r=128&&o("not-basic"),m.push(e.charCodeAt(r));for(i=n>0?n+1:0;i=g&&o("invalid-input"),((p=l(e.charCodeAt(i++)))>=_||p>F((y-v)/s))&&o("overflow"),v+=p*s,h=c<=A?w:c>=A+E?E:c-A,!(pF(y/(d=_-h))&&o("overflow"),s*=d;A=f(v-a,t=m.length+1,0==a),F(v/t)>y-b&&o("overflow"),b+=F(v/t),v%=t,m.splice(v++,0,b)}return u(m)}function h(e){var t,n,r,i,a,u,l,p,h,d,m,g,v,b,A,x=[];for(g=(e=s(e)).length,t=k,n=0,a=C,u=0;u=t&&mF((y-n)/(v=r+1))&&o("overflow"),n+=(l-t)*v,t=l,u=0;uy&&o("overflow"),m==t){for(p=n,h=_;d=h<=a?w:h>=a+E?E:h-a,!(p= 0x80 (not a basic code point)","invalid-input":"Invalid input"},R=_-w,F=Math.floor,L=String.fromCharCode;if(v={version:"1.4.1",ucs2:{decode:s,encode:u},decode:p,encode:h,toASCII:function(e){return a(e,function(e){return B.test(e)?"xn--"+h(e):e})},toUnicode:function(e){return a(e,function(e){return S.test(e)?p(e.slice(4).toLowerCase()):e})}},"function"==typeof define&&"object"==typeof define.amd&&define.amd)define("punycode",function(){return v});else if(d&&m)if(t.exports==d)m.exports=v;else for(b in v)v.hasOwnProperty(b)&&(d[b]=v[b]);else r.punycode=v}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],115:[function(e,t,n){"use strict";function r(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.exports=function(e,t,n,i){t=t||"&",n=n||"=";var a={};if("string"!=typeof e||0===e.length)return a;var s=/\+/g;e=e.split(t);var u=1e3;i&&"number"==typeof i.maxKeys&&(u=i.maxKeys);var l=e.length;u>0&&l>u&&(l=u);for(var c=0;c=0?(f=m.substr(0,g),p=m.substr(g+1)):(f=m,p=""),h=decodeURIComponent(f),d=decodeURIComponent(p),r(a,h)?o(a[h])?a[h].push(d):a[h]=[a[h],d]:a[h]=d}return a};var o=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)}},{}],116:[function(e,t,n){"use strict";function r(e,t){if(e.map)return e.map(t);for(var n=[],r=0;r0?("string"==typeof t||a.objectMode||Object.getPrototypeOf(t)===N.prototype||(t=o(t)),r?a.endEmitted?e.emit("error",new Error("stream.unshift() after end event")):c(e,a,t,!0):a.ended?e.emit("error",new Error("stream.push() after EOF")):(a.reading=!1,a.decoder&&!n?(t=a.decoder.write(t),a.objectMode||0!==t.length?c(e,a,t,!1):b(e,a)):c(e,a,t,!1))):r||(a.reading=!1)}return p(a)}function c(e,t,n,r){t.flowing&&0===t.length&&!t.sync?(e.emit("data",n),e.read(0)):(t.length+=t.objectMode?1:n.length,r?t.buffer.unshift(n):t.buffer.push(n),t.needReadable&&g(e)),b(e,t)}function f(e,t){var n;return i(t)||"string"==typeof t||void 0===t||e.objectMode||(n=new TypeError("Invalid non-string/buffer chunk")),n}function p(e){return!e.ended&&(e.needReadable||e.length=K?e=K:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}function d(e,t){return e<=0||0===t.length&&t.ended?0:t.objectMode?1:e!==e?t.flowing&&t.length?t.buffer.head.data.length:t.length:(e>t.highWaterMark&&(t.highWaterMark=h(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function m(e,t){if(!t.ended){if(t.decoder){var n=t.decoder.end();n&&n.length&&(t.buffer.push(n),t.length+=t.objectMode?1:n.length)}t.ended=!0,g(e)}}function g(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(I("emitReadable",t.flowing),t.emittedReadable=!0,t.sync?R(v,e):v(e))}function v(e){I("emit readable"),e.emit("readable"),x(e)}function b(e,t){t.readingMore||(t.readingMore=!0,R(y,e,t))}function y(e,t){for(var n=t.length;!t.reading&&!t.flowing&&!t.ended&&t.length=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.head.data:t.buffer.concat(t.length),t.buffer.clear()):n=k(e,t.buffer,t.decoder),n}function k(e,t,n){var r;return ei.length?i.length:e;if(a===i.length?o+=i:o+=i.slice(0,e),0===(e-=a)){a===i.length?(++r,n.next?t.head=n.next:t.head=t.tail=null):(t.head=n,n.data=i.slice(a));break}++r}return t.length-=r,o}function S(e,t){var n=N.allocUnsafe(e),r=t.head,o=1;for(r.data.copy(n),e-=r.data.length;r=r.next;){var i=r.data,a=e>i.length?i.length:e;if(i.copy(n,n.length-e,0,a),0===(e-=a)){a===i.length?(++o,r.next?t.head=r.next:t.head=t.tail=null):(t.head=r,r.data=i.slice(a));break}++o}return t.length-=o,n}function B(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');t.endEmitted||(t.ended=!0,R(D,t,e))}function D(e,t){e.endEmitted||0!==e.length||(e.endEmitted=!0,t.readable=!1,t.emit("end"))}function T(e,t){for(var n=0,r=e.length;n=t.highWaterMark||t.ended))return I("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?B(this):g(this),null;if(0===(e=d(e,t))&&t.ended)return 0===t.length&&B(this),null;var r=t.needReadable;I("need readable",r),(0===t.length||t.length-e0?C(e,t):null)?(t.needReadable=!0,e=0):t.length-=e,0===t.length&&(t.ended||(t.needReadable=!0),n!==e&&t.ended&&B(this)),null!==o&&this.emit("data",o),o},u.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))},u.prototype.pipe=function(e,t){function r(e,t){I("onunpipe"),e===p&&t&&!1===t.hasUnpiped&&(t.hasUnpiped=!0,i())}function o(){I("onend"),e.end()}function i(){I("cleanup"),e.removeListener("close",l),e.removeListener("finish",c),e.removeListener("drain",m),e.removeListener("error",u),e.removeListener("unpipe",r),p.removeListener("end",o),p.removeListener("end",f),p.removeListener("data",s),g=!0,!h.awaitDrain||e._writableState&&!e._writableState.needDrain||m()}function s(t){I("ondata"),v=!1,!1!==e.write(t)||v||((1===h.pipesCount&&h.pipes===e||h.pipesCount>1&&-1!==T(h.pipes,e))&&!g&&(I("false write response, pause",p._readableState.awaitDrain),p._readableState.awaitDrain++,v=!0),p.pause())}function u(t){I("onerror",t),f(),e.removeListener("error",u),0===M(e,"error")&&e.emit("error",t)}function l(){e.removeListener("finish",c),f()}function c(){I("onfinish"),e.removeListener("close",l),f()}function f(){I("unpipe"),p.unpipe(e)}var p=this,h=this._readableState;switch(h.pipesCount){case 0:h.pipes=e;break;case 1:h.pipes=[h.pipes,e];break;default:h.pipes.push(e)}h.pipesCount+=1,I("pipe count=%d opts=%j",h.pipesCount,t);var d=(!t||!1!==t.end)&&e!==n.stdout&&e!==n.stderr?o:f;h.endEmitted?R(d):p.once("end",d),e.on("unpipe",r);var m=_(p);e.on("drain",m);var g=!1,v=!1;return p.on("data",s),a(e,"error",u),e.once("close",l),e.once("finish",c),e.emit("pipe",p),h.flowing||(I("pipe resume"),p.resume()),e},u.prototype.unpipe=function(e){var t=this._readableState,n={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes?this:(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,n),this);if(!e){var r=t.pipes,o=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var i=0;i-1?setImmediate:O;l.WritableState=u;var D=e("core-util-is");D.inherits=e("inherits");var T={deprecate:e("util-deprecate")},R=e("./internal/streams/stream"),F=e("safe-buffer").Buffer,L=r.Uint8Array||function(){},M=e("./internal/streams/destroy");D.inherits(l,R),u.prototype.getBuffer=function(){for(var e=this.bufferedRequest,t=[];e;)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(u.prototype,"buffer",{get:T.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}();var U;"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(U=Function.prototype[Symbol.hasInstance],Object.defineProperty(l,Symbol.hasInstance,{value:function(e){return!!U.call(this,e)||e&&e._writableState instanceof u}})):U=function(e){return e instanceof this},l.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},l.prototype.write=function(e,t,n){var r=this._writableState,o=!1,u=a(e)&&!r.objectMode;return u&&!F.isBuffer(e)&&(e=i(e)),"function"==typeof t&&(n=t,t=null),u?t="buffer":t||(t=r.defaultEncoding),"function"!=typeof n&&(n=s),r.ended?c(this,n):(u||f(this,r,e,n))&&(r.pendingcb++,o=h(this,r,u,e,t,n)),o},l.prototype.cork=function(){this._writableState.corked++},l.prototype.uncork=function(){var e=this._writableState;e.corked&&(e.corked--,e.writing||e.corked||e.finished||e.bufferProcessing||!e.bufferedRequest||_(this,e))},l.prototype.setDefaultEncoding=function(e){if("string"==typeof e&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+e);return this._writableState.defaultEncoding=e,this},l.prototype._write=function(e,t,n){n(new Error("_write() is not implemented"))},l.prototype._writev=null,l.prototype.end=function(e,t,n){var r=this._writableState;"function"==typeof e?(n=e,e=null,t=null):"function"==typeof t&&(n=t,t=null),null!==e&&void 0!==e&&this.write(e,t),r.corked&&(r.corked=1,this.uncork()),r.ending||r.finished||C(this,r,n)},Object.defineProperty(l.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),l.prototype.destroy=M.destroy,l.prototype._undestroy=M.undestroy,l.prototype._destroy=function(e,t){this.end(),t(e)}}).call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./_stream_duplex":118,"./internal/streams/destroy":124,"./internal/streams/stream":125,_process:113,"core-util-is":101,inherits:106,"process-nextick-args":112,"safe-buffer":144,"util-deprecate":164}],123:[function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t,n){e.copy(t,n)}var i=e("safe-buffer").Buffer;t.exports=function(){function e(){r(this,e),this.head=null,this.tail=null,this.length=0}return e.prototype.push=function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length},e.prototype.unshift=function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length},e.prototype.shift=function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}},e.prototype.clear=function(){this.head=this.tail=null,this.length=0},e.prototype.join=function(e){if(0===this.length)return"";for(var t=this.head,n=""+t.data;t=t.next;)n+=e+t.data;return n},e.prototype.concat=function(e){if(0===this.length)return i.alloc(0);if(1===this.length)return this.head.data;for(var t=i.allocUnsafe(e>>>0),n=this.head,r=0;n;)o(n.data,t,r),r+=n.data.length,n=n.next;return t},e}()},{"safe-buffer":144}],124:[function(e,t,n){"use strict";function r(e,t){e.emit("error",t)}var o=e("process-nextick-args");t.exports={destroy:function(e,t){var n=this,i=this._readableState&&this._readableState.destroyed,a=this._writableState&&this._writableState.destroyed;i||a?t?t(e):!e||this._writableState&&this._writableState.errorEmitted||o(r,this,e):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,function(e){!t&&e?(o(r,n,e),n._writableState&&(n._writableState.errorEmitted=!0)):t&&t(e)}))},undestroy: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)}}},{"process-nextick-args":112}],125:[function(e,t,n){t.exports=e("events").EventEmitter},{events:102}],126:[function(e,t,n){(n=t.exports=e("./lib/_stream_readable.js")).Stream=n,n.Readable=n,n.Writable=e("./lib/_stream_writable.js"),n.Duplex=e("./lib/_stream_duplex.js"),n.Transform=e("./lib/_stream_transform.js"),n.PassThrough=e("./lib/_stream_passthrough.js")},{"./lib/_stream_duplex.js":118,"./lib/_stream_passthrough.js":119,"./lib/_stream_readable.js":120,"./lib/_stream_transform.js":121,"./lib/_stream_writable.js":122}],127:[function(e,t,n){"use strict";t.exports={ABSOLUTE:"absolute",PATH_RELATIVE:"pathRelative",ROOT_RELATIVE:"rootRelative",SHORTEST:"shortest"}},{}],128:[function(e,t,n){"use strict";function r(e,t){return!e.auth||t.removeAuth||!e.extra.relation.maximumHost&&t.output!==d.ABSOLUTE?"":e.auth+"@"}function o(e,t){return e.hash?e.hash:""}function i(e,t){return e.host.full&&(e.extra.relation.maximumAuth||t.output===d.ABSOLUTE)?e.host.full:""}function a(e,t){var n="",r=e.path.absolute.string,o=e.path.relative.string,i=h(e,t);if(e.extra.relation.maximumHost||t.output===d.ABSOLUTE||t.output===d.ROOT_RELATIVE)n=r;else if(o.length<=r.length&&t.output===d.SHORTEST||t.output===d.PATH_RELATIVE){if(""===(n=o)){var a=p(e,t)&&!!f(e,t);e.extra.relation.maximumPath&&!i?n="./":!e.extra.relation.overridesQuery||i||a||(n="./")}}else n=r;return"/"!==n||i||!t.removeRootTrailingSlash||e.extra.relation.minimumPort&&t.output!==d.ABSOLUTE||(n=""),n}function s(e,t){return e.port&&!e.extra.portIsDefault&&e.extra.relation.maximumHost?":"+e.port:""}function u(e,t){return p(e,t)?f(e,t):""}function l(e,t){return h(e,t)?e.resource:""}function c(e,t){var n="";return(e.extra.relation.maximumHost||t.output===d.ABSOLUTE)&&(e.extra.relation.minimumScheme&&t.schemeRelative&&t.output!==d.ABSOLUTE?n+="//":n+=e.scheme+"://"),n}function f(e,t){var n=t.removeEmptyQueries&&e.extra.relation.minimumPort;return e.query.string[n?"stripped":"full"]}function p(e,t){return!e.extra.relation.minimumQuery||t.output===d.ABSOLUTE||t.output===d.ROOT_RELATIVE}function h(e,t){var n=t.removeDirectoryIndexes&&e.extra.resourceIsIndex,r=e.extra.relation.minimumResource&&t.output!==d.ABSOLUTE&&t.output!==d.ROOT_RELATIVE;return!!e.resource&&!r&&!n}var d=e("./constants");t.exports=function(e,t){var n="";return n+=c(e,t),n+=r(e,t),n+=i(e,t),n+=s(e,t),n+=a(e,t),n+=l(e,t),n+=u(e,t),n+=o(e,t)}},{"./constants":127}],129:[function(e,t,n){"use strict";function r(e,t){this.options=a(t,{defaultPorts:{ftp:21,http:80,https:443},directoryIndexes:["index.html"],ignore_www:!1,output:r.SHORTEST,rejectedSchemes:["data","javascript","mailto"],removeAuth:!1,removeDirectoryIndexes:!0,removeEmptyQueries:!1,removeRootTrailingSlash:!0,schemeRelative:!0,site:void 0,slashesDenoteHost:!0}),this.from=u.from(e,this.options,null)}var o=e("./constants"),i=e("./format"),a=e("./options"),s=e("./util/object"),u=e("./parse"),l=e("./relate");r.prototype.relate=function(e,t,n){if(s.isPlainObject(t)?(n=t,t=e,e=null):t||(t=e,e=null),n=a(n,this.options),e=e||n.site,!(e=u.from(e,n,this.from))||!e.href)throw new Error("from value not defined.");if(e.extra.hrefInfo.minimumPathOnly)throw new Error("from value supplied is not absolute: "+e.href);return!1===(t=u.to(t,n)).valid?t.href:(t=l(e,t,n),t=i(t,n))},r.relate=function(e,t,n){return(new r).relate(e,t,n)},s.shallowMerge(r,o),t.exports=r},{"./constants":127,"./format":128,"./options":130,"./parse":133,"./relate":140,"./util/object":142}],130:[function(e,t,n){"use strict";function r(e,t){return t instanceof Object&&e instanceof Object?t instanceof Array&&e instanceof Array?t.concat(e):o.shallowMerge(e,t):e}var o=e("./util/object");t.exports=function(e,t){if(o.isPlainObject(e)){var n={};for(var i in t)t.hasOwnProperty(i)&&(void 0!==e[i]?n[i]=r(e[i],t[i]):n[i]=t[i]);return n}return t}},{"./util/object":142}],131:[function(e,t,n){"use strict";t.exports=function(e,t){if(t.ignore_www){var n=e.host.full;if(n){var r=n;0===n.indexOf("www.")&&(r=n.substr(4)),e.host.stripped=r}}}},{}],132:[function(e,t,n){"use strict";t.exports=function(e){var t=!(e.scheme||e.auth||e.host.full||e.port),n=t&&!e.path.absolute.string,r=n&&!e.resource,o=r&&!e.query.string.full.length,i=o&&!e.hash;e.extra.hrefInfo.minimumPathOnly=t,e.extra.hrefInfo.minimumResourceOnly=n,e.extra.hrefInfo.minimumQueryOnly=r,e.extra.hrefInfo.minimumHashOnly=o,e.extra.hrefInfo.empty=i}},{}],133:[function(e,t,n){"use strict";function r(e,t){var n=l(e,t);return!1===n.valid?n:(i(n,t),s(n,t),a(n,t),u(n,t),o(n),n)}var o=e("./hrefInfo"),i=e("./host"),a=e("./path"),s=e("./port"),u=e("./query"),l=e("./urlstring"),c=e("../util/path");t.exports={from:function(e,t,n){if(e){var o=r(e,t),i=c.resolveDotSegments(o.path.absolute.array);return o.path.absolute.array=i,o.path.absolute.string="/"+c.join(i),o}return n},to:r}},{"../util/path":143,"./host":131,"./hrefInfo":132,"./path":134,"./port":135,"./query":136,"./urlstring":137}],134:[function(e,t,n){"use strict";function r(e,t){var n=!1;return t.directoryIndexes.every(function(t){return t!==e||(n=!0,!1)}),n}function o(e){if("/"!==e){var t=[];return e.split("/").forEach(function(e){""!==e&&t.push(e)}),t}return[]}t.exports=function(e,t){var n=e.path.absolute.string;if(n){var i=n.lastIndexOf("/");if(i>-1){if(++i-1&&(n=n.toString(),null===e.port&&(e.port=n),e.extra.portIsDefault=e.port===n)}},{}],136:[function(e,t,n){"use strict";function r(e,t){var n=0,r="";for(var i in e)if(""!==i&&!0===o.call(e,i)){var a=e[i];""===a&&t||(r+=1==++n?"?":"&",i=encodeURIComponent(i),r+=""!==a?i+"="+encodeURIComponent(a).replace(/%20/g,"+"):i)}return r}var o=Object.prototype.hasOwnProperty;t.exports=function(e,t){e.query.string.full=r(e.query.object,!1),t.removeEmptyQueries&&(e.query.string.stripped=r(e.query.object,!0))}},{}],137:[function(e,t,n){"use strict";function r(e){var t=e.protocol;return t&&t.indexOf(":")===t.length-1&&(t=t.substr(0,t.length-1)),e.host={full:e.hostname,stripped:null},e.path={absolute:{array:null,string:e.pathname},relative:{array:null,string:null}},e.query={object:e.query,string:{full:null,stripped:null}},e.extra={hrefInfo:{minimumPathOnly:null,minimumResourceOnly:null,minimumQueryOnly:null,minimumHashOnly:null,empty:null,separatorOnlyQuery:"?"===e.search},portIsDefault:null,relation:{maximumScheme:null,maximumAuth:null,maximumHost:null,maximumPort:null,maximumPath:null,maximumResource:null,maximumQuery:null,maximumHash:null,minimumScheme:null,minimumAuth:null,minimumHost:null,minimumPort:null,minimumPath:null,minimumResource:null,minimumQuery:null,minimumHash:null,overridesQuery:null},resourceIsIndex:null,slashes:e.slashes},e.resource=null,e.scheme=t,delete e.hostname,delete e.pathname,delete e.protocol,delete e.search,delete e.slashes,e}function o(e,t){var n=!0;return t.rejectedSchemes.every(function(t){return n=!(0===e.indexOf(t+":"))}),n}var i=e("url").parse;t.exports=function(e,t){return o(e,t)?r(i(e,!0,t.slashesDenoteHost)):{href:e,valid:!1}}},{url:162}],138:[function(e,t,n){"use strict";function r(e,t){if(e.extra.relation.maximumHost||!e.extra.hrefInfo.minimumResourceOnly){var n=e.path.absolute.array,r="/";n?(e.extra.hrefInfo.minimumPathOnly&&0!==e.path.absolute.string.indexOf("/")&&(n=t.path.absolute.array.concat(n)),n=u.resolveDotSegments(n),r+=u.join(n)):n=[],e.path.absolute.array=n,e.path.absolute.string=r}else e.path=s.clone(t.path)}function o(e,t){e.port=t.port,e.extra.portIsDefault=t.extra.portIsDefault}function i(e,t){e.resource=t.resource,e.extra.resourceIsIndex=t.extra.resourceIsIndex}var a=e("./findRelation"),s=e("../util/object"),u=e("../util/path");t.exports=function(e,t,n){a.upToPath(e,t,n),e.extra.relation.minimumScheme&&(e.scheme=t.scheme),e.extra.relation.minimumAuth&&(e.auth=t.auth),e.extra.relation.minimumHost&&(e.host=s.clone(t.host)),e.extra.relation.minimumPort&&o(e,t),e.extra.relation.minimumScheme&&r(e,t),a.pathOn(e,t,n),e.extra.relation.minimumResource&&i(e,t),e.extra.relation.minimumQuery&&(e.query=s.clone(t.query)),e.extra.relation.minimumHash&&(e.hash=t.hash)}},{"../util/object":142,"../util/path":143,"./findRelation":139}],139:[function(e,t,n){"use strict";t.exports={pathOn:function(e,t,n){var r=e.extra.hrefInfo.minimumQueryOnly,o=e.extra.hrefInfo.minimumHashOnly,i=e.extra.hrefInfo.empty,a=e.extra.relation.minimumPort,s=e.extra.relation.minimumScheme,u=a&&e.path.absolute.string===t.path.absolute.string,l=e.resource===t.resource||!e.resource&&t.extra.resourceIsIndex||n.removeDirectoryIndexes&&e.extra.resourceIsIndex&&!t.resource,c=u&&(l||r||o||i),f=n.removeEmptyQueries?"stripped":"full",p=e.query.string[f],h=t.query.string[f],d=c&&!!p&&p===h||(o||i)&&!e.extra.hrefInfo.separatorOnlyQuery,m=d&&e.hash===t.hash;e.extra.relation.minimumPath=u,e.extra.relation.minimumResource=c,e.extra.relation.minimumQuery=d,e.extra.relation.minimumHash=m,e.extra.relation.maximumPort=!s||s&&!u,e.extra.relation.maximumPath=!s||s&&!c,e.extra.relation.maximumResource=!s||s&&!d,e.extra.relation.maximumQuery=!s||s&&!m,e.extra.relation.maximumHash=!s||s&&!m,e.extra.relation.overridesQuery=u&&e.extra.relation.maximumResource&&!d&&!!h},upToPath:function(e,t,n){var r=e.extra.hrefInfo.minimumPathOnly,o=e.scheme===t.scheme||!e.scheme,i=o&&(e.auth===t.auth||n.removeAuth||r),a=n.ignore_www?"stripped":"full",s=i&&(e.host[a]===t.host[a]||r),u=s&&(e.port===t.port||r);e.extra.relation.minimumScheme=o,e.extra.relation.minimumAuth=i,e.extra.relation.minimumHost=s,e.extra.relation.minimumPort=u,e.extra.relation.maximumScheme=!o||o&&!i,e.extra.relation.maximumAuth=!o||o&&!s,e.extra.relation.maximumHost=!o||o&&!u}}},{}],140:[function(e,t,n){"use strict";var r=e("./absolutize"),o=e("./relativize");t.exports=function(e,t,n){return r(t,e,n),o(t,e,n),t}},{"./absolutize":138,"./relativize":141}],141:[function(e,t,n){"use strict";function r(e,t){var n=[],r=!0,o=-1;return t.forEach(function(t,i){r&&(e[i]!==t?r=!1:o=i),r||n.push("..")}),e.forEach(function(e,t){t>o&&n.push(e)}),n}var o=e("../util/path");t.exports=function(e,t,n){if(e.extra.relation.minimumScheme){var i=r(e.path.absolute.array,t.path.absolute.array);e.path.relative.array=i,e.path.relative.string=o.join(i)}}},{"../util/path":143}],142:[function(e,t,n){"use strict";function r(e){if(e instanceof Object){var t=e instanceof Array?[]:{};for(var n in e)e.hasOwnProperty(n)&&(t[n]=r(e[n]));return t}return e}t.exports={clone:r,isPlainObject:function(e){return!!e&&"object"==typeof e&&e.constructor===Object},shallowMerge:function(e,t){if(e instanceof Object&&t instanceof Object)for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}}},{}],143:[function(e,t,n){"use strict";t.exports={join:function(e){return e.length>0?e.join("/")+"/":""},resolveDotSegments:function(e){var t=[];return e.forEach(function(e){".."!==e?"."!==e&&t.push(e):t.length>0&&t.splice(t.length-1,1)}),t}}},{}],144:[function(e,t,n){function r(e,t){for(var n in e)t[n]=e[n]}function o(e,t,n){return a(e,t,n)}var i=e("buffer"),a=i.Buffer;a.from&&a.alloc&&a.allocUnsafe&&a.allocUnsafeSlow?t.exports=i:(r(i,n),n.Buffer=o),r(a,o),o.from=function(e,t,n){if("number"==typeof e)throw new TypeError("Argument must not be a number");return a(e,t,n)},o.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError("Argument must be a number");var r=a(e);return void 0!==t?"string"==typeof n?r.fill(t,n):r.fill(t):r.fill(0),r},o.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return a(e)},o.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return i.SlowBuffer(e)}},{buffer:4}],145:[function(e,t,n){function r(){this._array=[],this._set=a?new Map:Object.create(null)}var o=e("./util"),i=Object.prototype.hasOwnProperty,a="undefined"!=typeof Map;r.fromArray=function(e,t){for(var n=new r,o=0,i=e.length;o=0)return t}else{var n=o.toSetString(e);if(i.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},r.prototype.at=function(e){if(e>=0&&e>1;return 1==(1&e)?-t:t}var i=e("./base64");n.encode=function(e){var t,n="",o=r(e);do{t=31&o,(o>>>=5)>0&&(t|=32),n+=i.encode(t)}while(o>0);return n},n.decode=function(e,t,n){var r,a,s=e.length,u=0,l=0;do{if(t>=s)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(a=i.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));r=!!(32&a),u+=(a&=31)<0?t-u>1?r(u,t,o,i,a,s):s==n.LEAST_UPPER_BOUND?t1?r(e,u,o,i,a,s):s==n.LEAST_UPPER_BOUND?u:e<0?-1:e}n.GREATEST_LOWER_BOUND=1,n.LEAST_UPPER_BOUND=2,n.search=function(e,t,o,i){if(0===t.length)return-1;var a=r(-1,t.length,e,t,o,i||n.GREATEST_LOWER_BOUND);if(a<0)return-1;for(;a-1>=0&&0===o(t[a],t[a-1],!0);)--a;return a}},{}],149:[function(e,t,n){function r(e,t){var n=e.generatedLine,r=t.generatedLine,o=e.generatedColumn,a=t.generatedColumn;return r>n||r==n&&a>=o||i.compareByGeneratedPositionsInflated(e,t)<=0}function o(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}var i=e("./util");o.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},o.prototype.add=function(e){r(this._last,e)?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},o.prototype.toArray=function(){return this._sorted||(this._array.sort(i.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},n.MappingList=o},{"./util":154}],150:[function(e,t,n){function r(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function o(e,t){return Math.round(e+Math.random()*(t-e))}function i(e,t,n,a){if(n=0){var i=this._originalMappings[o];if(void 0===e.column)for(var a=i.originalLine;i&&i.originalLine===a;)r.push({line:s.getArg(i,"generatedLine",null),column:s.getArg(i,"generatedColumn",null),lastColumn:s.getArg(i,"lastGeneratedColumn",null)}),i=this._originalMappings[++o];else for(var l=i.originalColumn;i&&i.originalLine===t&&i.originalColumn==l;)r.push({line:s.getArg(i,"generatedLine",null),column:s.getArg(i,"generatedColumn",null),lastColumn:s.getArg(i,"lastGeneratedColumn",null)}),i=this._originalMappings[++o]}return r},n.SourceMapConsumer=r,(o.prototype=Object.create(r.prototype)).consumer=r,o.fromSourceMap=function(e){var t=Object.create(o.prototype),n=t._names=l.fromArray(e._names.toArray(),!0),r=t._sources=l.fromArray(e._sources.toArray(),!0);t.sourceRoot=e._sourceRoot,t.sourcesContent=e._generateSourcesContent(t._sources.toArray(),t.sourceRoot),t.file=e._file;for(var a=e._mappings.toArray().slice(),u=t.__generatedMappings=[],c=t.__originalMappings=[],p=0,h=a.length;p1&&(n.source=m+o[1],m+=o[1],n.originalLine=h+o[2],h=n.originalLine,n.originalLine+=1,n.originalColumn=d+o[3],d=n.originalColumn,o.length>4&&(n.name=g+o[4],g+=o[4])),E.push(n),"number"==typeof n.originalLine&&w.push(n)}f(E,s.compareByGeneratedPositionsDeflated),this.__generatedMappings=E,f(w,s.compareByOriginalPositions),this.__originalMappings=w},o.prototype._findMapping=function(e,t,n,r,o,i){if(e[n]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+e[n]);if(e[r]<0)throw new TypeError("Column must be greater than or equal to 0, got "+e[r]);return u.search(e,t,o,i)},o.prototype.computeColumnSpans=function(){for(var e=0;e=0){var o=this._generatedMappings[n];if(o.generatedLine===t.generatedLine){var i=s.getArg(o,"source",null);null!==i&&(i=this._sources.at(i),null!=this.sourceRoot&&(i=s.join(this.sourceRoot,i)));var a=s.getArg(o,"name",null);return null!==a&&(a=this._names.at(a)),{source:i,line:s.getArg(o,"originalLine",null),column:s.getArg(o,"originalColumn",null),name:a}}}return{source:null,line:null,column:null,name:null}},o.prototype.hasContentsOfAllSources=function(){return!!this.sourcesContent&&(this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some(function(e){return null==e}))},o.prototype.sourceContentFor=function(e,t){if(!this.sourcesContent)return null;if(null!=this.sourceRoot&&(e=s.relative(this.sourceRoot,e)),this._sources.has(e))return this.sourcesContent[this._sources.indexOf(e)];var n;if(null!=this.sourceRoot&&(n=s.urlParse(this.sourceRoot))){var r=e.replace(/^file:\/\//,"");if("file"==n.scheme&&this._sources.has(r))return this.sourcesContent[this._sources.indexOf(r)];if((!n.path||"/"==n.path)&&this._sources.has("/"+e))return this.sourcesContent[this._sources.indexOf("/"+e)]}if(t)return null;throw new Error('"'+e+'" is not in the SourceMap.')},o.prototype.generatedPositionFor=function(e){var t=s.getArg(e,"source");if(null!=this.sourceRoot&&(t=s.relative(this.sourceRoot,t)),!this._sources.has(t))return{line:null,column:null,lastColumn:null};var n={source:t=this._sources.indexOf(t),originalLine:s.getArg(e,"line"),originalColumn:s.getArg(e,"column")},o=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",s.compareByOriginalPositions,s.getArg(e,"bias",r.GREATEST_LOWER_BOUND));if(o>=0){var i=this._originalMappings[o];if(i.source===n.source)return{line:s.getArg(i,"generatedLine",null),column:s.getArg(i,"generatedColumn",null),lastColumn:s.getArg(i,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},n.BasicSourceMapConsumer=o,(a.prototype=Object.create(r.prototype)).constructor=r,a.prototype._version=3,Object.defineProperty(a.prototype,"sources",{get:function(){for(var e=[],t=0;t0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},r.prototype._serializeMappings=function(){for(var e,t,n,r,a=0,s=1,u=0,l=0,c=0,f=0,p="",h=this._mappings.toArray(),d=0,m=h.length;d0){if(!i.compareByGeneratedPositionsInflated(t,h[d-1]))continue;e+=","}e+=o.encode(t.generatedColumn-a),a=t.generatedColumn,null!=t.source&&(r=this._sources.indexOf(t.source),e+=o.encode(r-f),f=r,e+=o.encode(t.originalLine-1-l),l=t.originalLine-1,e+=o.encode(t.originalColumn-u),u=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=o.encode(n-c),c=n)),p+=e}return p},r.prototype._generateSourcesContent=function(e,t){return e.map(function(e){if(!this._sourcesContents)return null;null!=t&&(e=i.relative(t,e));var n=i.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null},this)},r.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},r.prototype.toString=function(){return JSON.stringify(this.toJSON())},n.SourceMapGenerator=r},{"./array-set":145,"./base64-vlq":146,"./mapping-list":149,"./util":154}],153:[function(e,t,n){function r(e,t,n,r,o){this.children=[],this.sourceContents={},this.line=null==e?null:e,this.column=null==t?null:t,this.source=null==n?null:n,this.name=null==o?null:o,this[s]=!0,null!=r&&this.add(r)}var o=e("./source-map-generator").SourceMapGenerator,i=e("./util"),a=/(\r?\n)/,s="$$$isSourceNode$$$";r.fromStringWithSourceMap=function(e,t,n){function o(e,t){if(null===e||void 0===e.source)s.add(t);else{var o=n?i.join(n,e.source):e.source;s.add(new r(e.originalLine,e.originalColumn,o,t,e.name))}}var s=new r,u=e.split(a),l=0,c=function(){function e(){return l=0;t--)this.prepend(e[t]);else{if(!e[s]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);this.children.unshift(e)}return this},r.prototype.walk=function(e){for(var t,n=0,r=this.children.length;n0){for(t=[],n=0;n=0;c--)"."===(a=u[c])?u.splice(c,1):".."===a?l++:l>0&&(""===a?(u.splice(c+1,l),l=0):(u.splice(c,2),l--));return""===(t=u.join("/"))&&(t=s?"/":"."),i?(i.path=t,o(i)):t}function a(e){return e}function s(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function u(e,t){return e===t?0:e>t?1:-1}n.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var l=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.]*)(?::(\d+))?(\S*)$/,c=/^data:.+\,.+$/;n.urlParse=r,n.urlGenerate=o,n.normalize=i,n.join=function(e,t){""===e&&(e="."),""===t&&(t=".");var n=r(t),a=r(e);if(a&&(e=a.path||"/"),n&&!n.scheme)return a&&(n.scheme=a.scheme),o(n);if(n||t.match(c))return t;if(a&&!a.host&&!a.path)return a.host=t,o(a);var s="/"===t.charAt(0)?t:i(e.replace(/\/+$/,"")+"/"+t);return a?(a.path=s,o(a)):s},n.isAbsolute=function(e){return"/"===e.charAt(0)||!!e.match(l)},n.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var f=!("__proto__"in Object.create(null));n.toSetString=f?a:function(e){return s(e)?"$"+e:e},n.fromSetString=f?a:function(e){return s(e)?e.slice(1):e},n.compareByOriginalPositions=function(e,t,n){var r=e.source-t.source;return 0!==r?r:0!=(r=e.originalLine-t.originalLine)?r:0!=(r=e.originalColumn-t.originalColumn)||n?r:0!=(r=e.generatedColumn-t.generatedColumn)?r:0!=(r=e.generatedLine-t.generatedLine)?r:e.name-t.name},n.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r?r:0!=(r=e.generatedColumn-t.generatedColumn)||n?r:0!=(r=e.source-t.source)?r:0!=(r=e.originalLine-t.originalLine)?r:0!=(r=e.originalColumn-t.originalColumn)?r:e.name-t.name},n.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n?n:0!=(n=e.generatedColumn-t.generatedColumn)?n:0!==(n=u(e.source,t.source))?n:0!=(n=e.originalLine-t.originalLine)?n:0!=(n=e.originalColumn-t.originalColumn)?n:u(e.name,t.name)}},{}],155:[function(e,t,n){n.SourceMapGenerator=e("./lib/source-map-generator").SourceMapGenerator,n.SourceMapConsumer=e("./lib/source-map-consumer").SourceMapConsumer,n.SourceNode=e("./lib/source-node").SourceNode},{"./lib/source-map-consumer":151,"./lib/source-map-generator":152,"./lib/source-node":153}],156:[function(e,t,n){(function(t){var r=e("./lib/request"),o=e("xtend"),i=e("builtin-status-codes"),a=e("url"),s=n;s.request=function(e,n){e="string"==typeof e?a.parse(e):o(e);var i=-1===t.location.protocol.search(/^https?:$/)?"http:":"",s=e.protocol||i,u=e.hostname||e.host,l=e.port,c=e.path||"/";u&&-1!==u.indexOf(":")&&(u="["+u+"]"),e.url=(u?s+"//"+u:"")+(l?":"+l:"")+c,e.method=(e.method||"GET").toUpperCase(),e.headers=e.headers||{};var f=new r(e);return n&&f.on("response",n),f},s.get=function(e,t){var n=s.request(e,t);return n.end(),n},s.Agent=function(){},s.Agent.defaultMaxSockets=4,s.STATUS_CODES=i,s.METHODS=["CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REPORT","SEARCH","SUBSCRIBE","TRACE","UNLOCK","UNSUBSCRIBE"]}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./lib/request":158,"builtin-status-codes":5,url:162,xtend:166}],157:[function(e,t,n){(function(e){function t(){if(void 0!==i)return i;if(e.XMLHttpRequest){i=new e.XMLHttpRequest;try{i.open("GET",e.XDomainRequest?"/":"https://example.com")}catch(e){i=null}}else i=null;return i}function r(e){var n=t();if(!n)return!1;try{return n.responseType=e,n.responseType===e}catch(e){}return!1}function o(e){return"function"==typeof e}n.fetch=o(e.fetch)&&o(e.ReadableStream),n.blobConstructor=!1;try{new Blob([new ArrayBuffer(1)]),n.blobConstructor=!0}catch(e){}var i,a=void 0!==e.ArrayBuffer,s=a&&o(e.ArrayBuffer.prototype.slice);n.arraybuffer=n.fetch||a&&r("arraybuffer"),n.msstream=!n.fetch&&s&&r("ms-stream"),n.mozchunkedarraybuffer=!n.fetch&&a&&r("moz-chunked-arraybuffer"),n.overrideMimeType=n.fetch||!!t()&&o(t().overrideMimeType),n.vbArray=o(e.VBArray),i=null}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],158:[function(e,t,n){(function(n,r,o){function i(e,t){return s.fetch&&t?"fetch":s.mozchunkedarraybuffer?"moz-chunked-arraybuffer":s.msstream?"ms-stream":s.arraybuffer&&e?"arraybuffer":s.vbArray&&e?"text:vbarray":"text"}function a(e){try{var t=e.status;return null!==t&&0!==t}catch(e){return!1}}var s=e("./capability"),u=e("inherits"),l=e("./response"),c=e("readable-stream"),f=e("to-arraybuffer"),p=l.IncomingMessage,h=l.readyStates,d=t.exports=function(e){var t=this;c.Writable.call(t),t._opts=e,t._body=[],t._headers={},e.auth&&t.setHeader("Authorization","Basic "+new o(e.auth).toString("base64")),Object.keys(e.headers).forEach(function(n){t.setHeader(n,e.headers[n])});var n,r=!0;if("disable-fetch"===e.mode||"timeout"in e)r=!1,n=!0;else if("prefer-streaming"===e.mode)n=!1;else if("allow-wrong-content-type"===e.mode)n=!s.overrideMimeType;else{if(e.mode&&"default"!==e.mode&&"prefer-fast"!==e.mode)throw new Error("Invalid value for opts.mode");n=!0}t._mode=i(n,r),t.on("finish",function(){t._onFinish()})};u(d,c.Writable),d.prototype.setHeader=function(e,t){var n=this,r=e.toLowerCase();-1===m.indexOf(r)&&(n._headers[r]={name:e,value:t})},d.prototype.getHeader=function(e){var t=this._headers[e.toLowerCase()];return t?t.value:null},d.prototype.removeHeader=function(e){delete this._headers[e.toLowerCase()]},d.prototype._onFinish=function(){var e=this;if(!e._destroyed){var t=e._opts,i=e._headers,a=null;"GET"!==t.method&&"HEAD"!==t.method&&(a=s.blobConstructor?new r.Blob(e._body.map(function(e){return f(e)}),{type:(i["content-type"]||{}).value||""}):o.concat(e._body).toString());var u=[];if(Object.keys(i).forEach(function(e){var t=i[e].name,n=i[e].value;Array.isArray(n)?n.forEach(function(e){u.push([t,e])}):u.push([t,n])}),"fetch"===e._mode)r.fetch(e._opts.url,{method:e._opts.method,headers:u,body:a||void 0,mode:"cors",credentials:t.withCredentials?"include":"same-origin"}).then(function(t){e._fetchResponse=t,e._connect()},function(t){e.emit("error",t)});else{var l=e._xhr=new r.XMLHttpRequest;try{l.open(e._opts.method,e._opts.url,!0)}catch(t){return void n.nextTick(function(){e.emit("error",t)})}"responseType"in l&&(l.responseType=e._mode.split(":")[0]),"withCredentials"in l&&(l.withCredentials=!!t.withCredentials),"text"===e._mode&&"overrideMimeType"in l&&l.overrideMimeType("text/plain; charset=x-user-defined"),"timeout"in t&&(l.timeout=t.timeout,l.ontimeout=function(){e.emit("timeout")}),u.forEach(function(e){l.setRequestHeader(e[0],e[1])}),e._response=null,l.onreadystatechange=function(){switch(l.readyState){case h.LOADING:case h.DONE:e._onXHRProgress()}},"moz-chunked-arraybuffer"===e._mode&&(l.onprogress=function(){e._onXHRProgress()}),l.onerror=function(){e._destroyed||e.emit("error",new Error("XHR error"))};try{l.send(a)}catch(t){return void n.nextTick(function(){e.emit("error",t)})}}}},d.prototype._onXHRProgress=function(){var e=this;a(e._xhr)&&!e._destroyed&&(e._response||e._connect(),e._response._onXHRProgress())},d.prototype._connect=function(){var e=this;e._destroyed||(e._response=new p(e._xhr,e._fetchResponse,e._mode),e._response.on("error",function(t){e.emit("error",t)}),e.emit("response",e._response))},d.prototype._write=function(e,t,n){this._body.push(e),n()},d.prototype.abort=d.prototype.destroy=function(){var e=this;e._destroyed=!0,e._response&&(e._response._destroyed=!0),e._xhr&&e._xhr.abort()},d.prototype.end=function(e,t,n){var r=this;"function"==typeof e&&(n=e,e=void 0),c.Writable.prototype.end.call(r,e,t,n)},d.prototype.flushHeaders=function(){},d.prototype.setTimeout=function(){},d.prototype.setNoDelay=function(){},d.prototype.setSocketKeepAlive=function(){};var m=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","user-agent","via"]}).call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer)},{"./capability":157,"./response":159,_process:113,buffer:4,inherits:106,"readable-stream":126,"to-arraybuffer":161}],159:[function(e,t,n){(function(t,r,o){var i=e("./capability"),a=e("inherits"),s=e("readable-stream"),u=n.readyStates={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},l=n.IncomingMessage=function(e,n,r){function a(){l.read().then(function(e){u._destroyed||(e.done?u.push(null):(u.push(new o(e.value)),a()))}).catch(function(e){u.emit("error",e)})}var u=this;if(s.Readable.call(u),u._mode=r,u.headers={},u.rawHeaders=[],u.trailers={},u.rawTrailers=[],u.on("end",function(){t.nextTick(function(){u.emit("close")})}),"fetch"===r){u._fetchResponse=n,u.url=n.url,u.statusCode=n.status,u.statusMessage=n.statusText,n.headers.forEach(function(e,t){u.headers[t.toLowerCase()]=e,u.rawHeaders.push(t,e)});var l=n.body.getReader();a()}else if(u._xhr=e,u._pos=0,u.url=e.responseURL,u.statusCode=e.status,u.statusMessage=e.statusText,e.getAllResponseHeaders().split(/\r?\n/).forEach(function(e){var t=e.match(/^([^:]+):\s*(.*)/);if(t){var n=t[1].toLowerCase();"set-cookie"===n?(void 0===u.headers[n]&&(u.headers[n]=[]),u.headers[n].push(t[2])):void 0!==u.headers[n]?u.headers[n]+=", "+t[2]:u.headers[n]=t[2],u.rawHeaders.push(t[1],t[2])}}),u._charset="x-user-defined",!i.overrideMimeType){var c=u.rawHeaders["mime-type"];if(c){var f=c.match(/;\s*charset=([^;])(;|$)/);f&&(u._charset=f[1].toLowerCase())}u._charset||(u._charset="utf-8")}};a(l,s.Readable),l.prototype._read=function(){},l.prototype._onXHRProgress=function(){var e=this,t=e._xhr,n=null;switch(e._mode){case"text:vbarray":if(t.readyState!==u.DONE)break;try{n=new r.VBArray(t.responseBody).toArray()}catch(e){}if(null!==n){e.push(new o(n));break}case"text":try{n=t.responseText}catch(t){e._mode="text:vbarray";break}if(n.length>e._pos){var i=n.substr(e._pos);if("x-user-defined"===e._charset){for(var a=new o(i.length),s=0;se._pos&&(e.push(new o(new Uint8Array(l.result.slice(e._pos)))),e._pos=l.result.byteLength)},l.onload=function(){e.push(null)},l.readAsArrayBuffer(n)}e._xhr.readyState===u.DONE&&"ms-stream"!==e._mode&&e.push(null)}}).call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer)},{"./capability":157,_process:113,buffer:4,inherits:106,"readable-stream":126}],160:[function(e,t,n){"use strict";function r(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}function o(e){var t=r(e);if("string"!=typeof t&&(g.isEncoding===v||!v(e)))throw new Error("Unknown encoding: "+e);return t||e}function i(e){this.encoding=o(e);var t;switch(this.encoding){case"utf16le":this.text=c,this.end=f,t=4;break;case"utf8":this.fillLast=l,t=4;break;case"base64":this.text=p,this.end=h,t=3;break;default:return this.write=d,void(this.end=m)}this.lastNeed=0,this.lastTotal=0,this.lastChar=g.allocUnsafe(t)}function a(e){return e<=127?0:e>>5==6?2:e>>4==14?3:e>>3==30?4:-1}function s(e,t,n){var r=t.length-1;if(r=0?(o>0&&(e.lastNeed=o-1),o):--r=0?(o>0&&(e.lastNeed=o-2),o):--r=0?(o>0&&(2===o?o=0:e.lastNeed=o-3),o):0}function u(e,t,n){if(128!=(192&t[0]))return e.lastNeed=0,"�".repeat(n);if(e.lastNeed>1&&t.length>1){if(128!=(192&t[1]))return e.lastNeed=1,"�".repeat(n+1);if(e.lastNeed>2&&t.length>2&&128!=(192&t[2]))return e.lastNeed=2,"�".repeat(n+2)}}function l(e){var t=this.lastTotal-this.lastNeed,n=u(this,e,t);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function c(e,t){if((e.length-t)%2==0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function f(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function p(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function h(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function d(e){return e.toString(this.encoding)}function m(e){return e&&e.length?this.write(e):""}var g=e("safe-buffer").Buffer,v=g.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};n.StringDecoder=i,i.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n",'"',"`"," ","\r","\n","\t"],f=["{","}","|","\\","^","`"].concat(c),p=["'"].concat(f),h=["%","/","?",";","#"].concat(p),d=["/","?","#"],m=/^[+a-z0-9A-Z_-]{0,63}$/,g=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,v={javascript:!0,"javascript:":!0},b={javascript:!0,"javascript:":!0},y={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},_=e("querystring");r.prototype.parse=function(e,t,n){if(!a.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var r=e.indexOf("?"),o=-1!==r&&r127?L+="x":L+=F[M];if(!L.match(m)){var N=T.slice(0,k),P=T.slice(k+1),q=F.match(g);q&&(N.push(q[1]),P.unshift(q[2])),P.length&&(f="/"+P.join(".")+f),this.hostname=N.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),D||(this.hostname=i.toASCII(this.hostname));var z=this.port?":"+this.port:"",I=this.hostname||"";this.host=I+z,this.href+=this.host,D&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==f[0]&&(f="/"+f))}if(!v[A])for(var k=0,R=p.length;k0)&&n.host.split("@"))&&(n.auth=D.shift(),n.host=n.hostname=D.shift())),n.search=e.search,n.query=e.query,a.isNull(n.pathname)&&a.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n;if(!E.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var C=E.slice(-1)[0],k=(n.host||e.host||E.length>1)&&("."===C||".."===C)||""===C,O=0,S=E.length;S>=0;S--)"."===(C=E[S])?E.splice(S,1):".."===C?(E.splice(S,1),O++):O&&(E.splice(S,1),O--);if(!_&&!w)for(;O--;O)E.unshift("..");!_||""===E[0]||E[0]&&"/"===E[0].charAt(0)||E.unshift(""),k&&"/"!==E.join("/").substr(-1)&&E.push("");var B=""===E[0]||E[0]&&"/"===E[0].charAt(0);if(x){n.hostname=n.host=B?"":E.length?E.shift():"";var D=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@");D&&(n.auth=D.shift(),n.host=n.hostname=D.shift())}return(_=_||n.host&&E.length)&&!B&&E.unshift(""),E.length?n.pathname=E.join("/"):(n.pathname=null,n.path=null),a.isNull(n.pathname)&&a.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},r.prototype.parseHost=function(){var e=this.host,t=u.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},{"./util":163,punycode:114,querystring:117}],163:[function(e,t,n){"use strict";t.exports={isString:function(e){return"string"==typeof e},isObject:function(e){return"object"==typeof e&&null!==e},isNull:function(e){return null===e},isNullOrUndefined:function(e){return null==e}}},{}],164:[function(e,t,n){(function(e){function n(t){try{if(!e.localStorage)return!1}catch(e){return!1}var n=e.localStorage[t];return null!=n&&"true"===String(n).toLowerCase()}t.exports=function(e,t){if(n("noDeprecation"))return e;var r=!1;return function(){if(!r){if(n("throwDeprecation"))throw new Error(t);n("traceDeprecation")?console.trace(t):console.warn(t),r=!0}return e.apply(this,arguments)}}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],165:[function(e,t,n){n.baseChar=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\uAC00-\uD7A3]/,n.ideographic=/[\u3007\u3021-\u3029\u4E00-\u9FA5]/,n.letter=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3007\u3021-\u3029\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\u4E00-\u9FA5\uAC00-\uD7A3]/,n.combiningChar=/[\u0300-\u0345\u0360\u0361\u0483-\u0486\u0591-\u05A1\u05A3-\u05B9\u05BB-\u05BD\u05BF\u05C1\u05C2\u05C4\u064B-\u0652\u0670\u06D6-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0901-\u0903\u093C\u093E-\u094D\u0951-\u0954\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u0A02\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A70\u0A71\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0B01-\u0B03\u0B3C\u0B3E-\u0B43\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B82\u0B83\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C01-\u0C03\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C82\u0C83\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0D02\u0D03\u0D3E-\u0D43\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EB9\u0EBB\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86-\u0F8B\u0F90-\u0F95\u0F97\u0F99-\u0FAD\u0FB1-\u0FB7\u0FB9\u20D0-\u20DC\u20E1\u302A-\u302F\u3099\u309A]/,n.digit=/[0-9\u0660-\u0669\u06F0-\u06F9\u0966-\u096F\u09E6-\u09EF\u0A66-\u0A6F\u0AE6-\u0AEF\u0B66-\u0B6F\u0BE7-\u0BEF\u0C66-\u0C6F\u0CE6-\u0CEF\u0D66-\u0D6F\u0E50-\u0E59\u0ED0-\u0ED9\u0F20-\u0F29]/,n.extender=/[\xB7\u02D0\u02D1\u0387\u0640\u0E46\u0EC6\u3005\u3031-\u3035\u309D\u309E\u30FC-\u30FE]/},{}],166:[function(e,t,n){t.exports=function(){for(var e={},t=0;t=0;r--)n[r]="(?:("+e.customAttrSurround[r][0].source+")\\s*"+t+"\\s*("+e.customAttrSurround[r][1].source+"))";n.push("(?:"+t+")"),t="(?:"+n.join("|")+")"}return new RegExp("^\\s*"+t)}function i(e){return l.concat(e.customAttrAssign||[]).map(function(e){return"(?:"+e.source+")"}).join("|")}function a(e,t){function n(e){var t=e.match(p);if(t){var n={tagName:t[1],attrs:[]};e=e.slice(t[0].length);for(var r,o;!(r=e.match(h))&&(o=e.match(c));)e=e.slice(o[0].length),n.attrs.push(o);if(r)return n.unarySlash=r[1],n.rest=e.slice(r[0].length),n}}function r(e,n){var r;if(n){var o=n.toLowerCase();for(r=l.length-1;r>=0&&l[r].tag.toLowerCase()!==o;r--);}else r=0;if(r>=0){for(var a=l.length-1;a>=r;a--)t.end&&t.end(l[a].tag,l[a].attrs,a>r||!e);l.length=r,i=r&&l[r-1].tag}else"br"===n.toLowerCase()?t.start&&t.start(n,[],!0,""):"p"===n.toLowerCase()&&(t.start&&t.start(n,[],!1,"",!0),t.end&&t.end(n,[]))}for(var i,a,s,u,l=[],c=o(t);e;){if(a=e,i&&w(i)){var f=i.toLowerCase(),x=A[f]||(A[f]=new RegExp("([\\s\\S]*?)]*>","i"));e=e.replace(x,function(e,n){return"script"!==f&&"style"!==f&&"noscript"!==f&&(n=n.replace(//g,"$1").replace(//g,"$1")),t.chars&&t.chars(n),""}),r("",f)}else{var C=e.indexOf("<");if(0===C){if(/^\s*$/,""):t;n.parse.bare_returns=r;var a=Z.minify(i,n);return a.error?(e.log(a.error),t):a.code.replace(/;$/,"")}}if(e.minifyCSS||(e.minifyCSS=z),"function"!=typeof e.minifyCSS){var r=e.minifyCSS;"object"!=typeof r&&(r={}),e.minifyCSS=function(t){t=t.replace(/(url\s*\(\s*)("|'|)(.*?)\2(\s*\))/gi,function(t,n,r,o,i){return n+r+e.minifyURLs(o)+r+i});try{return new K(r).minify(t).styles}catch(n){return e.log(n),t}}}}function j(e){var t;do{t=Math.random().toString(36).replace(/^0\.[0-9]*/,"")}while(~e.indexOf(t));return t}function V(e,t,n,r){function o(e){return e.map(function(e){return t.caseSensitive?e.name:e.name.toLowerCase()})}function i(e,t){return!t||-1===e.indexOf(t)}function a(e){return i(e,n)&&i(e,r)}function s(e){var n,r;new Y(e,{start:function(e,i){u&&(u[e]||(u[e]=new Q),u[e].add(o(i).filter(a)));for(var s=0,c=i.length;s-1&&s(e)}})}var u=t.sortAttributes&&Object.create(null),l=t.sortClassName&&new Q,c=t.log;if(t.log=null,t.sortAttributes=!1,t.sortClassName=!1,s($(e,t)),t.log=c,u){var f=Object.create(null);for(var p in u)f[p]=u[p].createSorter();t.sortAttributes=function(e,t){var n=f[e];if(n){var r=Object.create(null),i=o(t);i.forEach(function(e,n){(r[e]||(r[e]=[])).push(t[n])}),n.sort(i).forEach(function(e,n){t[n]=r[e].shift()})}}}if(l){var h=l.createSorter();t.sortClassName=function(e){return h.sort(e.split(/[ \n\f\r]+/)).join(" ")}}}function $(e,t,n){function u(e){return e.replace(E,function(e,t,n){var r=W[+n];return r[1]+w+n+r[2]})}function l(e,n){return t.canCollapseWhitespace(e,n,U)}function c(e,n){return t.canTrimWhitespace(e,n,N)}function f(){for(var e=A.length-1;e>0&&!/^<[^/!]/.test(A[e]);)e--;A.length=Math.max(0,e)}function p(){for(var e=A.length-1;e>0&&!/^<\//.test(A[e]);)e--;A.length=Math.max(0,e)}function d(e,n){for(var r=null;e>=0&&c(r);e--){var o=A[e],a=o.match(/^<\/([\w:-]+)>$/);if(a)r=a[1];else if(/>$/.test(o)||(A[e]=i(o,null,n,t)))break}}function g(e){var t=A.length-1;if(A.length>1){var n=A[A.length-1];/^(?:([\s\S]*?)/g,function(n,r){if(!_){_=j(e);var o=new RegExp("^"+_+"([0-9]+)$");t.ignoreCustomComments?t.ignoreCustomComments.push(o):t.ignoreCustomComments=[o]}var i="\x3c!--"+_+K.length+"--\x3e";return K.push(r),i});var Q=t.ignoreCustomFragments.map(function(e){return e.source});if(Q.length){var Z=new RegExp("\\s*(?:"+Q.join("|")+")+\\s*","g");e=e.replace(Z,function(n){if(!w){w=j(e),E=new RegExp("(\\s*)"+w+"([0-9]+)(\\s*)","g");var r=t.minifyCSS;r&&(t.minifyCSS=function(e){return r(u(e))});var o=t.minifyJS;o&&(t.minifyJS=function(e,t){return o(u(e),t)})}var i=w+W.length;return W.push(/^(\s*)[\s\S]*?(\s*)$/.exec(n)),"\t"+i+"\t"})}(t.sortAttributes&&"function"!=typeof t.sortAttributes||t.sortClassName&&"function"!=typeof t.sortClassName)&&V(e,t,_,w),new Y(e,{partialMarkup:n,html5:t.html5,start:function(e,n,r,o,i){var a=e.toLowerCase();if("svg"===a){v.push(t);var s={};for(var u in t)s[u]=t[u];s.keepClosingSlash=!0,s.caseSensitive=!0,t=s}e=t.caseSensitive?e:a,C=e,b=e,ne(e)||(x=""),y=!1,k=n;var h=t.removeOptionalTags;if(h){var d=xe(e);d&&D(L,e)&&f(),L="",d&&R(z,e)&&(p(),h=!T(z,e)),z=""}t.collapseWhitespace&&(O.length||g(e),c(e,n)&&!O.length||O.push(e),l(e,n)&&!F.length||F.push(e));var m="<"+e,_=o&&t.keepClosingSlash;A.push(m),t.sortAttributes&&t.sortAttributes(e,n);for(var E=[],S=n.length,B=!0;--S>=0;){var M=P(n[S],n,e,t);M&&(E.unshift(q(M,_,t,B,w)),B=!1)}E.length>0?(A.push(" "),A.push.apply(A,E)):h&&ue(e)&&(L=e),A.push(A.pop()+(_?"/":"")+">"),i&&!t.includeAutoGeneratedTags&&(f(),L="")},end:function(e,n,r){var o=e.toLowerCase();"svg"===o&&(t=v.pop()),e=t.caseSensitive?e:o,t.collapseWhitespace&&(O.length?e===O[O.length-1]&&O.pop():g("/"+e),F.length&&e===F[F.length-1]&&F.pop());var i=!1;e===C&&(C="",i=!y),t.removeOptionalTags&&(i&&_e(L)&&f(),L="",!xe(e)||!z||Ae(z)||"p"===z&&he(e)||p(),z=le(e)?e:""),t.removeEmptyElements&&i&&M(e,n)?(f(),L="",z=""):(r&&!t.includeAutoGeneratedTags?z="":A.push(""),b="/"+e,te(e)?i&&(x+="|"):x="")},chars:function(e,n,r){if(n=""===n?"comment":n,r=""===r?"comment":r,t.decodeEntities&&e&&!ke(C)&&(e=G(e)),t.collapseWhitespace){if(!O.length){if("comment"===n){var a=A[A.length-1];if(-1===a.indexOf(_)&&(a||(n=b),A.length>1&&(!a||!t.conservativeCollapse&&/ $/.test(x)))){var s=A.length-2;A[s]=A[s].replace(/\s+$/,function(t){return e=t+e,""})}}if(n)if("/nobr"===n||"wbr"===n){if(/^\s/.test(e)){for(var u=A.length-1;u>0&&0!==A[u].lastIndexOf("<"+n);)u--;d(u-1,"br")}}else ne("/"===n.charAt(0)?n.slice(1):n)&&(e=o(e,t,/(?:^|\s)$/.test(x)));!(e=n||r?i(e,n,r,t):o(e,t,!0,!0))&&/\s$/.test(x)&&n&&"/"===n.charAt(0)&&d(A.length-1,r)}F.length||"html"===r||n&&r||(e=o(e,t,!1,!1,!0))}t.processScripts&&ke(C)&&(e=B(e,t,k)),h(C,k)&&(e=t.minifyJS(e)),m(C,k)&&(e=t.minifyCSS(e)),t.removeOptionalTags&&e&&(("html"===L||"body"===L&&!/^\s/.test(e))&&f(),L="",(we(z)||Ee(z)&&!/^\s/.test(e))&&p(),z=""),b=/^\s*$/.test(e)?n:"comment",t.decodeEntities&&e&&!ke(C)&&(e=e.replace(/&(#?[0-9a-zA-Z]+;)/g,"&$1").replace(/":"--\x3e";e=a(e)?r+S(e,t)+o:t.removeComments?s(e,t)?"\x3c!--"+e+"--\x3e":"":r+e+o,t.removeOptionalTags&&e&&(L="",z=""),A.push(e)},doctype:function(e){A.push(t.useShortDoctype?"":r(e))},customAttrAssign:t.customAttrAssign,customAttrSurround:t.customAttrSurround}),t.removeOptionalTags&&(_e(L)&&f(),z&&!Ae(z)&&p()),t.collapseWhitespace&&g("br");var J=H(A,t);return E&&(J=J.replace(E,function(e,n,r,i){var a=W[+r][0];return t.collapseWhitespace?("\t"!==n&&(a=n+a),"\t"!==i&&(a+=i),o(a,{preserveLineBreaks:t.preserveLineBreaks,conservativeCollapse:!t.trimCustomFragments},/^\s/.test(a),/\s$/.test(a))):a})),_&&(J=J.replace(new RegExp("\x3c!--"+_+"([0-9]+)--\x3e","g"),function(e,t){return K[+t]})),t.log("minified in: "+(Date.now()-$)+"ms"),J}function H(e,t){var n,r=t.maxLineLength;if(r){for(var i,a=[],s="",u=0,l=e.length;u=0}function o(e,t){for(var n=0,r=t.length;n>1);return n+=n,1&t&&(n+=e),n}function a(e){Object.defineProperty(e.prototype,"stack",{get:function(){var e=new Error(this.message);e.name=this.name;try{throw e}catch(e){return e.stack}}})}function s(e,t){this.message=e,this.defs=t}function u(e,t,n){!0===e&&(e={});var r=e||{};if(n)for(var o in r)E(r,o)&&!E(t,o)&&s.croak("`"+o+"` is not a supported option",t);for(var o in t)E(t,o)&&(r[o]=e&&E(e,o)?e[o]:t[o]);return r}function l(e,t){var n=0;for(var r in t)E(t,r)&&(e[r]=t[r],n++);return n}function c(){}function f(){return!1}function p(){return!0}function h(){return this}function d(){return null}function m(e,t){e.indexOf(t)<0&&e.push(t)}function g(e,t){return e.replace(/\{(.+?)\}/g,function(e,n){return t&&t[n]})}function v(e,t){for(var n=e.length;--n>=0;)e[n]===t&&e.splice(n,1)}function b(e,t){function n(e,n){for(var r=[],o=0,i=0,a=0;o3){o.sort(function(e,t){return t.length-e.length}),r+="switch(str.length){";for(var a=0;a=0;)if(!t(e[n]))return!1;return!0}function w(){this._values=Object.create(null),this._size=0}function E(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function A(e){for(var t,n=e.parent(-1),r=0;t=e.parent(r);r++){if(t instanceof ae&&t.body===n)return!0;if(!(t instanceof Ye&&t.expressions[0]===n||t instanceof Ke&&t.expression===n&&!(t instanceof Ge)||t instanceof Qe&&t.expression===n||t instanceof Ze&&t.expression===n||t instanceof nt&&t.condition===n||t instanceof tt&&t.left===n||t instanceof et&&t.expression===n))return!1;n=t}}function x(e,n,r,o){arguments.length<4&&(o=ie);var i=n=n?n.split(/\s+/):[];o&&o.PROPS&&(n=n.concat(o.PROPS));for(var a="return function AST_"+e+"(props){ if (props) { ",s=n.length;--s>=0;)a+="this."+n[s]+" = props."+n[s]+";";var u=o&&new o;(u&&u.initialize||r&&r.initialize)&&(a+="this.initialize();"),a+="}}";var l=new Function(a)();if(u&&(l.prototype=u,l.BASE=o),o&&o.SUBCLASSES.push(l),l.prototype.CTOR=l,l.PROPS=n||null,l.SELF_PROPS=i,l.SUBCLASSES=[],e&&(l.prototype.TYPE=l.TYPE=e),r)for(s in r)E(r,s)&&(/^\$/.test(s)?l[s.substr(1)]=r[s]:l.prototype[s]=r[s]);return l.DEFMETHOD=function(e,t){this.prototype[e]=t},void 0!==t&&(t["AST_"+e]=l),l}function C(e,t){var n=e.body;if(n instanceof ae)n._walk(t);else for(var r=0,o=n.length;r=97&&e<=122||e>=65&&e<=90||e>=170&&Gt.letter.test(String.fromCharCode(e))}function S(e){return e>=48&&e<=57}function B(e){return S(e)||O(e)}function D(e){return Gt.digit.test(String.fromCharCode(e))}function T(e){return Gt.non_spacing_mark.test(e)||Gt.space_combining_mark.test(e)}function R(e){return Gt.connector_punctuation.test(e)}function F(e){return!Nt(e)&&/^[a-z_$][a-z0-9_$]*$/i.test(e)}function L(e){return 36==e||95==e||O(e)}function M(e){var t=e.charCodeAt(0);return L(t)||S(t)||8204==t||8205==t||T(e)||R(e)||D(t)}function U(e){return/^[a-z_$][a-z0-9_$]*$/i.test(e)}function N(e){if(zt.test(e))return parseInt(e.substr(2),16);if(It.test(e))return parseInt(e.substr(1),8);var t=parseFloat(e);return t==e?t:void 0}function P(e,t,n,r,o){this.message=e,this.filename=t,this.line=n,this.col=r,this.pos=o}function q(e,t,n,r,o){throw new P(e,t,n,r,o)}function z(e,t,n){return e.type==t&&(null==n||e.value==n)}function I(e,t,n,r){function o(){return O.text.charAt(O.pos)}function i(e,t){var n=O.text.charAt(O.pos++);if(e&&!n)throw Yt;return $t(n)?(O.newline_before=O.newline_before||!t,++O.line,O.col=0,t||"\r"!=n||"\n"!=o()||(++O.pos,n="\n")):++O.col,n}function a(e){for(;e-- >0;)i()}function s(e){return O.text.substr(O.pos,e.length)==e}function u(){for(var e=O.text,t=O.pos,n=O.text.length;t="0"&&t<="7"?v(t):t}function v(e){var t=o();return t>="0"&&t<="7"&&(e+=i(!0))[0]<="3"&&(t=o())>="0"&&t<="7"&&(e+=i(!0)),"0"===e?"\0":(e.length>0&&k.has_directive("use strict")&&d("Legacy octal escape sequences are not allowed in strict mode"),String.fromCharCode(parseInt(e,8)))}function b(e){for(var t=0;e>0;--e){var n=parseInt(i(!0),16);isNaN(n)&&d("Invalid hex-character pattern in string"),t=t<<4|n}return t}function y(e){var t,n=O.regex_allowed,r=u();return-1==r?(t=O.text.substr(O.pos),O.pos=O.text.length):(t=O.text.substring(O.pos,r),O.pos=r),O.col=O.tokcol+(O.pos-O.tokpos),O.comments_before.push(f(e,t,!0)),O.regex_allowed=n,k}function _(){for(var e,t,n=!1,r="",a=!1;null!=(e=o());)if(n)"u"!=e&&d("Expecting UnicodeEscapeSequence -- uXXXX"),M(e=g())||d("Unicode char: "+e.charCodeAt(0)+" is not valid in identifier"),r+=e,n=!1;else if("\\"==e)a=n=!0,i();else{if(!M(e))break;r+=i()}return Mt(r)&&a&&(t=r.charCodeAt(0).toString(16).toUpperCase(),r="\\u"+"0000".substr(t.length)+t+r.slice(1)),r}function w(e){function t(e){if(!o())return e;var n=e+o();return jt(n)?(i(),t(n)):e}return f("operator",t(e||i()))}function E(){switch(i(),o()){case"/":return i(),y("comment1");case"*":return i(),R()}return O.regex_allowed?F(""):w("/")}function A(){return i(),S(o().charCodeAt(0))?m("."):f("punc",".")}function x(){var e=_();return D?f("name",e):Ut(e)?f("atom",e):Mt(e)?jt(e)?f("operator",e):f("keyword",e):f("name",e)}function C(e,t){return function(n){try{return t(n)}catch(t){if(t!==Yt)throw t;d(e)}}}function k(e){if(null!=e)return F(e);for(r&&0==O.pos&&s("#!")&&(c(),a(2),y("comment5"));;){if(p(),c(),n){if(s("\x3c!--")){a(4),y("comment3");continue}if(s("--\x3e")&&O.newline_before){a(3),y("comment4");continue}}var t=o();if(!t)return f("eof");var u=t.charCodeAt(0);switch(u){case 34:case 39:return T(t);case 46:return A();case 47:var l=E();if(l===k)continue;return l}if(S(u))return m();if(Kt(t))return f("punc",i());if(qt(t))return w();if(92==u||L(u))return x();break}d("Unexpected character '"+t+"'")}var O={text:e,filename:t,pos:0,tokpos:0,line:1,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,comments_before:[],directives:{},directive_stack:[]},D=!1,T=C("Unterminated string constant",function(e){for(var t=i(),n="";;){var r=i(!0,!0);if("\\"==r)r=g(!0);else if($t(r))d("Unterminated string constant");else if(r==t)break;n+=r}var o=f("string",n);return o.quote=e,o}),R=C("Unterminated multiline comment",function(){var e=O.regex_allowed,t=l("*/",!0),n=O.text.substring(O.pos,t).replace(/\r\n|\r|\u2028|\u2029/g,"\n");return a(n.length+2),O.comments_before.push(f("comment2",n,!0)),O.regex_allowed=e,k}),F=C("Unterminated regular expression",function(e){for(var t,n=!1,r=!1;t=i(!0);)if($t(t))d("Unexpected line terminator");else if(n)e+="\\"+t,n=!1;else if("["==t)r=!0,e+=t;else if("]"==t&&r)r=!1,e+=t;else{if("/"==t&&!r)break;"\\"==t?n=!0:e+=t}var o=_();try{var a=new RegExp(e,o);return a.raw_source=e,f("regexp",a)}catch(e){d(e.message)}});return k.context=function(e){return e&&(O=e),O},k.add_directive=function(e){O.directive_stack[O.directive_stack.length-1].push(e),void 0===O.directives[e]?O.directives[e]=1:O.directives[e]++},k.push_directives_stack=function(){O.directive_stack.push([])},k.pop_directives_stack=function(){for(var e=O.directive_stack[O.directive_stack.length-1],t=0;t0},k}function j(e,t){function n(e,t){return z(V.token,e,t)}function r(){return V.peeked||(V.peeked=V.input())}function i(){return V.prev=V.token,V.peeked?(V.token=V.peeked,V.peeked=null):V.token=V.input(),V.in_directives=V.in_directives&&("string"==V.token.type||n("punc",";")),V.token}function a(){return V.prev}function s(e,t,n,r){var o=V.input.context();q(e,o.filename,null!=t?t:o.tokline,null!=n?n:o.tokcol,null!=r?r:o.tokpos)}function l(e,t){s(t,e.line,e.col)}function c(e){null==e&&(e=V.token),l(e,"Unexpected token: "+e.type+" ("+e.value+")")}function f(e,t){if(n(e,t))return i();l(V.token,"Unexpected token "+V.token.type+" «"+V.token.value+"», expected "+e+" «"+t+"»")}function p(e){return f("punc",e)}function h(){return!t.strict&&(V.token.nlb||n("eof")||n("punc","}"))}function d(e){n("punc",";")?i():e||h()||c()}function m(){p("(");var e=re(!0);return p(")"),e}function g(e){return function(){var t=V.token,n=e(),r=a();return n.start=t,n.end=r,n}}function v(){(n("operator","/")||n("operator","/="))&&(V.peeked=null,V.token=V.input(V.token.value.substr(1)))}function b(){var e=M(bt);o(function(t){return t.name==e.name},V.labels)&&s("Label "+e.name+" defined twice"),p(":"),V.labels.push(e);var t=$();return V.labels.pop(),t instanceof me||e.references.forEach(function(t){t instanceof Le&&(t=t.label.start,s("Continue label `"+e.name+"` refers to non-IterationStatement.",t.line,t.col,t.pos))}),new de({body:t,label:e})}function y(e){return new le({body:(e=re(!0),d(),e)})}function _(e){var t,n=null;h()||(n=M(_t,!0)),null!=n?((t=o(function(e){return e.name==n.name},V.labels))||s("Undefined label "+n.name),n.thedef=t):0==V.in_loop&&s(e.TYPE+" not inside a loop or switch"),d();var r=new e({label:n});return t&&t.references.push(r),r}function w(){p("(");var e=null;return!n("punc",";")&&(e=n("keyword","var")?(i(),K(!0)):re(!0,!0),n("operator","in"))?(e instanceof $e?e.definitions.length>1&&s("Only one variable declaration allowed in for..in loop",e.start.line,e.start.col,e.start.pos):P(e)||s("Invalid left-hand side in for..in loop",e.start.line,e.start.col,e.start.pos),i(),A(e)):E(e)}function E(e){p(";");var t=n("punc",";")?null:re(!0);p(";");var r=n("punc",")")?null:re(!0);return p(")"),new ye({init:e,condition:t,step:r,body:j($)})}function A(e){var t=e instanceof $e?e.definitions[0].name:null,n=re(!0);return p(")"),new _e({init:e,name:t,object:n,body:j($)})}function x(){var e=m(),t=$(),r=null;return n("keyword","else")&&(i(),r=$()),new Me({condition:e,body:t,alternative:r})}function C(){p("{");for(var e=[];!n("punc","}");)n("eof")&&c(),e.push($());return i(),e}function k(){p("{");for(var e,t=[],r=null,o=null;!n("punc","}");)n("eof")&&c(),n("keyword","case")?(o&&(o.end=a()),r=[],o=new qe({start:(e=V.token,i(),e),expression:re(!0),body:r}),t.push(o),p(":")):n("keyword","default")?(o&&(o.end=a()),r=[],o=new Pe({start:(e=V.token,i(),p(":"),e),body:r}),t.push(o)):(r||c(),r.push($()));return o&&(o.end=a()),i(),t}function O(){var e=C(),t=null,r=null;if(n("keyword","catch")){u=V.token;i(),p("(");var o=M(vt);p(")"),t=new Ie({start:u,argname:o,body:C(),end:a()})}if(n("keyword","finally")){var u=V.token;i(),r=new je({start:u,body:C(),end:a()})}return t||r||s("Missing catch/finally blocks"),new ze({body:e,bcatch:t,bfinally:r})}function S(e){for(var t=[];t.push(new He({start:V.token,name:M(ht),value:n("operator","=")?(i(),re(!1,e)):null,end:a()})),n("punc",",");)i();return t}function B(){var e,t=V.token;switch(t.type){case"name":e=F(yt);break;case"num":e=new xt({start:t,end:t,value:t.value});break;case"string":e=new At({start:t,end:t,value:t.value,quote:t.quote});break;case"regexp":e=new Ct({start:t,end:t,value:t.value});break;case"atom":switch(t.value){case"false":e=new Ft({start:t,end:t});break;case"true":e=new Lt({start:t,end:t});break;case"null":e=new Ot({start:t,end:t})}}return i(),e}function D(e,t,r){for(var o=!0,a=[];!n("punc",e)&&(o?o=!1:p(","),!t||!n("punc",e));)n("punc",",")&&r?a.push(new Dt({start:V.token,end:V.token})):a.push(re(!1));return i(),a}function T(){var e=V.token;switch(e.type){case"operator":Mt(e.value)||c();case"num":case"string":case"name":case"keyword":case"atom":return i(),e.value;default:c()}}function R(){var e=V.token;return"name"!=e.type&&c(),i(),e.value}function F(e){var t=V.token.value;return new("this"==t?wt:e)({name:String(t),start:V.token,end:V.token})}function L(e){"arguments"!=e.name&&"eval"!=e.name||s("Unexpected "+e.name+" in strict mode",e.start.line,e.start.col,e.start.pos)}function M(e,t){if(!n("name"))return t||s("Name expected"),null;var r=F(e);return V.input.has_directive("use strict")&&r instanceof pt&&L(r),i(),r}function U(e,t,n){var r=t.value;switch(r){case"++":case"--":P(n)||s("Invalid use of "+r+" operator",t.line,t.col,t.pos);break;case"delete":n instanceof yt&&V.input.has_directive("use strict")&&s("Calling delete on expression not allowed in strict mode",n.start.line,n.start.col,n.start.pos)}return new e({operator:r,expression:n})}function N(e){return ee(X(!0),0,e)}function P(e){return e instanceof We||e instanceof yt}function j(e){++V.in_loop;var t=e();return--V.in_loop,t}t=u(t,{bare_returns:!1,expression:!1,filename:null,html5_comments:!0,shebang:!0,strict:!1,toplevel:null},!0);var V={input:"string"==typeof e?I(e,t.filename,t.html5_comments,t.shebang):e,token:null,prev:null,peeked:null,in_function:0,in_directives:!0,in_loop:0,labels:[]};V.token=i();var $=g(function(){switch(v(),V.token.type){case"string":if(V.in_directives){var e=r();-1==V.token.raw.indexOf("\\")&&(e.nlb||z(e,"eof")||z(e,"punc",";")||z(e,"punc","}"))?V.input.add_directive(V.token.value):V.in_directives=!1}var o=V.in_directives,u=y();return o?new ue(u.body):u;case"num":case"regexp":case"operator":case"atom":return y();case"name":return z(r(),"punc",":")?b():y();case"punc":switch(V.token.value){case"{":return new fe({start:V.token,body:C(),end:a()});case"[":case"(":return y();case";":return V.in_directives=!1,i(),new pe;default:c()}case"keyword":switch(V.token.value){case"break":return i(),_(Fe);case"continue":return i(),_(Le);case"debugger":return i(),d(),new se;case"do":i();var l=j($);f("keyword","while");var p=m();return d(!0),new ve({body:l,condition:p});case"while":return i(),new be({condition:m(),body:j($)});case"for":return i(),w();case"function":return i(),H(Oe);case"if":return i(),x();case"return":0!=V.in_function||t.bare_returns||s("'return' outside of function"),i();g=null;return n("punc",";")?i():h()||(g=re(!0),d()),new De({value:g});case"switch":return i(),new Ue({expression:m(),body:j(k)});case"throw":i(),V.token.nlb&&s("Illegal newline after 'throw'");var g=re(!0);return d(),new Te({value:g});case"try":return i(),O();case"var":i();var E=K();return d(),E;case"with":return V.input.has_directive("use strict")&&s("Strict mode may not include a with statement"),i(),new we({expression:m(),body:$()})}}c()}),H=function(e){var t=e===Oe,r=n("name")?M(t?mt:gt):null;t&&!r&&c(),p("(");for(var o=[],a=!0;!n("punc",")");)a?a=!1:p(","),o.push(M(dt));i();var s=V.in_loop,u=V.labels;++V.in_function,V.in_directives=!0,V.input.push_directives_stack(),V.in_loop=0,V.labels=[];var l=C();return V.input.has_directive("use strict")&&(r&&L(r),o.forEach(L)),V.input.pop_directives_stack(),--V.in_function,V.in_loop=s,V.labels=u,new e({name:r,argnames:o,body:l})},K=function(e){return new $e({start:a(),definitions:S(e),end:a()})},G=function(e){var t=V.token;f("operator","new");var r,o=Y(!1);return n("punc","(")?(i(),r=D(")")):r=[],J(new Ge({start:t,expression:o,args:r,end:a()}),e)},Y=function(e){if(n("operator","new"))return G(e);var t=V.token;if(n("punc")){switch(t.value){case"(":i();var r=re(!0);return r.start=t,r.end=V.token,p(")"),J(r,e);case"[":return J(W(),e);case"{":return J(Z(),e)}c()}if(n("keyword","function")){i();var o=H(ke);return o.start=t,o.end=a(),J(o,e)}if(Xt(V.token.type))return J(B(),e);c()},W=g(function(){return p("["),new ot({elements:D("]",!t.strict,!0)})}),Q=g(function(){return H(Ce)}),Z=g(function(){p("{");for(var e=!0,r=[];!n("punc","}")&&(e?e=!1:p(","),t.strict||!n("punc","}"));){var o=V.token,s=o.type,u=T();if("name"==s&&!n("punc",":")){var l=new ft({start:V.token,name:T(),end:a()});if("get"==u){r.push(new lt({start:o,key:l,value:Q(),end:a()}));continue}if("set"==u){r.push(new ut({start:o,key:l,value:Q(),end:a()}));continue}}p(":"),r.push(new st({start:o,quote:o.quote,key:u,value:re(!1),end:a()}))}return i(),new it({properties:r})}),J=function(e,t){var r=e.start;if(n("punc","."))return i(),J(new Qe({start:r,expression:e,property:R(),end:a()}),t);if(n("punc","[")){i();var o=re(!0);return p("]"),J(new Ze({start:r,expression:e,property:o,end:a()}),t)}return t&&n("punc","(")?(i(),J(new Ke({start:r,expression:e,args:D(")"),end:a()}),!0)):e},X=function(e){var t=V.token;if(n("operator")&&Wt(t.value)){i(),v();var r=U(Xe,t,X(e));return r.start=t,r.end=a(),r}for(var o=Y(e);n("operator")&&Qt(V.token.value)&&!V.token.nlb;)(o=U(et,V.token,o)).start=t,o.end=V.token,i();return o},ee=function(e,t,r){var o=n("operator")?V.token.value:null;"in"==o&&r&&(o=null);var a=null!=o?Jt[o]:null;if(null!=a&&a>t){i();var s=ee(X(!0),a,r);return ee(new tt({start:e.start,left:e,operator:o,right:s,end:s.end}),t,r)}return e},te=function(e){var t=V.token,r=N(e);if(n("operator","?")){i();var o=re(!1);return p(":"),new nt({start:t,condition:r,consequent:o,alternative:re(!1,e),end:a()})}return r},ne=function(e){var t=V.token,r=te(e),o=V.token.value;if(n("operator")&&Zt(o)){if(P(r))return i(),new rt({start:t,left:r,operator:o,right:ne(e),end:a()});s("Invalid assignment")}return r},re=function(e,t){for(var o=V.token,a=[];;){if(a.push(ne(t)),!e||!n("punc",","))break;i(),e=!0}return 1==a.length?a[0]:new Ye({start:o,expressions:a,end:r()})};return t.expression?re(!0):function(){var e=V.token,r=[];for(V.input.push_directives_stack();!n("eof");)r.push($());V.input.pop_directives_stack();var o=a(),i=t.toplevel;return i?(i.body=i.body.concat(r),i.end=o):i=new Ae({start:e,body:r,end:o}),i}()}function V(e,t){k.call(this),this.before=e,this.after=t}function $(e,t,n){this.name=n.name,this.orig=[n],this.scope=e,this.references=[],this.global=!1,this.mangled_name=null,this.undeclared=!1,this.index=t,this.id=$.next_id++}function H(e){return"comment2"==e.type&&/@preserve|@license|@cc_on/i.test(e.value)}function K(e){function t(t,n){function r(){return"'"+t.replace(/\x27/g,"\\'")+"'"}function o(){return'"'+t.replace(/\x22/g,'\\"')+'"'}var i=0,a=0;switch(t=t.replace(/[\\\b\f\n\r\v\t\x22\x27\u2028\u2029\0\ufeff]/g,function(n,r){switch(n){case'"':return++i,'"';case"'":return++a,"'";case"\\":return"\\\\";case"\n":return"\\n";case"\r":return"\\r";case"\t":return"\\t";case"\b":return"\\b";case"\f":return"\\f";case"\v":return e.ie8?"\\x0B":"\\v";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";case"\ufeff":return"\\ufeff";case"\0":return/[0-9]/.test(t.charAt(r+1))?"\\x00":"\\0"}return n}),t=C(t),e.quote_style){case 1:return r();case 2:return o();case 3:return"'"==n?r():o();default:return i>a?r():o()}}function n(n,r){var o=t(n,r);return e.inline_script&&(o=(o=(o=o.replace(/<\x2fscript([>\/\t\n\f\r ])/gi,"<\\/script$1")).replace(/\x3c!--/g,"\\x3c!--")).replace(/--\x3e/g,"--\\x3e")),o}function r(e){return e=e.toString(),e=C(e,!0)}function o(t){return i(" ",e.indent_start+_-t*e.indent_level)}function a(t){var n=(t=String(t)).charAt(0),r=B.charAt(B.length-1);if(O&&(O=!1,(":"==r&&"}"==n||(!n||";}".indexOf(n)<0)&&";"!=r)&&(e.semicolons||F(n)?(x+=";",w++,A++):(R(),x+="\n",A++,E++,w=0,/^\s+$/.test(t)&&(O=!0)),e.beautify||(k=!1))),!e.beautify&&e.preserve_line&&z[z.length-1])for(var o=z[z.length-1].start.line;E0&&(R(),w=i[a].length),B=t}function s(){O=!1,a(";")}function l(){return _+e.indent_level}function h(){return S&&R(),x}var d=f;if((e=u(e,{ascii_only:!1,beautify:!1,bracketize:!1,comments:!1,ie8:!1,indent_level:4,indent_start:0,inline_script:!0,keep_quoted_props:!1,max_line_len:!1,preamble:null,preserve_line:!1,quote_keys:!1,quote_style:0,semicolons:!0,shebang:!0,source_map:null,webkit:!1,width:80,wrap_iife:!1},!0)).comments){var m=e.comments;if("string"==typeof e.comments&&/^\/.*\/[a-zA-Z]*$/.test(e.comments)){var g=e.comments.lastIndexOf("/");m=new RegExp(e.comments.substr(1,g-1),e.comments.substr(g+1))}d=m instanceof RegExp?function(e){return"comment5"!=e.type&&m.test(e.value)}:"function"==typeof m?function(e){return"comment5"!=e.type&&m(this,e)}:"some"===m?H:p}var v,b,_=0,w=0,E=1,A=0,x="",C=e.ascii_only?function(e,t){return e.replace(/[\u0000-\u001f\u007f-\uffff]/g,function(e){var n=e.charCodeAt(0).toString(16);if(n.length<=2&&!t){for(;n.length<2;)n="0"+n;return"\\x"+n}for(;n.length<4;)n="0"+n;return"\\u"+n})}:function(e){return e.replace(/[\ud800-\udbff](?![\udc00-\udfff])/g,function(e){return"\\u"+e.charCodeAt(0).toString(16)}).replace(/(^|[^\ud800-\udbff])([\udc00-\udfff])/g,function(e,t,n){return t+"\\u"+n.charCodeAt(0).toString(16)})},k=!1,O=!1,S=0,B="",D=e.source_map&&[],T=D?function(){D.forEach(function(t){try{e.source_map.add(t.token.file,t.line,t.col,t.token.line,t.token.col,t.name||"name"!=t.token.type?t.name:t.token.value)}catch(e){ie.warn("Couldn't figure out mapping for {file}:{line},{col} → {cline},{ccol} [{name}]",{file:t.token.file,line:t.token.line,col:t.token.col,cline:t.line,ccol:t.col,name:t.name||""})}}),D=[]}:c,R=e.max_line_len?function(){if(w>e.max_line_len){if(S){var t=x.slice(0,S),n=x.slice(S);if(D){var r=n.length-w;D.forEach(function(e){e.line++,e.col+=r})}x=t+"\n"+n,E++,A++,w=n.length}w>e.max_line_len&&ie.warn("Output exceeds {max_line_len} characters",e)}S&&(S=0,T())}:c,F=y("( [ + * / - , ."),L=e.beautify?function(){a(" ")}:function(){k=!0},U=e.beautify?function(t){e.beautify&&a(o(t?.5:0))}:c,N=e.beautify?function(e,t){!0===e&&(e=l());var n=_;_=e;var r=t();return _=n,r}:function(e,t){return t()},P=e.beautify?function(){a("\n")}:e.max_line_len?function(){R(),S=x.length}:c,q=e.beautify?function(){a(";")}:function(){O=!0},z=[];return{get:h,toString:h,indent:U,indentation:function(){return _},current_width:function(){return w-_},should_break:function(){return e.width&&this.current_width()>=e.width},newline:P,print:a,space:L,comma:function(){a(","),L()},colon:function(){a(":"),L()},last:function(){return B},semicolon:q,force_semicolon:s,to_utf8:C,print_name:function(e){a(r(e))},print_string:function(e,t,r){var o=n(e,t);!0===r&&-1===o.indexOf("\\")&&(tn.test(x)||s(),s()),a(o)},encode_string:n,next_indent:l,with_indent:N,with_block:function(e){var t;return a("{"),P(),N(l(),function(){t=e()}),U(),a("}"),t},with_parens:function(e){a("(");var t=e();return a(")"),t},with_square:function(e){a("[");var t=e();return a("]"),t},add_mapping:D?function(e,t){v=e,b=t}:c,option:function(t){return e[t]},comment_filter:d,line:function(){return E},col:function(){return w},pos:function(){return A},push_node:function(e){z.push(e)},pop_node:function(){return z.pop()},parent:function(e){return z[z.length-2-(e||0)]}}}function G(e,t){if(!(this instanceof G))return new G(e,t);V.call(this,this.before,this.after),this.options=u(e,{booleans:!t,cascade:!t,collapse_vars:!t,comparisons:!t,conditionals:!t,dead_code:!t,drop_console:!1,drop_debugger:!t,evaluate:!t,expression:!1,global_defs:{},hoist_funs:!t,hoist_vars:!1,ie8:!1,if_return:!t,inline:!t,join_vars:!t,keep_fargs:!0,keep_fnames:!1,keep_infinity:!1,loops:!t,negate_iife:!t,passes:1,properties:!t,pure_getters:!t&&"strict",pure_funcs:null,reduce_vars:!t,sequences:!t,side_effects:!t,switches:!t,top_retain:null,toplevel:!(!e||!e.top_retain),typeofs:!t,unsafe:!1,unsafe_comps:!1,unsafe_Func:!1,unsafe_math:!1,unsafe_proto:!1,unsafe_regexp:!1,unused:!t,warnings:!1},!0);var n=this.options.global_defs;if("object"==typeof n)for(var r in n)/^@/.test(r)&&E(n,r)&&(n[r.slice(1)]=j(n[r],{expression:!0}));var o=this.options.pure_funcs;this.pure_funcs="function"==typeof o?o:o?function(e){return o.indexOf(e.expression.print_to_string())<0}:p;var i=this.options.top_retain;i instanceof RegExp?this.top_retain=function(e){return i.test(e.name)}:"function"==typeof i?this.top_retain=i:i&&("string"==typeof i&&(i=i.split(/,/)),this.top_retain=function(e){return i.indexOf(e.name)>=0});var a=this.options.toplevel;this.toplevel="string"==typeof a?{funcs:/funcs/.test(a),vars:/vars/.test(a)}:{funcs:a,vars:a};var s=this.options.sequences;this.sequences_limit=1==s?800:0|s,this.warnings_produced={}}function Y(e){e=u(e,{file:null,root:null,orig:null,orig_line_diff:0,dest_line_diff:0});var t=new MOZ_SourceMap.SourceMapGenerator({file:e.file,sourceRoot:e.root}),n=e.orig&&new MOZ_SourceMap.SourceMapConsumer(e.orig);return n&&Array.isArray(e.orig.sources)&&n._sources.toArray().forEach(function(e){var r=n.sourceContentFor(e,!0);r&&t.setSourceContent(e,r)}),{add:function(r,o,i,a,s,u){if(n){var l=n.originalPositionFor({line:a,column:s});if(null===l.source)return;r=l.source,a=l.line,s=l.column,u=l.name||u}t.addMapping({generated:{line:o+e.dest_line_diff,column:i},original:{line:a+e.orig_line_diff,column:s},source:r,name:u})},get:function(){return t},toString:function(){return JSON.stringify(t.toJSON())}}}function W(e){function t(t){m(e,t)}["null","true","false","Infinity","-Infinity","undefined"].forEach(t),[Object,Array,Function,Number,String,Boolean,Error,Math,Date,RegExp].forEach(function(e){Object.getOwnPropertyNames(e).map(t),e.prototype&&Object.getOwnPropertyNames(e.prototype).map(t)})}function Q(e,t){function n(e){m(t,e)}e.walk(new k(function(e){e instanceof st&&e.quote?n(e.key):e instanceof Ze&&Z(e.property,n)}))}function Z(e,t){e.walk(new k(function(e){return e instanceof Ye?Z(e.expressions[e.expressions.length-1],t):e instanceof At?t(e.value):e instanceof nt&&(Z(e.consequent,t),Z(e.alternative,t)),!0}))}function J(e,t){function n(e){return!(d.indexOf(e)>=0)&&(!(s.indexOf(e)>=0)&&(t.only_cache?l.props.has(e):!/^-?[0-9]+(\.[0-9]+)?(e[+-][0-9]+)?$/.test(e)))}function r(e){return!(f&&!f.test(e))&&(!(s.indexOf(e)>=0)&&(l.props.has(e)||h.indexOf(e)>=0))}function o(e){n(e)&&m(h,e),r(e)||m(d,e)}function i(e){if(!r(e))return e;var t=l.props.get(e);if(!t){if(p){var o="_$"+e+"$"+c+"_";n(o)&&(t=o)}if(!t)do{t=en(++l.cname)}while(!n(t));l.props.set(e,t)}return t}function a(e){return e.transform(new V(function(e){if(e instanceof Ye){var t=e.expressions.length-1;e.expressions[t]=a(e.expressions[t])}else e instanceof At?e.value=i(e.value):e instanceof nt&&(e.consequent=a(e.consequent),e.alternative=a(e.alternative));return e}))}var s=(t=u(t,{builtins:!1,cache:null,debug:!1,keep_quoted:!1,only_cache:!1,regex:null,reserved:null},!0)).reserved;Array.isArray(s)||(s=[]),t.builtins||W(s);var l=t.cache;null==l&&(l={cname:-1,props:new w});var c,f=t.regex,p=!1!==t.debug;p&&(c=!0===t.debug?"":t.debug);var h=[],d=[];return e.walk(new k(function(e){e instanceof st?o(e.key):e instanceof at?o(e.key.name):e instanceof Qe?o(e.property):e instanceof Ze&&Z(e.property,o)})),e.transform(new V(function(e){e instanceof st?e.key=i(e.key):e instanceof at?e.key.name=i(e.key.name):e instanceof Qe?e.property=i(e.property):!t.keep_quoted&&e instanceof Ze&&(e.property=a(e.property))}))}function X(e){var t=/\n\/\/# sourceMappingURL=data:application\/json(;.*?)?;base64,(.*)/.exec(e);return t?nn(t[2]):(ie.warn("inline source map not found"),null)}function ee(e,t,n){t[e]&&n.forEach(function(n){t[n]&&("object"!=typeof t[n]&&(t[n]={}),e in t[n]||(t[n][e]=t[e]))})}function te(e){e&&("cname"in e||(e.cname=-1),"props"in e?e.props instanceof w||(e.props=w.fromObject(e.props)):e.props=new w)}function ne(e){return{cname:e.cname,props:e.props.toObject()}}s.prototype=Object.create(Error.prototype),s.prototype.constructor=s,s.prototype.name="DefaultsError",a(s),s.croak=function(e,t){throw new s(e,t)};var re=function(){function e(e,i,a){function s(){var s=i(e[u],u),f=s instanceof r;return f&&(s=s.v),s instanceof t?(s=s.v)instanceof n?c.push.apply(c,a?s.v.slice().reverse():s.v):c.push(s):s!==o&&(s instanceof n?l.push.apply(l,a?s.v.slice().reverse():s.v):l.push(s)),f}var u,l=[],c=[];if(e instanceof Array)if(a){for(u=e.length;--u>=0&&!s(););l.reverse(),c.reverse()}else for(u=0;u SymbolDef for all variables/functions defined in this scope",functions:"[Object/S] like `variables`, but only lists function declarations",uses_with:"[boolean/S] tells whether this scope uses the `with` statement",uses_eval:"[boolean/S] tells whether this scope contains a direct call to the global `eval`",parent_scope:"[AST_Scope?/S] link to the parent scope",enclosed:"[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",cname:"[integer/S] current index for mangling variables (used internally by the mangler)"}},ce),Ae=x("Toplevel","globals",{$documentation:"The toplevel scope",$propdoc:{globals:"[Object/S] a map of name -> SymbolDef for all undeclared names"},wrap_commonjs:function(e){var t=this.body,n="(function(exports){'$ORIG';})(typeof "+e+"=='undefined'?("+e+"={}):"+e+");";return n=j(n),n=n.transform(new V(function(e){if(e instanceof ue&&"$ORIG"==e.value)return re.splice(t)}))}},Ee),xe=x("Lambda","name argnames uses_arguments",{$documentation:"Base class for functions",$propdoc:{name:"[AST_SymbolDeclaration?] the name of this function",argnames:"[AST_SymbolFunarg*] array of function arguments",uses_arguments:"[boolean/S] tells whether this function accesses the arguments array"},_walk:function(e){return e._visit(this,function(){this.name&&this.name._walk(e);for(var t=this.argnames,n=0,r=t.length;n=0;){var r=t[n];if(r instanceof e)return r}},has_directive:function(e){var t=this.directives[e];if(t)return t;var n=this.stack[this.stack.length-1];if(n instanceof Ee)for(var r=0;r0;){var r=e[--t];if(r instanceof Me&&r.condition===n||r instanceof nt&&r.condition===n||r instanceof ge&&r.condition===n||r instanceof ye&&r.condition===n||r instanceof Xe&&"!"==r.operator&&r.expression===n)return!0;if(!(r instanceof tt)||"&&"!=r.operator&&"||"!=r.operator)return!1;n=r}},loopcontrol_target:function(e){var t=this.stack;if(e.label){for(n=t.length;--n>=0;)if((r=t[n])instanceof de&&r.label.name==e.label.name)return r.body}else for(var n=t.length;--n>=0;){var r=t[n];if(r instanceof me||e instanceof Fe&&r instanceof Ue)return r}}};var Mt="break case catch const continue debugger default delete do else finally for function if in instanceof new return switch throw try typeof var void while with",Ut="false null true",Nt="abstract boolean byte char class double enum export extends final float goto implements import int interface let long native package private protected public short static super synchronized this throws transient volatile yield "+Ut+" "+Mt,Pt="return new delete throw else case";Mt=y(Mt),Nt=y(Nt),Pt=y(Pt),Ut=y(Ut);var qt=y(n("+-*&%=<>!?|~^")),zt=/^0x[0-9a-f]+$/i,It=/^0[0-7]+$/,jt=y(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","||"]),Vt=y(n("  \n\r\t\f\v​           \u2028\u2029   \ufeff")),$t=y(n("\n\r\u2028\u2029")),Ht=y(n("[{(,;:")),Kt=y(n("[]{}(),;:")),Gt={letter:new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),digit:new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u09E6-\\u09EF\\u0A66-\\u0A6F\\u0AE6-\\u0AEF\\u0B66-\\u0B6F\\u0BE6-\\u0BEF\\u0C66-\\u0C6F\\u0CE6-\\u0CEF\\u0D66-\\u0D6F\\u0DE6-\\u0DEF\\u0E50-\\u0E59\\u0ED0-\\u0ED9\\u0F20-\\u0F29\\u1040-\\u1049\\u1090-\\u1099\\u17E0-\\u17E9\\u1810-\\u1819\\u1946-\\u194F\\u19D0-\\u19D9\\u1A80-\\u1A89\\u1A90-\\u1A99\\u1B50-\\u1B59\\u1BB0-\\u1BB9\\u1C40-\\u1C49\\u1C50-\\u1C59\\uA620-\\uA629\\uA8D0-\\uA8D9\\uA900-\\uA909\\uA9D0-\\uA9D9\\uA9F0-\\uA9F9\\uAA50-\\uAA59\\uABF0-\\uABF9\\uFF10-\\uFF19]"),non_spacing_mark:new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),space_combining_mark:new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"),connector_punctuation:new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]")};P.prototype=Object.create(Error.prototype),P.prototype.constructor=P,P.prototype.name="SyntaxError",a(P);var Yt={},Wt=y(["typeof","void","delete","--","++","!","~","-","+"]),Qt=y(["--","++"]),Zt=y(["=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&="]),Jt=function(e,t){for(var n=0;n","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"]],{}),Xt=y(["atom","num","string","regexp","name"]);V.prototype=new k,function(e){function t(t,n){t.DEFMETHOD("transform",function(t,r){var o,i;return t.push(this),t.before&&(o=t.before(this,n,r)),o===e&&(t.after?(t.stack[t.stack.length-1]=o=this,n(o,t),(i=t.after(o,r))!==e&&(o=i)):n(o=this,t)),t.pop(),o})}function n(e,t){return re(e,function(e){return e.transform(t,!0)})}t(ie,c),t(de,function(e,t){e.label=e.label.transform(t),e.body=e.body.transform(t)}),t(le,function(e,t){e.body=e.body.transform(t)}),t(ce,function(e,t){e.body=n(e.body,t)}),t(ge,function(e,t){e.condition=e.condition.transform(t),e.body=e.body.transform(t)}),t(ye,function(e,t){e.init&&(e.init=e.init.transform(t)),e.condition&&(e.condition=e.condition.transform(t)),e.step&&(e.step=e.step.transform(t)),e.body=e.body.transform(t)}),t(_e,function(e,t){e.init=e.init.transform(t),e.object=e.object.transform(t),e.body=e.body.transform(t)}),t(we,function(e,t){e.expression=e.expression.transform(t),e.body=e.body.transform(t)}),t(Be,function(e,t){e.value&&(e.value=e.value.transform(t))}),t(Re,function(e,t){e.label&&(e.label=e.label.transform(t))}),t(Me,function(e,t){e.condition=e.condition.transform(t),e.body=e.body.transform(t),e.alternative&&(e.alternative=e.alternative.transform(t))}),t(Ue,function(e,t){e.expression=e.expression.transform(t),e.body=n(e.body,t)}),t(qe,function(e,t){e.expression=e.expression.transform(t),e.body=n(e.body,t)}),t(ze,function(e,t){e.body=n(e.body,t),e.bcatch&&(e.bcatch=e.bcatch.transform(t)),e.bfinally&&(e.bfinally=e.bfinally.transform(t))}),t(Ie,function(e,t){e.argname=e.argname.transform(t),e.body=n(e.body,t)}),t(Ve,function(e,t){e.definitions=n(e.definitions,t)}),t(He,function(e,t){e.name=e.name.transform(t),e.value&&(e.value=e.value.transform(t))}),t(xe,function(e,t){e.name&&(e.name=e.name.transform(t)),e.argnames=n(e.argnames,t),e.body=n(e.body,t)}),t(Ke,function(e,t){e.expression=e.expression.transform(t),e.args=n(e.args,t)}),t(Ye,function(e,t){e.expressions=n(e.expressions,t)}),t(Qe,function(e,t){e.expression=e.expression.transform(t)}),t(Ze,function(e,t){e.expression=e.expression.transform(t),e.property=e.property.transform(t)}),t(Je,function(e,t){e.expression=e.expression.transform(t)}),t(tt,function(e,t){e.left=e.left.transform(t),e.right=e.right.transform(t)}),t(nt,function(e,t){e.condition=e.condition.transform(t),e.consequent=e.consequent.transform(t),e.alternative=e.alternative.transform(t)}),t(ot,function(e,t){e.elements=n(e.elements,t)}),t(it,function(e,t){e.properties=n(e.properties,t)}),t(at,function(e,t){e.value=e.value.transform(t)})}(),$.next_id=1,$.prototype={unmangleable:function(e){return e||(e={}),this.global&&!e.toplevel||this.undeclared||!e.eval&&(this.scope.uses_eval||this.scope.uses_with)||e.keep_fnames&&(this.orig[0]instanceof gt||this.orig[0]instanceof mt)},mangle:function(e){var t=e.cache&&e.cache.props;if(this.global&&t&&t.has(this.name))this.mangled_name=t.get(this.name);else if(!this.mangled_name&&!this.unmangleable(e)){var n=this.scope,r=this.orig[0];e.ie8&&r instanceof gt&&(n=n.parent_scope);var o;(o=this.redefined())?this.mangled_name=o.mangled_name||o.name:this.mangled_name=n.next_mangled(e,this),this.global&&t&&t.set(this.name,this.mangled_name)}},redefined:function(){return this.defun&&this.defun.variables.get(this.name)}},Ae.DEFMETHOD("figure_out_scope",function(e){e=u(e,{cache:null,ie8:!1});var t=this,n=t.parent_scope=null,r=new w,o=null,i=new k(function(t,i){if(t instanceof Ie){a=n;return(n=new Ee(t)).init_scope_vars(a),i(),n=a,!0}if(t instanceof Ee){t.init_scope_vars(n);var a=n,s=o,u=r;return o=n=t,r=new w,i(),n=a,o=s,r=u,!0}if(t instanceof de){var l=t.label;if(r.has(l.name))throw new Error(g("Label {name} defined twice",l));return r.set(l.name,l),i(),r.del(l.name),!0}if(t instanceof we)for(var c=n;c;c=c.parent_scope)c.uses_with=!0;else if(t instanceof ct&&(t.scope=n),t instanceof bt&&(t.thedef=t,t.references=[]),t instanceof gt)o.def_function(t);else if(t instanceof mt)(t.scope=o.parent_scope).def_function(t);else if(t instanceof ht){if(o.def_variable(t),o!==n){t.mark_enclosed(e);var f=n.find_variable(t);t.thedef!==f&&(t.thedef=f,t.reference(e))}}else if(t instanceof vt)n.def_variable(t).defun=o;else if(t instanceof _t){var p=r.get(t.name);if(!p)throw new Error(g("Undefined label {name} [{line},{col}]",{name:t.name,line:t.start.line,col:t.start.col}));t.thedef=p}});t.walk(i),t.globals=new w;i=new k(function(n,r){if(n instanceof Re&&n.label)return n.label.thedef.references.push(n),!0;if(n instanceof yt){var o=n.name;if("eval"==o&&i.parent()instanceof Ke)for(u=n.scope;u&&!u.uses_eval;u=u.parent_scope)u.uses_eval=!0;var a=n.scope.find_variable(o);return a?a.scope instanceof xe&&"arguments"==o&&(a.scope.uses_arguments=!0):a=t.def_global(n),n.thedef=a,n.reference(e),!0}var s;if(n instanceof vt&&(s=n.definition().redefined()))for(var u=n.scope;u&&(m(u.enclosed,s),u!==s.scope);)u=u.parent_scope});t.walk(i),e.ie8&&t.walk(new k(function(n,r){if(n instanceof vt){var o=n.name,i=n.thedef.references,a=n.thedef.defun,s=a.find_variable(o)||t.globals.get(o)||a.def_variable(n);return i.forEach(function(t){t.thedef=s,t.reference(e)}),n.thedef=s,n.reference(e),!0}})),e.cache&&(this.cname=e.cache.cname)}),Ae.DEFMETHOD("def_global",function(e){var t=this.globals,n=e.name;if(t.has(n))return t.get(n);var r=new $(this,t.size(),e);return r.undeclared=!0,r.global=!0,t.set(n,r),r}),Ee.DEFMETHOD("init_scope_vars",function(e){this.variables=new w,this.functions=new w,this.uses_with=!1,this.uses_eval=!1,this.parent_scope=e,this.enclosed=[],this.cname=-1}),xe.DEFMETHOD("init_scope_vars",function(){Ee.prototype.init_scope_vars.apply(this,arguments),this.uses_arguments=!1,this.def_variable(new dt({name:"arguments",start:this.start,end:this.end}))}),ct.DEFMETHOD("mark_enclosed",function(e){for(var t=this.definition(),n=this.scope;n&&(m(n.enclosed,t),e.keep_fnames&&n.functions.each(function(e){m(t.scope.enclosed,e)}),n!==t.scope);)n=n.parent_scope}),ct.DEFMETHOD("reference",function(e){this.definition().references.push(this),this.mark_enclosed(e)}),Ee.DEFMETHOD("find_variable",function(e){return e instanceof ct&&(e=e.name),this.variables.get(e)||this.parent_scope&&this.parent_scope.find_variable(e)}),Ee.DEFMETHOD("def_function",function(e){this.functions.set(e.name,this.def_variable(e))}),Ee.DEFMETHOD("def_variable",function(e){var t;return this.variables.has(e.name)?(t=this.variables.get(e.name)).orig.push(e):(t=new $(this,this.variables.size(),e),this.variables.set(e.name,t),t.global=!this.parent_scope),e.thedef=t}),Ee.DEFMETHOD("next_mangled",function(e){var t=this.enclosed;e:for(;;){var n=en(++this.cname);if(F(n)&&!(e.reserved.indexOf(n)>=0)){for(var r=t.length;--r>=0;){var o=t[r];if(n==(o.mangled_name||o.unmangleable(e)&&o.name))continue e}return n}}}),ke.DEFMETHOD("next_mangled",function(e,t){for(var n=t.orig[0]instanceof dt&&this.name&&this.name.definition(),r=n?n.mangled_name||n.name:null;;){var o=xe.prototype.next_mangled.call(this,e,t);if(!r||r!=o)return o}}),ct.DEFMETHOD("unmangleable",function(e){var t=this.definition();return!t||t.unmangleable(e)}),bt.DEFMETHOD("unmangleable",f),ct.DEFMETHOD("unreferenced",function(){return 0==this.definition().references.length&&!(this.scope.uses_eval||this.scope.uses_with)}),ct.DEFMETHOD("definition",function(){return this.thedef}),ct.DEFMETHOD("global",function(){return this.definition().global}),Ae.DEFMETHOD("_default_mangler_options",function(e){return e=u(e,{eval:!1,ie8:!1,keep_fnames:!1,reserved:[],toplevel:!1}),Array.isArray(e.reserved)||(e.reserved=[]),e}),Ae.DEFMETHOD("mangle_names",function(e){(e=this._default_mangler_options(e)).reserved.push("arguments");var t=-1,n=[];e.cache&&this.globals.each(function(t){e.reserved.indexOf(t.name)<0&&n.push(t)});var r=new k(function(o,i){if(o instanceof de){var a=t;return i(),t=a,!0}if(o instanceof Ee){r.parent();var s=[];return o.variables.each(function(t){e.reserved.indexOf(t.name)<0&&s.push(t)}),void n.push.apply(n,s)}if(o instanceof bt){var u;do{u=en(++t)}while(!F(u));return o.mangled_name=u,!0}!e.ie8&&o instanceof vt&&n.push(o.definition())});this.walk(r),n.forEach(function(t){t.mangle(e)}),e.cache&&(e.cache.cname=this.cname)}),Ae.DEFMETHOD("compute_char_frequency",function(e){function t(e){e instanceof At?en.consider(e.value,-1):e instanceof nt?(t(e.consequent),t(e.alternative)):e instanceof Ye&&t(e.expressions[e.expressions.length-1])}e=this._default_mangler_options(e);try{ie.prototype.print=function(n,r){this._print(n,r),this instanceof ct&&!this.unmangleable(e)?en.consider(this.name,-1):e.properties&&(this instanceof Qe?en.consider(this.property,-1):this instanceof Ze&&t(this.property))},en.consider(this.print_to_string(),1)}finally{ie.prototype.print=ie.prototype._print}en.sort()});var en=function(){function e(){o=Object.create(null),i.forEach(function(e){o[e]=0}),a.forEach(function(e){o[e]=0})}function t(e,t){return o[t]-o[e]}function n(e){var t="",n=54;e++;do{t+=r[--e%n],e=Math.floor(e/n),n=64}while(e>0);return t}var r,o,i="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_".split(""),a="0123456789".split("");return n.consider=function(e,t){for(var n=e.length;--n>=0;)o[e[n]]+=t},n.sort=function(){r=b(i,t).concat(b(a,t))},n.reset=e,e(),n}(),tn=/^$|[;{][\s\n]*$/;!function(){function e(e,t){e.DEFMETHOD("_codegen",t)}function t(e,n){Array.isArray(e)?e.forEach(function(e){t(e,n)}):e.DEFMETHOD("needs_parens",n)}function n(e,t,n,r){var o=e.length-1;g=r,e.forEach(function(e,r){!0!==g||e instanceof ue||e instanceof pe||e instanceof le&&e.body instanceof At||(g=!1),e instanceof pe||(n.indent(),e.print(n),r==o&&t||(n.newline(),t&&n.newline())),!0===g&&e instanceof le&&e.body instanceof At&&(g=!1)}),g=!1}function r(e,t,r){e.length>0?t.with_block(function(){n(e,!1,t,r)}):t.print("{}")}function o(e,t){var n=e.body;if(t.option("bracketize")||t.option("ie8")&&n instanceof ve)return p(n,t);if(!n)return t.force_semicolon();for(;;)if(n instanceof Me){if(!n.alternative)return void p(e.body,t);n=n.alternative}else{if(!(n instanceof he))break;n=n.body}s(e.body,t)}function i(e,t,n){var r=!1;n&&e.walk(new k(function(e){return!!(r||e instanceof Ee)||(e instanceof tt&&"in"==e.operator?(r=!0,!0):void 0)})),e.print(t,r)}function a(e,t,n){n.option("quote_keys")?n.print_string(e+""):("number"==typeof e||!n.option("beautify")&&+e+""==e)&&parseFloat(e)>=0?n.print(f(e)):(Nt(e)?!n.option("ie8"):U(e))?t&&n.option("keep_quoted_props")?n.print_string(e,t):n.print_name(e):n.print_string(e,t)}function s(e,t){t.option("bracketize")?p(e,t):!e||e instanceof pe?t.force_semicolon():e.print(t)}function u(e,t){return e.args.length>0||t.option("beautify")}function l(e){for(var t=e[0],n=t.length,r=1;r=0?r.push("0x"+e.toString(16).toLowerCase(),"0"+e.toString(8)):r.push("-0x"+(-e).toString(16).toLowerCase(),"-0"+(-e).toString(8)),(t=/^(.*?)(0+)$/.exec(e))&&r.push(t[1]+"e"+t[2].length)):(t=/^0?\.(0+)(.*)$/.exec(e))&&r.push(t[2]+"e-"+(t[1].length+t[2].length),n.substr(n.indexOf("."))),l(r)}function p(e,t){!e||e instanceof pe?t.print("{}"):e instanceof fe?e.print(t):t.with_block(function(){t.indent(),e.print(t),t.newline()})}function h(e,t){e.DEFMETHOD("add_source_map",function(e){t(this,e)})}function d(e,t){t.add_mapping(e.start)}var m=!1,g=!1;ie.DEFMETHOD("print",function(e,t){function n(){r.add_comments(e),r.add_source_map(e),o(r,e)}var r=this,o=r._codegen,i=m;r instanceof ue&&"use asm"==r.value&&e.parent()instanceof Ee&&(m=!0),e.push_node(r),t||r.needs_parens(e)?e.with_parens(n):n(),e.pop_node(),r instanceof Ee&&(m=i)}),ie.DEFMETHOD("_print",ie.prototype.print),ie.DEFMETHOD("print_to_string",function(e){var t=K(e);return e||(t._readonly=!0),this.print(t),t.get()}),ie.DEFMETHOD("add_comments",function(e){if(!e._readonly){var t=this,n=t.start;if(n&&!n._comments_dumped){n._comments_dumped=!0;var r=n.comments_before||[];if(t instanceof Be&&t.value&&t.value.walk(new k(function(e){if(e.start&&e.start.comments_before&&(r=r.concat(e.start.comments_before),e.start.comments_before=[]),e instanceof ke||e instanceof ot||e instanceof it)return!0})),0==e.pos()){r.length>0&&e.option("shebang")&&"comment5"==r[0].type&&(e.print("#!"+r.shift().value+"\n"),e.indent());var o=e.option("preamble");o&&e.print(o.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g,"\n"))}r=r.filter(e.comment_filter,t),!e.option("beautify")&&r.length>0&&/comment[134]/.test(r[0].type)&&0!==e.col()&&r[0].nlb&&e.print("\n"),r.forEach(function(t){/comment[134]/.test(t.type)?(e.print("//"+t.value+"\n"),e.indent()):"comment2"==t.type&&(e.print("/*"+t.value+"*/"),n.nlb?(e.print("\n"),e.indent()):e.space())})}}}),t(ie,function(){return!1}),t(ke,function(e){if(A(e))return!0;if(e.option("webkit")&&(t=e.parent())instanceof We&&t.expression===this)return!0;if(e.option("wrap_iife")){var t=e.parent();return t instanceof Ke&&t.expression===this}return!1}),t(it,function(e){return A(e)}),t(Je,function(e){var t=e.parent();return t instanceof We&&t.expression===this||t instanceof Ke&&t.expression===this}),t(Ye,function(e){var t=e.parent();return t instanceof Ke||t instanceof Je||t instanceof tt||t instanceof He||t instanceof We||t instanceof ot||t instanceof at||t instanceof nt}),t(tt,function(e){var t=e.parent();if(t instanceof Ke&&t.expression===this)return!0;if(t instanceof Je)return!0;if(t instanceof We&&t.expression===this)return!0;if(t instanceof tt){var n=t.operator,r=Jt[n],o=this.operator,i=Jt[o];if(r>i||r==i&&this===t.right)return!0}}),t(We,function(e){var t=e.parent();if(t instanceof Ge&&t.expression===this){var n=!1;return this.walk(new k(function(e){return!!(n||e instanceof Ee)||(e instanceof Ke?(n=!0,!0):void 0)})),n}}),t(Ke,function(e){var t,n=e.parent();return n instanceof Ge&&n.expression===this||this.expression instanceof ke&&n instanceof We&&n.expression===this&&(t=e.parent(1))instanceof rt&&t.left===n}),t(Ge,function(e){var t=e.parent();if(!u(this,e)&&(t instanceof We||t instanceof Ke&&t.expression===this))return!0}),t(xt,function(e){var t=e.parent();if(t instanceof We&&t.expression===this){var n=this.getValue();if(n<0||/^0/.test(f(n)))return!0}}),t([rt,nt],function(e){var t=e.parent();return t instanceof Je||(t instanceof tt&&!(t instanceof rt)||(t instanceof Ke&&t.expression===this||(t instanceof nt&&t.condition===this||(t instanceof We&&t.expression===this||void 0))))}),e(ue,function(e,t){t.print_string(e.value,e.quote),t.semicolon()}),e(se,function(e,t){t.print("debugger"),t.semicolon()}),he.DEFMETHOD("_do_print_body",function(e){s(this.body,e)}),e(ae,function(e,t){e.body.print(t),t.semicolon()}),e(Ae,function(e,t){n(e.body,!0,t,!0),t.print("")}),e(de,function(e,t){e.label.print(t),t.colon(),e.body.print(t)}),e(le,function(e,t){e.body.print(t),t.semicolon()}),e(fe,function(e,t){r(e.body,t)}),e(pe,function(e,t){t.semicolon()}),e(ve,function(e,t){t.print("do"),t.space(),p(e.body,t),t.space(),t.print("while"),t.space(),t.with_parens(function(){e.condition.print(t)}),t.semicolon()}),e(be,function(e,t){t.print("while"),t.space(),t.with_parens(function(){e.condition.print(t)}),t.space(),e._do_print_body(t)}),e(ye,function(e,t){t.print("for"),t.space(),t.with_parens(function(){e.init?(e.init instanceof Ve?e.init.print(t):i(e.init,t,!0),t.print(";"),t.space()):t.print(";"),e.condition?(e.condition.print(t),t.print(";"),t.space()):t.print(";"),e.step&&e.step.print(t)}),t.space(),e._do_print_body(t)}),e(_e,function(e,t){t.print("for"),t.space(),t.with_parens(function(){e.init.print(t),t.space(),t.print("in"),t.space(),e.object.print(t)}),t.space(),e._do_print_body(t)}),e(we,function(e,t){t.print("with"),t.space(),t.with_parens(function(){e.expression.print(t)}),t.space(),e._do_print_body(t)}),xe.DEFMETHOD("_do_print",function(e,t){var n=this;t||e.print("function"),n.name&&(e.space(),n.name.print(e)),e.with_parens(function(){n.argnames.forEach(function(t,n){n&&e.comma(),t.print(e)})}),e.space(),r(n.body,e,!0)}),e(xe,function(e,t){e._do_print(t)}),Be.DEFMETHOD("_do_print",function(e,t){e.print(t),this.value&&(e.space(),this.value.print(e)),e.semicolon()}),e(De,function(e,t){e._do_print(t,"return")}),e(Te,function(e,t){e._do_print(t,"throw")}),Re.DEFMETHOD("_do_print",function(e,t){e.print(t),this.label&&(e.space(),this.label.print(e)),e.semicolon()}),e(Fe,function(e,t){e._do_print(t,"break")}),e(Le,function(e,t){e._do_print(t,"continue")}),e(Me,function(e,t){t.print("if"),t.space(),t.with_parens(function(){e.condition.print(t)}),t.space(),e.alternative?(o(e,t),t.space(),t.print("else"),t.space(),e.alternative instanceof Me?e.alternative.print(t):s(e.alternative,t)):e._do_print_body(t)}),e(Ue,function(e,t){t.print("switch"),t.space(),t.with_parens(function(){e.expression.print(t)}),t.space();var n=e.body.length-1;n<0?t.print("{}"):t.with_block(function(){e.body.forEach(function(e,r){t.indent(!0),e.print(t),r0&&t.newline()})})}),Ne.DEFMETHOD("_do_print_body",function(e){e.newline(),this.body.forEach(function(t){e.indent(),t.print(e),e.newline()})}),e(Pe,function(e,t){t.print("default:"),e._do_print_body(t)}),e(qe,function(e,t){t.print("case"),t.space(),e.expression.print(t),t.print(":"),e._do_print_body(t)}),e(ze,function(e,t){t.print("try"),t.space(),r(e.body,t),e.bcatch&&(t.space(),e.bcatch.print(t)),e.bfinally&&(t.space(),e.bfinally.print(t))}),e(Ie,function(e,t){t.print("catch"),t.space(),t.with_parens(function(){e.argname.print(t)}),t.space(),r(e.body,t)}),e(je,function(e,t){t.print("finally"),t.space(),r(e.body,t)}),Ve.DEFMETHOD("_do_print",function(e,t){e.print(t),e.space(),this.definitions.forEach(function(t,n){n&&e.comma(),t.print(e)});var n=e.parent();(n instanceof ye||n instanceof _e)&&n.init===this||e.semicolon()}),e($e,function(e,t){e._do_print(t,"var")}),e(He,function(e,t){if(e.name.print(t),e.value){t.space(),t.print("="),t.space();var n=t.parent(1),r=n instanceof ye||n instanceof _e;i(e.value,t,r)}}),e(Ke,function(e,t){e.expression.print(t),e instanceof Ge&&!u(e,t)||(e.expression instanceof xe&&t.add_mapping(e.start),t.with_parens(function(){e.args.forEach(function(e,n){n&&t.comma(),e.print(t)})}))}),e(Ge,function(e,t){t.print("new"),t.space(),Ke.prototype._codegen(e,t)}),Ye.DEFMETHOD("_do_print",function(e){this.expressions.forEach(function(t,n){n>0&&(e.comma(),e.should_break()&&(e.newline(),e.indent())),t.print(e)})}),e(Ye,function(e,t){e._do_print(t)}),e(Qe,function(e,t){var n=e.expression;n.print(t);var r=e.property;t.option("ie8")&&Nt(r)?(t.print("["),t.add_mapping(e.end),t.print_string(r),t.print("]")):(n instanceof xt&&n.getValue()>=0&&(/[xa-f.)]/i.test(t.last())||t.print(".")),t.print("."),t.add_mapping(e.end),t.print_name(r))}),e(Ze,function(e,t){e.expression.print(t),t.print("["),e.property.print(t),t.print("]")}),e(Xe,function(e,t){var n=e.operator;t.print(n),(/^[a-z]/i.test(n)||/[+-]$/.test(n)&&e.expression instanceof Xe&&/^[+-]/.test(e.expression.operator))&&t.space(),e.expression.print(t)}),e(et,function(e,t){e.expression.print(t),t.print(e.operator)}),e(tt,function(e,t){var n=e.operator;e.left.print(t),">"==n[0]&&e.left instanceof et&&"--"==e.left.operator?t.print(" "):t.space(),t.print(n),("<"==n||"<<"==n)&&e.right instanceof Xe&&"!"==e.right.operator&&e.right.expression instanceof Xe&&"--"==e.right.expression.operator?t.print(" "):t.space(),e.right.print(t)}),e(nt,function(e,t){e.condition.print(t),t.space(),t.print("?"),t.space(),e.consequent.print(t),t.space(),t.colon(),e.alternative.print(t)}),e(ot,function(e,t){t.with_square(function(){var n=e.elements,r=n.length;r>0&&t.space(),n.forEach(function(e,n){n&&t.comma(),e.print(t),n===r-1&&e instanceof Dt&&t.comma()}),r>0&&t.space()})}),e(it,function(e,t){e.properties.length>0?t.with_block(function(){e.properties.forEach(function(e,n){n&&(t.print(","),t.newline()),t.indent(),e.print(t)}),t.newline()}):t.print("{}")}),e(st,function(e,t){a(e.key,e.quote,t),t.colon(),e.value.print(t)}),at.DEFMETHOD("_print_getter_setter",function(e,t){t.print(e),t.space(),a(this.key.name,this.quote,t),this.value._do_print(t,!0)}),e(ut,function(e,t){e._print_getter_setter("set",t)}),e(lt,function(e,t){e._print_getter_setter("get",t)}),e(ct,function(e,t){var n=e.definition();t.print_name(n?n.mangled_name||n.name:e.name)}),e(Dt,c),e(wt,function(e,t){t.print("this")}),e(Et,function(e,t){t.print(e.getValue())}),e(At,function(e,t){t.print_string(e.getValue(),e.quote,g)}),e(xt,function(e,t){m&&e.start&&null!=e.start.raw?t.print(e.start.raw):t.print(f(e.getValue()))}),e(Ct,function(e,t){var n=e.getValue(),r=n.toString();n.raw_source&&(r="/"+n.raw_source+r.slice(r.lastIndexOf("/"))),r=t.to_utf8(r),t.print(r);var o=t.parent();o instanceof tt&&/^in/.test(o.operator)&&o.left===e&&t.print(" ")}),h(ie,c),h(ue,d),h(se,d),h(ct,d),h(Se,d),h(he,d),h(de,c),h(xe,d),h(Ue,d),h(Ne,d),h(fe,d),h(Ae,c),h(Ge,d),h(ze,d),h(Ie,d),h(je,d),h(Ve,d),h(Et,d),h(ut,function(e,t){t.add_mapping(e.start,e.key.name)}),h(lt,function(e,t){t.add_mapping(e.start,e.key.name)}),h(at,function(e,t){t.add_mapping(e.start,e.key)})}(),G.prototype=new V,l(G.prototype,{option:function(e){return this.options[e]},exposed:function(e){if(e.global)for(var t=0,n=e.orig.length;t0||this.option("reduce_vars"))&&e.reset_opt_flags(this,!0),e=e.transform(this),t>1){var o=0;if(e.walk(new k(function(){o++})),this.info("pass "+r+": last_count: "+n+", count: "+o),o>=n)break;n=o}return this.option("expression")&&e.process_expression(!1),e},info:function(){"verbose"==this.options.warnings&&ie.warn.apply(ie,arguments)},warn:function(e,t){if(this.options.warnings){var n=g(e,t);n in this.warnings_produced||(this.warnings_produced[n]=!0,ie.warn.apply(ie,arguments))}},clear_warnings:function(){this.warnings_produced={}},before:function(e,t,n){if(e._squeezed)return e;var r=!1;e instanceof Ee&&(e=e.hoist_declarations(this),r=!0),t(e,this),t(e,this);var o=e.optimize(this);return r&&o instanceof Ee&&(o.drop_unused(this),t(o,this)),o===e&&(o._squeezed=!0),o}}),function(){function e(e,t){e.DEFMETHOD("optimize",function(e){var n=this;if(n._optimized)return n;if(e.has_directive("use asm"))return n;var r=t(n,e);return r._optimized=!0,r})}function t(e){if(e instanceof yt)return e.definition().orig[0]instanceof gt;if(e instanceof We){if((e=e.expression)instanceof yt){if(e.is_immutable())return!1;e=e.fixed_value()}return!e||!(e instanceof Ct)&&(e instanceof Et||t(e))}return!1}function n(e,t){for(var n,r=0;(n=e.parent(r++))&&!(n instanceof Ee);)if(n instanceof Ie){n=n.argname.definition().scope;break}return n.find_variable(t)}function i(e,t,n){return n||(n={}),t&&(n.start||(n.start=t.start),n.end||(n.end=t.end)),new e(n)}function a(e,t){return 1==t.length?t[0]:i(Ye,e,{expressions:t})}function s(e,t){switch(typeof e){case"string":return i(At,t,{value:e});case"number":return isNaN(e)?i(St,t):isFinite(e)?1/e<0?i(Xe,t,{operator:"-",expression:i(xt,t,{value:-e})}):i(xt,t,{value:e}):e<0?i(Xe,t,{operator:"-",expression:i(Tt,t)}):i(Tt,t);case"boolean":return i(e?Lt:Ft,t);case"undefined":return i(Bt,t);default:if(null===e)return i(Ot,t,{value:null});if(e instanceof RegExp)return i(Ct,t,{value:e});throw new Error(g("Can't handle constant of type: {type}",{type:typeof e}))}}function u(e,t,n){return e instanceof Xe&&"delete"==e.operator||e instanceof Ke&&e.expression===t&&(n instanceof We||n instanceof yt&&"eval"==n.name)?a(t,[i(xt,t,{value:0}),n]):n}function l(e,t){t instanceof Ye?e.push.apply(e,t.expressions):e.push(t)}function m(e){if(null===e)return[];if(e instanceof fe)return e.body;if(e instanceof pe)return[];if(e instanceof ae)return[e];throw new Error("Can't convert thing to statement array")}function b(e){return null===e||(e instanceof pe||e instanceof fe&&0==e.body.length)}function x(e){return e instanceof Ue?e:(e instanceof ye||e instanceof _e||e instanceof ge)&&e.body instanceof fe?e.body:e}function O(e){return e instanceof Ke&&!(e instanceof Ge)&&(e.expression instanceof ke||O(e.expression))}function S(e){return e instanceof yt&&e.definition().undeclared}function B(e,n){function r(e){for(var t=[],n=0;n=0;){var r=e[n];if(r instanceof Me&&r.body instanceof De&&++t>1)return!0}return!1}(e),c=u instanceof xe,f=e.length;--f>=0;){var p=e[f],h=e[f+1];if(c&&p instanceof De&&!p.value&&!h)s=!0,e.length--;else{if(p instanceof Me){var d=N(p.body);if(r(d)){d.label&&v(d.label.thedef.references,d),s=!0,(p=p.clone()).condition=p.condition.negate(t),g=a(p.body,d),p.body=i(fe,p,{body:m(p.alternative).concat(o())}),p.alternative=i(fe,p,{body:g}),e[f]=p.transform(t);continue}if(r(d=N(p.alternative))){d.label&&v(d.label.thedef.references,d),s=!0,(p=p.clone()).body=i(fe,p.body,{body:m(p.body).concat(o())});var g=a(p.alternative,d);p.alternative=i(fe,p.alternative,{body:g}),e[f]=p.transform(t);continue}}if(p instanceof Me&&p.body instanceof De){var b=p.body.value;if(!b&&!p.alternative&&(c&&!h||h instanceof De&&!h.value)){s=!0,e[f]=i(le,p.condition,{body:p.condition});continue}if(b&&!p.alternative&&h instanceof De&&h.value){s=!0,(p=p.clone()).alternative=h,e.splice(f,2,p.transform(t));continue}if(l&&c&&b&&!p.alternative&&(!h||h instanceof De)){s=!0,(p=p.clone()).alternative=h||i(De,p,{value:null}),e.splice(f,h?2:1,p.transform(t));continue}var y=e[f-1];if(t.option("sequences")&&c&&!p.alternative&&y instanceof Me&&y.body instanceof De&&f+2==e.length&&h instanceof le){s=!0,e.push(i(De,h,{value:null}).transform(t));continue}}}}}(e,n),n.sequences_limit>0&&function(e,t){function n(){if(r.length){var t=a(r[0],r);e[u++]=i(le,t,{body:t}),r=[]}}if(!(e.length<2)){for(var r=[],u=0,c=0,f=e.length;c=t.sequences_limit&&n();var h=p.body;r.length>0&&(h=h.drop_side_effect_free(t)),h&&l(r,h)}else n(),e[u++]=p}n(),e.length=u,o(e,t),s=e.length!=f}}(e,n),n.option("join_vars")&&function(e,t){for(var n=0,r=-1,o=e.length;n=0;)for(0==p&&n.option("unused")&&function(){var e,t=n.self();if(t instanceof ke&&!t.name&&!t.uses_arguments&&!t.uses_eval&&(e=n.parent())instanceof Ke&&e.expression===t)for(var r=Object.create(null),o=t.argnames.length;--o>=0;){var a=t.argnames[o];if(!(a.name in r)){r[a.name]=!0;var s=e.args[o];if(s){var u=new k(function(e){if(!s)return!0;if(e instanceof yt&&t.variables.has(e.name)){var n=e.definition().scope;if(n!==c)for(;n=n.parent_scope;)if(n===c)return!0;s=null}return e instanceof wt&&!u.find_parent(Ee)?(s=null,!0):void 0});s.walk(u)}else s=i(Bt,a).transform(n);s&&f.unshift(i(He,a,{name:a,value:s}))}}}(),r(e[p]);f.length>0;){var h=f.pop(),d=function(e){if(!(e instanceof He))return e[e instanceof rt?"left":"expression"];var t=e.name.definition();return t.orig.length>1&&!(e.name instanceof dt)||1==t.references.length&&!n.exposed(t)?i(yt,e.name,e.name):void 0}(h);if(d&&!t(d)){var m=function(e){var t=Object.create(null);if(e instanceof Je)return t;var n,r=new k(function(e,i){if(e instanceof Ee){var a=n;return i(),n=a,!0}if(e instanceof yt||e instanceof We){var s=o(e);s instanceof yt&&(t[s.name]=t[s.name]||R(e,r.parent()))}});return e[e instanceof rt?"right":"value"].walk(r),t}(h);d instanceof yt&&(m[d.name]=!1);for(var g=function(e){return!(e instanceof Je)&&e[e instanceof rt?"right":"value"].has_side_effects(n)}(h),b=h.name instanceof dt,y=!1,_=!1,w=new V(function(e,t){if(y)return e;if(b){var r=w.parent();if(e instanceof rt&&"="!=e.operator&&d.equivalent_to(e.left)||e instanceof Ke&&d instanceof We&&d.equivalent_to(e.expression)||e instanceof se||e instanceof me&&!(e instanceof ye)||e instanceof yt&&!e.is_declared(n)||e instanceof ze||e instanceof we||r instanceof ye&&e!==r.init)return y=!0,e;if(!(e instanceof pt)&&!R(e,r)&&d.equivalent_to(e)){if(s=_=y=!0,n.info("Collapsing {name} [{file}:{line},{col}]",{name:e.print_to_string(),file:e.start.file,line:e.start.line,col:e.start.col}),h instanceof et)return i(Xe,h,h);if(h instanceof He){var c=h.name.definition();return 1!=c.references.length||n.exposed(c)?i(rt,h,{operator:"=",left:i(yt,h.name,h.name),right:h.value}):u(r,e,h.value)}return h.write_only=!1,h}var f;return e instanceof Ke||e instanceof Be||e instanceof We||e instanceof yt&&(m[e.name]||g&&!l(e.definition()))||(f=a(e))&&o(f).name in m||r instanceof tt&&("&&"==r.operator||"||"==r.operator)||r instanceof qe||r instanceof nt||r instanceof ye||r instanceof Me?(e instanceof Ee||t(e,w),y=!0,e):e instanceof Pe||e instanceof Ee?e:void 0}return e===h?(b=!0,e):void 0}),E=p;!y&&E0)}function D(e,t,n){t instanceof Oe||e.warn("Dropping unreachable code [{file}:{line},{col}]",t.start),t.walk(new k(function(r){return r instanceof Ve?(e.warn("Declarations in unreachable code! [{file}:{line},{col}]",r.start),r.remove_initializers(),n.push(r),!0):r instanceof Oe&&(r===t||!e.has_directive("use strict"))?(n.push(r),!0):r instanceof Ee||void 0}))}function T(e,t){return e.is_undefined||e instanceof Bt||e instanceof Xe&&"void"==e.operator&&!e.expression.has_side_effects(t)}function R(e,t){return t instanceof Je&&H(t.operator)?t.expression:t instanceof rt&&t.left===e?e:void 0}function F(e,t){return e.print_to_string().length>t.print_to_string().length?t:e}function L(e,t){return F(i(le,e,{body:e}),i(le,t,{body:t})).body}function M(e,t,n){return(A(e)?L:F)(t,n)}function N(e){return e&&e.aborts()}function q(e,t){function n(n){n=m(n),e.body instanceof fe?(e.body=e.body.clone(),e.body.body=n.concat(e.body.body.slice(1)),e.body=e.body.transform(t)):e.body=i(fe,e.body,{body:n}).transform(t),q(e,t)}var r=e.body instanceof fe?e.body.body[0]:e.body;r instanceof Me&&(r.body instanceof Fe&&t.loopcontrol_target(r.body)===t.self()?(e.condition?e.condition=i(tt,e.condition,{left:e.condition,operator:"&&",right:r.condition.negate(t)}):e.condition=r.condition.negate(t),n(r.alternative)):r.alternative instanceof Fe&&t.loopcontrol_target(r.alternative)===t.self()&&(e.condition?e.condition=i(tt,e.condition,{left:e.condition,operator:"&&",right:r.condition}):e.condition=r.condition,n(r.body)))}function z(e,t){return e instanceof yt||e.TYPE===t.TYPE}function I(e,t){return t.option("booleans")&&t.in_boolean_context()?M(t,e,a(e,[e,i(Lt,e)]).optimize(t)):e}e(ie,function(e,t){return e}),ie.DEFMETHOD("equivalent_to",function(e){return this.TYPE==e.TYPE&&this.print_to_string()==e.print_to_string()}),Ee.DEFMETHOD("process_expression",function(e,t){var n=this,r=new V(function(o){if(e&&o instanceof le)return i(De,o,{value:o.body});if(!e&&o instanceof De){if(t){var a=o.value&&o.value.drop_side_effect_free(t,!0);return a?i(le,o,{body:a}):i(pe,o)}return i(le,o,{body:o.value||i(Xe,o,{operator:"void",expression:i(xt,o,{value:0})})})}if(o instanceof xe&&o!==n)return o;if(o instanceof ce){var s=o.body.length-1;s>=0&&(o.body[s]=o.body[s].transform(r))}return o instanceof Me&&(o.body=o.body.transform(r),o.alternative&&(o.alternative=o.alternative.transform(r))),o instanceof we&&(o.body=o.body.transform(r)),o});n.transform(r)}),ie.DEFMETHOD("reset_opt_flags",function(e,t){function n(e,t){p[e.id]=t}function r(e){if(p[e.id]){if(null==e.fixed){var t=e.orig[0];if(t instanceof dt||"arguments"==t.name)return!1;e.fixed=i(Bt,t)}return!0}}function o(e,t){return!!E(p,e.id)&&(!!r(e)&&(!1!==e.fixed&&(!(null!=e.fixed&&(!t||e.references.length>0))&&!e.orig.some(function(e){return e instanceof mt||e instanceof gt}))))}function a(){p=Object.create(p)}function s(){p=Object.getPrototypeOf(p)}function u(t){t.escaped=!1,t.scope.uses_eval?t.fixed=!1:e.exposed(t)?t.fixed=!1:t.fixed=void 0,t.references=[],t.should_replace=void 0}function l(e){return e&&e.is_constant()||e instanceof xe}function c(e,t,n){var r=d.parent(t);return!!(R(e,r)||!n&&r instanceof Ke&&r.expression===e)||(r instanceof We&&r.expression===e?!n&&c(r,t+1):void 0)}var f=t&&e.option("reduce_vars"),p=Object.create(null),h=new k(function(e){if(e instanceof ct){var t=e.definition();t&&(e instanceof yt&&t.references.push(e),t.fixed=!1)}}),d=new k(function(t,m){if(t._squeezed=!1,t._optimized=!1,f){if(t instanceof Ae&&t.globals.each(u),t instanceof Ee&&t.variables.each(u),t instanceof yt)if((v=t.definition()).references.push(t),void 0===v.fixed||!r(v)||c(t,0,l(t.fixed_value())))v.fixed=!1;else{var g=d.parent();(g instanceof rt&&"="==g.operator&&t===g.right||g instanceof Ke&&t!==g.expression||g instanceof De&&t===g.value&&t.scope!==v.scope||g instanceof He&&t===g.value)&&(v.escaped=!0)}if(t instanceof vt&&(t.definition().fixed=!1),t instanceof He){if(void 0===(v=t.name.definition()).fixed||o(v,t.value))return t.value?(v.fixed=function(){return t.value},n(v,!1),m()):v.fixed=null,n(v,!0),!0;t.value&&(v.fixed=!1)}if(t instanceof rt&&"="==t.operator&&t.left instanceof yt&&o(v=t.left.definition(),t.right))return v.references.push(t.left),v.fixed=function(){return t.right},n(v,!1),t.right.walk(d),n(v,!0),!0;if(t instanceof Oe){var v=t.name.definition();e.exposed(v)||r(v)?v.fixed=!1:(v.fixed=t,n(v,!0));y=p;return p=Object.create(null),m(),p=y,!0}if(t instanceof ke){a();var b;return!t.name&&(b=d.parent())instanceof Ke&&b.expression===t&&t.argnames.forEach(function(e,r){var o=e.definition();t.uses_arguments||void 0!==o.fixed?o.fixed=!1:(o.fixed=function(){return b.args[r]||i(Bt,b)},n(o,!0))}),m(),s(),!0}if(t instanceof Ce){var y=p;return p=Object.create(null),m(),p=y,!0}if(t instanceof tt&&("&&"==t.operator||"||"==t.operator))return t.left.walk(d),a(),t.right.walk(d),s(),!0;if(t instanceof nt)return t.condition.walk(d),a(),t.consequent.walk(d),s(),a(),t.alternative.walk(d),s(),!0;if(t instanceof Me)return t.condition.walk(d),a(),t.body.walk(d),s(),t.alternative&&(a(),t.alternative.walk(d),s()),!0;if(t instanceof ge)return a(),t.condition.walk(d),t.body.walk(d),s(),!0;if(t instanceof de)return a(),t.body.walk(d),s(),!0;if(t instanceof ye)return t.init&&t.init.walk(d),t.condition&&(a(),t.condition.walk(d),s()),a(),t.body.walk(d),s(),t.step&&(a(),t.step.walk(d),s()),!0;if(t instanceof _e)return t.init.walk(h),t.object.walk(d),a(),t.body.walk(d),s(),!0;if(t instanceof ze)return a(),C(t,d),s(),t.bcatch&&(a(),t.bcatch.walk(d),s()),t.bfinally&&t.bfinally.walk(d),!0;if(t instanceof Ne)return a(),m(),s(),!0}});this.walk(d)}),yt.DEFMETHOD("fixed_value",function(){var e=this.definition().fixed;return!e||e instanceof ie?e:e()}),yt.DEFMETHOD("is_immutable",function(){var e=this.definition().orig;return 1==e.length&&e[0]instanceof gt});var $=y("Array Boolean clearInterval clearTimeout console Date decodeURI decodeURIComponent encodeURI encodeURIComponent Error escape eval EvalError Function isFinite isNaN JSON Math Number parseFloat parseInt RangeError ReferenceError RegExp Object setInterval setTimeout String SyntaxError TypeError unescape URIError");yt.DEFMETHOD("is_declared",function(e){return!this.definition().undeclared||e.option("unsafe")&&$(this.name)}),function(e){function t(e){return/strict/.test(e.option("pure_getters"))}ie.DEFMETHOD("may_throw_on_access",function(e){return!e.option("pure_getters")||this._dot_throw(e)}),e(ie,t),e(Ot,p),e(Bt,p),e(Et,f),e(ot,f),e(it,function(e){if(!t(e))return!1;for(var n=this.properties.length;--n>=0;)if(this.properties[n].value instanceof Ce)return!0;return!1}),e(ke,f),e(et,f),e(Xe,function(){return"void"==this.operator}),e(tt,function(e){switch(this.operator){case"&&":return this.left._dot_throw(e);case"||":return this.left._dot_throw(e)&&this.right._dot_throw(e);default:return!1}}),e(rt,function(e){return"="==this.operator&&this.right._dot_throw(e)}),e(nt,function(e){return this.consequent._dot_throw(e)||this.alternative._dot_throw(e)}),e(Ye,function(e){return this.expressions[this.expressions.length-1]._dot_throw(e)}),e(yt,function(e){if(this.is_undefined)return!0;if(!t(e))return!1;if(S(this)&&this.is_declared(e))return!1;if(this.is_immutable())return!1;var n=this.fixed_value();return!n||n._dot_throw(e)})}(function(e,t){e.DEFMETHOD("_dot_throw",t)}),function(e){var t=["!","delete"],n=["in","instanceof","==","!=","===","!==","<","<=",">=",">"];e(ie,f),e(Xe,function(){return r(this.operator,t)}),e(tt,function(){return r(this.operator,n)||("&&"==this.operator||"||"==this.operator)&&this.left.is_boolean()&&this.right.is_boolean()}),e(nt,function(){return this.consequent.is_boolean()&&this.alternative.is_boolean()}),e(rt,function(){return"="==this.operator&&this.right.is_boolean()}),e(Ye,function(){return this.expressions[this.expressions.length-1].is_boolean()}),e(Lt,p),e(Ft,p)}(function(e,t){e.DEFMETHOD("is_boolean",t)}),function(e){e(ie,f),e(xt,p);var t=y("+ - ~ ++ --");e(Je,function(){return t(this.operator)});var n=y("- * / % & | ^ << >> >>>");e(tt,function(e){return n(this.operator)||"+"==this.operator&&this.left.is_number(e)&&this.right.is_number(e)}),e(rt,function(e){return n(this.operator.slice(0,-1))||"="==this.operator&&this.right.is_number(e)}),e(Ye,function(e){return this.expressions[this.expressions.length-1].is_number(e)}),e(nt,function(e){return this.consequent.is_number(e)&&this.alternative.is_number(e)})}(function(e,t){e.DEFMETHOD("is_number",t)}),function(e){e(ie,f),e(At,p),e(Xe,function(){return"typeof"==this.operator}),e(tt,function(e){return"+"==this.operator&&(this.left.is_string(e)||this.right.is_string(e))}),e(rt,function(e){return("="==this.operator||"+="==this.operator)&&this.right.is_string(e)}),e(Ye,function(e){return this.expressions[this.expressions.length-1].is_string(e)}),e(nt,function(e){return this.consequent.is_string(e)&&this.alternative.is_string(e)})}(function(e,t){e.DEFMETHOD("is_string",t)});var H=y("delete ++ --");!function(e){function t(e,n){if(e instanceof ie)return i(e.CTOR,n,e);if(Array.isArray(e))return i(ot,n,{elements:e.map(function(e){return t(e,n)})});if(e&&"object"==typeof e){var r=[];for(var o in e)E(e,o)&&r.push(i(st,n,{key:o,value:t(e[o],n)}));return i(it,n,{properties:r})}return s(e,n)}ie.DEFMETHOD("resolve_defines",function(e){if(e.option("global_defs")){var t=this._find_defs(e,"");if(t){var n,r=this,o=0;do{n=r,r=e.parent(o++)}while(r instanceof We&&r.expression===n);if(!R(n,r))return t;e.warn("global_defs "+this.print_to_string()+" redefined [{file}:{line},{col}]",this.start)}}}),e(ie,c),e(Qe,function(e,t){return this.expression._find_defs(e,"."+this.property+t)}),e(yt,function(e,n){if(this.global()){var r,o=e.option("global_defs");if(o&&E(o,r=this.name+n)){var i=t(o[r],this),a=e.find_parent(Ae);return i.walk(new k(function(e){e instanceof yt&&(e.scope=a,e.thedef=a.def_global(e))})),i}}})}(function(e,t){e.DEFMETHOD("_find_defs",t)}),function(e){function t(e,t){if(!t)throw new Error("Compressor must be passed");return e._eval(t)}function n(e){for(var t in e)e[t]=y(e[t])}ie.DEFMETHOD("evaluate",function(e){if(!e.option("evaluate"))return this;var t=this._eval(e);return!t||t instanceof RegExp||"object"!=typeof t?t:this});var r=y("! ~ - + void");ie.DEFMETHOD("is_constant",function(){return this instanceof Et?!(this instanceof Ct):this instanceof Xe&&this.expression instanceof Et&&r(this.operator)}),ie.DEFMETHOD("constant_value",function(e){if(this instanceof Et&&!(this instanceof Ct))return this.value;if(this instanceof Xe&&this.expression instanceof Et)switch(this.operator){case"!":return!this.expression.value;case"~":return~this.expression.value;case"-":return-this.expression.value;case"+":return+this.expression.value;default:throw new Error(g("Cannot evaluate unary expression {value}",{value:this.print_to_string()}))}var t=this.evaluate(e);if(t!==this)return t;throw new Error(g("Cannot evaluate constant [{file}:{line},{col}]",this.start))}),e(ae,function(){throw new Error(g("Cannot evaluate a statement [{file}:{line},{col}]",this.start))}),e(xe,h),e(ie,h),e(Et,function(){return this.getValue()}),e(ot,function(e){if(e.option("unsafe")){for(var n=[],r=0,o=this.elements.length;r>":o=n>>r;break;case">>>":o=n>>>r;break;case"==":o=n==r;break;case"===":o=n===r;break;case"!=":o=n!=r;break;case"!==":o=n!==r;break;case"<":o=n":o=n>r;break;case">=":o=n>=r;break;default:return this}return isNaN(o)&&e.find_parent(we)?this:o}),e(nt,function(e){var n=t(this.condition,e);if(n===this.condition)return this;var r=n?this.consequent:this.alternative,o=t(r,e);return o===r?this:o}),e(yt,function(e){if(!e.option("reduce_vars"))return this;var n=this.fixed_value();if(!n)return this;this._eval=h;var r=t(n,e);return r===n?(delete this._eval,this):(E(n,"_eval")||(n._eval=function(){return r}),r&&"object"==typeof r&&this.definition().escaped?(delete this._eval,this):(this._eval=n._eval,r))});var o={Array:Array,Math:Math,Number:Number,String:String},i={Math:["E","LN10","LN2","LOG2E","LOG10E","PI","SQRT1_2","SQRT2"],Number:["MAX_VALUE","MIN_VALUE","NaN","NEGATIVE_INFINITY","POSITIVE_INFINITY"]};n(i),e(We,function(e){if(e.option("unsafe")){var n=this.property;if(n instanceof ie&&(n=t(n,e))===this.property)return this;var r,a=this.expression;if(S(a)){if(!(i[a.name]||f)(n))return this;r=o[a.name]}else if(!(r=t(a,e))||r===a||!E(r,n))return this;return r[n]}return this});var a=["constructor","toString","valueOf"],s={Array:["indexOf","join","lastIndexOf","slice"].concat(a),Boolean:a,Number:["toExponential","toFixed","toPrecision"].concat(a),RegExp:["test"].concat(a),String:["charAt","charCodeAt","concat","indexOf","italics","lastIndexOf","match","replace","search","slice","split","substr","substring","trim"].concat(a)};n(s);var u={Array:["isArray"],Math:["abs","acos","asin","atan","ceil","cos","exp","floor","log","round","sin","sqrt","tan","atan2","pow","max","min"],Number:["isFinite","isNaN"],String:["fromCharCode"]};n(u),e(Ke,function(e){var n=this.expression;if(e.option("unsafe")&&n instanceof We){var r=n.property;if(r instanceof ie&&(r=t(r,e))===n.property)return this;var i,a=n.expression;if(S(a)){if(!(u[a.name]||f)(r))return this;i=o[a.name]}else if((i=t(a,e))===a||!(i&&s[i.constructor.name]||f)(r))return this;for(var l=[],c=0,p=this.args.length;c=":return o.operator="<",o;case">":return o.operator="<=",o}switch(i){case"==":return o.operator="!=",o;case"!=":return o.operator="==",o;case"===":return o.operator="!==",o;case"!==":return o.operator="===",o;case"&&":return o.operator="||",o.left=o.left.negate(e,r),o.right=o.right.negate(e),n(this,o,r);case"||":return o.operator="&&",o.left=o.left.negate(e,r),o.right=o.right.negate(e),n(this,o,r)}return t(this)})}(function(e,t){e.DEFMETHOD("negate",function(e,n){return t.call(this,e,n)})}),Ke.DEFMETHOD("has_pure_annotation",function(e){if(!e.option("side_effects"))return!1;if(void 0!==this.pure)return this.pure;var t,n,r=!1;return this.start&&(t=this.start.comments_before)&&t.length&&(n=o(function(e){return/[@#]__PURE__/.test(e.value)},t))&&(r=n),this.pure=r});var Y=y("Boolean decodeURI decodeURIComponent Date encodeURI encodeURIComponent Error escape EvalError isFinite isNaN Number Object parseFloat parseInt RangeError ReferenceError String SyntaxError TypeError unescape URIError");Ke.DEFMETHOD("is_expr_pure",function(e){if(e.option("unsafe")){var t=this.expression;if(S(t)&&Y(t.name))return!0}return this.has_pure_annotation(e)||!e.pure_funcs(this)}),function(e){function t(e,t){for(var n=e.length;--n>=0;)if(e[n].has_side_effects(t))return!0;return!1}e(ie,p),e(pe,f),e(Et,f),e(wt,f),e(Ke,function(e){if(!this.is_expr_pure(e))return!0;for(var t=this.args.length;--t>=0;)if(this.args[t].has_side_effects(e))return!0;return!1}),e(ce,function(e){return t(this.body,e)}),e(Ue,function(e){return this.expression.has_side_effects(e)||t(this.body,e)}),e(qe,function(e){return this.expression.has_side_effects(e)||t(this.body,e)}),e(ze,function(e){return t(this.body,e)||this.bcatch&&this.bcatch.has_side_effects(e)||this.bfinally&&this.bfinally.has_side_effects(e)}),e(Me,function(e){return this.condition.has_side_effects(e)||this.body&&this.body.has_side_effects(e)||this.alternative&&this.alternative.has_side_effects(e)}),e(de,function(e){return this.body.has_side_effects(e)}),e(le,function(e){return this.body.has_side_effects(e)}),e(Oe,p),e(ke,f),e(tt,function(e){return this.left.has_side_effects(e)||this.right.has_side_effects(e)}),e(rt,p),e(nt,function(e){return this.condition.has_side_effects(e)||this.consequent.has_side_effects(e)||this.alternative.has_side_effects(e)}),e(Je,function(e){return H(this.operator)||this.expression.has_side_effects(e)}),e(yt,function(e){return!this.is_declared(e)}),e(pt,f),e(it,function(e){return t(this.properties,e)}),e(at,function(e){return this.value.has_side_effects(e)}),e(ot,function(e){return t(this.elements,e)}),e(Qe,function(e){return this.expression.may_throw_on_access(e)||this.expression.has_side_effects(e)}),e(Ze,function(e){return this.expression.may_throw_on_access(e)||this.expression.has_side_effects(e)||this.property.has_side_effects(e)}),e(Ye,function(e){return this.expressions.some(function(t,n){return t.has_side_effects(e)})})}(function(e,t){e.DEFMETHOD("has_side_effects",t)}),function(e){function t(e){for(var t=e.length;--t>=0;)if(!e[t].is_constant_expression())return!1;return!0}e(ie,f),e(Et,p),e(Je,function(){return this.expression.is_constant_expression()}),e(tt,function(){return this.left.is_constant_expression()&&this.right.is_constant_expression()}),e(ot,function(){return t(this.elements)}),e(it,function(){return t(this.properties)}),e(at,function(){return this.value.is_constant_expression()})}(function(e,t){e.DEFMETHOD("is_constant_expression",t)}),function(e){function t(){var e=this.body.length;return e>0&&N(this.body[e-1])}e(ae,d),e(Se,h),e(fe,t),e(Ne,t),e(Me,function(){return this.alternative&&N(this.body)&&N(this.alternative)&&this})}(function(e,t){e.DEFMETHOD("aborts",t)}),e(ue,function(e,t){return t.has_directive(e.value)!==e?i(pe,e):e}),e(se,function(e,t){return t.option("drop_debugger")?i(pe,e):e}),e(de,function(e,t){return e.body instanceof Fe&&t.loopcontrol_target(e.body)===e.body?i(pe,e):0==e.label.references.length?e.body:e}),e(ce,function(e,t){return B(e.body,t),e}),e(fe,function(e,t){switch(B(e.body,t),e.body.length){case 1:return e.body[0];case 0:return i(pe,e)}return e}),Ee.DEFMETHOD("drop_unused",function(e){if(e.option("unused")&&!e.has_directive("use asm")){var t=this;if(!t.uses_eval&&!t.uses_with){var n=!(t instanceof Ae)||e.toplevel.funcs,r=!(t instanceof Ae)||e.toplevel.vars;if(n||r){var o=/keep_assign/.test(e.option("unused"))?f:function(e){return e instanceof rt&&(e.write_only||"="==e.operator)?e.left:e instanceof Je&&e.write_only?e.expression:void 0},s=[],c=Object.create(null);t instanceof Ae&&e.top_retain&&t.variables.each(function(t){!e.top_retain(t)||t.id in c||(c[t.id]=!0,s.push(t))});var p=new w,h=new w,d=this,m=new k(function(i,a){if(i!==t){if(i instanceof Oe)return n||d!==t||(u=i.name.definition()).id in c||(c[u.id]=!0,s.push(u)),h.add(i.name.name,i),!0;if(i instanceof Ve&&d===t)return i.definitions.forEach(function(t){var n=t.name.definition();t.name instanceof ht&&p.add(n.id,t),r||n.id in c||(c[n.id]=!0,s.push(n)),t.value&&(h.add(t.name.name,t.value),t.value.has_side_effects(e)&&t.value.walk(m))}),!0;if(o(i)instanceof yt&&d===t)return i instanceof rt&&i.right.walk(m),!0;if(i instanceof yt){var u=i.definition();return u.id in c||(c[u.id]=!0,s.push(u)),!0}if(i instanceof Ee){var l=d;return d=i,a(),d=l,!0}}});t.walk(m);for(var g=0;g1)||(s.name=null)),s instanceof xe&&!(s instanceof Ce))for(var m=!e.option("keep_fargs"),g=s.argnames,_=g.length;--_>=0;){var w=g[_];w.definition().id in c?m=!1:(w.__unused=!0,m&&(g.pop(),e[w.unreferenced()?"warn":"info"]("Dropping unused function argument {name} [{file}:{line},{col}]",d(w))))}if(n&&s instanceof Oe&&s!==t)return s.name.definition().id in c?s:(e[s.name.unreferenced()?"warn":"info"]("Dropping unused function {name} [{file}:{line},{col}]",d(s.name)),i(pe,s));if(r&&s instanceof Ve&&!(y.parent()instanceof _e&&y.parent().init===s)){var E=[],A=[],x=[],C=[];if(s.definitions.forEach(function(t){t.value&&(t.value=t.value.transform(y));var n=t.name.definition();if(n.id in c){if(t.name instanceof ht){var r=p.get(n.id);if(r.length>1&&!t.value)return e.warn("Dropping duplicated definition of variable {name} [{file}:{line},{col}]",d(t.name)),v(r,t),void v(n.orig,t.name)}t.value?(C.length>0&&(x.length>0?(l(C,t.value),t.value=a(t.value,C)):E.push(i(le,s,{body:a(s,C)})),C=[]),x.push(t)):A.push(t)}else if(n.orig[0]instanceof vt)(o=t.value&&t.value.drop_side_effect_free(e))&&l(C,o),t.value=null,A.push(t);else{var o=t.value&&t.value.drop_side_effect_free(e);o?(e.warn("Side effects in initialization of unused variable {name} [{file}:{line},{col}]",d(t.name)),l(C,o)):e[t.name.unreferenced()?"warn":"info"]("Dropping unused variable {name} [{file}:{line},{col}]",d(t.name)),v(n.orig,t.name)}}),0==A.length&&1==x.length&&x[0].name instanceof ht){var k=p.get(x[0].name.definition().id);if(k.length>1){var O=x.pop();e.warn("Converting duplicated definition of variable {name} to assignment [{file}:{line},{col}]",d(O.name)),v(k,O),v(O.name.definition().orig,O.name),C.unshift(i(rt,O,{operator:"=",left:i(yt,O.name,O.name),right:O.value}))}}switch((A.length>0||x.length>0)&&(s.definitions=A.concat(x),E.push(s)),C.length>0&&E.push(i(le,s,{body:a(s,C)})),E.length){case 0:return h?re.skip:i(pe,s);case 1:return E[0];default:return h?re.splice(E):i(fe,s,{body:E})}}if(r&&(O=o(s))instanceof yt&&!((O=O.definition()).id in c)&&t.variables.get(O.name)===O)return s instanceof rt?u(y.parent(),s,s.right.transform(y)):i(xt,s,{value:0});if(s instanceof ye){f(s,this);return s.init instanceof fe&&(S=s.init,s.init=S.body.pop(),S.body.push(s)),s.init instanceof le?s.init=s.init.body:b(s.init)&&(s.init=null),S?h?re.splice(S.body):S:s}if(s instanceof de&&s.body instanceof ye){if(f(s,this),s.body instanceof fe){var S=s.body;return s.body=S.body.pop(),S.body.push(s),h?re.splice(S.body):S}return s}return s instanceof Ee&&s!==t?s:void 0});t.transform(y)}}}}),Ee.DEFMETHOD("hoist_declarations",function(e){var t=this;if(e.has_directive("use asm"))return t;var n=e.option("hoist_funs"),r=e.option("hoist_vars");if(n||r){var s=[],u=[],l=new w,c=0,f=0;t.walk(new k(function(e){return e instanceof Ee&&e!==t||(e instanceof $e?(++f,!0):void 0)})),r=r&&f>1;var p=new V(function(o){if(o!==t){if(o instanceof ue)return s.push(o),i(pe,o);if(n&&o instanceof Oe&&(p.parent()===t||!e.has_directive("use strict")))return u.push(o),i(pe,o);if(r&&o instanceof $e){o.definitions.forEach(function(e){l.set(e.name.name,e),++c});var a=o.to_assignments(e),f=p.parent();if(f instanceof _e&&f.init===o){if(null==a){var h=o.definitions[0].name;return i(yt,h,h)}return a}return f instanceof ye&&f.init===o?a:a?i(le,o,{body:a}):i(pe,o)}if(o instanceof Ee)return o}});if(t=t.transform(p),c>0){var h=[];if(l.each(function(e,n){t instanceof xe&&o(function(t){return t.name==e.name.name},t.argnames)?l.del(n):((e=e.clone()).value=null,h.push(e),l.set(n,e))}),h.length>0){for(;00&&(f[0].body=c.concat(f[0].body)),e.body=f;r=f[f.length-1];){var v=r.body[r.body.length-1];if(v instanceof Fe&&t.loopcontrol_target(v)===e&&r.body.pop(),r.body.length||r instanceof qe&&(u||r.expression.has_side_effects(t)))break;f.pop()===u&&(u=null)}if(0==f.length)return i(fe,e,{body:c.concat(i(le,e.expression,{body:e.expression}))}).optimize(t);if(1==f.length&&(f[0]===l||f[0]===u)){var b=!1,y=new k(function(t){if(b||t instanceof xe||t instanceof le)return!0;t instanceof Fe&&y.loopcontrol_target(t)===e&&(b=!0)});if(e.walk(y),!b)return(f=f[0].body.slice()).unshift(i(le,e.expression,{body:e.expression})),i(fe,e,{body:f}).optimize(t)}return e}),e(ze,function(e,t){if(B(e.body,t),e.bcatch&&e.bfinally&&_(e.bfinally.body,b)&&(e.bfinally=null),_(e.body,b)){var n=[];return e.bcatch&&D(t,e.bcatch,n),e.bfinally&&(n=n.concat(e.bfinally.body)),i(fe,e,{body:n}).optimize(t)}return e}),Ve.DEFMETHOD("remove_initializers",function(){this.definitions.forEach(function(e){e.value=null})}),Ve.DEFMETHOD("to_assignments",function(e){var t=e.option("reduce_vars"),n=this.definitions.reduce(function(e,n){if(n.value){var r=i(yt,n.name,n.name);e.push(i(rt,n,{operator:"=",left:r,right:n.value})),t&&(r.definition().fixed=!1)}return v(n.name.definition().orig,n.name),e},[]);return 0==n.length?null:a(this,n)}),e(Ve,function(e,t){return 0==e.definitions.length?i(pe,e):e}),e(Ke,function(e,t){var n=e.expression,r=n;if(t.option("unused")&&(r instanceof ke||t.option("reduce_vars")&&r instanceof yt&&(r=r.fixed_value())instanceof ke)&&!r.uses_arguments&&!r.uses_eval){for(var o=0,u=0,l=0,c=e.args.length;l=r.argnames.length;if(f||r.argnames[l].__unused){if(g=e.args[l].drop_side_effect_free(t))e.args[o++]=g;else if(!f){e.args[o++]=i(xt,e.args[l],{value:0});continue}}else e.args[o++]=e.args[l];u=o}e.args.length=u}if(t.option("unsafe"))if(S(n))switch(n.name){case"Array":if(1!=e.args.length)return i(ot,e,{elements:e.args}).optimize(t);break;case"Object":if(0==e.args.length)return i(it,e,{properties:[]});break;case"String":if(0==e.args.length)return i(At,e,{value:""});if(e.args.length<=1)return i(tt,e,{left:e.args[0],operator:"+",right:i(At,e,{value:""})}).optimize(t);break;case"Number":if(0==e.args.length)return i(xt,e,{value:0});if(1==e.args.length)return i(Xe,e,{expression:e.args[0],operator:"+"}).optimize(t);case"Boolean":if(0==e.args.length)return i(Ft,e);if(1==e.args.length)return i(Xe,e,{expression:i(Xe,e,{expression:e.args[0],operator:"!"}),operator:"!"}).optimize(t)}else{if(n instanceof Qe&&"toString"==n.property&&0==e.args.length)return i(tt,e,{left:i(At,e,{value:""}),operator:"+",right:n.expression}).optimize(t);if(n instanceof Qe&&n.expression instanceof ot&&"join"==n.property){var p;if(!(e.args.length>0&&(p=e.args[0].evaluate(t))===e.args[0])){var h=[],d=[];if(n.expression.elements.forEach(function(n){var r=n.evaluate(t);r!==n?d.push(r):(d.length>0&&(h.push(i(At,e,{value:d.join(p)})),d.length=0),h.push(n))}),d.length>0&&h.push(i(At,e,{value:d.join(p)})),0==h.length)return i(At,e,{value:""});if(1==h.length)return h[0].is_string(t)?h[0]:i(tt,h[0],{operator:"+",left:i(At,e,{value:""}),right:h[0]});if(""==p){var m;return m=h[0].is_string(t)||h[1].is_string(t)?h.shift():i(At,e,{value:""}),h.reduce(function(e,t){return i(tt,t,{operator:"+",left:e,right:t})},m).optimize(t)}var g=e.clone();return g.expression=g.expression.clone(),g.expression.expression=g.expression.expression.clone(),g.expression.expression.elements=h,M(t,e,g)}}else if(n instanceof Qe&&n.expression.is_string(t)&&"charAt"==n.property){var v=e.args[0],y=v?v.evaluate(t):0;if(y!==v)return i(Ze,n,{expression:n.expression,property:s(0|y,v||n)}).optimize(t)}}if(t.option("unsafe_Func")&&S(n)&&"Function"==n.name){if(0==e.args.length)return i(ke,e,{argnames:[],body:[]});if(_(e.args,function(e){return e instanceof At}))try{var w=j(C="n(function("+e.args.slice(0,-1).map(function(e){return e.value}).join(",")+"){"+e.args[e.args.length-1].value+"})"),E={ie8:t.option("ie8")};w.figure_out_scope(E);var A=new G(t.options);(w=w.transform(A)).figure_out_scope(E),en.reset(),w.compute_char_frequency(E),w.mangle_names(E);var x;w.walk(new k(function(e){return!!x||(e instanceof xe?(x=e,!0):void 0)}));var C=K();return fe.prototype._codegen.call(x,x,C),e.args=[i(At,e,{value:x.argnames.map(function(e){return e.print_to_string()}).join(",")}),i(At,e.args[e.args.length-1],{value:C.get().replace(/^\{|\}$/g,"")})],e}catch(n){if(!(n instanceof P))throw n;t.warn("Error parsing code passed to new Function [{file}:{line},{col}]",e.args[e.args.length-1].start),t.warn(n.toString())}}var B=r instanceof ke&&r.body[0];if(t.option("inline")&&B instanceof De&&(!(D=B.value)||D.is_constant_expression())){R=e.args.concat(D||i(Bt,e));return a(e,R).optimize(t)}if(n instanceof ke){if(t.option("inline")&&!n.name&&!n.uses_arguments&&!n.uses_eval&&1==n.body.length&&_(n.argnames,function(e){return e.__unused})&&!e.has_pure_annotation(t)){var D;if(B instanceof De?D=B.value:B instanceof le&&(D=i(Xe,B,{operator:"void",expression:B.body})),D){var T=new k(function(e){if(!D)return!0;if(e instanceof yt){var t=e.scope.find_variable(e);if(t&&t.scope.parent_scope===r.parent_scope)return D=null,!0}return e instanceof wt&&!T.find_parent(Ee)?(D=null,!0):void 0});D.walk(T)}if(D){R=e.args.concat(D);return a(e,R).optimize(t)}}if(t.option("side_effects")&&_(n.body,b)){var R=e.args.concat(i(Bt,e));return a(e,R).optimize(t)}}if(t.option("drop_console")&&n instanceof We){for(var F=n.expression;F.expression;)F=F.expression;if(S(F)&&"console"==F.name)return i(Bt,e).optimize(t)}if(t.option("negate_iife")&&t.parent()instanceof le&&O(e))return e.negate(t,!0);var L=e.evaluate(t);return L!==e?(L=s(L,e).optimize(t),M(t,L,e)):e}),e(Ge,function(e,t){if(t.option("unsafe")){var n=e.expression;if(S(n))switch(n.name){case"Object":case"RegExp":case"Function":case"Error":case"Array":return i(Ke,e,e).transform(t)}}return e}),e(Ye,function(e,n){if(!n.option("side_effects"))return e;var r=[];!function(){var t=A(n),o=e.expressions.length-1;e.expressions.forEach(function(e,i){i0&&T(r[o],n);)o--;o0&&n.option("cascade")&&function(){for(var e=0,a=1;a<=o;a++){var s=r[e],u=r[a];if((s=s instanceof rt&&!s.left.has_side_effects(n)?s.left:s instanceof Je&&("++"==s.operator||"--"==s.operator)?s.expression:null)&&!t(s)){var l,c=null;for(r[a]=u=u.clone();;){if(u.equivalent_to(s)){var f=r[e];f instanceof et?f=i(Xe,f,{operator:f.operator,expression:s}):f.write_only=!1,c?(c[l]=f,r[e]=r[a]):r[e]=f;break}if(u instanceof tt&&!(u instanceof rt))if(u.left.is_constant()){if("||"==u.operator||"&&"==u.operator){r[++e]=r[a];break}l="right"}else l="left";else if(u instanceof Ke&&!(s instanceof We&&u.expression.equivalent_to(s))||u instanceof We||u instanceof Je&&!H(u.operator))l="expression";else{if(!(u instanceof nt)){r[++e]=r[a];break}l="condition"}c=u,u=u[l]=u[l].clone()}}else r[++e]=u}o=e,r.length=o+1}(),0==o?((e=u(n.parent(),e,r[0]))instanceof Ye||(e=e.optimize(n)),e):(e.expressions=r,e)}),Je.DEFMETHOD("lift_sequences",function(e){if(e.option("sequences")&&this.expression instanceof Ye){var t=this.expression.expressions.slice(),n=this.clone();return n.expression=t.pop(),t.push(n),a(this,t).optimize(e)}return this}),e(et,function(e,t){return e.lift_sequences(t)}),e(Xe,function(e,t){var n=e.expression;if("delete"==e.operator&&!(n instanceof yt||n instanceof We||n instanceof St||n instanceof Tt||n instanceof Bt))return n instanceof Ye?((n=n.expressions.slice()).push(i(Lt,e)),a(e,n).optimize(t)):a(e,[n,i(Lt,e)]).optimize(t);var r=e.lift_sequences(t);if(r!==e)return r;if(t.option("side_effects")&&"void"==e.operator)return(n=n.drop_side_effect_free(t))?(e.expression=n,e):i(Bt,e).optimize(t);if(t.option("booleans")&&t.in_boolean_context())switch(e.operator){case"!":if(n instanceof Xe&&"!"==n.operator)return n.expression;n instanceof tt&&(e=M(t,e,n.negate(t,A(t))));break;case"typeof":return t.warn("Boolean expression always true [{file}:{line},{col}]",e.start),(n instanceof yt?i(Lt,e):a(e,[n,i(Lt,e)])).optimize(t)}if("-"==e.operator&&n instanceof Tt&&(n=n.transform(t)),n instanceof tt&&("+"==e.operator||"-"==e.operator)&&("*"==n.operator||"/"==n.operator||"%"==n.operator))return i(tt,e,{operator:n.operator,left:i(Xe,n.left,{operator:e.operator,expression:n.left}),right:n.right});if("-"!=e.operator||!(n instanceof xt||n instanceof Tt)){var o=e.evaluate(t);if(o!==e)return o=s(o,e).optimize(t),M(t,o,e)}return e}),tt.DEFMETHOD("lift_sequences",function(e){if(e.option("sequences")){if(this.left instanceof Ye){var t=this.left.expressions.slice();return(i=this.clone()).left=t.pop(),t.push(i),a(this,t).optimize(e)}if(this.right instanceof Ye&&!this.left.has_side_effects(e)){for(var n="="==this.operator&&this.left instanceof yt,r=(t=this.right.expressions).length-1,o=0;o0){var i=this.clone();return i.right=a(this.right,t.slice(o)),(t=t.slice(0,o)).push(i),a(this,t).optimize(e)}}}return this});var W=y("== === != !== * & | ^");e(tt,function(e,t){function n(){return e.left.is_constant()||e.right.is_constant()||!e.left.has_side_effects(t)&&!e.right.has_side_effects(t)}function r(t){if(n()){t&&(e.operator=t);var r=e.left;e.left=e.right,e.right=r}}if(W(e.operator)&&e.right.is_constant()&&!e.left.is_constant()&&(e.left instanceof tt&&Jt[e.left.operator]>=Jt[e.operator]||r()),e=e.lift_sequences(t),t.option("comparisons"))switch(e.operator){case"===":case"!==":(e.left.is_string(t)&&e.right.is_string(t)||e.left.is_number(t)&&e.right.is_number(t)||e.left.is_boolean()&&e.right.is_boolean())&&(e.operator=e.operator.substr(0,2));case"==":case"!=":if(t.option("typeofs")&&e.left instanceof At&&"undefined"==e.left.value&&e.right instanceof Xe&&"typeof"==e.right.operator){var o=e.right.expression;(o instanceof yt?!o.is_declared(t):o instanceof We&&t.option("ie8"))||(e.right=o,e.left=i(Bt,e.left).optimize(t),2==e.operator.length&&(e.operator+="="))}}if(t.option("booleans")&&"+"==e.operator&&t.in_boolean_context()){var l=e.left.evaluate(t),c=e.right.evaluate(t);if(l&&"string"==typeof l)return t.warn("+ in boolean context always true [{file}:{line},{col}]",e.start),a(e,[e.right,i(Lt,e)]).optimize(t);if(c&&"string"==typeof c)return t.warn("+ in boolean context always true [{file}:{line},{col}]",e.start),a(e,[e.left,i(Lt,e)]).optimize(t)}if(t.option("comparisons")&&e.is_boolean()){if(!(t.parent()instanceof tt)||t.parent()instanceof rt){var f=i(Xe,e,{operator:"!",expression:e.negate(t,A(t))});e=M(t,e,f)}if(t.option("unsafe_comps"))switch(e.operator){case"<":r(">");break;case"<=":r(">=")}}if("+"==e.operator){if(e.right instanceof At&&""==e.right.getValue()&&e.left.is_string(t))return e.left;if(e.left instanceof At&&""==e.left.getValue()&&e.right.is_string(t))return e.right;if(e.left instanceof tt&&"+"==e.left.operator&&e.left.left instanceof At&&""==e.left.left.getValue()&&e.right.is_string(t))return e.left=e.left.right,e.transform(t)}if(t.option("evaluate")){switch(e.operator){case"&&":if(!(l=e.left.evaluate(t)))return t.warn("Condition left of && always false [{file}:{line},{col}]",e.start),u(t.parent(),e,e.left).optimize(t);if(l!==e.left)return t.warn("Condition left of && always true [{file}:{line},{col}]",e.start),u(t.parent(),e,e.right).optimize(t);if(t.option("booleans")&&t.in_boolean_context()){if(!(c=e.right.evaluate(t)))return t.warn("Boolean && always false [{file}:{line},{col}]",e.start),a(e,[e.left,i(Ft,e)]).optimize(t);if(c!==e.right)return t.warn("Dropping side-effect-free && in boolean context [{file}:{line},{col}]",e.start),e.left.optimize(t)}break;case"||":if(!(l=e.left.evaluate(t)))return t.warn("Condition left of || always false [{file}:{line},{col}]",e.start),u(t.parent(),e,e.right).optimize(t);if(l!==e.left)return t.warn("Condition left of || always true [{file}:{line},{col}]",e.start),u(t.parent(),e,e.left).optimize(t);if(t.option("booleans")&&t.in_boolean_context()){if(!(c=e.right.evaluate(t)))return t.warn("Dropping side-effect-free || in boolean context [{file}:{line},{col}]",e.start),e.left.optimize(t);if(c!==e.right)return t.warn("Boolean || always true [{file}:{line},{col}]",e.start),a(e,[e.left,i(Lt,e)]).optimize(t)}}var p=!0;switch(e.operator){case"+":if(e.left instanceof Et&&e.right instanceof tt&&"+"==e.right.operator&&e.right.left instanceof Et&&e.right.is_string(t)&&(e=i(tt,e,{operator:"+",left:i(At,e.left,{value:""+e.left.getValue()+e.right.left.getValue(),start:e.left.start,end:e.right.left.end}),right:e.right.right})),e.right instanceof Et&&e.left instanceof tt&&"+"==e.left.operator&&e.left.right instanceof Et&&e.left.is_string(t)&&(e=i(tt,e,{operator:"+",left:e.left.left,right:i(At,e.right,{value:""+e.left.right.getValue()+e.right.getValue(),start:e.left.right.start,end:e.right.end})})),e.left instanceof tt&&"+"==e.left.operator&&e.left.is_string(t)&&e.left.right instanceof Et&&e.right instanceof tt&&"+"==e.right.operator&&e.right.left instanceof Et&&e.right.is_string(t)&&(e=i(tt,e,{operator:"+",left:i(tt,e.left,{operator:"+",left:e.left.left,right:i(At,e.left.right,{value:""+e.left.right.getValue()+e.right.left.getValue(),start:e.left.right.start,end:e.right.left.end})}),right:e.right.right})),e.right instanceof Xe&&"-"==e.right.operator&&e.left.is_number(t)){e=i(tt,e,{operator:"-",left:e.left,right:e.right.expression});break}if(e.left instanceof Xe&&"-"==e.left.operator&&n()&&e.right.is_number(t)){e=i(tt,e,{operator:"-",left:e.right,right:e.left.expression});break}case"*":p=t.option("unsafe_math");case"&":case"|":case"^":if(e.left.is_number(t)&&e.right.is_number(t)&&n()&&!(e.left instanceof tt&&e.left.operator!=e.operator&&Jt[e.left.operator]>=Jt[e.operator])){var h=i(tt,e,{operator:e.operator,left:e.right,right:e.left});e=e.right instanceof Et&&!(e.left instanceof Et)?M(t,h,e):M(t,e,h)}p&&e.is_number(t)&&(e.right instanceof tt&&e.right.operator==e.operator&&(e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:e.left,right:e.right.left,start:e.left.start,end:e.right.left.end}),right:e.right.right})),e.right instanceof Et&&e.left instanceof tt&&e.left.operator==e.operator&&(e.left.left instanceof Et?e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:e.left.left,right:e.right,start:e.left.left.start,end:e.right.end}),right:e.left.right}):e.left.right instanceof Et&&(e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:e.left.right,right:e.right,start:e.left.right.start,end:e.right.end}),right:e.left.left}))),e.left instanceof tt&&e.left.operator==e.operator&&e.left.right instanceof Et&&e.right instanceof tt&&e.right.operator==e.operator&&e.right.left instanceof Et&&(e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:i(tt,e.left.left,{operator:e.operator,left:e.left.right,right:e.right.left,start:e.left.right.start,end:e.right.left.end}),right:e.left.left}),right:e.right.right})))}}if(e.right instanceof tt&&e.right.operator==e.operator&&("&&"==e.operator||"||"==e.operator||"+"==e.operator&&(e.right.left.is_string(t)||e.left.is_string(t)&&e.right.right.is_string(t))))return e.left=i(tt,e.left,{operator:e.operator,left:e.left,right:e.right.left}),e.right=e.right.right,e.transform(t);var d=e.evaluate(t);return d!==e?(d=s(d,e).optimize(t),M(t,d,e)):e}),e(yt,function(e,t){var n=e.resolve_defines(t);if(n)return n.optimize(t);if(!t.option("ie8")&&S(e)&&(!e.scope.uses_with||!t.find_parent(we)))switch(e.name){case"undefined":return i(Bt,e).optimize(t);case"NaN":return i(St,e).optimize(t);case"Infinity":return i(Tt,e).optimize(t)}if(t.option("reduce_vars")&&R(e,t.parent())!==e){var r=e.definition(),o=e.fixed_value();if(o instanceof Oe&&(r.fixed=o=i(ke,o,o)),t.option("unused")&&o instanceof ke&&1==r.references.length&&!(r.scope.uses_arguments&&r.orig[0]instanceof dt)&&!r.scope.uses_eval&&t.find_parent(Ee)===o.parent_scope)return o.clone(!0);if(t.option("evaluate")&&o){if(void 0===r.should_replace){var a=o.evaluate(t);if(a===o||!t.option("unsafe_regexp")&&a instanceof RegExp)r.should_replace=!1;else{var u,l=(a=s(a,o)).optimize(t).print_to_string().length;!function(e){var t;return e.walk(new k(function(e){if(e instanceof yt&&(t=!0),t)return!0})),t}(o)?(l=Math.min(l,o.print_to_string().length),u=function(){var e=F(a.optimize(t),o);return e===a||e===o?e.clone(!0):e}):u=function(){var e=a.optimize(t);return e===a?e.clone(!0):e};var c=r.name.length,f=0;t.option("unused")&&!t.exposed(r)&&(f=(c+2+l)/r.references.length),r.should_replace=l<=c+f&&u}}if(r.should_replace)return r.should_replace()}}return e}),e(Bt,function(e,t){if(t.option("unsafe")){var r=n(t,"undefined");if(r){var o=i(yt,e,{name:"undefined",scope:r.scope,thedef:r});return o.is_undefined=!0,o}}var a=R(t.self(),t.parent());return a&&z(a,e)?e:i(Xe,e,{operator:"void",expression:i(xt,e,{value:0})})}),e(Tt,function(e,t){var r=R(t.self(),t.parent());return r&&z(r,e)?e:!t.option("keep_infinity")||r&&!z(r,e)||n(t,"Infinity")?i(tt,e,{operator:"/",left:i(xt,e,{value:1}),right:i(xt,e,{value:0})}):e}),e(St,function(e,t){var r=R(t.self(),t.parent());return r&&!z(r,e)||n(t,"NaN")?i(tt,e,{operator:"/",left:i(xt,e,{value:0}),right:i(xt,e,{value:0})}):e});var Q=["+","-","/","*","%",">>","<<",">>>","|","^","&"],Z=["*","|","^","&"];e(rt,function(e,t){return"="==(e=e.lift_sequences(t)).operator&&e.left instanceof yt&&e.right instanceof tt&&(e.right.left instanceof yt&&e.right.left.name==e.left.name&&r(e.right.operator,Q)?(e.operator=e.right.operator+"=",e.right=e.right.right):e.right.right instanceof yt&&e.right.right.name==e.left.name&&r(e.right.operator,Z)&&!e.right.left.has_side_effects(t)&&(e.operator=e.right.operator+"=",e.right=e.right.left)),e}),e(nt,function(e,t){function n(e){return e.is_boolean()?e:i(Xe,e,{operator:"!",expression:e.negate(t)})}function r(e){return e instanceof Lt||e instanceof Xe&&"!"==e.operator&&e.expression instanceof Et&&!e.expression.value}function o(e){return e instanceof Ft||e instanceof Xe&&"!"==e.operator&&e.expression instanceof Et&&!!e.expression.value}if(!t.option("conditionals"))return e;if(e.condition instanceof Ye){var s=e.condition.expressions.slice();return e.condition=s.pop(),s.push(e),a(e,s)}var l=e.condition.evaluate(t);if(l!==e.condition)return l?(t.warn("Condition always true [{file}:{line},{col}]",e.start),u(t.parent(),e,e.consequent)):(t.warn("Condition always false [{file}:{line},{col}]",e.start),u(t.parent(),e,e.alternative));var c=l.negate(t,A(t));M(t,l,c)===c&&(e=i(nt,e,{condition:c,consequent:e.alternative,alternative:e.consequent}));var f=e.condition,p=e.consequent,h=e.alternative;return f instanceof yt&&p instanceof yt&&f.definition()===p.definition()?i(tt,e,{operator:"||",left:f,right:h}):p instanceof rt&&h instanceof rt&&p.operator==h.operator&&p.left.equivalent_to(h.left)&&(!e.condition.has_side_effects(t)||"="==p.operator&&!p.left.has_side_effects(t))?i(rt,e,{operator:p.operator,left:p.left,right:i(nt,e,{condition:e.condition,consequent:p.right,alternative:h.right})}):p instanceof Ke&&h.TYPE===p.TYPE&&1==p.args.length&&1==h.args.length&&p.expression.equivalent_to(h.expression)&&!p.expression.has_side_effects(t)?(p.args[0]=i(nt,e,{condition:e.condition,consequent:p.args[0],alternative:h.args[0]}),p):p instanceof nt&&p.alternative.equivalent_to(h)?i(nt,e,{condition:i(tt,e,{left:e.condition,operator:"&&",right:p.condition}),consequent:p.consequent,alternative:h}):p.equivalent_to(h)?a(e,[e.condition,p]).optimize(t):r(e.consequent)?o(e.alternative)?n(e.condition):i(tt,e,{operator:"||",left:n(e.condition),right:e.alternative}):o(e.consequent)?r(e.alternative)?n(e.condition.negate(t)):i(tt,e,{operator:"&&",left:n(e.condition.negate(t)),right:e.alternative}):r(e.alternative)?i(tt,e,{operator:"||",left:n(e.condition.negate(t)),right:e.consequent}):o(e.alternative)?i(tt,e,{operator:"&&",left:n(e.condition),right:e.consequent}):e}),e(Rt,function(e,t){if(t.option("booleans")){var n=t.parent();return n instanceof tt&&("=="==n.operator||"!="==n.operator)?(t.warn("Non-strict equality against boolean: {operator} {value} [{file}:{line},{col}]",{operator:n.operator,value:e.value,file:n.start.file,line:n.start.line,col:n.start.col}),i(xt,e,{value:+e.value})):i(Xe,e,{operator:"!",expression:i(xt,e,{value:1-e.value})})}return e}),e(Ze,function(e,t){var n=e.property;if(n instanceof At&&t.option("properties")){if(n=n.getValue(),U(n))return i(Qe,e,{expression:e.expression,property:n}).optimize(t);var r=parseFloat(n);isNaN(r)||r.toString()!=n||(e.property=i(xt,e.property,{value:r}))}var o=e.evaluate(t);return o!==e?(o=s(o,e).optimize(t),M(t,o,e)):e}),xe.DEFMETHOD("contains_this",function(){var e,t=this;return t.walk(new k(function(n){return!!e||(n instanceof wt?e=!0:n!==t&&n instanceof Ee||void 0)})),e}),e(Qe,function(e,t){var n=e.resolve_defines(t);if(n)return n.optimize(t);if(t.option("unsafe")&&e.expression instanceof it)for(var r=e.expression.properties,o=r.length;--o>=0;)if(r[o].key===e.property){var u=r[o].value;if(u instanceof ke?!u.contains_this():!u.has_side_effects(t)){var l=e.expression.clone();return l.properties=l.properties.slice(),l.properties.splice(o,1),a(e,[l,u]).optimize(t)}}if(t.option("unsafe_proto")&&e.expression instanceof Qe&&"prototype"==e.expression.property){var c=e.expression.expression;if(S(c))switch(c.name){case"Array":e.expression=i(ot,e.expression,{elements:[]});break;case"Object":e.expression=i(it,e.expression,{properties:[]});break;case"String":e.expression=i(At,e.expression,{value:""})}}var f=e.evaluate(t);return f!==e?(f=s(f,e).optimize(t),M(t,f,e)):e}),e(ot,I),e(it,I),e(Ct,I),e(De,function(e,t){return e.value&&T(e.value,t)&&(e.value=null),e}),e(He,function(e,t){var n=t.option("global_defs");return n&&E(n,e.name.name)&&t.warn("global_defs "+e.name.name+" redefined [{file}:{line},{col}]",e.start),e})}(),function(){function e(e){if("Literal"==e.type)return null!=e.raw?e.raw:e.value+""}function n(t){var n=t.loc,r=n&&n.start,o=t.range;return new oe({file:n&&n.source,line:r&&r.line,col:r&&r.column,pos:o?o[0]:t.start,endline:r&&r.line,endcol:r&&r.column,endpos:o?o[0]:t.start,raw:e(t)})}function r(t){var n=t.loc,r=n&&n.end,o=t.range;return new oe({file:n&&n.source,line:r&&r.line,col:r&&r.column,pos:o?o[1]:t.end,endline:r&&r.line,endcol:r&&r.column,endpos:o?o[1]:t.end,raw:e(t)})}function o(e,o,a){var f="function From_Moz_"+e+"(M){\n";f+="return new U2."+o.name+"({\nstart: my_start_token(M),\nend: my_end_token(M)";var h="function To_Moz_"+e+"(M){\n";h+="return {\ntype: "+JSON.stringify(e),a&&a.split(/\s*,\s*/).forEach(function(e){var t=/([a-z0-9$_]+)(=|@|>|%)([a-z0-9$_]+)/i.exec(e);if(!t)throw new Error("Can't understand property map: "+e);var n=t[1],r=t[2],o=t[3];switch(f+=",\n"+o+": ",h+=",\n"+n+": ",r){case"@":f+="M."+n+".map(from_moz)",h+="M."+o+".map(to_moz)";break;case">":f+="from_moz(M."+n+")",h+="to_moz(M."+o+")";break;case"=":f+="M."+n,h+="M."+o;break;case"%":f+="from_moz(M."+n+").body",h+="to_moz_block(M)";break;default:throw new Error("Can't understand operator in propmap: "+e)}}),f+="\n})\n}",h+="\n}\n}",f=new Function("U2","my_start_token","my_end_token","from_moz","return("+f+")")(t,n,r,i),h=new Function("to_moz","to_moz_block","to_moz_scope","return("+h+")")(u,l,c),p[e]=f,s(o,h)}function i(e){h.push(e);var t=null!=e?p[e.type](e):null;return h.pop(),t}function a(e,t,n){var r=e.start,o=e.end;return null!=r.pos&&null!=o.endpos&&(t.range=[r.pos,o.endpos]),r.line&&(t.loc={start:{line:r.line,column:r.col},end:o.endline?{line:o.endline,column:o.endcol}:null},r.file&&(t.loc.source=r.file)),t}function s(e,t){e.DEFMETHOD("to_mozilla_ast",function(){return a(this,t(this))})}function u(e){return null!=e?e.to_mozilla_ast():null}function l(e){return{type:"BlockStatement",body:e.body.map(u)}}function c(e,t){var n=t.body.map(u);return t.body[0]instanceof le&&t.body[0].body instanceof At&&n.unshift(u(new pe(t.body[0]))),{type:e,body:n}}var f=function(e){for(var t=!0,n=0;n1||e.guardedHandlers&&e.guardedHandlers.length)throw new Error("Multiple catch clauses are not supported.");return new ze({start:n(e),end:r(e),body:i(e.block).body,bcatch:i(t[0]),bfinally:e.finalizer?new je(i(e.finalizer)):null})},Property:function(e){var t=e.key,o={start:n(t),end:r(e.value),key:"Identifier"==t.type?t.name:t.value,value:i(e.value)};return"init"==e.kind?new st(o):(o.key=new ft({name:o.key}),o.value=new Ce(o.value),"get"==e.kind?new lt(o):"set"==e.kind?new ut(o):void 0)},ArrayExpression:function(e){return new ot({start:n(e),end:r(e),elements:e.elements.map(function(e){return null===e?new Dt:i(e)})})},ObjectExpression:function(e){return new it({start:n(e),end:r(e),properties:e.properties.map(function(e){return e.type="Property",i(e)})})},SequenceExpression:function(e){return new Ye({start:n(e),end:r(e),expressions:e.expressions.map(i)})},MemberExpression:function(e){return new(e.computed?Ze:Qe)({start:n(e),end:r(e),property:e.computed?i(e.property):e.property.name,expression:i(e.object)})},SwitchCase:function(e){return new(e.test?qe:Pe)({start:n(e),end:r(e),expression:i(e.test),body:e.consequent.map(i)})},VariableDeclaration:function(e){return new $e({start:n(e),end:r(e),definitions:e.declarations.map(i)})},Literal:function(e){var t=e.value,o={start:n(e),end:r(e)};if(null===t)return new Ot(o);switch(typeof t){case"string":return o.value=t,new At(o);case"number":return o.value=t,new xt(o);case"boolean":return new(t?Lt:Ft)(o);default:var i=e.regex;return i&&i.pattern?o.value=new RegExp(i.pattern,i.flags).toString():o.value=e.regex&&e.raw?e.raw:t,new Ct(o)}},Identifier:function(e){var t=h[h.length-2];return new("LabeledStatement"==t.type?bt:"VariableDeclarator"==t.type&&t.id===e?ht:"FunctionExpression"==t.type?t.id===e?gt:dt:"FunctionDeclaration"==t.type?t.id===e?mt:dt:"CatchClause"==t.type?vt:"BreakStatement"==t.type||"ContinueStatement"==t.type?_t:yt)({start:n(e),end:r(e),name:e.name})}};p.UpdateExpression=p.UnaryExpression=function(e){return new(("prefix"in e?e.prefix:"UnaryExpression"==e.type)?Xe:et)({start:n(e),end:r(e),operator:e.operator,expression:i(e.argument)})},o("EmptyStatement",pe),o("BlockStatement",fe,"body@body"),o("IfStatement",Me,"test>condition, consequent>body, alternate>alternative"),o("LabeledStatement",de,"label>label, body>body"),o("BreakStatement",Fe,"label>label"),o("ContinueStatement",Le,"label>label"),o("WithStatement",we,"object>expression, body>body"),o("SwitchStatement",Ue,"discriminant>expression, cases@body"),o("ReturnStatement",De,"argument>value"),o("ThrowStatement",Te,"argument>value"),o("WhileStatement",be,"test>condition, body>body"),o("DoWhileStatement",ve,"test>condition, body>body"),o("ForStatement",ye,"init>init, test>condition, update>step, body>body"),o("ForInStatement",_e,"left>init, right>object, body>body"),o("DebuggerStatement",se),o("VariableDeclarator",He,"id>name, init>value"),o("CatchClause",Ie,"param>argname, body%body"),o("ThisExpression",wt),o("BinaryExpression",tt,"operator=operator, left>left, right>right"),o("LogicalExpression",tt,"operator=operator, left>left, right>right"),o("AssignmentExpression",rt,"operator=operator, left>left, right>right"),o("ConditionalExpression",nt,"test>condition, consequent>consequent, alternate>alternative"),o("NewExpression",Ge,"callee>expression, arguments@args"),o("CallExpression",Ke,"callee>expression, arguments@args"),s(Ae,function(e){return c("Program",e)}),s(Oe,function(e){return{type:"FunctionDeclaration",id:u(e.name),params:e.argnames.map(u),body:c("BlockStatement",e)}}),s(ke,function(e){return{type:"FunctionExpression",id:u(e.name),params:e.argnames.map(u),body:c("BlockStatement",e)}}),s(ue,function(e){return{type:"ExpressionStatement",expression:{type:"Literal",value:e.value}}}),s(le,function(e){return{type:"ExpressionStatement",expression:u(e.body)}}),s(Ne,function(e){return{type:"SwitchCase",test:u(e.expression),consequent:e.body.map(u)}}),s(ze,function(e){return{type:"TryStatement",block:l(e),handler:u(e.bcatch),guardedHandlers:[],finalizer:u(e.bfinally)}}),s(Ie,function(e){return{type:"CatchClause",param:u(e.argname),guard:null,body:l(e)}}),s(Ve,function(e){return{type:"VariableDeclaration",kind:"var",declarations:e.definitions.map(u)}}),s(Ye,function(e){return{type:"SequenceExpression",expressions:e.expressions.map(u)}}),s(We,function(e){var t=e instanceof Ze;return{type:"MemberExpression",object:u(e.expression),computed:t,property:t?u(e.property):{type:"Identifier",name:e.property}}}),s(Je,function(e){return{type:"++"==e.operator||"--"==e.operator?"UpdateExpression":"UnaryExpression",operator:e.operator,prefix:e instanceof Xe,argument:u(e.expression)}}),s(tt,function(e){return{type:"&&"==e.operator||"||"==e.operator?"LogicalExpression":"BinaryExpression",left:u(e.left),operator:e.operator,right:u(e.right)}}),s(ot,function(e){return{type:"ArrayExpression",elements:e.elements.map(u)}}),s(it,function(e){return{type:"ObjectExpression",properties:e.properties.map(u)}}),s(at,function(e){var t,n={type:"Literal",value:e.key instanceof ft?e.key.name:e.key};return e instanceof st?t="init":e instanceof lt?t="get":e instanceof ut&&(t="set"),{type:"Property",kind:t,key:n,value:u(e.value)}}),s(ct,function(e){var t=e.definition();return{type:"Identifier",name:t?t.mangled_name||t.name:e.name}}),s(Ct,function(e){var t=e.value;return{type:"Literal",value:t,raw:t.toString(),regex:{pattern:t.source,flags:t.toString().match(/[gimuy]*$/)[0]}}}),s(Et,function(e){var t=e.value;return"number"==typeof t&&(t<0||0===t&&1/t<0)?{type:"UnaryExpression",operator:"-",prefix:!0,argument:{type:"Literal",value:-t,raw:e.start.raw}}:{type:"Literal",value:t,raw:e.start.raw}}),s(kt,function(e){return{type:"Identifier",name:String(e.value)}}),Rt.DEFMETHOD("to_mozilla_ast",Et.prototype.to_mozilla_ast),Ot.DEFMETHOD("to_mozilla_ast",Et.prototype.to_mozilla_ast),Dt.DEFMETHOD("to_mozilla_ast",function(){return null}),ce.DEFMETHOD("to_mozilla_ast",fe.prototype.to_mozilla_ast),xe.DEFMETHOD("to_mozilla_ast",ke.prototype.to_mozilla_ast);var h=null;ie.from_mozilla_ast=function(e){var t=h;h=[];var n=i(e);return h=t,n}}();var nn="undefined"==typeof atob?function(t){return new e(t,"base64").toString()}:atob,rn="undefined"==typeof btoa?function(t){return new e(t).toString("base64")}:btoa;t.Dictionary=w,t.TreeWalker=k,t.TreeTransformer=V,t.minify=function(e,t){var n=ie.warn_function;try{var r=(t=u(t,{compress:{},ie8:!1,keep_fnames:!1,mangle:{},nameCache:null,output:{},parse:{},sourceMap:!1,timings:!1,toplevel:!1,warnings:!1,wrap:!1},!0)).timings&&{start:Date.now()};ee("ie8",t,["compress","mangle","output"]),ee("keep_fnames",t,["compress","mangle"]),ee("toplevel",t,["compress","mangle"]),ee("warnings",t,["compress"]);var o;t.mangle&&(t.mangle=u(t.mangle,{cache:t.nameCache&&(t.nameCache.vars||{}),eval:!1,ie8:!1,keep_fnames:!1,properties:!1,reserved:[],toplevel:!1},!0),t.mangle.properties&&("object"!=typeof t.mangle.properties&&(t.mangle.properties={}),t.mangle.properties.keep_quoted&&(o=t.mangle.properties.reserved,Array.isArray(o)||(o=[]),t.mangle.properties.reserved=o),!t.nameCache||"cache"in t.mangle.properties||(t.mangle.properties.cache=t.nameCache.props||{})),te(t.mangle.cache),te(t.mangle.properties.cache)),t.sourceMap&&(t.sourceMap=u(t.sourceMap,{content:null,filename:null,includeSources:!1,root:null,url:null},!0));var i=[];t.warnings&&!ie.warn_function&&(ie.warn_function=function(e){i.push(e)}),r&&(r.parse=Date.now());var a;if(e instanceof Ae)a=e;else{"string"==typeof e&&(e=[e]),t.parse=t.parse||{},t.parse.toplevel=null;for(var s in e)if(E(e,s)&&(t.parse.filename=s,t.parse.toplevel=j(e[s],t.parse),t.sourceMap&&"inline"==t.sourceMap.content)){if(Object.keys(e).length>1)throw new Error("inline source map only works with singular input");t.sourceMap.content=X(e[s])}a=t.parse.toplevel}o&&Q(a,o),t.wrap&&(a=a.wrap_commonjs(t.wrap)),r&&(r.scope1=Date.now()),t.compress&&a.figure_out_scope(t.mangle),r&&(r.compress=Date.now()),t.compress&&(a=new G(t.compress).compress(a)),r&&(r.scope2=Date.now()),t.mangle&&a.figure_out_scope(t.mangle),r&&(r.mangle=Date.now()),t.mangle&&(en.reset(),a.compute_char_frequency(t.mangle),a.mangle_names(t.mangle)),r&&(r.properties=Date.now()),t.mangle&&t.mangle.properties&&(a=J(a,t.mangle.properties)),r&&(r.output=Date.now());var l={};if(t.output.ast&&(l.ast=a),!E(t.output,"code")||t.output.code){if(t.sourceMap&&("string"==typeof t.sourceMap.content&&(t.sourceMap.content=JSON.parse(t.sourceMap.content)),t.output.source_map=Y({file:t.sourceMap.filename,orig:t.sourceMap.content,root:t.sourceMap.root}),t.sourceMap.includeSources)){if(e instanceof Ae)throw new Error("original source content unavailable");for(var s in e)E(e,s)&&t.output.source_map.get().setSourceContent(s,e[s])}delete t.output.ast,delete t.output.code;var c=K(t.output);a.print(c),l.code=c.get(),t.sourceMap&&(l.map=t.output.source_map.toString(),"inline"==t.sourceMap.url?l.code+="\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,"+rn(l.map):t.sourceMap.url&&(l.code+="\n//# sourceMappingURL="+t.sourceMap.url))}return t.nameCache&&t.mangle&&(t.mangle.cache&&(t.nameCache.vars=ne(t.mangle.cache)),t.mangle.properties&&t.mangle.properties.cache&&(t.nameCache.props=ne(t.mangle.properties.cache))),r&&(r.end=Date.now(),l.timings={parse:.001*(r.scope1-r.parse),scope:.001*(r.compress-r.scope1+r.mangle-r.scope2),compress:.001*(r.scope2-r.compress),mangle:.001*(r.properties-r.mangle),properties:.001*(r.output-r.properties),output:.001*(r.end-r.output),total:.001*(r.end-r.start)}),i.length&&(l.warnings=i),l}catch(e){return{error:e}}finally{ie.warn_function=n}},t._push_uniq=m}(void 0===n?n={}:n)}).call(this,e("buffer").Buffer)},{buffer:4}]},{},["html-minifier"]); \ No newline at end of file +require=function e(t,n,r){function o(a,s){if(!n[a]){if(!t[a]){var u="function"==typeof require&&require;if(!s&&u)return u(a,!0);if(i)return i(a,!0);var l=new Error("Cannot find module '"+a+"'");throw l.code="MODULE_NOT_FOUND",l}var c=n[a]={exports:{}};t[a][0].call(c.exports,function(e){var n=t[a][1][e];return o(n||e)},c,c.exports,e,t,n,r)}return n[a].exports}for(var i="function"==typeof require&&require,a=0;a0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===e[t-2]?2:"="===e[t-1]?1:0}function o(e){return a[e>>18&63]+a[e>>12&63]+a[e>>6&63]+a[63&e]}function i(e,t,n){for(var r,i=[],a=t;a0?l-4:l;var c=0;for(t=0;t>16&255,a[c++]=o>>8&255,a[c++]=255&o;return 2===i?(o=s[e.charCodeAt(t)]<<2|s[e.charCodeAt(t+1)]>>4,a[c++]=255&o):1===i&&(o=s[e.charCodeAt(t)]<<10|s[e.charCodeAt(t+1)]<<4|s[e.charCodeAt(t+2)]>>2,a[c++]=o>>8&255,a[c++]=255&o),a},n.fromByteArray=function(e){for(var t,n=e.length,r=n%3,o="",s=[],u=0,l=n-r;ul?l:u+16383));return 1===r?(t=e[n-1],o+=a[t>>2],o+=a[t<<4&63],o+="=="):2===r&&(t=(e[n-2]<<8)+e[n-1],o+=a[t>>10],o+=a[t>>4&63],o+=a[t<<2&63],o+="="),s.push(o),s.join("")};for(var a=[],s=[],u="undefined"!=typeof Uint8Array?Uint8Array:Array,l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=0,f=l.length;cW)throw new RangeError("Invalid typed array length");var t=new Uint8Array(e);return t.__proto__=o.prototype,t}function o(e,t,n){if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return u(e)}return i(e,t,n)}function i(e,t,n){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return $(e)?f(e,t,n):"string"==typeof e?l(e,t):p(e)}function a(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function s(e,t,n){return a(e),e<=0?r(e):void 0!==t?"string"==typeof n?r(e).fill(t,n):r(e).fill(t):r(e)}function u(e){return a(e),r(e<0?0:0|h(e))}function l(e,t){if("string"==typeof t&&""!==t||(t="utf8"),!o.isEncoding(t))throw new TypeError('"encoding" must be a valid string encoding');var n=0|d(e,t),i=r(n),a=i.write(e,t);return a!==n&&(i=i.slice(0,a)),i}function c(e){for(var t=e.length<0?0:0|h(e.length),n=r(t),o=0;o=W)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+W.toString(16)+" bytes");return 0|e}function d(e,t){if(o.isBuffer(e))return e.length;if(H(e)||$(e))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return q(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return j(e).length;default:if(r)return q(e).length;t=(""+t).toLowerCase(),r=!0}}function m(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,t>>>=0,n<=t)return"";for(e||(e="utf8");;)switch(e){case"hex":return D(this,t,n);case"utf8":case"utf-8":return k(this,t,n);case"ascii":return S(this,t,n);case"latin1":case"binary":return B(this,t,n);case"base64":return C(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return T(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function g(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function v(e,t,n,r,i){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,K(n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof t&&(t=o.from(t,r)),o.isBuffer(t))return 0===t.length?-1:b(e,t,n,r,i);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):b(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function b(e,t,n,r,o){function i(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}var a=1,s=e.length,u=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,u/=2,n/=2}var l;if(o){var c=-1;for(l=n;ls&&(n=s-u),l=n;l>=0;l--){for(var f=!0,p=0;po&&(r=o):r=o;var i=t.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a239?4:i>223?3:i>191?2:1;if(o+s<=n){var u,l,c,f;switch(s){case 1:i<128&&(a=i);break;case 2:128==(192&(u=e[o+1]))&&(f=(31&i)<<6|63&u)>127&&(a=f);break;case 3:u=e[o+1],l=e[o+2],128==(192&u)&&128==(192&l)&&(f=(15&i)<<12|(63&u)<<6|63&l)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[o+1],l=e[o+2],c=e[o+3],128==(192&u)&&128==(192&l)&&128==(192&c)&&(f=(15&i)<<18|(63&u)<<12|(63&l)<<6|63&c)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,r.push(a>>>10&1023|55296),a=56320|1023&a),r.push(a),o+=s}return O(r)}function O(e){var t=e.length;if(t<=Q)return String.fromCharCode.apply(String,e);for(var n="",r=0;rr)&&(n=r);for(var o="",i=t;in)throw new RangeError("Trying to access beyond buffer length")}function F(e,t,n,r,i,a){if(!o.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}function L(e,t,n,r,o,i){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function M(e,t,n,r,o){return t=+t,n>>>=0,o||L(e,t,n,4,3.4028234663852886e38,-3.4028234663852886e38),Y.write(e,t,n,r,23,4),n+4}function U(e,t,n,r,o){return t=+t,n>>>=0,o||L(e,t,n,8,1.7976931348623157e308,-1.7976931348623157e308),Y.write(e,t,n,r,52,8),n+8}function N(e){if((e=e.trim().replace(Z,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}function P(e){return e<16?"0"+e.toString(16):e.toString(16)}function q(e,t){t=t||1/0;for(var n,r=e.length,o=null,i=[],a=0;a55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;i.push(n)}else if(n<2048){if((t-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function z(e){for(var t=[],n=0;n>8,o=n%256,i.push(o),i.push(r);return i}function j(e){return G.toByteArray(N(e))}function V(e,t,n,r){for(var o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}function $(e){return e instanceof ArrayBuffer||null!=e&&null!=e.constructor&&"ArrayBuffer"===e.constructor.name&&"number"==typeof e.byteLength}function H(e){return"function"==typeof ArrayBuffer.isView&&ArrayBuffer.isView(e)}function K(e){return e!==e}var G=e("base64-js"),Y=e("ieee754");n.Buffer=o,n.SlowBuffer=function(e){return+e!=e&&(e=0),o.alloc(+e)},n.INSPECT_MAX_BYTES=50;var W=2147483647;n.kMaxLength=W,o.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1);return e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===e.foo()}catch(e){return!1}}(),o.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),"undefined"!=typeof Symbol&&Symbol.species&&o[Symbol.species]===o&&Object.defineProperty(o,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),o.poolSize=8192,o.from=function(e,t,n){return i(e,t,n)},o.prototype.__proto__=Uint8Array.prototype,o.__proto__=Uint8Array,o.alloc=function(e,t,n){return s(e,t,n)},o.allocUnsafe=function(e){return u(e)},o.allocUnsafeSlow=function(e){return u(e)},o.isBuffer=function(e){return null!=e&&!0===e._isBuffer},o.compare=function(e,t){if(!o.isBuffer(e)||!o.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var n=e.length,r=t.length,i=0,a=Math.min(n,r);i0&&(e=this.toString("hex",0,t).match(/.{2}/g).join(" "),this.length>t&&(e+=" ... ")),""},o.prototype.compare=function(e,t,n,r,i){if(!o.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,r>>>=0,i>>>=0,this===e)return 0;for(var a=i-r,s=n-t,u=Math.min(a,s),l=this.slice(r,i),c=e.slice(t,n),f=0;f>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var o=this.length-t;if((void 0===n||n>o)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return y(this,e,t,n);case"utf8":case"utf-8":return _(this,e,t,n);case"ascii":return w(this,e,t,n);case"latin1":case"binary":return E(this,e,t,n);case"base64":return A(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,e,t,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Q=4096;o.prototype.slice=function(e,t){var n=this.length;e=~~e,t=void 0===t?n:~~t,e<0?(e+=n)<0&&(e=0):e>n&&(e=n),t<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||R(e,t,this.length);for(var r=this[e],o=1,i=0;++i>>=0,t>>>=0,n||R(e,t,this.length);for(var r=this[e+--t],o=1;t>0&&(o*=256);)r+=this[e+--t]*o;return r},o.prototype.readUInt8=function(e,t){return e>>>=0,t||R(e,1,this.length),this[e]},o.prototype.readUInt16LE=function(e,t){return e>>>=0,t||R(e,2,this.length),this[e]|this[e+1]<<8},o.prototype.readUInt16BE=function(e,t){return e>>>=0,t||R(e,2,this.length),this[e]<<8|this[e+1]},o.prototype.readUInt32LE=function(e,t){return e>>>=0,t||R(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},o.prototype.readUInt32BE=function(e,t){return e>>>=0,t||R(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},o.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||R(e,t,this.length);for(var r=this[e],o=1,i=0;++i=o&&(r-=Math.pow(2,8*t)),r},o.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||R(e,t,this.length);for(var r=t,o=1,i=this[e+--r];r>0&&(o*=256);)i+=this[e+--r]*o;return o*=128,i>=o&&(i-=Math.pow(2,8*t)),i},o.prototype.readInt8=function(e,t){return e>>>=0,t||R(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},o.prototype.readInt16LE=function(e,t){e>>>=0,t||R(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt16BE=function(e,t){e>>>=0,t||R(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt32LE=function(e,t){return e>>>=0,t||R(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},o.prototype.readInt32BE=function(e,t){return e>>>=0,t||R(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},o.prototype.readFloatLE=function(e,t){return e>>>=0,t||R(e,4,this.length),Y.read(this,e,!0,23,4)},o.prototype.readFloatBE=function(e,t){return e>>>=0,t||R(e,4,this.length),Y.read(this,e,!1,23,4)},o.prototype.readDoubleLE=function(e,t){return e>>>=0,t||R(e,8,this.length),Y.read(this,e,!0,52,8)},o.prototype.readDoubleBE=function(e,t){return e>>>=0,t||R(e,8,this.length),Y.read(this,e,!1,52,8)},o.prototype.writeUIntLE=function(e,t,n,r){e=+e,t>>>=0,n>>>=0,r||F(this,e,t,n,Math.pow(2,8*n)-1,0);var o=1,i=0;for(this[t]=255&e;++i>>=0,n>>>=0,r||F(this,e,t,n,Math.pow(2,8*n)-1,0);var o=n-1,i=1;for(this[t+o]=255&e;--o>=0&&(i*=256);)this[t+o]=e/i&255;return t+n},o.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,1,255,0),this[t]=255&e,t+1},o.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},o.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},o.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},o.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},o.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var o=Math.pow(2,8*n-1);F(this,e,t,n,o-1,-o)}var i=0,a=1,s=0;for(this[t]=255&e;++i>0)-s&255;return t+n},o.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var o=Math.pow(2,8*n-1);F(this,e,t,n,o-1,-o)}var i=n-1,a=1,s=0;for(this[t+i]=255&e;--i>=0&&(a*=256);)e<0&&0===s&&0!==this[t+i+1]&&(s=1),this[t+i]=(e/a>>0)-s&255;return t+n},o.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},o.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},o.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},o.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},o.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||F(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},o.prototype.writeFloatLE=function(e,t,n){return M(this,e,t,!0,n)},o.prototype.writeFloatBE=function(e,t,n){return M(this,e,t,!1,n)},o.prototype.writeDoubleLE=function(e,t,n){return U(this,e,t,!0,n)},o.prototype.writeDoubleBE=function(e,t,n){return U(this,e,t,!1,n)},o.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t=0;--o)e[o+t]=this[o+n];else if(i<1e3)for(o=0;o>>=0,n=void 0===n?this.length:n>>>0,e||(e=0);var a;if("number"==typeof e)for(a=t;a0?l.errors:null,t):t})})}function o(e){return e?function(e){return e()}:n.nextTick}function i(e,t){var n;return n=u(e,t),n=b.One in t.options.level?l(e,t):e,n=b.Two in t.options.level?c(e,t,!0):n}function a(e,t){return e.stats=s(e.styles,t),e.errors=t.errors,e.inlinedStylesheets=t.inlinedStylesheets,e.warnings=t.warnings,e}function s(e,t){var n=Date.now()-t.stats.startedAt;return delete t.stats.startedAt,t.stats.timeSpent=n,t.stats.efficiency=1-e.length/t.stats.originalSize,t.stats.minifiedSize=e.length,t.stats}var u=e("./optimizer/level-0/optimize"),l=e("./optimizer/level-1/optimize"),c=e("./optimizer/level-2/optimize"),f=e("./optimizer/validator"),p=e("./options/compatibility"),h=e("./options/fetch"),d=e("./options/format").formatFrom,m=e("./options/inline"),g=e("./options/inline-request"),v=e("./options/inline-timeout"),b=e("./options/optimization-level").OptimizationLevel,y=e("./options/optimization-level").optimizationLevelFrom,_=e("./options/rebase"),w=e("./options/rebase-to"),E=e("./reader/input-source-map-tracker"),A=e("./reader/read-sources"),x=e("./writer/simple"),C=e("./writer/source-maps");(t.exports=function(e){e=e||{},this.options={compatibility:p(e.compatibility),fetch:h(e.fetch),format:d(e.format),inline:m(e.inline),inlineRequest:g(e.inlineRequest),inlineTimeout:v(e.inlineTimeout),level:y(e.level),rebase:_(e.rebase),rebaseTo:w(e.rebaseTo),returnPromise:!!e.returnPromise,sourceMap:!!e.sourceMap,sourceMapInlineSources:!!e.sourceMapInlineSources}}).prototype.minify=function(e,t,n){var o=this.options;return o.returnPromise?new Promise(function(n,i){r(e,o,t,function(e,t){return e?i(e):n(t)})}):r(e,o,t,n)}}).call(this,e("_process"))},{"./optimizer/level-0/optimize":9,"./optimizer/level-1/optimize":10,"./optimizer/level-2/optimize":29,"./optimizer/validator":57,"./options/compatibility":59,"./options/fetch":60,"./options/format":61,"./options/inline":64,"./options/inline-request":62,"./options/inline-timeout":63,"./options/optimization-level":65,"./options/rebase":67,"./options/rebase-to":66,"./reader/input-source-map-tracker":71,"./reader/read-sources":77,"./writer/simple":99,"./writer/source-maps":100,_process:113}],8:[function(e,t,n){var r={ASTERISK:"asterisk",BANG:"bang",BACKSLASH:"backslash",UNDERSCORE:"underscore"};t.exports=r},{}],9:[function(e,t,n){t.exports=function(e){return e}},{}],10:[function(e,t,n){function r(e){return e&&"-"==e[1][0]&&parseFloat(e[1])<0}function o(e){return oe.test(e)}function i(e){return ae.test(e)}function a(e){return e.replace(ae,"url(").replace(/\\?\n|\\?\r\n/g,"")}function s(e){var t=e.value;1==t.length&&"none"==t[0][1]&&(t[0][1]="0 0"),1==t.length&&"transparent"==t[0][1]&&(t[0][1]="0 0")}function u(e){var t,n=e.value;3==n.length&&"/"==n[1][1]&&n[0][1]==n[2][1]?t=1:5==n.length&&"/"==n[2][1]&&n[0][1]==n[3][1]&&n[1][1]==n[4][1]?t=2:7==n.length&&"/"==n[3][1]&&n[0][1]==n[4][1]&&n[1][1]==n[5][1]&&n[2][1]==n[6][1]?t=3:9==n.length&&"/"==n[4][1]&&n[0][1]==n[5][1]&&n[1][1]==n[6][1]&&n[2][1]==n[7][1]&&n[3][1]==n[8][1]&&(t=4),t&&(e.value.splice(t),e.dirty=!0)}function l(e,t,n){return-1===t.indexOf("#")&&-1==t.indexOf("rgb")&&-1==t.indexOf("hsl")?F(t):(t=t.replace(/rgb\((\-?\d+),(\-?\d+),(\-?\d+)\)/g,function(e,t,n,r){return M(t,n,r)}).replace(/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/g,function(e,t,n,r){return L(t,n,r)}).replace(/(^|[^='"])#([0-9a-f]{6})/gi,function(e,t,n,r,o){var i=o[r+e.length];return i&&te.test(i)?e:n[0]==n[1]&&n[2]==n[3]&&n[4]==n[5]?(t+"#"+n[0]+n[2]+n[4]).toLowerCase():(t+"#"+n).toLowerCase()}).replace(/(^|[^='"])#([0-9a-f]{3})/gi,function(e,t,n){return t+"#"+n.toLowerCase()}).replace(/(rgb|rgba|hsl|hsla)\(([^\)]+)\)/g,function(e,t,n){var r=n.split(",");return"hsl"==t&&3==r.length||"hsla"==t&&4==r.length||"rgb"==t&&3==r.length&&n.indexOf("%")>0||"rgba"==t&&4==r.length&&n.indexOf("%")>0?(-1==r[1].indexOf("%")&&(r[1]+="%"),-1==r[2].indexOf("%")&&(r[2]+="%"),t+"("+r.join(",")+")"):e}),n.colors.opacity&&-1==e.indexOf("background")&&(t=t.replace(/(?:rgba|hsla)\(0,0%?,0%?,0\)/g,function(e){return Y(t,",").pop().indexOf("gradient(")>-1?e:"transparent"})),F(t))}function c(e){1==e.value.length&&(e.value[0][1]=e.value[0][1].replace(/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\W)/,function(e,t,n){return t.toLowerCase()+n})),e.value[0][1]=e.value[0][1].replace(/,(\S)/g,", $1").replace(/ ?= ?/g,"=")}function f(e,t){var n=e.value[t][1];"normal"==n?n="400":"bold"==n&&(n="700"),e.value[t][1]=n}function p(e){var t,n=e.value;4==n.length&&"0"===n[0][1]&&"0"===n[1][1]&&"0"===n[2][1]&&"0"===n[3][1]&&(t=e.name.indexOf("box-shadow")>-1?2:1),t&&(e.value.splice(t),e.dirty=!0)}function h(e){var t=e.value;1==t.length&&"none"==t[0][1]&&(t[0][1]="0")}function d(e,t,n){return X.test(t)?t.replace(X,function(e,t){var r,o=parseInt(t);return 0===o?e:(n.properties.shorterLengthUnits&&n.units.pt&&3*o%4==0&&(r=3*o/4+"pt"),n.properties.shorterLengthUnits&&n.units.pc&&o%16==0&&(r=o/16+"pc"),n.properties.shorterLengthUnits&&n.units.in&&o%96==0&&(r=o/96+"in"),r&&(r=e.substring(0,e.indexOf(t))+r),r&&r.length0&&("height"==e||"max-height"==e||"width"==e||"max-width"==e)?t:t.replace(n,"$10$2").replace(n,"$10$2")}function b(e,t){return e.indexOf("filter")>-1||-1==t.indexOf(" ")||0===t.indexOf("expression")?t:t.indexOf(K.SINGLE_QUOTE)>-1||t.indexOf(K.DOUBLE_QUOTE)>-1?t:((t=t.replace(/\s+/g," ")).indexOf("calc")>-1&&(t=t.replace(/\) ?\/ ?/g,")/ ")),t.replace(/(\(;?)\s+/g,"$1").replace(/\s+(;?\))/g,"$1").replace(/, /g,","))}function y(e,t){return-1==t.indexOf("0deg")?t:t.replace(/\(0deg\)/g,"(0)")}function _(e,t){return-1==t.indexOf("0")?t:(t.indexOf("-")>-1&&(t=t.replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2").replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2")),t.replace(/(^|\s)0+([1-9])/g,"$1$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/\.([1-9]*)0+(\D|$)/g,function(e,t,n){return(t.length>0?".":"")+t+n}).replace(/(^|\D)0\.(\d)/g,"$1.$2"))}function w(e,t){return"content"==e||e.indexOf("font-feature-settings")>-1||e.indexOf("grid-")>-1?t:ie.test(t)?t.substring(1,t.length-1):t}function E(e){return!/^url\(['"].+['"]\)$/.test(e)||/^url\(['"].*[\*\s\(\)'"].*['"]\)$/.test(e)||/^url\(['"]data:[^;]+;charset/.test(e)?e:e.replace(/["']/g,"")}function A(e,t,n){var r=n(e,t);return void 0===r?t:!1===r?W:r}function x(e,t){var n,k,O,S,B,D,R=t.options,F=R.level[$.One],L=V(e,!0);e:for(var M=0,U=L.length;M0&&F.optimizeBorderRadius?u(n):"filter"==k&&F.optimizeFilter&&R.compatibility.properties.ieFilters?c(n):"font-weight"==k&&F.optimizeFontWeight?f(n,0):"outline"==k&&F.optimizeOutline&&h(n)}j(L),I(L),C(e,R)}function C(e,t){var n,r;for(r=0;r0&&(r.enabled=!0,r.decimalPointMatcher=new RegExp("(\\d)\\.($|"+o.join("|")+")($|W)","g"),r.zeroMatcher=new RegExp("(\\d*)(\\.\\d+)("+o.join("|")+")","g")),r}function D(e){return re.test(e[1])}function T(e){var t;return("filter"==e.name||"-ms-filter"==e.name)&&((t=e.value[0][1]).indexOf("progid")>-1||0===t.indexOf("alpha")||0===t.indexOf("chroma"))}function R(e,t){var n=t.options,r=n.level[$.One],o=n.compatibility.selectors.ie7Hack,i=n.compatibility.selectors.adjacentSpace,a=n.compatibility.properties.spaceAfterClosingBrace,s=n.format,u=!1,l=!1;n.unitsRegexp=n.unitsRegexp||S(n),n.precision=n.precision||B(r.roundingPrecision),n.commentsKept=n.commentsKept||0;for(var c=0,f=e.length;c1?U(p[1],r.selectorsSortingMethod):p[1],x(p[2],t),l=!0}(p[0]==H.COMMENT&&0===p[1].length||r.removeEmpty&&(0===p[1].length||p[2]&&0===p[2].length))&&(e.splice(c,1),c--,f--)}return r.cleanupCharsets&&u&&O(e),e}var F=e("./shorten-hex"),L=e("./shorten-hsl"),M=e("./shorten-rgb"),U=e("./sort-selectors"),N=e("./tidy-rules"),P=e("./tidy-block"),q=e("./tidy-at-rule"),z=e("../hack"),I=e("../remove-unused"),j=e("../restore-from-optimizing"),V=e("../wrap-for-optimizing").all,$=e("../../options/optimization-level").OptimizationLevel,H=e("../../tokenizer/token"),K=e("../../tokenizer/marker"),G=e("../../utils/format-position"),Y=e("../../utils/split"),W="ignore-property",Q="@charset",Z=new RegExp("^"+Q,"i"),J=e("../../options/rounding-precision").DEFAULT,X=/(?:^|\s|\()(-?\d+)px/,ee=/^(\-?[\d\.]+)(m?s)$/,te=/[0-9a-f]/i,ne=/^(?:\-chrome\-|\-[\w\-]+\w|\w[\w\-]+\w|\-\-\S+)$/,re=/^@import/i,oe=/^('.*'|".*")$/,ie=/^['"][a-zA-Z][a-zA-Z\d\-_]+['"]$/,ae=/^url\(/i,se=/^--\S+$/;t.exports=R},{"../../options/optimization-level":65,"../../options/rounding-precision":68,"../../tokenizer/marker":83,"../../tokenizer/token":84,"../../utils/format-position":87,"../../utils/split":96,"../hack":8,"../remove-unused":55,"../restore-from-optimizing":56,"../wrap-for-optimizing":58,"./shorten-hex":11,"./shorten-hsl":12,"./shorten-rgb":13,"./sort-selectors":14,"./tidy-at-rule":15,"./tidy-block":16,"./tidy-rules":17}],11:[function(e,t,n){function r(e,t,n,r){return t+a[n.toLowerCase()]+r}function o(e,t,n){return s[t.toLowerCase()]+n}var i={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#0ff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000",blanchedalmond:"#ffebcd",blue:"#00f",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#0ff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#f0f",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#0f0",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#f00",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#fff",whitesmoke:"#f5f5f5",yellow:"#ff0",yellowgreen:"#9acd32"},a={},s={};for(var u in i){var l=i[u];u.length-1,n=e.replace(c,r);return n!=e&&(n=n.replace(c,r)),t?n.replace(f,o):n}},{}],12:[function(e,t,n){function r(e,t,n){var r,i,a;if((e%=360)<0&&(e+=360),e=~~e/360,t<0?t=0:t>100&&(t=100),t=~~t/100,n<0?n=0:n>100&&(n=100),n=~~n/100,0===t)r=i=a=n;else{var s=n<.5?n*(1+t):n+t-n*t,u=2*n-s;r=o(u,s,e+1/3),i=o(u,s,e),a=o(u,s,e-1/3)}return[~~(255*r),~~(255*i),~~(255*a)]}function o(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}t.exports=function(e,t,n){var o=r(e,t,n),i=o[0].toString(16),a=o[1].toString(16),s=o[2].toString(16);return"#"+(1==i.length?"0":"")+i+(1==a.length?"0":"")+a+(1==s.length?"0":"")+s}},{}],13:[function(e,t,n){t.exports=function(e,t,n){return"#"+("00000"+(Math.max(0,Math.min(parseInt(e),255))<<16|Math.max(0,Math.min(parseInt(t),255))<<8|Math.max(0,Math.min(parseInt(n),255))).toString(16)).slice(-6)}},{}],14:[function(e,t,n){function r(e,t){return i(e[1],t[1])}function o(e,t){return e[1]>t[1]?1:-1}var i=e("../../utils/natural-compare");t.exports=function(e,t){switch(t){case"natural":return e.sort(r);case"standard":return e.sort(o);case"none":case!1:return e}}},{"../../utils/natural-compare":94}],15:[function(e,t,n){t.exports=function(e){return e.replace(/\s+/g," ").replace(/url\(\s+/g,"url(").replace(/\s+\)/g,")").trim()}},{}],16:[function(e,t,n){var r=/^@media\W/;t.exports=function(e,t){var n,o;for(o=e.length-1;o>=0;o--)n=!t&&r.test(e[o][1]),e[o][1]=e[o][1].replace(/\n|\r\n/g," ").replace(/\s+/g," ").replace(/(,|:|\() /g,"$1").replace(/ \)/g,")").replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/,"$1").replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/,"$1").replace(n?/\) /g:null,")");return e}},{}],17:[function(e,t,n){function r(e){var t,n,r,o,i=!1,a=!1;for(r=0,o=e.length;r0)&&!f||b&&x&&!f||(o||r)&&(d||E>0)&&f||(m&&x&&!k?(w.pop(),w.push(n)):m&&!x&&k?(w.push(s.SPACE),w.push(n)):b?w.push(s.SPACE):w.push(n))}else w.push(n),h=!0;else w.push(n),p=!0;else w.push(n),E--;else w.push(n),E++;else w.push(n),d=!1;else w.push(n),d=!0;u=i,i=n==s.BACK_SLASH,A=m,x=b}return C?w.join("").replace(c,"$1 $2]"):w.join("")}function i(e){return-1==e.indexOf("'")&&-1==e.indexOf('"')?e:e.replace(d,"=$1 $2").replace(m,"=$1$2").replace(f,"=$1 $2").replace(p,"=$1$2")}var a=e("../../options/format").Spaces,s=e("../../tokenizer/marker"),u=e("../../utils/format-position"),l=/[\s"'][iI]\s*\]/,c=/([\d\w])([iI])\]/g,f=/="([a-zA-Z][a-zA-Z\d\-_]+)"([iI])/g,p=/="([a-zA-Z][a-zA-Z\d\-_]+)"(\s|\])/g,h=/^(?:(?:)\s*)+/,d=/='([a-zA-Z][a-zA-Z\d\-_]+)'([iI])/g,m=/='([a-zA-Z][a-zA-Z\d\-_]+)'(\s|\])/g,g=/[>\+~]/,v=/\s/,b="*+html ",y="*:first-child+html ",_="<";t.exports=function(e,t,n,a,s){for(var l=[],c=[],f=0,p=e.length;f0&&(m=m.replace(/\+nav(\S|$)/,"+ nav$1")),t&&m.indexOf(b)>-1||t&&m.indexOf(y)>-1||(m.indexOf("*")>-1&&(m=m.replace(/\*([:#\.\[])/g,"$1").replace(/^(\:first\-child)?\+html/,"*$1+html")),c.indexOf(m)>-1||(d[1]=m,c.push(m),l.push(d))))}return 1==l.length&&0===l[0][1].length&&(s.push("Empty selector '"+l[0][1]+"' at "+u(l[0][2][0])+". Ignoring."),l=[]),l}},{"../../options/format":61,"../../tokenizer/marker":83,"../../utils/format-position":87}],18:[function(e,t,n){function r(e){var t,n;for(t=0,n=e.length;t=0;i--){var a=f([p.PROPERTY,[p.PROPERTY_NAME,n[i]]]);a.value=[o[i]],r.unshift(a)}return r}function l(e,t,n){for(var r,u,l,c=t[e.name],f=[a(c.components[0],e,t),a(c.components[1],e,t),a(c.components[2],e,t)],p=0;p<3;p++){var h=f[p];h.name.indexOf("color")>0?r=h:h.name.indexOf("style")>0?u=h:l=h}if(1==e.value.length&&"inherit"==e.value[0][1]||3==e.value.length&&"inherit"==e.value[0][1]&&"inherit"==e.value[1][1]&&"inherit"==e.value[2][1])return r.value=u.value=l.value=[e.value[0]],f;var d,m,g=e.value.slice(0);return g.length>0&&(d=(m=g.filter(s(n))).length>1&&("none"==m[0][1]||"auto"==m[0][1])?m[1]:m[0])&&(l.value=[d],g.splice(g.indexOf(d),1)),g.length>0&&(d=g.filter(i(n))[0])&&(u.value=[d],g.splice(g.indexOf(d),1)),g.length>0&&(d=g.filter(o(n))[0])&&(r.value=[d],g.splice(g.indexOf(d),1)),f}var c=e("./invalid-property-error"),f=e("../wrap-for-optimizing").single,p=e("../../tokenizer/token"),h=e("../../tokenizer/marker"),d=e("../../utils/format-position");t.exports={animation:function(e,t,n){var o,i,s,u=a(e.name+"-duration",e,t),l=a(e.name+"-timing-function",e,t),f=a(e.name+"-delay",e,t),p=a(e.name+"-iteration-count",e,t),h=a(e.name+"-direction",e,t),m=a(e.name+"-fill-mode",e,t),g=a(e.name+"-play-state",e,t),v=a(e.name+"-name",e,t),b=[u,l,f,p,h,m,g,v],y=e.value,_=!1,w=!1,E=!1,A=!1,x=!1,C=!1,k=!1,O=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return u.value=l.value=f.value=p.value=h.value=m.value=g.value=v.value=e.value,b;if(y.length>1&&r(y))throw new c("Invalid animation values at "+d(y[0][2][0])+". Ignoring.");for(i=0,s=y.length;i=0;E--){var A=g[E];if(n.isBackgroundAttachmentKeyword(A[1]))u.value=[A],w=!0;else if(n.isBackgroundClipKeyword(A[1])||n.isBackgroundOriginKeyword(A[1]))b?(l.value=[A],y=!0):(f.value=[A],b=!0),w=!0;else if(n.isBackgroundRepeatKeyword(A[1]))_?s.value.unshift(A):(s.value=[A],_=!0),w=!0;else if(n.isBackgroundPositionKeyword(A[1])||n.isBackgroundSizeKeyword(A[1])||n.isUnit(A[1])||n.isDynamicUnit(A[1])){if(E>0){var x=g[E-1];x[1]==h.FORWARD_SLASH?i.value=[A]:E>1&&g[E-2][1]==h.FORWARD_SLASH?(i.value=[x,A],E-=2):(v||(o.value=[]),o.value.unshift(A),v=!0)}else v||(o.value=[]),o.value.unshift(A),v=!0;w=!0}else p.value[0][1]!=t[p.name].defaultValue&&"none"!=p.value[0][1]||!n.isColor(A[1])&&!n.isPrefixed(A[1])?(n.isUrl(A[1])||n.isFunction(A[1]))&&(r.value=[A],w=!0):(p.value=[A],w=!0)}if(b&&!y&&(l.value=f.value.slice(0)),!w)throw new c("Invalid background value at "+d(g[0][2][0])+". Ignoring.");return m},border:l,borderRadius:function(e,t){for(var n=e.value,r=-1,o=0,i=n.length;o-1?n.slice(0,r):n.slice(0),s.components=u(s,t);var l=a(e.name,e,t);l.value=r>-1?n.slice(r+1):n.slice(0),l.components=u(l,t);for(var f=0;f<4;f++)s.components[f].multiplex=!0,s.components[f].value=s.components[f].value.concat(l.components[f].value);return s.components},font:function(e,t,n){var o,i,s,u,l=a("font-style",e,t),f=a("font-variant",e,t),p=a("font-weight",e,t),m=a("font-stretch",e,t),g=a("font-size",e,t),v=a("line-height",e,t),b=a("font-family",e,t),y=[l,f,p,m,g,v,b],_=e.value,w=0,E=!1,A=!1,x=!1,C=!1,k=!1,O=!1;if(!_[w])throw new c("Missing font values at "+d(e.all[e.position][1][2][0])+". Ignoring.");if(1==_.length&&"inherit"==_[0][1])return l.value=f.value=p.value=m.value=g.value=v.value=b.value=_,y;if(1==_.length&&(n.isFontKeyword(_[0][1])||n.isGlobal(_[0][1])||n.isPrefixed(_[0][1])))return _[0][1]=h.INTERNAL+_[0][1],l.value=f.value=p.value=m.value=g.value=v.value=b.value=_,y;if(_.length>1&&r(_))throw new c("Invalid font values at "+d(_[0][2][0])+". Ignoring.");for(;w<4;){if(o=n.isFontStretchKeyword(_[w][1])||n.isGlobal(_[w][1]),i=n.isFontStyleKeyword(_[w][1])||n.isGlobal(_[w][1]),s=n.isFontVariantKeyword(_[w][1])||n.isGlobal(_[w][1]),u=n.isFontWeightKeyword(_[w][1])||n.isGlobal(_[w][1]),i&&!A)l.value=[_[w]],A=!0;else if(s&&!x)f.value=[_[w]],x=!0;else if(u&&!C)p.value=[_[w]],C=!0;else{if(!o||E){if(i&&A||s&&x||u&&C||o&&E)throw new c("Invalid font style / variant / weight / stretch value at "+d(_[0][2][0])+". Ignoring.");break}m.value=[_[w]],E=!0}w++}if(!(n.isFontSizeKeyword(_[w][1])||n.isUnit(_[w][1])&&!n.isDynamicUnit(_[w][1])))throw new c("Missing font size at "+d(_[0][2][0])+". Ignoring.");if(g.value=[_[w]],k=!0,w++,!_[w])throw new c("Missing font family at "+d(_[0][2][0])+". Ignoring.");for(k&&_[w]&&_[w][1]==h.FORWARD_SLASH&&_[w+1]&&(n.isLineHeightKeyword(_[w+1][1])||n.isUnit(_[w+1][1])||n.isNumber(_[w+1][1]))&&(v.value=[_[w+1]],w++,w++),b.value=[];_[w];)_[w][1]==h.COMMA?O=!1:(O?b.value[b.value.length-1][1]+=h.SPACE+_[w][1]:b.value.push(_[w]),O=!0),w++;if(0===b.value.length)throw new c("Missing font family at "+d(_[0][2][0])+". Ignoring.");return y},fourValues:u,listStyle:function(e,t,n){var r=a("list-style-type",e,t),o=a("list-style-position",e,t),i=a("list-style-image",e,t),s=[r,o,i];if(1==e.value.length&&"inherit"==e.value[0][1])return r.value=o.value=i.value=[e.value[0]],s;var u=e.value.slice(0),l=u.length,c=0;for(c=0,l=u.length;c0&&(n.isListStyleTypeKeyword(u[0][1])||n.isIdentifier(u[0][1]))&&(r.value=[u[0]]),s},multiplex:function(e){return function(t,n,r){var o,i,s,u,l=[],c=t.value;for(o=0,s=c.length;o=0;n--){var o=r(e.components[n]);o.value=e.components[n].value.slice(0),t.components.unshift(o)}return t.dirty=!0,t.value=e.value.slice(0),t},shallow:r}},{"../../tokenizer/token":84,"../wrap-for-optimizing":58}],21:[function(e,t,n){var r=e("./break-up"),o=e("./can-override"),i=e("./restore"),a=e("../../utils/override"),s={animation:{canOverride:o.generic.components([o.generic.time,o.property.animationTimingFunction,o.generic.time,o.property.animationIterationCount,o.property.animationDirection,o.property.animationFillMode,o.property.animationPlayState,o.property.animationName]),components:["animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state","animation-name"],breakUp:r.multiplex(r.animation),defaultValue:"none",restore:i.multiplex(i.withoutDefaults),shorthand:!0,vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-delay":{canOverride:o.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-direction":{canOverride:o.property.animationDirection,componentOf:["animation"],defaultValue:"normal",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-duration":{canOverride:o.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-fill-mode":{canOverride:o.property.animationFillMode,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-iteration-count":{canOverride:o.property.animationIterationCount,componentOf:["animation"],defaultValue:"1",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-name":{canOverride:o.property.animationName,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-play-state":{canOverride:o.property.animationPlayState,componentOf:["animation"],defaultValue:"running",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-timing-function":{canOverride:o.property.animationTimingFunction,componentOf:["animation"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},background:{canOverride:o.generic.components([o.generic.image,o.property.backgroundPosition,o.property.backgroundSize,o.property.backgroundRepeat,o.property.backgroundAttachment,o.property.backgroundOrigin,o.property.backgroundClip,o.generic.color]),components:["background-image","background-position","background-size","background-repeat","background-attachment","background-origin","background-clip","background-color"],breakUp:r.multiplex(r.background),defaultValue:"0 0",restore:i.multiplex(i.background),shortestValue:"0",shorthand:!0},"background-attachment":{canOverride:o.property.backgroundAttachment,componentOf:["background"],defaultValue:"scroll",intoMultiplexMode:"real"},"background-clip":{canOverride:o.property.backgroundClip,componentOf:["background"],defaultValue:"border-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-color":{canOverride:o.generic.color,componentOf:["background"],defaultValue:"transparent",intoMultiplexMode:"real",multiplexLastOnly:!0,nonMergeableValue:"none",shortestValue:"red"},"background-image":{canOverride:o.generic.image,componentOf:["background"],defaultValue:"none",intoMultiplexMode:"default"},"background-origin":{canOverride:o.property.backgroundOrigin,componentOf:["background"],defaultValue:"padding-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-position":{canOverride:o.property.backgroundPosition,componentOf:["background"],defaultValue:["0","0"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0"},"background-repeat":{canOverride:o.property.backgroundRepeat,componentOf:["background"],defaultValue:["repeat"],doubleValues:!0,intoMultiplexMode:"real"},"background-size":{canOverride:o.property.backgroundSize,componentOf:["background"],defaultValue:["auto"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0 0"},bottom:{canOverride:o.property.bottom,defaultValue:"auto"},border:{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-width","border-style","border-color"],defaultValue:"none",overridesShorthands:["border-bottom","border-left","border-right","border-top"],restore:i.withoutDefaults,shorthand:!0,shorthandComponents:!0},"border-bottom":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-bottom-width","border-bottom-style","border-bottom-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-bottom-color":{canOverride:o.generic.color,componentOf:["border-bottom","border-color"],defaultValue:"none"},"border-bottom-left-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-right-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-style":{canOverride:o.property.borderStyle,componentOf:["border-bottom","border-style"],defaultValue:"none"},"border-bottom-width":{canOverride:o.generic.unit,componentOf:["border-bottom","border-width"],defaultValue:"medium",oppositeTo:"border-top-width",shortestValue:"0"},"border-collapse":{canOverride:o.property.borderCollapse,defaultValue:"separate"},"border-color":{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.color,o.generic.color,o.generic.color,o.generic.color]),componentOf:["border"],components:["border-top-color","border-right-color","border-bottom-color","border-left-color"],defaultValue:"none",restore:i.fourValues,shortestValue:"red",shorthand:!0},"border-left":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-left-width","border-left-style","border-left-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-left-color":{canOverride:o.generic.color,componentOf:["border-color","border-left"],defaultValue:"none"},"border-left-style":{canOverride:o.property.borderStyle,componentOf:["border-left","border-style"],defaultValue:"none"},"border-left-width":{canOverride:o.generic.unit,componentOf:["border-left","border-width"],defaultValue:"medium",oppositeTo:"border-right-width",shortestValue:"0"},"border-radius":{breakUp:r.borderRadius,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),components:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],defaultValue:"0",restore:i.borderRadius,shorthand:!0,vendorPrefixes:["-moz-","-o-"]},"border-right":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-right-width","border-right-style","border-right-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-right-color":{canOverride:o.generic.color,componentOf:["border-color","border-right"],defaultValue:"none"},"border-right-style":{canOverride:o.property.borderStyle,componentOf:["border-right","border-style"],defaultValue:"none"},"border-right-width":{canOverride:o.generic.unit,componentOf:["border-right","border-width"],defaultValue:"medium",oppositeTo:"border-left-width",shortestValue:"0"},"border-style":{breakUp:r.fourValues,canOverride:o.generic.components([o.property.borderStyle,o.property.borderStyle,o.property.borderStyle,o.property.borderStyle]),componentOf:["border"],components:["border-top-style","border-right-style","border-bottom-style","border-left-style"],defaultValue:"none",restore:i.fourValues,shorthand:!0},"border-top":{breakUp:r.border,canOverride:o.generic.components([o.generic.unit,o.property.borderStyle,o.generic.color]),components:["border-top-width","border-top-style","border-top-color"],defaultValue:"none",restore:i.withoutDefaults,shorthand:!0},"border-top-color":{canOverride:o.generic.color,componentOf:["border-color","border-top"],defaultValue:"none"},"border-top-left-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-right-radius":{canOverride:o.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-style":{canOverride:o.property.borderStyle,componentOf:["border-style","border-top"],defaultValue:"none"},"border-top-width":{canOverride:o.generic.unit,componentOf:["border-top","border-width"],defaultValue:"medium",oppositeTo:"border-bottom-width",shortestValue:"0"},"border-width":{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),componentOf:["border"],components:["border-top-width","border-right-width","border-bottom-width","border-left-width"],defaultValue:"medium",restore:i.fourValues,shortestValue:"0",shorthand:!0},clear:{canOverride:o.property.clear,defaultValue:"none"},color:{canOverride:o.generic.color,defaultValue:"transparent",shortestValue:"red"},cursor:{canOverride:o.property.cursor,defaultValue:"auto"},display:{canOverride:o.property.display},float:{canOverride:o.property.float,defaultValue:"none"},font:{breakUp:r.font,canOverride:o.generic.components([o.property.fontStyle,o.property.fontVariant,o.property.fontWeight,o.property.fontStretch,o.generic.unit,o.generic.unit,o.property.fontFamily]),components:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],restore:i.font,shorthand:!0},"font-family":{canOverride:o.property.fontFamily,defaultValue:"user|agent|specific"},"font-size":{canOverride:o.generic.unit,defaultValue:"medium",shortestValue:"0"},"font-stretch":{canOverride:o.property.fontStretch,defaultValue:"normal"},"font-style":{canOverride:o.property.fontStyle,defaultValue:"normal"},"font-variant":{canOverride:o.property.fontVariant,defaultValue:"normal"},"font-weight":{canOverride:o.property.fontWeight,defaultValue:"normal",shortestValue:"400"},height:{canOverride:o.generic.unit,defaultValue:"auto",shortestValue:"0"},left:{canOverride:o.property.left,defaultValue:"auto"},"line-height":{canOverride:o.generic.unit,defaultValue:"normal",shortestValue:"0"},"list-style":{canOverride:o.generic.components([o.property.listStyleType,o.property.listStylePosition,o.property.listStyleImage]),components:["list-style-type","list-style-position","list-style-image"],breakUp:r.listStyle,restore:i.withoutDefaults,defaultValue:"outside",shortestValue:"none",shorthand:!0},"list-style-image":{canOverride:o.generic.image,componentOf:["list-style"],defaultValue:"none"},"list-style-position":{canOverride:o.property.listStylePosition,componentOf:["list-style"],defaultValue:"outside",shortestValue:"inside"},"list-style-type":{canOverride:o.property.listStyleType,componentOf:["list-style"],defaultValue:"decimal|disc",shortestValue:"none"},margin:{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),components:["margin-top","margin-right","margin-bottom","margin-left"],defaultValue:"0",restore:i.fourValues,shorthand:!0},"margin-bottom":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-top"},"margin-left":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-right"},"margin-right":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-left"},"margin-top":{canOverride:o.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-bottom"},outline:{canOverride:o.generic.components([o.generic.color,o.property.outlineStyle,o.generic.unit]),components:["outline-color","outline-style","outline-width"],breakUp:r.outline,restore:i.withoutDefaults,defaultValue:"0",shorthand:!0},"outline-color":{canOverride:o.generic.color,componentOf:["outline"],defaultValue:"invert",shortestValue:"red"},"outline-style":{canOverride:o.property.outlineStyle,componentOf:["outline"],defaultValue:"none"},"outline-width":{canOverride:o.generic.unit,componentOf:["outline"],defaultValue:"medium",shortestValue:"0"},overflow:{canOverride:o.property.overflow,defaultValue:"visible"},"overflow-x":{canOverride:o.property.overflow,defaultValue:"visible"},"overflow-y":{canOverride:o.property.overflow,defaultValue:"visible"},padding:{breakUp:r.fourValues,canOverride:o.generic.components([o.generic.unit,o.generic.unit,o.generic.unit,o.generic.unit]),components:["padding-top","padding-right","padding-bottom","padding-left"],defaultValue:"0",restore:i.fourValues,shorthand:!0},"padding-bottom":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-top"},"padding-left":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-right"},"padding-right":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-left"},"padding-top":{canOverride:o.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-bottom"},position:{canOverride:o.property.position,defaultValue:"static"},right:{canOverride:o.property.right,defaultValue:"auto"},"text-align":{canOverride:o.property.textAlign,defaultValue:"left|right"},"text-decoration":{canOverride:o.property.textDecoration,defaultValue:"none"},"text-overflow":{canOverride:o.property.textOverflow,defaultValue:"none"},"text-shadow":{canOverride:o.property.textShadow,defaultValue:"none"},top:{canOverride:o.property.top,defaultValue:"auto"},transform:{canOverride:o.property.transform,vendorPrefixes:["-moz-","-ms-","-webkit-"]},"vertical-align":{canOverride:o.property.verticalAlign,defaultValue:"baseline"},visibility:{canOverride:o.property.visibility,defaultValue:"visible"},"white-space":{canOverride:o.property.whiteSpace,defaultValue:"normal"},width:{canOverride:o.generic.unit,defaultValue:"auto",shortestValue:"0"},"z-index":{canOverride:o.property.zIndex,defaultValue:"auto"}},u={};for(var l in s){var c=s[l];if("vendorPrefixes"in c){for(var f=0;f~]/.test(a(e[1])),c=0,f=e[2].length;c0?"border-radius":"border-collapse"==e||"border-spacing"==e||"border-image"==e?e:0===e.indexOf("border-")&&/^border\-\w+\-\w+$/.test(e)?e.match(/border\-\w+/)[0]:0===e.indexOf("border-")&&/^border\-\w+$/.test(e)?"border":0===e.indexOf("text-")?e:"-chrome-"==e?e:e.replace(/^\-\w+\-/,"").match(/([a-zA-Z]+)/)[0].toLowerCase()}var i=e("../../tokenizer/token"),a=e("../../writer/one-time").rules,s=e("../../writer/one-time").value;t.exports=r},{"../../tokenizer/token":84,"../../writer/one-time":98}],23:[function(e,t,n){function r(e){this.name="InvalidPropertyError",this.message=e,this.stack=(new Error).stack}(r.prototype=Object.create(Error.prototype)).constructor=r,t.exports=r},{}],24:[function(e,t,n){function r(e){return h.test(e)}function o(e){var t,n,r,o,i,a,s=[],u=[],l=_.ROOT,c=0,p=!1,h=!1;for(i=0,a=e.length;i0&&p&&s.push(u.join("")),s}function i(e,t,n,r,o){return a(t,n,r)&&s(t)&&(t.length<2||!u(e,t))&&(t.length<2||o&&l(t))}function a(e,t,n){var r,o,i,a;for(i=0,a=e.length;i-1?r.substring(0,r.indexOf(f.OPEN_ROUND_BRACKET)):r,-1===t.indexOf(o)&&-1===n.indexOf(o))return!1;return!0}function s(e){var t,n,r,o,i,a;for(i=0,a=e.length;i-1,n=o?t.substring(0,r):t,o&&-1==g.indexOf(n))return!1;if(!o&&g.indexOf(n)>-1)return!1}return!0}function u(e,t){var n,r,o,i,a,s,u,l,c=0;for(u=0,l=t.length;u-1?n.substring(0,n.indexOf(f.OPEN_ROUND_BRACKET)):n,s=o.indexOf(f.OPEN_ROUND_BRACKET)>-1?o.substring(0,o.indexOf(f.OPEN_ROUND_BRACKET)):o,a!=m||s!=m))return!0;return!1}function l(e){var t,n,r,o=0;for(n=0,r=e.length;n-1?1:0:o+=b.indexOf(t)>-1?1:0,o>1)return!1;return!0}function c(e){return d.test(e)}var f=e("../../tokenizer/marker"),p=e("../../utils/split"),h=/\/deep\//,d=/^::/,m=":not",g=[":dir",":lang",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type"],v=/[>\+~]/,b=[":after",":before",":first-letter",":first-line",":lang"],y=["::after","::before","::first-letter","::first-line"],_={DOUBLE_QUOTE:"double-quote",SINGLE_QUOTE:"single-quote",ROOT:"root"};t.exports=function(e,t,n,a){var s,u,l,c=p(e,f.COMMA);for(u=0,l=c.length;u-1&&!i(s,o(s),t,n,a))return!1;return!0}},{"../../tokenizer/marker":83,"../../utils/split":96}],25:[function(e,t,n){var r=e("./is-mergeable"),o=e("./properties/optimize"),i=e("../level-1/sort-selectors"),a=e("../level-1/tidy-rules"),s=e("../../options/optimization-level").OptimizationLevel,u=e("../../writer/one-time").body,l=e("../../writer/one-time").rules,c=e("../../tokenizer/token");t.exports=function(e,t){for(var n=[null,[],[]],f=t.options,p=f.compatibility.selectors.adjacentSpace,h=f.level[s.One].selectorsSortingMethod,d=f.compatibility.selectors.mergeablePseudoClasses,m=f.compatibility.selectors.mergeablePseudoElements,g=f.compatibility.selectors.mergeLimit,v=f.compatibility.selectors.multiplePseudoMerging,b=0,y=e.length;b1?i(n[1],h):n[1],_[2]=[]):n=_:n=[null,[],[]]}}},{"../../options/optimization-level":65,"../../tokenizer/token":84,"../../writer/one-time":98,"../level-1/sort-selectors":14,"../level-1/tidy-rules":17,"./is-mergeable":24,"./properties/optimize":36}],26:[function(e,t,n){function r(e,t,n){var r,o,a,u,l,c,f,p;for(l=0,c=e.length;l=0;p--){var h=e[p];if(h[0]==c.NESTED_BLOCK){var d=u(h[1]),m=s[d];m||(m=[],s[d]=m),m.push(p)}}for(var g in s){var v=s[g];e:for(var b=v.length-1;b>0;b--){var y=v[b],_=e[y],w=v[b-1],E=e[w];t:for(var A=1;A>=-1;A-=2){for(var x=1==A,C=x?y+1:w-1,k=x?w:y,O=x?1:-1,S=x?_:E,B=x?E:_,D=a(S);C!=k;){var T=a(e[C]);if(C+=O,!(n&&r(D,T,i)||o(D,T,i)))continue t}B[2]=x?S[2].concat(B[2]):B[2].concat(S[2]),S[2]=[],f.push(B);continue e}}}return f}},{"../../options/optimization-level":65,"../../tokenizer/token":84,"../../writer/one-time":98,"./extract-properties":22,"./reorderable":47,"./rules-overlap":51}],27:[function(e,t,n){function r(e){return/\.|\*| :/.test(e)}function o(e){var t=p(e[1]);return t.indexOf("__")>-1||t.indexOf("--")>-1}function i(e){return e.replace(/--[^ ,>\+~:]+/g,"")}function a(e,t){var n=i(p(e[1]));for(var r in t){var o=t[r],a=i(p(o[1]));(a.indexOf(n)>-1||n.indexOf(a)>-1)&&delete t[r]}}var s=e("./is-mergeable"),u=e("../level-1/sort-selectors"),l=e("../level-1/tidy-rules"),c=e("../../options/optimization-level").OptimizationLevel,f=e("../../writer/one-time").body,p=e("../../writer/one-time").rules,h=e("../../tokenizer/token");t.exports=function(e,t){for(var n=t.options,i=n.level[c.Two].mergeSemantically,d=n.compatibility.selectors.adjacentSpace,m=n.level[c.One].selectorsSortingMethod,g=n.compatibility.selectors.mergeablePseudoClasses,v=n.compatibility.selectors.mergeablePseudoElements,b=n.compatibility.selectors.multiplePseudoMerging,y={},_=e.length-1;_>=0;_--){var w=e[_];if(w[0]==h.RULE){w[2].length>0&&!i&&r(p(w[1]))&&(y={}),w[2].length>0&&i&&o(w)&&a(w,y);var E=f(w[2]),A=y[E];A&&s(p(w[1]),g,v,b)&&s(p(A[1]),g,v,b)&&(w[2].length>0?(w[1]=l(A[1].concat(w[1]),!1,d,!1,t.warnings),w[1]=w[1].length>1?u(w[1],m):w[1]):w[1]=A[1].concat(w[1]),A[2]=[],y[E]=null),y[f(w[2])]=w}}}},{"../../options/optimization-level":65,"../../tokenizer/token":84,"../../writer/one-time":98,"../level-1/sort-selectors":14,"../level-1/tidy-rules":17,"./is-mergeable":24}],28:[function(e,t,n){var r=e("./reorderable").canReorder,o=e("./extract-properties"),i=e("./properties/optimize"),a=e("../../writer/one-time").rules,s=e("../../tokenizer/token");t.exports=function(e,t){var n,u=t.cache.specificity,l={},c=[];for(n=e.length-1;n>=0;n--)if(e[n][0]==s.RULE&&0!==e[n][2].length){var f=a(e[n][1]);l[f]=[n].concat(l[f]||[]),2==l[f].length&&c.push(f)}for(n=c.length-1;n>=0;n--){var p=l[c[n]];e:for(var h=p.length-1;h>0;h--){var d=p[h-1],m=e[d],g=p[h],v=e[g];t:for(var b=1;b>=-1;b-=2){for(var y=1==b,_=y?d+1:g-1,w=y?g:d,E=y?1:-1,A=y?m:v,x=y?v:m,C=o(A);_!=w;){var k=o(e[_]);_+=E;var O=y?r(C,k,u):r(k,C,u);if(!O&&!y)continue e;if(!O&&y)continue t}y?(Array.prototype.push.apply(A[2],x[2]),x[2]=A[2]):Array.prototype.push.apply(x[2],A[2]),i(x[2],!0,!0,t),A[2]=[]}}}}},{"../../tokenizer/token":84,"../../writer/one-time":98,"./extract-properties":22,"./properties/optimize":36,"./reorderable":47}],29:[function(e,t,n){function r(e){for(var t=0,n=e.length;t=0;y--)a(v[y][2],t,!1);return _.removeEmpty&&r(e),e}var s=e("./merge-adjacent"),u=e("./merge-media-queries"),l=e("./merge-non-adjacent-by-body"),c=e("./merge-non-adjacent-by-selector"),f=e("./reduce-non-adjacent"),p=e("./remove-duplicate-font-at-rules"),h=e("./remove-duplicate-media-queries"),d=e("./remove-duplicates"),m=e("./remove-unused-at-rules"),g=e("./restructure"),v=e("./properties/optimize"),b=e("../../options/optimization-level").OptimizationLevel,y=e("../../tokenizer/token");t.exports=a},{"../../options/optimization-level":65,"../../tokenizer/token":84,"./merge-adjacent":25,"./merge-media-queries":26,"./merge-non-adjacent-by-body":27,"./merge-non-adjacent-by-selector":28,"./properties/optimize":36,"./reduce-non-adjacent":42,"./remove-duplicate-font-at-rules":43,"./remove-duplicate-media-queries":44,"./remove-duplicates":45,"./remove-unused-at-rules":46,"./restructure":50}],30:[function(e,t,n){var r=e("../../../tokenizer/marker");t.exports=function(e,t,n){var o,i,a,s=t.value.length,u=n.value.length,l=Math.max(s,u),c=Math.min(s,u)-1;for(a=0;a=0;t--)if("inherit"==e.value[t][1])return!0;return!1}},{}],33:[function(e,t,n){function r(e,t){var n=i[e.name];return"components"in n&&n.components.indexOf(t.name)>-1}function o(e,t){return e.components.some(function(e){return r(e,t)})}var i=e("../compactable");t.exports=function(e,t,n){return r(e,t)||!n&&!!i[e.name].shorthandComponents&&o(e,t)}},{"../compactable":21}],34:[function(e,t,n){var r=e("../../../tokenizer/marker");t.exports=function(e){return"font"!=e.name||-1==e.value[0][1].indexOf(r.INTERNAL)}},{"../../../tokenizer/marker":83}],35:[function(e,t,n){function r(e,t,n,r){var c,f,p,h=e[t];for(c in n)void 0!==h&&c==h.name||(f=_[c],p=n[c],h&&o(n,c,h)?delete n[c]:f.components.length>Object.keys(p).length||i(p)||a(p,c,r)&&s(p)&&(u(p)?l(e,p,c,r):g(e,p,c,r)))}function o(e,t,n){var r,o=_[t],i=_[n.name];if("overridesShorthands"in o&&o.overridesShorthands.indexOf(n.name)>-1)return!0;if(i&&"componentOf"in i)for(r in e[t])if(i.componentOf.indexOf(r)>-1)return!0;return!1}function i(e){var t,n;for(n in e){if(void 0!==t&&e[n].important!=t)return!0;t=e[n].important}return!1}function a(e,t,n){var r,o,i,a,s=_[t],u=[k.PROPERTY,[k.PROPERTY_NAME,t],[k.PROPERTY_VALUE,s.defaultValue]],l=x(u);for(y([l],n,[]),i=0,a=s.components.length;i=0&&(e[o].name!=n||e[o].unused||r++,!(r>1));o--);return r>1}function m(e,t){for(var n=0,r=e.components.length;n=0;T--)if(a=e[T],b(a)&&!a.block){i=B[a.name].canOverride;t:for(R=T-1;R>=0;R--)if(c=e[R],b(c)&&!c.block&&!c.unused&&!a.unused&&(!c.hack||a.hack||a.important)&&(c.hack||c.important||!a.hack)&&(c.important!=a.important||c.hack[0]==a.hack[0])&&!(c.important==a.important&&(c.hack[0]!=a.hack[0]||c.hack[1]&&c.hack[1]!=a.hack[1])||E(a)||y(c,a)))if(a.shorthand&&C(a,c)){if(!a.important&&c.important)continue;if(!S([c],a.components))continue;if(!g(o.isFunction,c)&&m(a,o))continue;if(!k(a)){c.unused=!0;continue}f=x(a,c),i=B[c.name].canOverride,A(i.bind(null,o),c,f)&&(c.unused=!0)}else if(a.shorthand&&O(a,c)){if(!a.important&&c.important)continue;if(!S([c],a.components))continue;if(!g(o.isFunction,c)&&m(a,o))continue;for(F=(h=c.shorthand?c.components:[c]).length-1;F>=0;F--)if(_=h[F],w=x(a,_),i=B[_.name].canOverride,!A(i.bind(null,o),c,w))continue t;c.unused=!0}else if(t&&c.shorthand&&!a.shorthand&&C(c,a,!0)){if(a.important&&!c.important)continue;if(!a.important&&c.important){a.unused=!0;continue}if(d(e,T-1,c.name))continue;if(m(c,o))continue;if(!k(c))continue;if(f=x(c,a),A(i.bind(null,o),f,a)){var L=!n.properties.backgroundClipMerging&&f.name.indexOf("background-clip")>-1||!n.properties.backgroundOriginMerging&&f.name.indexOf("background-origin")>-1||!n.properties.backgroundSizeMerging&&f.name.indexOf("background-size")>-1,M=B[a.name].nonMergeableValue===a.value[0][1];if(L||M)continue;if(!n.properties.merging&&r(c,o))continue;if(f.value[0][1]!=a.value[0][1]&&(E(c)||E(a)))continue;if(v(c,a))continue;!c.multiplex&&a.multiplex&&l(c,p(a)),s(f,a),c.dirty=!0}}else if(t&&c.shorthand&&a.shorthand&&c.name==a.name){if(!c.multiplex&&a.multiplex)continue;if(!a.important&&c.important){a.unused=!0;continue e}if(a.important&&!c.important){c.unused=!0;continue}if(!k(a)){c.unused=!0;continue}for(F=c.components.length-1;F>=0;F--){var U=c.components[F],N=a.components[F];if(i=B[U.name].canOverride,!A(i.bind(null,o),U,N))continue e}u(c,a),c.dirty=!0}else if(t&&c.shorthand&&a.shorthand&&C(c,a)){if(!c.important&&a.important)continue;if(f=x(c,a),i=B[a.name].canOverride,!A(i.bind(null,o),f,a))continue;if(c.important&&!a.important){a.unused=!0;continue}if(B[a.name].restore(a,B).length>1)continue;s(f=x(c,a),a),a.dirty=!0}else if(c.name==a.name){if(D=!0,a.shorthand)for(F=a.components.length-1;F>=0&&D;F--)_=c.components[F],w=a.components[F],i=B[w.name].canOverride,D=D&&A(i.bind(null,o),_,w);else i=B[a.name].canOverride,D=A(i.bind(null,o),c,a);if(c.important&&!a.important&&D){a.unused=!0;continue}if(!c.important&&a.important&&D){c.unused=!0;continue}if(!D)continue;c.unused=!0}}}},{"../../../tokenizer/marker":83,"../../../tokenizer/token":84,"../../../writer/one-time":98,"../../restore-from-optimizing":56,"../clone":20,"../compactable":21,"../restore-with-components":48,"./every-values-pair":30,"./find-component-in":31,"./has-inherit":32,"./is-component-of":33,"./is-mergeable-shorthand":34,"./overrides-non-component-shorthand":38,"./vendor-prefixes":41}],38:[function(e,t,n){var r=e("../compactable");t.exports=function(e,t){return e.name in r&&"overridesShorthands"in r[e.name]&&r[e.name].overridesShorthands.indexOf(t.name)>-1}},{"../compactable":21}],39:[function(e,t,n){var r=e("../compactable"),o=e("../invalid-property-error");t.exports=function(e,t,n){for(var i,a,s,u=e.length-1;u>=0;u--){var l=e[u],c=r[l.name];if(c&&c.shorthand){l.shorthand=!0,l.dirty=!0;try{if(l.components=c.breakUp(l,r,t),c.shorthandComponents)for(a=0,s=l.components.length;a0?l.multiplex=l.components[0].multiplex:l.unused=!0}}}},{"../compactable":21,"../invalid-property-error":23}],40:[function(e,t,n){var r=e("./vendor-prefixes").same;t.exports=function(e,t,n,o,i){return!(!r(t,n)||i&&e.isVariable(t)!==e.isVariable(n))}},{"./vendor-prefixes":41}],41:[function(e,t,n){function r(e){for(var t,n=[];null!==(t=o.exec(e));)-1==n.indexOf(t[0])&&n.push(t[0]);return n}var o=/(?:^|\W)(\-\w+\-)/g;t.exports={unique:r,same:function(e,t){return r(e).sort().join(",")==r(t).sort().join(",")}}},{}],42:[function(e,t,n){function r(e){for(var t=[],n=0;n=0;c--)if(!n.filterOut(c,i)){var f=t[c].where,p=e[f],h=l(p[2]);i=i.concat(h),a.push(h),s.push(f)}u(i,!0,!1,o);for(var d=s.length,m=i.length-1,g=d-1;g>=0;)if((0===g||i[m]&&a[g].indexOf(i[m])>-1)&&m>-1)m--;else{var v=i.splice(m+1);n.callback(e[s[g]],v,d,g),g--}}var s=e("./is-mergeable"),u=e("./properties/optimize"),l=e("../../utils/clone-array"),c=e("../../tokenizer/token"),f=e("../../writer/one-time").body,p=e("../../writer/one-time").rules;t.exports=function(e,t){for(var n=t.options,a=n.compatibility.selectors.mergeablePseudoClasses,u=n.compatibility.selectors.mergeablePseudoElements,l=n.compatibility.selectors.multiplePseudoMerging,f={},h=[],d=e.length-1;d>=0;d--){var m=e[d];if(m[0]==c.RULE&&0!==m[2].length)for(var g=p(m[1]),v=m[1].length>1&&s(g,a,u,l),b=r(m[1]),y=v?[g].concat(b):[g],_=0,w=y.length;_0,isComplex:v&&0===_})}}o(e,h,f,n,t),i(e,f,n,t)}},{"../../tokenizer/token":84,"../../utils/clone-array":86,"../../writer/one-time":98,"./is-mergeable":24,"./properties/optimize":36}],43:[function(e,t,n){var r=e("../../tokenizer/token"),o=e("../../writer/one-time").all,i="@font-face";t.exports=function(e){var t,n,a,s,u=[];for(a=0,s=e.length;a-1?t[2]=[]:u.push(n))}},{"../../tokenizer/token":84,"../../writer/one-time":98}],44:[function(e,t,n){var r=e("../../tokenizer/token"),o=e("../../writer/one-time").all,i=e("../../writer/one-time").rules;t.exports=function(e){var t,n,a,s,u,l={};for(s=0,u=e.length;s=0;p--)n=e[u[t][p]],a=o(n[2]),s.indexOf(a)>-1?n[2]=[]:s.push(a)}}},{"../../tokenizer/token":84,"../../writer/one-time":98}],46:[function(e,t,n){function r(e,t,n,r){var i,a,s,u,l,c={};for(u=0,l=e.length;u=0;o--)for(var i=e.length-1;i>=0;i--)if(!r(e[i],t[o],n))return!1;return!0},canReorderSingle:r}},{"./rules-overlap":51,"./specificities-overlap":52}],48:[function(e,t,n){var r=e("./compactable");t.exports=function(e){var t=r[e.name];return t&&t.shorthand?t.restore(e,r):e.value}},{"./compactable":21}],49:[function(e,t,n){function r(e){for(var t=0,n=e.length;t=0;p--){var h=c[p],d=i(h);if("background-clip"==h.name){var m=c[p-1],g=i(m);l=!(u=h.value[0][1]==m.value[0][1])&&(g&&!d||!g&&!d||!g&&d&&h.value[0][1]!=m.value[0][1]),u?o(m):l&&(o(h),o(m)),p--}else if("background-size"==h.name){var v=c[p-1],b=i(v);l=!(u=!b&&d)&&(b&&!d||!b&&!d),u?o(v):l?(o(h),f.unshift([a.PROPERTY_VALUE,s.FORWARD_SLASH]),o(v)):1==v.value.length&&o(v),p--}else{if(d||t[h.name].multiplexLastOnly&&!n)continue;o(h)}}return 0===f.length&&1==e.value.length&&"0"==e.value[0][1]&&f.push(e.value[0]),0===f.length&&f.push([a.PROPERTY_VALUE,t[e.name].defaultValue]),r(f)?[f[0]]:f},borderRadius:function(e,t){if(e.multiplex){for(var n=i(e),r=i(e),u=0;u<4;u++){var l=e.components[u],c=i(e);c.value=[l.value[0]],n.components.push(c);var f=i(e);f.value=[l.value[1]||l.value[0]],r.components.push(f)}var p=o(n),h=o(r);return p.length!=h.length||p[0][1]!=h[0][1]||p.length>1&&p[1][1]!=h[1][1]||p.length>2&&p[2][1]!=h[2][1]||p.length>3&&p[3][1]!=h[3][1]?p.concat([[a.PROPERTY_VALUE,s.FORWARD_SLASH]]).concat(h):p}return o(e)},font:function(e,t){var n,o=e.components,i=[],u=0,l=0;if(0===e.value[0][1].indexOf(s.INTERNAL))return e.value[0][1]=e.value[0][1].substring(s.INTERNAL.length),e.value;for(;u<4;)(n=o[u]).value[0][1]!=t[n.name].defaultValue&&Array.prototype.push.apply(i,n.value),u++;for(Array.prototype.push.apply(i,o[u].value),o[++u].value[0][1]!=t[o[u].name].defaultValue&&(Array.prototype.push.apply(i,[[a.PROPERTY_VALUE,s.FORWARD_SLASH]]),Array.prototype.push.apply(i,o[u].value)),u++;o[u].value[l];)i.push(o[u].value[l]),o[u].value[l+1]&&i.push([a.PROPERTY_VALUE,s.COMMA]),l++;return r(i)?[i[0]]:i},fourValues:o,multiplex:function(e){return function(t,n){if(!t.multiplex)return e(t,n,!0);var r,o,u=0,l=[],c={};for(r=0,o=t.components[0].value.length;r=0;i--){var s=n[i],u=t[s.name];s.value[0][1]!=u.defaultValue&&o.unshift(s.value[0])}return 0===o.length&&o.push([a.PROPERTY_VALUE,t[e.name].defaultValue]),r(o)?[o[0]]:o}}},{"../../tokenizer/marker":83,"../../tokenizer/token":84,"./clone":20}],50:[function(e,t,n){function r(e,t){return e>t?1:-1}function o(e,t){var n=c(e);return n[5]=n[5].concat(t[5]),n}var i=e("./reorderable").canReorderSingle,a=e("./extract-properties"),s=e("./is-mergeable"),u=e("./tidy-rule-duplicates"),l=e("../../tokenizer/token"),c=e("../../utils/clone-array"),f=e("../../writer/one-time").body,p=e("../../writer/one-time").rules;t.exports=function(e,t){function n(e,t,n){for(var r=n.length-1;r>=0;r--){var o=c(t,n[r][0]);if(F[o].length>1&&x(e,F[o])){h(o);break}}}function c(e,t){var n=d(t);return F[n]=F[n]||[],F[n].push([e,t]),n}function h(e){var t,n=e.split(U),r=[];for(var o in F){var i=o.split(U);for(t=i.length-1;t>=0;t--)if(n.indexOf(i[t])>-1){r.push(o);break}}for(t=r.length-1;t>=0;t--)delete F[r[t]]}function d(e){for(var t=[],n=0,r=e.length;n=0;r--)s(p(e[r][1]),k,O,B)&&(n.unshift(e[r]),e[r][2].length>0&&-1==t.indexOf(e[r])&&t.push(e[r]));return t.length>1?n:[]}function g(e,t){var r=t[0],o=t[1],i=t[4],a=r.length+o.length+1,s=[],l=[],c=m(T[i]);if(!(c.length<2)){var f=b(c,a,1),p=f[0];if(p[1]>0)return n(e,t,f);for(var h=p[0].length-1;h>=0;h--)s=p[0][h][1].concat(s),l.unshift(p[0][h]);w(e,[t],s=u(s),l)}}function v(e,t){return e[1]>t[1]?1:e[1]==t[1]?0:-1}function b(e,t,n){return y(e,t,n,M-1).sort(v)}function y(e,t,n,r){var o=[[e,_(e,t,n)]];if(e.length>2&&r>0)for(var i=e.length-1;i>=0;i--){var a=Array.prototype.slice.call(e,0);a.splice(i,1),o=o.concat(y(a,t,n,r-1))}return o}function _(e,t,n){for(var r=0,o=e.length-1;o>=0;o--)r+=e[o][2].length>n?p(e[o][1]).length:-1;return r-(e.length-1)*t+1}function w(t,n,r,o){var i,a,s,u,c=[];for(i=o.length-1;i>=0;i--){var p=o[i];for(a=p[2].length-1;a>=0;a--){var h=p[2][a];for(s=0,u=n.length;s=0;i--)c.unshift(n[i][3]);var b=[l.RULE,r,c];e.splice(t,0,b)}function E(e,t){var n=t[4],r=T[n];r&&r.length>1&&(A(e,t)||g(e,t))}function A(e,t){var n,r,o=[],i=[],a=t[4],s=m(T[a]);if(!(s.length<2)){e:for(var u in T){var l=T[u];for(n=s.length-1;n>=0;n--)if(-1==l.indexOf(s[n]))continue e;o.push(u)}if(o.length<2)return!1;for(n=o.length-1;n>=0;n--)for(r=R.length-1;r>=0;r--)if(R[r][4]==o[n]){i.unshift([R[r],s]);break}return x(e,i)}}function x(e,t){for(var n,r=0,o=[],i=t.length-1;i>=0;i--)r+=(n=t[i][0])[4].length+(i>0?1:0),o.push(n);var a=b(t[0][1],r,o.length)[0];if(a[1]>0)return!1;var s=[],l=[];for(i=a[0].length-1;i>=0;i--)s=a[0][i][1].concat(s),l.unshift(a[0][i]);for(w(e,o,s=u(s),l),i=o.length-1;i>=0;i--){n=o[i];var c=R.indexOf(n);delete T[n[4]],c>-1&&-1==L.indexOf(c)&&L.push(c)}return!0}for(var C=t.options,k=C.compatibility.selectors.mergeablePseudoClasses,O=C.compatibility.selectors.mergeablePseudoElements,S=C.compatibility.selectors.mergeLimit,B=C.compatibility.selectors.multiplePseudoMerging,D=t.cache.specificity,T={},R=[],F={},L=[],M=2,U="%",N=e.length-1;N>=0;N--){var P,q,z,I,j,V=e[N];if(V[0]==l.RULE)P=!0;else{if(V[0]!=l.NESTED_BLOCK)continue;P=!1}var $=R.length,H=a(V);L=[];var K=[];for(q=H.length-1;q>=0;q--)for(z=q-1;z>=0;z--)if(!i(H[q],H[z],D)){K.push(q);break}for(q=H.length-1;q>=0;q--){var G=H[q],Y=!1;for(z=0;z<$;z++){var W=R[z];-1==L.indexOf(z)&&(!i(G,W,D)&&!function(e,t,n){if(e[0]!=t[0])return!1;var r=t[4],o=T[r];return o&&o.indexOf(n)>-1}(G,W,V)||T[W[4]]&&T[W[4]].length===S)&&(E(N+1,W),-1==L.indexOf(z)&&(L.push(z),delete T[W[4]])),Y||(Y=G[0]==W[0]&&G[1]==W[1])&&(j=z)}if(P&&!(K.indexOf(q)>-1)){var Q=G[4];Y&&R[j][5].length+G[5].length>S?(E(N+1,R[j]),R.splice(j,1),T[Q]=[V],Y=!1):(T[Q]=T[Q]||[],T[Q].push(V)),Y?R[j]=o(R[j],G):R.push(G)}}for(q=0,I=(L=L.sort(r)).length;q",DOT:".",HASH:"#",NON_ADJACENT_SIBLING:"~",PSEUDO:":"},a=/[a-zA-Z]/,s=":not(",u=/[\s,\(>~\+]/;t.exports=function(e){var t,n,s,l,c,f,p,h=[0,0,0],d=0,m=!1,g=!1;for(f=0,p=e.length;f0&&!m||(t==o.OPEN_ROUND_BRACKET?d++:t==o.CLOSE_ROUND_BRACKET&&1==d?(d--,m=!1):t==o.CLOSE_ROUND_BRACKET?d--:t==i.HASH?h[0]++:t==i.DOT||t==o.OPEN_SQUARE_BRACKET?h[1]++:t!=i.PSEUDO||g||r(e,f)?t==i.PSEUDO?m=!0:(0===f||c)&&a.test(t)&&h[2]++:(h[1]++,m=!1))}else l=!0;else s=!0;n=t==o.BACK_SLASH,g=t==i.PSEUDO,c=!n&&u.test(t)}return h}},{"../../tokenizer/marker":83}],54:[function(e,t,n){function r(e,t){return e[1]>t[1]?1:-1}t.exports=function(e){for(var t=[],n=[],o=0,i=e.length;o=0;t--){var n=e[t];n.unused&&n.all.splice(n.position,1)}}},{}],56:[function(e,t,n){function r(e){e.value[e.value.length-1][1]+=l}function o(e){e.hack[0]==i.UNDERSCORE?e.name=c+e.name:e.hack[0]==i.ASTERISK?e.name=s+e.name:e.hack[0]==i.BACKSLASH?e.value[e.value.length-1][1]+=u+e.hack[1]:e.hack[0]==i.BANG&&(e.value[e.value.length-1][1]+=a.SPACE+f)}var i=e("./hack"),a=e("../tokenizer/marker"),s="*",u="\\",l="!important",c="_",f="!ie";t.exports=function(e,t){var n,i,a,s;for(s=e.length-1;s>=0;s--)(n=e[s]).unused||(n.dirty||n.important||n.hack)&&(t?(i=t(n),n.value=i):i=n.value,n.important&&r(n),n.hack&&o(n),"all"in n&&((a=n.all[n.position])[1][1]=n.name,a.splice(2,a.length-1),Array.prototype.push.apply(a,i)))}},{"../tokenizer/marker":83,"./hack":8}],57:[function(e,t,n){function r(){var e=p("animation-timing-function");return function(t){return e(t)||A.test(t)}}function o(e){return"auto"!=e&&(p("color")(e)||u(e)||i(e)||h(e))}function i(e){return m(e)||l(e)}function a(e){return x.test(e)}function s(e){return C.test(e)}function u(e){return R.test(e)||S.test(e)}function l(e){return k.test(e)}function c(e){return O.test(e)}function f(e){return"none"==e||"inherit"==e||w(e)}function p(e){return function(t){return U[e].indexOf(t)>-1}}function h(e){return B.test(e)}function d(e){return e.length>0&&""+parseFloat(e)===e}function m(e){return T.test(e)}function g(e){return D.test(e)}function v(e){return d(e)&&parseFloat(e)>=0}function b(e){return M.test(e)}function y(e){return F.test(e)}function _(e,t){return e.test(t)}function w(e){return L.test(e)}function E(e){return"auto"==e||d(e)||p("^")(e)}var A=/^(cubic\-bezier|steps)\([^\)]+\)$/,x=new RegExp("^(\\-moz\\-|\\-webkit\\-)?calc\\([^\\)]+\\)$","i"),C=new RegExp("^(var\\(\\-\\-[^\\)]+\\)|[A-Z]+(\\-|[A-Z]|[0-9])+\\(.*?\\)|\\-(\\-|[A-Z]|[0-9])+\\(.*?\\))$","i"),k=/^hsl\(\s*[\-\.\d]+\s*,\s*[\.\d]+%\s*,\s*[\.\d]+%\s*\)|hsla\(\s*[\-\.\d]+\s*,\s*[\.\d]+%\s*,\s*[\.\d]+%\s*,\s*[\.\d]+\s*\)$/,O=/^(\-[a-z0-9_][a-z0-9\-_]*|[a-z][a-z0-9\-_]*)$/i,S=/^#[0-9a-f]{6}$/i,B=/^[a-z]+$/i,D=/^-([a-z0-9]|-)*$/i,T=/^rgb\(\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*\)|rgba\(\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*,\s*[\d]{1,3}\s*,\s*[\.\d]+\s*\)$/,R=/^#[0-9a-f]{3}$/i,F=new RegExp("^(\\-?\\+?\\.?\\d+\\.?\\d*(s|ms))$"),L=/^url\([\s\S]+\)$/i,M=new RegExp("^var\\(\\-\\-[^\\)]+\\)$","i"),U={"^":["inherit","initial","unset"],"*-style":["auto","dashed","dotted","double","groove","hidden","inset","none","outset","ridge","solid"],"animation-direction":["alternate","alternate-reverse","normal","reverse"],"animation-fill-mode":["backwards","both","forwards","none"],"animation-iteration-count":["infinite"],"animation-name":["none"],"animation-play-state":["paused","running"],"animation-timing-function":["ease","ease-in","ease-in-out","ease-out","linear","step-end","step-start"],"background-attachment":["fixed","inherit","local","scroll"],"background-clip":["border-box","content-box","inherit","padding-box","text"],"background-origin":["border-box","content-box","inherit","padding-box"],"background-position":["bottom","center","left","right","top"],"background-repeat":["no-repeat","inherit","repeat","repeat-x","repeat-y","round","space"],"background-size":["auto","cover","contain"],"border-collapse":["collapse","inherit","separate"],bottom:["auto"],clear:["both","left","none","right"],color:["transparent"],cursor:["all-scroll","auto","col-resize","crosshair","default","e-resize","help","move","n-resize","ne-resize","no-drop","not-allowed","nw-resize","pointer","progress","row-resize","s-resize","se-resize","sw-resize","text","vertical-text","w-resize","wait"],display:["block","inline","inline-block","inline-table","list-item","none","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group"],float:["left","none","right"],left:["auto"],font:["caption","icon","menu","message-box","small-caption","status-bar","unset"],"font-size":["large","larger","medium","small","smaller","x-large","x-small","xx-large","xx-small"],"font-stretch":["condensed","expanded","extra-condensed","extra-expanded","normal","semi-condensed","semi-expanded","ultra-condensed","ultra-expanded"],"font-style":["italic","normal","oblique"],"font-variant":["normal","small-caps"],"font-weight":["100","200","300","400","500","600","700","800","900","bold","bolder","lighter","normal"],"line-height":["normal"],"list-style-position":["inside","outside"],"list-style-type":["armenian","circle","decimal","decimal-leading-zero","disc","decimal|disc","georgian","lower-alpha","lower-greek","lower-latin","lower-roman","none","square","upper-alpha","upper-latin","upper-roman"],overflow:["auto","hidden","scroll","visible"],position:["absolute","fixed","relative","static"],right:["auto"],"text-align":["center","justify","left","left|right","right"],"text-decoration":["line-through","none","overline","underline"],"text-overflow":["clip","ellipsis"],top:["auto"],"vertical-align":["baseline","bottom","middle","sub","super","text-bottom","text-top","top"],visibility:["collapse","hidden","visible"],"white-space":["normal","nowrap","pre"],width:["inherit","initial","medium","thick","thin"]},N=["%","ch","cm","em","ex","in","mm","pc","pt","px","rem","vh","vm","vmax","vmin","vw"];t.exports=function(e){var t=N.slice(0).filter(function(t){return!(t in e.units)||!0===e.units[t]}),n=new RegExp("^(\\-?\\.?\\d+\\.?\\d*("+t.join("|")+"|)|auto|inherit)$","i");return{colorOpacity:e.colors.opacity,isAnimationDirectionKeyword:p("animation-direction"),isAnimationFillModeKeyword:p("animation-fill-mode"),isAnimationIterationCountKeyword:p("animation-iteration-count"),isAnimationNameKeyword:p("animation-name"),isAnimationPlayStateKeyword:p("animation-play-state"),isAnimationTimingFunction:r(),isBackgroundAttachmentKeyword:p("background-attachment"),isBackgroundClipKeyword:p("background-clip"),isBackgroundOriginKeyword:p("background-origin"),isBackgroundPositionKeyword:p("background-position"),isBackgroundRepeatKeyword:p("background-repeat"),isBackgroundSizeKeyword:p("background-size"),isColor:o,isColorFunction:i,isDynamicUnit:a,isFontKeyword:p("font"),isFontSizeKeyword:p("font-size"),isFontStretchKeyword:p("font-stretch"),isFontStyleKeyword:p("font-style"),isFontVariantKeyword:p("font-variant"),isFontWeightKeyword:p("font-weight"),isFunction:s,isGlobal:p("^"),isHslColor:l,isIdentifier:c,isImage:f,isKeyword:p,isLineHeightKeyword:p("line-height"),isListStylePositionKeyword:p("list-style-position"),isListStyleTypeKeyword:p("list-style-type"),isPrefixed:g,isPositiveNumber:v,isRgbColor:m,isStyleKeyword:p("*-style"),isTime:y,isUnit:_.bind(null,n),isUrl:w,isVariable:b,isWidth:p("width"),isZIndex:E}}},{}],58:[function(e,t,n){function r(e){var t,n,r;for(t=2,n=e.length;t0&&!r[1].match(m.IMPORTANT_WORD_PATTERN)&&m.BANG_SUFFIX_PATTERN.test(r[1])?t=[p.BANG]:r[1].indexOf(m.BACKSLASH)>0&&r[1].indexOf(m.BACKSLASH)==r[1].length-m.BACKSLASH.length-1?t=[p.BACKSLASH,r[1].substring(r[1].indexOf(m.BACKSLASH)+1)]:0===r[1].indexOf(m.BACKSLASH)&&2==r[1].length&&(t=[p.BACKSLASH,r[1].substring(1)]):t=[p.BANG],t}function s(e){if(e.length<3)return!1;var t=e[e.length-1];return!!m.IMPORTANT_TOKEN_PATTERN.test(t[1])||!(!m.IMPORTANT_WORD_PATTERN.test(t[1])||!m.SUFFIX_BANG_PATTERN.test(e[e.length-2][1]))}function u(e){var t=e[e.length-1],n=e[e.length-2];m.IMPORTANT_TOKEN_PATTERN.test(t[1])?t[1]=t[1].replace(m.IMPORTANT_TOKEN_PATTERN,""):(t[1]=t[1].replace(m.IMPORTANT_WORD_PATTERN,""),n[1]=n[1].replace(m.SUFFIX_BANG_PATTERN,"")),0===t[1].length&&e.pop(),0===n[1].length&&e.pop()}function l(e){e[1][1]=e[1][1].substring(1)}function c(e,t){var n=e[e.length-1];n[1]=n[1].substring(0,n[1].indexOf(t[0]==p.BACKSLASH?m.BACKSLASH:m.BANG)).trim(),0===n[1].length&&e.pop()}function f(e){var t=s(e);t&&u(e);var n=a(e);return n[0]==p.ASTERISK||n[0]==p.UNDERSCORE?l(e):n[0]!=p.BACKSLASH&&n[0]!=p.BANG||c(e,n),{block:e[2]&&e[2][0]==d.PROPERTY_BLOCK,components:[],dirty:!1,hack:n,important:t,name:e[1][1],multiplex:e.length>3&&i(e),position:0,shorthand:!1,unused:!1,value:e.slice(2)}}var p=e("./hack"),h=e("../tokenizer/marker"),d=e("../tokenizer/token"),m={ASTERISK:"*",BACKSLASH:"\\",BANG:"!",BANG_SUFFIX_PATTERN:/!\w+$/,IMPORTANT_TOKEN:"!important",IMPORTANT_TOKEN_PATTERN:new RegExp("!important$","i"),IMPORTANT_WORD:"important",IMPORTANT_WORD_PATTERN:new RegExp("important$","i"),SUFFIX_BANG_PATTERN:/!$/,UNDERSCORE:"_",VARIABLE_REFERENCE_PATTERN:/var\(--.+\)$/};t.exports={all:function(e,t,n){var o,i,a,s=[];for(a=e.length-1;a>=0;a--)(i=e[a])[0]==d.PROPERTY&&(!t&&r(i)||n&&n.indexOf(i[1][1])>-1||((o=f(i)).all=e,o.position=a,s.unshift(o)));return s},single:f}},{"../tokenizer/marker":83,"../tokenizer/token":84,"./hack":8}],59:[function(e,t,n){function r(e,t){for(var n in e){var o=e[n];"object"!=typeof o||Array.isArray(o)?t[n]=n in t?t[n]:o:t[n]=r(o,t[n]||{})}return t}function o(e){if("object"==typeof e)return e;if(!/[,\+\-]/.test(e))return i[e]||i["*"];var t=e.split(","),n=t[0]in i?i[t.shift()]:i["*"];return e={},t.forEach(function(t){var n="+"==t[0],r=t.substring(1).split("."),o=r[0],i=r[1];e[o]=e[o]||{},e[o][i]=n}),r(n,e)}var i={"*":{colors:{opacity:!0},properties:{backgroundClipMerging:!0,backgroundOriginMerging:!0,backgroundSizeMerging:!0,colors:!0,ieBangHack:!1,ieFilters:!1,iePrefixHack:!1,ieSuffixHack:!1,merging:!0,shorterLengthUnits:!1,spaceAfterClosingBrace:!0,urlQuotes:!1,zeroUnits:!0},selectors:{adjacentSpace:!1,ie7Hack:!1,mergeablePseudoClasses:[":active",":after",":before",":empty",":checked",":disabled",":empty",":enabled",":first-child",":first-letter",":first-line",":first-of-type",":focus",":hover",":lang",":last-child",":last-of-type",":link",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type",":only-child",":only-of-type",":root",":target",":visited"],mergeablePseudoElements:["::after","::before","::first-letter","::first-line"],mergeLimit:8191,multiplePseudoMerging:!0},units:{ch:!0,in:!0,pc:!0,pt:!0,rem:!0,vh:!0,vm:!0,vmax:!0,vmin:!0,vw:!0}}};i.ie11=i["*"],i.ie10=i["*"],i.ie9=r(i["*"],{properties:{ieFilters:!0,ieSuffixHack:!0}}),i.ie8=r(i.ie9,{colors:{opacity:!1},properties:{backgroundClipMerging:!1,backgroundOriginMerging:!1,backgroundSizeMerging:!1,iePrefixHack:!0,merging:!1},selectors:{mergeablePseudoClasses:[":after",":before",":first-child",":first-letter",":focus",":hover",":visited"],mergeablePseudoElements:[]},units:{ch:!1,rem:!1,vh:!1,vm:!1,vmax:!1,vmin:!1,vw:!1}}),i.ie7=r(i.ie8,{properties:{ieBangHack:!0},selectors:{ie7Hack:!0,mergeablePseudoClasses:[":first-child",":first-letter",":hover",":visited"]}}),t.exports=function(e){return r(i["*"],o(e))}},{}],60:[function(e,t,n){var r=e("../reader/load-remote-resource");t.exports=function(e){return e||r}},{"../reader/load-remote-resource":74}],61:[function(e,t,n){function r(e){var t={};return t[c.AfterAtRule]=e,t[c.AfterBlockBegins]=e,t[c.AfterBlockEnds]=e,t[c.AfterComment]=e,t[c.AfterProperty]=e,t[c.AfterRuleBegins]=e,t[c.AfterRuleEnds]=e,t[c.BeforeBlockEnds]=e,t[c.BetweenSelectors]=e,t}function o(e){var t={};return t[p.AroundSelectorRelation]=e,t[p.BeforeBlockBegins]=e,t[p.BeforeValue]=e,t}function i(e){return e.split(g).reduce(function(e,t){var n=t.split(v),r=n[0],o=n[1];return"breaks"==r||"spaces"==r?e[r]=a(o):"indentBy"==r||"wrapAt"==r?e[r]=parseInt(o):"indentWith"==r&&(e[r]=u(o)),e},{})}function a(e){return e.split(b).reduce(function(e,t){var n=t.split(y),r=n[0],o=n[1];return e[r]=s(o),e},{})}function s(e){switch(e){case _:case w:return!1;case E:case A:return!0;default:return e}}function u(e){switch(e){case"space":return f.Space;case"tab":return f.Tab;default:return e}}var l=e("../utils/override"),c={AfterAtRule:"afterAtRule",AfterBlockBegins:"afterBlockBegins",AfterBlockEnds:"afterBlockEnds",AfterComment:"afterComment",AfterProperty:"afterProperty",AfterRuleBegins:"afterRuleBegins",AfterRuleEnds:"afterRuleEnds",BeforeBlockEnds:"beforeBlockEnds",BetweenSelectors:"betweenSelectors"},f={Space:" ",Tab:"\t"},p={AroundSelectorRelation:"aroundSelectorRelation",BeforeBlockBegins:"beforeBlockBegins",BeforeValue:"beforeValue"},h={breaks:r(!1),indentBy:0,indentWith:f.Space,spaces:o(!1),wrapAt:!1},d="beautify",m="keep-breaks",g=";",v=":",b=",",y="=",_="false",w="off",E="true",A="on";t.exports={Breaks:c,Spaces:p,formatFrom:function(e){return void 0!==e&&!1!==e&&("object"==typeof e&&"indentBy"in e&&(e=l(e,{indentBy:parseInt(e.indentBy)})),"object"==typeof e&&"indentWith"in e&&(e=l(e,{indentWith:u(e.indentWith)})),"object"==typeof e?l(h,e):"object"==typeof e?l(h,e):"string"==typeof e&&e==d?l(h,{breaks:r(!0),indentBy:2,spaces:o(!0)}):"string"==typeof e&&e==m?l(h,{breaks:{afterAtRule:!0,afterBlockBegins:!0,afterBlockEnds:!0,afterComment:!0,afterRuleEnds:!0,beforeBlockEnds:!0}}):"string"==typeof e?l(h,i(e)):h)}}},{"../utils/override":95}],62:[function(e,t,n){(function(n){function r(e){return e?{hostname:o.parse(e).hostname,port:parseInt(o.parse(e).port)}:{}}var o=e("url"),i=e("../utils/override");t.exports=function(e){return i(r(n.env.HTTP_PROXY||n.env.http_proxy),e||{})}}).call(this,e("_process"))},{"../utils/override":95,_process:113,url:162}],63:[function(e,t,n){var r=5e3;t.exports=function(e){return e||r}},{}],64:[function(e,t,n){t.exports=function(e){return Array.isArray(e)?e:!1===e?["none"]:void 0===e?["local"]:e.split(",")}},{}],65:[function(e,t,n){function r(e,t){var n,r=u(c[e],{});for(n in r)"boolean"==typeof r[n]&&(r[n]=t);return r}function o(e){switch(e){case h:case d:return!1;case m:case g:return!0;default:return e}}function i(e){var t,n,r=u(e,{});for(n=0;n<=2;n++)(t=""+n)in r&&(void 0===r[t]||!1===r[t])&&delete r[t],t in r&&!0===r[t]&&(r[t]={}),t in r&&"string"==typeof r[t]&&(r[t]=a(r[t],t));return r}function a(e,t){return e.split(b).reduce(function(e,n){var i=n.split(y),a=i[0],s=o(i[1]);return f==a||p==a?e=u(e,r(t,s)):e[a]=s,e},{})}var s=e("./rounding-precision").roundingPrecisionFrom,u=e("../utils/override"),l={Zero:"0",One:"1",Two:"2"},c={};c[l.Zero]={},c[l.One]={cleanupCharsets:!0,normalizeUrls:!0,optimizeBackground:!0,optimizeBorderRadius:!0,optimizeFilter:!0,optimizeFontWeight:!0,optimizeOutline:!0,removeEmpty:!0,removeNegativePaddings:!0,removeQuotes:!0,removeWhitespace:!0,replaceMultipleZeros:!0,replaceTimeUnits:!0,replaceZeroUnits:!0,roundingPrecision:s(void 0),selectorsSortingMethod:"standard",specialComments:"all",tidyAtRules:!0,tidyBlockScopes:!0,tidySelectors:!0,transform:function(){}},c[l.Two]={mergeAdjacentRules:!0,mergeIntoShorthands:!0,mergeMedia:!0,mergeNonAdjacentRules:!0,mergeSemantically:!1,overrideProperties:!0,removeEmpty:!0,reduceNonAdjacentRules:!0,removeDuplicateFontRules:!0,removeDuplicateMediaBlocks:!0,removeDuplicateRules:!0,removeUnusedAtRules:!1,restructureRules:!1,skipProperties:[]};var f="*",p="all",h="false",d="off",m="true",g="on",v=",",b=";",y=":";t.exports={OptimizationLevel:l,optimizationLevelFrom:function(e){var t=u(c,{}),n=l.Zero,a=l.One,h=l.Two;return void 0===e?(delete t[h],t):("string"==typeof e&&(e=parseInt(e)),"number"==typeof e&&e===parseInt(h)?t:"number"==typeof e&&e===parseInt(a)?(delete t[h],t):"number"==typeof e&&e===parseInt(n)?(delete t[h],delete t[a],t):("object"==typeof e&&(e=i(e)),a in e&&"roundingPrecision"in e[a]&&(e[a].roundingPrecision=s(e[a].roundingPrecision)),h in e&&"skipProperties"in e[h]&&"string"==typeof e[h].skipProperties&&(e[h].skipProperties=e[h].skipProperties.split(v)),(n in e||a in e||h in e)&&(t[n]=u(t[n],e[n])),a in e&&f in e[a]&&(t[a]=u(t[a],r(a,o(e[a][f]))),delete e[a][f]),a in e&&p in e[a]&&(t[a]=u(t[a],r(a,o(e[a][p]))),delete e[a][p]),a in e||h in e?t[a]=u(t[a],e[a]):delete t[a],h in e&&f in e[h]&&(t[h]=u(t[h],r(h,o(e[h][f]))),delete e[h][f]),h in e&&p in e[h]&&(t[h]=u(t[h],r(h,o(e[h][p]))),delete e[h][p]),h in e?t[h]=u(t[h],e[h]):delete t[h],t))}}},{"../utils/override":95,"./rounding-precision":68}],66:[function(e,t,n){(function(n){var r=e("path");t.exports=function(e){return e?r.resolve(e):n.cwd()}}).call(this,e("_process"))},{_process:113,path:111}],67:[function(e,t,n){t.exports=function(e){return void 0===e||!!e}},{}],68:[function(e,t,n){function r(e){return{ch:e,cm:e,em:e,ex:e,in:e,mm:e,pc:e,pt:e,px:e,q:e,rem:e,vh:e,vmax:e,vmin:e,vw:e,"%":e}}function o(e){return null===e||void 0===e?{}:"boolean"==typeof e?{}:"number"==typeof e&&-1==e?r(u):"number"==typeof e?r(e):"string"==typeof e&&a.test(e)?r(parseInt(e)):"string"==typeof e&&e==u?r(u):"object"==typeof e?e:e.split(l).reduce(function(e,t){var n=t.split(c),o=n[0],a=parseInt(n[1]);return(isNaN(a)||-1==a)&&(a=u),s.indexOf(o)>-1?e=i(e,r(a)):e[o]=a,e},{})}var i=e("../utils/override"),a=/^\d+$/,s=["*","all"],u="off",l=",",c="=";t.exports={DEFAULT:u,roundingPrecisionFrom:function(e){return i(r(u),o(e))}}},{"../utils/override":95}],69:[function(e,t,n){(function(n,r){function o(e){var t,n,r,o=[],s=i(e.sourceTokens[0]);for(r=e.sourceTokens.length;e.index0?o(r):n(e)}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer)},{"../tokenizer/token":84,"../utils/has-protocol":88,"../utils/is-data-uri-resource":89,"../utils/is-remote-resource":93,"./is-allowed-resource":72,"./match-data-uri":75,"./rebase-local-map":78,"./rebase-remote-map":79,buffer:4,fs:3,path:111}],70:[function(e,t,n){var r=e("../utils/split"),o=/^\(/,i=/\)$/,a=/^@import/i,s=/['"]\s*/,u=/\s*['"]/,l=/^url\(\s*/i,c=/\s*\)/i;t.exports=function(e){var t,n,f,p;return f=e.replace(a,"").trim().replace(l,"(").replace(c,")").replace(s,"").replace(u,""),p=r(f," "),t=p[0].replace(o,"").replace(i,""),n=p.slice(1).join(" "),[t,n]}},{"../utils/split":96}],71:[function(e,t,n){function r(e){return e}function o(e,t){return t in e}function i(e,t,n,r){for(var o,s=t[0],u=t[1],l=t[2],c={line:s,column:u+n};!o&&c.column>u;)c.column--,o=e[l].originalPositionFor(c);return null===o.line&&s>1&&r>0?i(e,[s-1,u,l],n,r-1):null!==o.line?a(o):t}function a(e){return[e.line,e.column,e.source]}function s(e,t,n){e[t]=new u(n)}var u=e("source-map").SourceMapConsumer;t.exports=function(){var e={};return{all:r.bind(null,e),isTracking:o.bind(null,e),originalPositionFor:i.bind(null,e),track:s.bind(null,e)}}},{"source-map":155}],72:[function(e,t,n){function r(e,t,n){var s,c,f,p,h,d,m=!t;if(0===n.length)return!1;for(t&&!u(e)&&(e=l+e),s=t?a.parse(e).host:e,c=t?e:i.resolve(e),d=0;d399)return f(o.statusCode,null);if(o.statusCode>299)return i=a.resolve(e,o.headers.location),r(i,t,n,f);o.on("data",function(e){s.push(e.toString())}),o.on("end",function(){var e=s.join("");f(null,e)})}}).on("error",function(e){d||(d=!0,f(e.message,null))}).on("timeout",function(){d||(d=!0,f("timeout",null))}).setTimeout(n)}var o=e("http"),i=e("https"),a=e("url"),s=e("../utils/is-http-resource"),u=e("../utils/is-https-resource"),l=e("../utils/override"),c="http:";t.exports=r},{"../utils/is-http-resource":90,"../utils/is-https-resource":91,"../utils/override":95,http:156,https:104,url:162}],75:[function(e,t,n){var r=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;t.exports=function(e){return r.exec(e)}},{}],76:[function(e,t,n){var r="/",o=/\\/g;t.exports=function(e){return e.replace(o,r)}},{}],77:[function(e,t,n){(function(n,r){function o(e,t,r){return"string"==typeof e?i(e,t,r):n.isBuffer(e)?i(e.toString(),t,r):Array.isArray(e)?a(e,t,r):"object"==typeof e?s(e,t,r):void 0}function i(e,t,n){return t.source=void 0,t.sourcesContent[void 0]=e,t.stats.originalSize+=e.length,h(e,t,{inline:t.options.inline},n)}function a(e,t,n){return h(e.reduce(function(e,n){return"string"==typeof n?u(n,e):l(n,t,e)},[]).join(""),t,{inline:["all"]},n)}function s(e,t,n){return h(l(e,t,[]).join(""),t,{inline:["all"]},n)}function u(e,t){return t.push(p(c(e))),t}function l(e,t,n){var r,o,i;for(r in e)i=e[r],o=c(r),n.push(p(o)),t.sourcesContent[o]=i.styles,i.sourceMap&&f(i.sourceMap,o,t);return n}function c(e){var t,n,r=E.resolve("");return N(e)?e:(t=E.isAbsolute(e)?e:E.resolve(e),n=E.relative(r,t),O(n))}function f(e,t,n){var r="string"==typeof e?JSON.parse(e):e,o=N(t)?D(r,t):B(r,t||P,n.options.rebaseTo);n.inputSourceMapTracker.track(t,o)}function p(e){return T("url("+e+")","")+L.SEMICOLON}function h(e,t,n,r){var o,i={};return t.source?N(t.source)?(i.fromBase=t.source,i.toBase=t.source):E.isAbsolute(t.source)?(i.fromBase=E.dirname(t.source),i.toBase=t.options.rebaseTo):(i.fromBase=E.dirname(E.resolve(t.source)),i.toBase=t.options.rebaseTo):(i.fromBase=E.resolve(""),i.toBase=t.options.rebaseTo),o=R(e,t),o=S(o,t.options.rebase,t.validator,i),d(n.inline)?m(o,t,n,r):r(o)}function d(e){return!(1==e.length&&"none"==e[0])}function m(e,t,n,r){return g({afterContent:!1,callback:r,errors:t.errors,externalContext:t,fetch:t.options.fetch,inlinedStylesheets:n.inlinedStylesheets||t.inlinedStylesheets,inline:n.inline,inlineRequest:t.options.inlineRequest,inlineTimeout:t.options.inlineTimeout,isRemote:n.isRemote||!1,localOnly:t.localOnly,outputTokens:[],rebaseTo:t.options.rebaseTo,sourceTokens:e,warnings:t.warnings})}function g(e){var t,n,r;for(n=0,r=e.sourceTokens.length;n-1?(o.warnings.push('Ignoring remote @import of "'+e+'" as it has already been imported.'),o.sourceTokens=o.sourceTokens.slice(1),g(o)):o.localOnly&&o.afterContent?(o.warnings.push('Ignoring remote @import of "'+e+'" as no callback given and after other content.'),o.sourceTokens=o.sourceTokens.slice(1),g(o)):l?(o.warnings.push('Skipping remote @import of "'+e+'" as no protocol given.'),o.outputTokens=o.outputTokens.concat(o.sourceTokens.slice(0,1)),o.sourceTokens=o.sourceTokens.slice(1),g(o)):o.localOnly&&!u?(o.warnings.push('Skipping remote @import of "'+e+'" as no callback given.'),o.outputTokens=o.outputTokens.concat(o.sourceTokens.slice(0,1)),o.sourceTokens=o.sourceTokens.slice(1),g(o)):!a&&o.afterContent?(o.warnings.push('Ignoring remote @import of "'+e+'" as resource is not allowed and after other content.'),o.sourceTokens=o.sourceTokens.slice(1),g(o)):a?(o.inlinedStylesheets.push(e),u?i(null,o.externalContext.sourcesContent[e]):o.fetch(e,o.inlineRequest,o.inlineTimeout,i)):(o.warnings.push('Skipping remote @import of "'+e+'" as resource is not allowed.'),o.outputTokens=o.outputTokens.concat(o.sourceTokens.slice(0,1)),o.sourceTokens=o.sourceTokens.slice(1),g(o))}function y(e,t,n,r){var o,i=E.resolve(""),a=E.isAbsolute(e)?E.resolve(i,"/"==e[0]?e.substring(1):e):E.resolve(r.rebaseTo,e),s=E.relative(i,a),u=C(e,!1,r.inline),l=O(s),c=l in r.externalContext.sourcesContent;if(r.inlinedStylesheets.indexOf(a)>-1)r.warnings.push('Ignoring local @import of "'+e+'" as it has already been imported.');else if(c||w.existsSync(a)&&w.statSync(a).isFile())if(!u&&r.afterContent)r.warnings.push('Ignoring local @import of "'+e+'" as resource is not allowed and after other content.');else if(r.afterContent)r.warnings.push('Ignoring local @import of "'+e+'" as after other content.');else{if(u)return o=c?r.externalContext.sourcesContent[l]:w.readFileSync(a,"utf-8"),r.inlinedStylesheets.push(a),r.inline=r.externalContext.options.inline,r.externalContext.source=l,r.externalContext.sourcesContent[l]=o,r.externalContext.stats.originalSize+=o.length,h(o,r.externalContext,r,function(e){return e=_(e,t,n),r.outputTokens=r.outputTokens.concat(e),r.sourceTokens=r.sourceTokens.slice(1),g(r)});r.warnings.push('Skipping local @import of "'+e+'" as resource is not allowed.'),r.outputTokens=r.outputTokens.concat(r.sourceTokens.slice(0,1))}else r.errors.push('Ignoring local @import of "'+e+'" as resource is missing.');return r.sourceTokens=r.sourceTokens.slice(1),g(r)}function _(e,t,n){return t?[[F.NESTED_BLOCK,[[F.NESTED_BLOCK_SCOPE,"@media "+t,n]],e]]:e}var w=e("fs"),E=e("path"),A=e("./apply-source-maps"),x=e("./extract-import-url-and-media"),C=e("./is-allowed-resource"),k=e("./load-original-sources"),O=e("./normalize-path"),S=e("./rebase"),B=e("./rebase-local-map"),D=e("./rebase-remote-map"),T=e("./restore-import"),R=e("../tokenizer/tokenize"),F=e("../tokenizer/token"),L=e("../tokenizer/marker"),M=e("../utils/has-protocol"),U=e("../utils/is-import"),N=e("../utils/is-remote-resource"),P="uri:unknown";t.exports=function(e,t,n){return o(e,t,function(e){return A(e,t,function(){return k(t,function(){return n(e)})})})}}).call(this,{isBuffer:e("../../../is-buffer/index.js")},e("_process"))},{"../../../is-buffer/index.js":107,"../tokenizer/marker":83,"../tokenizer/token":84,"../tokenizer/tokenize":85,"../utils/has-protocol":88,"../utils/is-import":92,"../utils/is-remote-resource":93,"./apply-source-maps":69,"./extract-import-url-and-media":70,"./is-allowed-resource":72,"./load-original-sources":73,"./normalize-path":76,"./rebase":80,"./rebase-local-map":78,"./rebase-remote-map":79,"./restore-import":81,_process:113,fs:3,path:111}],78:[function(e,t,n){var r=e("path");t.exports=function(e,t,n){var o=r.resolve(""),i=r.resolve(o,t),a=r.dirname(i);return e.sources=e.sources.map(function(e){return r.relative(n,r.resolve(a,e))}),e}},{path:111}],79:[function(e,t,n){var r=e("path"),o=e("url");t.exports=function(e,t){var n=r.dirname(t);return e.sources=e.sources.map(function(e){return o.resolve(n,e)}),e}},{path:111,url:162}],80:[function(e,t,n){function r(e,t,n){var o,u,l;for(u=0,l=e.length;u-1?v:e.indexOf(v)>-1?b:h(e)||d(e)?b:""}function h(e){return k.test(e)}function d(e){return A.test(e)}var m=e("path"),g=e("url"),v='"',b="'",y="url(",_=")",w=/^["']/,E=/["']$/,A=/[\(\)]/,x=/^url\(/i,C=/\)$/,k=/\s/,O="win32"==n.platform;t.exports=function(e,t,n){var o=e.replace(x,"").replace(C,"").trim(),i=o.replace(w,"").replace(E,"").trim(),a=o[0]==b||o[0]==v?o[0]:p(i);return n?r(i,t):y+a+r(i,t)+a+_}}).call(this,e("_process"))},{_process:113,path:111,url:162}],83:[function(e,t,n){var r={ASTERISK:"*",AT:"@",BACK_SLASH:"\\",CLOSE_CURLY_BRACKET:"}",CLOSE_ROUND_BRACKET:")",CLOSE_SQUARE_BRACKET:"]",COLON:":",COMMA:",",DOUBLE_QUOTE:'"',EXCLAMATION:"!",FORWARD_SLASH:"/",INTERNAL:"-clean-css-",NEW_LINE_NIX:"\n",NEW_LINE_WIN:"\r",OPEN_CURLY_BRACKET:"{",OPEN_ROUND_BRACKET:"(",OPEN_SQUARE_BRACKET:"[",SEMICOLON:";",SINGLE_QUOTE:"'",SPACE:" ",TAB:"\t",UNDERSCORE:"_"};t.exports=r},{}],84:[function(e,t,n){var r={AT_RULE:"at-rule",AT_RULE_BLOCK:"at-rule-block",AT_RULE_BLOCK_SCOPE:"at-rule-block-scope",COMMENT:"comment",NESTED_BLOCK:"nested-block",NESTED_BLOCK_SCOPE:"nested-block-scope",PROPERTY:"property",PROPERTY_BLOCK:"property-block",PROPERTY_NAME:"property-name",PROPERTY_VALUE:"property-value",RULE:"rule",RULE_SCOPE:"rule-scope"};t.exports=r},{}],85:[function(e,t,n){function r(e,t,n,h){for(var d,m,g,v,b,_,w,E,A,x,C,k,O,S=[],B=S,D=[],T=[],R=n.level,F=[],L=[],M=[],U=0,N=!1,P=!1,q=!1,z=!1,I=n.position;I.index1)T.push(v),L.push(j),M.push(L.slice(0,L.length-2)),L=L.slice(L.length-2),v=[I.line,I.column-1,I.source],F.push(R),R=p.COMMENT;else if(x)F.push(R),R=p.COMMENT,L.push(j);else if(C)b=L.join("").trim()+j,d=[c.COMMENT,b,[o(v,b,t)]],B.push(d),R=F.pop(),v=T.pop()||null,L=M.pop()||[];else if(k&&e[I.index+1]!=l.ASTERISK)t.warnings.push("Unexpected '*/' at "+f([I.line,I.column,I.source])+"."),L=[];else if(j!=l.SINGLE_QUOTE||_)if(j==l.SINGLE_QUOTE&&R==p.SINGLE_QUOTE)R=F.pop(),L.push(j);else if(j!=l.DOUBLE_QUOTE||_)if(j==l.DOUBLE_QUOTE&&R==p.DOUBLE_QUOTE)R=F.pop(),L.push(j);else if(!x&&!C&&j!=l.CLOSE_ROUND_BRACKET&&j!=l.OPEN_ROUND_BRACKET&&R!=p.COMMENT&&!_&&U>0)L.push(j);else if(j!=l.OPEN_ROUND_BRACKET||_||R==p.COMMENT||q)if(j!=l.CLOSE_ROUND_BRACKET||_||R==p.COMMENT||q)if(j==l.SEMICOLON&&R==p.BLOCK&&L[0]==l.AT)b=L.join("").trim(),S.push([c.AT_RULE,b,[o(v,b,t)]]),L=[];else if(j==l.COMMA&&R==p.BLOCK&&m)b=L.join("").trim(),m[1].push([a(m[0]),b,[o(v,b,t,m[1].length)]]),L=[];else if(j==l.COMMA&&R==p.BLOCK&&i(L)==c.AT_RULE)L.push(j);else if(j==l.COMMA&&R==p.BLOCK)m=[i(L),[],[]],b=L.join("").trim(),m[1].push([a(m[0]),b,[o(v,b,t,0)]]),L=[];else if(j==l.OPEN_CURLY_BRACKET&&R==p.BLOCK&&m&&m[0]==c.NESTED_BLOCK)b=L.join("").trim(),m[1].push([c.NESTED_BLOCK_SCOPE,b,[o(v,b,t)]]),S.push(m),F.push(R),I.column++,I.index++,L=[],m[2]=r(e,t,n,!0),m=null;else if(j==l.OPEN_CURLY_BRACKET&&R==p.BLOCK&&i(L)==c.NESTED_BLOCK)b=L.join("").trim(),(m=m||[c.NESTED_BLOCK,[],[]])[1].push([c.NESTED_BLOCK_SCOPE,b,[o(v,b,t)]]),S.push(m),F.push(R),I.column++,I.index++,L=[],m[2]=r(e,t,n,!0),m=null;else if(j==l.OPEN_CURLY_BRACKET&&R==p.BLOCK)b=L.join("").trim(),(m=m||[i(L),[],[]])[1].push([a(m[0]),b,[o(v,b,t,m[1].length)]]),B=m[2],S.push(m),F.push(R),R=p.RULE,L=[];else if(j==l.OPEN_CURLY_BRACKET&&R==p.RULE&&q)D.push(m),m=[c.PROPERTY_BLOCK,[]],g.push(m),B=m[1],F.push(R),R=p.RULE,q=!1;else if(j==l.OPEN_CURLY_BRACKET&&R==p.RULE&&s(L))b=L.join("").trim(),D.push(m),(m=[c.AT_RULE_BLOCK,[],[]])[1].push([c.AT_RULE_BLOCK_SCOPE,b,[o(v,b,t)]]),B.push(m),B=m[2],F.push(R),R=p.RULE,L=[];else if(j!=l.COLON||R!=p.RULE||q)if(j==l.SEMICOLON&&R==p.RULE&&g&&D.length>0&&L.length>0&&L[0]==l.AT)b=L.join("").trim(),m[1].push([c.AT_RULE,b,[o(v,b,t)]]),L=[];else if(j==l.SEMICOLON&&R==p.RULE&&g&&L.length>0)b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g=null,q=!1,L=[];else if(j==l.SEMICOLON&&R==p.RULE&&g&&0===L.length)g=null,q=!1;else if(j==l.SEMICOLON&&R==p.RULE&&L.length>0&&L[0]==l.AT)b=L.join(""),B.push([c.AT_RULE,b,[o(v,b,t)]]),q=!1,L=[];else if(j==l.SEMICOLON&&R==p.RULE&&z)z=!1,L=[];else if(j==l.SEMICOLON&&R==p.RULE&&0===L.length);else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&q&&L.length>0&&D.length>0)b=L.join(""),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g=null,B=(m=D.pop())[2],R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&L.length>0&&L[0]==l.AT&&D.length>0)b=L.join(""),m[1].push([c.AT_RULE,b,[o(v,b,t)]]),g=null,B=(m=D.pop())[2],R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&D.length>0)g=null,B=(m=D.pop())[2],R=F.pop(),q=!1;else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&g&&L.length>0)b=L.join(""),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g=null,m=D.pop(),B=S,R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&L.length>0&&L[0]==l.AT)g=null,m=null,b=L.join("").trim(),B.push([c.AT_RULE,b,[o(v,b,t)]]),B=S,R=F.pop(),q=!1,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE&&F[F.length-1]==p.RULE)g=null,B=(m=D.pop())[2],R=F.pop(),q=!1,z=!0,L=[];else if(j==l.CLOSE_CURLY_BRACKET&&R==p.RULE)g=null,m=null,B=S,R=F.pop(),q=!1;else if(j==l.CLOSE_CURLY_BRACKET&&R==p.BLOCK&&!h&&I.index<=e.length-1)t.warnings.push("Unexpected '}' at "+f([I.line,I.column,I.source])+"."),L.push(j);else{if(j==l.CLOSE_CURLY_BRACKET&&R==p.BLOCK)break;j==l.OPEN_ROUND_BRACKET&&R==p.RULE&&q?(L.push(j),U++):j==l.CLOSE_ROUND_BRACKET&&R==p.RULE&&q&&1==U?(L.push(j),b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),U--,L=[]):j==l.CLOSE_ROUND_BRACKET&&R==p.RULE&&q?(L.push(j),U--):j==l.FORWARD_SLASH&&e[I.index+1]!=l.ASTERISK&&R==p.RULE&&q&&L.length>0?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.FORWARD_SLASH&&e[I.index+1]!=l.ASTERISK&&R==p.RULE&&q?(g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.COMMA&&R==p.RULE&&q&&L.length>0?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.COMMA&&R==p.RULE&&q?(g.push([c.PROPERTY_VALUE,j,[[I.line,I.column,I.source]]]),L=[]):j==l.CLOSE_SQUARE_BRACKET&&g&&g.length>1&&L.length>0&&u(L)?(L.push(j),b=L.join("").trim(),g[g.length-1][1]+=b,L=[]):(w||E&&!A)&&R==p.RULE&&q&&g&&L.length>0?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),L=[]):A&&R==p.RULE&&q&&g&&L.length>1?(b=L.join("").trim(),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),L=[]):A&&R==p.RULE&&q?L=[]:1==L.length&&A?L.pop():(L.length>0||!w&&!E&&!A)&&L.push(j)}else b=L.join("").trim(),g=[c.PROPERTY,[c.PROPERTY_NAME,b,[o(v,b,t)]]],B.push(g),q=!0,L=[];else L.push(j),U--;else L.push(j),U++;else F.push(R),R=p.DOUBLE_QUOTE,L.push(j);else F.push(R),R=p.SINGLE_QUOTE,L.push(j);else L.push(j);O=!O&&j==l.BACK_SLASH,N=x,P=C,I.line=A||E?I.line+1:I.line,I.column=A||E?0:I.column+1}return q&&t.warnings.push("Missing '}' at "+f([I.line,I.column,I.source])+"."),q&&L.length>0&&(b=L.join("").replace(y,""),g.push([c.PROPERTY_VALUE,b,[o(v,b,t)]]),L=[]),L.length>0&&t.warnings.push("Invalid character(s) '"+L.join("")+"' at "+f(v)+". Ignoring."),S}function o(e,t,n,r){var o=e[2];return n.inputSourceMapTracker.isTracking(o)?n.inputSourceMapTracker.originalPositionFor(e,t.length,r):e}function i(e){var t=e[0]==l.AT||e[0]==l.UNDERSCORE,n=e.join("").split(b)[0];return t&&d.indexOf(n)>-1?c.NESTED_BLOCK:t&&h.indexOf(n)>-1?c.AT_RULE:t?c.AT_RULE_BLOCK:c.RULE}function a(e){return e==c.RULE?c.RULE_SCOPE:e==c.NESTED_BLOCK?c.NESTED_BLOCK_SCOPE:e==c.AT_RULE_BLOCK?c.AT_RULE_BLOCK_SCOPE:void 0}function s(e){var t=e.join("").trim();return m.indexOf(t)>-1||g.indexOf(t)>-1}function u(e){return v.test(e.join("")+l.CLOSE_SQUARE_BRACKET)}var l=e("./marker"),c=e("./token"),f=e("../utils/format-position"),p={BLOCK:"block",COMMENT:"comment",DOUBLE_QUOTE:"double-quote",RULE:"rule",SINGLE_QUOTE:"single-quote"},h=["@charset","@import"],d=["@-moz-document","@document","@-moz-keyframes","@-ms-keyframes","@-o-keyframes","@-webkit-keyframes","@keyframes","@media","@supports"],m=["@bottom-center","@bottom-left","@bottom-left-corner","@bottom-right","@bottom-right-corner","@left-bottom","@left-middle","@left-top","@right-bottom","@right-middle","@right-top","@top-center","@top-left","@top-left-corner","@top-right","@top-right-corner"],g=["@footnote","@footnotes","@left","@page-float-bottom","@page-float-top","@right"],v=/^\[\s*\d+\s*\]$/,b=/[\s\(]/,y=/[\s|\}]*$/;t.exports=function(e,t){return r(e,t,{level:p.BLOCK,position:{source:t.source||void 0,line:1,column:0,index:0}},!1)}},{"../utils/format-position":87,"./marker":83,"./token":84}],86:[function(e,t,n){function r(e){for(var t=e.slice(0),n=0,o=t.length;ni?1:-1;return u.length>l.length?1:u.length==l.length?0:-1}},{}],95:[function(e,t,n){function r(e,t){var n,o,i,a={};for(n in e)i=e[n],Array.isArray(i)?a[n]=i.slice(0):a[n]="object"==typeof i&&null!==i?r(i,{}):i;for(o in t)i=t[o],o in a&&Array.isArray(i)?a[o]=i.slice(0):a[o]=o in a&&"object"==typeof i&&null!==i?r(a[o],i):i;return a}t.exports=r},{}],96:[function(e,t,n){var r=e("../tokenizer/marker");t.exports=function(e,t){var n,o=r.OPEN_ROUND_BRACKET,i=r.CLOSE_ROUND_BRACKET,a=0,s=0,u=0,l=e.length,c=[];if(-1==e.indexOf(t))return[e];if(-1==e.indexOf(o))return e.split(t);for(;s0&&s+1=0&&e[t][0]==B.COMMENT;t--);return t}function d(e,t,n,r){var o=e.store,i=t[n],a=i[2][0]==B.PROPERTY_BLOCK,s=ne.format.wrapAt&&(i(e,s),e.output.push(s))}function i(e,t){var n=t.split("\n");e.line+=n.length-1,e.column=n.length>1?0:e.column+n.pop().length}var a=e("./helpers").all,s=e("os").EOL;t.exports=function(e,t){var n={column:0,format:t.options.format,indentBy:0,indentWith:"",line:1,output:[],spaceAfterClosingBrace:t.options.compatibility.properties.spaceAfterClosingBrace,store:r,wrap:t.options.format.wrapAt?o:function(){}};return a(n,e),{styles:n.output.join("")}}},{"./helpers":97,os:110}],100:[function(e,t,n){(function(n){function r(e,t){var n="string"==typeof t,r=n?t:t[1],o=n?null:t[2];(0,e.wrap)(e,r),i(e,r,o),e.output.push(r)}function o(e,t){e.column+t.length>e.format.wrapAt&&(i(e,c,!1),e.output.push(c))}function i(e,t,n){var r=t.split("\n");n&&a(e,n),e.line+=r.length-1,e.column=r.length>1?0:e.column+r.pop().length}function a(e,t){for(var n=0,r=t.length;n0&&this._events[e].length>n&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},r.prototype.on=r.prototype.addListener,r.prototype.once=function(e,t){function n(){this.removeListener(e,n),r||(r=!0,t.apply(this,arguments))}if(!o(t))throw TypeError("listener must be a function");var r=!1;return n.listener=t,this.on(e,n),this},r.prototype.removeListener=function(e,t){var n,r,i,s;if(!o(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(n=this._events[e],i=n.length,r=-1,n===t||o(n.listener)&&n.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(a(n)){for(s=i;s-- >0;)if(n[s]===t||n[s].listener&&n[s].listener===t){r=s;break}if(r<0)return this;1===n.length?(n.length=0,delete this._events[e]):n.splice(r,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},r.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(n=this._events[e],o(n))this.removeListener(e,n);else if(n)for(;n.length;)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},r.prototype.listeners=function(e){return this._events&&this._events[e]?o(this._events[e])?[this._events[e]]:this._events[e].slice():[]},r.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(o(t))return 1;if(t)return t.length}return 0},r.listenerCount=function(e,t){return e.listenerCount(t)}},{}],103:[function(e,t,n){(function(e){!function(r){var o="object"==typeof n&&n,i="object"==typeof t&&t&&t.exports==o&&t,a="object"==typeof e&&e;a.global!==a&&a.window!==a||(r=a);var s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,u=/[\x01-\x7F]/g,l=/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g,c=/<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g,f={"­":"shy","‌":"zwnj","‍":"zwj","‎":"lrm","⁣":"ic","⁢":"it","⁡":"af","‏":"rlm","​":"ZeroWidthSpace","⁠":"NoBreak","̑":"DownBreve","⃛":"tdot","⃜":"DotDot","\t":"Tab","\n":"NewLine"," ":"puncsp"," ":"MediumSpace"," ":"thinsp"," ":"hairsp"," ":"emsp13"," ":"ensp"," ":"emsp14"," ":"emsp"," ":"numsp"," ":"nbsp","  ":"ThickSpace","‾":"oline",_:"lowbar","‐":"dash","–":"ndash","—":"mdash","―":"horbar",",":"comma",";":"semi","⁏":"bsemi",":":"colon","⩴":"Colone","!":"excl","¡":"iexcl","?":"quest","¿":"iquest",".":"period","‥":"nldr","…":"mldr","·":"middot","'":"apos","‘":"lsquo","’":"rsquo","‚":"sbquo","‹":"lsaquo","›":"rsaquo",'"':"quot","“":"ldquo","”":"rdquo","„":"bdquo","«":"laquo","»":"raquo","(":"lpar",")":"rpar","[":"lsqb","]":"rsqb","{":"lcub","}":"rcub","⌈":"lceil","⌉":"rceil","⌊":"lfloor","⌋":"rfloor","⦅":"lopar","⦆":"ropar","⦋":"lbrke","⦌":"rbrke","⦍":"lbrkslu","⦎":"rbrksld","⦏":"lbrksld","⦐":"rbrkslu","⦑":"langd","⦒":"rangd","⦓":"lparlt","⦔":"rpargt","⦕":"gtlPar","⦖":"ltrPar","⟦":"lobrk","⟧":"robrk","⟨":"lang","⟩":"rang","⟪":"Lang","⟫":"Rang","⟬":"loang","⟭":"roang","❲":"lbbrk","❳":"rbbrk","‖":"Vert","§":"sect","¶":"para","@":"commat","*":"ast","/":"sol",undefined:null,"&":"amp","#":"num","%":"percnt","‰":"permil","‱":"pertenk","†":"dagger","‡":"Dagger","•":"bull","⁃":"hybull","′":"prime","″":"Prime","‴":"tprime","⁗":"qprime","‵":"bprime","⁁":"caret","`":"grave","´":"acute","˜":"tilde","^":"Hat","¯":"macr","˘":"breve","˙":"dot","¨":"die","˚":"ring","˝":"dblac","¸":"cedil","˛":"ogon","ˆ":"circ","ˇ":"caron","°":"deg","©":"copy","®":"reg","℗":"copysr","℘":"wp","℞":"rx","℧":"mho","℩":"iiota","←":"larr","↚":"nlarr","→":"rarr","↛":"nrarr","↑":"uarr","↓":"darr","↔":"harr","↮":"nharr","↕":"varr","↖":"nwarr","↗":"nearr","↘":"searr","↙":"swarr","↝":"rarrw","↝̸":"nrarrw","↞":"Larr","↟":"Uarr","↠":"Rarr","↡":"Darr","↢":"larrtl","↣":"rarrtl","↤":"mapstoleft","↥":"mapstoup","↦":"map","↧":"mapstodown","↩":"larrhk","↪":"rarrhk","↫":"larrlp","↬":"rarrlp","↭":"harrw","↰":"lsh","↱":"rsh","↲":"ldsh","↳":"rdsh","↵":"crarr","↶":"cularr","↷":"curarr","↺":"olarr","↻":"orarr","↼":"lharu","↽":"lhard","↾":"uharr","↿":"uharl","⇀":"rharu","⇁":"rhard","⇂":"dharr","⇃":"dharl","⇄":"rlarr","⇅":"udarr","⇆":"lrarr","⇇":"llarr","⇈":"uuarr","⇉":"rrarr","⇊":"ddarr","⇋":"lrhar","⇌":"rlhar","⇐":"lArr","⇍":"nlArr","⇑":"uArr","⇒":"rArr","⇏":"nrArr","⇓":"dArr","⇔":"iff","⇎":"nhArr","⇕":"vArr","⇖":"nwArr","⇗":"neArr","⇘":"seArr","⇙":"swArr","⇚":"lAarr","⇛":"rAarr","⇝":"zigrarr","⇤":"larrb","⇥":"rarrb","⇵":"duarr","⇽":"loarr","⇾":"roarr","⇿":"hoarr","∀":"forall","∁":"comp","∂":"part","∂̸":"npart","∃":"exist","∄":"nexist","∅":"empty","∇":"Del","∈":"in","∉":"notin","∋":"ni","∌":"notni","϶":"bepsi","∏":"prod","∐":"coprod","∑":"sum","+":"plus","±":"pm","÷":"div","×":"times","<":"lt","≮":"nlt","<⃒":"nvlt","=":"equals","≠":"ne","=⃥":"bne","⩵":"Equal",">":"gt","≯":"ngt",">⃒":"nvgt","¬":"not","|":"vert","¦":"brvbar","−":"minus","∓":"mp","∔":"plusdo","⁄":"frasl","∖":"setmn","∗":"lowast","∘":"compfn","√":"Sqrt","∝":"prop","∞":"infin","∟":"angrt","∠":"ang","∠⃒":"nang","∡":"angmsd","∢":"angsph","∣":"mid","∤":"nmid","∥":"par","∦":"npar","∧":"and","∨":"or","∩":"cap","∩︀":"caps","∪":"cup","∪︀":"cups","∫":"int","∬":"Int","∭":"tint","⨌":"qint","∮":"oint","∯":"Conint","∰":"Cconint","∱":"cwint","∲":"cwconint","∳":"awconint","∴":"there4","∵":"becaus","∶":"ratio","∷":"Colon","∸":"minusd","∺":"mDDot","∻":"homtht","∼":"sim","≁":"nsim","∼⃒":"nvsim","∽":"bsim","∽̱":"race","∾":"ac","∾̳":"acE","∿":"acd","≀":"wr","≂":"esim","≂̸":"nesim","≃":"sime","≄":"nsime","≅":"cong","≇":"ncong","≆":"simne","≈":"ap","≉":"nap","≊":"ape","≋":"apid","≋̸":"napid","≌":"bcong","≍":"CupCap","≭":"NotCupCap","≍⃒":"nvap","≎":"bump","≎̸":"nbump","≏":"bumpe","≏̸":"nbumpe","≐":"doteq","≐̸":"nedot","≑":"eDot","≒":"efDot","≓":"erDot","≔":"colone","≕":"ecolon","≖":"ecir","≗":"cire","≙":"wedgeq","≚":"veeeq","≜":"trie","≟":"equest","≡":"equiv","≢":"nequiv","≡⃥":"bnequiv","≤":"le","≰":"nle","≤⃒":"nvle","≥":"ge","≱":"nge","≥⃒":"nvge","≦":"lE","≦̸":"nlE","≧":"gE","≧̸":"ngE","≨︀":"lvnE","≨":"lnE","≩":"gnE","≩︀":"gvnE","≪":"ll","≪̸":"nLtv","≪⃒":"nLt","≫":"gg","≫̸":"nGtv","≫⃒":"nGt","≬":"twixt","≲":"lsim","≴":"nlsim","≳":"gsim","≵":"ngsim","≶":"lg","≸":"ntlg","≷":"gl","≹":"ntgl","≺":"pr","⊀":"npr","≻":"sc","⊁":"nsc","≼":"prcue","⋠":"nprcue","≽":"sccue","⋡":"nsccue","≾":"prsim","≿":"scsim","≿̸":"NotSucceedsTilde","⊂":"sub","⊄":"nsub","⊂⃒":"vnsub","⊃":"sup","⊅":"nsup","⊃⃒":"vnsup","⊆":"sube","⊈":"nsube","⊇":"supe","⊉":"nsupe","⊊︀":"vsubne","⊊":"subne","⊋︀":"vsupne","⊋":"supne","⊍":"cupdot","⊎":"uplus","⊏":"sqsub","⊏̸":"NotSquareSubset","⊐":"sqsup","⊐̸":"NotSquareSuperset","⊑":"sqsube","⋢":"nsqsube","⊒":"sqsupe","⋣":"nsqsupe","⊓":"sqcap","⊓︀":"sqcaps","⊔":"sqcup","⊔︀":"sqcups","⊕":"oplus","⊖":"ominus","⊗":"otimes","⊘":"osol","⊙":"odot","⊚":"ocir","⊛":"oast","⊝":"odash","⊞":"plusb","⊟":"minusb","⊠":"timesb","⊡":"sdotb","⊢":"vdash","⊬":"nvdash","⊣":"dashv","⊤":"top","⊥":"bot","⊧":"models","⊨":"vDash","⊭":"nvDash","⊩":"Vdash","⊮":"nVdash","⊪":"Vvdash","⊫":"VDash","⊯":"nVDash","⊰":"prurel","⊲":"vltri","⋪":"nltri","⊳":"vrtri","⋫":"nrtri","⊴":"ltrie","⋬":"nltrie","⊴⃒":"nvltrie","⊵":"rtrie","⋭":"nrtrie","⊵⃒":"nvrtrie","⊶":"origof","⊷":"imof","⊸":"mumap","⊹":"hercon","⊺":"intcal","⊻":"veebar","⊽":"barvee","⊾":"angrtvb","⊿":"lrtri","⋀":"Wedge","⋁":"Vee","⋂":"xcap","⋃":"xcup","⋄":"diam","⋅":"sdot","⋆":"Star","⋇":"divonx","⋈":"bowtie","⋉":"ltimes","⋊":"rtimes","⋋":"lthree","⋌":"rthree","⋍":"bsime","⋎":"cuvee","⋏":"cuwed","⋐":"Sub","⋑":"Sup","⋒":"Cap","⋓":"Cup","⋔":"fork","⋕":"epar","⋖":"ltdot","⋗":"gtdot","⋘":"Ll","⋘̸":"nLl","⋙":"Gg","⋙̸":"nGg","⋚︀":"lesg","⋚":"leg","⋛":"gel","⋛︀":"gesl","⋞":"cuepr","⋟":"cuesc","⋦":"lnsim","⋧":"gnsim","⋨":"prnsim","⋩":"scnsim","⋮":"vellip","⋯":"ctdot","⋰":"utdot","⋱":"dtdot","⋲":"disin","⋳":"isinsv","⋴":"isins","⋵":"isindot","⋵̸":"notindot","⋶":"notinvc","⋷":"notinvb","⋹":"isinE","⋹̸":"notinE","⋺":"nisd","⋻":"xnis","⋼":"nis","⋽":"notnivc","⋾":"notnivb","⌅":"barwed","⌆":"Barwed","⌌":"drcrop","⌍":"dlcrop","⌎":"urcrop","⌏":"ulcrop","⌐":"bnot","⌒":"profline","⌓":"profsurf","⌕":"telrec","⌖":"target","⌜":"ulcorn","⌝":"urcorn","⌞":"dlcorn","⌟":"drcorn","⌢":"frown","⌣":"smile","⌭":"cylcty","⌮":"profalar","⌶":"topbot","⌽":"ovbar","⌿":"solbar","⍼":"angzarr","⎰":"lmoust","⎱":"rmoust","⎴":"tbrk","⎵":"bbrk","⎶":"bbrktbrk","⏜":"OverParenthesis","⏝":"UnderParenthesis","⏞":"OverBrace","⏟":"UnderBrace","⏢":"trpezium","⏧":"elinters","␣":"blank","─":"boxh","│":"boxv","┌":"boxdr","┐":"boxdl","└":"boxur","┘":"boxul","├":"boxvr","┤":"boxvl","┬":"boxhd","┴":"boxhu","┼":"boxvh","═":"boxH","║":"boxV","╒":"boxdR","╓":"boxDr","╔":"boxDR","╕":"boxdL","╖":"boxDl","╗":"boxDL","╘":"boxuR","╙":"boxUr","╚":"boxUR","╛":"boxuL","╜":"boxUl","╝":"boxUL","╞":"boxvR","╟":"boxVr","╠":"boxVR","╡":"boxvL","╢":"boxVl","╣":"boxVL","╤":"boxHd","╥":"boxhD","╦":"boxHD","╧":"boxHu","╨":"boxhU","╩":"boxHU","╪":"boxvH","╫":"boxVh","╬":"boxVH","▀":"uhblk","▄":"lhblk","█":"block","░":"blk14","▒":"blk12","▓":"blk34","□":"squ","▪":"squf","▫":"EmptyVerySmallSquare","▭":"rect","▮":"marker","▱":"fltns","△":"xutri","▴":"utrif","▵":"utri","▸":"rtrif","▹":"rtri","▽":"xdtri","▾":"dtrif","▿":"dtri","◂":"ltrif","◃":"ltri","◊":"loz","○":"cir","◬":"tridot","◯":"xcirc","◸":"ultri","◹":"urtri","◺":"lltri","◻":"EmptySmallSquare","◼":"FilledSmallSquare","★":"starf","☆":"star","☎":"phone","♀":"female","♂":"male","♠":"spades","♣":"clubs","♥":"hearts","♦":"diams","♪":"sung","✓":"check","✗":"cross","✠":"malt","✶":"sext","❘":"VerticalSeparator","⟈":"bsolhsub","⟉":"suphsol","⟵":"xlarr","⟶":"xrarr","⟷":"xharr","⟸":"xlArr","⟹":"xrArr","⟺":"xhArr","⟼":"xmap","⟿":"dzigrarr","⤂":"nvlArr","⤃":"nvrArr","⤄":"nvHarr","⤅":"Map","⤌":"lbarr","⤍":"rbarr","⤎":"lBarr","⤏":"rBarr","⤐":"RBarr","⤑":"DDotrahd","⤒":"UpArrowBar","⤓":"DownArrowBar","⤖":"Rarrtl","⤙":"latail","⤚":"ratail","⤛":"lAtail","⤜":"rAtail","⤝":"larrfs","⤞":"rarrfs","⤟":"larrbfs","⤠":"rarrbfs","⤣":"nwarhk","⤤":"nearhk","⤥":"searhk","⤦":"swarhk","⤧":"nwnear","⤨":"toea","⤩":"tosa","⤪":"swnwar","⤳":"rarrc","⤳̸":"nrarrc","⤵":"cudarrr","⤶":"ldca","⤷":"rdca","⤸":"cudarrl","⤹":"larrpl","⤼":"curarrm","⤽":"cularrp","⥅":"rarrpl","⥈":"harrcir","⥉":"Uarrocir","⥊":"lurdshar","⥋":"ldrushar","⥎":"LeftRightVector","⥏":"RightUpDownVector","⥐":"DownLeftRightVector","⥑":"LeftUpDownVector","⥒":"LeftVectorBar","⥓":"RightVectorBar","⥔":"RightUpVectorBar","⥕":"RightDownVectorBar","⥖":"DownLeftVectorBar","⥗":"DownRightVectorBar","⥘":"LeftUpVectorBar","⥙":"LeftDownVectorBar","⥚":"LeftTeeVector","⥛":"RightTeeVector","⥜":"RightUpTeeVector","⥝":"RightDownTeeVector","⥞":"DownLeftTeeVector","⥟":"DownRightTeeVector","⥠":"LeftUpTeeVector","⥡":"LeftDownTeeVector","⥢":"lHar","⥣":"uHar","⥤":"rHar","⥥":"dHar","⥦":"luruhar","⥧":"ldrdhar","⥨":"ruluhar","⥩":"rdldhar","⥪":"lharul","⥫":"llhard","⥬":"rharul","⥭":"lrhard","⥮":"udhar","⥯":"duhar","⥰":"RoundImplies","⥱":"erarr","⥲":"simrarr","⥳":"larrsim","⥴":"rarrsim","⥵":"rarrap","⥶":"ltlarr","⥸":"gtrarr","⥹":"subrarr","⥻":"suplarr","⥼":"lfisht","⥽":"rfisht","⥾":"ufisht","⥿":"dfisht","⦚":"vzigzag","⦜":"vangrt","⦝":"angrtvbd","⦤":"ange","⦥":"range","⦦":"dwangle","⦧":"uwangle","⦨":"angmsdaa","⦩":"angmsdab","⦪":"angmsdac","⦫":"angmsdad","⦬":"angmsdae","⦭":"angmsdaf","⦮":"angmsdag","⦯":"angmsdah","⦰":"bemptyv","⦱":"demptyv","⦲":"cemptyv","⦳":"raemptyv","⦴":"laemptyv","⦵":"ohbar","⦶":"omid","⦷":"opar","⦹":"operp","⦻":"olcross","⦼":"odsold","⦾":"olcir","⦿":"ofcir","⧀":"olt","⧁":"ogt","⧂":"cirscir","⧃":"cirE","⧄":"solb","⧅":"bsolb","⧉":"boxbox","⧍":"trisb","⧎":"rtriltri","⧏":"LeftTriangleBar","⧏̸":"NotLeftTriangleBar","⧐":"RightTriangleBar","⧐̸":"NotRightTriangleBar","⧜":"iinfin","⧝":"infintie","⧞":"nvinfin","⧣":"eparsl","⧤":"smeparsl","⧥":"eqvparsl","⧫":"lozf","⧴":"RuleDelayed","⧶":"dsol","⨀":"xodot","⨁":"xoplus","⨂":"xotime","⨄":"xuplus","⨆":"xsqcup","⨍":"fpartint","⨐":"cirfnint","⨑":"awint","⨒":"rppolint","⨓":"scpolint","⨔":"npolint","⨕":"pointint","⨖":"quatint","⨗":"intlarhk","⨢":"pluscir","⨣":"plusacir","⨤":"simplus","⨥":"plusdu","⨦":"plussim","⨧":"plustwo","⨩":"mcomma","⨪":"minusdu","⨭":"loplus","⨮":"roplus","⨯":"Cross","⨰":"timesd","⨱":"timesbar","⨳":"smashp","⨴":"lotimes","⨵":"rotimes","⨶":"otimesas","⨷":"Otimes","⨸":"odiv","⨹":"triplus","⨺":"triminus","⨻":"tritime","⨼":"iprod","⨿":"amalg","⩀":"capdot","⩂":"ncup","⩃":"ncap","⩄":"capand","⩅":"cupor","⩆":"cupcap","⩇":"capcup","⩈":"cupbrcap","⩉":"capbrcup","⩊":"cupcup","⩋":"capcap","⩌":"ccups","⩍":"ccaps","⩐":"ccupssm","⩓":"And","⩔":"Or","⩕":"andand","⩖":"oror","⩗":"orslope","⩘":"andslope","⩚":"andv","⩛":"orv","⩜":"andd","⩝":"ord","⩟":"wedbar","⩦":"sdote","⩪":"simdot","⩭":"congdot","⩭̸":"ncongdot","⩮":"easter","⩯":"apacir","⩰":"apE","⩰̸":"napE","⩱":"eplus","⩲":"pluse","⩳":"Esim","⩷":"eDDot","⩸":"equivDD","⩹":"ltcir","⩺":"gtcir","⩻":"ltquest","⩼":"gtquest","⩽":"les","⩽̸":"nles","⩾":"ges","⩾̸":"nges","⩿":"lesdot","⪀":"gesdot","⪁":"lesdoto","⪂":"gesdoto","⪃":"lesdotor","⪄":"gesdotol","⪅":"lap","⪆":"gap","⪇":"lne","⪈":"gne","⪉":"lnap","⪊":"gnap","⪋":"lEg","⪌":"gEl","⪍":"lsime","⪎":"gsime","⪏":"lsimg","⪐":"gsiml","⪑":"lgE","⪒":"glE","⪓":"lesges","⪔":"gesles","⪕":"els","⪖":"egs","⪗":"elsdot","⪘":"egsdot","⪙":"el","⪚":"eg","⪝":"siml","⪞":"simg","⪟":"simlE","⪠":"simgE","⪡":"LessLess","⪡̸":"NotNestedLessLess","⪢":"GreaterGreater","⪢̸":"NotNestedGreaterGreater","⪤":"glj","⪥":"gla","⪦":"ltcc","⪧":"gtcc","⪨":"lescc","⪩":"gescc","⪪":"smt","⪫":"lat","⪬":"smte","⪬︀":"smtes","⪭":"late","⪭︀":"lates","⪮":"bumpE","⪯":"pre","⪯̸":"npre","⪰":"sce","⪰̸":"nsce","⪳":"prE","⪴":"scE","⪵":"prnE","⪶":"scnE","⪷":"prap","⪸":"scap","⪹":"prnap","⪺":"scnap","⪻":"Pr","⪼":"Sc","⪽":"subdot","⪾":"supdot","⪿":"subplus","⫀":"supplus","⫁":"submult","⫂":"supmult","⫃":"subedot","⫄":"supedot","⫅":"subE","⫅̸":"nsubE","⫆":"supE","⫆̸":"nsupE","⫇":"subsim","⫈":"supsim","⫋︀":"vsubnE","⫋":"subnE","⫌︀":"vsupnE","⫌":"supnE","⫏":"csub","⫐":"csup","⫑":"csube","⫒":"csupe","⫓":"subsup","⫔":"supsub","⫕":"subsub","⫖":"supsup","⫗":"suphsub","⫘":"supdsub","⫙":"forkv","⫚":"topfork","⫛":"mlcp","⫤":"Dashv","⫦":"Vdashl","⫧":"Barv","⫨":"vBar","⫩":"vBarv","⫫":"Vbar","⫬":"Not","⫭":"bNot","⫮":"rnmid","⫯":"cirmid","⫰":"midcir","⫱":"topcir","⫲":"nhpar","⫳":"parsim","⫽":"parsl","⫽⃥":"nparsl","♭":"flat","♮":"natur","♯":"sharp","¤":"curren","¢":"cent",$:"dollar","£":"pound","¥":"yen","€":"euro","¹":"sup1","½":"half","⅓":"frac13","¼":"frac14","⅕":"frac15","⅙":"frac16","⅛":"frac18","²":"sup2","⅔":"frac23","⅖":"frac25","³":"sup3","¾":"frac34","⅗":"frac35","⅜":"frac38","⅘":"frac45","⅚":"frac56","⅝":"frac58","⅞":"frac78","𝒶":"ascr","𝕒":"aopf","𝔞":"afr","𝔸":"Aopf","𝔄":"Afr","𝒜":"Ascr","ª":"ordf","á":"aacute","Á":"Aacute","à":"agrave","À":"Agrave","ă":"abreve","Ă":"Abreve","â":"acirc","Â":"Acirc","å":"aring","Å":"angst","ä":"auml","Ä":"Auml","ã":"atilde","Ã":"Atilde","ą":"aogon","Ą":"Aogon","ā":"amacr","Ā":"Amacr","æ":"aelig","Æ":"AElig","𝒷":"bscr","𝕓":"bopf","𝔟":"bfr","𝔹":"Bopf","ℬ":"Bscr","𝔅":"Bfr","𝔠":"cfr","𝒸":"cscr","𝕔":"copf","ℭ":"Cfr","𝒞":"Cscr","ℂ":"Copf","ć":"cacute","Ć":"Cacute","ĉ":"ccirc","Ĉ":"Ccirc","č":"ccaron","Č":"Ccaron","ċ":"cdot","Ċ":"Cdot","ç":"ccedil","Ç":"Ccedil","℅":"incare","𝔡":"dfr","ⅆ":"dd","𝕕":"dopf","𝒹":"dscr","𝒟":"Dscr","𝔇":"Dfr","ⅅ":"DD","𝔻":"Dopf","ď":"dcaron","Ď":"Dcaron","đ":"dstrok","Đ":"Dstrok","ð":"eth","Ð":"ETH","ⅇ":"ee","ℯ":"escr","𝔢":"efr","𝕖":"eopf","ℰ":"Escr","𝔈":"Efr","𝔼":"Eopf","é":"eacute","É":"Eacute","è":"egrave","È":"Egrave","ê":"ecirc","Ê":"Ecirc","ě":"ecaron","Ě":"Ecaron","ë":"euml","Ë":"Euml","ė":"edot","Ė":"Edot","ę":"eogon","Ę":"Eogon","ē":"emacr","Ē":"Emacr","𝔣":"ffr","𝕗":"fopf","𝒻":"fscr","𝔉":"Ffr","𝔽":"Fopf","ℱ":"Fscr","ff":"fflig","ffi":"ffilig","ffl":"ffllig","fi":"filig",fj:"fjlig","fl":"fllig","ƒ":"fnof","ℊ":"gscr","𝕘":"gopf","𝔤":"gfr","𝒢":"Gscr","𝔾":"Gopf","𝔊":"Gfr","ǵ":"gacute","ğ":"gbreve","Ğ":"Gbreve","ĝ":"gcirc","Ĝ":"Gcirc","ġ":"gdot","Ġ":"Gdot","Ģ":"Gcedil","𝔥":"hfr","ℎ":"planckh","𝒽":"hscr","𝕙":"hopf","ℋ":"Hscr","ℌ":"Hfr","ℍ":"Hopf","ĥ":"hcirc","Ĥ":"Hcirc","ℏ":"hbar","ħ":"hstrok","Ħ":"Hstrok","𝕚":"iopf","𝔦":"ifr","𝒾":"iscr","ⅈ":"ii","𝕀":"Iopf","ℐ":"Iscr","ℑ":"Im","í":"iacute","Í":"Iacute","ì":"igrave","Ì":"Igrave","î":"icirc","Î":"Icirc","ï":"iuml","Ï":"Iuml","ĩ":"itilde","Ĩ":"Itilde","İ":"Idot","į":"iogon","Į":"Iogon","ī":"imacr","Ī":"Imacr","ij":"ijlig","IJ":"IJlig","ı":"imath","𝒿":"jscr","𝕛":"jopf","𝔧":"jfr","𝒥":"Jscr","𝔍":"Jfr","𝕁":"Jopf","ĵ":"jcirc","Ĵ":"Jcirc","ȷ":"jmath","𝕜":"kopf","𝓀":"kscr","𝔨":"kfr","𝒦":"Kscr","𝕂":"Kopf","𝔎":"Kfr","ķ":"kcedil","Ķ":"Kcedil","𝔩":"lfr","𝓁":"lscr","ℓ":"ell","𝕝":"lopf","ℒ":"Lscr","𝔏":"Lfr","𝕃":"Lopf","ĺ":"lacute","Ĺ":"Lacute","ľ":"lcaron","Ľ":"Lcaron","ļ":"lcedil","Ļ":"Lcedil","ł":"lstrok","Ł":"Lstrok","ŀ":"lmidot","Ŀ":"Lmidot","𝔪":"mfr","𝕞":"mopf","𝓂":"mscr","𝔐":"Mfr","𝕄":"Mopf","ℳ":"Mscr","𝔫":"nfr","𝕟":"nopf","𝓃":"nscr","ℕ":"Nopf","𝒩":"Nscr","𝔑":"Nfr","ń":"nacute","Ń":"Nacute","ň":"ncaron","Ň":"Ncaron","ñ":"ntilde","Ñ":"Ntilde","ņ":"ncedil","Ņ":"Ncedil","№":"numero","ŋ":"eng","Ŋ":"ENG","𝕠":"oopf","𝔬":"ofr","ℴ":"oscr","𝒪":"Oscr","𝔒":"Ofr","𝕆":"Oopf","º":"ordm","ó":"oacute","Ó":"Oacute","ò":"ograve","Ò":"Ograve","ô":"ocirc","Ô":"Ocirc","ö":"ouml","Ö":"Ouml","ő":"odblac","Ő":"Odblac","õ":"otilde","Õ":"Otilde","ø":"oslash","Ø":"Oslash","ō":"omacr","Ō":"Omacr","œ":"oelig","Œ":"OElig","𝔭":"pfr","𝓅":"pscr","𝕡":"popf","ℙ":"Popf","𝔓":"Pfr","𝒫":"Pscr","𝕢":"qopf","𝔮":"qfr","𝓆":"qscr","𝒬":"Qscr","𝔔":"Qfr","ℚ":"Qopf","ĸ":"kgreen","𝔯":"rfr","𝕣":"ropf","𝓇":"rscr","ℛ":"Rscr","ℜ":"Re","ℝ":"Ropf","ŕ":"racute","Ŕ":"Racute","ř":"rcaron","Ř":"Rcaron","ŗ":"rcedil","Ŗ":"Rcedil","𝕤":"sopf","𝓈":"sscr","𝔰":"sfr","𝕊":"Sopf","𝔖":"Sfr","𝒮":"Sscr","Ⓢ":"oS","ś":"sacute","Ś":"Sacute","ŝ":"scirc","Ŝ":"Scirc","š":"scaron","Š":"Scaron","ş":"scedil","Ş":"Scedil","ß":"szlig","𝔱":"tfr","𝓉":"tscr","𝕥":"topf","𝒯":"Tscr","𝔗":"Tfr","𝕋":"Topf","ť":"tcaron","Ť":"Tcaron","ţ":"tcedil","Ţ":"Tcedil","™":"trade","ŧ":"tstrok","Ŧ":"Tstrok","𝓊":"uscr","𝕦":"uopf","𝔲":"ufr","𝕌":"Uopf","𝔘":"Ufr","𝒰":"Uscr","ú":"uacute","Ú":"Uacute","ù":"ugrave","Ù":"Ugrave","ŭ":"ubreve","Ŭ":"Ubreve","û":"ucirc","Û":"Ucirc","ů":"uring","Ů":"Uring","ü":"uuml","Ü":"Uuml","ű":"udblac","Ű":"Udblac","ũ":"utilde","Ũ":"Utilde","ų":"uogon","Ų":"Uogon","ū":"umacr","Ū":"Umacr","𝔳":"vfr","𝕧":"vopf","𝓋":"vscr","𝔙":"Vfr","𝕍":"Vopf","𝒱":"Vscr","𝕨":"wopf","𝓌":"wscr","𝔴":"wfr","𝒲":"Wscr","𝕎":"Wopf","𝔚":"Wfr","ŵ":"wcirc","Ŵ":"Wcirc","𝔵":"xfr","𝓍":"xscr","𝕩":"xopf","𝕏":"Xopf","𝔛":"Xfr","𝒳":"Xscr","𝔶":"yfr","𝓎":"yscr","𝕪":"yopf","𝒴":"Yscr","𝔜":"Yfr","𝕐":"Yopf","ý":"yacute","Ý":"Yacute","ŷ":"ycirc","Ŷ":"Ycirc","ÿ":"yuml","Ÿ":"Yuml","𝓏":"zscr","𝔷":"zfr","𝕫":"zopf","ℨ":"Zfr","ℤ":"Zopf","𝒵":"Zscr","ź":"zacute","Ź":"Zacute","ž":"zcaron","Ž":"Zcaron","ż":"zdot","Ż":"Zdot","Ƶ":"imped","þ":"thorn","Þ":"THORN","ʼn":"napos","α":"alpha","Α":"Alpha","β":"beta","Β":"Beta","γ":"gamma","Γ":"Gamma","δ":"delta","Δ":"Delta","ε":"epsi","ϵ":"epsiv","Ε":"Epsilon","ϝ":"gammad","Ϝ":"Gammad","ζ":"zeta","Ζ":"Zeta","η":"eta","Η":"Eta","θ":"theta","ϑ":"thetav","Θ":"Theta","ι":"iota","Ι":"Iota","κ":"kappa","ϰ":"kappav","Κ":"Kappa","λ":"lambda","Λ":"Lambda","μ":"mu","µ":"micro","Μ":"Mu","ν":"nu","Ν":"Nu","ξ":"xi","Ξ":"Xi","ο":"omicron","Ο":"Omicron","π":"pi","ϖ":"piv","Π":"Pi","ρ":"rho","ϱ":"rhov","Ρ":"Rho","σ":"sigma","Σ":"Sigma","ς":"sigmaf","τ":"tau","Τ":"Tau","υ":"upsi","Υ":"Upsilon","ϒ":"Upsi","φ":"phi","ϕ":"phiv","Φ":"Phi","χ":"chi","Χ":"Chi","ψ":"psi","Ψ":"Psi","ω":"omega","Ω":"ohm","а":"acy","А":"Acy","б":"bcy","Б":"Bcy","в":"vcy","В":"Vcy","г":"gcy","Г":"Gcy","ѓ":"gjcy","Ѓ":"GJcy","д":"dcy","Д":"Dcy","ђ":"djcy","Ђ":"DJcy","е":"iecy","Е":"IEcy","ё":"iocy","Ё":"IOcy","є":"jukcy","Є":"Jukcy","ж":"zhcy","Ж":"ZHcy","з":"zcy","З":"Zcy","ѕ":"dscy","Ѕ":"DScy","и":"icy","И":"Icy","і":"iukcy","І":"Iukcy","ї":"yicy","Ї":"YIcy","й":"jcy","Й":"Jcy","ј":"jsercy","Ј":"Jsercy","к":"kcy","К":"Kcy","ќ":"kjcy","Ќ":"KJcy","л":"lcy","Л":"Lcy","љ":"ljcy","Љ":"LJcy","м":"mcy","М":"Mcy","н":"ncy","Н":"Ncy","њ":"njcy","Њ":"NJcy","о":"ocy","О":"Ocy","п":"pcy","П":"Pcy","р":"rcy","Р":"Rcy","с":"scy","С":"Scy","т":"tcy","Т":"Tcy","ћ":"tshcy","Ћ":"TSHcy","у":"ucy","У":"Ucy","ў":"ubrcy","Ў":"Ubrcy","ф":"fcy","Ф":"Fcy","х":"khcy","Х":"KHcy","ц":"tscy","Ц":"TScy","ч":"chcy","Ч":"CHcy","џ":"dzcy","Џ":"DZcy","ш":"shcy","Ш":"SHcy","щ":"shchcy","Щ":"SHCHcy","ъ":"hardcy","Ъ":"HARDcy","ы":"ycy","Ы":"Ycy","ь":"softcy","Ь":"SOFTcy","э":"ecy","Э":"Ecy","ю":"yucy","Ю":"YUcy","я":"yacy","Я":"YAcy","ℵ":"aleph","ℶ":"beth","ℷ":"gimel","ℸ":"daleth"},p=/["&'<>`]/g,h={'"':""","&":"&","'":"'","<":"<",">":">","`":"`"},d=/&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/,m=/[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,g=/&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)([=a-zA-Z0-9])?/g,v={aacute:"á",Aacute:"Á",abreve:"ă",Abreve:"Ă",ac:"∾",acd:"∿",acE:"∾̳",acirc:"â",Acirc:"Â",acute:"´",acy:"а",Acy:"А",aelig:"æ",AElig:"Æ",af:"⁡",afr:"𝔞",Afr:"𝔄",agrave:"à",Agrave:"À",alefsym:"ℵ",aleph:"ℵ",alpha:"α",Alpha:"Α",amacr:"ā",Amacr:"Ā",amalg:"⨿",amp:"&",AMP:"&",and:"∧",And:"⩓",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",aogon:"ą",Aogon:"Ą",aopf:"𝕒",Aopf:"𝔸",ap:"≈",apacir:"⩯",ape:"≊",apE:"⩰",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",aring:"å",Aring:"Å",ascr:"𝒶",Ascr:"𝒜",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",bcy:"б",Bcy:"Б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",beta:"β",Beta:"Β",beth:"ℶ",between:"≬",bfr:"𝔟",Bfr:"𝔅",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bNot:"⫭",bopf:"𝕓",Bopf:"𝔹",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxhD:"╥",boxHd:"╤",boxHD:"╦",boxhu:"┴",boxhU:"╨",boxHu:"╧",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpe:"≏",bumpE:"⪮",bumpeq:"≏",Bumpeq:"≎",cacute:"ć",Cacute:"Ć",cap:"∩",Cap:"⋒",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",ccaron:"č",Ccaron:"Č",ccedil:"ç",Ccedil:"Ç",ccirc:"ĉ",Ccirc:"Ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",Cdot:"Ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",chcy:"ч",CHcy:"Ч",check:"✓",checkmark:"✓",chi:"χ",Chi:"Χ",cir:"○",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cire:"≗",cirE:"⧃",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",colone:"≔",Colone:"⩴",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",cscr:"𝒸",Cscr:"𝒞",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cup:"∪",Cup:"⋓",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",dArr:"⇓",Darr:"↡",dash:"‐",dashv:"⊣",Dashv:"⫤",dbkarow:"⤏",dblac:"˝",dcaron:"ď",Dcaron:"Ď",dcy:"д",Dcy:"Д",dd:"ⅆ",DD:"ⅅ",ddagger:"‡",ddarr:"⇊",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",delta:"δ",Delta:"Δ",demptyv:"⦱",dfisht:"⥿",dfr:"𝔡",Dfr:"𝔇",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",DJcy:"Ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",dopf:"𝕕",Dopf:"𝔻",dot:"˙",Dot:"¨",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",downarrow:"↓",Downarrow:"⇓",DownArrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",dscr:"𝒹",Dscr:"𝒟",dscy:"ѕ",DScy:"Ѕ",dsol:"⧶",dstrok:"đ",Dstrok:"Đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",dzcy:"џ",DZcy:"Џ",dzigrarr:"⟿",eacute:"é",Eacute:"É",easter:"⩮",ecaron:"ě",Ecaron:"Ě",ecir:"≖",ecirc:"ê",Ecirc:"Ê",ecolon:"≕",ecy:"э",Ecy:"Э",eDDot:"⩷",edot:"ė",eDot:"≑",Edot:"Ė",ee:"ⅇ",efDot:"≒",efr:"𝔢",Efr:"𝔈",eg:"⪚",egrave:"è",Egrave:"È",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",emacr:"ē",Emacr:"Ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp:" ",emsp13:" ",emsp14:" ",eng:"ŋ",ENG:"Ŋ",ensp:" ",eogon:"ę",Eogon:"Ę",eopf:"𝕖",Eopf:"𝔼",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",Epsilon:"Ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",esim:"≂",Esim:"⩳",eta:"η",Eta:"Η",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",fcy:"ф",Fcy:"Ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"𝔣",Ffr:"𝔉",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"𝕗",Fopf:"𝔽",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",gamma:"γ",Gamma:"Γ",gammad:"ϝ",Gammad:"Ϝ",gap:"⪆",gbreve:"ğ",Gbreve:"Ğ",Gcedil:"Ģ",gcirc:"ĝ",Gcirc:"Ĝ",gcy:"г",Gcy:"Г",gdot:"ġ",Gdot:"Ġ",ge:"≥",gE:"≧",gel:"⋛",gEl:"⪌",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"𝔤",Gfr:"𝔊",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",gjcy:"ѓ",GJcy:"Ѓ",gl:"≷",gla:"⪥",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",gopf:"𝕘",Gopf:"𝔾",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",gscr:"ℊ",Gscr:"𝒢",gsim:"≳",gsime:"⪎",gsiml:"⪐",gt:">",Gt:"≫",GT:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",hardcy:"ъ",HARDcy:"Ъ",harr:"↔",hArr:"⇔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",hcirc:"ĥ",Hcirc:"Ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",hstrok:"ħ",Hstrok:"Ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",iacute:"í",Iacute:"Í",ic:"⁣",icirc:"î",Icirc:"Î",icy:"и",Icy:"И",Idot:"İ",iecy:"е",IEcy:"Е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",igrave:"ì",Igrave:"Ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",IJlig:"IJ",Im:"ℑ",imacr:"ī",Imacr:"Ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",int:"∫",Int:"∬",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",iocy:"ё",IOcy:"Ё",iogon:"į",Iogon:"Į",iopf:"𝕚",Iopf:"𝕀",iota:"ι",Iota:"Ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",itilde:"ĩ",Itilde:"Ĩ",iukcy:"і",Iukcy:"І",iuml:"ï",Iuml:"Ï",jcirc:"ĵ",Jcirc:"Ĵ",jcy:"й",Jcy:"Й",jfr:"𝔧",Jfr:"𝔍",jmath:"ȷ",jopf:"𝕛",Jopf:"𝕁",jscr:"𝒿",Jscr:"𝒥",jsercy:"ј",Jsercy:"Ј",jukcy:"є",Jukcy:"Є",kappa:"κ",Kappa:"Κ",kappav:"ϰ",kcedil:"ķ",Kcedil:"Ķ",kcy:"к",Kcy:"К",kfr:"𝔨",Kfr:"𝔎",kgreen:"ĸ",khcy:"х",KHcy:"Х",kjcy:"ќ",KJcy:"Ќ",kopf:"𝕜",Kopf:"𝕂",kscr:"𝓀",Kscr:"𝒦",lAarr:"⇚",lacute:"ĺ",Lacute:"Ĺ",laemptyv:"⦴",lagran:"ℒ",lambda:"λ",Lambda:"Λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larr:"←",lArr:"⇐",Larr:"↞",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",latail:"⤙",lAtail:"⤛",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",Lcaron:"Ľ",lcedil:"ļ",Lcedil:"Ļ",lceil:"⌈",lcub:"{",lcy:"л",Lcy:"Л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",leftarrow:"←",Leftarrow:"⇐",LeftArrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",Leftrightarrow:"⇔",LeftRightArrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",leg:"⋚",lEg:"⪋",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",lfr:"𝔩",Lfr:"𝔏",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",ljcy:"љ",LJcy:"Љ",ll:"≪",Ll:"⋘",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",lmidot:"ŀ",Lmidot:"Ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",Longleftarrow:"⟸",LongLeftArrow:"⟵",longleftrightarrow:"⟷",Longleftrightarrow:"⟺",LongLeftRightArrow:"⟷",longmapsto:"⟼",longrightarrow:"⟶",Longrightarrow:"⟹",LongRightArrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",lopf:"𝕝",Lopf:"𝕃",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",lstrok:"ł",Lstrok:"Ł",lt:"<",Lt:"≪",LT:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",map:"↦",Map:"⤅",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",mcy:"м",Mcy:"М",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",mfr:"𝔪",Mfr:"𝔐",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",mopf:"𝕞",Mopf:"𝕄",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",mu:"μ",Mu:"Μ",multimap:"⊸",mumap:"⊸",nabla:"∇",nacute:"ń",Nacute:"Ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",ncaron:"ň",Ncaron:"Ň",ncedil:"ņ",Ncedil:"Ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",Ncy:"Н",ndash:"–",ne:"≠",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",nfr:"𝔫",Nfr:"𝔑",nge:"≱",ngE:"≧̸",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",ngt:"≯",nGt:"≫⃒",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",njcy:"њ",NJcy:"Њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nle:"≰",nlE:"≦̸",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nlt:"≮",nLt:"≪⃒",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",not:"¬",Not:"⫬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrarr:"↛",nrArr:"⇏",nrarrc:"⤳̸",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",nscr:"𝓃",Nscr:"𝒩",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsube:"⊈",nsubE:"⫅̸",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupe:"⊉",nsupE:"⫆̸",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",ntilde:"ñ",Ntilde:"Ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",nu:"ν",Nu:"Ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",oacute:"ó",Oacute:"Ó",oast:"⊛",ocir:"⊚",ocirc:"ô",Ocirc:"Ô",ocy:"о",Ocy:"О",odash:"⊝",odblac:"ő",Odblac:"Ő",odiv:"⨸",odot:"⊙",odsold:"⦼",oelig:"œ",OElig:"Œ",ofcir:"⦿",ofr:"𝔬",Ofr:"𝔒",ogon:"˛",ograve:"ò",Ograve:"Ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",omacr:"ō",Omacr:"Ō",omega:"ω",Omega:"Ω",omicron:"ο",Omicron:"Ο",omid:"⦶",ominus:"⊖",oopf:"𝕠",Oopf:"𝕆",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",or:"∨",Or:"⩔",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",oscr:"ℴ",Oscr:"𝒪",oslash:"ø",Oslash:"Ø",osol:"⊘",otilde:"õ",Otilde:"Õ",otimes:"⊗",Otimes:"⨷",otimesas:"⨶",ouml:"ö",Ouml:"Ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",pcy:"п",Pcy:"П",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",pfr:"𝔭",Pfr:"𝔓",phi:"φ",Phi:"Φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",pi:"π",Pi:"Π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",pr:"≺",Pr:"⪻",prap:"⪷",prcue:"≼",pre:"⪯",prE:"⪳",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",pscr:"𝓅",Pscr:"𝒫",psi:"ψ",Psi:"Ψ",puncsp:" ",qfr:"𝔮",Qfr:"𝔔",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",qscr:"𝓆",Qscr:"𝒬",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",racute:"ŕ",Racute:"Ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarr:"→",rArr:"⇒",Rarr:"↠",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",Rarrtl:"⤖",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",Rcaron:"Ř",rcedil:"ŗ",Rcedil:"Ŗ",rceil:"⌉",rcub:"}",rcy:"р",Rcy:"Р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",rho:"ρ",Rho:"Ρ",rhov:"ϱ",RightAngleBracket:"⟩",rightarrow:"→",Rightarrow:"⇒",RightArrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",sacute:"ś",Sacute:"Ś",sbquo:"‚",sc:"≻",Sc:"⪼",scap:"⪸",scaron:"š",Scaron:"Š",sccue:"≽",sce:"⪰",scE:"⪴",scedil:"ş",Scedil:"Ş",scirc:"ŝ",Scirc:"Ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",scy:"с",Scy:"С",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",sfr:"𝔰",Sfr:"𝔖",sfrown:"⌢",sharp:"♯",shchcy:"щ",SHCHcy:"Щ",shcy:"ш",SHcy:"Ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",sigma:"σ",Sigma:"Σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",SOFTcy:"Ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"𝕤",Sopf:"𝕊",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",sscr:"𝓈",Sscr:"𝒮",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",star:"☆",Star:"⋆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",sube:"⊆",subE:"⫅",subedot:"⫃",submult:"⫁",subne:"⊊",subnE:"⫋",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup:"⊃",Sup:"⋑",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supe:"⊇",supE:"⫆",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supne:"⊋",supnE:"⫌",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",tau:"τ",Tau:"Τ",tbrk:"⎴",tcaron:"ť",Tcaron:"Ť",tcedil:"ţ",Tcedil:"Ţ",tcy:"т",Tcy:"Т",tdot:"⃛",telrec:"⌕",tfr:"𝔱",Tfr:"𝔗",there4:"∴",therefore:"∴",Therefore:"∴",theta:"θ",Theta:"Θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",thorn:"þ",THORN:"Þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",topf:"𝕥",Topf:"𝕋",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"𝓉",Tscr:"𝒯",tscy:"ц",TScy:"Ц",tshcy:"ћ",TSHcy:"Ћ",tstrok:"ŧ",Tstrok:"Ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",uacute:"ú",Uacute:"Ú",uarr:"↑",uArr:"⇑",Uarr:"↟",Uarrocir:"⥉",ubrcy:"ў",Ubrcy:"Ў",ubreve:"ŭ",Ubreve:"Ŭ",ucirc:"û",Ucirc:"Û",ucy:"у",Ucy:"У",udarr:"⇅",udblac:"ű",Udblac:"Ű",udhar:"⥮",ufisht:"⥾",ufr:"𝔲",Ufr:"𝔘",ugrave:"ù",Ugrave:"Ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",Umacr:"Ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",uogon:"ų",Uogon:"Ų",uopf:"𝕦",Uopf:"𝕌",uparrow:"↑",Uparrow:"⇑",UpArrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",updownarrow:"↕",Updownarrow:"⇕",UpDownArrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",upsilon:"υ",Upsilon:"Υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",Uring:"Ů",urtri:"◹",uscr:"𝓊",Uscr:"𝒰",utdot:"⋰",utilde:"ũ",Utilde:"Ũ",utri:"▵",utrif:"▴",uuarr:"⇈",uuml:"ü",Uuml:"Ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",vcy:"в",Vcy:"В",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",vee:"∨",Vee:"⋁",veebar:"⊻",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",vfr:"𝔳",Vfr:"𝔙",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",vopf:"𝕧",Vopf:"𝕍",vprop:"∝",vrtri:"⊳",vscr:"𝓋",Vscr:"𝒱",vsubne:"⊊︀",vsubnE:"⫋︀",vsupne:"⊋︀",vsupnE:"⫌︀",Vvdash:"⊪",vzigzag:"⦚",wcirc:"ŵ",Wcirc:"Ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",wfr:"𝔴",Wfr:"𝔚",wopf:"𝕨",Wopf:"𝕎",wp:"℘",wr:"≀",wreath:"≀",wscr:"𝓌",Wscr:"𝒲",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",xfr:"𝔵",Xfr:"𝔛",xharr:"⟷",xhArr:"⟺",xi:"ξ",Xi:"Ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",xopf:"𝕩",Xopf:"𝕏",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",xscr:"𝓍",Xscr:"𝒳",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",yacute:"ý",Yacute:"Ý",yacy:"я",YAcy:"Я",ycirc:"ŷ",Ycirc:"Ŷ",ycy:"ы",Ycy:"Ы",yen:"¥",yfr:"𝔶",Yfr:"𝔜",yicy:"ї",YIcy:"Ї",yopf:"𝕪",Yopf:"𝕐",yscr:"𝓎",Yscr:"𝒴",yucy:"ю",YUcy:"Ю",yuml:"ÿ",Yuml:"Ÿ",zacute:"ź",Zacute:"Ź",zcaron:"ž",Zcaron:"Ž",zcy:"з",Zcy:"З",zdot:"ż",Zdot:"Ż",zeetrf:"ℨ",ZeroWidthSpace:"​",zeta:"ζ",Zeta:"Ζ",zfr:"𝔷",Zfr:"ℨ",zhcy:"ж",ZHcy:"Ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",zscr:"𝓏",Zscr:"𝒵",zwj:"‍",zwnj:"‌"},b={aacute:"á",Aacute:"Á",acirc:"â",Acirc:"Â",acute:"´",aelig:"æ",AElig:"Æ",agrave:"à",Agrave:"À",amp:"&",AMP:"&",aring:"å",Aring:"Å",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",brvbar:"¦",ccedil:"ç",Ccedil:"Ç",cedil:"¸",cent:"¢",copy:"©",COPY:"©",curren:"¤",deg:"°",divide:"÷",eacute:"é",Eacute:"É",ecirc:"ê",Ecirc:"Ê",egrave:"è",Egrave:"È",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",frac12:"½",frac14:"¼",frac34:"¾",gt:">",GT:">",iacute:"í",Iacute:"Í",icirc:"î",Icirc:"Î",iexcl:"¡",igrave:"ì",Igrave:"Ì",iquest:"¿",iuml:"ï",Iuml:"Ï",laquo:"«",lt:"<",LT:"<",macr:"¯",micro:"µ",middot:"·",nbsp:" ",not:"¬",ntilde:"ñ",Ntilde:"Ñ",oacute:"ó",Oacute:"Ó",ocirc:"ô",Ocirc:"Ô",ograve:"ò",Ograve:"Ò",ordf:"ª",ordm:"º",oslash:"ø",Oslash:"Ø",otilde:"õ",Otilde:"Õ",ouml:"ö",Ouml:"Ö",para:"¶",plusmn:"±",pound:"£",quot:'"',QUOT:'"',raquo:"»",reg:"®",REG:"®",sect:"§",shy:"­",sup1:"¹",sup2:"²",sup3:"³",szlig:"ß",thorn:"þ",THORN:"Þ",times:"×",uacute:"ú",Uacute:"Ú",ucirc:"û",Ucirc:"Û",ugrave:"ù",Ugrave:"Ù",uml:"¨",uuml:"ü",Uuml:"Ü",yacute:"ý",Yacute:"Ý",yen:"¥",yuml:"ÿ"},y={0:"�",128:"€",130:"‚",131:"ƒ",132:"„",133:"…",134:"†",135:"‡",136:"ˆ",137:"‰",138:"Š",139:"‹",140:"Œ",142:"Ž",145:"‘",146:"’",147:"“",148:"”",149:"•",150:"–",151:"—",152:"˜",153:"™",154:"š",155:"›",156:"œ",158:"ž",159:"Ÿ"},_=[1,2,3,4,5,6,7,8,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985,64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998,64999,65e3,65001,65002,65003,65004,65005,65006,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111],w=String.fromCharCode,E={}.hasOwnProperty,A=function(e,t){return E.call(e,t)},x=function(e,t){for(var n=-1,r=e.length;++n=55296&&e<=57343||e>1114111?(t&&B("character reference outside the permissible Unicode range"),"�"):A(y,e)?(t&&B("disallowed character reference"),y[e]):(t&&x(_,e)&&B("disallowed character reference"),e>65535&&(n+=w((e-=65536)>>>10&1023|55296),e=56320|1023&e),n+=w(e))},O=function(e){return"&#x"+e.toString(16).toUpperCase()+";"},S=function(e){return"&#"+e+";"},B=function(e){throw Error("Parse error: "+e)},D=function(e,t){(t=C(t,D.options)).strict&&m.test(e)&&B("forbidden code point");var n=t.encodeEverything,r=t.useNamedReferences,o=t.allowUnsafeSymbols,i=t.decimal?S:O,a=function(e){return i(e.charCodeAt(0))};return n?(e=e.replace(u,function(e){return r&&A(f,e)?"&"+f[e]+";":a(e)}),r&&(e=e.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒").replace(/fj/g,"fj")),r&&(e=e.replace(c,function(e){return"&"+f[e]+";"}))):r?(o||(e=e.replace(p,function(e){return"&"+f[e]+";"})),e=(e=e.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒")).replace(c,function(e){return"&"+f[e]+";"})):o||(e=e.replace(p,a)),e.replace(s,function(e){var t=e.charCodeAt(0),n=e.charCodeAt(1);return i(1024*(t-55296)+n-56320+65536)}).replace(l,a)};D.options={allowUnsafeSymbols:!1,encodeEverything:!1,strict:!1,useNamedReferences:!1,decimal:!1};var T=function(e,t){var n=(t=C(t,T.options)).strict;return n&&d.test(e)&&B("malformed character reference"),e.replace(g,function(e,r,o,i,a,s,u,l){var c,f,p,h,d,m;return r?(p=r,f=o,n&&!f&&B("character reference was not terminated by a semicolon"),c=parseInt(p,10),k(c,n)):i?(h=i,f=a,n&&!f&&B("character reference was not terminated by a semicolon"),c=parseInt(h,16),k(c,n)):s?(d=s,A(v,d)?v[d]:(n&&B("named character reference was not terminated by a semicolon"),e)):(d=u,(m=l)&&t.isAttributeValue?(n&&"="==m&&B("`&` did not start a character reference"),e):(n&&B("named character reference was not terminated by a semicolon"),b[d]+(m||"")))})};T.options={isAttributeValue:!1,strict:!1};var R={version:"1.1.1",encode:D,decode:T,escape:function(e){return e.replace(p,function(e){return h[e]})},unescape:T};if("function"==typeof define&&"object"==typeof define.amd&&define.amd)define(function(){return R});else if(o&&!o.nodeType)if(i)i.exports=R;else for(var F in R)A(R,F)&&(o[F]=R[F]);else r.he=R}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],104:[function(e,t,n){function r(e){if("string"==typeof e&&(e=i.parse(e)),e.protocol||(e.protocol="https:"),"https:"!==e.protocol)throw new Error('Protocol "'+e.protocol+'" not supported. Expected "https:"');return e}var o=e("http"),i=e("url"),a=t.exports;for(var s in o)o.hasOwnProperty(s)&&(a[s]=o[s]);a.request=function(e,t){return e=r(e),o.request.call(this,e,t)},a.get=function(e,t){return e=r(e),o.get.call(this,e,t)}},{http:156,url:162}],105:[function(e,t,n){n.read=function(e,t,n,r,o){var i,a,s=8*o-r-1,u=(1<>1,c=-7,f=n?o-1:0,p=n?-1:1,h=e[t+f];for(f+=p,i=h&(1<<-c)-1,h>>=-c,c+=s;c>0;i=256*i+e[t+f],f+=p,c-=8);for(a=i&(1<<-c)-1,i>>=-c,c+=r;c>0;a=256*a+e[t+f],f+=p,c-=8);if(0===i)i=1-l;else{if(i===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,r),i-=l}return(h?-1:1)*a*Math.pow(2,i-r)},n.write=function(e,t,n,r,o,i){var a,s,u,l=8*i-o-1,c=(1<>1,p=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:i-1,d=r?1:-1,m=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),(t+=a+f>=1?p/u:p*Math.pow(2,1-f))*u>=2&&(a++,u/=2),a+f>=c?(s=0,a=c):a+f>=1?(s=(t*u-1)*Math.pow(2,o),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,o),a=0));o>=8;e[n+h]=255&s,h+=d,s/=256,o-=8);for(a=a<0;e[n+h]=255&a,h+=d,a/=256,l-=8);e[n+h-d]|=128*m}},{}],106:[function(e,t,n){"function"==typeof Object.create?t.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:t.exports=function(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}},{}],107:[function(e,t,n){function r(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}function o(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&r(e.slice(0,0))}t.exports=function(e){return null!=e&&(r(e)||o(e)||!!e._isBuffer)}},{}],108:[function(e,t,n){var r={}.toString;t.exports=Array.isArray||function(e){return"[object Array]"==r.call(e)}},{}],109:[function(e,t,n){"use strict";function r(e){return e.source.slice(1,-1)}var o=e("xml-char-classes");t.exports=new RegExp("^["+r(o.letter)+"_]["+r(o.letter)+r(o.digit)+"\\.\\-_"+r(o.combiningChar)+r(o.extender)+"]*$")},{"xml-char-classes":165}],110:[function(e,t,n){n.endianness=function(){return"LE"},n.hostname=function(){return"undefined"!=typeof location?location.hostname:""},n.loadavg=function(){return[]},n.uptime=function(){return 0},n.freemem=function(){return Number.MAX_VALUE},n.totalmem=function(){return Number.MAX_VALUE},n.cpus=function(){return[]},n.type=function(){return"Browser"},n.release=function(){return"undefined"!=typeof navigator?navigator.appVersion:""},n.networkInterfaces=n.getNetworkInterfaces=function(){return{}},n.arch=function(){return"javascript"},n.platform=function(){return"browser"},n.tmpdir=n.tmpDir=function(){return"/tmp"},n.EOL="\n"},{}],111:[function(e,t,n){(function(e){function t(e,t){for(var n=0,r=e.length-1;r>=0;r--){var o=e[r];"."===o?e.splice(r,1):".."===o?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r=-1&&!o;i--){var a=i>=0?arguments[i]:e.cwd();if("string"!=typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(n=a+"/"+n,o="/"===a.charAt(0))}return n=t(r(n.split("/"),function(e){return!!e}),!o).join("/"),(o?"/":"")+n||"."},n.normalize=function(e){var o=n.isAbsolute(e),i="/"===a(e,-1);return(e=t(r(e.split("/"),function(e){return!!e}),!o).join("/"))||o||(e="."),e&&i&&(e+="/"),(o?"/":"")+e},n.isAbsolute=function(e){return"/"===e.charAt(0)},n.join=function(){var e=Array.prototype.slice.call(arguments,0);return n.normalize(r(e,function(e,t){if("string"!=typeof e)throw new TypeError("Arguments to path.join must be strings");return e}).join("/"))},n.relative=function(e,t){function r(e){for(var t=0;t=0&&""===e[n];n--);return t>n?[]:e.slice(t,n-t+1)}e=n.resolve(e).substr(1),t=n.resolve(t).substr(1);for(var o=r(e.split("/")),i=r(t.split("/")),a=Math.min(o.length,i.length),s=a,u=0;u1)for(var n=1;n1&&(r=n[0]+"@",e=n[1]),r+i((e=e.replace(D,".")).split("."),t).join(".")}function s(e){for(var t,n,r=[],o=0,i=e.length;o=55296&&t<=56319&&o65535&&(t+=L((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=L(e)}).join("")}function l(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:_}function c(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function f(e,t,n){var r=0;for(e=n?F(e/x):e>>1,e+=F(e/t);e>R*E>>1;r+=_)e=F(e/R);return F(r+(R+1)*e/(e+A))}function p(e){var t,n,r,i,a,s,c,p,h,d,m=[],g=e.length,v=0,b=k,A=C;for((n=e.lastIndexOf(O))<0&&(n=0),r=0;r=128&&o("not-basic"),m.push(e.charCodeAt(r));for(i=n>0?n+1:0;i=g&&o("invalid-input"),((p=l(e.charCodeAt(i++)))>=_||p>F((y-v)/s))&&o("overflow"),v+=p*s,h=c<=A?w:c>=A+E?E:c-A,!(pF(y/(d=_-h))&&o("overflow"),s*=d;A=f(v-a,t=m.length+1,0==a),F(v/t)>y-b&&o("overflow"),b+=F(v/t),v%=t,m.splice(v++,0,b)}return u(m)}function h(e){var t,n,r,i,a,u,l,p,h,d,m,g,v,b,A,x=[];for(g=(e=s(e)).length,t=k,n=0,a=C,u=0;u=t&&mF((y-n)/(v=r+1))&&o("overflow"),n+=(l-t)*v,t=l,u=0;uy&&o("overflow"),m==t){for(p=n,h=_;d=h<=a?w:h>=a+E?E:h-a,!(p= 0x80 (not a basic code point)","invalid-input":"Invalid input"},R=_-w,F=Math.floor,L=String.fromCharCode;if(v={version:"1.4.1",ucs2:{decode:s,encode:u},decode:p,encode:h,toASCII:function(e){return a(e,function(e){return B.test(e)?"xn--"+h(e):e})},toUnicode:function(e){return a(e,function(e){return S.test(e)?p(e.slice(4).toLowerCase()):e})}},"function"==typeof define&&"object"==typeof define.amd&&define.amd)define("punycode",function(){return v});else if(d&&m)if(t.exports==d)m.exports=v;else for(b in v)v.hasOwnProperty(b)&&(d[b]=v[b]);else r.punycode=v}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],115:[function(e,t,n){"use strict";function r(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.exports=function(e,t,n,i){t=t||"&",n=n||"=";var a={};if("string"!=typeof e||0===e.length)return a;var s=/\+/g;e=e.split(t);var u=1e3;i&&"number"==typeof i.maxKeys&&(u=i.maxKeys);var l=e.length;u>0&&l>u&&(l=u);for(var c=0;c=0?(f=m.substr(0,g),p=m.substr(g+1)):(f=m,p=""),h=decodeURIComponent(f),d=decodeURIComponent(p),r(a,h)?o(a[h])?a[h].push(d):a[h]=[a[h],d]:a[h]=d}return a};var o=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)}},{}],116:[function(e,t,n){"use strict";function r(e,t){if(e.map)return e.map(t);for(var n=[],r=0;r0?("string"==typeof t||a.objectMode||Object.getPrototypeOf(t)===N.prototype||(t=o(t)),r?a.endEmitted?e.emit("error",new Error("stream.unshift() after end event")):c(e,a,t,!0):a.ended?e.emit("error",new Error("stream.push() after EOF")):(a.reading=!1,a.decoder&&!n?(t=a.decoder.write(t),a.objectMode||0!==t.length?c(e,a,t,!1):b(e,a)):c(e,a,t,!1))):r||(a.reading=!1)}return p(a)}function c(e,t,n,r){t.flowing&&0===t.length&&!t.sync?(e.emit("data",n),e.read(0)):(t.length+=t.objectMode?1:n.length,r?t.buffer.unshift(n):t.buffer.push(n),t.needReadable&&g(e)),b(e,t)}function f(e,t){var n;return i(t)||"string"==typeof t||void 0===t||e.objectMode||(n=new TypeError("Invalid non-string/buffer chunk")),n}function p(e){return!e.ended&&(e.needReadable||e.length=K?e=K:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}function d(e,t){return e<=0||0===t.length&&t.ended?0:t.objectMode?1:e!==e?t.flowing&&t.length?t.buffer.head.data.length:t.length:(e>t.highWaterMark&&(t.highWaterMark=h(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function m(e,t){if(!t.ended){if(t.decoder){var n=t.decoder.end();n&&n.length&&(t.buffer.push(n),t.length+=t.objectMode?1:n.length)}t.ended=!0,g(e)}}function g(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(I("emitReadable",t.flowing),t.emittedReadable=!0,t.sync?R(v,e):v(e))}function v(e){I("emit readable"),e.emit("readable"),x(e)}function b(e,t){t.readingMore||(t.readingMore=!0,R(y,e,t))}function y(e,t){for(var n=t.length;!t.reading&&!t.flowing&&!t.ended&&t.length=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.head.data:t.buffer.concat(t.length),t.buffer.clear()):n=k(e,t.buffer,t.decoder),n}function k(e,t,n){var r;return ei.length?i.length:e;if(a===i.length?o+=i:o+=i.slice(0,e),0===(e-=a)){a===i.length?(++r,n.next?t.head=n.next:t.head=t.tail=null):(t.head=n,n.data=i.slice(a));break}++r}return t.length-=r,o}function S(e,t){var n=N.allocUnsafe(e),r=t.head,o=1;for(r.data.copy(n),e-=r.data.length;r=r.next;){var i=r.data,a=e>i.length?i.length:e;if(i.copy(n,n.length-e,0,a),0===(e-=a)){a===i.length?(++o,r.next?t.head=r.next:t.head=t.tail=null):(t.head=r,r.data=i.slice(a));break}++o}return t.length-=o,n}function B(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');t.endEmitted||(t.ended=!0,R(D,t,e))}function D(e,t){e.endEmitted||0!==e.length||(e.endEmitted=!0,t.readable=!1,t.emit("end"))}function T(e,t){for(var n=0,r=e.length;n=t.highWaterMark||t.ended))return I("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?B(this):g(this),null;if(0===(e=d(e,t))&&t.ended)return 0===t.length&&B(this),null;var r=t.needReadable;I("need readable",r),(0===t.length||t.length-e0?C(e,t):null)?(t.needReadable=!0,e=0):t.length-=e,0===t.length&&(t.ended||(t.needReadable=!0),n!==e&&t.ended&&B(this)),null!==o&&this.emit("data",o),o},u.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))},u.prototype.pipe=function(e,t){function r(e,t){I("onunpipe"),e===p&&t&&!1===t.hasUnpiped&&(t.hasUnpiped=!0,i())}function o(){I("onend"),e.end()}function i(){I("cleanup"),e.removeListener("close",l),e.removeListener("finish",c),e.removeListener("drain",m),e.removeListener("error",u),e.removeListener("unpipe",r),p.removeListener("end",o),p.removeListener("end",f),p.removeListener("data",s),g=!0,!h.awaitDrain||e._writableState&&!e._writableState.needDrain||m()}function s(t){I("ondata"),v=!1,!1!==e.write(t)||v||((1===h.pipesCount&&h.pipes===e||h.pipesCount>1&&-1!==T(h.pipes,e))&&!g&&(I("false write response, pause",p._readableState.awaitDrain),p._readableState.awaitDrain++,v=!0),p.pause())}function u(t){I("onerror",t),f(),e.removeListener("error",u),0===M(e,"error")&&e.emit("error",t)}function l(){e.removeListener("finish",c),f()}function c(){I("onfinish"),e.removeListener("close",l),f()}function f(){I("unpipe"),p.unpipe(e)}var p=this,h=this._readableState;switch(h.pipesCount){case 0:h.pipes=e;break;case 1:h.pipes=[h.pipes,e];break;default:h.pipes.push(e)}h.pipesCount+=1,I("pipe count=%d opts=%j",h.pipesCount,t);var d=(!t||!1!==t.end)&&e!==n.stdout&&e!==n.stderr?o:f;h.endEmitted?R(d):p.once("end",d),e.on("unpipe",r);var m=_(p);e.on("drain",m);var g=!1,v=!1;return p.on("data",s),a(e,"error",u),e.once("close",l),e.once("finish",c),e.emit("pipe",p),h.flowing||(I("pipe resume"),p.resume()),e},u.prototype.unpipe=function(e){var t=this._readableState,n={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes?this:(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,n),this);if(!e){var r=t.pipes,o=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var i=0;i-1?setImmediate:O;l.WritableState=u;var D=e("core-util-is");D.inherits=e("inherits");var T={deprecate:e("util-deprecate")},R=e("./internal/streams/stream"),F=e("safe-buffer").Buffer,L=r.Uint8Array||function(){},M=e("./internal/streams/destroy");D.inherits(l,R),u.prototype.getBuffer=function(){for(var e=this.bufferedRequest,t=[];e;)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(u.prototype,"buffer",{get:T.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}();var U;"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(U=Function.prototype[Symbol.hasInstance],Object.defineProperty(l,Symbol.hasInstance,{value:function(e){return!!U.call(this,e)||e&&e._writableState instanceof u}})):U=function(e){return e instanceof this},l.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},l.prototype.write=function(e,t,n){var r=this._writableState,o=!1,u=a(e)&&!r.objectMode;return u&&!F.isBuffer(e)&&(e=i(e)),"function"==typeof t&&(n=t,t=null),u?t="buffer":t||(t=r.defaultEncoding),"function"!=typeof n&&(n=s),r.ended?c(this,n):(u||f(this,r,e,n))&&(r.pendingcb++,o=h(this,r,u,e,t,n)),o},l.prototype.cork=function(){this._writableState.corked++},l.prototype.uncork=function(){var e=this._writableState;e.corked&&(e.corked--,e.writing||e.corked||e.finished||e.bufferProcessing||!e.bufferedRequest||_(this,e))},l.prototype.setDefaultEncoding=function(e){if("string"==typeof e&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+e);return this._writableState.defaultEncoding=e,this},l.prototype._write=function(e,t,n){n(new Error("_write() is not implemented"))},l.prototype._writev=null,l.prototype.end=function(e,t,n){var r=this._writableState;"function"==typeof e?(n=e,e=null,t=null):"function"==typeof t&&(n=t,t=null),null!==e&&void 0!==e&&this.write(e,t),r.corked&&(r.corked=1,this.uncork()),r.ending||r.finished||C(this,r,n)},Object.defineProperty(l.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),l.prototype.destroy=M.destroy,l.prototype._undestroy=M.undestroy,l.prototype._destroy=function(e,t){this.end(),t(e)}}).call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./_stream_duplex":118,"./internal/streams/destroy":124,"./internal/streams/stream":125,_process:113,"core-util-is":101,inherits:106,"process-nextick-args":112,"safe-buffer":144,"util-deprecate":164}],123:[function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t,n){e.copy(t,n)}var i=e("safe-buffer").Buffer;t.exports=function(){function e(){r(this,e),this.head=null,this.tail=null,this.length=0}return e.prototype.push=function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length},e.prototype.unshift=function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length},e.prototype.shift=function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}},e.prototype.clear=function(){this.head=this.tail=null,this.length=0},e.prototype.join=function(e){if(0===this.length)return"";for(var t=this.head,n=""+t.data;t=t.next;)n+=e+t.data;return n},e.prototype.concat=function(e){if(0===this.length)return i.alloc(0);if(1===this.length)return this.head.data;for(var t=i.allocUnsafe(e>>>0),n=this.head,r=0;n;)o(n.data,t,r),r+=n.data.length,n=n.next;return t},e}()},{"safe-buffer":144}],124:[function(e,t,n){"use strict";function r(e,t){e.emit("error",t)}var o=e("process-nextick-args");t.exports={destroy:function(e,t){var n=this,i=this._readableState&&this._readableState.destroyed,a=this._writableState&&this._writableState.destroyed;i||a?t?t(e):!e||this._writableState&&this._writableState.errorEmitted||o(r,this,e):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,function(e){!t&&e?(o(r,n,e),n._writableState&&(n._writableState.errorEmitted=!0)):t&&t(e)}))},undestroy: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)}}},{"process-nextick-args":112}],125:[function(e,t,n){t.exports=e("events").EventEmitter},{events:102}],126:[function(e,t,n){(n=t.exports=e("./lib/_stream_readable.js")).Stream=n,n.Readable=n,n.Writable=e("./lib/_stream_writable.js"),n.Duplex=e("./lib/_stream_duplex.js"),n.Transform=e("./lib/_stream_transform.js"),n.PassThrough=e("./lib/_stream_passthrough.js")},{"./lib/_stream_duplex.js":118,"./lib/_stream_passthrough.js":119,"./lib/_stream_readable.js":120,"./lib/_stream_transform.js":121,"./lib/_stream_writable.js":122}],127:[function(e,t,n){"use strict";t.exports={ABSOLUTE:"absolute",PATH_RELATIVE:"pathRelative",ROOT_RELATIVE:"rootRelative",SHORTEST:"shortest"}},{}],128:[function(e,t,n){"use strict";function r(e,t){return!e.auth||t.removeAuth||!e.extra.relation.maximumHost&&t.output!==d.ABSOLUTE?"":e.auth+"@"}function o(e,t){return e.hash?e.hash:""}function i(e,t){return e.host.full&&(e.extra.relation.maximumAuth||t.output===d.ABSOLUTE)?e.host.full:""}function a(e,t){var n="",r=e.path.absolute.string,o=e.path.relative.string,i=h(e,t);if(e.extra.relation.maximumHost||t.output===d.ABSOLUTE||t.output===d.ROOT_RELATIVE)n=r;else if(o.length<=r.length&&t.output===d.SHORTEST||t.output===d.PATH_RELATIVE){if(""===(n=o)){var a=p(e,t)&&!!f(e,t);e.extra.relation.maximumPath&&!i?n="./":!e.extra.relation.overridesQuery||i||a||(n="./")}}else n=r;return"/"!==n||i||!t.removeRootTrailingSlash||e.extra.relation.minimumPort&&t.output!==d.ABSOLUTE||(n=""),n}function s(e,t){return e.port&&!e.extra.portIsDefault&&e.extra.relation.maximumHost?":"+e.port:""}function u(e,t){return p(e,t)?f(e,t):""}function l(e,t){return h(e,t)?e.resource:""}function c(e,t){var n="";return(e.extra.relation.maximumHost||t.output===d.ABSOLUTE)&&(e.extra.relation.minimumScheme&&t.schemeRelative&&t.output!==d.ABSOLUTE?n+="//":n+=e.scheme+"://"),n}function f(e,t){var n=t.removeEmptyQueries&&e.extra.relation.minimumPort;return e.query.string[n?"stripped":"full"]}function p(e,t){return!e.extra.relation.minimumQuery||t.output===d.ABSOLUTE||t.output===d.ROOT_RELATIVE}function h(e,t){var n=t.removeDirectoryIndexes&&e.extra.resourceIsIndex,r=e.extra.relation.minimumResource&&t.output!==d.ABSOLUTE&&t.output!==d.ROOT_RELATIVE;return!!e.resource&&!r&&!n}var d=e("./constants");t.exports=function(e,t){var n="";return n+=c(e,t),n+=r(e,t),n+=i(e,t),n+=s(e,t),n+=a(e,t),n+=l(e,t),n+=u(e,t),n+=o(e,t)}},{"./constants":127}],129:[function(e,t,n){"use strict";function r(e,t){this.options=a(t,{defaultPorts:{ftp:21,http:80,https:443},directoryIndexes:["index.html"],ignore_www:!1,output:r.SHORTEST,rejectedSchemes:["data","javascript","mailto"],removeAuth:!1,removeDirectoryIndexes:!0,removeEmptyQueries:!1,removeRootTrailingSlash:!0,schemeRelative:!0,site:void 0,slashesDenoteHost:!0}),this.from=u.from(e,this.options,null)}var o=e("./constants"),i=e("./format"),a=e("./options"),s=e("./util/object"),u=e("./parse"),l=e("./relate");r.prototype.relate=function(e,t,n){if(s.isPlainObject(t)?(n=t,t=e,e=null):t||(t=e,e=null),n=a(n,this.options),e=e||n.site,!(e=u.from(e,n,this.from))||!e.href)throw new Error("from value not defined.");if(e.extra.hrefInfo.minimumPathOnly)throw new Error("from value supplied is not absolute: "+e.href);return!1===(t=u.to(t,n)).valid?t.href:(t=l(e,t,n),t=i(t,n))},r.relate=function(e,t,n){return(new r).relate(e,t,n)},s.shallowMerge(r,o),t.exports=r},{"./constants":127,"./format":128,"./options":130,"./parse":133,"./relate":140,"./util/object":142}],130:[function(e,t,n){"use strict";function r(e,t){return t instanceof Object&&e instanceof Object?t instanceof Array&&e instanceof Array?t.concat(e):o.shallowMerge(e,t):e}var o=e("./util/object");t.exports=function(e,t){if(o.isPlainObject(e)){var n={};for(var i in t)t.hasOwnProperty(i)&&(void 0!==e[i]?n[i]=r(e[i],t[i]):n[i]=t[i]);return n}return t}},{"./util/object":142}],131:[function(e,t,n){"use strict";t.exports=function(e,t){if(t.ignore_www){var n=e.host.full;if(n){var r=n;0===n.indexOf("www.")&&(r=n.substr(4)),e.host.stripped=r}}}},{}],132:[function(e,t,n){"use strict";t.exports=function(e){var t=!(e.scheme||e.auth||e.host.full||e.port),n=t&&!e.path.absolute.string,r=n&&!e.resource,o=r&&!e.query.string.full.length,i=o&&!e.hash;e.extra.hrefInfo.minimumPathOnly=t,e.extra.hrefInfo.minimumResourceOnly=n,e.extra.hrefInfo.minimumQueryOnly=r,e.extra.hrefInfo.minimumHashOnly=o,e.extra.hrefInfo.empty=i}},{}],133:[function(e,t,n){"use strict";function r(e,t){var n=l(e,t);return!1===n.valid?n:(i(n,t),s(n,t),a(n,t),u(n,t),o(n),n)}var o=e("./hrefInfo"),i=e("./host"),a=e("./path"),s=e("./port"),u=e("./query"),l=e("./urlstring"),c=e("../util/path");t.exports={from:function(e,t,n){if(e){var o=r(e,t),i=c.resolveDotSegments(o.path.absolute.array);return o.path.absolute.array=i,o.path.absolute.string="/"+c.join(i),o}return n},to:r}},{"../util/path":143,"./host":131,"./hrefInfo":132,"./path":134,"./port":135,"./query":136,"./urlstring":137}],134:[function(e,t,n){"use strict";function r(e,t){var n=!1;return t.directoryIndexes.every(function(t){return t!==e||(n=!0,!1)}),n}function o(e){if("/"!==e){var t=[];return e.split("/").forEach(function(e){""!==e&&t.push(e)}),t}return[]}t.exports=function(e,t){var n=e.path.absolute.string;if(n){var i=n.lastIndexOf("/");if(i>-1){if(++i-1&&(n=n.toString(),null===e.port&&(e.port=n),e.extra.portIsDefault=e.port===n)}},{}],136:[function(e,t,n){"use strict";function r(e,t){var n=0,r="";for(var i in e)if(""!==i&&!0===o.call(e,i)){var a=e[i];""===a&&t||(r+=1==++n?"?":"&",i=encodeURIComponent(i),r+=""!==a?i+"="+encodeURIComponent(a).replace(/%20/g,"+"):i)}return r}var o=Object.prototype.hasOwnProperty;t.exports=function(e,t){e.query.string.full=r(e.query.object,!1),t.removeEmptyQueries&&(e.query.string.stripped=r(e.query.object,!0))}},{}],137:[function(e,t,n){"use strict";function r(e){var t=e.protocol;return t&&t.indexOf(":")===t.length-1&&(t=t.substr(0,t.length-1)),e.host={full:e.hostname,stripped:null},e.path={absolute:{array:null,string:e.pathname},relative:{array:null,string:null}},e.query={object:e.query,string:{full:null,stripped:null}},e.extra={hrefInfo:{minimumPathOnly:null,minimumResourceOnly:null,minimumQueryOnly:null,minimumHashOnly:null,empty:null,separatorOnlyQuery:"?"===e.search},portIsDefault:null,relation:{maximumScheme:null,maximumAuth:null,maximumHost:null,maximumPort:null,maximumPath:null,maximumResource:null,maximumQuery:null,maximumHash:null,minimumScheme:null,minimumAuth:null,minimumHost:null,minimumPort:null,minimumPath:null,minimumResource:null,minimumQuery:null,minimumHash:null,overridesQuery:null},resourceIsIndex:null,slashes:e.slashes},e.resource=null,e.scheme=t,delete e.hostname,delete e.pathname,delete e.protocol,delete e.search,delete e.slashes,e}function o(e,t){var n=!0;return t.rejectedSchemes.every(function(t){return n=!(0===e.indexOf(t+":"))}),n}var i=e("url").parse;t.exports=function(e,t){return o(e,t)?r(i(e,!0,t.slashesDenoteHost)):{href:e,valid:!1}}},{url:162}],138:[function(e,t,n){"use strict";function r(e,t){if(e.extra.relation.maximumHost||!e.extra.hrefInfo.minimumResourceOnly){var n=e.path.absolute.array,r="/";n?(e.extra.hrefInfo.minimumPathOnly&&0!==e.path.absolute.string.indexOf("/")&&(n=t.path.absolute.array.concat(n)),n=u.resolveDotSegments(n),r+=u.join(n)):n=[],e.path.absolute.array=n,e.path.absolute.string=r}else e.path=s.clone(t.path)}function o(e,t){e.port=t.port,e.extra.portIsDefault=t.extra.portIsDefault}function i(e,t){e.resource=t.resource,e.extra.resourceIsIndex=t.extra.resourceIsIndex}var a=e("./findRelation"),s=e("../util/object"),u=e("../util/path");t.exports=function(e,t,n){a.upToPath(e,t,n),e.extra.relation.minimumScheme&&(e.scheme=t.scheme),e.extra.relation.minimumAuth&&(e.auth=t.auth),e.extra.relation.minimumHost&&(e.host=s.clone(t.host)),e.extra.relation.minimumPort&&o(e,t),e.extra.relation.minimumScheme&&r(e,t),a.pathOn(e,t,n),e.extra.relation.minimumResource&&i(e,t),e.extra.relation.minimumQuery&&(e.query=s.clone(t.query)),e.extra.relation.minimumHash&&(e.hash=t.hash)}},{"../util/object":142,"../util/path":143,"./findRelation":139}],139:[function(e,t,n){"use strict";t.exports={pathOn:function(e,t,n){var r=e.extra.hrefInfo.minimumQueryOnly,o=e.extra.hrefInfo.minimumHashOnly,i=e.extra.hrefInfo.empty,a=e.extra.relation.minimumPort,s=e.extra.relation.minimumScheme,u=a&&e.path.absolute.string===t.path.absolute.string,l=e.resource===t.resource||!e.resource&&t.extra.resourceIsIndex||n.removeDirectoryIndexes&&e.extra.resourceIsIndex&&!t.resource,c=u&&(l||r||o||i),f=n.removeEmptyQueries?"stripped":"full",p=e.query.string[f],h=t.query.string[f],d=c&&!!p&&p===h||(o||i)&&!e.extra.hrefInfo.separatorOnlyQuery,m=d&&e.hash===t.hash;e.extra.relation.minimumPath=u,e.extra.relation.minimumResource=c,e.extra.relation.minimumQuery=d,e.extra.relation.minimumHash=m,e.extra.relation.maximumPort=!s||s&&!u,e.extra.relation.maximumPath=!s||s&&!c,e.extra.relation.maximumResource=!s||s&&!d,e.extra.relation.maximumQuery=!s||s&&!m,e.extra.relation.maximumHash=!s||s&&!m,e.extra.relation.overridesQuery=u&&e.extra.relation.maximumResource&&!d&&!!h},upToPath:function(e,t,n){var r=e.extra.hrefInfo.minimumPathOnly,o=e.scheme===t.scheme||!e.scheme,i=o&&(e.auth===t.auth||n.removeAuth||r),a=n.ignore_www?"stripped":"full",s=i&&(e.host[a]===t.host[a]||r),u=s&&(e.port===t.port||r);e.extra.relation.minimumScheme=o,e.extra.relation.minimumAuth=i,e.extra.relation.minimumHost=s,e.extra.relation.minimumPort=u,e.extra.relation.maximumScheme=!o||o&&!i,e.extra.relation.maximumAuth=!o||o&&!s,e.extra.relation.maximumHost=!o||o&&!u}}},{}],140:[function(e,t,n){"use strict";var r=e("./absolutize"),o=e("./relativize");t.exports=function(e,t,n){return r(t,e,n),o(t,e,n),t}},{"./absolutize":138,"./relativize":141}],141:[function(e,t,n){"use strict";function r(e,t){var n=[],r=!0,o=-1;return t.forEach(function(t,i){r&&(e[i]!==t?r=!1:o=i),r||n.push("..")}),e.forEach(function(e,t){t>o&&n.push(e)}),n}var o=e("../util/path");t.exports=function(e,t,n){if(e.extra.relation.minimumScheme){var i=r(e.path.absolute.array,t.path.absolute.array);e.path.relative.array=i,e.path.relative.string=o.join(i)}}},{"../util/path":143}],142:[function(e,t,n){"use strict";function r(e){if(e instanceof Object){var t=e instanceof Array?[]:{};for(var n in e)e.hasOwnProperty(n)&&(t[n]=r(e[n]));return t}return e}t.exports={clone:r,isPlainObject:function(e){return!!e&&"object"==typeof e&&e.constructor===Object},shallowMerge:function(e,t){if(e instanceof Object&&t instanceof Object)for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}}},{}],143:[function(e,t,n){"use strict";t.exports={join:function(e){return e.length>0?e.join("/")+"/":""},resolveDotSegments:function(e){var t=[];return e.forEach(function(e){".."!==e?"."!==e&&t.push(e):t.length>0&&t.splice(t.length-1,1)}),t}}},{}],144:[function(e,t,n){function r(e,t){for(var n in e)t[n]=e[n]}function o(e,t,n){return a(e,t,n)}var i=e("buffer"),a=i.Buffer;a.from&&a.alloc&&a.allocUnsafe&&a.allocUnsafeSlow?t.exports=i:(r(i,n),n.Buffer=o),r(a,o),o.from=function(e,t,n){if("number"==typeof e)throw new TypeError("Argument must not be a number");return a(e,t,n)},o.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError("Argument must be a number");var r=a(e);return void 0!==t?"string"==typeof n?r.fill(t,n):r.fill(t):r.fill(0),r},o.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return a(e)},o.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return i.SlowBuffer(e)}},{buffer:4}],145:[function(e,t,n){function r(){this._array=[],this._set=a?new Map:Object.create(null)}var o=e("./util"),i=Object.prototype.hasOwnProperty,a="undefined"!=typeof Map;r.fromArray=function(e,t){for(var n=new r,o=0,i=e.length;o=0)return t}else{var n=o.toSetString(e);if(i.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},r.prototype.at=function(e){if(e>=0&&e>1;return 1==(1&e)?-t:t}var i=e("./base64");n.encode=function(e){var t,n="",o=r(e);do{t=31&o,(o>>>=5)>0&&(t|=32),n+=i.encode(t)}while(o>0);return n},n.decode=function(e,t,n){var r,a,s=e.length,u=0,l=0;do{if(t>=s)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(a=i.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));r=!!(32&a),u+=(a&=31)<0?t-u>1?r(u,t,o,i,a,s):s==n.LEAST_UPPER_BOUND?t1?r(e,u,o,i,a,s):s==n.LEAST_UPPER_BOUND?u:e<0?-1:e}n.GREATEST_LOWER_BOUND=1,n.LEAST_UPPER_BOUND=2,n.search=function(e,t,o,i){if(0===t.length)return-1;var a=r(-1,t.length,e,t,o,i||n.GREATEST_LOWER_BOUND);if(a<0)return-1;for(;a-1>=0&&0===o(t[a],t[a-1],!0);)--a;return a}},{}],149:[function(e,t,n){function r(e,t){var n=e.generatedLine,r=t.generatedLine,o=e.generatedColumn,a=t.generatedColumn;return r>n||r==n&&a>=o||i.compareByGeneratedPositionsInflated(e,t)<=0}function o(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}var i=e("./util");o.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},o.prototype.add=function(e){r(this._last,e)?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},o.prototype.toArray=function(){return this._sorted||(this._array.sort(i.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},n.MappingList=o},{"./util":154}],150:[function(e,t,n){function r(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function o(e,t){return Math.round(e+Math.random()*(t-e))}function i(e,t,n,a){if(n=0){var i=this._originalMappings[o];if(void 0===e.column)for(var a=i.originalLine;i&&i.originalLine===a;)r.push({line:s.getArg(i,"generatedLine",null),column:s.getArg(i,"generatedColumn",null),lastColumn:s.getArg(i,"lastGeneratedColumn",null)}),i=this._originalMappings[++o];else for(var l=i.originalColumn;i&&i.originalLine===t&&i.originalColumn==l;)r.push({line:s.getArg(i,"generatedLine",null),column:s.getArg(i,"generatedColumn",null),lastColumn:s.getArg(i,"lastGeneratedColumn",null)}),i=this._originalMappings[++o]}return r},n.SourceMapConsumer=r,(o.prototype=Object.create(r.prototype)).consumer=r,o.fromSourceMap=function(e){var t=Object.create(o.prototype),n=t._names=l.fromArray(e._names.toArray(),!0),r=t._sources=l.fromArray(e._sources.toArray(),!0);t.sourceRoot=e._sourceRoot,t.sourcesContent=e._generateSourcesContent(t._sources.toArray(),t.sourceRoot),t.file=e._file;for(var a=e._mappings.toArray().slice(),u=t.__generatedMappings=[],c=t.__originalMappings=[],p=0,h=a.length;p1&&(n.source=m+o[1],m+=o[1],n.originalLine=h+o[2],h=n.originalLine,n.originalLine+=1,n.originalColumn=d+o[3],d=n.originalColumn,o.length>4&&(n.name=g+o[4],g+=o[4])),E.push(n),"number"==typeof n.originalLine&&w.push(n)}f(E,s.compareByGeneratedPositionsDeflated),this.__generatedMappings=E,f(w,s.compareByOriginalPositions),this.__originalMappings=w},o.prototype._findMapping=function(e,t,n,r,o,i){if(e[n]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+e[n]);if(e[r]<0)throw new TypeError("Column must be greater than or equal to 0, got "+e[r]);return u.search(e,t,o,i)},o.prototype.computeColumnSpans=function(){for(var e=0;e=0){var o=this._generatedMappings[n];if(o.generatedLine===t.generatedLine){var i=s.getArg(o,"source",null);null!==i&&(i=this._sources.at(i),null!=this.sourceRoot&&(i=s.join(this.sourceRoot,i)));var a=s.getArg(o,"name",null);return null!==a&&(a=this._names.at(a)),{source:i,line:s.getArg(o,"originalLine",null),column:s.getArg(o,"originalColumn",null),name:a}}}return{source:null,line:null,column:null,name:null}},o.prototype.hasContentsOfAllSources=function(){return!!this.sourcesContent&&(this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some(function(e){return null==e}))},o.prototype.sourceContentFor=function(e,t){if(!this.sourcesContent)return null;if(null!=this.sourceRoot&&(e=s.relative(this.sourceRoot,e)),this._sources.has(e))return this.sourcesContent[this._sources.indexOf(e)];var n;if(null!=this.sourceRoot&&(n=s.urlParse(this.sourceRoot))){var r=e.replace(/^file:\/\//,"");if("file"==n.scheme&&this._sources.has(r))return this.sourcesContent[this._sources.indexOf(r)];if((!n.path||"/"==n.path)&&this._sources.has("/"+e))return this.sourcesContent[this._sources.indexOf("/"+e)]}if(t)return null;throw new Error('"'+e+'" is not in the SourceMap.')},o.prototype.generatedPositionFor=function(e){var t=s.getArg(e,"source");if(null!=this.sourceRoot&&(t=s.relative(this.sourceRoot,t)),!this._sources.has(t))return{line:null,column:null,lastColumn:null};var n={source:t=this._sources.indexOf(t),originalLine:s.getArg(e,"line"),originalColumn:s.getArg(e,"column")},o=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",s.compareByOriginalPositions,s.getArg(e,"bias",r.GREATEST_LOWER_BOUND));if(o>=0){var i=this._originalMappings[o];if(i.source===n.source)return{line:s.getArg(i,"generatedLine",null),column:s.getArg(i,"generatedColumn",null),lastColumn:s.getArg(i,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},n.BasicSourceMapConsumer=o,(a.prototype=Object.create(r.prototype)).constructor=r,a.prototype._version=3,Object.defineProperty(a.prototype,"sources",{get:function(){for(var e=[],t=0;t0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},r.prototype._serializeMappings=function(){for(var e,t,n,r,a=0,s=1,u=0,l=0,c=0,f=0,p="",h=this._mappings.toArray(),d=0,m=h.length;d0){if(!i.compareByGeneratedPositionsInflated(t,h[d-1]))continue;e+=","}e+=o.encode(t.generatedColumn-a),a=t.generatedColumn,null!=t.source&&(r=this._sources.indexOf(t.source),e+=o.encode(r-f),f=r,e+=o.encode(t.originalLine-1-l),l=t.originalLine-1,e+=o.encode(t.originalColumn-u),u=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=o.encode(n-c),c=n)),p+=e}return p},r.prototype._generateSourcesContent=function(e,t){return e.map(function(e){if(!this._sourcesContents)return null;null!=t&&(e=i.relative(t,e));var n=i.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null},this)},r.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},r.prototype.toString=function(){return JSON.stringify(this.toJSON())},n.SourceMapGenerator=r},{"./array-set":145,"./base64-vlq":146,"./mapping-list":149,"./util":154}],153:[function(e,t,n){function r(e,t,n,r,o){this.children=[],this.sourceContents={},this.line=null==e?null:e,this.column=null==t?null:t,this.source=null==n?null:n,this.name=null==o?null:o,this[s]=!0,null!=r&&this.add(r)}var o=e("./source-map-generator").SourceMapGenerator,i=e("./util"),a=/(\r?\n)/,s="$$$isSourceNode$$$";r.fromStringWithSourceMap=function(e,t,n){function o(e,t){if(null===e||void 0===e.source)s.add(t);else{var o=n?i.join(n,e.source):e.source;s.add(new r(e.originalLine,e.originalColumn,o,t,e.name))}}var s=new r,u=e.split(a),l=0,c=function(){function e(){return l=0;t--)this.prepend(e[t]);else{if(!e[s]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);this.children.unshift(e)}return this},r.prototype.walk=function(e){for(var t,n=0,r=this.children.length;n0){for(t=[],n=0;n=0;c--)"."===(a=u[c])?u.splice(c,1):".."===a?l++:l>0&&(""===a?(u.splice(c+1,l),l=0):(u.splice(c,2),l--));return""===(t=u.join("/"))&&(t=s?"/":"."),i?(i.path=t,o(i)):t}function a(e){return e}function s(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function u(e,t){return e===t?0:e>t?1:-1}n.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var l=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.]*)(?::(\d+))?(\S*)$/,c=/^data:.+\,.+$/;n.urlParse=r,n.urlGenerate=o,n.normalize=i,n.join=function(e,t){""===e&&(e="."),""===t&&(t=".");var n=r(t),a=r(e);if(a&&(e=a.path||"/"),n&&!n.scheme)return a&&(n.scheme=a.scheme),o(n);if(n||t.match(c))return t;if(a&&!a.host&&!a.path)return a.host=t,o(a);var s="/"===t.charAt(0)?t:i(e.replace(/\/+$/,"")+"/"+t);return a?(a.path=s,o(a)):s},n.isAbsolute=function(e){return"/"===e.charAt(0)||!!e.match(l)},n.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var f=!("__proto__"in Object.create(null));n.toSetString=f?a:function(e){return s(e)?"$"+e:e},n.fromSetString=f?a:function(e){return s(e)?e.slice(1):e},n.compareByOriginalPositions=function(e,t,n){var r=e.source-t.source;return 0!==r?r:0!=(r=e.originalLine-t.originalLine)?r:0!=(r=e.originalColumn-t.originalColumn)||n?r:0!=(r=e.generatedColumn-t.generatedColumn)?r:0!=(r=e.generatedLine-t.generatedLine)?r:e.name-t.name},n.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r?r:0!=(r=e.generatedColumn-t.generatedColumn)||n?r:0!=(r=e.source-t.source)?r:0!=(r=e.originalLine-t.originalLine)?r:0!=(r=e.originalColumn-t.originalColumn)?r:e.name-t.name},n.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n?n:0!=(n=e.generatedColumn-t.generatedColumn)?n:0!==(n=u(e.source,t.source))?n:0!=(n=e.originalLine-t.originalLine)?n:0!=(n=e.originalColumn-t.originalColumn)?n:u(e.name,t.name)}},{}],155:[function(e,t,n){n.SourceMapGenerator=e("./lib/source-map-generator").SourceMapGenerator,n.SourceMapConsumer=e("./lib/source-map-consumer").SourceMapConsumer,n.SourceNode=e("./lib/source-node").SourceNode},{"./lib/source-map-consumer":151,"./lib/source-map-generator":152,"./lib/source-node":153}],156:[function(e,t,n){(function(t){var r=e("./lib/request"),o=e("xtend"),i=e("builtin-status-codes"),a=e("url"),s=n;s.request=function(e,n){e="string"==typeof e?a.parse(e):o(e);var i=-1===t.location.protocol.search(/^https?:$/)?"http:":"",s=e.protocol||i,u=e.hostname||e.host,l=e.port,c=e.path||"/";u&&-1!==u.indexOf(":")&&(u="["+u+"]"),e.url=(u?s+"//"+u:"")+(l?":"+l:"")+c,e.method=(e.method||"GET").toUpperCase(),e.headers=e.headers||{};var f=new r(e);return n&&f.on("response",n),f},s.get=function(e,t){var n=s.request(e,t);return n.end(),n},s.Agent=function(){},s.Agent.defaultMaxSockets=4,s.STATUS_CODES=i,s.METHODS=["CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REPORT","SEARCH","SUBSCRIBE","TRACE","UNLOCK","UNSUBSCRIBE"]}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./lib/request":158,"builtin-status-codes":5,url:162,xtend:166}],157:[function(e,t,n){(function(e){function t(){if(void 0!==i)return i;if(e.XMLHttpRequest){i=new e.XMLHttpRequest;try{i.open("GET",e.XDomainRequest?"/":"https://example.com")}catch(e){i=null}}else i=null;return i}function r(e){var n=t();if(!n)return!1;try{return n.responseType=e,n.responseType===e}catch(e){}return!1}function o(e){return"function"==typeof e}n.fetch=o(e.fetch)&&o(e.ReadableStream),n.blobConstructor=!1;try{new Blob([new ArrayBuffer(1)]),n.blobConstructor=!0}catch(e){}var i,a=void 0!==e.ArrayBuffer,s=a&&o(e.ArrayBuffer.prototype.slice);n.arraybuffer=n.fetch||a&&r("arraybuffer"),n.msstream=!n.fetch&&s&&r("ms-stream"),n.mozchunkedarraybuffer=!n.fetch&&a&&r("moz-chunked-arraybuffer"),n.overrideMimeType=n.fetch||!!t()&&o(t().overrideMimeType),n.vbArray=o(e.VBArray),i=null}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],158:[function(e,t,n){(function(n,r,o){function i(e,t){return s.fetch&&t?"fetch":s.mozchunkedarraybuffer?"moz-chunked-arraybuffer":s.msstream?"ms-stream":s.arraybuffer&&e?"arraybuffer":s.vbArray&&e?"text:vbarray":"text"}function a(e){try{var t=e.status;return null!==t&&0!==t}catch(e){return!1}}var s=e("./capability"),u=e("inherits"),l=e("./response"),c=e("readable-stream"),f=e("to-arraybuffer"),p=l.IncomingMessage,h=l.readyStates,d=t.exports=function(e){var t=this;c.Writable.call(t),t._opts=e,t._body=[],t._headers={},e.auth&&t.setHeader("Authorization","Basic "+new o(e.auth).toString("base64")),Object.keys(e.headers).forEach(function(n){t.setHeader(n,e.headers[n])});var n,r=!0;if("disable-fetch"===e.mode||"timeout"in e)r=!1,n=!0;else if("prefer-streaming"===e.mode)n=!1;else if("allow-wrong-content-type"===e.mode)n=!s.overrideMimeType;else{if(e.mode&&"default"!==e.mode&&"prefer-fast"!==e.mode)throw new Error("Invalid value for opts.mode");n=!0}t._mode=i(n,r),t.on("finish",function(){t._onFinish()})};u(d,c.Writable),d.prototype.setHeader=function(e,t){var n=this,r=e.toLowerCase();-1===m.indexOf(r)&&(n._headers[r]={name:e,value:t})},d.prototype.getHeader=function(e){var t=this._headers[e.toLowerCase()];return t?t.value:null},d.prototype.removeHeader=function(e){delete this._headers[e.toLowerCase()]},d.prototype._onFinish=function(){var e=this;if(!e._destroyed){var t=e._opts,i=e._headers,a=null;"GET"!==t.method&&"HEAD"!==t.method&&(a=s.blobConstructor?new r.Blob(e._body.map(function(e){return f(e)}),{type:(i["content-type"]||{}).value||""}):o.concat(e._body).toString());var u=[];if(Object.keys(i).forEach(function(e){var t=i[e].name,n=i[e].value;Array.isArray(n)?n.forEach(function(e){u.push([t,e])}):u.push([t,n])}),"fetch"===e._mode)r.fetch(e._opts.url,{method:e._opts.method,headers:u,body:a||void 0,mode:"cors",credentials:t.withCredentials?"include":"same-origin"}).then(function(t){e._fetchResponse=t,e._connect()},function(t){e.emit("error",t)});else{var l=e._xhr=new r.XMLHttpRequest;try{l.open(e._opts.method,e._opts.url,!0)}catch(t){return void n.nextTick(function(){e.emit("error",t)})}"responseType"in l&&(l.responseType=e._mode.split(":")[0]),"withCredentials"in l&&(l.withCredentials=!!t.withCredentials),"text"===e._mode&&"overrideMimeType"in l&&l.overrideMimeType("text/plain; charset=x-user-defined"),"timeout"in t&&(l.timeout=t.timeout,l.ontimeout=function(){e.emit("timeout")}),u.forEach(function(e){l.setRequestHeader(e[0],e[1])}),e._response=null,l.onreadystatechange=function(){switch(l.readyState){case h.LOADING:case h.DONE:e._onXHRProgress()}},"moz-chunked-arraybuffer"===e._mode&&(l.onprogress=function(){e._onXHRProgress()}),l.onerror=function(){e._destroyed||e.emit("error",new Error("XHR error"))};try{l.send(a)}catch(t){return void n.nextTick(function(){e.emit("error",t)})}}}},d.prototype._onXHRProgress=function(){var e=this;a(e._xhr)&&!e._destroyed&&(e._response||e._connect(),e._response._onXHRProgress())},d.prototype._connect=function(){var e=this;e._destroyed||(e._response=new p(e._xhr,e._fetchResponse,e._mode),e._response.on("error",function(t){e.emit("error",t)}),e.emit("response",e._response))},d.prototype._write=function(e,t,n){this._body.push(e),n()},d.prototype.abort=d.prototype.destroy=function(){var e=this;e._destroyed=!0,e._response&&(e._response._destroyed=!0),e._xhr&&e._xhr.abort()},d.prototype.end=function(e,t,n){var r=this;"function"==typeof e&&(n=e,e=void 0),c.Writable.prototype.end.call(r,e,t,n)},d.prototype.flushHeaders=function(){},d.prototype.setTimeout=function(){},d.prototype.setNoDelay=function(){},d.prototype.setSocketKeepAlive=function(){};var m=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","user-agent","via"]}).call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer)},{"./capability":157,"./response":159,_process:113,buffer:4,inherits:106,"readable-stream":126,"to-arraybuffer":161}],159:[function(e,t,n){(function(t,r,o){var i=e("./capability"),a=e("inherits"),s=e("readable-stream"),u=n.readyStates={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},l=n.IncomingMessage=function(e,n,r){function a(){l.read().then(function(e){u._destroyed||(e.done?u.push(null):(u.push(new o(e.value)),a()))}).catch(function(e){u.emit("error",e)})}var u=this;if(s.Readable.call(u),u._mode=r,u.headers={},u.rawHeaders=[],u.trailers={},u.rawTrailers=[],u.on("end",function(){t.nextTick(function(){u.emit("close")})}),"fetch"===r){u._fetchResponse=n,u.url=n.url,u.statusCode=n.status,u.statusMessage=n.statusText,n.headers.forEach(function(e,t){u.headers[t.toLowerCase()]=e,u.rawHeaders.push(t,e)});var l=n.body.getReader();a()}else if(u._xhr=e,u._pos=0,u.url=e.responseURL,u.statusCode=e.status,u.statusMessage=e.statusText,e.getAllResponseHeaders().split(/\r?\n/).forEach(function(e){var t=e.match(/^([^:]+):\s*(.*)/);if(t){var n=t[1].toLowerCase();"set-cookie"===n?(void 0===u.headers[n]&&(u.headers[n]=[]),u.headers[n].push(t[2])):void 0!==u.headers[n]?u.headers[n]+=", "+t[2]:u.headers[n]=t[2],u.rawHeaders.push(t[1],t[2])}}),u._charset="x-user-defined",!i.overrideMimeType){var c=u.rawHeaders["mime-type"];if(c){var f=c.match(/;\s*charset=([^;])(;|$)/);f&&(u._charset=f[1].toLowerCase())}u._charset||(u._charset="utf-8")}};a(l,s.Readable),l.prototype._read=function(){},l.prototype._onXHRProgress=function(){var e=this,t=e._xhr,n=null;switch(e._mode){case"text:vbarray":if(t.readyState!==u.DONE)break;try{n=new r.VBArray(t.responseBody).toArray()}catch(e){}if(null!==n){e.push(new o(n));break}case"text":try{n=t.responseText}catch(t){e._mode="text:vbarray";break}if(n.length>e._pos){var i=n.substr(e._pos);if("x-user-defined"===e._charset){for(var a=new o(i.length),s=0;se._pos&&(e.push(new o(new Uint8Array(l.result.slice(e._pos)))),e._pos=l.result.byteLength)},l.onload=function(){e.push(null)},l.readAsArrayBuffer(n)}e._xhr.readyState===u.DONE&&"ms-stream"!==e._mode&&e.push(null)}}).call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer)},{"./capability":157,_process:113,buffer:4,inherits:106,"readable-stream":126}],160:[function(e,t,n){"use strict";function r(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}function o(e){var t=r(e);if("string"!=typeof t&&(g.isEncoding===v||!v(e)))throw new Error("Unknown encoding: "+e);return t||e}function i(e){this.encoding=o(e);var t;switch(this.encoding){case"utf16le":this.text=c,this.end=f,t=4;break;case"utf8":this.fillLast=l,t=4;break;case"base64":this.text=p,this.end=h,t=3;break;default:return this.write=d,void(this.end=m)}this.lastNeed=0,this.lastTotal=0,this.lastChar=g.allocUnsafe(t)}function a(e){return e<=127?0:e>>5==6?2:e>>4==14?3:e>>3==30?4:-1}function s(e,t,n){var r=t.length-1;if(r=0?(o>0&&(e.lastNeed=o-1),o):--r=0?(o>0&&(e.lastNeed=o-2),o):--r=0?(o>0&&(2===o?o=0:e.lastNeed=o-3),o):0}function u(e,t,n){if(128!=(192&t[0]))return e.lastNeed=0,"�".repeat(n);if(e.lastNeed>1&&t.length>1){if(128!=(192&t[1]))return e.lastNeed=1,"�".repeat(n+1);if(e.lastNeed>2&&t.length>2&&128!=(192&t[2]))return e.lastNeed=2,"�".repeat(n+2)}}function l(e){var t=this.lastTotal-this.lastNeed,n=u(this,e,t);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function c(e,t){if((e.length-t)%2==0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function f(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function p(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function h(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function d(e){return e.toString(this.encoding)}function m(e){return e&&e.length?this.write(e):""}var g=e("safe-buffer").Buffer,v=g.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};n.StringDecoder=i,i.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n",'"',"`"," ","\r","\n","\t"],f=["{","}","|","\\","^","`"].concat(c),p=["'"].concat(f),h=["%","/","?",";","#"].concat(p),d=["/","?","#"],m=/^[+a-z0-9A-Z_-]{0,63}$/,g=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,v={javascript:!0,"javascript:":!0},b={javascript:!0,"javascript:":!0},y={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},_=e("querystring");r.prototype.parse=function(e,t,n){if(!a.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var r=e.indexOf("?"),o=-1!==r&&r127?L+="x":L+=F[M];if(!L.match(m)){var N=T.slice(0,k),P=T.slice(k+1),q=F.match(g);q&&(N.push(q[1]),P.unshift(q[2])),P.length&&(f="/"+P.join(".")+f),this.hostname=N.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),D||(this.hostname=i.toASCII(this.hostname));var z=this.port?":"+this.port:"",I=this.hostname||"";this.host=I+z,this.href+=this.host,D&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==f[0]&&(f="/"+f))}if(!v[A])for(var k=0,R=p.length;k0)&&n.host.split("@"))&&(n.auth=D.shift(),n.host=n.hostname=D.shift())),n.search=e.search,n.query=e.query,a.isNull(n.pathname)&&a.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n;if(!E.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var C=E.slice(-1)[0],k=(n.host||e.host||E.length>1)&&("."===C||".."===C)||""===C,O=0,S=E.length;S>=0;S--)"."===(C=E[S])?E.splice(S,1):".."===C?(E.splice(S,1),O++):O&&(E.splice(S,1),O--);if(!_&&!w)for(;O--;O)E.unshift("..");!_||""===E[0]||E[0]&&"/"===E[0].charAt(0)||E.unshift(""),k&&"/"!==E.join("/").substr(-1)&&E.push("");var B=""===E[0]||E[0]&&"/"===E[0].charAt(0);if(x){n.hostname=n.host=B?"":E.length?E.shift():"";var D=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@");D&&(n.auth=D.shift(),n.host=n.hostname=D.shift())}return(_=_||n.host&&E.length)&&!B&&E.unshift(""),E.length?n.pathname=E.join("/"):(n.pathname=null,n.path=null),a.isNull(n.pathname)&&a.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},r.prototype.parseHost=function(){var e=this.host,t=u.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},{"./util":163,punycode:114,querystring:117}],163:[function(e,t,n){"use strict";t.exports={isString:function(e){return"string"==typeof e},isObject:function(e){return"object"==typeof e&&null!==e},isNull:function(e){return null===e},isNullOrUndefined:function(e){return null==e}}},{}],164:[function(e,t,n){(function(e){function n(t){try{if(!e.localStorage)return!1}catch(e){return!1}var n=e.localStorage[t];return null!=n&&"true"===String(n).toLowerCase()}t.exports=function(e,t){if(n("noDeprecation"))return e;var r=!1;return function(){if(!r){if(n("throwDeprecation"))throw new Error(t);n("traceDeprecation")?console.trace(t):console.warn(t),r=!0}return e.apply(this,arguments)}}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],165:[function(e,t,n){n.baseChar=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\uAC00-\uD7A3]/,n.ideographic=/[\u3007\u3021-\u3029\u4E00-\u9FA5]/,n.letter=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3007\u3021-\u3029\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\u4E00-\u9FA5\uAC00-\uD7A3]/,n.combiningChar=/[\u0300-\u0345\u0360\u0361\u0483-\u0486\u0591-\u05A1\u05A3-\u05B9\u05BB-\u05BD\u05BF\u05C1\u05C2\u05C4\u064B-\u0652\u0670\u06D6-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0901-\u0903\u093C\u093E-\u094D\u0951-\u0954\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u0A02\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A70\u0A71\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0B01-\u0B03\u0B3C\u0B3E-\u0B43\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B82\u0B83\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C01-\u0C03\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C82\u0C83\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0D02\u0D03\u0D3E-\u0D43\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EB9\u0EBB\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86-\u0F8B\u0F90-\u0F95\u0F97\u0F99-\u0FAD\u0FB1-\u0FB7\u0FB9\u20D0-\u20DC\u20E1\u302A-\u302F\u3099\u309A]/,n.digit=/[0-9\u0660-\u0669\u06F0-\u06F9\u0966-\u096F\u09E6-\u09EF\u0A66-\u0A6F\u0AE6-\u0AEF\u0B66-\u0B6F\u0BE7-\u0BEF\u0C66-\u0C6F\u0CE6-\u0CEF\u0D66-\u0D6F\u0E50-\u0E59\u0ED0-\u0ED9\u0F20-\u0F29]/,n.extender=/[\xB7\u02D0\u02D1\u0387\u0640\u0E46\u0EC6\u3005\u3031-\u3035\u309D\u309E\u30FC-\u30FE]/},{}],166:[function(e,t,n){t.exports=function(){for(var e={},t=0;t=0;r--)n[r]="(?:("+e.customAttrSurround[r][0].source+")\\s*"+t+"\\s*("+e.customAttrSurround[r][1].source+"))";n.push("(?:"+t+")"),t="(?:"+n.join("|")+")"}return new RegExp("^\\s*"+t)}function i(e){return l.concat(e.customAttrAssign||[]).map(function(e){return"(?:"+e.source+")"}).join("|")}function a(e,t){function n(e){var t=e.match(p);if(t){var n={tagName:t[1],attrs:[]};e=e.slice(t[0].length);for(var r,o;!(r=e.match(h))&&(o=e.match(c));)e=e.slice(o[0].length),n.attrs.push(o);if(r)return n.unarySlash=r[1],n.rest=e.slice(r[0].length),n}}function r(e,n){var r;if(n){var o=n.toLowerCase();for(r=l.length-1;r>=0&&l[r].tag.toLowerCase()!==o;r--);}else r=0;if(r>=0){for(var a=l.length-1;a>=r;a--)t.end&&t.end(l[a].tag,l[a].attrs,a>r||!e);l.length=r,i=r&&l[r-1].tag}else"br"===n.toLowerCase()?t.start&&t.start(n,[],!0,""):"p"===n.toLowerCase()&&(t.start&&t.start(n,[],!1,"",!0),t.end&&t.end(n,[]))}for(var i,a,s,u,l=[],c=o(t);e;){if(a=e,i&&w(i)){var f=i.toLowerCase(),x=A[f]||(A[f]=new RegExp("([\\s\\S]*?)]*>","i"));e=e.replace(x,function(e,n){return"script"!==f&&"style"!==f&&"noscript"!==f&&(n=n.replace(//g,"$1").replace(//g,"$1")),t.chars&&t.chars(n),""}),r("",f)}else{var C=e.indexOf("<");if(0===C){if(/^\s*$/,""):t;n.parse.bare_returns=r;var a=J.minify(i,n);return a.error?(e.log(a.error),t):a.code.replace(/;$/,"")}}if(e.minifyCSS||(e.minifyCSS=I),"function"!=typeof e.minifyCSS){var r=e.minifyCSS;"object"!=typeof r&&(r={}),e.minifyCSS=function(t){t=t.replace(/(url\s*\(\s*)("|'|)(.*?)\2(\s*\))/gi,function(t,n,r,o,i){return n+r+e.minifyURLs(o)+r+i});try{return new G(r).minify(t).styles}catch(n){return e.log(n),t}}}}function V(e){var t;do{t=Math.random().toString(36).replace(/^0\.[0-9]*/,"")}while(~e.indexOf(t));return t}function $(e,t,n,o){function i(e){return e.map(function(e){return t.caseSensitive?e.name:e.name.toLowerCase()})}function a(e,t){return!t||-1===e.indexOf(t)}function s(e){return a(e,n)&&a(e,o)}function u(e){var n,o;new W(e,{start:function(e,a){l&&(l[e]||(l[e]=new Z),l[e].add(i(a).filter(s)));for(var u=0,f=a.length;u-1&&u(e)}})}var l=t.sortAttributes&&Object.create(null),c=t.sortClassName&&new Z,f=t.log;if(t.log=null,t.sortAttributes=!1,t.sortClassName=!1,u(H(e,t)),t.log=f,l){var p=Object.create(null);for(var h in l)p[h]=l[h].createSorter();t.sortAttributes=function(e,t){var n=p[e];if(n){var r=Object.create(null),o=i(t);o.forEach(function(e,n){(r[e]||(r[e]=[])).push(t[n])}),n.sort(o).forEach(function(e,n){t[n]=r[e].shift()})}}}if(c){var d=c.createSorter();t.sortClassName=function(e){return d.sort(e.split(/[ \n\f\r]+/)).join(" ")}}}function H(e,t,n){function r(e){return e.replace(E,function(e,t,n){var r=G[+n];return r[1]+w+n+r[2]})}function l(e,n){return t.canCollapseWhitespace(e,n,N)}function c(e,n){return t.canTrimWhitespace(e,n,P)}function f(){for(var e=A.length-1;e>0&&!/^<[^/!]/.test(A[e]);)e--;A.length=Math.max(0,e)}function p(){for(var e=A.length-1;e>0&&!/^<\//.test(A[e]);)e--;A.length=Math.max(0,e)}function h(e,n){for(var r=null;e>=0&&c(r);e--){var o=A[e],i=o.match(/^<\/([\w:-]+)>$/);if(i)r=i[1];else if(/>$/.test(o)||(A[e]=a(o,null,n,t)))break}}function m(e){var t=A.length-1;if(A.length>1){var n=A[A.length-1];/^(?:([\s\S]*?)/g,function(n,r){if(!_){_=V(e);var o=new RegExp("^"+_+"([0-9]+)$");t.ignoreCustomComments?t.ignoreCustomComments.push(o):t.ignoreCustomComments=[o]}var i="\x3c!--"+_+H.length+"--\x3e";return H.push(r),i});var Q=t.ignoreCustomFragments.map(function(e){return e.source});if(Q.length){var Z=new RegExp("\\s*(?:"+Q.join("|")+")+\\s*","g");e=e.replace(Z,function(n){if(!w){w=V(e),E=new RegExp("(\\s*)"+w+"([0-9]+)(\\s*)","g");var o=t.minifyCSS;o&&(t.minifyCSS=function(e){return o(r(e))});var i=t.minifyJS;i&&(t.minifyJS=function(e,t){return i(r(e),t)})}var a=w+G.length;return G.push(/^(\s*)[\s\S]*?(\s*)$/.exec(n)),"\t"+a+"\t"})}(t.sortAttributes&&"function"!=typeof t.sortAttributes||t.sortClassName&&"function"!=typeof t.sortClassName)&&$(e,t,_,w),new W(e,{partialMarkup:n,html5:t.html5,start:function(e,n,r,o,i){var a=e.toLowerCase();if("svg"===a){v.push(t);var s={};for(var u in t)s[u]=t[u];s.keepClosingSlash=!0,s.caseSensitive=!0,t=s}e=t.caseSensitive?e:a,C=e,b=e,ne(e)||(x=""),y=!1,k=n;var h=t.removeOptionalTags;if(h){var d=xe(e);d&&T(L,e)&&f(),L="",d&&F(M,e)&&(p(),h=!R(M,e)),M=""}t.collapseWhitespace&&(O.length||m(e),c(e,n)&&!O.length||O.push(e),l(e,n)&&!S.length||S.push(e));var g="<"+e,_=o&&t.keepClosingSlash;A.push(g),t.sortAttributes&&t.sortAttributes(e,n);for(var E=[],B=n.length,D=!0;--B>=0;){var U=q(n[B],n,e,t);U&&(E.unshift(z(U,_,t,D,w)),D=!1)}E.length>0?(A.push(" "),A.push.apply(A,E)):h&&ue(e)&&(L=e),A.push(A.pop()+(_?"/":"")+">"),i&&!t.includeAutoGeneratedTags&&(f(),L="")},end:function(e,n,r){var o=e.toLowerCase();"svg"===o&&(t=v.pop()),e=t.caseSensitive?e:o,t.collapseWhitespace&&(O.length?e===O[O.length-1]&&O.pop():m("/"+e),S.length&&e===S[S.length-1]&&S.pop());var i=!1;e===C&&(C="",i=!y),t.removeOptionalTags&&(i&&_e(L)&&f(),L="",!xe(e)||!M||Ae(M)||"p"===M&&he(e)||p(),M=le(e)?e:""),t.removeEmptyElements&&i&&U(e,n)?(f(),L="",M=""):(r&&!t.includeAutoGeneratedTags?M="":A.push(""),b="/"+e,te(e)?i&&(x+="|"):x="")},chars:function(e,n,r){if(n=""===n?"comment":n,r=""===r?"comment":r,t.decodeEntities&&e&&!ke(C)&&(e=Y(e)),t.collapseWhitespace){if(!O.length){if("comment"===n){var o=A[A.length-1];if(-1===o.indexOf(_)&&(o||(n=b),A.length>1&&(!o||!t.conservativeCollapse&&/ $/.test(x)))){var s=A.length-2;A[s]=A[s].replace(/\s+$/,function(t){return e=t+e,""})}}if(n)if("/nobr"===n||"wbr"===n){if(/^\s/.test(e)){for(var u=A.length-1;u>0&&0!==A[u].lastIndexOf("<"+n);)u--;h(u-1,"br")}}else ne("/"===n.charAt(0)?n.slice(1):n)&&(e=i(e,t,/(?:^|\s)$/.test(x)));!(e=n||r?a(e,n,r,t):i(e,t,!0,!0))&&/\s$/.test(x)&&n&&"/"===n.charAt(0)&&h(A.length-1,r)}S.length||"html"===r||n&&r||(e=i(e,t,!1,!1,!0))}t.processScripts&&ke(C)&&(e=D(e,t,k)),d(C,k)&&(e=t.minifyJS(e)),g(C,k)&&(e=t.minifyCSS(e)),t.removeOptionalTags&&e&&(("html"===L||"body"===L&&!/^\s/.test(e))&&f(),L="",(we(M)||Ee(M)&&!/^\s/.test(e))&&p(),M=""),b=/^\s*$/.test(e)?n:"comment",t.decodeEntities&&e&&!ke(C)&&(e=e.replace(/&(#?[0-9a-zA-Z]+;)/g,"&$1").replace(/":"--\x3e";e=s(e)?r+B(e,t)+o:t.removeComments?u(e,t)?"\x3c!--"+e+"--\x3e":"":r+e+o,t.removeOptionalTags&&e&&(L="",M=""),A.push(e)},doctype:function(e){A.push(t.useShortDoctype?"":o(e))},customAttrAssign:t.customAttrAssign,customAttrSurround:t.customAttrSurround}),t.removeOptionalTags&&(_e(L)&&f(),M&&!Ae(M)&&p()),t.collapseWhitespace&&m("br");var J=K(A,t);return E&&(J=J.replace(E,function(e,n,r,o){var a=G[+r][0];return t.collapseWhitespace?("\t"!==n&&(a=n+a),"\t"!==o&&(a+=o),i(a,{preserveLineBreaks:t.preserveLineBreaks,conservativeCollapse:!t.trimCustomFragments},/^[ \n\r\t\f]/.test(a),/[ \n\r\t\f]$/.test(a))):a})),_&&(J=J.replace(new RegExp("\x3c!--"+_+"([0-9]+)--\x3e","g"),function(e,t){return H[+t]})),t.log("minified in: "+(Date.now()-I)+"ms"),J}function K(e,t){var n,r=t.maxLineLength;if(r){for(var o,a=[],s="",u=0,l=e.length;u=0}function o(e,t){for(var n=0,r=t.length;n>1);return n+=n,1&t&&(n+=e),n}function a(e){Object.defineProperty(e.prototype,"stack",{get:function(){var e=new Error(this.message);e.name=this.name;try{throw e}catch(e){return e.stack}}})}function s(e,t){this.message=e,this.defs=t}function u(e,t,n){!0===e&&(e={});var r=e||{};if(n)for(var o in r)E(r,o)&&!E(t,o)&&s.croak("`"+o+"` is not a supported option",t);for(var o in t)E(t,o)&&(r[o]=e&&E(e,o)?e[o]:t[o]);return r}function l(e,t){var n=0;for(var r in t)E(t,r)&&(e[r]=t[r],n++);return n}function c(){}function f(){return!1}function p(){return!0}function h(){return this}function d(){return null}function m(e,t){e.indexOf(t)<0&&e.push(t)}function g(e,t){return e.replace(/\{(.+?)\}/g,function(e,n){return t&&t[n]})}function v(e,t){for(var n=e.length;--n>=0;)e[n]===t&&e.splice(n,1)}function b(e,t){function n(e,n){for(var r=[],o=0,i=0,a=0;o3){o.sort(function(e,t){return t.length-e.length}),r+="switch(str.length){";for(var a=0;a=0;)if(!t(e[n]))return!1;return!0}function w(){this._values=Object.create(null),this._size=0}function E(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function A(e){for(var t,n=e.parent(-1),r=0;t=e.parent(r);r++){if(t instanceof ae&&t.body===n)return!0;if(!(t instanceof Ye&&t.expressions[0]===n||t instanceof Ke&&t.expression===n&&!(t instanceof Ge)||t instanceof Qe&&t.expression===n||t instanceof Ze&&t.expression===n||t instanceof nt&&t.condition===n||t instanceof tt&&t.left===n||t instanceof et&&t.expression===n))return!1;n=t}}function x(e,n,r,o){arguments.length<4&&(o=ie);var i=n=n?n.split(/\s+/):[];o&&o.PROPS&&(n=n.concat(o.PROPS));for(var a="return function AST_"+e+"(props){ if (props) { ",s=n.length;--s>=0;)a+="this."+n[s]+" = props."+n[s]+";";var u=o&&new o;(u&&u.initialize||r&&r.initialize)&&(a+="this.initialize();"),a+="}}";var l=new Function(a)();if(u&&(l.prototype=u,l.BASE=o),o&&o.SUBCLASSES.push(l),l.prototype.CTOR=l,l.PROPS=n||null,l.SELF_PROPS=i,l.SUBCLASSES=[],e&&(l.prototype.TYPE=l.TYPE=e),r)for(s in r)E(r,s)&&(/^\$/.test(s)?l[s.substr(1)]=r[s]:l.prototype[s]=r[s]);return l.DEFMETHOD=function(e,t){this.prototype[e]=t},void 0!==t&&(t["AST_"+e]=l),l}function C(e,t){var n=e.body;if(n instanceof ae)n._walk(t);else for(var r=0,o=n.length;r=97&&e<=122||e>=65&&e<=90||e>=170&&Gt.letter.test(String.fromCharCode(e))}function S(e){return e>=48&&e<=57}function B(e){return S(e)||O(e)}function D(e){return Gt.digit.test(String.fromCharCode(e))}function T(e){return Gt.non_spacing_mark.test(e)||Gt.space_combining_mark.test(e)}function R(e){return Gt.connector_punctuation.test(e)}function F(e){return!Nt(e)&&/^[a-z_$][a-z0-9_$]*$/i.test(e)}function L(e){return 36==e||95==e||O(e)}function M(e){var t=e.charCodeAt(0);return L(t)||S(t)||8204==t||8205==t||T(e)||R(e)||D(t)}function U(e){return/^[a-z_$][a-z0-9_$]*$/i.test(e)}function N(e){if(zt.test(e))return parseInt(e.substr(2),16);if(It.test(e))return parseInt(e.substr(1),8);var t=parseFloat(e);return t==e?t:void 0}function P(e,t,n,r,o){this.message=e,this.filename=t,this.line=n,this.col=r,this.pos=o}function q(e,t,n,r,o){throw new P(e,t,n,r,o)}function z(e,t,n){return e.type==t&&(null==n||e.value==n)}function I(e,t,n,r){function o(){return O.text.charAt(O.pos)}function i(e,t){var n=O.text.charAt(O.pos++);if(e&&!n)throw Yt;return $t(n)?(O.newline_before=O.newline_before||!t,++O.line,O.col=0,t||"\r"!=n||"\n"!=o()||(++O.pos,n="\n")):++O.col,n}function a(e){for(;e-- >0;)i()}function s(e){return O.text.substr(O.pos,e.length)==e}function u(){for(var e=O.text,t=O.pos,n=O.text.length;t="0"&&t<="7"?v(t):t}function v(e){var t=o();return t>="0"&&t<="7"&&(e+=i(!0))[0]<="3"&&(t=o())>="0"&&t<="7"&&(e+=i(!0)),"0"===e?"\0":(e.length>0&&k.has_directive("use strict")&&d("Legacy octal escape sequences are not allowed in strict mode"),String.fromCharCode(parseInt(e,8)))}function b(e){for(var t=0;e>0;--e){var n=parseInt(i(!0),16);isNaN(n)&&d("Invalid hex-character pattern in string"),t=t<<4|n}return t}function y(e){var t,n=O.regex_allowed,r=u();return-1==r?(t=O.text.substr(O.pos),O.pos=O.text.length):(t=O.text.substring(O.pos,r),O.pos=r),O.col=O.tokcol+(O.pos-O.tokpos),O.comments_before.push(f(e,t,!0)),O.regex_allowed=n,k}function _(){for(var e,t,n=!1,r="",a=!1;null!=(e=o());)if(n)"u"!=e&&d("Expecting UnicodeEscapeSequence -- uXXXX"),M(e=g())||d("Unicode char: "+e.charCodeAt(0)+" is not valid in identifier"),r+=e,n=!1;else if("\\"==e)a=n=!0,i();else{if(!M(e))break;r+=i()}return Mt(r)&&a&&(t=r.charCodeAt(0).toString(16).toUpperCase(),r="\\u"+"0000".substr(t.length)+t+r.slice(1)),r}function w(e){function t(e){if(!o())return e;var n=e+o();return jt(n)?(i(),t(n)):e}return f("operator",t(e||i()))}function E(){switch(i(),o()){case"/":return i(),y("comment1");case"*":return i(),R()}return O.regex_allowed?F(""):w("/")}function A(){return i(),S(o().charCodeAt(0))?m("."):f("punc",".")}function x(){var e=_();return D?f("name",e):Ut(e)?f("atom",e):Mt(e)?jt(e)?f("operator",e):f("keyword",e):f("name",e)}function C(e,t){return function(n){try{return t(n)}catch(t){if(t!==Yt)throw t;d(e)}}}function k(e){if(null!=e)return F(e);for(r&&0==O.pos&&s("#!")&&(c(),a(2),y("comment5"));;){if(p(),c(),n){if(s("\x3c!--")){a(4),y("comment3");continue}if(s("--\x3e")&&O.newline_before){a(3),y("comment4");continue}}var t=o();if(!t)return f("eof");var u=t.charCodeAt(0);switch(u){case 34:case 39:return T(t);case 46:return A();case 47:var l=E();if(l===k)continue;return l}if(S(u))return m();if(Kt(t))return f("punc",i());if(qt(t))return w();if(92==u||L(u))return x();break}d("Unexpected character '"+t+"'")}var O={text:e,filename:t,pos:0,tokpos:0,line:1,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,comments_before:[],directives:{},directive_stack:[]},D=!1,T=C("Unterminated string constant",function(e){for(var t=i(),n="";;){var r=i(!0,!0);if("\\"==r)r=g(!0);else if($t(r))d("Unterminated string constant");else if(r==t)break;n+=r}var o=f("string",n);return o.quote=e,o}),R=C("Unterminated multiline comment",function(){var e=O.regex_allowed,t=l("*/",!0),n=O.text.substring(O.pos,t).replace(/\r\n|\r|\u2028|\u2029/g,"\n");return a(n.length+2),O.comments_before.push(f("comment2",n,!0)),O.regex_allowed=e,k}),F=C("Unterminated regular expression",function(e){for(var t,n=!1,r=!1;t=i(!0);)if($t(t))d("Unexpected line terminator");else if(n)e+="\\"+t,n=!1;else if("["==t)r=!0,e+=t;else if("]"==t&&r)r=!1,e+=t;else{if("/"==t&&!r)break;"\\"==t?n=!0:e+=t}var o=_();try{var a=new RegExp(e,o);return a.raw_source=e,f("regexp",a)}catch(e){d(e.message)}});return k.context=function(e){return e&&(O=e),O},k.add_directive=function(e){O.directive_stack[O.directive_stack.length-1].push(e),void 0===O.directives[e]?O.directives[e]=1:O.directives[e]++},k.push_directives_stack=function(){O.directive_stack.push([])},k.pop_directives_stack=function(){for(var e=O.directive_stack[O.directive_stack.length-1],t=0;t0},k}function j(e,t){function n(e,t){return z(V.token,e,t)}function r(){return V.peeked||(V.peeked=V.input())}function i(){return V.prev=V.token,V.peeked?(V.token=V.peeked,V.peeked=null):V.token=V.input(),V.in_directives=V.in_directives&&("string"==V.token.type||n("punc",";")),V.token}function a(){return V.prev}function s(e,t,n,r){var o=V.input.context();q(e,o.filename,null!=t?t:o.tokline,null!=n?n:o.tokcol,null!=r?r:o.tokpos)}function l(e,t){s(t,e.line,e.col)}function c(e){null==e&&(e=V.token),l(e,"Unexpected token: "+e.type+" ("+e.value+")")}function f(e,t){if(n(e,t))return i();l(V.token,"Unexpected token "+V.token.type+" «"+V.token.value+"», expected "+e+" «"+t+"»")}function p(e){return f("punc",e)}function h(){return!t.strict&&(V.token.nlb||n("eof")||n("punc","}"))}function d(e){n("punc",";")?i():e||h()||c()}function m(){p("(");var e=re(!0);return p(")"),e}function g(e){return function(){var t=V.token,n=e(),r=a();return n.start=t,n.end=r,n}}function v(){(n("operator","/")||n("operator","/="))&&(V.peeked=null,V.token=V.input(V.token.value.substr(1)))}function b(){var e=M(bt);o(function(t){return t.name==e.name},V.labels)&&s("Label "+e.name+" defined twice"),p(":"),V.labels.push(e);var t=$();return V.labels.pop(),t instanceof me||e.references.forEach(function(t){t instanceof Le&&(t=t.label.start,s("Continue label `"+e.name+"` refers to non-IterationStatement.",t.line,t.col,t.pos))}),new de({body:t,label:e})}function y(e){return new le({body:(e=re(!0),d(),e)})}function _(e){var t,n=null;h()||(n=M(_t,!0)),null!=n?((t=o(function(e){return e.name==n.name},V.labels))||s("Undefined label "+n.name),n.thedef=t):0==V.in_loop&&s(e.TYPE+" not inside a loop or switch"),d();var r=new e({label:n});return t&&t.references.push(r),r}function w(){p("(");var e=null;return!n("punc",";")&&(e=n("keyword","var")?(i(),K(!0)):re(!0,!0),n("operator","in"))?(e instanceof $e?e.definitions.length>1&&s("Only one variable declaration allowed in for..in loop",e.start.line,e.start.col,e.start.pos):P(e)||s("Invalid left-hand side in for..in loop",e.start.line,e.start.col,e.start.pos),i(),A(e)):E(e)}function E(e){p(";");var t=n("punc",";")?null:re(!0);p(";");var r=n("punc",")")?null:re(!0);return p(")"),new ye({init:e,condition:t,step:r,body:j($)})}function A(e){var t=e instanceof $e?e.definitions[0].name:null,n=re(!0);return p(")"),new _e({init:e,name:t,object:n,body:j($)})}function x(){var e=m(),t=$(),r=null;return n("keyword","else")&&(i(),r=$()),new Me({condition:e,body:t,alternative:r})}function C(){p("{");for(var e=[];!n("punc","}");)n("eof")&&c(),e.push($());return i(),e}function k(){p("{");for(var e,t=[],r=null,o=null;!n("punc","}");)n("eof")&&c(),n("keyword","case")?(o&&(o.end=a()),r=[],o=new qe({start:(e=V.token,i(),e),expression:re(!0),body:r}),t.push(o),p(":")):n("keyword","default")?(o&&(o.end=a()),r=[],o=new Pe({start:(e=V.token,i(),p(":"),e),body:r}),t.push(o)):(r||c(),r.push($()));return o&&(o.end=a()),i(),t}function O(){var e=C(),t=null,r=null;if(n("keyword","catch")){u=V.token;i(),p("(");var o=M(vt);p(")"),t=new Ie({start:u,argname:o,body:C(),end:a()})}if(n("keyword","finally")){var u=V.token;i(),r=new je({start:u,body:C(),end:a()})}return t||r||s("Missing catch/finally blocks"),new ze({body:e,bcatch:t,bfinally:r})}function S(e){for(var t=[];t.push(new He({start:V.token,name:M(ht),value:n("operator","=")?(i(),re(!1,e)):null,end:a()})),n("punc",",");)i();return t}function B(){var e,t=V.token;switch(t.type){case"name":e=F(yt);break;case"num":e=new xt({start:t,end:t,value:t.value});break;case"string":e=new At({start:t,end:t,value:t.value,quote:t.quote});break;case"regexp":e=new Ct({start:t,end:t,value:t.value});break;case"atom":switch(t.value){case"false":e=new Ft({start:t,end:t});break;case"true":e=new Lt({start:t,end:t});break;case"null":e=new Ot({start:t,end:t})}}return i(),e}function D(e,t,r){for(var o=!0,a=[];!n("punc",e)&&(o?o=!1:p(","),!t||!n("punc",e));)n("punc",",")&&r?a.push(new Dt({start:V.token,end:V.token})):a.push(re(!1));return i(),a}function T(){var e=V.token;switch(e.type){case"operator":Mt(e.value)||c();case"num":case"string":case"name":case"keyword":case"atom":return i(),e.value;default:c()}}function R(){var e=V.token;return"name"!=e.type&&c(),i(),e.value}function F(e){var t=V.token.value;return new("this"==t?wt:e)({name:String(t),start:V.token,end:V.token})}function L(e){"arguments"!=e.name&&"eval"!=e.name||s("Unexpected "+e.name+" in strict mode",e.start.line,e.start.col,e.start.pos)}function M(e,t){if(!n("name"))return t||s("Name expected"),null;var r=F(e);return V.input.has_directive("use strict")&&r instanceof pt&&L(r),i(),r}function U(e,t,n){var r=t.value;switch(r){case"++":case"--":P(n)||s("Invalid use of "+r+" operator",t.line,t.col,t.pos);break;case"delete":n instanceof yt&&V.input.has_directive("use strict")&&s("Calling delete on expression not allowed in strict mode",n.start.line,n.start.col,n.start.pos)}return new e({operator:r,expression:n})}function N(e){return ee(X(!0),0,e)}function P(e){return e instanceof We||e instanceof yt}function j(e){++V.in_loop;var t=e();return--V.in_loop,t}t=u(t,{bare_returns:!1,expression:!1,filename:null,html5_comments:!0,shebang:!0,strict:!1,toplevel:null},!0);var V={input:"string"==typeof e?I(e,t.filename,t.html5_comments,t.shebang):e,token:null,prev:null,peeked:null,in_function:0,in_directives:!0,in_loop:0,labels:[]};V.token=i();var $=g(function(){switch(v(),V.token.type){case"string":if(V.in_directives){var e=r();-1==V.token.raw.indexOf("\\")&&(e.nlb||z(e,"eof")||z(e,"punc",";")||z(e,"punc","}"))?V.input.add_directive(V.token.value):V.in_directives=!1}var o=V.in_directives,u=y();return o?new ue(u.body):u;case"num":case"regexp":case"operator":case"atom":return y();case"name":return z(r(),"punc",":")?b():y();case"punc":switch(V.token.value){case"{":return new fe({start:V.token,body:C(),end:a()});case"[":case"(":return y();case";":return V.in_directives=!1,i(),new pe;default:c()}case"keyword":switch(V.token.value){case"break":return i(),_(Fe);case"continue":return i(),_(Le);case"debugger":return i(),d(),new se;case"do":i();var l=j($);f("keyword","while");var p=m();return d(!0),new ve({body:l,condition:p});case"while":return i(),new be({condition:m(),body:j($)});case"for":return i(),w();case"function":return i(),H(Oe);case"if":return i(),x();case"return":0!=V.in_function||t.bare_returns||s("'return' outside of function"),i();g=null;return n("punc",";")?i():h()||(g=re(!0),d()),new De({value:g});case"switch":return i(),new Ue({expression:m(),body:j(k)});case"throw":i(),V.token.nlb&&s("Illegal newline after 'throw'");var g=re(!0);return d(),new Te({value:g});case"try":return i(),O();case"var":i();var E=K();return d(),E;case"with":return V.input.has_directive("use strict")&&s("Strict mode may not include a with statement"),i(),new we({expression:m(),body:$()})}}c()}),H=function(e){var t=e===Oe,r=n("name")?M(t?mt:gt):null;t&&!r&&c(),p("(");for(var o=[],a=!0;!n("punc",")");)a?a=!1:p(","),o.push(M(dt));i();var s=V.in_loop,u=V.labels;++V.in_function,V.in_directives=!0,V.input.push_directives_stack(),V.in_loop=0,V.labels=[];var l=C();return V.input.has_directive("use strict")&&(r&&L(r),o.forEach(L)),V.input.pop_directives_stack(),--V.in_function,V.in_loop=s,V.labels=u,new e({name:r,argnames:o,body:l})},K=function(e){return new $e({start:a(),definitions:S(e),end:a()})},G=function(e){var t=V.token;f("operator","new");var r,o=Y(!1);return n("punc","(")?(i(),r=D(")")):r=[],J(new Ge({start:t,expression:o,args:r,end:a()}),e)},Y=function(e){if(n("operator","new"))return G(e);var t=V.token;if(n("punc")){switch(t.value){case"(":i();var r=re(!0);return r.start=t,r.end=V.token,p(")"),J(r,e);case"[":return J(W(),e);case"{":return J(Z(),e)}c()}if(n("keyword","function")){i();var o=H(ke);return o.start=t,o.end=a(),J(o,e)}if(Xt(V.token.type))return J(B(),e);c()},W=g(function(){return p("["),new ot({elements:D("]",!t.strict,!0)})}),Q=g(function(){return H(Ce)}),Z=g(function(){p("{");for(var e=!0,r=[];!n("punc","}")&&(e?e=!1:p(","),t.strict||!n("punc","}"));){var o=V.token,s=o.type,u=T();if("name"==s&&!n("punc",":")){var l=new ft({start:V.token,name:T(),end:a()});if("get"==u){r.push(new lt({start:o,key:l,value:Q(),end:a()}));continue}if("set"==u){r.push(new ut({start:o,key:l,value:Q(),end:a()}));continue}}p(":"),r.push(new st({start:o,quote:o.quote,key:u,value:re(!1),end:a()}))}return i(),new it({properties:r})}),J=function(e,t){var r=e.start;if(n("punc","."))return i(),J(new Qe({start:r,expression:e,property:R(),end:a()}),t);if(n("punc","[")){i();var o=re(!0);return p("]"),J(new Ze({start:r,expression:e,property:o,end:a()}),t)}return t&&n("punc","(")?(i(),J(new Ke({start:r,expression:e,args:D(")"),end:a()}),!0)):e},X=function(e){var t=V.token;if(n("operator")&&Wt(t.value)){i(),v();var r=U(Xe,t,X(e));return r.start=t,r.end=a(),r}for(var o=Y(e);n("operator")&&Qt(V.token.value)&&!V.token.nlb;)(o=U(et,V.token,o)).start=t,o.end=V.token,i();return o},ee=function(e,t,r){var o=n("operator")?V.token.value:null;"in"==o&&r&&(o=null);var a=null!=o?Jt[o]:null;if(null!=a&&a>t){i();var s=ee(X(!0),a,r);return ee(new tt({start:e.start,left:e,operator:o,right:s,end:s.end}),t,r)}return e},te=function(e){var t=V.token,r=N(e);if(n("operator","?")){i();var o=re(!1);return p(":"),new nt({start:t,condition:r,consequent:o,alternative:re(!1,e),end:a()})}return r},ne=function(e){var t=V.token,r=te(e),o=V.token.value;if(n("operator")&&Zt(o)){if(P(r))return i(),new rt({start:t,left:r,operator:o,right:ne(e),end:a()});s("Invalid assignment")}return r},re=function(e,t){for(var o=V.token,a=[];;){if(a.push(ne(t)),!e||!n("punc",","))break;i(),e=!0}return 1==a.length?a[0]:new Ye({start:o,expressions:a,end:r()})};return t.expression?re(!0):function(){var e=V.token,r=[];for(V.input.push_directives_stack();!n("eof");)r.push($());V.input.pop_directives_stack();var o=a(),i=t.toplevel;return i?(i.body=i.body.concat(r),i.end=o):i=new Ae({start:e,body:r,end:o}),i}()}function V(e,t){k.call(this),this.before=e,this.after=t}function $(e,t,n){this.name=n.name,this.orig=[n],this.scope=e,this.references=[],this.global=!1,this.mangled_name=null,this.undeclared=!1,this.index=t,this.id=$.next_id++}function H(e){return"comment2"==e.type&&/@preserve|@license|@cc_on/i.test(e.value)}function K(e){function t(t,n){function r(){return"'"+t.replace(/\x27/g,"\\'")+"'"}function o(){return'"'+t.replace(/\x22/g,'\\"')+'"'}var i=0,a=0;switch(t=t.replace(/[\\\b\f\n\r\v\t\x22\x27\u2028\u2029\0\ufeff]/g,function(n,r){switch(n){case'"':return++i,'"';case"'":return++a,"'";case"\\":return"\\\\";case"\n":return"\\n";case"\r":return"\\r";case"\t":return"\\t";case"\b":return"\\b";case"\f":return"\\f";case"\v":return e.ie8?"\\x0B":"\\v";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";case"\ufeff":return"\\ufeff";case"\0":return/[0-9]/.test(t.charAt(r+1))?"\\x00":"\\0"}return n}),t=C(t),e.quote_style){case 1:return r();case 2:return o();case 3:return"'"==n?r():o();default:return i>a?r():o()}}function n(n,r){var o=t(n,r);return e.inline_script&&(o=(o=(o=o.replace(/<\x2fscript([>\/\t\n\f\r ])/gi,"<\\/script$1")).replace(/\x3c!--/g,"\\x3c!--")).replace(/--\x3e/g,"--\\x3e")),o}function r(e){return e=e.toString(),e=C(e,!0)}function o(t){return i(" ",e.indent_start+_-t*e.indent_level)}function a(t){var n=(t=String(t)).charAt(0),r=B.charAt(B.length-1);if(O&&(O=!1,(":"==r&&"}"==n||(!n||";}".indexOf(n)<0)&&";"!=r)&&(e.semicolons||F(n)?(x+=";",w++,A++):(R(),x+="\n",A++,E++,w=0,/^\s+$/.test(t)&&(O=!0)),e.beautify||(k=!1))),!e.beautify&&e.preserve_line&&z[z.length-1])for(var o=z[z.length-1].start.line;E0&&(R(),w=i[a].length),B=t}function s(){O=!1,a(";")}function l(){return _+e.indent_level}function h(){return S&&R(),x}var d=f;if((e=u(e,{ascii_only:!1,beautify:!1,bracketize:!1,comments:!1,ie8:!1,indent_level:4,indent_start:0,inline_script:!0,keep_quoted_props:!1,max_line_len:!1,preamble:null,preserve_line:!1,quote_keys:!1,quote_style:0,semicolons:!0,shebang:!0,source_map:null,webkit:!1,width:80,wrap_iife:!1},!0)).comments){var m=e.comments;if("string"==typeof e.comments&&/^\/.*\/[a-zA-Z]*$/.test(e.comments)){var g=e.comments.lastIndexOf("/");m=new RegExp(e.comments.substr(1,g-1),e.comments.substr(g+1))}d=m instanceof RegExp?function(e){return"comment5"!=e.type&&m.test(e.value)}:"function"==typeof m?function(e){return"comment5"!=e.type&&m(this,e)}:"some"===m?H:p}var v,b,_=0,w=0,E=1,A=0,x="",C=e.ascii_only?function(e,t){return e.replace(/[\u0000-\u001f\u007f-\uffff]/g,function(e){var n=e.charCodeAt(0).toString(16);if(n.length<=2&&!t){for(;n.length<2;)n="0"+n;return"\\x"+n}for(;n.length<4;)n="0"+n;return"\\u"+n})}:function(e){return e.replace(/[\ud800-\udbff](?![\udc00-\udfff])/g,function(e){return"\\u"+e.charCodeAt(0).toString(16)}).replace(/(^|[^\ud800-\udbff])([\udc00-\udfff])/g,function(e,t,n){return t+"\\u"+n.charCodeAt(0).toString(16)})},k=!1,O=!1,S=0,B="",D=e.source_map&&[],T=D?function(){D.forEach(function(t){try{e.source_map.add(t.token.file,t.line,t.col,t.token.line,t.token.col,t.name||"name"!=t.token.type?t.name:t.token.value)}catch(e){ie.warn("Couldn't figure out mapping for {file}:{line},{col} → {cline},{ccol} [{name}]",{file:t.token.file,line:t.token.line,col:t.token.col,cline:t.line,ccol:t.col,name:t.name||""})}}),D=[]}:c,R=e.max_line_len?function(){if(w>e.max_line_len){if(S){var t=x.slice(0,S),n=x.slice(S);if(D){var r=n.length-w;D.forEach(function(e){e.line++,e.col+=r})}x=t+"\n"+n,E++,A++,w=n.length}w>e.max_line_len&&ie.warn("Output exceeds {max_line_len} characters",e)}S&&(S=0,T())}:c,F=y("( [ + * / - , ."),L=e.beautify?function(){a(" ")}:function(){k=!0},U=e.beautify?function(t){e.beautify&&a(o(t?.5:0))}:c,N=e.beautify?function(e,t){!0===e&&(e=l());var n=_;_=e;var r=t();return _=n,r}:function(e,t){return t()},P=e.beautify?function(){a("\n")}:e.max_line_len?function(){R(),S=x.length}:c,q=e.beautify?function(){a(";")}:function(){O=!0},z=[];return{get:h,toString:h,indent:U,indentation:function(){return _},current_width:function(){return w-_},should_break:function(){return e.width&&this.current_width()>=e.width},newline:P,print:a,space:L,comma:function(){a(","),L()},colon:function(){a(":"),L()},last:function(){return B},semicolon:q,force_semicolon:s,to_utf8:C,print_name:function(e){a(r(e))},print_string:function(e,t,r){var o=n(e,t);!0===r&&-1===o.indexOf("\\")&&(tn.test(x)||s(),s()),a(o)},encode_string:n,next_indent:l,with_indent:N,with_block:function(e){var t;return a("{"),P(),N(l(),function(){t=e()}),U(),a("}"),t},with_parens:function(e){a("(");var t=e();return a(")"),t},with_square:function(e){a("[");var t=e();return a("]"),t},add_mapping:D?function(e,t){v=e,b=t}:c,option:function(t){return e[t]},comment_filter:d,line:function(){return E},col:function(){return w},pos:function(){return A},push_node:function(e){z.push(e)},pop_node:function(){return z.pop()},parent:function(e){return z[z.length-2-(e||0)]}}}function G(e,t){if(!(this instanceof G))return new G(e,t);V.call(this,this.before,this.after),this.options=u(e,{booleans:!t,cascade:!t,collapse_vars:!t,comparisons:!t,conditionals:!t,dead_code:!t,drop_console:!1,drop_debugger:!t,evaluate:!t,expression:!1,global_defs:{},hoist_funs:!t,hoist_vars:!1,ie8:!1,if_return:!t,inline:!t,join_vars:!t,keep_fargs:!0,keep_fnames:!1,keep_infinity:!1,loops:!t,negate_iife:!t,passes:1,properties:!t,pure_getters:!t&&"strict",pure_funcs:null,reduce_vars:!t,sequences:!t,side_effects:!t,switches:!t,top_retain:null,toplevel:!(!e||!e.top_retain),typeofs:!t,unsafe:!1,unsafe_comps:!1,unsafe_Func:!1,unsafe_math:!1,unsafe_proto:!1,unsafe_regexp:!1,unused:!t,warnings:!1},!0);var n=this.options.global_defs;if("object"==typeof n)for(var r in n)/^@/.test(r)&&E(n,r)&&(n[r.slice(1)]=j(n[r],{expression:!0}));var o=this.options.pure_funcs;this.pure_funcs="function"==typeof o?o:o?function(e){return o.indexOf(e.expression.print_to_string())<0}:p;var i=this.options.top_retain;i instanceof RegExp?this.top_retain=function(e){return i.test(e.name)}:"function"==typeof i?this.top_retain=i:i&&("string"==typeof i&&(i=i.split(/,/)),this.top_retain=function(e){return i.indexOf(e.name)>=0});var a=this.options.toplevel;this.toplevel="string"==typeof a?{funcs:/funcs/.test(a),vars:/vars/.test(a)}:{funcs:a,vars:a};var s=this.options.sequences;this.sequences_limit=1==s?800:0|s,this.warnings_produced={}}function Y(e){e=u(e,{file:null,root:null,orig:null,orig_line_diff:0,dest_line_diff:0});var t=new MOZ_SourceMap.SourceMapGenerator({file:e.file,sourceRoot:e.root}),n=e.orig&&new MOZ_SourceMap.SourceMapConsumer(e.orig);return n&&Array.isArray(e.orig.sources)&&n._sources.toArray().forEach(function(e){var r=n.sourceContentFor(e,!0);r&&t.setSourceContent(e,r)}),{add:function(r,o,i,a,s,u){if(n){var l=n.originalPositionFor({line:a,column:s});if(null===l.source)return;r=l.source,a=l.line,s=l.column,u=l.name||u}t.addMapping({generated:{line:o+e.dest_line_diff,column:i},original:{line:a+e.orig_line_diff,column:s},source:r,name:u})},get:function(){return t},toString:function(){return JSON.stringify(t.toJSON())}}}function W(e){function t(t){m(e,t)}["null","true","false","Infinity","-Infinity","undefined"].forEach(t),[Object,Array,Function,Number,String,Boolean,Error,Math,Date,RegExp].forEach(function(e){Object.getOwnPropertyNames(e).map(t),e.prototype&&Object.getOwnPropertyNames(e.prototype).map(t)})}function Q(e,t){function n(e){m(t,e)}e.walk(new k(function(e){e instanceof st&&e.quote?n(e.key):e instanceof Ze&&Z(e.property,n)}))}function Z(e,t){e.walk(new k(function(e){return e instanceof Ye?Z(e.expressions[e.expressions.length-1],t):e instanceof At?t(e.value):e instanceof nt&&(Z(e.consequent,t),Z(e.alternative,t)),!0}))}function J(e,t){function n(e){return!(d.indexOf(e)>=0)&&(!(s.indexOf(e)>=0)&&(t.only_cache?l.props.has(e):!/^-?[0-9]+(\.[0-9]+)?(e[+-][0-9]+)?$/.test(e)))}function r(e){return!(f&&!f.test(e))&&(!(s.indexOf(e)>=0)&&(l.props.has(e)||h.indexOf(e)>=0))}function o(e){n(e)&&m(h,e),r(e)||m(d,e)}function i(e){if(!r(e))return e;var t=l.props.get(e);if(!t){if(p){var o="_$"+e+"$"+c+"_";n(o)&&(t=o)}if(!t)do{t=en(++l.cname)}while(!n(t));l.props.set(e,t)}return t}function a(e){return e.transform(new V(function(e){if(e instanceof Ye){var t=e.expressions.length-1;e.expressions[t]=a(e.expressions[t])}else e instanceof At?e.value=i(e.value):e instanceof nt&&(e.consequent=a(e.consequent),e.alternative=a(e.alternative));return e}))}var s=(t=u(t,{builtins:!1,cache:null,debug:!1,keep_quoted:!1,only_cache:!1,regex:null,reserved:null},!0)).reserved;Array.isArray(s)||(s=[]),t.builtins||W(s);var l=t.cache;null==l&&(l={cname:-1,props:new w});var c,f=t.regex,p=!1!==t.debug;p&&(c=!0===t.debug?"":t.debug);var h=[],d=[];return e.walk(new k(function(e){e instanceof st?o(e.key):e instanceof at?o(e.key.name):e instanceof Qe?o(e.property):e instanceof Ze&&Z(e.property,o)})),e.transform(new V(function(e){e instanceof st?e.key=i(e.key):e instanceof at?e.key.name=i(e.key.name):e instanceof Qe?e.property=i(e.property):!t.keep_quoted&&e instanceof Ze&&(e.property=a(e.property))}))}function X(e){var t=/\n\/\/# sourceMappingURL=data:application\/json(;.*?)?;base64,(.*)/.exec(e);return t?nn(t[2]):(ie.warn("inline source map not found"),null)}function ee(e,t,n){t[e]&&n.forEach(function(n){t[n]&&("object"!=typeof t[n]&&(t[n]={}),e in t[n]||(t[n][e]=t[e]))})}function te(e){e&&("cname"in e||(e.cname=-1),"props"in e?e.props instanceof w||(e.props=w.fromObject(e.props)):e.props=new w)}function ne(e){return{cname:e.cname,props:e.props.toObject()}}s.prototype=Object.create(Error.prototype),s.prototype.constructor=s,s.prototype.name="DefaultsError",a(s),s.croak=function(e,t){throw new s(e,t)};var re=function(){function e(e,i,a){function s(){var s=i(e[u],u),f=s instanceof r;return f&&(s=s.v),s instanceof t?(s=s.v)instanceof n?c.push.apply(c,a?s.v.slice().reverse():s.v):c.push(s):s!==o&&(s instanceof n?l.push.apply(l,a?s.v.slice().reverse():s.v):l.push(s)),f}var u,l=[],c=[];if(e instanceof Array)if(a){for(u=e.length;--u>=0&&!s(););l.reverse(),c.reverse()}else for(u=0;u SymbolDef for all variables/functions defined in this scope",functions:"[Object/S] like `variables`, but only lists function declarations",uses_with:"[boolean/S] tells whether this scope uses the `with` statement",uses_eval:"[boolean/S] tells whether this scope contains a direct call to the global `eval`",parent_scope:"[AST_Scope?/S] link to the parent scope",enclosed:"[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",cname:"[integer/S] current index for mangling variables (used internally by the mangler)"}},ce),Ae=x("Toplevel","globals",{$documentation:"The toplevel scope",$propdoc:{globals:"[Object/S] a map of name -> SymbolDef for all undeclared names"},wrap_commonjs:function(e){var t=this.body,n="(function(exports){'$ORIG';})(typeof "+e+"=='undefined'?("+e+"={}):"+e+");";return n=j(n),n=n.transform(new V(function(e){if(e instanceof ue&&"$ORIG"==e.value)return re.splice(t)}))}},Ee),xe=x("Lambda","name argnames uses_arguments",{$documentation:"Base class for functions",$propdoc:{name:"[AST_SymbolDeclaration?] the name of this function",argnames:"[AST_SymbolFunarg*] array of function arguments",uses_arguments:"[boolean/S] tells whether this function accesses the arguments array"},_walk:function(e){return e._visit(this,function(){this.name&&this.name._walk(e);for(var t=this.argnames,n=0,r=t.length;n=0;){var r=t[n];if(r instanceof e)return r}},has_directive:function(e){var t=this.directives[e];if(t)return t;var n=this.stack[this.stack.length-1];if(n instanceof Ee)for(var r=0;r0;){var r=e[--t];if(r instanceof Me&&r.condition===n||r instanceof nt&&r.condition===n||r instanceof ge&&r.condition===n||r instanceof ye&&r.condition===n||r instanceof Xe&&"!"==r.operator&&r.expression===n)return!0;if(!(r instanceof tt)||"&&"!=r.operator&&"||"!=r.operator)return!1;n=r}},loopcontrol_target:function(e){var t=this.stack;if(e.label){for(n=t.length;--n>=0;)if((r=t[n])instanceof de&&r.label.name==e.label.name)return r.body}else for(var n=t.length;--n>=0;){var r=t[n];if(r instanceof me||e instanceof Fe&&r instanceof Ue)return r}}};var Mt="break case catch const continue debugger default delete do else finally for function if in instanceof new return switch throw try typeof var void while with",Ut="false null true",Nt="abstract boolean byte char class double enum export extends final float goto implements import int interface let long native package private protected public short static super synchronized this throws transient volatile yield "+Ut+" "+Mt,Pt="return new delete throw else case";Mt=y(Mt),Nt=y(Nt),Pt=y(Pt),Ut=y(Ut);var qt=y(n("+-*&%=<>!?|~^")),zt=/^0x[0-9a-f]+$/i,It=/^0[0-7]+$/,jt=y(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","||"]),Vt=y(n("  \n\r\t\f\v​           \u2028\u2029   \ufeff")),$t=y(n("\n\r\u2028\u2029")),Ht=y(n("[{(,;:")),Kt=y(n("[]{}(),;:")),Gt={letter:new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),digit:new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u09E6-\\u09EF\\u0A66-\\u0A6F\\u0AE6-\\u0AEF\\u0B66-\\u0B6F\\u0BE6-\\u0BEF\\u0C66-\\u0C6F\\u0CE6-\\u0CEF\\u0D66-\\u0D6F\\u0DE6-\\u0DEF\\u0E50-\\u0E59\\u0ED0-\\u0ED9\\u0F20-\\u0F29\\u1040-\\u1049\\u1090-\\u1099\\u17E0-\\u17E9\\u1810-\\u1819\\u1946-\\u194F\\u19D0-\\u19D9\\u1A80-\\u1A89\\u1A90-\\u1A99\\u1B50-\\u1B59\\u1BB0-\\u1BB9\\u1C40-\\u1C49\\u1C50-\\u1C59\\uA620-\\uA629\\uA8D0-\\uA8D9\\uA900-\\uA909\\uA9D0-\\uA9D9\\uA9F0-\\uA9F9\\uAA50-\\uAA59\\uABF0-\\uABF9\\uFF10-\\uFF19]"),non_spacing_mark:new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),space_combining_mark:new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"),connector_punctuation:new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]")};P.prototype=Object.create(Error.prototype),P.prototype.constructor=P,P.prototype.name="SyntaxError",a(P);var Yt={},Wt=y(["typeof","void","delete","--","++","!","~","-","+"]),Qt=y(["--","++"]),Zt=y(["=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&="]),Jt=function(e,t){for(var n=0;n","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"]],{}),Xt=y(["atom","num","string","regexp","name"]);V.prototype=new k,function(e){function t(t,n){t.DEFMETHOD("transform",function(t,r){var o,i;return t.push(this),t.before&&(o=t.before(this,n,r)),o===e&&(t.after?(t.stack[t.stack.length-1]=o=this,n(o,t),(i=t.after(o,r))!==e&&(o=i)):n(o=this,t)),t.pop(),o})}function n(e,t){return re(e,function(e){return e.transform(t,!0)})}t(ie,c),t(de,function(e,t){e.label=e.label.transform(t),e.body=e.body.transform(t)}),t(le,function(e,t){e.body=e.body.transform(t)}),t(ce,function(e,t){e.body=n(e.body,t)}),t(ge,function(e,t){e.condition=e.condition.transform(t),e.body=e.body.transform(t)}),t(ye,function(e,t){e.init&&(e.init=e.init.transform(t)),e.condition&&(e.condition=e.condition.transform(t)),e.step&&(e.step=e.step.transform(t)),e.body=e.body.transform(t)}),t(_e,function(e,t){e.init=e.init.transform(t),e.object=e.object.transform(t),e.body=e.body.transform(t)}),t(we,function(e,t){e.expression=e.expression.transform(t),e.body=e.body.transform(t)}),t(Be,function(e,t){e.value&&(e.value=e.value.transform(t))}),t(Re,function(e,t){e.label&&(e.label=e.label.transform(t))}),t(Me,function(e,t){e.condition=e.condition.transform(t),e.body=e.body.transform(t),e.alternative&&(e.alternative=e.alternative.transform(t))}),t(Ue,function(e,t){e.expression=e.expression.transform(t),e.body=n(e.body,t)}),t(qe,function(e,t){e.expression=e.expression.transform(t),e.body=n(e.body,t)}),t(ze,function(e,t){e.body=n(e.body,t),e.bcatch&&(e.bcatch=e.bcatch.transform(t)),e.bfinally&&(e.bfinally=e.bfinally.transform(t))}),t(Ie,function(e,t){e.argname=e.argname.transform(t),e.body=n(e.body,t)}),t(Ve,function(e,t){e.definitions=n(e.definitions,t)}),t(He,function(e,t){e.name=e.name.transform(t),e.value&&(e.value=e.value.transform(t))}),t(xe,function(e,t){e.name&&(e.name=e.name.transform(t)),e.argnames=n(e.argnames,t),e.body=n(e.body,t)}),t(Ke,function(e,t){e.expression=e.expression.transform(t),e.args=n(e.args,t)}),t(Ye,function(e,t){e.expressions=n(e.expressions,t)}),t(Qe,function(e,t){e.expression=e.expression.transform(t)}),t(Ze,function(e,t){e.expression=e.expression.transform(t),e.property=e.property.transform(t)}),t(Je,function(e,t){e.expression=e.expression.transform(t)}),t(tt,function(e,t){e.left=e.left.transform(t),e.right=e.right.transform(t)}),t(nt,function(e,t){e.condition=e.condition.transform(t),e.consequent=e.consequent.transform(t),e.alternative=e.alternative.transform(t)}),t(ot,function(e,t){e.elements=n(e.elements,t)}),t(it,function(e,t){e.properties=n(e.properties,t)}),t(at,function(e,t){e.value=e.value.transform(t)})}(),$.next_id=1,$.prototype={unmangleable:function(e){return e||(e={}),this.global&&!e.toplevel||this.undeclared||!e.eval&&(this.scope.uses_eval||this.scope.uses_with)||e.keep_fnames&&(this.orig[0]instanceof gt||this.orig[0]instanceof mt)},mangle:function(e){var t=e.cache&&e.cache.props;if(this.global&&t&&t.has(this.name))this.mangled_name=t.get(this.name);else if(!this.mangled_name&&!this.unmangleable(e)){var n=this.scope,r=this.orig[0];e.ie8&&r instanceof gt&&(n=n.parent_scope);var o;(o=this.redefined())?this.mangled_name=o.mangled_name||o.name:this.mangled_name=n.next_mangled(e,this),this.global&&t&&t.set(this.name,this.mangled_name)}},redefined:function(){return this.defun&&this.defun.variables.get(this.name)}},Ae.DEFMETHOD("figure_out_scope",function(e){e=u(e,{cache:null,ie8:!1});var t=this,n=t.parent_scope=null,r=new w,o=null,i=new k(function(t,i){if(t instanceof Ie){a=n;return(n=new Ee(t)).init_scope_vars(a),i(),n=a,!0}if(t instanceof Ee){t.init_scope_vars(n);var a=n,s=o,u=r;return o=n=t,r=new w,i(),n=a,o=s,r=u,!0}if(t instanceof de){var l=t.label;if(r.has(l.name))throw new Error(g("Label {name} defined twice",l));return r.set(l.name,l),i(),r.del(l.name),!0}if(t instanceof we)for(var c=n;c;c=c.parent_scope)c.uses_with=!0;else if(t instanceof ct&&(t.scope=n),t instanceof bt&&(t.thedef=t,t.references=[]),t instanceof gt)o.def_function(t);else if(t instanceof mt)(t.scope=o.parent_scope).def_function(t);else if(t instanceof ht){if(o.def_variable(t),o!==n){t.mark_enclosed(e);var f=n.find_variable(t);t.thedef!==f&&(t.thedef=f,t.reference(e))}}else if(t instanceof vt)n.def_variable(t).defun=o;else if(t instanceof _t){var p=r.get(t.name);if(!p)throw new Error(g("Undefined label {name} [{line},{col}]",{name:t.name,line:t.start.line,col:t.start.col}));t.thedef=p}});t.walk(i),t.globals=new w;i=new k(function(n,r){if(n instanceof Re&&n.label)return n.label.thedef.references.push(n),!0;if(n instanceof yt){var o=n.name;if("eval"==o&&i.parent()instanceof Ke)for(u=n.scope;u&&!u.uses_eval;u=u.parent_scope)u.uses_eval=!0;var a=n.scope.find_variable(o);return a?a.scope instanceof xe&&"arguments"==o&&(a.scope.uses_arguments=!0):a=t.def_global(n),n.thedef=a,n.reference(e),!0}var s;if(n instanceof vt&&(s=n.definition().redefined()))for(var u=n.scope;u&&(m(u.enclosed,s),u!==s.scope);)u=u.parent_scope});t.walk(i),e.ie8&&t.walk(new k(function(n,r){if(n instanceof vt){var o=n.name,i=n.thedef.references,a=n.thedef.defun,s=a.find_variable(o)||t.globals.get(o)||a.def_variable(n);return i.forEach(function(t){t.thedef=s,t.reference(e)}),n.thedef=s,n.reference(e),!0}})),e.cache&&(this.cname=e.cache.cname)}),Ae.DEFMETHOD("def_global",function(e){var t=this.globals,n=e.name;if(t.has(n))return t.get(n);var r=new $(this,t.size(),e);return r.undeclared=!0,r.global=!0,t.set(n,r),r}),Ee.DEFMETHOD("init_scope_vars",function(e){this.variables=new w,this.functions=new w,this.uses_with=!1,this.uses_eval=!1,this.parent_scope=e,this.enclosed=[],this.cname=-1}),xe.DEFMETHOD("init_scope_vars",function(){Ee.prototype.init_scope_vars.apply(this,arguments),this.uses_arguments=!1,this.def_variable(new dt({name:"arguments",start:this.start,end:this.end}))}),ct.DEFMETHOD("mark_enclosed",function(e){for(var t=this.definition(),n=this.scope;n&&(m(n.enclosed,t),e.keep_fnames&&n.functions.each(function(e){m(t.scope.enclosed,e)}),n!==t.scope);)n=n.parent_scope}),ct.DEFMETHOD("reference",function(e){this.definition().references.push(this),this.mark_enclosed(e)}),Ee.DEFMETHOD("find_variable",function(e){return e instanceof ct&&(e=e.name),this.variables.get(e)||this.parent_scope&&this.parent_scope.find_variable(e)}),Ee.DEFMETHOD("def_function",function(e){this.functions.set(e.name,this.def_variable(e))}),Ee.DEFMETHOD("def_variable",function(e){var t;return this.variables.has(e.name)?(t=this.variables.get(e.name)).orig.push(e):(t=new $(this,this.variables.size(),e),this.variables.set(e.name,t),t.global=!this.parent_scope),e.thedef=t}),Ee.DEFMETHOD("next_mangled",function(e){var t=this.enclosed;e:for(;;){var n=en(++this.cname);if(F(n)&&!(e.reserved.indexOf(n)>=0)){for(var r=t.length;--r>=0;){var o=t[r];if(n==(o.mangled_name||o.unmangleable(e)&&o.name))continue e}return n}}}),ke.DEFMETHOD("next_mangled",function(e,t){for(var n=t.orig[0]instanceof dt&&this.name&&this.name.definition(),r=n?n.mangled_name||n.name:null;;){var o=xe.prototype.next_mangled.call(this,e,t);if(!r||r!=o)return o}}),ct.DEFMETHOD("unmangleable",function(e){var t=this.definition();return!t||t.unmangleable(e)}),bt.DEFMETHOD("unmangleable",f),ct.DEFMETHOD("unreferenced",function(){return 0==this.definition().references.length&&!(this.scope.uses_eval||this.scope.uses_with)}),ct.DEFMETHOD("definition",function(){return this.thedef}),ct.DEFMETHOD("global",function(){return this.definition().global}),Ae.DEFMETHOD("_default_mangler_options",function(e){return e=u(e,{eval:!1,ie8:!1,keep_fnames:!1,reserved:[],toplevel:!1}),Array.isArray(e.reserved)||(e.reserved=[]),e}),Ae.DEFMETHOD("mangle_names",function(e){(e=this._default_mangler_options(e)).reserved.push("arguments");var t=-1,n=[];e.cache&&this.globals.each(function(t){e.reserved.indexOf(t.name)<0&&n.push(t)});var r=new k(function(o,i){if(o instanceof de){var a=t;return i(),t=a,!0}if(o instanceof Ee){r.parent();var s=[];return o.variables.each(function(t){e.reserved.indexOf(t.name)<0&&s.push(t)}),void n.push.apply(n,s)}if(o instanceof bt){var u;do{u=en(++t)}while(!F(u));return o.mangled_name=u,!0}!e.ie8&&o instanceof vt&&n.push(o.definition())});this.walk(r),n.forEach(function(t){t.mangle(e)}),e.cache&&(e.cache.cname=this.cname)}),Ae.DEFMETHOD("compute_char_frequency",function(e){function t(e){e instanceof At?en.consider(e.value,-1):e instanceof nt?(t(e.consequent),t(e.alternative)):e instanceof Ye&&t(e.expressions[e.expressions.length-1])}e=this._default_mangler_options(e);try{ie.prototype.print=function(n,r){this._print(n,r),this instanceof ct&&!this.unmangleable(e)?en.consider(this.name,-1):e.properties&&(this instanceof Qe?en.consider(this.property,-1):this instanceof Ze&&t(this.property))},en.consider(this.print_to_string(),1)}finally{ie.prototype.print=ie.prototype._print}en.sort()});var en=function(){function e(){o=Object.create(null),i.forEach(function(e){o[e]=0}),a.forEach(function(e){o[e]=0})}function t(e,t){return o[t]-o[e]}function n(e){var t="",n=54;e++;do{t+=r[--e%n],e=Math.floor(e/n),n=64}while(e>0);return t}var r,o,i="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_".split(""),a="0123456789".split("");return n.consider=function(e,t){for(var n=e.length;--n>=0;)o[e[n]]+=t},n.sort=function(){r=b(i,t).concat(b(a,t))},n.reset=e,e(),n}(),tn=/^$|[;{][\s\n]*$/;!function(){function e(e,t){e.DEFMETHOD("_codegen",t)}function t(e,n){Array.isArray(e)?e.forEach(function(e){t(e,n)}):e.DEFMETHOD("needs_parens",n)}function n(e,t,n,r){var o=e.length-1;g=r,e.forEach(function(e,r){!0!==g||e instanceof ue||e instanceof pe||e instanceof le&&e.body instanceof At||(g=!1),e instanceof pe||(n.indent(),e.print(n),r==o&&t||(n.newline(),t&&n.newline())),!0===g&&e instanceof le&&e.body instanceof At&&(g=!1)}),g=!1}function r(e,t,r){e.length>0?t.with_block(function(){n(e,!1,t,r)}):t.print("{}")}function o(e,t){var n=e.body;if(t.option("bracketize")||t.option("ie8")&&n instanceof ve)return p(n,t);if(!n)return t.force_semicolon();for(;;)if(n instanceof Me){if(!n.alternative)return void p(e.body,t);n=n.alternative}else{if(!(n instanceof he))break;n=n.body}s(e.body,t)}function i(e,t,n){var r=!1;n&&e.walk(new k(function(e){return!!(r||e instanceof Ee)||(e instanceof tt&&"in"==e.operator?(r=!0,!0):void 0)})),e.print(t,r)}function a(e,t,n){n.option("quote_keys")?n.print_string(e+""):("number"==typeof e||!n.option("beautify")&&+e+""==e)&&parseFloat(e)>=0?n.print(f(e)):(Nt(e)?!n.option("ie8"):U(e))?t&&n.option("keep_quoted_props")?n.print_string(e,t):n.print_name(e):n.print_string(e,t)}function s(e,t){t.option("bracketize")?p(e,t):!e||e instanceof pe?t.force_semicolon():e.print(t)}function u(e,t){return e.args.length>0||t.option("beautify")}function l(e){for(var t=e[0],n=t.length,r=1;r=0?r.push("0x"+e.toString(16).toLowerCase(),"0"+e.toString(8)):r.push("-0x"+(-e).toString(16).toLowerCase(),"-0"+(-e).toString(8)),(t=/^(.*?)(0+)$/.exec(e))&&r.push(t[1]+"e"+t[2].length)):(t=/^0?\.(0+)(.*)$/.exec(e))&&r.push(t[2]+"e-"+(t[1].length+t[2].length),n.substr(n.indexOf("."))),l(r)}function p(e,t){!e||e instanceof pe?t.print("{}"):e instanceof fe?e.print(t):t.with_block(function(){t.indent(),e.print(t),t.newline()})}function h(e,t){e.DEFMETHOD("add_source_map",function(e){t(this,e)})}function d(e,t){t.add_mapping(e.start)}var m=!1,g=!1;ie.DEFMETHOD("print",function(e,t){function n(){r.add_comments(e),r.add_source_map(e),o(r,e)}var r=this,o=r._codegen,i=m;r instanceof ue&&"use asm"==r.value&&e.parent()instanceof Ee&&(m=!0),e.push_node(r),t||r.needs_parens(e)?e.with_parens(n):n(),e.pop_node(),r instanceof Ee&&(m=i)}),ie.DEFMETHOD("_print",ie.prototype.print),ie.DEFMETHOD("print_to_string",function(e){var t=K(e);return e||(t._readonly=!0),this.print(t),t.get()}),ie.DEFMETHOD("add_comments",function(e){if(!e._readonly){var t=this,n=t.start;if(n&&!n._comments_dumped){n._comments_dumped=!0;var r=n.comments_before||[];if(t instanceof Be&&t.value&&t.value.walk(new k(function(e){if(e.start&&e.start.comments_before&&(r=r.concat(e.start.comments_before),e.start.comments_before=[]),e instanceof ke||e instanceof ot||e instanceof it)return!0})),0==e.pos()){r.length>0&&e.option("shebang")&&"comment5"==r[0].type&&(e.print("#!"+r.shift().value+"\n"),e.indent());var o=e.option("preamble");o&&e.print(o.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g,"\n"))}r=r.filter(e.comment_filter,t),!e.option("beautify")&&r.length>0&&/comment[134]/.test(r[0].type)&&0!==e.col()&&r[0].nlb&&e.print("\n"),r.forEach(function(t){/comment[134]/.test(t.type)?(e.print("//"+t.value+"\n"),e.indent()):"comment2"==t.type&&(e.print("/*"+t.value+"*/"),n.nlb?(e.print("\n"),e.indent()):e.space())})}}}),t(ie,function(){return!1}),t(ke,function(e){if(A(e))return!0;if(e.option("webkit")&&(t=e.parent())instanceof We&&t.expression===this)return!0;if(e.option("wrap_iife")){var t=e.parent();return t instanceof Ke&&t.expression===this}return!1}),t(it,function(e){return A(e)}),t(Je,function(e){var t=e.parent();return t instanceof We&&t.expression===this||t instanceof Ke&&t.expression===this}),t(Ye,function(e){var t=e.parent();return t instanceof Ke||t instanceof Je||t instanceof tt||t instanceof He||t instanceof We||t instanceof ot||t instanceof at||t instanceof nt}),t(tt,function(e){var t=e.parent();if(t instanceof Ke&&t.expression===this)return!0;if(t instanceof Je)return!0;if(t instanceof We&&t.expression===this)return!0;if(t instanceof tt){var n=t.operator,r=Jt[n],o=this.operator,i=Jt[o];if(r>i||r==i&&this===t.right)return!0}}),t(We,function(e){var t=e.parent();if(t instanceof Ge&&t.expression===this){var n=!1;return this.walk(new k(function(e){return!!(n||e instanceof Ee)||(e instanceof Ke?(n=!0,!0):void 0)})),n}}),t(Ke,function(e){var t,n=e.parent();return n instanceof Ge&&n.expression===this||this.expression instanceof ke&&n instanceof We&&n.expression===this&&(t=e.parent(1))instanceof rt&&t.left===n}),t(Ge,function(e){var t=e.parent();if(!u(this,e)&&(t instanceof We||t instanceof Ke&&t.expression===this))return!0}),t(xt,function(e){var t=e.parent();if(t instanceof We&&t.expression===this){var n=this.getValue();if(n<0||/^0/.test(f(n)))return!0}}),t([rt,nt],function(e){var t=e.parent();return t instanceof Je||(t instanceof tt&&!(t instanceof rt)||(t instanceof Ke&&t.expression===this||(t instanceof nt&&t.condition===this||(t instanceof We&&t.expression===this||void 0))))}),e(ue,function(e,t){t.print_string(e.value,e.quote),t.semicolon()}),e(se,function(e,t){t.print("debugger"),t.semicolon()}),he.DEFMETHOD("_do_print_body",function(e){s(this.body,e)}),e(ae,function(e,t){e.body.print(t),t.semicolon()}),e(Ae,function(e,t){n(e.body,!0,t,!0),t.print("")}),e(de,function(e,t){e.label.print(t),t.colon(),e.body.print(t)}),e(le,function(e,t){e.body.print(t),t.semicolon()}),e(fe,function(e,t){r(e.body,t)}),e(pe,function(e,t){t.semicolon()}),e(ve,function(e,t){t.print("do"),t.space(),p(e.body,t),t.space(),t.print("while"),t.space(),t.with_parens(function(){e.condition.print(t)}),t.semicolon()}),e(be,function(e,t){t.print("while"),t.space(),t.with_parens(function(){e.condition.print(t)}),t.space(),e._do_print_body(t)}),e(ye,function(e,t){t.print("for"),t.space(),t.with_parens(function(){e.init?(e.init instanceof Ve?e.init.print(t):i(e.init,t,!0),t.print(";"),t.space()):t.print(";"),e.condition?(e.condition.print(t),t.print(";"),t.space()):t.print(";"),e.step&&e.step.print(t)}),t.space(),e._do_print_body(t)}),e(_e,function(e,t){t.print("for"),t.space(),t.with_parens(function(){e.init.print(t),t.space(),t.print("in"),t.space(),e.object.print(t)}),t.space(),e._do_print_body(t)}),e(we,function(e,t){t.print("with"),t.space(),t.with_parens(function(){e.expression.print(t)}),t.space(),e._do_print_body(t)}),xe.DEFMETHOD("_do_print",function(e,t){var n=this;t||e.print("function"),n.name&&(e.space(),n.name.print(e)),e.with_parens(function(){n.argnames.forEach(function(t,n){n&&e.comma(),t.print(e)})}),e.space(),r(n.body,e,!0)}),e(xe,function(e,t){e._do_print(t)}),Be.DEFMETHOD("_do_print",function(e,t){e.print(t),this.value&&(e.space(),this.value.print(e)),e.semicolon()}),e(De,function(e,t){e._do_print(t,"return")}),e(Te,function(e,t){e._do_print(t,"throw")}),Re.DEFMETHOD("_do_print",function(e,t){e.print(t),this.label&&(e.space(),this.label.print(e)),e.semicolon()}),e(Fe,function(e,t){e._do_print(t,"break")}),e(Le,function(e,t){e._do_print(t,"continue")}),e(Me,function(e,t){t.print("if"),t.space(),t.with_parens(function(){e.condition.print(t)}),t.space(),e.alternative?(o(e,t),t.space(),t.print("else"),t.space(),e.alternative instanceof Me?e.alternative.print(t):s(e.alternative,t)):e._do_print_body(t)}),e(Ue,function(e,t){t.print("switch"),t.space(),t.with_parens(function(){e.expression.print(t)}),t.space();var n=e.body.length-1;n<0?t.print("{}"):t.with_block(function(){e.body.forEach(function(e,r){t.indent(!0),e.print(t),r0&&t.newline()})})}),Ne.DEFMETHOD("_do_print_body",function(e){e.newline(),this.body.forEach(function(t){e.indent(),t.print(e),e.newline()})}),e(Pe,function(e,t){t.print("default:"),e._do_print_body(t)}),e(qe,function(e,t){t.print("case"),t.space(),e.expression.print(t),t.print(":"),e._do_print_body(t)}),e(ze,function(e,t){t.print("try"),t.space(),r(e.body,t),e.bcatch&&(t.space(),e.bcatch.print(t)),e.bfinally&&(t.space(),e.bfinally.print(t))}),e(Ie,function(e,t){t.print("catch"),t.space(),t.with_parens(function(){e.argname.print(t)}),t.space(),r(e.body,t)}),e(je,function(e,t){t.print("finally"),t.space(),r(e.body,t)}),Ve.DEFMETHOD("_do_print",function(e,t){e.print(t),e.space(),this.definitions.forEach(function(t,n){n&&e.comma(),t.print(e)});var n=e.parent();(n instanceof ye||n instanceof _e)&&n.init===this||e.semicolon()}),e($e,function(e,t){e._do_print(t,"var")}),e(He,function(e,t){if(e.name.print(t),e.value){t.space(),t.print("="),t.space();var n=t.parent(1),r=n instanceof ye||n instanceof _e;i(e.value,t,r)}}),e(Ke,function(e,t){e.expression.print(t),e instanceof Ge&&!u(e,t)||(e.expression instanceof xe&&t.add_mapping(e.start),t.with_parens(function(){e.args.forEach(function(e,n){n&&t.comma(),e.print(t)})}))}),e(Ge,function(e,t){t.print("new"),t.space(),Ke.prototype._codegen(e,t)}),Ye.DEFMETHOD("_do_print",function(e){this.expressions.forEach(function(t,n){n>0&&(e.comma(),e.should_break()&&(e.newline(),e.indent())),t.print(e)})}),e(Ye,function(e,t){e._do_print(t)}),e(Qe,function(e,t){var n=e.expression;n.print(t);var r=e.property;t.option("ie8")&&Nt(r)?(t.print("["),t.add_mapping(e.end),t.print_string(r),t.print("]")):(n instanceof xt&&n.getValue()>=0&&(/[xa-f.)]/i.test(t.last())||t.print(".")),t.print("."),t.add_mapping(e.end),t.print_name(r))}),e(Ze,function(e,t){e.expression.print(t),t.print("["),e.property.print(t),t.print("]")}),e(Xe,function(e,t){var n=e.operator;t.print(n),(/^[a-z]/i.test(n)||/[+-]$/.test(n)&&e.expression instanceof Xe&&/^[+-]/.test(e.expression.operator))&&t.space(),e.expression.print(t)}),e(et,function(e,t){e.expression.print(t),t.print(e.operator)}),e(tt,function(e,t){var n=e.operator;e.left.print(t),">"==n[0]&&e.left instanceof et&&"--"==e.left.operator?t.print(" "):t.space(),t.print(n),("<"==n||"<<"==n)&&e.right instanceof Xe&&"!"==e.right.operator&&e.right.expression instanceof Xe&&"--"==e.right.expression.operator?t.print(" "):t.space(),e.right.print(t)}),e(nt,function(e,t){e.condition.print(t),t.space(),t.print("?"),t.space(),e.consequent.print(t),t.space(),t.colon(),e.alternative.print(t)}),e(ot,function(e,t){t.with_square(function(){var n=e.elements,r=n.length;r>0&&t.space(),n.forEach(function(e,n){n&&t.comma(),e.print(t),n===r-1&&e instanceof Dt&&t.comma()}),r>0&&t.space()})}),e(it,function(e,t){e.properties.length>0?t.with_block(function(){e.properties.forEach(function(e,n){n&&(t.print(","),t.newline()),t.indent(),e.print(t)}),t.newline()}):t.print("{}")}),e(st,function(e,t){a(e.key,e.quote,t),t.colon(),e.value.print(t)}),at.DEFMETHOD("_print_getter_setter",function(e,t){t.print(e),t.space(),a(this.key.name,this.quote,t),this.value._do_print(t,!0)}),e(ut,function(e,t){e._print_getter_setter("set",t)}),e(lt,function(e,t){e._print_getter_setter("get",t)}),e(ct,function(e,t){var n=e.definition();t.print_name(n?n.mangled_name||n.name:e.name)}),e(Dt,c),e(wt,function(e,t){t.print("this")}),e(Et,function(e,t){t.print(e.getValue())}),e(At,function(e,t){t.print_string(e.getValue(),e.quote,g)}),e(xt,function(e,t){m&&e.start&&null!=e.start.raw?t.print(e.start.raw):t.print(f(e.getValue()))}),e(Ct,function(e,t){var n=e.getValue(),r=n.toString();n.raw_source&&(r="/"+n.raw_source+r.slice(r.lastIndexOf("/"))),r=t.to_utf8(r),t.print(r);var o=t.parent();o instanceof tt&&/^in/.test(o.operator)&&o.left===e&&t.print(" ")}),h(ie,c),h(ue,d),h(se,d),h(ct,d),h(Se,d),h(he,d),h(de,c),h(xe,d),h(Ue,d),h(Ne,d),h(fe,d),h(Ae,c),h(Ge,d),h(ze,d),h(Ie,d),h(je,d),h(Ve,d),h(Et,d),h(ut,function(e,t){t.add_mapping(e.start,e.key.name)}),h(lt,function(e,t){t.add_mapping(e.start,e.key.name)}),h(at,function(e,t){t.add_mapping(e.start,e.key)})}(),G.prototype=new V,l(G.prototype,{option:function(e){return this.options[e]},exposed:function(e){if(e.global)for(var t=0,n=e.orig.length;t0||this.option("reduce_vars"))&&e.reset_opt_flags(this,!0),e=e.transform(this),t>1){var o=0;if(e.walk(new k(function(){o++})),this.info("pass "+r+": last_count: "+n+", count: "+o),o>=n)break;n=o}return this.option("expression")&&e.process_expression(!1),e},info:function(){"verbose"==this.options.warnings&&ie.warn.apply(ie,arguments)},warn:function(e,t){if(this.options.warnings){var n=g(e,t);n in this.warnings_produced||(this.warnings_produced[n]=!0,ie.warn.apply(ie,arguments))}},clear_warnings:function(){this.warnings_produced={}},before:function(e,t,n){if(e._squeezed)return e;var r=!1;e instanceof Ee&&(e=e.hoist_declarations(this),r=!0),t(e,this),t(e,this);var o=e.optimize(this);return r&&o instanceof Ee&&(o.drop_unused(this),t(o,this)),o===e&&(o._squeezed=!0),o}}),function(){function e(e,t){e.DEFMETHOD("optimize",function(e){var n=this;if(n._optimized)return n;if(e.has_directive("use asm"))return n;var r=t(n,e);return r._optimized=!0,r})}function t(e){if(e instanceof yt)return e.definition().orig[0]instanceof gt;if(e instanceof We){if((e=e.expression)instanceof yt){if(e.is_immutable())return!1;e=e.fixed_value()}return!e||!(e instanceof Ct)&&(e instanceof Et||t(e))}return!1}function n(e,t){for(var n,r=0;(n=e.parent(r++))&&!(n instanceof Ee);)if(n instanceof Ie){n=n.argname.definition().scope;break}return n.find_variable(t)}function i(e,t,n){return n||(n={}),t&&(n.start||(n.start=t.start),n.end||(n.end=t.end)),new e(n)}function a(e,t){return 1==t.length?t[0]:i(Ye,e,{expressions:t})}function s(e,t){switch(typeof e){case"string":return i(At,t,{value:e});case"number":return isNaN(e)?i(St,t):isFinite(e)?1/e<0?i(Xe,t,{operator:"-",expression:i(xt,t,{value:-e})}):i(xt,t,{value:e}):e<0?i(Xe,t,{operator:"-",expression:i(Tt,t)}):i(Tt,t);case"boolean":return i(e?Lt:Ft,t);case"undefined":return i(Bt,t);default:if(null===e)return i(Ot,t,{value:null});if(e instanceof RegExp)return i(Ct,t,{value:e});throw new Error(g("Can't handle constant of type: {type}",{type:typeof e}))}}function u(e,t,n){return e instanceof Xe&&"delete"==e.operator||e instanceof Ke&&e.expression===t&&(n instanceof We||n instanceof yt&&"eval"==n.name)?a(t,[i(xt,t,{value:0}),n]):n}function l(e,t){t instanceof Ye?e.push.apply(e,t.expressions):e.push(t)}function m(e){if(null===e)return[];if(e instanceof fe)return e.body;if(e instanceof pe)return[];if(e instanceof ae)return[e];throw new Error("Can't convert thing to statement array")}function b(e){return null===e||(e instanceof pe||e instanceof fe&&0==e.body.length)}function x(e){return e instanceof Ue?e:(e instanceof ye||e instanceof _e||e instanceof ge)&&e.body instanceof fe?e.body:e}function O(e){return e instanceof Ke&&!(e instanceof Ge)&&(e.expression instanceof ke||O(e.expression))}function S(e){return e instanceof yt&&e.definition().undeclared}function B(e,n){function r(e){for(var t=[],n=0;n=0;){var r=e[n];if(r instanceof Me&&r.body instanceof De&&++t>1)return!0}return!1}(e),c=u instanceof xe,f=e.length;--f>=0;){var p=e[f],h=e[f+1];if(c&&p instanceof De&&!p.value&&!h)s=!0,e.length--;else{if(p instanceof Me){var d=N(p.body);if(r(d)){d.label&&v(d.label.thedef.references,d),s=!0,(p=p.clone()).condition=p.condition.negate(t),g=a(p.body,d),p.body=i(fe,p,{body:m(p.alternative).concat(o())}),p.alternative=i(fe,p,{body:g}),e[f]=p.transform(t);continue}if(r(d=N(p.alternative))){d.label&&v(d.label.thedef.references,d),s=!0,(p=p.clone()).body=i(fe,p.body,{body:m(p.body).concat(o())});var g=a(p.alternative,d);p.alternative=i(fe,p.alternative,{body:g}),e[f]=p.transform(t);continue}}if(p instanceof Me&&p.body instanceof De){var b=p.body.value;if(!b&&!p.alternative&&(c&&!h||h instanceof De&&!h.value)){s=!0,e[f]=i(le,p.condition,{body:p.condition});continue}if(b&&!p.alternative&&h instanceof De&&h.value){s=!0,(p=p.clone()).alternative=h,e.splice(f,2,p.transform(t));continue}if(l&&c&&b&&!p.alternative&&(!h||h instanceof De)){s=!0,(p=p.clone()).alternative=h||i(De,p,{value:null}),e.splice(f,h?2:1,p.transform(t));continue}var y=e[f-1];if(t.option("sequences")&&c&&!p.alternative&&y instanceof Me&&y.body instanceof De&&f+2==e.length&&h instanceof le){s=!0,e.push(i(De,h,{value:null}).transform(t));continue}}}}}(e,n),n.sequences_limit>0&&function(e,t){function n(){if(r.length){var t=a(r[0],r);e[u++]=i(le,t,{body:t}),r=[]}}if(!(e.length<2)){for(var r=[],u=0,c=0,f=e.length;c=t.sequences_limit&&n();var h=p.body;r.length>0&&(h=h.drop_side_effect_free(t)),h&&l(r,h)}else n(),e[u++]=p}n(),e.length=u,o(e,t),s=e.length!=f}}(e,n),n.option("join_vars")&&function(e,t){for(var n=0,r=-1,o=e.length;n=0;)for(0==p&&n.option("unused")&&function(){var e,t=n.self();if(t instanceof ke&&!t.name&&!t.uses_arguments&&!t.uses_eval&&(e=n.parent())instanceof Ke&&e.expression===t)for(var r=Object.create(null),o=t.argnames.length;--o>=0;){var a=t.argnames[o];if(!(a.name in r)){r[a.name]=!0;var s=e.args[o];if(s){var u=new k(function(e){if(!s)return!0;if(e instanceof yt&&t.variables.has(e.name)){var n=e.definition().scope;if(n!==c)for(;n=n.parent_scope;)if(n===c)return!0;s=null}return e instanceof wt&&!u.find_parent(Ee)?(s=null,!0):void 0});s.walk(u)}else s=i(Bt,a).transform(n);s&&f.unshift(i(He,a,{name:a,value:s}))}}}(),r(e[p]);f.length>0;){var h=f.pop(),d=function(e){if(!(e instanceof He))return e[e instanceof rt?"left":"expression"];var t=e.name.definition();return t.orig.length>1&&!(e.name instanceof dt)||1==t.references.length&&!n.exposed(t)?i(yt,e.name,e.name):void 0}(h);if(d&&!t(d)){var m=function(e){var t=Object.create(null);if(e instanceof Je)return t;var n,r=new k(function(e,i){if(e instanceof Ee){var a=n;return i(),n=a,!0}if(e instanceof yt||e instanceof We){var s=o(e);s instanceof yt&&(t[s.name]=t[s.name]||R(e,r.parent()))}});return e[e instanceof rt?"right":"value"].walk(r),t}(h);d instanceof yt&&(m[d.name]=!1);for(var g=function(e){return!(e instanceof Je)&&e[e instanceof rt?"right":"value"].has_side_effects(n)}(h),b=h.name instanceof dt,y=!1,_=!1,w=new V(function(e,t){if(y)return e;if(b){var r=w.parent();if(e instanceof rt&&"="!=e.operator&&d.equivalent_to(e.left)||e instanceof Ke&&d instanceof We&&d.equivalent_to(e.expression)||e instanceof se||e instanceof me&&!(e instanceof ye)||e instanceof yt&&!e.is_declared(n)||e instanceof ze||e instanceof we||r instanceof ye&&e!==r.init)return y=!0,e;if(!(e instanceof pt)&&!R(e,r)&&d.equivalent_to(e)){if(s=_=y=!0,n.info("Collapsing {name} [{file}:{line},{col}]",{name:e.print_to_string(),file:e.start.file,line:e.start.line,col:e.start.col}),h instanceof et)return i(Xe,h,h);if(h instanceof He){var c=h.name.definition();return 1!=c.references.length||n.exposed(c)?i(rt,h,{operator:"=",left:i(yt,h.name,h.name),right:h.value}):u(r,e,h.value)}return h.write_only=!1,h}var f;return e instanceof Ke||e instanceof Be||e instanceof We||e instanceof yt&&(m[e.name]||g&&!l(e.definition()))||(f=a(e))&&o(f).name in m||r instanceof tt&&("&&"==r.operator||"||"==r.operator)||r instanceof qe||r instanceof nt||r instanceof ye||r instanceof Me?(e instanceof Ee||t(e,w),y=!0,e):e instanceof Pe||e instanceof Ee?e:void 0}return e===h?(b=!0,e):void 0}),E=p;!y&&E0)}function D(e,t,n){t instanceof Oe||e.warn("Dropping unreachable code [{file}:{line},{col}]",t.start),t.walk(new k(function(r){return r instanceof Ve?(e.warn("Declarations in unreachable code! [{file}:{line},{col}]",r.start),r.remove_initializers(),n.push(r),!0):r instanceof Oe&&(r===t||!e.has_directive("use strict"))?(n.push(r),!0):r instanceof Ee||void 0}))}function T(e,t){return e.is_undefined||e instanceof Bt||e instanceof Xe&&"void"==e.operator&&!e.expression.has_side_effects(t)}function R(e,t){return t instanceof Je&&H(t.operator)?t.expression:t instanceof rt&&t.left===e?e:void 0}function F(e,t){return e.print_to_string().length>t.print_to_string().length?t:e}function L(e,t){return F(i(le,e,{body:e}),i(le,t,{body:t})).body}function M(e,t,n){return(A(e)?L:F)(t,n)}function N(e){return e&&e.aborts()}function q(e,t){function n(n){n=m(n),e.body instanceof fe?(e.body=e.body.clone(),e.body.body=n.concat(e.body.body.slice(1)),e.body=e.body.transform(t)):e.body=i(fe,e.body,{body:n}).transform(t),q(e,t)}var r=e.body instanceof fe?e.body.body[0]:e.body;r instanceof Me&&(r.body instanceof Fe&&t.loopcontrol_target(r.body)===t.self()?(e.condition?e.condition=i(tt,e.condition,{left:e.condition,operator:"&&",right:r.condition.negate(t)}):e.condition=r.condition.negate(t),n(r.alternative)):r.alternative instanceof Fe&&t.loopcontrol_target(r.alternative)===t.self()&&(e.condition?e.condition=i(tt,e.condition,{left:e.condition,operator:"&&",right:r.condition}):e.condition=r.condition,n(r.body)))}function z(e,t){return e instanceof yt||e.TYPE===t.TYPE}function I(e,t){return t.option("booleans")&&t.in_boolean_context()?M(t,e,a(e,[e,i(Lt,e)]).optimize(t)):e}e(ie,function(e,t){return e}),ie.DEFMETHOD("equivalent_to",function(e){return this.TYPE==e.TYPE&&this.print_to_string()==e.print_to_string()}),Ee.DEFMETHOD("process_expression",function(e,t){var n=this,r=new V(function(o){if(e&&o instanceof le)return i(De,o,{value:o.body});if(!e&&o instanceof De){if(t){var a=o.value&&o.value.drop_side_effect_free(t,!0);return a?i(le,o,{body:a}):i(pe,o)}return i(le,o,{body:o.value||i(Xe,o,{operator:"void",expression:i(xt,o,{value:0})})})}if(o instanceof xe&&o!==n)return o;if(o instanceof ce){var s=o.body.length-1;s>=0&&(o.body[s]=o.body[s].transform(r))}return o instanceof Me&&(o.body=o.body.transform(r),o.alternative&&(o.alternative=o.alternative.transform(r))),o instanceof we&&(o.body=o.body.transform(r)),o});n.transform(r)}),ie.DEFMETHOD("reset_opt_flags",function(e,t){function n(e,t){p[e.id]=t}function r(e){if(p[e.id]){if(null==e.fixed){var t=e.orig[0];if(t instanceof dt||"arguments"==t.name)return!1;e.fixed=i(Bt,t)}return!0}}function o(e,t){return!!E(p,e.id)&&(!!r(e)&&(!1!==e.fixed&&(!(null!=e.fixed&&(!t||e.references.length>0))&&!e.orig.some(function(e){return e instanceof mt||e instanceof gt}))))}function a(){p=Object.create(p)}function s(){p=Object.getPrototypeOf(p)}function u(t){t.escaped=!1,t.scope.uses_eval?t.fixed=!1:e.exposed(t)?t.fixed=!1:t.fixed=void 0,t.references=[],t.should_replace=void 0}function l(e){return e&&e.is_constant()||e instanceof xe}function c(e,t,n){var r=d.parent(t);return!!(R(e,r)||!n&&r instanceof Ke&&r.expression===e)||(r instanceof We&&r.expression===e?!n&&c(r,t+1):void 0)}var f=t&&e.option("reduce_vars"),p=Object.create(null),h=new k(function(e){if(e instanceof ct){var t=e.definition();t&&(e instanceof yt&&t.references.push(e),t.fixed=!1)}}),d=new k(function(t,m){if(t._squeezed=!1,t._optimized=!1,f){if(t instanceof Ae&&t.globals.each(u),t instanceof Ee&&t.variables.each(u),t instanceof yt)if((v=t.definition()).references.push(t),void 0===v.fixed||!r(v)||c(t,0,l(t.fixed_value())))v.fixed=!1;else{var g=d.parent();(g instanceof rt&&"="==g.operator&&t===g.right||g instanceof Ke&&t!==g.expression||g instanceof De&&t===g.value&&t.scope!==v.scope||g instanceof He&&t===g.value)&&(v.escaped=!0)}if(t instanceof vt&&(t.definition().fixed=!1),t instanceof He){if(void 0===(v=t.name.definition()).fixed||o(v,t.value))return t.value?(v.fixed=function(){return t.value},n(v,!1),m()):v.fixed=null,n(v,!0),!0;t.value&&(v.fixed=!1)}if(t instanceof rt&&"="==t.operator&&t.left instanceof yt&&o(v=t.left.definition(),t.right))return v.references.push(t.left),v.fixed=function(){return t.right},n(v,!1),t.right.walk(d),n(v,!0),!0;if(t instanceof Oe){var v=t.name.definition();e.exposed(v)||r(v)?v.fixed=!1:(v.fixed=t,n(v,!0));y=p;return p=Object.create(null),m(),p=y,!0}if(t instanceof ke){a();var b;return!t.name&&(b=d.parent())instanceof Ke&&b.expression===t&&t.argnames.forEach(function(e,r){var o=e.definition();t.uses_arguments||void 0!==o.fixed?o.fixed=!1:(o.fixed=function(){return b.args[r]||i(Bt,b)},n(o,!0))}),m(),s(),!0}if(t instanceof Ce){var y=p;return p=Object.create(null),m(),p=y,!0}if(t instanceof tt&&("&&"==t.operator||"||"==t.operator))return t.left.walk(d),a(),t.right.walk(d),s(),!0;if(t instanceof nt)return t.condition.walk(d),a(),t.consequent.walk(d),s(),a(),t.alternative.walk(d),s(),!0;if(t instanceof Me)return t.condition.walk(d),a(),t.body.walk(d),s(),t.alternative&&(a(),t.alternative.walk(d),s()),!0;if(t instanceof ge)return a(),t.condition.walk(d),t.body.walk(d),s(),!0;if(t instanceof de)return a(),t.body.walk(d),s(),!0;if(t instanceof ye)return t.init&&t.init.walk(d),t.condition&&(a(),t.condition.walk(d),s()),a(),t.body.walk(d),s(),t.step&&(a(),t.step.walk(d),s()),!0;if(t instanceof _e)return t.init.walk(h),t.object.walk(d),a(),t.body.walk(d),s(),!0;if(t instanceof ze)return a(),C(t,d),s(),t.bcatch&&(a(),t.bcatch.walk(d),s()),t.bfinally&&t.bfinally.walk(d),!0;if(t instanceof Ne)return a(),m(),s(),!0}});this.walk(d)}),yt.DEFMETHOD("fixed_value",function(){var e=this.definition().fixed;return!e||e instanceof ie?e:e()}),yt.DEFMETHOD("is_immutable",function(){var e=this.definition().orig;return 1==e.length&&e[0]instanceof gt});var $=y("Array Boolean clearInterval clearTimeout console Date decodeURI decodeURIComponent encodeURI encodeURIComponent Error escape eval EvalError Function isFinite isNaN JSON Math Number parseFloat parseInt RangeError ReferenceError RegExp Object setInterval setTimeout String SyntaxError TypeError unescape URIError");yt.DEFMETHOD("is_declared",function(e){return!this.definition().undeclared||e.option("unsafe")&&$(this.name)}),function(e){function t(e){return/strict/.test(e.option("pure_getters"))}ie.DEFMETHOD("may_throw_on_access",function(e){return!e.option("pure_getters")||this._dot_throw(e)}),e(ie,t),e(Ot,p),e(Bt,p),e(Et,f),e(ot,f),e(it,function(e){if(!t(e))return!1;for(var n=this.properties.length;--n>=0;)if(this.properties[n].value instanceof Ce)return!0;return!1}),e(ke,f),e(et,f),e(Xe,function(){return"void"==this.operator}),e(tt,function(e){switch(this.operator){case"&&":return this.left._dot_throw(e);case"||":return this.left._dot_throw(e)&&this.right._dot_throw(e);default:return!1}}),e(rt,function(e){return"="==this.operator&&this.right._dot_throw(e)}),e(nt,function(e){return this.consequent._dot_throw(e)||this.alternative._dot_throw(e)}),e(Ye,function(e){return this.expressions[this.expressions.length-1]._dot_throw(e)}),e(yt,function(e){if(this.is_undefined)return!0;if(!t(e))return!1;if(S(this)&&this.is_declared(e))return!1;if(this.is_immutable())return!1;var n=this.fixed_value();return!n||n._dot_throw(e)})}(function(e,t){e.DEFMETHOD("_dot_throw",t)}),function(e){var t=["!","delete"],n=["in","instanceof","==","!=","===","!==","<","<=",">=",">"];e(ie,f),e(Xe,function(){return r(this.operator,t)}),e(tt,function(){return r(this.operator,n)||("&&"==this.operator||"||"==this.operator)&&this.left.is_boolean()&&this.right.is_boolean()}),e(nt,function(){return this.consequent.is_boolean()&&this.alternative.is_boolean()}),e(rt,function(){return"="==this.operator&&this.right.is_boolean()}),e(Ye,function(){return this.expressions[this.expressions.length-1].is_boolean()}),e(Lt,p),e(Ft,p)}(function(e,t){e.DEFMETHOD("is_boolean",t)}),function(e){e(ie,f),e(xt,p);var t=y("+ - ~ ++ --");e(Je,function(){return t(this.operator)});var n=y("- * / % & | ^ << >> >>>");e(tt,function(e){return n(this.operator)||"+"==this.operator&&this.left.is_number(e)&&this.right.is_number(e)}),e(rt,function(e){return n(this.operator.slice(0,-1))||"="==this.operator&&this.right.is_number(e)}),e(Ye,function(e){return this.expressions[this.expressions.length-1].is_number(e)}),e(nt,function(e){return this.consequent.is_number(e)&&this.alternative.is_number(e)})}(function(e,t){e.DEFMETHOD("is_number",t)}),function(e){e(ie,f),e(At,p),e(Xe,function(){return"typeof"==this.operator}),e(tt,function(e){return"+"==this.operator&&(this.left.is_string(e)||this.right.is_string(e))}),e(rt,function(e){return("="==this.operator||"+="==this.operator)&&this.right.is_string(e)}),e(Ye,function(e){return this.expressions[this.expressions.length-1].is_string(e)}),e(nt,function(e){return this.consequent.is_string(e)&&this.alternative.is_string(e)})}(function(e,t){e.DEFMETHOD("is_string",t)});var H=y("delete ++ --");!function(e){function t(e,n){if(e instanceof ie)return i(e.CTOR,n,e);if(Array.isArray(e))return i(ot,n,{elements:e.map(function(e){return t(e,n)})});if(e&&"object"==typeof e){var r=[];for(var o in e)E(e,o)&&r.push(i(st,n,{key:o,value:t(e[o],n)}));return i(it,n,{properties:r})}return s(e,n)}ie.DEFMETHOD("resolve_defines",function(e){if(e.option("global_defs")){var t=this._find_defs(e,"");if(t){var n,r=this,o=0;do{n=r,r=e.parent(o++)}while(r instanceof We&&r.expression===n);if(!R(n,r))return t;e.warn("global_defs "+this.print_to_string()+" redefined [{file}:{line},{col}]",this.start)}}}),e(ie,c),e(Qe,function(e,t){return this.expression._find_defs(e,"."+this.property+t)}),e(yt,function(e,n){if(this.global()){var r,o=e.option("global_defs");if(o&&E(o,r=this.name+n)){var i=t(o[r],this),a=e.find_parent(Ae);return i.walk(new k(function(e){e instanceof yt&&(e.scope=a,e.thedef=a.def_global(e))})),i}}})}(function(e,t){e.DEFMETHOD("_find_defs",t)}),function(e){function t(e,t){if(!t)throw new Error("Compressor must be passed");return e._eval(t)}function n(e){for(var t in e)e[t]=y(e[t])}ie.DEFMETHOD("evaluate",function(e){if(!e.option("evaluate"))return this;var t=this._eval(e);return!t||t instanceof RegExp||"object"!=typeof t?t:this});var r=y("! ~ - + void");ie.DEFMETHOD("is_constant",function(){return this instanceof Et?!(this instanceof Ct):this instanceof Xe&&this.expression instanceof Et&&r(this.operator)}),ie.DEFMETHOD("constant_value",function(e){if(this instanceof Et&&!(this instanceof Ct))return this.value;if(this instanceof Xe&&this.expression instanceof Et)switch(this.operator){case"!":return!this.expression.value;case"~":return~this.expression.value;case"-":return-this.expression.value;case"+":return+this.expression.value;default:throw new Error(g("Cannot evaluate unary expression {value}",{value:this.print_to_string()}))}var t=this.evaluate(e);if(t!==this)return t;throw new Error(g("Cannot evaluate constant [{file}:{line},{col}]",this.start))}),e(ae,function(){throw new Error(g("Cannot evaluate a statement [{file}:{line},{col}]",this.start))}),e(xe,h),e(ie,h),e(Et,function(){return this.getValue()}),e(ot,function(e){if(e.option("unsafe")){for(var n=[],r=0,o=this.elements.length;r>":o=n>>r;break;case">>>":o=n>>>r;break;case"==":o=n==r;break;case"===":o=n===r;break;case"!=":o=n!=r;break;case"!==":o=n!==r;break;case"<":o=n":o=n>r;break;case">=":o=n>=r;break;default:return this}return isNaN(o)&&e.find_parent(we)?this:o}),e(nt,function(e){var n=t(this.condition,e);if(n===this.condition)return this;var r=n?this.consequent:this.alternative,o=t(r,e);return o===r?this:o}),e(yt,function(e){if(!e.option("reduce_vars"))return this;var n=this.fixed_value();if(!n)return this;this._eval=h;var r=t(n,e);return r===n?(delete this._eval,this):(E(n,"_eval")||(n._eval=function(){return r}),r&&"object"==typeof r&&this.definition().escaped?(delete this._eval,this):(this._eval=n._eval,r))});var o={Array:Array,Math:Math,Number:Number,String:String},i={Math:["E","LN10","LN2","LOG2E","LOG10E","PI","SQRT1_2","SQRT2"],Number:["MAX_VALUE","MIN_VALUE","NaN","NEGATIVE_INFINITY","POSITIVE_INFINITY"]};n(i),e(We,function(e){if(e.option("unsafe")){var n=this.property;if(n instanceof ie&&(n=t(n,e))===this.property)return this;var r,a=this.expression;if(S(a)){if(!(i[a.name]||f)(n))return this;r=o[a.name]}else if(!(r=t(a,e))||r===a||!E(r,n))return this;return r[n]}return this});var a=["constructor","toString","valueOf"],s={Array:["indexOf","join","lastIndexOf","slice"].concat(a),Boolean:a,Number:["toExponential","toFixed","toPrecision"].concat(a),RegExp:["test"].concat(a),String:["charAt","charCodeAt","concat","indexOf","italics","lastIndexOf","match","replace","search","slice","split","substr","substring","trim"].concat(a)};n(s);var u={Array:["isArray"],Math:["abs","acos","asin","atan","ceil","cos","exp","floor","log","round","sin","sqrt","tan","atan2","pow","max","min"],Number:["isFinite","isNaN"],String:["fromCharCode"]};n(u),e(Ke,function(e){var n=this.expression;if(e.option("unsafe")&&n instanceof We){var r=n.property;if(r instanceof ie&&(r=t(r,e))===n.property)return this;var i,a=n.expression;if(S(a)){if(!(u[a.name]||f)(r))return this;i=o[a.name]}else if((i=t(a,e))===a||!(i&&s[i.constructor.name]||f)(r))return this;for(var l=[],c=0,p=this.args.length;c=":return o.operator="<",o;case">":return o.operator="<=",o}switch(i){case"==":return o.operator="!=",o;case"!=":return o.operator="==",o;case"===":return o.operator="!==",o;case"!==":return o.operator="===",o;case"&&":return o.operator="||",o.left=o.left.negate(e,r),o.right=o.right.negate(e),n(this,o,r);case"||":return o.operator="&&",o.left=o.left.negate(e,r),o.right=o.right.negate(e),n(this,o,r)}return t(this)})}(function(e,t){e.DEFMETHOD("negate",function(e,n){return t.call(this,e,n)})}),Ke.DEFMETHOD("has_pure_annotation",function(e){if(!e.option("side_effects"))return!1;if(void 0!==this.pure)return this.pure;var t,n,r=!1;return this.start&&(t=this.start.comments_before)&&t.length&&(n=o(function(e){return/[@#]__PURE__/.test(e.value)},t))&&(r=n),this.pure=r});var Y=y("Boolean decodeURI decodeURIComponent Date encodeURI encodeURIComponent Error escape EvalError isFinite isNaN Number Object parseFloat parseInt RangeError ReferenceError String SyntaxError TypeError unescape URIError");Ke.DEFMETHOD("is_expr_pure",function(e){if(e.option("unsafe")){var t=this.expression;if(S(t)&&Y(t.name))return!0}return this.has_pure_annotation(e)||!e.pure_funcs(this)}),function(e){function t(e,t){for(var n=e.length;--n>=0;)if(e[n].has_side_effects(t))return!0;return!1}e(ie,p),e(pe,f),e(Et,f),e(wt,f),e(Ke,function(e){if(!this.is_expr_pure(e))return!0;for(var t=this.args.length;--t>=0;)if(this.args[t].has_side_effects(e))return!0;return!1}),e(ce,function(e){return t(this.body,e)}),e(Ue,function(e){return this.expression.has_side_effects(e)||t(this.body,e)}),e(qe,function(e){return this.expression.has_side_effects(e)||t(this.body,e)}),e(ze,function(e){return t(this.body,e)||this.bcatch&&this.bcatch.has_side_effects(e)||this.bfinally&&this.bfinally.has_side_effects(e)}),e(Me,function(e){return this.condition.has_side_effects(e)||this.body&&this.body.has_side_effects(e)||this.alternative&&this.alternative.has_side_effects(e)}),e(de,function(e){return this.body.has_side_effects(e)}),e(le,function(e){return this.body.has_side_effects(e)}),e(Oe,p),e(ke,f),e(tt,function(e){return this.left.has_side_effects(e)||this.right.has_side_effects(e)}),e(rt,p),e(nt,function(e){return this.condition.has_side_effects(e)||this.consequent.has_side_effects(e)||this.alternative.has_side_effects(e)}),e(Je,function(e){return H(this.operator)||this.expression.has_side_effects(e)}),e(yt,function(e){return!this.is_declared(e)}),e(pt,f),e(it,function(e){return t(this.properties,e)}),e(at,function(e){return this.value.has_side_effects(e)}),e(ot,function(e){return t(this.elements,e)}),e(Qe,function(e){return this.expression.may_throw_on_access(e)||this.expression.has_side_effects(e)}),e(Ze,function(e){return this.expression.may_throw_on_access(e)||this.expression.has_side_effects(e)||this.property.has_side_effects(e)}),e(Ye,function(e){return this.expressions.some(function(t,n){return t.has_side_effects(e)})})}(function(e,t){e.DEFMETHOD("has_side_effects",t)}),function(e){function t(e){for(var t=e.length;--t>=0;)if(!e[t].is_constant_expression())return!1;return!0}e(ie,f),e(Et,p),e(Je,function(){return this.expression.is_constant_expression()}),e(tt,function(){return this.left.is_constant_expression()&&this.right.is_constant_expression()}),e(ot,function(){return t(this.elements)}),e(it,function(){return t(this.properties)}),e(at,function(){return this.value.is_constant_expression()})}(function(e,t){e.DEFMETHOD("is_constant_expression",t)}),function(e){function t(){var e=this.body.length;return e>0&&N(this.body[e-1])}e(ae,d),e(Se,h),e(fe,t),e(Ne,t),e(Me,function(){return this.alternative&&N(this.body)&&N(this.alternative)&&this})}(function(e,t){e.DEFMETHOD("aborts",t)}),e(ue,function(e,t){return t.has_directive(e.value)!==e?i(pe,e):e}),e(se,function(e,t){return t.option("drop_debugger")?i(pe,e):e}),e(de,function(e,t){return e.body instanceof Fe&&t.loopcontrol_target(e.body)===e.body?i(pe,e):0==e.label.references.length?e.body:e}),e(ce,function(e,t){return B(e.body,t),e}),e(fe,function(e,t){switch(B(e.body,t),e.body.length){case 1:return e.body[0];case 0:return i(pe,e)}return e}),Ee.DEFMETHOD("drop_unused",function(e){if(e.option("unused")&&!e.has_directive("use asm")){var t=this;if(!t.uses_eval&&!t.uses_with){var n=!(t instanceof Ae)||e.toplevel.funcs,r=!(t instanceof Ae)||e.toplevel.vars;if(n||r){var o=/keep_assign/.test(e.option("unused"))?f:function(e){return e instanceof rt&&(e.write_only||"="==e.operator)?e.left:e instanceof Je&&e.write_only?e.expression:void 0},s=[],c=Object.create(null);t instanceof Ae&&e.top_retain&&t.variables.each(function(t){!e.top_retain(t)||t.id in c||(c[t.id]=!0,s.push(t))});var p=new w,h=new w,d=this,m=new k(function(i,a){if(i!==t){if(i instanceof Oe)return n||d!==t||(u=i.name.definition()).id in c||(c[u.id]=!0,s.push(u)),h.add(i.name.name,i),!0;if(i instanceof Ve&&d===t)return i.definitions.forEach(function(t){var n=t.name.definition();t.name instanceof ht&&p.add(n.id,t),r||n.id in c||(c[n.id]=!0,s.push(n)),t.value&&(h.add(t.name.name,t.value),t.value.has_side_effects(e)&&t.value.walk(m))}),!0;if(o(i)instanceof yt&&d===t)return i instanceof rt&&i.right.walk(m),!0;if(i instanceof yt){var u=i.definition();return u.id in c||(c[u.id]=!0,s.push(u)),!0}if(i instanceof Ee){var l=d;return d=i,a(),d=l,!0}}});t.walk(m);for(var g=0;g1)||(s.name=null)),s instanceof xe&&!(s instanceof Ce))for(var m=!e.option("keep_fargs"),g=s.argnames,_=g.length;--_>=0;){var w=g[_];w.definition().id in c?m=!1:(w.__unused=!0,m&&(g.pop(),e[w.unreferenced()?"warn":"info"]("Dropping unused function argument {name} [{file}:{line},{col}]",d(w))))}if(n&&s instanceof Oe&&s!==t)return s.name.definition().id in c?s:(e[s.name.unreferenced()?"warn":"info"]("Dropping unused function {name} [{file}:{line},{col}]",d(s.name)),i(pe,s));if(r&&s instanceof Ve&&!(y.parent()instanceof _e&&y.parent().init===s)){var E=[],A=[],x=[],C=[];if(s.definitions.forEach(function(t){t.value&&(t.value=t.value.transform(y));var n=t.name.definition();if(n.id in c){if(t.name instanceof ht){var r=p.get(n.id);if(r.length>1&&!t.value)return e.warn("Dropping duplicated definition of variable {name} [{file}:{line},{col}]",d(t.name)),v(r,t),void v(n.orig,t.name)}t.value?(C.length>0&&(x.length>0?(l(C,t.value),t.value=a(t.value,C)):E.push(i(le,s,{body:a(s,C)})),C=[]),x.push(t)):A.push(t)}else if(n.orig[0]instanceof vt)(o=t.value&&t.value.drop_side_effect_free(e))&&l(C,o),t.value=null,A.push(t);else{var o=t.value&&t.value.drop_side_effect_free(e);o?(e.warn("Side effects in initialization of unused variable {name} [{file}:{line},{col}]",d(t.name)),l(C,o)):e[t.name.unreferenced()?"warn":"info"]("Dropping unused variable {name} [{file}:{line},{col}]",d(t.name)),v(n.orig,t.name)}}),0==A.length&&1==x.length&&x[0].name instanceof ht){var k=p.get(x[0].name.definition().id);if(k.length>1){var O=x.pop();e.warn("Converting duplicated definition of variable {name} to assignment [{file}:{line},{col}]",d(O.name)),v(k,O),v(O.name.definition().orig,O.name),C.unshift(i(rt,O,{operator:"=",left:i(yt,O.name,O.name),right:O.value}))}}switch((A.length>0||x.length>0)&&(s.definitions=A.concat(x),E.push(s)),C.length>0&&E.push(i(le,s,{body:a(s,C)})),E.length){case 0:return h?re.skip:i(pe,s);case 1:return E[0];default:return h?re.splice(E):i(fe,s,{body:E})}}if(r&&(O=o(s))instanceof yt&&!((O=O.definition()).id in c)&&t.variables.get(O.name)===O)return s instanceof rt?u(y.parent(),s,s.right.transform(y)):i(xt,s,{value:0});if(s instanceof ye){f(s,this);return s.init instanceof fe&&(S=s.init,s.init=S.body.pop(),S.body.push(s)),s.init instanceof le?s.init=s.init.body:b(s.init)&&(s.init=null),S?h?re.splice(S.body):S:s}if(s instanceof de&&s.body instanceof ye){if(f(s,this),s.body instanceof fe){var S=s.body;return s.body=S.body.pop(),S.body.push(s),h?re.splice(S.body):S}return s}return s instanceof Ee&&s!==t?s:void 0});t.transform(y)}}}}),Ee.DEFMETHOD("hoist_declarations",function(e){var t=this;if(e.has_directive("use asm"))return t;var n=e.option("hoist_funs"),r=e.option("hoist_vars");if(n||r){var s=[],u=[],l=new w,c=0,f=0;t.walk(new k(function(e){return e instanceof Ee&&e!==t||(e instanceof $e?(++f,!0):void 0)})),r=r&&f>1;var p=new V(function(o){if(o!==t){if(o instanceof ue)return s.push(o),i(pe,o);if(n&&o instanceof Oe&&(p.parent()===t||!e.has_directive("use strict")))return u.push(o),i(pe,o);if(r&&o instanceof $e){o.definitions.forEach(function(e){l.set(e.name.name,e),++c});var a=o.to_assignments(e),f=p.parent();if(f instanceof _e&&f.init===o){if(null==a){var h=o.definitions[0].name;return i(yt,h,h)}return a}return f instanceof ye&&f.init===o?a:a?i(le,o,{body:a}):i(pe,o)}if(o instanceof Ee)return o}});if(t=t.transform(p),c>0){var h=[];if(l.each(function(e,n){t instanceof xe&&o(function(t){return t.name==e.name.name},t.argnames)?l.del(n):((e=e.clone()).value=null,h.push(e),l.set(n,e))}),h.length>0){for(;00&&(f[0].body=c.concat(f[0].body)),e.body=f;r=f[f.length-1];){var v=r.body[r.body.length-1];if(v instanceof Fe&&t.loopcontrol_target(v)===e&&r.body.pop(),r.body.length||r instanceof qe&&(u||r.expression.has_side_effects(t)))break;f.pop()===u&&(u=null)}if(0==f.length)return i(fe,e,{body:c.concat(i(le,e.expression,{body:e.expression}))}).optimize(t);if(1==f.length&&(f[0]===l||f[0]===u)){var b=!1,y=new k(function(t){if(b||t instanceof xe||t instanceof le)return!0;t instanceof Fe&&y.loopcontrol_target(t)===e&&(b=!0)});if(e.walk(y),!b)return(f=f[0].body.slice()).unshift(i(le,e.expression,{body:e.expression})),i(fe,e,{body:f}).optimize(t)}return e}),e(ze,function(e,t){if(B(e.body,t),e.bcatch&&e.bfinally&&_(e.bfinally.body,b)&&(e.bfinally=null),_(e.body,b)){var n=[];return e.bcatch&&D(t,e.bcatch,n),e.bfinally&&(n=n.concat(e.bfinally.body)),i(fe,e,{body:n}).optimize(t)}return e}),Ve.DEFMETHOD("remove_initializers",function(){this.definitions.forEach(function(e){e.value=null})}),Ve.DEFMETHOD("to_assignments",function(e){var t=e.option("reduce_vars"),n=this.definitions.reduce(function(e,n){if(n.value){var r=i(yt,n.name,n.name);e.push(i(rt,n,{operator:"=",left:r,right:n.value})),t&&(r.definition().fixed=!1)}return v(n.name.definition().orig,n.name),e},[]);return 0==n.length?null:a(this,n)}),e(Ve,function(e,t){return 0==e.definitions.length?i(pe,e):e}),e(Ke,function(e,t){var n=e.expression,r=n;if(t.option("unused")&&(r instanceof ke||t.option("reduce_vars")&&r instanceof yt&&(r=r.fixed_value())instanceof ke)&&!r.uses_arguments&&!r.uses_eval){for(var o=0,u=0,l=0,c=e.args.length;l=r.argnames.length;if(f||r.argnames[l].__unused){if(g=e.args[l].drop_side_effect_free(t))e.args[o++]=g;else if(!f){e.args[o++]=i(xt,e.args[l],{value:0});continue}}else e.args[o++]=e.args[l];u=o}e.args.length=u}if(t.option("unsafe"))if(S(n))switch(n.name){case"Array":if(1!=e.args.length)return i(ot,e,{elements:e.args}).optimize(t);break;case"Object":if(0==e.args.length)return i(it,e,{properties:[]});break;case"String":if(0==e.args.length)return i(At,e,{value:""});if(e.args.length<=1)return i(tt,e,{left:e.args[0],operator:"+",right:i(At,e,{value:""})}).optimize(t);break;case"Number":if(0==e.args.length)return i(xt,e,{value:0});if(1==e.args.length)return i(Xe,e,{expression:e.args[0],operator:"+"}).optimize(t);case"Boolean":if(0==e.args.length)return i(Ft,e);if(1==e.args.length)return i(Xe,e,{expression:i(Xe,e,{expression:e.args[0],operator:"!"}),operator:"!"}).optimize(t)}else{if(n instanceof Qe&&"toString"==n.property&&0==e.args.length)return i(tt,e,{left:i(At,e,{value:""}),operator:"+",right:n.expression}).optimize(t);if(n instanceof Qe&&n.expression instanceof ot&&"join"==n.property){var p;if(!(e.args.length>0&&(p=e.args[0].evaluate(t))===e.args[0])){var h=[],d=[];if(n.expression.elements.forEach(function(n){var r=n.evaluate(t);r!==n?d.push(r):(d.length>0&&(h.push(i(At,e,{value:d.join(p)})),d.length=0),h.push(n))}),d.length>0&&h.push(i(At,e,{value:d.join(p)})),0==h.length)return i(At,e,{value:""});if(1==h.length)return h[0].is_string(t)?h[0]:i(tt,h[0],{operator:"+",left:i(At,e,{value:""}),right:h[0]});if(""==p){var m;return m=h[0].is_string(t)||h[1].is_string(t)?h.shift():i(At,e,{value:""}),h.reduce(function(e,t){return i(tt,t,{operator:"+",left:e,right:t})},m).optimize(t)}var g=e.clone();return g.expression=g.expression.clone(),g.expression.expression=g.expression.expression.clone(),g.expression.expression.elements=h,M(t,e,g)}}else if(n instanceof Qe&&n.expression.is_string(t)&&"charAt"==n.property){var v=e.args[0],y=v?v.evaluate(t):0;if(y!==v)return i(Ze,n,{expression:n.expression,property:s(0|y,v||n)}).optimize(t)}}if(t.option("unsafe_Func")&&S(n)&&"Function"==n.name){if(0==e.args.length)return i(ke,e,{argnames:[],body:[]});if(_(e.args,function(e){return e instanceof At}))try{var w=j(C="n(function("+e.args.slice(0,-1).map(function(e){return e.value}).join(",")+"){"+e.args[e.args.length-1].value+"})"),E={ie8:t.option("ie8")};w.figure_out_scope(E);var A=new G(t.options);(w=w.transform(A)).figure_out_scope(E),en.reset(),w.compute_char_frequency(E),w.mangle_names(E);var x;w.walk(new k(function(e){return!!x||(e instanceof xe?(x=e,!0):void 0)}));var C=K();return fe.prototype._codegen.call(x,x,C),e.args=[i(At,e,{value:x.argnames.map(function(e){return e.print_to_string()}).join(",")}),i(At,e.args[e.args.length-1],{value:C.get().replace(/^\{|\}$/g,"")})],e}catch(n){if(!(n instanceof P))throw n;t.warn("Error parsing code passed to new Function [{file}:{line},{col}]",e.args[e.args.length-1].start),t.warn(n.toString())}}var B=r instanceof ke&&r.body[0];if(t.option("inline")&&B instanceof De&&(!(D=B.value)||D.is_constant_expression())){R=e.args.concat(D||i(Bt,e));return a(e,R).optimize(t)}if(n instanceof ke){if(t.option("inline")&&!n.name&&!n.uses_arguments&&!n.uses_eval&&1==n.body.length&&_(n.argnames,function(e){return e.__unused})&&!e.has_pure_annotation(t)){var D;if(B instanceof De?D=B.value:B instanceof le&&(D=i(Xe,B,{operator:"void",expression:B.body})),D){var T=new k(function(e){if(!D)return!0;if(e instanceof yt){var t=e.scope.find_variable(e);if(t&&t.scope.parent_scope===r.parent_scope)return D=null,!0}return e instanceof wt&&!T.find_parent(Ee)?(D=null,!0):void 0});D.walk(T)}if(D){R=e.args.concat(D);return a(e,R).optimize(t)}}if(t.option("side_effects")&&_(n.body,b)){var R=e.args.concat(i(Bt,e));return a(e,R).optimize(t)}}if(t.option("drop_console")&&n instanceof We){for(var F=n.expression;F.expression;)F=F.expression;if(S(F)&&"console"==F.name)return i(Bt,e).optimize(t)}if(t.option("negate_iife")&&t.parent()instanceof le&&O(e))return e.negate(t,!0);var L=e.evaluate(t);return L!==e?(L=s(L,e).optimize(t),M(t,L,e)):e}),e(Ge,function(e,t){if(t.option("unsafe")){var n=e.expression;if(S(n))switch(n.name){case"Object":case"RegExp":case"Function":case"Error":case"Array":return i(Ke,e,e).transform(t)}}return e}),e(Ye,function(e,n){if(!n.option("side_effects"))return e;var r=[];!function(){var t=A(n),o=e.expressions.length-1;e.expressions.forEach(function(e,i){i0&&T(r[o],n);)o--;o0&&n.option("cascade")&&function(){for(var e=0,a=1;a<=o;a++){var s=r[e],u=r[a];if((s=s instanceof rt&&!s.left.has_side_effects(n)?s.left:s instanceof Je&&("++"==s.operator||"--"==s.operator)?s.expression:null)&&!t(s)){var l,c=null;for(r[a]=u=u.clone();;){if(u.equivalent_to(s)){var f=r[e];f instanceof et?f=i(Xe,f,{operator:f.operator,expression:s}):f.write_only=!1,c?(c[l]=f,r[e]=r[a]):r[e]=f;break}if(u instanceof tt&&!(u instanceof rt))if(u.left.is_constant()){if("||"==u.operator||"&&"==u.operator){r[++e]=r[a];break}l="right"}else l="left";else if(u instanceof Ke&&!(s instanceof We&&u.expression.equivalent_to(s))||u instanceof We||u instanceof Je&&!H(u.operator))l="expression";else{if(!(u instanceof nt)){r[++e]=r[a];break}l="condition"}c=u,u=u[l]=u[l].clone()}}else r[++e]=u}o=e,r.length=o+1}(),0==o?((e=u(n.parent(),e,r[0]))instanceof Ye||(e=e.optimize(n)),e):(e.expressions=r,e)}),Je.DEFMETHOD("lift_sequences",function(e){if(e.option("sequences")&&this.expression instanceof Ye){var t=this.expression.expressions.slice(),n=this.clone();return n.expression=t.pop(),t.push(n),a(this,t).optimize(e)}return this}),e(et,function(e,t){return e.lift_sequences(t)}),e(Xe,function(e,t){var n=e.expression;if("delete"==e.operator&&!(n instanceof yt||n instanceof We||n instanceof St||n instanceof Tt||n instanceof Bt))return n instanceof Ye?((n=n.expressions.slice()).push(i(Lt,e)),a(e,n).optimize(t)):a(e,[n,i(Lt,e)]).optimize(t);var r=e.lift_sequences(t);if(r!==e)return r;if(t.option("side_effects")&&"void"==e.operator)return(n=n.drop_side_effect_free(t))?(e.expression=n,e):i(Bt,e).optimize(t);if(t.option("booleans")&&t.in_boolean_context())switch(e.operator){case"!":if(n instanceof Xe&&"!"==n.operator)return n.expression;n instanceof tt&&(e=M(t,e,n.negate(t,A(t))));break;case"typeof":return t.warn("Boolean expression always true [{file}:{line},{col}]",e.start),(n instanceof yt?i(Lt,e):a(e,[n,i(Lt,e)])).optimize(t)}if("-"==e.operator&&n instanceof Tt&&(n=n.transform(t)),n instanceof tt&&("+"==e.operator||"-"==e.operator)&&("*"==n.operator||"/"==n.operator||"%"==n.operator))return i(tt,e,{operator:n.operator,left:i(Xe,n.left,{operator:e.operator,expression:n.left}),right:n.right});if("-"!=e.operator||!(n instanceof xt||n instanceof Tt)){var o=e.evaluate(t);if(o!==e)return o=s(o,e).optimize(t),M(t,o,e)}return e}),tt.DEFMETHOD("lift_sequences",function(e){if(e.option("sequences")){if(this.left instanceof Ye){var t=this.left.expressions.slice();return(i=this.clone()).left=t.pop(),t.push(i),a(this,t).optimize(e)}if(this.right instanceof Ye&&!this.left.has_side_effects(e)){for(var n="="==this.operator&&this.left instanceof yt,r=(t=this.right.expressions).length-1,o=0;o0){var i=this.clone();return i.right=a(this.right,t.slice(o)),(t=t.slice(0,o)).push(i),a(this,t).optimize(e)}}}return this});var W=y("== === != !== * & | ^");e(tt,function(e,t){function n(){return e.left.is_constant()||e.right.is_constant()||!e.left.has_side_effects(t)&&!e.right.has_side_effects(t)}function r(t){if(n()){t&&(e.operator=t);var r=e.left;e.left=e.right,e.right=r}}if(W(e.operator)&&e.right.is_constant()&&!e.left.is_constant()&&(e.left instanceof tt&&Jt[e.left.operator]>=Jt[e.operator]||r()),e=e.lift_sequences(t),t.option("comparisons"))switch(e.operator){case"===":case"!==":(e.left.is_string(t)&&e.right.is_string(t)||e.left.is_number(t)&&e.right.is_number(t)||e.left.is_boolean()&&e.right.is_boolean())&&(e.operator=e.operator.substr(0,2));case"==":case"!=":if(t.option("typeofs")&&e.left instanceof At&&"undefined"==e.left.value&&e.right instanceof Xe&&"typeof"==e.right.operator){var o=e.right.expression;(o instanceof yt?!o.is_declared(t):o instanceof We&&t.option("ie8"))||(e.right=o,e.left=i(Bt,e.left).optimize(t),2==e.operator.length&&(e.operator+="="))}}if(t.option("booleans")&&"+"==e.operator&&t.in_boolean_context()){var l=e.left.evaluate(t),c=e.right.evaluate(t);if(l&&"string"==typeof l)return t.warn("+ in boolean context always true [{file}:{line},{col}]",e.start),a(e,[e.right,i(Lt,e)]).optimize(t);if(c&&"string"==typeof c)return t.warn("+ in boolean context always true [{file}:{line},{col}]",e.start),a(e,[e.left,i(Lt,e)]).optimize(t)}if(t.option("comparisons")&&e.is_boolean()){if(!(t.parent()instanceof tt)||t.parent()instanceof rt){var f=i(Xe,e,{operator:"!",expression:e.negate(t,A(t))});e=M(t,e,f)}if(t.option("unsafe_comps"))switch(e.operator){case"<":r(">");break;case"<=":r(">=")}}if("+"==e.operator){if(e.right instanceof At&&""==e.right.getValue()&&e.left.is_string(t))return e.left;if(e.left instanceof At&&""==e.left.getValue()&&e.right.is_string(t))return e.right;if(e.left instanceof tt&&"+"==e.left.operator&&e.left.left instanceof At&&""==e.left.left.getValue()&&e.right.is_string(t))return e.left=e.left.right,e.transform(t)}if(t.option("evaluate")){switch(e.operator){case"&&":if(!(l=e.left.evaluate(t)))return t.warn("Condition left of && always false [{file}:{line},{col}]",e.start),u(t.parent(),e,e.left).optimize(t);if(l!==e.left)return t.warn("Condition left of && always true [{file}:{line},{col}]",e.start),u(t.parent(),e,e.right).optimize(t);if(t.option("booleans")&&t.in_boolean_context()){if(!(c=e.right.evaluate(t)))return t.warn("Boolean && always false [{file}:{line},{col}]",e.start),a(e,[e.left,i(Ft,e)]).optimize(t);if(c!==e.right)return t.warn("Dropping side-effect-free && in boolean context [{file}:{line},{col}]",e.start),e.left.optimize(t)}break;case"||":if(!(l=e.left.evaluate(t)))return t.warn("Condition left of || always false [{file}:{line},{col}]",e.start),u(t.parent(),e,e.right).optimize(t);if(l!==e.left)return t.warn("Condition left of || always true [{file}:{line},{col}]",e.start),u(t.parent(),e,e.left).optimize(t);if(t.option("booleans")&&t.in_boolean_context()){if(!(c=e.right.evaluate(t)))return t.warn("Dropping side-effect-free || in boolean context [{file}:{line},{col}]",e.start),e.left.optimize(t);if(c!==e.right)return t.warn("Boolean || always true [{file}:{line},{col}]",e.start),a(e,[e.left,i(Lt,e)]).optimize(t)}}var p=!0;switch(e.operator){case"+":if(e.left instanceof Et&&e.right instanceof tt&&"+"==e.right.operator&&e.right.left instanceof Et&&e.right.is_string(t)&&(e=i(tt,e,{operator:"+",left:i(At,e.left,{value:""+e.left.getValue()+e.right.left.getValue(),start:e.left.start,end:e.right.left.end}),right:e.right.right})),e.right instanceof Et&&e.left instanceof tt&&"+"==e.left.operator&&e.left.right instanceof Et&&e.left.is_string(t)&&(e=i(tt,e,{operator:"+",left:e.left.left,right:i(At,e.right,{value:""+e.left.right.getValue()+e.right.getValue(),start:e.left.right.start,end:e.right.end})})),e.left instanceof tt&&"+"==e.left.operator&&e.left.is_string(t)&&e.left.right instanceof Et&&e.right instanceof tt&&"+"==e.right.operator&&e.right.left instanceof Et&&e.right.is_string(t)&&(e=i(tt,e,{operator:"+",left:i(tt,e.left,{operator:"+",left:e.left.left,right:i(At,e.left.right,{value:""+e.left.right.getValue()+e.right.left.getValue(),start:e.left.right.start,end:e.right.left.end})}),right:e.right.right})),e.right instanceof Xe&&"-"==e.right.operator&&e.left.is_number(t)){e=i(tt,e,{operator:"-",left:e.left,right:e.right.expression});break}if(e.left instanceof Xe&&"-"==e.left.operator&&n()&&e.right.is_number(t)){e=i(tt,e,{operator:"-",left:e.right,right:e.left.expression});break}case"*":p=t.option("unsafe_math");case"&":case"|":case"^":if(e.left.is_number(t)&&e.right.is_number(t)&&n()&&!(e.left instanceof tt&&e.left.operator!=e.operator&&Jt[e.left.operator]>=Jt[e.operator])){var h=i(tt,e,{operator:e.operator,left:e.right,right:e.left});e=e.right instanceof Et&&!(e.left instanceof Et)?M(t,h,e):M(t,e,h)}p&&e.is_number(t)&&(e.right instanceof tt&&e.right.operator==e.operator&&(e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:e.left,right:e.right.left,start:e.left.start,end:e.right.left.end}),right:e.right.right})),e.right instanceof Et&&e.left instanceof tt&&e.left.operator==e.operator&&(e.left.left instanceof Et?e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:e.left.left,right:e.right,start:e.left.left.start,end:e.right.end}),right:e.left.right}):e.left.right instanceof Et&&(e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:e.left.right,right:e.right,start:e.left.right.start,end:e.right.end}),right:e.left.left}))),e.left instanceof tt&&e.left.operator==e.operator&&e.left.right instanceof Et&&e.right instanceof tt&&e.right.operator==e.operator&&e.right.left instanceof Et&&(e=i(tt,e,{operator:e.operator,left:i(tt,e.left,{operator:e.operator,left:i(tt,e.left.left,{operator:e.operator,left:e.left.right,right:e.right.left,start:e.left.right.start,end:e.right.left.end}),right:e.left.left}),right:e.right.right})))}}if(e.right instanceof tt&&e.right.operator==e.operator&&("&&"==e.operator||"||"==e.operator||"+"==e.operator&&(e.right.left.is_string(t)||e.left.is_string(t)&&e.right.right.is_string(t))))return e.left=i(tt,e.left,{operator:e.operator,left:e.left,right:e.right.left}),e.right=e.right.right,e.transform(t);var d=e.evaluate(t);return d!==e?(d=s(d,e).optimize(t),M(t,d,e)):e}),e(yt,function(e,t){var n=e.resolve_defines(t);if(n)return n.optimize(t);if(!t.option("ie8")&&S(e)&&(!e.scope.uses_with||!t.find_parent(we)))switch(e.name){case"undefined":return i(Bt,e).optimize(t);case"NaN":return i(St,e).optimize(t);case"Infinity":return i(Tt,e).optimize(t)}if(t.option("reduce_vars")&&R(e,t.parent())!==e){var r=e.definition(),o=e.fixed_value();if(o instanceof Oe&&(r.fixed=o=i(ke,o,o)),t.option("unused")&&o instanceof ke&&1==r.references.length&&!(r.scope.uses_arguments&&r.orig[0]instanceof dt)&&!r.scope.uses_eval&&t.find_parent(Ee)===o.parent_scope)return o.clone(!0);if(t.option("evaluate")&&o){if(void 0===r.should_replace){var a=o.evaluate(t);if(a===o||!t.option("unsafe_regexp")&&a instanceof RegExp)r.should_replace=!1;else{var u,l=(a=s(a,o)).optimize(t).print_to_string().length;!function(e){var t;return e.walk(new k(function(e){if(e instanceof yt&&(t=!0),t)return!0})),t}(o)?(l=Math.min(l,o.print_to_string().length),u=function(){var e=F(a.optimize(t),o);return e===a||e===o?e.clone(!0):e}):u=function(){var e=a.optimize(t);return e===a?e.clone(!0):e};var c=r.name.length,f=0;t.option("unused")&&!t.exposed(r)&&(f=(c+2+l)/r.references.length),r.should_replace=l<=c+f&&u}}if(r.should_replace)return r.should_replace()}}return e}),e(Bt,function(e,t){if(t.option("unsafe")){var r=n(t,"undefined");if(r){var o=i(yt,e,{name:"undefined",scope:r.scope,thedef:r});return o.is_undefined=!0,o}}var a=R(t.self(),t.parent());return a&&z(a,e)?e:i(Xe,e,{operator:"void",expression:i(xt,e,{value:0})})}),e(Tt,function(e,t){var r=R(t.self(),t.parent());return r&&z(r,e)?e:!t.option("keep_infinity")||r&&!z(r,e)||n(t,"Infinity")?i(tt,e,{operator:"/",left:i(xt,e,{value:1}),right:i(xt,e,{value:0})}):e}),e(St,function(e,t){var r=R(t.self(),t.parent());return r&&!z(r,e)||n(t,"NaN")?i(tt,e,{operator:"/",left:i(xt,e,{value:0}),right:i(xt,e,{value:0})}):e});var Q=["+","-","/","*","%",">>","<<",">>>","|","^","&"],Z=["*","|","^","&"];e(rt,function(e,t){return"="==(e=e.lift_sequences(t)).operator&&e.left instanceof yt&&e.right instanceof tt&&(e.right.left instanceof yt&&e.right.left.name==e.left.name&&r(e.right.operator,Q)?(e.operator=e.right.operator+"=",e.right=e.right.right):e.right.right instanceof yt&&e.right.right.name==e.left.name&&r(e.right.operator,Z)&&!e.right.left.has_side_effects(t)&&(e.operator=e.right.operator+"=",e.right=e.right.left)),e}),e(nt,function(e,t){function n(e){return e.is_boolean()?e:i(Xe,e,{operator:"!",expression:e.negate(t)})}function r(e){return e instanceof Lt||e instanceof Xe&&"!"==e.operator&&e.expression instanceof Et&&!e.expression.value}function o(e){return e instanceof Ft||e instanceof Xe&&"!"==e.operator&&e.expression instanceof Et&&!!e.expression.value}if(!t.option("conditionals"))return e;if(e.condition instanceof Ye){var s=e.condition.expressions.slice();return e.condition=s.pop(),s.push(e),a(e,s)}var l=e.condition.evaluate(t);if(l!==e.condition)return l?(t.warn("Condition always true [{file}:{line},{col}]",e.start),u(t.parent(),e,e.consequent)):(t.warn("Condition always false [{file}:{line},{col}]",e.start),u(t.parent(),e,e.alternative));var c=l.negate(t,A(t));M(t,l,c)===c&&(e=i(nt,e,{condition:c,consequent:e.alternative,alternative:e.consequent}));var f=e.condition,p=e.consequent,h=e.alternative;return f instanceof yt&&p instanceof yt&&f.definition()===p.definition()?i(tt,e,{operator:"||",left:f,right:h}):p instanceof rt&&h instanceof rt&&p.operator==h.operator&&p.left.equivalent_to(h.left)&&(!e.condition.has_side_effects(t)||"="==p.operator&&!p.left.has_side_effects(t))?i(rt,e,{operator:p.operator,left:p.left,right:i(nt,e,{condition:e.condition,consequent:p.right,alternative:h.right})}):p instanceof Ke&&h.TYPE===p.TYPE&&1==p.args.length&&1==h.args.length&&p.expression.equivalent_to(h.expression)&&!p.expression.has_side_effects(t)?(p.args[0]=i(nt,e,{condition:e.condition,consequent:p.args[0],alternative:h.args[0]}),p):p instanceof nt&&p.alternative.equivalent_to(h)?i(nt,e,{condition:i(tt,e,{left:e.condition,operator:"&&",right:p.condition}),consequent:p.consequent,alternative:h}):p.equivalent_to(h)?a(e,[e.condition,p]).optimize(t):r(e.consequent)?o(e.alternative)?n(e.condition):i(tt,e,{operator:"||",left:n(e.condition),right:e.alternative}):o(e.consequent)?r(e.alternative)?n(e.condition.negate(t)):i(tt,e,{operator:"&&",left:n(e.condition.negate(t)),right:e.alternative}):r(e.alternative)?i(tt,e,{operator:"||",left:n(e.condition.negate(t)),right:e.consequent}):o(e.alternative)?i(tt,e,{operator:"&&",left:n(e.condition),right:e.consequent}):e}),e(Rt,function(e,t){if(t.option("booleans")){var n=t.parent();return n instanceof tt&&("=="==n.operator||"!="==n.operator)?(t.warn("Non-strict equality against boolean: {operator} {value} [{file}:{line},{col}]",{operator:n.operator,value:e.value,file:n.start.file,line:n.start.line,col:n.start.col}),i(xt,e,{value:+e.value})):i(Xe,e,{operator:"!",expression:i(xt,e,{value:1-e.value})})}return e}),e(Ze,function(e,t){var n=e.property;if(n instanceof At&&t.option("properties")){if(n=n.getValue(),U(n))return i(Qe,e,{expression:e.expression,property:n}).optimize(t);var r=parseFloat(n);isNaN(r)||r.toString()!=n||(e.property=i(xt,e.property,{value:r}))}var o=e.evaluate(t);return o!==e?(o=s(o,e).optimize(t),M(t,o,e)):e}),xe.DEFMETHOD("contains_this",function(){var e,t=this;return t.walk(new k(function(n){return!!e||(n instanceof wt?e=!0:n!==t&&n instanceof Ee||void 0)})),e}),e(Qe,function(e,t){var n=e.resolve_defines(t);if(n)return n.optimize(t);if(t.option("unsafe")&&e.expression instanceof it)for(var r=e.expression.properties,o=r.length;--o>=0;)if(r[o].key===e.property){var u=r[o].value;if(u instanceof ke?!u.contains_this():!u.has_side_effects(t)){var l=e.expression.clone();return l.properties=l.properties.slice(),l.properties.splice(o,1),a(e,[l,u]).optimize(t)}}if(t.option("unsafe_proto")&&e.expression instanceof Qe&&"prototype"==e.expression.property){var c=e.expression.expression;if(S(c))switch(c.name){case"Array":e.expression=i(ot,e.expression,{elements:[]});break;case"Object":e.expression=i(it,e.expression,{properties:[]});break;case"String":e.expression=i(At,e.expression,{value:""})}}var f=e.evaluate(t);return f!==e?(f=s(f,e).optimize(t),M(t,f,e)):e}),e(ot,I),e(it,I),e(Ct,I),e(De,function(e,t){return e.value&&T(e.value,t)&&(e.value=null),e}),e(He,function(e,t){var n=t.option("global_defs");return n&&E(n,e.name.name)&&t.warn("global_defs "+e.name.name+" redefined [{file}:{line},{col}]",e.start),e})}(),function(){function e(e){if("Literal"==e.type)return null!=e.raw?e.raw:e.value+""}function n(t){var n=t.loc,r=n&&n.start,o=t.range;return new oe({file:n&&n.source,line:r&&r.line,col:r&&r.column,pos:o?o[0]:t.start,endline:r&&r.line,endcol:r&&r.column,endpos:o?o[0]:t.start,raw:e(t)})}function r(t){var n=t.loc,r=n&&n.end,o=t.range;return new oe({file:n&&n.source,line:r&&r.line,col:r&&r.column,pos:o?o[1]:t.end,endline:r&&r.line,endcol:r&&r.column,endpos:o?o[1]:t.end,raw:e(t)})}function o(e,o,a){var f="function From_Moz_"+e+"(M){\n";f+="return new U2."+o.name+"({\nstart: my_start_token(M),\nend: my_end_token(M)";var h="function To_Moz_"+e+"(M){\n";h+="return {\ntype: "+JSON.stringify(e),a&&a.split(/\s*,\s*/).forEach(function(e){var t=/([a-z0-9$_]+)(=|@|>|%)([a-z0-9$_]+)/i.exec(e);if(!t)throw new Error("Can't understand property map: "+e);var n=t[1],r=t[2],o=t[3];switch(f+=",\n"+o+": ",h+=",\n"+n+": ",r){case"@":f+="M."+n+".map(from_moz)",h+="M."+o+".map(to_moz)";break;case">":f+="from_moz(M."+n+")",h+="to_moz(M."+o+")";break;case"=":f+="M."+n,h+="M."+o;break;case"%":f+="from_moz(M."+n+").body",h+="to_moz_block(M)";break;default:throw new Error("Can't understand operator in propmap: "+e)}}),f+="\n})\n}",h+="\n}\n}",f=new Function("U2","my_start_token","my_end_token","from_moz","return("+f+")")(t,n,r,i),h=new Function("to_moz","to_moz_block","to_moz_scope","return("+h+")")(u,l,c),p[e]=f,s(o,h)}function i(e){h.push(e);var t=null!=e?p[e.type](e):null;return h.pop(),t}function a(e,t,n){var r=e.start,o=e.end;return null!=r.pos&&null!=o.endpos&&(t.range=[r.pos,o.endpos]),r.line&&(t.loc={start:{line:r.line,column:r.col},end:o.endline?{line:o.endline,column:o.endcol}:null},r.file&&(t.loc.source=r.file)),t}function s(e,t){e.DEFMETHOD("to_mozilla_ast",function(){return a(this,t(this))})}function u(e){return null!=e?e.to_mozilla_ast():null}function l(e){return{type:"BlockStatement",body:e.body.map(u)}}function c(e,t){var n=t.body.map(u);return t.body[0]instanceof le&&t.body[0].body instanceof At&&n.unshift(u(new pe(t.body[0]))),{type:e,body:n}}var f=function(e){for(var t=!0,n=0;n1||e.guardedHandlers&&e.guardedHandlers.length)throw new Error("Multiple catch clauses are not supported.");return new ze({start:n(e),end:r(e),body:i(e.block).body,bcatch:i(t[0]),bfinally:e.finalizer?new je(i(e.finalizer)):null})},Property:function(e){var t=e.key,o={start:n(t),end:r(e.value),key:"Identifier"==t.type?t.name:t.value,value:i(e.value)};return"init"==e.kind?new st(o):(o.key=new ft({name:o.key}),o.value=new Ce(o.value),"get"==e.kind?new lt(o):"set"==e.kind?new ut(o):void 0)},ArrayExpression:function(e){return new ot({start:n(e),end:r(e),elements:e.elements.map(function(e){return null===e?new Dt:i(e)})})},ObjectExpression:function(e){return new it({start:n(e),end:r(e),properties:e.properties.map(function(e){return e.type="Property",i(e)})})},SequenceExpression:function(e){return new Ye({start:n(e),end:r(e),expressions:e.expressions.map(i)})},MemberExpression:function(e){return new(e.computed?Ze:Qe)({start:n(e),end:r(e),property:e.computed?i(e.property):e.property.name,expression:i(e.object)})},SwitchCase:function(e){return new(e.test?qe:Pe)({start:n(e),end:r(e),expression:i(e.test),body:e.consequent.map(i)})},VariableDeclaration:function(e){return new $e({start:n(e),end:r(e),definitions:e.declarations.map(i)})},Literal:function(e){var t=e.value,o={start:n(e),end:r(e)};if(null===t)return new Ot(o);switch(typeof t){case"string":return o.value=t,new At(o);case"number":return o.value=t,new xt(o);case"boolean":return new(t?Lt:Ft)(o);default:var i=e.regex;return i&&i.pattern?o.value=new RegExp(i.pattern,i.flags).toString():o.value=e.regex&&e.raw?e.raw:t,new Ct(o)}},Identifier:function(e){var t=h[h.length-2];return new("LabeledStatement"==t.type?bt:"VariableDeclarator"==t.type&&t.id===e?ht:"FunctionExpression"==t.type?t.id===e?gt:dt:"FunctionDeclaration"==t.type?t.id===e?mt:dt:"CatchClause"==t.type?vt:"BreakStatement"==t.type||"ContinueStatement"==t.type?_t:yt)({start:n(e),end:r(e),name:e.name})}};p.UpdateExpression=p.UnaryExpression=function(e){return new(("prefix"in e?e.prefix:"UnaryExpression"==e.type)?Xe:et)({start:n(e),end:r(e),operator:e.operator,expression:i(e.argument)})},o("EmptyStatement",pe),o("BlockStatement",fe,"body@body"),o("IfStatement",Me,"test>condition, consequent>body, alternate>alternative"),o("LabeledStatement",de,"label>label, body>body"),o("BreakStatement",Fe,"label>label"),o("ContinueStatement",Le,"label>label"),o("WithStatement",we,"object>expression, body>body"),o("SwitchStatement",Ue,"discriminant>expression, cases@body"),o("ReturnStatement",De,"argument>value"),o("ThrowStatement",Te,"argument>value"),o("WhileStatement",be,"test>condition, body>body"),o("DoWhileStatement",ve,"test>condition, body>body"),o("ForStatement",ye,"init>init, test>condition, update>step, body>body"),o("ForInStatement",_e,"left>init, right>object, body>body"),o("DebuggerStatement",se),o("VariableDeclarator",He,"id>name, init>value"),o("CatchClause",Ie,"param>argname, body%body"),o("ThisExpression",wt),o("BinaryExpression",tt,"operator=operator, left>left, right>right"),o("LogicalExpression",tt,"operator=operator, left>left, right>right"),o("AssignmentExpression",rt,"operator=operator, left>left, right>right"),o("ConditionalExpression",nt,"test>condition, consequent>consequent, alternate>alternative"),o("NewExpression",Ge,"callee>expression, arguments@args"),o("CallExpression",Ke,"callee>expression, arguments@args"),s(Ae,function(e){return c("Program",e)}),s(Oe,function(e){return{type:"FunctionDeclaration",id:u(e.name),params:e.argnames.map(u),body:c("BlockStatement",e)}}),s(ke,function(e){return{type:"FunctionExpression",id:u(e.name),params:e.argnames.map(u),body:c("BlockStatement",e)}}),s(ue,function(e){return{type:"ExpressionStatement",expression:{type:"Literal",value:e.value}}}),s(le,function(e){return{type:"ExpressionStatement",expression:u(e.body)}}),s(Ne,function(e){return{type:"SwitchCase",test:u(e.expression),consequent:e.body.map(u)}}),s(ze,function(e){return{type:"TryStatement",block:l(e),handler:u(e.bcatch),guardedHandlers:[],finalizer:u(e.bfinally)}}),s(Ie,function(e){return{type:"CatchClause",param:u(e.argname),guard:null,body:l(e)}}),s(Ve,function(e){return{type:"VariableDeclaration",kind:"var",declarations:e.definitions.map(u)}}),s(Ye,function(e){return{type:"SequenceExpression",expressions:e.expressions.map(u)}}),s(We,function(e){var t=e instanceof Ze;return{type:"MemberExpression",object:u(e.expression),computed:t,property:t?u(e.property):{type:"Identifier",name:e.property}}}),s(Je,function(e){return{type:"++"==e.operator||"--"==e.operator?"UpdateExpression":"UnaryExpression",operator:e.operator,prefix:e instanceof Xe,argument:u(e.expression)}}),s(tt,function(e){return{type:"&&"==e.operator||"||"==e.operator?"LogicalExpression":"BinaryExpression",left:u(e.left),operator:e.operator,right:u(e.right)}}),s(ot,function(e){return{type:"ArrayExpression",elements:e.elements.map(u)}}),s(it,function(e){return{type:"ObjectExpression",properties:e.properties.map(u)}}),s(at,function(e){var t,n={type:"Literal",value:e.key instanceof ft?e.key.name:e.key};return e instanceof st?t="init":e instanceof lt?t="get":e instanceof ut&&(t="set"),{type:"Property",kind:t,key:n,value:u(e.value)}}),s(ct,function(e){var t=e.definition();return{type:"Identifier",name:t?t.mangled_name||t.name:e.name}}),s(Ct,function(e){var t=e.value;return{type:"Literal",value:t,raw:t.toString(),regex:{pattern:t.source,flags:t.toString().match(/[gimuy]*$/)[0]}}}),s(Et,function(e){var t=e.value;return"number"==typeof t&&(t<0||0===t&&1/t<0)?{type:"UnaryExpression",operator:"-",prefix:!0,argument:{type:"Literal",value:-t,raw:e.start.raw}}:{type:"Literal",value:t,raw:e.start.raw}}),s(kt,function(e){return{type:"Identifier",name:String(e.value)}}),Rt.DEFMETHOD("to_mozilla_ast",Et.prototype.to_mozilla_ast),Ot.DEFMETHOD("to_mozilla_ast",Et.prototype.to_mozilla_ast),Dt.DEFMETHOD("to_mozilla_ast",function(){return null}),ce.DEFMETHOD("to_mozilla_ast",fe.prototype.to_mozilla_ast),xe.DEFMETHOD("to_mozilla_ast",ke.prototype.to_mozilla_ast);var h=null;ie.from_mozilla_ast=function(e){var t=h;h=[];var n=i(e);return h=t,n}}();var nn="undefined"==typeof atob?function(t){return new e(t,"base64").toString()}:atob,rn="undefined"==typeof btoa?function(t){return new e(t).toString("base64")}:btoa;t.Dictionary=w,t.TreeWalker=k,t.TreeTransformer=V,t.minify=function(e,t){var n=ie.warn_function;try{var r=(t=u(t,{compress:{},ie8:!1,keep_fnames:!1,mangle:{},nameCache:null,output:{},parse:{},sourceMap:!1,timings:!1,toplevel:!1,warnings:!1,wrap:!1},!0)).timings&&{start:Date.now()};ee("ie8",t,["compress","mangle","output"]),ee("keep_fnames",t,["compress","mangle"]),ee("toplevel",t,["compress","mangle"]),ee("warnings",t,["compress"]);var o;t.mangle&&(t.mangle=u(t.mangle,{cache:t.nameCache&&(t.nameCache.vars||{}),eval:!1,ie8:!1,keep_fnames:!1,properties:!1,reserved:[],toplevel:!1},!0),t.mangle.properties&&("object"!=typeof t.mangle.properties&&(t.mangle.properties={}),t.mangle.properties.keep_quoted&&(o=t.mangle.properties.reserved,Array.isArray(o)||(o=[]),t.mangle.properties.reserved=o),!t.nameCache||"cache"in t.mangle.properties||(t.mangle.properties.cache=t.nameCache.props||{})),te(t.mangle.cache),te(t.mangle.properties.cache)),t.sourceMap&&(t.sourceMap=u(t.sourceMap,{content:null,filename:null,includeSources:!1,root:null,url:null},!0));var i=[];t.warnings&&!ie.warn_function&&(ie.warn_function=function(e){i.push(e)}),r&&(r.parse=Date.now());var a;if(e instanceof Ae)a=e;else{"string"==typeof e&&(e=[e]),t.parse=t.parse||{},t.parse.toplevel=null;for(var s in e)if(E(e,s)&&(t.parse.filename=s,t.parse.toplevel=j(e[s],t.parse),t.sourceMap&&"inline"==t.sourceMap.content)){if(Object.keys(e).length>1)throw new Error("inline source map only works with singular input");t.sourceMap.content=X(e[s])}a=t.parse.toplevel}o&&Q(a,o),t.wrap&&(a=a.wrap_commonjs(t.wrap)),r&&(r.scope1=Date.now()),t.compress&&a.figure_out_scope(t.mangle),r&&(r.compress=Date.now()),t.compress&&(a=new G(t.compress).compress(a)),r&&(r.scope2=Date.now()),t.mangle&&a.figure_out_scope(t.mangle),r&&(r.mangle=Date.now()),t.mangle&&(en.reset(),a.compute_char_frequency(t.mangle),a.mangle_names(t.mangle)),r&&(r.properties=Date.now()),t.mangle&&t.mangle.properties&&(a=J(a,t.mangle.properties)),r&&(r.output=Date.now());var l={};if(t.output.ast&&(l.ast=a),!E(t.output,"code")||t.output.code){if(t.sourceMap&&("string"==typeof t.sourceMap.content&&(t.sourceMap.content=JSON.parse(t.sourceMap.content)),t.output.source_map=Y({file:t.sourceMap.filename,orig:t.sourceMap.content,root:t.sourceMap.root}),t.sourceMap.includeSources)){if(e instanceof Ae)throw new Error("original source content unavailable");for(var s in e)E(e,s)&&t.output.source_map.get().setSourceContent(s,e[s])}delete t.output.ast,delete t.output.code;var c=K(t.output);a.print(c),l.code=c.get(),t.sourceMap&&(l.map=t.output.source_map.toString(),"inline"==t.sourceMap.url?l.code+="\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,"+rn(l.map):t.sourceMap.url&&(l.code+="\n//# sourceMappingURL="+t.sourceMap.url))}return t.nameCache&&t.mangle&&(t.mangle.cache&&(t.nameCache.vars=ne(t.mangle.cache)),t.mangle.properties&&t.mangle.properties.cache&&(t.nameCache.props=ne(t.mangle.properties.cache))),r&&(r.end=Date.now(),l.timings={parse:.001*(r.scope1-r.parse),scope:.001*(r.compress-r.scope1+r.mangle-r.scope2),compress:.001*(r.scope2-r.compress),mangle:.001*(r.properties-r.mangle),properties:.001*(r.output-r.properties),output:.001*(r.end-r.output),total:.001*(r.end-r.start)}),i.length&&(l.warnings=i),l}catch(e){return{error:e}}finally{ie.warn_function=n}},t._push_uniq=m}(void 0===n?n={}:n)}).call(this,e("buffer").Buffer)},{buffer:4}]},{},["html-minifier"]); \ No newline at end of file diff --git a/index.html b/index.html index 0533a5a..80c275e 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,7 @@
-

HTML Minifier (v3.5.4)

+

HTML Minifier (v3.5.5)

diff --git a/package.json b/package.json index e4c2345..88790e5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "html-minifier", "description": "Highly configurable, well-tested, JavaScript-based HTML minifier.", - "version": "3.5.4", + "version": "3.5.5", "keywords": [ "cli", "compress", -- 2.34.1