diff --git a/README.md b/README.md index ab97b1f..e4cf53f 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,11 @@ "type": "penalty", // Штрафной пункт. Указано количество баллов которое снимается, если он выбран. "text": "Тестовый - Oшибки или предупреждения eslint-config-airbnb-base", "max": -15 + }, + { + "type": "penalty", // Штрафной пункт. Указан процент от общего количества баллов которые снимается, если он выбран. + "text": "Тестовый - Pull Request сделан НЕ в свой репозиторий", + "max": "-20%" } ] } diff --git a/active-tasks/node-nodejs-basics.json b/active-tasks/node-nodejs-basics.json new file mode 100644 index 0000000..09bd75d --- /dev/null +++ b/active-tasks/node-nodejs-basics.json @@ -0,0 +1,161 @@ +{ + "taskName": "Node.js basics Q4-2022", + "github": "https://github.com/AlreadyBored/nodejs-assignments/blob/main/assignments/nodejs-basics/assignment.md", + "information": "Scoring: Node.js basics", + "criteria": [ + { + "type": "title", + "title": "For check simplification you have npm-scripts in \"package.json.\"\nNB! Some scripts have predefined data (e.g. environment variables, CLI arguments). Feel free to change it during the check if necessary.\n\nMax score: 206" + }, + { + "type": "title", + "title": "File system (src/fs)" + }, + { + "type": "subtask", + "text": "`create.js` implemented properly", + "max": 6 + }, + { + "type": "subtask", + "text": "`copy.js` implemented properly", + "max": 10 + }, + { + "type": "subtask", + "text": "`rename.js` implemented properly", + "max": 10 + }, + { + "type": "subtask", + "text": "`delete.js` implemented properly", + "max": 6 + }, + { + "type": "subtask", + "text": "`list.js` implemented properly", + "max": 6 + }, + { + "type": "subtask", + "text": "`read.js` implemented properly", + "max": 6 + }, + { + "type": "title", + "title": "Command line interface(src/cli)" + }, + { + "type": "subtask", + "text": "`env.js` implemented properly", + "max": 6 + }, + { + "type": "subtask", + "text": "`args.js` implemented properly", + "max": 6 + }, + { + "type": "title", + "title": "Modules(src/modules)" + }, + { + "type": "subtask", + "text": "`cjsToEsm.cjs` refactored properly", + "max": 20 + }, + { + "type": "title", + "title": "Hash (src/hash)" + }, + { + "type": "subtask", + "text": "`calcHash.js` implemented properly", + "max": 10 + }, + { + "type": "title", + "title": "Streams (src/streams)" + }, + { + "type": "subtask", + "text": "`read.js` implemented properly", + "max": 10 + }, + { + "type": "subtask", + "text": "`write.js` implemented properly", + "max": 10 + }, + { + "type": "subtask", + "text": "`transform.js` implemented properly", + "max": 10 + }, + { + "type": "title", + "title": "Zlib (src/zip)" + }, + { + "type": "subtask", + "text": "`compress.js` implemented properly", + "max": 10 + }, + { + "type": "subtask", + "text": "`decompress.js` implemented properly", + "max": 10 + }, + { + "type": "title", + "title": "Advanced Scope" + }, + { + "type": "title", + "title": "Worker Threads (src/wt)" + }, + { + "type": "subtask", + "text": "`worker.js` implemented properly", + "max": 10 + }, + { + "type": "subtask", + "text": "`main.js` implemented properly", + "max": 30 + }, + { + "type": "title", + "title": "Child Processes (src/cp)" + }, + { + "type": "subtask", + "text": "spawns child process", + "max": 10 + }, + { + "type": "subtask", + "text": "child process `stdin` receives input from master process `stdin`", + "max": 10 + }, + { + "type": "subtask", + "text": "child process `stdout` sends data to master process `stdout`", + "max": 10 + }, + { + "type": "title", + "title": "Forfeits" + }, + { + "type": "penalty", + "text": "Any external tools/libraries are used", + "max": "-95%" + }, + { + "type": "penalty", + "text": "Commits after deadline (except commits that affect only Readme.md, .gitignore, etc.)", + "max": "-30%" + } + ] +} \ No newline at end of file diff --git a/css/styles.css b/css/styles.css index d079885..a46a4d0 100644 --- a/css/styles.css +++ b/css/styles.css @@ -349,10 +349,6 @@ main { cursor: pointer; } -.hidden { - display: none; -} - .title h3 { color: #222; text-transform: none; @@ -564,6 +560,10 @@ label:hover { font-size: 35px; } +.task-max-score .wide-digit { + font-size: 24px; +} + .feedback-buttons { position: relative; text-align: right; @@ -633,3 +633,36 @@ label:hover { width: 60%; text-align: left; } + +code { + display: inline-block; + padding: 0 6px; + border-radius: 4px; + background: #00000026; + font-size: .85em; + line-height: 150%; +} + +.lang-selector { + display: flex; + margin-right: 20px; + font-size: 1.5em; +} + +.lang-selector li { + margin: 0 4px; +} + +.lang-selector li a { + cursor: pointer; +} + +.disabled-link a { + text-decoration: none !important; + cursor: default !important; + color: #162b3f; +} + +.hidden { + display: none; +} \ No newline at end of file diff --git a/index.html b/index.html index 095fba7..00b926c 100644 --- a/index.html +++ b/index.html @@ -23,6 +23,11 @@ Total points: 0 +
diff --git a/index.js b/index.js index 4d766be..ba5ea2c 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -!function(t){var n={};function e(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:r})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,n){if(1&n&&(t=e(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(e.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var i in t)e.d(r,i,function(n){return t[n]}.bind(null,i));return r},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.p="",e(e.s=121)}([function(t,n,e){var r=e(1),i=e(7),o=e(14),u=e(11),c=e(17),a=function(t,n,e){var f,s,l,h,p=t&a.F,v=t&a.G,d=t&a.S,y=t&a.P,g=t&a.B,m=v?r:d?r[n]||(r[n]={}):(r[n]||{}).prototype,b=v?i:i[n]||(i[n]={}),x=b.prototype||(b.prototype={});for(f in v&&(e=n),e)l=((s=!p&&m&&void 0!==m[f])?m:e)[f],h=g&&s?c(l,r):y&&"function"==typeof l?c(Function.call,l):l,m&&u(m,f,l,t&a.U),b[f]!=l&&o(b,f,h),y&&x[f]!=l&&(x[f]=l)};r.core=i,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,n){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n,e){var r=e(4);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,e){var r=e(48)("wks"),i=e(29),o=e(1).Symbol,u="function"==typeof o;(t.exports=function(t){return r[t]||(r[t]=u&&o[t]||(u?o:i)("Symbol."+t))}).store=r},function(t,n,e){var r=e(19),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},function(t,n){var e=t.exports={version:"2.6.11"};"number"==typeof __e&&(__e=e)},function(t,n,e){t.exports=!e(2)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,n,e){var r=e(3),i=e(88),o=e(26),u=Object.defineProperty;n.f=e(8)?Object.defineProperty:function(t,n,e){if(r(t),n=o(n,!0),r(e),i)try{return u(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported!");return"value"in e&&(t[n]=e.value),t}},function(t,n,e){var r=e(24);t.exports=function(t){return Object(r(t))}},function(t,n,e){var r=e(1),i=e(14),o=e(13),u=e(29)("src"),c=e(126),a=(""+c).split("toString");e(7).inspectSource=function(t){return c.call(t)},(t.exports=function(t,n,e,c){var f="function"==typeof e;f&&(o(e,"name")||i(e,"name",n)),t[n]!==e&&(f&&(o(e,u)||i(e,u,t[n]?""+t[n]:a.join(String(n)))),t===r?t[n]=e:c?t[n]?t[n]=e:i(t,n,e):(delete t[n],i(t,n,e)))})(Function.prototype,"toString",(function(){return"function"==typeof this&&this[u]||c.call(this)}))},function(t,n,e){var r=e(0),i=e(2),o=e(24),u=/"/g,c=function(t,n,e,r){var i=String(o(t)),c="<"+n;return""!==e&&(c+=" "+e+'="'+String(r).replace(u,""")+'"'),c+">"+i+""};t.exports=function(t,n){var e={};e[t]=n(c),r(r.P+r.F*i((function(){var n=""[t]('"');return n!==n.toLowerCase()||n.split('"').length>3})),"String",e)}},function(t,n){var e={}.hasOwnProperty;t.exports=function(t,n){return e.call(t,n)}},function(t,n,e){var r=e(9),i=e(28);t.exports=e(8)?function(t,n,e){return r.f(t,n,i(1,e))}:function(t,n,e){return t[n]=e,t}},function(t,n,e){var r=e(44),i=e(24);t.exports=function(t){return r(i(t))}},function(t,n,e){"use strict";var r=e(2);t.exports=function(t,n){return!!t&&r((function(){n?t.call(null,(function(){}),1):t.call(null)}))}},function(t,n,e){var r=e(18);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,i){return t.call(n,e,r,i)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,n){var e=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:e)(t)}},function(t,n,e){var r=e(45),i=e(28),o=e(15),u=e(26),c=e(13),a=e(88),f=Object.getOwnPropertyDescriptor;n.f=e(8)?f:function(t,n){if(t=o(t),n=u(n,!0),a)try{return f(t,n)}catch(t){}if(c(t,n))return i(!r.f.call(t,n),t[n])}},function(t,n,e){var r=e(0),i=e(7),o=e(2);t.exports=function(t,n){var e=(i.Object||{})[t]||Object[t],u={};u[t]=n(e),r(r.S+r.F*o((function(){e(1)})),"Object",u)}},function(t,n,e){var r=e(17),i=e(44),o=e(10),u=e(6),c=e(104);t.exports=function(t,n){var e=1==t,a=2==t,f=3==t,s=4==t,l=6==t,h=5==t||l,p=n||c;return function(n,c,v){for(var d,y,g=o(n),m=i(g),b=r(c,v,3),x=u(m.length),S=0,w=e?p(n,x):a?p(n,0):void 0;x>S;S++)if((h||S in m)&&(y=b(d=m[S],S,g),t))if(e)w[S]=y;else if(y)switch(t){case 3:return!0;case 5:return d;case 6:return S;case 2:w.push(d)}else if(s)return!1;return l?-1:f||s?s:w}}},function(t,n){var e={}.toString;t.exports=function(t){return e.call(t).slice(8,-1)}},function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,n,e){"use strict";if(e(8)){var r=e(30),i=e(1),o=e(2),u=e(0),c=e(59),a=e(84),f=e(17),s=e(42),l=e(28),h=e(14),p=e(43),v=e(19),d=e(6),y=e(115),g=e(32),m=e(26),b=e(13),x=e(46),S=e(4),w=e(10),E=e(76),_=e(33),k=e(35),O=e(34).f,L=e(78),F=e(29),M=e(5),P=e(22),A=e(49),T=e(47),I=e(80),j=e(40),N=e(52),R=e(41),C=e(79),D=e(106),W=e(9),q=e(20),V=W.f,U=q.f,G=i.RangeError,B=i.TypeError,H=i.Uint8Array,z=Array.prototype,Y=a.ArrayBuffer,K=a.DataView,$=P(0),J=P(2),X=P(3),Z=P(4),Q=P(5),tt=P(6),nt=A(!0),et=A(!1),rt=I.values,it=I.keys,ot=I.entries,ut=z.lastIndexOf,ct=z.reduce,at=z.reduceRight,ft=z.join,st=z.sort,lt=z.slice,ht=z.toString,pt=z.toLocaleString,vt=M("iterator"),dt=M("toStringTag"),yt=F("typed_constructor"),gt=F("def_constructor"),mt=c.CONSTR,bt=c.TYPED,xt=c.VIEW,St=P(1,(function(t,n){return Ot(T(t,t[gt]),n)})),wt=o((function(){return 1===new H(new Uint16Array([1]).buffer)[0]})),Et=!!H&&!!H.prototype.set&&o((function(){new H(1).set({})})),_t=function(t,n){var e=v(t);if(e<0||e%n)throw G("Wrong offset!");return e},kt=function(t){if(S(t)&&bt in t)return t;throw B(t+" is not a typed array!")},Ot=function(t,n){if(!S(t)||!(yt in t))throw B("It is not a typed array constructor!");return new t(n)},Lt=function(t,n){return Ft(T(t,t[gt]),n)},Ft=function(t,n){for(var e=0,r=n.length,i=Ot(t,r);r>e;)i[e]=n[e++];return i},Mt=function(t,n,e){V(t,n,{get:function(){return this._d[e]}})},Pt=function(t){var n,e,r,i,o,u,c=w(t),a=arguments.length,s=a>1?arguments[1]:void 0,l=void 0!==s,h=L(c);if(null!=h&&!E(h)){for(u=h.call(c),r=[],n=0;!(o=u.next()).done;n++)r.push(o.value);c=r}for(l&&a>2&&(s=f(s,arguments[2],2)),n=0,e=d(c.length),i=Ot(this,e);e>n;n++)i[n]=l?s(c[n],n):c[n];return i},At=function(){for(var t=0,n=arguments.length,e=Ot(this,n);n>t;)e[t]=arguments[t++];return e},Tt=!!H&&o((function(){pt.call(new H(1))})),It=function(){return pt.apply(Tt?lt.call(kt(this)):kt(this),arguments)},jt={copyWithin:function(t,n){return D.call(kt(this),t,n,arguments.length>2?arguments[2]:void 0)},every:function(t){return Z(kt(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return C.apply(kt(this),arguments)},filter:function(t){return Lt(this,J(kt(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return Q(kt(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(kt(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){$(kt(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return et(kt(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return nt(kt(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return ft.apply(kt(this),arguments)},lastIndexOf:function(t){return ut.apply(kt(this),arguments)},map:function(t){return St(kt(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return ct.apply(kt(this),arguments)},reduceRight:function(t){return at.apply(kt(this),arguments)},reverse:function(){for(var t,n=kt(this).length,e=Math.floor(n/2),r=0;r1?arguments[1]:void 0)},sort:function(t){return st.call(kt(this),t)},subarray:function(t,n){var e=kt(this),r=e.length,i=g(t,r);return new(T(e,e[gt]))(e.buffer,e.byteOffset+i*e.BYTES_PER_ELEMENT,d((void 0===n?r:g(n,r))-i))}},Nt=function(t,n){return Lt(this,lt.call(kt(this),t,n))},Rt=function(t){kt(this);var n=_t(arguments[1],1),e=this.length,r=w(t),i=d(r.length),o=0;if(i+n>e)throw G("Wrong length!");for(;o255?255:255&r),i.v[p](e*n+i.o,r,wt)}(this,e,t)},enumerable:!0})};b?(v=e((function(t,e,r,i){s(t,v,f,"_d");var o,u,c,a,l=0,p=0;if(S(e)){if(!(e instanceof Y||"ArrayBuffer"==(a=x(e))||"SharedArrayBuffer"==a))return bt in e?Ft(v,e):Pt.call(v,e);o=e,p=_t(r,n);var g=e.byteLength;if(void 0===i){if(g%n)throw G("Wrong length!");if((u=g-p)<0)throw G("Wrong length!")}else if((u=d(i)*n)+p>g)throw G("Wrong length!");c=u/n}else c=y(e),o=new Y(u=c*n);for(h(t,"_d",{b:o,o:p,l:u,e:c,v:new K(o)});ldocument.F=Object<\/script>"),t.close(),a=t.F;r--;)delete a.prototype[o[r]];return a()};t.exports=Object.create||function(t,n){var e;return null!==t?(c.prototype=r(t),e=new c,c.prototype=null,e[u]=t):e=a(),void 0===n?e:i(e,n)}},function(t,n,e){var r=e(90),i=e(63).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},function(t,n,e){var r=e(13),i=e(10),o=e(62)("IE_PROTO"),u=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),r(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},function(t,n,e){var r=e(5)("unscopables"),i=Array.prototype;null==i[r]&&e(14)(i,r,{}),t.exports=function(t){i[r][t]=!0}},function(t,n,e){var r=e(4);t.exports=function(t,n){if(!r(t)||t._t!==n)throw TypeError("Incompatible receiver, "+n+" required!");return t}},function(t,n,e){var r=e(9).f,i=e(13),o=e(5)("toStringTag");t.exports=function(t,n,e){t&&!i(t=e?t:t.prototype,o)&&r(t,o,{configurable:!0,value:n})}},function(t,n,e){var r=e(0),i=e(24),o=e(2),u=e(66),c="["+u+"]",a=RegExp("^"+c+c+"*"),f=RegExp(c+c+"*$"),s=function(t,n,e){var i={},c=o((function(){return!!u[t]()||"​…"!="​…"[t]()})),a=i[t]=c?n(l):u[t];e&&(i[e]=a),r(r.P+r.F*c,"String",i)},l=s.trim=function(t,n){return t=String(i(t)),1&n&&(t=t.replace(a,"")),2&n&&(t=t.replace(f,"")),t};t.exports=s},function(t,n){t.exports={}},function(t,n,e){"use strict";var r=e(1),i=e(9),o=e(8),u=e(5)("species");t.exports=function(t){var n=r[t];o&&n&&!n[u]&&i.f(n,u,{configurable:!0,get:function(){return this}})}},function(t,n){t.exports=function(t,n,e,r){if(!(t instanceof n)||void 0!==r&&r in t)throw TypeError(e+": incorrect invocation!");return t}},function(t,n,e){var r=e(11);t.exports=function(t,n,e){for(var i in n)r(t,i,n[i],e);return t}},function(t,n,e){var r=e(23);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,n){n.f={}.propertyIsEnumerable},function(t,n,e){var r=e(23),i=e(5)("toStringTag"),o="Arguments"==r(function(){return arguments}());t.exports=function(t){var n,e,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),i))?e:o?r(n):"Object"==(u=r(n))&&"function"==typeof n.callee?"Arguments":u}},function(t,n,e){var r=e(3),i=e(18),o=e(5)("species");t.exports=function(t,n){var e,u=r(t).constructor;return void 0===u||null==(e=r(u)[o])?n:i(e)}},function(t,n,e){var r=e(7),i=e(1),o=i["__core-js_shared__"]||(i["__core-js_shared__"]={});(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:r.version,mode:e(30)?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,n,e){var r=e(15),i=e(6),o=e(32);t.exports=function(t){return function(n,e,u){var c,a=r(n),f=i(a.length),s=o(u,f);if(t&&e!=e){for(;f>s;)if((c=a[s++])!=c)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===e)return t||s||0;return!t&&-1}}},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,e){var r=e(23);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,n,e){var r=e(5)("iterator"),i=!1;try{var o=[7][r]();o.return=function(){i=!0},Array.from(o,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!i)return!1;var e=!1;try{var o=[7],u=o[r]();u.next=function(){return{done:e=!0}},o[r]=function(){return u},t(o)}catch(t){}return e}},function(t,n,e){"use strict";var r=e(3);t.exports=function(){var t=r(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},function(t,n,e){"use strict";var r=e(46),i=RegExp.prototype.exec;t.exports=function(t,n){var e=t.exec;if("function"==typeof e){var o=e.call(t,n);if("object"!=typeof o)throw new TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==r(t))throw new TypeError("RegExp#exec called on incompatible receiver");return i.call(t,n)}},function(t,n,e){"use strict";e(108);var r=e(11),i=e(14),o=e(2),u=e(24),c=e(5),a=e(81),f=c("species"),s=!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$")})),l=function(){var t=/(?:)/,n=t.exec;t.exec=function(){return n.apply(this,arguments)};var e="ab".split(t);return 2===e.length&&"a"===e[0]&&"b"===e[1]}();t.exports=function(t,n,e){var h=c(t),p=!o((function(){var n={};return n[h]=function(){return 7},7!=""[t](n)})),v=p?!o((function(){var n=!1,e=/a/;return e.exec=function(){return n=!0,null},"split"===t&&(e.constructor={},e.constructor[f]=function(){return e}),e[h](""),!n})):void 0;if(!p||!v||"replace"===t&&!s||"split"===t&&!l){var d=/./[h],y=e(u,h,""[t],(function(t,n,e,r,i){return n.exec===a?p&&!i?{done:!0,value:d.call(n,e,r)}:{done:!0,value:t.call(e,n,r)}:{done:!1}})),g=y[0],m=y[1];r(String.prototype,t,g),i(RegExp.prototype,h,2==n?function(t,n){return m.call(t,this,n)}:function(t){return m.call(t,this)})}}},function(t,n,e){var r=e(17),i=e(103),o=e(76),u=e(3),c=e(6),a=e(78),f={},s={};(n=t.exports=function(t,n,e,l,h){var p,v,d,y,g=h?function(){return t}:a(t),m=r(e,l,n?2:1),b=0;if("function"!=typeof g)throw TypeError(t+" is not iterable!");if(o(g)){for(p=c(t.length);p>b;b++)if((y=n?m(u(v=t[b])[0],v[1]):m(t[b]))===f||y===s)return y}else for(d=g.call(t);!(v=d.next()).done;)if((y=i(d,m,v.value,n))===f||y===s)return y}).BREAK=f,n.RETURN=s},function(t,n,e){var r=e(1).navigator;t.exports=r&&r.userAgent||""},function(t,n,e){"use strict";var r=e(1),i=e(0),o=e(11),u=e(43),c=e(27),a=e(56),f=e(42),s=e(4),l=e(2),h=e(52),p=e(38),v=e(67);t.exports=function(t,n,e,d,y,g){var m=r[t],b=m,x=y?"set":"add",S=b&&b.prototype,w={},E=function(t){var n=S[t];o(S,t,"delete"==t||"has"==t?function(t){return!(g&&!s(t))&&n.call(this,0===t?0:t)}:"get"==t?function(t){return g&&!s(t)?void 0:n.call(this,0===t?0:t)}:"add"==t?function(t){return n.call(this,0===t?0:t),this}:function(t,e){return n.call(this,0===t?0:t,e),this})};if("function"==typeof b&&(g||S.forEach&&!l((function(){(new b).entries().next()})))){var _=new b,k=_[x](g?{}:-0,1)!=_,O=l((function(){_.has(1)})),L=h((function(t){new b(t)})),F=!g&&l((function(){for(var t=new b,n=5;n--;)t[x](n,n);return!t.has(-0)}));L||((b=n((function(n,e){f(n,b,t);var r=v(new m,n,b);return null!=e&&a(e,y,r[x],r),r}))).prototype=S,S.constructor=b),(O||F)&&(E("delete"),E("has"),y&&E("get")),(F||k)&&E(x),g&&S.clear&&delete S.clear}else b=d.getConstructor(n,t,y,x),u(b.prototype,e),c.NEED=!0;return p(b,t),w[t]=b,i(i.G+i.W+i.F*(b!=m),w),g||d.setStrong(b,t,y),b}},function(t,n,e){for(var r,i=e(1),o=e(14),u=e(29),c=u("typed_array"),a=u("view"),f=!(!i.ArrayBuffer||!i.DataView),s=f,l=0,h="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");l<9;)(r=i[h[l++]])?(o(r.prototype,c,!0),o(r.prototype,a,!0)):s=!1;t.exports={ABV:f,CONSTR:s,TYPED:c,VIEW:a}},function(t,n,e){var r=e(4),i=e(1).document,o=r(i)&&r(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},function(t,n,e){n.f=e(5)},function(t,n,e){var r=e(48)("keys"),i=e(29);t.exports=function(t){return r[t]||(r[t]=i(t))}},function(t,n){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,n,e){var r=e(1).document;t.exports=r&&r.documentElement},function(t,n,e){var r=e(4),i=e(3),o=function(t,n){if(i(t),!r(n)&&null!==n)throw TypeError(n+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,n,r){try{(r=e(17)(Function.call,e(20).f(Object.prototype,"__proto__").set,2))(t,[]),n=!(t instanceof Array)}catch(t){n=!0}return function(t,e){return o(t,e),n?t.__proto__=e:r(t,e),t}}({},!1):void 0),check:o}},function(t,n){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},function(t,n,e){var r=e(4),i=e(65).set;t.exports=function(t,n,e){var o,u=n.constructor;return u!==e&&"function"==typeof u&&(o=u.prototype)!==e.prototype&&r(o)&&i&&i(t,o),t}},function(t,n,e){"use strict";var r=e(19),i=e(24);t.exports=function(t){var n=String(i(this)),e="",o=r(t);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(n+=n))1&o&&(e+=n);return e}},function(t,n){t.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},function(t,n){var e=Math.expm1;t.exports=!e||e(10)>22025.465794806718||e(10)<22025.465794806718||-2e-17!=e(-2e-17)?function(t){return 0==(t=+t)?t:t>-1e-6&&t<1e-6?t+t*t/2:Math.exp(t)-1}:e},function(t,n,e){var r=e(19),i=e(24);t.exports=function(t){return function(n,e){var o,u,c=String(i(n)),a=r(e),f=c.length;return a<0||a>=f?t?"":void 0:(o=c.charCodeAt(a))<55296||o>56319||a+1===f||(u=c.charCodeAt(a+1))<56320||u>57343?t?c.charAt(a):o:t?c.slice(a,a+2):u-56320+(o-55296<<10)+65536}}},function(t,n,e){"use strict";var r=e(30),i=e(0),o=e(11),u=e(14),c=e(40),a=e(102),f=e(38),s=e(35),l=e(5)("iterator"),h=!([].keys&&"next"in[].keys()),p=function(){return this};t.exports=function(t,n,e,v,d,y,g){a(e,n,v);var m,b,x,S=function(t){if(!h&&t in k)return k[t];switch(t){case"keys":case"values":return function(){return new e(this,t)}}return function(){return new e(this,t)}},w=n+" Iterator",E="values"==d,_=!1,k=t.prototype,O=k[l]||k["@@iterator"]||d&&k[d],L=O||S(d),F=d?E?S("entries"):L:void 0,M="Array"==n&&k.entries||O;if(M&&(x=s(M.call(new t)))!==Object.prototype&&x.next&&(f(x,w,!0),r||"function"==typeof x[l]||u(x,l,p)),E&&O&&"values"!==O.name&&(_=!0,L=function(){return O.call(this)}),r&&!g||!h&&!_&&k[l]||u(k,l,L),c[n]=L,c[w]=p,d)if(m={values:E?L:S("values"),keys:y?L:S("keys"),entries:F},g)for(b in m)b in k||o(k,b,m[b]);else i(i.P+i.F*(h||_),n,m);return m}},function(t,n,e){var r=e(74),i=e(24);t.exports=function(t,n,e){if(r(n))throw TypeError("String#"+e+" doesn't accept regex!");return String(i(t))}},function(t,n,e){var r=e(4),i=e(23),o=e(5)("match");t.exports=function(t){var n;return r(t)&&(void 0!==(n=t[o])?!!n:"RegExp"==i(t))}},function(t,n,e){var r=e(5)("match");t.exports=function(t){var n=/./;try{"/./"[t](n)}catch(e){try{return n[r]=!1,!"/./"[t](n)}catch(t){}}return!0}},function(t,n,e){var r=e(40),i=e(5)("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||o[i]===t)}},function(t,n,e){"use strict";var r=e(9),i=e(28);t.exports=function(t,n,e){n in t?r.f(t,n,i(0,e)):t[n]=e}},function(t,n,e){var r=e(46),i=e(5)("iterator"),o=e(40);t.exports=e(7).getIteratorMethod=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,n,e){"use strict";var r=e(10),i=e(32),o=e(6);t.exports=function(t){for(var n=r(this),e=o(n.length),u=arguments.length,c=i(u>1?arguments[1]:void 0,e),a=u>2?arguments[2]:void 0,f=void 0===a?e:i(a,e);f>c;)n[c++]=t;return n}},function(t,n,e){"use strict";var r=e(36),i=e(107),o=e(40),u=e(15);t.exports=e(72)(Array,"Array",(function(t,n){this._t=u(t),this._i=0,this._k=n}),(function(){var t=this._t,n=this._k,e=this._i++;return!t||e>=t.length?(this._t=void 0,i(1)):i(0,"keys"==n?e:"values"==n?t[e]:[e,t[e]])}),"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},function(t,n,e){"use strict";var r,i,o=e(53),u=RegExp.prototype.exec,c=String.prototype.replace,a=u,f=(r=/a/,i=/b*/g,u.call(r,"a"),u.call(i,"a"),0!==r.lastIndex||0!==i.lastIndex),s=void 0!==/()??/.exec("")[1];(f||s)&&(a=function(t){var n,e,r,i,a=this;return s&&(e=new RegExp("^"+a.source+"$(?!\\s)",o.call(a))),f&&(n=a.lastIndex),r=u.call(a,t),f&&r&&(a.lastIndex=a.global?r.index+r[0].length:n),s&&r&&r.length>1&&c.call(r[0],e,(function(){for(i=1;ie;)n.push(arguments[e++]);return g[++y]=function(){c("function"==typeof t?t:Function(t),n)},r(y),y},p=function(t){delete g[t]},"process"==e(23)(l)?r=function(t){l.nextTick(u(m,t,1))}:d&&d.now?r=function(t){d.now(u(m,t,1))}:v?(o=(i=new v).port2,i.port1.onmessage=b,r=u(o.postMessage,o,1)):s.addEventListener&&"function"==typeof postMessage&&!s.importScripts?(r=function(t){s.postMessage(t+"","*")},s.addEventListener("message",b,!1)):r="onreadystatechange"in f("script")?function(t){a.appendChild(f("script")).onreadystatechange=function(){a.removeChild(this),m.call(t)}}:function(t){setTimeout(u(m,t,1),0)}),t.exports={set:h,clear:p}},function(t,n,e){"use strict";var r=e(1),i=e(8),o=e(30),u=e(59),c=e(14),a=e(43),f=e(2),s=e(42),l=e(19),h=e(6),p=e(115),v=e(34).f,d=e(9).f,y=e(79),g=e(38),m=r.ArrayBuffer,b=r.DataView,x=r.Math,S=r.RangeError,w=r.Infinity,E=m,_=x.abs,k=x.pow,O=x.floor,L=x.log,F=x.LN2,M=i?"_b":"buffer",P=i?"_l":"byteLength",A=i?"_o":"byteOffset";function T(t,n,e){var r,i,o,u=new Array(e),c=8*e-n-1,a=(1<>1,s=23===n?k(2,-24)-k(2,-77):0,l=0,h=t<0||0===t&&1/t<0?1:0;for((t=_(t))!=t||t===w?(i=t!=t?1:0,r=a):(r=O(L(t)/F),t*(o=k(2,-r))<1&&(r--,o*=2),(t+=r+f>=1?s/o:s*k(2,1-f))*o>=2&&(r++,o/=2),r+f>=a?(i=0,r=a):r+f>=1?(i=(t*o-1)*k(2,n),r+=f):(i=t*k(2,f-1)*k(2,n),r=0));n>=8;u[l++]=255&i,i/=256,n-=8);for(r=r<0;u[l++]=255&r,r/=256,c-=8);return u[--l]|=128*h,u}function I(t,n,e){var r,i=8*e-n-1,o=(1<>1,c=i-7,a=e-1,f=t[a--],s=127&f;for(f>>=7;c>0;s=256*s+t[a],a--,c-=8);for(r=s&(1<<-c)-1,s>>=-c,c+=n;c>0;r=256*r+t[a],a--,c-=8);if(0===s)s=1-u;else{if(s===o)return r?NaN:f?-w:w;r+=k(2,n),s-=u}return(f?-1:1)*r*k(2,s-n)}function j(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]}function N(t){return[255&t]}function R(t){return[255&t,t>>8&255]}function C(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]}function D(t){return T(t,52,8)}function W(t){return T(t,23,4)}function q(t,n,e){d(t.prototype,n,{get:function(){return this[e]}})}function V(t,n,e,r){var i=p(+e);if(i+n>t[P])throw S("Wrong index!");var o=t[M]._b,u=i+t[A],c=o.slice(u,u+n);return r?c:c.reverse()}function U(t,n,e,r,i,o){var u=p(+e);if(u+n>t[P])throw S("Wrong index!");for(var c=t[M]._b,a=u+t[A],f=r(+i),s=0;sz;)(G=H[z++])in m||c(m,G,E[G]);o||(B.constructor=m)}var Y=new b(new m(2)),K=b.prototype.setInt8;Y.setInt8(0,2147483648),Y.setInt8(1,2147483649),!Y.getInt8(0)&&Y.getInt8(1)||a(b.prototype,{setInt8:function(t,n){K.call(this,t,n<<24>>24)},setUint8:function(t,n){K.call(this,t,n<<24>>24)}},!0)}else m=function(t){s(this,m,"ArrayBuffer");var n=p(t);this._b=y.call(new Array(n),0),this[P]=n},b=function(t,n,e){s(this,b,"DataView"),s(t,m,"DataView");var r=t[P],i=l(n);if(i<0||i>r)throw S("Wrong offset!");if(i+(e=void 0===e?r-i:h(e))>r)throw S("Wrong length!");this[M]=t,this[A]=i,this[P]=e},i&&(q(m,"byteLength","_l"),q(b,"buffer","_b"),q(b,"byteLength","_l"),q(b,"byteOffset","_o")),a(b.prototype,{getInt8:function(t){return V(this,1,t)[0]<<24>>24},getUint8:function(t){return V(this,1,t)[0]},getInt16:function(t){var n=V(this,2,t,arguments[1]);return(n[1]<<8|n[0])<<16>>16},getUint16:function(t){var n=V(this,2,t,arguments[1]);return n[1]<<8|n[0]},getInt32:function(t){return j(V(this,4,t,arguments[1]))},getUint32:function(t){return j(V(this,4,t,arguments[1]))>>>0},getFloat32:function(t){return I(V(this,4,t,arguments[1]),23,4)},getFloat64:function(t){return I(V(this,8,t,arguments[1]),52,8)},setInt8:function(t,n){U(this,1,t,N,n)},setUint8:function(t,n){U(this,1,t,N,n)},setInt16:function(t,n){U(this,2,t,R,n,arguments[2])},setUint16:function(t,n){U(this,2,t,R,n,arguments[2])},setInt32:function(t,n){U(this,4,t,C,n,arguments[2])},setUint32:function(t,n){U(this,4,t,C,n,arguments[2])},setFloat32:function(t,n){U(this,4,t,W,n,arguments[2])},setFloat64:function(t,n){U(this,8,t,D,n,arguments[2])}});g(m,"ArrayBuffer"),g(b,"DataView"),c(b.prototype,u.VIEW,!0),n.ArrayBuffer=m,n.DataView=b},function(t,n){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,e){t.exports=!e(120)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,n,e){t.exports=!e(8)&&!e(2)((function(){return 7!=Object.defineProperty(e(60)("div"),"a",{get:function(){return 7}}).a}))},function(t,n,e){var r=e(1),i=e(7),o=e(30),u=e(61),c=e(9).f;t.exports=function(t){var n=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==t.charAt(0)||t in n||c(n,t,{value:u.f(t)})}},function(t,n,e){var r=e(13),i=e(15),o=e(49)(!1),u=e(62)("IE_PROTO");t.exports=function(t,n){var e,c=i(t),a=0,f=[];for(e in c)e!=u&&r(c,e)&&f.push(e);for(;n.length>a;)r(c,e=n[a++])&&(~o(f,e)||f.push(e));return f}},function(t,n,e){var r=e(9),i=e(3),o=e(31);t.exports=e(8)?Object.defineProperties:function(t,n){i(t);for(var e,u=o(n),c=u.length,a=0;c>a;)r.f(t,e=u[a++],n[e]);return t}},function(t,n,e){var r=e(15),i=e(34).f,o={}.toString,u="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return u&&"[object Window]"==o.call(t)?function(t){try{return i(t)}catch(t){return u.slice()}}(t):i(r(t))}},function(t,n,e){"use strict";var r=e(8),i=e(31),o=e(50),u=e(45),c=e(10),a=e(44),f=Object.assign;t.exports=!f||e(2)((function(){var t={},n={},e=Symbol(),r="abcdefghijklmnopqrst";return t[e]=7,r.split("").forEach((function(t){n[t]=t})),7!=f({},t)[e]||Object.keys(f({},n)).join("")!=r}))?function(t,n){for(var e=c(t),f=arguments.length,s=1,l=o.f,h=u.f;f>s;)for(var p,v=a(arguments[s++]),d=l?i(v).concat(l(v)):i(v),y=d.length,g=0;y>g;)p=d[g++],r&&!h.call(v,p)||(e[p]=v[p]);return e}:f},function(t,n){t.exports=Object.is||function(t,n){return t===n?0!==t||1/t==1/n:t!=t&&n!=n}},function(t,n,e){"use strict";var r=e(18),i=e(4),o=e(96),u=[].slice,c={},a=function(t,n,e){if(!(n in c)){for(var r=[],i=0;i>>0||(u.test(e)?16:10))}:r},function(t,n,e){var r=e(1).parseFloat,i=e(39).trim;t.exports=1/r(e(66)+"-0")!=-1/0?function(t){var n=i(String(t),3),e=r(n);return 0===e&&"-"==n.charAt(0)?-0:e}:r},function(t,n,e){var r=e(23);t.exports=function(t,n){if("number"!=typeof t&&"Number"!=r(t))throw TypeError(n);return+t}},function(t,n,e){var r=e(4),i=Math.floor;t.exports=function(t){return!r(t)&&isFinite(t)&&i(t)===t}},function(t,n){t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:Math.log(1+t)}},function(t,n,e){"use strict";var r=e(33),i=e(28),o=e(38),u={};e(14)(u,e(5)("iterator"),(function(){return this})),t.exports=function(t,n,e){t.prototype=r(u,{next:i(1,e)}),o(t,n+" Iterator")}},function(t,n,e){var r=e(3);t.exports=function(t,n,e,i){try{return i?n(r(e)[0],e[1]):n(e)}catch(n){var o=t.return;throw void 0!==o&&r(o.call(t)),n}}},function(t,n,e){var r=e(216);t.exports=function(t,n){return new(r(t))(n)}},function(t,n,e){var r=e(18),i=e(10),o=e(44),u=e(6);t.exports=function(t,n,e,c,a){r(n);var f=i(t),s=o(f),l=u(f.length),h=a?l-1:0,p=a?-1:1;if(e<2)for(;;){if(h in s){c=s[h],h+=p;break}if(h+=p,a?h<0:l<=h)throw TypeError("Reduce of empty array with no initial value")}for(;a?h>=0:l>h;h+=p)h in s&&(c=n(c,s[h],h,f));return c}},function(t,n,e){"use strict";var r=e(10),i=e(32),o=e(6);t.exports=[].copyWithin||function(t,n){var e=r(this),u=o(e.length),c=i(t,u),a=i(n,u),f=arguments.length>2?arguments[2]:void 0,s=Math.min((void 0===f?u:i(f,u))-a,u-c),l=1;for(a0;)a in e?e[c]=e[a]:delete e[c],c+=l,a+=l;return e}},function(t,n){t.exports=function(t,n){return{value:n,done:!!t}}},function(t,n,e){"use strict";var r=e(81);e(0)({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},function(t,n,e){e(8)&&"g"!=/./g.flags&&e(9).f(RegExp.prototype,"flags",{configurable:!0,get:e(53)})},function(t,n,e){"use strict";var r,i,o,u,c=e(30),a=e(1),f=e(17),s=e(46),l=e(0),h=e(4),p=e(18),v=e(42),d=e(56),y=e(47),g=e(83).set,m=e(236)(),b=e(111),x=e(237),S=e(57),w=e(112),E=a.TypeError,_=a.process,k=_&&_.versions,O=k&&k.v8||"",L=a.Promise,F="process"==s(_),M=function(){},P=i=b.f,A=!!function(){try{var t=L.resolve(1),n=(t.constructor={})[e(5)("species")]=function(t){t(M,M)};return(F||"function"==typeof PromiseRejectionEvent)&&t.then(M)instanceof n&&0!==O.indexOf("6.6")&&-1===S.indexOf("Chrome/66")}catch(t){}}(),T=function(t){var n;return!(!h(t)||"function"!=typeof(n=t.then))&&n},I=function(t,n){if(!t._n){t._n=!0;var e=t._c;m((function(){for(var r=t._v,i=1==t._s,o=0,u=function(n){var e,o,u,c=i?n.ok:n.fail,a=n.resolve,f=n.reject,s=n.domain;try{c?(i||(2==t._h&&R(t),t._h=1),!0===c?e=r:(s&&s.enter(),e=c(r),s&&(s.exit(),u=!0)),e===n.promise?f(E("Promise-chain cycle")):(o=T(e))?o.call(e,a,f):a(e)):f(r)}catch(t){s&&!u&&s.exit(),f(t)}};e.length>o;)u(e[o++]);t._c=[],t._n=!1,n&&!t._h&&j(t)}))}},j=function(t){g.call(a,(function(){var n,e,r,i=t._v,o=N(t);if(o&&(n=x((function(){F?_.emit("unhandledRejection",i,t):(e=a.onunhandledrejection)?e({promise:t,reason:i}):(r=a.console)&&r.error&&r.error("Unhandled promise rejection",i)})),t._h=F||N(t)?2:1),t._a=void 0,o&&n.e)throw n.v}))},N=function(t){return 1!==t._h&&0===(t._a||t._c).length},R=function(t){g.call(a,(function(){var n;F?_.emit("rejectionHandled",t):(n=a.onrejectionhandled)&&n({promise:t,reason:t._v})}))},C=function(t){var n=this;n._d||(n._d=!0,(n=n._w||n)._v=t,n._s=2,n._a||(n._a=n._c.slice()),I(n,!0))},D=function(t){var n,e=this;if(!e._d){e._d=!0,e=e._w||e;try{if(e===t)throw E("Promise can't be resolved itself");(n=T(t))?m((function(){var r={_w:e,_d:!1};try{n.call(t,f(D,r,1),f(C,r,1))}catch(t){C.call(r,t)}})):(e._v=t,e._s=1,I(e,!1))}catch(t){C.call({_w:e,_d:!1},t)}}};A||(L=function(t){v(this,L,"Promise","_h"),p(t),r.call(this);try{t(f(D,this,1),f(C,this,1))}catch(t){C.call(this,t)}},(r=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=e(43)(L.prototype,{then:function(t,n){var e=P(y(this,L));return e.ok="function"!=typeof t||t,e.fail="function"==typeof n&&n,e.domain=F?_.domain:void 0,this._c.push(e),this._a&&this._a.push(e),this._s&&I(this,!1),e.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r;this.promise=t,this.resolve=f(D,t,1),this.reject=f(C,t,1)},b.f=P=function(t){return t===L||t===u?new o(t):i(t)}),l(l.G+l.W+l.F*!A,{Promise:L}),e(38)(L,"Promise"),e(41)("Promise"),u=e(7).Promise,l(l.S+l.F*!A,"Promise",{reject:function(t){var n=P(this);return(0,n.reject)(t),n.promise}}),l(l.S+l.F*(c||!A),"Promise",{resolve:function(t){return w(c&&this===u?L:this,t)}}),l(l.S+l.F*!(A&&e(52)((function(t){L.all(t).catch(M)}))),"Promise",{all:function(t){var n=this,e=P(n),r=e.resolve,i=e.reject,o=x((function(){var e=[],o=0,u=1;d(t,!1,(function(t){var c=o++,a=!1;e.push(void 0),u++,n.resolve(t).then((function(t){a||(a=!0,e[c]=t,--u||r(e))}),i)})),--u||r(e)}));return o.e&&i(o.v),e.promise},race:function(t){var n=this,e=P(n),r=e.reject,i=x((function(){d(t,!1,(function(t){n.resolve(t).then(e.resolve,r)}))}));return i.e&&r(i.v),e.promise}})},function(t,n,e){"use strict";var r=e(18);function i(t){var n,e;this.promise=new t((function(t,r){if(void 0!==n||void 0!==e)throw TypeError("Bad Promise constructor");n=t,e=r})),this.resolve=r(n),this.reject=r(e)}t.exports.f=function(t){return new i(t)}},function(t,n,e){var r=e(3),i=e(4),o=e(111);t.exports=function(t,n){if(r(t),i(n)&&n.constructor===t)return n;var e=o.f(t);return(0,e.resolve)(n),e.promise}},function(t,n,e){"use strict";var r=e(9).f,i=e(33),o=e(43),u=e(17),c=e(42),a=e(56),f=e(72),s=e(107),l=e(41),h=e(8),p=e(27).fastKey,v=e(37),d=h?"_s":"size",y=function(t,n){var e,r=p(n);if("F"!==r)return t._i[r];for(e=t._f;e;e=e.n)if(e.k==n)return e};t.exports={getConstructor:function(t,n,e,f){var s=t((function(t,r){c(t,s,n,"_i"),t._t=n,t._i=i(null),t._f=void 0,t._l=void 0,t[d]=0,null!=r&&a(r,e,t[f],t)}));return o(s.prototype,{clear:function(){for(var t=v(this,n),e=t._i,r=t._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete e[r.i];t._f=t._l=void 0,t[d]=0},delete:function(t){var e=v(this,n),r=y(e,t);if(r){var i=r.n,o=r.p;delete e._i[r.i],r.r=!0,o&&(o.n=i),i&&(i.p=o),e._f==r&&(e._f=i),e._l==r&&(e._l=o),e[d]--}return!!r},forEach:function(t){v(this,n);for(var e,r=u(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.n:this._f;)for(r(e.v,e.k,this);e&&e.r;)e=e.p},has:function(t){return!!y(v(this,n),t)}}),h&&r(s.prototype,"size",{get:function(){return v(this,n)[d]}}),s},def:function(t,n,e){var r,i,o=y(t,n);return o?o.v=e:(t._l=o={i:i=p(n,!0),k:n,v:e,p:r=t._l,n:void 0,r:!1},t._f||(t._f=o),r&&(r.n=o),t[d]++,"F"!==i&&(t._i[i]=o)),t},getEntry:y,setStrong:function(t,n,e){f(t,n,(function(t,e){this._t=v(t,n),this._k=e,this._l=void 0}),(function(){for(var t=this._k,n=this._l;n&&n.r;)n=n.p;return this._t&&(this._l=n=n?n.n:this._t._f)?s(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(this._t=void 0,s(1))}),e?"entries":"values",!e,!0),l(n)}}},function(t,n,e){"use strict";var r=e(43),i=e(27).getWeak,o=e(3),u=e(4),c=e(42),a=e(56),f=e(22),s=e(13),l=e(37),h=f(5),p=f(6),v=0,d=function(t){return t._l||(t._l=new y)},y=function(){this.a=[]},g=function(t,n){return h(t.a,(function(t){return t[0]===n}))};y.prototype={get:function(t){var n=g(this,t);if(n)return n[1]},has:function(t){return!!g(this,t)},set:function(t,n){var e=g(this,t);e?e[1]=n:this.a.push([t,n])},delete:function(t){var n=p(this.a,(function(n){return n[0]===t}));return~n&&this.a.splice(n,1),!!~n}},t.exports={getConstructor:function(t,n,e,o){var f=t((function(t,r){c(t,f,n,"_i"),t._t=n,t._i=v++,t._l=void 0,null!=r&&a(r,e,t[o],t)}));return r(f.prototype,{delete:function(t){if(!u(t))return!1;var e=i(t);return!0===e?d(l(this,n)).delete(t):e&&s(e,this._i)&&delete e[this._i]},has:function(t){if(!u(t))return!1;var e=i(t);return!0===e?d(l(this,n)).has(t):e&&s(e,this._i)}}),f},def:function(t,n,e){var r=i(o(n),!0);return!0===r?d(t).set(n,e):r[t._i]=e,t},ufstore:d}},function(t,n,e){var r=e(19),i=e(6);t.exports=function(t){if(void 0===t)return 0;var n=r(t),e=i(n);if(n!==e)throw RangeError("Wrong length!");return e}},function(t,n,e){var r=e(34),i=e(50),o=e(3),u=e(1).Reflect;t.exports=u&&u.ownKeys||function(t){var n=r.f(o(t)),e=i.f;return e?n.concat(e(t)):n}},function(t,n,e){var r=e(6),i=e(68),o=e(24);t.exports=function(t,n,e,u){var c=String(o(t)),a=c.length,f=void 0===e?" ":String(e),s=r(n);if(s<=a||""==f)return c;var l=s-a,h=i.call(f,Math.ceil(l/f.length));return h.length>l&&(h=h.slice(0,l)),u?h+c:c+h}},function(t,n,e){var r=e(8),i=e(31),o=e(15),u=e(45).f;t.exports=function(t){return function(n){for(var e,c=o(n),a=i(c),f=a.length,s=0,l=[];f>s;)e=a[s++],r&&!u.call(c,e)||l.push(t?[e,c[e]]:c[e]);return l}}},function(t,n){var e=t.exports={version:"2.6.11"};"number"==typeof __e&&(__e=e)},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n,e){e(122),t.exports=e(308)},function(t,n,e){"use strict";e(123);var r,i=(r=e(295))&&r.__esModule?r:{default:r};i.default._babelPolyfill&&"undefined"!=typeof console&&console.warn&&console.warn("@babel/polyfill is loaded more than once on this page. This is probably not desirable/intended and may have consequences if different versions of the polyfills are applied sequentially. If you do need to load the polyfill more than once, use @babel/polyfill/noConflict instead to bypass the warning."),i.default._babelPolyfill=!0},function(t,n,e){"use strict";e(124),e(267),e(269),e(272),e(274),e(276),e(278),e(280),e(282),e(284),e(286),e(288),e(290),e(294)},function(t,n,e){e(125),e(128),e(129),e(130),e(131),e(132),e(133),e(134),e(135),e(136),e(137),e(138),e(139),e(140),e(141),e(142),e(143),e(144),e(145),e(146),e(147),e(148),e(149),e(150),e(151),e(152),e(153),e(154),e(155),e(156),e(157),e(158),e(159),e(160),e(161),e(162),e(163),e(164),e(165),e(166),e(167),e(168),e(169),e(171),e(172),e(173),e(174),e(175),e(176),e(177),e(178),e(179),e(180),e(181),e(182),e(183),e(184),e(185),e(186),e(187),e(188),e(189),e(190),e(191),e(192),e(193),e(194),e(195),e(196),e(197),e(198),e(199),e(200),e(201),e(202),e(203),e(204),e(206),e(207),e(209),e(210),e(211),e(212),e(213),e(214),e(215),e(217),e(218),e(219),e(220),e(221),e(222),e(223),e(224),e(225),e(226),e(227),e(228),e(229),e(80),e(230),e(108),e(231),e(109),e(232),e(233),e(234),e(235),e(110),e(238),e(239),e(240),e(241),e(242),e(243),e(244),e(245),e(246),e(247),e(248),e(249),e(250),e(251),e(252),e(253),e(254),e(255),e(256),e(257),e(258),e(259),e(260),e(261),e(262),e(263),e(264),e(265),e(266),t.exports=e(7)},function(t,n,e){"use strict";var r=e(1),i=e(13),o=e(8),u=e(0),c=e(11),a=e(27).KEY,f=e(2),s=e(48),l=e(38),h=e(29),p=e(5),v=e(61),d=e(89),y=e(127),g=e(51),m=e(3),b=e(4),x=e(10),S=e(15),w=e(26),E=e(28),_=e(33),k=e(92),O=e(20),L=e(50),F=e(9),M=e(31),P=O.f,A=F.f,T=k.f,I=r.Symbol,j=r.JSON,N=j&&j.stringify,R=p("_hidden"),C=p("toPrimitive"),D={}.propertyIsEnumerable,W=s("symbol-registry"),q=s("symbols"),V=s("op-symbols"),U=Object.prototype,G="function"==typeof I&&!!L.f,B=r.QObject,H=!B||!B.prototype||!B.prototype.findChild,z=o&&f((function(){return 7!=_(A({},"a",{get:function(){return A(this,"a",{value:7}).a}})).a}))?function(t,n,e){var r=P(U,n);r&&delete U[n],A(t,n,e),r&&t!==U&&A(U,n,r)}:A,Y=function(t){var n=q[t]=_(I.prototype);return n._k=t,n},K=G&&"symbol"==typeof I.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof I},$=function(t,n,e){return t===U&&$(V,n,e),m(t),n=w(n,!0),m(e),i(q,n)?(e.enumerable?(i(t,R)&&t[R][n]&&(t[R][n]=!1),e=_(e,{enumerable:E(0,!1)})):(i(t,R)||A(t,R,E(1,{})),t[R][n]=!0),z(t,n,e)):A(t,n,e)},J=function(t,n){m(t);for(var e,r=y(n=S(n)),i=0,o=r.length;o>i;)$(t,e=r[i++],n[e]);return t},X=function(t){var n=D.call(this,t=w(t,!0));return!(this===U&&i(q,t)&&!i(V,t))&&(!(n||!i(this,t)||!i(q,t)||i(this,R)&&this[R][t])||n)},Z=function(t,n){if(t=S(t),n=w(n,!0),t!==U||!i(q,n)||i(V,n)){var e=P(t,n);return!e||!i(q,n)||i(t,R)&&t[R][n]||(e.enumerable=!0),e}},Q=function(t){for(var n,e=T(S(t)),r=[],o=0;e.length>o;)i(q,n=e[o++])||n==R||n==a||r.push(n);return r},tt=function(t){for(var n,e=t===U,r=T(e?V:S(t)),o=[],u=0;r.length>u;)!i(q,n=r[u++])||e&&!i(U,n)||o.push(q[n]);return o};G||(c((I=function(){if(this instanceof I)throw TypeError("Symbol is not a constructor!");var t=h(arguments.length>0?arguments[0]:void 0),n=function(e){this===U&&n.call(V,e),i(this,R)&&i(this[R],t)&&(this[R][t]=!1),z(this,t,E(1,e))};return o&&H&&z(U,t,{configurable:!0,set:n}),Y(t)}).prototype,"toString",(function(){return this._k})),O.f=Z,F.f=$,e(34).f=k.f=Q,e(45).f=X,L.f=tt,o&&!e(30)&&c(U,"propertyIsEnumerable",X,!0),v.f=function(t){return Y(p(t))}),u(u.G+u.W+u.F*!G,{Symbol:I});for(var nt="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),et=0;nt.length>et;)p(nt[et++]);for(var rt=M(p.store),it=0;rt.length>it;)d(rt[it++]);u(u.S+u.F*!G,"Symbol",{for:function(t){return i(W,t+="")?W[t]:W[t]=I(t)},keyFor:function(t){if(!K(t))throw TypeError(t+" is not a symbol!");for(var n in W)if(W[n]===t)return n},useSetter:function(){H=!0},useSimple:function(){H=!1}}),u(u.S+u.F*!G,"Object",{create:function(t,n){return void 0===n?_(t):J(_(t),n)},defineProperty:$,defineProperties:J,getOwnPropertyDescriptor:Z,getOwnPropertyNames:Q,getOwnPropertySymbols:tt});var ot=f((function(){L.f(1)}));u(u.S+u.F*ot,"Object",{getOwnPropertySymbols:function(t){return L.f(x(t))}}),j&&u(u.S+u.F*(!G||f((function(){var t=I();return"[null]"!=N([t])||"{}"!=N({a:t})||"{}"!=N(Object(t))}))),"JSON",{stringify:function(t){for(var n,e,r=[t],i=1;arguments.length>i;)r.push(arguments[i++]);if(e=n=r[1],(b(n)||void 0!==t)&&!K(t))return g(n)||(n=function(t,n){if("function"==typeof e&&(n=e.call(this,t,n)),!K(n))return n}),r[1]=n,N.apply(j,r)}}),I.prototype[C]||e(14)(I.prototype,C,I.prototype.valueOf),l(I,"Symbol"),l(Math,"Math",!0),l(r.JSON,"JSON",!0)},function(t,n,e){t.exports=e(48)("native-function-to-string",Function.toString)},function(t,n,e){var r=e(31),i=e(50),o=e(45);t.exports=function(t){var n=r(t),e=i.f;if(e)for(var u,c=e(t),a=o.f,f=0;c.length>f;)a.call(t,u=c[f++])&&n.push(u);return n}},function(t,n,e){var r=e(0);r(r.S,"Object",{create:e(33)})},function(t,n,e){var r=e(0);r(r.S+r.F*!e(8),"Object",{defineProperty:e(9).f})},function(t,n,e){var r=e(0);r(r.S+r.F*!e(8),"Object",{defineProperties:e(91)})},function(t,n,e){var r=e(15),i=e(20).f;e(21)("getOwnPropertyDescriptor",(function(){return function(t,n){return i(r(t),n)}}))},function(t,n,e){var r=e(10),i=e(35);e(21)("getPrototypeOf",(function(){return function(t){return i(r(t))}}))},function(t,n,e){var r=e(10),i=e(31);e(21)("keys",(function(){return function(t){return i(r(t))}}))},function(t,n,e){e(21)("getOwnPropertyNames",(function(){return e(92).f}))},function(t,n,e){var r=e(4),i=e(27).onFreeze;e(21)("freeze",(function(t){return function(n){return t&&r(n)?t(i(n)):n}}))},function(t,n,e){var r=e(4),i=e(27).onFreeze;e(21)("seal",(function(t){return function(n){return t&&r(n)?t(i(n)):n}}))},function(t,n,e){var r=e(4),i=e(27).onFreeze;e(21)("preventExtensions",(function(t){return function(n){return t&&r(n)?t(i(n)):n}}))},function(t,n,e){var r=e(4);e(21)("isFrozen",(function(t){return function(n){return!r(n)||!!t&&t(n)}}))},function(t,n,e){var r=e(4);e(21)("isSealed",(function(t){return function(n){return!r(n)||!!t&&t(n)}}))},function(t,n,e){var r=e(4);e(21)("isExtensible",(function(t){return function(n){return!!r(n)&&(!t||t(n))}}))},function(t,n,e){var r=e(0);r(r.S+r.F,"Object",{assign:e(93)})},function(t,n,e){var r=e(0);r(r.S,"Object",{is:e(94)})},function(t,n,e){var r=e(0);r(r.S,"Object",{setPrototypeOf:e(65).set})},function(t,n,e){"use strict";var r=e(46),i={};i[e(5)("toStringTag")]="z",i+""!="[object z]"&&e(11)(Object.prototype,"toString",(function(){return"[object "+r(this)+"]"}),!0)},function(t,n,e){var r=e(0);r(r.P,"Function",{bind:e(95)})},function(t,n,e){var r=e(9).f,i=Function.prototype,o=/^\s*function ([^ (]*)/;"name"in i||e(8)&&r(i,"name",{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(t){return""}}})},function(t,n,e){"use strict";var r=e(4),i=e(35),o=e(5)("hasInstance"),u=Function.prototype;o in u||e(9).f(u,o,{value:function(t){if("function"!=typeof this||!r(t))return!1;if(!r(this.prototype))return t instanceof this;for(;t=i(t);)if(this.prototype===t)return!0;return!1}})},function(t,n,e){var r=e(0),i=e(97);r(r.G+r.F*(parseInt!=i),{parseInt:i})},function(t,n,e){var r=e(0),i=e(98);r(r.G+r.F*(parseFloat!=i),{parseFloat:i})},function(t,n,e){"use strict";var r=e(1),i=e(13),o=e(23),u=e(67),c=e(26),a=e(2),f=e(34).f,s=e(20).f,l=e(9).f,h=e(39).trim,p=r.Number,v=p,d=p.prototype,y="Number"==o(e(33)(d)),g="trim"in String.prototype,m=function(t){var n=c(t,!1);if("string"==typeof n&&n.length>2){var e,r,i,o=(n=g?n.trim():h(n,3)).charCodeAt(0);if(43===o||45===o){if(88===(e=n.charCodeAt(2))||120===e)return NaN}else if(48===o){switch(n.charCodeAt(1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+n}for(var u,a=n.slice(2),f=0,s=a.length;fi)return NaN;return parseInt(a,r)}}return+n};if(!p(" 0o1")||!p("0b1")||p("+0x1")){p=function(t){var n=arguments.length<1?0:t,e=this;return e instanceof p&&(y?a((function(){d.valueOf.call(e)})):"Number"!=o(e))?u(new v(m(n)),e,p):m(n)};for(var b,x=e(8)?f(v):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),S=0;x.length>S;S++)i(v,b=x[S])&&!i(p,b)&&l(p,b,s(v,b));p.prototype=d,d.constructor=p,e(11)(r,"Number",p)}},function(t,n,e){"use strict";var r=e(0),i=e(19),o=e(99),u=e(68),c=1..toFixed,a=Math.floor,f=[0,0,0,0,0,0],s="Number.toFixed: incorrect invocation!",l=function(t,n){for(var e=-1,r=n;++e<6;)r+=t*f[e],f[e]=r%1e7,r=a(r/1e7)},h=function(t){for(var n=6,e=0;--n>=0;)e+=f[n],f[n]=a(e/t),e=e%t*1e7},p=function(){for(var t=6,n="";--t>=0;)if(""!==n||0===t||0!==f[t]){var e=String(f[t]);n=""===n?e:n+u.call("0",7-e.length)+e}return n},v=function(t,n,e){return 0===n?e:n%2==1?v(t,n-1,e*t):v(t*t,n/2,e)};r(r.P+r.F*(!!c&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!e(2)((function(){c.call({})}))),"Number",{toFixed:function(t){var n,e,r,c,a=o(this,s),f=i(t),d="",y="0";if(f<0||f>20)throw RangeError(s);if(a!=a)return"NaN";if(a<=-1e21||a>=1e21)return String(a);if(a<0&&(d="-",a=-a),a>1e-21)if(e=(n=function(t){for(var n=0,e=t;e>=4096;)n+=12,e/=4096;for(;e>=2;)n+=1,e/=2;return n}(a*v(2,69,1))-69)<0?a*v(2,-n,1):a/v(2,n,1),e*=4503599627370496,(n=52-n)>0){for(l(0,e),r=f;r>=7;)l(1e7,0),r-=7;for(l(v(10,r,1),0),r=n-1;r>=23;)h(1<<23),r-=23;h(1<0?d+((c=y.length)<=f?"0."+u.call("0",f-c)+y:y.slice(0,c-f)+"."+y.slice(c-f)):d+y}})},function(t,n,e){"use strict";var r=e(0),i=e(2),o=e(99),u=1..toPrecision;r(r.P+r.F*(i((function(){return"1"!==u.call(1,void 0)}))||!i((function(){u.call({})}))),"Number",{toPrecision:function(t){var n=o(this,"Number#toPrecision: incorrect invocation!");return void 0===t?u.call(n):u.call(n,t)}})},function(t,n,e){var r=e(0);r(r.S,"Number",{EPSILON:Math.pow(2,-52)})},function(t,n,e){var r=e(0),i=e(1).isFinite;r(r.S,"Number",{isFinite:function(t){return"number"==typeof t&&i(t)}})},function(t,n,e){var r=e(0);r(r.S,"Number",{isInteger:e(100)})},function(t,n,e){var r=e(0);r(r.S,"Number",{isNaN:function(t){return t!=t}})},function(t,n,e){var r=e(0),i=e(100),o=Math.abs;r(r.S,"Number",{isSafeInteger:function(t){return i(t)&&o(t)<=9007199254740991}})},function(t,n,e){var r=e(0);r(r.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},function(t,n,e){var r=e(0);r(r.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},function(t,n,e){var r=e(0),i=e(98);r(r.S+r.F*(Number.parseFloat!=i),"Number",{parseFloat:i})},function(t,n,e){var r=e(0),i=e(97);r(r.S+r.F*(Number.parseInt!=i),"Number",{parseInt:i})},function(t,n,e){var r=e(0),i=e(101),o=Math.sqrt,u=Math.acosh;r(r.S+r.F*!(u&&710==Math.floor(u(Number.MAX_VALUE))&&u(1/0)==1/0),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:i(t-1+o(t-1)*o(t+1))}})},function(t,n,e){var r=e(0),i=Math.asinh;r(r.S+r.F*!(i&&1/i(0)>0),"Math",{asinh:function t(n){return isFinite(n=+n)&&0!=n?n<0?-t(-n):Math.log(n+Math.sqrt(n*n+1)):n}})},function(t,n,e){var r=e(0),i=Math.atanh;r(r.S+r.F*!(i&&1/i(-0)<0),"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},function(t,n,e){var r=e(0),i=e(69);r(r.S,"Math",{cbrt:function(t){return i(t=+t)*Math.pow(Math.abs(t),1/3)}})},function(t,n,e){var r=e(0);r(r.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},function(t,n,e){var r=e(0),i=Math.exp;r(r.S,"Math",{cosh:function(t){return(i(t=+t)+i(-t))/2}})},function(t,n,e){var r=e(0),i=e(70);r(r.S+r.F*(i!=Math.expm1),"Math",{expm1:i})},function(t,n,e){var r=e(0);r(r.S,"Math",{fround:e(170)})},function(t,n,e){var r=e(69),i=Math.pow,o=i(2,-52),u=i(2,-23),c=i(2,127)*(2-u),a=i(2,-126);t.exports=Math.fround||function(t){var n,e,i=Math.abs(t),f=r(t);return ic||e!=e?f*(1/0):f*e}},function(t,n,e){var r=e(0),i=Math.abs;r(r.S,"Math",{hypot:function(t,n){for(var e,r,o=0,u=0,c=arguments.length,a=0;u0?(r=e/a)*r:e;return a===1/0?1/0:a*Math.sqrt(o)}})},function(t,n,e){var r=e(0),i=Math.imul;r(r.S+r.F*e(2)((function(){return-5!=i(4294967295,5)||2!=i.length})),"Math",{imul:function(t,n){var e=+t,r=+n,i=65535&e,o=65535&r;return 0|i*o+((65535&e>>>16)*o+i*(65535&r>>>16)<<16>>>0)}})},function(t,n,e){var r=e(0);r(r.S,"Math",{log10:function(t){return Math.log(t)*Math.LOG10E}})},function(t,n,e){var r=e(0);r(r.S,"Math",{log1p:e(101)})},function(t,n,e){var r=e(0);r(r.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},function(t,n,e){var r=e(0);r(r.S,"Math",{sign:e(69)})},function(t,n,e){var r=e(0),i=e(70),o=Math.exp;r(r.S+r.F*e(2)((function(){return-2e-17!=!Math.sinh(-2e-17)})),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(i(t)-i(-t))/2:(o(t-1)-o(-t-1))*(Math.E/2)}})},function(t,n,e){var r=e(0),i=e(70),o=Math.exp;r(r.S,"Math",{tanh:function(t){var n=i(t=+t),e=i(-t);return n==1/0?1:e==1/0?-1:(n-e)/(o(t)+o(-t))}})},function(t,n,e){var r=e(0);r(r.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},function(t,n,e){var r=e(0),i=e(32),o=String.fromCharCode,u=String.fromCodePoint;r(r.S+r.F*(!!u&&1!=u.length),"String",{fromCodePoint:function(t){for(var n,e=[],r=arguments.length,u=0;r>u;){if(n=+arguments[u++],i(n,1114111)!==n)throw RangeError(n+" is not a valid code point");e.push(n<65536?o(n):o(55296+((n-=65536)>>10),n%1024+56320))}return e.join("")}})},function(t,n,e){var r=e(0),i=e(15),o=e(6);r(r.S,"String",{raw:function(t){for(var n=i(t.raw),e=o(n.length),r=arguments.length,u=[],c=0;e>c;)u.push(String(n[c++])),c=n.length?{value:void 0,done:!0}:(t=r(n,e),this._i+=t.length,{value:t,done:!1})}))},function(t,n,e){"use strict";var r=e(0),i=e(71)(!1);r(r.P,"String",{codePointAt:function(t){return i(this,t)}})},function(t,n,e){"use strict";var r=e(0),i=e(6),o=e(73),u="".endsWith;r(r.P+r.F*e(75)("endsWith"),"String",{endsWith:function(t){var n=o(this,t,"endsWith"),e=arguments.length>1?arguments[1]:void 0,r=i(n.length),c=void 0===e?r:Math.min(i(e),r),a=String(t);return u?u.call(n,a,c):n.slice(c-a.length,c)===a}})},function(t,n,e){"use strict";var r=e(0),i=e(73);r(r.P+r.F*e(75)("includes"),"String",{includes:function(t){return!!~i(this,t,"includes").indexOf(t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(0);r(r.P,"String",{repeat:e(68)})},function(t,n,e){"use strict";var r=e(0),i=e(6),o=e(73),u="".startsWith;r(r.P+r.F*e(75)("startsWith"),"String",{startsWith:function(t){var n=o(this,t,"startsWith"),e=i(Math.min(arguments.length>1?arguments[1]:void 0,n.length)),r=String(t);return u?u.call(n,r,e):n.slice(e,e+r.length)===r}})},function(t,n,e){"use strict";e(12)("anchor",(function(t){return function(n){return t(this,"a","name",n)}}))},function(t,n,e){"use strict";e(12)("big",(function(t){return function(){return t(this,"big","","")}}))},function(t,n,e){"use strict";e(12)("blink",(function(t){return function(){return t(this,"blink","","")}}))},function(t,n,e){"use strict";e(12)("bold",(function(t){return function(){return t(this,"b","","")}}))},function(t,n,e){"use strict";e(12)("fixed",(function(t){return function(){return t(this,"tt","","")}}))},function(t,n,e){"use strict";e(12)("fontcolor",(function(t){return function(n){return t(this,"font","color",n)}}))},function(t,n,e){"use strict";e(12)("fontsize",(function(t){return function(n){return t(this,"font","size",n)}}))},function(t,n,e){"use strict";e(12)("italics",(function(t){return function(){return t(this,"i","","")}}))},function(t,n,e){"use strict";e(12)("link",(function(t){return function(n){return t(this,"a","href",n)}}))},function(t,n,e){"use strict";e(12)("small",(function(t){return function(){return t(this,"small","","")}}))},function(t,n,e){"use strict";e(12)("strike",(function(t){return function(){return t(this,"strike","","")}}))},function(t,n,e){"use strict";e(12)("sub",(function(t){return function(){return t(this,"sub","","")}}))},function(t,n,e){"use strict";e(12)("sup",(function(t){return function(){return t(this,"sup","","")}}))},function(t,n,e){var r=e(0);r(r.S,"Date",{now:function(){return(new Date).getTime()}})},function(t,n,e){"use strict";var r=e(0),i=e(10),o=e(26);r(r.P+r.F*e(2)((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})})),"Date",{toJSON:function(t){var n=i(this),e=o(n);return"number"!=typeof e||isFinite(e)?n.toISOString():null}})},function(t,n,e){var r=e(0),i=e(205);r(r.P+r.F*(Date.prototype.toISOString!==i),"Date",{toISOString:i})},function(t,n,e){"use strict";var r=e(2),i=Date.prototype.getTime,o=Date.prototype.toISOString,u=function(t){return t>9?t:"0"+t};t.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=o.call(new Date(-50000000000001))}))||!r((function(){o.call(new Date(NaN))}))?function(){if(!isFinite(i.call(this)))throw RangeError("Invalid time value");var t=this,n=t.getUTCFullYear(),e=t.getUTCMilliseconds(),r=n<0?"-":n>9999?"+":"";return r+("00000"+Math.abs(n)).slice(r?-6:-4)+"-"+u(t.getUTCMonth()+1)+"-"+u(t.getUTCDate())+"T"+u(t.getUTCHours())+":"+u(t.getUTCMinutes())+":"+u(t.getUTCSeconds())+"."+(e>99?e:"0"+u(e))+"Z"}:o},function(t,n,e){var r=Date.prototype,i=r.toString,o=r.getTime;new Date(NaN)+""!="Invalid Date"&&e(11)(r,"toString",(function(){var t=o.call(this);return t==t?i.call(this):"Invalid Date"}))},function(t,n,e){var r=e(5)("toPrimitive"),i=Date.prototype;r in i||e(14)(i,r,e(208))},function(t,n,e){"use strict";var r=e(3),i=e(26);t.exports=function(t){if("string"!==t&&"number"!==t&&"default"!==t)throw TypeError("Incorrect hint");return i(r(this),"number"!=t)}},function(t,n,e){var r=e(0);r(r.S,"Array",{isArray:e(51)})},function(t,n,e){"use strict";var r=e(17),i=e(0),o=e(10),u=e(103),c=e(76),a=e(6),f=e(77),s=e(78);i(i.S+i.F*!e(52)((function(t){Array.from(t)})),"Array",{from:function(t){var n,e,i,l,h=o(t),p="function"==typeof this?this:Array,v=arguments.length,d=v>1?arguments[1]:void 0,y=void 0!==d,g=0,m=s(h);if(y&&(d=r(d,v>2?arguments[2]:void 0,2)),null==m||p==Array&&c(m))for(e=new p(n=a(h.length));n>g;g++)f(e,g,y?d(h[g],g):h[g]);else for(l=m.call(h),e=new p;!(i=l.next()).done;g++)f(e,g,y?u(l,d,[i.value,g],!0):i.value);return e.length=g,e}})},function(t,n,e){"use strict";var r=e(0),i=e(77);r(r.S+r.F*e(2)((function(){function t(){}return!(Array.of.call(t)instanceof t)})),"Array",{of:function(){for(var t=0,n=arguments.length,e=new("function"==typeof this?this:Array)(n);n>t;)i(e,t,arguments[t++]);return e.length=n,e}})},function(t,n,e){"use strict";var r=e(0),i=e(15),o=[].join;r(r.P+r.F*(e(44)!=Object||!e(16)(o)),"Array",{join:function(t){return o.call(i(this),void 0===t?",":t)}})},function(t,n,e){"use strict";var r=e(0),i=e(64),o=e(23),u=e(32),c=e(6),a=[].slice;r(r.P+r.F*e(2)((function(){i&&a.call(i)})),"Array",{slice:function(t,n){var e=c(this.length),r=o(this);if(n=void 0===n?e:n,"Array"==r)return a.call(this,t,n);for(var i=u(t,e),f=u(n,e),s=c(f-i),l=new Array(s),h=0;h1&&(r=Math.min(r,o(arguments[1]))),r<0&&(r=e+r);r>=0;r--)if(r in n&&n[r]===t)return r||0;return-1}})},function(t,n,e){var r=e(0);r(r.P,"Array",{copyWithin:e(106)}),e(36)("copyWithin")},function(t,n,e){var r=e(0);r(r.P,"Array",{fill:e(79)}),e(36)("fill")},function(t,n,e){"use strict";var r=e(0),i=e(22)(5),o=!0;"find"in[]&&Array(1).find((function(){o=!1})),r(r.P+r.F*o,"Array",{find:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),e(36)("find")},function(t,n,e){"use strict";var r=e(0),i=e(22)(6),o="findIndex",u=!0;o in[]&&Array(1)[o]((function(){u=!1})),r(r.P+r.F*u,"Array",{findIndex:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),e(36)(o)},function(t,n,e){e(41)("Array")},function(t,n,e){var r=e(1),i=e(67),o=e(9).f,u=e(34).f,c=e(74),a=e(53),f=r.RegExp,s=f,l=f.prototype,h=/a/g,p=/a/g,v=new f(h)!==h;if(e(8)&&(!v||e(2)((function(){return p[e(5)("match")]=!1,f(h)!=h||f(p)==p||"/a/i"!=f(h,"i")})))){f=function(t,n){var e=this instanceof f,r=c(t),o=void 0===n;return!e&&r&&t.constructor===f&&o?t:i(v?new s(r&&!o?t.source:t,n):s((r=t instanceof f)?t.source:t,r&&o?a.call(t):n),e?this:l,f)};for(var d=function(t){t in f||o(f,t,{configurable:!0,get:function(){return s[t]},set:function(n){s[t]=n}})},y=u(s),g=0;y.length>g;)d(y[g++]);l.constructor=f,f.prototype=l,e(11)(r,"RegExp",f)}e(41)("RegExp")},function(t,n,e){"use strict";e(109);var r=e(3),i=e(53),o=e(8),u=/./.toString,c=function(t){e(11)(RegExp.prototype,"toString",t,!0)};e(2)((function(){return"/a/b"!=u.call({source:"a",flags:"b"})}))?c((function(){var t=r(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?i.call(t):void 0)})):"toString"!=u.name&&c((function(){return u.call(this)}))},function(t,n,e){"use strict";var r=e(3),i=e(6),o=e(82),u=e(54);e(55)("match",1,(function(t,n,e,c){return[function(e){var r=t(this),i=null==e?void 0:e[n];return void 0!==i?i.call(e,r):new RegExp(e)[n](String(r))},function(t){var n=c(e,t,this);if(n.done)return n.value;var a=r(t),f=String(this);if(!a.global)return u(a,f);var s=a.unicode;a.lastIndex=0;for(var l,h=[],p=0;null!==(l=u(a,f));){var v=String(l[0]);h[p]=v,""===v&&(a.lastIndex=o(f,i(a.lastIndex),s)),p++}return 0===p?null:h}]}))},function(t,n,e){"use strict";var r=e(3),i=e(10),o=e(6),u=e(19),c=e(82),a=e(54),f=Math.max,s=Math.min,l=Math.floor,h=/\$([$&`']|\d\d?|<[^>]*>)/g,p=/\$([$&`']|\d\d?)/g;e(55)("replace",2,(function(t,n,e,v){return[function(r,i){var o=t(this),u=null==r?void 0:r[n];return void 0!==u?u.call(r,o,i):e.call(String(o),r,i)},function(t,n){var i=v(e,t,this,n);if(i.done)return i.value;var l=r(t),h=String(this),p="function"==typeof n;p||(n=String(n));var y=l.global;if(y){var g=l.unicode;l.lastIndex=0}for(var m=[];;){var b=a(l,h);if(null===b)break;if(m.push(b),!y)break;""===String(b[0])&&(l.lastIndex=c(h,o(l.lastIndex),g))}for(var x,S="",w=0,E=0;E=w&&(S+=h.slice(w,k)+P,w=k+_.length)}return S+h.slice(w)}];function d(t,n,r,o,u,c){var a=r+t.length,f=o.length,s=p;return void 0!==u&&(u=i(u),s=h),e.call(c,s,(function(e,i){var c;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,r);case"'":return n.slice(a);case"<":c=u[i.slice(1,-1)];break;default:var s=+i;if(0===s)return e;if(s>f){var h=l(s/10);return 0===h?e:h<=f?void 0===o[h-1]?i.charAt(1):o[h-1]+i.charAt(1):e}c=o[s-1]}return void 0===c?"":c}))}}))},function(t,n,e){"use strict";var r=e(3),i=e(94),o=e(54);e(55)("search",1,(function(t,n,e,u){return[function(e){var r=t(this),i=null==e?void 0:e[n];return void 0!==i?i.call(e,r):new RegExp(e)[n](String(r))},function(t){var n=u(e,t,this);if(n.done)return n.value;var c=r(t),a=String(this),f=c.lastIndex;i(f,0)||(c.lastIndex=0);var s=o(c,a);return i(c.lastIndex,f)||(c.lastIndex=f),null===s?-1:s.index}]}))},function(t,n,e){"use strict";var r=e(74),i=e(3),o=e(47),u=e(82),c=e(6),a=e(54),f=e(81),s=e(2),l=Math.min,h=[].push,p="length",v=!s((function(){RegExp(4294967295,"y")}));e(55)("split",2,(function(t,n,e,s){var d;return d="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1)[p]||2!="ab".split(/(?:ab)*/)[p]||4!=".".split(/(.?)(.?)/)[p]||".".split(/()()/)[p]>1||"".split(/.?/)[p]?function(t,n){var i=String(this);if(void 0===t&&0===n)return[];if(!r(t))return e.call(i,t,n);for(var o,u,c,a=[],s=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),l=0,v=void 0===n?4294967295:n>>>0,d=new RegExp(t.source,s+"g");(o=f.call(d,i))&&!((u=d.lastIndex)>l&&(a.push(i.slice(l,o.index)),o[p]>1&&o.index=v));)d.lastIndex===o.index&&d.lastIndex++;return l===i[p]?!c&&d.test("")||a.push(""):a.push(i.slice(l)),a[p]>v?a.slice(0,v):a}:"0".split(void 0,0)[p]?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,r){var i=t(this),o=null==e?void 0:e[n];return void 0!==o?o.call(e,i,r):d.call(String(i),e,r)},function(t,n){var r=s(d,t,this,n,d!==e);if(r.done)return r.value;var f=i(t),h=String(this),p=o(f,RegExp),y=f.unicode,g=(f.ignoreCase?"i":"")+(f.multiline?"m":"")+(f.unicode?"u":"")+(v?"y":"g"),m=new p(v?f:"^(?:"+f.source+")",g),b=void 0===n?4294967295:n>>>0;if(0===b)return[];if(0===h.length)return null===a(m,h)?[h]:[];for(var x=0,S=0,w=[];S0?arguments[0]:void 0)}}),{get:function(t){var n=r.getEntry(i(this,"Map"),t);return n&&n.v},set:function(t,n){return r.def(i(this,"Map"),0===t?0:t,n)}},r,!0)},function(t,n,e){"use strict";var r=e(113),i=e(37);t.exports=e(58)("Set",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return r.def(i(this,"Set"),t=0===t?0:t,t)}},r)},function(t,n,e){"use strict";var r,i=e(1),o=e(22)(0),u=e(11),c=e(27),a=e(93),f=e(114),s=e(4),l=e(37),h=e(37),p=!i.ActiveXObject&&"ActiveXObject"in i,v=c.getWeak,d=Object.isExtensible,y=f.ufstore,g=function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},m={get:function(t){if(s(t)){var n=v(t);return!0===n?y(l(this,"WeakMap")).get(t):n?n[this._i]:void 0}},set:function(t,n){return f.def(l(this,"WeakMap"),t,n)}},b=t.exports=e(58)("WeakMap",g,m,f,!0,!0);h&&p&&(a((r=f.getConstructor(g,"WeakMap")).prototype,m),c.NEED=!0,o(["delete","has","get","set"],(function(t){var n=b.prototype,e=n[t];u(n,t,(function(n,i){if(s(n)&&!d(n)){this._f||(this._f=new r);var o=this._f[t](n,i);return"set"==t?this:o}return e.call(this,n,i)}))})))},function(t,n,e){"use strict";var r=e(114),i=e(37);e(58)("WeakSet",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return r.def(i(this,"WeakSet"),t,!0)}},r,!1,!0)},function(t,n,e){"use strict";var r=e(0),i=e(59),o=e(84),u=e(3),c=e(32),a=e(6),f=e(4),s=e(1).ArrayBuffer,l=e(47),h=o.ArrayBuffer,p=o.DataView,v=i.ABV&&s.isView,d=h.prototype.slice,y=i.VIEW;r(r.G+r.W+r.F*(s!==h),{ArrayBuffer:h}),r(r.S+r.F*!i.CONSTR,"ArrayBuffer",{isView:function(t){return v&&v(t)||f(t)&&y in t}}),r(r.P+r.U+r.F*e(2)((function(){return!new h(2).slice(1,void 0).byteLength})),"ArrayBuffer",{slice:function(t,n){if(void 0!==d&&void 0===n)return d.call(u(this),t);for(var e=u(this).byteLength,r=c(t,e),i=c(void 0===n?e:n,e),o=new(l(this,h))(a(i-r)),f=new p(this),s=new p(o),v=0;r=n.length)return{value:void 0,done:!0}}while(!((t=n[this._i++])in this._t));return{value:t,done:!1}})),r(r.S,"Reflect",{enumerate:function(t){return new o(t)}})},function(t,n,e){var r=e(20),i=e(35),o=e(13),u=e(0),c=e(4),a=e(3);u(u.S,"Reflect",{get:function t(n,e){var u,f,s=arguments.length<3?n:arguments[2];return a(n)===s?n[e]:(u=r.f(n,e))?o(u,"value")?u.value:void 0!==u.get?u.get.call(s):void 0:c(f=i(n))?t(f,e,s):void 0}})},function(t,n,e){var r=e(20),i=e(0),o=e(3);i(i.S,"Reflect",{getOwnPropertyDescriptor:function(t,n){return r.f(o(t),n)}})},function(t,n,e){var r=e(0),i=e(35),o=e(3);r(r.S,"Reflect",{getPrototypeOf:function(t){return i(o(t))}})},function(t,n,e){var r=e(0);r(r.S,"Reflect",{has:function(t,n){return n in t}})},function(t,n,e){var r=e(0),i=e(3),o=Object.isExtensible;r(r.S,"Reflect",{isExtensible:function(t){return i(t),!o||o(t)}})},function(t,n,e){var r=e(0);r(r.S,"Reflect",{ownKeys:e(116)})},function(t,n,e){var r=e(0),i=e(3),o=Object.preventExtensions;r(r.S,"Reflect",{preventExtensions:function(t){i(t);try{return o&&o(t),!0}catch(t){return!1}}})},function(t,n,e){var r=e(9),i=e(20),o=e(35),u=e(13),c=e(0),a=e(28),f=e(3),s=e(4);c(c.S,"Reflect",{set:function t(n,e,c){var l,h,p=arguments.length<4?n:arguments[3],v=i.f(f(n),e);if(!v){if(s(h=o(n)))return t(h,e,c,p);v=a(0)}if(u(v,"value")){if(!1===v.writable||!s(p))return!1;if(l=i.f(p,e)){if(l.get||l.set||!1===l.writable)return!1;l.value=c,r.f(p,e,l)}else r.f(p,e,a(0,c));return!0}return void 0!==v.set&&(v.set.call(p,c),!0)}})},function(t,n,e){var r=e(0),i=e(65);i&&r(r.S,"Reflect",{setPrototypeOf:function(t,n){i.check(t,n);try{return i.set(t,n),!0}catch(t){return!1}}})},function(t,n,e){e(268),t.exports=e(7).Array.includes},function(t,n,e){"use strict";var r=e(0),i=e(49)(!0);r(r.P,"Array",{includes:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),e(36)("includes")},function(t,n,e){e(270),t.exports=e(7).Array.flatMap},function(t,n,e){"use strict";var r=e(0),i=e(271),o=e(10),u=e(6),c=e(18),a=e(104);r(r.P,"Array",{flatMap:function(t){var n,e,r=o(this);return c(t),n=u(r.length),e=a(r,0),i(e,r,r,n,0,1,t,arguments[1]),e}}),e(36)("flatMap")},function(t,n,e){"use strict";var r=e(51),i=e(4),o=e(6),u=e(17),c=e(5)("isConcatSpreadable");t.exports=function t(n,e,a,f,s,l,h,p){for(var v,d,y=s,g=0,m=!!h&&u(h,p,3);g0)y=t(n,e,v,o(v.length),y,l-1)-1;else{if(y>=9007199254740991)throw TypeError();n[y]=v}y++}g++}return y}},function(t,n,e){e(273),t.exports=e(7).String.padStart},function(t,n,e){"use strict";var r=e(0),i=e(117),o=e(57),u=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);r(r.P+r.F*u,"String",{padStart:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},function(t,n,e){e(275),t.exports=e(7).String.padEnd},function(t,n,e){"use strict";var r=e(0),i=e(117),o=e(57),u=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);r(r.P+r.F*u,"String",{padEnd:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},function(t,n,e){e(277),t.exports=e(7).String.trimLeft},function(t,n,e){"use strict";e(39)("trimLeft",(function(t){return function(){return t(this,1)}}),"trimStart")},function(t,n,e){e(279),t.exports=e(7).String.trimRight},function(t,n,e){"use strict";e(39)("trimRight",(function(t){return function(){return t(this,2)}}),"trimEnd")},function(t,n,e){e(281),t.exports=e(61).f("asyncIterator")},function(t,n,e){e(89)("asyncIterator")},function(t,n,e){e(283),t.exports=e(7).Object.getOwnPropertyDescriptors},function(t,n,e){var r=e(0),i=e(116),o=e(15),u=e(20),c=e(77);r(r.S,"Object",{getOwnPropertyDescriptors:function(t){for(var n,e,r=o(t),a=u.f,f=i(r),s={},l=0;f.length>l;)void 0!==(e=a(r,n=f[l++]))&&c(s,n,e);return s}})},function(t,n,e){e(285),t.exports=e(7).Object.values},function(t,n,e){var r=e(0),i=e(118)(!1);r(r.S,"Object",{values:function(t){return i(t)}})},function(t,n,e){e(287),t.exports=e(7).Object.entries},function(t,n,e){var r=e(0),i=e(118)(!0);r(r.S,"Object",{entries:function(t){return i(t)}})},function(t,n,e){"use strict";e(110),e(289),t.exports=e(7).Promise.finally},function(t,n,e){"use strict";var r=e(0),i=e(7),o=e(1),u=e(47),c=e(112);r(r.P+r.R,"Promise",{finally:function(t){var n=u(this,i.Promise||o.Promise),e="function"==typeof t;return this.then(e?function(e){return c(n,t()).then((function(){return e}))}:t,e?function(e){return c(n,t()).then((function(){throw e}))}:t)}})},function(t,n,e){e(291),e(292),e(293),t.exports=e(7)},function(t,n,e){var r=e(1),i=e(0),o=e(57),u=[].slice,c=/MSIE .\./.test(o),a=function(t){return function(n,e){var r=arguments.length>2,i=!!r&&u.call(arguments,2);return t(r?function(){("function"==typeof n?n:Function(n)).apply(this,i)}:n,e)}};i(i.G+i.B+i.F*c,{setTimeout:a(r.setTimeout),setInterval:a(r.setInterval)})},function(t,n,e){var r=e(0),i=e(83);r(r.G+r.B,{setImmediate:i.set,clearImmediate:i.clear})},function(t,n,e){for(var r=e(80),i=e(31),o=e(11),u=e(1),c=e(14),a=e(40),f=e(5),s=f("iterator"),l=f("toStringTag"),h=a.Array,p={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},v=i(p),d=0;d=0;--i){var o=this.tryEntries[i],u=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var c=e.call(o,"catchLoc"),a=e.call(o,"finallyLoc");if(c&&a){if(this.prev=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&e.call(i,"finallyLoc")&&this.prev=0;--n){var e=this.tryEntries[n];if(e.finallyLoc===t)return this.complete(e.completion,e.afterLoc),S(e),f}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var e=this.tryEntries[n];if(e.tryLoc===t){var r=e.completion;if("throw"===r.type){var i=r.arg;S(e)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,e){return this.delegate={iterator:E(t),resultName:n,nextLoc:e},"next"===this.method&&(this.arg=void 0),f}},t}(t.exports);try{regeneratorRuntime=r}catch(t){Function("r","regeneratorRuntime = r")(r)}},function(t,n,e){e(296),t.exports=e(119).global},function(t,n,e){var r=e(297);r(r.G,{global:e(85)})},function(t,n,e){var r=e(85),i=e(119),o=e(298),u=e(300),c=e(307),a=function(t,n,e){var f,s,l,h=t&a.F,p=t&a.G,v=t&a.S,d=t&a.P,y=t&a.B,g=t&a.W,m=p?i:i[n]||(i[n]={}),b=m.prototype,x=p?r:v?r[n]:(r[n]||{}).prototype;for(f in p&&(e=n),e)(s=!h&&x&&void 0!==x[f])&&c(m,f)||(l=s?x[f]:e[f],m[f]=p&&"function"!=typeof x[f]?e[f]:y&&s?o(l,r):g&&x[f]==l?function(t){var n=function(n,e,r){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(n);case 2:return new t(n,e)}return new t(n,e,r)}return t.apply(this,arguments)};return n.prototype=t.prototype,n}(l):d&&"function"==typeof l?o(Function.call,l):l,d&&((m.virtual||(m.virtual={}))[f]=l,t&a.R&&b&&!b[f]&&u(b,f,l)))};a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,n,e){var r=e(299);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,i){return t.call(n,e,r,i)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,n,e){var r=e(301),i=e(306);t.exports=e(87)?function(t,n,e){return r.f(t,n,i(1,e))}:function(t,n,e){return t[n]=e,t}},function(t,n,e){var r=e(302),i=e(303),o=e(305),u=Object.defineProperty;n.f=e(87)?Object.defineProperty:function(t,n,e){if(r(t),n=o(n,!0),r(e),i)try{return u(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported!");return"value"in e&&(t[n]=e.value),t}},function(t,n,e){var r=e(86);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,n,e){t.exports=!e(87)&&!e(120)((function(){return 7!=Object.defineProperty(e(304)("div"),"a",{get:function(){return 7}}).a}))},function(t,n,e){var r=e(86),i=e(85).document,o=r(i)&&r(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},function(t,n,e){var r=e(86);t.exports=function(t,n){if(!r(t))return t;var e,i;if(n&&"function"==typeof(e=t.toString)&&!r(i=e.call(t)))return i;if("function"==typeof(e=t.valueOf)&&!r(i=e.call(t)))return i;if(!n&&"function"==typeof(e=t.toString)&&!r(i=e.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n){var e={}.hasOwnProperty;t.exports=function(t,n){return e.call(t,n)}},function(t,n,e){"use strict";function r(t,n,e){var r,i=!1,o="",u=!1,c=0,a=["не выполнено","выполнено частично","выполнено полностью"],f=["нет","да"],s="Вы отметили: выполнено частично. Обязательно оставьте фидбек!",l=document.querySelector(".feedback button");l.parentElement.classList.remove("hidden");var h=document.querySelector(".info"),p=document.querySelector(".score-board");p.parentElement.classList.remove("hidden");var v=document.querySelector(".done"),d=document.querySelector(".total");document.querySelector(".title").innerText=n,document.querySelector(".prepare").innerHTML=e||"";var y=t.map((function(t){return(t.subtitle||t.title)&&t.title?null:t}));r=y.filter((function(t){return t})).length,d.innerText=r,document.addEventListener("keydown",(function(t){t.ctrlKey&&(u=!0)})),document.addEventListener("keyup",(function(t){t.ctrlKey||(u=!1)})),l.addEventListener("click",(function(t){t.preventDefault(),_(y)}));var g=0,m=[];t.forEach((function(t,n){"main"===t.status?w(t,n,!0):w(t,n)}));var b=document.createElement("form");m.forEach((function(t){return b.appendChild(t)}));var x=document.querySelector(".criteria-list");x.innerHTML="",x.appendChild(b);var S=document.querySelector(".reset");function w(t,n,e){var r=document.createElement("div");if("title"===t.type){r.classList.add("title");var i=document.createElement("h3");i.innerText=t.title,r.appendChild(i)}else if("sub-title"===t.type){r.classList.add("sub-title");var o=document.createElement("h4");o.innerText=t.title,r.appendChild(o)}else{r.classList.add("checkbox-container"),r.dataset.active="true",r.dataset.id=n;var u=function(t,n,e){var r=document.createElement("div");return r.classList.add("radio-group"),(t.type=="subtask"?[].concat(a):[].concat(f)).map((function(t,i){var o=document.createElement("input");o.dataset.type=e?"main":"regular",o.setAttribute("data-id",n),o.setAttribute("data-score",i),o.setAttribute("name",n),o.setAttribute("type","radio");var u=document.createElement("span");u.classList.add("checkmark");var c=document.createElement("Label");c.innerHTML=t,c.appendChild(o),c.appendChild(u),r.appendChild(c)})),r}(t,n,e),c=document.createElement("div");c.classList.add("task-max-score");var l="penalty"==t.type?"Штрафные баллы":"Балл за выполнение";c.innerHTML="".concat(l,"

").concat(t.max,"

");var h=document.createElement("div");h.classList.add("task-description"),h.innerHTML="

".concat(t.text,"

"),h.innerHTML+="
Добавить отзыв";var p=document.createElement("div");p.classList.add("overlay"),p.onclick=function(){var t=document.querySelector('[data-active="true"]');E(t,s),t.scrollIntoView({behavior:"smooth"})},r.appendChild(c),r.appendChild(h),r.appendChild(u),r.appendChild(p)}m.push(r)}function E(t,n){var e=t.querySelector("textarea");if(e){e.focus();var r=e.parentElement.querySelector(".askFeedback");r&&r.remove();var i=document.createElement("DIV");i.classList.add("askFeedback"),i.innerHTML=n,t.querySelector(".feedback-buttons").appendChild(i)}}function _(t){h.innerHTML="";var n=document.createElement("div");n.classList.add("header");var e=document.createElement("div");e.classList.add("content");var u=document.createElement("p");if(u.classList.add("close"),u.innerHTML="×",u.addEventListener("click",(function(){h.classList.toggle("visible"),i=!1})),n.appendChild(u),t.some((function(t){return t&&t.needFeedback&&!t.feedback}))){var a=document.querySelector('.checkbox-container[data-active="true"]');a.querySelector("textarea")&&(a.scrollIntoView({behavior:"smooth"}),E(a,s)),e.innerHTML='
Вам необходимо оставить обязательный фидбек ко всем пунктам, где отмечено - Выполнено частично!
'}else if(r!==c)e.innerHTML+='
Вы проверили не все пункты задания
Осталось '.concat(r-c," из ").concat(r,"
");else{h.innerHTML='';var f=t.filter((function(t){return t&&null!=t.status})),l=g%10>1&&g%10<=4?"балла":"баллов";e.innerHTML+="

Ваша оценка - ".concat(g>=0?g:0," ").concat(l," \r\n

Отзыв по пунктам ТЗ:\r\n

");var p={0:"Не выполненные/не засчитанные пункты:",1:"Частично выполненные пункты:",2:"Выполненные пункты:",penalty:"Штрафы:"};Object.keys(p).forEach((function(t){f.some((function(n){return n.type==t&&0!=n.status||"penalty"!=n.type&&n.status==t}))&&(e.innerHTML+="

".concat(p[t],"\r\n

"),f.filter((function(n){return n.type==t&&0!=n.status||"penalty"!=n.type&&n.status==t})).map((function(t,n){e.innerHTML+="

".concat(n+1,") ").concat(t.text," \r\n").concat(t.feedback?'

Отзыв: '+t.feedback+"

":"

","\r\n")})))})),o=e.innerText}h.appendChild(n),h.appendChild(e),h.classList.add("visible"),i=!0}function k(t){t?c=0:c++,v.innerText=c}function O(t){if(!y[t].needFeedback||!y[t].feedback||((e=y[t]).feedback=e.feedback.replace(/(\s+)/g," ").trim(),e.feedback.length<8)){if(y[t].needFeedback){var n=y[t].activeRadio.closest(".checkbox-container");return n.querySelector("a").click(),E(n,"Фидбек не может быть пустым! Минимальная длина 8 символов"),void setTimeout((function(){return E(n,s)}),3e3)}}else document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true"}));var e}function L(t){var n;y[t].needFeedback&&(c--,v.innerText=c,y[t].activeRadio.checked=!1,n=y[t].max,g-=+(n/2).toFixed(1),p.innerHTML=g<0?0:g,delete y[t].needFeedback,delete y[t].activeRadio,delete y[t].status,document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true"})),g||S.classList.add("hidden"))}function F(t,n,e,r){y[t].feedback=n.value,n.value?(e.classList.add("feedback-add"),e.innerHTML="Изменить отзыв"):(delete y[t].feedback,e.classList.remove("feedback-add"),e.innerHTML="Добавить отзыв"),r.remove()}S.addEventListener("click",(function(t){g=0,i=!1,y.map((function(t){t&&delete t.status,t&&delete t.feedback})),document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true",t.querySelectorAll("input").forEach((function(t){return t.checked=!1}));var n=t.querySelector("form");n&&n.remove(),t.querySelector(".add-feedback").innerHTML="Добавить отзыв"})),k("reset"),p.innerHTML=0,S.classList.add("hidden"),h.classList.remove("visible")})),S.click(),b.addEventListener("click",(function(t){var n=t.target.parentElement,e=t.target.dataset.id,r=y[e];if("INPUT"===t.target.tagName){var o=t.target,c=o.dataset.score;if(u&&"true"==n.dataset.active)return n.dataset.active="false",void t.preventDefault();if(u&&"false"==n.dataset.active)return n.dataset.active="true",void t.preventDefault();if(!u&&"false"!=n.dataset.active){void 0===r.status&&k();var a=[0,+(r.max/2).toFixed(1),r.max];if(r.status>=0&&(g-="penalty"!==r.type?a[r.status]:2*a[r.status]),g+="penalty"!==r.type?a[c]:2*a[c],r.status=c,p.innerHTML=g<0?0:g,1==+c&&"subtask"==r.type){r.needFeedback=!0,r.activeRadio=o;var f=o.closest(".checkbox-container");f.querySelector("textarea")||f.querySelector("a").click(),f.scrollIntoView({behavior:"smooth"}),E(f,s),document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="false",t===f&&(t.dataset.active="true")}))}else if(r.needFeedback&&"subtask"==r.type){r.needFeedback=!1;var l=o.closest(".checkbox-container").querySelector("form");l&&l.remove(),document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true"}))}if(void 0!==r.activeRadio&&r.activeRadio.dataset.score!==c&&r.feedback){r.activeRadio=o;var h=o.closest(".checkbox-container");h.querySelector("a").click(),E(h,"Вы изменили оценку. Возможно стоит изменить отзыв?")}i&&_(y)}y.some((function(t){return t&&void 0!==t.status}))?S.classList.remove("hidden"):S.classList.add("hidden"),r.activeRadio=o}})),window.addFeedback=function(t){t.preventDefault(),document.querySelectorAll(".add-form").forEach((function(t){return t.remove()}));var n=t.target,e=n.closest(".checkbox-container").querySelector("input").dataset.id,r=document.createElement("form");r.classList.add("add-form");var i=document.createElement("textarea");i.setAttribute("placeholder","Use Ctrl + Enter to save this feedback or ESC to cancel"),y[e].feedback&&(i.value=y[e].feedback),r.appendChild(i);var o=document.createElement("a");o.innerText="Отмена",o.onclick=function(){r.remove(),L(e)};var c=o.cloneNode();c.innerText="Сохранить",c.onclick=function(){F(e,i,n,r),O(e)};var a=document.createElement("DIV");a.classList.add("feedback-buttons"),a.appendChild(o),a.appendChild(c),r.appendChild(a),n.parentElement.appendChild(r),i.focus(),i.select(),r.addEventListener("keyup",(function(t){13==t.keyCode&&u?(F(e,i,n,r),O(e)):27==t.keyCode&&(L(e),r.remove())}))},window.copyToClipboard=function(t){t.preventDefault(),t.target.classList.add("not-link"),t.target.innerText="Скопировано!",setTimeout((function(){t.target.classList.remove("not-link"),t.target.innerText="Скопировать в буфер"}),1e3);var n=document.createElement("textarea");n.value=o,n.setAttribute("readonly",""),n.style.position="absolute",n.style.left="-9999px",document.body.appendChild(n),n.select(),document.execCommand("copy"),document.body.removeChild(n)}}function i(t,n,e,r,i,o,u){try{var c=t[o](u),a=c.value}catch(t){return void e(t)}c.done?n(a):Promise.resolve(a).then(r,i)}function o(t){return function(){var n=this,e=arguments;return new Promise((function(r,o){var u=t.apply(n,e);function c(t){i(u,r,o,c,a,"next",t)}function a(t){i(u,r,o,c,a,"throw",t)}c(void 0)}))}}function u(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}e.r(n);var c=document.querySelector(".start");c&&c.addEventListener("click",(function(t){t.stopPropagation(),"SECTION"==t.target.parentElement.tagName&&(t.target.parentElement.style.display="none")}));var a=document.querySelector("header"),f=a.offsetTop;window.onscroll=function(){window.pageYOffset>f+100?a.classList.add("sticky"):a.classList.remove("sticky")},new function t(n){var e=this;!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),u(this,"getTask",function(){var t=o(regeneratorRuntime.mark((function t(n){var i,o,u,c,a,f,s,l;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n.match(/http/),t.next=3,fetch(n);case 3:if((i=t.sent).ok){t.next=8;break}return e.fetchFails.push(n),e.renderErrors(),t.abrupt("return");case 8:return t.next=11,i.json();case 11:o=t.sent,e.tasks.push(o),(u=document.createElement("DIV")).classList.add("taskContainer"),u.dataset.name=o.taskName,(c=document.createElement("DIV")).classList.add("taskLink"),(a=document.createElement("a")).setAttribute("href",o.github),a.setAttribute("target","_blank"),(f=document.createElement("img")).classList.add("icon"),f.src="./images/gh.svg",f.alt="GitHub link",a.appendChild(f),a.setAttribute("title","Original repo README"),(s=document.createElement("a")).setAttribute("href",o.externalLink||n),s.innerText=o.taskName,o.externalLink||(s.onclick=function(t){t.preventDefault(),e.tasksList.remove(),document.querySelector(".back").classList.remove("hidden"),r(o.criteria,o.taskName,o.information)}),c.appendChild(s),(l=c.cloneNode()).innerHTML="",l.appendChild(a),u.appendChild(l),u.appendChild(c),e.tasksList&&e.tasksList.appendChild(u),e.loader.classList.remove("visible");case 39:case"end":return t.stop()}}),t)})));return function(n){return t.apply(this,arguments)}}()),u(this,"initTasks",o(regeneratorRuntime.mark((function t(){var n,r,i,o;return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.loader=document.querySelector(".loader"),e.tasksList=document.querySelector(".tasks-list"),e.errorsContainer=document.querySelector(".fetch-errors"),t.next=5,fetch(e.url);case 5:if((n=t.sent).ok){t.next=10;break}return e.fetchFails.push(e.url.match(/.*\/(?!\/)(.*)$/)[1]),e.renderErrors(),t.abrupt("return");case 10:return t.next=13,n.json();case 13:r=t.sent,i=Object.values(r),o=0;case 16:if(!(on.taskName?1:-1})),e.tasks.map((function(t){var n=t.taskName,r=e.tasksList.querySelector('[data-name="'.concat(n,'"]'));r&&e.tasksList.appendChild(r)}));case 25:case"end":return t.stop()}}),t)})))),u(this,"renderErrors",(function(){if(e.fetchFails.length){var t=document.createElement("DIV");t.classList.add("errMsg"),e.fetchFails.map((function(n){t.innerHTML="Unable to fetch ".concat(n,""),e.errorsContainer.appendChild(t)})),e.loader.classList.remove("visible")}})),this.url=n,this.tasks=[],this.fetchFails=[]}("tasks-to-render.json").initTasks()}]); \ No newline at end of file +!function(t){var n={};function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:r})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,n){if(1&n&&(t=e(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(e.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)e.d(r,o,function(n){return t[n]}.bind(null,o));return r},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.p="",e(e.s=122)}([function(t,n,e){var r=e(1),o=e(7),i=e(14),c=e(11),u=e(17),a=function(t,n,e){var s,f,l,h,p=t&a.F,v=t&a.G,d=t&a.S,y=t&a.P,g=t&a.B,m=v?r:d?r[n]||(r[n]={}):(r[n]||{}).prototype,b=v?o:o[n]||(o[n]={}),x=b.prototype||(b.prototype={});for(s in v&&(e=n),e)l=((f=!p&&m&&void 0!==m[s])?m:e)[s],h=g&&f?u(l,r):y&&"function"==typeof l?u(Function.call,l):l,m&&c(m,s,l,t&a.U),b[s]!=l&&i(b,s,h),y&&x[s]!=l&&(x[s]=l)};r.core=o,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,n){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n,e){var r=e(4);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,e){var r=e(48)("wks"),o=e(29),i=e(1).Symbol,c="function"==typeof i;(t.exports=function(t){return r[t]||(r[t]=c&&i[t]||(c?i:o)("Symbol."+t))}).store=r},function(t,n,e){var r=e(19),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,n){var e=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=e)},function(t,n,e){t.exports=!e(2)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,n,e){var r=e(3),o=e(89),i=e(26),c=Object.defineProperty;n.f=e(8)?Object.defineProperty:function(t,n,e){if(r(t),n=i(n,!0),r(e),o)try{return c(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported!");return"value"in e&&(t[n]=e.value),t}},function(t,n,e){var r=e(24);t.exports=function(t){return Object(r(t))}},function(t,n,e){var r=e(1),o=e(14),i=e(13),c=e(29)("src"),u=e(127),a=(""+u).split("toString");e(7).inspectSource=function(t){return u.call(t)},(t.exports=function(t,n,e,u){var s="function"==typeof e;s&&(i(e,"name")||o(e,"name",n)),t[n]!==e&&(s&&(i(e,c)||o(e,c,t[n]?""+t[n]:a.join(String(n)))),t===r?t[n]=e:u?t[n]?t[n]=e:o(t,n,e):(delete t[n],o(t,n,e)))})(Function.prototype,"toString",(function(){return"function"==typeof this&&this[c]||u.call(this)}))},function(t,n,e){var r=e(0),o=e(2),i=e(24),c=/"/g,u=function(t,n,e,r){var o=String(i(t)),u="<"+n;return""!==e&&(u+=" "+e+'="'+String(r).replace(c,""")+'"'),u+">"+o+""};t.exports=function(t,n){var e={};e[t]=n(u),r(r.P+r.F*o((function(){var n=""[t]('"');return n!==n.toLowerCase()||n.split('"').length>3})),"String",e)}},function(t,n){var e={}.hasOwnProperty;t.exports=function(t,n){return e.call(t,n)}},function(t,n,e){var r=e(9),o=e(28);t.exports=e(8)?function(t,n,e){return r.f(t,n,o(1,e))}:function(t,n,e){return t[n]=e,t}},function(t,n,e){var r=e(44),o=e(24);t.exports=function(t){return r(o(t))}},function(t,n,e){"use strict";var r=e(2);t.exports=function(t,n){return!!t&&r((function(){n?t.call(null,(function(){}),1):t.call(null)}))}},function(t,n,e){var r=e(18);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,o){return t.call(n,e,r,o)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,n){var e=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:e)(t)}},function(t,n,e){var r=e(45),o=e(28),i=e(15),c=e(26),u=e(13),a=e(89),s=Object.getOwnPropertyDescriptor;n.f=e(8)?s:function(t,n){if(t=i(t),n=c(n,!0),a)try{return s(t,n)}catch(t){}if(u(t,n))return o(!r.f.call(t,n),t[n])}},function(t,n,e){var r=e(0),o=e(7),i=e(2);t.exports=function(t,n){var e=(o.Object||{})[t]||Object[t],c={};c[t]=n(e),r(r.S+r.F*i((function(){e(1)})),"Object",c)}},function(t,n,e){var r=e(17),o=e(44),i=e(10),c=e(6),u=e(105);t.exports=function(t,n){var e=1==t,a=2==t,s=3==t,f=4==t,l=6==t,h=5==t||l,p=n||u;return function(n,u,v){for(var d,y,g=i(n),m=o(g),b=r(u,v,3),x=c(m.length),w=0,S=e?p(n,x):a?p(n,0):void 0;x>w;w++)if((h||w in m)&&(y=b(d=m[w],w,g),t))if(e)S[w]=y;else if(y)switch(t){case 3:return!0;case 5:return d;case 6:return w;case 2:S.push(d)}else if(f)return!1;return l?-1:s||f?f:S}}},function(t,n){var e={}.toString;t.exports=function(t){return e.call(t).slice(8,-1)}},function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,n,e){"use strict";if(e(8)){var r=e(30),o=e(1),i=e(2),c=e(0),u=e(59),a=e(85),s=e(17),f=e(42),l=e(28),h=e(14),p=e(43),v=e(19),d=e(6),y=e(116),g=e(32),m=e(26),b=e(13),x=e(46),w=e(4),S=e(10),E=e(77),k=e(33),_=e(35),L=e(34).f,O=e(79),F=e(29),M=e(5),P=e(22),A=e(49),j=e(47),T=e(81),I=e(40),N=e(52),C=e(41),R=e(80),D=e(107),q=e(9),W=e(20),G=q.f,U=W.f,V=o.RangeError,B=o.TypeError,H=o.Uint8Array,Y=Array.prototype,z=a.ArrayBuffer,$=a.DataView,K=P(0),J=P(2),X=P(3),Z=P(4),Q=P(5),tt=P(6),nt=A(!0),et=A(!1),rt=T.values,ot=T.keys,it=T.entries,ct=Y.lastIndexOf,ut=Y.reduce,at=Y.reduceRight,st=Y.join,ft=Y.sort,lt=Y.slice,ht=Y.toString,pt=Y.toLocaleString,vt=M("iterator"),dt=M("toStringTag"),yt=F("typed_constructor"),gt=F("def_constructor"),mt=u.CONSTR,bt=u.TYPED,xt=u.VIEW,wt=P(1,(function(t,n){return Lt(j(t,t[gt]),n)})),St=i((function(){return 1===new H(new Uint16Array([1]).buffer)[0]})),Et=!!H&&!!H.prototype.set&&i((function(){new H(1).set({})})),kt=function(t,n){var e=v(t);if(e<0||e%n)throw V("Wrong offset!");return e},_t=function(t){if(w(t)&&bt in t)return t;throw B(t+" is not a typed array!")},Lt=function(t,n){if(!w(t)||!(yt in t))throw B("It is not a typed array constructor!");return new t(n)},Ot=function(t,n){return Ft(j(t,t[gt]),n)},Ft=function(t,n){for(var e=0,r=n.length,o=Lt(t,r);r>e;)o[e]=n[e++];return o},Mt=function(t,n,e){G(t,n,{get:function(){return this._d[e]}})},Pt=function(t){var n,e,r,o,i,c,u=S(t),a=arguments.length,f=a>1?arguments[1]:void 0,l=void 0!==f,h=O(u);if(null!=h&&!E(h)){for(c=h.call(u),r=[],n=0;!(i=c.next()).done;n++)r.push(i.value);u=r}for(l&&a>2&&(f=s(f,arguments[2],2)),n=0,e=d(u.length),o=Lt(this,e);e>n;n++)o[n]=l?f(u[n],n):u[n];return o},At=function(){for(var t=0,n=arguments.length,e=Lt(this,n);n>t;)e[t]=arguments[t++];return e},jt=!!H&&i((function(){pt.call(new H(1))})),Tt=function(){return pt.apply(jt?lt.call(_t(this)):_t(this),arguments)},It={copyWithin:function(t,n){return D.call(_t(this),t,n,arguments.length>2?arguments[2]:void 0)},every:function(t){return Z(_t(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return R.apply(_t(this),arguments)},filter:function(t){return Ot(this,J(_t(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return Q(_t(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(_t(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){K(_t(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return et(_t(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return nt(_t(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return st.apply(_t(this),arguments)},lastIndexOf:function(t){return ct.apply(_t(this),arguments)},map:function(t){return wt(_t(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return ut.apply(_t(this),arguments)},reduceRight:function(t){return at.apply(_t(this),arguments)},reverse:function(){for(var t,n=_t(this).length,e=Math.floor(n/2),r=0;r1?arguments[1]:void 0)},sort:function(t){return ft.call(_t(this),t)},subarray:function(t,n){var e=_t(this),r=e.length,o=g(t,r);return new(j(e,e[gt]))(e.buffer,e.byteOffset+o*e.BYTES_PER_ELEMENT,d((void 0===n?r:g(n,r))-o))}},Nt=function(t,n){return Ot(this,lt.call(_t(this),t,n))},Ct=function(t){_t(this);var n=kt(arguments[1],1),e=this.length,r=S(t),o=d(r.length),i=0;if(o+n>e)throw V("Wrong length!");for(;i255?255:255&r),o.v[p](e*n+o.o,r,St)}(this,e,t)},enumerable:!0})};b?(v=e((function(t,e,r,o){f(t,v,s,"_d");var i,c,u,a,l=0,p=0;if(w(e)){if(!(e instanceof z||"ArrayBuffer"==(a=x(e))||"SharedArrayBuffer"==a))return bt in e?Ft(v,e):Pt.call(v,e);i=e,p=kt(r,n);var g=e.byteLength;if(void 0===o){if(g%n)throw V("Wrong length!");if((c=g-p)<0)throw V("Wrong length!")}else if((c=d(o)*n)+p>g)throw V("Wrong length!");u=c/n}else u=y(e),i=new z(c=u*n);for(h(t,"_d",{b:i,o:p,l:c,e:u,v:new $(i)});ldocument.F=Object<\/script>"),t.close(),a=t.F;r--;)delete a.prototype[i[r]];return a()};t.exports=Object.create||function(t,n){var e;return null!==t?(u.prototype=r(t),e=new u,u.prototype=null,e[c]=t):e=a(),void 0===n?e:o(e,n)}},function(t,n,e){var r=e(91),o=e(64).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,n,e){var r=e(13),o=e(10),i=e(63)("IE_PROTO"),c=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),r(t,i)?t[i]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?c:null}},function(t,n,e){var r=e(5)("unscopables"),o=Array.prototype;null==o[r]&&e(14)(o,r,{}),t.exports=function(t){o[r][t]=!0}},function(t,n,e){var r=e(4);t.exports=function(t,n){if(!r(t)||t._t!==n)throw TypeError("Incompatible receiver, "+n+" required!");return t}},function(t,n,e){var r=e(9).f,o=e(13),i=e(5)("toStringTag");t.exports=function(t,n,e){t&&!o(t=e?t:t.prototype,i)&&r(t,i,{configurable:!0,value:n})}},function(t,n,e){var r=e(0),o=e(24),i=e(2),c=e(67),u="["+c+"]",a=RegExp("^"+u+u+"*"),s=RegExp(u+u+"*$"),f=function(t,n,e){var o={},u=i((function(){return!!c[t]()||"​…"!="​…"[t]()})),a=o[t]=u?n(l):c[t];e&&(o[e]=a),r(r.P+r.F*u,"String",o)},l=f.trim=function(t,n){return t=String(o(t)),1&n&&(t=t.replace(a,"")),2&n&&(t=t.replace(s,"")),t};t.exports=f},function(t,n){t.exports={}},function(t,n,e){"use strict";var r=e(1),o=e(9),i=e(8),c=e(5)("species");t.exports=function(t){var n=r[t];i&&n&&!n[c]&&o.f(n,c,{configurable:!0,get:function(){return this}})}},function(t,n){t.exports=function(t,n,e,r){if(!(t instanceof n)||void 0!==r&&r in t)throw TypeError(e+": incorrect invocation!");return t}},function(t,n,e){var r=e(11);t.exports=function(t,n,e){for(var o in n)r(t,o,n[o],e);return t}},function(t,n,e){var r=e(23);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,n){n.f={}.propertyIsEnumerable},function(t,n,e){var r=e(23),o=e(5)("toStringTag"),i="Arguments"==r(function(){return arguments}());t.exports=function(t){var n,e,c;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),o))?e:i?r(n):"Object"==(c=r(n))&&"function"==typeof n.callee?"Arguments":c}},function(t,n,e){var r=e(3),o=e(18),i=e(5)("species");t.exports=function(t,n){var e,c=r(t).constructor;return void 0===c||null==(e=r(c)[i])?n:o(e)}},function(t,n,e){var r=e(7),o=e(1),i=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(t.exports=function(t,n){return i[t]||(i[t]=void 0!==n?n:{})})("versions",[]).push({version:r.version,mode:e(30)?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,n,e){var r=e(15),o=e(6),i=e(32);t.exports=function(t){return function(n,e,c){var u,a=r(n),s=o(a.length),f=i(c,s);if(t&&e!=e){for(;s>f;)if((u=a[f++])!=u)return!0}else for(;s>f;f++)if((t||f in a)&&a[f]===e)return t||f||0;return!t&&-1}}},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,e){var r=e(23);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,n,e){var r=e(5)("iterator"),o=!1;try{var i=[7][r]();i.return=function(){o=!0},Array.from(i,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!o)return!1;var e=!1;try{var i=[7],c=i[r]();c.next=function(){return{done:e=!0}},i[r]=function(){return c},t(i)}catch(t){}return e}},function(t,n,e){"use strict";var r=e(3);t.exports=function(){var t=r(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},function(t,n,e){"use strict";var r=e(46),o=RegExp.prototype.exec;t.exports=function(t,n){var e=t.exec;if("function"==typeof e){var i=e.call(t,n);if("object"!=typeof i)throw new TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw new TypeError("RegExp#exec called on incompatible receiver");return o.call(t,n)}},function(t,n,e){"use strict";e(109);var r=e(11),o=e(14),i=e(2),c=e(24),u=e(5),a=e(82),s=u("species"),f=!i((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$")})),l=function(){var t=/(?:)/,n=t.exec;t.exec=function(){return n.apply(this,arguments)};var e="ab".split(t);return 2===e.length&&"a"===e[0]&&"b"===e[1]}();t.exports=function(t,n,e){var h=u(t),p=!i((function(){var n={};return n[h]=function(){return 7},7!=""[t](n)})),v=p?!i((function(){var n=!1,e=/a/;return e.exec=function(){return n=!0,null},"split"===t&&(e.constructor={},e.constructor[s]=function(){return e}),e[h](""),!n})):void 0;if(!p||!v||"replace"===t&&!f||"split"===t&&!l){var d=/./[h],y=e(c,h,""[t],(function(t,n,e,r,o){return n.exec===a?p&&!o?{done:!0,value:d.call(n,e,r)}:{done:!0,value:t.call(e,n,r)}:{done:!1}})),g=y[0],m=y[1];r(String.prototype,t,g),o(RegExp.prototype,h,2==n?function(t,n){return m.call(t,this,n)}:function(t){return m.call(t,this)})}}},function(t,n,e){var r=e(17),o=e(104),i=e(77),c=e(3),u=e(6),a=e(79),s={},f={};(n=t.exports=function(t,n,e,l,h){var p,v,d,y,g=h?function(){return t}:a(t),m=r(e,l,n?2:1),b=0;if("function"!=typeof g)throw TypeError(t+" is not iterable!");if(i(g)){for(p=u(t.length);p>b;b++)if((y=n?m(c(v=t[b])[0],v[1]):m(t[b]))===s||y===f)return y}else for(d=g.call(t);!(v=d.next()).done;)if((y=o(d,m,v.value,n))===s||y===f)return y}).BREAK=s,n.RETURN=f},function(t,n,e){var r=e(1).navigator;t.exports=r&&r.userAgent||""},function(t,n,e){"use strict";var r=e(1),o=e(0),i=e(11),c=e(43),u=e(27),a=e(56),s=e(42),f=e(4),l=e(2),h=e(52),p=e(38),v=e(68);t.exports=function(t,n,e,d,y,g){var m=r[t],b=m,x=y?"set":"add",w=b&&b.prototype,S={},E=function(t){var n=w[t];i(w,t,"delete"==t||"has"==t?function(t){return!(g&&!f(t))&&n.call(this,0===t?0:t)}:"get"==t?function(t){return g&&!f(t)?void 0:n.call(this,0===t?0:t)}:"add"==t?function(t){return n.call(this,0===t?0:t),this}:function(t,e){return n.call(this,0===t?0:t,e),this})};if("function"==typeof b&&(g||w.forEach&&!l((function(){(new b).entries().next()})))){var k=new b,_=k[x](g?{}:-0,1)!=k,L=l((function(){k.has(1)})),O=h((function(t){new b(t)})),F=!g&&l((function(){for(var t=new b,n=5;n--;)t[x](n,n);return!t.has(-0)}));O||((b=n((function(n,e){s(n,b,t);var r=v(new m,n,b);return null!=e&&a(e,y,r[x],r),r}))).prototype=w,w.constructor=b),(L||F)&&(E("delete"),E("has"),y&&E("get")),(F||_)&&E(x),g&&w.clear&&delete w.clear}else b=d.getConstructor(n,t,y,x),c(b.prototype,e),u.NEED=!0;return p(b,t),S[t]=b,o(o.G+o.W+o.F*(b!=m),S),g||d.setStrong(b,t,y),b}},function(t,n,e){for(var r,o=e(1),i=e(14),c=e(29),u=c("typed_array"),a=c("view"),s=!(!o.ArrayBuffer||!o.DataView),f=s,l=0,h="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");l<9;)(r=o[h[l++]])?(i(r.prototype,u,!0),i(r.prototype,a,!0)):f=!1;t.exports={ABV:s,CONSTR:f,TYPED:u,VIEW:a}},function(t){t.exports=JSON.parse('{"ru":{"reset":"Сбросить","total-points":"Общий балл: ","show-review":"Показать отзыв","score":"Балл за выполнение","penalty":"Штрафные баллы","checked":"Проверено","add-review":"Добавить отзыв","change-review":"Изменить отзыв","cancel":"Отмена","save":"Сохранить","copied":"Скопировано!","copy-to-clipboard":"Скопировать в буфер","not-empty-feedback":"Фидбек не может быть пустым! Минимальная длина 8 символов","use-ctrl-enter":"Use Ctrl + Enter to save this feedback or ESC to cancel","review":"Отзыв: ","penalties":"Штрафы:","your-mark":"Ваша оценка - ","review-by-points":"Отзыв по пунктам ТЗ:","not-all-items":"Вы проверили не все пункты задания","remaining":"Осталось ","out-of":" из ","remaining-end":"","obligatory-feedback":"Вам необходимо оставить обязательный фидбек ко всем пунктам, где отмечено - ","partially-completed":"Выполнено частично","changed-assessment":"Вы изменили оценку. Возможно стоит изменить отзыв?","partially-completed-checked":"Вы отметили: выполнено частично. Обязательно оставьте фидбек!","result-descriptions":["Не выполненные/не засчитанные пункты:","Частично выполненные пункты:","Выполненные пункты:"],"check-marks":["не выполнено","выполнено частично","выполнено полностью"],"penalty-marks":["нет","да"],"point":"балла","points":"баллов"},"en":{"reset":"Reset","total-points":"Total points: ","show-review":"Show Review","score":"Completion score","penalty":"Penalty points","checked":"Checked","add-review":"Add a review","change-review":"Edit a Review","cancel":"Cancel","save":"Save","copied":"Copied!","copy-to-clipboard":"Copy to clipboard","not-empty-feedback":"Feedback cannot be empty! Minimum length 8 characters","use-ctrl-enter":"Use Ctrl + Enter to save this feedback or ESC to cancel","review":"Review: ","penalties":"Penalties:","your-mark":"Your rating - ","review-by-points":"Feedback on the points of the Terms of Reference:","not-all-items":"You have not checked all the items of the task","remaining":"","out-of":" of ","remaining-end":" left","obligatory-feedback":"You need to leave a mandatory feedback to all the points where it is marked - ","partially-completed":"Partially done","changed-assessment":"You have changed the rating. Perhaps you should change your review?","partially-completed-checked":"You noted: partially completed. Be sure to leave a feedback!","result-descriptions":["Items not completed / not counted:","Partially completed items:","Completed items:"],"check-marks":["not completed","partially completed","completed"],"penalty-marks":["no","yes"],"point":"points","points":"points"}}')},function(t,n,e){var r=e(4),o=e(1).document,i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,n,e){n.f=e(5)},function(t,n,e){var r=e(48)("keys"),o=e(29);t.exports=function(t){return r[t]||(r[t]=o(t))}},function(t,n){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,n,e){var r=e(1).document;t.exports=r&&r.documentElement},function(t,n,e){var r=e(4),o=e(3),i=function(t,n){if(o(t),!r(n)&&null!==n)throw TypeError(n+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,n,r){try{(r=e(17)(Function.call,e(20).f(Object.prototype,"__proto__").set,2))(t,[]),n=!(t instanceof Array)}catch(t){n=!0}return function(t,e){return i(t,e),n?t.__proto__=e:r(t,e),t}}({},!1):void 0),check:i}},function(t,n){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},function(t,n,e){var r=e(4),o=e(66).set;t.exports=function(t,n,e){var i,c=n.constructor;return c!==e&&"function"==typeof c&&(i=c.prototype)!==e.prototype&&r(i)&&o&&o(t,i),t}},function(t,n,e){"use strict";var r=e(19),o=e(24);t.exports=function(t){var n=String(o(this)),e="",i=r(t);if(i<0||i==1/0)throw RangeError("Count can't be negative");for(;i>0;(i>>>=1)&&(n+=n))1&i&&(e+=n);return e}},function(t,n){t.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},function(t,n){var e=Math.expm1;t.exports=!e||e(10)>22025.465794806718||e(10)<22025.465794806718||-2e-17!=e(-2e-17)?function(t){return 0==(t=+t)?t:t>-1e-6&&t<1e-6?t+t*t/2:Math.exp(t)-1}:e},function(t,n,e){var r=e(19),o=e(24);t.exports=function(t){return function(n,e){var i,c,u=String(o(n)),a=r(e),s=u.length;return a<0||a>=s?t?"":void 0:(i=u.charCodeAt(a))<55296||i>56319||a+1===s||(c=u.charCodeAt(a+1))<56320||c>57343?t?u.charAt(a):i:t?u.slice(a,a+2):c-56320+(i-55296<<10)+65536}}},function(t,n,e){"use strict";var r=e(30),o=e(0),i=e(11),c=e(14),u=e(40),a=e(103),s=e(38),f=e(35),l=e(5)("iterator"),h=!([].keys&&"next"in[].keys()),p=function(){return this};t.exports=function(t,n,e,v,d,y,g){a(e,n,v);var m,b,x,w=function(t){if(!h&&t in _)return _[t];switch(t){case"keys":case"values":return function(){return new e(this,t)}}return function(){return new e(this,t)}},S=n+" Iterator",E="values"==d,k=!1,_=t.prototype,L=_[l]||_["@@iterator"]||d&&_[d],O=L||w(d),F=d?E?w("entries"):O:void 0,M="Array"==n&&_.entries||L;if(M&&(x=f(M.call(new t)))!==Object.prototype&&x.next&&(s(x,S,!0),r||"function"==typeof x[l]||c(x,l,p)),E&&L&&"values"!==L.name&&(k=!0,O=function(){return L.call(this)}),r&&!g||!h&&!k&&_[l]||c(_,l,O),u[n]=O,u[S]=p,d)if(m={values:E?O:w("values"),keys:y?O:w("keys"),entries:F},g)for(b in m)b in _||i(_,b,m[b]);else o(o.P+o.F*(h||k),n,m);return m}},function(t,n,e){var r=e(75),o=e(24);t.exports=function(t,n,e){if(r(n))throw TypeError("String#"+e+" doesn't accept regex!");return String(o(t))}},function(t,n,e){var r=e(4),o=e(23),i=e(5)("match");t.exports=function(t){var n;return r(t)&&(void 0!==(n=t[i])?!!n:"RegExp"==o(t))}},function(t,n,e){var r=e(5)("match");t.exports=function(t){var n=/./;try{"/./"[t](n)}catch(e){try{return n[r]=!1,!"/./"[t](n)}catch(t){}}return!0}},function(t,n,e){var r=e(40),o=e(5)("iterator"),i=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||i[o]===t)}},function(t,n,e){"use strict";var r=e(9),o=e(28);t.exports=function(t,n,e){n in t?r.f(t,n,o(0,e)):t[n]=e}},function(t,n,e){var r=e(46),o=e(5)("iterator"),i=e(40);t.exports=e(7).getIteratorMethod=function(t){if(null!=t)return t[o]||t["@@iterator"]||i[r(t)]}},function(t,n,e){"use strict";var r=e(10),o=e(32),i=e(6);t.exports=function(t){for(var n=r(this),e=i(n.length),c=arguments.length,u=o(c>1?arguments[1]:void 0,e),a=c>2?arguments[2]:void 0,s=void 0===a?e:o(a,e);s>u;)n[u++]=t;return n}},function(t,n,e){"use strict";var r=e(36),o=e(108),i=e(40),c=e(15);t.exports=e(73)(Array,"Array",(function(t,n){this._t=c(t),this._i=0,this._k=n}),(function(){var t=this._t,n=this._k,e=this._i++;return!t||e>=t.length?(this._t=void 0,o(1)):o(0,"keys"==n?e:"values"==n?t[e]:[e,t[e]])}),"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(t,n,e){"use strict";var r,o,i=e(53),c=RegExp.prototype.exec,u=String.prototype.replace,a=c,s=(r=/a/,o=/b*/g,c.call(r,"a"),c.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),f=void 0!==/()??/.exec("")[1];(s||f)&&(a=function(t){var n,e,r,o,a=this;return f&&(e=new RegExp("^"+a.source+"$(?!\\s)",i.call(a))),s&&(n=a.lastIndex),r=c.call(a,t),s&&r&&(a.lastIndex=a.global?r.index+r[0].length:n),f&&r&&r.length>1&&u.call(r[0],e,(function(){for(o=1;oe;)n.push(arguments[e++]);return g[++y]=function(){u("function"==typeof t?t:Function(t),n)},r(y),y},p=function(t){delete g[t]},"process"==e(23)(l)?r=function(t){l.nextTick(c(m,t,1))}:d&&d.now?r=function(t){d.now(c(m,t,1))}:v?(i=(o=new v).port2,o.port1.onmessage=b,r=c(i.postMessage,i,1)):f.addEventListener&&"function"==typeof postMessage&&!f.importScripts?(r=function(t){f.postMessage(t+"","*")},f.addEventListener("message",b,!1)):r="onreadystatechange"in s("script")?function(t){a.appendChild(s("script")).onreadystatechange=function(){a.removeChild(this),m.call(t)}}:function(t){setTimeout(c(m,t,1),0)}),t.exports={set:h,clear:p}},function(t,n,e){"use strict";var r=e(1),o=e(8),i=e(30),c=e(59),u=e(14),a=e(43),s=e(2),f=e(42),l=e(19),h=e(6),p=e(116),v=e(34).f,d=e(9).f,y=e(80),g=e(38),m=r.ArrayBuffer,b=r.DataView,x=r.Math,w=r.RangeError,S=r.Infinity,E=m,k=x.abs,_=x.pow,L=x.floor,O=x.log,F=x.LN2,M=o?"_b":"buffer",P=o?"_l":"byteLength",A=o?"_o":"byteOffset";function j(t,n,e){var r,o,i,c=new Array(e),u=8*e-n-1,a=(1<>1,f=23===n?_(2,-24)-_(2,-77):0,l=0,h=t<0||0===t&&1/t<0?1:0;for((t=k(t))!=t||t===S?(o=t!=t?1:0,r=a):(r=L(O(t)/F),t*(i=_(2,-r))<1&&(r--,i*=2),(t+=r+s>=1?f/i:f*_(2,1-s))*i>=2&&(r++,i/=2),r+s>=a?(o=0,r=a):r+s>=1?(o=(t*i-1)*_(2,n),r+=s):(o=t*_(2,s-1)*_(2,n),r=0));n>=8;c[l++]=255&o,o/=256,n-=8);for(r=r<0;c[l++]=255&r,r/=256,u-=8);return c[--l]|=128*h,c}function T(t,n,e){var r,o=8*e-n-1,i=(1<>1,u=o-7,a=e-1,s=t[a--],f=127&s;for(s>>=7;u>0;f=256*f+t[a],a--,u-=8);for(r=f&(1<<-u)-1,f>>=-u,u+=n;u>0;r=256*r+t[a],a--,u-=8);if(0===f)f=1-c;else{if(f===i)return r?NaN:s?-S:S;r+=_(2,n),f-=c}return(s?-1:1)*r*_(2,f-n)}function I(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]}function N(t){return[255&t]}function C(t){return[255&t,t>>8&255]}function R(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]}function D(t){return j(t,52,8)}function q(t){return j(t,23,4)}function W(t,n,e){d(t.prototype,n,{get:function(){return this[e]}})}function G(t,n,e,r){var o=p(+e);if(o+n>t[P])throw w("Wrong index!");var i=t[M]._b,c=o+t[A],u=i.slice(c,c+n);return r?u:u.reverse()}function U(t,n,e,r,o,i){var c=p(+e);if(c+n>t[P])throw w("Wrong index!");for(var u=t[M]._b,a=c+t[A],s=r(+o),f=0;fY;)(V=H[Y++])in m||u(m,V,E[V]);i||(B.constructor=m)}var z=new b(new m(2)),$=b.prototype.setInt8;z.setInt8(0,2147483648),z.setInt8(1,2147483649),!z.getInt8(0)&&z.getInt8(1)||a(b.prototype,{setInt8:function(t,n){$.call(this,t,n<<24>>24)},setUint8:function(t,n){$.call(this,t,n<<24>>24)}},!0)}else m=function(t){f(this,m,"ArrayBuffer");var n=p(t);this._b=y.call(new Array(n),0),this[P]=n},b=function(t,n,e){f(this,b,"DataView"),f(t,m,"DataView");var r=t[P],o=l(n);if(o<0||o>r)throw w("Wrong offset!");if(o+(e=void 0===e?r-o:h(e))>r)throw w("Wrong length!");this[M]=t,this[A]=o,this[P]=e},o&&(W(m,"byteLength","_l"),W(b,"buffer","_b"),W(b,"byteLength","_l"),W(b,"byteOffset","_o")),a(b.prototype,{getInt8:function(t){return G(this,1,t)[0]<<24>>24},getUint8:function(t){return G(this,1,t)[0]},getInt16:function(t){var n=G(this,2,t,arguments[1]);return(n[1]<<8|n[0])<<16>>16},getUint16:function(t){var n=G(this,2,t,arguments[1]);return n[1]<<8|n[0]},getInt32:function(t){return I(G(this,4,t,arguments[1]))},getUint32:function(t){return I(G(this,4,t,arguments[1]))>>>0},getFloat32:function(t){return T(G(this,4,t,arguments[1]),23,4)},getFloat64:function(t){return T(G(this,8,t,arguments[1]),52,8)},setInt8:function(t,n){U(this,1,t,N,n)},setUint8:function(t,n){U(this,1,t,N,n)},setInt16:function(t,n){U(this,2,t,C,n,arguments[2])},setUint16:function(t,n){U(this,2,t,C,n,arguments[2])},setInt32:function(t,n){U(this,4,t,R,n,arguments[2])},setUint32:function(t,n){U(this,4,t,R,n,arguments[2])},setFloat32:function(t,n){U(this,4,t,q,n,arguments[2])},setFloat64:function(t,n){U(this,8,t,D,n,arguments[2])}});g(m,"ArrayBuffer"),g(b,"DataView"),u(b.prototype,c.VIEW,!0),n.ArrayBuffer=m,n.DataView=b},function(t,n){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,e){t.exports=!e(121)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,n,e){t.exports=!e(8)&&!e(2)((function(){return 7!=Object.defineProperty(e(61)("div"),"a",{get:function(){return 7}}).a}))},function(t,n,e){var r=e(1),o=e(7),i=e(30),c=e(62),u=e(9).f;t.exports=function(t){var n=o.Symbol||(o.Symbol=i?{}:r.Symbol||{});"_"==t.charAt(0)||t in n||u(n,t,{value:c.f(t)})}},function(t,n,e){var r=e(13),o=e(15),i=e(49)(!1),c=e(63)("IE_PROTO");t.exports=function(t,n){var e,u=o(t),a=0,s=[];for(e in u)e!=c&&r(u,e)&&s.push(e);for(;n.length>a;)r(u,e=n[a++])&&(~i(s,e)||s.push(e));return s}},function(t,n,e){var r=e(9),o=e(3),i=e(31);t.exports=e(8)?Object.defineProperties:function(t,n){o(t);for(var e,c=i(n),u=c.length,a=0;u>a;)r.f(t,e=c[a++],n[e]);return t}},function(t,n,e){var r=e(15),o=e(34).f,i={}.toString,c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return c&&"[object Window]"==i.call(t)?function(t){try{return o(t)}catch(t){return c.slice()}}(t):o(r(t))}},function(t,n,e){"use strict";var r=e(8),o=e(31),i=e(50),c=e(45),u=e(10),a=e(44),s=Object.assign;t.exports=!s||e(2)((function(){var t={},n={},e=Symbol(),r="abcdefghijklmnopqrst";return t[e]=7,r.split("").forEach((function(t){n[t]=t})),7!=s({},t)[e]||Object.keys(s({},n)).join("")!=r}))?function(t,n){for(var e=u(t),s=arguments.length,f=1,l=i.f,h=c.f;s>f;)for(var p,v=a(arguments[f++]),d=l?o(v).concat(l(v)):o(v),y=d.length,g=0;y>g;)p=d[g++],r&&!h.call(v,p)||(e[p]=v[p]);return e}:s},function(t,n){t.exports=Object.is||function(t,n){return t===n?0!==t||1/t==1/n:t!=t&&n!=n}},function(t,n,e){"use strict";var r=e(18),o=e(4),i=e(97),c=[].slice,u={},a=function(t,n,e){if(!(n in u)){for(var r=[],o=0;o>>0||(c.test(e)?16:10))}:r},function(t,n,e){var r=e(1).parseFloat,o=e(39).trim;t.exports=1/r(e(67)+"-0")!=-1/0?function(t){var n=o(String(t),3),e=r(n);return 0===e&&"-"==n.charAt(0)?-0:e}:r},function(t,n,e){var r=e(23);t.exports=function(t,n){if("number"!=typeof t&&"Number"!=r(t))throw TypeError(n);return+t}},function(t,n,e){var r=e(4),o=Math.floor;t.exports=function(t){return!r(t)&&isFinite(t)&&o(t)===t}},function(t,n){t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:Math.log(1+t)}},function(t,n,e){"use strict";var r=e(33),o=e(28),i=e(38),c={};e(14)(c,e(5)("iterator"),(function(){return this})),t.exports=function(t,n,e){t.prototype=r(c,{next:o(1,e)}),i(t,n+" Iterator")}},function(t,n,e){var r=e(3);t.exports=function(t,n,e,o){try{return o?n(r(e)[0],e[1]):n(e)}catch(n){var i=t.return;throw void 0!==i&&r(i.call(t)),n}}},function(t,n,e){var r=e(217);t.exports=function(t,n){return new(r(t))(n)}},function(t,n,e){var r=e(18),o=e(10),i=e(44),c=e(6);t.exports=function(t,n,e,u,a){r(n);var s=o(t),f=i(s),l=c(s.length),h=a?l-1:0,p=a?-1:1;if(e<2)for(;;){if(h in f){u=f[h],h+=p;break}if(h+=p,a?h<0:l<=h)throw TypeError("Reduce of empty array with no initial value")}for(;a?h>=0:l>h;h+=p)h in f&&(u=n(u,f[h],h,s));return u}},function(t,n,e){"use strict";var r=e(10),o=e(32),i=e(6);t.exports=[].copyWithin||function(t,n){var e=r(this),c=i(e.length),u=o(t,c),a=o(n,c),s=arguments.length>2?arguments[2]:void 0,f=Math.min((void 0===s?c:o(s,c))-a,c-u),l=1;for(a0;)a in e?e[u]=e[a]:delete e[u],u+=l,a+=l;return e}},function(t,n){t.exports=function(t,n){return{value:n,done:!!t}}},function(t,n,e){"use strict";var r=e(82);e(0)({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},function(t,n,e){e(8)&&"g"!=/./g.flags&&e(9).f(RegExp.prototype,"flags",{configurable:!0,get:e(53)})},function(t,n,e){"use strict";var r,o,i,c,u=e(30),a=e(1),s=e(17),f=e(46),l=e(0),h=e(4),p=e(18),v=e(42),d=e(56),y=e(47),g=e(84).set,m=e(237)(),b=e(112),x=e(238),w=e(57),S=e(113),E=a.TypeError,k=a.process,_=k&&k.versions,L=_&&_.v8||"",O=a.Promise,F="process"==f(k),M=function(){},P=o=b.f,A=!!function(){try{var t=O.resolve(1),n=(t.constructor={})[e(5)("species")]=function(t){t(M,M)};return(F||"function"==typeof PromiseRejectionEvent)&&t.then(M)instanceof n&&0!==L.indexOf("6.6")&&-1===w.indexOf("Chrome/66")}catch(t){}}(),j=function(t){var n;return!(!h(t)||"function"!=typeof(n=t.then))&&n},T=function(t,n){if(!t._n){t._n=!0;var e=t._c;m((function(){for(var r=t._v,o=1==t._s,i=0,c=function(n){var e,i,c,u=o?n.ok:n.fail,a=n.resolve,s=n.reject,f=n.domain;try{u?(o||(2==t._h&&C(t),t._h=1),!0===u?e=r:(f&&f.enter(),e=u(r),f&&(f.exit(),c=!0)),e===n.promise?s(E("Promise-chain cycle")):(i=j(e))?i.call(e,a,s):a(e)):s(r)}catch(t){f&&!c&&f.exit(),s(t)}};e.length>i;)c(e[i++]);t._c=[],t._n=!1,n&&!t._h&&I(t)}))}},I=function(t){g.call(a,(function(){var n,e,r,o=t._v,i=N(t);if(i&&(n=x((function(){F?k.emit("unhandledRejection",o,t):(e=a.onunhandledrejection)?e({promise:t,reason:o}):(r=a.console)&&r.error&&r.error("Unhandled promise rejection",o)})),t._h=F||N(t)?2:1),t._a=void 0,i&&n.e)throw n.v}))},N=function(t){return 1!==t._h&&0===(t._a||t._c).length},C=function(t){g.call(a,(function(){var n;F?k.emit("rejectionHandled",t):(n=a.onrejectionhandled)&&n({promise:t,reason:t._v})}))},R=function(t){var n=this;n._d||(n._d=!0,(n=n._w||n)._v=t,n._s=2,n._a||(n._a=n._c.slice()),T(n,!0))},D=function(t){var n,e=this;if(!e._d){e._d=!0,e=e._w||e;try{if(e===t)throw E("Promise can't be resolved itself");(n=j(t))?m((function(){var r={_w:e,_d:!1};try{n.call(t,s(D,r,1),s(R,r,1))}catch(t){R.call(r,t)}})):(e._v=t,e._s=1,T(e,!1))}catch(t){R.call({_w:e,_d:!1},t)}}};A||(O=function(t){v(this,O,"Promise","_h"),p(t),r.call(this);try{t(s(D,this,1),s(R,this,1))}catch(t){R.call(this,t)}},(r=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=e(43)(O.prototype,{then:function(t,n){var e=P(y(this,O));return e.ok="function"!=typeof t||t,e.fail="function"==typeof n&&n,e.domain=F?k.domain:void 0,this._c.push(e),this._a&&this._a.push(e),this._s&&T(this,!1),e.promise},catch:function(t){return this.then(void 0,t)}}),i=function(){var t=new r;this.promise=t,this.resolve=s(D,t,1),this.reject=s(R,t,1)},b.f=P=function(t){return t===O||t===c?new i(t):o(t)}),l(l.G+l.W+l.F*!A,{Promise:O}),e(38)(O,"Promise"),e(41)("Promise"),c=e(7).Promise,l(l.S+l.F*!A,"Promise",{reject:function(t){var n=P(this);return(0,n.reject)(t),n.promise}}),l(l.S+l.F*(u||!A),"Promise",{resolve:function(t){return S(u&&this===c?O:this,t)}}),l(l.S+l.F*!(A&&e(52)((function(t){O.all(t).catch(M)}))),"Promise",{all:function(t){var n=this,e=P(n),r=e.resolve,o=e.reject,i=x((function(){var e=[],i=0,c=1;d(t,!1,(function(t){var u=i++,a=!1;e.push(void 0),c++,n.resolve(t).then((function(t){a||(a=!0,e[u]=t,--c||r(e))}),o)})),--c||r(e)}));return i.e&&o(i.v),e.promise},race:function(t){var n=this,e=P(n),r=e.reject,o=x((function(){d(t,!1,(function(t){n.resolve(t).then(e.resolve,r)}))}));return o.e&&r(o.v),e.promise}})},function(t,n,e){"use strict";var r=e(18);function o(t){var n,e;this.promise=new t((function(t,r){if(void 0!==n||void 0!==e)throw TypeError("Bad Promise constructor");n=t,e=r})),this.resolve=r(n),this.reject=r(e)}t.exports.f=function(t){return new o(t)}},function(t,n,e){var r=e(3),o=e(4),i=e(112);t.exports=function(t,n){if(r(t),o(n)&&n.constructor===t)return n;var e=i.f(t);return(0,e.resolve)(n),e.promise}},function(t,n,e){"use strict";var r=e(9).f,o=e(33),i=e(43),c=e(17),u=e(42),a=e(56),s=e(73),f=e(108),l=e(41),h=e(8),p=e(27).fastKey,v=e(37),d=h?"_s":"size",y=function(t,n){var e,r=p(n);if("F"!==r)return t._i[r];for(e=t._f;e;e=e.n)if(e.k==n)return e};t.exports={getConstructor:function(t,n,e,s){var f=t((function(t,r){u(t,f,n,"_i"),t._t=n,t._i=o(null),t._f=void 0,t._l=void 0,t[d]=0,null!=r&&a(r,e,t[s],t)}));return i(f.prototype,{clear:function(){for(var t=v(this,n),e=t._i,r=t._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete e[r.i];t._f=t._l=void 0,t[d]=0},delete:function(t){var e=v(this,n),r=y(e,t);if(r){var o=r.n,i=r.p;delete e._i[r.i],r.r=!0,i&&(i.n=o),o&&(o.p=i),e._f==r&&(e._f=o),e._l==r&&(e._l=i),e[d]--}return!!r},forEach:function(t){v(this,n);for(var e,r=c(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.n:this._f;)for(r(e.v,e.k,this);e&&e.r;)e=e.p},has:function(t){return!!y(v(this,n),t)}}),h&&r(f.prototype,"size",{get:function(){return v(this,n)[d]}}),f},def:function(t,n,e){var r,o,i=y(t,n);return i?i.v=e:(t._l=i={i:o=p(n,!0),k:n,v:e,p:r=t._l,n:void 0,r:!1},t._f||(t._f=i),r&&(r.n=i),t[d]++,"F"!==o&&(t._i[o]=i)),t},getEntry:y,setStrong:function(t,n,e){s(t,n,(function(t,e){this._t=v(t,n),this._k=e,this._l=void 0}),(function(){for(var t=this._k,n=this._l;n&&n.r;)n=n.p;return this._t&&(this._l=n=n?n.n:this._t._f)?f(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(this._t=void 0,f(1))}),e?"entries":"values",!e,!0),l(n)}}},function(t,n,e){"use strict";var r=e(43),o=e(27).getWeak,i=e(3),c=e(4),u=e(42),a=e(56),s=e(22),f=e(13),l=e(37),h=s(5),p=s(6),v=0,d=function(t){return t._l||(t._l=new y)},y=function(){this.a=[]},g=function(t,n){return h(t.a,(function(t){return t[0]===n}))};y.prototype={get:function(t){var n=g(this,t);if(n)return n[1]},has:function(t){return!!g(this,t)},set:function(t,n){var e=g(this,t);e?e[1]=n:this.a.push([t,n])},delete:function(t){var n=p(this.a,(function(n){return n[0]===t}));return~n&&this.a.splice(n,1),!!~n}},t.exports={getConstructor:function(t,n,e,i){var s=t((function(t,r){u(t,s,n,"_i"),t._t=n,t._i=v++,t._l=void 0,null!=r&&a(r,e,t[i],t)}));return r(s.prototype,{delete:function(t){if(!c(t))return!1;var e=o(t);return!0===e?d(l(this,n)).delete(t):e&&f(e,this._i)&&delete e[this._i]},has:function(t){if(!c(t))return!1;var e=o(t);return!0===e?d(l(this,n)).has(t):e&&f(e,this._i)}}),s},def:function(t,n,e){var r=o(i(n),!0);return!0===r?d(t).set(n,e):r[t._i]=e,t},ufstore:d}},function(t,n,e){var r=e(19),o=e(6);t.exports=function(t){if(void 0===t)return 0;var n=r(t),e=o(n);if(n!==e)throw RangeError("Wrong length!");return e}},function(t,n,e){var r=e(34),o=e(50),i=e(3),c=e(1).Reflect;t.exports=c&&c.ownKeys||function(t){var n=r.f(i(t)),e=o.f;return e?n.concat(e(t)):n}},function(t,n,e){var r=e(6),o=e(69),i=e(24);t.exports=function(t,n,e,c){var u=String(i(t)),a=u.length,s=void 0===e?" ":String(e),f=r(n);if(f<=a||""==s)return u;var l=f-a,h=o.call(s,Math.ceil(l/s.length));return h.length>l&&(h=h.slice(0,l)),c?h+u:u+h}},function(t,n,e){var r=e(8),o=e(31),i=e(15),c=e(45).f;t.exports=function(t){return function(n){for(var e,u=i(n),a=o(u),s=a.length,f=0,l=[];s>f;)e=a[f++],r&&!c.call(u,e)||l.push(t?[e,u[e]]:u[e]);return l}}},function(t,n){var e=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=e)},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n,e){e(123),t.exports=e(309)},function(t,n,e){"use strict";e(124);var r,o=(r=e(296))&&r.__esModule?r:{default:r};o.default._babelPolyfill&&"undefined"!=typeof console&&console.warn&&console.warn("@babel/polyfill is loaded more than once on this page. This is probably not desirable/intended and may have consequences if different versions of the polyfills are applied sequentially. If you do need to load the polyfill more than once, use @babel/polyfill/noConflict instead to bypass the warning."),o.default._babelPolyfill=!0},function(t,n,e){"use strict";e(125),e(268),e(270),e(273),e(275),e(277),e(279),e(281),e(283),e(285),e(287),e(289),e(291),e(295)},function(t,n,e){e(126),e(129),e(130),e(131),e(132),e(133),e(134),e(135),e(136),e(137),e(138),e(139),e(140),e(141),e(142),e(143),e(144),e(145),e(146),e(147),e(148),e(149),e(150),e(151),e(152),e(153),e(154),e(155),e(156),e(157),e(158),e(159),e(160),e(161),e(162),e(163),e(164),e(165),e(166),e(167),e(168),e(169),e(170),e(172),e(173),e(174),e(175),e(176),e(177),e(178),e(179),e(180),e(181),e(182),e(183),e(184),e(185),e(186),e(187),e(188),e(189),e(190),e(191),e(192),e(193),e(194),e(195),e(196),e(197),e(198),e(199),e(200),e(201),e(202),e(203),e(204),e(205),e(207),e(208),e(210),e(211),e(212),e(213),e(214),e(215),e(216),e(218),e(219),e(220),e(221),e(222),e(223),e(224),e(225),e(226),e(227),e(228),e(229),e(230),e(81),e(231),e(109),e(232),e(110),e(233),e(234),e(235),e(236),e(111),e(239),e(240),e(241),e(242),e(243),e(244),e(245),e(246),e(247),e(248),e(249),e(250),e(251),e(252),e(253),e(254),e(255),e(256),e(257),e(258),e(259),e(260),e(261),e(262),e(263),e(264),e(265),e(266),e(267),t.exports=e(7)},function(t,n,e){"use strict";var r=e(1),o=e(13),i=e(8),c=e(0),u=e(11),a=e(27).KEY,s=e(2),f=e(48),l=e(38),h=e(29),p=e(5),v=e(62),d=e(90),y=e(128),g=e(51),m=e(3),b=e(4),x=e(10),w=e(15),S=e(26),E=e(28),k=e(33),_=e(93),L=e(20),O=e(50),F=e(9),M=e(31),P=L.f,A=F.f,j=_.f,T=r.Symbol,I=r.JSON,N=I&&I.stringify,C=p("_hidden"),R=p("toPrimitive"),D={}.propertyIsEnumerable,q=f("symbol-registry"),W=f("symbols"),G=f("op-symbols"),U=Object.prototype,V="function"==typeof T&&!!O.f,B=r.QObject,H=!B||!B.prototype||!B.prototype.findChild,Y=i&&s((function(){return 7!=k(A({},"a",{get:function(){return A(this,"a",{value:7}).a}})).a}))?function(t,n,e){var r=P(U,n);r&&delete U[n],A(t,n,e),r&&t!==U&&A(U,n,r)}:A,z=function(t){var n=W[t]=k(T.prototype);return n._k=t,n},$=V&&"symbol"==typeof T.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof T},K=function(t,n,e){return t===U&&K(G,n,e),m(t),n=S(n,!0),m(e),o(W,n)?(e.enumerable?(o(t,C)&&t[C][n]&&(t[C][n]=!1),e=k(e,{enumerable:E(0,!1)})):(o(t,C)||A(t,C,E(1,{})),t[C][n]=!0),Y(t,n,e)):A(t,n,e)},J=function(t,n){m(t);for(var e,r=y(n=w(n)),o=0,i=r.length;i>o;)K(t,e=r[o++],n[e]);return t},X=function(t){var n=D.call(this,t=S(t,!0));return!(this===U&&o(W,t)&&!o(G,t))&&(!(n||!o(this,t)||!o(W,t)||o(this,C)&&this[C][t])||n)},Z=function(t,n){if(t=w(t),n=S(n,!0),t!==U||!o(W,n)||o(G,n)){var e=P(t,n);return!e||!o(W,n)||o(t,C)&&t[C][n]||(e.enumerable=!0),e}},Q=function(t){for(var n,e=j(w(t)),r=[],i=0;e.length>i;)o(W,n=e[i++])||n==C||n==a||r.push(n);return r},tt=function(t){for(var n,e=t===U,r=j(e?G:w(t)),i=[],c=0;r.length>c;)!o(W,n=r[c++])||e&&!o(U,n)||i.push(W[n]);return i};V||(u((T=function(){if(this instanceof T)throw TypeError("Symbol is not a constructor!");var t=h(arguments.length>0?arguments[0]:void 0),n=function(e){this===U&&n.call(G,e),o(this,C)&&o(this[C],t)&&(this[C][t]=!1),Y(this,t,E(1,e))};return i&&H&&Y(U,t,{configurable:!0,set:n}),z(t)}).prototype,"toString",(function(){return this._k})),L.f=Z,F.f=K,e(34).f=_.f=Q,e(45).f=X,O.f=tt,i&&!e(30)&&u(U,"propertyIsEnumerable",X,!0),v.f=function(t){return z(p(t))}),c(c.G+c.W+c.F*!V,{Symbol:T});for(var nt="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),et=0;nt.length>et;)p(nt[et++]);for(var rt=M(p.store),ot=0;rt.length>ot;)d(rt[ot++]);c(c.S+c.F*!V,"Symbol",{for:function(t){return o(q,t+="")?q[t]:q[t]=T(t)},keyFor:function(t){if(!$(t))throw TypeError(t+" is not a symbol!");for(var n in q)if(q[n]===t)return n},useSetter:function(){H=!0},useSimple:function(){H=!1}}),c(c.S+c.F*!V,"Object",{create:function(t,n){return void 0===n?k(t):J(k(t),n)},defineProperty:K,defineProperties:J,getOwnPropertyDescriptor:Z,getOwnPropertyNames:Q,getOwnPropertySymbols:tt});var it=s((function(){O.f(1)}));c(c.S+c.F*it,"Object",{getOwnPropertySymbols:function(t){return O.f(x(t))}}),I&&c(c.S+c.F*(!V||s((function(){var t=T();return"[null]"!=N([t])||"{}"!=N({a:t})||"{}"!=N(Object(t))}))),"JSON",{stringify:function(t){for(var n,e,r=[t],o=1;arguments.length>o;)r.push(arguments[o++]);if(e=n=r[1],(b(n)||void 0!==t)&&!$(t))return g(n)||(n=function(t,n){if("function"==typeof e&&(n=e.call(this,t,n)),!$(n))return n}),r[1]=n,N.apply(I,r)}}),T.prototype[R]||e(14)(T.prototype,R,T.prototype.valueOf),l(T,"Symbol"),l(Math,"Math",!0),l(r.JSON,"JSON",!0)},function(t,n,e){t.exports=e(48)("native-function-to-string",Function.toString)},function(t,n,e){var r=e(31),o=e(50),i=e(45);t.exports=function(t){var n=r(t),e=o.f;if(e)for(var c,u=e(t),a=i.f,s=0;u.length>s;)a.call(t,c=u[s++])&&n.push(c);return n}},function(t,n,e){var r=e(0);r(r.S,"Object",{create:e(33)})},function(t,n,e){var r=e(0);r(r.S+r.F*!e(8),"Object",{defineProperty:e(9).f})},function(t,n,e){var r=e(0);r(r.S+r.F*!e(8),"Object",{defineProperties:e(92)})},function(t,n,e){var r=e(15),o=e(20).f;e(21)("getOwnPropertyDescriptor",(function(){return function(t,n){return o(r(t),n)}}))},function(t,n,e){var r=e(10),o=e(35);e(21)("getPrototypeOf",(function(){return function(t){return o(r(t))}}))},function(t,n,e){var r=e(10),o=e(31);e(21)("keys",(function(){return function(t){return o(r(t))}}))},function(t,n,e){e(21)("getOwnPropertyNames",(function(){return e(93).f}))},function(t,n,e){var r=e(4),o=e(27).onFreeze;e(21)("freeze",(function(t){return function(n){return t&&r(n)?t(o(n)):n}}))},function(t,n,e){var r=e(4),o=e(27).onFreeze;e(21)("seal",(function(t){return function(n){return t&&r(n)?t(o(n)):n}}))},function(t,n,e){var r=e(4),o=e(27).onFreeze;e(21)("preventExtensions",(function(t){return function(n){return t&&r(n)?t(o(n)):n}}))},function(t,n,e){var r=e(4);e(21)("isFrozen",(function(t){return function(n){return!r(n)||!!t&&t(n)}}))},function(t,n,e){var r=e(4);e(21)("isSealed",(function(t){return function(n){return!r(n)||!!t&&t(n)}}))},function(t,n,e){var r=e(4);e(21)("isExtensible",(function(t){return function(n){return!!r(n)&&(!t||t(n))}}))},function(t,n,e){var r=e(0);r(r.S+r.F,"Object",{assign:e(94)})},function(t,n,e){var r=e(0);r(r.S,"Object",{is:e(95)})},function(t,n,e){var r=e(0);r(r.S,"Object",{setPrototypeOf:e(66).set})},function(t,n,e){"use strict";var r=e(46),o={};o[e(5)("toStringTag")]="z",o+""!="[object z]"&&e(11)(Object.prototype,"toString",(function(){return"[object "+r(this)+"]"}),!0)},function(t,n,e){var r=e(0);r(r.P,"Function",{bind:e(96)})},function(t,n,e){var r=e(9).f,o=Function.prototype,i=/^\s*function ([^ (]*)/;"name"in o||e(8)&&r(o,"name",{configurable:!0,get:function(){try{return(""+this).match(i)[1]}catch(t){return""}}})},function(t,n,e){"use strict";var r=e(4),o=e(35),i=e(5)("hasInstance"),c=Function.prototype;i in c||e(9).f(c,i,{value:function(t){if("function"!=typeof this||!r(t))return!1;if(!r(this.prototype))return t instanceof this;for(;t=o(t);)if(this.prototype===t)return!0;return!1}})},function(t,n,e){var r=e(0),o=e(98);r(r.G+r.F*(parseInt!=o),{parseInt:o})},function(t,n,e){var r=e(0),o=e(99);r(r.G+r.F*(parseFloat!=o),{parseFloat:o})},function(t,n,e){"use strict";var r=e(1),o=e(13),i=e(23),c=e(68),u=e(26),a=e(2),s=e(34).f,f=e(20).f,l=e(9).f,h=e(39).trim,p=r.Number,v=p,d=p.prototype,y="Number"==i(e(33)(d)),g="trim"in String.prototype,m=function(t){var n=u(t,!1);if("string"==typeof n&&n.length>2){var e,r,o,i=(n=g?n.trim():h(n,3)).charCodeAt(0);if(43===i||45===i){if(88===(e=n.charCodeAt(2))||120===e)return NaN}else if(48===i){switch(n.charCodeAt(1)){case 66:case 98:r=2,o=49;break;case 79:case 111:r=8,o=55;break;default:return+n}for(var c,a=n.slice(2),s=0,f=a.length;so)return NaN;return parseInt(a,r)}}return+n};if(!p(" 0o1")||!p("0b1")||p("+0x1")){p=function(t){var n=arguments.length<1?0:t,e=this;return e instanceof p&&(y?a((function(){d.valueOf.call(e)})):"Number"!=i(e))?c(new v(m(n)),e,p):m(n)};for(var b,x=e(8)?s(v):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;x.length>w;w++)o(v,b=x[w])&&!o(p,b)&&l(p,b,f(v,b));p.prototype=d,d.constructor=p,e(11)(r,"Number",p)}},function(t,n,e){"use strict";var r=e(0),o=e(19),i=e(100),c=e(69),u=1..toFixed,a=Math.floor,s=[0,0,0,0,0,0],f="Number.toFixed: incorrect invocation!",l=function(t,n){for(var e=-1,r=n;++e<6;)r+=t*s[e],s[e]=r%1e7,r=a(r/1e7)},h=function(t){for(var n=6,e=0;--n>=0;)e+=s[n],s[n]=a(e/t),e=e%t*1e7},p=function(){for(var t=6,n="";--t>=0;)if(""!==n||0===t||0!==s[t]){var e=String(s[t]);n=""===n?e:n+c.call("0",7-e.length)+e}return n},v=function(t,n,e){return 0===n?e:n%2==1?v(t,n-1,e*t):v(t*t,n/2,e)};r(r.P+r.F*(!!u&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!e(2)((function(){u.call({})}))),"Number",{toFixed:function(t){var n,e,r,u,a=i(this,f),s=o(t),d="",y="0";if(s<0||s>20)throw RangeError(f);if(a!=a)return"NaN";if(a<=-1e21||a>=1e21)return String(a);if(a<0&&(d="-",a=-a),a>1e-21)if(e=(n=function(t){for(var n=0,e=t;e>=4096;)n+=12,e/=4096;for(;e>=2;)n+=1,e/=2;return n}(a*v(2,69,1))-69)<0?a*v(2,-n,1):a/v(2,n,1),e*=4503599627370496,(n=52-n)>0){for(l(0,e),r=s;r>=7;)l(1e7,0),r-=7;for(l(v(10,r,1),0),r=n-1;r>=23;)h(1<<23),r-=23;h(1<0?d+((u=y.length)<=s?"0."+c.call("0",s-u)+y:y.slice(0,u-s)+"."+y.slice(u-s)):d+y}})},function(t,n,e){"use strict";var r=e(0),o=e(2),i=e(100),c=1..toPrecision;r(r.P+r.F*(o((function(){return"1"!==c.call(1,void 0)}))||!o((function(){c.call({})}))),"Number",{toPrecision:function(t){var n=i(this,"Number#toPrecision: incorrect invocation!");return void 0===t?c.call(n):c.call(n,t)}})},function(t,n,e){var r=e(0);r(r.S,"Number",{EPSILON:Math.pow(2,-52)})},function(t,n,e){var r=e(0),o=e(1).isFinite;r(r.S,"Number",{isFinite:function(t){return"number"==typeof t&&o(t)}})},function(t,n,e){var r=e(0);r(r.S,"Number",{isInteger:e(101)})},function(t,n,e){var r=e(0);r(r.S,"Number",{isNaN:function(t){return t!=t}})},function(t,n,e){var r=e(0),o=e(101),i=Math.abs;r(r.S,"Number",{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},function(t,n,e){var r=e(0);r(r.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},function(t,n,e){var r=e(0);r(r.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},function(t,n,e){var r=e(0),o=e(99);r(r.S+r.F*(Number.parseFloat!=o),"Number",{parseFloat:o})},function(t,n,e){var r=e(0),o=e(98);r(r.S+r.F*(Number.parseInt!=o),"Number",{parseInt:o})},function(t,n,e){var r=e(0),o=e(102),i=Math.sqrt,c=Math.acosh;r(r.S+r.F*!(c&&710==Math.floor(c(Number.MAX_VALUE))&&c(1/0)==1/0),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:o(t-1+i(t-1)*i(t+1))}})},function(t,n,e){var r=e(0),o=Math.asinh;r(r.S+r.F*!(o&&1/o(0)>0),"Math",{asinh:function t(n){return isFinite(n=+n)&&0!=n?n<0?-t(-n):Math.log(n+Math.sqrt(n*n+1)):n}})},function(t,n,e){var r=e(0),o=Math.atanh;r(r.S+r.F*!(o&&1/o(-0)<0),"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},function(t,n,e){var r=e(0),o=e(70);r(r.S,"Math",{cbrt:function(t){return o(t=+t)*Math.pow(Math.abs(t),1/3)}})},function(t,n,e){var r=e(0);r(r.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},function(t,n,e){var r=e(0),o=Math.exp;r(r.S,"Math",{cosh:function(t){return(o(t=+t)+o(-t))/2}})},function(t,n,e){var r=e(0),o=e(71);r(r.S+r.F*(o!=Math.expm1),"Math",{expm1:o})},function(t,n,e){var r=e(0);r(r.S,"Math",{fround:e(171)})},function(t,n,e){var r=e(70),o=Math.pow,i=o(2,-52),c=o(2,-23),u=o(2,127)*(2-c),a=o(2,-126);t.exports=Math.fround||function(t){var n,e,o=Math.abs(t),s=r(t);return ou||e!=e?s*(1/0):s*e}},function(t,n,e){var r=e(0),o=Math.abs;r(r.S,"Math",{hypot:function(t,n){for(var e,r,i=0,c=0,u=arguments.length,a=0;c0?(r=e/a)*r:e;return a===1/0?1/0:a*Math.sqrt(i)}})},function(t,n,e){var r=e(0),o=Math.imul;r(r.S+r.F*e(2)((function(){return-5!=o(4294967295,5)||2!=o.length})),"Math",{imul:function(t,n){var e=+t,r=+n,o=65535&e,i=65535&r;return 0|o*i+((65535&e>>>16)*i+o*(65535&r>>>16)<<16>>>0)}})},function(t,n,e){var r=e(0);r(r.S,"Math",{log10:function(t){return Math.log(t)*Math.LOG10E}})},function(t,n,e){var r=e(0);r(r.S,"Math",{log1p:e(102)})},function(t,n,e){var r=e(0);r(r.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},function(t,n,e){var r=e(0);r(r.S,"Math",{sign:e(70)})},function(t,n,e){var r=e(0),o=e(71),i=Math.exp;r(r.S+r.F*e(2)((function(){return-2e-17!=!Math.sinh(-2e-17)})),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(o(t)-o(-t))/2:(i(t-1)-i(-t-1))*(Math.E/2)}})},function(t,n,e){var r=e(0),o=e(71),i=Math.exp;r(r.S,"Math",{tanh:function(t){var n=o(t=+t),e=o(-t);return n==1/0?1:e==1/0?-1:(n-e)/(i(t)+i(-t))}})},function(t,n,e){var r=e(0);r(r.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},function(t,n,e){var r=e(0),o=e(32),i=String.fromCharCode,c=String.fromCodePoint;r(r.S+r.F*(!!c&&1!=c.length),"String",{fromCodePoint:function(t){for(var n,e=[],r=arguments.length,c=0;r>c;){if(n=+arguments[c++],o(n,1114111)!==n)throw RangeError(n+" is not a valid code point");e.push(n<65536?i(n):i(55296+((n-=65536)>>10),n%1024+56320))}return e.join("")}})},function(t,n,e){var r=e(0),o=e(15),i=e(6);r(r.S,"String",{raw:function(t){for(var n=o(t.raw),e=i(n.length),r=arguments.length,c=[],u=0;e>u;)c.push(String(n[u++])),u=n.length?{value:void 0,done:!0}:(t=r(n,e),this._i+=t.length,{value:t,done:!1})}))},function(t,n,e){"use strict";var r=e(0),o=e(72)(!1);r(r.P,"String",{codePointAt:function(t){return o(this,t)}})},function(t,n,e){"use strict";var r=e(0),o=e(6),i=e(74),c="".endsWith;r(r.P+r.F*e(76)("endsWith"),"String",{endsWith:function(t){var n=i(this,t,"endsWith"),e=arguments.length>1?arguments[1]:void 0,r=o(n.length),u=void 0===e?r:Math.min(o(e),r),a=String(t);return c?c.call(n,a,u):n.slice(u-a.length,u)===a}})},function(t,n,e){"use strict";var r=e(0),o=e(74);r(r.P+r.F*e(76)("includes"),"String",{includes:function(t){return!!~o(this,t,"includes").indexOf(t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(0);r(r.P,"String",{repeat:e(69)})},function(t,n,e){"use strict";var r=e(0),o=e(6),i=e(74),c="".startsWith;r(r.P+r.F*e(76)("startsWith"),"String",{startsWith:function(t){var n=i(this,t,"startsWith"),e=o(Math.min(arguments.length>1?arguments[1]:void 0,n.length)),r=String(t);return c?c.call(n,r,e):n.slice(e,e+r.length)===r}})},function(t,n,e){"use strict";e(12)("anchor",(function(t){return function(n){return t(this,"a","name",n)}}))},function(t,n,e){"use strict";e(12)("big",(function(t){return function(){return t(this,"big","","")}}))},function(t,n,e){"use strict";e(12)("blink",(function(t){return function(){return t(this,"blink","","")}}))},function(t,n,e){"use strict";e(12)("bold",(function(t){return function(){return t(this,"b","","")}}))},function(t,n,e){"use strict";e(12)("fixed",(function(t){return function(){return t(this,"tt","","")}}))},function(t,n,e){"use strict";e(12)("fontcolor",(function(t){return function(n){return t(this,"font","color",n)}}))},function(t,n,e){"use strict";e(12)("fontsize",(function(t){return function(n){return t(this,"font","size",n)}}))},function(t,n,e){"use strict";e(12)("italics",(function(t){return function(){return t(this,"i","","")}}))},function(t,n,e){"use strict";e(12)("link",(function(t){return function(n){return t(this,"a","href",n)}}))},function(t,n,e){"use strict";e(12)("small",(function(t){return function(){return t(this,"small","","")}}))},function(t,n,e){"use strict";e(12)("strike",(function(t){return function(){return t(this,"strike","","")}}))},function(t,n,e){"use strict";e(12)("sub",(function(t){return function(){return t(this,"sub","","")}}))},function(t,n,e){"use strict";e(12)("sup",(function(t){return function(){return t(this,"sup","","")}}))},function(t,n,e){var r=e(0);r(r.S,"Date",{now:function(){return(new Date).getTime()}})},function(t,n,e){"use strict";var r=e(0),o=e(10),i=e(26);r(r.P+r.F*e(2)((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})})),"Date",{toJSON:function(t){var n=o(this),e=i(n);return"number"!=typeof e||isFinite(e)?n.toISOString():null}})},function(t,n,e){var r=e(0),o=e(206);r(r.P+r.F*(Date.prototype.toISOString!==o),"Date",{toISOString:o})},function(t,n,e){"use strict";var r=e(2),o=Date.prototype.getTime,i=Date.prototype.toISOString,c=function(t){return t>9?t:"0"+t};t.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=i.call(new Date(-50000000000001))}))||!r((function(){i.call(new Date(NaN))}))?function(){if(!isFinite(o.call(this)))throw RangeError("Invalid time value");var t=this,n=t.getUTCFullYear(),e=t.getUTCMilliseconds(),r=n<0?"-":n>9999?"+":"";return r+("00000"+Math.abs(n)).slice(r?-6:-4)+"-"+c(t.getUTCMonth()+1)+"-"+c(t.getUTCDate())+"T"+c(t.getUTCHours())+":"+c(t.getUTCMinutes())+":"+c(t.getUTCSeconds())+"."+(e>99?e:"0"+c(e))+"Z"}:i},function(t,n,e){var r=Date.prototype,o=r.toString,i=r.getTime;new Date(NaN)+""!="Invalid Date"&&e(11)(r,"toString",(function(){var t=i.call(this);return t==t?o.call(this):"Invalid Date"}))},function(t,n,e){var r=e(5)("toPrimitive"),o=Date.prototype;r in o||e(14)(o,r,e(209))},function(t,n,e){"use strict";var r=e(3),o=e(26);t.exports=function(t){if("string"!==t&&"number"!==t&&"default"!==t)throw TypeError("Incorrect hint");return o(r(this),"number"!=t)}},function(t,n,e){var r=e(0);r(r.S,"Array",{isArray:e(51)})},function(t,n,e){"use strict";var r=e(17),o=e(0),i=e(10),c=e(104),u=e(77),a=e(6),s=e(78),f=e(79);o(o.S+o.F*!e(52)((function(t){Array.from(t)})),"Array",{from:function(t){var n,e,o,l,h=i(t),p="function"==typeof this?this:Array,v=arguments.length,d=v>1?arguments[1]:void 0,y=void 0!==d,g=0,m=f(h);if(y&&(d=r(d,v>2?arguments[2]:void 0,2)),null==m||p==Array&&u(m))for(e=new p(n=a(h.length));n>g;g++)s(e,g,y?d(h[g],g):h[g]);else for(l=m.call(h),e=new p;!(o=l.next()).done;g++)s(e,g,y?c(l,d,[o.value,g],!0):o.value);return e.length=g,e}})},function(t,n,e){"use strict";var r=e(0),o=e(78);r(r.S+r.F*e(2)((function(){function t(){}return!(Array.of.call(t)instanceof t)})),"Array",{of:function(){for(var t=0,n=arguments.length,e=new("function"==typeof this?this:Array)(n);n>t;)o(e,t,arguments[t++]);return e.length=n,e}})},function(t,n,e){"use strict";var r=e(0),o=e(15),i=[].join;r(r.P+r.F*(e(44)!=Object||!e(16)(i)),"Array",{join:function(t){return i.call(o(this),void 0===t?",":t)}})},function(t,n,e){"use strict";var r=e(0),o=e(65),i=e(23),c=e(32),u=e(6),a=[].slice;r(r.P+r.F*e(2)((function(){o&&a.call(o)})),"Array",{slice:function(t,n){var e=u(this.length),r=i(this);if(n=void 0===n?e:n,"Array"==r)return a.call(this,t,n);for(var o=c(t,e),s=c(n,e),f=u(s-o),l=new Array(f),h=0;h1&&(r=Math.min(r,i(arguments[1]))),r<0&&(r=e+r);r>=0;r--)if(r in n&&n[r]===t)return r||0;return-1}})},function(t,n,e){var r=e(0);r(r.P,"Array",{copyWithin:e(107)}),e(36)("copyWithin")},function(t,n,e){var r=e(0);r(r.P,"Array",{fill:e(80)}),e(36)("fill")},function(t,n,e){"use strict";var r=e(0),o=e(22)(5),i=!0;"find"in[]&&Array(1).find((function(){i=!1})),r(r.P+r.F*i,"Array",{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),e(36)("find")},function(t,n,e){"use strict";var r=e(0),o=e(22)(6),i="findIndex",c=!0;i in[]&&Array(1)[i]((function(){c=!1})),r(r.P+r.F*c,"Array",{findIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),e(36)(i)},function(t,n,e){e(41)("Array")},function(t,n,e){var r=e(1),o=e(68),i=e(9).f,c=e(34).f,u=e(75),a=e(53),s=r.RegExp,f=s,l=s.prototype,h=/a/g,p=/a/g,v=new s(h)!==h;if(e(8)&&(!v||e(2)((function(){return p[e(5)("match")]=!1,s(h)!=h||s(p)==p||"/a/i"!=s(h,"i")})))){s=function(t,n){var e=this instanceof s,r=u(t),i=void 0===n;return!e&&r&&t.constructor===s&&i?t:o(v?new f(r&&!i?t.source:t,n):f((r=t instanceof s)?t.source:t,r&&i?a.call(t):n),e?this:l,s)};for(var d=function(t){t in s||i(s,t,{configurable:!0,get:function(){return f[t]},set:function(n){f[t]=n}})},y=c(f),g=0;y.length>g;)d(y[g++]);l.constructor=s,s.prototype=l,e(11)(r,"RegExp",s)}e(41)("RegExp")},function(t,n,e){"use strict";e(110);var r=e(3),o=e(53),i=e(8),c=/./.toString,u=function(t){e(11)(RegExp.prototype,"toString",t,!0)};e(2)((function(){return"/a/b"!=c.call({source:"a",flags:"b"})}))?u((function(){var t=r(this);return"/".concat(t.source,"/","flags"in t?t.flags:!i&&t instanceof RegExp?o.call(t):void 0)})):"toString"!=c.name&&u((function(){return c.call(this)}))},function(t,n,e){"use strict";var r=e(3),o=e(6),i=e(83),c=e(54);e(55)("match",1,(function(t,n,e,u){return[function(e){var r=t(this),o=null==e?void 0:e[n];return void 0!==o?o.call(e,r):new RegExp(e)[n](String(r))},function(t){var n=u(e,t,this);if(n.done)return n.value;var a=r(t),s=String(this);if(!a.global)return c(a,s);var f=a.unicode;a.lastIndex=0;for(var l,h=[],p=0;null!==(l=c(a,s));){var v=String(l[0]);h[p]=v,""===v&&(a.lastIndex=i(s,o(a.lastIndex),f)),p++}return 0===p?null:h}]}))},function(t,n,e){"use strict";var r=e(3),o=e(10),i=e(6),c=e(19),u=e(83),a=e(54),s=Math.max,f=Math.min,l=Math.floor,h=/\$([$&`']|\d\d?|<[^>]*>)/g,p=/\$([$&`']|\d\d?)/g;e(55)("replace",2,(function(t,n,e,v){return[function(r,o){var i=t(this),c=null==r?void 0:r[n];return void 0!==c?c.call(r,i,o):e.call(String(i),r,o)},function(t,n){var o=v(e,t,this,n);if(o.done)return o.value;var l=r(t),h=String(this),p="function"==typeof n;p||(n=String(n));var y=l.global;if(y){var g=l.unicode;l.lastIndex=0}for(var m=[];;){var b=a(l,h);if(null===b)break;if(m.push(b),!y)break;""===String(b[0])&&(l.lastIndex=u(h,i(l.lastIndex),g))}for(var x,w="",S=0,E=0;E=S&&(w+=h.slice(S,_)+P,S=_+k.length)}return w+h.slice(S)}];function d(t,n,r,i,c,u){var a=r+t.length,s=i.length,f=p;return void 0!==c&&(c=o(c),f=h),e.call(u,f,(function(e,o){var u;switch(o.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,r);case"'":return n.slice(a);case"<":u=c[o.slice(1,-1)];break;default:var f=+o;if(0===f)return e;if(f>s){var h=l(f/10);return 0===h?e:h<=s?void 0===i[h-1]?o.charAt(1):i[h-1]+o.charAt(1):e}u=i[f-1]}return void 0===u?"":u}))}}))},function(t,n,e){"use strict";var r=e(3),o=e(95),i=e(54);e(55)("search",1,(function(t,n,e,c){return[function(e){var r=t(this),o=null==e?void 0:e[n];return void 0!==o?o.call(e,r):new RegExp(e)[n](String(r))},function(t){var n=c(e,t,this);if(n.done)return n.value;var u=r(t),a=String(this),s=u.lastIndex;o(s,0)||(u.lastIndex=0);var f=i(u,a);return o(u.lastIndex,s)||(u.lastIndex=s),null===f?-1:f.index}]}))},function(t,n,e){"use strict";var r=e(75),o=e(3),i=e(47),c=e(83),u=e(6),a=e(54),s=e(82),f=e(2),l=Math.min,h=[].push,p="length",v=!f((function(){RegExp(4294967295,"y")}));e(55)("split",2,(function(t,n,e,f){var d;return d="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1)[p]||2!="ab".split(/(?:ab)*/)[p]||4!=".".split(/(.?)(.?)/)[p]||".".split(/()()/)[p]>1||"".split(/.?/)[p]?function(t,n){var o=String(this);if(void 0===t&&0===n)return[];if(!r(t))return e.call(o,t,n);for(var i,c,u,a=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),l=0,v=void 0===n?4294967295:n>>>0,d=new RegExp(t.source,f+"g");(i=s.call(d,o))&&!((c=d.lastIndex)>l&&(a.push(o.slice(l,i.index)),i[p]>1&&i.index=v));)d.lastIndex===i.index&&d.lastIndex++;return l===o[p]?!u&&d.test("")||a.push(""):a.push(o.slice(l)),a[p]>v?a.slice(0,v):a}:"0".split(void 0,0)[p]?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,r){var o=t(this),i=null==e?void 0:e[n];return void 0!==i?i.call(e,o,r):d.call(String(o),e,r)},function(t,n){var r=f(d,t,this,n,d!==e);if(r.done)return r.value;var s=o(t),h=String(this),p=i(s,RegExp),y=s.unicode,g=(s.ignoreCase?"i":"")+(s.multiline?"m":"")+(s.unicode?"u":"")+(v?"y":"g"),m=new p(v?s:"^(?:"+s.source+")",g),b=void 0===n?4294967295:n>>>0;if(0===b)return[];if(0===h.length)return null===a(m,h)?[h]:[];for(var x=0,w=0,S=[];w0?arguments[0]:void 0)}}),{get:function(t){var n=r.getEntry(o(this,"Map"),t);return n&&n.v},set:function(t,n){return r.def(o(this,"Map"),0===t?0:t,n)}},r,!0)},function(t,n,e){"use strict";var r=e(114),o=e(37);t.exports=e(58)("Set",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return r.def(o(this,"Set"),t=0===t?0:t,t)}},r)},function(t,n,e){"use strict";var r,o=e(1),i=e(22)(0),c=e(11),u=e(27),a=e(94),s=e(115),f=e(4),l=e(37),h=e(37),p=!o.ActiveXObject&&"ActiveXObject"in o,v=u.getWeak,d=Object.isExtensible,y=s.ufstore,g=function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},m={get:function(t){if(f(t)){var n=v(t);return!0===n?y(l(this,"WeakMap")).get(t):n?n[this._i]:void 0}},set:function(t,n){return s.def(l(this,"WeakMap"),t,n)}},b=t.exports=e(58)("WeakMap",g,m,s,!0,!0);h&&p&&(a((r=s.getConstructor(g,"WeakMap")).prototype,m),u.NEED=!0,i(["delete","has","get","set"],(function(t){var n=b.prototype,e=n[t];c(n,t,(function(n,o){if(f(n)&&!d(n)){this._f||(this._f=new r);var i=this._f[t](n,o);return"set"==t?this:i}return e.call(this,n,o)}))})))},function(t,n,e){"use strict";var r=e(115),o=e(37);e(58)("WeakSet",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return r.def(o(this,"WeakSet"),t,!0)}},r,!1,!0)},function(t,n,e){"use strict";var r=e(0),o=e(59),i=e(85),c=e(3),u=e(32),a=e(6),s=e(4),f=e(1).ArrayBuffer,l=e(47),h=i.ArrayBuffer,p=i.DataView,v=o.ABV&&f.isView,d=h.prototype.slice,y=o.VIEW;r(r.G+r.W+r.F*(f!==h),{ArrayBuffer:h}),r(r.S+r.F*!o.CONSTR,"ArrayBuffer",{isView:function(t){return v&&v(t)||s(t)&&y in t}}),r(r.P+r.U+r.F*e(2)((function(){return!new h(2).slice(1,void 0).byteLength})),"ArrayBuffer",{slice:function(t,n){if(void 0!==d&&void 0===n)return d.call(c(this),t);for(var e=c(this).byteLength,r=u(t,e),o=u(void 0===n?e:n,e),i=new(l(this,h))(a(o-r)),s=new p(this),f=new p(i),v=0;r=n.length)return{value:void 0,done:!0}}while(!((t=n[this._i++])in this._t));return{value:t,done:!1}})),r(r.S,"Reflect",{enumerate:function(t){return new i(t)}})},function(t,n,e){var r=e(20),o=e(35),i=e(13),c=e(0),u=e(4),a=e(3);c(c.S,"Reflect",{get:function t(n,e){var c,s,f=arguments.length<3?n:arguments[2];return a(n)===f?n[e]:(c=r.f(n,e))?i(c,"value")?c.value:void 0!==c.get?c.get.call(f):void 0:u(s=o(n))?t(s,e,f):void 0}})},function(t,n,e){var r=e(20),o=e(0),i=e(3);o(o.S,"Reflect",{getOwnPropertyDescriptor:function(t,n){return r.f(i(t),n)}})},function(t,n,e){var r=e(0),o=e(35),i=e(3);r(r.S,"Reflect",{getPrototypeOf:function(t){return o(i(t))}})},function(t,n,e){var r=e(0);r(r.S,"Reflect",{has:function(t,n){return n in t}})},function(t,n,e){var r=e(0),o=e(3),i=Object.isExtensible;r(r.S,"Reflect",{isExtensible:function(t){return o(t),!i||i(t)}})},function(t,n,e){var r=e(0);r(r.S,"Reflect",{ownKeys:e(117)})},function(t,n,e){var r=e(0),o=e(3),i=Object.preventExtensions;r(r.S,"Reflect",{preventExtensions:function(t){o(t);try{return i&&i(t),!0}catch(t){return!1}}})},function(t,n,e){var r=e(9),o=e(20),i=e(35),c=e(13),u=e(0),a=e(28),s=e(3),f=e(4);u(u.S,"Reflect",{set:function t(n,e,u){var l,h,p=arguments.length<4?n:arguments[3],v=o.f(s(n),e);if(!v){if(f(h=i(n)))return t(h,e,u,p);v=a(0)}if(c(v,"value")){if(!1===v.writable||!f(p))return!1;if(l=o.f(p,e)){if(l.get||l.set||!1===l.writable)return!1;l.value=u,r.f(p,e,l)}else r.f(p,e,a(0,u));return!0}return void 0!==v.set&&(v.set.call(p,u),!0)}})},function(t,n,e){var r=e(0),o=e(66);o&&r(r.S,"Reflect",{setPrototypeOf:function(t,n){o.check(t,n);try{return o.set(t,n),!0}catch(t){return!1}}})},function(t,n,e){e(269),t.exports=e(7).Array.includes},function(t,n,e){"use strict";var r=e(0),o=e(49)(!0);r(r.P,"Array",{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),e(36)("includes")},function(t,n,e){e(271),t.exports=e(7).Array.flatMap},function(t,n,e){"use strict";var r=e(0),o=e(272),i=e(10),c=e(6),u=e(18),a=e(105);r(r.P,"Array",{flatMap:function(t){var n,e,r=i(this);return u(t),n=c(r.length),e=a(r,0),o(e,r,r,n,0,1,t,arguments[1]),e}}),e(36)("flatMap")},function(t,n,e){"use strict";var r=e(51),o=e(4),i=e(6),c=e(17),u=e(5)("isConcatSpreadable");t.exports=function t(n,e,a,s,f,l,h,p){for(var v,d,y=f,g=0,m=!!h&&c(h,p,3);g0)y=t(n,e,v,i(v.length),y,l-1)-1;else{if(y>=9007199254740991)throw TypeError();n[y]=v}y++}g++}return y}},function(t,n,e){e(274),t.exports=e(7).String.padStart},function(t,n,e){"use strict";var r=e(0),o=e(118),i=e(57),c=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(i);r(r.P+r.F*c,"String",{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},function(t,n,e){e(276),t.exports=e(7).String.padEnd},function(t,n,e){"use strict";var r=e(0),o=e(118),i=e(57),c=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(i);r(r.P+r.F*c,"String",{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},function(t,n,e){e(278),t.exports=e(7).String.trimLeft},function(t,n,e){"use strict";e(39)("trimLeft",(function(t){return function(){return t(this,1)}}),"trimStart")},function(t,n,e){e(280),t.exports=e(7).String.trimRight},function(t,n,e){"use strict";e(39)("trimRight",(function(t){return function(){return t(this,2)}}),"trimEnd")},function(t,n,e){e(282),t.exports=e(62).f("asyncIterator")},function(t,n,e){e(90)("asyncIterator")},function(t,n,e){e(284),t.exports=e(7).Object.getOwnPropertyDescriptors},function(t,n,e){var r=e(0),o=e(117),i=e(15),c=e(20),u=e(78);r(r.S,"Object",{getOwnPropertyDescriptors:function(t){for(var n,e,r=i(t),a=c.f,s=o(r),f={},l=0;s.length>l;)void 0!==(e=a(r,n=s[l++]))&&u(f,n,e);return f}})},function(t,n,e){e(286),t.exports=e(7).Object.values},function(t,n,e){var r=e(0),o=e(119)(!1);r(r.S,"Object",{values:function(t){return o(t)}})},function(t,n,e){e(288),t.exports=e(7).Object.entries},function(t,n,e){var r=e(0),o=e(119)(!0);r(r.S,"Object",{entries:function(t){return o(t)}})},function(t,n,e){"use strict";e(111),e(290),t.exports=e(7).Promise.finally},function(t,n,e){"use strict";var r=e(0),o=e(7),i=e(1),c=e(47),u=e(113);r(r.P+r.R,"Promise",{finally:function(t){var n=c(this,o.Promise||i.Promise),e="function"==typeof t;return this.then(e?function(e){return u(n,t()).then((function(){return e}))}:t,e?function(e){return u(n,t()).then((function(){throw e}))}:t)}})},function(t,n,e){e(292),e(293),e(294),t.exports=e(7)},function(t,n,e){var r=e(1),o=e(0),i=e(57),c=[].slice,u=/MSIE .\./.test(i),a=function(t){return function(n,e){var r=arguments.length>2,o=!!r&&c.call(arguments,2);return t(r?function(){("function"==typeof n?n:Function(n)).apply(this,o)}:n,e)}};o(o.G+o.B+o.F*u,{setTimeout:a(r.setTimeout),setInterval:a(r.setInterval)})},function(t,n,e){var r=e(0),o=e(84);r(r.G+r.B,{setImmediate:o.set,clearImmediate:o.clear})},function(t,n,e){for(var r=e(81),o=e(31),i=e(11),c=e(1),u=e(14),a=e(40),s=e(5),f=s("iterator"),l=s("toStringTag"),h=a.Array,p={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},v=o(p),d=0;d=0;--o){var i=this.tryEntries[o],c=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var u=e.call(i,"catchLoc"),a=e.call(i,"finallyLoc");if(u&&a){if(this.prev=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&e.call(o,"finallyLoc")&&this.prev=0;--n){var e=this.tryEntries[n];if(e.finallyLoc===t)return this.complete(e.completion,e.afterLoc),k(e),l}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var e=this.tryEntries[n];if(e.tryLoc===t){var r=e.completion;if("throw"===r.type){var o=r.arg;k(e)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,e){return this.delegate={iterator:L(t),resultName:n,nextLoc:e},"next"===this.method&&(this.arg=void 0),l}},t}(t.exports);try{regeneratorRuntime=r}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}},function(t,n,e){e(297),t.exports=e(120).global},function(t,n,e){var r=e(298);r(r.G,{global:e(86)})},function(t,n,e){var r=e(86),o=e(120),i=e(299),c=e(301),u=e(308),a=function(t,n,e){var s,f,l,h=t&a.F,p=t&a.G,v=t&a.S,d=t&a.P,y=t&a.B,g=t&a.W,m=p?o:o[n]||(o[n]={}),b=m.prototype,x=p?r:v?r[n]:(r[n]||{}).prototype;for(s in p&&(e=n),e)(f=!h&&x&&void 0!==x[s])&&u(m,s)||(l=f?x[s]:e[s],m[s]=p&&"function"!=typeof x[s]?e[s]:y&&f?i(l,r):g&&x[s]==l?function(t){var n=function(n,e,r){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(n);case 2:return new t(n,e)}return new t(n,e,r)}return t.apply(this,arguments)};return n.prototype=t.prototype,n}(l):d&&"function"==typeof l?i(Function.call,l):l,d&&((m.virtual||(m.virtual={}))[s]=l,t&a.R&&b&&!b[s]&&c(b,s,l)))};a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,n,e){var r=e(300);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,o){return t.call(n,e,r,o)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,n,e){var r=e(302),o=e(307);t.exports=e(88)?function(t,n,e){return r.f(t,n,o(1,e))}:function(t,n,e){return t[n]=e,t}},function(t,n,e){var r=e(303),o=e(304),i=e(306),c=Object.defineProperty;n.f=e(88)?Object.defineProperty:function(t,n,e){if(r(t),n=i(n,!0),r(e),o)try{return c(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported!");return"value"in e&&(t[n]=e.value),t}},function(t,n,e){var r=e(87);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,n,e){t.exports=!e(88)&&!e(121)((function(){return 7!=Object.defineProperty(e(305)("div"),"a",{get:function(){return 7}}).a}))},function(t,n,e){var r=e(87),o=e(86).document,i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,n,e){var r=e(87);t.exports=function(t,n){if(!r(t))return t;var e,o;if(n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;if("function"==typeof(e=t.valueOf)&&!r(o=e.call(t)))return o;if(!n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n){var e={}.hasOwnProperty;t.exports=function(t,n){return e.call(t,n)}},function(t,n,e){"use strict";e.r(n);var r=e(60);function o(t){return function(t){if(Array.isArray(t))return i(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,n){if(!t)return;if("string"==typeof t)return i(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return i(t,n)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e".concat(s,"

3?'class="wide-digit"':"",">").concat(t.max,"

");var f=document.createElement("div");f.classList.add("task-description"),f.innerHTML="

".concat(t.text.split("`").map((function(t,n,e){return n":""]:t})).flat().join(""),"

"),f.innerHTML+="
".concat(l["add-review"],"");var d=document.createElement("div");d.classList.add("overlay"),d.onclick=function(){var t=document.querySelector('[data-active="true"]');P(t,v),t.scrollIntoView({behavior:"smooth"})},r.appendChild(a),r.appendChild(f),r.appendChild(u),r.appendChild(d)}_.push(r)}function P(t,n){var e=t.querySelector("textarea");if(e){e.focus();var r=e.parentElement.querySelector(".askFeedback");r&&r.remove();var o=document.createElement("DIV");o.classList.add("askFeedback"),o.innerHTML=n,t.querySelector(".feedback-buttons").appendChild(o)}}function A(t){g.innerHTML="";var n=document.createElement("div");n.classList.add("header");var e=document.createElement("div");e.classList.add("content");var r=document.createElement("p");if(r.classList.add("close"),r.innerHTML="×",r.addEventListener("click",(function(){g.classList.toggle("visible"),c=!1})),n.appendChild(r),t.some((function(t){return t&&t.needFeedback&&!t.feedback}))){var o=document.querySelector('.checkbox-container[data-active="true"]');o.querySelector("textarea")&&(o.scrollIntoView({behavior:"smooth"}),P(o,v)),e.innerHTML='
'.concat(l["obligatory-feedback"],"").concat(l["partially-completed"],"!
")}else if(i!==f)e.innerHTML+='
'.concat(l["not-all-items"],"
").concat(l.remaining).concat(i-f).concat(l["out-of"]).concat(i).concat(l["remaining-end"],"
");else{g.innerHTML='");var a=t.filter((function(t){return t&&null!=t.status})),s=E%10>1&&E%10<=4?l.point:l.points;e.innerHTML+="

".concat(l["your-mark"]).concat(E>=0?E:0," ").concat(s," \r\n

").concat(l["review-by-points"],"\r\n

");var h={0:l["result-descriptions"][0],1:l["result-descriptions"][1],2:l["result-descriptions"][2],penalty:l.penalties};Object.keys(h).forEach((function(t){a.some((function(n){return n.type==t&&0!=n.status||"penalty"!=n.type&&n.status==t}))&&(e.innerHTML+="

".concat(h[t],"\r\n

"),a.filter((function(n){return n.type==t&&0!=n.status||"penalty"!=n.type&&n.status==t})).map((function(t,n){e.innerHTML+="

".concat(n+1,") ").concat(t.text," \r\n").concat(t.feedback?'

'.concat(l.review,"")+t.feedback+"

":"

","\r\n")})))})),u=e.innerText}g.appendChild(n),g.appendChild(e),g.classList.add("visible"),c=!0}function j(t){t?f=0:f++,b.innerText=f}function T(t){if(!w[t].needFeedback||!w[t].feedback||((e=w[t]).feedback=e.feedback.replace(/(\s+)/g," ").trim(),e.feedback.length<8)){if(w[t].needFeedback){var n=w[t].activeRadio.closest(".checkbox-container");return n.querySelector("a").click(),P(n,l["not-empty-feedback"]),void setTimeout((function(){return P(n,v)}),3e3)}}else document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true"}));var e}function I(t){var n;w[t].needFeedback&&(f--,b.innerText=f,w[t].activeRadio.checked=!1,n=w[t].max,S-=+(n/2).toFixed(1),m.innerHTML=S<0?0:S,delete w[t].needFeedback,delete w[t].activeRadio,delete w[t].status,document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true"})),S||F.classList.add("hidden"))}function N(t,n,e,r){w[t].feedback=n.value,n.value?(e.classList.add("feedback-add"),e.innerHTML=l["change-review"]):(delete w[t].feedback,e.classList.remove("feedback-add"),e.innerHTML=l["add-review"]),r.remove()}F.addEventListener("click",(function(t){S=0,E=0,Object.keys(k).forEach((function(t){return delete k[t]})),c=!1,w.map((function(t){t&&delete t.status,t&&delete t.feedback})),document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true",t.querySelectorAll("input").forEach((function(t){return t.checked=!1}));var n=t.querySelector("form");n&&n.remove(),t.querySelector(".add-feedback").innerHTML=l["add-review"]})),j("reset"),m.innerHTML=0,F.classList.add("hidden"),g.classList.remove("visible")})),F.click(),L.addEventListener("click",(function(t){var n=t.target.parentElement,e=t.target.dataset.id,r=w[e];if("INPUT"===t.target.tagName){var o=t.target,i=o.dataset.score;if(s&&"true"==n.dataset.active)return n.dataset.active="false",void t.preventDefault();if(s&&"false"==n.dataset.active)return n.dataset.active="true",void t.preventDefault();if(!s&&"false"!=n.dataset.active){void 0===r.status&&j();var u="%"===r.max[r.max.length-1],a=[0,+(r.max/2).toFixed(1),r.max];r.status>=0&&!u&&(S-="penalty"!==r.type?a[r.status]:2*a[r.status]),u?1==i?k[r.text]=r.max.slice(0,-1):delete k[r.text]:S+="penalty"!==r.type?a[i]:2*a[i];var f=Object.keys(k).reduce((function(t,n){return t-k[n]}),0);if(E=(S-S*(.01*f)).toFixed(1),r.status=i,m.innerHTML=E<0?0:E,1==+i&&"subtask"==r.type){r.needFeedback=!0,r.activeRadio=o;var l=o.closest(".checkbox-container");l.querySelector("textarea")||l.querySelector("a").click(),l.scrollIntoView({behavior:"smooth"}),P(l,v),document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="false",t===l&&(t.dataset.active="true")}))}else if(r.needFeedback&&"subtask"==r.type){r.needFeedback=!1;var h=o.closest(".checkbox-container").querySelector("form");h&&h.remove(),document.querySelectorAll(".checkbox-container").forEach((function(t){t.dataset.active="true"}))}if(void 0!==r.activeRadio&&r.activeRadio.dataset.score!==i&&r.feedback){r.activeRadio=o;var p=o.closest(".checkbox-container");p.querySelector("a").click(),P(p,d)}c&&A(w)}w.some((function(t){return t&&void 0!==t.status}))?F.classList.remove("hidden"):F.classList.add("hidden"),r.activeRadio=o}})),window.addFeedback=function(t){t.preventDefault(),document.querySelectorAll(".add-form").forEach((function(t){return t.remove()}));var n=t.target,e=n.closest(".checkbox-container").querySelector("input").dataset.id,r=document.createElement("form");r.classList.add("add-form");var o=document.createElement("textarea");o.setAttribute("placeholder",l["use-ctrl-enter"]),w[e].feedback&&(o.value=w[e].feedback),r.appendChild(o);var i=document.createElement("a");i.innerText=l.cancel,i.onclick=function(){r.remove(),I(e)};var c=i.cloneNode();c.innerText=l.save,c.onclick=function(){N(e,o,n,r),T(e)};var u=document.createElement("DIV");u.classList.add("feedback-buttons"),u.appendChild(i),u.appendChild(c),r.appendChild(u),n.parentElement.appendChild(r),o.focus(),o.select(),r.addEventListener("keyup",(function(t){13==t.keyCode&&s?(N(e,o,n,r),T(e)):27==t.keyCode&&(I(e),r.remove())}))},window.copyToClipboard=function(t){t.preventDefault(),t.target.classList.add("not-link"),t.target.innerText=l.copied,setTimeout((function(){t.target.classList.remove("not-link"),t.target.innerText=l["copy-to-clipboard"]}),1e3);var n=document.createElement("textarea");n.value=u,n.setAttribute("readonly",""),n.style.position="absolute",n.style.left="-9999px",document.body.appendChild(n),n.select(),document.execCommand("copy"),document.body.removeChild(n)}}var u="rs-checklist-lang";function a(){var t=localStorage.getItem(u);return t||"ru"}function s(t){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function f(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */f=function(){return t};var t={},n=Object.prototype,e=n.hasOwnProperty,r=Object.defineProperty||function(t,n,e){t[n]=e.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",c=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function a(t,n,e){return Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}),t[n]}try{a({},"")}catch(t){a=function(t,n,e){return t[n]=e}}function l(t,n,e,o){var i=n&&n.prototype instanceof v?n:v,c=Object.create(i.prototype),u=new O(o||[]);return r(c,"_invoke",{value:E(t,e,u)}),c}function h(t,n,e){try{return{type:"normal",arg:t.call(n,e)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p={};function v(){}function d(){}function y(){}var g={};a(g,i,(function(){return this}));var m=Object.getPrototypeOf,b=m&&m(m(F([])));b&&b!==n&&e.call(b,i)&&(g=b);var x=y.prototype=v.prototype=Object.create(g);function w(t){["next","throw","return"].forEach((function(n){a(t,n,(function(t){return this._invoke(n,t)}))}))}function S(t,n){var o;r(this,"_invoke",{value:function(r,i){function c(){return new n((function(o,c){!function r(o,i,c,u){var a=h(t[o],t,i);if("throw"!==a.type){var f=a.arg,l=f.value;return l&&"object"==s(l)&&e.call(l,"__await")?n.resolve(l.__await).then((function(t){r("next",t,c,u)}),(function(t){r("throw",t,c,u)})):n.resolve(l).then((function(t){f.value=t,c(f)}),(function(t){return r("throw",t,c,u)}))}u(a.arg)}(r,i,o,c)}))}return o=o?o.then(c,c):c()}})}function E(t,n,e){var r="suspendedStart";return function(o,i){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===o)throw i;return M()}for(e.method=o,e.arg=i;;){var c=e.delegate;if(c){var u=k(c,e);if(u){if(u===p)continue;return u}}if("next"===e.method)e.sent=e._sent=e.arg;else if("throw"===e.method){if("suspendedStart"===r)throw r="completed",e.arg;e.dispatchException(e.arg)}else"return"===e.method&&e.abrupt("return",e.arg);r="executing";var a=h(t,n,e);if("normal"===a.type){if(r=e.done?"completed":"suspendedYield",a.arg===p)continue;return{value:a.arg,done:e.done}}"throw"===a.type&&(r="completed",e.method="throw",e.arg=a.arg)}}}function k(t,n){var e=n.method,r=t.iterator[e];if(void 0===r)return n.delegate=null,"throw"===e&&t.iterator.return&&(n.method="return",n.arg=void 0,k(t,n),"throw"===n.method)||"return"!==e&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+e+"' method")),p;var o=h(r,t.iterator,n.arg);if("throw"===o.type)return n.method="throw",n.arg=o.arg,n.delegate=null,p;var i=o.arg;return i?i.done?(n[t.resultName]=i.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=void 0),n.delegate=null,p):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,p)}function _(t){var n={tryLoc:t[0]};1 in t&&(n.catchLoc=t[1]),2 in t&&(n.finallyLoc=t[2],n.afterLoc=t[3]),this.tryEntries.push(n)}function L(t){var n=t.completion||{};n.type="normal",delete n.arg,t.completion=n}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(_,this),this.reset(!0)}function F(t){if(t){var n=t[i];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,o=function n(){for(;++r=0;--o){var i=this.tryEntries[o],c=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var u=e.call(i,"catchLoc"),a=e.call(i,"finallyLoc");if(u&&a){if(this.prev=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&e.call(o,"finallyLoc")&&this.prev=0;--n){var e=this.tryEntries[n];if(e.finallyLoc===t)return this.complete(e.completion,e.afterLoc),L(e),p}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var e=this.tryEntries[n];if(e.tryLoc===t){var r=e.completion;if("throw"===r.type){var o=r.arg;L(e)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,e){return this.delegate={iterator:F(t),resultName:n,nextLoc:e},"next"===this.method&&(this.arg=void 0),p}},t}function l(t,n,e,r,o,i,c){try{var u=t[i](c),a=u.value}catch(t){return void e(t)}u.done?n(a):Promise.resolve(a).then(r,o)}function h(t){return function(){var n=this,e=arguments;return new Promise((function(r,o){var i=t.apply(n,e);function c(t){l(i,r,o,c,u,"next",t)}function u(t){l(i,r,o,c,u,"throw",t)}c(void 0)}))}}function p(t,n){for(var e=0;en.taskName?1:-1})),e.tasks.map((function(t){var n=t.taskName,r=e.tasksList.querySelector('[data-name="'.concat(n,'"]'));r&&e.tasksList.appendChild(r)}));case 25:case"end":return t.stop()}}),t)})))),d(this,"renderErrors",(function(){if(e.fetchFails.length){var t=document.createElement("DIV");t.classList.add("errMsg"),e.fetchFails.map((function(n){t.innerHTML="Unable to fetch ".concat(n,""),e.errorsContainer.appendChild(t)})),e.loader.classList.remove("visible")}})),this.url=n,this.tasks=[],this.fetchFails=[]}));function m(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);ew+100?x.classList.add("sticky"):x.classList.remove("sticky")};var S=document.querySelector(".lang-selector");S.addEventListener("click",(function(t){var n=t.target.tagName.toString(),e=t.target.textContent,r=t.target.parentElement.classList.contains("disabled-link");if("A"!==n.toUpperCase()||r)return;localStorage.setItem(u,e),window.location.reload()}));var E,k=function(t,n){var e="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!e){if(Array.isArray(t)||(e=function(t,n){if(!t)return;if("string"==typeof t)return m(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return m(t,n)}(t))||n&&t&&"number"==typeof t.length){e&&(t=e);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,c=!0,u=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return c=t.done,t},e:function(t){u=!0,i=t},f:function(){try{c||null==e.return||e.return()}finally{if(u)throw i}}}}(S.children);try{for(k.s();!(E=k.n()).done;){var _=E.value;_.textContent.trim()==a()&&_.classList.add("disabled-link")}}catch(t){k.e(t)}finally{k.f()}new g("tasks-to-render.json").initTasks();var L;L=r[a()],document.querySelector(".feedback button").textContent=L["show-review"],document.querySelector(".reset").textContent=L.reset,document.querySelector(".total-points").innerHTML=L["total-points"],document.querySelector(".progress").innerHTML="".concat(L.checked,' 0').concat(L["out-of"],'')}]); \ No newline at end of file diff --git a/js/RenderTasks.js b/js/RenderTasks.js index aafb4e1..023e785 100644 --- a/js/RenderTasks.js +++ b/js/RenderTasks.js @@ -41,6 +41,7 @@ export class RenderTasks { e.preventDefault(); this.tasksList.remove(); document.querySelector('.back').classList.remove('hidden'); + document.querySelector('.lang-selector').classList.add('hidden'); render(tasksObj.criteria, tasksObj.taskName, tasksObj.information); }; taskLink.appendChild(link); diff --git a/js/RenderView.js b/js/RenderView.js index 8a04fa0..79b459a 100644 --- a/js/RenderView.js +++ b/js/RenderView.js @@ -1,19 +1,17 @@ +import lang from '../lang/lang.json' + export function render(criteria, taskName, information) { let isFeedback = false; let toClipBoard = ''; let isCtrl = false; let totalTasks = 0; let done = 0; + let langData = lang[getLang()] - const checkMarks = [ - 'не выполнено', - 'выполнено частично', - 'выполнено полностью', - ]; - const penaltiesMarks = ['нет', 'да']; - const askFeedback = - 'Вы отметили: выполнено частично. Обязательно оставьте фидбек!'; - const askChange = 'Вы изменили оценку. Возможно стоит изменить отзыв?'; + const checkMarks = langData['check-marks']; + const penaltiesMarks = langData['penalty-marks']; + const askFeedback = langData['partially-completed-checked']; + const askChange = langData['changed-assessment']; const feedback = document.querySelector('.feedback button'); feedback.parentElement.classList.remove('hidden'); @@ -46,6 +44,8 @@ export function render(criteria, taskName, information) { }); let total = 0; + let totalWithPercent = 0; + const percentData = {}; const renderList = []; criteria.forEach((el, i) => { el.status === 'main' @@ -62,6 +62,10 @@ export function render(criteria, taskName, information) { const reset = document.querySelector('.reset'); reset.addEventListener('click', (e) => { total = 0; + totalWithPercent = 0; + Object + .keys(percentData) + .forEach((key) => delete percentData[key]); isFeedback = false; filteredCriteria.map((item) => { item && delete item.status; @@ -72,7 +76,7 @@ export function render(criteria, taskName, information) { el.querySelectorAll('input').forEach((input) => (input.checked = false)); const form = el.querySelector('form'); form && form.remove(); - el.querySelector('.add-feedback').innerHTML = 'Добавить отзыв'; + el.querySelector('.add-feedback').innerHTML = langData['add-review']; }); checkDone('reset'); scoreboard.innerHTML = 0; @@ -88,7 +92,7 @@ export function render(criteria, taskName, information) { const id = e.target.dataset.id; const task = filteredCriteria[id]; - + if (e.target.tagName === 'INPUT') { const radio = e.target; const scoreId = radio.dataset.score; @@ -105,18 +109,31 @@ export function render(criteria, taskName, information) { if (task.status === undefined) checkDone(); // Calculate actual Total Score + const isPercentPenalty = task.max[task.max.length - 1] === '%'; const scores = [0, +(task.max / 2).toFixed(1), task.max]; - if (task.status >= 0) { + if (task.status >= 0 && !isPercentPenalty) { total -= - task.type !== 'penalty' - ? scores[task.status] - : scores[task.status] * 2; + task.type !== 'penalty' + ? scores[task.status] + : scores[task.status] * 2; + } + if(!isPercentPenalty) { + total += + task.type !== 'penalty' ? scores[scoreId] : scores[scoreId] * 2; + } else { + if (scoreId == 1){ + percentData[task.text] = task.max.slice(0, -1); + } else { + delete percentData[task.text]; + } } - total += - task.type !== 'penalty' ? scores[scoreId] : scores[scoreId] * 2; + const percentSum = Object + .keys(percentData) + .reduce((sum, key) => sum - percentData[key], 0); + totalWithPercent = (total - total * ((percentSum) * 0.01)).toFixed(1); task.status = scoreId; - scoreboard.innerHTML = total < 0 ? 0 : total; + scoreboard.innerHTML = totalWithPercent < 0 ? 0 : totalWithPercent; if (+scoreId === 1 && task.type == 'subtask') { task.needFeedback = true; @@ -192,13 +209,15 @@ export function render(criteria, taskName, information) { const taskMaxScore = document.createElement('div'); taskMaxScore.classList.add('task-max-score'); const scoreDesc = - el.type == 'penalty' ? 'Штрафные баллы' : 'Балл за выполнение'; - taskMaxScore.innerHTML = `${scoreDesc}

${el.max}

`; + el.type == 'penalty' + ? langData['penalty'] + : langData['score']; + taskMaxScore.innerHTML = `${scoreDesc}

3) ? 'class="wide-digit"' : ''}>${el.max}

`; const taskDesc = document.createElement('div'); taskDesc.classList.add('task-description'); - taskDesc.innerHTML = `

${el.text}

`; + taskDesc.innerHTML = `

${getFormatedText(el.text)}

`; taskDesc.innerHTML += - "Добавить отзыв"; + `${langData['add-review']}`; const overlay = document.createElement('div'); overlay.classList.add('overlay'); @@ -285,28 +304,30 @@ export function render(criteria, taskName, information) { }); askLeaveFeedback(parent, askFeedback); } - content.innerHTML = `
Вам необходимо оставить обязательный фидбек ко всем пунктам, где отмечено - Выполнено частично!
`; + content.innerHTML = `
${langData['obligatory-feedback']}${langData['partially-completed']}!
`; } else { if (totalTasks !== done) { - content.innerHTML += `
Вы проверили не все пункты задания
Осталось ${ + content.innerHTML += `
${langData['not-all-items']}
${langData['remaining']}${ totalTasks - done - } из ${totalTasks}
`; + }${langData['out-of']}${totalTasks}${langData['remaining-end']}
`; } else { info.innerHTML = - ''; + ``; let resultList = filteredCriteria.filter( (item) => item && item.status != undefined ); - let points = total % 10 > 1 && total % 10 <= 4 ? 'балла' : 'баллов'; - content.innerHTML += `

Ваша оценка - ${ - total >= 0 ? total : 0 - } ${points} \r\n

Отзыв по пунктам ТЗ:\r\n

`; + let points = totalWithPercent % 10 > 1 && totalWithPercent % 10 <= 4 + ? langData['point'] + : langData['points']; + content.innerHTML += `

${langData['your-mark']}${ + totalWithPercent >= 0 ? totalWithPercent : 0 + } ${points} \r\n

${langData['review-by-points']}\r\n

`; const resultDescriptions = { - 0: 'Не выполненные/не засчитанные пункты:', - 1: 'Частично выполненные пункты:', - 2: 'Выполненные пункты:', - penalty: 'Штрафы:', + 0: langData['result-descriptions'][0], + 1: langData['result-descriptions'][1], + 2: langData['result-descriptions'][2], + penalty: langData['penalties'], }; Object.keys(resultDescriptions).forEach((desc) => { let partialResult = []; @@ -326,7 +347,7 @@ export function render(criteria, taskName, information) { partialResult.map((item, i) => { content.innerHTML += `

${i + 1}) ${item.text} \r\n${ item.feedback - ? '

Отзыв: ' + + ? `

${langData['review']}` + item.feedback + '

' : '

' @@ -364,7 +385,7 @@ export function render(criteria, taskName, information) { const textarea = document.createElement('textarea'); textarea.setAttribute( 'placeholder', - 'Use Ctrl + Enter to save this feedback or ESC to cancel' + langData['use-ctrl-enter'] ); if (filteredCriteria[id].feedback) { textarea.value = filteredCriteria[id].feedback; @@ -372,13 +393,13 @@ export function render(criteria, taskName, information) { box.appendChild(textarea); const closeText = document.createElement('a'); - closeText.innerText = 'Отмена'; + closeText.innerText = langData['cancel']; closeText.onclick = () => { box.remove(); resetRadioState(id); }; const saveText = closeText.cloneNode(); - saveText.innerText = 'Сохранить'; + saveText.innerText = langData['save']; saveText.onclick = () => { handleAreaEvent(id, textarea, link, box); checkFeedback(id); @@ -419,7 +440,7 @@ export function render(criteria, taskName, information) { parent.querySelector('a').click(); askLeaveFeedback( parent, - 'Фидбек не может быть пустым! Минимальная длина 8 символов' + langData['not-empty-feedback'] ); setTimeout(() => askLeaveFeedback(parent, askFeedback), 3000); return; @@ -457,11 +478,11 @@ export function render(criteria, taskName, information) { filteredCriteria[id].feedback = textarea.value; if (textarea.value) { link.classList.add('feedback-add'); - link.innerHTML = 'Изменить отзыв'; + link.innerHTML = langData['change-review']; } else { delete filteredCriteria[id].feedback; link.classList.remove('feedback-add'); - link.innerHTML = 'Добавить отзыв'; + link.innerHTML = langData['add-review']; } box.remove(); } @@ -469,10 +490,10 @@ export function render(criteria, taskName, information) { window.copyToClipboard = (e) => { e.preventDefault(); e.target.classList.add('not-link'); - e.target.innerText = 'Скопировано!'; + e.target.innerText = langData['copied']; setTimeout(() => { e.target.classList.remove('not-link'); - e.target.innerText = 'Скопировать в буфер'; + e.target.innerText = langData['copy-to-clipboard']; }, 1000); const el = document.createElement('textarea'); el.value = toClipBoard; @@ -485,3 +506,24 @@ export function render(criteria, taskName, information) { document.body.removeChild(el); }; } + +//chande `some code` to some code +function getFormatedText(text) { + return text + .split('`') + .map((text, i, arr) => + (i < (arr.length - 1)) + ? [text, ((i % 2) === 0 ? '' : '')] + : text + ) + .flat() + .join('') +} + +export const LANG = 'rs-checklist-lang' +const DEFAULT_LANG = 'ru' + +export function getLang () { + const langRes = localStorage.getItem(LANG); + return langRes ? langRes : DEFAULT_LANG; +} \ No newline at end of file diff --git a/js/script.js b/js/script.js index 331e567..c7df155 100644 --- a/js/script.js +++ b/js/script.js @@ -1,4 +1,6 @@ -import { RenderTasks } from "../js/RenderTasks.js" +import lang from '../lang/lang.json' +import { RenderTasks } from "./RenderTasks.js" +import { getLang, LANG } from './RenderView.js'; const start = document.querySelector('.start'); start && start.addEventListener("click", function(e) { @@ -9,6 +11,16 @@ const header = document.querySelector('header'); const offsetTop = header.offsetTop; window.onscroll = () => stickyHeader(); +const langSelectorNode = document.querySelector('.lang-selector') +langSelectorNode.addEventListener( + 'click', + langSelector +) +for (let node of langSelectorNode.children){ + if (node.textContent.trim() == getLang()) { + node.classList.add('disabled-link') + } +}; function stickyHeader() { if (window.pageYOffset > offsetTop + 100) { @@ -18,6 +30,28 @@ function stickyHeader() { } } +function langSelector(e) { + const tagName = e.target.tagName.toString(); + const langText = e.target.textContent; + const disabled = e.target.parentElement.classList.contains('disabled-link') + + if(tagName.toUpperCase() !== 'A' || disabled) return; + localStorage.setItem(LANG, langText); + window.location.reload(); +} + const renderTasks = new RenderTasks('tasks-to-render.json'); renderTasks.initTasks(); +const setTextWithLang = () => { + const curLang = lang[ getLang() ]; + document.querySelector('.feedback button').textContent = + curLang['show-review']; + document.querySelector('.reset').textContent = + curLang['reset']; + document.querySelector('.total-points').innerHTML = + curLang['total-points']; + document.querySelector('.progress').innerHTML = + `${curLang['checked']} 0${curLang['out-of']}`; +} +setTextWithLang(); diff --git a/lang/lang.json b/lang/lang.json new file mode 100644 index 0000000..56f35b3 --- /dev/null +++ b/lang/lang.json @@ -0,0 +1,84 @@ +{ + "ru": { + "reset": "Сбросить", + "total-points": "Общий балл: ", + "show-review": "Показать отзыв", + "score": "Балл за выполнение", + "penalty": "Штрафные баллы", + "checked": "Проверено", + "add-review": "Добавить отзыв", + "change-review": "Изменить отзыв", + "cancel": "Отмена", + "save": "Сохранить", + "copied": "Скопировано!", + "copy-to-clipboard": "Скопировать в буфер", + "not-empty-feedback": "Фидбек не может быть пустым! Минимальная длина 8 символов", + "use-ctrl-enter": "Use Ctrl + Enter to save this feedback or ESC to cancel", + "review": "Отзыв: ", + "penalties": "Штрафы:", + "your-mark": "Ваша оценка - ", + "review-by-points": "Отзыв по пунктам ТЗ:", + "not-all-items": "Вы проверили не все пункты задания", + "remaining": "Осталось ", + "out-of": " из ", + "remaining-end": "", + "obligatory-feedback": "Вам необходимо оставить обязательный фидбек ко всем пунктам, где отмечено - ", + "partially-completed": "Выполнено частично", + "changed-assessment": "Вы изменили оценку. Возможно стоит изменить отзыв?", + "partially-completed-checked": "Вы отметили: выполнено частично. Обязательно оставьте фидбек!", + "result-descriptions": [ + "Не выполненные/не засчитанные пункты:", + "Частично выполненные пункты:", + "Выполненные пункты:" + ], + "check-marks": [ + "не выполнено", + "выполнено частично", + "выполнено полностью" + ], + "penalty-marks": ["нет", "да"], + "point": "балла", + "points": "баллов" + }, + "en": { + "reset": "Reset", + "total-points": "Total points: ", + "show-review": "Show Review", + "score": "Completion score", + "penalty": "Penalty points", + "checked": "Checked", + "add-review": "Add a review", + "change-review": "Edit a Review", + "cancel": "Cancel", + "save": "Save", + "copied": "Copied!", + "copy-to-clipboard": "Copy to clipboard", + "not-empty-feedback": "Feedback cannot be empty! Minimum length 8 characters", + "use-ctrl-enter": "Use Ctrl + Enter to save this feedback or ESC to cancel", + "review": "Review: ", + "penalties": "Penalties:", + "your-mark": "Your rating - ", + "review-by-points": "Feedback on the points of the Terms of Reference:", + "not-all-items": "You have not checked all the items of the task", + "remaining": "", + "out-of": " of ", + "remaining-end": " left", + "obligatory-feedback": "You need to leave a mandatory feedback to all the points where it is marked - ", + "partially-completed": "Partially done", + "changed-assessment": "You have changed the rating. Perhaps you should change your review?", + "partially-completed-checked": "You noted: partially completed. Be sure to leave a feedback!", + "result-descriptions": [ + "Items not completed / not counted:", + "Partially completed items:", + "Completed items:" + ], + "check-marks": [ + "not completed", + "partially completed", + "completed" + ], + "penalty-marks": ["no", "yes"], + "point": "points", + "points": "points" + } +} \ No newline at end of file diff --git a/public/script.js b/public/script.js new file mode 100644 index 0000000..a87f690 --- /dev/null +++ b/public/script.js @@ -0,0 +1,22 @@ +"use strict"; + +var _RenderTasks = require("../js/RenderTasks.js"); +var start = document.querySelector('.start'); +start && start.addEventListener("click", function (e) { + e.stopPropagation(); + if (e.target.parentElement.tagName == "SECTION") e.target.parentElement.style.display = "none"; +}); +var header = document.querySelector('header'); +var offsetTop = header.offsetTop; +window.onscroll = function () { + return stickyHeader(); +}; +function stickyHeader() { + if (window.pageYOffset > offsetTop + 100) { + header.classList.add("sticky"); + } else { + header.classList.remove("sticky"); + } +} +var renderTasks = new _RenderTasks.RenderTasks('tasks-to-render.json'); +renderTasks.initTasks(); \ No newline at end of file diff --git a/tasks-to-render.json b/tasks-to-render.json index 112ad29..c9dbce8 100644 --- a/tasks-to-render.json +++ b/tasks-to-render.json @@ -1 +1 @@ -{"0":"active-tasks/Angular-YouTube-client.json","1":"active-tasks/HTML&CSS.json","2":"active-tasks/Nodejs_basic-task1-caesar.json","3":"active-tasks/art-quiz.json","4":"active-tasks/async-race.json","5":"active-tasks/audio-player.json","6":"active-tasks/calculator.json","7":"active-tasks/clean-code-s1e1.json","8":"active-tasks/codejam-2022q3.json","9":"active-tasks/codejam-the-gem-puzzle.json","10":"active-tasks/covid-dashboard.json","11":"active-tasks/custom-video.json","12":"active-tasks/cv-stage1.json","13":"active-tasks/cv.json","14":"active-tasks/eco-sounds.json","15":"active-tasks/english-for-kids.json","16":"active-tasks/english-puzzle.json","17":"active-tasks/fancy-weather.json","18":"active-tasks/image-galery.json","19":"active-tasks/js30.json","20":"active-tasks/memory-game.json","21":"active-tasks/momentum-stage1.json","22":"active-tasks/momentum.json","23":"active-tasks/movie-app.json","24":"active-tasks/movie-search.json","25":"active-tasks/museum-adaptive.json","26":"active-tasks/museum-dom.json","27":"active-tasks/museum-stage0.json","28":"active-tasks/museum.json","29":"active-tasks/photo-filter.json","30":"active-tasks/portfolio.json","31":"active-tasks/random-game.json","32":"active-tasks/random-jokes.json","33":"active-tasks/react-schedule.json","34":"active-tasks/react-xcheck.json","35":"active-tasks/rs-clone-presentation.json","36":"active-tasks/rs-clone.json","37":"active-tasks/rs-ds-2-linear-regression.json","38":"active-tasks/rs-ds-7-clustering-dimensionality-reduction.json","39":"active-tasks/rs-lang.json","40":"active-tasks/rs-scc.json","41":"active-tasks/rslang.json","42":"active-tasks/rss-english-for-kids.json","43":"active-tasks/rss-fancy-weather.json","44":"active-tasks/rss-movie-search.json","45":"active-tasks/rss-singolo-dom-and-responsive.json","46":"active-tasks/rss-singolo.json","47":"active-tasks/rss-virtual-keyboard.json","48":"active-tasks/schedule.json","49":"active-tasks/song-bird.json","50":"active-tasks/songbird.json","51":"active-tasks/speakit.json","52":"active-tasks/tic-tac-toe.json","53":"active-tasks/travel-part1.json","54":"active-tasks/travel-part2.json","55":"active-tasks/travel-part3.json","56":"active-tasks/virtual-keyboard.json","57":"active-tasks/virtual-piano.json","58":"active-tasks/wildlife.json"} \ No newline at end of file +{"0":"active-tasks/Angular-YouTube-client.json","1":"active-tasks/HTML&CSS.json","2":"active-tasks/Nodejs_basic-task1-caesar.json","3":"active-tasks/art-quiz.json","4":"active-tasks/async-race.json","5":"active-tasks/audio-player.json","6":"active-tasks/calculator.json","7":"active-tasks/clean-code-s1e1.json","8":"active-tasks/codejam-2022q3.json","9":"active-tasks/codejam-the-gem-puzzle.json","10":"active-tasks/covid-dashboard.json","11":"active-tasks/custom-video.json","12":"active-tasks/cv-stage1.json","13":"active-tasks/cv.json","14":"active-tasks/eco-sounds.json","15":"active-tasks/english-for-kids.json","16":"active-tasks/english-puzzle.json","17":"active-tasks/fancy-weather.json","18":"active-tasks/image-galery.json","19":"active-tasks/js30.json","20":"active-tasks/memory-game.json","21":"active-tasks/momentum-stage1.json","22":"active-tasks/momentum.json","23":"active-tasks/movie-app.json","24":"active-tasks/movie-search.json","25":"active-tasks/museum-adaptive.json","26":"active-tasks/museum-dom.json","27":"active-tasks/museum-stage0.json","28":"active-tasks/museum.json","29":"active-tasks/node-nodejs-basics.json","30":"active-tasks/photo-filter.json","31":"active-tasks/portfolio.json","32":"active-tasks/random-game.json","33":"active-tasks/random-jokes.json","34":"active-tasks/react-schedule.json","35":"active-tasks/react-xcheck.json","36":"active-tasks/rs-clone-presentation.json","37":"active-tasks/rs-clone.json","38":"active-tasks/rs-ds-2-linear-regression.json","39":"active-tasks/rs-ds-7-clustering-dimensionality-reduction.json","40":"active-tasks/rs-lang.json","41":"active-tasks/rs-scc.json","42":"active-tasks/rslang.json","43":"active-tasks/rss-english-for-kids.json","44":"active-tasks/rss-fancy-weather.json","45":"active-tasks/rss-movie-search.json","46":"active-tasks/rss-singolo-dom-and-responsive.json","47":"active-tasks/rss-singolo.json","48":"active-tasks/rss-virtual-keyboard.json","49":"active-tasks/schedule.json","50":"active-tasks/song-bird.json","51":"active-tasks/songbird.json","52":"active-tasks/speakit.json","53":"active-tasks/tic-tac-toe.json","54":"active-tasks/travel-part1.json","55":"active-tasks/travel-part2.json","56":"active-tasks/travel-part3.json","57":"active-tasks/virtual-keyboard.json","58":"active-tasks/virtual-piano.json","59":"active-tasks/wildlife.json"} \ No newline at end of file