@hatiolab/things-scene 3.4.49 → 3.4.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db.sqlite +0 -0
- package/package.json +1 -1
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.d.ts +1 -0
- package/things-scene.mjs +4 -4
package/things-scene-ie.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see things-scene-ie.js.LICENSE.txt */
|
|
2
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.scene=e():t.scene=e()}(self,(()=>(()=>{var t={53836:(t,e,r)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=r(23326),o=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=n.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=n.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=n.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,o=function(n,o){var i=t.slice(o*e,(o+1)*e);r.splice.apply(r,[n*e,e].concat(i))},i=[0,4,2,1],a=[8,8,4,2],u=0,s=0;s<4;s++)for(var c=i[s];c<n;c+=a[s])o(c,u),u++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();e.SuperGifParser=o},3207:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();e.SuperGifStream=r},60579:(t,e,r)=>{"use strict";var n=r(53836),o=r(3207),i=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new n.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var o=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(o.data[4*r+0]=n[t][0],o.data[4*r+1]=n[t][1],o.data[4*r+2]=n[t][2],o.data[4*r+3]=255)})),this.frame.putImageData(o,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new o.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}();e.U=i},23326:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,o=0,i=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(o>>3)&1<<(7&o)&&(r|=1<<n),o++;return r},a=[],u=1<<t,s=u+1,c=t+1,f=[],l=function(){f=[],c=t+1;for(var e=0;e<u;e++)f[e]=[e];f[u]=[],f[s]=null};;)if(n=r,(r=i(c))!==u){if(r===s)break;if(r<f.length)n!==u&&f.push(f[n].concat(f[r][0]));else{if(r!==f.length)throw new Error("Invalid LZW code.");f.push(f[n].concat(f[n][0]))}a.push.apply(a,f[r]),f.length===1<<c&&c<12&&c++}else l();return a},t}();e.SuperGifUtils=r},80272:()=>{function t(t,r){if(t){if("string"==typeof t)return e(t,r);var n={}.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?e(t,r):void 0}}function e(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function r(t){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}!function(n,o){"use strict";var i,a,u,s;function c(n,o,i,a,u){if([n,o,i,a].every((function(t){return Number.isFinite(t)}))){var s,c,l,h;if(4===(d=u,g=r(d),u="undefined"===g||null===d?[0]:"function"===g?[NaN]:"object"===g?"function"==typeof d[Symbol.iterator]?(v=d,function(t){if(Array.isArray(t))return e(t)}(v)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(v)||t(v)||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.")}()).map((function(t){var e=r(t);return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?b(t):m(t)})):[b(d)]:[m(d)]).length)s=w(u[0]),c=w(u[1]),l=w(u[2]),h=w(u[3]);else if(3===u.length)s=w(u[0]),c=w(u[1]),h=w(u[1]),l=w(u[2]);else if(2===u.length)s=w(u[0]),l=w(u[0]),c=w(u[1]),h=w(u[1]);else{if(1!==u.length)throw new RangeError("".concat(f(this)," ").concat(u.length," is not a valid size for radii sequence."));s=w(u[0]),c=w(u[0]),l=w(u[0]),h=w(u[0])}var p=[s,c,l,h],y=p.find((function(t){var e=t.x,r=t.y;return e<0||r<0}));if((null==y?void 0:y.x)<0?y.x:null==y||y.y,!p.some((function(t){var e=t.x,r=t.y;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(y)throw new RangeError("".concat(f(this)," Radius value ").concat(y," is negative."));!function(e){var r=function(e,r){return function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(e,r)||t(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(e,4),n=r[0],o=r[1],u=r[2],s=r[3],c=[Math.abs(i)/(n.x+o.x),Math.abs(a)/(o.y+u.y),Math.abs(i)/(u.x+s.x),Math.abs(a)/(n.y+s.y)],f=Math.min.apply(Math,c);if(f<=1){var l,h=function(e){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=t(e))){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}(e);try{for(h.s();!(l=h.n()).done;){var p=l.value;p.x*=f,p.y*=f}}catch(t){h.e(t)}finally{h.f()}}}(p),i<0&&a<0?(this.moveTo(n-s.x,o),this.ellipse(n+i+c.x,o-c.y,c.x,c.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(n+i+l.x,o+a+l.y,l.x,l.y,0,-Math.PI,-Math.PI/2),this.ellipse(n-h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,0),this.ellipse(n-s.x,o-s.y,s.x,s.y,0,0,-Math.PI/2)):i<0?(this.moveTo(n-s.x,o),this.ellipse(n+i+c.x,o+c.y,c.x,c.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+i+l.x,o+a-l.y,l.x,l.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(n-h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,0,1),this.ellipse(n-s.x,o+s.y,s.x,s.y,0,0,-Math.PI/2,1)):a<0?(this.moveTo(n+s.x,o),this.ellipse(n+i-c.x,o-c.y,c.x,c.y,0,Math.PI/2,0,1),this.ellipse(n+i-l.x,o+a+l.y,l.x,l.y,0,0,-Math.PI/2,1),this.ellipse(n+h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+s.x,o-s.y,s.x,s.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(n+s.x,o),this.ellipse(n+i-c.x,o+c.y,c.x,c.y,0,-Math.PI/2,0),this.ellipse(n+i-l.x,o+a-l.y,l.x,l.y,0,0,Math.PI/2),this.ellipse(n+h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,Math.PI),this.ellipse(n+s.x,o+s.y,s.x,s.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(n,o)}}var d,v,g;function b(t){return{x:t.x,y:t.y,z:t.z,w:t.w}}function m(t){return+t}function w(t){var e,r,n=m(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:m(null!==(e=t.x)&&void 0!==e?e:0),y:m(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function f(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}null!==(o=(n=Path2D.prototype).roundRect)&&void 0!==o||(n.roundRect=c),globalThis.CanvasRenderingContext2D&&(null!==(a=(i=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==a||(i.roundRect=c)),globalThis.OffscreenCanvasRenderingContext2D&&(null!==(s=(u=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==s||(u.roundRect=c))}()},59877:(t,e,r)=>{var n,o,i;function a(t){return a="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},a(t)}var u,s=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},u=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,a=Object.create(i.prototype),u=new M(n||[]);return o(a,"_invoke",{value:A(t,r,u)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p="suspendedStart",y="suspendedYield",d="executing",v="completed",g={};function b(){}function m(){}function w(){}var x={};f(x,u,(function(){return this}));var k=Object.getPrototypeOf,S=k&&k(k(R([])));S&&S!==r&&n.call(S,u)&&(x=S);var _=w.prototype=b.prototype=Object.create(x);function O(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(o,i,u,s){var c=h(t[o],t,i);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"===a(l)&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function A(t,r,n){var o=p;return function(i,a){if(o===d)throw new Error("Generator is already running");if(o===v){if("throw"===i)throw a;return{value:e,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=P(u,n);if(s){if(s===g)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===p)throw o=v,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=d;var c=h(t,r,n);if("normal"===c.type){if(o=n.done?v:y,c.arg===g)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=v,n.method="throw",n.arg=c.arg)}}}function P(t,r){var n=r.method,o=t.iterator[n];if(o===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,P(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),g;var i=h(o,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,g;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,g):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function T(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function R(t){if(null!=t){var r=t[u];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return i.next=i}}throw new TypeError(a(t)+" is not iterable")}return m.prototype=w,o(_,"constructor",{value:w,configurable:!0}),o(w,"constructor",{value:m,configurable:!0}),m.displayName=f(w,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},O(E.prototype),f(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new E(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(_),f(_,c,"Generator"),f(_,u,(function(){return this})),f(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=R,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(T),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return u.type="throw",u.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),T(r),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;T(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:R(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}("object"===a(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=s}catch(t){"object"===("undefined"==typeof globalThis?"undefined":a(globalThis))?globalThis.regeneratorRuntime=s:Function("r","regeneratorRuntime = r")(s)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,o="",i=0,a=arguments.length;i!==a;++i){var u=+arguments[i];if(!(u<1114111&&u>>>0===u))throw RangeError("Invalid code point: "+u);u<=65535?n=r.push(u):(u-=65536,n=r.push(55296+(u>>10),u%1024+56320)),n>=16383&&(o+=t.apply(null,r),r.length=0)}return o+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}),String.prototype.codePointAt||function(){"use strict";var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var o,i=e.charCodeAt(n);return i>=55296&&i<=56319&&r>n+1&&(o=e.charCodeAt(n+1))>=56320&&o<=57343?1024*(i-55296)+o-56320+65536:i}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},u=function(){return function t(e,r,n){function o(a,u){if(!r[a]){if(!e[a]){if(i)return i(a,!0);var s=new Error("Cannot find module '"+a+"'");throw s.code="MODULE_NOT_FOUND",s}var c=r[a]={exports:{}};e[a][0].call(c.exports,(function(t){return o(e[a][1][t]||t)}),c,c.exports,t,e,r,n)}return r[a].exports}for(var i=void 0,a=0;a<n.length;a++)o(n[a]);return o}({1:[function(t,e,r){"use strict";var n=t("./utils"),o=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],o=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],i=["Thousand","Million","Billion","Trillion"],a={};e.forEach((function(t,e){a[t.toLowerCase()]=e})),r.forEach((function(t,e){a[t.toLowerCase()]=e})),o.forEach((function(t,e){var r=t.toLowerCase();a[r]=10*(e+2),a[r.substring(0,t.length-1)+"ieth"]=a[r]})),a.hundredth=100,i.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));a[r]=n,a[r+"th"]=n}));var u=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],s={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function c(t){for(var e=0;e<u.length;e++){var r=u[e];if(t>=r[0])return r[1]+c(t-r[0])}return""}function f(t,e){if(void 0!==t)return p(t=Math.floor(t),d(e))}var l={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},h={UPPER:"upper",LOWER:"lower",TITLE:"title"};function p(n,a){var u,s=n<0;switch(n=Math.abs(n),a.primary){case l.LETTERS:u=function(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}(n,a.case===h.UPPER?"A":"a");break;case l.ROMAN:u=c(n),a.case===h.UPPER&&(u=u.toUpperCase());break;case l.WORDS:u=function(t,n){return function t(n,a,u){var s="";if(n<=19)s=(a?" and ":"")+(u?r[n]:e[n]);else if(n<100){var c=Math.floor(n/10),f=n%10;s=(a?" and ":"")+o[c-2],f>0?s+="-"+t(f,!1,u):u&&(s=s.substring(0,s.length-1)+"ieth")}else if(n<1e3){var l=Math.floor(n/100),h=n%100;s=(a?", ":"")+e[l]+" Hundred",h>0?s+=t(h,!0,u):u&&(s+="th")}else{var p=Math.floor(Math.log10(n)/3);p>i.length&&(p=i.length);var y=Math.pow(10,3*p),d=Math.floor(n/y),v=n-d*y;s=(a?", ":"")+t(d,!1,!1)+" "+i[p-1],v>0?s+=t(v,!0,u):u&&(s+="th")}return s}(t,!1,n)}(n,a.ordinal),a.case===h.UPPER?u=u.toUpperCase():a.case===h.LOWER&&(u=u.toLowerCase());break;case l.DECIMAL:u=""+n;var f=a.mandatoryDigits-u.length;if(f>0){var p=new Array(f+1).join("0");u=p+u}if(48!==a.zeroCode&&(u=t(u).map((function(t){return String.fromCodePoint(t.codePointAt(0)+a.zeroCode-48)})).join("")),a.regular)for(var y=Math.floor((u.length-1)/a.groupingSeparators.position);y>0;y--){var d=u.length-y*a.groupingSeparators.position;u=u.substr(0,d)+a.groupingSeparators.character+u.substr(d)}else a.groupingSeparators.reverse().forEach((function(t){var e=u.length-t.position;u=u.substr(0,e)+t.character+u.substr(e)}));if(a.ordinal){var v={1:"st",2:"nd",3:"rd"}[u[u.length-1]];(!v||u.length>1&&"1"===u[u.length-2])&&(v="th"),u+=v}break;case l.SEQUENCE:throw{code:"D3130",value:a.token}}return s&&(u="-"+u),u}var y=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function d(e){var r,n={type:"integer",primary:l.DECIMAL,case:h.LOWER,ordinal:!1},o=e.lastIndexOf(";");switch(-1===o?r=e:(r=e.substring(0,o),"o"===e.substring(o+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=h.UPPER;case"a":n.primary=l.LETTERS;break;case"I":n.case=h.UPPER;case"i":n.primary=l.ROMAN;break;case"W":n.case=h.UPPER,n.primary=l.WORDS;break;case"Ww":n.case=h.TITLE,n.primary=l.WORDS;break;case"w":n.primary=l.WORDS;break;default:var i=null,a=0,u=0,s=[],c=0;if(t(r).map((function(t){return t.codePointAt(0)})).reverse().forEach((function(t){for(var e=!1,r=0;r<y.length;r++){var n=y[r];if(t>=n&&t<=n+9){if(e=!0,a++,c++,null===i)i=n;else if(n!==i)throw{code:"D3131"};break}}e||(35===t?(c++,u++):s.push({position:c,character:String.fromCodePoint(t)}))})),a>0){n.primary=l.DECIMAL,n.zeroCode=i,n.mandatoryDigits=a,n.optionalDigits=u;var f=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),o=n.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),i=1;i<=n.length;i++)if(-1===n.indexOf(i*o))return 0;return o}(s);f>0?(n.regular=!0,n.groupingSeparators={position:f,character:s[0].character}):(n.regular=!1,n.groupingSeparators=s)}else n.primary=l.SEQUENCE,n.token=r}return n}var v={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function g(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var o=t.substring(r,n);o=o.split("]]").join("]"),e.push({type:"literal",value:o})}},o=0,i=0;i<t.length;){if("["===t.charAt(i)){if("["===t.charAt(i+1)){n(o,i),e.push({type:"literal",value:"["}),o=i+=2;continue}if(n(o,i),o=i,-1===(i=t.indexOf("]",o)))throw{code:"D3135"};var a,u=t.substring(o+1,i),s={type:"marker",component:(u=u.split(/\s+/).join("")).charAt(0)},c=u.lastIndexOf(",");if(-1!==c){var f=u.substring(c+1),l=f.indexOf("-"),p=void 0,y=void 0,g=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===l?p=f:(p=f.substring(0,l),y=f.substring(l+1));var b={min:g(p),max:g(y)};s.width=b,a=u.substring(1,c)}else a=u.substring(1);if(1===a.length)s.presentation1=a;else if(a.length>1){var m=a.charAt(a.length-1);-1!=="atco".indexOf(m)?(s.presentation2=m,"o"===m&&(s.ordinal=!0),s.presentation1=a.substring(0,a.length-1)):s.presentation1=a}else s.presentation1=v[s.component];if(void 0===s.presentation1)throw{code:"D3132",value:s.component};if("n"===s.presentation1[0])s.names=h.LOWER;else if("N"===s.presentation1[0])"n"===s.presentation1[1]?s.names=h.TITLE:s.names=h.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(s.component)){var w=s.presentation1;if(s.presentation2&&(w+=";"+s.presentation2),s.integerFormat=d(w),s.width&&void 0!==s.width.min&&s.integerFormat.mandatoryDigits<s.width.min&&(s.integerFormat.mandatoryDigits=s.width.min),-1!=="YMD".indexOf(s.component))if(s.n=-1,s.width&&void 0!==s.width.max)s.n=s.width.max,s.integerFormat.mandatoryDigits=s.n;else{var x=s.integerFormat.mandatoryDigits+s.integerFormat.optionalDigits;x>=2&&(s.n=x)}}"Z"!==s.component&&"z"!==s.component||(s.integerFormat=d(s.presentation1)),e.push(s),o=i+1}i++}return n(o,i),r}var b=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],m=["January","February","March","April","May","June","July","August","September","October","November","December"],w=864e5,x=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*w:e-(r-1)*w},k=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},S=function(t,e){return(e-t)/6048e5+1},_=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/w+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=k(t.getUTCFullYear(),0),o=x(n),i=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),a=S(o,i);if(a>52)i>=x(n.nextYear())&&(a=1);else if(a<1){var u=x(n.previousYear());a=S(u,i)}r=Math.floor(a);break;case"w":var s=k(t.getUTCFullYear(),t.getUTCMonth()),c=x(s),f=Date.UTC(s.year,s.month,t.getUTCDate()),l=S(c,f);if(l>4)f>=x(s.nextMonth())&&(l=1);else if(l<1){var h=x(s.previousMonth());l=S(h,f)}r=Math.floor(l);break;case"X":var p=k(t.getUTCFullYear(),0),y=x(p),d=x(p.nextYear()),v=t.getTime();r=v<y?p.year-1:v>=d?p.year+1:p.year;break;case"x":var g=k(t.getUTCFullYear(),t.getUTCMonth()),b=x(g),m=g.nextMonth(),_=x(m),O=t.getTime();r=O<b?g.previousMonth().month+1:O>=_?m.month+1:g.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},O=null;function E(t,e,r){var n,o=0,i=0;if(void 0!==r){var a=parseInt(r);o=Math.floor(a/100),i=a%100}void 0===e?(null===O&&(O=g("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),n=O):n=g(e);var u=new Date(t+60*(60*o+i)*1e3),s="";return n.parts.forEach((function(t){"literal"===t.type?s+=t.value:s+=function(t,e){var r=_(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=m[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=b[r]}e.names===h.UPPER?r=r.toUpperCase():e.names===h.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=p(r,e.integerFormat);else if("f"===e.component)r=p(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var n=100*o+i;if(e.integerFormat.regular)r=p(n,e.integerFormat);else{var a=e.integerFormat.mandatoryDigits;if(1===a||2===a)r=p(o,e.integerFormat),0!==i&&(r+=":"+f(i,"00"));else{if(3!==a&&4!==a)throw{code:"D3134",value:a};r=p(n,e.integerFormat)}}n>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===n&&"t"===e.presentation2&&(r="Z")}return r}(u,t)})),s}function A(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,o=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),o=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),o=Number.parseInt(e.substring(3))),60*n+o}}else if(t.integerFormat)t.integerFormat.n=t.n,e=A(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)m.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)b.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===h.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case l.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return function(t,e){for(var r=e.charCodeAt(0),n=0,o=0;o<t.length;o++)n+=(t.charCodeAt(t.length-o-1)-r+1)*Math.pow(26,o);return n}(t,n?"A":"a")};break;case l.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return function(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var o=t[n],i=s[o];i<r?e-=i:(r=i,e+=i)}return e}(n?t:t.toUpperCase())};break;case l.WORDS:e.regex="(?:"+Object.keys(a).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return e=t.toLowerCase().split(/,\s|\sand\s|[\s\\-]/).map((function(t){return a[t]})),r=[0],e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)})),r.reduce((function(t,e){return t+e}),0);var e,r};break;case l.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case l.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function P(t,e){var r=A(g(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",o=new RegExp(n,"i").exec(t);if(null!==o){for(var i={},a=1;a<o.length;a++){var u=r.parts[a-1];u.parse&&(i[u.component]=u.parse(o[a]))}if(0===Object.getOwnPropertyNames(i).length)return;var s=0,c=function(t){s<<=1,s+=t?1:0},f=function(t){return!(~t&s||!(t&s))};"YXMxWwdD".split("").forEach((function(t){return c(i[t])}));var l=!f(161)&&f(130),h=f(84),p=!h&&f(72);s=0,"PHhmsf".split("").forEach((function(t){return c(i[t])}));var y=!f(23)&&f(47),d=(l?"YD":h?"XxwF":p?"XWF":"YMD")+(y?"Phmsf":"Hmsf"),v=this.environment.timestamp,b=!1,m=!1;if(d.split("").forEach((function(t){if(void 0===i[t])b?(i[t]=-1!=="MDd".indexOf(t)?1:0,m=!0):i[t]=_(v,t);else if(b=!0,m)throw{code:"D3136"}})),i.M>0?i.M-=1:i.M=0,l){var w=Date.UTC(i.Y,0),x=1e3*(i.d-1)*60*60*24,k=new Date(w+x);i.M=k.getUTCMonth(),i.D=k.getUTCDate()}if(h)throw{code:"D3136"};if(p)throw{code:"D3136"};y&&(i.H=12===i.h?0:i.h,1===i.P&&(i.H+=12));var S=Date.UTC(i.Y,i.M,i.D,i.H,i.m,i.s,i.f);return(i.Z||i.z)&&(S-=60*(i.Z||i.z)*1e3),S}}var j=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");return{formatInteger:f,parseInteger:function(t,e){if(void 0!==t)return A(d(e)).parse(t)},fromMillis:function(t,e,r){if(void 0!==t)return E.call(this,t,e,r)},toMillis:function(t,e){if(void 0!==t){if(void 0===e){if(!j.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return P.call(this,t,e)}}}}();e.exports=o},{"./utils":6}],2:[function(t,e,n){(function(r){(function(){"use strict";function n(t){return n="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},n(t)}function o(){o=function(){return e};var t,e={},r=Object.prototype,i=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},u="function"==typeof Symbol?Symbol:{},s=u.iterator||"@@iterator",c=u.asyncIterator||"@@asyncIterator",f=u.toStringTag||"@@toStringTag";function l(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{l({},"")}catch(t){l=function(t,e,r){return t[e]=r}}function h(t,e,r,n){var o=e&&e.prototype instanceof m?e:m,i=Object.create(o.prototype),u=new R(n||[]);return a(i,"_invoke",{value:P(t,r,u)}),i}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=h;var y="suspendedStart",d="suspendedYield",v="executing",g="completed",b={};function m(){}function w(){}function x(){}var k={};l(k,s,(function(){return this}));var S=Object.getPrototypeOf,_=S&&S(S(I([])));_&&_!==r&&i.call(_,s)&&(k=_);var O=x.prototype=m.prototype=Object.create(k);function E(t){["next","throw","return"].forEach((function(e){l(t,e,(function(t){return this._invoke(e,t)}))}))}function A(t,e){function r(o,a,u,s){var c=p(t[o],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==n(l)&&i.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var o;a(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}})}function P(e,r,n){var o=y;return function(i,a){if(o===v)throw new Error("Generator is already running");if(o===g){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=j(u,n);if(s){if(s===b)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===y)throw o=g,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=v;var c=p(e,r,n);if("normal"===c.type){if(o=n.done?g:d,c.arg===b)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=g,n.method="throw",n.arg=c.arg)}}}function j(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,j(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),b;var i=p(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,b;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,b):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,b)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function M(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function R(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(e){if(e||""===e){var r=e[s];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,a=function r(){for(;++o<e.length;)if(i.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return a.next=a}}throw new TypeError(n(e)+" is not iterable")}return w.prototype=x,a(O,"constructor",{value:x,configurable:!0}),a(x,"constructor",{value:w,configurable:!0}),w.displayName=l(x,f,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,x):(t.__proto__=x,l(t,f,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},E(A.prototype),l(A.prototype,c,(function(){return this})),e.AsyncIterator=A,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new A(h(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},E(O),l(O,f,"Generator"),l(O,s,(function(){return this})),l(O,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=I,R.prototype={constructor:R,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(M),!e)for(var r in this)"t"===r.charAt(0)&&i.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],u=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var s=i.call(a,"catchLoc"),c=i.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,b):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),b},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),M(r),b}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;M(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:I(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),b}},e}var i=t("./utils"),a=function(){var t=o().mark(j),e=o().mark(T),a=o().mark(M),u=o().mark(R),s=o().mark(I),c=o().mark(B),f=o().mark(N),l=o().mark(F),h=o().mark(z),p=o().mark(Y),y=o().mark(G),d=o().mark(H),v=i.isNumeric,g=i.isArrayOfStrings,b=i.isArrayOfNumbers,m=i.createSequence,w=i.isSequence,x=i.isFunction,k=i.isLambda,S=i.isIterable,_=i.getFunctionArity,O=i.isDeepEqual,E=i.stringToArray;function A(t,e,r){if(void 0!==t){var n=E(t),o=n.length;if(o+e<0&&(e=0),void 0!==r){if(r<=0)return"";var i=e>=0?e+r:o+e+r;return n.slice(e,i).join("")}return n.slice(e).join("")}}function P(t){if(void 0!==t)return E(t).length}function j(e,r){var n;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.apply(this,[r]),!S(n)){t.next=4;break}return t.delegateYield(n,"t0",3);case 3:n=t.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||x(n.next)){t.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return t.abrupt("return",n);case 7:case"end":return t.stop()}}),t,this)}function T(t,r){var n,i;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==t){e.next=2;break}return e.abrupt("return",void 0);case 2:if("string"!=typeof r){e.next=6;break}n=-1!==t.indexOf(r),e.next=9;break;case 6:return e.delegateYield(j(r,t),"t0",7);case 7:i=e.t0,n=void 0!==i;case 9:return e.abrupt("return",n);case 10:case"end":return e.stop()}}),e)}function M(t,e,r){var n,i,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!(r<0)){o.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=m(),!(void 0===r||r>0)){o.next=17;break}return i=0,o.delegateYield(j(e,t),"t0",8);case 8:if(void 0===(u=o.t0)){o.next=17;break}case 10:if(void 0===u||!(void 0===r||i<r)){o.next=17;break}return n.push({match:u.match,index:u.start,groups:u.groups}),o.delegateYield(j(u.next),"t1",13);case 13:u=o.t1,i++,o.next=10;break;case 17:return o.abrupt("return",n);case 18:case"end":return o.stop()}}),a)}function R(t,e,r,n){var i,a,s,c,f,l,h,p;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(i=this,""!==e){o.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){o.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(a="string"==typeof r?function(t){for(var e="",n=0,o=r.indexOf("$",n);-1!==o&&n<r.length;){e+=r.substring(n,o),n=o+1;var i=r.charAt(n);if("$"===i)e+="$",n++;else if("0"===i)e+=t.match,n++;else{var a;if(a=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,o=parseInt(r.substring(n,n+a),10),a>1&&o>t.groups.length&&(o=parseInt(r.substring(n,n+a-1),10)),isNaN(o))e+="$";else{if(t.groups.length>0){var u=t.groups[o-1];void 0!==u&&(e+=u)}n+=o.toString().length}}o=r.indexOf("$",n)}return e+r.substring(n)}:r,s="",c=0,!(void 0===n||n>0)){o.next=44;break}if(f=0,"string"!=typeof e){o.next=18;break}for(l=t.indexOf(e,c);-1!==l&&(void 0===n||f<n);)s+=t.substring(c,l),s+=r,c=l+e.length,f++,l=t.indexOf(e,c);s+=t.substring(c),o.next=42;break;case 18:return o.delegateYield(j(e,t),"t0",19);case 19:if(void 0===(h=o.t0)){o.next=41;break}case 21:if(void 0===h||!(void 0===n||f<n)){o.next=38;break}if(s+=t.substring(c,h.start),p=a.apply(i,[h]),!S(p)){o.next=27;break}return o.delegateYield(p,"t1",26);case 26:p=o.t1;case 27:if("string"!=typeof p){o.next=31;break}s+=p,o.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:p};case 32:return c=h.start+h.match.length,f++,o.delegateYield(j(h.next),"t2",35);case 35:h=o.t2,o.next=21;break;case 38:s+=t.substring(c),o.next=42;break;case 41:s=t;case 42:o.next=45;break;case 44:s=t;case 45:return o.abrupt("return",s);case 46:case"end":return o.stop()}}),u,this)}function I(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!(r<0)){o.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){o.next=27;break}if("string"!=typeof e){o.next=10;break}n=t.split(e,r),o.next=27;break;case 10:return i=0,o.delegateYield(j(e,t),"t0",12);case 12:if(void 0===(a=o.t0)){o.next=26;break}u=0;case 15:if(void 0===a||!(void 0===r||i<r)){o.next=23;break}return n.push(t.substring(u,a.start)),u=a.end,o.delegateYield(j(a.next),"t1",19);case 19:a=o.t1,i++,o.next=15;break;case 23:(void 0===r||i<r)&&n.push(t.substring(u)),o.next=27;break;case 26:n.push(t);case 27:return o.abrupt("return",n);case 28:case"end":return o.stop()}}),s)}function C(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var o=(r=Math.round(t))-t;return.5===Math.abs(o)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function L(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=L(t[0]):t.length>1&&(e=t.filter((function(t){return L(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):v(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function D(t,e,r,n){var o=[e],i=_(t);return i>=2&&o.push(r),i>=3&&o.push(n),o}function B(t,e){var r,n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){o.next=12;break}return i=D(e,t[n],n,t),o.delegateYield(e.apply(this,i),"t0",7);case 7:void 0!==(a=o.t0)&&r.push(a);case 9:n++,o.next=4;break;case 12:return o.abrupt("return",r);case 13:case"end":return o.stop()}}),c,this)}function N(t,e){var r,n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){o.next=13;break}return i=t[n],a=D(e,i,n,t),o.delegateYield(e.apply(this,a),"t0",8);case 8:L(o.t0)&&r.push(i);case 10:n++,o.next=4;break;case 13:return o.abrupt("return",r);case 14:case"end":return o.stop()}}),f,this)}function F(t,e){var r,n,i,a,u,s,c;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=!1,i=0;case 4:if(!(i<t.length)){o.next=22;break}if(a=t[i],u=!0,void 0===e){o.next=12;break}return s=D(e,a,i,t),o.delegateYield(e.apply(this,s),"t0",10);case 10:c=o.t0,u=L(c);case 12:if(!u){o.next=19;break}if(r){o.next=18;break}n=a,r=!0,o.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:i};case 19:i++,o.next=4;break;case 22:if(r){o.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return o.abrupt("return",n);case 25:case"end":return o.stop()}}),l,this)}function z(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!((i=_(e))<2)){o.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],a=1):(n=r,a=0);case 6:if(!(a<t.length)){o.next=15;break}return u=[n,t[a]],i>=3&&u.push(a),i>=4&&u.push(t),o.delegateYield(e.apply(this,u),"t0",11);case 11:n=o.t0,a++,o.next=6;break;case 15:return o.abrupt("return",n);case 16:case"end":return o.stop()}}),h,this)}function U(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=m(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function Y(t,e){var r,n,i,a;return o().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:r=m(),u.t0=o().keys(t);case 2:if((u.t1=u.t0()).done){u.next=10;break}return n=u.t1.value,i=D(e,t[n],n,t),u.delegateYield(e.apply(this,i),"t2",6);case 6:void 0!==(a=u.t2)&&r.push(a),u.next=2;break;case 10:return u.abrupt("return",r);case 11:case"end":return u.stop()}}),p,this)}function G(t,e){var r,n,i,a;return o().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:if(void 0!==t){u.next=2;break}return u.abrupt("return",void 0);case 2:if(!(t.length<=1)){u.next=4;break}return u.abrupt("return",t);case 4:if(void 0!==e){u.next=10;break}if(b(t)||g(t)){u.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=o().mark((function t(e,r){return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),u.next=11;break;case 10:r=e;case 11:return n=o().mark((function t(e,n){var i,a;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return i=o().mark((function t(e,n,i){return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(0!==n.length){o.next=4;break}Array.prototype.push.apply(e,i),o.next=16;break;case 4:if(0!==i.length){o.next=8;break}Array.prototype.push.apply(e,n),o.next=16;break;case 8:return o.delegateYield(r(n[0],i[0]),"t0",9);case 9:if(!o.t0){o.next=14;break}return e.push(i[0]),o.delegateYield(t(e,n,i.slice(1)),"t1",12);case 12:o.next=16;break;case 14:return e.push(n[0]),o.delegateYield(t(e,n.slice(1),i),"t2",16);case 16:case"end":return o.stop()}}),t)})),a=[],t.delegateYield(i(a,e,n),"t0",3);case 3:return t.abrupt("return",a);case 4:case"end":return t.stop()}}),t)})),i=o().mark((function t(e){var r,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){o.next=4;break}return o.abrupt("return",e);case 4:return r=Math.floor(e.length/2),i=e.slice(0,r),a=e.slice(r),o.delegateYield(t(i),"t0",8);case 8:return i=o.t0,o.delegateYield(t(a),"t1",10);case 10:return a=o.t1,o.delegateYield(n(i,a),"t2",12);case 12:return o.abrupt("return",o.t2);case 13:case"end":return o.stop()}}),t)})),u.delegateYield(i(t),"t0",14);case 14:return a=u.t0,u.abrupt("return",a);case 16:case"end":return u.stop()}}),y)}function H(t,e){var r,n,i,a;return o().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:r={},u.t0=o().keys(t);case 2:if((u.t1=u.t0()).done){u.next=11;break}return n=u.t1.value,i=t[n],a=D(e,i,n,t),u.delegateYield(e.apply(this,a),"t2",7);case 7:L(u.t2)&&(r[n]=i),u.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),u.abrupt("return",r);case 13:case"end":return u.stop()}}),d,this)}return{sum:function(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}},count:function(t){return void 0===t?0:t.length},max:function(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)},min:function(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)},average:function(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}},string:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(x(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&v(e)?Number(e.toPrecision(15)):e&&x(e)?"":e}),n)}return r}},substring:A,substringBefore:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}},substringAfter:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}},lowercase:function(t){if(void 0!==t)return t.toLowerCase()},uppercase:function(t){if(void 0!==t)return t.toUpperCase()},length:P,trim:function(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}},pad:function(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var o=Math.abs(e)-P(t);if(o>0){var i=new Array(o+1).join(r);r.length>1&&(i=A(i,0,o)),n=e>0?t+i:i+t}else n=t;return n}},match:M,contains:T,replace:R,split:I,join:function(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)},formatNumber:function(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var o=[],i=n["zero-digit"].charCodeAt(0),a=i;a<i+10;a++)o.push(String.fromCharCode(a));var u=o.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),s=e.split(n["pattern-separator"]);if(s.length>2)throw{code:"D3080",stack:(new Error).stack};var c=s.map((function(t){var e,r,o,i,a=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==u.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),s=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==u.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),c=t.substring(a.length,t.length-s.length),f=t.indexOf(n["exponent-separator"],a.length);-1===f||f>t.length-s.length?(e=c,r=void 0):(e=c.substring(0,f),r=c.substring(f+1));var l=e.indexOf(n["decimal-separator"]);return-1===l?(o=e,i=s):(o=e.substring(0,l),i=e.substring(l+1)),{prefix:a,suffix:s,activePart:c,mantissaPart:e,exponentPart:r,integerPart:o,fractionalPart:i,subpicture:t}}));c.forEach((function(t){var e,r,i=t.subpicture,a=i.indexOf(n["decimal-separator"]);a!==i.lastIndexOf(n["decimal-separator"])&&(e="D3081"),i.indexOf(n.percent)!==i.lastIndexOf(n.percent)&&(e="D3082"),i.indexOf(n["per-mille"])!==i.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==i.indexOf(n.percent)&&-1!==i.indexOf(n["per-mille"])&&(e="D3084");var s=!1;for(r=0;r<t.mantissaPart.length;r++){var c=t.mantissaPart.charAt(r);if(-1!==o.indexOf(c)||c===n.digit){s=!0;break}}s||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===u.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==a?i.charAt(a-1)!==n["grouping-separator"]&&i.charAt(a+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==i.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var f=t.integerPart.indexOf(n.digit);-1!==f&&t.integerPart.substring(0,f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(f=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3091");var l="string"==typeof t.exponentPart;if(l&&t.exponentPart.length>0&&(-1!==i.indexOf(n.percent)||-1!==i.indexOf(n["per-mille"]))&&(e="D3092"),l&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===o.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}}));var f,l,h,p,y=c.map((function(t){var e=function(e,r){for(var i=[],a=e.indexOf(n["grouping-separator"]);-1!==a;){var u=(r?e.substring(0,a):e.substring(a)).split("").filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length;i.push(u),a=t.integerPart.indexOf(n["grouping-separator"],a+1)}return i},r=e(t.integerPart),i=function(t){if(0===t.length)return 0;for(var e=t.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),r=1;r<=t.length;r++)if(-1===t.indexOf(r*e))return 0;return e}(r),a=e(t.fractionalPart,!0),u=t.integerPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length,s=u,c=t.fractionalPart.split(""),f=c.filter((function(t){return-1!==o.indexOf(t)})).length,l=c.filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length,h="string"==typeof t.exponentPart;0===u&&0===l&&(h?(f=1,l=1):u=1),h&&0===u&&-1!==t.integerPart.indexOf(n.digit)&&(u=1),0===u&&0===f&&(f=1);var p=0;return h&&(p=t.exponentPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:i,minimumIntegerPartSize:u,scalingFactor:s,prefix:t.prefix,fractionalPartGroupingPositions:a,minimumFactionalPartSize:f,maximumFactionalPartSize:l,minimumExponentSize:p,suffix:t.suffix,picture:t.subpicture}})),d=n["minus-sign"],v=n["zero-digit"],g=n["decimal-separator"],b=n["grouping-separator"];if(1===y.length&&(y.push(JSON.parse(JSON.stringify(y[0]))),y[1].prefix=d+y[1].prefix),l=-1!==(f=t>=0?y[0]:y[1]).picture.indexOf(n.percent)?100*t:-1!==f.picture.indexOf(n["per-mille"])?1e3*t:t,0===f.minimumExponentSize)h=l;else{var m=Math.pow(10,f.scalingFactor),w=Math.pow(10,f.scalingFactor-1);for(h=l,p=0;h<w;)h*=10,p-=1;for(;h>m;)h/=10,p+=1}var x=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==v&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?o[t.charCodeAt(0)-48]:t})).join("")),r},k=x(C(h,f.maximumFactionalPartSize),f.maximumFactionalPartSize),S=k.indexOf(".");for(-1===S?k+=g:k=k.replace(".",g);k.charAt(0)===v;)k=k.substring(1);for(;k.charAt(k.length-1)===v;)k=k.substring(0,k.length-1);S=k.indexOf(g);var _=f.minimumIntegerPartSize-S,O=f.minimumFactionalPartSize-(k.length-S-1);if(k=(_>0?new Array(_+1).join(v):"")+k,k+=O>0?new Array(O+1).join(v):"",S=k.indexOf(g),f.regularGrouping>0)for(var E=Math.floor((S-1)/f.regularGrouping),A=1;A<=E;A++)k=[k.slice(0,S-A*f.regularGrouping),b,k.slice(S-A*f.regularGrouping)].join("");else f.integerPartGroupingPositions.forEach((function(t){k=[k.slice(0,S-t),b,k.slice(S-t)].join(""),S++}));if(S=k.indexOf(g),f.fractionalPartGroupingPositions.forEach((function(t){k=[k.slice(0,t+S+1),b,k.slice(t+S+1)].join("")})),S=k.indexOf(g),-1!==f.picture.indexOf(g)&&S!==k.length-1||(k=k.substring(0,k.length-1)),void 0!==p){var P=x(p,0);(_=f.minimumExponentSize-P.length)>0&&(P=new Array(_+1).join(v)+P),k=k+n["exponent-separator"]+(p<0?d:"")+P}return k=f.prefix+k+f.suffix}},formatBase:function(t,e){if(void 0!==t){if(t=C(t),(e=void 0===e?10:C(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}},number:function(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}},floor:function(t){if(void 0!==t)return Math.floor(t)},ceil:function(t){if(void 0!==t)return Math.ceil(t)},round:C,abs:function(t){if(void 0!==t)return Math.abs(t)},sqrt:function(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}},power:function(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}},random:function(){return Math.random()},boolean:L,not:function(t){if(void 0!==t)return!L(t)},map:B,zip:function(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var o=e.map((function(t){return t[n]}));t.push(o)}return t},filter:N,single:F,foldLeft:z,sift:H,keys:function t(e){var r=m();if(Array.isArray(e)){var o={};e.forEach((function(e){t(e).forEach((function(t){o[t]=!0}))})),r=t(o)}else null===e||"object"!==n(e)||k(e)||Object.keys(e).forEach((function(t){return r.push(t)}));return r},lookup:function t(e,r){var o;if(Array.isArray(e)){o=m();for(var i=0;i<e.length;i++){var a=t(e[i],r);void 0!==a&&(Array.isArray(a)?a.forEach((function(t){return o.push(t)})):o.push(a))}}else null!==e&&"object"===n(e)&&(o=e[r]);return o},append:U,exists:function(t){return void 0!==t},spread:function t(e){var r=m();if(Array.isArray(e))e.forEach((function(e){r=U(r,t(e))}));else if(null===e||"object"!==n(e)||k(e))r=e;else for(var o in e){var i={};i[o]=e[o],r.push(i)}return r},merge:function(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}},reverse:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}},each:Y,error:function(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}},assert:function(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}},type:function(t){if(void 0!==t)return null===t?"null":v(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":x(t)?"function":"object"},sort:G,shuffle:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}},distinct:function(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=w(t)?m():[],r=0;r<t.length;r++){for(var n=t[r],o=!1,i=0;i<e.length;i++)if(O(n,e[i])){o=!0;break}o||e.push(n)}return e}},base64encode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.btoa:function(t){return new r.Buffer.from(t,"binary").toString("base64")};return e(t)}},base64decode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.atob:function(t){return new r.Buffer.from(t,"base64").toString("binary")};return e(t)}},encodeUrlComponent:function(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}},encodeUrl:function(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}},decodeUrlComponent:function(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}},decodeUrl:function(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}}}();e.exports=a}).call(this)}).call(this,void 0!==r.g?r.g:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){"use strict";function n(t){return n="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},n(t)}function o(){o=function(){return e};var t,e={},r=Object.prototype,i=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},u="function"==typeof Symbol?Symbol:{},s=u.iterator||"@@iterator",c=u.asyncIterator||"@@asyncIterator",f=u.toStringTag||"@@toStringTag";function l(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{l({},"")}catch(t){l=function(t,e,r){return t[e]=r}}function h(t,e,r,n){var o=e&&e.prototype instanceof m?e:m,i=Object.create(o.prototype),u=new R(n||[]);return a(i,"_invoke",{value:P(t,r,u)}),i}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=h;var y="suspendedStart",d="suspendedYield",v="executing",g="completed",b={};function m(){}function w(){}function x(){}var k={};l(k,s,(function(){return this}));var S=Object.getPrototypeOf,_=S&&S(S(I([])));_&&_!==r&&i.call(_,s)&&(k=_);var O=x.prototype=m.prototype=Object.create(k);function E(t){["next","throw","return"].forEach((function(e){l(t,e,(function(t){return this._invoke(e,t)}))}))}function A(t,e){function r(o,a,u,s){var c=p(t[o],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==n(l)&&i.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var o;a(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}})}function P(e,r,n){var o=y;return function(i,a){if(o===v)throw new Error("Generator is already running");if(o===g){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=j(u,n);if(s){if(s===b)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===y)throw o=g,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=v;var c=p(e,r,n);if("normal"===c.type){if(o=n.done?g:d,c.arg===b)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=g,n.method="throw",n.arg=c.arg)}}}function j(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,j(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),b;var i=p(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,b;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,b):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,b)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function M(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function R(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(e){if(e||""===e){var r=e[s];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,a=function r(){for(;++o<e.length;)if(i.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return a.next=a}}throw new TypeError(n(e)+" is not iterable")}return w.prototype=x,a(O,"constructor",{value:x,configurable:!0}),a(x,"constructor",{value:w,configurable:!0}),w.displayName=l(x,f,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,x):(t.__proto__=x,l(t,f,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},E(A.prototype),l(A.prototype,c,(function(){return this})),e.AsyncIterator=A,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new A(h(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},E(O),l(O,f,"Generator"),l(O,s,(function(){return this})),l(O,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=I,R.prototype={constructor:R,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(M),!e)for(var r in this)"t"===r.charAt(0)&&i.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],u=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var s=i.call(a,"catchLoc"),c=i.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,b):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),b},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),M(r),b}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;M(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:I(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),b}},e}var i=t("./datetime"),a=t("./functions"),u=t("./utils"),s=t("./parser"),c=t("./signature"),f=function(){var t=o().mark(z),e=o().mark(U),r=o().mark(G),f=o().mark(H),l=o().mark(W),h=o().mark(X),p=o().mark(q),y=o().mark(V),d=o().mark(it),v=o().mark(st),g=o().mark(lt),b=o().mark(ht),m=o().mark(pt),w=o().mark(vt),x=o().mark(mt),k=o().mark(wt),S=o().mark(xt),_=o().mark(kt),O=o().mark(_t),E=o().mark(Et),A=o().mark(jt),P=o().mark(Rt),j=u.isNumeric,T=u.isArrayOfStrings,M=u.isArrayOfNumbers,R=u.createSequence,I=u.isSequence,C=u.isFunction,L=u.isLambda,D=u.isIterable,B=u.getFunctionArity,N=u.isDeepEqual,F=It(null);function z(e,r,n){var i,a,u,s;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(a=n.lookup("__evaluate_entry"))&&a(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(U(e,r,n),"t1",6);case 6:return i=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(q(e,r,n),"t2",9);case 9:return i=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(V(e,r,n),"t3",12);case 12:return i=t.t3,t.abrupt("break",50);case 14:return i=Q(e,r),t.abrupt("break",50);case 16:return i=K(e),t.abrupt("break",50);case 18:return i=J(0,r),t.abrupt("break",50);case 20:return i=$(0,r),t.abrupt("break",50);case 22:return i=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(ht(e,r,n),"t4",25);case 25:return i=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(pt(e,r,n),"t5",28);case 28:return i=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(lt(e,r,n),"t6",31);case 31:return i=t.t6,t.abrupt("break",50);case 33:return i=yt(e),t.abrupt("break",50);case 35:return t.delegateYield(wt(e,r,n),"t7",36);case 36:return i=t.t7,t.abrupt("break",50);case 38:return i=dt(e,r,n),t.abrupt("break",50);case 40:return i=St(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(_t(e,r,n),"t8",43);case 43:return i=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(mt(e,r,n),"t9",46);case 46:return i=t.t9,t.abrupt("break",50);case 48:return i=gt(e,0,n),t.abrupt("break",50);case 50:if(!n.async||null!=i&&"function"==typeof i.then||(i=Promise.resolve(i)),!n.async||"function"!=typeof i.then||!e.nextFunction||"function"!=typeof i[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,i;case 56:i=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}u=0;case 59:if(!(u<e.predicate.length)){t.next=65;break}return t.delegateYield(X(e.predicate[u].expr,i,n),"t10",61);case 61:i=t.t10;case 62:u++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(st(e.group,i,n),"t11",67);case 67:i=t.t11;case 68:return(s=n.lookup("__evaluate_exit"))&&s(e,r,n,i),i&&I(i)&&!i.tupleStream&&(e.keepArray&&(i.keepSingleton=!0),0===i.length?i=void 0:1===i.length&&(i=i.keepSingleton?i:i[0])),t.abrupt("return",i);case 72:case"end":return t.stop()}}),t)}function U(t,r,n){var i,a,u,s,c,f;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:i=Array.isArray(r)&&"variable"!==t.steps[0].type?r:R(r),u=!1,s=void 0,c=0;case 4:if(!(c<t.steps.length)){e.next=25;break}if((f=t.steps[c]).tuple&&(u=!0),0!==c||!f.consarray){e.next=12;break}return e.delegateYield(z(f,i,n),"t0",9);case 9:a=e.t0,e.next=19;break;case 12:if(!u){e.next=17;break}return e.delegateYield(W(f,i,s,n),"t1",14);case 14:s=e.t1,e.next=19;break;case 17:return e.delegateYield(G(f,i,n,c===t.steps.length-1),"t2",18);case 18:a=e.t2;case 19:if(u||void 0!==a&&0!==a.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===f.focus&&(i=a);case 22:c++,e.next=4;break;case 25:if(u)if(t.tuple)a=s;else for(a=R(),c=0;c<s.length;c++)a.push(s[c]["@"]);if(t.keepSingletonArray&&(Array.isArray(a)&&a.cons&&!a.sequence&&(a=R(a)),a.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(st(t.group,u?s:a,n),"t3",29);case 29:a=e.t3;case 30:return e.abrupt("return",a);case 31:case"end":return e.stop()}}),e)}function Y(t,e){var r=It(t);for(var n in e)r.bind(n,e[n]);return r}function G(t,e,n,i){var a,u,s,c,f;return o().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(vt(t,e,n),"t0",2);case 2:if(a=r.t0,!t.stages){r.next=6;break}return r.delegateYield(H(t.stages,a,n),"t1",5);case 5:a=r.t1;case 6:return r.abrupt("return",a);case 7:a=R(),u=0;case 9:if(!(u<e.length)){r.next=24;break}return r.delegateYield(z(t,e[u],n),"t2",11);case 11:if(s=r.t2,!t.stages){r.next=20;break}c=0;case 14:if(!(c<t.stages.length)){r.next=20;break}return r.delegateYield(X(t.stages[c].expr,s,n),"t3",16);case 16:s=r.t3;case 17:c++,r.next=14;break;case 20:void 0!==s&&a.push(s);case 21:u++,r.next=9;break;case 24:return f=R(),i&&1===a.length&&Array.isArray(a[0])&&!I(a[0])?f=a[0]:a.forEach((function(t){!Array.isArray(t)||t.cons?f.push(t):t.forEach((function(t){return f.push(t)}))})),r.abrupt("return",f);case 27:case"end":return r.stop()}}),r)}function H(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:n=e,i=0;case 2:if(!(i<t.length)){o.next=15;break}a=t[i],o.t0=a.type,o.next="filter"===o.t0?7:"index"===o.t0?10:12;break;case 7:return o.delegateYield(X(a.expr,n,r),"t1",8);case 8:return n=o.t1,o.abrupt("break",12);case 10:for(u=0;u<n.length;u++)n[u][a.value]=u;return o.abrupt("break",12);case 12:i++,o.next=2;break;case 15:return o.abrupt("return",n);case 16:case"end":return o.stop()}}),f)}function W(t,e,r,n){var i,a,u,s,c,f,h,p;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if("sort"!==t.type){o.next=15;break}if(!r){o.next=6;break}return o.delegateYield(vt(t,r,n),"t0",3);case 3:i=o.t0,o.next=11;break;case 6:return o.delegateYield(vt(t,e,n),"t1",7);case 7:for(a=o.t1,(i=R()).tupleStream=!0,u=0;u<a.length;u++)(s={"@":a[u]})[t.index]=u,i.push(s);case 11:if(!t.stages){o.next=14;break}return o.delegateYield(H(t.stages,i,n),"t2",13);case 13:i=o.t2;case 14:return o.abrupt("return",i);case 15:(i=R()).tupleStream=!0,c=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),f=0;case 20:if(!(f<r.length)){o.next=28;break}return c=Y(n,r[f]),o.delegateYield(z(t,r[f]["@"],c),"t3",23);case 23:if(void 0!==(h=o.t3))for(Array.isArray(h)||(h=[h]),p=0;p<h.length;p++)s={},Object.assign(s,r[f]),h.tupleStream?Object.assign(s,h[p]):(t.focus?(s[t.focus]=h[p],s["@"]=r[f]["@"]):s["@"]=h[p],t.index&&(s[t.index]=p),t.ancestor&&(s[t.ancestor.label]=r[f]["@"])),i.push(s);case 25:f++,o.next=20;break;case 28:if(!t.stages){o.next=31;break}return o.delegateYield(H(t.stages,i,n),"t4",30);case 30:i=o.t4;case 31:return o.abrupt("return",i);case 32:case"end":return o.stop()}}),l)}function X(t,e,r){var n,i,u,s,c,f;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(n=R(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=R(e)),"number"!==t.type){o.next=10;break}(i=Math.floor(t.value))<0&&(i=e.length+i),void 0!==(u=e[i])&&(Array.isArray(u)?n=u:n.push(u)),o.next=23;break;case 10:i=0;case 11:if(!(i<e.length)){o.next=23;break}return u=e[i],s=u,c=r,e.tupleStream&&(s=u["@"],c=Y(r,u)),o.delegateYield(z(t,s,c),"t0",17);case 17:f=o.t0,j(f)&&(f=[f]),M(f)?f.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===i&&n.push(u)})):a.boolean(f)&&n.push(u);case 20:i++,o.next=11;break;case 23:return o.abrupt("return",n);case 24:case"end":return o.stop()}}),h)}function q(t,e,r){var n,i,a,u,s;return o().wrap((function(c){for(;;)switch(c.prev=c.next){case 0:return c.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(i=c.t0,a=t.value,u=o().mark((function n(){return o().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==a&&"or"!==a){c.next=15;break}return c.prev=5,c.delegateYield(it(i,u,a),"t1",7);case 7:return c.abrupt("return",c.t1);case 10:throw c.prev=10,c.t2=c.catch(5),c.t2.position=t.position,c.t2.token=a,c.t2;case 15:return c.delegateYield(u(),"t3",16);case 16:s=c.t3,c.prev=17,c.t4=a,c.next="+"===c.t4||"-"===c.t4||"*"===c.t4||"/"===c.t4||"%"===c.t4?21:"="===c.t4||"!="===c.t4?23:"<"===c.t4||"<="===c.t4||">"===c.t4||">="===c.t4?25:"&"===c.t4?27:".."===c.t4?29:"in"===c.t4?31:33;break;case 21:return n=et(i,s,a),c.abrupt("break",33);case 23:return n=rt(i,s,a),c.abrupt("break",33);case 25:return n=nt(i,s,a),c.abrupt("break",33);case 27:return n=ut(i,s),c.abrupt("break",33);case 29:return n=ft(i,s),c.abrupt("break",33);case 31:return n=ot(i,s),c.abrupt("break",33);case 33:c.next=40;break;case 35:throw c.prev=35,c.t5=c.catch(17),c.t5.position=t.position,c.t5.token=a,c.t5;case 40:return c.abrupt("return",n);case 41:case"end":return c.stop()}}),p,null,[[5,10],[17,35]])}function V(t,e,r){var n,i,u,s;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:o.t0=t.value,o.next="-"===o.t0?3:"["===o.t0?15:"{"===o.t0?27:30;break;case 3:return o.delegateYield(z(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=o.t1)){o.next=9;break}n=void 0,o.next=14;break;case 9:if(!j(n)){o.next=13;break}n=-n,o.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return o.abrupt("break",30);case 15:n=[],i=0;case 17:if(!(i<t.expressions.length)){o.next=25;break}return u=t.expressions[i],o.delegateYield(z(u,e,r),"t2",20);case 20:void 0!==(s=o.t2)&&("["===u.value?n.push(s):n=a.append(n,s));case 22:i++,o.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),o.abrupt("break",30);case 27:return o.delegateYield(st(t,e,r),"t3",28);case 28:return n=o.t3,o.abrupt("break",30);case 30:return o.abrupt("return",n);case 31:case"end":return o.stop()}}),y)}function Q(t,e,r){return a.lookup(e,t.value)}function K(t){return t.value}function J(t,e){var r=R();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=Z(n),r=a.append(r,n)):r.push(n)})),r}function Z(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){Z(t,e)})):e.push(t),e}function $(t,e){var r,n=R();return void 0!==e&&(tt(e,n),r=1===n.length?n[0]:n),r}function tt(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){tt(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){tt(t[r],e)}))}function et(t,e,r){var n;if(void 0!==t&&!j(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!j(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function rt(t,e,r){var o,i=n(t),a=n(e);if("undefined"===i||"undefined"===a)return!1;switch(r){case"=":o=N(t,e);break;case"!=":o=!N(t,e)}return o}function nt(t,e,r){var o,i=n(t),a=n(e);if("undefined"!==i&&"string"!==i&&"number"!==i||"undefined"!==a&&"string"!==a&&"number"!==a)throw{code:"T2010",stack:(new Error).stack,value:"string"!==i&&"number"!==i?t:e};if("undefined"!==i&&"undefined"!==a){if(i!==a)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":o=t<e;break;case"<=":o=t<=e;break;case">":o=t>e;break;case">=":o=t>=e}return o}}function ot(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function it(t,e,r){var n,i;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:i=at(t),o.t0=r,o.next="and"===o.t0?4:"or"===o.t0?12:20;break;case 4:if(o.t1=i,!o.t1){o.next=10;break}return o.t2=at,o.delegateYield(e(),"t3",8);case 8:o.t4=o.t3,o.t1=(0,o.t2)(o.t4);case 10:return n=o.t1,o.abrupt("break",20);case 12:if(o.t5=i,o.t5){o.next=18;break}return o.t6=at,o.delegateYield(e(),"t7",16);case 16:o.t8=o.t7,o.t5=(0,o.t6)(o.t8);case 18:return n=o.t5,o.abrupt("break",20);case 20:return o.abrupt("return",n);case 21:case"end":return o.stop()}}),d)}function at(t){var e=a.boolean(t);return void 0!==e&&e}function ut(t,e){var r="",n="";return void 0!==t&&(r=a.string(t)),void 0!==e&&(n=a.string(e)),r.concat(n)}function st(t,e,r){var n,i,u,s,c,f,l,h,p,y,d,g,b;return o().wrap((function(v){for(;;)switch(v.prev=v.next){case 0:n={},i={},u=!(!e||!e.tupleStream),Array.isArray(e)||(e=R(e)),0===e.length&&e.push(void 0),s=0;case 6:if(!(s<e.length)){v.next=31;break}c=e[s],f=u?Y(r,c):r,l=0;case 10:if(!(l<t.lhs.length)){v.next=28;break}return h=t.lhs[l],v.delegateYield(z(h[0],u?c["@"]:c,f),"t0",13);case 13:if("string"==typeof(p=v.t0)||void 0===p){v.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:p};case 16:if(void 0===p){v.next=25;break}if(y={data:c,exprIndex:l},!i.hasOwnProperty(p)){v.next=24;break}if(i[p].exprIndex===l){v.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:p};case 21:i[p].data=a.append(i[p].data,c),v.next=25;break;case 24:i[p]=y;case 25:l++,v.next=10;break;case 28:s++,v.next=6;break;case 31:v.t1=o().keys(i);case 32:if((v.t2=v.t1()).done){v.next=43;break}return p=v.t2.value,y=i[p],d=y.data,f=r,u&&(g=ct(y.data),d=g["@"],delete g["@"],f=Y(r,g)),v.delegateYield(z(t.lhs[y.exprIndex][1],d,f),"t3",39);case 39:void 0!==(b=v.t3)&&(n[p]=b),v.next=32;break;case 43:return v.abrupt("return",n);case 44:case"end":return v.stop()}}),v)}function ct(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=a.append(e[n],t[r][n]);return e}function ft(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var o=t,i=0;o<=e;o++,i++)r[i]=o;return r.sequence=!0,r}function lt(t,e,r){var n;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n=o.t0,r.bind(t.lhs.value,n),o.abrupt("return",n);case 4:case"end":return o.stop()}}),g)}function ht(t,e,r){var n,i;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.condition,e,r),"t0",1);case 1:if(i=o.t0,!a.boolean(i)){o.next=7;break}return o.delegateYield(z(t.then,e,r),"t1",4);case 4:n=o.t1,o.next=10;break;case 7:if(void 0===t.else){o.next=10;break}return o.delegateYield(z(t.else,e,r),"t2",9);case 9:n=o.t2;case 10:return o.abrupt("return",n);case 11:case"end":return o.stop()}}),b)}function pt(t,e,r){var n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:i=It(r),a=0;case 2:if(!(a<t.expressions.length)){o.next=8;break}return o.delegateYield(z(t.expressions[a],e,i),"t0",4);case 4:n=o.t0;case 5:a++,o.next=2;break;case 8:return o.abrupt("return",n);case 9:case"end":return o.stop()}}),m)}function yt(t){var e=new Dt.RegexEngine(t.value);return function r(n,o){var i;e.lastIndex=o||0;var a=e.exec(n);if(null!==a){if(i={match:a[0],start:a.index,end:a.index+a[0].length,groups:[]},a.length>1)for(var u=1;u<a.length;u++)i.groups.push(a[u]);i.next=function(){if(!(e.lastIndex>=n.length)){var o=r(n,e.lastIndex);if(o&&""===o.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return o}}}return i}}function dt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function vt(t,e,r){var i,u,s,c,f;return o().wrap((function(l){for(;;)switch(l.prev=l.next){case 0:return u=e,s=!!e.tupleStream,c=o().mark((function e(i,a){var u,c,f,l,h,p,y,d,v;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:u=0,c=0;case 2:if(!(0===u&&c<t.terms.length)){e.next=35;break}return f=t.terms[c],l=i,h=r,s&&(l=i["@"],h=Y(r,i)),e.delegateYield(z(f.expression,l,h),"t0",8);case 8:return p=e.t0,l=a,h=r,s&&(l=a["@"],h=Y(r,a)),e.delegateYield(z(f.expression,l,h),"t1",13);case 13:if(y=e.t1,d=n(p),v=n(y),"undefined"!==d){e.next=19;break}return u="undefined"===v?0:1,e.abrupt("continue",32);case 19:if("undefined"!==v){e.next=22;break}return u=-1,e.abrupt("continue",32);case 22:if(!("string"!==d&&"number"!==d||"string"!==v&&"number"!==v)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==d&&"number"!==d?p:y};case 24:if(d===v){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:p,value2:y};case 26:if(p!==y){e.next=30;break}return e.abrupt("continue",32);case 30:u=p<y?-1:1;case 31:!0===f.descending&&(u=-u);case 32:c++,e.next=2;break;case 35:return e.abrupt("return",1===u);case 36:case"end":return e.stop()}}),e)})),f={environment:r,input:e},l.delegateYield(a.sort.apply(f,[u,c]),"t0",5);case 5:return i=l.t0,l.abrupt("return",i);case 7:case"end":return l.stop()}}),w)}function gt(t,e,r){return Mt(o().mark((function e(i){var a,u,s,c,f,l,h,p,y,d,v;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==i){e.next=2;break}return e.abrupt("return",void 0);case 2:if(a=r.lookup("clone"),C(a)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(xt(a,[i],null,r),"t0",6);case 6:return u=e.t0,e.delegateYield(z(t.pattern,u,r),"t1",8);case 8:if(void 0===(s=e.t1)){e.next=35;break}Array.isArray(s)||(s=[s]),c=0;case 12:if(!(c<s.length)){e.next=35;break}if(!(f=s[c])||!(f.isPrototypeOf(u)||f instanceof Object.constructor)){e.next=16;break}throw{code:"D1010",stack:(new Error).stack,position:t.position};case 16:return e.delegateYield(z(t.update,f,r),"t2",17);case 17:if(l=e.t2,"undefined"===(h=n(l))){e.next=23;break}if("object"===h&&null!==l&&!Array.isArray(l)){e.next=22;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:l};case 22:for(p in l)f[p]=l[p];case 23:if(void 0===t.delete){e.next=32;break}return e.delegateYield(z(t.delete,f,r),"t3",25);case 25:if(void 0===(y=e.t3)){e.next=32;break}if(d=y,Array.isArray(y)||(y=[y]),T(y)){e.next=31;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:d};case 31:for(v=0;v<y.length;v++)"object"===n(f)&&null!==f&&delete f[y[v]];case 32:c++,e.next=12;break;case 35:return e.abrupt("return",u);case 36:case"end":return e.stop()}}),e)})),"<(oa):o>")}var bt=s("function($f, $g) { function($x){ $g($f($x)) } }");function mt(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(i=o.t0,"function"!==t.rhs.type){o.next=7;break}return o.delegateYield(wt(t.rhs,e,r,{context:i}),"t1",4);case 4:n=o.t1,o.next=20;break;case 7:return o.delegateYield(z(t.rhs,e,r),"t2",8);case 8:if(a=o.t2,C(a)){o.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:a};case 11:if(!C(i)){o.next=18;break}return o.delegateYield(z(bt,null,r),"t3",13);case 13:return u=o.t3,o.delegateYield(xt(u,[i,a],null,r),"t4",15);case 15:n=o.t4,o.next=20;break;case 18:return o.delegateYield(xt(a,[i],null,r),"t5",19);case 19:n=o.t5;case 20:return o.abrupt("return",n);case 21:case"end":return o.stop()}}),x)}function wt(t,e,r,i){var a,u,s,c,f,l;return o().wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return h.delegateYield(z(t.procedure,e,r),"t0",1);case 1:if(void 0!==(u=h.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){h.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:s=[],void 0!==i&&s.push(i.context),c=o().mark((function n(){var i,a;return o().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.arguments[f],e,r),"t0",1);case 1:i=n.t0,C(i)?(a=o().mark((function t(){var e,n,a,u=arguments;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=u.length,n=new Array(e),a=0;a<e;a++)n[a]=u[a];return t.delegateYield(xt(i,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),a.arity=B(i),s.push(a)):s.push(i);case 3:case"end":return n.stop()}}),n)})),f=0;case 8:if(!(f<t.arguments.length)){h.next=13;break}return h.delegateYield(c(),"t1",10);case 10:f++,h.next=8;break;case 13:return l="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,h.prev=14,"object"===n(u)&&(u.token=l,u.position=t.position),h.delegateYield(xt(u,s,e,r),"t2",17);case 17:a=h.t2,h.next=25;break;case 20:throw h.prev=20,h.t3=h.catch(14),h.t3.position||(h.t3.position=t.position),h.t3.token||(h.t3.token=l),h.t3;case 25:return h.abrupt("return",a);case 26:case"end":return h.stop()}}),k,null,[[14,20]])}function xt(t,e,r,n){var i,a,u,s;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(kt(t,e,r,n),"t0",1);case 1:i=o.t0;case 2:if(!L(i)||!0!==i.thunk){o.next=21;break}return o.delegateYield(z(i.body.procedure,i.input,i.environment),"t1",4);case 4:a=o.t1,"variable"===i.body.procedure.type&&(a.token=i.body.procedure.value),a.position=i.body.procedure.position,u=[],s=0;case 9:if(!(s<i.body.arguments.length)){o.next=17;break}return o.t2=u,o.delegateYield(z(i.body.arguments[s],i.input,i.environment),"t3",12);case 12:o.t4=o.t3,o.t2.push.call(o.t2,o.t4);case 14:s++,o.next=9;break;case 17:return o.delegateYield(kt(a,u,r,n),"t5",18);case 18:i=o.t5,o.next=2;break;case 21:return o.abrupt("return",i);case 22:case"end":return o.stop()}}),S)}function kt(t,e,r,n){var i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(o.prev=0,a=e,t&&(a=Ot(t.signature,e,r)),!L(t)){o.next=8;break}return o.delegateYield(Et(t,a),"t0",5);case 5:i=o.t0,o.next=24;break;case 8:if(!t||!0!==t._jsonata_function){o.next=16;break}if(u={environment:n,input:r},i=t.implementation.apply(u,a),!D(i)){o.next=14;break}return o.delegateYield(i,"t1",13);case 13:i=o.t1;case 14:o.next=24;break;case 16:if("function"!=typeof t){o.next=23;break}if(i=t.apply(r,a),!D(i)){o.next=21;break}return o.delegateYield(i,"t2",20);case 20:i=o.t2;case 21:o.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:o.next=30;break;case 26:throw o.prev=26,o.t3=o.catch(0),t&&(void 0===o.t3.token&&void 0!==t.token&&(o.t3.token=t.token),o.t3.position=t.position||o.t3.position),o.t3;case 30:return o.abrupt("return",i);case 31:case"end":return o.stop()}}),_,null,[[0,26]])}function St(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=o().mark((function t(r,i){return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(xt(n,i,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function _t(t,e,r){var n,i,a,u,s;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:i=[],a=0;case 2:if(!(a<t.arguments.length)){o.next=15;break}if("operator"!==(u=t.arguments[a]).type||"?"!==u.value){o.next=8;break}i.push(u),o.next=12;break;case 8:return o.t0=i,o.delegateYield(z(u,e,r),"t1",10);case 10:o.t2=o.t1,o.t0.push.call(o.t0,o.t2);case 12:a++,o.next=2;break;case 15:return o.delegateYield(z(t.procedure,e,r),"t3",16);case 16:if(void 0!==(s=o.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){o.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!L(s)){o.next=23;break}n=At(s,i),o.next=32;break;case 23:if(!s||!0!==s._jsonata_function){o.next=27;break}n=Pt(s.implementation,i),o.next=32;break;case 27:if("function"!=typeof s){o.next=31;break}n=Pt(s,i),o.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return o.abrupt("return",n);case 33:case"end":return o.stop()}}),O)}function Ot(t,e,r){return void 0===t?e:t.validate(e,r)}function Et(t,e){var r,n;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(n=It(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){o.next=7;break}return o.delegateYield(jt(t.body,n),"t0",4);case 4:r=o.t0,o.next=9;break;case 7:return o.delegateYield(z(t.body,t.input,n),"t1",8);case 8:r=o.t1;case 9:return o.abrupt("return",r);case 10:case"end":return o.stop()}}),E)}function At(t,e){var r=It(t.environment),n=[];return t.arguments.forEach((function(t,o){var i=e[o];i&&"operator"===i.type&&"?"===i.value?n.push(t):r.bind(t.value,i)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Pt(t,e){var r=Tt(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",o=s(n);return o.body=t,At(o,e)}function jt(t,e){var r,n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(r=Tt(t),n=r.map((function(t){return e.lookup(t.trim())})),i={environment:e},a=t.apply(i,n),!D(a)){o.next=7;break}return o.delegateYield(a,"t0",6);case 6:a=o.t0;case 7:return o.abrupt("return",a);case 8:case"end":return o.stop()}}),A)}function Tt(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function Mt(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=c(e)),r}function Rt(t,e){var r,n,i;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!I(r)&&((r=R(r)).outerWrapper=!0)),o.prev=4,n=s(t,!1),o.next=12;break;case 8:throw o.prev=8,o.t0=o.catch(4),Lt(o.t0),{stack:(new Error).stack,code:"D3120",value:o.t0.message,error:o.t0};case 12:return o.prev=12,o.delegateYield(z(n,r,this.environment),"t1",14);case 14:i=o.t1,o.next=21;break;case 17:throw o.prev=17,o.t2=o.catch(12),Lt(o.t2),{stack:(new Error).stack,code:"D3121",value:o.t2.message,error:o.t2};case 21:return o.abrupt("return",i);case 22:case"end":return o.stop()}}),P,this,[[4,8],[12,17]])}function It(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}F.bind("sum",Mt(a.sum,"<a<n>:n>")),F.bind("count",Mt(a.count,"<a:n>")),F.bind("max",Mt(a.max,"<a<n>:n>")),F.bind("min",Mt(a.min,"<a<n>:n>")),F.bind("average",Mt(a.average,"<a<n>:n>")),F.bind("string",Mt(a.string,"<x-b?:s>")),F.bind("substring",Mt(a.substring,"<s-nn?:s>")),F.bind("substringBefore",Mt(a.substringBefore,"<s-s:s>")),F.bind("substringAfter",Mt(a.substringAfter,"<s-s:s>")),F.bind("lowercase",Mt(a.lowercase,"<s-:s>")),F.bind("uppercase",Mt(a.uppercase,"<s-:s>")),F.bind("length",Mt(a.length,"<s-:n>")),F.bind("trim",Mt(a.trim,"<s-:s>")),F.bind("pad",Mt(a.pad,"<s-ns?:s>")),F.bind("match",Mt(a.match,"<s-f<s:o>n?:a<o>>")),F.bind("contains",Mt(a.contains,"<s-(sf):b>")),F.bind("replace",Mt(a.replace,"<s-(sf)(sf)n?:s>")),F.bind("split",Mt(a.split,"<s-(sf)n?:a<s>>")),F.bind("join",Mt(a.join,"<a<s>s?:s>")),F.bind("formatNumber",Mt(a.formatNumber,"<n-so?:s>")),F.bind("formatBase",Mt(a.formatBase,"<n-n?:s>")),F.bind("formatInteger",Mt(i.formatInteger,"<n-s:s>")),F.bind("parseInteger",Mt(i.parseInteger,"<s-s:n>")),F.bind("number",Mt(a.number,"<(nsb)-:n>")),F.bind("floor",Mt(a.floor,"<n-:n>")),F.bind("ceil",Mt(a.ceil,"<n-:n>")),F.bind("round",Mt(a.round,"<n-n?:n>")),F.bind("abs",Mt(a.abs,"<n-:n>")),F.bind("sqrt",Mt(a.sqrt,"<n-:n>")),F.bind("power",Mt(a.power,"<n-n:n>")),F.bind("random",Mt(a.random,"<:n>")),F.bind("boolean",Mt(a.boolean,"<x-:b>")),F.bind("not",Mt(a.not,"<x-:b>")),F.bind("map",Mt(a.map,"<af>")),F.bind("zip",Mt(a.zip,"<a+>")),F.bind("filter",Mt(a.filter,"<af>")),F.bind("single",Mt(a.single,"<af?>")),F.bind("reduce",Mt(a.foldLeft,"<afj?:j>")),F.bind("sift",Mt(a.sift,"<o-f?:o>")),F.bind("keys",Mt(a.keys,"<x-:a<s>>")),F.bind("lookup",Mt(a.lookup,"<x-s:x>")),F.bind("append",Mt(a.append,"<xx:a>")),F.bind("exists",Mt(a.exists,"<x:b>")),F.bind("spread",Mt(a.spread,"<x-:a<o>>")),F.bind("merge",Mt(a.merge,"<a<o>:o>")),F.bind("reverse",Mt(a.reverse,"<a:a>")),F.bind("each",Mt(a.each,"<o-f:a>")),F.bind("error",Mt(a.error,"<s?:x>")),F.bind("assert",Mt(a.assert,"<bs?:x>")),F.bind("type",Mt(a.type,"<x:s>")),F.bind("sort",Mt(a.sort,"<af?:a>")),F.bind("shuffle",Mt(a.shuffle,"<a:a>")),F.bind("distinct",Mt(a.distinct,"<x:x>")),F.bind("base64encode",Mt(a.base64encode,"<s-:s>")),F.bind("base64decode",Mt(a.base64decode,"<s-:s>")),F.bind("encodeUrlComponent",Mt(a.encodeUrlComponent,"<s-:s>")),F.bind("encodeUrl",Mt(a.encodeUrl,"<s-:s>")),F.bind("decodeUrlComponent",Mt(a.decodeUrlComponent,"<s-:s>")),F.bind("decodeUrl",Mt(a.decodeUrl,"<s-:s>")),F.bind("eval",Mt(Rt,"<sx?:x>")),F.bind("toMillis",Mt(i.toMillis,"<s-s?:n>")),F.bind("fromMillis",Mt(i.fromMillis,"<n-s?s?:s>")),F.bind("clone",Mt((function(t){if(void 0!==t)return JSON.parse(a.string(t))}),"<(oa)-:o>"));var Ct={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",D1010:"Attempted to access the Javascript object prototype",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Lt(t){var e=Ct[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function Dt(t,e){var r,n;try{r=s(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Lt(t),t}var o=It(F),a=new Date;return o.bind("now",Mt((function(t,e){return i.fromMillis(a.getTime(),t,e)}),"<s?s?:s>")),o.bind("millis",Mt((function(){return a.getTime()}),"<:n>")),e&&e.RegexEngine?Dt.RegexEngine=e.RegexEngine:Dt.RegexEngine=RegExp,{evaluate:function(t,e,i){if(void 0!==n){var u={code:"S0500",position:0};throw Lt(u),u}var s,c,f;if(void 0!==e)for(var l in s=It(o),e)s.bind(l,e[l]);else s=o;if(s.bind("$",t),a=new Date,s.timestamp=a,Array.isArray(t)&&!I(t)&&((t=R(t)).outerWrapper=!0),"function"==typeof i){s.async=!0;var h=function(t){Lt(t),i(t,null)};f=z(r,t,s),(c=f.next()).value.then((function t(e){(c=f.next(e)).done?i(null,c.value):c.value.then(t).catch(h)})).catch(h)}else try{for(f=z(r,t,s),c=f.next();!c.done;)c=f.next(c.value);return c.value}catch(u){throw Lt(u),u}},assign:function(t,e){o.bind(t,e)},registerFunction:function(t,e,r){var n=Mt(e,r);o.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return Dt.parser=s,Dt}();e.exports=f},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){"use strict";var n,o,i,a=t("./signature"),u=(n={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},o={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},i=function(t){var e=0,r=t.length,i=function(t,r){return{type:t,value:r,position:e}};return function a(u){if(e>=r)return null;for(var s=t.charAt(e);e<r&&" \t\n\r\v".indexOf(s)>-1;)e++,s=t.charAt(e);if("/"===s&&"*"===t.charAt(e+1)){var c=e;for(e+=2,s=t.charAt(e);"*"!==s||"/"!==t.charAt(e+1);)if(s=t.charAt(++e),e>=r)throw{code:"S0106",stack:(new Error).stack,position:c};return e+=2,s=t.charAt(e),a(u)}if(!0!==u&&"/"===s)return e++,i("regex",function(){for(var n,o,i=e,a=0;e<r;){var u=t.charAt(e);if("/"===u&&"\\"!==t.charAt(e-1)&&0===a){if(""===(n=t.substring(i,e)))throw{code:"S0301",stack:(new Error).stack,position:e};for(e++,u=t.charAt(e),i=e;"i"===u||"m"===u;)e++,u=t.charAt(e);return o=t.substring(i,e)+"g",new RegExp(n,o)}"("!==u&&"["!==u&&"{"!==u||"\\"===t.charAt(e-1)||a++,")"!==u&&"]"!==u&&"}"!==u||"\\"===t.charAt(e-1)||a--,e++}throw{code:"S0302",stack:(new Error).stack,position:e}}());if("."===s&&"."===t.charAt(e+1))return e+=2,i("operator","..");if(":"===s&&"="===t.charAt(e+1))return e+=2,i("operator",":=");if("!"===s&&"="===t.charAt(e+1))return e+=2,i("operator","!=");if(">"===s&&"="===t.charAt(e+1))return e+=2,i("operator",">=");if("<"===s&&"="===t.charAt(e+1))return e+=2,i("operator","<=");if("*"===s&&"*"===t.charAt(e+1))return e+=2,i("operator","**");if("~"===s&&">"===t.charAt(e+1))return e+=2,i("operator","~>");if(Object.prototype.hasOwnProperty.call(n,s))return e++,i("operator",s);if('"'===s||"'"===s){var f=s;e++;for(var l="";e<r;){if("\\"===(s=t.charAt(e)))if(e++,s=t.charAt(e),Object.prototype.hasOwnProperty.call(o,s))l+=o[s];else{if("u"!==s)throw{code:"S0103",stack:(new Error).stack,position:e,token:s};var h=t.substr(e+1,4);if(!/^[0-9a-fA-F]+$/.test(h))throw{code:"S0104",stack:(new Error).stack,position:e};var p=parseInt(h,16);l+=String.fromCharCode(p),e+=4}else{if(s===f)return e++,i("string",l);l+=s}e++}throw{code:"S0101",stack:(new Error).stack,position:e}}var y,d=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(t.substring(e));if(null!==d){var v=parseFloat(d[0]);if(!isNaN(v)&&isFinite(v))return e+=d[0].length,i("number",v);throw{code:"S0102",stack:(new Error).stack,position:e,token:d[0]}}if("`"===s){e++;var g=t.indexOf("`",e);if(-1!==g)return y=t.substring(e,g),e=g+1,i("name",y);throw e=r,{code:"S0105",stack:(new Error).stack,position:e}}for(var b,m=e;;)if(b=t.charAt(m),m===r||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(n,b)){if("$"===t.charAt(e))return y=t.substring(e+1,m),e=m,i("variable",y);switch(y=t.substring(e,m),e=m,y){case"or":case"in":case"and":return i("operator",y);case"true":return i("value",!0);case"false":return i("value",!1);case"null":return i("value",null);default:return e===r&&""===y?null:i("name",y)}}else m++}},function(t,e){var r,o,u={},s=[],c=function(){var t=[];"(end)"!==r.id&&t.push({type:r.type,value:r.value,position:r.position});for(var e=o();null!==e;)t.push(e),e=o();return t},f={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(e)return t.remaining=c(),t.type="error",s.push(t),t;throw t.stack=(new Error).stack,t}},l=function(t,e){var r=u[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(f)).id=r.value=t,r.lbp=e,u[t]=r),r},h=function(t){if(e){t.remaining=c(),s.push(t);var n=u["(error)"];return(r=Object.create(n)).error=t,r.type="(error)",r}throw t.stack=(new Error).stack,t},p=function(e,n){if(e&&r.id!==e){var i={code:"(end)"===r.id?"S0203":"S0202",position:r.position,token:r.value,value:e};return h(i)}var a=o(n);if(null===a)return(r=u["(end)"]).position=t.length,r;var s,c=a.value,f=a.type;switch(f){case"name":case"variable":s=u["(name)"];break;case"operator":if(!(s=u[c]))return h({code:"S0204",stack:(new Error).stack,position:a.position,token:c});break;case"string":case"number":case"value":s=u["(literal)"];break;case"regex":f="regex",s=u["(regex)"];break;default:return h({code:"S0205",stack:(new Error).stack,position:a.position,token:c})}return(r=Object.create(s)).value=c,r.type=f,r.position=a.position,r},y=function(t){var e,n=r;for(p(null,!0),e=n.nud();t<r.lbp;)n=r,p(),e=n.led(e);return e},d=function(t){l(t,0).nud=function(){return this}},v=function(t,e,r){var o=e||n[t],i=l(t,o);return i.led=r||function(t){return this.lhs=t,this.rhs=y(o),this.type="binary",this},i},g=function(t,e,r){var n=l(t,e);return n.led=r,n},b=function(t,e){var r=l(t);return r.nud=e||function(){return this.expression=y(70),this.type="unary",this},r};d("(end)"),d("(name)"),d("(literal)"),d("(regex)"),l(":"),l(";"),l(","),l(")"),l("]"),l("}"),l(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),d("and"),d("or"),d("in"),b("-"),v("~>"),g("(error)",10,(function(t){return this.lhs=t,this.error=r.error,this.remaining=c(),this.type="error",this})),b("*",(function(){return this.type="wildcard",this})),b("**",(function(){return this.type="descendant",this})),b("%",(function(){return this.type="parent",this})),v("(",n["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==r.id)for(;"operator"===r.type&&"?"===r.id?(this.type="partial",this.arguments.push(r),p("?")):this.arguments.push(y(0)),","===r.id;)p(",");if(p(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return h({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===r.id){for(var e=r.position,n=1,o="<";n>0&&"{"!==r.id&&"(end)"!==r.id;){var i=p();">"===i.id?n--:"<"===i.id&&n++,o+=i.value}p(">");try{this.signature=a(o)}catch(t){return t.position=e+t.offset,h(t)}}p("{"),this.body=y(0),p("}")}return this})),b("(",(function(){for(var t=[];")"!==r.id&&(t.push(y(0)),";"===r.id);)p(";");return p(")",!0),this.type="block",this.expressions=t,this})),b("[",(function(){var t=[];if("]"!==r.id)for(;;){var e=y(0);if(".."===r.id){var n={type:"binary",value:"..",position:r.position,lhs:e};p(".."),n.rhs=y(0),e=n}if(t.push(e),","!==r.id)break;p(",")}return p("]",!0),this.expressions=t,this.type="unary",this})),v("[",n["["],(function(t){if("]"===r.id){for(var e=t;e&&"binary"===e.type&&"["===e.value;)e=e.lhs;return e.keepArray=!0,p("]"),t}return this.lhs=t,this.rhs=y(n["]"]),this.type="binary",p("]",!0),this})),v("^",n["^"],(function(t){p("(");for(var e=[];;){var n={descending:!1};if("<"===r.id?p("<"):">"===r.id&&(n.descending=!0,p(">")),n.expression=y(0),e.push(n),","!==r.id)break;p(",")}return p(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var m=function(t){var e=[];if("}"!==r.id)for(;;){var n=y(0);p(":");var o=y(0);if(e.push([n,o]),","!==r.id)break;p(",")}return p("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};b("{",m),v("{",n["{"],m),g(":=",n[":="],(function(t){return"variable"!==t.type?h({code:"S0212",stack:(new Error).stack,position:t.position,token:t.value}):(this.lhs=t,this.rhs=y(n[":="]-1),this.type="binary",this)})),v("@",n["@"],(function(t){return this.lhs=t,this.rhs=y(n["@"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",n["#"],(function(t){return this.lhs=t,this.rhs=y(n["#"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",n["?"],(function(t){return this.type="condition",this.condition=t,this.then=y(0),":"===r.id&&(p(":"),this.else=y(0)),this})),b("|",(function(){return this.type="transform",this.pattern=y(0),p("|"),this.update=y(0),","===r.id&&(p(","),this.delete=y(0)),p("|"),this}));var w=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var o={type:"lambda",thunk:!0,arguments:[],position:e.position};o.body=e,r=o}return r},x=0,k=0,S=[],_=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(S[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},O=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},E=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var o=0;o<n.length;o++){var i=n[o];for(e=t.steps.length-2;i.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[i]:t.seekingParent.push(i);break}for(var a=t.steps[e--];e>=0&&a.focus&&t.steps[e].focus;)a=t.steps[e--];i=_(a,i)}}};o=i(t),p();var A=y(0);if("(end)"!==r.id){var P={code:"S0201",position:r.position,token:r.value};h(P)}if(A=function t(r){var n;switch(r.type){case"binary":switch(r.value){case".":var o=t(r.lhs);n="path"===o.type?o:{type:"path",steps:[o]},"parent"===o.type&&(n.seekingParent=[o.slot]);var i=t(r.rhs);"function"===i.type&&"path"===i.procedure.type&&1===i.procedure.steps.length&&"name"===i.procedure.steps[0].type&&"function"===n.steps[n.steps.length-1].type&&(n.steps[n.steps.length-1].nextFunction=i.procedure.steps[0].value),"path"===i.type?Array.prototype.push.apply(n.steps,i.steps):(void 0!==i.predicate&&(i.stages=i.predicate,delete i.predicate),n.steps.push(i)),n.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),n.steps.filter((function(t){return!0===t.keepArray})).length>0&&(n.keepSingletonArray=!0);var a=n.steps[0];"unary"===a.type&&"["===a.value&&(a.consarray=!0);var u=n.steps[n.steps.length-1];"unary"===u.type&&"["===u.value&&(u.consarray=!0),E(n);break;case"[":var c=n=t(r.lhs),f="predicate";if("path"===n.type&&(c=n.steps[n.steps.length-1],f="stages"),void 0!==c.group)throw{code:"S0209",stack:(new Error).stack,position:r.position};void 0===c[f]&&(c[f]=[]);var l=t(r.rhs);void 0!==l.seekingParent&&(l.seekingParent.forEach((function(t){1===t.level?_(c,t):t.level--})),O(c,l)),c[f].push({type:"filter",expr:l,position:r.position});break;case"{":if(void 0!==(n=t(r.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:r.position};n.group={lhs:r.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:r.position};break;case"^":"path"!==(n=t(r.lhs)).type&&(n={type:"path",steps:[n]});var h={type:"sort",position:r.position};h.terms=r.rhs.map((function(e){var r=t(e.expression);return O(h,r),{descending:e.descending,expression:r}})),n.steps.push(h),E(n);break;case":=":(n={type:"bind",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),O(n,n.rhs);break;case"@":if(n=t(r.lhs),c=n,"path"===n.type&&(c=n.steps[n.steps.length-1]),void 0!==c.stages||void 0!==c.predicate)throw{code:"S0215",stack:(new Error).stack,position:r.position};if("sort"===c.type)throw{code:"S0216",stack:(new Error).stack,position:r.position};r.keepArray&&(c.keepArray=!0),c.focus=r.rhs.value,c.tuple=!0;break;case"#":n=t(r.lhs),c=n,"path"===n.type?c=n.steps[n.steps.length-1]:(n={type:"path",steps:[n]},void 0!==c.predicate&&(c.stages=c.predicate,delete c.predicate)),void 0===c.stages?c.index=r.rhs.value:c.stages.push({type:"index",value:r.rhs.value,position:r.position}),c.tuple=!0;break;case"~>":(n={type:"apply",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs);break;default:(n={type:r.type,value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),O(n,n.lhs),O(n,n.rhs)}break;case"unary":n={type:r.type,value:r.value,position:r.position},"["===r.value?n.expressions=r.expressions.map((function(e){var r=t(e);return O(n,r),r})):"{"===r.value?n.lhs=r.lhs.map((function(e){var r=t(e[0]);O(n,r);var o=t(e[1]);return O(n,o),[r,o]})):(n.expression=t(r.expression),"-"===r.value&&"number"===n.expression.type?(n=n.expression).value=-n.value:O(n,n.expression));break;case"function":case"partial":(n={type:r.type,name:r.name,value:r.value,position:r.position}).arguments=r.arguments.map((function(e){var r=t(e);return O(n,r),r})),n.procedure=t(r.procedure);break;case"lambda":n={type:r.type,arguments:r.arguments,signature:r.signature,position:r.position};var p=t(r.body);n.body=w(p);break;case"condition":(n={type:r.type,position:r.position}).condition=t(r.condition),O(n,n.condition),n.then=t(r.then),O(n,n.then),void 0!==r.else&&(n.else=t(r.else),O(n,n.else));break;case"transform":(n={type:r.type,position:r.position}).pattern=t(r.pattern),n.update=t(r.update),void 0!==r.delete&&(n.delete=t(r.delete));break;case"block":(n={type:r.type,position:r.position}).expressions=r.expressions.map((function(e){var r=t(e);return O(n,r),(r.consarray||"path"===r.type&&r.steps[0].consarray)&&(n.consarray=!0),r}));break;case"name":n={type:"path",steps:[r]},r.keepArray&&(n.keepSingletonArray=!0);break;case"parent":n={type:"parent",slot:{label:"!"+x++,level:1,index:k++}},S.push(n);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":n=r;break;case"operator":if("and"===r.value||"or"===r.value||"in"===r.value)r.type="name",n=t(r);else{if("?"!==r.value)throw{code:"S0201",stack:(new Error).stack,position:r.position,token:r.value};n=r}break;case"error":n=r,r.lhs&&(n=t(r.lhs));break;default:var y="S0206";"(end)"===r.id&&(y="S0207");var d={code:y,position:r.position,token:r.value};if(e)return s.push(d),{type:"error",error:d};throw d.stack=(new Error).stack,d}return r.keepArray&&(n.keepArray=!0),n}(A),"parent"===A.type||void 0!==A.seekingParent)throw{code:"S0217",token:A.type,position:A.position};return s.length>0&&(A.errors=s),A});e.exports=u},{"./signature":5}],5:[function(t,e,r){"use strict";function n(t){return n="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},n(t)}var o,i=t("./utils"),a=(o={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"},function(t){for(var e=1,r=[],a={},u=a;e<t.length;){var s=t.charAt(e);if(":"===s)break;var c=function(){r.push(a),u=a,a={}},f=function(t,e,r,n){for(var o=1,i=e;i<t.length;)if(i++,(s=t.charAt(i))===n){if(0==--o)break}else s===r&&o++;return i};switch(s){case"s":case"n":case"b":case"l":case"o":a.regex="["+s+"m]",a.type=s,c();break;case"a":a.regex="[asnblfom]",a.type=s,a.array=!0,c();break;case"f":a.regex="f",a.type=s,c();break;case"j":a.regex="[asnblom]",a.type=s,c();break;case"x":a.regex="[asnblfom]",a.type=s,c();break;case"-":u.context=!0,u.contextRegex=new RegExp(u.regex),u.regex+="?";break;case"?":case"+":u.regex+=s;break;case"(":var l=f(t,e,"(",")"),h=t.substring(e+1,l);if(-1!==h.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:h,offset:e};a.regex="["+h+"m]",a.type="("+h+")",e=l,c();break;case"<":if("a"!==u.type&&"f"!==u.type)throw{code:"S0401",stack:(new Error).stack,value:u.type,offset:e};var p=f(t,e,"<",">");u.subtype=t.substring(e+1,p),e=p}e++}var y="^"+r.map((function(t){return"("+t.regex+")"})).join("")+"$",d=new RegExp(y),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e};return{definition:t,validate:function(t,e){var n="";t.forEach((function(t){n+=v(t)}));var i=d.exec(n);if(i){var a=[],u=0;return r.forEach((function(r,n){var s=t[u],c=i[n+1];if(""===c)if(r.context&&r.contextRegex){var f=v(e);if(!r.contextRegex.test(f))throw{code:"T0411",stack:(new Error).stack,value:e,index:u+1};a.push(e)}else a.push(s),u++;else c.split("").forEach((function(e){if("a"===r.type){if("m"===e)s=void 0;else{s=t[u];var n=!0;if(void 0!==r.subtype)if("a"!==e&&c!==r.subtype)n=!1;else if("a"===e&&s.length>0){var i=v(s[0]);n=i===r.subtype.charAt(0)&&0===s.filter((function(t){return v(t)!==i})).length}if(!n)throw{code:"T0412",stack:(new Error).stack,value:s,index:u+1,type:o[r.subtype]};"a"!==e&&(s=[s])}a.push(s),u++}else a.push(s),u++}))})),a}!function(t,e){for(var n="^",o=0,i=0;i<r.length;i++){n+=r[i].regex;var a=e.match(n);if(null===a)throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1};o=a[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1}}(t,n)}}});e.exports=a},{"./utils":6}],6:[function(t,e,r){"use strict";function n(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function o(t){return o="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},o(t)}var i=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}var e=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";return{isNumeric:t,isArrayOfStrings:function(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e},isArrayOfNumbers:function(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r},createSequence:function(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t},isSequence:function(t){return!0===t.sequence&&Array.isArray(t)},isFunction:function(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t},isLambda:function(t){return t&&!0===t._jsonata_lambda},isIterable:function(t){return"object"===o(t)&&null!==t&&e in t&&"next"in t&&"function"==typeof t.next},getFunctionArity:function(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length},isDeepEqual:function t(e,r){if(e===r)return!0;if("object"===o(e)&&"object"===o(r)&&null!==e&&null!==r){if(Array.isArray(e)&&Array.isArray(r)){if(e.length!==r.length)return!1;for(var n=0;n<e.length;n++)if(!t(e[n],r[n]))return!1;return!0}var i=Object.getOwnPropertyNames(e),a=Object.getOwnPropertyNames(r);if(i.length!==a.length)return!1;for(i=i.sort(),a=a.sort(),n=0;n<i.length;n++)if(i[n]!==a[n])return!1;for(n=0;n<i.length;n++){var u=i[n];if(!t(e[u],r[u]))return!1}return!0}return!1},stringToArray:function(t){var e,r=[],o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var o=0,i=function(){};return{s:i,n:function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function(t){throw t},f:i}}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 a,u=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return u=t.done,t},e:function(t){s=!0,a=t},f:function(){try{u||null==r.return||r.return()}finally{if(s)throw a}}}}(t);try{for(o.s();!(e=o.n()).done;){var i=e.value;r.push(i)}}catch(t){o.e(t)}finally{o.f()}return r}}}();e.exports=i},{}]},{},[3])(3)},"object"===a(e)?t.exports=u():(o=[],void 0===(i="function"==typeof(n=u)?n.apply(e,o):n)||(t.exports=i))},95012:(t,e,r)=>{function n(t){return n="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},n(t)}var o=function(t){"use strict";var e,r=Object.prototype,o=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},u=a.iterator||"@@iterator",s=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof b?e:b,a=Object.create(o.prototype),u=new M(n||[]);return i(a,"_invoke",{value:A(t,r,u)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p="suspendedStart",y="suspendedYield",d="executing",v="completed",g={};function b(){}function m(){}function w(){}var x={};f(x,u,(function(){return this}));var k=Object.getPrototypeOf,S=k&&k(k(R([])));S&&S!==r&&o.call(S,u)&&(x=S);var _=w.prototype=b.prototype=Object.create(x);function O(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,a,u,s){var c=h(t[i],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"===n(l)&&o.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var a;i(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return a=a?a.then(o,o):o()}})}function A(t,e,r){var n=p;return function(o,i){if(n===d)throw new Error("Generator is already running");if(n===v){if("throw"===o)throw i;return I()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var u=P(a,r);if(u){if(u===g)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===p)throw n=v,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=d;var s=h(t,e,r);if("normal"===s.type){if(n=r.done?v:y,s.arg===g)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(n=v,r.method="throw",r.arg=s.arg)}}}function P(t,r){var n=r.method,o=t.iterator[n];if(o===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,P(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),g;var i=h(o,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,g;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,g):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function T(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function R(t){if(t){var r=t[u];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function r(){for(;++n<t.length;)if(o.call(t,n))return r.value=t[n],r.done=!1,r;return r.value=e,r.done=!0,r};return i.next=i}}return{next:I}}function I(){return{value:e,done:!0}}return m.prototype=w,i(_,"constructor",{value:w,configurable:!0}),i(w,"constructor",{value:m,configurable:!0}),m.displayName=f(w,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},O(E.prototype),f(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new E(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(_),f(_,c,"Generator"),f(_,u,(function(){return this})),f(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=R,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(T),!t)for(var r in this)"t"===r.charAt(0)&&o.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function n(n,o){return u.type="throw",u.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var s=o.call(a,"catchLoc"),c=o.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),T(r),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;T(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:R(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}("object"===n(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=o}catch(t){"object"===("undefined"==typeof globalThis?"undefined":n(globalThis))?globalThis.regeneratorRuntime=o:Function("r","regeneratorRuntime = r")(o)}},10320:(t,e,r)=>{"use strict";var n=r(55747),o=r(89393),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},32606:(t,e,r)=>{"use strict";var n=r(1031),o=r(89393),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a constructor")}},35908:(t,e,r)=>{"use strict";var n=r(45015),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},71806:(t,e,r)=>{"use strict";var n=r(13128).has;t.exports=function(t){return n(t),t}},80575:(t,e,r)=>{"use strict";var n=r(24697),o=r(80674),i=r(74595).f,a=n("unscopables"),u=Array.prototype;void 0===u[a]&&i(u,a,{configurable:!0,value:o(null)}),t.exports=function(t){u[a][t]=!0}},35483:(t,e,r)=>{"use strict";var n=r(50233).charAt;t.exports=function(t,e,r){return e+(r?n(t,e).length:1)}},60077:(t,e,r)=>{"use strict";var n=r(21287),o=TypeError;t.exports=function(t,e){if(n(e,t))return t;throw new o("Incorrect invocation")}},30365:(t,e,r)=>{"use strict";var n=r(77568),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},70377:t=>{"use strict";t.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},2172:(t,e,r)=>{"use strict";var n=r(16210),o=r(38656),i=r(7462),a=n.ArrayBuffer,u=n.TypeError;t.exports=a&&o(a.prototype,"byteLength","get")||function(t){if("ArrayBuffer"!==i(t))throw new u("ArrayBuffer expected");return t.byteLength}},85092:(t,e,r)=>{"use strict";var n=r(16210),o=r(71138),i=r(2172),a=n.ArrayBuffer,u=a&&a.prototype,s=u&&o(u.slice);t.exports=function(t){if(0!==i(t))return!1;if(!s)return!1;try{return s(t,0,0),!1}catch(t){return!0}}},3782:(t,e,r)=>{"use strict";var n=r(40033);t.exports=n((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}}))},2183:(t,e,r)=>{"use strict";var n=r(85092),o=TypeError;t.exports=function(t){if(n(t))throw new o("ArrayBuffer is detached");return t}},61562:(t,e,r)=>{"use strict";var n=r(16210),o=r(67250),i=r(38656),a=r(43806),u=r(2183),s=r(2172),c=r(3609),f=r(8534),l=n.structuredClone,h=n.ArrayBuffer,p=n.DataView,y=Math.min,d=h.prototype,v=p.prototype,g=o(d.slice),b=i(d,"resizable","get"),m=i(d,"maxByteLength","get"),w=o(v.getInt8),x=o(v.setInt8);t.exports=(f||c)&&function(t,e,r){var n,o=s(t),i=void 0===e?o:a(e),d=!b||!b(t);if(u(t),f&&(t=l(t,{transfer:[t]}),o===i&&(r||d)))return t;if(o>=i&&(!r||d))n=g(t,0,i);else{var v=r&&!d&&m?{maxByteLength:m(t)}:void 0;n=new h(i,v);for(var k=new p(t),S=new p(n),_=y(i,o),O=0;O<_;O++)x(S,O,w(k,O))}return f||c(t),n}},4246:(t,e,r)=>{"use strict";var n,o,i,a=r(70377),u=r(58310),s=r(16210),c=r(55747),f=r(77568),l=r(45299),h=r(2281),p=r(89393),y=r(37909),d=r(55938),v=r(73936),g=r(21287),b=r(36917),m=r(76649),w=r(24697),x=r(16738),k=r(5419),S=k.enforce,_=k.get,O=s.Int8Array,E=O&&O.prototype,A=s.Uint8ClampedArray,P=A&&A.prototype,j=O&&b(O),T=E&&b(E),M=Object.prototype,R=s.TypeError,I=w("toStringTag"),C=x("TYPED_ARRAY_TAG"),L="TypedArrayConstructor",D=a&&!!m&&"Opera"!==h(s.opera),B=!1,N={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},F={BigInt64Array:8,BigUint64Array:8},z=function(t){var e=b(t);if(f(e)){var r=_(e);return r&&l(r,L)?r[L]:z(e)}},U=function(t){if(!f(t))return!1;var e=h(t);return l(N,e)||l(F,e)};for(n in N)(i=(o=s[n])&&o.prototype)?S(i)[L]=o:D=!1;for(n in F)(i=(o=s[n])&&o.prototype)&&(S(i)[L]=o);if((!D||!c(j)||j===Function.prototype)&&(j=function(){throw new R("Incorrect invocation")},D))for(n in N)s[n]&&m(s[n],j);if((!D||!T||T===M)&&(T=j.prototype,D))for(n in N)s[n]&&m(s[n].prototype,T);if(D&&b(P)!==T&&m(P,T),u&&!l(T,I))for(n in B=!0,v(T,I,{configurable:!0,get:function(){return f(this)?this[C]:void 0}}),N)s[n]&&y(s[n],C,n);t.exports={NATIVE_ARRAY_BUFFER_VIEWS:D,TYPED_ARRAY_TAG:B&&C,aTypedArray:function(t){if(U(t))return t;throw new R("Target is not a typed array")},aTypedArrayConstructor:function(t){if(c(t)&&(!m||g(j,t)))return t;throw new R(p(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(u){if(r)for(var o in N){var i=s[o];if(i&&l(i.prototype,t))try{delete i.prototype[t]}catch(r){try{i.prototype[t]=e}catch(t){}}}T[t]&&!r||d(T,t,r?e:D&&E[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,o;if(u){if(m){if(r)for(n in N)if((o=s[n])&&l(o,t))try{delete o[t]}catch(t){}if(j[t]&&!r)return;try{return d(j,t,r?e:D&&j[t]||e)}catch(t){}}for(n in N)!(o=s[n])||o[t]&&!r||d(o,t,e)}},getTypedArrayConstructor:z,isView:function(t){if(!f(t))return!1;var e=h(t);return"DataView"===e||l(N,e)||l(F,e)},isTypedArray:U,TypedArray:j,TypedArrayPrototype:T}},37336:(t,e,r)=>{"use strict";var n=r(16210),o=r(67250),i=r(58310),a=r(70377),u=r(70520),s=r(37909),c=r(73936),f=r(30145),l=r(40033),h=r(60077),p=r(61365),y=r(10188),d=r(43806),v=r(95867),g=r(91784),b=r(36917),m=r(76649),w=r(88471),x=r(54602),k=r(5781),S=r(5774),_=r(84925),O=r(5419),E=u.PROPER,A=u.CONFIGURABLE,P="ArrayBuffer",j="DataView",T="prototype",M="Wrong index",R=O.getterFor(P),I=O.getterFor(j),C=O.set,L=n[P],D=L,B=D&&D[T],N=n[j],F=N&&N[T],z=Object.prototype,U=n.Array,Y=n.RangeError,G=o(w),H=o([].reverse),W=g.pack,X=g.unpack,q=function(t){return[255&t]},V=function(t){return[255&t,t>>8&255]},Q=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},K=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},J=function(t){return W(v(t),23,4)},Z=function(t){return W(t,52,8)},$=function(t,e,r){c(t[T],e,{configurable:!0,get:function(){return r(this)[e]}})},tt=function(t,e,r,n){var o=I(t),i=d(r),a=!!n;if(i+e>o.byteLength)throw new Y(M);var u=o.bytes,s=i+o.byteOffset,c=x(u,s,s+e);return a?c:H(c)},et=function(t,e,r,n,o,i){var a=I(t),u=d(r),s=n(+o),c=!!i;if(u+e>a.byteLength)throw new Y(M);for(var f=a.bytes,l=u+a.byteOffset,h=0;h<e;h++)f[l+h]=s[c?h:e-h-1]};if(a){var rt=E&&L.name!==P;l((function(){L(1)}))&&l((function(){new L(-1)}))&&!l((function(){return new L,new L(1.5),new L(NaN),1!==L.length||rt&&!A}))?rt&&A&&s(L,"name",P):((D=function(t){return h(this,B),k(new L(d(t)),this,D)})[T]=B,B.constructor=D,S(D,L)),m&&b(F)!==z&&m(F,z);var nt=new N(new D(2)),ot=o(F.setInt8);nt.setInt8(0,2147483648),nt.setInt8(1,2147483649),!nt.getInt8(0)&&nt.getInt8(1)||f(F,{setInt8:function(t,e){ot(this,t,e<<24>>24)},setUint8:function(t,e){ot(this,t,e<<24>>24)}},{unsafe:!0})}else B=(D=function(t){h(this,B);var e=d(t);C(this,{type:P,bytes:G(U(e),0),byteLength:e}),i||(this.byteLength=e,this.detached=!1)})[T],F=(N=function(t,e,r){h(this,F),h(t,B);var n=R(t),o=n.byteLength,a=p(e);if(a<0||a>o)throw new Y("Wrong offset");if(a+(r=void 0===r?o-a:y(r))>o)throw new Y("Wrong length");C(this,{type:j,buffer:t,byteLength:r,byteOffset:a,bytes:n.bytes}),i||(this.buffer=t,this.byteLength=r,this.byteOffset=a)})[T],i&&($(D,"byteLength",R),$(N,"buffer",I),$(N,"byteLength",I),$(N,"byteOffset",I)),f(F,{getInt8:function(t){return tt(this,1,t)[0]<<24>>24},getUint8:function(t){return tt(this,1,t)[0]},getInt16:function(t){var e=tt(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=tt(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return K(tt(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return K(tt(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return X(tt(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return X(tt(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){et(this,1,t,q,e)},setUint8:function(t,e){et(this,1,t,q,e)},setInt16:function(t,e){et(this,2,t,V,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){et(this,2,t,V,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){et(this,4,t,Q,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){et(this,4,t,Q,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){et(this,4,t,J,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){et(this,8,t,Z,e,arguments.length>2&&arguments[2])}});_(D,P),_(N,j),t.exports={ArrayBuffer:D,DataView:N}},71447:(t,e,r)=>{"use strict";var n=r(46771),o=r(13912),i=r(24760),a=r(95108),u=Math.min;t.exports=[].copyWithin||function(t,e){var r=n(this),s=i(r),c=o(t,s),f=o(e,s),l=arguments.length>2?arguments[2]:void 0,h=u((void 0===l?s:o(l,s))-f,s-c),p=1;for(f<c&&c<f+h&&(p=-1,f+=h-1,c+=h-1);h-- >0;)f in r?r[c]=r[f]:a(r,c),c+=p,f+=p;return r}},88471:(t,e,r)=>{"use strict";var n=r(46771),o=r(13912),i=r(24760);t.exports=function(t){for(var e=n(this),r=i(e),a=arguments.length,u=o(a>1?arguments[1]:void 0,r),s=a>2?arguments[2]:void 0,c=void 0===s?r:o(s,r);c>u;)e[u++]=t;return e}},35601:(t,e,r)=>{"use strict";var n=r(22603).forEach,o=r(55528)("forEach");t.exports=o?[].forEach:function(t){return n(this,t,arguments.length>1?arguments[1]:void 0)}},78008:(t,e,r)=>{"use strict";var n=r(24760);t.exports=function(t,e,r){for(var o=0,i=arguments.length>2?r:n(e),a=new t(i);i>o;)a[o]=e[o++];return a}},73174:(t,e,r)=>{"use strict";var n=r(75754),o=r(91495),i=r(46771),a=r(40125),u=r(76571),s=r(1031),c=r(24760),f=r(60102),l=r(77455),h=r(59201),p=Array;t.exports=function(t){var e=i(t),r=s(this),y=arguments.length,d=y>1?arguments[1]:void 0,v=void 0!==d;v&&(d=n(d,y>2?arguments[2]:void 0));var g,b,m,w,x,k,S=h(e),_=0;if(!S||this===p&&u(S))for(g=c(e),b=r?new this(g):p(g);g>_;_++)k=v?d(e[_],_):e[_],f(b,_,k);else for(b=r?new this:[],x=(w=l(e,S)).next;!(m=o(x,w)).done;_++)k=v?a(w,d,[m.value,_],!0):m.value,f(b,_,k);return b.length=_,b}},14211:(t,e,r)=>{"use strict";var n=r(57591),o=r(13912),i=r(24760),a=function(t){return function(e,r,a){var u=n(e),s=i(u);if(0===s)return!t&&-1;var c,f=o(a,s);if(t&&r!=r){for(;s>f;)if((c=u[f++])!=c)return!0}else for(;s>f;f++)if((t||f in u)&&u[f]===r)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},77389:(t,e,r)=>{"use strict";var n=r(75754),o=r(37457),i=r(46771),a=r(24760),u=function(t){var e=1===t;return function(r,u,s){for(var c,f=i(r),l=o(f),h=a(l),p=n(u,s);h-- >0;)if(p(c=l[h],h,f))switch(t){case 0:return c;case 1:return h}return e?-1:void 0}};t.exports={findLast:u(0),findLastIndex:u(1)}},22603:(t,e,r)=>{"use strict";var n=r(75754),o=r(67250),i=r(37457),a=r(46771),u=r(24760),s=r(57823),c=o([].push),f=function(t){var e=1===t,r=2===t,o=3===t,f=4===t,l=6===t,h=7===t,p=5===t||l;return function(y,d,v,g){for(var b,m,w=a(y),x=i(w),k=u(x),S=n(d,v),_=0,O=g||s,E=e?O(y,k):r||h?O(y,0):void 0;k>_;_++)if((p||_ in x)&&(m=S(b=x[_],_,w),t))if(e)E[_]=m;else if(m)switch(t){case 3:return!0;case 5:return b;case 6:return _;case 2:c(E,b)}else switch(t){case 4:return!1;case 7:c(E,b)}return l?-1:o||f?f:E}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6),filterReject:f(7)}},1325:(t,e,r)=>{"use strict";var n=r(61267),o=r(57591),i=r(61365),a=r(24760),u=r(55528),s=Math.min,c=[].lastIndexOf,f=!!c&&1/[1].lastIndexOf(1,-0)<0,l=u("lastIndexOf"),h=f||!l;t.exports=h?function(t){if(f)return n(c,this,arguments)||0;var e=o(this),r=a(e);if(0===r)return-1;var u=r-1;for(arguments.length>1&&(u=s(u,i(arguments[1]))),u<0&&(u=r+u);u>=0;u--)if(u in e&&e[u]===t)return u||0;return-1}:c},44091:(t,e,r)=>{"use strict";var n=r(40033),o=r(24697),i=r(83141),a=o("species");t.exports=function(t){return i>=51||!n((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},55528:(t,e,r)=>{"use strict";var n=r(40033);t.exports=function(t,e){var r=[][t];return!!r&&n((function(){r.call(null,e||function(){return 1},1)}))}},56844:(t,e,r)=>{"use strict";var n=r(10320),o=r(46771),i=r(37457),a=r(24760),u=TypeError,s="Reduce of empty array with no initial value",c=function(t){return function(e,r,c,f){var l=o(e),h=i(l),p=a(l);if(n(r),0===p&&c<2)throw new u(s);var y=t?p-1:0,d=t?-1:1;if(c<2)for(;;){if(y in h){f=h[y],y+=d;break}if(y+=d,t?y<0:p<=y)throw new u(s)}for(;t?y>=0:p>y;y+=d)y in h&&(f=r(f,h[y],y,l));return f}};t.exports={left:c(!1),right:c(!0)}},13345:(t,e,r)=>{"use strict";var n=r(58310),o=r(37386),i=TypeError,a=Object.getOwnPropertyDescriptor,u=n&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}();t.exports=u?function(t,e){if(o(t)&&!a(t,"length").writable)throw new i("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e}},54602:(t,e,r)=>{"use strict";var n=r(67250);t.exports=n([].slice)},90274:(t,e,r)=>{"use strict";var n=r(54602),o=Math.floor,i=function(t,e){var r=t.length;if(r<8)for(var a,u,s=1;s<r;){for(u=s,a=t[s];u&&e(t[u-1],a)>0;)t[u]=t[--u];u!==s++&&(t[u]=a)}else for(var c=o(r/2),f=i(n(t,0,c),e),l=i(n(t,c),e),h=f.length,p=l.length,y=0,d=0;y<h||d<p;)t[y+d]=y<h&&d<p?e(f[y],l[d])<=0?f[y++]:l[d++]:y<h?f[y++]:l[d++];return t};t.exports=i},8303:(t,e,r)=>{"use strict";var n=r(37386),o=r(1031),i=r(77568),a=r(24697)("species"),u=Array;t.exports=function(t){var e;return n(t)&&(e=t.constructor,(o(e)&&(e===u||n(e.prototype))||i(e)&&null===(e=e[a]))&&(e=void 0)),void 0===e?u:e}},57823:(t,e,r)=>{"use strict";var n=r(8303);t.exports=function(t,e){return new(n(t))(0===e?0:e)}},81354:(t,e,r)=>{"use strict";var n=r(24760);t.exports=function(t,e){for(var r=n(t),o=new e(r),i=0;i<r;i++)o[i]=t[r-i-1];return o}},85370:(t,e,r)=>{"use strict";var n=r(24760),o=r(61365),i=RangeError;t.exports=function(t,e,r,a){var u=n(t),s=o(r),c=s<0?u+s:s;if(c>=u||c<0)throw new i("Incorrect index");for(var f=new e(u),l=0;l<u;l++)f[l]=l===c?a:t[l];return f}},20622:t=>{"use strict";var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=e+"+/",n=e+"-_",o=function(t){for(var e={},r=0;r<64;r++)e[t.charAt(r)]=r;return e};t.exports={i2c:r,c2i:o(r),i2cUrl:n,c2iUrl:o(n)}},40125:(t,e,r)=>{"use strict";var n=r(30365),o=r(28649);t.exports=function(t,e,r,i){try{return i?e(n(r)[0],r[1]):e(r)}catch(e){o(t,"throw",e)}}},92490:(t,e,r)=>{"use strict";var n=r(24697)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[n]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){try{if(!e&&!o)return!1}catch(t){return!1}var r=!1;try{var i={};i[n]=function(){return{next:function(){return{done:r=!0}}}},t(i)}catch(t){}return r}},7462:(t,e,r)=>{"use strict";var n=r(67250),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},2281:(t,e,r)=>{"use strict";var n=r(2650),o=r(55747),i=r(7462),a=r(24697)("toStringTag"),u=Object,s="Arguments"===i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=u(t),a))?r:s?i(e):"Object"===(n=i(e))&&o(e.callee)?"Arguments":n}},41028:(t,e,r)=>{"use strict";var n=r(80674),o=r(73936),i=r(30145),a=r(75754),u=r(60077),s=r(42871),c=r(49450),f=r(65574),l=r(5959),h=r(58491),p=r(58310),y=r(81969).fastKey,d=r(5419),v=d.set,g=d.getterFor;t.exports={getConstructor:function(t,e,r,f){var l=t((function(t,o){u(t,h),v(t,{type:e,index:n(null),first:null,last:null,size:0}),p||(t.size=0),s(o)||c(o,t[f],{that:t,AS_ENTRIES:r})})),h=l.prototype,d=g(e),b=function(t,e,r){var n,o,i=d(t),a=m(t,e);return a?a.value=r:(i.last=a={index:o=y(e,!0),key:e,value:r,previous:n=i.last,next:null,removed:!1},i.first||(i.first=a),n&&(n.next=a),p?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},m=function(t,e){var r,n=d(t),o=y(e);if("F"!==o)return n.index[o];for(r=n.first;r;r=r.next)if(r.key===e)return r};return i(h,{clear:function(){for(var t=d(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=null),e=e.next;t.first=t.last=null,t.index=n(null),p?t.size=0:this.size=0},delete:function(t){var e=this,r=d(e),n=m(e,t);if(n){var o=n.next,i=n.previous;delete r.index[n.index],n.removed=!0,i&&(i.next=o),o&&(o.previous=i),r.first===n&&(r.first=o),r.last===n&&(r.last=i),p?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=d(this),n=a(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!m(this,t)}}),i(h,r?{get:function(t){var e=m(this,t);return e&&e.value},set:function(t,e){return b(this,0===t?0:t,e)}}:{add:function(t){return b(this,t=0===t?0:t,t)}}),p&&o(h,"size",{configurable:!0,get:function(){return d(this).size}}),l},setStrong:function(t,e,r){var n=e+" Iterator",o=g(e),i=g(n);f(t,e,(function(t,e){v(this,{type:n,target:t,state:o(t),kind:e,last:null})}),(function(){for(var t=i(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?l("keys"===e?r.key:"values"===e?r.value:[r.key,r.value],!1):(t.target=null,l(void 0,!0))}),r?"entries":"values",!r,!0),h(e)}}},39895:(t,e,r)=>{"use strict";var n=r(67250),o=r(30145),i=r(81969).getWeakData,a=r(60077),u=r(30365),s=r(42871),c=r(77568),f=r(49450),l=r(22603),h=r(45299),p=r(5419),y=p.set,d=p.getterFor,v=l.find,g=l.findIndex,b=n([].splice),m=0,w=function(t){return t.frozen||(t.frozen=new x)},x=function(){this.entries=[]},k=function(t,e){return v(t.entries,(function(t){return t[0]===e}))};x.prototype={get:function(t){var e=k(this,t);if(e)return e[1]},has:function(t){return!!k(this,t)},set:function(t,e){var r=k(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=g(this.entries,(function(e){return e[0]===t}));return~e&&b(this.entries,e,1),!!~e}},t.exports={getConstructor:function(t,e,r,n){var l=t((function(t,o){a(t,p),y(t,{type:e,id:m++,frozen:null}),s(o)||f(o,t[n],{that:t,AS_ENTRIES:r})})),p=l.prototype,v=d(e),g=function(t,e,r){var n=v(t),o=i(u(e),!0);return!0===o?w(n).set(e,r):o[n.id]=r,t};return o(p,{delete:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).delete(t):r&&h(r,e.id)&&delete r[e.id]},has:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).has(t):r&&h(r,e.id)}}),o(p,r?{get:function(t){var e=v(this);if(c(t)){var r=i(t);if(!0===r)return w(e).get(t);if(r)return r[e.id]}},set:function(t,e){return g(this,t,e)}}:{add:function(t){return g(this,t,!0)}}),l}}},45150:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(67250),a=r(41314),u=r(55938),s=r(81969),c=r(49450),f=r(60077),l=r(55747),h=r(42871),p=r(77568),y=r(40033),d=r(92490),v=r(84925),g=r(5781);t.exports=function(t,e,r){var b=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),w=b?"set":"add",x=o[t],k=x&&x.prototype,S=x,_={},O=function(t){var e=i(k[t]);u(k,t,"add"===t?function(t){return e(this,0===t?0:t),this}:"delete"===t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:"get"===t?function(t){return m&&!p(t)?void 0:e(this,0===t?0:t)}:"has"===t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(a(t,!l(x)||!(m||k.forEach&&!y((function(){(new x).entries().next()})))))S=r.getConstructor(e,t,b,w),s.enable();else if(a(t,!0)){var E=new S,A=E[w](m?{}:-0,1)!==E,P=y((function(){E.has(1)})),j=d((function(t){new x(t)})),T=!m&&y((function(){for(var t=new x,e=5;e--;)t[w](e,e);return!t.has(-0)}));j||((S=e((function(t,e){f(t,k);var r=g(new x,t,S);return h(e)||c(e,r[w],{that:r,AS_ENTRIES:b}),r}))).prototype=k,k.constructor=S),(P||T)&&(O("delete"),O("has"),b&&O("get")),(T||A)&&O(w),m&&k.clear&&delete k.clear}return _[t]=S,n({global:!0,constructor:!0,forced:S!==x},_),v(S,t),m||r.setStrong(S,t,b),S}},5774:(t,e,r)=>{"use strict";var n=r(45299),o=r(97921),i=r(27193),a=r(74595);t.exports=function(t,e,r){for(var u=o(e),s=a.f,c=i.f,f=0;f<u.length;f++){var l=u[f];n(t,l)||r&&n(r,l)||s(t,l,c(e,l))}}},45490:(t,e,r)=>{"use strict";var n=r(24697)("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[n]=!1,"/./"[t](e)}catch(t){}}return!1}},9225:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},72506:(t,e,r)=>{"use strict";var n=r(67250),o=r(16952),i=r(12605),a=/"/g,u=n("".replace);t.exports=function(t,e,r,n){var s=i(o(t)),c="<"+e;return""!==r&&(c+=" "+r+'="'+u(i(n),a,""")+'"'),c+">"+s+"</"+e+">"}},5959:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},37909:(t,e,r)=>{"use strict";var n=r(58310),o=r(74595),i=r(87458);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},87458:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},60102:(t,e,r)=>{"use strict";var n=r(58310),o=r(74595),i=r(87458);t.exports=function(t,e,r){n?o.f(t,e,i(0,r)):t[e]=r}},67206:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(24051).start,a=RangeError,u=isFinite,s=Math.abs,c=Date.prototype,f=c.toISOString,l=n(c.getTime),h=n(c.getUTCDate),p=n(c.getUTCFullYear),y=n(c.getUTCHours),d=n(c.getUTCMilliseconds),v=n(c.getUTCMinutes),g=n(c.getUTCMonth),b=n(c.getUTCSeconds);t.exports=o((function(){return"0385-07-25T07:06:39.999Z"!==f.call(new Date(-50000000000001))}))||!o((function(){f.call(new Date(NaN))}))?function(){if(!u(l(this)))throw new a("Invalid time value");var t=this,e=p(t),r=d(t),n=e<0?"-":e>9999?"+":"";return n+i(s(e),n?6:4,0)+"-"+i(g(t)+1,2,0)+"-"+i(h(t),2,0)+"T"+i(y(t),2,0)+":"+i(v(t),2,0)+":"+i(b(t),2,0)+"."+i(r,3,0)+"Z"}:f},10886:(t,e,r)=>{"use strict";var n=r(30365),o=r(13396),i=TypeError;t.exports=function(t){if(n(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new i("Incorrect hint");return o(this,t)}},73936:(t,e,r)=>{"use strict";var n=r(20001),o=r(74595);t.exports=function(t,e,r){return r.get&&n(r.get,e,{getter:!0}),r.set&&n(r.set,e,{setter:!0}),o.f(t,e,r)}},55938:(t,e,r)=>{"use strict";var n=r(55747),o=r(74595),i=r(20001),a=r(18231);t.exports=function(t,e,r,u){u||(u={});var s=u.enumerable,c=void 0!==u.name?u.name:e;if(n(r)&&i(r,c,u),u.global)s?t[e]=r:a(e,r);else{try{u.unsafe?t[e]&&(s=!0):delete t[e]}catch(t){}s?t[e]=r:o.f(t,e,{value:r,enumerable:!1,configurable:!u.nonConfigurable,writable:!u.nonWritable})}return t}},30145:(t,e,r)=>{"use strict";var n=r(55938);t.exports=function(t,e,r){for(var o in e)n(t,o,e[o],r);return t}},18231:(t,e,r)=>{"use strict";var n=r(16210),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},95108:(t,e,r)=>{"use strict";var n=r(89393),o=TypeError;t.exports=function(t,e){if(!delete t[e])throw new o("Cannot delete property "+n(e)+" of "+n(t))}},58310:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},3609:(t,e,r)=>{"use strict";var n,o,i,a,u=r(16210),s=r(58835),c=r(8534),f=u.structuredClone,l=u.ArrayBuffer,h=u.MessageChannel,p=!1;if(c)p=function(t){f(t,{transfer:[t]})};else if(l)try{h||(n=s("worker_threads"))&&(h=n.MessageChannel),h&&(o=new h,i=new l(2),a=function(t){o.port1.postMessage(null,[t])},2===i.byteLength&&(a(i),0===i.byteLength&&(p=a)))}catch(t){}t.exports=p},12689:(t,e,r)=>{"use strict";var n=r(16210),o=r(77568),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},21291:t=>{"use strict";var e=TypeError;t.exports=function(t){if(t>9007199254740991)throw e("Maximum allowed index exceeded");return t}},41852:t=>{"use strict";t.exports={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}}},69058:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},90502:(t,e,r)=>{"use strict";var n=r(12689)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},89453:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},50503:(t,e,r)=>{"use strict";var n=r(83309).match(/firefox\/(\d+)/i);t.exports=!!n&&+n[1]},79725:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/MSIE|Trident/.test(n)},16647:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/ipad|iphone|ipod/i.test(n)&&"undefined"!=typeof Pebble},27770:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},81663:(t,e,r)=>{"use strict";var n=r(10753);t.exports="NODE"===n},52854:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/web0s(?!.*chrome)/i.test(n)},83309:(t,e,r)=>{"use strict";var n=r(16210).navigator,o=n&&n.userAgent;t.exports=o?String(o):""},83141:(t,e,r)=>{"use strict";var n,o,i=r(16210),a=r(83309),u=i.process,s=i.Deno,c=u&&u.versions||s&&s.version,f=c&&c.v8;f&&(o=(n=f.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},44981:(t,e,r)=>{"use strict";var n=r(83309).match(/AppleWebKit\/(\d+)\./);t.exports=!!n&&+n[1]},10753:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(16210),i=r(83309),a=r(7462),u=function(t){return i.slice(0,t.length)===t};t.exports=u("Bun/")?"BUN":u("Cloudflare-Workers")?"CLOUDFLARE":u("Deno/")?"DENO":u("Node.js/")?"NODE":o.Bun&&"string"==typeof Bun.version?"BUN":o.Deno&&"object"==n(Deno.version)?"DENO":"process"===a(o.process)?"NODE":o.window&&o.document?"BROWSER":"REST"},89767:(t,e,r)=>{"use strict";var n=r(67250),o=Error,i=n("".replace),a=String(new o("zxcasd").stack),u=/\n\s*at [^:]*:[^\n]*/,s=u.test(a);t.exports=function(t,e){if(s&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,u,"");return t}},40505:(t,e,r)=>{"use strict";var n=r(37909),o=r(89767),i=r(31013),a=Error.captureStackTrace;t.exports=function(t,e,r,u){i&&(a?a(t,e):n(t,"stack",o(r,u)))}},31013:(t,e,r)=>{"use strict";var n=r(40033),o=r(87458);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},44790:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033),i=r(30365),a=r(75577),u=Error.prototype.toString,s=o((function(){if(n){var t=Object.create(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==u.call(t))return!0}return"2: 1"!==u.call({message:1,name:2})||"Error"!==u.call({})}));t.exports=s?function(){var t=i(this),e=a(t.name,"Error"),r=a(t.message);return e?r?e+": "+r:e:r}:u},63964:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(16210),i=r(27193).f,a=r(37909),u=r(55938),s=r(18231),c=r(5774),f=r(41314);t.exports=function(t,e){var r,l,h,p,y,d=t.target,v=t.global,g=t.stat;if(r=v?o:g?o[d]||s(d,{}):o[d]&&o[d].prototype)for(l in e){if(p=e[l],h=t.dontCallGetSet?(y=i(r,l))&&y.value:r[l],!f(v?l:d+(g?".":"#")+l,t.forced)&&void 0!==h){if(n(p)==n(h))continue;c(p,h)}(t.sham||h&&h.sham)&&a(p,"sham",!0),u(r,l,p,t)}}},40033:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},79942:(t,e,r)=>{"use strict";r(79669);var n=r(91495),o=r(55938),i=r(14489),a=r(40033),u=r(24697),s=r(37909),c=u("species"),f=RegExp.prototype;t.exports=function(t,e,r,l){var h=u(t),p=!a((function(){var e={};return e[h]=function(){return 7},7!==""[t](e)})),y=p&&!a((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[c]=function(){return r},r.flags="",r[h]=/./[h]),r.exec=function(){return e=!0,null},r[h](""),!e}));if(!p||!y||r){var d=/./[h],v=e(h,""[t],(function(t,e,r,o,a){var u=e.exec;return u===i||u===f.exec?p&&!a?{done:!0,value:n(d,e,r,o)}:{done:!0,value:n(t,r,e,o)}:{done:!1}}));o(String.prototype,t,v[0]),o(f,h,v[1])}l&&s(f[h],"sham",!0)}},65561:(t,e,r)=>{"use strict";var n=r(37386),o=r(24760),i=r(21291),a=r(75754),u=function(t,e,r,s,c,f,l,h){for(var p,y,d=c,v=0,g=!!l&&a(l,h);v<s;)v in r&&(p=g?g(r[v],v,e):r[v],f>0&&n(p)?(y=o(p),d=u(t,e,p,y,d,f-1)-1):(i(d+1),t[d]=p),d++),v++;return d};t.exports=u},50730:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){return Object.isExtensible(Object.preventExtensions({}))}))},61267:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(55050),i=Function.prototype,a=i.apply,u=i.call;t.exports="object"==("undefined"==typeof Reflect?"undefined":n(Reflect))&&Reflect.apply||(o?u.bind(a):function(){return u.apply(a,arguments)})},75754:(t,e,r)=>{"use strict";var n=r(71138),o=r(10320),i=r(55050),a=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?a(t,e):function(){return t.apply(e,arguments)}}},55050:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},66284:(t,e,r)=>{"use strict";var n=r(67250),o=r(10320),i=r(77568),a=r(45299),u=r(54602),s=r(55050),c=Function,f=n([].concat),l=n([].join),h={};t.exports=s?c.bind:function(t){var e=o(this),r=e.prototype,n=u(arguments,1),s=function(){var r=f(n,u(arguments));return this instanceof s?function(t,e,r){if(!a(h,e)){for(var n=[],o=0;o<e;o++)n[o]="a["+o+"]";h[e]=c("C,a","return new C("+l(n,",")+")")}return h[e](t,r)}(e,r.length,r):e.apply(t,r)};return i(r)&&(s.prototype=r),s}},91495:(t,e,r)=>{"use strict";var n=r(55050),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},70520:(t,e,r)=>{"use strict";var n=r(58310),o=r(45299),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,u=o(i,"name"),s=u&&"something"===function(){}.name,c=u&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:u,PROPER:s,CONFIGURABLE:c}},38656:(t,e,r)=>{"use strict";var n=r(67250),o=r(10320);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},71138:(t,e,r)=>{"use strict";var n=r(7462),o=r(67250);t.exports=function(t){if("Function"===n(t))return o(t)}},67250:(t,e,r)=>{"use strict";var n=r(55050),o=Function.prototype,i=o.call,a=n&&o.bind.bind(i,i);t.exports=n?a:function(t){return function(){return i.apply(t,arguments)}}},58835:(t,e,r)=>{"use strict";var n=r(16210),o=r(81663);t.exports=function(t){if(o){try{return n.process.getBuiltinModule(t)}catch(t){}try{return Function('return require("'+t+'")')()}catch(t){}}}},24466:(t,e,r)=>{"use strict";var n=r(16210);t.exports=function(t,e){var r=n[t],o=r&&r.prototype;return o&&o[e]}},4009:(t,e,r)=>{"use strict";var n=r(16210),o=r(55747);t.exports=function(t,e){return arguments.length<2?(r=n[t],o(r)?r:void 0):n[t]&&n[t][e];var r}},79521:t=>{"use strict";t.exports=function(t){return{iterator:t,next:t.next,done:!1}}},59201:(t,e,r)=>{"use strict";var n=r(2281),o=r(78060),i=r(42871),a=r(83967),u=r(24697)("iterator");t.exports=function(t){if(!i(t))return o(t,u)||o(t,"@@iterator")||a[n(t)]}},77455:(t,e,r)=>{"use strict";var n=r(91495),o=r(10320),i=r(30365),a=r(89393),u=r(59201),s=TypeError;t.exports=function(t,e){var r=arguments.length<2?u(t):e;if(o(r))return i(n(r,t));throw new s(a(t)+" is not iterable")}},39447:(t,e,r)=>{"use strict";var n=r(67250),o=r(37386),i=r(55747),a=r(7462),u=r(12605),s=n([].push);t.exports=function(t){if(i(t))return t;if(o(t)){for(var e=t.length,r=[],n=0;n<e;n++){var c=t[n];"string"==typeof c?s(r,c):"number"!=typeof c&&"Number"!==a(c)&&"String"!==a(c)||s(r,u(c))}var f=r.length,l=!0;return function(t,e){if(l)return l=!1,e;if(o(this))return e;for(var n=0;n<f;n++)if(r[n]===t)return e}}}},78060:(t,e,r)=>{"use strict";var n=r(10320),o=r(42871);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},34099:(t,e,r)=>{"use strict";var n=r(10320),o=r(30365),i=r(91495),a=r(61365),u=r(79521),s="Invalid size",c=RangeError,f=TypeError,l=Math.max,h=function(t,e){this.set=t,this.size=l(e,0),this.has=n(t.has),this.keys=n(t.keys)};h.prototype={getIterator:function(){return u(o(i(this.keys,this.set)))},includes:function(t){return i(this.has,this.set,t)}},t.exports=function(t){o(t);var e=+t.size;if(e!=e)throw new f(s);var r=a(e);if(r<0)throw new c(s);return new h(t,r)}},48300:(t,e,r)=>{"use strict";var n=r(67250),o=r(46771),i=Math.floor,a=n("".charAt),u=n("".replace),s=n("".slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,f=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,r,n,l,h){var p=r+t.length,y=n.length,d=f;return void 0!==l&&(l=o(l),d=c),u(h,d,(function(o,u){var c;switch(a(u,0)){case"$":return"$";case"&":return t;case"`":return s(e,0,r);case"'":return s(e,p);case"<":c=l[s(u,1,-1)];break;default:var f=+u;if(0===f)return o;if(f>y){var h=i(f/10);return 0===h?o:h<=y?void 0===n[h-1]?a(u,1):n[h-1]+a(u,1):o}c=n[f-1]}return void 0===c?"":c}))}},16210:function(t,e,r){"use strict";function n(t){return n="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},n(t)}var o=function(t){return t&&t.Math===Math&&t};t.exports=o("object"==("undefined"==typeof globalThis?"undefined":n(globalThis))&&globalThis)||o("object"==("undefined"==typeof window?"undefined":n(window))&&window)||o("object"==("undefined"==typeof self?"undefined":n(self))&&self)||o("object"==(void 0===r.g?"undefined":n(r.g))&&r.g)||o("object"==n(this)&&this)||function(){return this}()||Function("return this")()},45299:(t,e,r)=>{"use strict";var n=r(67250),o=r(46771),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},79195:t=>{"use strict";t.exports={}},72259:t=>{"use strict";t.exports=function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}}},5315:(t,e,r)=>{"use strict";var n=r(4009);t.exports=n("document","documentElement")},36223:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033),i=r(12689);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},91784:t=>{"use strict";var e=Array,r=Math.abs,n=Math.pow,o=Math.floor,i=Math.log,a=Math.LN2;t.exports={pack:function(t,u,s){var c,f,l,h=e(s),p=8*s-u-1,y=(1<<p)-1,d=y>>1,v=23===u?n(2,-24)-n(2,-77):0,g=t<0||0===t&&1/t<0?1:0,b=0;for((t=r(t))!=t||t===1/0?(f=t!=t?1:0,c=y):(c=o(i(t)/a),t*(l=n(2,-c))<1&&(c--,l*=2),(t+=c+d>=1?v/l:v*n(2,1-d))*l>=2&&(c++,l/=2),c+d>=y?(f=0,c=y):c+d>=1?(f=(t*l-1)*n(2,u),c+=d):(f=t*n(2,d-1)*n(2,u),c=0));u>=8;)h[b++]=255&f,f/=256,u-=8;for(c=c<<u|f,p+=u;p>0;)h[b++]=255&c,c/=256,p-=8;return h[b-1]|=128*g,h},unpack:function(t,e){var r,o=t.length,i=8*o-e-1,a=(1<<i)-1,u=a>>1,s=i-7,c=o-1,f=t[c--],l=127&f;for(f>>=7;s>0;)l=256*l+t[c--],s-=8;for(r=l&(1<<-s)-1,l>>=-s,s+=e;s>0;)r=256*r+t[c--],s-=8;if(0===l)l=1-u;else{if(l===a)return r?NaN:f?-1/0:1/0;r+=n(2,e),l-=u}return(f?-1:1)*r*n(2,l-e)}}},37457:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(7462),a=Object,u=n("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?u(t,""):a(t)}:a},5781:(t,e,r)=>{"use strict";var n=r(55747),o=r(77568),i=r(76649);t.exports=function(t,e,r){var a,u;return i&&n(a=e.constructor)&&a!==r&&o(u=a.prototype)&&u!==r.prototype&&i(t,u),t}},40492:(t,e,r)=>{"use strict";var n=r(67250),o=r(55747),i=r(40095),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},69946:(t,e,r)=>{"use strict";var n=r(77568),o=r(37909);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},81969:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(63964),i=r(67250),a=r(79195),u=r(77568),s=r(45299),c=r(74595).f,f=r(37310),l=r(81644),h=r(81834),p=r(16738),y=r(50730),d=!1,v=p("meta"),g=0,b=function(t){c(t,v,{value:{objectID:"O"+g++,weakData:{}}})},m=t.exports={enable:function(){m.enable=function(){},d=!0;var t=f.f,e=i([].splice),r={};r[v]=1,t(r).length&&(f.f=function(r){for(var n=t(r),o=0,i=n.length;o<i;o++)if(n[o]===v){e(n,o,1);break}return n},o({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:l.f}))},fastKey:function(t,e){if(!u(t))return"symbol"==n(t)?t:("string"==typeof t?"S":"P")+t;if(!s(t,v)){if(!h(t))return"F";if(!e)return"E";b(t)}return t[v].objectID},getWeakData:function(t,e){if(!s(t,v)){if(!h(t))return!0;if(!e)return!1;b(t)}return t[v].weakData},onFreeze:function(t){return y&&d&&h(t)&&!s(t,v)&&b(t),t}};a[v]=!0},5419:(t,e,r)=>{"use strict";var n,o,i,a=r(21820),u=r(16210),s=r(77568),c=r(37909),f=r(45299),l=r(40095),h=r(19417),p=r(79195),y="Object already initialized",d=u.TypeError,v=u.WeakMap;if(a||l.state){var g=l.state||(l.state=new v);g.get=g.get,g.has=g.has,g.set=g.set,n=function(t,e){if(g.has(t))throw new d(y);return e.facade=t,g.set(t,e),e},o=function(t){return g.get(t)||{}},i=function(t){return g.has(t)}}else{var b=h("state");p[b]=!0,n=function(t,e){if(f(t,b))throw new d(y);return e.facade=t,c(t,b,e),e},o=function(t){return f(t,b)?t[b]:{}},i=function(t){return f(t,b)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!s(e)||(r=o(e)).type!==t)throw new d("Incompatible receiver, "+t+" required");return r}}}},76571:(t,e,r)=>{"use strict";var n=r(24697),o=r(83967),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},37386:(t,e,r)=>{"use strict";var n=r(7462);t.exports=Array.isArray||function(t){return"Array"===n(t)}},40221:(t,e,r)=>{"use strict";var n=r(2281);t.exports=function(t){var e=n(t);return"BigInt64Array"===e||"BigUint64Array"===e}},55747:t=>{"use strict";function e(t){return e="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},e(t)}var r="object"==("undefined"==typeof document?"undefined":e(document))&&document.all;t.exports=void 0===r&&void 0!==r?function(t){return"function"==typeof t||t===r}:function(t){return"function"==typeof t}},1031:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(55747),a=r(2281),u=r(4009),s=r(40492),c=function(){},f=u("Reflect","construct"),l=/^\s*(?:class|function)\b/,h=n(l.exec),p=!l.test(c),y=function(t){if(!i(t))return!1;try{return f(c,[],t),!0}catch(t){return!1}},d=function(t){if(!i(t))return!1;switch(a(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return p||!!h(l,s(t))}catch(t){return!0}};d.sham=!0,t.exports=!f||o((function(){var t;return y(y.call)||!y(Object)||!y((function(){t=!0}))||t}))?d:y},98373:(t,e,r)=>{"use strict";var n=r(45299);t.exports=function(t){return void 0!==t&&(n(t,"value")||n(t,"writable"))}},41314:(t,e,r)=>{"use strict";var n=r(40033),o=r(55747),i=/#|\.prototype\./,a=function(t,e){var r=s[u(t)];return r===f||r!==c&&(o(e)?n(e):!!e)},u=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},s=a.data={},c=a.NATIVE="N",f=a.POLYFILL="P";t.exports=a},5841:(t,e,r)=>{"use strict";var n=r(77568),o=Math.floor;t.exports=Number.isInteger||function(t){return!n(t)&&isFinite(t)&&o(t)===t}},42871:t=>{"use strict";t.exports=function(t){return null==t}},77568:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(55747);t.exports=function(t){return"object"==n(t)?null!==t:o(t)}},45015:(t,e,r)=>{"use strict";var n=r(77568);t.exports=function(t){return n(t)||null===t}},4493:t=>{"use strict";t.exports=!1},72586:(t,e,r)=>{"use strict";var n=r(77568),o=r(7462),i=r(24697)("match");t.exports=function(t){var e;return n(t)&&(void 0!==(e=t[i])?!!e:"RegExp"===o(t))}},71399:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(4009),i=r(55747),a=r(21287),u=r(1062),s=Object;t.exports=u?function(t){return"symbol"==n(t)}:function(t){var e=o("Symbol");return i(e)&&a(e.prototype,s(t))}},34825:(t,e,r)=>{"use strict";var n=r(91495);t.exports=function(t,e,r){for(var o,i,a=r?t:t.iterator,u=t.next;!(o=n(u,a)).done;)if(void 0!==(i=e(o.value)))return i}},49450:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(75754),i=r(91495),a=r(30365),u=r(89393),s=r(76571),c=r(24760),f=r(21287),l=r(77455),h=r(59201),p=r(28649),y=TypeError,d=function(t,e){this.stopped=t,this.result=e},v=d.prototype;t.exports=function(t,e,r){var g,b,m,w,x,k,S,_=r&&r.that,O=!(!r||!r.AS_ENTRIES),E=!(!r||!r.IS_RECORD),A=!(!r||!r.IS_ITERATOR),P=!(!r||!r.INTERRUPTED),j=o(e,_),T=function(t){return g&&p(g,"normal",t),new d(!0,t)},M=function(t){return O?(a(t),P?j(t[0],t[1],T):j(t[0],t[1])):P?j(t,T):j(t)};if(E)g=t.iterator;else if(A)g=t;else{if(!(b=h(t)))throw new y(u(t)+" is not iterable");if(s(b)){for(m=0,w=c(t);w>m;m++)if((x=M(t[m]))&&f(v,x))return x;return new d(!1)}g=l(t,b)}for(k=E?t.next:g.next;!(S=i(k,g)).done;){try{x=M(S.value)}catch(t){p(g,"throw",t)}if("object"==n(x)&&x&&f(v,x))return x}return new d(!1)}},28649:(t,e,r)=>{"use strict";var n=r(91495),o=r(30365),i=r(78060);t.exports=function(t,e,r){var a,u;o(t);try{if(!(a=i(t,"return"))){if("throw"===e)throw r;return r}a=n(a,t)}catch(t){u=!0,a=t}if("throw"===e)throw r;if(u)throw a;return o(a),r}},5656:(t,e,r)=>{"use strict";var n=r(67635).IteratorPrototype,o=r(80674),i=r(87458),a=r(84925),u=r(83967),s=function(){return this};t.exports=function(t,e,r,c){var f=e+" Iterator";return t.prototype=o(n,{next:i(+!c,r)}),a(t,f,!1,!0),u[f]=s,t}},65574:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(4493),a=r(70520),u=r(55747),s=r(5656),c=r(36917),f=r(76649),l=r(84925),h=r(37909),p=r(55938),y=r(24697),d=r(83967),v=r(67635),g=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,w=v.BUGGY_SAFARI_ITERATORS,x=y("iterator"),k="keys",S="values",_="entries",O=function(){return this};t.exports=function(t,e,r,a,y,v,E){s(r,e,a);var A,P,j,T=function(t){if(t===y&&L)return L;if(!w&&t&&t in I)return I[t];switch(t){case k:case S:case _:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",R=!1,I=t.prototype,C=I[x]||I["@@iterator"]||y&&I[y],L=!w&&C||T(y),D="Array"===e&&I.entries||C;if(D&&(A=c(D.call(new t)))!==Object.prototype&&A.next&&(i||c(A)===m||(f?f(A,m):u(A[x])||p(A,x,O)),l(A,M,!0,!0),i&&(d[M]=O)),g&&y===S&&C&&C.name!==S&&(!i&&b?h(I,"name",S):(R=!0,L=function(){return o(C,this)})),y)if(P={values:T(S),keys:v?L:T(k),entries:T(_)},E)for(j in P)(w||R||!(j in I))&&p(I,j,P[j]);else n({target:e,proto:!0,forced:w||R},P);return i&&!E||I[x]===L||p(I,x,L,{name:y}),d[e]=L,P}},67635:(t,e,r)=>{"use strict";var n,o,i,a=r(40033),u=r(55747),s=r(77568),c=r(80674),f=r(36917),l=r(55938),h=r(24697),p=r(4493),y=h("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=f(f(i)))!==Object.prototype&&(n=o):d=!0),!s(n)||a((function(){var t={};return n[y].call(t)!==t}))?n={}:p&&(n=c(n)),u(n[y])||l(n,y,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},83967:t=>{"use strict";t.exports={}},24760:(t,e,r)=>{"use strict";var n=r(10188);t.exports=function(t){return n(t.length)}},20001:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(55747),a=r(45299),u=r(58310),s=r(70520).CONFIGURABLE,c=r(40492),f=r(5419),l=f.enforce,h=f.get,p=String,y=Object.defineProperty,d=n("".slice),v=n("".replace),g=n([].join),b=u&&!o((function(){return 8!==y((function(){}),"length",{value:8}).length})),m=String(String).split("String"),w=t.exports=function(t,e,r){"Symbol("===d(p(e),0,7)&&(e="["+v(p(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!a(t,"name")||s&&t.name!==e)&&(u?y(t,"name",{value:e,configurable:!0}):t.name=e),b&&r&&a(r,"arity")&&t.length!==r.arity&&y(t,"length",{value:r.arity});try{r&&a(r,"constructor")&&r.constructor?u&&y(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=l(t);return a(n,"source")||(n.source=g(m,"string"==typeof e?e:"")),t};Function.prototype.toString=w((function(){return i(this)&&h(this).source||c(this)}),"toString")},31186:(t,e,r)=>{"use strict";var n=r(67250),o=Map.prototype;t.exports={Map,set:n(o.set),get:n(o.get),has:n(o.has),remove:n(o.delete),proto:o}},82040:t=>{"use strict";var e=Math.expm1,r=Math.exp;t.exports=!e||e(10)>22025.465794806718||e(10)<22025.465794806718||-2e-17!==e(-2e-17)?function(t){var e=+t;return 0===e?e:e>-1e-6&&e<1e-6?e+e*e/2:r(e)-1}:e},14950:(t,e,r)=>{"use strict";var n=r(22172),o=Math.abs,i=2220446049250313e-31,a=1/i;t.exports=function(t,e,r,u){var s=+t,c=o(s),f=n(s);if(c<u)return f*function(t){return t+a-a}(c/u/e)*u*e;var l=(1+e/i)*c,h=l-(l-c);return h>r||h!=h?f*(1/0):f*h}},95867:(t,e,r)=>{"use strict";var n=r(14950);t.exports=Math.fround||function(t){return n(t,1.1920928955078125e-7,34028234663852886e22,11754943508222875e-54)}},75002:t=>{"use strict";var e=Math.log,r=Math.LOG10E;t.exports=Math.log10||function(t){return e(t)*r}},90874:t=>{"use strict";var e=Math.log;t.exports=Math.log1p||function(t){var r=+t;return r>-1e-8&&r<1e-8?r-r*r/2:e(1+r)}},22172:t=>{"use strict";t.exports=Math.sign||function(t){var e=+t;return 0===e||e!=e?e:e<0?-1:1}},21119:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},37713:(t,e,r)=>{"use strict";var n,o,i,a,u,s=r(16210),c=r(44915),f=r(75754),l=r(60375).set,h=r(9547),p=r(27770),y=r(16647),d=r(52854),v=r(81663),g=s.MutationObserver||s.WebKitMutationObserver,b=s.document,m=s.process,w=s.Promise,x=c("queueMicrotask");if(!x){var k=new h,S=function(){var t,e;for(v&&(t=m.domain)&&t.exit();e=k.get();)try{e()}catch(t){throw k.head&&n(),t}t&&t.enter()};p||v||d||!g||!b?!y&&w&&w.resolve?((a=w.resolve(void 0)).constructor=w,u=f(a.then,a),n=function(){u(S)}):v?n=function(){m.nextTick(S)}:(l=f(l,s),n=function(){l(S)}):(o=!0,i=b.createTextNode(""),new g(S).observe(i,{characterData:!0}),n=function(){i.data=o=!o}),x=function(t){k.head||n(),k.add(t)}}t.exports=x},81837:(t,e,r)=>{"use strict";var n=r(10320),o=TypeError,i=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw new o("Bad Promise constructor");e=t,r=n})),this.resolve=n(e),this.reject=n(r)};t.exports.f=function(t){return new i(t)}},75577:(t,e,r)=>{"use strict";var n=r(12605);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},86213:(t,e,r)=>{"use strict";var n=r(72586),o=TypeError;t.exports=function(t){if(n(t))throw new o("The method doesn't accept regular expressions");return t}},3294:(t,e,r)=>{"use strict";var n=r(16210).isFinite;t.exports=Number.isFinite||function(t){return"number"==typeof t&&n(t)}},28506:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(67250),a=r(12605),u=r(92648).trim,s=r(4198),c=i("".charAt),f=n.parseFloat,l=n.Symbol,h=l&&l.iterator,p=1/f(s+"-0")!=-1/0||h&&!o((function(){f(Object(h))}));t.exports=p?function(t){var e=u(a(t)),r=f(e);return 0===r&&"-"===c(e,0)?-0:r}:f},13693:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(67250),a=r(12605),u=r(92648).trim,s=r(4198),c=n.parseInt,f=n.Symbol,l=f&&f.iterator,h=/^[+-]?0x/i,p=i(h.exec),y=8!==c(s+"08")||22!==c(s+"0x16")||l&&!o((function(){c(Object(l))}));t.exports=y?function(t,e){var r=u(a(t));return c(r,e>>>0||(p(h,r)?16:10))}:c},41143:(t,e,r)=>{"use strict";var n=r(58310),o=r(67250),i=r(91495),a=r(40033),u=r(18450),s=r(89235),c=r(12867),f=r(46771),l=r(37457),h=Object.assign,p=Object.defineProperty,y=o([].concat);t.exports=!h||a((function(){if(n&&1!==h({b:1},h(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol("assign detection"),o="abcdefghijklmnopqrst";return t[r]=7,o.split("").forEach((function(t){e[t]=t})),7!==h({},t)[r]||u(h({},e)).join("")!==o}))?function(t,e){for(var r=f(t),o=arguments.length,a=1,h=s.f,p=c.f;o>a;)for(var d,v=l(arguments[a++]),g=h?y(u(v),h(v)):u(v),b=g.length,m=0;b>m;)d=g[m++],n&&!i(p,v,d)||(r[d]=v[d]);return r}:h},80674:(t,e,r)=>{"use strict";var n,o=r(30365),i=r(24239),a=r(89453),u=r(79195),s=r(5315),c=r(12689),f=r(19417),l="prototype",h="script",p=f("IE_PROTO"),y=function(){},d=function(t){return"<"+h+">"+t+"</"+h+">"},v=function(t){t.write(d("")),t.close();var e=t.parentWindow.Object;return t=null,e},g=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;g="undefined"!=typeof document?document.domain&&n?v(n):(e=c("iframe"),r="java"+h+":",e.style.display="none",s.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(d("document.F=Object")),t.close(),t.F):v(n);for(var o=a.length;o--;)delete g[l][a[o]];return g()};u[p]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(y[l]=o(t),r=new y,y[l]=null,r[p]=t):r=g(),void 0===e?r:i.f(r,e)}},24239:(t,e,r)=>{"use strict";var n=r(58310),o=r(80944),i=r(74595),a=r(30365),u=r(57591),s=r(18450);e.f=n&&!o?Object.defineProperties:function(t,e){a(t);for(var r,n=u(e),o=s(e),c=o.length,f=0;c>f;)i.f(t,r=o[f++],n[r]);return t}},74595:(t,e,r)=>{"use strict";var n=r(58310),o=r(36223),i=r(80944),a=r(30365),u=r(767),s=TypeError,c=Object.defineProperty,f=Object.getOwnPropertyDescriptor,l="enumerable",h="configurable",p="writable";e.f=n?i?function(t,e,r){if(a(t),e=u(e),a(r),"function"==typeof t&&"prototype"===e&&"value"in r&&p in r&&!r[p]){var n=f(t,e);n&&n[p]&&(t[e]=r.value,r={configurable:h in r?r[h]:n[h],enumerable:l in r?r[l]:n[l],writable:!1})}return c(t,e,r)}:c:function(t,e,r){if(a(t),e=u(e),a(r),o)try{return c(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new s("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},27193:(t,e,r)=>{"use strict";var n=r(58310),o=r(91495),i=r(12867),a=r(87458),u=r(57591),s=r(767),c=r(45299),f=r(36223),l=Object.getOwnPropertyDescriptor;e.f=n?l:function(t,e){if(t=u(t),e=s(e),f)try{return l(t,e)}catch(t){}if(c(t,e))return a(!o(i.f,t,e),t[e])}},81644:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(7462),i=r(57591),a=r(37310).f,u=r(54602),s="object"==("undefined"==typeof window?"undefined":n(window))&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return s&&"Window"===o(t)?function(t){try{return a(t)}catch(t){return u(s)}}(t):a(i(t))}},37310:(t,e,r)=>{"use strict";var n=r(53726),o=r(89453).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},89235:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},36917:(t,e,r)=>{"use strict";var n=r(45299),o=r(55747),i=r(46771),a=r(19417),u=r(9225),s=a("IE_PROTO"),c=Object,f=c.prototype;t.exports=u?c.getPrototypeOf:function(t){var e=i(t);if(n(e,s))return e[s];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof c?f:null}},81834:(t,e,r)=>{"use strict";var n=r(40033),o=r(77568),i=r(7462),a=r(3782),u=Object.isExtensible,s=n((function(){u(1)}));t.exports=s||a?function(t){return!!o(t)&&(!a||"ArrayBuffer"!==i(t))&&(!u||u(t))}:u},21287:(t,e,r)=>{"use strict";var n=r(67250);t.exports=n({}.isPrototypeOf)},53726:(t,e,r)=>{"use strict";var n=r(67250),o=r(45299),i=r(57591),a=r(14211).indexOf,u=r(79195),s=n([].push);t.exports=function(t,e){var r,n=i(t),c=0,f=[];for(r in n)!o(u,r)&&o(n,r)&&s(f,r);for(;e.length>c;)o(n,r=e[c++])&&(~a(f,r)||s(f,r));return f}},18450:(t,e,r)=>{"use strict";var n=r(53726),o=r(89453);t.exports=Object.keys||function(t){return n(t,o)}},12867:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},57377:(t,e,r)=>{"use strict";var n=r(4493),o=r(16210),i=r(40033),a=r(44981);t.exports=n||!i((function(){if(!(a&&a<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete o[t]}}))},76649:(t,e,r)=>{"use strict";var n=r(38656),o=r(77568),i=r(16952),a=r(35908);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return i(r),a(n),o(r)?(e?t(r,n):r.__proto__=n,r):r}}():void 0)},70915:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033),i=r(67250),a=r(36917),u=r(18450),s=r(57591),c=i(r(12867).f),f=i([].push),l=n&&o((function(){var t=Object.create(null);return t[2]=2,!c(t,2)})),h=function(t){return function(e){for(var r,o=s(e),i=u(o),h=l&&null===a(o),p=i.length,y=0,d=[];p>y;)r=i[y++],n&&!(h?r in o:c(o,r))||f(d,t?[r,o[r]]:o[r]);return d}};t.exports={entries:h(!0),values:h(!1)}},2509:(t,e,r)=>{"use strict";var n=r(2650),o=r(2281);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},13396:(t,e,r)=>{"use strict";var n=r(91495),o=r(55747),i=r(77568),a=TypeError;t.exports=function(t,e){var r,u;if("string"===e&&o(r=t.toString)&&!i(u=n(r,t)))return u;if(o(r=t.valueOf)&&!i(u=n(r,t)))return u;if("string"!==e&&o(r=t.toString)&&!i(u=n(r,t)))return u;throw new a("Can't convert object to primitive value")}},97921:(t,e,r)=>{"use strict";var n=r(4009),o=r(67250),i=r(37310),a=r(89235),u=r(30365),s=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(u(t)),r=a.f;return r?s(e,r(t)):e}},61765:(t,e,r)=>{"use strict";var n=r(16210);t.exports=n},10729:t=>{"use strict";t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},74854:(t,e,r)=>{"use strict";var n=r(16210),o=r(67512),i=r(55747),a=r(41314),u=r(40492),s=r(24697),c=r(10753),f=r(4493),l=r(83141),h=o&&o.prototype,p=s("species"),y=!1,d=i(n.PromiseRejectionEvent),v=a("Promise",(function(){var t=u(o),e=t!==String(o);if(!e&&66===l)return!0;if(f&&(!h.catch||!h.finally))return!0;if(!l||l<51||!/native code/.test(t)){var r=new o((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[p]=n,!(y=r.then((function(){}))instanceof n))return!0}return!(e||"BROWSER"!==c&&"DENO"!==c||d)}));t.exports={CONSTRUCTOR:v,REJECTION_EVENT:d,SUBCLASSING:y}},67512:(t,e,r)=>{"use strict";var n=r(16210);t.exports=n.Promise},66628:(t,e,r)=>{"use strict";var n=r(30365),o=r(77568),i=r(81837);t.exports=function(t,e){if(n(t),o(e)&&e.constructor===t)return e;var r=i.f(t);return(0,r.resolve)(e),r.promise}},48199:(t,e,r)=>{"use strict";var n=r(67512),o=r(92490),i=r(74854).CONSTRUCTOR;t.exports=i||!o((function(t){n.all(t).then(void 0,(function(){}))}))},34550:(t,e,r)=>{"use strict";var n=r(74595).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},9547:t=>{"use strict";var e=function(){this.head=null,this.tail=null};e.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}},t.exports=e},28340:(t,e,r)=>{"use strict";var n=r(91495),o=r(30365),i=r(55747),a=r(7462),u=r(14489),s=TypeError;t.exports=function(t,e){var r=t.exec;if(i(r)){var c=n(r,t,e);return null!==c&&o(c),c}if("RegExp"===a(t))return n(u,t,e);throw new s("RegExp#exec called on incompatible receiver")}},14489:(t,e,r)=>{"use strict";var n,o,i=r(91495),a=r(67250),u=r(12605),s=r(70901),c=r(62115),f=r(16639),l=r(80674),h=r(5419).get,p=r(39173),y=r(35688),d=f("native-string-replace",String.prototype.replace),v=RegExp.prototype.exec,g=v,b=a("".charAt),m=a("".indexOf),w=a("".replace),x=a("".slice),k=(o=/b*/g,i(v,n=/a/,"a"),i(v,o,"a"),0!==n.lastIndex||0!==o.lastIndex),S=c.BROKEN_CARET,_=void 0!==/()??/.exec("")[1];(k||_||S||p||y)&&(g=function(t){var e,r,n,o,a,c,f,p=this,y=h(p),O=u(t),E=y.raw;if(E)return E.lastIndex=p.lastIndex,e=i(g,E,O),p.lastIndex=E.lastIndex,e;var A=y.groups,P=S&&p.sticky,j=i(s,p),T=p.source,M=0,R=O;if(P&&(j=w(j,"y",""),-1===m(j,"g")&&(j+="g"),R=x(O,p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==b(O,p.lastIndex-1))&&(T="(?: "+T+")",R=" "+R,M++),r=new RegExp("^(?:"+T+")",j)),_&&(r=new RegExp("^"+T+"$(?!\\s)",j)),k&&(n=p.lastIndex),o=i(v,P?r:p,R),P?o?(o.input=x(o.input,M),o[0]=x(o[0],M),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:k&&o&&(p.lastIndex=p.global?o.index+o[0].length:n),_&&o&&o.length>1&&i(d,o[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(o[a]=void 0)})),o&&A)for(o.groups=c=l(null),a=0;a<A.length;a++)c[(f=A[a])[0]]=o[f[1]];return o}),t.exports=g},70901:(t,e,r)=>{"use strict";var n=r(30365);t.exports=function(){var t=n(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e}},73392:(t,e,r)=>{"use strict";var n=r(91495),o=r(45299),i=r(21287),a=r(70901),u=RegExp.prototype;t.exports=function(t){var e=t.flags;return void 0!==e||"flags"in u||o(t,"flags")||!i(u,t)?e:n(a,t)}},62115:(t,e,r)=>{"use strict";var n=r(40033),o=r(16210).RegExp,i=n((function(){var t=o("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),a=i||n((function(){return!o("a","y").sticky})),u=i||n((function(){var t=o("^r","gy");return t.lastIndex=2,null!==t.exec("str")}));t.exports={BROKEN_CARET:u,MISSED_STICKY:a,UNSUPPORTED_Y:i}},39173:(t,e,r)=>{"use strict";var n=r(40033),o=r(16210).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)}))},35688:(t,e,r)=>{"use strict";var n=r(40033),o=r(16210).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},16952:(t,e,r)=>{"use strict";var n=r(42871),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},44915:(t,e,r)=>{"use strict";var n=r(16210),o=r(58310),i=Object.getOwnPropertyDescriptor;t.exports=function(t){if(!o)return n[t];var e=i(n,t);return e&&e.value}},5700:t=>{"use strict";t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},78362:(t,e,r)=>{"use strict";var n,o=r(16210),i=r(61267),a=r(55747),u=r(10753),s=r(83309),c=r(54602),f=r(24986),l=o.Function,h=/MSIE .\./.test(s)||"BUN"===u&&((n=o.Bun.version.split(".")).length<3||"0"===n[0]&&(n[1]<3||"3"===n[1]&&"0"===n[2]));t.exports=function(t,e){var r=e?2:1;return h?function(n,o){var u=f(arguments.length,1)>r,s=a(n)?n:l(n),h=u?c(arguments,r):[],p=u?function(){i(s,this,h)}:s;return e?t(p,o):t(p)}:t}},50960:(t,e,r)=>{"use strict";var n=r(13128),o=r(51551),i=n.Set,a=n.add;t.exports=function(t){var e=new i;return o(t,(function(t){a(e,t)})),e}},23710:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128),i=r(50960),a=r(79212),u=r(34099),s=r(51551),c=r(34825),f=o.has,l=o.remove;t.exports=function(t){var e=n(this),r=u(t),o=i(e);return a(e)<=r.size?s(e,(function(t){r.includes(t)&&l(o,t)})):c(r.getIterator(),(function(t){f(e,t)&&l(o,t)})),o}},13128:(t,e,r)=>{"use strict";var n=r(67250),o=Set.prototype;t.exports={Set,add:n(o.add),has:n(o.has),remove:n(o.delete),proto:o}},61752:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128),i=r(79212),a=r(34099),u=r(51551),s=r(34825),c=o.Set,f=o.add,l=o.has;t.exports=function(t){var e=n(this),r=a(t),o=new c;return i(e)>r.size?s(r.getIterator(),(function(t){l(e,t)&&f(o,t)})):u(e,(function(t){r.includes(t)&&f(o,t)})),o}},10979:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128).has,i=r(79212),a=r(34099),u=r(51551),s=r(34825),c=r(28649);t.exports=function(t){var e=n(this),r=a(t);if(i(e)<=r.size)return!1!==u(e,(function(t){if(r.includes(t))return!1}),!0);var f=r.getIterator();return!1!==s(f,(function(t){if(o(e,t))return c(f,"normal",!1)}))}},66040:(t,e,r)=>{"use strict";var n=r(71806),o=r(79212),i=r(51551),a=r(34099);t.exports=function(t){var e=n(this),r=a(t);return!(o(e)>r.size)&&!1!==i(e,(function(t){if(!r.includes(t))return!1}),!0)}},289:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128).has,i=r(79212),a=r(34099),u=r(34825),s=r(28649);t.exports=function(t){var e=n(this),r=a(t);if(i(e)<r.size)return!1;var c=r.getIterator();return!1!==u(c,(function(t){if(!o(e,t))return s(c,"normal",!1)}))}},51551:(t,e,r)=>{"use strict";var n=r(67250),o=r(34825),i=r(13128),a=i.Set,u=i.proto,s=n(u.forEach),c=n(u.keys),f=c(new a).next;t.exports=function(t,e,r){return r?o({iterator:c(t),next:f},e):s(t,e)}},94610:(t,e,r)=>{"use strict";var n=r(4009),o=function(t){return{size:t,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}};t.exports=function(t){var e=n("Set");try{(new e)[t](o(0));try{return(new e)[t](o(-1)),!1}catch(t){return!0}}catch(t){return!1}}},79212:(t,e,r)=>{"use strict";var n=r(38656),o=r(13128);t.exports=n(o.proto,"size","get")||function(t){return t.size}},58491:(t,e,r)=>{"use strict";var n=r(4009),o=r(73936),i=r(24697),a=r(58310),u=i("species");t.exports=function(t){var e=n(t);a&&e&&!e[u]&&o(e,u,{configurable:!0,get:function(){return this}})}},24052:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128),i=r(50960),a=r(34099),u=r(34825),s=o.add,c=o.has,f=o.remove;t.exports=function(t){var e=n(this),r=a(t).getIterator(),o=i(e);return u(r,(function(t){c(e,t)?f(o,t):s(o,t)})),o}},84925:(t,e,r)=>{"use strict";var n=r(74595).f,o=r(45299),i=r(24697)("toStringTag");t.exports=function(t,e,r){t&&!r&&(t=t.prototype),t&&!o(t,i)&&n(t,i,{configurable:!0,value:e})}},18630:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128).add,i=r(50960),a=r(34099),u=r(34825);t.exports=function(t){var e=n(this),r=a(t).getIterator(),s=i(e);return u(r,(function(t){o(s,t)})),s}},19417:(t,e,r)=>{"use strict";var n=r(16639),o=r(16738),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},40095:(t,e,r)=>{"use strict";var n=r(4493),o=r(16210),i=r(18231),a="__core-js_shared__",u=t.exports=o[a]||i(a,{});(u.versions||(u.versions=[])).push({version:"3.38.1",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE",source:"https://github.com/zloirock/core-js"})},16639:(t,e,r)=>{"use strict";var n=r(40095);t.exports=function(t,e){return n[t]||(n[t]=e||{})}},28987:(t,e,r)=>{"use strict";var n=r(30365),o=r(32606),i=r(42871),a=r(24697)("species");t.exports=function(t,e){var r,u=n(t).constructor;return void 0===u||i(r=n(u)[a])?e:o(r)}},88539:(t,e,r)=>{"use strict";var n=r(40033);t.exports=function(t){return n((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))}},50233:(t,e,r)=>{"use strict";var n=r(67250),o=r(61365),i=r(12605),a=r(16952),u=n("".charAt),s=n("".charCodeAt),c=n("".slice),f=function(t){return function(e,r){var n,f,l=i(a(e)),h=o(r),p=l.length;return h<0||h>=p?t?"":void 0:(n=s(l,h))<55296||n>56319||h+1===p||(f=s(l,h+1))<56320||f>57343?t?u(l,h):n:t?c(l,h,h+2):f-56320+(n-55296<<10)+65536}};t.exports={codeAt:f(!1),charAt:f(!0)}},34125:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)},24051:(t,e,r)=>{"use strict";var n=r(67250),o=r(10188),i=r(12605),a=r(62443),u=r(16952),s=n(a),c=n("".slice),f=Math.ceil,l=function(t){return function(e,r,n){var a,l,h=i(u(e)),p=o(r),y=h.length,d=void 0===n?" ":i(n);return p<=y||""===d?h:((l=s(d,f((a=p-y)/d.length))).length>a&&(l=c(l,0,a)),t?h+l:l+h)}};t.exports={start:l(!1),end:l(!0)}},74915:(t,e,r)=>{"use strict";var n=r(67250),o=2147483647,i=/[^\0-\u007E]/,a=/[.\u3002\uFF0E\uFF61]/g,u="Overflow: input needs wider integers to process",s=RangeError,c=n(a.exec),f=Math.floor,l=String.fromCharCode,h=n("".charCodeAt),p=n([].join),y=n([].push),d=n("".replace),v=n("".split),g=n("".toLowerCase),b=function(t){return t+22+75*(t<26)},m=function(t,e,r){var n=0;for(t=r?f(t/700):t>>1,t+=f(t/e);t>455;)t=f(t/35),n+=36;return f(n+36*t/(t+38))},w=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var o=h(t,r++);if(o>=55296&&o<=56319&&r<n){var i=h(t,r++);56320==(64512&i)?y(e,((1023&o)<<10)+(1023&i)+65536):(y(e,o),r--)}else y(e,o)}return e}(t);var r,n,i=t.length,a=128,c=0,d=72;for(r=0;r<t.length;r++)(n=t[r])<128&&y(e,l(n));var v=e.length,g=v;for(v&&y(e,"-");g<i;){var w=o;for(r=0;r<t.length;r++)(n=t[r])>=a&&n<w&&(w=n);var x=g+1;if(w-a>f((o-c)/x))throw new s(u);for(c+=(w-a)*x,a=w,r=0;r<t.length;r++){if((n=t[r])<a&&++c>o)throw new s(u);if(n===a){for(var k=c,S=36;;){var _=S<=d?1:S>=d+26?26:S-d;if(k<_)break;var O=k-_,E=36-_;y(e,l(b(_+O%E))),k=f(O/E),S+=36}y(e,l(b(k))),d=m(c,x,g===v),c=0,g++}}c++,a++}return p(e,"")};t.exports=function(t){var e,r,n=[],o=v(d(g(t),a,"."),".");for(e=0;e<o.length;e++)r=o[e],y(n,c(i,r)?"xn--"+w(r):r);return p(n,".")}},62443:(t,e,r)=>{"use strict";var n=r(61365),o=r(12605),i=r(16952),a=RangeError;t.exports=function(t){var e=o(i(this)),r="",u=n(t);if(u<0||u===1/0)throw new a("Wrong number of repetitions");for(;u>0;(u>>>=1)&&(e+=e))1&u&&(r+=e);return r}},43476:(t,e,r)=>{"use strict";var n=r(92648).end,o=r(90012);t.exports=o("trimEnd")?function(){return n(this)}:"".trimEnd},90012:(t,e,r)=>{"use strict";var n=r(70520).PROPER,o=r(40033),i=r(4198);t.exports=function(t){return o((function(){return!!i[t]()||"
"!=="
"[t]()||n&&i[t].name!==t}))}},43885:(t,e,r)=>{"use strict";var n=r(92648).start,o=r(90012);t.exports=o("trimStart")?function(){return n(this)}:"".trimStart},92648:(t,e,r)=>{"use strict";var n=r(67250),o=r(16952),i=r(12605),a=r(4198),u=n("".replace),s=RegExp("^["+a+"]+"),c=RegExp("(^|[^"+a+"])["+a+"]+$"),f=function(t){return function(e){var r=i(o(e));return 1&t&&(r=u(r,s,"")),2&t&&(r=u(r,c,"$1")),r}};t.exports={start:f(1),end:f(2),trim:f(3)}},8534:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(83141),a=r(10753),u=n.structuredClone;t.exports=!!u&&!o((function(){if("DENO"===a&&i>92||"NODE"===a&&i>94||"BROWSER"===a&&i>97)return!1;var t=new ArrayBuffer(8),e=u(t,{transfer:[t]});return 0!==t.byteLength||8!==e.byteLength}))},52357:(t,e,r)=>{"use strict";var n=r(83141),o=r(40033),i=r(16210).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},52360:(t,e,r)=>{"use strict";var n=r(91495),o=r(4009),i=r(24697),a=r(55938);t.exports=function(){var t=o("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,u=i("toPrimitive");e&&!e[u]&&a(e,u,(function(t){return n(r,this)}),{arity:1})}},66570:(t,e,r)=>{"use strict";var n=r(52357);t.exports=n&&!!Symbol.for&&!!Symbol.keyFor},60375:(t,e,r)=>{"use strict";var n,o,i,a,u=r(16210),s=r(61267),c=r(75754),f=r(55747),l=r(45299),h=r(40033),p=r(5315),y=r(54602),d=r(12689),v=r(24986),g=r(27770),b=r(81663),m=u.setImmediate,w=u.clearImmediate,x=u.process,k=u.Dispatch,S=u.Function,_=u.MessageChannel,O=u.String,E=0,A={},P="onreadystatechange";h((function(){n=u.location}));var j=function(t){if(l(A,t)){var e=A[t];delete A[t],e()}},T=function(t){return function(){j(t)}},M=function(t){j(t.data)},R=function(t){u.postMessage(O(t),n.protocol+"//"+n.host)};m&&w||(m=function(t){v(arguments.length,1);var e=f(t)?t:S(t),r=y(arguments,1);return A[++E]=function(){s(e,void 0,r)},o(E),E},w=function(t){delete A[t]},b?o=function(t){x.nextTick(T(t))}:k&&k.now?o=function(t){k.now(T(t))}:_&&!g?(a=(i=new _).port2,i.port1.onmessage=M,o=c(a.postMessage,a)):u.addEventListener&&f(u.postMessage)&&!u.importScripts&&n&&"file:"!==n.protocol&&!h(R)?(o=R,u.addEventListener("message",M,!1)):o=P in d("script")?function(t){p.appendChild(d("script"))[P]=function(){p.removeChild(this),j(t)}}:function(t){setTimeout(T(t),0)}),t.exports={set:m,clear:w}},46438:(t,e,r)=>{"use strict";var n=r(67250);t.exports=n(1..valueOf)},13912:(t,e,r)=>{"use strict";var n=r(61365),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},61484:(t,e,r)=>{"use strict";var n=r(24843),o=TypeError;t.exports=function(t){var e=n(t,"number");if("number"==typeof e)throw new o("Can't convert number to bigint");return BigInt(e)}},43806:(t,e,r)=>{"use strict";var n=r(61365),o=r(10188),i=RangeError;t.exports=function(t){if(void 0===t)return 0;var e=n(t),r=o(e);if(e!==r)throw new i("Wrong length or index");return r}},57591:(t,e,r)=>{"use strict";var n=r(37457),o=r(16952);t.exports=function(t){return n(o(t))}},61365:(t,e,r)=>{"use strict";var n=r(21119);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},10188:(t,e,r)=>{"use strict";var n=r(61365),o=Math.min;t.exports=function(t){var e=n(t);return e>0?o(e,9007199254740991):0}},46771:(t,e,r)=>{"use strict";var n=r(16952),o=Object;t.exports=function(t){return o(n(t))}},56043:(t,e,r)=>{"use strict";var n=r(16140),o=RangeError;t.exports=function(t,e){var r=n(t);if(r%e)throw new o("Wrong offset");return r}},16140:(t,e,r)=>{"use strict";var n=r(61365),o=RangeError;t.exports=function(t){var e=n(t);if(e<0)throw new o("The argument can't be less than 0");return e}},24843:(t,e,r)=>{"use strict";var n=r(91495),o=r(77568),i=r(71399),a=r(78060),u=r(13396),s=r(24697),c=TypeError,f=s("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,s=a(t,f);if(s){if(void 0===e&&(e="default"),r=n(s,t,e),!o(r)||i(r))return r;throw new c("Can't convert object to primitive value")}return void 0===e&&(e="number"),u(t,e)}},767:(t,e,r)=>{"use strict";var n=r(24843),o=r(71399);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},2650:(t,e,r)=>{"use strict";var n={};n[r(24697)("toStringTag")]="z",t.exports="[object z]"===String(n)},12605:(t,e,r)=>{"use strict";var n=r(2281),o=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},15409:t=>{"use strict";var e=Math.round;t.exports=function(t){var r=e(t);return r<0?0:r>255?255:255&r}},89393:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},80185:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(91495),a=r(58310),u=r(86563),s=r(4246),c=r(37336),f=r(60077),l=r(87458),h=r(37909),p=r(5841),y=r(10188),d=r(43806),v=r(56043),g=r(15409),b=r(767),m=r(45299),w=r(2281),x=r(77568),k=r(71399),S=r(80674),_=r(21287),O=r(76649),E=r(37310).f,A=r(3805),P=r(22603).forEach,j=r(58491),T=r(73936),M=r(74595),R=r(27193),I=r(78008),C=r(5419),L=r(5781),D=C.get,B=C.set,N=C.enforce,F=M.f,z=R.f,U=o.RangeError,Y=c.ArrayBuffer,G=Y.prototype,H=c.DataView,W=s.NATIVE_ARRAY_BUFFER_VIEWS,X=s.TYPED_ARRAY_TAG,q=s.TypedArray,V=s.TypedArrayPrototype,Q=s.isTypedArray,K="BYTES_PER_ELEMENT",J="Wrong length",Z=function(t,e){T(t,e,{configurable:!0,get:function(){return D(this)[e]}})},$=function(t){var e;return _(G,t)||"ArrayBuffer"===(e=w(t))||"SharedArrayBuffer"===e},tt=function(t,e){return Q(t)&&!k(e)&&e in t&&p(+e)&&e>=0},et=function(t,e){return e=b(e),tt(t,e)?l(2,t[e]):z(t,e)},rt=function(t,e,r){return e=b(e),!(tt(t,e)&&x(r)&&m(r,"value"))||m(r,"get")||m(r,"set")||r.configurable||m(r,"writable")&&!r.writable||m(r,"enumerable")&&!r.enumerable?F(t,e,r):(t[e]=r.value,t)};a?(W||(R.f=et,M.f=rt,Z(V,"buffer"),Z(V,"byteOffset"),Z(V,"byteLength"),Z(V,"length")),n({target:"Object",stat:!0,forced:!W},{getOwnPropertyDescriptor:et,defineProperty:rt}),t.exports=function(t,e,r){var a=t.match(/\d+/)[0]/8,s=t+(r?"Clamped":"")+"Array",c="get"+t,l="set"+t,p=o[s],b=p,m=b&&b.prototype,w={},k=function(t,e){F(t,e,{get:function(){return function(t,e){var r=D(t);return r.view[c](e*a+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,n){var o=D(t);o.view[l](e*a+o.byteOffset,r?g(n):n,!0)}(this,e,t)},enumerable:!0})};W?u&&(b=e((function(t,e,r,n){return f(t,m),L(x(e)?$(e)?void 0!==n?new p(e,v(r,a),n):void 0!==r?new p(e,v(r,a)):new p(e):Q(e)?I(b,e):i(A,b,e):new p(d(e)),t,b)})),O&&O(b,q),P(E(p),(function(t){t in b||h(b,t,p[t])})),b.prototype=m):(b=e((function(t,e,r,n){f(t,m);var o,u,s,c=0,l=0;if(x(e)){if(!$(e))return Q(e)?I(b,e):i(A,b,e);o=e,l=v(r,a);var h=e.byteLength;if(void 0===n){if(h%a)throw new U(J);if((u=h-l)<0)throw new U(J)}else if((u=y(n)*a)+l>h)throw new U(J);s=u/a}else s=d(e),o=new Y(u=s*a);for(B(t,{buffer:o,byteOffset:l,byteLength:u,length:s,view:new H(o)});c<s;)k(t,c++)})),O&&O(b,q),m=b.prototype=S(V)),m.constructor!==b&&h(m,"constructor",b),N(m).TypedArrayConstructor=b,X&&h(m,X,s);var _=b!==p;w[s]=b,n({global:!0,constructor:!0,forced:_,sham:!W},w),K in b||h(b,K,a),K in m||h(m,K,a),j(s)}):t.exports=function(){}},86563:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(92490),a=r(4246).NATIVE_ARRAY_BUFFER_VIEWS,u=n.ArrayBuffer,s=n.Int8Array;t.exports=!a||!o((function(){s(1)}))||!o((function(){new s(-1)}))||!i((function(t){new s,new s(null),new s(1.5),new s(t)}),!0)||o((function(){return 1!==new s(new u(2),1,void 0).length}))},45399:(t,e,r)=>{"use strict";var n=r(78008),o=r(31082);t.exports=function(t,e){return n(o(t),e)}},3805:(t,e,r)=>{"use strict";var n=r(75754),o=r(91495),i=r(32606),a=r(46771),u=r(24760),s=r(77455),c=r(59201),f=r(76571),l=r(40221),h=r(4246).aTypedArrayConstructor,p=r(61484);t.exports=function(t){var e,r,y,d,v,g,b,m,w=i(this),x=a(t),k=arguments.length,S=k>1?arguments[1]:void 0,_=void 0!==S,O=c(x);if(O&&!f(O))for(m=(b=s(x,O)).next,x=[];!(g=o(m,b)).done;)x.push(g.value);for(_&&k>2&&(S=n(S,arguments[2])),r=u(x),y=new(h(w))(r),d=l(y),e=0;r>e;e++)v=_?S(x[e],e):x[e],y[e]=d?p(v):+v;return y}},31082:(t,e,r)=>{"use strict";var n=r(4246),o=r(28987),i=n.aTypedArrayConstructor,a=n.getTypedArrayConstructor;t.exports=function(t){return i(o(t,a(t)))}},16738:(t,e,r)=>{"use strict";var n=r(67250),o=0,i=Math.random(),a=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},92178:(t,e,r)=>{"use strict";var n=r(40033),o=r(24697),i=r(58310),a=r(4493),u=o("iterator");t.exports=!n((function(){var t=new URL("b?a=1&b=2&c=3","https://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),a&&(!t.toJSON||!r.has("a",1)||r.has("a",2)||!r.has("a",void 0)||r.has("b"))||!e.size&&(a||!i)||!e.sort||"https://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[u]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("https://тест").host||"#%D0%B1"!==new URL("https://a#б").hash||"a1c3"!==n||"x"!==new URL("https://x",void 0).host}))},1062:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(52357);t.exports=o&&!Symbol.sham&&"symbol"==n(Symbol.iterator)},80944:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},24986:t=>{"use strict";var e=TypeError;t.exports=function(t,r){if(t<r)throw new e("Not enough arguments");return t}},21820:(t,e,r)=>{"use strict";var n=r(16210),o=r(55747),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},85889:(t,e,r)=>{"use strict";var n=r(61765),o=r(45299),i=r(55557),a=r(74595).f;t.exports=function(t){var e=n.Symbol||(n.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},55557:(t,e,r)=>{"use strict";var n=r(24697);e.f=n},24697:(t,e,r)=>{"use strict";var n=r(16210),o=r(16639),i=r(45299),a=r(16738),u=r(52357),s=r(1062),c=n.Symbol,f=o("wks"),l=s?c.for||c:c&&c.withoutSetter||a;t.exports=function(t){return i(f,t)||(f[t]=u&&i(c,t)?c[t]:l("Symbol."+t)),f[t]}},4198:t=>{"use strict";t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},76151:(t,e,r)=>{"use strict";var n=r(4009),o=r(45299),i=r(37909),a=r(21287),u=r(76649),s=r(5774),c=r(34550),f=r(5781),l=r(75577),h=r(69946),p=r(40505),y=r(58310),d=r(4493);t.exports=function(t,e,r,v){var g="stackTraceLimit",b=v?2:1,m=t.split("."),w=m[m.length-1],x=n.apply(null,m);if(x){var k=x.prototype;if(!d&&o(k,"cause")&&delete k.cause,!r)return x;var S=n("Error"),_=e((function(t,e){var r=l(v?e:t,void 0),n=v?new x(t):new x;return void 0!==r&&i(n,"message",r),p(n,_,n.stack,2),this&&a(k,this)&&f(n,this,_),arguments.length>b&&h(n,arguments[b]),n}));if(_.prototype=k,"Error"!==w?u?u(_,S):s(_,S,{name:!0}):y&&g in x&&(c(_,x,g),c(_,x,"prepareStackTrace")),s(_,x),!d)try{k.name!==w&&i(k,"name",w),k.constructor=_}catch(t){}return _}}},6864:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(61267),a=r(40033),u=r(76151),s="AggregateError",c=o(s),f=!a((function(){return 1!==c([1]).errors[0]}))&&a((function(){return 7!==c([1],s,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:f},{AggregateError:u(s,(function(t){return function(e,r){return i(t,this,arguments)}}),f,!0)})},66587:(t,e,r)=>{"use strict";var n=r(63964),o=r(21287),i=r(36917),a=r(76649),u=r(5774),s=r(80674),c=r(37909),f=r(87458),l=r(69946),h=r(40505),p=r(49450),y=r(75577),d=r(24697)("toStringTag"),v=Error,g=[].push,b=function(t,e){var r,n=o(m,this);a?r=a(new v,n?i(this):m):(r=n?this:s(m),c(r,d,"Error")),void 0!==e&&c(r,"message",y(e)),h(r,b,r.stack,1),arguments.length>2&&l(r,arguments[2]);var u=[];return p(t,g,{that:u}),c(r,"errors",u),r};a?a(b,v):u(b,v,{name:!0});var m=b.prototype=s(v.prototype,{constructor:f(1,b),message:f(1,""),name:f(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:b})},43345:(t,e,r)=>{"use strict";r(66587)},75621:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(37336),a=r(58491),u="ArrayBuffer",s=i[u];n({global:!0,constructor:!0,forced:o[u]!==s},{ArrayBuffer:s}),a(u)},30603:(t,e,r)=>{"use strict";var n=r(58310),o=r(73936),i=r(85092),a=ArrayBuffer.prototype;n&&!("detached"in a)&&o(a,"detached",{configurable:!0,get:function(){return i(this)}})},26267:(t,e,r)=>{"use strict";var n=r(63964),o=r(4246);n({target:"ArrayBuffer",stat:!0,forced:!o.NATIVE_ARRAY_BUFFER_VIEWS},{isView:o.isView})},50095:(t,e,r)=>{"use strict";var n=r(63964),o=r(71138),i=r(40033),a=r(37336),u=r(30365),s=r(13912),c=r(10188),f=r(28987),l=a.ArrayBuffer,h=a.DataView,p=h.prototype,y=o(l.prototype.slice),d=o(p.getUint8),v=o(p.setUint8);n({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:i((function(){return!new l(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(y&&void 0===e)return y(u(this),t);for(var r=u(this).byteLength,n=s(t,r),o=s(void 0===e?r:e,r),i=new(f(this,l))(c(o-n)),a=new h(this),p=new h(i),g=0;n<o;)v(p,g++,d(a,n++));return i}})},52326:(t,e,r)=>{"use strict";var n=r(63964),o=r(61562);o&&n({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return o(this,arguments.length?arguments[0]:void 0,!1)}})},29362:(t,e,r)=>{"use strict";var n=r(63964),o=r(61562);o&&n({target:"ArrayBuffer",proto:!0},{transfer:function(){return o(this,arguments.length?arguments[0]:void 0,!0)}})},43825:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(24760),a=r(61365),u=r(80575);n({target:"Array",proto:!0},{at:function(t){var e=o(this),r=i(e),n=a(t),u=n>=0?n:r+n;return u<0||u>=r?void 0:e[u]}}),u("at")},39600:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(37386),a=r(77568),u=r(46771),s=r(24760),c=r(21291),f=r(60102),l=r(57823),h=r(44091),p=r(24697),y=r(83141),d=p("isConcatSpreadable"),v=y>=51||!o((function(){var t=[];return t[d]=!1,t.concat()[0]!==t})),g=function(t){if(!a(t))return!1;var e=t[d];return void 0!==e?!!e:i(t)};n({target:"Array",proto:!0,arity:1,forced:!v||!h("concat")},{concat:function(t){var e,r,n,o,i,a=u(this),h=l(a,0),p=0;for(e=-1,n=arguments.length;e<n;e++)if(g(i=-1===e?a:arguments[e]))for(o=s(i),c(p+o),r=0;r<o;r++,p++)r in i&&f(h,p,i[r]);else c(p+1),f(h,p++,i);return h.length=p,h}})},93237:(t,e,r)=>{"use strict";var n=r(63964),o=r(71447),i=r(80575);n({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},32057:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).every;n({target:"Array",proto:!0,forced:!r(55528)("every")},{every:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},68933:(t,e,r)=>{"use strict";var n=r(63964),o=r(88471),i=r(80575);n({target:"Array",proto:!0},{fill:o}),i("fill")},47830:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).filter;n({target:"Array",proto:!0,forced:!r(44091)("filter")},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},64094:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).findIndex,i=r(80575),a="findIndex",u=!0;a in[]&&Array(1)[a]((function(){u=!1})),n({target:"Array",proto:!0,forced:u},{findIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},15381:(t,e,r)=>{"use strict";var n=r(63964),o=r(77389).findLastIndex,i=r(80575);n({target:"Array",proto:!0},{findLastIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLastIndex")},43620:(t,e,r)=>{"use strict";var n=r(63964),o=r(77389).findLast,i=r(80575);n({target:"Array",proto:!0},{findLast:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLast")},13455:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).find,i=r(80575),a="find",u=!0;a in[]&&Array(1)[a]((function(){u=!1})),n({target:"Array",proto:!0,forced:u},{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},32384:(t,e,r)=>{"use strict";var n=r(63964),o=r(65561),i=r(10320),a=r(46771),u=r(24760),s=r(57823);n({target:"Array",proto:!0},{flatMap:function(t){var e,r=a(this),n=u(r);return i(t),(e=s(r,0)).length=o(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}})},61915:(t,e,r)=>{"use strict";var n=r(63964),o=r(65561),i=r(46771),a=r(24760),u=r(61365),s=r(57823);n({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=i(this),r=a(e),n=s(e,0);return n.length=o(n,e,e,r,0,void 0===t?1:u(t)),n}})},25579:(t,e,r)=>{"use strict";var n=r(63964),o=r(35601);n({target:"Array",proto:!0,forced:[].forEach!==o},{forEach:o})},63532:(t,e,r)=>{"use strict";var n=r(63964),o=r(73174);n({target:"Array",stat:!0,forced:!r(92490)((function(t){Array.from(t)}))},{from:o})},33425:(t,e,r)=>{"use strict";var n=r(63964),o=r(14211).includes,i=r(40033),a=r(80575);n({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),a("includes")},43894:(t,e,r)=>{"use strict";var n=r(63964),o=r(71138),i=r(14211).indexOf,a=r(55528),u=o([].indexOf),s=!!u&&1/u([1],1,-0)<0;n({target:"Array",proto:!0,forced:s||!a("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return s?u(this,t,e)||0:i(this,t,e)}})},99636:(t,e,r)=>{"use strict";r(63964)({target:"Array",stat:!0},{isArray:r(37386)})},34570:(t,e,r)=>{"use strict";var n=r(57591),o=r(80575),i=r(83967),a=r(5419),u=r(74595).f,s=r(65574),c=r(5959),f=r(4493),l=r(58310),h="Array Iterator",p=a.set,y=a.getterFor(h);t.exports=s(Array,"Array",(function(t,e){p(this,{type:h,target:n(t),index:0,kind:e})}),(function(){var t=y(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,c(void 0,!0);switch(t.kind){case"keys":return c(r,!1);case"values":return c(e[r],!1)}return c([r,e[r]],!1)}),"values");var d=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!f&&l&&"values"!==d.name)try{u(d,"name",{value:"values"})}catch(t){}},94432:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(37457),a=r(57591),u=r(55528),s=o([].join);n({target:"Array",proto:!0,forced:i!==Object||!u("join",",")},{join:function(t){return s(a(this),void 0===t?",":t)}})},24683:(t,e,r)=>{"use strict";var n=r(63964),o=r(1325);n({target:"Array",proto:!0,forced:o!==[].lastIndexOf},{lastIndexOf:o})},69984:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).map;n({target:"Array",proto:!0,forced:!r(44091)("map")},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},32089:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(1031),a=r(60102),u=Array;n({target:"Array",stat:!0,forced:o((function(){function t(){}return!(u.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(i(this)?this:u)(e);e>t;)a(r,t,arguments[t++]);return r.length=e,r}})},11684:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(24760),a=r(13345),u=r(21291);n({target:"Array",proto:!0,arity:1,forced:r(40033)((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=o(this),r=i(e),n=arguments.length;u(r+n);for(var s=0;s<n;s++)e[r]=arguments[s],r++;return a(e,r),r}})},29645:(t,e,r)=>{"use strict";var n=r(63964),o=r(56844).right,i=r(55528),a=r(83141);n({target:"Array",proto:!0,forced:!r(81663)&&a>79&&a<83||!i("reduceRight")},{reduceRight:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},60206:(t,e,r)=>{"use strict";var n=r(63964),o=r(56844).left,i=r(55528),a=r(83141);n({target:"Array",proto:!0,forced:!r(81663)&&a>79&&a<83||!i("reduce")},{reduce:function(t){var e=arguments.length;return o(this,t,e,e>1?arguments[1]:void 0)}})},4788:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(37386),a=o([].reverse),u=[1,2];n({target:"Array",proto:!0,forced:String(u)===String(u.reverse())},{reverse:function(){return i(this)&&(this.length=this.length),a(this)}})},58672:(t,e,r)=>{"use strict";var n=r(63964),o=r(37386),i=r(1031),a=r(77568),u=r(13912),s=r(24760),c=r(57591),f=r(60102),l=r(24697),h=r(44091),p=r(54602),y=h("slice"),d=l("species"),v=Array,g=Math.max;n({target:"Array",proto:!0,forced:!y},{slice:function(t,e){var r,n,l,h=c(this),y=s(h),b=u(t,y),m=u(void 0===e?y:e,y);if(o(h)&&(r=h.constructor,(i(r)&&(r===v||o(r.prototype))||a(r)&&null===(r=r[d]))&&(r=void 0),r===v||void 0===r))return p(h,b,m);for(n=new(void 0===r?v:r)(g(m-b,0)),l=0;b<m;b++,l++)b in h&&f(n,l,h[b]);return n.length=l,n}})},19356:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).some;n({target:"Array",proto:!0,forced:!r(55528)("some")},{some:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},48968:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(10320),a=r(46771),u=r(24760),s=r(95108),c=r(12605),f=r(40033),l=r(90274),h=r(55528),p=r(50503),y=r(79725),d=r(83141),v=r(44981),g=[],b=o(g.sort),m=o(g.push),w=f((function(){g.sort(void 0)})),x=f((function(){g.sort(null)})),k=h("sort"),S=!f((function(){if(d)return d<70;if(!(p&&p>3)){if(y)return!0;if(v)return v<603;var t,e,r,n,o="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)g.push({k:e+n,v:r})}for(g.sort((function(t,e){return e.v-t.v})),n=0;n<g.length;n++)e=g[n].k.charAt(0),o.charAt(o.length-1)!==e&&(o+=e);return"DGBEFHACIJK"!==o}}));n({target:"Array",proto:!0,forced:w||!x||!k||!S},{sort:function(t){void 0!==t&&i(t);var e=a(this);if(S)return void 0===t?b(e):b(e,t);var r,n,o=[],f=u(e);for(n=0;n<f;n++)n in e&&m(o,e[n]);for(l(o,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:c(e)>c(r)?1:-1}}(t)),r=u(o),n=0;n<r;)e[n]=o[n++];for(;n<f;)s(e,n++);return e}})},49852:(t,e,r)=>{"use strict";r(58491)("Array")},2712:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(13912),a=r(61365),u=r(24760),s=r(13345),c=r(21291),f=r(57823),l=r(60102),h=r(95108),p=r(44091)("splice"),y=Math.max,d=Math.min;n({target:"Array",proto:!0,forced:!p},{splice:function(t,e){var r,n,p,v,g,b,m=o(this),w=u(m),x=i(t,w),k=arguments.length;for(0===k?r=n=0:1===k?(r=0,n=w-x):(r=k-2,n=d(y(a(e),0),w-x)),c(w+r-n),p=f(m,n),v=0;v<n;v++)(g=x+v)in m&&l(p,v,m[g]);if(p.length=n,r<n){for(v=x;v<w-n;v++)b=v+r,(g=v+n)in m?m[b]=m[g]:h(m,b);for(v=w;v>w-n+r;v--)h(m,v-1)}else if(r>n)for(v=w-n;v>x;v--)b=v+r-1,(g=v+n-1)in m?m[b]=m[g]:h(m,b);for(v=0;v<r;v++)m[v+x]=arguments[v+2];return s(m,w-n+r),p}})},26828:(t,e,r)=>{"use strict";var n=r(63964),o=r(81354),i=r(57591),a=r(80575),u=Array;n({target:"Array",proto:!0},{toReversed:function(){return o(i(this),u)}}),a("toReversed")},79243:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(10320),a=r(57591),u=r(78008),s=r(24466),c=r(80575),f=Array,l=o(s("Array","sort"));n({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&i(t);var e=a(this),r=u(f,e);return l(r,t)}}),c("toSorted")},63692:(t,e,r)=>{"use strict";var n=r(63964),o=r(80575),i=r(21291),a=r(24760),u=r(13912),s=r(57591),c=r(61365),f=Array,l=Math.max,h=Math.min;n({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,o,p,y=s(this),d=a(y),v=u(t,d),g=arguments.length,b=0;for(0===g?r=n=0:1===g?(r=0,n=d-v):(r=g-2,n=h(l(c(e),0),d-v)),o=i(d+r-n),p=f(o);b<v;b++)p[b]=y[b];for(;b<v+r;b++)p[b]=arguments[b-v+2];for(;b<o;b++)p[b]=y[b+n-r];return p}}),o("toSpliced")},54243:(t,e,r)=>{"use strict";r(80575)("flatMap")},864:(t,e,r)=>{"use strict";r(80575)("flat")},11519:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(24760),a=r(13345),u=r(95108),s=r(21291);n({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=o(this),r=i(e),n=arguments.length;if(n){s(r+n);for(var c=r;c--;){var f=c+n;c in e?e[f]=e[c]:u(e,f)}for(var l=0;l<n;l++)e[l]=arguments[l]}return a(e,r+n)}})},71016:(t,e,r)=>{"use strict";var n=r(63964),o=r(85370),i=r(57591),a=Array;n({target:"Array",proto:!0},{with:function(t,e){return o(i(this),a,t,e)}})},21265:(t,e,r)=>{"use strict";var n=r(63964),o=r(37336);n({global:!0,constructor:!0,forced:!r(70377)},{DataView:o.DataView})},33451:(t,e,r)=>{"use strict";r(21265)},36629:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(40033)((function(){return 120!==new Date(16e11).getYear()})),a=o(Date.prototype.getFullYear);n({target:"Date",proto:!0,forced:i},{getYear:function(){return a(this)-1900}})},74587:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=Date,a=o(i.prototype.getTime);n({target:"Date",stat:!0},{now:function(){return a(new i)}})},80329:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(61365),a=Date.prototype,u=o(a.getTime),s=o(a.setFullYear);n({target:"Date",proto:!0},{setYear:function(t){u(this);var e=i(t);return s(this,e>=0&&e<=99?e+1900:e)}})},66777:(t,e,r)=>{"use strict";r(63964)({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString})},25082:(t,e,r)=>{"use strict";var n=r(63964),o=r(67206);n({target:"Date",proto:!0,forced:Date.prototype.toISOString!==o},{toISOString:o})},47421:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(46771),a=r(24843);n({target:"Date",proto:!0,arity:1,forced:o((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=i(this),r=a(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}})},32122:(t,e,r)=>{"use strict";var n=r(45299),o=r(55938),i=r(10886),a=r(24697)("toPrimitive"),u=Date.prototype;n(u,a)||o(u,a,i)},6306:(t,e,r)=>{"use strict";var n=r(67250),o=r(55938),i=Date.prototype,a="Invalid Date",u="toString",s=n(i[u]),c=n(i.getTime);String(new Date(NaN))!==a&&o(i,u,(function(){var t=c(this);return t==t?s(this):a}))},55474:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(61267),a=r(76151),u="WebAssembly",s=o[u],c=7!==new Error("e",{cause:7}).cause,f=function(t,e){var r={};r[t]=a(t,e,c),n({global:!0,constructor:!0,arity:1,forced:c},r)},l=function(t,e){if(s&&s[t]){var r={};r[t]=a(u+"."+t,e,c),n({target:u,stat:!0,constructor:!0,arity:1,forced:c},r)}};f("Error",(function(t){return function(e){return i(t,this,arguments)}})),f("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),f("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),f("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),f("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),f("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),f("URIError",(function(t){return function(e){return i(t,this,arguments)}})),l("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),l("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),l("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},12612:(t,e,r)=>{"use strict";var n=r(55938),o=r(44790),i=Error.prototype;i.toString!==o&&n(i,"toString",o)},26338:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(12605),a=o("".charAt),u=o("".charCodeAt),s=o(/./.exec),c=o(1..toString),f=o("".toUpperCase),l=/[\w*+\-./@]/,h=function(t,e){for(var r=c(t,16);r.length<e;)r="0"+r;return r};n({global:!0},{escape:function(t){for(var e,r,n=i(t),o="",c=n.length,p=0;p<c;)e=a(n,p++),s(l,e)?o+=e:o+=(r=u(e,0))<256?"%"+h(r,2):"%u"+f(h(r,4));return o}})},90216:(t,e,r)=>{"use strict";var n=r(63964),o=r(66284);n({target:"Function",proto:!0,forced:Function.bind!==o},{bind:o})},84663:(t,e,r)=>{"use strict";var n=r(55747),o=r(77568),i=r(74595),a=r(21287),u=r(24697),s=r(20001),c=u("hasInstance"),f=Function.prototype;c in f||i.f(f,c,{value:s((function(t){if(!n(this)||!o(t))return!1;var e=this.prototype;return o(e)?a(e,t):t instanceof this}),c)})},92332:(t,e,r)=>{"use strict";var n=r(58310),o=r(70520).EXISTS,i=r(67250),a=r(73936),u=Function.prototype,s=i(u.toString),c=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,f=i(c.exec);n&&!o&&a(u,"name",{configurable:!0,get:function(){try{return f(c,s(this))[1]}catch(t){return""}}})},52631:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210);n({global:!0,forced:o.globalThis!==o},{globalThis:o})},53008:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(61267),a=r(91495),u=r(67250),s=r(40033),c=r(55747),f=r(71399),l=r(54602),h=r(39447),p=r(52357),y=String,d=o("JSON","stringify"),v=u(/./.exec),g=u("".charAt),b=u("".charCodeAt),m=u("".replace),w=u(1..toString),x=/[\uD800-\uDFFF]/g,k=/^[\uD800-\uDBFF]$/,S=/^[\uDC00-\uDFFF]$/,_=!p||s((function(){var t=o("Symbol")("stringify detection");return"[null]"!==d([t])||"{}"!==d({a:t})||"{}"!==d(Object(t))})),O=s((function(){return'"\\udf06\\ud834"'!==d("\udf06\ud834")||'"\\udead"'!==d("\udead")})),E=function(t,e){var r=l(arguments),n=h(e);if(c(n)||void 0!==t&&!f(t))return r[1]=function(t,e){if(c(n)&&(e=a(n,this,y(t),e)),!f(e))return e},i(d,null,r)},A=function(t,e,r){var n=g(r,e-1),o=g(r,e+1);return v(k,t)&&!v(S,o)||v(S,t)&&!v(k,n)?"\\u"+w(b(t,0),16):t};d&&n({target:"JSON",stat:!0,arity:3,forced:_||O},{stringify:function(t,e,r){var n=l(arguments),o=i(_?E:d,null,n);return O&&"string"==typeof o?m(o,x,A):o}})},98329:(t,e,r)=>{"use strict";var n=r(16210);r(84925)(n.JSON,"JSON",!0)},7965:(t,e,r)=>{"use strict";r(45150)("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(41028))},12638:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(10320),a=r(16952),u=r(49450),s=r(31186),c=r(4493),f=r(40033),l=s.Map,h=s.has,p=s.get,y=s.set,d=o([].push),v=c||f((function(){return 1!==l.groupBy("ab",(function(t){return t})).get("a").length}));n({target:"Map",stat:!0,forced:c||v},{groupBy:function(t,e){a(t),i(e);var r=new l,n=0;return u(t,(function(t){var o=e(t,n++);h(r,o)?d(p(r,o),t):y(r,o,[t])})),r}})},9631:(t,e,r)=>{"use strict";r(7965)},47091:(t,e,r)=>{"use strict";var n=r(63964),o=r(90874),i=Math.acosh,a=Math.log,u=Math.sqrt,s=Math.LN2;n({target:"Math",stat:!0,forced:!i||710!==Math.floor(i(Number.MAX_VALUE))||i(1/0)!==1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?a(e)+s:o(e-1+u(e-1)*u(e+1))}})},59660:(t,e,r)=>{"use strict";var n=r(63964),o=Math.asinh,i=Math.log,a=Math.sqrt;n({target:"Math",stat:!0,forced:!(o&&1/o(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!==r?r<0?-t(-r):i(r+a(r*r+1)):r}})},15383:(t,e,r)=>{"use strict";var n=r(63964),o=Math.atanh,i=Math.log;n({target:"Math",stat:!0,forced:!(o&&1/o(-0)<0)},{atanh:function(t){var e=+t;return 0===e?e:i((1+e)/(1-e))/2}})},92866:(t,e,r)=>{"use strict";var n=r(63964),o=r(22172),i=Math.abs,a=Math.pow;n({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return o(e)*a(i(e),1/3)}})},86107:(t,e,r)=>{"use strict";var n=r(63964),o=Math.floor,i=Math.log,a=Math.LOG2E;n({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-o(i(e+.5)*a):32}})},29248:(t,e,r)=>{"use strict";var n=r(63964),o=r(82040),i=Math.cosh,a=Math.abs,u=Math.E;n({target:"Math",stat:!0,forced:!i||i(710)===1/0},{cosh:function(t){var e=o(a(t)-1)+1;return(e+1/(e*u*u))*(u/2)}})},52540:(t,e,r)=>{"use strict";var n=r(63964),o=r(82040);n({target:"Math",stat:!0,forced:o!==Math.expm1},{expm1:o})},79007:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{fround:r(95867)})},77199:(t,e,r)=>{"use strict";var n=r(63964),o=Math.hypot,i=Math.abs,a=Math.sqrt;n({target:"Math",stat:!0,arity:2,forced:!!o&&o(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,o=0,u=0,s=arguments.length,c=0;u<s;)c<(r=i(arguments[u++]))?(o=o*(n=c/r)*n+1,c=r):o+=r>0?(n=r/c)*n:r;return c===1/0?1/0:c*a(o)}})},6522:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=Math.imul;n({target:"Math",stat:!0,forced:o((function(){return-5!==i(4294967295,5)||2!==i.length}))},{imul:function(t,e){var r=65535,n=+t,o=+e,i=r&n,a=r&o;return 0|i*a+((r&n>>>16)*a+i*(r&o>>>16)<<16>>>0)}})},95542:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{log10:r(75002)})},2966:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{log1p:r(90874)})},20997:(t,e,r)=>{"use strict";var n=r(63964),o=Math.log,i=Math.LN2;n({target:"Math",stat:!0},{log2:function(t){return o(t)/i}})},57400:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{sign:r(22172)})},45571:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(82040),a=Math.abs,u=Math.exp,s=Math.E;n({target:"Math",stat:!0,forced:o((function(){return-2e-17!==Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return a(e)<1?(i(e)-i(-e))/2:(u(e-1)-u(-e-1))*(s/2)}})},54800:(t,e,r)=>{"use strict";var n=r(63964),o=r(82040),i=Math.exp;n({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=o(e),n=o(-e);return r===1/0?1:n===1/0?-1:(r-n)/(i(e)+i(-e))}})},15709:(t,e,r)=>{"use strict";r(84925)(Math,"Math",!0)},76059:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{trunc:r(21119)})},96614:(t,e,r)=>{"use strict";var n=r(63964),o=r(4493),i=r(58310),a=r(16210),u=r(61765),s=r(67250),c=r(41314),f=r(45299),l=r(5781),h=r(21287),p=r(71399),y=r(24843),d=r(40033),v=r(37310).f,g=r(27193).f,b=r(74595).f,m=r(46438),w=r(92648).trim,x="Number",k=a[x],S=u[x],_=k.prototype,O=a.TypeError,E=s("".slice),A=s("".charCodeAt),P=c(x,!k(" 0o1")||!k("0b1")||k("+0x1")),j=function(t){var e,r=arguments.length<1?0:k(function(t){var e=y(t,"number");return"bigint"==typeof e?e:function(t){var e,r,n,o,i,a,u,s,c=y(t,"number");if(p(c))throw new O("Cannot convert a Symbol value to a number");if("string"==typeof c&&c.length>2)if(c=w(c),43===(e=A(c,0))||45===e){if(88===(r=A(c,2))||120===r)return NaN}else if(48===e){switch(A(c,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+c}for(a=(i=E(c,2)).length,u=0;u<a;u++)if((s=A(i,u))<48||s>o)return NaN;return parseInt(i,n)}return+c}(e)}(t));return h(_,e=this)&&d((function(){m(e)}))?l(Object(r),this,j):r};j.prototype=_,P&&!o&&(_.constructor=j),n({global:!0,constructor:!0,wrap:!0,forced:P},{Number:j});var T=function(t,e){for(var r,n=i?v(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),o=0;n.length>o;o++)f(e,r=n[o])&&!f(t,r)&&b(t,r,g(e,r))};o&&S&&T(u[x],S),(P||o)&&T(u[x],k)},324:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},90426:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0},{isFinite:r(3294)})},95443:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0},{isInteger:r(5841)})},87968:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0},{isNaN:function(t){return t!=t}})},55007:(t,e,r)=>{"use strict";var n=r(63964),o=r(5841),i=Math.abs;n({target:"Number",stat:!0},{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},55323:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991})},13521:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991})},5006:(t,e,r)=>{"use strict";var n=r(63964),o=r(28506);n({target:"Number",stat:!0,forced:Number.parseFloat!==o},{parseFloat:o})},99009:(t,e,r)=>{"use strict";var n=r(63964),o=r(13693);n({target:"Number",stat:!0,forced:Number.parseInt!==o},{parseInt:o})},42719:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(61365),a=r(46438),u=r(62443),s=r(75002),c=r(40033),f=RangeError,l=String,h=isFinite,p=Math.abs,y=Math.floor,d=Math.pow,v=Math.round,g=o(1..toExponential),b=o(u),m=o("".slice),w="-6.9000e-11"===g(-69e-12,4)&&"1.25e+0"===g(1.255,2)&&"1.235e+4"===g(12345,3)&&"3e+1"===g(25,0);n({target:"Number",proto:!0,forced:!w||!(c((function(){g(1,1/0)}))&&c((function(){g(1,-1/0)})))||!!c((function(){g(1/0,1/0),g(NaN,1/0)}))},{toExponential:function(t){var e=a(this);if(void 0===t)return g(e);var r=i(t);if(!h(e))return String(e);if(r<0||r>20)throw new f("Incorrect fraction digits");if(w)return g(e,r);var n,o,u,c,x="";if(e<0&&(x="-",e=-e),0===e)o=0,n=b("0",r+1);else{var k=s(e);o=y(k);var S=d(10,o-r),_=v(e/S);2*e>=(2*_+1)*S&&(_+=1),_>=d(10,r+1)&&(_/=10,o+=1),n=l(_)}return 0!==r&&(n=m(n,0,1)+"."+m(n,1)),0===o?(u="+",c="0"):(u=o>0?"+":"-",c=l(p(o))),x+(n+"e")+u+c}})},85770:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(61365),a=r(46438),u=r(62443),s=r(40033),c=RangeError,f=String,l=Math.floor,h=o(u),p=o("".slice),y=o(1..toFixed),d=function(t,e,r){return 0===e?r:e%2==1?d(t,e-1,r*t):d(t*t,e/2,r)},v=function(t,e,r){for(var n=-1,o=r;++n<6;)o+=e*t[n],t[n]=o%1e7,o=l(o/1e7)},g=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=l(n/e),n=n%e*1e7},b=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=f(t[e]);r=""===r?n:r+h("0",7-n.length)+n}return r};n({target:"Number",proto:!0,forced:s((function(){return"0.000"!==y(8e-5,3)||"1"!==y(.9,0)||"1.25"!==y(1.255,2)||"1000000000000000128"!==y(0xde0b6b3a7640080,0)}))||!s((function(){y({})}))},{toFixed:function(t){var e,r,n,o,u=a(this),s=i(t),l=[0,0,0,0,0,0],y="",m="0";if(s<0||s>20)throw new c("Incorrect fraction digits");if(u!=u)return"NaN";if(u<=-1e21||u>=1e21)return f(u);if(u<0&&(y="-",u=-u),u>1e-21)if(r=(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(u*d(2,69,1))-69)<0?u*d(2,-e,1):u/d(2,e,1),r*=4503599627370496,(e=52-e)>0){for(v(l,0,r),n=s;n>=7;)v(l,1e7,0),n-=7;for(v(l,d(10,n,1),0),n=e-1;n>=23;)g(l,1<<23),n-=23;g(l,1<<n),v(l,1,1),g(l,2),m=b(l)}else v(l,0,r),v(l,1<<-e,0),m=b(l)+h("0",s);return s>0?y+((o=m.length)<=s?"0."+h("0",s-o)+m:p(m,0,o-s)+"."+p(m,o-s)):y+m}})},23532:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(40033),a=r(46438),u=o(1..toPrecision);n({target:"Number",proto:!0,forced:i((function(){return"1"!==u(1,void 0)}))||!i((function(){u({})}))},{toPrecision:function(t){return void 0===t?u(a(this)):u(a(this),t)}})},87119:(t,e,r)=>{"use strict";var n=r(63964),o=r(41143);n({target:"Object",stat:!0,arity:2,forced:Object.assign!==o},{assign:o})},78618:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0,sham:!r(58310)},{create:r(80674)})},27129:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(10320),u=r(46771),s=r(74595);o&&n({target:"Object",proto:!0,forced:i},{__defineGetter__:function(t,e){s.f(u(this),t,{get:a(e),enumerable:!0,configurable:!0})}})},31943:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(24239).f;n({target:"Object",stat:!0,forced:Object.defineProperties!==i,sham:!o},{defineProperties:i})},3579:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(74595).f;n({target:"Object",stat:!0,forced:Object.defineProperty!==i,sham:!o},{defineProperty:i})},97397:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(10320),u=r(46771),s=r(74595);o&&n({target:"Object",proto:!0,forced:i},{__defineSetter__:function(t,e){s.f(u(this),t,{set:a(e),enumerable:!0,configurable:!0})}})},85028:(t,e,r)=>{"use strict";var n=r(63964),o=r(70915).entries;n({target:"Object",stat:!0},{entries:function(t){return o(t)}})},8225:(t,e,r)=>{"use strict";var n=r(63964),o=r(50730),i=r(40033),a=r(77568),u=r(81969).onFreeze,s=Object.freeze;n({target:"Object",stat:!0,forced:i((function(){s(1)})),sham:!o},{freeze:function(t){return s&&a(t)?s(u(t)):t}})},43331:(t,e,r)=>{"use strict";var n=r(63964),o=r(49450),i=r(60102);n({target:"Object",stat:!0},{fromEntries:function(t){var e={};return o(t,(function(t,r){i(e,t,r)}),{AS_ENTRIES:!0}),e}})},62289:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(57591),a=r(27193).f,u=r(58310);n({target:"Object",stat:!0,forced:!u||o((function(){a(1)})),sham:!u},{getOwnPropertyDescriptor:function(t,e){return a(i(t),e)}})},56196:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(97921),a=r(57591),u=r(27193),s=r(60102);n({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(t){for(var e,r,n=a(t),o=u.f,c=i(n),f={},l=0;c.length>l;)void 0!==(r=o(n,e=c[l++]))&&s(f,e,r);return f}})},2950:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(81644).f;n({target:"Object",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},28603:(t,e,r)=>{"use strict";var n=r(63964),o=r(52357),i=r(40033),a=r(89235),u=r(46771);n({target:"Object",stat:!0,forced:!o||i((function(){a.f(1)}))},{getOwnPropertySymbols:function(t){var e=a.f;return e?e(u(t)):[]}})},44205:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(46771),a=r(36917),u=r(9225);n({target:"Object",stat:!0,forced:o((function(){a(1)})),sham:!u},{getPrototypeOf:function(t){return a(i(t))}})},79861:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(67250),a=r(10320),u=r(16952),s=r(767),c=r(49450),f=r(40033),l=Object.groupBy,h=o("Object","create"),p=i([].push);n({target:"Object",stat:!0,forced:!l||f((function(){return 1!==l("ab",(function(t){return t})).a.length}))},{groupBy:function(t,e){u(t),a(e);var r=h(null),n=0;return c(t,(function(t){var o=s(e(t,n++));o in r?p(r[o],t):r[o]=[t]})),r}})},11137:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0},{hasOwn:r(45299)})},83186:(t,e,r)=>{"use strict";var n=r(63964),o=r(81834);n({target:"Object",stat:!0,forced:Object.isExtensible!==o},{isExtensible:o})},76065:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(77568),a=r(7462),u=r(3782),s=Object.isFrozen;n({target:"Object",stat:!0,forced:u||o((function(){s(1)}))},{isFrozen:function(t){return!i(t)||!(!u||"ArrayBuffer"!==a(t))||!!s&&s(t)}})},13411:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(77568),a=r(7462),u=r(3782),s=Object.isSealed;n({target:"Object",stat:!0,forced:u||o((function(){s(1)}))},{isSealed:function(t){return!i(t)||!(!u||"ArrayBuffer"!==a(t))||!!s&&s(t)}})},76882:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0},{is:r(5700)})},26634:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(18450);n({target:"Object",stat:!0,forced:r(40033)((function(){i(1)}))},{keys:function(t){return i(o(t))}})},53118:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(46771),u=r(767),s=r(36917),c=r(27193).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupGetter__:function(t){var e,r=a(this),n=u(t);do{if(e=c(r,n))return e.get}while(r=s(r))}})},42514:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(46771),u=r(767),s=r(36917),c=r(27193).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupSetter__:function(t){var e,r=a(this),n=u(t);do{if(e=c(r,n))return e.set}while(r=s(r))}})},84353:(t,e,r)=>{"use strict";var n=r(63964),o=r(77568),i=r(81969).onFreeze,a=r(50730),u=r(40033),s=Object.preventExtensions;n({target:"Object",stat:!0,forced:u((function(){s(1)})),sham:!a},{preventExtensions:function(t){return s&&o(t)?s(i(t)):t}})},30694:(t,e,r)=>{"use strict";var n=r(58310),o=r(73936),i=r(77568),a=r(45015),u=r(46771),s=r(16952),c=Object.getPrototypeOf,f=Object.setPrototypeOf,l=Object.prototype,h="__proto__";if(n&&c&&f&&!(h in l))try{o(l,h,{configurable:!0,get:function(){return c(u(this))},set:function(t){var e=s(this);a(t)&&i(e)&&f(e,t)}})}catch(t){}},62987:(t,e,r)=>{"use strict";var n=r(63964),o=r(77568),i=r(81969).onFreeze,a=r(50730),u=r(40033),s=Object.seal;n({target:"Object",stat:!0,forced:u((function(){s(1)})),sham:!a},{seal:function(t){return s&&o(t)?s(i(t)):t}})},48993:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0},{setPrototypeOf:r(76649)})},52917:(t,e,r)=>{"use strict";var n=r(2650),o=r(55938),i=r(2509);n||o(Object.prototype,"toString",i,{unsafe:!0})},4972:(t,e,r)=>{"use strict";var n=r(63964),o=r(70915).values;n({target:"Object",stat:!0},{values:function(t){return o(t)}})},28913:(t,e,r)=>{"use strict";var n=r(63964),o=r(28506);n({global:!0,forced:parseFloat!==o},{parseFloat:o})},36382:(t,e,r)=>{"use strict";var n=r(63964),o=r(13693);n({global:!0,forced:parseInt!==o},{parseInt:o})},93361:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(81837),u=r(10729),s=r(49450);n({target:"Promise",stat:!0,forced:r(48199)},{allSettled:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=u((function(){var r=i(e.resolve),a=[],u=0,c=1;s(t,(function(t){var i=u++,s=!1;c++,o(r,e,t).then((function(t){s||(s=!0,a[i]={status:"fulfilled",value:t},--c||n(a))}),(function(t){s||(s=!0,a[i]={status:"rejected",reason:t},--c||n(a))}))})),--c||n(a)}));return f.error&&c(f.value),r.promise}})},48865:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(81837),u=r(10729),s=r(49450);n({target:"Promise",stat:!0,forced:r(48199)},{all:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=u((function(){var r=i(e.resolve),a=[],u=0,f=1;s(t,(function(t){var i=u++,s=!1;f++,o(r,e,t).then((function(t){s||(s=!0,a[i]=t,--f||n(a))}),c)})),--f||n(a)}));return f.error&&c(f.value),r.promise}})},14128:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(4009),u=r(81837),s=r(10729),c=r(49450),f=r(48199),l="No one promise resolved";n({target:"Promise",stat:!0,forced:f},{any:function(t){var e=this,r=a("AggregateError"),n=u.f(e),f=n.resolve,h=n.reject,p=s((function(){var n=i(e.resolve),a=[],u=0,s=1,p=!1;c(t,(function(t){var i=u++,c=!1;s++,o(n,e,t).then((function(t){c||p||(p=!0,f(t))}),(function(t){c||p||(c=!0,a[i]=t,--s||h(new r(a,l)))}))})),--s||h(new r(a,l))}));return p.error&&h(p.value),n.promise}})},70641:(t,e,r)=>{"use strict";var n=r(63964),o=r(4493),i=r(74854).CONSTRUCTOR,a=r(67512),u=r(4009),s=r(55747),c=r(55938),f=a&&a.prototype;if(n({target:"Promise",proto:!0,forced:i,real:!0},{catch:function(t){return this.then(void 0,t)}}),!o&&s(a)){var l=u("Promise").prototype.catch;f.catch!==l&&c(f,"catch",l,{unsafe:!0})}},75946:(t,e,r)=>{"use strict";var n,o,i,a=r(63964),u=r(4493),s=r(81663),c=r(16210),f=r(91495),l=r(55938),h=r(76649),p=r(84925),y=r(58491),d=r(10320),v=r(55747),g=r(77568),b=r(60077),m=r(28987),w=r(60375).set,x=r(37713),k=r(72259),S=r(10729),_=r(9547),O=r(5419),E=r(67512),A=r(74854),P=r(81837),j="Promise",T=A.CONSTRUCTOR,M=A.REJECTION_EVENT,R=A.SUBCLASSING,I=O.getterFor(j),C=O.set,L=E&&E.prototype,D=E,B=L,N=c.TypeError,F=c.document,z=c.process,U=P.f,Y=U,G=!!(F&&F.createEvent&&c.dispatchEvent),H="unhandledrejection",W=function(t){var e;return!(!g(t)||!v(e=t.then))&&e},X=function(t,e){var r,n,o,i=e.value,a=1===e.state,u=a?t.ok:t.fail,s=t.resolve,c=t.reject,l=t.domain;try{u?(a||(2===e.rejection&&J(e),e.rejection=1),!0===u?r=i:(l&&l.enter(),r=u(i),l&&(l.exit(),o=!0)),r===t.promise?c(new N("Promise-chain cycle")):(n=W(r))?f(n,r,s,c):s(r)):c(i)}catch(t){l&&!o&&l.exit(),c(t)}},q=function(t,e){t.notified||(t.notified=!0,x((function(){for(var r,n=t.reactions;r=n.get();)X(r,t);t.notified=!1,e&&!t.rejection&&Q(t)})))},V=function(t,e,r){var n,o;G?((n=F.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),c.dispatchEvent(n)):n={promise:e,reason:r},!M&&(o=c["on"+t])?o(n):t===H&&k("Unhandled promise rejection",r)},Q=function(t){f(w,c,(function(){var e,r=t.facade,n=t.value;if(K(t)&&(e=S((function(){s?z.emit("unhandledRejection",n,r):V(H,r,n)})),t.rejection=s||K(t)?2:1,e.error))throw e.value}))},K=function(t){return 1!==t.rejection&&!t.parent},J=function(t){f(w,c,(function(){var e=t.facade;s?z.emit("rejectionHandled",e):V("rejectionhandled",e,t.value)}))},Z=function(t,e,r){return function(n){t(e,n,r)}},$=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,q(t,!0))},tt=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new N("Promise can't be resolved itself");var n=W(e);n?x((function(){var r={done:!1};try{f(n,e,Z(tt,r,t),Z($,r,t))}catch(e){$(r,e,t)}})):(t.value=e,t.state=1,q(t,!1))}catch(e){$({done:!1},e,t)}}};if(T&&(B=(D=function(t){b(this,B),d(t),f(n,this);var e=I(this);try{t(Z(tt,e),Z($,e))}catch(t){$(e,t)}}).prototype,(n=function(t){C(this,{type:j,done:!1,notified:!1,parent:!1,reactions:new _,rejection:!1,state:0,value:null})}).prototype=l(B,"then",(function(t,e){var r=I(this),n=U(m(this,D));return r.parent=!0,n.ok=!v(t)||t,n.fail=v(e)&&e,n.domain=s?z.domain:void 0,0===r.state?r.reactions.add(n):x((function(){X(n,r)})),n.promise})),o=function(){var t=new n,e=I(t);this.promise=t,this.resolve=Z(tt,e),this.reject=Z($,e)},P.f=U=function(t){return t===D||void 0===t?new o(t):Y(t)},!u&&v(E)&&L!==Object.prototype)){i=L.then,R||l(L,"then",(function(t,e){var r=this;return new D((function(t,e){f(i,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete L.constructor}catch(t){}h&&h(L,B)}a({global:!0,constructor:!0,wrap:!0,forced:T},{Promise:D}),p(D,j,!1,!0),y(j)},69861:(t,e,r)=>{"use strict";var n=r(63964),o=r(4493),i=r(67512),a=r(40033),u=r(4009),s=r(55747),c=r(28987),f=r(66628),l=r(55938),h=i&&i.prototype;if(n({target:"Promise",proto:!0,real:!0,forced:!!i&&a((function(){h.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=c(this,u("Promise")),r=s(t);return this.then(r?function(r){return f(e,t()).then((function(){return r}))}:t,r?function(r){return f(e,t()).then((function(){throw r}))}:t)}}),!o&&s(i)){var p=u("Promise").prototype.finally;h.finally!==p&&l(h,"finally",p,{unsafe:!0})}},53092:(t,e,r)=>{"use strict";r(75946),r(48865),r(70641),r(16937),r(41719),r(81702)},16937:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(81837),u=r(10729),s=r(49450);n({target:"Promise",stat:!0,forced:r(48199)},{race:function(t){var e=this,r=a.f(e),n=r.reject,c=u((function(){var a=i(e.resolve);s(t,(function(t){o(a,e,t).then(r.resolve,n)}))}));return c.error&&n(c.value),r.promise}})},41719:(t,e,r)=>{"use strict";var n=r(63964),o=r(81837);n({target:"Promise",stat:!0,forced:r(74854).CONSTRUCTOR},{reject:function(t){var e=o.f(this);return(0,e.reject)(t),e.promise}})},81702:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(4493),a=r(67512),u=r(74854).CONSTRUCTOR,s=r(66628),c=o("Promise"),f=i&&!u;n({target:"Promise",stat:!0,forced:i||u},{resolve:function(t){return s(f&&this===c?a:this,t)}})},70570:(t,e,r)=>{"use strict";var n=r(63964),o=r(81837);n({target:"Promise",stat:!0},{withResolvers:function(){var t=o.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}})},29674:(t,e,r)=>{"use strict";var n=r(63964),o=r(61267),i=r(10320),a=r(30365);n({target:"Reflect",stat:!0,forced:!r(40033)((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return o(i(t),e,a(r))}})},81543:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(61267),a=r(66284),u=r(32606),s=r(30365),c=r(77568),f=r(80674),l=r(40033),h=o("Reflect","construct"),p=Object.prototype,y=[].push,d=l((function(){function t(){}return!(h((function(){}),[],t)instanceof t)})),v=!l((function(){h((function(){}))})),g=d||v;n({target:"Reflect",stat:!0,forced:g,sham:g},{construct:function(t,e){u(t),s(e);var r=arguments.length<3?t:u(arguments[2]);if(v&&!d)return h(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return i(y,n,e),new(i(a,t,n))}var o=r.prototype,l=f(c(o)?o:p),g=i(t,l,e);return c(g)?g:l}})},9373:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(30365),a=r(767),u=r(74595);n({target:"Reflect",stat:!0,forced:r(40033)((function(){Reflect.defineProperty(u.f({},1,{value:1}),1,{value:2})})),sham:!o},{defineProperty:function(t,e,r){i(t);var n=a(e);i(r);try{return u.f(t,n,r),!0}catch(t){return!1}}})},45093:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(27193).f;n({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=i(o(t),e);return!(r&&!r.configurable)&&delete t[e]}})},5815:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(30365),a=r(27193);n({target:"Reflect",stat:!0,sham:!o},{getOwnPropertyDescriptor:function(t,e){return a.f(i(t),e)}})},88527:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(36917);n({target:"Reflect",stat:!0,sham:!r(9225)},{getPrototypeOf:function(t){return i(o(t))}})},63074:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(77568),a=r(30365),u=r(98373),s=r(27193),c=r(36917);n({target:"Reflect",stat:!0},{get:function t(e,r){var n,f,l=arguments.length<3?e:arguments[2];return a(e)===l?e[r]:(n=s.f(e,r))?u(n)?n.value:void 0===n.get?void 0:o(n.get,l):i(f=c(e))?t(f,r,l):void 0}})},66390:(t,e,r)=>{"use strict";r(63964)({target:"Reflect",stat:!0},{has:function(t,e){return e in t}})},7784:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(81834);n({target:"Reflect",stat:!0},{isExtensible:function(t){return o(t),i(t)}})},50551:(t,e,r)=>{"use strict";r(63964)({target:"Reflect",stat:!0},{ownKeys:r(97921)})},76483:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(30365);n({target:"Reflect",stat:!0,sham:!r(50730)},{preventExtensions:function(t){i(t);try{var e=o("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}})},63915:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(35908),a=r(76649);a&&n({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){o(t),i(e);try{return a(t,e),!0}catch(t){return!1}}})},92046:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(30365),a=r(77568),u=r(98373),s=r(40033),c=r(74595),f=r(27193),l=r(36917),h=r(87458);n({target:"Reflect",stat:!0,forced:s((function(){var t=function(){},e=c.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}))},{set:function t(e,r,n){var s,p,y,d=arguments.length<4?e:arguments[3],v=f.f(i(e),r);if(!v){if(a(p=l(e)))return t(p,r,n,d);v=h(0)}if(u(v)){if(!1===v.writable||!a(d))return!1;if(s=f.f(d,r)){if(s.get||s.set||!1===s.writable)return!1;s.value=n,c.f(d,r,s)}else c.f(d,r,h(0,n))}else{if(void 0===(y=v.set))return!1;o(y,d,n)}return!0}})},38054:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(84925);n({global:!0},{Reflect:{}}),i(o.Reflect,"Reflect",!0)},51454:(t,e,r)=>{"use strict";var n=r(58310),o=r(16210),i=r(67250),a=r(41314),u=r(5781),s=r(37909),c=r(80674),f=r(37310).f,l=r(21287),h=r(72586),p=r(12605),y=r(73392),d=r(62115),v=r(34550),g=r(55938),b=r(40033),m=r(45299),w=r(5419).enforce,x=r(58491),k=r(24697),S=r(39173),_=r(35688),O=k("match"),E=o.RegExp,A=E.prototype,P=o.SyntaxError,j=i(A.exec),T=i("".charAt),M=i("".replace),R=i("".indexOf),I=i("".slice),C=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,L=/a/g,D=/a/g,B=new E(L)!==L,N=d.MISSED_STICKY,F=d.UNSUPPORTED_Y;if(a("RegExp",n&&(!B||N||S||_||b((function(){return D[O]=!1,E(L)!==L||E(D)===D||"/a/i"!==String(E(L,"i"))}))))){for(var z=function(t,e){var r,n,o,i,a,f,d=l(A,this),v=h(t),g=void 0===e,b=[],x=t;if(!d&&v&&g&&t.constructor===z)return t;if((v||l(A,t))&&(t=t.source,g&&(e=y(x))),t=void 0===t?"":p(t),e=void 0===e?"":p(e),x=t,S&&"dotAll"in L&&(n=!!e&&R(e,"s")>-1)&&(e=M(e,/s/g,"")),r=e,N&&"sticky"in L&&(o=!!e&&R(e,"y")>-1)&&F&&(e=M(e,/y/g,"")),_&&(i=function(t){for(var e,r=t.length,n=0,o="",i=[],a=c(null),u=!1,s=!1,f=0,l="";n<=r;n++){if("\\"===(e=T(t,n)))e+=T(t,++n);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:if(o+=e,"?:"===I(t,n+1,n+3))continue;j(C,I(t,n+1))&&(n+=2,s=!0),f++;continue;case">"===e&&s:if(""===l||m(a,l))throw new P("Invalid capture group name");a[l]=!0,i[i.length]=[l,f],s=!1,l="";continue}s?l+=e:o+=e}return[o,i]}(t),t=i[0],b=i[1]),a=u(E(t,e),d?this:A,z),(n||o||b.length)&&(f=w(a),n&&(f.dotAll=!0,f.raw=z(function(t){for(var e,r=t.length,n=0,o="",i=!1;n<=r;n++)"\\"!==(e=T(t,n))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+T(t,++n);return o}(t),r)),o&&(f.sticky=!0),b.length&&(f.groups=b)),t!==x)try{s(a,"source",""===x?"(?:)":x)}catch(t){}return a},U=f(E),Y=0;U.length>Y;)v(z,E,U[Y++]);A.constructor=z,z.prototype=A,g(o,"RegExp",z,{constructor:!0})}x("RegExp")},67075:(t,e,r)=>{"use strict";var n=r(58310),o=r(39173),i=r(7462),a=r(73936),u=r(5419).get,s=RegExp.prototype,c=TypeError;n&&o&&a(s,"dotAll",{configurable:!0,get:function(){if(this!==s){if("RegExp"===i(this))return!!u(this).dotAll;throw new c("Incompatible receiver, RegExp required")}}})},79669:(t,e,r)=>{"use strict";var n=r(63964),o=r(14489);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},23057:(t,e,r)=>{"use strict";var n=r(16210),o=r(58310),i=r(73936),a=r(70901),u=r(40033),s=n.RegExp,c=s.prototype;o&&u((function(){var t=!0;try{s(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",o=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},i={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var a in t&&(i.hasIndices="d"),i)o(a,i[a]);return Object.getOwnPropertyDescriptor(c,"flags").get.call(e)!==n||r!==n}))&&i(c,"flags",{configurable:!0,get:a})},24199:(t,e,r)=>{"use strict";var n=r(58310),o=r(62115).MISSED_STICKY,i=r(7462),a=r(73936),u=r(5419).get,s=RegExp.prototype,c=TypeError;n&&o&&a(s,"sticky",{configurable:!0,get:function(){if(this!==s){if("RegExp"===i(this))return!!u(this).sticky;throw new c("Incompatible receiver, RegExp required")}}})},10280:(t,e,r)=>{"use strict";r(79669);var n,o,i=r(63964),a=r(91495),u=r(55747),s=r(30365),c=r(12605),f=(n=!1,(o=/[ac]/).exec=function(){return n=!0,/./.exec.apply(this,arguments)},!0===o.test("abc")&&n),l=/./.test;i({target:"RegExp",proto:!0,forced:!f},{test:function(t){var e=s(this),r=c(t),n=e.exec;if(!u(n))return a(l,e,r);var o=a(n,e,r);return null!==o&&(s(o),!0)}})},57983:(t,e,r)=>{"use strict";var n=r(70520).PROPER,o=r(55938),i=r(30365),a=r(12605),u=r(40033),s=r(73392),c="toString",f=RegExp.prototype,l=f[c],h=u((function(){return"/a/b"!==l.call({source:"a",flags:"b"})})),p=n&&l.name!==c;(h||p)&&o(f,c,(function(){var t=i(this);return"/"+a(t.source)+"/"+a(s(t))}),{unsafe:!0})},1963:(t,e,r)=>{"use strict";r(45150)("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(41028))},78592:(t,e,r)=>{"use strict";var n=r(63964),o=r(23710);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("difference")},{difference:o})},50814:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(61752);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("intersection")||o((function(){return"3,2"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))}))},{intersection:i})},32407:(t,e,r)=>{"use strict";var n=r(63964),o=r(10979);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("isDisjointFrom")},{isDisjointFrom:o})},52462:(t,e,r)=>{"use strict";var n=r(63964),o=r(66040);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("isSubsetOf")},{isSubsetOf:o})},66133:(t,e,r)=>{"use strict";var n=r(63964),o=r(289);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("isSupersetOf")},{isSupersetOf:o})},17953:(t,e,r)=>{"use strict";r(1963)},55146:(t,e,r)=>{"use strict";var n=r(63964),o=r(24052);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("symmetricDifference")},{symmetricDifference:o})},26580:(t,e,r)=>{"use strict";var n=r(63964),o=r(18630);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("union")},{union:o})},95309:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("anchor")},{anchor:function(t){return o(this,"a","name",t)}})},89939:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(16952),a=r(61365),u=r(12605),s=r(40033),c=o("".charAt);n({target:"String",proto:!0,forced:s((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=u(i(this)),r=e.length,n=a(t),o=n>=0?n:r+n;return o<0||o>=r?void 0:c(e,o)}})},82256:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("big")},{big:function(){return o(this,"big","","")}})},49484:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("blink")},{blink:function(){return o(this,"blink","","")}})},38931:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("bold")},{bold:function(){return o(this,"b","","")}})},30442:(t,e,r)=>{"use strict";var n=r(63964),o=r(50233).codeAt;n({target:"String",proto:!0},{codePointAt:function(t){return o(this,t)}})},6403:(t,e,r)=>{"use strict";var n,o=r(63964),i=r(71138),a=r(27193).f,u=r(10188),s=r(12605),c=r(86213),f=r(16952),l=r(45490),h=r(4493),p=i("".slice),y=Math.min,d=l("endsWith");o({target:"String",proto:!0,forced:!(!h&&!d&&(n=a(String.prototype,"endsWith"),n&&!n.writable)||d)},{endsWith:function(t){var e=s(f(this));c(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,o=void 0===r?n:y(u(r),n),i=s(t);return p(e,o-i.length,o)===i}})},39308:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("fixed")},{fixed:function(){return o(this,"tt","","")}})},91550:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("fontcolor")},{fontcolor:function(t){return o(this,"font","color",t)}})},75008:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("fontsize")},{fontsize:function(t){return o(this,"font","size",t)}})},9867:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(13912),a=RangeError,u=String.fromCharCode,s=String.fromCodePoint,c=o([].join);n({target:"String",stat:!0,arity:1,forced:!!s&&1!==s.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,o=0;n>o;){if(e=+arguments[o++],i(e,1114111)!==e)throw new a(e+" is not a valid code point");r[o]=e<65536?u(e):u(55296+((e-=65536)>>10),e%1024+56320)}return c(r,"")}})},43673:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(86213),a=r(16952),u=r(12605),s=r(45490),c=o("".indexOf);n({target:"String",proto:!0,forced:!s("includes")},{includes:function(t){return!!~c(u(a(this)),u(i(t)),arguments.length>1?arguments[1]:void 0)}})},30569:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(16952),a=r(12605),u=o("".charCodeAt);n({target:"String",proto:!0},{isWellFormed:function(){for(var t=a(i(this)),e=t.length,r=0;r<e;r++){var n=u(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&u(t,r))))return!1}return!0}})},56027:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("italics")},{italics:function(){return o(this,"i","","")}})},12354:(t,e,r)=>{"use strict";var n=r(50233).charAt,o=r(12605),i=r(5419),a=r(65574),u=r(5959),s="String Iterator",c=i.set,f=i.getterFor(s);a(String,"String",(function(t){c(this,{type:s,string:o(t),index:0})}),(function(){var t,e=f(this),r=e.string,o=e.index;return o>=r.length?u(void 0,!0):(t=n(r,o),e.index+=t.length,u(t,!1))}))},50340:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("link")},{link:function(t){return o(this,"a","href",t)}})},14089:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(71138),a=r(5656),u=r(5959),s=r(16952),c=r(10188),f=r(12605),l=r(30365),h=r(42871),p=r(7462),y=r(72586),d=r(73392),v=r(78060),g=r(55938),b=r(40033),m=r(24697),w=r(28987),x=r(35483),k=r(28340),S=r(5419),_=r(4493),O=m("matchAll"),E="RegExp String",A=E+" Iterator",P=S.set,j=S.getterFor(A),T=RegExp.prototype,M=TypeError,R=i("".indexOf),I=i("".matchAll),C=!!I&&!b((function(){I("a",/./)})),L=a((function(t,e,r,n){P(this,{type:A,regexp:t,string:e,global:r,unicode:n,done:!1})}),E,(function(){var t=j(this);if(t.done)return u(void 0,!0);var e=t.regexp,r=t.string,n=k(e,r);return null===n?(t.done=!0,u(void 0,!0)):t.global?(""===f(n[0])&&(e.lastIndex=x(r,c(e.lastIndex),t.unicode)),u(n,!1)):(t.done=!0,u(n,!1))})),D=function(t){var e,r,n,o=l(this),i=f(t),a=w(o,RegExp),u=f(d(o));return e=new a(a===RegExp?o.source:o,u),r=!!~R(u,"g"),n=!!~R(u,"u"),e.lastIndex=c(o.lastIndex),new L(e,i,r,n)};n({target:"String",proto:!0,forced:C},{matchAll:function(t){var e,r,n,i,a=s(this);if(h(t)){if(C)return I(a,t)}else{if(y(t)&&(e=f(s(d(t))),!~R(e,"g")))throw new M("`.matchAll` does not allow non-global regexes");if(C)return I(a,t);if(void 0===(n=v(t,O))&&_&&"RegExp"===p(t)&&(n=D),n)return o(n,t,a)}return r=f(a),i=new RegExp(t,"g"),_?o(D,i,r):i[O](r)}}),_||O in T||g(T,O,D)},22515:(t,e,r)=>{"use strict";var n=r(91495),o=r(79942),i=r(30365),a=r(42871),u=r(10188),s=r(12605),c=r(16952),f=r(78060),l=r(35483),h=r(28340);o("match",(function(t,e,r){return[function(e){var r=c(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](s(r))},function(t){var n=i(this),o=s(t),a=r(e,n,o);if(a.done)return a.value;if(!n.global)return h(n,o);var c=n.unicode;n.lastIndex=0;for(var f,p=[],y=0;null!==(f=h(n,o));){var d=s(f[0]);p[y]=d,""===d&&(n.lastIndex=l(o,u(n.lastIndex),c)),y++}return 0===y?null:p}]}))},5143:(t,e,r)=>{"use strict";var n=r(63964),o=r(24051).end;n({target:"String",proto:!0,forced:r(34125)},{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},93514:(t,e,r)=>{"use strict";var n=r(63964),o=r(24051).start;n({target:"String",proto:!0,forced:r(34125)},{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},5416:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(57591),a=r(46771),u=r(12605),s=r(24760),c=o([].push),f=o([].join);n({target:"String",stat:!0},{raw:function(t){var e=i(a(t).raw),r=s(e);if(!r)return"";for(var n=arguments.length,o=[],l=0;;){if(c(o,u(e[l++])),l===r)return f(o,"");l<n&&c(o,u(arguments[l]))}}})},11619:(t,e,r)=>{"use strict";r(63964)({target:"String",proto:!0},{repeat:r(62443)})},17024:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(67250),a=r(16952),u=r(55747),s=r(42871),c=r(72586),f=r(12605),l=r(78060),h=r(73392),p=r(48300),y=r(24697),d=r(4493),v=y("replace"),g=TypeError,b=i("".indexOf),m=i("".replace),w=i("".slice),x=Math.max;n({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,y,k,S,_,O,E,A,P=a(this),j=0,T="";if(!s(t)){if((r=c(t))&&(n=f(a(h(t))),!~b(n,"g")))throw new g("`.replaceAll` does not allow non-global regexes");if(i=l(t,v))return o(i,t,P,e);if(d&&r)return m(f(P),t,e)}for(y=f(P),k=f(t),(S=u(e))||(e=f(e)),_=k.length,O=x(1,_),E=b(y,k);-1!==E;)A=S?f(e(k,E,y)):p(k,y,E,[],void 0,e),T+=w(y,j,E)+A,j=E+_,E=E+O>y.length?-1:b(y,k,E+O);return j<y.length&&(T+=w(y,j)),T}})},44590:(t,e,r)=>{"use strict";var n=r(61267),o=r(91495),i=r(67250),a=r(79942),u=r(40033),s=r(30365),c=r(55747),f=r(42871),l=r(61365),h=r(10188),p=r(12605),y=r(16952),d=r(35483),v=r(78060),g=r(48300),b=r(28340),m=r(24697)("replace"),w=Math.max,x=Math.min,k=i([].concat),S=i([].push),_=i("".indexOf),O=i("".slice),E="$0"==="a".replace(/./,"$0"),A=!!/./[m]&&""===/./[m]("a","$0");a("replace",(function(t,e,r){var i=A?"$":"$0";return[function(t,r){var n=y(this),i=f(t)?void 0:v(t,m);return i?o(i,t,n,r):o(e,p(n),t,r)},function(t,o){var a=s(this),u=p(t);if("string"==typeof o&&-1===_(o,i)&&-1===_(o,"$<")){var f=r(e,a,u,o);if(f.done)return f.value}var y=c(o);y||(o=p(o));var v,m=a.global;m&&(v=a.unicode,a.lastIndex=0);for(var E,A=[];null!==(E=b(a,u))&&(S(A,E),m);)""===p(E[0])&&(a.lastIndex=d(u,h(a.lastIndex),v));for(var P,j="",T=0,M=0;M<A.length;M++){for(var R,I=p((E=A[M])[0]),C=w(x(l(E.index),u.length),0),L=[],D=1;D<E.length;D++)S(L,void 0===(P=E[D])?P:String(P));var B=E.groups;if(y){var N=k([I],L,C,u);void 0!==B&&S(N,B),R=p(n(o,void 0,N))}else R=g(I,u,C,L,B,o);C>=T&&(j+=O(u,T,C)+R,T=C+I.length)}return j+O(u,T)}]}),!!u((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!E||A)},63272:(t,e,r)=>{"use strict";var n=r(91495),o=r(79942),i=r(30365),a=r(42871),u=r(16952),s=r(5700),c=r(12605),f=r(78060),l=r(28340);o("search",(function(t,e,r){return[function(e){var r=u(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](c(r))},function(t){var n=i(this),o=c(t),a=r(e,n,o);if(a.done)return a.value;var u=n.lastIndex;s(u,0)||(n.lastIndex=0);var f=l(n,o);return s(n.lastIndex,u)||(n.lastIndex=u),null===f?-1:f.index}]}))},34325:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("small")},{small:function(){return o(this,"small","","")}})},39930:(t,e,r)=>{"use strict";var n=r(91495),o=r(67250),i=r(79942),a=r(30365),u=r(42871),s=r(16952),c=r(28987),f=r(35483),l=r(10188),h=r(12605),p=r(78060),y=r(28340),d=r(62115),v=r(40033),g=d.UNSUPPORTED_Y,b=Math.min,m=o([].push),w=o("".slice),x=!v((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),k="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;i("split",(function(t,e,r){var o="0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:n(e,this,t,r)}:e;return[function(e,r){var i=s(this),a=u(e)?void 0:p(e,t);return a?n(a,e,i,r):n(o,h(i),e,r)},function(t,n){var i=a(this),u=h(t);if(!k){var s=r(o,i,u,n,o!==e);if(s.done)return s.value}var p=c(i,RegExp),d=i.unicode,v=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(g?"g":"y"),x=new p(g?"^(?:"+i.source+")":i,v),S=void 0===n?4294967295:n>>>0;if(0===S)return[];if(0===u.length)return null===y(x,u)?[u]:[];for(var _=0,O=0,E=[];O<u.length;){x.lastIndex=g?0:O;var A,P=y(x,g?w(u,O):u);if(null===P||(A=b(l(x.lastIndex+(g?O:0)),u.length))===_)O=f(u,O,d);else{if(m(E,w(u,_,O)),E.length===S)return E;for(var j=1;j<=P.length-1;j++)if(m(E,P[j]),E.length===S)return E;O=_=A}}return m(E,w(u,_)),E}]}),k||!x,g)},4038:(t,e,r)=>{"use strict";var n,o=r(63964),i=r(71138),a=r(27193).f,u=r(10188),s=r(12605),c=r(86213),f=r(16952),l=r(45490),h=r(4493),p=i("".slice),y=Math.min,d=l("startsWith");o({target:"String",proto:!0,forced:!(!h&&!d&&(n=a(String.prototype,"startsWith"),n&&!n.writable)||d)},{startsWith:function(t){var e=s(f(this));c(t);var r=u(y(arguments.length>1?arguments[1]:void 0,e.length)),n=s(t);return p(e,r,r+n.length)===n}})},74498:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("strike")},{strike:function(){return o(this,"strike","","")}})},15812:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("sub")},{sub:function(){return o(this,"sub","","")}})},95689:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(16952),a=r(61365),u=r(12605),s=o("".slice),c=Math.max,f=Math.min;n({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,o=u(i(this)),l=o.length,h=a(t);return h===1/0&&(h=0),h<0&&(h=c(l+h,0)),(r=void 0===e?l:a(e))<=0||r===1/0||h>=(n=f(h+r,l))?"":s(o,h,n)}})},57726:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("sup")},{sup:function(){return o(this,"sup","","")}})},3388:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(67250),a=r(16952),u=r(12605),s=r(40033),c=Array,f=i("".charAt),l=i("".charCodeAt),h=i([].join),p="".toWellFormed,y=p&&s((function(){return"1"!==o(p,1)}));n({target:"String",proto:!0,forced:y},{toWellFormed:function(){var t=u(a(this));if(y)return o(p,t);for(var e=t.length,r=c(e),n=0;n<e;n++){var i=l(t,n);55296!=(63488&i)?r[n]=f(t,n):i>=56320||n+1>=e||56320!=(64512&l(t,n+1))?r[n]="�":(r[n]=f(t,n),r[++n]=f(t,n))}return h(r,"")}})},70604:(t,e,r)=>{"use strict";r(99159);var n=r(63964),o=r(43476);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==o},{trimEnd:o})},85404:(t,e,r)=>{"use strict";var n=r(63964),o=r(43885);n({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==o},{trimLeft:o})},99159:(t,e,r)=>{"use strict";var n=r(63964),o=r(43476);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==o},{trimRight:o})},34965:(t,e,r)=>{"use strict";r(85404);var n=r(63964),o=r(43885);n({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==o},{trimStart:o})},8448:(t,e,r)=>{"use strict";var n=r(63964),o=r(92648).trim;n({target:"String",proto:!0,forced:r(90012)("trim")},{trim:function(){return o(this)}})},79250:(t,e,r)=>{"use strict";r(85889)("asyncIterator")},49899:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(91495),a=r(67250),u=r(4493),s=r(58310),c=r(52357),f=r(40033),l=r(45299),h=r(21287),p=r(30365),y=r(57591),d=r(767),v=r(12605),g=r(87458),b=r(80674),m=r(18450),w=r(37310),x=r(81644),k=r(89235),S=r(27193),_=r(74595),O=r(24239),E=r(12867),A=r(55938),P=r(73936),j=r(16639),T=r(19417),M=r(79195),R=r(16738),I=r(24697),C=r(55557),L=r(85889),D=r(52360),B=r(84925),N=r(5419),F=r(22603).forEach,z=T("hidden"),U="Symbol",Y="prototype",G=N.set,H=N.getterFor(U),W=Object[Y],X=o.Symbol,q=X&&X[Y],V=o.RangeError,Q=o.TypeError,K=o.QObject,J=S.f,Z=_.f,$=x.f,tt=E.f,et=a([].push),rt=j("symbols"),nt=j("op-symbols"),ot=j("wks"),it=!K||!K[Y]||!K[Y].findChild,at=function(t,e,r){var n=J(W,e);n&&delete W[e],Z(t,e,r),n&&t!==W&&Z(W,e,n)},ut=s&&f((function(){return 7!==b(Z({},"a",{get:function(){return Z(this,"a",{value:7}).a}})).a}))?at:Z,st=function(t,e){var r=rt[t]=b(q);return G(r,{type:U,tag:t,description:e}),s||(r.description=e),r},ct=function(t,e,r){t===W&&ct(nt,e,r),p(t);var n=d(e);return p(r),l(rt,n)?(r.enumerable?(l(t,z)&&t[z][n]&&(t[z][n]=!1),r=b(r,{enumerable:g(0,!1)})):(l(t,z)||Z(t,z,g(1,b(null))),t[z][n]=!0),ut(t,n,r)):Z(t,n,r)},ft=function(t,e){p(t);var r=y(e),n=m(r).concat(yt(r));return F(n,(function(e){s&&!i(lt,r,e)||ct(t,e,r[e])})),t},lt=function(t){var e=d(t),r=i(tt,this,e);return!(this===W&&l(rt,e)&&!l(nt,e))&&(!(r||!l(this,e)||!l(rt,e)||l(this,z)&&this[z][e])||r)},ht=function(t,e){var r=y(t),n=d(e);if(r!==W||!l(rt,n)||l(nt,n)){var o=J(r,n);return!o||!l(rt,n)||l(r,z)&&r[z][n]||(o.enumerable=!0),o}},pt=function(t){var e=$(y(t)),r=[];return F(e,(function(t){l(rt,t)||l(M,t)||et(r,t)})),r},yt=function(t){var e=t===W,r=$(e?nt:y(t)),n=[];return F(r,(function(t){!l(rt,t)||e&&!l(W,t)||et(n,rt[t])})),n};c||(A(q=(X=function(){if(h(q,this))throw new Q("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,e=R(t),r=function(t){var n=void 0===this?o:this;n===W&&i(r,nt,t),l(n,z)&&l(n[z],e)&&(n[z][e]=!1);var a=g(1,t);try{ut(n,e,a)}catch(t){if(!(t instanceof V))throw t;at(n,e,a)}};return s&&it&&ut(W,e,{configurable:!0,set:r}),st(e,t)})[Y],"toString",(function(){return H(this).tag})),A(X,"withoutSetter",(function(t){return st(R(t),t)})),E.f=lt,_.f=ct,O.f=ft,S.f=ht,w.f=x.f=pt,k.f=yt,C.f=function(t){return st(I(t),t)},s&&(P(q,"description",{configurable:!0,get:function(){return H(this).description}}),u||A(W,"propertyIsEnumerable",lt,{unsafe:!0}))),n({global:!0,constructor:!0,wrap:!0,forced:!c,sham:!c},{Symbol:X}),F(m(ot),(function(t){L(t)})),n({target:U,stat:!0,forced:!c},{useSetter:function(){it=!0},useSimple:function(){it=!1}}),n({target:"Object",stat:!0,forced:!c,sham:!s},{create:function(t,e){return void 0===e?b(t):ft(b(t),e)},defineProperty:ct,defineProperties:ft,getOwnPropertyDescriptor:ht}),n({target:"Object",stat:!0,forced:!c},{getOwnPropertyNames:pt}),D(),B(X,U),M[z]=!0},10933:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(16210),a=r(67250),u=r(45299),s=r(55747),c=r(21287),f=r(12605),l=r(73936),h=r(5774),p=i.Symbol,y=p&&p.prototype;if(o&&s(p)&&(!("description"in y)||void 0!==p().description)){var d={},v=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:f(arguments[0]),e=c(y,this)?new p(t):void 0===t?p():p(t);return""===t&&(d[e]=!0),e};h(v,p),v.prototype=y,y.constructor=v;var g="Symbol(description detection)"===String(p("description detection")),b=a(y.valueOf),m=a(y.toString),w=/^Symbol\((.*)\)[^)]+$/,x=a("".replace),k=a("".slice);l(y,"description",{configurable:!0,get:function(){var t=b(this);if(u(d,t))return"";var e=m(t),r=g?k(e,7,-1):x(e,w,"$1");return""===r?void 0:r}}),n({global:!0,constructor:!0,forced:!0},{Symbol:v})}},30828:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(45299),a=r(12605),u=r(16639),s=r(66570),c=u("string-to-symbol-registry"),f=u("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!s},{for:function(t){var e=a(t);if(i(c,e))return c[e];var r=o("Symbol")(e);return c[e]=r,f[r]=e,r}})},53795:(t,e,r)=>{"use strict";r(85889)("hasInstance")},87806:(t,e,r)=>{"use strict";r(85889)("isConcatSpreadable")},64677:(t,e,r)=>{"use strict";r(85889)("iterator")},33313:(t,e,r)=>{"use strict";r(49899),r(30828),r(6862),r(53008),r(28603)},6862:(t,e,r)=>{"use strict";var n=r(63964),o=r(45299),i=r(71399),a=r(89393),u=r(16639),s=r(66570),c=u("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!s},{keyFor:function(t){if(!i(t))throw new TypeError(a(t)+" is not a symbol");if(o(c,t))return c[t]}})},14836:(t,e,r)=>{"use strict";r(85889)("matchAll")},48058:(t,e,r)=>{"use strict";r(85889)("match")},51583:(t,e,r)=>{"use strict";r(85889)("replace")},82403:(t,e,r)=>{"use strict";r(85889)("search")},34265:(t,e,r)=>{"use strict";r(85889)("species")},3295:(t,e,r)=>{"use strict";r(85889)("split")},1078:(t,e,r)=>{"use strict";var n=r(85889),o=r(52360);n("toPrimitive"),o()},63207:(t,e,r)=>{"use strict";var n=r(4009),o=r(85889),i=r(84925);o("toStringTag"),i(n("Symbol"),"Symbol")},80520:(t,e,r)=>{"use strict";r(85889)("unscopables")},79042:(t,e,r)=>{"use strict";var n=r(4246),o=r(24760),i=r(61365),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("at",(function(t){var e=a(this),r=o(e),n=i(t),u=n>=0?n:r+n;return u<0||u>=r?void 0:e[u]}))},99872:(t,e,r)=>{"use strict";var n=r(67250),o=r(4246),i=n(r(71447)),a=o.aTypedArray;(0,o.exportTypedArrayMethod)("copyWithin",(function(t,e){return i(a(this),t,e,arguments.length>2?arguments[2]:void 0)}))},73364:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).every,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("every",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},58166:(t,e,r)=>{"use strict";var n=r(4246),o=r(88471),i=r(61484),a=r(2281),u=r(91495),s=r(67250),c=r(40033),f=n.aTypedArray,l=n.exportTypedArrayMethod,h=s("".slice);l("fill",(function(t){var e=arguments.length;f(this);var r="Big"===h(a(this),0,3)?i(t):+t;return u(o,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),c((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t})))},23793:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).filter,i=r(45399),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("filter",(function(t){var e=o(a(this),t,arguments.length>1?arguments[1]:void 0);return i(this,e)}))},13917:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).findIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},78256:(t,e,r)=>{"use strict";var n=r(4246),o=r(77389).findLastIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLastIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},62557:(t,e,r)=>{"use strict";var n=r(4246),o=r(77389).findLast,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLast",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},43820:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).find,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("find",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},80756:(t,e,r)=>{"use strict";r(80185)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},70567:(t,e,r)=>{"use strict";r(80185)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},19852:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).forEach,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("forEach",(function(t){o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},40379:(t,e,r)=>{"use strict";var n=r(86563);(0,r(4246).exportTypedArrayStaticMethod)("from",r(3805),n)},92770:(t,e,r)=>{"use strict";var n=r(4246),o=r(14211).includes,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("includes",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},81069:(t,e,r)=>{"use strict";var n=r(4246),o=r(14211).indexOf,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("indexOf",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},60037:(t,e,r)=>{"use strict";r(80185)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},44195:(t,e,r)=>{"use strict";r(80185)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},66756:(t,e,r)=>{"use strict";r(80185)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},63689:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(67250),a=r(4246),u=r(34570),s=r(24697)("iterator"),c=n.Uint8Array,f=i(u.values),l=i(u.keys),h=i(u.entries),p=a.aTypedArray,y=a.exportTypedArrayMethod,d=c&&c.prototype,v=!o((function(){d[s].call([1])})),g=!!d&&d.values&&d[s]===d.values&&"values"===d.values.name,b=function(){return f(p(this))};y("entries",(function(){return h(p(this))}),v),y("keys",(function(){return l(p(this))}),v),y("values",b,v||!g,{name:"values"}),y(s,b,v||!g,{name:"values"})},5659:(t,e,r)=>{"use strict";var n=r(4246),o=r(67250),i=n.aTypedArray,a=n.exportTypedArrayMethod,u=o([].join);a("join",(function(t){return u(i(this),t)}))},25014:(t,e,r)=>{"use strict";var n=r(4246),o=r(61267),i=r(1325),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return o(i,a(this),e>1?[t,arguments[1]]:[t])}))},32189:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).map,i=r(31082),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("map",(function(t){return o(a(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(i(t))(e)}))}))},23030:(t,e,r)=>{"use strict";var n=r(4246),o=r(86563),i=n.aTypedArrayConstructor;(0,n.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(i(this))(e);e>t;)r[t]=arguments[t++];return r}),o)},49110:(t,e,r)=>{"use strict";var n=r(4246),o=r(56844).right,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},24309:(t,e,r)=>{"use strict";var n=r(4246),o=r(56844).left,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},56445:(t,e,r)=>{"use strict";var n=r(4246),o=n.aTypedArray,i=n.exportTypedArrayMethod,a=Math.floor;i("reverse",(function(){for(var t,e=this,r=o(e).length,n=a(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}))},30939:(t,e,r)=>{"use strict";var n=r(16210),o=r(91495),i=r(4246),a=r(24760),u=r(56043),s=r(46771),c=r(40033),f=n.RangeError,l=n.Int8Array,h=l&&l.prototype,p=h&&h.set,y=i.aTypedArray,d=i.exportTypedArrayMethod,v=!c((function(){var t=new Uint8ClampedArray(2);return o(p,t,{length:1,0:3},1),3!==t[1]})),g=v&&i.NATIVE_ARRAY_BUFFER_VIEWS&&c((function(){var t=new l(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));d("set",(function(t){y(this);var e=u(arguments.length>1?arguments[1]:void 0,1),r=s(t);if(v)return o(p,this,r,e);var n=this.length,i=a(r),c=0;if(i+e>n)throw new f("Wrong length");for(;c<i;)this[e+c]=r[c++]}),!v||g)},48321:(t,e,r)=>{"use strict";var n=r(4246),o=r(31082),i=r(40033),a=r(54602),u=n.aTypedArray;(0,n.exportTypedArrayMethod)("slice",(function(t,e){for(var r=a(u(this),t,e),n=o(this),i=0,s=r.length,c=new n(s);s>i;)c[i]=r[i++];return c}),i((function(){new Int8Array(1).slice()})))},88739:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).some,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("some",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},60415:(t,e,r)=>{"use strict";var n=r(16210),o=r(71138),i=r(40033),a=r(10320),u=r(90274),s=r(4246),c=r(50503),f=r(79725),l=r(83141),h=r(44981),p=s.aTypedArray,y=s.exportTypedArrayMethod,d=n.Uint16Array,v=d&&o(d.prototype.sort),g=!(!v||i((function(){v(new d(2),null)}))&&i((function(){v(new d(2),{})}))),b=!!v&&!i((function(){if(l)return l<74;if(c)return c<67;if(f)return!0;if(h)return h<602;var t,e,r=new d(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(v(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));y("sort",(function(t){return void 0!==t&&a(t),b?v(this,t):u(p(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!b||g)},72532:(t,e,r)=>{"use strict";var n=r(4246),o=r(10188),i=r(13912),a=r(31082),u=n.aTypedArray;(0,n.exportTypedArrayMethod)("subarray",(function(t,e){var r=u(this),n=r.length,s=i(t,n);return new(a(r))(r.buffer,r.byteOffset+s*r.BYTES_PER_ELEMENT,o((void 0===e?n:i(e,n))-s))}))},62207:(t,e,r)=>{"use strict";var n=r(16210),o=r(61267),i=r(4246),a=r(40033),u=r(54602),s=n.Int8Array,c=i.aTypedArray,f=i.exportTypedArrayMethod,l=[].toLocaleString,h=!!s&&a((function(){l.call(new s(1))}));f("toLocaleString",(function(){return o(l,h?u(c(this)):c(this),u(arguments))}),a((function(){return[1,2].toLocaleString()!==new s([1,2]).toLocaleString()}))||!a((function(){s.prototype.toLocaleString.call([1,2])})))},42153:(t,e,r)=>{"use strict";var n=r(81354),o=r(4246),i=o.aTypedArray,a=o.exportTypedArrayMethod,u=o.getTypedArrayConstructor;a("toReversed",(function(){return n(i(this),u(this))}))},53262:(t,e,r)=>{"use strict";var n=r(4246),o=r(67250),i=r(10320),a=r(78008),u=n.aTypedArray,s=n.getTypedArrayConstructor,c=n.exportTypedArrayMethod,f=o(n.TypedArrayPrototype.sort);c("toSorted",(function(t){void 0!==t&&i(t);var e=u(this),r=a(s(e),e);return f(r,t)}))},906:(t,e,r)=>{"use strict";var n=r(4246).exportTypedArrayMethod,o=r(40033),i=r(16210),a=r(67250),u=i.Uint8Array,s=u&&u.prototype||{},c=[].toString,f=a([].join);o((function(){c.call({})}))&&(c=function(){return f(this)});var l=s.toString!==c;n("toString",c,l)},78824:(t,e,r)=>{"use strict";r(80185)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},72846:(t,e,r)=>{"use strict";r(80185)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},24575:(t,e,r)=>{"use strict";r(80185)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},71968:(t,e,r)=>{"use strict";r(80185)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0)},7811:(t,e,r)=>{"use strict";var n=r(85370),o=r(4246),i=r(40221),a=r(61365),u=r(61484),s=o.aTypedArray,c=o.getTypedArrayConstructor,f=o.exportTypedArrayMethod,l=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();f("with",{with:function(t,e){var r=s(this),o=a(t),f=i(r)?u(e):+e;return n(r,c(r),o,f)}}.with,!l)},22385:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(12605),a=String.fromCharCode,u=o("".charAt),s=o(/./.exec),c=o("".slice),f=/^[\da-f]{2}$/i,l=/^[\da-f]{4}$/i;n({global:!0},{unescape:function(t){for(var e,r,n=i(t),o="",h=n.length,p=0;p<h;){if("%"===(e=u(n,p++)))if("u"===u(n,p)){if(r=c(n,p+1,p+5),s(l,r)){o+=a(parseInt(r,16)),p+=5;continue}}else if(r=c(n,p,p+2),s(f,r)){o+=a(parseInt(r,16)),p+=2;continue}o+=e}return o}})},80040:(t,e,r)=>{"use strict";var n,o=r(50730),i=r(16210),a=r(67250),u=r(30145),s=r(81969),c=r(45150),f=r(39895),l=r(77568),h=r(5419).enforce,p=r(40033),y=r(21820),d=Object,v=Array.isArray,g=d.isExtensible,b=d.isFrozen,m=d.isSealed,w=d.freeze,x=d.seal,k=!i.ActiveXObject&&"ActiveXObject"in i,S=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},_=c("WeakMap",S,f),O=_.prototype,E=a(O.set);if(y)if(k){n=f.getConstructor(S,"WeakMap",!0),s.enable();var A=a(O.delete),P=a(O.has),j=a(O.get);u(O,{delete:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),A(this,t)||e.frozen.delete(t)}return A(this,t)},has:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),P(this,t)||e.frozen.has(t)}return P(this,t)},get:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),P(this,t)?j(this,t):e.frozen.get(t)}return j(this,t)},set:function(t,e){if(l(t)&&!g(t)){var r=h(this);r.frozen||(r.frozen=new n),P(this,t)?E(this,t,e):r.frozen.set(t,e)}else E(this,t,e);return this}})}else o&&p((function(){var t=w([]);return E(new _,t,1),!b(t)}))&&u(O,{set:function(t,e){var r;return v(t)&&(b(t)?r=w:m(t)&&(r=x)),E(this,t,e),r&&r(t),this}})},90846:(t,e,r)=>{"use strict";r(80040)},67042:(t,e,r)=>{"use strict";r(45150)("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(39895))},40348:(t,e,r)=>{"use strict";r(67042)},99243:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(4009),a=r(67250),u=r(91495),s=r(40033),c=r(12605),f=r(24986),l=r(20622).c2i,h=/[^\d+/a-z]/i,p=/[\t\n\f\r ]+/g,y=/[=]{1,2}$/,d=i("atob"),v=String.fromCharCode,g=a("".charAt),b=a("".replace),m=a(h.exec),w=!!d&&!s((function(){return"hi"!==d("aGk=")})),x=w&&s((function(){return""!==d(" ")})),k=w&&!s((function(){d("a")})),S=w&&!s((function(){d()})),_=w&&1!==d.length;n({global:!0,bind:!0,enumerable:!0,forced:!w||x||k||S||_},{atob:function(t){if(f(arguments.length,1),w&&!x&&!k)return u(d,o,t);var e,r,n,a=b(c(t),p,""),s="",S=0,_=0;if(a.length%4==0&&(a=b(a,y,"")),(e=a.length)%4==1||m(h,a))throw new(i("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;S<e;)r=g(a,S++),n=_%4?64*n+l[r]:l[r],_++%4&&(s+=v(255&n>>(-2*_&6)));return s}})},15209:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(4009),a=r(67250),u=r(91495),s=r(40033),c=r(12605),f=r(24986),l=r(20622).i2c,h=i("btoa"),p=a("".charAt),y=a("".charCodeAt),d=!!h&&!s((function(){return"aGk="!==h("hi")})),v=d&&!s((function(){h()})),g=d&&s((function(){return"bnVsbA=="!==h(null)})),b=d&&1!==h.length;n({global:!0,bind:!0,enumerable:!0,forced:!d||v||g||b},{btoa:function(t){if(f(arguments.length,1),d)return u(h,o,c(t));for(var e,r,n=c(t),a="",s=0,v=l;p(n,s)||(v="=",s%1);){if((r=y(n,s+=3/4))>255)throw new(i("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");a+=p(v,63&(e=e<<8|r)>>8-s%1*8)}return a}})},5606:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(60375).clear;n({global:!0,bind:!0,enumerable:!0,forced:o.clearImmediate!==i},{clearImmediate:i})},11446:(t,e,r)=>{"use strict";var n=r(16210),o=r(69058),i=r(90502),a=r(35601),u=r(37909),s=function(t){if(t&&t.forEach!==a)try{u(t,"forEach",a)}catch(e){t.forEach=a}};for(var c in o)o[c]&&s(n[c]&&n[c].prototype);s(i)},91127:(t,e,r)=>{"use strict";var n=r(16210),o=r(69058),i=r(90502),a=r(34570),u=r(37909),s=r(84925),c=r(24697)("iterator"),f=a.values,l=function(t,e){if(t){if(t[c]!==f)try{u(t,c,f)}catch(e){t[c]=f}if(s(t,e,!0),o[e])for(var r in a)if(t[r]!==a[r])try{u(t,r,a[r])}catch(e){t[r]=a[r]}}};for(var h in o)l(n[h]&&n[h].prototype,h);l(i,"DOMTokenList")},91001:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(58835),a=r(40033),u=r(80674),s=r(87458),c=r(74595).f,f=r(55938),l=r(73936),h=r(45299),p=r(60077),y=r(30365),d=r(44790),v=r(75577),g=r(41852),b=r(89767),m=r(5419),w=r(58310),x=r(4493),k="DOMException",S="DATA_CLONE_ERR",_=o("Error"),O=o(k)||function(){try{(new(o("MessageChannel")||i("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name===S&&25===t.code)return t.constructor}}(),E=O&&O.prototype,A=_.prototype,P=m.set,j=m.getterFor(k),T="stack"in new _(k),M=function(t){return h(g,t)&&g[t].m?g[t].c:0},R=function(){p(this,I);var t=arguments.length,e=v(t<1?void 0:arguments[0]),r=v(t<2?void 0:arguments[1],"Error"),n=M(r);if(P(this,{type:k,name:r,message:e,code:n}),w||(this.name=r,this.message=e,this.code=n),T){var o=new _(e);o.name=k,c(this,"stack",s(1,b(o.stack,1)))}},I=R.prototype=u(A),C=function(t){return{enumerable:!0,configurable:!0,get:t}},L=function(t){return C((function(){return j(this)[t]}))};w&&(l(I,"code",L("code")),l(I,"message",L("message")),l(I,"name",L("name"))),c(I,"constructor",s(1,R));var D=a((function(){return!(new O instanceof _)})),B=D||a((function(){return A.toString!==d||"2: 1"!==String(new O(1,2))})),N=D||a((function(){return 25!==new O(1,"DataCloneError").code})),F=D||25!==O[S]||25!==E[S],z=x?B||N||F:D;n({global:!0,constructor:!0,forced:z},{DOMException:z?R:O});var U=o(k),Y=U.prototype;for(var G in B&&(x||O===U)&&f(Y,"toString",d),N&&w&&O===U&&l(Y,"code",C((function(){return M(y(this).name)}))),g)if(h(g,G)){var H=g[G],W=H.s,X=s(6,H.c);h(U,W)||c(U,W,X),h(Y,W)||c(Y,W,X)}},54913:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(4009),a=r(87458),u=r(74595).f,s=r(45299),c=r(60077),f=r(5781),l=r(75577),h=r(41852),p=r(89767),y=r(58310),d=r(4493),v="DOMException",g=i("Error"),b=i(v),m=function(){c(this,w);var t=arguments.length,e=l(t<1?void 0:arguments[0]),r=l(t<2?void 0:arguments[1],"Error"),n=new b(e,r),o=new g(e);return o.name=v,u(n,"stack",a(1,p(o.stack,1))),f(n,this,m),n},w=m.prototype=b.prototype,x="stack"in new g(v),k="stack"in new b(1,2),S=b&&y&&Object.getOwnPropertyDescriptor(o,v),_=!(!S||S.writable&&S.configurable),O=x&&!_&&!k;n({global:!0,constructor:!0,forced:d||O},{DOMException:O?m:b});var E=i(v),A=E.prototype;if(A.constructor!==E)for(var P in d||u(A,"constructor",a(1,E)),h)if(s(h,P)){var j=h[P],T=j.s;s(E,T)||u(E,T,a(6,j.c))}},47773:(t,e,r)=>{"use strict";var n=r(4009),o="DOMException";r(84925)(n(o),o)},83006:(t,e,r)=>{"use strict";r(5606),r(27807)},25764:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(37713),a=r(10320),u=r(24986),s=r(40033),c=r(58310);n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:s((function(){return c&&1!==Object.getOwnPropertyDescriptor(o,"queueMicrotask").value.length}))},{queueMicrotask:function(t){u(arguments.length,1),i(a(t))}})},11573:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(73936),a=r(58310),u=TypeError,s=Object.defineProperty,c=o.self!==o;try{if(a){var f=Object.getOwnPropertyDescriptor(o,"self");!c&&f&&f.get&&f.enumerable||i(o,"self",{get:function(){return o},set:function(t){if(this!==o)throw new u("Illegal invocation");s(o,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else n({global:!0,simple:!0,forced:c},{self:o})}catch(t){}},27807:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(60375).set,a=r(78362),u=o.setImmediate?a(i,!1):i;n({global:!0,bind:!0,enumerable:!0,forced:o.setImmediate!==u},{setImmediate:u})},45569:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(78362)(o.setInterval,!0);n({global:!0,bind:!0,forced:o.setInterval!==i},{setInterval:i})},5213:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(78362)(o.setTimeout,!0);n({global:!0,bind:!0,forced:o.setTimeout!==i},{setTimeout:i})},63908:(t,e,r)=>{"use strict";var n,o=r(4493),i=r(63964),a=r(16210),u=r(4009),s=r(67250),c=r(40033),f=r(16738),l=r(55747),h=r(1031),p=r(42871),y=r(77568),d=r(71399),v=r(49450),g=r(30365),b=r(2281),m=r(45299),w=r(60102),x=r(37909),k=r(24760),S=r(24986),_=r(73392),O=r(31186),E=r(13128),A=r(51551),P=r(3609),j=r(31013),T=r(8534),M=a.Object,R=a.Array,I=a.Date,C=a.Error,L=a.TypeError,D=a.PerformanceMark,B=u("DOMException"),N=O.Map,F=O.has,z=O.get,U=O.set,Y=E.Set,G=E.add,H=E.has,W=u("Object","keys"),X=s([].push),q=s((!0).valueOf),V=s(1..valueOf),Q=s("".valueOf),K=s(I.prototype.getTime),J=f("structuredClone"),Z="DataCloneError",$="Transferring",tt=function(t){return!c((function(){var e=new a.Set([7]),r=t(e),n=t(M(7));return r===e||!r.has(7)||!y(n)||7!=+n}))&&t},et=function(t,e){return!c((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},rt=a.structuredClone,nt=o||!et(rt,C)||!et(rt,B)||(n=rt,!!c((function(){var t=n(new a.AggregateError([1],J,{cause:3}));return"AggregateError"!==t.name||1!==t.errors[0]||t.message!==J||3!==t.cause}))),ot=!rt&&tt((function(t){return new D(J,{detail:t}).detail})),it=tt(rt)||ot,at=function(t){throw new B("Uncloneable type: "+t,Z)},ut=function(t,e){throw new B((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",Z)},st=function(t,e){return it||ut(e),it(t)},ct=function(t,e,r){if(F(e,t))return z(e,t);var n,o,i,u,s,c;if("SharedArrayBuffer"===(r||b(t)))n=it?it(t):t;else{var f=a.DataView;f||l(t.slice)||ut("ArrayBuffer");try{if(l(t.slice)&&!t.resizable)n=t.slice(0);else{o=t.byteLength,i="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(o,i),u=new f(t),s=new f(n);for(c=0;c<o;c++)s.setUint8(c,u.getUint8(c))}}catch(t){throw new B("ArrayBuffer is detached",Z)}}return U(e,t,n),n},ft=function(t,e){if(d(t)&&at("Symbol"),!y(t))return t;if(e){if(F(e,t))return z(e,t)}else e=new N;var r,n,o,i,s,c,f,h,p=b(t);switch(p){case"Array":o=R(k(t));break;case"Object":o={};break;case"Map":o=new N;break;case"Set":o=new Y;break;case"RegExp":o=new RegExp(t.source,_(t));break;case"Error":switch(n=t.name){case"AggregateError":o=new(u(n))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":o=new(u(n));break;case"CompileError":case"LinkError":case"RuntimeError":o=new(u("WebAssembly",n));break;default:o=new C}break;case"DOMException":o=new B(t.message,t.name);break;case"ArrayBuffer":case"SharedArrayBuffer":o=ct(t,e,p);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":c="DataView"===p?t.byteLength:t.length,o=function(t,e,r,n,o){var i=a[e];return y(i)||ut(e),new i(ct(t.buffer,o),r,n)}(t,p,t.byteOffset,c,e);break;case"DOMQuad":try{o=new DOMQuad(ft(t.p1,e),ft(t.p2,e),ft(t.p3,e),ft(t.p4,e))}catch(e){o=st(t,p)}break;case"File":if(it)try{o=it(t),b(o)!==p&&(o=void 0)}catch(t){}if(!o)try{o=new File([t],t.name,t)}catch(t){}o||ut(p);break;case"FileList":if(i=function(){var t;try{t=new a.DataTransfer}catch(e){try{t=new a.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(s=0,c=k(t);s<c;s++)i.items.add(ft(t[s],e));o=i.files}else o=st(t,p);break;case"ImageData":try{o=new ImageData(ft(t.data,e),t.width,t.height,{colorSpace:t.colorSpace})}catch(e){o=st(t,p)}break;default:if(it)o=it(t);else switch(p){case"BigInt":o=M(t.valueOf());break;case"Boolean":o=M(q(t));break;case"Number":o=M(V(t));break;case"String":o=M(Q(t));break;case"Date":o=new I(K(t));break;case"Blob":try{o=t.slice(0,t.size,t.type)}catch(t){ut(p)}break;case"DOMPoint":case"DOMPointReadOnly":r=a[p];try{o=r.fromPoint?r.fromPoint(t):new r(t.x,t.y,t.z,t.w)}catch(t){ut(p)}break;case"DOMRect":case"DOMRectReadOnly":r=a[p];try{o=r.fromRect?r.fromRect(t):new r(t.x,t.y,t.width,t.height)}catch(t){ut(p)}break;case"DOMMatrix":case"DOMMatrixReadOnly":r=a[p];try{o=r.fromMatrix?r.fromMatrix(t):new r(t)}catch(t){ut(p)}break;case"AudioData":case"VideoFrame":l(t.clone)||ut(p);try{o=t.clone()}catch(t){at(p)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":ut(p);default:at(p)}}switch(U(e,t,o),p){case"Array":case"Object":for(f=W(t),s=0,c=k(f);s<c;s++)h=f[s],w(o,h,ft(t[h],e));break;case"Map":t.forEach((function(t,r){U(o,ft(r,e),ft(t,e))}));break;case"Set":t.forEach((function(t){G(o,ft(t,e))}));break;case"Error":x(o,"message",ft(t.message,e)),m(t,"cause")&&x(o,"cause",ft(t.cause,e)),"AggregateError"===n?o.errors=ft(t.errors,e):"SuppressedError"===n&&(o.error=ft(t.error,e),o.suppressed=ft(t.suppressed,e));case"DOMException":j&&x(o,"stack",ft(t.stack,e))}return o};i({global:!0,enumerable:!0,sham:!T,forced:nt},{structuredClone:function(t){var e,r,n=S(arguments.length,1)>1&&!p(arguments[1])?g(arguments[1]):void 0,o=n?n.transfer:void 0;void 0!==o&&(r=function(t,e){if(!y(t))throw new L("Transfer option cannot be converted to a sequence");var r=[];v(t,(function(t){X(r,g(t))}));for(var n,o,i,u,s,c=0,f=k(r),p=new Y;c<f;){if(n=r[c++],"ArrayBuffer"===(o=b(n))?H(p,n):F(e,n))throw new B("Duplicate transferable",Z);if("ArrayBuffer"!==o){if(T)u=rt(n,{transfer:[n]});else switch(o){case"ImageBitmap":i=a.OffscreenCanvas,h(i)||ut(o,$);try{(s=new i(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),u=s.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":l(n.clone)&&l(n.close)||ut(o,$);try{u=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"OffscreenCanvas":case"ReadableStream":case"TransformStream":case"WritableStream":ut(o,$)}if(void 0===u)throw new B("This object cannot be transferred: "+o,Z);U(e,n,u)}else G(p,n)}return p}(o,e=new N));var i=ft(t,e);return r&&function(t){A(t,(function(t){T?it(t,{transfer:[t]}):l(t.transfer)?t.transfer():P?P(t):ut("ArrayBuffer",$)}))}(r),i}})},69401:(t,e,r)=>{"use strict";r(45569),r(5213)},41504:(t,e,r)=>{"use strict";r(34570),r(9867);var n=r(63964),o=r(16210),i=r(44915),a=r(4009),u=r(91495),s=r(67250),c=r(58310),f=r(92178),l=r(55938),h=r(73936),p=r(30145),y=r(84925),d=r(5656),v=r(5419),g=r(60077),b=r(55747),m=r(45299),w=r(75754),x=r(2281),k=r(30365),S=r(77568),_=r(12605),O=r(80674),E=r(87458),A=r(77455),P=r(59201),j=r(5959),T=r(24986),M=r(24697),R=r(90274),I=M("iterator"),C="URLSearchParams",L=C+"Iterator",D=v.set,B=v.getterFor(C),N=v.getterFor(L),F=i("fetch"),z=i("Request"),U=i("Headers"),Y=z&&z.prototype,G=U&&U.prototype,H=o.TypeError,W=o.encodeURIComponent,X=String.fromCharCode,q=a("String","fromCodePoint"),V=parseInt,Q=s("".charAt),K=s([].join),J=s([].push),Z=s("".replace),$=s([].shift),tt=s([].splice),et=s("".split),rt=s("".slice),nt=s(/./.exec),ot=/\+/g,it=/^[0-9a-f]+$/i,at=function(t,e){var r=rt(t,e,e+2);return nt(it,r)?V(r,16):NaN},ut=function(t){for(var e=0,r=128;r>0&&t&r;r>>=1)e++;return e},st=function(t){var e=null;switch(t.length){case 1:e=t[0];break;case 2:e=(31&t[0])<<6|63&t[1];break;case 3:e=(15&t[0])<<12|(63&t[1])<<6|63&t[2];break;case 4:e=(7&t[0])<<18|(63&t[1])<<12|(63&t[2])<<6|63&t[3]}return e>1114111?null:e},ct=function(t){for(var e=(t=Z(t,ot," ")).length,r="",n=0;n<e;){var o=Q(t,n);if("%"===o){if("%"===Q(t,n+1)||n+3>e){r+="%",n++;continue}var i=at(t,n+1);if(i!=i){r+=o,n++;continue}n+=2;var a=ut(i);if(0===a)o=X(i);else{if(1===a||a>4){r+="�",n++;continue}for(var u=[i],s=1;s<a&&!(3+ ++n>e||"%"!==Q(t,n));){var c=at(t,n+1);if(c!=c){n+=3;break}if(c>191||c<128)break;J(u,c),n+=2,s++}if(u.length!==a){r+="�";continue}var f=st(u);null===f?r+="�":o=q(f)}}r+=o,n++}return r},ft=/[!'()~]|%20/g,lt={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},ht=function(t){return lt[t]},pt=function(t){return Z(W(t),ft,ht)},yt=d((function(t,e){D(this,{type:L,target:B(t).entries,index:0,kind:e})}),C,(function(){var t=N(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,j(void 0,!0);var n=e[r];switch(t.kind){case"keys":return j(n.key,!1);case"values":return j(n.value,!1)}return j([n.key,n.value],!1)}),!0),dt=function(t){this.entries=[],this.url=null,void 0!==t&&(S(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===Q(t,0)?rt(t,1):t:_(t)))};dt.prototype={type:C,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,o,i,a,s,c=this.entries,f=P(t);if(f)for(r=(e=A(t,f)).next;!(n=u(r,e)).done;){if(i=(o=A(k(n.value))).next,(a=u(i,o)).done||(s=u(i,o)).done||!u(i,o).done)throw new H("Expected sequence with length 2");J(c,{key:_(a.value),value:_(s.value)})}else for(var l in t)m(t,l)&&J(c,{key:l,value:_(t[l])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,o=et(t,"&"),i=0;i<o.length;)(e=o[i++]).length&&(r=et(e,"="),J(n,{key:ct($(r)),value:ct(K(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],J(r,pt(t.key)+"="+pt(t.value));return K(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var vt=function(){g(this,gt);var t=D(this,new dt(arguments.length>0?arguments[0]:void 0));c||(this.size=t.entries.length)},gt=vt.prototype;if(p(gt,{append:function(t,e){var r=B(this);T(arguments.length,2),J(r.entries,{key:_(t),value:_(e)}),c||this.length++,r.updateURL()},delete:function(t){for(var e=B(this),r=T(arguments.length,1),n=e.entries,o=_(t),i=r<2?void 0:arguments[1],a=void 0===i?i:_(i),u=0;u<n.length;){var s=n[u];if(s.key!==o||void 0!==a&&s.value!==a)u++;else if(tt(n,u,1),void 0!==a)break}c||(this.size=n.length),e.updateURL()},get:function(t){var e=B(this).entries;T(arguments.length,1);for(var r=_(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=B(this).entries;T(arguments.length,1);for(var r=_(t),n=[],o=0;o<e.length;o++)e[o].key===r&&J(n,e[o].value);return n},has:function(t){for(var e=B(this).entries,r=T(arguments.length,1),n=_(t),o=r<2?void 0:arguments[1],i=void 0===o?o:_(o),a=0;a<e.length;){var u=e[a++];if(u.key===n&&(void 0===i||u.value===i))return!0}return!1},set:function(t,e){var r=B(this);T(arguments.length,1);for(var n,o=r.entries,i=!1,a=_(t),u=_(e),s=0;s<o.length;s++)(n=o[s]).key===a&&(i?tt(o,s--,1):(i=!0,n.value=u));i||J(o,{key:a,value:u}),c||(this.size=o.length),r.updateURL()},sort:function(){var t=B(this);R(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=B(this).entries,n=w(t,arguments.length>1?arguments[1]:void 0),o=0;o<r.length;)n((e=r[o++]).value,e.key,this)},keys:function(){return new yt(this,"keys")},values:function(){return new yt(this,"values")},entries:function(){return new yt(this,"entries")}},{enumerable:!0}),l(gt,I,gt.entries,{name:"entries"}),l(gt,"toString",(function(){return B(this).serialize()}),{enumerable:!0}),c&&h(gt,"size",{get:function(){return B(this).entries.length},configurable:!0,enumerable:!0}),y(vt,C),n({global:!0,constructor:!0,forced:!f},{URLSearchParams:vt}),!f&&b(U)){var bt=s(G.has),mt=s(G.set),wt=function(t){if(S(t)){var e,r=t.body;if(x(r)===C)return e=t.headers?new U(t.headers):new U,bt(e,"content-type")||mt(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),O(t,{body:E(0,_(r)),headers:E(0,e)})}return t};if(b(F)&&n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return F(t,arguments.length>1?wt(arguments[1]):{})}}),b(z)){var xt=function(t){return g(this,Y),new z(t,arguments.length>1?wt(arguments[1]):{})};Y.constructor=xt,xt.prototype=Y,n({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:xt})}}t.exports={URLSearchParams:vt,getState:B}},1105:(t,e,r)=>{"use strict";var n=r(55938),o=r(67250),i=r(12605),a=r(24986),u=URLSearchParams,s=u.prototype,c=o(s.append),f=o(s.delete),l=o(s.forEach),h=o([].push),p=new u("a=1&a=2&b=3");p.delete("a",1),p.delete("b",void 0),p+""!="a=2"&&n(s,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=[];l(this,(function(t,e){h(n,{key:e,value:t})})),a(e,1);for(var o,u=i(t),s=i(r),p=0,y=0,d=!1,v=n.length;p<v;)o=n[p++],d||o.key===u?(d=!0,f(this,o.key)):y++;for(;y<v;)(o=n[y++]).key===u&&o.value===s||c(this,o.key,o.value)}),{enumerable:!0,unsafe:!0})},73612:(t,e,r)=>{"use strict";var n=r(55938),o=r(67250),i=r(12605),a=r(24986),u=URLSearchParams,s=u.prototype,c=o(s.getAll),f=o(s.has),l=new u("a=1");!l.has("a",2)&&l.has("a",void 0)||n(s,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=c(this,t);a(e,1);for(var o=i(r),u=0;u<n.length;)if(n[u++]===o)return!0;return!1}),{enumerable:!0,unsafe:!0})},92950:(t,e,r)=>{"use strict";r(41504)},27895:(t,e,r)=>{"use strict";var n=r(58310),o=r(67250),i=r(73936),a=URLSearchParams.prototype,u=o(a.forEach);n&&!("size"in a)&&i(a,"size",{get:function(){var t=0;return u(this,(function(){t++})),t},configurable:!0,enumerable:!0})},41172:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(40033),a=r(24986),u=r(12605),s=r(92178),c=o("URL"),f=s&&i((function(){c.canParse()})),l=i((function(){return 1!==c.canParse.length}));n({target:"URL",stat:!0,forced:!f||l},{canParse:function(t){var e=a(arguments.length,1),r=u(t),n=e<2||void 0===arguments[1]?void 0:u(arguments[1]);try{return!!new c(r,n)}catch(t){return!1}}})},52164:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}r(12354);var o,i=r(63964),a=r(58310),u=r(92178),s=r(16210),c=r(75754),f=r(67250),l=r(55938),h=r(73936),p=r(60077),y=r(45299),d=r(41143),v=r(73174),g=r(54602),b=r(50233).codeAt,m=r(74915),w=r(12605),x=r(84925),k=r(24986),S=r(41504),_=r(5419),O=_.set,E=_.getterFor("URL"),A=S.URLSearchParams,P=S.getState,j=s.URL,T=s.TypeError,M=s.parseInt,R=Math.floor,I=Math.pow,C=f("".charAt),L=f(/./.exec),D=f([].join),B=f(1..toString),N=f([].pop),F=f([].push),z=f("".replace),U=f([].shift),Y=f("".split),G=f("".slice),H=f("".toLowerCase),W=f([].unshift),X="Invalid scheme",q="Invalid host",V="Invalid port",Q=/[a-z]/i,K=/[\d+-.a-z]/i,J=/\d/,Z=/^0x/i,$=/^[0-7]+$/,tt=/^\d+$/,et=/^[\da-f]+$/i,rt=/[\0\t\n\r #%/:<>?@[\\\]^|]/,nt=/[\0\t\n\r #/:<>?@[\\\]^|]/,ot=/^[\u0000-\u0020]+/,it=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,at=/[\t\n\r]/g,ut=function(t){var e,r,o,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)W(e,t%256),t=R(t/256);return D(e,".")}if("object"==n(t)){for(e="",o=function(t){for(var e=null,r=1,n=null,o=0,i=0;i<8;i++)0!==t[i]?(o>r&&(e=n,r=o),n=null,o=0):(null===n&&(n=i),++o);return o>r?n:e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),o===r?(e+=r?":":"::",i=!0):(e+=B(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},st={},ct=d({},st,{" ":1,'"':1,"<":1,">":1,"`":1}),ft=d({},ct,{"#":1,"?":1,"{":1,"}":1}),lt=d({},ft,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),ht=function(t,e){var r=b(t,0);return r>32&&r<127&&!y(e,t)?t:encodeURIComponent(t)},pt={ftp:21,file:null,http:80,https:443,ws:80,wss:443},yt=function(t,e){var r;return 2===t.length&&L(Q,C(t,0))&&(":"===(r=C(t,1))||!e&&"|"===r)},dt=function(t){var e;return t.length>1&&yt(G(t,0,2))&&(2===t.length||"/"===(e=C(t,2))||"\\"===e||"?"===e||"#"===e)},vt=function(t){return"."===t||"%2e"===H(t)},gt={},bt={},mt={},wt={},xt={},kt={},St={},_t={},Ot={},Et={},At={},Pt={},jt={},Tt={},Mt={},Rt={},It={},Ct={},Lt={},Dt={},Bt={},Nt=function(t,e,r){var n,o,i,a=w(t);if(e){if(o=this.parse(a))throw new T(o);this.searchParams=null}else{if(void 0!==r&&(n=new Nt(r,!0)),o=this.parse(a,null,n))throw new T(o);(i=P(new A)).bindURL(this),this.searchParams=i}};Nt.prototype={type:"URL",parse:function(t,e,r){var n,i,a,u,s,c=this,f=e||gt,l=0,h="",p=!1,d=!1,b=!1;for(t=w(t),e||(c.scheme="",c.username="",c.password="",c.host=null,c.port=null,c.path=[],c.query=null,c.fragment=null,c.cannotBeABaseURL=!1,t=z(t,ot,""),t=z(t,it,"$1")),t=z(t,at,""),n=v(t);l<=n.length;){switch(i=n[l],f){case gt:if(!i||!L(Q,i)){if(e)return X;f=mt;continue}h+=H(i),f=bt;break;case bt:if(i&&(L(K,i)||"+"===i||"-"===i||"."===i))h+=H(i);else{if(":"!==i){if(e)return X;h="",f=mt,l=0;continue}if(e&&(c.isSpecial()!==y(pt,h)||"file"===h&&(c.includesCredentials()||null!==c.port)||"file"===c.scheme&&!c.host))return;if(c.scheme=h,e)return void(c.isSpecial()&&pt[c.scheme]===c.port&&(c.port=null));h="","file"===c.scheme?f=Tt:c.isSpecial()&&r&&r.scheme===c.scheme?f=wt:c.isSpecial()?f=_t:"/"===n[l+1]?(f=xt,l++):(c.cannotBeABaseURL=!0,F(c.path,""),f=Lt)}break;case mt:if(!r||r.cannotBeABaseURL&&"#"!==i)return X;if(r.cannotBeABaseURL&&"#"===i){c.scheme=r.scheme,c.path=g(r.path),c.query=r.query,c.fragment="",c.cannotBeABaseURL=!0,f=Bt;break}f="file"===r.scheme?Tt:kt;continue;case wt:if("/"!==i||"/"!==n[l+1]){f=kt;continue}f=Ot,l++;break;case xt:if("/"===i){f=Et;break}f=Ct;continue;case kt:if(c.scheme=r.scheme,i===o)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query;else if("/"===i||"\\"===i&&c.isSpecial())f=St;else if("?"===i)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query="",f=Dt;else{if("#"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.path.length--,f=Ct;continue}c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt}break;case St:if(!c.isSpecial()||"/"!==i&&"\\"!==i){if("/"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,f=Ct;continue}f=Et}else f=Ot;break;case _t:if(f=Ot,"/"!==i||"/"!==C(h,l+1))continue;l++;break;case Ot:if("/"!==i&&"\\"!==i){f=Et;continue}break;case Et:if("@"===i){p&&(h="%40"+h),p=!0,a=v(h);for(var m=0;m<a.length;m++){var x=a[m];if(":"!==x||b){var k=ht(x,lt);b?c.password+=k:c.username+=k}else b=!0}h=""}else if(i===o||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(p&&""===h)return"Invalid authority";l-=v(h).length+1,h="",f=At}else h+=i;break;case At:case Pt:if(e&&"file"===c.scheme){f=Rt;continue}if(":"!==i||d){if(i===o||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(c.isSpecial()&&""===h)return q;if(e&&""===h&&(c.includesCredentials()||null!==c.port))return;if(u=c.parseHost(h))return u;if(h="",f=It,e)return;continue}"["===i?d=!0:"]"===i&&(d=!1),h+=i}else{if(""===h)return q;if(u=c.parseHost(h))return u;if(h="",f=jt,e===Pt)return}break;case jt:if(!L(J,i)){if(i===o||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()||e){if(""!==h){var S=M(h,10);if(S>65535)return V;c.port=c.isSpecial()&&S===pt[c.scheme]?null:S,h=""}if(e)return;f=It;continue}return V}h+=i;break;case Tt:if(c.scheme="file","/"===i||"\\"===i)f=Mt;else{if(!r||"file"!==r.scheme){f=Ct;continue}switch(i){case o:c.host=r.host,c.path=g(r.path),c.query=r.query;break;case"?":c.host=r.host,c.path=g(r.path),c.query="",f=Dt;break;case"#":c.host=r.host,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt;break;default:dt(D(g(n,l),""))||(c.host=r.host,c.path=g(r.path),c.shortenPath()),f=Ct;continue}}break;case Mt:if("/"===i||"\\"===i){f=Rt;break}r&&"file"===r.scheme&&!dt(D(g(n,l),""))&&(yt(r.path[0],!0)?F(c.path,r.path[0]):c.host=r.host),f=Ct;continue;case Rt:if(i===o||"/"===i||"\\"===i||"?"===i||"#"===i){if(!e&&yt(h))f=Ct;else if(""===h){if(c.host="",e)return;f=It}else{if(u=c.parseHost(h))return u;if("localhost"===c.host&&(c.host=""),e)return;h="",f=It}continue}h+=i;break;case It:if(c.isSpecial()){if(f=Ct,"/"!==i&&"\\"!==i)continue}else if(e||"?"!==i)if(e||"#"!==i){if(i!==o&&(f=Ct,"/"!==i))continue}else c.fragment="",f=Bt;else c.query="",f=Dt;break;case Ct:if(i===o||"/"===i||"\\"===i&&c.isSpecial()||!e&&("?"===i||"#"===i)){if(".."===(s=H(s=h))||"%2e."===s||".%2e"===s||"%2e%2e"===s?(c.shortenPath(),"/"===i||"\\"===i&&c.isSpecial()||F(c.path,"")):vt(h)?"/"===i||"\\"===i&&c.isSpecial()||F(c.path,""):("file"===c.scheme&&!c.path.length&&yt(h)&&(c.host&&(c.host=""),h=C(h,0)+":"),F(c.path,h)),h="","file"===c.scheme&&(i===o||"?"===i||"#"===i))for(;c.path.length>1&&""===c.path[0];)U(c.path);"?"===i?(c.query="",f=Dt):"#"===i&&(c.fragment="",f=Bt)}else h+=ht(i,ft);break;case Lt:"?"===i?(c.query="",f=Dt):"#"===i?(c.fragment="",f=Bt):i!==o&&(c.path[0]+=ht(i,st));break;case Dt:e||"#"!==i?i!==o&&("'"===i&&c.isSpecial()?c.query+="%27":c.query+="#"===i?"%23":ht(i,st)):(c.fragment="",f=Bt);break;case Bt:i!==o&&(c.fragment+=ht(i,ct))}l++}},parseHost:function(t){var e,r,n;if("["===C(t,0)){if("]"!==C(t,t.length-1))return q;if(e=function(t){var e,r,n,o,i,a,u,s=[0,0,0,0,0,0,0,0],c=0,f=null,l=0,h=function(){return C(t,l)};if(":"===h()){if(":"!==C(t,1))return;l+=2,f=++c}for(;h();){if(8===c)return;if(":"!==h()){for(e=r=0;r<4&&L(et,h());)e=16*e+M(h(),16),l++,r++;if("."===h()){if(0===r)return;if(l-=r,c>6)return;for(n=0;h();){if(o=null,n>0){if(!("."===h()&&n<4))return;l++}if(!L(J,h()))return;for(;L(J,h());){if(i=M(h(),10),null===o)o=i;else{if(0===o)return;o=10*o+i}if(o>255)return;l++}s[c]=256*s[c]+o,2!=++n&&4!==n||c++}if(4!==n)return;break}if(":"===h()){if(l++,!h())return}else if(h())return;s[c++]=e}else{if(null!==f)return;l++,f=++c}}if(null!==f)for(a=c-f,c=7;0!==c&&a>0;)u=s[c],s[c--]=s[f+a-1],s[f+--a]=u;else if(8!==c)return;return s}(G(t,1,-1)),!e)return q;this.host=e}else if(this.isSpecial()){if(t=m(t),L(rt,t))return q;if(e=function(t){var e,r,n,o,i,a,u,s=Y(t,".");if(s.length&&""===s[s.length-1]&&s.length--,(e=s.length)>4)return t;for(r=[],n=0;n<e;n++){if(""===(o=s[n]))return t;if(i=10,o.length>1&&"0"===C(o,0)&&(i=L(Z,o)?16:8,o=G(o,8===i?1:2)),""===o)a=0;else{if(!L(10===i?tt:8===i?$:et,o))return t;a=M(o,i)}F(r,a)}for(n=0;n<e;n++)if(a=r[n],n===e-1){if(a>=I(256,5-e))return null}else if(a>255)return null;for(u=N(r),n=0;n<r.length;n++)u+=r[n]*I(256,3-n);return u}(t),null===e)return q;this.host=e}else{if(L(nt,t))return q;for(e="",r=v(t),n=0;n<r.length;n++)e+=ht(r[n],st);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return y(pt,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&yt(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,o=t.host,i=t.port,a=t.path,u=t.query,s=t.fragment,c=e+":";return null!==o?(c+="//",t.includesCredentials()&&(c+=r+(n?":"+n:"")+"@"),c+=ut(o),null!==i&&(c+=":"+i)):"file"===e&&(c+="//"),c+=t.cannotBeABaseURL?a[0]:a.length?"/"+D(a,"/"):"",null!==u&&(c+="?"+u),null!==s&&(c+="#"+s),c},setHref:function(t){var e=this.parse(t);if(e)throw new T(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new Ft(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+ut(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(w(t)+":",gt)},getUsername:function(){return this.username},setUsername:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=ht(e[r],lt)}},getPassword:function(){return this.password},setPassword:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=ht(e[r],lt)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?ut(t):ut(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,At)},getHostname:function(){var t=this.host;return null===t?"":ut(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,Pt)},getPort:function(){var t=this.port;return null===t?"":w(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=w(t))?this.port=null:this.parse(t,jt))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+D(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,It))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=w(t))?this.query=null:("?"===C(t,0)&&(t=G(t,1)),this.query="",this.parse(t,Dt)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=w(t))?("#"===C(t,0)&&(t=G(t,1)),this.fragment="",this.parse(t,Bt)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var Ft=function(t){var e=p(this,zt),r=k(arguments.length,1)>1?arguments[1]:void 0,n=O(e,new Nt(t,!1,r));a||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},zt=Ft.prototype,Ut=function(t,e){return{get:function(){return E(this)[t]()},set:e&&function(t){return E(this)[e](t)},configurable:!0,enumerable:!0}};if(a&&(h(zt,"href",Ut("serialize","setHref")),h(zt,"origin",Ut("getOrigin")),h(zt,"protocol",Ut("getProtocol","setProtocol")),h(zt,"username",Ut("getUsername","setUsername")),h(zt,"password",Ut("getPassword","setPassword")),h(zt,"host",Ut("getHost","setHost")),h(zt,"hostname",Ut("getHostname","setHostname")),h(zt,"port",Ut("getPort","setPort")),h(zt,"pathname",Ut("getPathname","setPathname")),h(zt,"search",Ut("getSearch","setSearch")),h(zt,"searchParams",Ut("getSearchParams")),h(zt,"hash",Ut("getHash","setHash"))),l(zt,"toJSON",(function(){return E(this).serialize()}),{enumerable:!0}),l(zt,"toString",(function(){return E(this).serialize()}),{enumerable:!0}),j){var Yt=j.createObjectURL,Gt=j.revokeObjectURL;Yt&&l(Ft,"createObjectURL",c(Yt,j)),Gt&&l(Ft,"revokeObjectURL",c(Gt,j))}x(Ft,"URL"),i({global:!0,constructor:!0,forced:!u,sham:!a},{URL:Ft})},90690:(t,e,r)=>{"use strict";r(52164)},74755:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(24986),a=r(12605),u=r(92178),s=o("URL");n({target:"URL",stat:!0,forced:!u},{parse:function(t){var e=i(arguments.length,1),r=a(t),n=e<2||void 0===arguments[1]?void 0:a(arguments[1]);try{return new s(r,n)}catch(t){return null}}})},83826:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495);n({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return o(URL.prototype.toString,this)}})},65645:(t,e,r)=>{"use strict";r(33313),r(10933),r(79250),r(53795),r(87806),r(64677),r(48058),r(14836),r(51583),r(82403),r(34265),r(3295),r(1078),r(63207),r(80520),r(55474),r(12612),r(43345),r(6864),r(43825),r(39600),r(93237),r(32057),r(68933),r(47830),r(13455),r(64094),r(43620),r(15381),r(61915),r(32384),r(25579),r(63532),r(33425),r(43894),r(99636),r(34570),r(94432),r(24683),r(69984),r(32089),r(11684),r(60206),r(29645),r(4788),r(58672),r(19356),r(48968),r(49852),r(2712),r(26828),r(79243),r(63692),r(864),r(54243),r(11519),r(71016),r(75621),r(26267),r(50095),r(33451),r(30603),r(29362),r(52326),r(36629),r(74587),r(80329),r(66777),r(25082),r(47421),r(32122),r(6306),r(26338),r(90216),r(84663),r(92332),r(52631),r(53008),r(98329),r(9631),r(12638),r(47091),r(59660),r(15383),r(92866),r(86107),r(29248),r(52540),r(79007),r(77199),r(6522),r(95542),r(2966),r(20997),r(57400),r(45571),r(54800),r(15709),r(76059),r(96614),r(324),r(90426),r(95443),r(87968),r(55007),r(55323),r(13521),r(5006),r(99009),r(42719),r(85770),r(23532),r(87119),r(78618),r(27129),r(31943),r(3579),r(97397),r(85028),r(8225),r(43331),r(62289),r(56196),r(2950),r(44205),r(79861),r(11137),r(76882),r(83186),r(76065),r(13411),r(26634),r(53118),r(42514),r(84353),r(30694),r(62987),r(48993),r(52917),r(4972),r(28913),r(36382),r(53092),r(93361),r(14128),r(69861),r(70570),r(29674),r(81543),r(9373),r(45093),r(63074),r(5815),r(88527),r(66390),r(7784),r(50551),r(76483),r(92046),r(63915),r(38054),r(51454),r(67075),r(79669),r(23057),r(24199),r(10280),r(57983),r(17953),r(78592),r(50814),r(32407),r(52462),r(66133),r(55146),r(26580),r(89939),r(30442),r(6403),r(9867),r(43673),r(30569),r(12354),r(22515),r(14089),r(5143),r(93514),r(5416),r(11619),r(44590),r(17024),r(63272),r(39930),r(4038),r(95689),r(3388),r(8448),r(70604),r(34965),r(95309),r(82256),r(49484),r(38931),r(39308),r(91550),r(75008),r(56027),r(50340),r(34325),r(74498),r(15812),r(57726),r(80756),r(70567),r(66756),r(60037),r(44195),r(24575),r(71968),r(78824),r(72846),r(79042),r(99872),r(73364),r(58166),r(23793),r(43820),r(13917),r(62557),r(78256),r(19852),r(40379),r(92770),r(81069),r(63689),r(5659),r(25014),r(32189),r(23030),r(24309),r(49110),r(56445),r(30939),r(48321),r(88739),r(60415),r(72532),r(62207),r(42153),r(53262),r(906),r(7811),r(22385),r(90846),r(40348),r(99243),r(15209),r(11446),r(91127),r(91001),r(54913),r(47773),r(83006),r(25764),r(11573),r(63908),r(69401),r(90690),r(41172),r(74755),r(83826),r(92950),r(1105),r(73612),r(27895),r(61765)}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={id:n,loaded:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.loaded=!0,i.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var n={};return(()=>{"use strict";r.r(n),r.d(n,{AbsoluteLayout:()=>Vu,AudioPlayer:()=>Ig,CardLayout:()=>Ju,Component:()=>$a,Connectable:()=>fc,Container:()=>Sd,ContainerAbstract:()=>As,DEFAULT:()=>si,DPPX:()=>ii,DataSource:()=>Gm,Donut:()=>vm,Ellipse:()=>uv,EventMap:()=>Hp,FPS:()=>hw,GESTURES:()=>ai,GifView:()=>kg,GlobalRef:()=>Ib,Group:()=>eb,HTMLAbsoluteLayout:()=>Du,HTMLOverlayContainer:()=>wb,HTMLOverlayElement:()=>sg,ImageView:()=>rg,InfoWindow:()=>ju,KEYEVENTS:()=>ui,Layer:()=>Bs,Layout:()=>Cu,Line:()=>Zd,LinearHorizontalLayout:()=>ts,LinearVerticalLayout:()=>ns,LocalRef:()=>hb,MAX_UNDO_SIZE:()=>oi,MODE_ADD:()=>ti,MODE_EDIT:()=>Zo,MODE_PASTE_DATABIND:()=>ri,MODE_PASTE_STYLE:()=>ei,MODE_SHIFT:()=>$o,MODE_VIEW:()=>Jo,Model:()=>pw,MoveHandle:()=>vs,NOTHING:()=>Ko,OrthoLine:()=>Wv,Path:()=>Jb,Polygon:()=>gv,Polyline:()=>Mv,Popup:()=>Gb,Rect:()=>wc,RectPath:()=>gu,ReferenceMap:()=>Jm,RootContainer:()=>xy,Ruler:()=>jc,SCENE_MODE:()=>ni,Scene:()=>Ky,ScenePopup:()=>Xu,ScriptLoader:()=>uw,Shape:()=>su,Star:()=>Em,TableLayout:()=>is,Text:()=>Ug,Triangle:()=>am,ValueHolder:()=>Lm,create:()=>ed,debug:()=>xo,error:()=>mo,license:()=>yw,polyfill:()=>a,version:()=>sw,warn:()=>wo});var t={};r.r(t),r.d(t,{append:()=>Yn,clear:()=>Qn,forEach:()=>Xn,getAt:()=>Wn,indexOf:()=>qn,insertAt:()=>Un,moveBackward:()=>Jn,moveForward:()=>Kn,moveToHead:()=>Zn,moveToTail:()=>$n,prepend:()=>Gn,remove:()=>Hn,size:()=>Vn});var e={};r.r(e),r.d(e,{pop:()=>eo,push:()=>to});var o={};r.r(o),r.d(o,{clear:()=>Qo,intercept:()=>qo,reset:()=>Vo});var i={};r.r(i),r.d(i,{compile:()=>Ff,duplicate:()=>zf,match:()=>yi,select:()=>gi}),r(65645),r(95012),r(80272);const a="done";"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var o in n)n.hasOwnProperty(o)&&(e[o]=n[o])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){var e=[];for(var r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,o,i,a,u){this.save(),this.translate(t,e),this.rotate(o),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,i,a,u),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),o=Math.max(0,33-(n-t)),i=window.setTimeout((function(){e(n+o)}),o);return t=n+o,i}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});const u=function(t,e){return t===e||t!=t&&e!=e},s=function(t,e){for(var r=t.length;r--;)if(u(t[r][0],e))return r;return-1};var c=Array.prototype.splice;function f(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}f.prototype.clear=function(){this.__data__=[],this.size=0},f.prototype.delete=function(t){var e=this.__data__,r=s(e,t);return!(r<0||(r==e.length-1?e.pop():c.call(e,r,1),--this.size,0))},f.prototype.get=function(t){var e=this.__data__,r=s(e,t);return r<0?void 0:e[r][1]},f.prototype.has=function(t){return s(this.__data__,t)>-1},f.prototype.set=function(t,e){var r=this.__data__,n=s(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};const l=f;function h(t){return h="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},h(t)}const p="object"==("undefined"==typeof global?"undefined":h(global))&&global&&global.Object===Object&&global;function y(t){return y="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},y(t)}var d="object"==("undefined"==typeof self?"undefined":y(self))&&self&&self.Object===Object&&self;const v=p||d||Function("return this")(),g=v.Symbol;var b=Object.prototype,m=b.hasOwnProperty,w=b.toString,x=g?g.toStringTag:void 0;var k=Object.prototype.toString;var S=g?g.toStringTag:void 0;const _=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":S&&S in Object(t)?function(t){var e=m.call(t,x),r=t[x];try{t[x]=void 0;var n=!0}catch(t){}var o=w.call(t);return n&&(e?t[x]=r:delete t[x]),o}(t):function(t){return k.call(t)}(t)};function O(t){return O="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},O(t)}const E=function(t){var e=O(t);return null!=t&&("object"==e||"function"==e)},A=function(t){if(!E(t))return!1;var e=_(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e},P=v["__core-js_shared__"];var j,T=(j=/[^.]+$/.exec(P&&P.keys&&P.keys.IE_PROTO||""))?"Symbol(src)_1."+j:"";var M=Function.prototype.toString;const R=function(t){if(null!=t){try{return M.call(t)}catch(t){}try{return t+""}catch(t){}}return""};var I=/^\[object .+?Constructor\]$/,C=Function.prototype,L=Object.prototype,D=C.toString,B=L.hasOwnProperty,N=RegExp("^"+D.call(B).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const F=function(t){return!(!E(t)||(e=t,T&&T in e))&&(A(t)?N:I).test(R(t));var e},z=function(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return F(r)?r:void 0},U=z(v,"Map"),Y=z(Object,"create");var G=Object.prototype.hasOwnProperty;var H=Object.prototype.hasOwnProperty;function W(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}W.prototype.clear=function(){this.__data__=Y?Y(null):{},this.size=0},W.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},W.prototype.get=function(t){var e=this.__data__;if(Y){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return G.call(e,t)?e[t]:void 0},W.prototype.has=function(t){var e=this.__data__;return Y?void 0!==e[t]:H.call(e,t)},W.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=Y&&void 0===e?"__lodash_hash_undefined__":e,this};const X=W;function q(t){return q="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},q(t)}const V=function(t,e){var r=t.__data__;return function(t){var e=q(t);return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?r["string"==typeof e?"string":"hash"]:r.map};function Q(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}Q.prototype.clear=function(){this.size=0,this.__data__={hash:new X,map:new(U||l),string:new X}},Q.prototype.delete=function(t){var e=V(this,t).delete(t);return this.size-=e?1:0,e},Q.prototype.get=function(t){return V(this,t).get(t)},Q.prototype.has=function(t){return V(this,t).has(t)},Q.prototype.set=function(t,e){var r=V(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};const K=Q;function J(t){var e=this.__data__=new l(t);this.size=e.size}J.prototype.clear=function(){this.__data__=new l,this.size=0},J.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},J.prototype.get=function(t){return this.__data__.get(t)},J.prototype.has=function(t){return this.__data__.has(t)},J.prototype.set=function(t,e){var r=this.__data__;if(r instanceof l){var n=r.__data__;if(!U||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new K(n)}return r.set(t,e),this.size=r.size,this};const Z=J;function $(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new K;++e<r;)this.add(t[e])}$.prototype.add=$.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},$.prototype.has=function(t){return this.__data__.has(t)};const tt=$,et=function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1},rt=function(t,e,r,n,o,i){var a=1&r,u=t.length,s=e.length;if(u!=s&&!(a&&s>u))return!1;var c=i.get(t),f=i.get(e);if(c&&f)return c==e&&f==t;var l=-1,h=!0,p=2&r?new tt:void 0;for(i.set(t,e),i.set(e,t);++l<u;){var y=t[l],d=e[l];if(n)var v=a?n(d,y,l,e,t,i):n(y,d,l,t,e,i);if(void 0!==v){if(v)continue;h=!1;break}if(p){if(!et(e,(function(t,e){if(a=e,!p.has(a)&&(y===t||o(y,t,r,n,i)))return p.push(e);var a}))){h=!1;break}}else if(y!==d&&!o(y,d,r,n,i)){h=!1;break}}return i.delete(t),i.delete(e),h},nt=v.Uint8Array,ot=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r},it=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r};var at=g?g.prototype:void 0,ut=at?at.valueOf:void 0;const st=function(t,e){for(var r=-1,n=e.length,o=t.length;++r<n;)t[o+r]=e[r];return t},ct=Array.isArray,ft=function(t,e,r){var n=e(t);return ct(t)?n:st(n,r(t))},lt=function(){return[]};var ht=Object.prototype.propertyIsEnumerable,pt=Object.getOwnPropertySymbols;const yt=pt?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,o=0,i=[];++r<n;){var a=t[r];e(a,r,t)&&(i[o++]=a)}return i}(pt(t),(function(e){return ht.call(t,e)})))}:lt;function dt(t){return dt="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},dt(t)}const vt=function(t){return null!=t&&"object"==dt(t)},gt=function(t){return vt(t)&&"[object Arguments]"==_(t)};var bt=Object.prototype,mt=bt.hasOwnProperty,wt=bt.propertyIsEnumerable,xt=gt(function(){return arguments}())?gt:function(t){return vt(t)&&mt.call(t,"callee")&&!wt.call(t,"callee")};const kt=xt;function St(t){return St="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},St(t)}var _t="object"==("undefined"==typeof exports?"undefined":St(exports))&&exports&&!exports.nodeType&&exports,Ot=_t&&"object"==("undefined"==typeof module?"undefined":St(module))&&module&&!module.nodeType&&module,Et=Ot&&Ot.exports===_t?v.Buffer:void 0;const At=(Et?Et.isBuffer:void 0)||function(){return!1};function Pt(t){return Pt="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},Pt(t)}var jt=/^(?:0|[1-9]\d*)$/;const Tt=function(t,e){var r=Pt(t);return!!(e=null==e?9007199254740991:e)&&("number"==r||"symbol"!=r&&jt.test(t))&&t>-1&&t%1==0&&t<e},Mt=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991};var Rt={};Rt["[object Float32Array]"]=Rt["[object Float64Array]"]=Rt["[object Int8Array]"]=Rt["[object Int16Array]"]=Rt["[object Int32Array]"]=Rt["[object Uint8Array]"]=Rt["[object Uint8ClampedArray]"]=Rt["[object Uint16Array]"]=Rt["[object Uint32Array]"]=!0,Rt["[object Arguments]"]=Rt["[object Array]"]=Rt["[object ArrayBuffer]"]=Rt["[object Boolean]"]=Rt["[object DataView]"]=Rt["[object Date]"]=Rt["[object Error]"]=Rt["[object Function]"]=Rt["[object Map]"]=Rt["[object Number]"]=Rt["[object Object]"]=Rt["[object RegExp]"]=Rt["[object Set]"]=Rt["[object String]"]=Rt["[object WeakMap]"]=!1;const It=function(t){return function(e){return t(e)}};function Ct(t){return Ct="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},Ct(t)}var Lt="object"==("undefined"==typeof exports?"undefined":Ct(exports))&&exports&&!exports.nodeType&&exports,Dt=Lt&&"object"==("undefined"==typeof module?"undefined":Ct(module))&&module&&!module.nodeType&&module,Bt=Dt&&Dt.exports===Lt&&p.process;const Nt=function(){try{return Dt&&Dt.require&&Dt.require("util").types||Bt&&Bt.binding&&Bt.binding("util")}catch(t){}}();var Ft=Nt&&Nt.isTypedArray;const zt=Ft?It(Ft):function(t){return vt(t)&&Mt(t.length)&&!!Rt[_(t)]};var Ut=Object.prototype.hasOwnProperty;const Yt=function(t,e){var r=ct(t),n=!r&&kt(t),o=!r&&!n&&At(t),i=!r&&!n&&!o&&zt(t),a=r||n||o||i,u=a?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],s=u.length;for(var c in t)!e&&!Ut.call(t,c)||a&&("length"==c||o&&("offset"==c||"parent"==c)||i&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||Tt(c,s))||u.push(c);return u};var Gt=Object.prototype;const Ht=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||Gt)},Wt=function(t,e){return function(r){return t(e(r))}},Xt=Wt(Object.keys,Object);var qt=Object.prototype.hasOwnProperty;const Vt=function(t){if(!Ht(t))return Xt(t);var e=[];for(var r in Object(t))qt.call(t,r)&&"constructor"!=r&&e.push(r);return e},Qt=function(t){return null!=t&&Mt(t.length)&&!A(t)},Kt=function(t){return Qt(t)?Yt(t):Vt(t)},Jt=function(t){return ft(t,Kt,yt)};var Zt=Object.prototype.hasOwnProperty;const $t=z(v,"DataView"),te=z(v,"Promise"),ee=z(v,"Set"),re=z(v,"WeakMap");var ne="[object Map]",oe="[object Promise]",ie="[object Set]",ae="[object WeakMap]",ue="[object DataView]",se=R($t),ce=R(U),fe=R(te),le=R(ee),he=R(re),pe=_;($t&&pe(new $t(new ArrayBuffer(1)))!=ue||U&&pe(new U)!=ne||te&&pe(te.resolve())!=oe||ee&&pe(new ee)!=ie||re&&pe(new re)!=ae)&&(pe=function(t){var e=_(t),r="[object Object]"==e?t.constructor:void 0,n=r?R(r):"";if(n)switch(n){case se:return ue;case ce:return ne;case fe:return oe;case le:return ie;case he:return ae}return e});const ye=pe;var de="[object Arguments]",ve="[object Array]",ge="[object Object]",be=Object.prototype.hasOwnProperty;const me=function(t,e,r,n,o,i){var a=ct(t),s=ct(e),c=a?ve:ye(t),f=s?ve:ye(e),l=(c=c==de?ge:c)==ge,h=(f=f==de?ge:f)==ge,p=c==f;if(p&&At(t)){if(!At(e))return!1;a=!0,l=!1}if(p&&!l)return i||(i=new Z),a||zt(t)?rt(t,e,r,n,o,i):function(t,e,r,n,o,i,a){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!i(new nt(t),new nt(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return u(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var s=ot;case"[object Set]":var c=1&n;if(s||(s=it),t.size!=e.size&&!c)return!1;var f=a.get(t);if(f)return f==e;n|=2,a.set(t,e);var l=rt(s(t),s(e),n,o,i,a);return a.delete(t),l;case"[object Symbol]":if(ut)return ut.call(t)==ut.call(e)}return!1}(t,e,c,r,n,o,i);if(!(1&r)){var y=l&&be.call(t,"__wrapped__"),d=h&&be.call(e,"__wrapped__");if(y||d){var v=y?t.value():t,g=d?e.value():e;return i||(i=new Z),o(v,g,r,n,i)}}return!!p&&(i||(i=new Z),function(t,e,r,n,o,i){var a=1&r,u=Jt(t),s=u.length;if(s!=Jt(e).length&&!a)return!1;for(var c=s;c--;){var f=u[c];if(!(a?f in e:Zt.call(e,f)))return!1}var l=i.get(t),h=i.get(e);if(l&&h)return l==e&&h==t;var p=!0;i.set(t,e),i.set(e,t);for(var y=a;++c<s;){var d=t[f=u[c]],v=e[f];if(n)var g=a?n(v,d,f,e,t,i):n(d,v,f,t,e,i);if(!(void 0===g?d===v||o(d,v,r,n,i):g)){p=!1;break}y||(y="constructor"==f)}if(p&&!y){var b=t.constructor,m=e.constructor;b==m||!("constructor"in t)||!("constructor"in e)||"function"==typeof b&&b instanceof b&&"function"==typeof m&&m instanceof m||(p=!1)}return i.delete(t),i.delete(e),p}(t,e,r,n,o,i))},we=function t(e,r,n,o,i){return e===r||(null==e||null==r||!vt(e)&&!vt(r)?e!=e&&r!=r:me(e,r,n,o,t,i))},xe=function(t,e){return we(t,e)},ke=function(){try{var t=z(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),Se=function(t,e,r){"__proto__"==e&&ke?ke(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r};var _e=Object.prototype.hasOwnProperty;const Oe=function(t,e,r){var n=t[e];_e.call(t,e)&&u(n,r)&&(void 0!==r||e in t)||Se(t,e,r)},Ee=function(t,e,r,n){var o=!r;r||(r={});for(var i=-1,a=e.length;++i<a;){var u=e[i],s=n?n(r[u],t[u],u,r,t):void 0;void 0===s&&(s=t[u]),o?Se(r,u,s):Oe(r,u,s)}return r},Ae=function(t){return t},Pe=function(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)};var je=Math.max;const Te=function(t){return function(){return t}},Me=ke?function(t,e){return ke(t,"toString",{configurable:!0,enumerable:!1,value:Te(e),writable:!0})}:Ae;var Re=Date.now;const Ie=function(t){var e=0,r=0;return function(){var n=Re(),o=16-(n-r);if(r=n,o>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(Me),Ce=function(t,e){return Ie(function(t,e,r){return e=je(void 0===e?t.length-1:e,0),function(){for(var n=arguments,o=-1,i=je(n.length-e,0),a=Array(i);++o<i;)a[o]=n[e+o];o=-1;for(var u=Array(e+1);++o<e;)u[o]=n[o];return u[e]=r(a),Pe(t,this,u)}}(t,e,Ae),t+"")};function Le(t){return Le="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},Le(t)}const De=function(t,e,r){if(!E(r))return!1;var n=Le(e);return!!("number"==n?Qt(r)&&Tt(e,r.length):"string"==n&&e in r)&&u(r[e],t)};var Be=Object.prototype.hasOwnProperty;const Ne=function(t){if(!E(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=Ht(t),r=[];for(var n in t)("constructor"!=n||!e&&Be.call(t,n))&&r.push(n);return r},Fe=function(t){return Qt(t)?Yt(t,!0):Ne(t)},ze=(Ue=function(t,e,r,n){Ee(e,Fe(e),t,n)},Ce((function(t,e){var r=-1,n=e.length,o=n>1?e[n-1]:void 0,i=n>2?e[2]:void 0;for(o=Ue.length>3&&"function"==typeof o?(n--,o):void 0,i&&De(e[0],e[1],i)&&(o=n<3?void 0:o,n=1),t=Object(t);++r<n;){var a=e[r];a&&Ue(t,a,r,o)}return t})));var Ue;const Ye=Wt(Object.getPrototypeOf,Object);var Ge=Function.prototype,He=Object.prototype,We=Ge.toString,Xe=He.hasOwnProperty,qe=We.call(Object);const Ve=function(t){if(!vt(t))return!1;var e=_(t);return"[object Error]"==e||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!vt(t)||"[object Object]"!=_(t))return!1;var e=Ye(t);if(null===e)return!0;var r=Xe.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&We.call(r)==qe}(t)},Qe=Ce((function(t,e){try{return Pe(t,void 0,e)}catch(t){return Ve(t)?t:new Error(t)}})),Ke=function(t,e){for(var r=-1,n=null==t?0:t.length,o=Array(n);++r<n;)o[r]=e(t[r],r,t);return o};var Je=Object.prototype,Ze=Je.hasOwnProperty;const $e=function(t,e,r,n){return void 0===t||u(t,Je[r])&&!Ze.call(n,r)?e:t};var tr={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};const er=function(t){return"\\"+tr[t]},rr=/<%=([\s\S]+?)%>/g,nr=(or={"&":"&","<":"<",">":">",'"':""","'":"'"},function(t){return null==or?void 0:or[t]});var or;function ir(t){return ir="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},ir(t)}const ar=function(t){return"symbol"==ir(t)||vt(t)&&"[object Symbol]"==_(t)};var ur=g?g.prototype:void 0,sr=ur?ur.toString:void 0;const cr=function t(e){if("string"==typeof e)return e;if(ct(e))return Ke(e,t)+"";if(ar(e))return sr?sr.call(e):"";var r=e+"";return"0"==r&&1/e==-1/0?"-0":r},fr=function(t){return null==t?"":cr(t)};var lr=/[&<>"']/g,hr=RegExp(lr.source);const pr={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:rr,variable:"",imports:{_:{escape:function(t){return(t=fr(t))&&hr.test(t)?t.replace(lr,nr):t}}}};var yr=/\b__p \+= '';/g,dr=/\b(__p \+=) '' \+/g,vr=/(__e\(.*?\)|\b__t\)) \+\n'';/g,gr=/[()=,{}\[\]\/\s]/,br=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,mr=/($^)/,wr=/['\n\r\u2028\u2029\\]/g,xr=Object.prototype.hasOwnProperty;const kr={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(var e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};function Sr(t){return Sr="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},Sr(t)}function _r(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Or(n.key),n)}}function Or(t){var e=function(t){if("object"!=Sr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Sr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Sr(e)?e:e+""}var Er=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.client=e,this.config=r,this._started=!1;var n=this.config,o=n.delta,i=void 0===o?"linear":o,a=n.options,u=n.ease;"string"==typeof i&&(i=kr[i]),this.delta="out"==u?function(t,e){return function(r){return 1-t(1-r,e)}}(i,a):"inout"==u?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,a):i,this.init()},(e=[{key:"dispose",value:function(){this.stop(),delete this.client}},{key:"init",value:function(){}},{key:"start",value:function(){var t=this;if(!this._started){var e=this.config,r=e.duration,n=void 0===r?2e3:r,o=e.delay,i=void 0===o?0:o,a=e.repeat,u=void 0!==a&&a,s=e.interval,c=void 0===s?0:s;this._started=!0;var f=0,l=0,h=function(){if(t._raf=null,t._timeout=null,t._started){0==f&&(f=performance.now(),t.client.touch());var e=performance.now()-f,r=Math.max((e-i)%(n+c),0)/n,o=c<=0&&l>r;if(l=r,r>=1||o){if(t.step(1),t.client&&t.client.invalidate(),!u||!t._started)return t.stop(),void(f=0);if(c>0)return void(t._timeout=setTimeout((function(){t.step(0),t.client&&t.client.invalidate(),t._timeout=setTimeout(h,c/2)}),c/2))}else t.step(t.delta(r)),t.client&&t.client.invalidate();t._raf=requestAnimationFrame(h)}};this._raf=requestAnimationFrame(h)}}},{key:"stop",value:function(){this._raf&&cancelAnimationFrame(this._raf),this._timeout&&clearTimeout(this._timeout),this._raf=null,this._timeout=null,this._started=!1}},{key:"started",get:function(){return this._started},set:function(t){this.started!=!!t&&(t?this.start():this.stop())}}])&&_r(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Ar(t){return Ar="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},Ar(t)}function Pr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,jr(n.key),n)}}function jr(t){var e=function(t){if("object"!=Ar(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ar(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ar(e)?e:e+""}function Tr(t,e,r){return e=Rr(e),function(t,e){if(e&&("object"==Ar(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Mr()?Reflect.construct(e,r||[],Rr(t).constructor):e.apply(t,r))}function Mr(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Mr=function(){return!!t})()}function Rr(t){return Rr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Rr(t)}function Ir(t,e){return Ir=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ir(t,e)}var Cr=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Tr(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ir(t,e)}(e,t),r=e,n=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?6.28:e;this.client.delta("theta",t*r)}}],n&&Pr(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Er);function Lr(t){return Lr="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},Lr(t)}function Dr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Br(n.key),n)}}function Br(t){var e=function(t){if("object"!=Lr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Lr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Lr(e)?e:e+""}function Nr(t,e,r){return e=zr(e),function(t,e){if(e&&("object"==Lr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Fr()?Reflect.construct(e,r||[],zr(t).constructor):e.apply(t,r))}function Fr(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Fr=function(){return!!t})()}function zr(t){return zr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zr(t)}function Ur(t,e){return Ur=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ur(t,e)}var Yr=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Nr(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ur(t,e)}(e,t),r=e,n=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?.2617993877991494:e,n=4*r,o=t*n;t<1/4?o*=-1:t<3/4?o-=2*r:o=n-o,this.client.delta("theta",o)}}],n&&Dr(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Er);function Gr(t){return Gr="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},Gr(t)}function Hr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Wr(n.key),n)}}function Wr(t){var e=function(t){if("object"!=Gr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Gr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Gr(e)?e:e+""}function Xr(t,e,r){return e=Vr(e),function(t,e){if(e&&("object"==Gr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,qr()?Reflect.construct(e,r||[],Vr(t).constructor):e.apply(t,r))}function qr(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(qr=function(){return!!t})()}function Vr(t){return Vr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Vr(t)}function Qr(t,e){return Qr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qr(t,e)}var Kr=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Xr(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qr(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e,r=this.config.scale,n=2*((void 0===r?1.3:r)-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}}])&&Hr(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Er);function Jr(t){return Jr="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},Jr(t)}function Zr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,$r(n.key),n)}}function $r(t){var e=function(t){if("object"!=Jr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Jr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Jr(e)?e:e+""}function tn(t,e,r){return e=rn(e),function(t,e){if(e&&("object"==Jr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,en()?Reflect.construct(e,r||[],rn(t).constructor):e.apply(t,r))}function en(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(en=function(){return!!t})()}function rn(t){return rn=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},rn(t)}function nn(t,e){return nn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},nn(t,e)}var on=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),tn(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nn(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e=this.config,r=e.x,n=void 0===r?0:r,o=e.y,i=void 0===o?0:o;this.client.delta("tx",t*n),this.client.delta("ty",t*i)}}])&&Zr(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Er);function an(t){return an="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},an(t)}function un(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,sn(n.key),n)}}function sn(t){var e=function(t){if("object"!=an(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=an(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==an(e)?e:e+""}function cn(t,e,r){return e=ln(e),function(t,e){if(e&&("object"==an(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,fn()?Reflect.construct(e,r||[],ln(t).constructor):e.apply(t,r))}function fn(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(fn=function(){return!!t})()}function ln(t){return ln=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ln(t)}function hn(t,e){return hn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},hn(t,e)}var pn=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),cn(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&hn(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e=this.config.rideOn,r=this.client;if(e&&r&&r.root){var n=r.root.findById(e);if(n){var o=r.delta(),i=o.tx,a=o.ty,u=n.outline(t),s=r.center,c=r.transcoordS2T(s.x,s.y);n&&(r.delta("tx",u.x-c.x+i),r.delta("ty",u.y-c.y+a))}}}}])&&un(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Er);function yn(t){return yn="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},yn(t)}function dn(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,vn(n.key),n)}}function vn(t){var e=function(t){if("object"!=yn(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=yn(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==yn(e)?e:e+""}function gn(t,e,r){return e=mn(e),function(t,e){if(e&&("object"==yn(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,bn()?Reflect.construct(e,r||[],mn(t).constructor):e.apply(t,r))}function bn(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(bn=function(){return!!t})()}function mn(t){return mn=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},mn(t)}function wn(t,e){return wn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},wn(t,e)}var xn=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),gn(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&wn(t,e)}(e,t),r=e,n=[{key:"step",value:function(t){var e,r=this.config,n=r.startAlpha,o=void 0===n?1:n,i=r.endAlpha,a=void 0===i?0:i,u=Math.max(Math.min(o,a,1),0),s=2*(Math.min(Math.max(o,a,1),1)-u);e=t<.5?s*t:(1-t)*s,this.client.delta("fade",e)}}],n&&dn(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Er),kn={rotation:Cr,vibration:Yr,heartbeat:Kr,moving:on,outline:pn,fade:xn};function Sn(t){var e=t.duration,r=void 0===e?1e3:e,n=(t.delay,t.step),o=t.delta,i=t.ease,a=t.options,u=t.repeat,s=void 0!==u&&u;"string"==typeof o&&(o=kr[o]),"out"==i?o=function(t,e){return function(r){return 1-t(1-r,e)}}(o,a):"inout"==i&&(o=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(o,a));var c=!1;return{start:function(){var t=this;if(c)return this;c=!0;var e=0,i=function(){if(c){0==e&&(e=performance.now());var u=(performance.now()-e)/r,f=s?u%1:Math.min(u,1);n(o(f,a)),!(u>=1)||s&&c||(t.stop(),e=0),c&&requestAnimationFrame(i)}};return requestAnimationFrame(i),this},stop:function(){return c=!1,this}}}var _n=/\s/;var On=/^\s+/;const En=function(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&_n.test(t.charAt(e)););return e}(t)+1).replace(On,""):t};var An=/^[-+]0x[0-9a-f]+$/i,Pn=/^0b[01]+$/i,jn=/^0o[0-7]+$/i,Tn=parseInt;const Mn=function(t){if("number"==typeof t)return t;if(ar(t))return NaN;if(E(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=E(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=En(t);var r=Pn.test(t);return r||jn.test(t)?Tn(t.slice(2),r?2:8):An.test(t)?NaN:+t};var Rn=1/0;const In=function(t){var e=function(t){return t?(t=Mn(t))===Rn||t===-1/0?17976931348623157e292*(t<0?-1:1):t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0},Cn=function(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError("Expected a function");return t=In(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)};var Ln=Object.prototype.hasOwnProperty;const Dn=function(t){if(null==t)return!0;if(Qt(t)&&(ct(t)||"string"==typeof t||"function"==typeof t.splice||At(t)||zt(t)||kt(t)))return!t.length;var e=ye(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Ht(t))return!Vt(t).length;for(var r in t)if(Ln.call(t,r))return!1;return!0};function Bn(t){return Bn="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},Bn(t)}var Nn=0;function Fn(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};"object"!=Bn(t)&&(t={});for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return r.forEach((function(e){var r=function(r){"object"!=Bn(e[r])?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((function(t){return"object"!=Bn(e[r])?t:Fn({},t)})):t[r]=Fn(t[r],e[r])};for(var n in e)r(n)})),t}function zn(t){for(;t&&"object"===Bn(t);){var e=t;for(var r in t){t=t[r];break}if(t===e){t=void 0;break}}return t}function Un(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this}function Yn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this}function Gn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this}function Hn(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this}function Wn(t){if(this.__collection__)return this.__collection__[t]}function Xn(t,e){this.__collection__&&this.__collection__.forEach(t,e)}function qn(t){if(this.__collection__)return this.__collection__.indexOf(t)}function Vn(){return this.__collection__?this.__collection__.length:0}function Qn(){this.__collection__=[]}function Kn(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)}function Jn(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)}function Zn(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}}function $n(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}function to(t){throw new Error("Not Implemented Yet")}function eo(t){throw new Error("Not Implemented Yet")}function ro(){}function no(t){return no="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},no(t)}ro.prototype=t;var oo=/\s+/;function io(t,e,r,n){if(!r)return!0;if("object"==no(r)){for(var o in r){var i=r[o];t[e].apply(t,[o,i])}return!1}return!oo.test(r)||(r.split(oo).forEach((function(r){return t[e].apply(t,[r].concat(n))})),!1)}var ao=["on","off","once","delegate_on","delegate_off","trigger","listenTo"],uo={withEvent:function(){var t=this;ao.forEach((function(e){return t[e]=uo[e]}))},on:function(t,e,r){return io(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once:function(t,e,r){if(!io(this,"once",t,[e,r])||!e)return this;var n=this,o=Cn((function(){n.off(t,o),e.apply(n,arguments)}));o._callback=e,this.on(t,o,r)},off:function(t,e,r){if(!this._listeners||!io(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(var o=0;o<n.length;o++){var i=n[o],a=this._listeners[i];if(a){var u=[];if(this._listeners[i]=u,e||r)for(var s=0;s<a.length;s++){var c=a[s];(e&&e!==c.callback&&e!==c.callback._callback||r&&r!==c.context)&&u.push(c)}u.length||delete this._listeners[i]}}return this},delegate_on:function(t){return this._delegators||(this._delegators=new ro),this._delegators.append(t),this},delegate_off:function(t){return this._delegators?(this._delegators.remove(t),this):this},delegate:function(){if(this._delegators&&this._delegators.size()>0&&co(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&so(r,arguments),n&&so(n,arguments),this},trigger:function(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&co(this._delegators,e),!this._listeners)return this;if(!io(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&so(r,e),n&&so(n,e),this},stopListening:function(t,e,r){var n=this._listeningTo;if(!n)return this;var o=!e&&!r;for(var i in r||"object"!=no(e)||(r=this),t&&((n={})[t._listenId]=t),n){var a=n[i];a.off(e,r,this),(o||Dn(a._events))&&delete this._listeningTo[i]}return this}};function so(t,e){t.forEach((function(t){return t.callback.apply(t.ctx,e)}))}function co(t,e){t.forEach((function(t){return uo.delegate.apply(t,e)}))}var fo={listenTo:"on",listenToOnce:"once"};for(var lo in fo){var ho=fo[lo];uo[lo]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId="".concat("l").concat(++Nn)),n[t._listenId]=t,r||"object"!=no(e)||(r=this),t[ho](e,r,this),this}}const po=uo;function yo(t,e){if(e instanceof Array)e.forEach((function(e){return yo(t,e)}));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error("found cyclic dependencies between ".concat(t.mixingIn));t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}"undefined"==typeof window||window;var vo="[ERROR]",go="[WARN]",bo="[DEBUG]",mo=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).error.apply(t,[vo].concat(n,[e.join(" ")]))},wo=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).warn.apply(t,[go].concat(n,[e.join(" ")]))},xo=function(){for(var t,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];return(t=console).log.apply(t,[bo].concat(r))};function ko(t){return ko="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},ko(t)}var So="object"==("undefined"==typeof exports?"undefined":ko(exports))&&exports&&!exports.nodeType&&exports,_o=So&&"object"==("undefined"==typeof module?"undefined":ko(module))&&module&&!module.nodeType&&module,Oo=_o&&_o.exports===So?v.Buffer:void 0,Eo=Oo?Oo.allocUnsafe:void 0;const Ao=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)st(e,yt(t)),t=Ye(t);return e}:lt,Po=function(t){return ft(t,Fe,Ao)};var jo=Object.prototype.hasOwnProperty;const To=function(t){var e=new t.constructor(t.byteLength);return new nt(e).set(new nt(t)),e};var Mo=/\w*$/;var Ro=g?g.prototype:void 0,Io=Ro?Ro.valueOf:void 0;const Co=function(t,e,r){var n,o,i,a=t.constructor;switch(e){case"[object ArrayBuffer]":return To(t);case"[object Boolean]":case"[object Date]":return new a(+t);case"[object DataView]":return function(t,e){var r=e?To(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(t,e){var r=e?To(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case"[object Map]":case"[object Set]":return new a;case"[object Number]":case"[object String]":return new a(t);case"[object RegExp]":return(i=new(o=t).constructor(o.source,Mo.exec(o))).lastIndex=o.lastIndex,i;case"[object Symbol]":return n=t,Io?Object(Io.call(n)):{}}};var Lo=Object.create;const Do=function(){function t(){}return function(e){if(!E(e))return{};if(Lo)return Lo(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}();var Bo=Nt&&Nt.isMap;const No=Bo?It(Bo):function(t){return vt(t)&&"[object Map]"==ye(t)};var Fo=Nt&&Nt.isSet;const zo=Fo?It(Fo):function(t){return vt(t)&&"[object Set]"==ye(t)};var Uo="[object Arguments]",Yo="[object Function]",Go="[object Object]",Ho={};Ho[Uo]=Ho["[object Array]"]=Ho["[object ArrayBuffer]"]=Ho["[object DataView]"]=Ho["[object Boolean]"]=Ho["[object Date]"]=Ho["[object Float32Array]"]=Ho["[object Float64Array]"]=Ho["[object Int8Array]"]=Ho["[object Int16Array]"]=Ho["[object Int32Array]"]=Ho["[object Map]"]=Ho["[object Number]"]=Ho[Go]=Ho["[object RegExp]"]=Ho["[object Set]"]=Ho["[object String]"]=Ho["[object Symbol]"]=Ho["[object Uint8Array]"]=Ho["[object Uint8ClampedArray]"]=Ho["[object Uint16Array]"]=Ho["[object Uint32Array]"]=!0,Ho["[object Error]"]=Ho[Yo]=Ho["[object WeakMap]"]=!1;const Wo=function t(e,r,n,o,i,a){var u,s=1&r,c=2&r,f=4&r;if(n&&(u=i?n(e,o,i,a):n(e)),void 0!==u)return u;if(!E(e))return e;var l=ct(e);if(l){if(u=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&jo.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(e),!s)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(e,u)}else{var h=ye(e),p=h==Yo||"[object GeneratorFunction]"==h;if(At(e))return function(t,e){if(e)return t.slice();var r=t.length,n=Eo?Eo(r):new t.constructor(r);return t.copy(n),n}(e,s);if(h==Go||h==Uo||p&&!i){if(u=c||p?{}:function(t){return"function"!=typeof t.constructor||Ht(t)?{}:Do(Ye(t))}(e),!s)return c?function(t,e){return Ee(t,Ao(t),e)}(e,function(t,e){return t&&Ee(e,Fe(e),t)}(u,e)):function(t,e){return Ee(t,yt(t),e)}(e,function(t,e){return t&&Ee(e,Kt(e),t)}(u,e))}else{if(!Ho[h])return i?e:{};u=Co(e,h,s)}}a||(a=new Z);var y=a.get(e);if(y)return y;a.set(e,u),zo(e)?e.forEach((function(o){u.add(t(o,r,n,o,e,a))})):No(e)&&e.forEach((function(o,i){u.set(i,t(o,r,n,i,e,a))}));var d=l?void 0:(f?c?Po:Jt:c?Fe:Kt)(e);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(d||e,(function(o,i){d&&(o=e[i=o]),Oe(u,i,t(o,r,n,i,e,a))})),u},Xo=function(t){return Wo(t,4)};function qo(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),Xo(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):mo("".concat(e," is not defined in ").concat(t.constructor.name))}function Vo(t){t.__cache__={}}function Qo(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];0==r.length?t.__cache__={}:r.forEach((function(e){return delete t.__cache__[e]}))}var Ko={},Jo=0,Zo=1,$o=2,ti=3,ei=4,ri=5,ni={VIEW:0,EDIT:1,SHIFT:2,ADD:3},oi=30,ii="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,ai=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],ui=["keydown","keyup"],si={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid"},ci={x:1,y:1};function fi(t,e,r){var n=e.left,o=void 0===n?0:n,i=e.top,a=void 0===i?0:i,u=e.blurSize,s=void 0===u?0:u,c=e.color,f=void 0===c?"transparent":c,l=r.rootModel.get("scale")||ci;t.shadowOffsetX=o*l.x*ii,t.shadowOffsetY=a*l.y*ii,t.shadowBlur=s*l.x*ii,t.shadowColor=f}var li={gradation:function(t,e,r){r.type;var n=r.subType,o=r.from,i=r.to,a=r.colors;switch(n){case"linear":var u=e.createLinearGradient(o.x,o.y,i.x,i.y);break;case"radial":u=e.createRadialGradient(o.x,o.y,o.r,i.x,i.y,i.r);break;default:u=e.createLinearGradient(o.x,o.y,i.x,i.y)}a&&(a.forEach((function(t){u.addColorStop(t.endPoint,t.color)})),e.fillStyle=u,e.fill())},shadow:fi};function hi(t,e,r,n){var o=e.get("class");return!!o&&(o.split(" ")||[]).indexOf(t.substr(1))>=0}function pi(t,e,r,n){return t==e.get("type")}function yi(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e){return t.substr(1)==e.get("id")}(t,e);case".":return hi(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return pi(t,e)}}function di(t,e,r,n,o,i){return t(e,r,n,o)&&i.push(r),r.components&&r.components.forEach((function(r){di(t,e,r,n,o,i)})),i}function vi(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function gi(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":return e.root.findAllById(t.substr(1))||[];case".":n=hi;break;case"(":n=vi;break;default:n=pi}return di(n,t,e,r,e,[])}var bi=r(59877),mi=r.n(bi),wi=function(t){return t};function xi(t){if(!t)return wi;try{var e=mi()(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),wi}}function ki(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Si(t){var e=zn(t);return null==e?"":String(e)}function _i(t){return Number(zn(t))}function Oi(t){return t}function Ei(t){return Si(t)}function Ai(t){return _i(t)}function Pi(t){if(this.param)return t=Si(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function ji(t){var e,r,n=this.param;if(n){for(var o in n){var i=(e=o.split("~"),r=2,function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(e,r)||function(t,e){if(t){if("string"==typeof t)return ki(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ki(t,e):void 0}}(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=i[0],u=i[1],s=!!a,c=!!u;if(a=parseFloat(a),u=parseFloat(u),t=_i(t),s&&!c&&t>=a)return n[o];if(!s&&c&&t<a)return n[o];if(t>=a&&t<u)return n[o]}return n.default}}function Ti(t){return _i(t)*Math.PI/180}function Mi(){}function Ri(t,e,r,n,o){switch(r){case"value":return"text"===o||"string"===o?Ei.bind(t):"number"===o?Ai.bind(t):Oi.bind(e);case"map":return Pi.bind(t);case"range":return ji.bind(t);case"radian":return Ti.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return mo(t),Mi}}(n).bind(e);default:return Oi.bind(e)}}function Ii(t){return Ii="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},Ii(t)}function Ci(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Li(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Di(n.key),n)}}function Di(t){var e=function(t){if("object"!=Ii(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ii(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ii(e)?e:e+""}var Bi,Ni=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.owner=r,this.model=e},(e=[{key:"dispose",value:function(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor,delete this.source}},{key:"model",get:function(){return this._model},set:function(t){var e=t.target,r=t.property,n=t.rule,o=t.param,i=t.accessor;this._model=t,this.evaluator=Ri(this,this.owner,n,o,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=xi(i);var a=e.match(/\[(.*?)\]/);if(a){var u=function(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(t,e)||function(t,e){if(t){if("string"==typeof t)return Ci(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Ci(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(a[1].split(":"),2),s=u[0],c=u[1];this.propAccessor=xi(s),this.partAccessor=xi(c)}}},{key:"target",get:function(){return this.model.target}},{key:"property",get:function(){return this.model.property}},{key:"source",get:function(){return this.model.source}},{key:"param",get:function(){return this.model.param}},{key:"ndnsp",get:function(){return!!this.model.ndnsp}},{key:"partial",get:function(){return!!this.model.partial}}])&&Li(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Fi(t){return Fi="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},Fi(t)}function zi(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Ui(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?zi(Object(r),!0).forEach((function(e){Yi(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):zi(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Yi(t,e,r){return(e=function(t){var e=function(t){if("object"!=Fi(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Fi(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Fi(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Gi(t,e,r,n){n?t.forEach((function(t){return t[e]=Ui(Ui({},t[e]),r)})):t.forEach((function(t){return t[e]=r}))}function Hi(){var t=this;(arguments.length>0&&void 0!==arguments[0]&&arguments[0]||void 0!==this.data)&&this.mappings&&this.mappings.forEach((function(e){try{var r,n,o=e.source,i=e.target,a=e.property,u=e.accessor,s=e.propAccessor,c=e.partAccessor,f=e.ndnsp,l=void 0!==f&&f,h=e.partial,p=void 0!==h&&h;o&&"(self)"!=o?(o.startsWith("#")&&(o=o.substring(1)),r=(null===(n=t.root.findById(o))||void 0===n?void 0:n.data)||{}):r=t.data;var y=u(r);if("(root)"==(i=i.trim())||"(key)"==i){if(null==y)return;var d=Object.keys(y||{}).map((function(e){return t.root.findOrCreate(e)})).filter(Boolean).flat();d.length>0&&d.forEach((function(t){var r=e.evaluator(y[t.get("id")],[t]);!a||"(action)"===a||l&&!r&&0!==r&&!1!==r||(t[a]=p?Ui(Ui({},t[a]),r):r)}))}else if(i.startsWith("[")){if(null==y)return;if(y instanceof Array)y.forEach((function(r){var n=s(r);if(n){var o=t.root.findOrCreate(n);if(o){var i=e.evaluator(c(r),o);!a||"(action)"===a||l&&!i&&0!==i&&!1!==i||Gi(o,a,i,p)}}}));else{if(!(y instanceof Object))throw String("mapping data should be an object to target property-id.("+y+")");var v=s(y);if(v){var g=t.root.findOrCreate(v);if(g){var b=e.evaluator(c(y),g);!a||"(action)"===a||l&&!b&&0!==b&&!1!==b||Gi(g,a,b,p)}}}}else{var m=t.root.findAll(i,t);if(m.length>0){var w=e.evaluator(y,m);!a||"(action)"===a||l&&!w&&0!==w&&!1!==w||Gi(m,a,w,p)}}}catch(r){mo(r,t,e)}}))}function Wi(t){return Wi="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},Wi(t)}function Xi(t,e,r,n,o){var i=n.alpha,a=void 0===i?1:i,u=o.fillStyle;if(t.globalAlpha*=a,u)if("string"==typeof u)t.fillStyle=u,t.fill();else if("object"==Wi(u))if("gradient"==u.type){t.translate(r.x,r.y);var s,c=e.width,f=e.height;if("linear"==u.gradientType){var l=3.141592653589793,h=u.rotation;if(h>=.436332&&h<=1.13446||h>=2.00713&&h<=2.70526||h>=3.57792&&h<=4.27606||h>=5.14872&&h<=5.84685){var p=Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));p-=p-(c+f)/3,s=t.createLinearGradient(p*Math.cos(h+l),p*Math.sin(h+l),p*Math.cos(h),p*Math.sin(h))}else s=t.createLinearGradient((c-4)/2*Math.cos(h+l),(f-4)/2*Math.sin(h+l),(c-4)/2*Math.cos(h),(f-4)/2*Math.sin(h))}else if("radial"==u.gradientType){var y=.95*Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));switch(u.center){case"center":default:s=t.createRadialGradient(0,0,0,0,0,y);break;case"left-top":s=t.createRadialGradient(-c/2,-f/2,0,-c/2,-f/2,2*y);break;case"right-top":s=t.createRadialGradient(c/2,-f/2,0,c/2,-f/2,2*y);break;case"left-bottom":s=t.createRadialGradient(-c/2,f/2,0,-c/2,f/2,2*y);break;case"right-bottom":s=t.createRadialGradient(c/2,f/2,0,c/2,f/2,2*y)}}u.colorStops.forEach((function(t){if(t.position>=0&&t.position<=1)try{s.addColorStop(t.position,t.color)}catch(e){wo("Invalid Color for colorstop : ",t.color),s.addColorStop(t.position,"#fff")}})),t.fillStyle=s,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==u.type&&u.image){o.prepareFillIf(!o._pattern_image_origin);var d=o._pattern_image;if(!d)return;var v=0,g=0,b=0,m=0,w=e.left,x=e.top;if(!u.fitPattern){v=u.offsetX,g=u.offsetY;var k=u.width?u.width:d.width,S=u.height?u.height:d.height;switch(u.align){case"center":b=e.width/2-k/2,m=e.height/2-S/2;break;case"left-top":b=0,m=0;break;case"left-bottom":b=0,m=e.height-S;break;case"right-top":b=e.width-k,m=0;break;case"right-bottom":b=e.width-k,m=e.height-S;break;case"left":b=0,m=e.height/2-S/2;break;case"right":b=e.width-k,m=e.height/2-S/2;break;case"top":b=e.width/2-k/2,m=0;break;case"bottom":b=e.width/2-k/2,m=e.height-S}w+=v+b,x+=g+m}t.translate(w,x),u.color&&(t.fillStyle=u.color,t.fill()),u.fitPattern?Math.abs((d.width-e.width)*(d.height-e.height))>1?(delete o._pattern_image,delete o._pattern_image_origin):t.fillStyle=t.createPattern(d,"no-repeat"):t.fillStyle=t.createPattern(d,u.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-w,-x)}}function qi(t,e,r){var n=e.strokeStyle,o=e.lineDash,i=e.lineWidth,a=e.lineCap,u=e.lineJoin,s=e.alpha;if(n&&0!=i){if(a&&(t.lineCap=a),o){var c="round"==a;switch(o){case"solid":o=[0,0];break;case"round-dot":o=c?[0,2*i]:[i,i];break;case"square-dot":o=c?[i,2*i]:[2*i,i];break;case"dash":o=c?[3*i,2.5*i]:[4*i,1.5*i];break;case"dash-dot":o=c?[3*i,3*i,0,3*i]:[4*i,2*i,i,2*i];break;case"long-dash":o=c?[5*i,4*i]:[6*i,3*i];break;case"long-dash-dot":o=c?[5*i,3*i,0,3*i]:[6*i,2*i,i,2*i];break;case"long-dash-dot-dot":o=c?[5*i,2*i,0,2*i,0,2*i]:[6*i,i,i,i,i,i]}t.setLineDash(o)}t.globalAlpha*=s,t.strokeStyle=n,t.lineWidth=i,t.lineJoin=u,t.stroke()}}function Vi(t){return Vi="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},Vi(t)}function Qi(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Ki(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Qi(Object(r),!0).forEach((function(e){Ji(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Qi(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ji(t,e,r){return(e=function(t){var e=function(t){if("object"!=Vi(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Vi(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Vi(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Zi(t,e,r,n,o){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,a=arguments.length>6&&void 0!==arguments[6]&&arguments[6],u=!(arguments.length>7&&void 0!==arguments[7])||arguments[7];i="number"==typeof i?{tl:i,tr:i,br:i,bl:i}:Ki(Ki({},{tl:0,tr:0,br:0,bl:0}),i),t.beginPath(),t.moveTo(e+i.tl,r),t.lineTo(e+n-i.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+i.tr),t.lineTo(e+n,r+o-i.br),t.quadraticCurveTo(e+n,r+o,e+n-i.br,r+o),t.lineTo(e+i.bl,r+o),t.quadraticCurveTo(e,r+o,e,r+o-i.bl),t.lineTo(e,r+i.tl),t.quadraticCurveTo(e,r,e+i.tl,r),t.closePath(),a&&t.fill(),u&&t.stroke()}function $i(t){return $i="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},$i(t)}function ta(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return ea(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ea(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function ea(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function ra(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function na(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ra(Object(r),!0).forEach((function(e){oa(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ra(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function oa(t,e,r){return(e=function(t){var e=function(t){if("object"!=$i(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=$i(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==$i(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ia(t){for(var e,r=/(\*\*|__)(.*?)\1|(\*|_)(.*?)\3|([^\*_]+)/g,n=[];null!==(e=r.exec(t));)e[1]?n.push({text:e[2],bold:!0,italic:!1}):e[3]?n.push({text:e[4],bold:!1,italic:!0}):e[5]&&n.push({text:e[5],bold:!1,italic:!1});return n}function aa(t,e,r){if(e.text.length<2)return e;for(var n=2;n<e.text.length;n++){var o=e.text.substring(0,n);if(!(t.measureText(o).width<r))break}return na(na({},e),{},{text:e.text.substring(0,n-1)})}function ua(t,e,r,n,o,i){if(!n)return[];t.save(),t.font=r;var a=function(t,e,r,n,o){var i=String(e).split("\n");return n?[].concat.apply([],i.map((function(e){return function(t,e,r){var n=[],o=[],i=0;return e.forEach((function(e){for(var a=e.text;a.length>0;){var u=r-i,s=t.measureText(a).width;if(s<=u)o.push(na(na({},e),{},{text:a})),i+=s,a="";else{var c=aa(t,na(na({},e),{},{text:a}),u);o.push(c),n.push(o),o=[],i=0,a=a.substring(c.text.length)}}})),o.length>0&&n.push(o),n}(t,o?ia(e):[{text:e,bold:!1,italic:!1}],r)}))):i.map((function(t){return o?ia(t):[{text:t,bold:!1,italic:!1}]}))}(t,n,e,!!o,i);return t.restore(),a}function sa(t){var e=t.fontFamily,r=void 0===e?si.FONT_FAMILY:e,n=t.bold,o=void 0===n?si.BOLD:n,i=t.italic,a=void 0===i?si.ITALIC:i,u=t.fontSize,s=void 0===u?si.FONT_SIZE:u,c=[];return o&&c.push("bold"),a&&c.push("italic"),c.push(s+"px"),c.push(r),c.join(" ")}function ca(t,e){var r=t.bold||e.bold,n=t.italic||e.italic,o=[];return r&&o.push("bold"),n&&o.push("italic"),o.push(t.fontSize+"px"),o.push(t.fontFamily),o.join(" ")}function fa(t,e,r,n){var o=n.alpha,i=n.fontColor,a=void 0===i?si.FONT_COLOR:i,u=n.textAlign,s=void 0===u?si.TEXT_ALIGN:u,c=n.textBaseline,f=void 0===c?si.TEXT_BASELINE:c,l=n.textBackgroundStyle,h=n.fontSize,p=n.lineHeight,y=n.textWrap,d=(n.supportMarkdown,n.textOverflow);void 0===(void 0===n.bold&&si.BOLD,n.italic)&&si.ITALIC,o=void 0!==o?o:1,h||(h=si.FONT_SIZE),p||(p=1.2*h),t.save(),t.beginPath();var v=e.left,g=e.top,b=e.width,m=e.height;if(t.font=sa(n),!y&&d){var w=function(t,e,r,n){var o,i="ellipsis"===t?"…":"",a=e.measureText(i).width,u=[],s=0,c=ta(r);try{for(c.s();!(o=c.n()).done;){var f,l=o.value,h=[],p=ta(l);try{for(p.s();!(f=p.n()).done;){var y=f.value,d=e.measureText(y.text).width;if(!(s+d<=n-("ellipsis"===t?a:0))){var v=la(e,y,n-s-("ellipsis"===t?a:0),t);return h.push(v),u.push(h),u}h.push(y),s+=d}}catch(t){p.e(t)}finally{p.f()}u.push(h),s=0}}catch(t){c.e(t)}finally{c.f()}return u}(d,t,r,b);r=w}var x,k=r.length*p;switch(f){case"top":x=g,t.textBaseline="top";break;case"bottom":x=g+m-k+p,t.textBaseline="bottom";break;default:x=g+m/2-k/2+p/2,t.textBaseline="middle"}t.globalAlpha*=o,t.fillStyle=a,r.forEach((function(e,o){var i=x+o*p,u=function(t,e,r){return e.reduce((function(e,n){return t.font=ca(r,n),e+t.measureText(n.text).width}),0)}(t,e,n),c=v;switch(s){case"left":case"justify":c=v;break;case"right":c=v+b-u;break;case"center":c=v+(b-u)/2}if(l&&(t.fillStyle=l,Zi(t,c-4,i-h/2-4,u+8,h+8,4,!0,!1),t.fillStyle=a),"justify"===s&&o<r.length-1&&e.length>1){var f=b-u,y=e.length-1,d=f/y;e.forEach((function(e,r){t.font=ca(n,e),t.fillText(e.text,c,i),c+=t.measureText(e.text).width+(r<y?d:0)}))}else e.forEach((function(e){t.font=ca(n,e),t.fillText(e.text,c,i),c+=t.measureText(e.text).width}))})),t.restore()}function la(t,e,r,n){for(var o="",i=0;i<e.text.length;i++){var a=o+e.text[i];if(t.measureText(a).width>r)break;o=a}return na(na({},e),{},{text:o+("ellipsis"===n?"…":"")})}function ha(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(-n)-e*Math.sin(-n)+r.x)/o.x,y:(t*Math.sin(-n)+e*Math.cos(-n)+r.y)/o.y}}function pa(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(n)-e*Math.sin(n)+r.x)*o.x,y:(t*Math.sin(n)+e*Math.cos(n)+r.y)*o.y}}Bi="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};var ya={x:1,y:1},da={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function va(t){var e=t.state,r=e.id,n=e.scale,o=void 0===n?ya:n,i=(e.translate,e.bold),a=e.italic,u=e.fontFamily,s=void 0===u?"":u,c=e.textAlign,f=e.textBaseline,l=(e.textOverflow,e.paddingTop),h=e.paddingBottom,p=e.paddingLeft,y=e.paddingRight,d=e.fontSize,v=void 0===d?si.FONT_SIZE:d,g=e.lineWidth,b=void 0===g?0:g,m=e.lineDash;h||(h=0),l||(l=0),p||(p=0),y||(y=0);var w=t.state.class,x=(t.text,t.strokeStyle),k=(t.fillStyle,t.rotation),S=void 0===k?0:k,_=t.fontColor,O=t.hidden,E=t.bounds,A=E.left,P=E.top,j=E.width,T=E.height,M=t.element;M.hidden=O,r&&(M.id=r),w&&(M.className=w),Object.assign(M.style,da,{fontFamily:s,fontSize:v+"px",left:A+"px",top:P+"px",width:j+"px",height:T+"px",paddingTop:l+"px",paddingRight:y+"px",paddingBottom:h+"px",paddingLeft:p+"px",border:b+"px",borderColor:x,borderStyle:b>0?m||si.LINE_DASH:"",color:_,fontWeight:i?"bold":"",fontStyle:a?"italic":"",textAlign:"end"==c?"right":"start"==c?"left":c,verticalAlign:f}),function(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize="".concat(r.width?r.width+"px":"auto"," ").concat(r.height?r.height+"px":"auto"):n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{var o=r.offsetX,i=r.offsetY,a=r.noRepeat,u=r.align,s=r.color;if(a&&(n.backgroundRepeat="no-repeat"),s&&(n.backgroundColor=s),u)switch(u){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else o||i?n.backgroundPosition="".concat(Number(o)||0,"px ").concat(Number(i)||0,"px"):delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var r=t.bounds,n=r.width,o=r.height;switch(e){case"center":return[n/2,o/2];case"left-top":return[0,0];case"right-top":return[n,0];case"left-bottom":return[0,o];default:return[n,o]}}(t,e.center||"center").map((function(t){return t+"px"})).join(" ")+","+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90)+"deg, "+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")"}return""}(t,r)}else n.background="transparent"}(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,r=t.state.shadow,n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i,u=r.blurSize,s=void 0===u?0:u,c=r.color,f=void 0===c?"transparent":c;e.style.boxShadow="".concat(o,"px ").concat(a,"px ").concat(s,"px ").concat(f)}}(t);var R=t.delta(),I=(o&&o.x||1)*R.sx,C=(o&&o.y||1)*R.sy,L=(S||0)+R.theta,D=R.tx||0,B=R.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){M.style[t+"transform"]="rotate(".concat(L,"rad) translate(").concat(D,"px, ").concat(B,"px) scale(").concat(I,", ").concat(C,") perspective(1px)")}))}const ga=function(){return v.Date.now()};var ba=Math.max,ma=Math.min;const wa=function(t,e,r){var n,o,i,a,u,s,c=0,f=!1,l=!1,h=!0;if("function"!=typeof t)throw new TypeError("Expected a function");function p(e){var r=n,i=o;return n=o=void 0,c=e,a=t.apply(i,r)}function y(t){var r=t-s;return void 0===s||r>=e||r<0||l&&t-c>=i}function d(){var t=ga();if(y(t))return v(t);u=setTimeout(d,function(t){var r=e-(t-s);return l?ma(r,i-(t-c)):r}(t))}function v(t){return u=void 0,h&&n?p(t):(n=o=void 0,a)}function g(){var t=ga(),r=y(t);if(n=arguments,o=this,s=t,r){if(void 0===u)return function(t){return c=t,u=setTimeout(d,e),f?p(t):a}(s);if(l)return clearTimeout(u),u=setTimeout(d,e),p(s)}return void 0===u&&(u=setTimeout(d,e)),a}return e=Mn(e)||0,E(r)&&(f=!!r.leading,i=(l="maxWait"in r)?ba(Mn(r.maxWait)||0,e):i,h="trailing"in r?!!r.trailing:h),g.cancel=function(){void 0!==u&&clearTimeout(u),c=0,n=s=o=u=void 0},g.flush=function(){return void 0===u?a:v(ga())},g},xa=function(t,e,r){var n=!0,o=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return E(r)&&(n="leading"in r?!!r.leading:n,o="trailing"in r?!!r.trailing:o),wa(t,e,{leading:n,maxWait:e,trailing:o})};function ka(t){return ka="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},ka(t)}function Sa(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,_a(n.key),n)}}function _a(t){var e=function(t){if("object"!=ka(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ka(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ka(e)?e:e+""}var Oa,Ea=[];function Aa(){Oa=null;var t=performance.now(),e=(Ea=Ea.filter((function(t){return Pa(t)}))).reduce((function(e,r){var n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((function(t){var e=Ea.indexOf(t);-1!=e?(Ea.splice(e,1),t.removeSelf(!0)):mo("Should not be here. Maybe reentrance problem.")})),e.next>0&&(Oa=setTimeout(ja,Math.max(e.next,500)))}function Pa(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var ja=xa((function(){requestAnimationFrame(Aa)}),500);const Ta=new(function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)},(e=[{key:"add",value:function(t){Pa(t)&&-1==Ea.indexOf(t)&&(Ea.push(t),t.touch()),this.touch()}},{key:"remove",value:function(t){var e=Ea.indexOf(t);e>0&&Ea.splice(e,1),this.touch()}},{key:"touch",value:function(){null!==Oa&&(clearTimeout(Oa),Oa=null),ja()}},{key:"length",get:function(){return Ea.length}}])&&Sa(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}());var Ma=function(t){return t};function Ra(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var o=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((function(t){return!!t.trim()})),i=o.slice(1);return{defaultValue:n,match:t,originText:r||t,target:o[0],accessor:i.length>0?function(t){return i.reduce((function(t,e){return t?t[e]:void 0}),t)}:Ma}}function Ia(t,e,r){if(t){var n=r||zn,o=String(t),i=(o.match(/#{[^}]*}/gi)||[]).map((function(t){return Ra(t)})),a=(o.match(/\${[^}]*}/gi)||[]).map((function(t){return Ra(t)}));if(0!=i.length||0!=a.length)return function(){var t=o;return i.forEach((function(r){var o=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===o?r.defaultValue||"":o)})),a.forEach((function(r){var o=e.root.findById(r.target),i=n(r.accessor(o&&o.data));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),t}}}var Ca=210*Math.PI/180,La=150*Math.PI/180,Da={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;return t.mappings&&t.mappings.forEach((function(r){var o=t.root.findAll(r.target,t);o&&(e.lineWidth=2,o.forEach((function(r){var o=t.center,i=r.center;o=t.transcoordS2C(o.x,o.y,t.rootModel),i=r.transcoordS2C(i.x,i.y,r.rootModel),e.beginPath();var a=e.createLinearGradient(o.x,o.y,i.x,i.y);["#FFA50033","#FFA500"].forEach((function(t,e){return a.addColorStop(e,t)})),e.strokeStyle=a,e.fillStyle=a,function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,o=r.x-e.x,i=r.y-e.y,a=Math.atan2(i,o),u=r.x+n*Math.cos(a+Ca),s=r.y+n*Math.sin(a+Ca),c=r.x+n*Math.cos(a+La),f=r.y+n*Math.sin(a+La);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(u,s),t.moveTo(r.x,r.y),t.lineTo(c,f),t.stroke()}(e,o,i),n=!0})))})),n}},"bouncing-arrow":function(t,e,r){var n=t.bounds,o=n.left,i=n.top,a=n.width,u=t.state.id,s=t.transcoordS2C(o+a/2,i,t.rootModel),c=s.x,f=s.y,l=2*function(t){var e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(c=Math.max(c,20),f=Math.max(f,20),e.beginPath(),e.moveTo(c-10,f-16+l),e.lineTo(c+10,f-16+l),e.lineTo(c+10,f-8+l),e.lineTo(c+16,f-8+l),e.lineTo(c,f+l),e.lineTo(c-16,f-8+l),e.lineTo(c-10,f-8+l),e.lineTo(c-10,f-16+l),e.lineTo(c-10,f-16+l),e.fillStyle="#FF0000",e.fill(),u){e.beginPath(),e.font="12px Arial";var h=e.measureText(u);e.fillStyle="#FF0000",e.roundRect(c-h.actualBoundingBoxLeft-3+20,f-h.actualBoundingBoxAscent-3-6+l,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+6,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(u,c+20,f-6+l)}return!0},decotag:function(t,e,r){var n=t.decotag;if(n){var o=t.bounds,i=o.left,a=o.top,u=t.transcoordS2C(i,a,t.rootModel),s=u.x,c=u.y;s=Math.max(s+3,5),c=Math.max(c-8,15),e.font="12px Arial";var f=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(s-f.actualBoundingBoxLeft-3,c-f.actualBoundingBoxAscent-3,f.actualBoundingBoxLeft+f.actualBoundingBoxRight+6,f.actualBoundingBoxAscent+f.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,s,c),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((function(r){var o=r.name,i=r.position||{},a=i.x,u=i.y;if(o){var s=t.transcoordS2C(a,u,t.rootModel);a=s.x,u=s.y,a+=4,u+=4,e.font="12px Arial";var c=e.measureText(o);e.fillStyle="#FF0000",Zi(e,a,u,c.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(o,a+3,u+13),n=!0}})),n}},link:function(t,e,r){var n=!1;if(t.isLine())return[t.fromEnd,t.toEnd].filter(Boolean).forEach((function(t){var r=t.component,o=t.anchor;if(o){var i=o||{},a=i.name,u=i.position;if(a&&u){var s=u||{},c=s.x,f=s.y,l=r.transcoordS2C(c,f,r.rootModel);c=l.x,f=l.y,c+=8,f+=20,e.font="12px Arial";var h=e.measureText(a);e.fillStyle="#FF0000",Zi(e,c-h.actualBoundingBoxLeft-4,f-h.actualBoundingBoxAscent-4,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+8,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(a,c,f),n=!0}}})),n}};function Ba(t){return Da[t]}function Na(t){return Na="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},Na(t)}function Fa(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function za(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Fa(Object(r),!0).forEach((function(e){Ua(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Fa(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ua(t,e,r){return(e=Wa(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ya(){Ya=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==Na(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(Na(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},_(O.prototype),c(O.prototype,u,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function Ga(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function Ha(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Wa(n.key),n)}}function Wa(t){var e=function(t){if("object"!=Na(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Na(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Na(e)?e:e+""}var Xa={},qa={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},Va=[],Qa={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0},Ka=0,Ja={},Za=new FinalizationRegistry((function(t){!function(t){Ka--;var e=Ja[t];e||(e=Ja[t]={up:0,down:0}),e.down++}(t)})),$a=function(){return t=function t(e,r){var n,o;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._app=r,this._model=e||{},this._state={},this._delta=Xo(Qa),r&&null!==(n=this.animation)&&void 0!==n&&n.config&&(1==this.animation.config.autoplay||null===(o=this.animation.config.autoplay)||void 0===o||o)&&(this.animation.started=!0),this.clearCache(),Ta.add(this),function(t){Ka++;var e=Ja[t];e||(e=Ja[t]={up:0,down:0}),e.up++}(e.type),Za.register(this,e.type)},e=[{key:"created",value:function(){}},{key:"added",value:function(t){}},{key:"removed",value:function(t){}},{key:"ready",value:(n=Ya().mark((function t(){var e,r,n;return Ya().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!this.state.persistent){t.next=6;break}if(e=this.app,r=e.isViewMode,n=e.dataStorage,!r){t.next=6;break}return t.next=5,n.load(this);case 5:this.data=t.sent;case 6:case"end":return t.stop()}}),t,this)})),i=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=n.apply(t,e);function a(t){Ga(i,r,o,a,u,"next",t)}function u(t){Ga(i,r,o,a,u,"throw",t)}a(void 0)}))},function(){return i.apply(this,arguments)})},{key:"touch",value:function(){this.updatedAt=performance.now()}},{key:"clearCache",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];Qo.apply(o,[this].concat(e))}},{key:"removeSelf",value:function(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}},{key:"dispose",value:function(){this._animation&&(this._animation.dispose(),delete this._animation),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&Ta.touch(),this.clearCache(),delete this._app}},{key:"nature",get:function(){return this.constructor.nature}},{key:"disposed",get:function(){return!!this._disposed}},{key:"isLayer",value:function(){return!1}},{key:"isGroup",value:function(){return!1}},{key:"isContainer",value:function(){return!1}},{key:"isLine",value:function(){return!1}},{key:"isRoot",value:function(){return!1}},{key:"isRootModel",value:function(){return!1}},{key:"is3dish",value:function(){return!1}},{key:"isTemplate",value:function(){return!!this.get("templatePrefix")}},{key:"isHTMLElement",value:function(){return!1}},{key:"isConnectable",value:function(){return!1}},{key:"isIdentifiable",value:function(){return!0}},{key:"replaceRefids",value:function(t){}},{key:"retention",get:function(){return Number(this.get("retention"))||0}},{key:"hasTextProperty",get:function(){return!0}},{key:"app",get:function(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}},{key:"model",get:function(){return this._model}},{key:"state",get:function(){return Object.assign({},this._model,this._state)}},{key:"hierarchy",get:function(){var t=Xo(this._model);return this.volatile.forEach((function(e){delete t[e]})),t}},{key:"volatile",get:function(){return Va}},{key:"textHidden",get:function(){return!!this._textHidden},set:function(t){this._textHidden=!!t,this.invalidate()}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,e){if("string"==typeof t)return this.set(Ua({},t,e));var r={},n={},o=!1,i=(t=Xo(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){var a=i._model[e],u=t[e];xe(a,u)||(n[e]=a,r[e]=u,i._model[e]=u,delete i._state[e],o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&Ta.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"getState",value:function(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}},{key:"setState",value:function(t,e){if("string"==typeof t)return this.setState(Ua({},t,e));var r={},n={},o=!1,i=(t=Xo(t),this),a=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){var u=i.getState(e),s=t[e];!a&&xe(u,s)||(n[e]=u,r[e]=s,i._state[e]=s,o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"root",get:function(){return this.isRoot()?this:this.parent&&this.parent.root}},{key:"rootModel",get:function(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}},{key:"parent",get:function(){return this._parent},set:function(t){this._parent=t}},{key:"anchors",get:function(){return this.nature.anchors||[]}},{key:"findAnchor",value:function(t){return this.anchors.find((function(e){return e.name===t}))}},{key:"isDescendible",value:function(t){return!0}},{key:"getContext",value:function(){return this._parent.getContext()}},{key:"center",get:function(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}},set:function(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((function(t){return{x:t.x+r,y:t.y+n}}))}}}},{key:"location",get:function(){var t=this.center;return{x:t.x,y:t.y,z:this.state.zPos}},set:function(t){var e=t||{},r=e.x,n=e.y,o=e.z;this.center={x:r,y:n},isNaN(o)||this.setState("zPos",Number(o))}},{key:"rotate",get:function(){var t=this.state;return{x:t.rotationX,y:t.rotationY,z:-t.rotation}},set:function(t){var e=t.x,r=t.y,n=t.z;this.setState({rotationX:e,rotationY:r,rotation:-n})}},{key:"dimension",get:function(){var t=this.bounds;return{width:t.width,height:t.height,depth:this.state.depth}},set:function(t){var e=t.width,r=t.height,n=t.depth,o=this.bounds,i=o.top,a=o.left;this.bounds={top:i,left:a,width:e,height:r},this.setState("depth",n)}},{key:"bounds",get:function(){var t,e,r,n,o=this.path;t=e=o[0].x,r=n=o[0].y;for(var i=1;i<o.length;i++){var a=o[i];a.x<t?t=a.x:a.x>e&&(e=a.x),a.y<r?r=a.y:a.y>n&&(n=a.y)}return{left:t,top:r,width:e-t,height:n-r}},set:function(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((function(o){return{x:t.left+(o.x-e.left)*r,y:t.top+(o.y-e.top)*n}}))}}},{key:"path",get:function(){return mo("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]},set:function(t){mo("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}},{key:"drawPath",get:function(){return this.path}},{key:"outline",value:function(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,o=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){var i=r[n-1],a=r[n],u=a.x-i.x,s=a.y-i.y;o.push(Math.sqrt(u*u+s*s)),n++}var c=o.reduce((function(t,e){return t+e}),0);n=0;var f=0;do{f+=o[n++]}while(f/c<e);e=(e-(f-=o[--n])/c)*(c/o[n]);var l=r[n%r.length],h=r[(n+1)%r.length],p=l.x+Math.round((h.x-l.x)*e),y=l.y+Math.round((h.y-l.y)*e);return t.transcoordS2T(p,y)}mo("path should not be empty")}(this,t||0)}},{key:"strokeStyle",get:function(){return this.get("strokeStyle")},set:function(t){this.set("strokeStyle",t)}},{key:"fillStyle",get:function(){return this.getState("fillStyle")},set:function(t){this.setState("fillStyle",t)}},{key:"fontColor",get:function(){return this.get("fontColor")},set:function(t){this.set("fontColor",String(zn(t)))}},{key:"rotation",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",Number(zn(t)))}},{key:"contains",value:function(t,e){return!1}},{key:"mutable",get:function(){return this.nature.mutable}},{key:"resizable",get:function(){return this.nature.resizable&&!this.stuck}},{key:"adjustResize",value:function(t,e,r){if(r){var n=this.bounds,o=n.height/n.width,i=t.width-n.width,a=t.height-n.height;i*o>a?a=i*o:i=a/o;var u=t.left-n.left,s=t.top-n.top;return 0!=u&&0!=s?(s=-a,u=-i):0!=u?u=-i:0!=s&&(s=-a),{left:n.left+u,top:n.top+s,width:n.width+i,height:n.height+a}}return t}},{key:"rotatable",get:function(){return this.nature.rotatable&&!this.stuck}},{key:"adjustRotation",value:function(t,e){if(e||this.app.rotateStepForced){var r=this.app.rotateStep;return Math.floor((t+r/2)/r)*r}return t}},{key:"capturable",get:function(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}},{key:"stuck",get:function(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(t.apply(void 0,[this].concat(r)))return this}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return"string"==typeof t?gi(t,this,r[0]||this):"function"==typeof t&&t.apply(void 0,[this].concat(r))?[this]:void 0}},{key:"capture",value:function(t,e,r){if(!this.capturable||null!=r&&r(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}},{key:"prepare",value:function(t,e){t(this)}},{key:"prepareIf",value:function(t){var e=this;t&&this.prepare&&this.prepare((function(t){e.invalidate()}),(function(t){mo(t)}))}},{key:"decotag",get:function(){var t=this.state,e=t.id,r=t.tag;return(e?"#".concat(e):"")+(r?"@".concat(r):"")}},{key:"decorators",get:function(){return["decotag","data-spread"]}},{key:"reactionDecorators",get:function(){return["bouncing-arrow"]}},{key:"hidden",get:function(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()},set:function(t){this.setState("hidden",t)}},{key:"draw",value:function(t){t.save(),this.__proto__.hasOwnProperty("_pre_draw")?this._pre_draw(t):this.prerender(t),this.__proto__.hasOwnProperty("_draw")?this._draw(t):this.render(t),this.__proto__.hasOwnProperty("_post_draw")?this._post_draw(t):this.postrender(t),t.restore()}},{key:"delta",value:function(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}},{key:"prerender",value:function(t){var e=this.rotatePoint,r=this.state,n=r.scale,o=r.rotation,i=r.shadow,a=r.alpha,u=(n&&n.x||1)*this._delta.sx,s=(n&&n.y||1)*this._delta.sy,c=(o||0)+this._delta.theta,f=this._delta,l=f.tx,h=void 0===l?0:l,p=f.ty,y=void 0===p?0:p,d=(a||1)-this._delta.fade;(h||y)&&t.translate(h,y),(1!=u||1!=s||c)&&(t.translate(e.x,e.y),1==u&&1==s||t.scale(u,s),c&&t.rotate(c),t.translate(-e.x,-e.y)),d&&(t.globalAlpha=d),i&&fi(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){this.drawText(t)}},{key:"drawText",value:function(t){!this.textHidden&&this.text&&this.hasTextProperty&&fa(t,this.textBounds,this.textLines(t),this.state)}},{key:"drawStroke",value:function(t,e){qi(t,e?za(za({},this.state),e):this.state)}},{key:"drawFill",value:function(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(Xi(t,this.bounds,this.center,e?za(za({},this.state),e):this.state,this),function(t){t.shadowColor="transparent"}(t))}},{key:"animate",value:function(t){return this._animate&&this._animate.stop(),this._animate=Sn(t),this._animate}},{key:"move",value:function(t){var e=t.x,r=t.y,n=this.path,o=e,i=r;this.path=n.map((function(t){return{x:t.x+o,y:t.y+i}}))}},{key:"symmetryX",value:function(t){"number"!=typeof t&&(t=this.center.x);var e=this.state.rotation,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=Xo(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((function(e){return{x:2*t-e.x,y:e.y}}))}},{key:"symmetryY",value:function(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}},{key:"animation",get:function(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=(e=t.oncreate,(r=kn[e.type])?new r(this,e):null))}var e,r;return this._animation}}},{key:"effect",value:function(t,e){return function(t,e,r){var n=li[r.type];n&&n(t,e,r)}(this,t,e)}},{key:"started",set:function(t){this.animation&&(this.animation.started=t)}},{key:"invalidate",value:function(){this.parent&&this.parent.invalidate()}},{key:"font",get:function(){return sa(this.model)}},{key:"lineHeight",get:function(){return this.get("lineHeight")||1.2*this.fontSize}},{key:"defaultTextSubstitutor",value:function(){var t=this.getState("text");return null==t?"":String(t)}},{key:"textSubstitutor",get:function(){return this._text_substitutor||(this._text_substitutor=Ia(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}},{key:"text",get:function(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,o,i,a,u,s,c,f,l=t.length,h=t.search(/[0-9\-\+#]/),p=h>0?t.substring(0,h):"",y=t.split("").reverse().join(""),d=y.search(/[0-9\-\+#]/),v=l-d,g=t.substring(v,v+1),b=v+("."===g||","===g?1:0),m=d>0?t.substring(b,l):"";if(r=(e="-"===(t=t.substring(h,b)).charAt(0)?-e:+e)<0?e=-e:0,o=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",a=t[1]&&t[1].lastIndexOf("0"),(!(s=e.split("."))[1]||s[1]&&s[1].length<=a)&&(e=(+e).toFixed(a+1)),c=t[0].split(o),t[0]=c.join(""),(i=t[0]&&t[0].indexOf("0"))>-1)for(;s[0].length<t[0].length-i;)s[0]="0"+s[0];else 0==+s[0]&&(s[0]="");if((e=e.split("."))[0]=s[0],u=c[1]&&c[c.length-1].length){for(y="",v=(f=e[0]).length%u,l=f.length,b=0;b<l;b++)y+=f.charAt(b),!((b-v+1)%u)&&b<l-u&&(y+=o);e[0]=y}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),p+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+m}(t,this.textSubstitutor()):this.textSubstitutor()},set:function(t){delete this._text_substitutor;var e=zn(t);this.setState("text",null==e?"":String(e))}},{key:"textLines",value:function(t){var e=this.state,r=e.textWrap,n=e.supportMarkdown;return ua(t||this.getContext(),this.textBounds.width,this.font,this.text,r,n)}},{key:"textBounds",get:function(){var t=this.state,e=t.paddingTop,r=t.paddingLeft,n=t.paddingRight,o=t.paddingBottom;o||(o=0),e||(e=0),r||(r=0),n||(n=0);var i=this.bounds,a=i.left,u=i.top,s=i.width,c=i.height;return{left:a+r,top:u+e,width:Math.max(s-r-n,0),height:Math.max(c-e-o,0)}}},{key:"textRotation",get:function(){return 0}},{key:"rotatePoint",get:function(){return this.center}},{key:"trim",value:function(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}},{key:"value",get:function(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]},set:function(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}},{key:"data",get:function(){return this.getState("data")},set:function(t){this.setState("data",t),this.touch()}},{key:"tap",set:function(t){var e,r=null===(e=this.model.event)||void 0===e?void 0:e.tap;if(r){var n,o=this.center,i=o.cx,a=o.cy;null===(n=this.rootModel)||void 0===n||n._doEventAction(r,this,!0,new CustomEvent("click",{offsetX:i,offsetY:a}))}}},{key:"mappings",get:function(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}},{key:"serialize",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return JSON.stringify.apply(JSON,[this.hierarchy].concat(e))}},{key:"controls",get:function(){}},{key:"closeScene",value:function(t){this.rootModel.closeScene(t)}}],r=[{key:"nature",get:function(){return qa}},{key:"register",value:function(t,e){if(!e)return Xa[t];Xa[t]=e}},{key:"residents",get:function(){return Ja}},{key:"residentsCount",get:function(){return Ka}},{key:"registerDecorator",value:function(t,e){!function(t,e){Da[t]=e}(t,e)}}],e&&Ha(t.prototype,e),r&&Ha(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,r,n,i}();function tu(t){return tu="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},tu(t)}function eu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ru(n.key),n)}}function ru(t){var e=function(t){if("object"!=tu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=tu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==tu(e)?e:e+""}function nu(t,e,r){return e=au(e),function(t,e){if(e&&("object"==tu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ou()?Reflect.construct(e,r||[],au(t).constructor):e.apply(t,r))}function ou(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ou=function(){return!!t})()}function iu(){return iu="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=au(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},iu.apply(null,arguments)}function au(t){return au=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},au(t)}function uu(t,e){return uu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},uu(t,e)}$a.union=function(t){var e,r,n,o;return t.forEach((function(t){void 0===e?(e=t.left,r=t.top,n=t.left+t.width,o=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),o=Math.max(t.top+t.height,o))})),{left:e,top:r,width:n-e,height:o-r}},$a.transcoordR=ha,$a.transcoordRR=pa,$a.createCanvas=Bi,$a.memoize=qo,$a.mixin=yo,$a.drawText=fa,$a.font=sa,$a.textLines=ua,$a.drawStroke=qi,$a.drawFill=Xi,$a.reposition=va,$a.RetentionManager=Ta,$a.template=function(t,e,r){var n=pr.imports._.templateSettings||pr;r&&De(t,e,r)&&(e=void 0),t=fr(t),e=ze({},e,n,$e);var o,i,a=ze({},e.imports,n.imports,$e),u=Kt(a),s=function(t,e){return Ke(e,(function(e){return t[e]}))}(a,u),c=0,f=e.interpolate||mr,l="__p += '",h=RegExp((e.escape||mr).source+"|"+f.source+"|"+(f===rr?br:mr).source+"|"+(e.evaluate||mr).source+"|$","g"),p=xr.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(h,(function(e,r,n,a,u,s){return n||(n=a),l+=t.slice(c,s).replace(wr,er),r&&(o=!0,l+="' +\n__e("+r+") +\n'"),u&&(i=!0,l+="';\n"+u+";\n__p += '"),n&&(l+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),c=s+e.length,e})),l+="';\n";var y=xr.call(e,"variable")&&e.variable;if(y){if(gr.test(y))throw new Error("Invalid `variable` option passed into `_.template`")}else l="with (obj) {\n"+l+"\n}\n";l=(i?l.replace(yr,""):l).replace(dr,"$1").replace(vr,"$1;"),l="function("+(y||"obj")+") {\n"+(y?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(o?", __e = _.escape":"")+(i?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+l+"return __p\n}";var d=Qe((function(){return Function(u,p+"return "+l).apply(void 0,s)}));if(d.source=l,Ve(d))throw d;return d},$a.buildSubstitutor=Ia,Object.assign($a.prototype,{drawEffect:function(t){var e=this;(this.state.effects||[]).forEach((function(r){e.effect(t,r)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);var e=r.width||this.width,o=r.height||this.height;r.fitPattern&&(e=n.bounds.width,o=n.bounds.height);var i=Bi(e,o);i.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,o),n._pattern_image=i,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){var e=this;t&&this.prepareFill((function(t){e.invalidate()}),(function(t){mo(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):(null==r?void 0:r.image)&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,o,i){var a=this;e.complete?t.drawImage(e,r,n,o,i):e.addEventListener("load",(function(){a.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,o=this.get("rotation"),i=this.get("scale");if(t){var a=t.call(e,r);a&&(r=a)}var u=r,s=u.left,c=u.top,f=[{x:s,y:c},{x:s+u.width,y:c+u.height}],l=(f=f.map((function(t){return pa(t.x,t.y,n,o,i)})))[0],h=f[1];n={x:(l.x+h.x)/2,y:(l.y+h.y)/2},l=(f=f.map((function(t){return ha(t.x,t.y,n,o,i)})))[0],h=f[1],this.bounds={left:l.x,top:l.y,width:h.x-l.x,height:h.y-l.y}},mutatePath:function(t,e,r){var n=this,o=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(o=t.call(r,o));var a=o.map((function(t){return n.transcoordS2P(t.x,t.y)}));e&&(o=e.call(r,a))&&(a=o);var u,s,c,f,l={x:0,y:0};o=a.map((function(t){return n.transcoordP2S(t.x,t.y,l)})),u=s=o[0].x,c=f=o[0].y;for(var h=1;h<o.length;h++){var p=o[h];p.x<u?u=p.x:p.x>s&&(s=p.x),p.y<c?c=p.y:p.y>f&&(f=p.y)}i={x:(u+s)/2,y:(c+f)/2},i=this.transcoordS2P(i.x,i.y,l),this.path=a.map((function(t){return n.transcoordP2S(t.x,t.y,i)}))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((function(t){return Ra(t)}))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((function(t){return Ra(t)}))[0];if(n){var o=this.root.findById(n.target);return n.accessor(this.getState(o))}return t}},substitute:function(t,e){var r=this;if(t){var n=String(t),o=e||zn,i=(n.match(/#{(\S*)}/gi)||[]).map((function(t){return Ra(t)})),a=(n.match(/\${[^}]*}/gi)||[]).map((function(t){return Ra(t)}));if(0==i.length&&0==a.length)return n;var u=n;return i.forEach((function(t){var e=o(t.accessor(r.getState(t.target)));u=u.replace(t.match,void 0===e?"":e)})),a.forEach((function(t){var e=r.root.findById(t.target),n=o(t.accessor(e&&e.data));u=u.replace(t.match,void 0===n?"":n)})),u}},onchangeMappings:function(t,e){this.disposeMappings(),Hi.call(this)},onchangeData:function(t,e){var r,n;this.state.persistent&&(null===(r=this.app)||void 0===r?void 0:r.isViewMode)&&(null===(n=this.app)||void 0===n||n.dataStorage.save(this,t.data)),Hi.call(this,[!0])},buildMappings:function(){var t=this;if(this._model.mappings)return!this._model.mappings instanceof Array?(mo("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).filter((function(t){return t.rule&&t.target})).map((function(e){return new Ni(e,t)})));this._mappings=[]},executeMappings:Hi,disposeMappings:function(){this._mappings&&this._mappings.forEach((function(t){return t.dispose()})),delete this._mappings},ondropfile:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,u=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var s=this.state.translate,c=pa(t,e,void 0,i+this._delta.theta,u);return s&&(c.x+=s.x,c.y+=s.y),c}r=r||this.rotatePoint;var f=this._delta||{},l=f.theta,h=void 0===l?0:l,p=f.tx,y=void 0===p?0:p,d=f.ty,v=void 0===d?0:d,g=f.sx,b=void 0===g?1:g,m=f.sy,w=void 0===m?1:m,x=pa(t+y,e+v,r={x:r.x+y,y:r.y+v},i+h,u={x:u.x*b,y:u.y*w});return{x:x.x-(r.x*u.x-r.x),y:x.y-(r.y*u.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,u=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var s=this.state.translate,c=ha(t,e,s,i,u);return s&&(c.x-=s.x/(u?u.x:1),c.y-=s.y/(u?u.y:1)),c}var f=ha(t,e,r=r||this.rotatePoint,i,u);return{x:f.x+(r.x-r.x/u.x),y:f.y+(r.y-r.y/u.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.push(o);var i=this.transcoordS2P(t,e);return n.forEach((function(t){var e=t.model.scale,r=t.bounds;if(e){var n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.splice(0,0,o);var i={x:t,y:e};return n.forEach((function(t){var e=t.model.scale;i=t.transcoordP2S(i.x,i.y);var r=t.bounds;if(e){var n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){var n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;var n=this.transcoordS2T(t,e,r);return pa(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){var n=this.rootModel,o=this.transcoordS2T(t,e,n);return r.transcoordT2S(o.x,o.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;var n=r.model,o=n.translate,i=void 0===o?{x:0,y:0}:o,a=n.scale,u=void 0===a?{x:1,y:1}:a,s=n.rotation,c=ha(t,e,i,void 0===s?0:s,u);return i&&(c.x-=i.x/(u?u.x:1),c.y-=i.y/(u?u.y:1)),r===this?c:this.transcoordT2S(c.x,c.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;if(r!==this)var n=this.transcoordS2T(t,e,r);else n={x:t,y:e};var o=r.model,i=o.translate,a=void 0===i?{x:0,y:0}:i,u=o.rotation,s=void 0===u?0:u,c=o.scale,f=void 0===c?{x:1,y:1}:c;return n=pa(n.x,n.y,void 0,s+r._delta.theta,f),a&&(n.x+=a.x,n.y+=a.y),n},_pre_draw:$a.prototype.prerender,_draw:$a.prototype.render,_post_draw:$a.prototype.postrender}),["rotatePoint","font","lineHeight","retention"].forEach((function(t){return $a.memoize($a.prototype,t,!1)})),["bounds","center","textBounds"].forEach((function(t){return $a.memoize($a.prototype,t,!0)})),$a.mixin($a.prototype,po.withEvent);var su=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),nu(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&uu(t,e)}(e,t),r=e,n=[{key:"rotationX",get:function(){return this.getState("rotationX")},set:function(t){this.setState("rotationX",t)}},{key:"rotationY",get:function(){return this.getState("rotationY")},set:function(t){this.setState("rotationY",t)}},{key:"rotationZ",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",t)}},{key:"zPos",get:function(){return this.getState("zPos")},set:function(t){this.setState("zPos",t)}},{key:"depth",get:function(){return this.getState("depth")},set:function(t){this.setState("depth",t)}},{key:"postrender",value:function(t){var r,n,o;this.drawFill(t),this.drawStroke(t),(r=e,n=this,"function"==typeof(o=iu(au(1&3?r.prototype:r),"postrender",n))?function(t){return o.apply(n,t)}:o)([t])}},{key:"render",value:function(t){var e=this.drawPath,r=this.state.round,n=void 0===r?0:r;if(!(e.length<=1)){t.beginPath();for(var o=0;o<e.length;o++){var i=e[(o-1+e.length)%e.length],a=e[(o+e.length)%e.length],u=e[(o+1)%e.length];if(i.x!==a.x||i.y!==a.y){var s,c=0!==(s=Math.sqrt((i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y)))?Math.atan2(i.x-a.x,i.y-a.y):0,f=Math.sin(c)*Math.min(n,s/2)+a.x,l=Math.cos(c)*Math.min(n,s/2)+a.y,h=n>0||0!==s?{x:f,y:l}:a;c=0!==(s=Math.sqrt((u.x-a.x)*(u.x-a.x)+(u.y-a.y)*(u.y-a.y)))?Math.atan2(u.x-a.x,u.y-a.y):0,f=Math.sin(c)*Math.min(n,s/2)+a.x,l=Math.cos(c)*Math.min(n,s/2)+a.y;var p=n>0||0!==s?{x:f,y:l}:a;0==o?t.moveTo(h.x,h.y):t.lineTo(h.x,h.y),n>0&&t.quadraticCurveTo(a.x,a.y,p.x,p.y)}}t.closePath()}}}],n&&eu(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}($a);function cu(t,e,r){return Math.max(0,Math.min(t,Math.min(r,e)/2))}function fu(t){return fu="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},fu(t)}function lu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,hu(n.key),n)}}function hu(t){var e=function(t){if("object"!=fu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=fu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==fu(e)?e:e+""}function pu(t,e,r){return e=du(e),function(t,e){if(e&&("object"==fu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,yu()?Reflect.construct(e,r||[],du(t).constructor):e.apply(t,r))}function yu(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(yu=function(){return!!t})()}function du(t){return du=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},du(t)}function vu(t,e){return vu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},vu(t,e)}const gu=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),pu(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&vu(t,e)}(e,t),r=e,(n=[{key:"contains",value:function(t,e){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height,u=r.lineWidth,s=(void 0===u?0:u)/2;return t<Math.max(n+i,n)+s&&t>Math.min(n+i,n)-s&&e<Math.max(o+a,o)+s&&e>Math.min(o+a,o)-s}},{key:"path",get:function(){var t=this.state,e=t.left,r=void 0===e?0:e,n=t.top,o=void 0===n?0:n,i=t.width,a=void 0===i?0:i,u=t.height,s=void 0===u?0:u;return[{x:r,y:o},{x:r+a,y:o},{x:r+a,y:o+s},{x:r,y:o+s}]},set:function(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,u=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:u}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:u}}]}(this)}},{key:"render",value:function(t){var e=this.model.round,r=void 0===e?0:e,n=this.bounds,o=n.left,i=n.top,a=n.width,u=n.height;t.translate(o,i),t.beginPath(),(r=cu(r,a,u))>0?t.roundRect(0,0,a,u,r):t.rect(0,0,a,u),t.translate(-o,-i)}}])&&lu(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return qo(e.prototype,"path",!1),e};function bu(t){return bu="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},bu(t)}function mu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,wu(n.key),n)}}function wu(t){var e=function(t){if("object"!=bu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=bu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==bu(e)?e:e+""}function xu(t,e,r){return e=_u(e),function(t,e){if(e&&("object"==bu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ku()?Reflect.construct(e,r||[],_u(t).constructor):e.apply(t,r))}function ku(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ku=function(){return!!t})()}function Su(){return Su="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=_u(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Su.apply(null,arguments)}function _u(t){return _u=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},_u(t)}function Ou(t,e){return Ou=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ou(t,e)}var Eu={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"},Au=20;function Pu(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}var ju=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),xu(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ou(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){var t,r,n,o=this;this.infoWindows.map((function(t){return t.component})).forEach((function(t){return o._removeInfoWindow(t)})),(t=e,r=this,"function"==typeof(n=Su(_u(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([])}},{key:"infoWindows",get:function(){return this._windows||(this._windows=[]),this._windows}},{key:"_findInfoWindowByComponent",value:function(t){return this.infoWindows.find((function(e){return e.component===t}))}},{key:"_addInfoWindow",value:function(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}},{key:"_removeInfoWindow",value:function(t){var e=this._findInfoWindowByComponent(t);if(e){var r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}}},{key:"render",value:function(t){var r=this.bounds,n=r.left,o=r.top,i=r.width,a=r.height;t.beginPath(),this.drawImage(t,e.image,n,o,i,a)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return Eu}}],o=[{key:"image",get:function(){return e._image||(e._image=new Image,e._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),e._image}},{key:"toggle",value:function(t,r,n,o){if(r){var i=t.root.findById(r);i?i._findInfoWindowByComponent(t)?e.hide(t,r):e.show(t,r,n,o):console.warn("InfoWindow Not Found.",r)}else console.warn("InfoWindow not defined.")}},{key:"hide",value:function(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}},{key:"show",value:function(t,r,n,o){if(r){var i=t.root.findById(r);if(i){if(!i._findInfoWindowByComponent(t)){var a=i.model,u=a.frontSideTemplate,s=void 0===u?"":u,c=a.backSideTemplate,f=[s,void 0===c?"":c].filter((function(t){return String(t).trim()}));if(0!=(f=f.map((function(t){return $a.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">X</button>':"",r?'<button class="flipable">⇌</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!n,2==f.length))}))).length){var l='\n.flip {\n backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n -ms-backface-visibility: hidden;\n -o-backface-visibility: hidden;\n -webkit-backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity:.9;\n transform-origin: 50% 50% 0px;\n -moz-transform-origin: 50% 50% 0px;\n -ms-transform-origin: 50% 50% 0px;\n -o-transform-origin: 50% 50% 0px;\n -webkit-transform-origin: 50% 50% 0px;\n transition: all 2s;\n -moz-transition: all 2s;\n -ms-transition: all 2s;\n -o-transition: all 2s;\n -webkit-transition: all 2s;\n min-width: 100px;min-height:50px;\n background-color:#3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY( 0deg );\n -moz-transform: rotateY( 0deg );\n -ms-transform: rotateY( 0deg );\n -o-transform: rotateY( 0deg );\n -webkit-transform: rotateY( 0deg );\n}\n.flip:after{\n content:"";\n display:block;\n position: absolute;\n opacity:.9;\n width: 0;\n height: 0;\n}\n.flip.arrow-top:after{\n left:45%;\n top:-17px;\n border-left:10px solid transparent;\n border-bottom:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-right:after{\n left:100%;\n top:48%;\n border-top:10px solid transparent;\n border-left:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n.flip.arrow-bottom:after{\n left:45%;\n top:100%;\n border-left:10px solid transparent;\n border-top:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-left:after{\n right:100%;\n top:48%;\n border-top:10px solid transparent;\n border-right:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY( 180deg );\n -moz-transform: rotateY( 180deg );\n -ms-transform: rotateY( 180deg );\n -o-transform: rotateY( 180deg );\n -webkit-transform: rotateY( 180deg );\n}\n\n.flip-side-1 {\n transform: rotateY( 0deg ) !important;\n -moz-transform: rotateY( 0deg ) !important;\n -ms-transform: rotateY( 0deg ) !important;\n -o-transform: rotateY( 0deg ) !important;\n -webkit-transform: rotateY( 0deg ) !important;\n}\n\n.flip-side-2 {\n transform: rotateY( 180deg ) !important;\n -moz-transform: rotateY( 180deg ) !important;\n -ms-transform: rotateY( 180deg ) !important;\n -o-transform: rotateY( 180deg ) !important;\n -webkit-transform: rotateY( 180deg ) !important;\n}\n\n.info-window-btns{\n position:absolute;\n top:-18px;\n right:5px;\n overflow:hidden;\n}\n.info-window-content{\n padding:10px;\n color:#efefef;\n font-size:13px;\n line-height:1.4;\n}\n.info-window-btns button{\n width:40px;height:40px;\n float:right;\n border:0;\n border-radius:50%;\n background-color:#2a7da1;\n margin-right:3px;\n text-align:center;\n cursor:pointer;\n font-size:35px;\n color:#fff;\n line-height:0;\n}\n.info-window-btns button:hover{\n background-color:#60bb23;\n}\n'+i.get("style"),h=t.bounds,p=h.left,y=h.top,d=o?t.rootModel.transcoordC2S(o.x,o.y):t.transcoordS2T(p,y);p=d.x,y=d.y;var v=document.createElement("span");v.style.position="absolute";var g=document.createElement("style");if(g.type="text/css",g.appendChild(document.createTextNode(l)),v.appendChild(g),f[0]){var b=document.createElement("div");b.id="side-1",b.className="flip",b.style.display="inline-block",b.innerHTML=f[0](t)}if(f[1]){var m=document.createElement("div");m.id="side-2",m.className="flip",m.style.display="inline-block",m.innerHTML=f[1](t)}ai.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))})),ui.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))}));var w=t.root.model_layer.overlay;if(b&&v.appendChild(b),m&&v.appendChild(m),w.appendChild(v),i._addInfoWindow(t,v,g),b){var x=b.querySelector(".info-window-btns > .flipable");x&&x.addEventListener("click",(function(t){t.preventDefault(),m.className=Pu(m.className,"flip-side-1"),b.className=Pu(b.className,"flip-side-2")}),!1);var k=b.querySelector(".info-window-btns > .closable");k&&k.addEventListener("click",(function(n){n.preventDefault(),e.hide(t,r)}),!1)}if(m){var S=m.querySelector(".info-window-btns > .flipable");S&&S.addEventListener("click",(function(t){t.preventDefault(),m.className=Pu(m.className,"flip-side-1"),b.className=Pu(b.className,"flip-side-2")}),!1);var _=m.querySelector(".info-window-btns > .closable");_&&_.addEventListener("click",(function(n){n.preventDefault(),e.hide(t,r)}),!1)}var O=b.offsetWidth,E=b.offsetHeight,A=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight,t.rootModel.target.getBoundingClientRect()),P=[];b&&P.push(b),m&&P.push(m);var j={x:p,y},T=t.transcoordS2C(j.x,j.y);if(T.x+O/2+A.left<A.right&&T.x-O/2>A.left){if(E+Au<T.y)return v.style.marginLeft=j.x-O/2+"px",v.style.marginTop=j.y-E-Au+"px",void P.forEach((function(t){return t.className+=" arrow-bottom"}));if(T=t.transcoordS2C(j.x,j.y+E+Au),A.bottom>T.y+A.top)return v.style.marginLeft=j.x-O/2+"px",v.style.marginTop=j.y+Au+"px",void P.forEach((function(t){return t.className+=" arrow-top"}))}if((T=t.transcoordS2C(j.x,j.y)).x-(O+Au)>A.left)return v.style.marginLeft=j.x-O-Au+"px",v.style.marginTop=j.y-E/2+"px",void P.forEach((function(t){return t.className+=" arrow-right"}));v.style.marginLeft=j.x+Au+"px",v.style.marginTop=j.y-E/2+"px",P.forEach((function(t){return t.className+=" arrow-left"}))}}}else console.warn("InfoWindow Not Found.",r)}else console.warn("InfoWindow not defined.")}}],n&&mu(r.prototype,n),o&&mu(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(gu(su));function Tu(t){return Tu="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},Tu(t)}function Mu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Ru(t,e,r){return(e=function(t){var e=function(t){if("object"!=Tu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Tu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Tu(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}$a.register("info-window",ju);var Iu={};const Cu={list:function(){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Mu(Object(r),!0).forEach((function(e){Ru(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Mu(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({},Iu)},register:function(t,e){Iu[t]=e},unregister:function(t){delete Iu[t]},get:function(t){if(t){var e=Iu[t];return e||mo("Layout Not Found - ",t),e}}};var Lu={reflow:function(t,e){this.drawables(t).filter((function(t){return t.isHTMLElement()})).forEach((function(t){return t.reposition()}))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((function(t){return!t.hidden}))},isStuck:function(t){return!1},ABSOLUTE:!0};Cu.register("html-absolute",Lu);const Du=Lu;function Bu(t){return Bu="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},Bu(t)}function Nu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Fu(n.key),n)}}function Fu(t){var e=function(t){if("object"!=Bu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Bu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Bu(e)?e:e+""}function zu(t,e){if(t){if("string"==typeof t)return Uu(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Uu(t,e):void 0}}function Uu(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}var Yu=["run","goto","goto-playlist","goto-playlist","link-open","link-move","route-page","start-scenario","run-scenario","export-data","import-data"],Gu="center",Hu=new WeakMap;function Wu(t){var e=t.root,r=Hu.get(e);if(r)if(e!==t){var n=r.findIndex((function(e){return e[0]===t}));if(-1!==n){var o=r[n][1],i=o.div.parentNode;i&&i.removeChild(o.div);var a=o.scene;a.target=null,a.release&&a.release(),r.splice(n,1)}}else{for(var u in r)Wu(u[0]);Hu.delete(e)}}var Xu=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}return e=t,r=[{key:"hideAll",value:function(t){(Hu.get(t)||[]).forEach((function(t){var e=function(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(t,e)||zu(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(t,2),r=e[0];return e[1],Wu(r)}))}},{key:"hide",value:function(t){Wu(t)}},{key:"show",value:function(e,r){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=n.data,i=n.location,a=void 0===i?Gu:i,u=n.modal,s=void 0!==u&&u,c=n.closable,f=void 0===c||c,l=n.output,h=void 0===l||l,p=e.app.refProvider;p&&p.get(r,!0).then((function(r){var n,i=document.createElement("div"),u=i.style;if(s){var c=e.rootModel.bounds,l=c.width,p=c.height;u.position="fixed",u.zIndex=1,u.left=0,u.top=0,u.width=l+"px",u.height=p+"px",u.overflow="auto",u.backgroundColor="rgba(0,0,0,0.3)"}else u.position="absolute",u.display="inline-block";i.innerHTML=!s&&f?'\n<div class="popup-content">\n</div>\n<button class="closable-1945">X</button>\n':'\n<div class="popup-content">\n</div>\n';var y=i.querySelector(".popup-content"),d=r.root.model;l=d.width,p=d.height,y.style.width=l+"px",y.style.height=p+"px";var v=document.createElement("style");v.type="text/css",v.appendChild(document.createTextNode("\nbutton.closable-1945 {\n width: 20px;\n height: 20px;\n right: 0px;\n top: 0px;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n color: black;\n position: absolute;\n background-color: transparent;\n}\n\nbutton.closable-1945:hover {\n background-color:#60bb23;\n}\n")),i.appendChild(v),Yu.forEach((function(t){r.on(t,(function(){for(var r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];e.trigger.apply(e,[t].concat(n))}))}));var g=i.querySelector(".popup-content");ai.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),ui.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),i.addEventListener("click",(function(r){r.target===i&&f&&t.hide(e)})),ai.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),ui.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),e.root.model_layer.overlay.appendChild(i),function(t,e,r){var n=t.root;if(n!==t){Wu(t);var o=Hu.get(n)||[];o=[].concat(function(t){return function(t){if(Array.isArray(t))return Uu(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||zu(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.")}()}(o),[[t,{div:e,scene:r}]]),Hu.set(n,o)}}(e,i,r),null===(n=i.querySelector(".closable-1945"))||void 0===n||n.addEventListener("click",(function(r){r.preventDefault(),t.hide(e)}),!1),i.addEventListener("close-scene",(function(r){r.preventDefault(),r.stopPropagation(),t.hide(e),h&&(e.data=r.detail)}),!1),r.target=y,r.data=o||e.data,r.fit("both");var b=function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:Gu,o=t.bounds,i=e.bounds,a=Math.max(o.width/4-i.width/2,20),u=Math.min(3*o.width/4+i.width/2,o.width-20)-i.width,s=Math.max(o.height/4-i.height/2,20),c=Math.min(3*o.height/4+i.height/2,o.height-20)-i.height;switch(n){case"auto":return{x:r.x<o.width/2?u:a,y:r.y<o.height/2?c:s};case"left-top":return{x:a,y:s};case"right-top":return{x:u,y:s};case"left-bottom":return{x:a,y:c};case"right-bottom":return{x:u,y:c};default:return{x:(o.width-i.width)/2,y:(o.height-i.height)/2}}}(e.rootModel,r.root,e.center,a);s?(y.style.left=b.x+"px",y.style.top=b.y+"px",y.style.width=l+"px",y.style.height=p+"px"):(i.style.left=b.x+"px",i.style.top=b.y+"px",i.style.width=l+"px",i.style.height=p+"px")}),(function(t){console.error("cannot fetch board: "+r,t)}))}}],null&&Nu(e.prototype,null),r&&Nu(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,r}(),qu={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};Cu.register("absolute",qu);const Vu=qu;function Qu(t){var e=t.components.filter((function(t){return!t.hidden})),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}var Ku={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach((function(t,e){var o=e!=(r.activeIndex||0);t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=o?"hidden":"visible")}))},capturables:function(t){return Qu(t)},drawables:function(t){return Qu(t)},isStuck:function(t){return!0}};Cu.register("card",Ku);const Ju=Ku;function Zu(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var $u={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce((function(t,e){return t+Zu(e)}),0),o=t.bounds,i=n>0?(o.width-((r.left||0)+(r.right||0)))/n:o.width,a=o.height-((r.top||0)+(r.bottom||0)),u=0;e.forEach((function(t){var e=Zu(t),n=t.get("margin")||{};t.bounds={left:i*u+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*i-((n.left||0)+(n.right||0)),height:a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),u+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};Cu.register("linear-horizontal",$u);const ts=$u;function es(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var rs={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce((function(t,e){return t+es(e)}),0),o=t.bounds,i=n>0?(o.height-((r.top||0)+(r.bottom||0)))/n:o.height,a=o.width-((r.left||0)+(r.right||0)),u=0;e.forEach((function(t){var e=es(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:i*u+(r.top||0)+(n.top||0),width:a-((n.left||0)+(n.right||0)),height:e*i-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),u+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};Cu.register("linear-vertical",rs);const ns=rs;var os={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),o=e&&e.widths||t.getState("widths"),i=e&&e.heights||t.getState("heights"),a=o?o.filter((function(t,e){return e<r})).reduce((function(t,e){return t+e}),0):r,u=i?i.filter((function(t,e){return e<n})).reduce((function(t,e){return t+e}),0):n,s=t.textBounds,c=t.getState("paddingLeft")||0,f=t.getState("paddingTop")||0,l=s.width/a,h=s.height/u,p=0,y=0;t.components.forEach((function(t,e){for(var n=o?o[e%r]:1,a=i?i[Math.floor(e/r)]:1,u=t.colspan||1,s=0;--u>0;)s+=o?o[(e+u)%r]:1;for(var d=t.rowspan||1,v=0;--d>0;)v+=i?i[Math.floor(e/r)+d]:1;t.bounds={left:c+p,top:f+y,width:l*(n+s),height:h*(a+v)},t.setState("rotation",0),e%r==r-1?(p=0,y+=a*h):p+=n*l}))},capturables:function(t){return t.components.filter((function(t){return!t.merged}))},drawables:function(t){return t.components.filter((function(t){return!t.merged&&!t.hidden}))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),o=n&&n.columns||t.getState("columns"),i=n&&n.rows||t.getState("rows"),a=t.getRowColumn(e),u=a.row,s=a.column;switch(r.code){case"ArrowUp":if(u>0)return t.getAt((u-1)*o+s);break;case"ArrowDown":if(u<i-1)return t.getAt((u+1)*o+s);break;case"ArrowRight":if(s<o-1)return t.getAt(u*o+s+1);break;case"ArrowLeft":if(s>0)return t.getAt(u*o+s-1);break;default:return e}},joinType:!0};Cu.register("table",os);const is=os;function as(t){return as="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},as(t)}function us(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ss(n.key),n)}}function ss(t){var e=function(t){if("object"!=as(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=as(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==as(e)?e:e+""}function cs(t,e,r){return e=ps(e),function(t,e){if(e&&("object"==as(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,fs()?Reflect.construct(e,r||[],ps(t).constructor):e.apply(t,r))}function fs(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(fs=function(){return!!t})()}function ls(t,e,r,n){var o=hs(ps(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function hs(){return hs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=ps(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},hs.apply(null,arguments)}function ps(t){return ps=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ps(t)}function ys(t,e){return ys=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ys(t,e)}var ds=new Image;ds.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";const vs=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),cs(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ys(t,e)}(e,t),r=e,(n=[{key:"postrender",value:function(t){ls(e,"postrender",this,3)([t]),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}},{key:"_draw_move_handle",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width;t.save(),t.beginPath(),t.globalAlpha=1,t.rect(r+o,n,25,25),t.fillStyle="rgba(".concat(235,", ").concat(235,", ").concat(235,", 1)"),t.fill(),t.drawImage(ds,r+o+3.75,n+3.75,17.5,17.5),t.closePath(),t.restore()}},{key:"contains",value:function(t,r){var n=ls(e,"contains",this,3)([t,r]);if(this.app.isViewMode)return n;if(!n){var o=this.bounds,i=o.left,a=o.top,u=o.width,s=(o.height,i+u);this.showMoveHandle&&(n=t<Math.max(s+25,s)&&t>Math.min(s+25,s)&&r<Math.max(a+25,a)&&r>Math.min(a+25,a))}return this._focustd!==n&&(this._focused=n,this.invalidate()),n}}])&&us(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function gs(t){return gs="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},gs(t)}function bs(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ms(n.key),n)}}function ms(t){var e=function(t){if("object"!=gs(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=gs(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==gs(e)?e:e+""}function ws(t,e,r){return e=_s(e),function(t,e){if(e&&("object"==gs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,xs()?Reflect.construct(e,r||[],_s(t).constructor):e.apply(t,r))}function xs(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(xs=function(){return!!t})()}function ks(t,e,r,n){var o=Ss(_s(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Ss(){return Ss="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=_s(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Ss.apply(null,arguments)}function _s(t){return _s=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},_s(t)}function Os(t,e){return Os=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Os(t,e)}var Es=[],As=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=ws(this,e,[t,r]))._components=[],n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Os(t,e)}(e,t),r=e,n=[{key:"replaceRefids",value:function(t){this.components.forEach((function(e){return e.replaceRefids(t)}))}},{key:"showMoveHandle",get:function(){return!0}},{key:"showOverflow",get:function(){return!1}},{key:"dispose",value:function(){this.components.slice().forEach((function(t){return t.dispose()})),ks(e,"dispose",this,3)([])}},{key:"isContainer",value:function(){return!0}},{key:"containable",value:function(t){return t.isDescendible(this)}},{key:"hasTextProperty",get:function(){return!1}},{key:"components",get:function(){return this._components}},{key:"focusible",get:function(){return!0}},{key:"layout",get:function(){return Cu.get(this.get("layout"))||Vu}},{key:"reflow",value:function(){this.layout.reflow(this),this.components&&this.components.forEach((function(t){t.isContainer()&&t.reflow()}))}},{key:"hierarchy",get:function(){var t=ks(e,"hierarchy",this,1);return this.components&&(t.components=this.components.map((function(t){return t.hierarchy}))),t}},{key:"addComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}},{key:"removeComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}},{key:"insertComponentAt",value:function(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=t.parent;n&&n.removeComponent(t,r);var o=this._components.splice(0,e);this._components=o.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}},{key:"add",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?(t.forEach((function(t){-1==e._components.indexOf(t)&&e.addComponent(t,r)})),this):this.add.call(this,[t],r)}},{key:"remove",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?this._components?(t.forEach((function(t){e.removeComponent(t,r)})),this):this:this.remove.call(this,[t],r)}},{key:"getAt",value:function(t){if(this._components)return this._components[t]}},{key:"forEach",value:function(t,e){this._components&&this._components.forEach(t,e)}},{key:"traverse",value:function(t,e){t.call(e,this),this._components&&this._components.forEach((function(r){r.isContainer()?r.traverse(t,e):t.call(e,r)}))}},{key:"indexOf",value:function(t){return(this._components||Es).indexOf(t)}},{key:"size",value:function(){return(this._components||Es).length}},{key:"moveChildAt",value:function(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),o=this._components.splice(1);this._components=n.concat(o),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}},{key:"moveChildForward",value:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}},{key:"moveChildBackward",value:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}},{key:"moveChildToFront",value:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}},{key:"moveChildToBack",value:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}},{key:"symmetryX",value:function(t){ks(e,"symmetryX",this,3)([t]),this.components.map((function(t){t.symmetryX(0)}))}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return gi(t,this,r[0]||this);if("function"==typeof t){for(var o=[],i=this.components.length-1;i>=0;i--){var a,u=(a=this.components[i]).findAll.apply(a,[t].concat(r));u&&(o=o.concat(u))}return t.apply(void 0,[this].concat(r))&&o.push(this),o}}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return gi(t,this,r[0])[0];if("function"==typeof t){for(var o=this.components.length-1;o>=0;o--){var i,a=(i=this.components[o]).findFirst.apply(i,[t].concat(r));if(null!=a)return a}return t.apply(void 0,[this].concat(r))?this:null}}},{key:"findById",value:function(t){return this.root.findById(t)}},{key:"findByRefid",value:function(t){return this.root.findByRefid(t)}},{key:"contains",value:function(t,r){var n=ks(e,"contains",this,3)([t,r]);if(!n){var o=this.state,i=o.left,a=o.top,u=o.width,s=o.height;n=t<Math.max(i+u,i)&&t>Math.min(i+u,i)&&r<Math.max(a+s,a)&&r>Math.min(a+s,a)}return n}},{key:"capture",value:function(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var o=this.bounds;n.x-=o.left,n.y-=o.top;for(var i=this.layout.capturables(this),a=i.length-1;a>=0;a--){var u=i[a].capture(n.x,n.y,r);if(u)return u}return this.capturable&&!(null!=r&&r(this))&&this}},{key:"capturePath",value:function(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(var r=0;r<e.length;r++)if(!this.containable(e[r]))return!1}for(var n=[],o=this.bounds,i=o.left,a=o.top,u=o.width,s=o.height,c=0;c<t.length;c++){var f=this.transcoordP2S(t[c].x,t[c].y);if(f.x<i||f.x>i+u||f.y<a||f.y>a+s)return!1;f.x-=i,f.y-=a,n.push(f)}for(var l=this.layout.capturables(this),h=l.length-1;h>=0;h--){var p=l[h];if(p.isContainer()){var y=p.capturePath(n,e);if(y)return y}}return this.focusible&&this}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=void 0===r?0:r,o=e.top,i=void 0===o?0:o,a=e.width,u=e.height;t.beginPath(),t.rect(n,i,a,u),t.closePath(),this.drawFill(t),this.drawStroke(t)}},{key:"postrender",value:function(t){var r=this.layout.drawables(this);if(r.length>0){var n=this.bounds,o=n.left,i=void 0===o?0:o,a=n.top,u=void 0===a?0:a,s=n.width,c=n.height;t.save(),this.showOverflow||(t.beginPath(),t.rect(i,u,s,c),t.clip(),t.closePath());var f=this.state;u=f.top,i=f.left,t.translate(i,u),r.forEach((function(e){e.draw(t)})),t.translate(-i,-u),t.restore()}ks(e,"postrender",this,3)([t])}},{key:"trim",value:function(){this.components.forEach((function(t){t.trim()})),ks(e,"trim",this,3)([])}}],n&&bs(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(vs(gu($a)));function Ps(t){return Ps="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},Ps(t)}function js(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ts(n.key),n)}}function Ts(t){var e=function(t){if("object"!=Ps(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ps(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ps(e)?e:e+""}function Ms(t,e,r){return e=Ls(e),function(t,e){if(e&&("object"==Ps(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Rs()?Reflect.construct(e,r||[],Ls(t).constructor):e.apply(t,r))}function Rs(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Rs=function(){return!!t})()}function Is(t,e,r,n){var o=Cs(Ls(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Cs(){return Cs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Ls(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Cs.apply(null,arguments)}function Ls(t){return Ls=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ls(t)}function Ds(t,e){return Ds=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ds(t,e)}["layout"].forEach((function(t){return $a.memoize(As.prototype,t,!1)}));var Bs=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),n=Ms(this,e,[t,r]),t.translate=t.translate||{x:0,y:0},n._draw_reserved=!1,n.__draw__=function(){n._draw_reserved=!1,n.trigger("redraw"),n.reflow(),n.draw()},n.throttle_render=function(){n._draw_reserved||requestAnimationFrame(n.__draw__),n._draw_reserved=!0},n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ds(t,e)}(e,t),r=e,(n=[{key:"fitSize",value:function(t,e,r,n){if(this.target){if(e){var o=getComputedStyle(this.target);r=r||(o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth),n=n||(o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*ii),t.setAttribute("height",n*ii)),t.style.width=r+"px",t.style.height=n+"px"}}},{key:"resize",value:function(){this.fitSize(this.element,!0)}},{key:"isLayer",value:function(){return!0}},{key:"showOverflow",get:function(){return this.app.isEditMode}},{key:"anchors",get:function(){}},{key:"createElement",value:function(){var t=$a.createCanvas(1,1);return t.style.position="absolute",t}},{key:"target",get:function(){return this._target},set:function(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}},{key:"canvas",get:function(){return this.element}},{key:"dispose",value:function(){Is(e,"dispose",this,3)([]),this.target=null,this.element=null}},{key:"selected",get:function(){return this.root.selected},set:function(t){this.root.selected=t}},{key:"hasSameParentForAllSelected",get:function(){return this.root.hasSameParentForAllSelected}},{key:"focused",get:function(){return this.root.focused},set:function(t){this.root.focused=t}},{key:"getContext",value:function(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}},{key:"draw",value:function(t){this.canvas&&(t=t||this.getContext())&&Is(e,"draw",this,3)([t])}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.clearRect(0,0,t.canvas.width,t.canvas.height),r&&t.translate(r.x*ii,r.y*ii),t.scale(o.x*ii,o.y*ii),i&&t.rotate(i)}},{key:"rotatePoint",get:function(){return{x:0,y:0}}},{key:"contains",value:function(t,e){return!1}},{key:"invalidate",value:function(){this.throttle_render()}},{key:"move",value:function(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}},{key:"centerTo",value:function(t,e){var r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),n=t.center,o=n.x,i=n.y,a=t.transcoordP2S(o,i),u=a.x,s=a.y,c=t.transcoordS2T(u,s),f=c.x,l=c.y,h=t.rootModel.get("translate"),p=h.x,y=h.y,d=t.rootModel.get("scale"),v=d.x,g=d.y;e?Sn({step:function(e){t.rootModel.set({translate:{x:p+(r.x-f)*v*e,y:y+(r.y-l)*g*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:p+(r.x-f)*v,y:y+(r.y-l)*g}})}}])&&js(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(As);function Ns(t){return Ns="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},Ns(t)}function Fs(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function zs(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Fs(Object(r),!0).forEach((function(e){Us(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Fs(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Us(t,e,r){return(e=Gs(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ys(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Gs(n.key),n)}}function Gs(t){var e=function(t){if("object"!=Ns(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ns(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ns(e)?e:e+""}function Hs(t,e,r){return e=qs(e),function(t,e){if(e&&("object"==Ns(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ws()?Reflect.construct(e,r||[],qs(t).constructor):e.apply(t,r))}function Ws(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ws=function(){return!!t})()}function Xs(){return Xs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=qs(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Xs.apply(null,arguments)}function qs(t){return qs=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},qs(t)}function Vs(t,e){return Vs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Vs(t,e)}var Qs={x:1,y:1},Ks={x:0,y:0},Js=function(t){function e(t,r){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Hs(this,e,[t,r])}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Vs(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Xs(qs(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([]),delete this._canvas,delete this._overlay}},{key:"contains",value:function(t,e){return!0}},{key:"isRootModel",value:function(){return!0}},{key:"stuck",get:function(){return!0}},{key:"layout",get:function(){return Du}},{key:"overlay",get:function(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}},{key:"createElement",value:function(){var t=document.createElement("div");return t.style.position="absolute",t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=$a.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}},{key:"resize",value:function(){if(this.target){var t=this.model,e=t.width,r=t.height,n=t.fitMode;this.root.fitMode?n=this.root.fitMode:n||(n="ratio");try{var o=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth,a=o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight;switch(n){case"both":case"ratio":break;case"width":a=r*i/e;break;case"height":i=e*a/r;break;default:i=Math.max(e,i),a=Math.max(r,a)}switch(this.fitSize(this.canvas,!0,i,a),n){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>e?"hidden":"auto",this.element.style.overflowY=a>r?"hidden":"auto"}this.fitSize(this.element,!0)}}},{key:"canvas",get:function(){return this._canvas}},{key:"MPP",get:function(){var t=this.model,e=t.scale,r=void 0===e?{x:1,y:1}:e;switch(t.unit){case"mm":case"cm":return 1/this.app.PPM/r.x;case"in":return 1/this.app.PPI/r.x;default:return 1/r.x}}},{key:"capturePath",value:function(t,e){for(var r=this.layout.capturables(this),n=r.length-1;n>=0;n--){var o=r[n];if(o.isContainer()){var i=o.capturePath(t,e);if(i)return i}}return!1}},{key:"eventMap",get:function(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}},{key:"closeScene",value:function(t){var e=this;requestAnimationFrame((function(){return e.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))}))}},{key:"_repositionOverlay",value:function(){var t=this._overlay;if(t){var e=this.model,r=e.translate,n=void 0===r?Ks:r,o=e.scale,i=void 0===o?Qs:o,a=e.rotation,u=void 0===a?0:a,s=this.bounds,c=s.left,f=s.top;s.width,s.height,t.style.left=c+"px",t.style.top=f+"px";var l="rotate(".concat(u,"rad) scale(").concat(i.x,", ").concat(i.y,") perspective(1px)");t.style["margin-left"]=n.x+"px",t.style["margin-top"]=n.y+"px",["-webkit-","-moz-","-ms-","-o-",""].forEach((function(e){t.style[e+"transform"]=l}))}}},{key:"onchange",value:function(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}},{key:"_onchanged_all",value:function(t,e,r){this.invalidate()}},{key:"_onmouseenter_all",value:function(t,r){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&r){var n=r.origin;if(!(n instanceof e)&&n.model.event&&n.model.event.hover&&!n.hidden){var o=n.model.event.hover;o&&this._doEventAction(o,n,!0,t)}}}},{key:"_onmouseleave_all",value:function(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}},{key:"_onclick",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&this._doEventAction(o,n,!0,t)}}},{key:"_onmousedownup",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&o.pressed&&this._doMouseDownUpEventAction(o,n,"mousedown"==t.type||"touchstart"==t.type,t)}}},{key:"_doMouseDownUpEventAction",value:function(t,e,r,n){var o=t.pressed;void 0!==o&&o&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var r=e||{},n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i;t.delta("tx",o),t.delta("ty",a),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}},{key:"_doEventAction",value:function(t,e,r,n){var o,i=t.action,a=t.target,u=t.value,s=t.emphasize,c=void 0!==s&&s,f=t.restore,l=void 0!==f&&f,h=(t.pressed,t.options);if(a&&(a=e.access(a)),u&&(u=e.access(u)),c&&(r?function(t){t.hasOwnProperty("_backupStrokeStyle")||(t._backupStrokeStyle=t.model.strokeStyle,t.set("strokeStyle","#f26522"),t.hasOwnProperty("_backupLineWidth")||(t._backupLineWidth=t.model.lineWidth,t.set("lineWidth",t.model.lineWidth+5)))}(e):l&&function(t){t.hasOwnProperty("_backupStrokeStyle")&&(t.set("strokeStyle",t._backupStrokeStyle),delete t._backupStrokeStyle,t.hasOwnProperty("_backupLineWidth")&&(t.set("lineWidth",t._backupLineWidth),delete t._backupLineWidth))}(e)),i)switch(i){case"data-toggle":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){t.data=!t.data}));break;case"data-tristate":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){var e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-spreading":if(!a)return;if(r){var p=e.access(u);this.root.findAll(a,e).forEach((function(t){t.executeMappings(!0)}))}break;case"data-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.data=p})));break;case"partial-data-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.data=zs(zs({},t.data),p)})));break;case"value-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.value=p})));break;case"partial-value-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.value=zs(zs({},t.value),p)})));break;case"infoWindow":case"info-window":if(!a)return;"click"==n.type||r?ju.show(e,a,l,{x:n.offsetX,y:n.offsetY}):l&&ju.hide(e,a);break;case"toggle-info-window":if(!a)return;ju.toggle(e,a,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!a)return;var y=h&&"input"in h?h.input:"(self)",d=!h||!("output"in h)||h.output;Xu.show(e,a,{data:y&&(null===(o=this.root.findFirst(y,e))||void 0===o?void 0:o.data),output:d,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":case"goto-playlist":this.trigger(i,a,h,e);break;case"mouse-cursor":r?this.target.style.cursor=a||"auto":l&&(this.target.style.cursor="auto");break;default:this.trigger(i,a,u,e)}}}],n&&Ys(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function Zs(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)}))}function $s(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)}))}function tc(t){return tc="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},tc(t)}function ec(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function rc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,nc(n.key),n)}}function nc(t){var e=function(t){if("object"!=tc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=tc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==tc(e)?e:e+""}function oc(t,e,r){return e=sc(e),function(t,e){if(e&&("object"==tc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ic()?Reflect.construct(e,r||[],sc(t).constructor):e.apply(t,r))}function ic(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ic=function(){return!!t})()}function ac(t,e,r,n){var o=uc(sc(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function uc(){return uc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=sc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},uc.apply(null,arguments)}function sc(t){return sc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},sc(t)}function cc(t,e){return cc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},cc(t,e)}Js.Popup=Xu,$a.register("model-layer",Js);const fc=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),oc(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&cc(t,e)}(e,t),r=e,n=[{key:"isConnectable",value:function(){return!0}},{key:"postrender",value:function(t){ac(e,"postrender",this,3)([t]),this._draw_anchors(t)}},{key:"_draw_anchors",value:function(t){var e=this,r=this.anchors||[];t.save(),r.forEach((function(r){var n=r.position,o=(n.x,n.y,r.draw);if(o){t.beginPath();try{o.call(r,t,e)}catch(t){console.error(t)}t.closePath()}})),t.restore()}},{key:"contains",value:function(t,r){if(f=ac(e,"contains",this,3)([t,r]))return f;var n,o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return ec(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ec(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}(this.anchors||[]);try{for(o.s();!(n=o.n()).done;){var i=n.value.bounds;if(i){var a=i.left,u=i.top,s=i.width,c=i.height,f=t<Math.max(a+s,a)&&t>Math.min(a+s,a)&&r<Math.max(u+c,u)&&r>Math.min(u+c,u);if(f)return f}}}catch(t){o.e(t)}finally{o.f()}return!1}},{key:"findInOutLines",value:function(t){return function(t,e){var r=t.state.refid;return t.root.findAll((function(t){return!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))}))}(this,t)}},{key:"findOutletLines",value:function(t){return Zs(this,t)}},{key:"findOutletEnds",value:function(t){return function(t,e){return Zs(t,e).map((function(t){var e;return null===(e=t.toEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}},{key:"findInletLines",value:function(t){return $s(this,t)}},{key:"findInletEnds",value:function(t){return function(t,e){return $s(t,e).map((function(t){var e;return null===(e=t.fromEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}}],n&&rc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function lc(t){return lc="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},lc(t)}function hc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,pc(n.key),n)}}function pc(t){var e=function(t){if("object"!=lc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=lc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==lc(e)?e:e+""}function yc(t,e,r){return e=vc(e),function(t,e){if(e&&("object"==lc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,dc()?Reflect.construct(e,r||[],vc(t).constructor):e.apply(t,r))}function dc(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(dc=function(){return!!t})()}function vc(t){return vc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},vc(t)}function gc(t,e){return gc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},gc(t,e)}var bc={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"},mc={ondragmove:function(t,e,r){var n=r.model,o=n.left,i=(n.top,n.width),a=n.height,u=(r.transcoordP2S(t.x,t.y).x-o)/(i/2)*100;u=cu(u,i,a),r.set({round:u})}},wc=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),yc(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&gc(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}},{key:"controls",get:function(){var t=this.state,e=t.left,r=t.top,n=t.width,o=t.round,i=t.height;return[{x:e+n/2*((o=null==o?0:cu(o,n,i))/100),y:r,handler:mc}]}},{key:"nature",get:function(){return bc}}])&&hc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(fc(gu(su)));function xc(t){return xc="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},xc(t)}function kc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Sc(n.key),n)}}function Sc(t){var e=function(t){if("object"!=xc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=xc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==xc(e)?e:e+""}function _c(t,e,r){return e=Ec(e),function(t,e){if(e&&("object"==xc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Oc()?Reflect.construct(e,r||[],Ec(t).constructor):e.apply(t,r))}function Oc(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Oc=function(){return!!t})()}function Ec(t){return Ec=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ec(t)}function Ac(t,e){return Ac=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ac(t,e)}$a.register("rect",wc);var Pc=[1,2,10,20,50,50,50,50,50,50],jc=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),_c(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ac(t,e)}(e,t),r=e,n=[{key:"render",value:function(t){var e=this.state,r=e.lineWidth,n=void 0===r?1:r,o=e.fillStyle,i=void 0===o?"lightgray":o,a=e.font,u=void 0===a?"15px Arial":a,s=e.left,c=e.top,f=(e.rotation,e.origin),l=(e.margin,e.width),h=e.height,p=e.side,y=void 0===p?"bottom":p,d=e.strokeStyle,v=void 0===d?"#000000":d,g=e.scale,b=void 0===g?1:g;t.translate(s,c),t.beginPath();var m=Math.round(n/2);t.rect(-m,-m,l+2*m,h+2*m),t.clip(),t.beginPath(),t.rect(0,0,l,h),i&&(t.fillStyle=i,t.fill()),t.lineWidth=n,t.strokeStyle=v,t.stroke(),t.beginPath(),t.font=u;var w="bottom"!==y,x=w?0:h,k=4*h/5,S=2*h/3,_=1*h/2,O=3*h/5;w&&(k=h-k,S=h-S,_=h-_,O=h-1.5*h/5);var E=b*this.app.PPM/this.root.unitScale,A=Math.ceil(f/E),P=this.app.PPM/E,j=P<=1.1?1:Pc[Math.round(P)]||100;1!=j&&(A+=(j-A%j)%j);var T=Math.ceil(A*E),M=f+l;for(t.fillStyle=v;T<M;){if(A%10==0){t.moveTo(T-f,_),t.lineTo(T-f,x);var R=(A/10).toString(),I=t.measureText(R);t.fillText(R,T-f-I.width-6,O)}else A%5==0?(t.moveTo(T-f,S),t.lineTo(T-f,x)):(t.moveTo(T-f,k),t.lineTo(T-f,x));A+=j,T=Math.ceil(A*E)}}}],n&&kc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(gu(su));function Tc(t){return Tc="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},Tc(t)}function Mc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Rc(n.key),n)}}function Rc(t){var e=function(t){if("object"!=Tc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Tc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Tc(e)?e:e+""}function Ic(t,e,r){return e=Bc(e),function(t,e){if(e&&("object"==Tc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Cc()?Reflect.construct(e,r||[],Bc(t).constructor):e.apply(t,r))}function Cc(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Cc=function(){return!!t})()}function Lc(t,e,r,n){var o=Dc(Bc(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Dc(){return Dc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Bc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Dc.apply(null,arguments)}function Bc(t){return Bc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Bc(t)}function Nc(t,e){return Nc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Nc(t,e)}$a.register("ruler",jc);var Fc=20,zc=20,Uc=90*Math.PI/180,Yc="9px Verdana",Gc="#f4f4f4",Hc="#999";function Wc(t,e,r){return{left:-t.x,top:-t.y,width:Fc,height:20}}function Xc(t,e,r,n){return{left:Fc-t.x,top:0-t.y,origin:20-t.x,width:e-Fc,height:20}}function qc(t,e,r,n){var o={x:0-t.x+10,y:-t.y+zc+(r-zc)/2},i=$a.transcoordRR(0-t.x,-t.y+zc,o,Uc);return{left:i.x-(r-zc),top:i.y,origin:20-t.y,width:r-zc,height:20}}function Vc(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/ii,height:t.canvas.height/ii}}var Qc=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=Ic(this,e,[t,r])).appScale={x:1,y:1},"disabled"!==t.ruler&&(n.hruler=new jc({left:Fc,top:0,origin:20,margin:0,height:20,unit:"m",rotation:0,font:Yc,fillStyle:Gc,strokeStyle:Hc,capturable:!1}),n.vruler=new jc({left:0,top:0,origin:20,margin:0,height:20,unit:"m",rotation:Uc,font:Yc,side:"top",fillStyle:Gc,strokeStyle:Hc,capturable:!1}),n.origin_rect=new wc({left:-20,top:-20,width:20,height:20,fillStyle:Gc,strokeStyle:Hc,lineWidth:1}),n.addComponent(n.hruler),n.addComponent(n.vruler),n.addComponent(n.origin_rect)),n.invalidate(),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Nc(t,e)}(e,t),r=e,n=[{key:"capturable",get:function(){return!1}},{key:"ready",value:function(){if(Lc(e,"ready",this,3)([]),this.hruler){var t=this.rootModel,r=Object.assign({},t.get("translate"));r.x<Fc&&(r.x+=Fc),r.y<zc&&(r.y+=zc);var n=t.get("scale")||{x:1,y:1};this.appScale=n,this.hruler.set("scale",n.x),this.vruler.set("scale",n.y),t.set("translate",r),this.set("translate",r),this.screen_coord=Vc(this);var o=this.screen_coord,i=o.width,a=o.height;this.hruler.set(Xc(r,i,0,this.hruler)),this.vruler.set(qc(r,0,a,this.vruler)),this.origin_rect.set(Wc(r))}else this.screen_coord=Vc(this)}},{key:"resize",value:function(){Lc(e,"resize",this,3)([]),this.screen_coord=Vc(this);var t=this.screen_coord,r=t.width,n=t.height;this.hruler&&(this.hruler.set(Xc(this.model.translate,r,0,this.hruler)),this.vruler.set(qc(this.model.translate,0,n,this.vruler)),this.origin_rect.set(Wc(this.model.translate)))}},{key:"render",value:function(t){if(this.guide){t.save();var e=this.guide,r=e.x,n=e.y,o=this.screen_coord,i=o.top,a=o.left,u=o.width,s=o.height;t.beginPath(),t.moveTo(r,i),t.lineTo(r,i+s),t.moveTo(a,n),t.lineTo(a+u,n),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var c=this.transcoordS2C(r,n,this.rootModel);t.textBaseline=c.y>200?"bottom":"top",t.textAlign=c.x>200?"right":"left";var f=c.y>200?-5:5,l=c.x>200?-5:5,h=Math.round(r/this.appScale.x),p=Math.round(n/this.appScale.y);t.fillText(" ".concat(h,", ").concat(p," "),r+l,n+f),t.stroke(),t.restore()}}},{key:"guide",get:function(){return this._guide},set:function(t){this._guide=t,this.invalidate()}},{key:"contains",value:function(t,e){return!0}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}},{key:"onmousedown_origin",value:function(t,e){this.rootModel.set("translate",{x:20,y:20})}},{key:"onchange_root_model",value:function(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=Vc(this),this.hruler){var n=this.model.translate,o=this.screen_coord,i=o.width,a=o.height;this.hruler.set(Xc(n,i,0,this.hruler)),this.vruler.set(qc(n,0,a,this.vruler)),this.origin_rect.set(Wc(n))}this._guide=null}this.invalidate()}},{key:"onmouseout_child",value:function(t){this._guide=null,this.invalidate()}},{key:"onmousemove_child",value:function(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}}],n&&Mc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function Kc(t){return Kc="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},Kc(t)}function Jc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Zc(n.key),n)}}function Zc(t){var e=function(t){if("object"!=Kc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Kc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Kc(e)?e:e+""}function $c(t,e,r){return e=rf(e),function(t,e){if(e&&("object"==Kc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,tf()?Reflect.construct(e,r||[],rf(t).constructor):e.apply(t,r))}function tf(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(tf=function(){return!!t})()}function ef(){return ef="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=rf(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ef.apply(null,arguments)}function rf(t){return rf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},rf(t)}function nf(t,e){return nf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},nf(t,e)}$a.register("guide-layer",Qc);var of=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),$c(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nf(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=ef(rf(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel.get("translate");this.set("translate",o)}},{key:"render",value:function(t){}},{key:"contains",value:function(t,e){return!(this.app.mode!=$o)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onkeydown",value:function(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=$o)}},{key:"onkeyup",value:function(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}},{key:"ondragstart",value:function(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}},{key:"ondragmove",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.rootModel.move({x:r-this.last_position.x,y:n-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}}],n&&Jc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function af(t){return af="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},af(t)}function uf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,sf(n.key),n)}}function sf(t){var e=function(t){if("object"!=af(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=af(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==af(e)?e:e+""}$a.register("shift-layer",of);var cf=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.params=Object.assign({},e)},(e=[{key:"excute",value:function(){}}])&&uf(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function ff(t){return ff="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},ff(t)}function lf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,hf(n.key),n)}}function hf(t){var e=function(t){if("object"!=ff(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ff(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ff(e)?e:e+""}function pf(t,e,r){return e=df(e),function(t,e){if(e&&("object"==ff(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,yf()?Reflect.construct(e,r||[],df(t).constructor):e.apply(t,r))}function yf(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(yf=function(){return!!t})()}function df(t){return df=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},df(t)}function vf(t,e){return vf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},vf(t,e)}var gf=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),pf(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&vf(t,e)}(e,t),r=e,o=[{key:"before",value:function(t){return t.map((function(t){return{component:t}}))}},{key:"after",value:function(t,e){e.execute(null,!1)}},{key:"around",value:function(t,e,r){e.call(r),t.execute(null,!1)}}],(n=[{key:"execute",value:function(){this.params.changes.forEach((function(t){return t.component.set(t.after)}))}}])&&lf(r.prototype,n),o&&lf(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(cf),bf="left",mf="right",wf="center",xf="bottom",kf="middle",Sf=[bf,mf,wf,"top",kf,xf];function _f(t){if(this.hasSameParentForAllSelected&&-1!=Sf.indexOf(t)){var e=this.selected.filter((function(t){return!t.stuck}));if(!(e.length<=1)){var r=this.app.commander;gf.around(r,(function(){!function(t,e){for(var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,o=r.top+r.height,i=0;i<e.length;i++){var a=e[i].bounds;r.left=a.left>r.left?r.left:a.left,r.top=a.top>r.top?r.top:a.top,n=a.left+a.width>n?a.left+a.width:n,o=a.top+a.height>o?a.top+a.height:o}switch(r.width=n-r.left,r.height=o-r.top,t){case bf:for(var u=0;u<e.length;u++){var s=e[u].bounds;e[u].bounds={left:r.left,top:s.top,width:s.width,height:s.height}}break;case wf:for(var c=0;c<e.length;c++){var f=e[c].bounds;e[c].bounds={left:r.left+r.width/2-f.width/2,top:f.top,width:f.width,height:f.height}}break;case mf:for(var l=0;l<e.length;l++){var h=e[l].bounds;e[l].bounds={left:n-h.width,top:h.top,width:h.width,height:h.height}}break;case"top":for(var p=0;p<e.length;p++){var y=e[p].bounds;e[p].bounds={left:y.left,top:r.top,width:y.width,height:y.height}}break;case kf:for(var d=0;d<e.length;d++){var v=e[d].bounds;e[d].bounds={left:v.left,top:r.top+r.height/2-v.height/2,width:v.width,height:v.height}}break;case xf:for(var g=0;g<e.length;g++){var b=e[g].bounds;e[g].bounds={left:b.left,top:o-b.height,width:b.width,height:b.height}}}}(t,e)}))}}}var Of="VERTICAL",Ef=[Of,"HORIZONTAL"];function Af(t){if(this.hasSameParentForAllSelected&&-1!=Ef.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;gf.around(r,(function(){!function(t,e){var r=e.filter((function(t){return!t.stuck})).slice(0);r.sort((function(e,r){var n=e.center,o=r.center;return t===Of?n.y-o.y:n.x-o.x}));for(var n=r.reduce((function(e,r){return e+(t===Of?r.bounds.height:r.bounds.width)}),0),o=r[0].bounds,i=r[r.length-1].bounds,a=((t===Of?i.top+i.height-o.top:i.left+i.width-o.left)-n)/(r.length-1),u=t===Of?o.top+o.height:o.left+o.width,s=1;s<r.length-1;s++){var c=r[s],f=c.bounds;u+=a,t===Of?(f.top=u,u+=f.height):(f.left=u,u+=f.width),c.bounds=f}}(t,e)}))}}}function Pf(t){return Pf="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},Pf(t)}function jf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Tf(n.key),n)}}function Tf(t){var e=function(t){if("object"!=Pf(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Pf(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Pf(e)?e:e+""}function Mf(t,e,r){return e=If(e),function(t,e){if(e&&("object"==Pf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Rf()?Reflect.construct(e,r||[],If(t).constructor):e.apply(t,r))}function Rf(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Rf=function(){return!!t})()}function If(t){return If=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},If(t)}function Cf(t,e){return Cf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Cf(t,e)}function Lf(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}var Df=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Mf(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Cf(t,e)}(e,t),r=e,(n=[{key:"execute",value:function(){this.params.changes.forEach((function(t){var e=t.component,r=t.to_container,n=t.to_index,o=t.to_left,i=t.to_top,a=(t.hint,function(t){if(t.isRootModel())return t.bounds;var e=t.bounds,r=t.rotatePoint,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e)),u=Lf(e);if(e.removeSelf(!r),e.bounds=a,e.set("rotation",u),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-Lf(e))%(2*Math.PI)}(e,r));var s=function(t,e){if(e.isRootModel())return t.bounds;var r=t.bounds,n=t.rotatePoint,o=e.transcoordT2S(n.x,n.y),i=e.bounds;return{left:o.x-(n.x-r.left)-i.left,top:o.y-(n.y-r.top)-i.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==o?o:s.left,t.to_top=void 0!==i?i:s.top,e.bounds={left:t.to_left,top:t.to_top,width:s.width,height:s.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}])&&jf(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(cf);function Bf(t,e,r){this.app.commander.execute(new Df({changes:[{component:t,to_container:e,to_index:r}]}))}function Nf(t){var e=this.selected.filter((function(t){return!t.stuck}));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){var o=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:o,to_index:o+1}]}else if("backward"==t){var i=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:i,to_index:i-1}]}else r=e.filter((function(t){return t.parent===n})).sort((function(e,r){var o=n.indexOf(e)<n.indexOf(r);return"front"==t?o:!o})).map((function(e,r){return n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r}}));var a=new Df({changes:r});this.app.commander.execute(a)}}function Ff(t,e,r,n){var o=$a.register(t.type);if(!o)return wo("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var i=new o(t,e);return t.components&&i.isContainer()&&(t.components.forEach((function(t){var o=Ff(t,e,r,n);o&&i.addComponent(o)})),delete t.components),i.created(),i}function zf(t,e){var r=Xo(t.hierarchy);return delete r.id,Ff(r,t.app,e)}function Uf(t,e,r){var n=this;t instanceof Array||(t=[t]),r||(r=this.model_layer);var o=[],i=new Map;this.selected=t.map((function(t){try{return Ff(t,r.app,(function(t){var e=n.getNewRefid();return void 0!==t&&i.set(t,e),e}),(function(t){return(n.indexMap[t]||[])[0]}))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((function(t){var n=e.left,a=e.top,u=e.width,s=e.height,c=e.x,f=e.y,l=e.cx,h=e.cy;return t.replaceRefids(i),isNaN(n)||isNaN(a)||isNaN(u)||isNaN(s)||(t.bounds={left:n,top:a,width:u,height:s}),isNaN(c)||isNaN(f)||t.move({x:c,y:f},!1),isNaN(l)||isNaN(h)||(t.center={x:l,y:h}),o.push({component:t,to_container:r}),t})),this.app.commander.execute(new Df({changes:o}))}function Yf(){var t=this,e=[],r=new Map;if(this.selected=this.selected.filter((function(t){return!t.isRootModel()})).map((function(n){var o=zf(n,(function(e){var n=t.getNewRefid();return void 0!==e&&r.set(e,n),n}));return o.move({x:20,y:20},!1),e.push({component:o,to_container:n.parent}),o})).map((function(t){return t.replaceRefids(r),t})),0!=e.length){var n=new Df({changes:e});this.app.commander.execute(n)}}function Gf(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((function(t){return!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup())})).map((function(t){return e||(e=t.parent),{component:t,to_container:null}})),n=function(){var t=[];if(e.components.filter((function(t){return!r.find((function(e){return e.component===t}))})).forEach((function(e){return t.push(e)})),t.length>1)return 1;var n=e.parent;t.forEach((function(t){return r.push({component:t,to_container:n})})),r.push({component:e,to_container:null}),e=n};e&&e.isGroup()&&!n(););r.length>0&&this.app.commander.execute(new Df({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function Hf(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.on(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.on(t,e,r);break;default:this.on(t,e,r)}}function Wf(t,e,r){var n;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function Xf(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.off(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.off(t,e,r);break;default:this.off(t,e,r)}}function qf(t){var e=this.target_element,r=t||this.fitMode,n=this;function o(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.removeEventListener(t,o)}))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.addEventListener(t,o)})),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var Vf=0;function Qf(){var t=this.selected.filter((function(t){return!t.isRootModel()})).map((function(t){return t.hierarchy}));if(0!=t.length)return Vf=0,JSON.stringify(t,null,2)}function Kf(){Vf=0;var t=Qf.call(this);return Gf.call(this),t}function Jf(t){if(t)try{Vf++,Uf.call(this,JSON.parse(t),{x:15*Vf,y:15*Vf})}catch(e){mo(e,t)}}var Zf=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:e,mimeType:function(t){var r,n;return(r="application/font-woff",n="image/jpeg",{woff:r,woff2:r,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:n,jpeg:n,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[e(t).toLowerCase()]||""},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,o=new Uint8Array(n),i=0;i<n;i++)o[i]=r.charCodeAt(i);e(new Blob([o],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var o=r.createElement("a");return r.body.appendChild(o),n.href=e,o.href=t,o.href},getAndEncode:function(t){return ul.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime()),new Promise((function(e){var r,n=new XMLHttpRequest;if(n.onreadystatechange=function(){if(4===n.readyState)if(200===n.status){var o=new FileReader;o.onloadend=function(){var t=o.result.split(/,/)[1];e(t)},o.readAsDataURL(n.response)}else r?e(r):i("cannot fetch resource: "+t+", status: "+n.status)},n.ontimeout=function(){r?e(r):i("timeout of 30000ms occured while fetching resource: "+t)},n.responseType="blob",n.timeout=3e4,n.open("GET",t,!0),n.send(),ul.impl.options.imagePlaceholder){var o=ul.impl.options.imagePlaceholder.split(/,/);o&&o[1]&&(r=o[1])}function i(t){console.error(t),e("")}}))},uid:(t=0,function(){return"u"+("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4)+t++}),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var e=r(t,"border-left-width"),n=r(t,"border-right-width");return t.scrollWidth+e+n},height:function(t){var e=r(t,"border-top-width"),n=r(t,"border-bottom-width");return t.scrollHeight+e+n}};var t;function e(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function r(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),$f=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,o,i){return e(t)?Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,o,i)}))})),r})):Promise.resolve(t)},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!Zf.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?Zf.resolveUrl(t,r):t})).then(n||Zf.getAndEncode).then((function(t){return Zf.dataAsUrl(t,Zf.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+Zf.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),tl=function(){return{resolveAll:function(){return t(document).then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(Zf.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{Zf.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return $f.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return $f.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),el=function(){return{inlineAll:function e(r){return r instanceof Element?function(t){var e=t.style.getPropertyValue("background");return e?$f.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(Zf.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r)},impl:{newImage:t}};function t(t){return{inline:function(e){return Zf.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||Zf.getAndEncode).then((function(e){return Zf.dataAsUrl(e,Zf.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),rl={imagePlaceholder:void 0,cacheBust:!1};function nl(t,e){return function(t){void 0===t.imagePlaceholder?ul.impl.options.imagePlaceholder=rl.imagePlaceholder:ul.impl.options.imagePlaceholder=t.imagePlaceholder,void 0===t.cacheBust?ul.impl.options.cacheBust=rl.cacheBust:ul.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return il(t,e.filter,!0)})).then(al).then((function(t){var r=e,n=r.bgcolor,o=r.width,i=r.height,a=r.style,u=r.sx,s=void 0===u?1:u,c=r.sy,f=void 0===c?1:c,l=t.style;return n&&(l.backgroundColor=n),o&&(l.width=o+"px"),i&&(l.height=i+"px"),l["margin-left"]="0px",l["margin-top"]="0px",["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){l[t+"transform"]="rotate(0rad) translate(0px, 0px) scale(".concat(s,", ").concat(f,") perspective(1px)")})),a&&Object.keys(a).forEach((function(t){l[t]=a[t]})),t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(Zf.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||Zf.width(t),e.height||Zf.height(t))}))}function ol(t,e){return nl(t,e).then(Zf.makeImage).then(Zf.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(e.width,e.height,r.width=e.width||Zf.width(t),r.height=e.height||Zf.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function il(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return Zf.makeImage(t.toDataURL())}catch(t){wo(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):function(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return il(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}(e,Zf.asArray(n),r).then((function(){return e}))}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then((function(){r=window.getComputedStyle(t),n=e.style,r.cssText?n.cssText=r.cssText:function(t,e){Zf.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}(r,n);var r,n})).then((function(){[":before",":after"].forEach((function(r){!function(r){var n=window.getComputedStyle(t,r),o=n.getPropertyValue("content");if(""!==o&&"none"!==o){var i=Zf.uid();e.className=e.className+" "+i;var a=document.createElement("style");a.appendChild(function(t,e,r){var n="."+t+":"+e,o=r.cssText?i(r):a(r);return document.createTextNode(n+"{"+o+"}");function i(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function a(t){return Zf.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}(i,r,n)),e.appendChild(a)}}(r)}))})).then((function(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)})).then((function(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))})).then((function(){return e})):e}(t,e)})):Promise.resolve()}function al(t){return el.inlineAll(t).then((function(){return t}))}var ul={toSvg:nl,toPng:function(t,e){return ol(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return ol(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return ol(t,e||{}).then(Zf.canvasToBlob)},toPixelData:function(t,e){return ol(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,Zf.width(t),Zf.height(t)).data}))},impl:{fontFaces:tl,images:el,util:Zf,inliner:$f,options:{}}};const sl=ul;function cl(t,e,r,n){var o=this.model_layer,i=o._overlay;return new Promise((function(a,u){if(o){var s=o.get("width"),c=o.get("height");r=r||s,n=n||c;var f=o.get("translate"),l=o.get("scale"),h=Math.min(r/s,n/c);r=s*h,n=c*h,o.set("translate",{x:0,y:0}),o.set("scale",{x:h/ii,y:h/ii});var p=$a.createCanvas(r,n),y=p.getContext("2d");if(o.draw(y),o.set("translate",f),o.set("scale",l),!i)return a(p.toDataURL(t,e)),void(p=null);sl.toPng(i,{sx:h,sy:h,width:r,height:n}).then((function(o){var i=new Image;i.onload=function(){y.drawImage(i,0,0,r,n),a(p.toDataURL(t,e)),p=null},i.src=o}),(function(r){mo(r),a(p.toDataURL(t,e)),p=null}))}else u("No target model")}))}function fl(){var t=this;if(this.hasSameParentForAllSelected){var e=this.selected.filter((function(t){return!!t.parent&&!t.stuck}));if(!(e.length<2)){var r=e[0].parent,n=[],o=e.sort((function(t,e){return r.components.indexOf(t)-r.components.indexOf(e)}));o.forEach((function(t){n.push(t.bounds)}));var i=$a.union(n),a=e[0].transcoordP2S(i.left,i.top);a=e[0].transcoordS2T(a.x,a.y);var u=new Map,s=Ff({type:"group",left:a.x,top:a.y,width:i.width,height:i.height},r.app,(function(e){var r=t.getNewRefid();return void 0!==e&&u.set(e,r),r}));s.replaceRefids(u);var c=[{component:s,to_container:r}];o.forEach((function(t){c.push({component:t,to_container:s})})),this.app.commander.execute(new Df({changes:c})),this.selected=[s]}}}function ll(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((function(r){if(r.isGroup()){var n=r.parent;r.components.forEach((function(r){t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new Df({changes:e})),this.selected=t}}function hl(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=$a.union(e),n=r.left+r.width/2;t.map((function(t){t.symmetryX(n)}))}}function pl(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=$a.union(e),n=r.top+r.height/2;t.map((function(t){t.symmetryY(n)}))}}function yl(){gf.around(this.app.commander,hl,this)}function dl(){gf.around(this.app.commander,pl,this)}function vl(t,e,r){var n=this.findAll(t,r);return n.forEach((function(t){t.set(e)})),n}function gl(t){gf.around(this.app.commander,t)}function bl(){return Object.values(this.indexMap).map((function(t){return t.map((function(t){var e=t.model;return{key:e.id,value:e.data}}))})).flat().sort((function(t,e){return t.key>e.key?1:-1}))}function ml(t){return ml="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},ml(t)}function wl(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function xl(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?wl(Object(r),!0).forEach((function(e){kl(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):wl(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function kl(t,e,r){return(e=function(t){var e=function(t){if("object"!=ml(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ml(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ml(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var Sl="left",_l="right",Ol="center",El="bottom",Al="middle",Pl=[Sl,_l,Ol,"top",Al,El];function jl(t){if(this.hasSameParentForAllSelected&&-1!=Pl.indexOf(t)){var e=this.selected.filter((function(t){return!t.stuck})),r=this.app.commander;gf.around(r,(function(){!function(t,e){var r=e[0].parent.bounds,n=r.width,o=r.height;switch(t){case Sl:for(var i=0;i<e.length;i++){var a=e[i].bounds;e[i].bounds=xl(xl({},a),{},{left:0})}break;case Ol:for(var u=0;u<e.length;u++){var s=e[u].bounds;e[u].bounds=xl(xl({},s),{},{left:n/2-s.width/2})}break;case _l:for(var c=0;c<e.length;c++){var f=e[c].bounds;e[c].bounds=xl(xl({},f),{},{left:n-f.width})}break;case"top":for(var l=0;l<e.length;l++){var h=e[l].bounds;e[l].bounds=xl(xl({},h),{},{top:0})}break;case Al:for(var p=0;p<e.length;p++){var y=e[p].bounds;e[p].bounds=xl(xl({},y),{},{top:o/2-y.height/2})}break;case El:for(var d=0;d<e.length;d++){var v=e[d].bounds;e[d].bounds=xl(xl({},v),{},{top:o-v.height})}}}(t,e)}))}}function Tl(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function Ml(){this.trigger("stylepastestart")}function Rl(){this.trigger("stylepastestop")}function Il(){this.trigger("databindpastestart")}function Cl(){this.trigger("databindpastestop")}function Ll(t){return Ll="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},Ll(t)}function Dl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Bl(n.key),n)}}function Bl(t){var e=function(t){if("object"!=Ll(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ll(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ll(e)?e:e+""}function Nl(t,e,r){return e=Ul(e),function(t,e){if(e&&("object"==Ll(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Fl()?Reflect.construct(e,r||[],Ul(t).constructor):e.apply(t,r))}function Fl(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Fl=function(){return!!t})()}function zl(){return zl="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Ul(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},zl.apply(null,arguments)}function Ul(t){return Ul=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ul(t)}function Yl(t,e){return Yl=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Yl(t,e)}var Gl=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Nl(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Yl(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=zl(Ul(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel,i=o.get("translate"),a=o.get("scale");this.set("translate",i),this.set("scale",a)}},{key:"render",value:function(t){var e=this.addbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"contains",value:function(t,e){return!(this.app.mode!=ti)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"onaddstart",value:function(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=ti)}},{key:"onaddstop",value:function(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}},{key:"onkeydown",value:function(t){this.app.mode!==ti||"Esc"!=t.code&&"Escape"!=t.code||this.root.trigger("addstop")}},{key:"ondragstart",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox={sx:r,sy:n}}},{key:"ondragmove",value:function(t){if(this.app.mode===ti){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox&&(this.addbox.ex=r,this.addbox.ey=n,this.invalidate())}}},{key:"ondragend",value:function(t,e){if(this.app.mode===ti){var r=this.addbox,n=r.sx,o=r.sy,i=r.ex,a=r.ey;Uf.call(this.root,this.models,{left:Math.min(n,i),top:Math.min(o,a),width:Math.abs(i-n),height:Math.abs(a-o)}),this.root.trigger("addstop")}}},{key:"onmousedown",value:function(t,e){this.app.mode===ti&&(this.downpoint={x:t.offsetX,y:t.offsetY})}},{key:"onmouseup",value:function(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;Uf.call(this.root,this.models,{cx:n,cy:o}),this.root.trigger("addstop")}}}],n&&Dl(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function Hl(t,e,r,n,o){o||function(t,e,r,n){var o=t.selected,i=n?o.slice(0):[];n&&i.length>0?e=i[0].parent:e.isContainer()||(e=e.parent);var a=e.layout.capturables(e),u=!!e.layout.joinType;if(n&&r.selected.forEach((function(t){i.splice(i.indexOf(t),1)})),r.selected=[],a.forEach((function(t){t.capturable&&function(t,e,r){var n,o,i,a,u=e.sx,s=e.sy,c=e.ex,f=e.ey;if(u>c?(n=c,o=u):(n=u,o=c),s>f?(i=f,a=s):(i=s,a=f),r){var l=t.bounds,h=t.transcoordS2TR(l.left,l.top),p=t.transcoordS2TR(l.left+l.width,l.top+l.height),y=h.x,d=p.x,v=h.y,g=p.y,b=Math.min(n,y,o,d),m=Math.max(n,y,o,d),w=Math.min(i,v,a,g),x=Math.max(i,v,a,g);return!(m-b>Math.abs(o-n)+Math.abs(d-y)||x-w>Math.abs(a-i)+Math.abs(g-v))}var k=t.path;if(!k)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(var S=0;S<k.length;S++){var _=t.transcoordS2TR(k[S].x,k[S].y);if(n>_.x||o<_.x||i>_.y||a<_.y)return!1}return!0}(t,r,u)&&-1==i.indexOf(t)&&r.selected.push(t)})),i=i.concat(r.selected),o.length!==i.length)t.selected=i;else for(var s=0;s<i.length;s++)if(o[s]!=i[s]){t.selected=i;break}}(t,e,r,n)}function Wl(t){return Wl="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},Wl(t)}function Xl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ql(n.key),n)}}function ql(t){var e=function(t){if("object"!=Wl(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Wl(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Wl(e)?e:e+""}function Vl(t,e,r){return e=Jl(e),function(t,e){if(e&&("object"==Wl(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ql()?Reflect.construct(e,r||[],Jl(t).constructor):e.apply(t,r))}function Ql(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ql=function(){return!!t})()}function Kl(){return Kl="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Jl(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Kl.apply(null,arguments)}function Jl(t){return Jl=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Jl(t)}function Zl(t,e){return Zl=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Zl(t,e)}function $l(t,e){if(t){if("string"==typeof t)return th(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?th(t,e):void 0}}function th(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function eh(t,e){var r,n=function(t){var e="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!e){if(Array.isArray(t)||(e=$l(t))){e&&(t=e);var r=0,n=function(){};return{s:n,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:n}}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 o,i=!0,a=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return i=t.done,t},e:function(t){a=!0,o=t},f:function(){try{i||null==e.return||e.return()}finally{if(a)throw o}}}}(t.components||[]);try{for(n.s();!(r=n.n()).done;){var o=r.value;eh(o,e);var i=e.indexOf(o);-1!=i&&e.splice(i,1)}}catch(t){n.e(t)}finally{n.f()}}$a.register("add-layer",Gl);var rh=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Vl(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Zl(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Kl(Jl(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel,i=o.get("translate"),a=o.get("scale");this.set("translate",i),this.set("scale",a)}},{key:"contains",value:function(t,e){return!1}},{key:"render",value:function(t){var e=this.selbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}},{key:"onkeydown",value:function(t,e){e.origin;var r=e.deliverer,n=r.selected;if(1!==n.length)return!1;var o=n[0],i=o.parent;if(!i||i===r)return!1;if("Tab"===t.code){var a=i.layout.capturables(i),u=a.indexOf(o);if(-1==u){if(!i.indexOf(o))return wo("Container not contains [",o,"] as a component"),!1;u=0}var s=a.length;t.shiftKey?u--:u++,o=a[(u+s)%s]}else{if(!i.layout.keyNavigate)return!1;o=i.layout.keyNavigate(i,o,t)||o}r.selected=[o],t.preventDefault()}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"_pendingDecision",value:function(t){this.downpoint={x:t.offsetX,y:t.offsetY}}},{key:"_selectGroupItem",value:function(t,e){for(var r=this.selected.indexOf(t),n=t.parent;n.parent.isGroup();)n=n.parent;var o=[],i=!1,a=!1;if(this.selected.forEach((function(t){var e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(o.push(t),i=!0)}else a=!0})),i)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);o.push(t)}else{if(-1!=r)return void this._pendingDecision(e);o=[t]}else{if(a)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n))return;o=[].concat(function(t){return function(t){if(Array.isArray(t))return th(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||$l(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.")}()}(this.selected),[n])}else o=[n];else o=[n]}this.selected=o}},{key:"onmousedown_comp",value:function(t,e){var r=e.origin;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);var n=this.selected.filter((function(t){return!t.isRootModel()&&!!t.parent})),o=n.length>0&&n[0].parent;o&&o!==r.parent&&(function(t,e){for(var r=t.parent;r;){var n=e.indexOf(r);-1!=n&&e.splice(n,1),r=r.parent}}(r,n),eh(r,n)),n.push(r),this.selected=n}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r],this.sameParent=!0}}},{key:"onmouseup_comp",value:function(t,e){if(this.downpoint&&this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=e.origin,n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){var o=this.selected.slice();return n>-1&&o.splice(n,1),void(this.selected=o)}r.parent.isGroup()&&(this.selected=[r])}}},{key:"ondragstart_selbox",value:function(t,e){if(e.origin.stuck){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;this.selbox={sx:n,sy:o,selected:[]}}}},{key:"ondragmove_selbox",value:function(t,e){var r=e.origin;if(r.stuck){var n=this.transcoordC2S(t.offsetX,t.offsetY),o=n.x,i=n.y;e.deliverer,this.selbox&&(this.selbox.ex=o,this.selbox.ey=i,Hl(this,r,this.selbox,t.shiftKey),this.invalidate())}}},{key:"ondragend_selbox",value:function(t,e){e.origin.stuck&&(this.last_pos=null,this.selbox=null,Hl(this,null,null,!1,!0),this.invalidate())}}],n&&Xl(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function nh(t){return nh="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},nh(t)}function oh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ih(n.key),n)}}function ih(t){var e=function(t){if("object"!=nh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=nh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==nh(e)?e:e+""}$a.register("selection-layer",rh);var ah=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},(e=[{key:"draw",value:function(t,e,r){var n=e.bounds,o=n.left,i=n.top,a=n.width,u=n.height;0!=a&&0!=u&&(t.beginPath(),t.rect(o,i,a,u),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(o,i,a,u),t.stroke(),t.closePath())}}])&&oh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function uh(t){return uh="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},uh(t)}function sh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ch(n.key),n)}}function ch(t){var e=function(t){if("object"!=uh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=uh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==uh(e)?e:e+""}var fh=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},(e=[{key:"draw",value:function(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}])&&sh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function lh(t){return lh="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},lh(t)}function hh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ph(n.key),n)}}function ph(t){var e=function(t){if("object"!=lh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=lh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==lh(e)?e:e+""}var yh=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this,i=r.controls;return!!i&&(i.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a,handler:i.handler}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){var n=e.controls;n&&n.forEach((function(e,n){t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}},{key:"onevent",value:function(t,e){var r=this.active,n=r.handler,o=r.component,i=r.index,a=o.transcoordC2S(e.offsetX,e.offsetY);a=o.transcoordS2P(a.x,a.y),n&&"function"==typeof n[t]&&n[t](a,i,o)}},{key:"onmousedown",value:function(t){this.onevent("onmousedown",t)}},{key:"ondragstart",value:function(t){var e=this.active;e.changes=gf.before([e.component]),this.onevent("ondragstart",t)}},{key:"ondragmove",value:function(t){this.onevent("ondragmove",t)}},{key:"ondragend",value:function(t){this.onevent("ondragend",t);var e=this.active,r=e.component,n=e.changes;gf.after(n,r.app.commander),r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}],e&&hh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function dh(t){return dh="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},dh(t)}function vh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,gh(n.key),n)}}function gh(t){var e=function(t){if("object"!=dh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=dh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==dh(e)?e:e+""}function bh(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}var mh=15*Math.PI/180,wh=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null,this.created=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.mutable&&(r.path.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"startLinkProcess",value:function(t,e,r){try{var n=Ff(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}},{key:"draw",value:function(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,o=this.active;n.forEach((function(n,i){t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",o&&o.component===e&&o.index===i&&(t.strokeStyle="#fa7703",o.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}},{key:"ondblclick",value:function(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.index,n=e.component;this.created||(this.active.changes=gf.before([n])),0!==r&&r!==n.path.length-1||(this.layer.counterEnd=0===r?n.toEnd||{fromto:"to"}:n.fromEnd||{fromto:"from"})}},{key:"ondragmove",value:function(t){var e,r,n=this.active||{},o=n.component,i=n.index,a=t.offsetX,u=t.offsetY,s=o.transcoordC2S(a,u);if(s=o.transcoordS2P(s.x,s.y),t.shiftKey){var c=o.path.length,f=o.isLine()&&0==i?o.path[1]:o.path[(i-1+c)%c];f=o.transcoordS2P(f.x,f.y);var l,h=0;c>2&&(o.isLine()?0==i?l=o.path[2]:1!=i&&(l=o.path[i-2]):l=o.path[(i-2+c)%c],l&&(h=bh(l=o.transcoordS2P(l.x,l.y),f)));var p=Math.round((bh(f,s)-h)/mh)*mh+h;s=function(t,e,r){return{x:Math.cos(e)*r+t.x,y:Math.sin(e)*r+t.y}}(f,p,(e=f,r=s,Math.sqrt((r.x-e.x)*(r.x-e.x)+(r.y-e.y)*(r.y-e.y))))}if(0===i||i===o.path.length-1){var y=this.layer.anchorTarget=o.rootModel.capture(a,u,(function(t){return!t.isConnectable()}));if(y){var d=y.transcoordC2S(a,u),v=d.x,g=d.y,b=this.layer.get("scale")||{x:1,y:1},m=this.layer.counterEnd,w=(y.anchors||[]).find((function(t){var e=t.name,r=t.inout,n=t.multiplicity,i=void 0===n?1/0:n,a=t.position,u=t.filter;if(m){var s=m.anchor,c=m.fromto;if(s&&("out"===s.inout&&"out"===r||"in"===s.inout&&"in"===r))return!1;if("from"===c&&"out"===r||"to"===c&&"in"===r)return!1}else console.error("should not be here.");if(Math.abs(v-a.x)>8/b.x||Math.abs(g-a.y)>8/b.y)return!1;var f=y.findInOutLines(e);return!(!f.includes(o)&&(i!==1/0&&f.length>=i||m&&u&&!u.call(t,m)))}));w?0==i?o.from={component:y.get("refid"),anchor:w.name,position:s}:o.to={component:y.get("refid"),anchor:w.name,position:s}:0==i?o.from={position:s}:o.to={position:s}}}o.mutatePath(null,(function(t){t[i]=s}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.changes;if(0===n||n===r.path.length-1){var i=t.offsetX,a=t.offsetY,u=r.rootModel.capture(i,a,(function(t){return t===r||t.isLine()})),s=u.transcoordC2S(i,a),c=s.x,f=s.y,l=this.layer.get("scale")||{x:1,y:1},h=(u.anchors||[]).find((function(t){return t&&Math.abs(c-t.position.x)<=8/l.x&&Math.abs(f-t.position.y)<=8/l.y}));h&&(0==n?r.from={component:u.get("refid"),anchor:h.name}:r.to={component:u.get("refid"),anchor:h.name}),this.layer.endLinkProcess()}if(this.created){var p=new Df({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(p)}else gf.after(o,r.app.commander);r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}],e&&vh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function xh(t){return xh="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},xh(t)}function kh(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Sh(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?kh(Object(r),!0).forEach((function(e){_h(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):kh(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function _h(t,e,r){return(e=Eh(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Oh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Eh(n.key),n)}}function Eh(t){var e=function(t){if("object"!=xh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=xh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==xh(e)?e:e+""}var Ah=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"active",get:function(){var t;return null!==(t=this._active)&&void 0!==t&&t.component.disposed&&(this._active=null),this._active},set:function(t){this._active=t}},{key:"reset",value:function(){this.active=null}},{key:"contains",value:function(t,e,r,n){var o,i,a=this,u=(null===(o=this.active)||void 0===o?void 0:o.component)===r&&(null===(i=this.active)||void 0===i?void 0:i.anchor);this.active=null;var s=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((function(t){var e=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(s){var u=s.anchor,c=s.fromto;if(u&&("out"===u.inout&&"out"===n||"in"===u.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i||a&&s&&!a.call(t,s))})).every((function(o){var i=u===o.name?2:1;return o&&o.position&&Math.abs(t-o.position.x)<=4*i/n.x&&Math.abs(e-o.position.y)<=4*i/n.y&&(a.active={component:r,anchor:o.name,template:o.template}),!a.active})),!!this.active}},{key:"draw",value:function(t,e,r){var n,o;if(e.get("refid")&&!e.isLine()){var i=this.active,a=(null===(n=this.active)||void 0===n?void 0:n.component)===e&&(null===(o=this.active)||void 0===o?void 0:o.anchor),u=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((function(t){var r=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(u){var s=u.anchor,c=u.fromto;if(s&&("out"===s.inout&&"out"===n||"in"===s.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i||u&&a&&!a.call(t,u))})).forEach((function(n){var o=n.name,u=n.position,s=a===o?2:1;u&&(t.beginPath(),t.ellipse(u.x,u.y,4*s/r.x,4*s/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",i&&i.component===e&&i.anchor===o&&(t.strokeStyle="#fa7703",i.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.component,n=e.anchor,o=e.template,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(r,Sh(Sh({type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10},o),{},{from:{component:r.get("refid"),anchor:n,position:i},to:{position:i}}),t)}},{key:"ondragmove",value:function(t){}},{key:"ondragend",value:function(t){}}],e&&Oh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Ph(t){return Ph="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},Ph(t)}function jh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Th(n.key),n)}}function Th(t){var e=function(t){if("object"!=Ph(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ph(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ph(e)?e:e+""}function Mh(t,e,r){var n,o,i=t.bounds,a=i.left,u=i.top,s=i.width,c=i.height;switch(e){case 0:n=a,o=u;break;case 1:n=a+s/2,o=u;break;case 2:n=a+s,o=u;break;case 3:n=a+s,o=u+c/2;break;case 4:n=a+s,o=u+c;break;case 5:n=a+s/2,o=u+c;break;case 6:n=a,o=u+c;break;case 7:n=a,o=u+c/2}var f=n,l=o,h=t.transcoordT2S(r.x,r.y);return{dx:h.x-f,dy:h.y-l}}function Rh(t,e,r,n,o,i){var a=t.bounds,u=a.left,s=a.top,c=a.width,f=a.height,l={left:u,top:s,width:c,height:f};switch(e){case 0:u+=n,s+=o,c-=n,f-=o;break;case 1:s+=o,f-=o;break;case 2:s+=o,c+=n,f-=o;break;case 3:c+=n;break;case 4:c+=n,f+=o;break;case 5:f+=o;break;case 6:u+=n,c-=n,f+=o;break;case 7:u+=n,c-=n}if(t.mutateBounds((function(e){return Math.abs(c)<=.001&&(c=.001),Math.abs(f)<=.001&&(f=.001),t.adjustResize({left:u,top:s,width:c,height:f},l,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var h=l.left-u,p=l.top-s;i?t.components.forEach((function(t){t.delta("tx",0),t.delta("ty",0),t.move({x:h,y:p},!1)})):t.components.forEach((function(t){t.delta("tx",h),t.delta("ty",p)}))}else{var y=i&&t.parent;y&&y.isGroup()&&y.calculateBounds()}}function Ih(t,e){var r=t.left,n=t.top,o=t.width,i=t.height,a=r+o/2,u=n+i/2,s=r+o,c=n+i,f=o*e.x>50,l=i*e.y>50;return[{x:r,y:n},f?{x:a,y:n}:null,{x:s,y:n},l?{x:s,y:u}:null,{x:s,y:c},f?{x:a,y:c}:null,{x:r,y:c},l?{x:r,y:u}:null]}var Ch=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.resizable&&(Ih(r.bounds,n).every((function(i,a){return i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){if(!e.isLine()){var n=e.bounds,o=n.left,i=n.top,a=n.width,u=n.height;if(t.beginPath(),t.rect(o-4/r.x,i-4/r.y,a+8/r.x,u+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var s=this.active;Ih(e.bounds,r).forEach((function(n,o){n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",s&&s.component===e&&s.index===o&&(t.strokeStyle="#fa7703",s.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active.component;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((function(t){return t.resizable})).map((function(t){return t.bounds}))}},{key:"ondragmove",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var u=Mh(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],Rh(e,n,t.shiftKey,u.dx,u.dy,!1)}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var u=Mh(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],Rh(e,n,t.shiftKey,u.dx,u.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}],e&&jh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Lh(t){return Lh="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},Lh(t)}function Dh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Bh(n.key),n)}}function Bh(t){var e=function(t){if("object"!=Lh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Lh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Lh(e)?e:e+""}var Nh=2*Math.PI,Fh=Math.PI/2;function zh(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}var Uh=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){if(!r.rotatable)return!1;var o=zh(r,n);return Math.abs(t-o.x)<=4/n.x&&Math.abs(e-o.y)<=4/n.y&&(this.active={component:r},!0)}},{key:"draw",value:function(t,e,r){if(e.rotatable){t.beginPath();var n=zh(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,Nh,!0),t.stroke(),t.fillStyle="#fff",t.fill();var o=this.active;o&&o.component===e&&(t.strokeStyle="#fa7703",t.stroke(),o.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((function(t){return t.rotatable})).map((function(t){return t.get("rotation")}))}},{key:"ondragmove",value:function(t){var e=this.active.component,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,o=e.get("rotation")||0,i=Math.atan((n.y-r.y)/(n.x-r.x)),a=(i=n.x>=r.x?i-Fh:Fh+i)-o;this.layer.selected.filter((function(t){return t.rotatable})).forEach((function(e,r){var n=((e.get("rotation")||0)+a)%Nh;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component;e.rotations,r.app.commander.execute(null,!1)}}],e&&Dh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Yh(t){return Yh="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},Yh(t)}function Gh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Hh(n.key),n)}}function Hh(t){var e=function(t){if("object"!=Yh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Yh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Yh(e)?e:e+""}function Wh(t,e,r){return e=Vh(e),function(t,e){if(e&&("object"==Yh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Xh()?Reflect.construct(e,r||[],Vh(t).constructor):e.apply(t,r))}function Xh(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Xh=function(){return!!t})()}function qh(){return qh="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Vh(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},qh.apply(null,arguments)}function Vh(t){return Vh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Vh(t)}function Qh(t,e){return Qh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qh(t,e)}var Kh=function(t){function e(t,r){var n;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=Wh(this,e,[t,r])).pathHandler=new wh(n);var o=n.pathHandler,i=new yh(n),a=new Ch(n),u=new Uh(n);return n._modelers=[o,i,a,u],n._control_mode_modelers=[i,o,a,u],n.focusOutline=new ah(n),n.groupOutline=new fh(n),n.anchorHandler=new Ah(n),n._reversed_modelers=n._modelers.slice().reverse(),n._control_mode_reverse_modelers=n._control_mode_modelers.slice().reverse(),n.hovered=null,n.hoveredDest=null,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qh(t,e)}(e,t),r=e,n=[{key:"modelers",get:function(){return this._control_mode?this._control_mode_modelers:this._modelers}},{key:"reversedModelers",get:function(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}},{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=qh(Vh(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel,i=o.get("translate"),a=o.get("scale");this.set("translate",i),this.set("scale",a)}},{key:"contains",value:function(t,e){var r=this.selected.filter((function(t){return!!t.parent})),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){var o=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(o.x,o.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((function(t){return t.reset()})),r=this.selected.filter((function(t){return!!t.parent}));for(var i=0;i<r.length;i++)for(var a=r[i],u=a.transcoordT2S(t,e),s=0;s<this.modelers.length;s++){var c=this.modelers[s];if(c.contains(u.x,u.y,a,n))return this.currentModeler=c,!0}if(this.anchorTarget){var f=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(f.x,f.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}},{key:"_componentDrawer",value:function(t,e,r,n){var o=[],i=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;i&&!i.isRootModel();)o.push(i),i=i.parent;t.save(),o.reverse().forEach((function(e){var r=e.rotatePoint;t.translate(r.x,r.y);var n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);var o=e.bounds;t.translate(o.left,o.top)}));var a=e.rotatePoint;t.translate(a.x,a.y);var u=e.get("scale");u&&t.scale(u.x,u.y),t.rotate(e.get("rotation")),t.translate(-a.x,-a.y),n(t,e,r),t.restore()}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),r&&t.translate(r.x*ii,r.y*ii),t.scale(o.x*ii,o.y*ii),i&&t.rotate(i),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}},{key:"render",value:function(t){var e=this;t.beginPath();var r=this.get("scale")||{x:1,y:1},n=this.selected.filter((function(t){return!!t.parent}));if(this.focused&&this._componentDrawer(t,this.focused,r,(function(t,r,n){e.focusOutline.draw(t,r,n)})),n.length>0&&n[0].parent.isGroup()){for(var o=n[0].parent;o.parent.isGroup();)o=o.parent;this._componentDrawer(t,o,r,(function(t,r,n){e.groupOutline.draw(t,r,n)}))}n.forEach((function(n){e._componentDrawer(t,n,r,(function(t,r,n){e.reversedModelers.forEach((function(e){return e.draw(t,r,n)}))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,r,(function(t,r,n){e.anchorHandler.draw(t,r,n)}))}},{key:"anchorTarget",get:function(){var t;return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||null!==(t=this.hovered)&&void 0!==t&&t.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget},set:function(t){this._anchorTarget=t}},{key:"hovered",get:function(){return this._hovered},set:function(t){this._hovered=t,this.invalidate()}},{key:"startLinkProcess",value:function(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}},{key:"counterEnd",get:function(){return this._counter_end},set:function(t){this.currentModeler=this.pathHandler,this._counter_end=t}},{key:"endLinkProcess",value:function(){var t;null===(t=this.processingLink)||void 0===t||t.trigger("tagreset"),this.processingLink=null,this._counter_end=null}},{key:"eventMap",get:function(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onmouseenter",value:function(t,e){this.hovered=null==e?void 0:e.origin}},{key:"onmouseleave",value:function(t,e){this.hovered=null}},{key:"onkeydown",value:function(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}},{key:"onkeyup",value:function(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}},{key:"onselected",value:function(t,e){this.invalidate()}},{key:"onchange_model",value:function(t,e,r){r.origin===r.deliverer&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}},{key:"ondblclick_model",value:function(t,e){var r=e.origin;null==r||r.root.fit()}},{key:"ondblclick",value:function(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}},{key:"onmousedown",value:function(t){this.currentModeler.onmousedown(t),this.invalidate()}},{key:"onmouseup",value:function(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}},{key:"ondragstart",value:function(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}},{key:"ondragmove",value:function(t){this.currentModeler.ondragmove(t),this.invalidate()}},{key:"ondragend",value:function(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}},{key:"ondrop",value:function(t,e){var r=this,n=e.origin,o=t.dataTransfer.files;if(!(o.length<1)){var i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),a=this.rootModel;Promise.all(Array.from(o).map((function(t){return new Promise((function(e,r){var n=new FileReader;n.addEventListener("loadend",(function(t){e(n.result)})),["error","abort"].forEach((function(t){return n.addEventListener(t,(function(t){r(t)}))})),n.readAsDataURL(t)}))}))).then((function(e){if(t.altKey)return gf.around(r.app.commander,(function(){n.ondropfile(o,e)})),void(r.selected=[n]);var u=[],s=e.map((function(t,e){var r,n=o[e].type,s=o[e].name;return n.startsWith("image/")?(r=Ff({type:n.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},a.app),u.push(new Promise((function(e,n){var o=new Image;o.src=t,o.onload=function(){r.set({width:o.width,height:o.height}),e()},o.onerror=function(t){n(t)}})))):n.startsWith("audio/")?r=Ff({type:"audio",top:0,left:0,width:100,height:100,src:t},a.app):n.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(s)?r=Ff({type:"excel",top:0,left:0,width:100,height:100,src:t},a.app):console.log("droped file",o[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((function(t){return{component:t,to_container:a}}));s.length>0&&Promise.all(u).then((function(){r.app.commander.execute(new Df({changes:s})),r.selected=s.map((function(t){return t.component}))}),(function(t){console.error(t)}))}),(function(t){console.error(t)}))}}},{key:"onwheel_scale",value:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;gf.around(this.app.commander,(function(){r.selected.forEach((function(t){var e=t.get("fontSize")||si.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;var o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,u=t.offsetY,s=r.transcoordC2S(a,u),c=.1*n,f={x:o.x+c,y:o.y+c};if(n<0&&o.x<.2||n>0&&o.x>10)return;r.set("scale",f);var l=r.transcoordC2S(a,u);r.set("translate",{x:i.x+(l.x-s.x)*f.x,y:i.y+(l.y-s.y)*f.y})}}}}],n&&Gh(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function Jh(t){return Jh="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},Jh(t)}function Zh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,$h(n.key),n)}}function $h(t){var e=function(t){if("object"!=Jh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Jh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Jh(e)?e:e+""}function tp(t,e,r){return e=rp(e),function(t,e){if(e&&("object"==Jh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ep()?Reflect.construct(e,r||[],rp(t).constructor):e.apply(t,r))}function ep(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ep=function(){return!!t})()}function rp(t){return rp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},rp(t)}function np(t,e){return np=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},np(t,e)}$a.register("modeling-layer",Kh);var op=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=tp(this,e,[t,r]))._anim_alpha=1,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&np(t,e)}(e,t),r=e,(n=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.decorators,o=!1;return n.map((function(t){return"string"==typeof t?Ba(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.decoTargets&&this.decoTargets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.decoTargets)}},{key:"decoTargets",get:function(){return this._decoTargets},set:function(t){this._decoTargets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}},{key:"onmouseenter",value:function(t,e){this._decotagreset(),this._ondecotag(e.origin)}},{key:"onmouseleave",value:function(t,e){this._decotagreset()}},{key:"ondecotagreset",value:function(t){this._decotagreset()}},{key:"ondecotag",value:function(t){this._ondecotag(t.origin)}},{key:"offdecotag",value:function(t,e){this._offdecotag(e.origin)}},{key:"_ondecotag",value:function(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}},{key:"_offdecotag",value:function(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}},{key:"_decotagreset",value:function(){this.decoTargets=[]}}])&&Zh(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function ip(t){return ip="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},ip(t)}function ap(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,up(n.key),n)}}function up(t){var e=function(t){if("object"!=ip(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ip(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ip(e)?e:e+""}function sp(t,e,r){return e=fp(e),function(t,e){if(e&&("object"==ip(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,cp()?Reflect.construct(e,r||[],fp(t).constructor):e.apply(t,r))}function cp(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(cp=function(){return!!t})()}function fp(t){return fp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},fp(t)}function lp(t,e){return lp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},lp(t,e)}$a.register("decotag-layer",op),$a.register("tag-layer",op);var hp=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=sp(this,e,[t,r]))._anim_alpha=1,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&lp(t,e)}(e,t),r=e,(n=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.reactionDecorators,o=!1;return n.map((function(t){return"string"==typeof t?Ba(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.targets&&this.targets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.targets)}},{key:"targets",get:function(){return this._targets},set:function(t){this._targets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}},{key:"onreactionreset",value:function(t){this._reactionreset()}},{key:"onreaction",value:function(t){this._onreaction(t.origin)}},{key:"offreaction",value:function(t,e){this._offreaction(e.origin)}},{key:"_onreaction",value:function(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}},{key:"_offreaction",value:function(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}},{key:"_reactionreset",value:function(){this.targets=[]}}])&&ap(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function pp(t){return pp="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},pp(t)}function yp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,dp(n.key),n)}}function dp(t){var e=function(t){if("object"!=pp(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=pp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==pp(e)?e:e+""}function vp(t,e,r){return e=mp(e),function(t,e){if(e&&("object"==pp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,gp()?Reflect.construct(e,r||[],mp(t).constructor):e.apply(t,r))}function gp(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(gp=function(){return!!t})()}function bp(){return bp="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=mp(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},bp.apply(null,arguments)}function mp(t){return mp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},mp(t)}function wp(t,e){return wp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},wp(t,e)}$a.register("reaction-layer",hp);var xp=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),vp(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&wp(t,e)}(e,t),r=e,n=[{key:"capturable",get:function(){return!0}},{key:"render",value:function(t){var e=this.state.scrolling;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){var r=this.vscroller,n=r.left,o=r.top,i=r.width,a=r.height;t.globalAlpha="v"==e?1:.3,t.fillRect(n,o,i,a)}if(this.hscroller){var u=this.hscroller,s=u.left,c=u.top,f=u.width,l=u.height;t.globalAlpha="h"==e?1:.3,t.fillRect(s,c,f,l)}t.stroke(),t.restore()}},{key:"resize",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=bp(mp(1&3?t.prototype:t),"resize",r))?function(t){return n.apply(r,t)}:n)([]),this.calcScrollerBounds()}},{key:"contains",value:function(t,e){var r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}},{key:"eventMap",get:function(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}},{key:"onchange",value:function(t){"scrolling"in t&&this.invalidate()}},{key:"ondragstart",value:function(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragmove",value:function(t,e){var r=this.root,n=this.canvas,o=n.clientWidth,i=n.clientHeight,a=this.rootModel.model,u=a.width,s=a.height,c={x:t.offsetX,y:t.offsetY},f=c.x,l=c.y,h=this._scale,p=h.x,y=h.y,d=this.state.scrolling,v=u/o,g=s/i;d&&r.rootModel.move({x:"h"==d?(-f+this.lastPosition.x)*p*v:0,y:"v"==d?(-l+this.lastPosition.y)*y*g:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragend",value:function(){delete this.lastPosition,this.setState({scrolling:null})}},{key:"calcScrollerBounds",value:function(){var t=this.canvas,e=t.clientWidth,r=t.clientHeight,n=this.rootModel.model,o=n.width,i=n.height,a=this._scale||{},u=a.x,s=void 0===u?1:u,c=a.y,f=void 0===c?1:c,l=this._translate||{},h=l.x,p=void 0===h?0:h,y=l.y,d=void 0===y?0:y,v=o/e,g=i/r,b={left:-p/s/v,top:r-10,width:e/s/v,height:10};this.hscroller=b.left>1||b.width+b.left<e-1?b:null,b={left:e-10,top:-d/f/g,width:10,height:r/f/g},this.vscroller=b.top>1||b.height+b.top<r-1?b:null,this.invalidate()}},{key:"onchangeModelLayer",value:function(t,e,r){if(t.scale){var n=(null==t?void 0:t.scale)||{},o=n.x,i=void 0===o?1:o,a=n.y,u=void 0===a?1:a;this._scale={x:i,y:u},this.calcScrollerBounds()}if(t.translate){var s=t.translate||{},c=s.x,f=void 0===c?0:c,l=s.y,h=void 0===l?0:l;this._translate={x:f,y:h},this.calcScrollerBounds()}}}],n&&yp(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Bs);function kp(t){return kp="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},kp(t)}function Sp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,_p(n.key),n)}}function _p(t){var e=function(t){if("object"!=kp(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=kp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==kp(e)?e:e+""}function Op(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((function(n){!function(t,e,r,n,o){for(var i in r){var a=r[i];if(yi(i,n.origin,0,t))for(var u in a){var s=a[u];u==n.name&&(n.listener=e,s.apply(e,o))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}$a.register("scroll-layer",xp);var Ep=function(){return t=function t(e){if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),void 0===e.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=e,this.listeners=[]},e=[{key:"start",value:function(){this.deliverer.on("(all)",Op,{event_pump:this})}},{key:"stop",value:function(){this.deliverer.off("(all)",Op)}},{key:"on",value:function(t,e){var r=Object.assign({},e);Object.keys(r).forEach((function(e){if(0==e.indexOf("?")){var n=r[e],o=e.substr(1),i=t.get(o);delete r[e],i?r[i]=n:wo("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}},{key:"off",value:function(t,e){for(var r=0;r<this.listeners.length;r++){var n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}},{key:"clear",value:function(){this.listeners=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}],e&&Sp(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Ap(t){return Ap="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},Ap(t)}function Pp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,jp(n.key),n)}}function jp(t){var e=function(t){if("object"!=Ap(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ap(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ap(e)?e:e+""}var Tp=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.eventMaps=[],this.root=e,e.eventMap&&this.add(e,e.eventMap)},e=[{key:"root",get:function(){return this._root},set:function(t){this._root=t}},{key:"stop",value:function(){this.eventMaps.forEach((function(t){return t.eventPump.stop()}))}},{key:"add",value:function(t,e){var r=this;if(this.root){var n=function(){var n=e[o];if("(self)"===o&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");gi(o,r.root,t).forEach((function(o){var i=new Ep(o);i.on(t,n),i.start(),r.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:o})}))};for(var o in e)n()}}},{key:"remove",value:function(t,e){for(var r=this.eventMaps.slice(0),n=0;n<r.length;n++){var o=r[n];o.listener!==t||e&&o.handlerMap!==e||(this.eventMaps.splice(n,1),o.eventPump.dispose())}}},{key:"clear",value:function(){this.eventMaps.slice(0).forEach((function(t){return t.eventPump.dispose()})),this.eventMaps=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}],e&&Pp(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Mp(t){return Mp="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},Mp(t)}function Rp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ip(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Lp(n.key),n)}}function Cp(t,e,r){return e&&Ip(t.prototype,e),r&&Ip(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function Lp(t){var e=function(t){if("object"!=Mp(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Mp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Mp(e)?e:e+""}var Dp={},Bp=0,Np=function(){return Cp((function t(e,r){Rp(this,t),this._type=r||e.type,this._ctrlKey=e.ctrlKey,this._altKey=e.altKey,this._shiftKey=e.shiftKey,this._metaKey=e.metaKey;var n=function(t){if(t.touches){var e=t.touches[0];if(!e)return Dp;var r=e.target.getBoundingClientRect();return Dp={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(e);if(this._offsetX=n.x,this._offsetY=n.y,"wheel"==e.type)this.deltaX=e.deltaX,this.deltaY=e.deltaY,this.deltaZ=e.deltaZ;else if("drop"==e.type)this.dataTransfer=e.dataTransfer;else if(e.type.match(/^touch/)&&(this._scale=e.scale,this._touches=e.touches,this._changedTouches=e.changedTouches,null==this._scale)){var o=function(t){var e,r,n=0,o=0;if(1===t.touches.length)return 0;Array.from(t.touches).forEach((function(t){e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,o=Math.max(t.screenY,o)}));var i=n-e||0,a=o-r||0;return Math.sqrt(Math.pow(i,2)+Math.pow(a,2))||0}(e);Bp>0&&(this._scale=o/Bp),Bp=o}}),[{key:"type",get:function(){return this._type},set:function(t){this._type=t}},{key:"offsetX",get:function(){return this._offsetX}},{key:"offsetY",get:function(){return this._offsetY}},{key:"altKey",get:function(){return this._altKey}},{key:"ctrlKey",get:function(){return this._ctrlKey}},{key:"shiftKey",get:function(){return this._shiftKey}},{key:"metaKey",get:function(){return this._metaKey}},{key:"touches",get:function(){return this._touches}},{key:"changedTouches",get:function(){return this._changedTouches}},{key:"scale",get:function(){return this._scale}},{key:"stopPropagation",value:function(){this._stop_=!0}},{key:"isPropagationStopped",value:function(){return this._stop_}}])}();function Fp(t,e){return t.capture(e.offsetX,e.offsetY)}function zp(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof Np&&e===r.type||(r=new Np(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}var Up=function(){return Cp((function t(e,r){var n=this;Rp(this,t),this.container=e,this.html_element=r,this.status=0,this.last_target=null,this.gesture_handlers=ai.map((function(t){return n.gestureHandlerBuilder(t)})),this.keyevent_handlers=ui.map((function(t){return n.keyeventHandlerBuilder(t)})),ai.forEach((function(t,e){return r.addEventListener(t,n.gesture_handlers[e])})),ui.forEach((function(t,e){return r.addEventListener(t,n.keyevent_handlers[e])})),r.ondragover=this.gestureHandlerBuilder("dragover"),r.ondrop=this.gestureHandlerBuilder("drop"),r.tabIndex=1}),[{key:"dispose",value:function(){var t=this;this.last_enter_target&&zp(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),ai.forEach((function(e,r){return t.html_element.removeEventListener(e,t.gesture_handlers[r])})),ui.forEach((function(e,r){return t.html_element.removeEventListener(e,t.keyevent_handlers[r])})),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}},{key:"gestureHandlerBuilder",value:function(t){var e=this["on".concat(t)].bind(this);return function(t){return e(new Np(t))&&t.preventDefault(),!1}}},{key:"keyeventHandlerBuilder",value:function(t){return this["on".concat(t)].bind(this)}},{key:"ondragover",value:function(t){return zp(Fp(this.container,t),t.type,t),!1}},{key:"ondrop",value:function(t){return zp(Fp(this.container,t),t.type,t),!1}},{key:"ondblclick",value:function(t){return zp(Fp(this.container,t),t.type,t),this.last_target=null,!1}},{key:"onkeydown",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onkeyup",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onmousemove",value:function(t){switch(this.status){case 1:var e=t.offsetX-this.__dragstart_e.offsetX,r=t.offsetY-this.__dragstart_e.offsetY;if(e*e+r*r<16)break;this.status=2,zp(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,zp(this.last_target,"dragmove",t);break;case 2:this.__dragmove_e=t,zp(this.last_target,"dragmove",t);break;default:var n=Fp(this.container,t);this.last_enter_target!==n&&(this.last_enter_target&&zp(this.last_enter_target,"mouseleave",t),n&&zp(n,"mouseenter",t),this.last_enter_target=n),zp(n,t.type,t),this.last_target=n}return!1}},{key:"onmousedown",value:function(t){if(2===this.status)zp(this.last_target,"dragend",t),this.last_target=null,this.status=0;else{var e=Fp(this.container,t);this.last_target=e,this.status=1,this.__dragstart_e=t,zp(e,t.type,t)}return!1}},{key:"onmouseup",value:function(t){if(2===this.status)zp(this.last_target,"dragend",t);else{var e=Fp(this.container,t);zp(e,t.type,t),this.last_target===e&&zp(e,"click",t)}return this.last_target=null,this.status=0,!1}},{key:"onmouseout",value:function(t){var e=Fp(this.container,t);if(2===this.status)zp(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(zp(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=0,!1}},{key:"ontouchstart",value:function(t){var e=this,r=Fp(this.container,t);return this.last_target=r,this.status=1,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((function(){e.status=0,zp(e.last_target,"hold",t),delete e.holdTimer}),500),zp(r,t.type,t),!1}},{key:"ontouchmove",value:function(t){var e=this;if(!t.touches||!t.changedTouches)return zp(this.last_target,"dragstart",t),zp(this.last_target,"dragmove",t),!1;var r=Fp(this.container,t);switch(this.status){case 1:Array.from(t.changedTouches).forEach((function(t){var r=e.touchPoints.find((function(e){return e.identifier===t.identifier}));if(r){var n=r.clientX-t.clientX,o=r.clientY-t.clientY;return Math.sqrt(Math.pow(n,2)+Math.pow(o,2))>=16?(e.status=2,void(e.holdTimer&&(clearTimeout(e.holdTimer),delete e.holdTimer))):void 0}}));break;case 2:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return zp(this.last_target,"pinch",t),!1;zp(this.last_target,"pan",t),r=this.last_target;break;default:this.last_enter_target!==r&&(this.last_enter_target&&zp(this.last_enter_target,"mouseleave",t),r&&zp(r,"mouseenter",t),this.last_enter_target=r),this.last_target=r}return zp(r,"touchmove",t),!1}},{key:"ontouchend",value:function(t){var e=Fp(this.container,t);switch(this.status){case 2:e=this.last_target;break;case 1:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,zp(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}zp(e,"touchend",t);var o=this.touchPoints.findIndex((function(e){return e.identifier===t.changedTouches[0].identifier}));return this.touchPoints.splice(o,1),this.last_target=null,this.status=0,!1}},{key:"onwheel",value:function(t){return zp(Fp(this.container,t),t.type,t),!1}}])}();function Yp(t,e,r){if(e.length<2)return e;for(var n=2;n<e.length;n++){var o=e.substring(0,n);if(!(t.measureText(o).width<r))break}return e.substring(0,n-1)}var Gp={};const Hp={register:function(t,e){Gp[t]=e},unregister:function(t){delete Gp[t]},get:function(t){return Gp[t]}};function Wp(t){if(t.hasTextProperty&&!t.textHidden){var e=t.model,r=e.text,n=void 0===r?"":r,o=e.bold,i=void 0===o?si.BOLD:o,a=e.italic,u=void 0===a?si.ITALIC:a,s=e.textWrap,c=void 0===s?si.TEXT_WRAP:s,f=e.fontFamily,l=void 0===f?si.FONT_FAMILY:f,h=e.fontColor,p=void 0===h?si.FONT_COLOR:h,y=e.textAlign,d=void 0===y?si.TEXT_ALIGN:y,v=e.textBaseline,g=void 0===v?si.TEXT_BASELINE:v,b=e.fontSize,m=void 0===b?si.FONT_SIZE:b,w=e.lineHeight,x=void 0===w?1.2*m:w,k=t.textBounds,S=k.left,_=k.top,O=k.width,E=k.height;m||(m=si.FONT_SIZE),x||(x=1.2*m),t.textHidden=!0;var A=document.createElement("textarea");ai.forEach((function(t){A.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));var P=t.transcoordS2C(S,_),j=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;var o=n.get("scale")||{x:1,y:1},i=o.x,a=o.y;r*=Math.max(i,a)||1,n=n.parent}return{rotation:e,scale:r}}(t),T=j.rotation,M=j.scale;switch(A.style.position="absolute",A.style.width=O+"px",A.style.height=E+"px",A.style.padding="0",A.value=n,A.style.fontFamily=l,A.style.fontSize=m+"px",A.style.lineHeight=x+"px",A.style.overflow="hidden",A.style.resize="none",A.style.outline="none",A.style.border=0,A.style.backgroundColor="transparent",A.style.display="inline-block",A.style.color=p,i&&(A.style.fontWeight="bold"),u&&(A.style.fontStyle="italic"),d){case"right":case"end":A.style.textAlign="right";break;case"justify":A.style.textAlign="justify";break;case"left":case"start":A.style.textAlign="left";break;default:A.style.textAlign="center"}var R=[i,u,m+"px",l].filter(Boolean).join(" ");N(n);var I=t.root.target_element;I.appendChild(A),A.select();var C,L=!1;A.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((function(){N(A.value)})):(L=C.skipUpdate="Escape"==t.code,document.createEvent?A.dispatchEvent(C):A.fireEvent(C.eventType,C))})),document.createEvent?(C=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(C=document.createEventObject()).eventType="blur";var D=t.root.selected,B=function(e){t.root.selected=D,t.textHidden=!1,A.removeEventListener("blur",B,!1),A.parentElement&&A.parentElement.removeChild(A),I.focus(),e.skipUpdate||L||t.app.commander.execute(new gf({changes:[{component:t,before:{text:n},after:{text:A.value}}]}))};A.addEventListener("blur",B,!1)}function N(e){var r={left:0,top:0},n=x*function(t,e,r,n){var o,i=t.getContext();return i.save(),i.font=r,o=function(t,e,r,n){var o=String(e).split("\n");return n?[].concat.apply([],o.map((function(e){return function(t,e,r){var n,o,i=e.split(" "),a=[],u=[];for(n=0,o=1;o<=i.length;o++)if(u=i.slice(n,o),t.measureText(u.join(" ")).width>r){if(o-n==1){var s=Yp(t,u[0],r);a.push([s]),i.splice(n,1,s,u[0].substring(s.length))}else{for(;""==i[o-1];)o++;a.push(i.slice(n,--o))}n=o}return o-n>1&&a.push(u),0==a.length&&a.push([""]),a}(t,e,r)}))):o.map((function(t){return t.split(" ")}))}(i,e,n,t.get("textWrap")).length,i.restore(),o}(t,e,R,O);switch(A.style.height=n+"px",g){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=E-n;break;default:r.top=E/2-n/2}if(!c){var o=function(t,e,r,n){var o=e.split("\n"),i=n,a=t.getContext();return a.save(),a.font=r,o.forEach((function(t){var e=a.measureText(t).width;e>i&&(i=e)})),a.restore(),i}(t,e,R,O);switch(A.style.width=o+"px",d){case"right":case"end":r.left=O-o;break;case"left":case"start":break;default:r.left=(O-o)/2}}A.style.marginLeft=r.left+"px",A.style.marginTop=r.top+"px";var i="translate(".concat(P.x,"px, ").concat(P.y,"px) scale(").concat(M,") rotate(").concat(T,"rad)");["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){A.style[t+"transform"]=i,A.style[t+"transform-origin"]="".concat(-r.left,"px ").concat(-r.top,"px")}))}}Hp.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){e.origin;var r=e.deliverer.selected;return!(1!==r.length||!r[0].hasTextProperty||"Enter"!=t.code&&"NumpadEnter"!=t.code||(Wp(r[0]),t.preventDefault(),0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){Wp(e.origin)}}}});var Xp,qp,Vp,Qp=wa((function(t,e,r){if(t.hasSameParentForAllSelected&&!r){var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((function(t){t.path.forEach((function(e){n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}else t.focused=null}),300);Hp.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected,i=n.selected.filter((function(t){return!t.stuck}));if(o.length!==i.length&&(o=n.selected=i),0!=o.length){var a=o[0].transcoordC2S(t.offsetX,t.offsetY);if(a=o[0].transcoordS2P(a.x,a.y),this.last_pos=a,this.direction=0,n.focused=o[0].parent,t.altKey){var u=[],s=new Map;n.selected=n.selected.filter((function(t){return!t.isRootModel()})).map((function(t){var e=zf(t,(function(t){var e=n.root.getNewRefid();return void 0!==t&&s.set(t,e),e}));return u.push({component:e,to_container:t.parent}),e})).map((function(t){return t.replaceRefids(s),t})),u.forEach((function(t){var e=t.component;t.to_container.addComponent(e)})),this.duplicates=n.selected.map((function(t){return{component:t}}))}else this.changes=gf.before(o)}}},dragmove:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].transcoordC2S(t.offsetX,t.offsetY),a=i.x,u=i.y,s=o[0].transcoordS2P(a,u);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var c=s.x-this.last_pos.x,f=s.y-this.last_pos.y;if(0==this.direction){if(c*c+f*f<25)return;Math.abs(c)>Math.abs(f)?this.direction=3:this.direction=4}3==this.direction?f=0:4==this.direction&&(c=0),o.forEach((function(t){t.move({x:c,y:f},1===o.length)})),this.last_pos=s,Qp(n,o)}}},dragend:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].parent,a=n.focused||e.deliverer;if(this.changes&&!a.isGroup())if(n.hasSameParentForAllSelected&&a&&a!==i){var u=this.changes.map((function(t){var e=t.component;return t.before,{component:e,to_container:a}}));n.app.commander.execute(new Df({changes:u}))}else gf.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((function(t){return t.to_container=a,t}));var s=new Df({changes:this.duplicates});n.app.commander.execute(s)}o.forEach((function(t){t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,Qp(n,o,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var r=e.origin,n=e.deliverer,o={},i=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:o.x=-i,o.y=0;break;case 38:o.x=0,o.y=-i;break;case 39:o.x=i,o.y=0;break;case 40:o.x=0,o.y=i;break;default:return}var a=n.selected;gf.around(n.app.commander,(function(){a.forEach((function(t){!t.stuck&&t.move(o,!1)}))}))}}}});var Kp=xa((function(){var t=Vp,e=t.x,r=t.y,n=qp.deref();n&&(n.rootModel.move({x:e-Xp.x,y:r-Xp.y},!1),Xp={x:e,y:r})}),60,{leading:!0,trailing:!0});function Jp(t){return Jp="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},Jp(t)}function Zp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function $p(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Zp(Object(r),!0).forEach((function(e){ty(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Zp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function ty(t,e,r){return(e=function(t){var e=function(t){if("object"!=Jp(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Jp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Jp(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}Hp.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){Xp={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){qp=new WeakRef(e.deliverer),Vp={x:t.offsetX,y:t.offsetY},Kp()}}}}),Hp.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer,n=t.deltaY<0?1:-1,o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,u=t.offsetY,s=r.transcoordC2S(a,u),c=.1*n,f={x:o.x+c,y:o.y+c};if(!(n<0&&o.x<.2||n>0&&o.x>10)){r.set("scale",f);var l=r.transcoordC2S(a,u);r.set("translate",{x:i.x+(l.x-s.x)*f.x,y:i.y+(l.y-s.y)*f.y})}}}},"(self)":{dblclick:function(t,e){var r=e.origin;null==r||r.root.fit()}}}});var ey={},ry={};function ny(t){var e={};for(var r in t)t.hasOwnProperty(r)&&void 0!==t[r]&&(e[r]=t[r]);return e}function oy(t){return oy="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},oy(t)}function iy(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=fy(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function ay(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(t,e)||fy(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function uy(){uy=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==oy(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(oy(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},_(O.prototype),c(O.prototype,u,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function sy(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function cy(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){sy(i,n,o,a,u,"next",t)}function u(t){sy(i,n,o,a,u,"throw",t)}a(void 0)}))}}function fy(t,e){if(t){if("string"==typeof t)return ly(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ly(t,e):void 0}}function ly(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function hy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,py(n.key),n)}}function py(t){var e=function(t){if("object"!=oy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=oy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==oy(e)?e:e+""}function yy(t,e,r){return e=gy(e),function(t,e){if(e&&("object"==oy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,dy()?Reflect.construct(e,r||[],gy(t).constructor):e.apply(t,r))}function dy(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(dy=function(){return!!t})()}function vy(){return vy="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=gy(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},vy.apply(null,arguments)}function gy(t){return gy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},gy(t)}function by(t,e){return by=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},by(t,e)}Hp.register("paste-handler",{"(root)":{"(self)":{stylepastestart:function(t){var e=t.deliverer,r=e.app,n=e.selected;if(n&&n[0]&&n!==e.rootModel){var o=n[0].state,i=o.fillStyle,a=o.strokeStyle,u=o.alpha,s=o.lineWidth,c=o.lineDash,f=o.lineCap,l=o.lineJoin,h=o.fontColor,p=o.fontSize,y=o.fontFamily,d=o.bold,v=o.italic,g=o.textAlign,b=o.textBaseline,m=o.textOverflow,w=o.paddingTop,x=o.paddingBottom,k=o.paddingLeft,S=o.paddingRight;ey=Xo({fillStyle:i,strokeStyle:a,alpha:u,lineWidth:s,lineDash:c,lineCap:f,lineJoin:l,fontColor:h,fontSize:p,fontFamily:y,bold:d,italic:v,textAlign:g,textBaseline:b,textOverflow:m,paddingTop:w,paddingBottom:x,paddingLeft:k,paddingRight:S}),r.mode=ei}},stylepastestop:function(t){var e=t.deliverer.app;ey={},e.mode==ei&&(e.mode=Zo)},databindpastestart:function(t){var e=t.deliverer,r=e.app,n=e.selected;if(n&&n[0]&&n!==e.rootModel){var o=n[0].state.mappings;ry=Xo({mappings:o}),r.mode=ri}},databindpastestop:function(t){var e=t.deliverer.app;ry={},e.mode==ri&&(e.mode=Zo)},keydown:function(t,e){var r=e.deliverer;"Esc"!=t.code&&"Escape"!=t.code||(r.app.mode==ei?r.trigger("stylepastestop"):r.app.mode==ri&&r.trigger("databindpastestop"))}}},"model-layer":{"(all)":{click:function(t,e){var r=e.deliverer,n=r.app;if(n.mode==ei||n.mode==ri){var o=e.origin;n.mode==ei?o===r?r.root.trigger("stylepastestop"):o&&gf.around(n.commander,(function(){var t=ny($p($p({},o.model),ey));null==o||o.set(t)})):o===r?r.root.trigger("databindpastestop"):o&&gf.around(n.commander,(function(){var t=ny($p($p({},o.model),ry));null==o||o.set(t)}))}}}}});var my=[],wy=wa((function(){my.forEach((function(t){t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",wy);var xy=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=yy(this,e,[Object.assign({type:"root",scale:{x:1,y:1}},t||{}),r]))._maxRefid=r.isViewMode?1e6:0,t=t||{},n.fitMode=t.model&&t.model.fitMode,n._app=r,n.style=t.style,n.target_element=t.target_element,n.rebuildContentModel(n.model.model),my.push(n),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&by(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){var t,r,n;Xu.hideAll(this),this._app&&this._app.dispose(),(t=e,r=this,"function"==typeof(n=vy(gy(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([]),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var o=my.indexOf(this);o>=0&&my.splice(o,1),this.refidIndexMap.clear(),this._maxRefid=0}},{key:"isRoot",value:function(){return!0}},{key:"app",get:function(){return this._app}},{key:"target_element",get:function(){return this._target_element},set:function(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new Up(this,t)),this.forEach((function(e){return e.target=t})),this._target_element=t}},{key:"unitScale",get:function(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}},{key:"addTemplate",value:function(t,e){var r=this.templateMap[t];r&&mo("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}},{key:"removeTemplate",value:function(t,e){var r=this.templateMap[t];r!==e?wo("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}},{key:"findTemplateFor",value:function(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((function(e){return t.startsWith(e)}));if(e)return this.templateMap[e]}},{key:"addIndex",value:function(t,e){var r=this.indexMap[t]||[];this.indexMap[t]=[].concat(function(t){return function(t){if(Array.isArray(t))return ly(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||fy(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.")}()}(r),[e])}},{key:"removeIndex",value:function(t,e){var r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?wo("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}},{key:"addRefidIndex",value:function(t,e){null==t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&mo("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}},{key:"removeRefidIndex",value:function(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?mo("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}},{key:"getNewRefid",value:function(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}},{key:"subscribe",value:(i=cy(uy().mark((function t(e,r){return uy().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(this._app.isViewMode&&e&&this._app)){t.next=4;break}return t.next=3,this._app.subscribe(e,r);case 3:r._subscription=t.sent;case 4:case"end":return t.stop()}}),t,this)}))),function(t,e){return i.apply(this,arguments)})},{key:"unsubscribe",value:(o=cy(uy().mark((function t(e,r){return uy().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!r._subscription){t.next=4;break}return t.next=3,r._subscription.unsubscribe();case 3:delete r._subscription;case 4:case"end":return t.stop()}}),t)}))),function(t,e){return o.apply(this,arguments)})},{key:"findById",value:function(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}},{key:"findAllById",value:function(t){return this.indexMap[t.replace(/^#/,"")]||[]}},{key:"findByRefid",value:function(t){return this.refidIndexMap.get(t)}},{key:"findOrCreate",value:function(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){var r=this.findTemplateFor(t);if(r){var n=Object.assign(Xo(r.hierarchy),{id:t,templatePrefix:""});return component=Ff(n,this.app),this.model_layer.addComponent(component),[component]}}return e}},{key:"resize",value:function(){this.components.forEach((function(t){t.resize&&t.resize()})),this.invalidate()}},{key:"_disposeAllResources",value:function(){var t=this;this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((function(e){t.eventEngine.remove(e)})),this.eventEngine.dispose(),delete this.eventEngine),this.assist_layers&&this.assist_layers.forEach((function(e){e.dispose(),t.removeComponent(e)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}},{key:"rebuildContentModel",value:function(t){var e=this;this._disposeAllResources(),this.eventEngine=new Tp(this),(t=t||{}).type="model-layer",this.model_layer=Ff(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((function(t){var r=Ff(t,e.app);return e.addComponent(r),r.target=e.target_element,r})),this.assist_handlers=(this.model.handlers||[]).map((function(t){var r={};return e.eventEngine.add(r,Hp.get(t)),r})),this._ready=!0,this.traverse((function(t){return t.ready()}))}},{key:"root",get:function(){return this}},{key:"anchors",get:function(){}},{key:"isReady",get:function(){return this._ready}},{key:"rootModel",get:function(){return this.model_layer}},{key:"stuck",get:function(){return!0}},{key:"data",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=ay(e,1)[0];return t[r.model.id]=r.data,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.data=t[e]}))}}},{key:"dataByRefid",get:function(){var t,e={},r=iy(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=ay(t.value,2),o=n[0],i=n[1];e[o]=i.data}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}},{key:"values",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=ay(e,1)[0];return t[r.model.id]=r.value,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.value=t[e]}))}}},{key:"valuesByRefid",get:function(){var t,e={},r=iy(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=ay(t.value,2),o=n[0],i=n[1];e[o]=i.value}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}},{key:"selected",get:function(){return(this._selected||[]).filter((function(t){return t.parent}))},set:function(t){var e=this._selected;if(this._selected=t,!t||t.length<=1)this.hasSameParentForAllSelected=!0;else{var r=t[0].parent;this.hasSameParentForAllSelected=!t.find((function(t){return t.parent!=r}))}this.trigger("selected",t,e)}},{key:"focused",get:function(){return this._focused},set:function(t){this._focused!==t&&(this._focused=t,this.invalidate())}},{key:"style",get:function(){return this._style},set:function(t){this._style=t,this._compiled_style=t}},{key:"hasTextProperty",get:function(){return!1}},{key:"render",value:function(){this.components.forEach((function(t){return t.draw()}))}},{key:"contains",value:function(t,e){return!0}},{key:"capturePath",value:function(t,e){return this.model_layer.capturePath(t,e)}},{key:"invalidate",value:function(){this.components.forEach((function(t){return t.invalidate()}))}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}},{key:"refreshMappings",value:function(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=wa((function t(e){e.executeMappings(),e.components&&e.components.forEach((function(e){return t(e)}))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}},{key:"_addTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._addTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.addRefidIndex(o,t),n&&this.addIndex(n,t),i&&this.subscribe(i,t),a&&this.addTemplate(a,t);var u=Fn({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,u)}},{key:"_removeTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._removeTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.removeRefidIndex(o,t),n&&this.removeIndex(n,t),i&&this.unsubscribe(i,t),a&&this.removeTemplate(a,t),this.eventEngine.remove(t)}},{key:"onadded",value:function(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}},{key:"onremoved",value:function(t,e){this._removeTraverse(e),this.invalidate()}},{key:"onchanged",value:function(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}],n&&hy(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o,i}(As);Object.assign(xy.prototype,{fit:function(t){var e=this.model_layer.model,r=e.width,n=e.height,o=e.fitMode,i=this.target_element,a=this.model_layer;if(this.fitMode=t||this.fitMode||o||"ratio",r&&n&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,o=e.model,i=o.width,a=o.height;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-a*n)/2,0)})}(this,a,i);break;case"both":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,u=r.clientHeight;e.set("scale",{x:a/o,y:u/i}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"ratio":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,u=r.clientHeight,s=a/o,c=u/i,f=Math.min(s,c);e.set("scale",{x:f,y:f}),e.set("translate",{x:(a-o*f)/2,y:(u-i*f)/2})}(0,a,i);break;default:!function(t,e){var r=t.unitScale;e.set("scale",{x:r,y:r}),e.set("translate",{x:0,y:0})}(this,a)}this.resize()}}}),$a.memoize(xy.prototype,"unitScale",!1);var ky=13.3;function Sy(t){return Sy="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},Sy(t)}function _y(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Oy(n.key),n)}}function Oy(t){var e=function(t){if("object"!=Sy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Sy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Sy(e)?e:e+""}var Ey="$base_url",Ay=Math.PI/12,Py=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._mode=e,this.screen=function(t){return void 0!==t&&(ky=t),ky}(),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=r,this.isEditMode&&(this._rotateStep=Ay,this._rotateStepForced=!1)},e=[{key:"dispose",value:function(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}},{key:"_calcScreen",value:function(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var o=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return o>0?Math.round(o):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}},{key:"subscribe",value:function(t,e){var r;return null===(r=this._dataSubscriptionProvider)||void 0===r?void 0:r.subscribe(t,e)}},{key:"refProvider",get:function(){return this._refProvider}},{key:"dataSubscriptionProvider",get:function(){return this._dataSubscriptionProvider},set:function(t){this._dataSubscriptionProvider=t}},{key:"commander",get:function(){return this._commander},set:function(t){this._commander=t}},{key:"screen",get:function(){return this._screen},set:function(t){this._screen=t,this._calcScreen()}},{key:"DPPX",get:function(){return ii}},{key:"PPI",get:function(){return this._PPI}},{key:"PPM",get:function(){return this._PPM}},{key:"mode",get:function(){return this._mode},set:function(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}},{key:"isViewMode",get:function(){return this._mode==Jo}},{key:"isEditMode",get:function(){return this._mode==Zo}},{key:"baseUrl",get:function(){return this._baseUrl},set:function(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}},{key:"url",value:function(t){try{return(t.includes(Ey)?new URL(t.replace(Ey,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){wo(e,t)}}},{key:"rotateStep",get:function(){return this._rotateStep},set:function(t){this._rotateStep=Number(t)||Ay}},{key:"rotateStepForced",get:function(){return this._rotateStepForced},set:function(t){this._rotateStepForced=!!t}},{key:"dataStorage",get:function(){return this._dataStorage},set:function(t){this._dataStorage=t}}],e&&_y(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function jy(t){return jy="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},jy(t)}function Ty(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,My(n.key),n)}}function My(t){var e=function(t){if("object"!=jy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=jy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==jy(e)?e:e+""}yo(Py.prototype,po.withEvent);var Ry=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),!(e=Number(e))||e<=0?(mo("TimeCapsule maxsize should be greater than 0.",e),this.maxsize=10):this.maxsize=e,this.reset(),r&&(this.snapshot(r),this.preserve())},(e=[{key:"preserve",value:function(){this.checkPoint=this.pos}},{key:"hasUnpreservedChanges",value:function(){return this.checkPoint!=this.pos}},{key:"dispose",value:function(){this.reset()}},{key:"snapshot",value:function(t){if(this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize){var e=this.q.splice(0,this.q.length-this.maxsize);this.checkPoint=Math.max(-1,this.checkPoint-e.length)}this.pos=this.q.length-1}},{key:"forward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];wo("Not forwardable.")}},{key:"backward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];wo("Not backwardable.")}},{key:"current",get:function(){if(-1!==this.pos)return this.q[this.pos];wo("Non state has been recorded.")}},{key:"length",get:function(){return this.q.length}},{key:"forwardable",get:function(){return this.pos<this.q.length-1}},{key:"backwardable",get:function(){return this.pos>0}},{key:"snapshot_taker",get:function(){return this._snapshot_taker},set:function(t){this._snapshot_taker=t}},{key:"reset",value:function(){this.q=[],this.pos=-1,this.checkPoint=-1}}])&&Ty(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Iy(t){return Iy="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},Iy(t)}function Cy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ly(n.key),n)}}function Ly(t){var e=function(t){if("object"!=Iy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Iy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Iy(e)?e:e+""}var Dy=wa((function(t){t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function By(t){!t.brake&&t.dirty&&Dy(t)}var Ny=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.brake=!1,this.dirty=!1,this.state_holder=e,this.timecapsule=r,this.timecapsule.snapshot_taker=this},(e=[{key:"dispose",value:function(){delete this.state_holder,delete this.timecapsule}},{key:"touch",value:function(){this.dirty=!0,By(this)}},{key:"take",value:function(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}},{key:"brake",get:function(){return this._brake},set:function(t){this._brake=!!t,By(this)}}])&&Cy(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Fy(t){return Fy="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},Fy(t)}function zy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Uy(n.key),n)}}function Uy(t){var e=function(t){if("object"!=Fy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Fy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Fy(e)?e:e+""}function Yy(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){var o=JSON.parse(t);o.scale=r,o.translate=n,e.rebuildContentModel(o)}}var Gy=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.container=e,this.timecapsule=new Ry(20);var r=this;this.snapshot_taker=new Ny({get state(){var t=r.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0),this.timecapsule.preserve()},(e=[{key:"dispose",value:function(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}},{key:"preserve",value:function(){this.timecapsule.preserve()}},{key:"hasUnpreservedChanges",value:function(){return this.timecapsule.hasUnpreservedChanges()}},{key:"execute",value:function(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}},{key:"undo",value:function(){this.timecapsule.backwardable&&(Yy(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}},{key:"redo",value:function(){this.timecapsule.forwardable&&(Yy(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}},{key:"undoable",value:function(){return this.timecapsule.backwardable}},{key:"redoable",value:function(){return this.timecapsule.forwardable}},{key:"reset",value:function(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}])&&zy(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Hy(t){return Hy="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},Hy(t)}function Wy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Xy(n.key),n)}}function Xy(t){var e=function(t){if("object"!=Hy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Hy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Hy(e)?e:e+""}yo(Gy.prototype,po.withEvent);var qy=0,Vy=new FinalizationRegistry((function(t){qy--})),Qy=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._container=e,this.app=e.app,this._commander=new Gy(this._container),this.app.commander=this._commander,qy++,Vy.register(this,qy)},e=[{key:"add",value:function(){return Uf.apply(this._container,arguments)}},{key:"duplicate",value:function(){return Yf.apply(this._container,arguments)}},{key:"remove",value:function(){return Gf.apply(this._container,arguments)}},{key:"animate",value:function(){return Sn.apply(this,arguments)}},{key:"fullscreen",value:function(){return qf.apply(this._container,arguments)}},{key:"target",get:function(){return this._container.target_element},set:function(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw"target element '".concat(t,"' is not exist");if(e.firstChild)throw"target element '".concat(t,"' already has children")}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}},{key:"scale",get:function(){return this.root.get("scale")},set:function(t){this.root.set("scale",t)}},{key:"translate",get:function(){return this.root.get("translate")},set:function(t){this.root.set("translate",t)}},{key:"unit",get:function(){return this.root.get("unit")||"px"}},{key:"PPM",get:function(){return this.app.PPM}},{key:"PPI",get:function(){return this.app.PPI}},{key:"DPPX",get:function(){return this.app.DPPX}},{key:"unitScale",get:function(){return this._container.unitScale}},{key:"screen",get:function(){return this.app.screen},set:function(t){this.app.screen=t,this._container.resize()}},{key:"resize",value:function(){this._container.resize()}},{key:"release",value:function(){this.dispose()}},{key:"dispose",value:function(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}},{key:"selected",get:function(){return this._container.selected.slice()},set:function(t){this._container.selected=t}},{key:"select",value:function(t){for(var e,r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return this._container.selected=null===(e=this.root)||void 0===e?void 0:e.findAll.apply(e,[t].concat(n)),this.selected}},{key:"commander",get:function(){return this._commander}},{key:"undo",value:function(){this.commander.undo()}},{key:"undoable",value:function(){return this.commander.undoable()}},{key:"redo",value:function(){this.commander.redo()}},{key:"redoable",value:function(){return this.commander.redoable()}},{key:"preserve",value:function(){this.commander.preserve()}},{key:"hasUnpreservedChanges",value:function(){return this.commander.hasUnpreservedChanges()}},{key:"cut",value:function(){return Kf.apply(this._container,arguments)}},{key:"copy",value:function(){return Qf.apply(this._container,arguments)}},{key:"paste",value:function(){return Jf.apply(this._container,arguments)}},{key:"undoableChange",value:function(){return gl.apply(this._container,arguments)}},{key:"change",value:function(){return vl.apply(this.root,arguments)}},{key:"model",get:function(){return this.root.hierarchy},set:function(t){this._container.rebuildContentModel(t)}},{key:"rootContainer",get:function(){return this._container}},{key:"root",get:function(){var t;return null===(t=this._container)||void 0===t?void 0:t.model_layer}},{key:"findAll",value:function(){return this.root.findAll.apply(this.root,arguments)}},{key:"findFirst",value:function(){return this.root.findFirst.apply(this.root,arguments)}},{key:"findById",value:function(){return this._container.findById.apply(this._container,arguments)}},{key:"serialize",value:function(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}},{key:"align",value:function(){return _f.apply(this._container,arguments)}},{key:"place",value:function(){return jl.apply(this._container,arguments)}},{key:"distribute",value:function(){return Af.apply(this._container,arguments)}},{key:"move",value:function(){return Bf.apply(this._container,arguments)}},{key:"zorder",value:function(){return Nf.apply(this._container,arguments)}},{key:"symmetryX",value:function(){return yl.apply(this._container,arguments)}},{key:"symmetryY",value:function(){return dl.apply(this._container,arguments)}},{key:"on",value:function(){return Hf.apply(this._container,arguments)}},{key:"once",value:function(){return Wf.apply(this._container,arguments)}},{key:"off",value:function(){return this._container&&Xf.apply(this._container,arguments)}},{key:"centerTo",value:function(t,e){return this.root.centerTo(t,e)}},{key:"mode",get:function(){return this.app.mode},set:function(t){void 0!==t&&(this.app.mode=t)}},{key:"toDataURL",value:function(){return cl.apply(this._container,arguments)}},{key:"group",value:function(){return fl.apply(this._container,arguments)}},{key:"ungroup",value:function(){return ll.apply(this._container,arguments)}},{key:"fit",value:function(t){var e=this;this._container.once("redraw",(function(){return e._container.fit(t)})),this._container.invalidate()}},{key:"fitMode",get:function(){return this._container.fitMode}},{key:"ids",get:function(){return bl.apply(this._container)}},{key:"data",get:function(){return this._container.data},set:function(t){this._container.data=t}},{key:"dataByRefid",get:function(){return this._container.dataByRefid},set:function(t){this._container.dataByRefid=t}},{key:"values",get:function(){return this._container.values},set:function(t){this._container.values=t}},{key:"valuesByRefid",get:function(){return this._container.valuesByRefid},set:function(t){this._container.valuesByRefid=t}},{key:"baseUrl",get:function(){return this.app.baseUrl},set:function(t){this.app.baseUrl=t}},{key:"startAddMode",value:function(){return Tl.apply(this._container,arguments)}},{key:"startStylePasteMode",value:function(){return Ml.apply(this._container,arguments)}},{key:"stopStylePasteMode",value:function(){return Rl.apply(this._container,arguments)}},{key:"startDatabindPasteMode",value:function(){return Il.apply(this._container,arguments)}},{key:"stopDatabindPasteMode",value:function(){return Cl.apply(this._container,arguments)}}],r=[{key:"residents",get:function(){return qy}},{key:"residentsCount",get:function(){return qy}},{key:"DPPX",get:function(){return ii}}],e&&Wy(t.prototype,e),r&&Wy(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,r}();const Ky=Qy;function Jy(t){return Jy="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},Jy(t)}function Zy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,$y(n.key),n)}}function $y(t){var e=function(t){if("object"!=Jy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Jy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Jy(e)?e:e+""}var td=new(function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)},(e=[{key:"load",value:function(t){}},{key:"save",value:function(t,e){}},{key:"clear",value:function(t){}}])&&Zy(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}());function ed(t){var e=t.target,r=t.model,n=t.style,o=t.layers,i=void 0===o?[]:o,a=t.handlers,u=void 0===a?[]:a,s=t.mode,c=void 0===s?Jo:s,f=t.refProvider,l=t.dataSubscriptionProvider,h=t.dataStorage,p=void 0===h?td:h,y=t.baseUrl,d=t.fitMode,v=null;if("string"==typeof e){if(!(v=document.getElementById(e)))throw"target element '".concat(e,"' is not exist");if(v.firstChild)throw"target element '".concat(e,"' is not empty")}else v=e;v&&v.style&&(v.style.position="absolute",v.style.cursor="default",v.style.overflow="hidden");var g=new Py(c,f);return g.baseUrl=y,g.dataSubscriptionProvider=l,g.dataStorage=p,new Ky(new xy({target_element:v,model:r,style:n,layers:i,handlers:u,fitMode:d},g))}function rd(t){return rd="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},rd(t)}function nd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,od(n.key),n)}}function od(t){var e=function(t){if("object"!=rd(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=rd(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==rd(e)?e:e+""}function id(t,e,r){return e=cd(e),function(t,e){if(e&&("object"==rd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ad()?Reflect.construct(e,r||[],cd(t).constructor):e.apply(t,r))}function ad(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ad=function(){return!!t})()}function ud(t,e,r,n){var o=sd(cd(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function sd(){return sd="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=cd(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},sd.apply(null,arguments)}function cd(t){return cd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cd(t)}function fd(t,e){return fd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},fd(t,e)}var ld=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];const hd=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),id(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&fd(t,e)}(e,t),r=e,n=[{key:"isHTMLElement",value:function(){return!0}},{key:"isShadowable",value:function(){return!0}},{key:"element",get:function(){return this._element},set:function(t){this._element=t}},{key:"tagName",get:function(){return this.get("type")}},{key:"setElementProperties",value:function(t){throw new Error("Not Implemented Yet")}},{key:"createElement",value:function(){var t=this;this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),ld.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),ui.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),this.oncreate_element&&this.oncreate_element(this.element))}},{key:"userInputEventHandler",value:function(t){zp(this,t.type,t),t.stopPropagation()}},{key:"reposition",value:function(){this.element&&va(this)}},{key:"disposeElement",value:function(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}},{key:"ready",value:function(){ud(e,"ready",this,3)([]),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}},{key:"dispose",value:function(){this.disposeElement(this),ud(e,"dispose",this,3)([])}},{key:"hasTextProperty",get:function(){return!0}},{key:"textHidden",get:function(){return!0}},{key:"onchange",value:function(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}},{key:"isDescendible",value:function(t){return t.isHTMLElement()}}],n&&nd(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function pd(t){return pd="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},pd(t)}function yd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,dd(n.key),n)}}function dd(t){var e=function(t){if("object"!=pd(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=pd(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==pd(e)?e:e+""}function vd(t,e,r){return e=bd(e),function(t,e){if(e&&("object"==pd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,gd()?Reflect.construct(e,r||[],bd(t).constructor):e.apply(t,r))}function gd(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(gd=function(){return!!t})()}function bd(t){return bd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},bd(t)}function md(t,e){return md=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},md(t,e)}var wd={x:1,y:1},xd={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},kd={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"}],help:"scene/component/container"},Sd=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),vd(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&md(t,e)}(e,t),r=e,n=[{key:"tagName",get:function(){return"div"}},{key:"nature",get:function(){return kd}},{key:"setElementProperties",value:function(t){}},{key:"layout",get:function(){return Cu.get(this.get("layout"))||Du}},{key:"reposition",value:function(){if(this.element){var t=this,e=t.state,r=e.id,n=e.class,o=e.scale,i=void 0===o?wd:o,a=t.rotation,u=void 0===a?0:a,s=t.hidden,c=t.bounds,f=c.left,l=c.top,h=c.width,p=c.height,y=h/2,d=p/2,v=t.element;v.hidden=s,r&&(v.id=r),n&&(v.className=n),Object.assign(v.style,xd,{left:f+"px",top:l+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var g=t.delta(),b=(i&&i.x||1)*g.sx,m=(i&&i.y||1)*g.sy,w=(u||0)+g.theta,x=g.tx||0,k=g.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){v.style[t+"transform"]="translate(".concat(x+y,"px, ").concat(k+d,"px) rotate(").concat(w,"rad) translate(").concat(-y,"px, ").concat(-d,"px) scale(").concat(b,", ").concat(m,") perspective(1px)")}))}}}],n&&yd(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(hd(As));$a.register("container",Sd);var _d=5,Od=Math.sqrt(3);function Ed(t,e,r,n,o){var i,a,u,s,c=_d+o,f=r.x,l=r.y,h=n.x,p=n.y;if(Math.abs(f-h)>c&&Math.abs(l-p)>c){var y=(p-l)/(h-f),d=l-y*f;if(Math.abs(e-(y*t+d))>c)return!1}return f>h?(a=f,i=h):(a=h,i=f),l>p?(s=l,u=p):(s=p,u=l),!(a+_d<t||i-_d>t||s+_d<e||u-_d>e)}function Ad(t,e,r){for(var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:2,o=0;o<r.length-1;o++)if(Ed(t,e,r[o],r[o+1],n))return!0;return!1}function Pd(t,e,r,n){if("arrow"!=t.slice(-5))return r;r.x,r.y;var o=Math.atan2(n.y-r.y,n.x-r.x),i=1.5*e;return{x:r.x+Math.cos(o)*i,y:r.y+Math.sin(o)*i}}function jd(t,e,r){var n=r.lineWidth,o=void 0===n?2:n,i=r.strokeStyle,a=void 0===i?"#000000":i,u=r.lineCap,s=void 0!==u&&u,c=r.alpha,f=void 0===c?1:c,l=r.begin,h=void 0===l?"none":l,p=r.end,y=void 0===p?"none":p,d=r.beginSize,v=void 0===d?"size5":d,g=r.endSize,b=void 0===g?"size5":g;if(("none"!=h||"none"!=y)&&(o=Number(o)||2,t.lineCap=s,t.lineWidth=o,t.strokeStyle=a,t.fillStyle=a,t.globalAlpha*=f,"none"!=h&&Td(t,e[0],e[1],o,h,Md(v,o)),"none"!=y)){var m=e.length;Td(t,e[m-1],e[m-2],o,y,Md(b,o))}}function Td(t,e,r,n,o,i){var a=e.x,u=e.y,s=Math.atan2(r.y-u,r.x-a);switch(t.beginPath(),t.translate(a,u),t.rotate(s),o){case"oval":t.ellipse(0,0,i.X,i.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-i.X,0),t.lineTo(0,-i.Y),t.lineTo(i.X,0),t.lineTo(0,i.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(Od*i.X,-i.Y),t.lineTo(Od*i.X,i.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(Od*i.X,-i.Y),t.lineTo(-i.X/1.5+Od*i.X,0),t.lineTo(Od*i.X,i.Y),t.fill();break;case"open-arrow":t.moveTo(Od*i.X+n,-i.Y),t.lineTo(n,0),t.lineTo(Od*i.X+n,i.Y),t.stroke()}t.rotate(-s),t.translate(-a,-u),t.closePath()}function Md(t,e){var r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}function Rd(t,e){if(t){if("string"==typeof t)return Id(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Id(t,e):void 0}}function Id(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Cd(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Ld(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Cd(Object(r),!0).forEach((function(e){Dd(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Cd(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Dd(t,e,r){return(e=Xd(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Bd(t,e,r){return e=zd(e),function(t,e){if(e&&("object"==Yd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Nd()?Reflect.construct(e,r||[],zd(t).constructor):e.apply(t,r))}function Nd(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Nd=function(){return!!t})()}function Fd(){return Fd="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=zd(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Fd.apply(null,arguments)}function zd(t){return zd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zd(t)}function Ud(t,e){return Ud=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ud(t,e)}function Yd(t){return Yd="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},Yd(t)}function Gd(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Hd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Xd(n.key),n)}}function Wd(t,e,r){return e&&Hd(t.prototype,e),r&&Hd(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function Xd(t){var e=function(t){if("object"!=Yd(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Yd(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Yd(e)?e:e+""}var qd="N",Vd="S",Qd="E",Kd="W",Jd=function(){return Wd((function t(e){var r=e.component,n=e.anchor,o=e.position,i=e.self;Gd(this,t),this.component=r,this._anchorName=n,this._position=o,this.self=i}),[{key:"position",get:function(){var t=this.anchor;if(t){var e=t.position,r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position},set:function(t){var e=t.x,r=t.y;this._position={x:e,y:r}}},{key:"anchor",get:function(){var t;return null===(t=this.component)||void 0===t?void 0:t.findAnchor(this._anchorName)}},{key:"direction",get:function(){var t=this.component.bounds,e=this.anchor;if(!e)return Qd;var r=e.position;return r.y<=t.top?qd:r.y>=t.top+t.height?Vd:r.x<=t.left?Kd:Qd}},{key:"boundaryPosition",get:function(){var t=this.anchor;if(t){var e=t.position,r=0,n=0;switch(this.direction){case Vd:n=20;break;case qd:n=-20;break;case Kd:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};var o=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(o.x,o.y)}}}])}(),Zd=function(t){function e(){return Gd(this,e),Bd(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ud(t,e)}(e,t),Wd(e,[{key:"isLine",value:function(){return!0}},{key:"replaceRefids",value:function(t){var e=this;["from","to"].forEach((function(r){var n=e.get(r);if(null!=n&&n.component){var o=t.get(n.component)||n.component;e.set(r,Ld(Ld({},n),{},{component:o}))}}))}},{key:"fromEnd",get:function(){if(this.parent&&!this._fromEnd){var t,e=this.getState("from")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._fromEnd=new Jd({component:i,fromto:"from",anchor:n,position:o,self:this})}return this._fromEnd}},{key:"from",get:function(){return this.getState("from")},set:function(t){delete this._fromEnd,this.set("from",t)}},{key:"toEnd",get:function(){if(this.parent&&!this._toEnd){var t,e=this.getState("to")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._toEnd=new Jd({component:i,fromto:"to",anchor:n,position:o,self:this})}return this._toEnd}},{key:"to",get:function(){return this.getState("to")},set:function(t){delete this._toEnd,this.set("to",t)}},{key:"move",value:function(t,r){var n,o,i,a,u,s,c,f=t.x,l=t.y;r&&(this.from={position:(null===(n=this._fromEnd)||void 0===n?void 0:n.position)||(null===(o=this.getState("from"))||void 0===o?void 0:o.position)||{x:0,y:0}},this.to={position:(null===(i=this._toEnd)||void 0===i?void 0:i.position)||(null===(a=this.getState("to"))||void 0===a?void 0:a.position)||{x:0,y:0}}),(u=e,s=this,"function"==typeof(c=Fd(zd(1&3?u.prototype:u),"move",s))?function(t){return c.apply(s,t)}:c)([{x:f,y:l},r])}},{key:"render",value:function(t){var e=this.state,r=e.begin,n=void 0===r?"none":r,o=e.end,i=void 0===o?"none":o,a=e.lineWidth,u=e.round,s=void 0===u?0:u,c=this.drawPath;jd(t,c,this.state),t.beginPath();var f,l=Pd(n,a,c[0],c[1]),h=Pd(i,a,c[c.length-1],c[c.length-2]);c=[l].concat(function(t){if(Array.isArray(t))return Id(t)}(f=c.slice(1,-1))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(f)||Rd(f)||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.")}(),[h]);var p={x:l.x,y:l.y};t.moveTo(l.x,l.y);for(var y=1;y<c.length;y++){var d=p;p=c[y];var v=c[y+1];if(d.x!==p.x||d.y!==p.y){if(!v){t.lineTo(p.x,p.y);break}var g,b=0!==(g=Math.sqrt((d.x-p.x)*(d.x-p.x)+(d.y-p.y)*(d.y-p.y)))?Math.atan2(d.x-p.x,d.y-p.y):0,m=Math.sin(b)*Math.min(s,g/2)+p.x,w=Math.cos(b)*Math.min(s,g/2)+p.y,x=s>0||0!==g?{x:m,y:w}:p;b=0!==(g=Math.sqrt((v.x-p.x)*(v.x-p.x)+(v.y-p.y)*(v.y-p.y)))?Math.atan2(v.x-p.x,v.y-p.y):0,m=Math.sin(b)*Math.min(s,g/2)+p.x,w=Math.cos(b)*Math.min(s,g/2)+p.y;var k=s>0||0!==g?{x:m,y:w}:p;t.lineTo(x.x,x.y),s>0&&t.quadraticCurveTo(p.x,p.y,k.x,k.y)}}this.drawStroke(t)}},{key:"contains",value:function(t,e){var r=this.state.lineWidth;return Ad(t,e,this.drawPath,r)}},{key:"resizable",get:function(){return!1}},{key:"mutable",get:function(){return!0}},{key:"rotatable",get:function(){return!1}},{key:"path",get:function(){var t,e,r=this.state,n=r.from,o=r.to,i=this.state,a=i.x1,u=i.y1,s=i.x2,c=i.y2;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==n?void 0:n.position)||{x:a,y:u},(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==o?void 0:o.position)||{x:s,y:c}]},set:function(t){var e,r,n=(r=2,function(t){if(Array.isArray(t))return t}(e=t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(e,r)||Rd(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=n[0],i=n[1],a=this.state,u=a.from,s=a.to;delete this._fromEnd,delete this._toEnd,this.set({from:Ld(Ld({},u),{},{position:o}),to:Ld(Ld({},s),{},{position:i})})}},{key:"textBounds",get:function(){for(var t,e,r=this.drawPath,n=0,o=1;o<r.length;o++){var i=r[o-1],a=r[o],u=(i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y);u>n&&(n=Math.ceil(u),t=i,e=a)}var s=this.state,c=s.paddingTop,f=s.paddingLeft,l=s.paddingRight,h=s.paddingBottom;return h||(h=0),c||(c=0),f||(f=0),l||(l=0),{left:Math.min(t.x,e.x)+f,top:Math.min(t.y,e.y)+c,width:Math.max(Math.abs(t.x-e.x)-f-l,0),height:Math.max(Math.abs(t.y-e.y)-c-h,0)}}},{key:"decorators",get:function(){return["decotag"]}}])}($a);function $d(t){return $d="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},$d(t)}function tv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ev(n.key),n)}}function ev(t){var e=function(t){if("object"!=$d(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=$d(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==$d(e)?e:e+""}function rv(t,e,r){return e=ov(e),function(t,e){if(e&&("object"==$d(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,nv()?Reflect.construct(e,r||[],ov(t).constructor):e.apply(t,r))}function nv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(nv=function(){return!!t})()}function ov(t){return ov=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ov(t)}function iv(t,e){return iv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},iv(t,e)}Zd.getTipNeckPos=Pd,Zd.containedInPath=Ad,Zd.drawEndTips=jd,$a.register("line",Zd);var av={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},uv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),rv(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&iv(t,e)}(e,t),r=e,n=[{key:"is3dish",value:function(){return!0}},{key:"render",value:function(t){var e=this.state,r=e.cx,n=e.cy,o=e.rx,i=e.ry,a=e.startAngle,u=e.endAngle,s=e.anticlockwise;t.beginPath(),t.ellipse(r,n,Math.abs(o),Math.abs(i),0,a||0,u||2*Math.PI,s)}},{key:"path",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ry;return[{x:e-n,y:r-o},{x:e+n,y:r-o},{x:e+n,y:r+o},{x:e-n,y:r+o}]},set:function(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=(t-n)/(2*r.rx-.5),a=(e-o)/(2*r.ry-.5);return i*i+a*a<.25}},{key:"outline",value:function(t){return function(t,e){var r=t.model,n=r.cx,o=r.cy,i=r.rx,a=r.ry,u=2*Math.PI*e,s=n+i*Math.cos(u),c=o+a*Math.sin(u);return t.transcoordS2T(s,c)}(this,t)}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,u=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:u}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:u}}]}(this)}},{key:"nature",get:function(){return av}}],n&&tv(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(fc(su));function sv(t){return sv="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},sv(t)}function cv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,fv(n.key),n)}}function fv(t){var e=function(t){if("object"!=sv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=sv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==sv(e)?e:e+""}function lv(t,e,r){return e=pv(e),function(t,e){if(e&&("object"==sv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,hv()?Reflect.construct(e,r||[],pv(t).constructor):e.apply(t,r))}function hv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(hv=function(){return!!t})()}function pv(t){return pv=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},pv(t)}function yv(t,e){return yv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},yv(t,e)}$a.memoize(uv.prototype,"path",!1),$a.register("ellipse",uv);var dv={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}},vv={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"},gv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),lv(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&yv(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}},{key:"mutable",get:function(){return!0}},{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){return this.state.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,u=o.x,s=o.y,c=r[a].x,f=r[a].y;s>e!=f>e&&t<(c-u)*(e-s)/(f-s)+u&&(n=!n)})),n}},{key:"controls",get:function(){var t=this.path;return t.map((function(e,r){var n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:dv}}))}},{key:"nature",get:function(){return vv}}])&&cv(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(su);function bv(t){return bv="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},bv(t)}function mv(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function wv(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?mv(Object(r),!0).forEach((function(e){xv(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):mv(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function xv(t,e,r){return(e=_v(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function kv(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Sv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,_v(n.key),n)}}function _v(t){var e=function(t){if("object"!=bv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=bv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==bv(e)?e:e+""}function Ov(t,e,r){return e=Av(e),function(t,e){if(e&&("object"==bv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ev()?Reflect.construct(e,r||[],Av(t).constructor):e.apply(t,r))}function Ev(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ev=function(){return!!t})()}function Av(t){return Av=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Av(t)}function Pv(t,e){return Pv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Pv(t,e)}$a.memoize(gv.prototype,"controls",!1),$a.register("polygon",gv);var jv={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}},Tv={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"},Mv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Ov(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Pv(t,e)}(e,t),r=e,(n=[{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){var t,e,r=this.state,n=r.from,o=r.to,i=this.state.path;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==n?void 0:n.position)||i[0]].concat(function(t){return function(t){if(Array.isArray(t))return kv(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return kv(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?kv(t,e):void 0}}(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.")}()}(i.slice(1,-1)),[(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==o?void 0:o.position)||i[i.length-1]])},set:function(t){var e=this.state,r=e.from,n=e.to;delete this._fromEnd,delete this._toEnd,this.set({from:wv(wv({},r),{},{position:t[0]}),to:wv(wv({},n),{},{position:t[t.length-1]}),path:t})}},{key:"controls",get:function(){for(var t=this.path,e=[],r=0;r<t.length-1;r++){var n=t[r],o=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:jv}),e.push({x:(n.x+o.x)/2,y:(n.y+o.y)/2,handler:jv}),r==t.length-2&&e.push({x:o.x,y:o.y,handler:jv})}return e}},{key:"nature",get:function(){return Tv}}])&&Sv(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Zd);function Rv(t){return Rv="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},Rv(t)}function Iv(t){return function(t){if(Array.isArray(t))return Cv(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Cv(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Cv(t,e):void 0}}(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 Cv(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Lv(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Dv(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Lv(Object(r),!0).forEach((function(e){Bv(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Lv(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Bv(t,e,r){return(e=Fv(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Nv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Fv(n.key),n)}}function Fv(t){var e=function(t){if("object"!=Rv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Rv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Rv(e)?e:e+""}function zv(t,e,r){return e=Yv(e),function(t,e){if(e&&("object"==Rv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Uv()?Reflect.construct(e,r||[],Yv(t).constructor):e.apply(t,r))}function Uv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Uv=function(){return!!t})()}function Yv(t){return Yv=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Yv(t)}function Gv(t,e){return Gv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Gv(t,e)}$a.register("polyline",Mv);var Hv={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"},Wv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),zv(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Gv(t,e)}(e,t),r=e,(n=[{key:"pathExtendable",get:function(){return!1}},{key:"drawPath",get:function(){var t=this.path[0],e=this.path[1],r=this.fromEnd||{},n=r.component,o=r.direction,i=r.boundaryPosition,a=void 0===i?t:i,u=this.toEnd||{},s=u.component,c=u.direction,f=u.boundaryPosition,l=void 0===f?e:f,h=[a,l],p=[];a&&p.push(a);var y=null==n?void 0:n.bounds;if(y){var d=n.transcoordS2T(y.left,y.top);d=this.transcoordT2P(d.x,d.y),y=Dv(Dv({},y),{},{left:d.x,top:d.y})}var v=y?{left:y.left-20,top:y.top-20,width:y.width+40,height:y.height+40}:{left:a.x,top:a.y,width:0,height:0};y=y||v;var g=null==s?void 0:s.bounds;g&&(d=s.transcoordS2T(g.left,g.top),d=this.transcoordT2P(d.x,d.y),g=Dv(Dv({},g),{},{left:d.x,top:d.y}));var b=g?{left:g.left-20,top:g.top-20,width:g.width+40,height:g.height+40}:{left:l.x,top:l.y,width:0,height:0};g=g||b;var m,w,x,k,S,_,O,E,A,P,j=[v,b],T=v.left>b.left?b.left:v.left,M=v.top>b.top?b.top:v.top,R={left:T,top:M,width:v.left+v.width>b.left+b.width?v.left+v.width-T:b.left+b.width-T,height:v.top+v.height>b.top+b.height?v.top+v.height-M:b.top+b.height-M},I=0,C=0;y.left+y.width<g.left?(k=0,S=1,A=o,P=c,m=(y.left+y.width+g.left)/2,I=g.left-m):g.left+g.width<y.left&&(k=1,S=0,A=c,P=o,m=(y.left+g.width+g.left)/2,I=y.left-m),y.top+y.height<g.top?(x=0,_=1,O=o,E=c,w=(y.top+y.height+g.top)/2,C=g.top-w):g.top+g.height<y.top&&(x=1,_=0,O=c,E=o,w=(y.top+g.height+g.top)/2,C=y.top-w);var L=[];if(m&&I>C){switch(P){case Kd:switch(A){case Qd:L.push({x:m,y:h[k].y}),L.push({x:m,y:h[S].y});break;case Kd:var D=j[k].top+j[k].height/2>h[S].y?Math.min(j[k].top,h[S].y):Math.max(j[k].top+j[k].height,h[S].y);L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;case qd:case Vd:D=A===Vd?Math.max(h[k].y,h[S].y):Math.min(h[k].y,h[S].y),L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;default:return this.path}break;case Qd:switch(A){case Qd:var B=D=h[k].y<h[S].y?Math.min(j[S].top,h[k].y):Math.max(j[S].top+j[S].height,h[k].y);break;case Kd:B=D=void 0!==w?w:h[k].y<h[S].y?R.top-.5*I:R.top+R.height+.5*I;break;case Vd:B=D=void 0!==w?Math.max(w,h[k].y):R.top+R.height;break;case qd:B=D=w?Math.min(w,j[k].top):R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case Vd:switch(A){case Qd:D=h[k].y,B=h[k].y>h[S].y?h[k].y:j[S].top+j[S].height;break;case Kd:B=D=w?Math.max(w,j[S].top+j[S].height):R.top+R.height;break;case Vd:B=D=R.top+R.height;break;case qd:D=w?Math.min(w,j[k].top):j[k].top,B=w?Math.max(w,j[S].top+j[S].height):j[S].top+j[S].height;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case qd:switch(A){case Qd:D=h[k].y,B=h[k].y<h[S].y?h[k].y:j[S].top;break;case Kd:B=D=w?Math.min(w,j[S].top):R.top;break;case Vd:D=void 0!==w?Math.max(w,h[k].y):h[k].y,B=void 0!==w?Math.min(w,h[S].y):h[S].y;break;case qd:B=D=R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;default:return this.path}p.push.apply(p,Iv(0===k?L:L.reverse()))}else if(w){switch(E){case qd:switch(O){case Vd:L.push({x:h[x].x,y:w}),L.push({x:h[_].x,y:w});break;case qd:var N=j[x].left+j[x].width/2>h[_].x?Math.min(j[x].left,h[_].x):Math.max(j[x].left+j[x].width,h[_].x);L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;case Kd:N=Math.min(h[x].x,h[_].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;case Qd:N=Math.max(h[x].x,h[_].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;default:return this.path}break;case Vd:switch(O){case Kd:var F=N=R.left;break;case Qd:F=N=void 0!==m?Math.max(m,h[x].x):R.left+R.width;break;case qd:F=N=void 0!==m?m:h[x].x<h[_].x?R.left-.5*C:R.left+R.width+.5*C;break;case Vd:N=h[x].x,F=h[x].x<h[_].x?Math.min(j[_].left,h[x].x):Math.max(j[_].left+j[_].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;case Qd:switch(O){case Kd:N=void 0!==m?Math.min(m,h[x].x):h[x].x,F=void 0!==m?Math.max(m,h[_].x):h[_].x;break;case Qd:F=N=R.left+R.width;break;case qd:F=N=void 0!==m?Math.max(m,h[_].x):R.left+R.width;break;case Vd:N=h[x].x,F=Math.max(j[_].left+j[_].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;case Kd:switch(O){case Kd:F=N=R.left;break;case Qd:N=void 0!==m?Math.max(m,h[x].x):h[x].x,F=void 0!==m?Math.min(m,h[_].x):h[_].x;break;case qd:F=N=R.left;break;case Vd:N=h[x].x<h[_].x?Math.min(j[_].left,h[x].x):h[x].x,F=Math.min(N,h[_].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;default:return this.path}p.push.apply(p,Iv(0===x?L:L.reverse()))}else switch(o){case qd:switch(c){case qd:var z=R.top;p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Vd:var U=R.left+R.width;p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top+R.height}),p.push({x:h[1].x,y:R.top+R.height});break;case Qd:U=h[1].y<h[0].y&&h[1].x<h[0].x?h[0].x:R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;case Kd:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case Vd:switch(c){case qd:U=R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top}),p.push({x:h[1].x,y:R.top});break;case Vd:case Qd:case Kd:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;case Kd:switch(c){case qd:U=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].x:R.left,z=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].y:Math.min(R.top,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case Vd:U=R.left,z=Math.max(R.top+R.height,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case Qd:U=R.left+R.width,p.push({x:h[0].x,y:R.top}),p.push({x:U,y:R.top}),p.push({x:U,y:h[1].y});break;case Kd:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case Qd:switch(c){case qd:z=h[0].y<h[1].y&&h[0].x<h[1].x?h[0].y:R.top,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Vd:z=h[0].y>h[1].y&&h[0].x<h[1].x?h[0].y:R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Qd:case Kd:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;default:return this.path}return l&&p.push(l),[t].concat(p,[e]).filter((function(t,e,r){if(0===e)return!0;var n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter((function(t,e,r){if(0===e||e>=r.length-1)return!0;var n=r[e-1],o=r[e+1];return!(t.x===n.x&&t.x===o.x||t.y===n.y&&t.y===o.y)}))}},{key:"nature",get:function(){return Hv}}])&&Nv(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Zd);function Xv(t){return Xv="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},Xv(t)}function qv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Vv(n.key),n)}}function Vv(t){var e=function(t){if("object"!=Xv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Xv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Xv(e)?e:e+""}function Qv(t,e,r){return e=$v(e),function(t,e){if(e&&("object"==Xv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Kv()?Reflect.construct(e,r||[],$v(t).constructor):e.apply(t,r))}function Kv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Kv=function(){return!!t})()}function Jv(t,e,r,n){var o=Zv($v(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Zv(){return Zv="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=$v(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Zv.apply(null,arguments)}function $v(t){return $v=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},$v(t)}function tg(t,e){return tg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},tg(t,e)}$a.register("ortholine",Wv);var eg={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"},rg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Qv(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&tg(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){Jv(e,"dispose",this,3)([]),this._offcanvas=null,this._image=null}},{key:"render",value:function(t){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height,u=r.isGray,s=void 0!==u&&u,c=r.alpha,f=void 0===c?1:c,l=r.src;if(this.prepareIf(!this._image&&l),t.beginPath(),t.globalAlpha*=f,this._image&&this._image.complete)if(s&&this._offcanvas)t.drawImage(this._offcanvas,n,o,i,a);else try{t.drawImage(this._image,n,o,i,a)}catch(r){t.drawImage(e.noimage,n,o,i,a)}else!this.app.isViewMode&&t.drawImage(e.noimage,n,o,i,a)}},{key:"nature",get:function(){return eg}},{key:"hasTextProperty",get:function(){return!1}},{key:"ready",value:function(){Jv(e,"ready",this,3)([]),this.prepareIf(!this._image&&this.state.src)}},{key:"prepare",value:function(t,e){var r=this,n=this.state,o=n.src,i=n.crossOrigin;if(o){this._image=new Image;try{i&&(this._image.crossOrigin=i),this._image.src=this.app.url(o)||""}catch(t){return void e(t)}this._image.onload=function(){if(r.get("isGray")){var e=r._image.width,n=r._image.height;r._offcanvas=$a.createCanvas(e,n);var o=r._offcanvas.getContext("2d");o.drawImage(r._image,0,0);var i=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return mo("Get Image Data Error: "+t.message),null}for(var o=n.data,i=0;i<e*r*4;i+=4){var a=o[i],u=o[i+1],s=o[i+2],c=parseInt((a+u+s)/3);n.data[i]=c,n.data[i+1]=c,n.data[i+2]=c}return n}(o,e,n);o.putImageData(i,0,0)}t(r)},this._image.onerror=function(t){r._image&&!r._image.currentSrc&&(r._image=null),e(t)}}else t(this)}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"onchange",value:function(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}],o=[{key:"noimage",get:function(){return e.NOIMAGE||(e.NOIMAGE=new Image,e.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),e.NOIMAGE}}],n&&qv(r.prototype,n),o&&qv(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(gu(su));function ng(t){return ng="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},ng(t)}function og(t,e,r){return e=ag(e),function(t,e){if(e&&("object"==ng(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ig()?Reflect.construct(e,r||[],ag(t).constructor):e.apply(t,r))}function ig(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ig=function(){return!!t})()}function ag(t){return ag=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ag(t)}function ug(t,e){return ug=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ug(t,e)}$a.register("image-view",rg);var sg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),og(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ug(t,e)}(e,t),r=e,Object.defineProperty(r,"prototype",{writable:!1}),r;var r}(hd(gu($a))),cg=r(60579);function fg(t){return fg="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},fg(t)}function lg(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function hg(){hg=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==fg(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(fg(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},_(O.prototype),c(O.prototype,u,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function pg(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function yg(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,dg(n.key),n)}}function dg(t){var e=function(t){if("object"!=fg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=fg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==fg(e)?e:e+""}function vg(t,e,r){return e=mg(e),function(t,e){if(e&&("object"==fg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,gg()?Reflect.construct(e,r||[],mg(t).constructor):e.apply(t,r))}function gg(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(gg=function(){return!!t})()}function bg(){return bg="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=mg(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},bg.apply(null,arguments)}function mg(t){return mg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},mg(t)}function wg(t,e){return wg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},wg(t,e)}var xg={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"},kg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),vg(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&wg(t,e)}(e,t),r=e,n=[{key:"oncreate_element",value:(o=hg().mark((function t(e){var r,n,o;return hg().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:r=this.state,n=r.src,o=r.play,this.onchangesrc(n),this.onchangeplay(o);case 3:case"end":return t.stop()}}),t,this)})),i=function(){var t=this,e=arguments;return new Promise((function(r,n){var i=o.apply(t,e);function a(t){pg(i,r,n,a,u,"next",t)}function u(t){pg(i,r,n,a,u,"throw",t)}a(void 0)}))},function(t){return i.apply(this,arguments)})},{key:"buildImg",value:function(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}},{key:"onchange",value:function(t,r){var n,o,i;(n=e,o=this,"function"==typeof(i=bg(mg(1&3?n.prototype:n),"onchange",o))?function(t){return i.apply(o,t)}:i)([t,r]),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}},{key:"setElementProperties",value:function(t){}},{key:"onchangeplay",value:function(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}},{key:"onchangesrc",value:function(t){var e=this,r=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),r.src=t,r.setAttribute("rel:animated_src",t),r.setAttribute("rel:auto_play",0),this._superGif=new cg.U(r,{autoPlay:!1}),this._superGif.init();var n,o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return lg(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?lg(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}(this.element.children);try{for(o.s();!(n=o.n()).done;){var i=n.value;i.style.width="100%",i.style.height="100%"}}catch(t){o.e(t)}finally{o.f()}var a=this._superGif.getCanvas();a.style.width="100%",a.style.height="100%",this._superGif.load((function(){setTimeout((function(){e._superGif.moveTo(0),e.play&&e._superGif.play()}),100)}))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}},{key:"src",get:function(){return this.getState("src")},set:function(t){this.set("src",t)}},{key:"play",get:function(){return this.getState("play")},set:function(t){this.setState("play",t)}},{key:"nature",get:function(){return xg}},{key:"tagName",get:function(){return"div"}}],n&&yg(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o,i}(sg);function Sg(t){return Sg="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},Sg(t)}function _g(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Og(n.key),n)}}function Og(t){var e=function(t){if("object"!=Sg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Sg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Sg(e)?e:e+""}function Eg(t,e,r){return e=Tg(e),function(t,e){if(e&&("object"==Sg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ag()?Reflect.construct(e,r||[],Tg(t).constructor):e.apply(t,r))}function Ag(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ag=function(){return!!t})()}function Pg(t,e,r,n){var o=jg(Tg(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function jg(){return jg="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Tg(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},jg.apply(null,arguments)}function Tg(t){return Tg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Tg(t)}function Mg(t,e){return Mg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Mg(t,e)}$a.register("gif-view",kg);var Rg={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"attachment-selector",label:"src",name:"src",property:{category:"audio"}},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"},Ig=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Eg(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Mg(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){Pg(e,"dispose",this,3)([]),this.started=!1,delete this._audio}},{key:"ready",value:function(){var t=this;Pg(e,"ready",this,3)([]),this._audio=new Audio,this._audio.addEventListener("canplay",(function(){t.started&&t._audio.play()}));var r=this.state,n=r.src,o=void 0===n?"":n,i=r.loop,a=void 0!==i&&i,u=r.started,s=void 0!==u&&u;this.onchangeSrc(o),this.onchangeLoop(a),this.onchangeStarted(s)}},{key:"render",value:function(t){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height;r.src,t.beginPath(),this.drawImage(t,e.image,n,o,i,a)}},{key:"nature",get:function(){return Rg}},{key:"hasTextProperty",get:function(){return!1}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"started",get:function(){return!!this.get("started")},set:function(t){this.set("started",t)}},{key:"start",value:function(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}},{key:"pause",value:function(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}},{key:"onchangeSrc",value:function(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}},{key:"onchangeStarted",value:function(t){var e=this._audio;t?4==e.readyState&&e.play():e.pause()}},{key:"onchangeLoop",value:function(t){this._audio.loop=t}},{key:"onchange",value:function(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}},{key:"ondblclick",value:function(t){this.started=!this.started}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}],o=[{key:"image",get:function(){return e.IMAGE||(e.IMAGE=new Image,e.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),e.IMAGE}}],n&&_g(r.prototype,n),o&&_g(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(gu(su));function Cg(t){return Cg="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},Cg(t)}function Lg(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Dg(n.key),n)}}function Dg(t){var e=function(t){if("object"!=Cg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Cg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Cg(e)?e:e+""}function Bg(t,e,r){return e=Fg(e),function(t,e){if(e&&("object"==Cg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ng()?Reflect.construct(e,r||[],Fg(t).constructor):e.apply(t,r))}function Ng(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ng=function(){return!!t})()}function Fg(t){return Fg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Fg(t)}function zg(t,e){return zg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},zg(t,e)}$a.register("audio",Ig);var Ug=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Bg(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&zg(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}}])&&Lg(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(gu($a));function Yg(t){return Yg="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},Yg(t)}function Gg(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Vg(n.key),n)}}function Hg(t,e,r){return e=Zg(e),function(t,e){if(e&&("object"==Yg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Wg()?Reflect.construct(e,r||[],Zg(t).constructor):e.apply(t,r))}function Wg(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Wg=function(){return!!t})()}function Xg(t,e,r,n){return Xg="undefined"!=typeof Reflect&&Reflect.set?Reflect.set:function(t,e,r,n){var o,i=Jg(t,e);if(i){if((o=Object.getOwnPropertyDescriptor(i,e)).set)return o.set.call(n,r),!0;if(!o.writable)return!1}if(o=Object.getOwnPropertyDescriptor(n,e)){if(!o.writable)return!1;o.value=r,Object.defineProperty(n,e,o)}else qg(n,e,r);return!0},Xg(t,e,r,n)}function qg(t,e,r){return(e=Vg(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Vg(t){var e=function(t){if("object"!=Yg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Yg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Yg(e)?e:e+""}function Qg(t,e,r,n){var o=Kg(Zg(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Kg(){return Kg="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=Jg(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Kg.apply(null,arguments)}function Jg(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Zg(t)););return t}function Zg(t){return Zg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Zg(t)}function $g(t,e){return $g=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},$g(t,e)}$a.register("text",Ug);var tb=["refid","left","top","width","height","rotation","animation"],eb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Hg(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&$g(t,e)}(e,t),r=e,n=[{key:"isGroup",value:function(){return!0}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,r){if("string"==typeof t)return this.set(qg({},t,r));var n=tb.reduce((function(e,r){return t.hasOwnProperty(r)&&(e[r]=t[r]),e}),{});return Qg(e,"set",this,3)([n])}},{key:"capture",value:function(t,r,n){var o=Qg(e,"capture",this,3)([t,r,n]);if(o!==this)return o}},{key:"bounds",get:function(){return Qg(e,"bounds",this,1)},set:function(t){if(this.__MUTATING__)!function(t,e,r,n,o,i){(function(t,e,r,n,o){if(!Xg(t,e,r,n||t)&&o)throw new TypeError("failed to set property")})(Zg(i?t.prototype:t),e,r,n,o)}(e,"bounds",t,this,1,1);else{var r=this.bounds,n=t.width/r.width,o=t.height/r.height;this.path=this.path.map((function(e){return{x:t.left+(e.x-r.left)*n,y:t.top+(e.y-r.top)*o}})),this.components&&this.components.forEach((function(t){if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*n,y:t.y*o}}))}));else{var e=t.bounds,r=t.center,i={x:r.x*(1-n),y:r.y*(1-o)},a=e.width*(1-n),u=e.height*(1-o),s=-(i.x-a/2),c=-(i.y-u/2);t.bounds={left:e.left+s,top:e.top+c,width:e.width*n,height:e.height*o}}}))}}},{key:"focusible",get:function(){return!1}},{key:"hasTextProperty",get:function(){return!1}},{key:"isIdentifiable",value:function(){return!1}},{key:"calculateBounds",value:function(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=$a.union(this.components.map((function(t){return t.bounds})));return this.components.forEach((function(t){var r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){var e=this.state,r=e.top,n=e.left;e.scale,t.translate(n,r),this.layout.drawables(this).forEach((function(e){e.draw(t)})),t.translate(-n,-r)}}],n&&Gg(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Sd);function rb(t){return rb="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},rb(t)}function nb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ob(n.key),n)}}function ob(t){var e=function(t){if("object"!=rb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=rb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==rb(e)?e:e+""}function ib(t,e,r){return e=cb(e),function(t,e){if(e&&("object"==rb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ab()?Reflect.construct(e,r||[],cb(t).constructor):e.apply(t,r))}function ab(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ab=function(){return!!t})()}function ub(t,e,r,n){var o=sb(cb(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function sb(){return sb="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=cb(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},sb.apply(null,arguments)}function cb(t){return cb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cb(t)}function fb(t,e){return fb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},fb(t,e)}$a.register("group",eb);var lb={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"},hb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),ib(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&fb(t,e)}(e,t),r=e,(n=[{key:"ref",get:function(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null},set:function(t){this.setState("ref",t)}},{key:"refScale",get:function(){var t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}},{key:"draw",value:function(t){this._drawing||(this._drawing=!0,ub(e,"draw",this,3)([t]),this._drawing=!1)}},{key:"prerender",value:function(t){if(ub(e,"prerender",this,3)([t]),this.ref){var r=this.ref.center,n=this.center,o=this.refScale;t.translate(n.x,n.y),t.scale(o.x,o.y),t.translate(-r.x,-r.y)}}},{key:"postrender",value:function(t){if(this.ref)return this.ref.postrender(t);ub(e,"postrender",this,3)([t])}},{key:"render",value:function(t){if(this.ref)return this.ref.render(t);this.state.round;var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),t.rect(r,n,o,i)}},{key:"nature",get:function(){return lb}},{key:"hasTextProperty",get:function(){return!1}}])&&nb(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(gu(su));function pb(t){return pb="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},pb(t)}function yb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,db(n.key),n)}}function db(t){var e=function(t){if("object"!=pb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=pb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==pb(e)?e:e+""}function vb(t,e,r){return e=bb(e),function(t,e){if(e&&("object"==pb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,gb()?Reflect.construct(e,r||[],bb(t).constructor):e.apply(t,r))}function gb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(gb=function(){return!!t})()}function bb(t){return bb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},bb(t)}function mb(t,e){return mb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},mb(t,e)}$a.memoize(hb.prototype,"ref",!1),$a.memoize(hb.prototype,"refScale",!1),$a.register("local-ref",hb);var wb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),vb(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&mb(t,e)}(e,t),r=e,(n=[{key:"render",value:function(t){}},{key:"layout",get:function(){return Cu.get(this.get("layout"))||Du}}])&&yb(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(hd(As));function xb(t){return xb="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},xb(t)}function kb(){kb=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==xb(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(xb(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},_(O.prototype),c(O.prototype,u,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function Sb(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function _b(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ob(n.key),n)}}function Ob(t){var e=function(t){if("object"!=xb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=xb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==xb(e)?e:e+""}function Eb(t,e,r){return e=Tb(e),function(t,e){if(e&&("object"==xb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ab()?Reflect.construct(e,r||[],Tb(t).constructor):e.apply(t,r))}function Ab(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ab=function(){return!!t})()}function Pb(t,e,r,n){var o=jb(Tb(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function jb(){return jb="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Tb(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},jb.apply(null,arguments)}function Tb(t){return Tb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Tb(t)}function Mb(t,e){return Mb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Mb(t,e)}var Rb={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"number",label:"round",name:"round",property:{min:0}},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio","width","height","none"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"},Ib=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Eb(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Mb(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){this._releaseRef(),Pb(e,"dispose",this,3)([])}},{key:"nature",get:function(){return Rb}},{key:"hasTextProperty",get:function(){return!1}},{key:"tagName",get:function(){return"div"}},{key:"setElementProperties",value:function(t){var e=this.state,r=e.mode,n=void 0===r?"view":r,o=e.round,i=void 0===o?0:o;t.style.pointerEvents="view"==n?"none":"inherit",t.style.borderRadius=i+"px"}},{key:"ready",value:function(){Pb(e,"ready",this,3)([]),this.fetchRef()}},{key:"reposition",value:function(){if(this.element){Pb(e,"reposition",this,3)([]);var t=this._element_bounds,r=this.element,n=r.offsetWidth,o=r.offsetHeight;if(this._element_bounds={offsetWidth:n,offsetHeight:o},(!t||t.offsetWidth!=n||t.offsetHeight!=o)&&this.ref&&this.root.target_element){var i=this.state.fit,a=void 0===i?"ratio":i;this.ref.fit(a)}}}},{key:"fetchRef",value:(o=kb().mark((function t(){var e,r,n,o,i;return kb().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(this._releaseRef(),e=this.state,r=e.ref,n=e.fit,o=void 0===n?"ratio":n,r){t.next=4;break}return t.abrupt("return");case 4:if(!(i=this.app.refProvider)||!r){t.next=18;break}return t.prev=6,t.next=9,i.get(r,!0);case 9:this.__ref=t.sent,this.__ref.target=this.element,this.__ref.fit(o),this.__ref.data=this.data,t.next=18;break;case 15:t.prev=15,t.t0=t.catch(6),mo(t.t0);case 18:case"end":return t.stop()}}),t,this,[[6,15]])})),i=function(){var t=this,e=arguments;return new Promise((function(r,n){var i=o.apply(t,e);function a(t){Sb(i,r,n,a,u,"next",t)}function u(t){Sb(i,r,n,a,u,"throw",t)}a(void 0)}))},function(){return i.apply(this,arguments)})},{key:"ref",get:function(){return this.__ref},set:function(t){this.setState("ref",t)}},{key:"_releaseRef",value:function(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}},{key:"onchange",value:function(t,r,n){var o=this;Pb(e,"onchange",this,3)([t,r,n]),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((function(){var t=o.state.fit;o.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((function(){o.ref.data=t.data}))}}],n&&_b(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o,i}(wb);function Cb(t){return Cb="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},Cb(t)}function Lb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Db(n.key),n)}}function Db(t){var e=function(t){if("object"!=Cb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Cb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Cb(e)?e:e+""}function Bb(t,e,r){return e=zb(e),function(t,e){if(e&&("object"==Cb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Nb()?Reflect.construct(e,r||[],zb(t).constructor):e.apply(t,r))}function Nb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Nb=function(){return!!t})()}function Fb(){return Fb="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=zb(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Fb.apply(null,arguments)}function zb(t){return zb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zb(t)}function Ub(t,e){return Ub=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ub(t,e)}$a.register("global-ref",Ib);var Yb={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"},Gb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Bb(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ub(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Fb(zb(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]),this.show&&this.onchangeShow(!0)}},{key:"render",value:function(t){var r=this.bounds,n=r.left,o=r.top,i=r.width,a=r.height;t.beginPath(),this.drawImage(t,e.image,n,o,i,a)}},{key:"onchange",value:function(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}},{key:"onchangeShow",value:function(t){!this.app.isEditMode&&this.getState("board")&&(t?Xu.show(this,this.board,{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,data:this.value}):Xu.hide(this))}},{key:"board",get:function(){return this.getState("board")},set:function(t){this.set("board",t)}},{key:"show",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"started",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"value",get:function(){return this.getState("value")},set:function(t){this.setState("value",t)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return Yb}}],o=[{key:"image",get:function(){return e._image||(e._image=new Image,e._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),e._image}}],n&&Lb(r.prototype,n),o&&Lb(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(gu(su));function Hb(t){return Hb="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},Hb(t)}function Wb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Xb(n.key),n)}}function Xb(t){var e=function(t){if("object"!=Hb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Hb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Hb(e)?e:e+""}function qb(t,e,r){return e=Qb(e),function(t,e){if(e&&("object"==Hb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Vb()?Reflect.construct(e,r||[],Qb(t).constructor):e.apply(t,r))}function Vb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Vb=function(){return!!t})()}function Qb(t){return Qb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Qb(t)}function Kb(t,e){return Kb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Kb(t,e)}$a.register("popup",Gb);var Jb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),qb(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Kb(t,e)}(e,t),r=e,(n=[{key:"render",value:function(t){var e=this.state.path,r=void 0===e?[]:e;if(!(r.length<=1)){t.beginPath(),t.moveTo(r[0].x,r[0].y);for(var n=1;n<r.length;n++)t.lineTo(r[n].x,r[n].y);t.closePath(),this.drawStroke(t)}}},{key:"path",get:function(){return this.model.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,u=o.x,s=o.y,c=r[a].x,f=r[a].y;s>e!=f>e&&t<(c-u)*(e-s)/(f-s)+u&&(n=!n)})),n}}])&&Wb(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}($a);function Zb(t){return Zb="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},Zb(t)}function $b(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,tm(n.key),n)}}function tm(t){var e=function(t){if("object"!=Zb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Zb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Zb(e)?e:e+""}function em(t,e,r){return e=nm(e),function(t,e){if(e&&("object"==Zb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,rm()?Reflect.construct(e,r||[],nm(t).constructor):e.apply(t,r))}function rm(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(rm=function(){return!!t})()}function nm(t){return nm=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},nm(t)}function om(t,e){return om=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},om(t,e)}$a.register("path",Jb);var im={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"},am=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),em(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&om(t,e)}(e,t),r=e,(n=[{key:"contains",value:function(t,e){for(var r=this.state,n=[r.x1,r.y1,r.x2,r.y2,r.x3,r.y3],o=!1,i=0;i<n.length;i+=2){var a=(i+2)%n.length,u=n[i],s=n[i+1],c=n[a+1];s>e!=c>e&&t<(n[a]-u)*(e-s)/(c-s)+u&&(o=!o)}return o}},{key:"mutable",get:function(){return!0}},{key:"path",get:function(){var t=this.state;return[{x:t.x1,y:t.y1},{x:t.x2,y:t.y2},{x:t.x3,y:t.y3}]},set:function(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}},{key:"nature",get:function(){return im}}])&&$b(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(su);function um(t){return um="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},um(t)}function sm(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,cm(n.key),n)}}function cm(t){var e=function(t){if("object"!=um(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=um(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==um(e)?e:e+""}function fm(t,e,r){return e=hm(e),function(t,e){if(e&&("object"==um(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,lm()?Reflect.construct(e,r||[],hm(t).constructor):e.apply(t,r))}function lm(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(lm=function(){return!!t})()}function hm(t){return hm=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},hm(t)}function pm(t,e){return pm=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},pm(t,e)}$a.memoize(am.prototype,"path",!1),$a.register("triangle",am);var ym={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"},dm={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cx,i=n.rx;i=Math.abs(i);var a=(r.transcoordP2S(t.x,t.y).x-o)/i*100;a=a>=100||a<=-100?100:Math.abs(a),r.set({ratio:a})}},vm=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),fm(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&pm(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?50:r,o=e.cx,i=e.cy,a=e.rx,u=e.ry,s=e.startAngle,c=e.endAngle,f=e.anticlockwise;a=Math.abs(a),u=Math.abs(u),t.beginPath(),t.ellipse(o,i,a,u,0,s||0,c||2*Math.PI,f),t.moveTo(o+a/100*n,i),t.ellipse(o,i,a/100*n,u/100*n,0,s||0,c||2*Math.PI,!0)}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=r.rx,a=r.ry,u=r.ratio,s=(t-n)/(2*(i=Math.abs(i))-.5),c=(e-o)/(2*(a=Math.abs(a))-.5),f=(t-n)/(i/100*u*2-.5),l=(e-o)/(a/100*u*2-.5),h=!1;return s*s+c*c<.25&&f*f+l*l>.25&&(h=!h),h}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ratio;return[{x:e+(n=Math.abs(n))/100*o,y:r,handler:dm}]}},{key:"nature",get:function(){return ym}}])&&sm(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(uv);function gm(t){return gm="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},gm(t)}function bm(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,mm(n.key),n)}}function mm(t){var e=function(t){if("object"!=gm(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=gm(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==gm(e)?e:e+""}function wm(t,e,r){return e=km(e),function(t,e){if(e&&("object"==gm(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,xm()?Reflect.construct(e,r||[],km(t).constructor):e.apply(t,r))}function xm(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(xm=function(){return!!t})()}function km(t){return km=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},km(t)}function Sm(t,e){return Sm=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Sm(t,e)}$a.memoize(vm.prototype,"controls",!1),$a.register("donut",vm);var _m={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"},Om={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cy,i=n.ry,a=(r.transcoordP2S(t.x,t.y).y-o)/i*100+100;a>=100?a=100:a<=0&&(a=0),r.set({ratio:a})}},Em=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),wm(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Sm(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?30:r,o=e.wing,i=void 0===o?5:o,a=e.cx,u=e.cy,s=e.rx,c=e.ry;if(e.startAngle,e.endAngle,e.anticlockwise,!(i<3)){var f=1.5707963267948966,l=2*Math.PI/i,h=s-n/100*s,p=c-n/100*c;t.save(),t.beginPath(),t.translate(a,u),t.moveTo(s*Math.cos(-f),c*Math.sin(-f)),t.lineTo((s-h)*(Math.cos(l-f)+Math.cos(0-f))/2,(c-p)*(Math.sin(l-f)+Math.sin(0-f))/2);for(var y=1;y<i;y++)t.lineTo(s*Math.cos(l*y-f),c*Math.sin(l*y-f)),t.lineTo((s-h)*(Math.cos(l*(y+1)-f)+Math.cos(l*y-f))/2,(c-p)*(Math.sin(l*(y+1)-f)+Math.sin(l*y-f))/2);t.closePath(),t.restore()}}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.ry;return[{x:e,y:r-n+n*(t.ratio/100),handler:Om}]}},{key:"nature",get:function(){return _m}}])&&bm(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(uv);function Am(t){return Am="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},Am(t)}function Pm(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,jm(n.key),n)}}function jm(t){var e=function(t){if("object"!=Am(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Am(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Am(e)?e:e+""}function Tm(t,e,r){return e=Im(e),function(t,e){if(e&&("object"==Am(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Mm()?Reflect.construct(e,r||[],Im(t).constructor):e.apply(t,r))}function Mm(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Mm=function(){return!!t})()}function Rm(){return Rm="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Im(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Rm.apply(null,arguments)}function Im(t){return Im=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Im(t)}function Cm(t,e){return Cm=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Cm(t,e)}$a.memoize(Em.prototype,"controls",!1),$a.register("star",Em);const Lm=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Tm(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Cm(t,e)}(e,t),r=e,n=[{key:"animOnValueChange",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2?arguments[2]:void 0;if(t!=this._lastValue){if(r)var o=t-(Number(n)||0);else o=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-o,this.animate({step:function(t){e._anim_alpha=o*(t-1),e.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}},{key:"dispose",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Rm(Im(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([]),delete this._value_substitutor}},{key:"onchange",value:function(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}},{key:"animAlpha",get:function(){return this._anim_alpha||0}},{key:"animValue",get:function(){return(this._lastValue||0)+(this._anim_alpha||0)}},{key:"defaultValueSubstitutor",value:function(){return this.getState("value")}},{key:"valueSubstitutor",get:function(){return this._value_substitutor||(this._value_substitutor=Ia(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}},{key:"value",get:function(){return Number(this.valueSubstitutor())||0},set:function(t){delete this._value_substitutor,this.setState("value",Number(zn(t)))}}],n&&Pm(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function Dm(t){return Dm="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},Dm(t)}function Bm(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Nm(n.key),n)}}function Nm(t){var e=function(t){if("object"!=Dm(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Dm(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Dm(e)?e:e+""}function Fm(t,e,r){return e=Um(e),function(t,e){if(e&&("object"==Dm(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,zm()?Reflect.construct(e,r||[],Um(t).constructor):e.apply(t,r))}function zm(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(zm=function(){return!!t})()}function Um(t){return Um=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Um(t)}function Ym(t,e){return Ym=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ym(t,e)}const Gm=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),Fm(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ym(t,e)}(e,t),r=e,(n=[{key:"_convertDataFormat",value:function(t,e){return"json"===e?JSON.parse(t):t}},{key:"isDataSource",value:function(){return!0}}])&&Bm(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function Hm(t){return Hm="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},Hm(t)}function Wm(){Wm=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==Hm(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(Hm(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},_(O.prototype),c(O.prototype,u,(function(){return this})),e.AsyncIterator=O,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new O(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function Xm(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function qm(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Vm(n.key),n)}}function Vm(t){var e=function(t){if("object"!=Hm(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Hm(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Hm(e)?e:e+""}var Qm=0,Km=new FinalizationRegistry((function(){Qm--})),Jm=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.counters={},this.references={},this.creator=e,this.disposer=r,Qm++,Km.register(this,Qm)},e=[{key:"dispose",value:function(){if(this.disposer)for(var t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}},{key:"ids",get:function(){return Object.keys(this.references)}},{key:"create",value:function(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,xo("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}},{key:"add",value:function(t,e){var r=this,n=new Promise((function(n,o){var i=r.references[t];if(i)i===e?o(Error("Reference ID and target duplicate")):e?o(Error("Reference ID duplicate")):n(i);else{function a(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)a(e);else{if(!r.creator)return void o(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){a(t)}),(function(t){o(t)}))}}}));return this.references[t]||(this.references[t]=n),n}},{key:"get",value:function(){var t,e=(t=Wm().mark((function t(e,r){var n;return Wm().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(n=this.references[e])){t.next=13;break}if(n instanceof Promise){t.next=7;break}if(e in this.counters){t.next=5;break}throw new Error("No Reference Count");case 5:return this.counters[e]++,t.abrupt("return",n);case 7:if(!r){t.next=13;break}return t.next=10,n;case 10:return n=t.sent,this.counters[e]++,t.abrupt("return",n);case 13:if(!r){t.next=17;break}return t.next=16,this.add(e);case 16:return t.abrupt("return",t.sent);case 17:throw new Error("No References for "+e);case 18:case"end":return t.stop()}}),t,this)})),function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){Xm(i,n,o,a,u,"next",t)}function u(t){Xm(i,n,o,a,u,"throw",t)}a(void 0)}))});return function(t,r){return e.apply(this,arguments)}}()},{key:"_id",value:function(t){for(var e in this.references)if(this.references[e]===t)return e;return-1}},{key:"release",value:function(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,xo("RELEASED",e))):mo("No Referenced ID")}}],r=[{key:"residents",get:function(){return Qm}},{key:"residentsCount",get:function(){return Qm}}],e&&qm(t.prototype,e),r&&qm(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,r}();function Zm(t){return Zm="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},Zm(t)}function $m(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,tw(n.key),n)}}function tw(t){var e=function(t){if("object"!=Zm(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Zm(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Zm(e)?e:e+""}var ew={},rw={},nw=[];function ow(t){var e="SCRIPT"==t.target.tagName?ew:rw,r=t.target.src||t.target.href;e[r]=!0,nw.forEach((function(t,n){var o=t.resolve,i=t.scripts,a=t.styles;if(e==ew){var u=i.indexOf(r);u>-1&&u<i.length-1&&aw(i[u+1])}for(var s=0;s<i.length;s++)if(!ew[i[s]])return;if(a)for(var c=0;c<a.length;c++)if(!rw[a[c]])return;o(),nw[n]=null})),nw=nw.filter(Boolean)}function iw(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?ew:rw;nw.forEach((function(n,o){var i=n.reject,a=n.scripts,u=n.styles,s=!1;if(r===ew){for(var c=0;c<a.length;c++)if(a[c]==e){s=!0;break}}else if(u)for(var f=0;f<u.length;f++)if(u[f]==e){s=!0;break}s&&(i(t),nw[o]=null)})),nw=nw.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function aw(t){ew[t]=!1;var e=document.createElement("script");e.onload=ow,e.onerror=iw,e.type="text/javascript",e.src=t,document.head.appendChild(e)}var uw=function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)},e=[{key:"load",value:function(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var o,i=!0;if(e&&e.forEach((function(t){rw.hasOwnProperty(t)||function(t){rw[t]=!1;var e=document.createElement("link");e.onload=ow,e.onerror=iw,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),rw[t]||(i=!1)})),t&&t.length>0&&t.forEach((function(t){ew.hasOwnProperty(t)?ew[t]||(i=!1):o=o||t})),o)aw(o);else if(i)return void r();nw.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}],null&&$m(t.prototype,null),e&&$m(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();const sw="0.0.0";var cw=0,fw=performance.now(),lw=0;function hw(){return cw}requestAnimationFrame((function t(){requestAnimationFrame(t),lw++;var e=performance.now(),r=e-fw;r<1e3||(cw=Math.round(1e3*lw/r),fw=e,lw=0)}));var pw=i;function yw(){}})(),n})()));
|
|
2
|
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.scene=e():t.scene=e()}(self,(()=>(()=>{var t={53836:(t,e,r)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=r(23326),o=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=n.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=n.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=n.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,o=function(n,o){var i=t.slice(o*e,(o+1)*e);r.splice.apply(r,[n*e,e].concat(i))},i=[0,4,2,1],a=[8,8,4,2],u=0,s=0;s<4;s++)for(var c=i[s];c<n;c+=a[s])o(c,u),u++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();e.SuperGifParser=o},3207:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();e.SuperGifStream=r},60579:(t,e,r)=>{"use strict";var n=r(53836),o=r(3207),i=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new n.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var o=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(o.data[4*r+0]=n[t][0],o.data[4*r+1]=n[t][1],o.data[4*r+2]=n[t][2],o.data[4*r+3]=255)})),this.frame.putImageData(o,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new o.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}();e.U=i},23326:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,o=0,i=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(o>>3)&1<<(7&o)&&(r|=1<<n),o++;return r},a=[],u=1<<t,s=u+1,c=t+1,f=[],l=function(){f=[],c=t+1;for(var e=0;e<u;e++)f[e]=[e];f[u]=[],f[s]=null};;)if(n=r,(r=i(c))!==u){if(r===s)break;if(r<f.length)n!==u&&f.push(f[n].concat(f[r][0]));else{if(r!==f.length)throw new Error("Invalid LZW code.");f.push(f[n].concat(f[n][0]))}a.push.apply(a,f[r]),f.length===1<<c&&c<12&&c++}else l();return a},t}();e.SuperGifUtils=r},80272:()=>{function t(t,r){if(t){if("string"==typeof t)return e(t,r);var n={}.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?e(t,r):void 0}}function e(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function r(t){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}!function(n,o){"use strict";var i,a,u,s;function c(n,o,i,a,u){if([n,o,i,a].every((function(t){return Number.isFinite(t)}))){var s,c,l,h;if(4===(d=u,g=r(d),u="undefined"===g||null===d?[0]:"function"===g?[NaN]:"object"===g?"function"==typeof d[Symbol.iterator]?(v=d,function(t){if(Array.isArray(t))return e(t)}(v)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(v)||t(v)||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.")}()).map((function(t){var e=r(t);return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?b(t):m(t)})):[b(d)]:[m(d)]).length)s=w(u[0]),c=w(u[1]),l=w(u[2]),h=w(u[3]);else if(3===u.length)s=w(u[0]),c=w(u[1]),h=w(u[1]),l=w(u[2]);else if(2===u.length)s=w(u[0]),l=w(u[0]),c=w(u[1]),h=w(u[1]);else{if(1!==u.length)throw new RangeError("".concat(f(this)," ").concat(u.length," is not a valid size for radii sequence."));s=w(u[0]),c=w(u[0]),l=w(u[0]),h=w(u[0])}var p=[s,c,l,h],y=p.find((function(t){var e=t.x,r=t.y;return e<0||r<0}));if((null==y?void 0:y.x)<0?y.x:null==y||y.y,!p.some((function(t){var e=t.x,r=t.y;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(y)throw new RangeError("".concat(f(this)," Radius value ").concat(y," is negative."));!function(e){var r=function(e,r){return function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(e,r)||t(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(e,4),n=r[0],o=r[1],u=r[2],s=r[3],c=[Math.abs(i)/(n.x+o.x),Math.abs(a)/(o.y+u.y),Math.abs(i)/(u.x+s.x),Math.abs(a)/(n.y+s.y)],f=Math.min.apply(Math,c);if(f<=1){var l,h=function(e){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=t(e))){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}(e);try{for(h.s();!(l=h.n()).done;){var p=l.value;p.x*=f,p.y*=f}}catch(t){h.e(t)}finally{h.f()}}}(p),i<0&&a<0?(this.moveTo(n-s.x,o),this.ellipse(n+i+c.x,o-c.y,c.x,c.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(n+i+l.x,o+a+l.y,l.x,l.y,0,-Math.PI,-Math.PI/2),this.ellipse(n-h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,0),this.ellipse(n-s.x,o-s.y,s.x,s.y,0,0,-Math.PI/2)):i<0?(this.moveTo(n-s.x,o),this.ellipse(n+i+c.x,o+c.y,c.x,c.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+i+l.x,o+a-l.y,l.x,l.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(n-h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,0,1),this.ellipse(n-s.x,o+s.y,s.x,s.y,0,0,-Math.PI/2,1)):a<0?(this.moveTo(n+s.x,o),this.ellipse(n+i-c.x,o-c.y,c.x,c.y,0,Math.PI/2,0,1),this.ellipse(n+i-l.x,o+a+l.y,l.x,l.y,0,0,-Math.PI/2,1),this.ellipse(n+h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+s.x,o-s.y,s.x,s.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(n+s.x,o),this.ellipse(n+i-c.x,o+c.y,c.x,c.y,0,-Math.PI/2,0),this.ellipse(n+i-l.x,o+a-l.y,l.x,l.y,0,0,Math.PI/2),this.ellipse(n+h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,Math.PI),this.ellipse(n+s.x,o+s.y,s.x,s.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(n,o)}}var d,v,g;function b(t){return{x:t.x,y:t.y,z:t.z,w:t.w}}function m(t){return+t}function w(t){var e,r,n=m(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:m(null!==(e=t.x)&&void 0!==e?e:0),y:m(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function f(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}null!==(o=(n=Path2D.prototype).roundRect)&&void 0!==o||(n.roundRect=c),globalThis.CanvasRenderingContext2D&&(null!==(a=(i=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==a||(i.roundRect=c)),globalThis.OffscreenCanvasRenderingContext2D&&(null!==(s=(u=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==s||(u.roundRect=c))}()},59877:(t,e,r)=>{var n,o,i;function a(t){return a="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},a(t)}var u,s=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},u=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,a=Object.create(i.prototype),u=new M(n||[]);return o(a,"_invoke",{value:A(t,r,u)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p="suspendedStart",y="suspendedYield",d="executing",v="completed",g={};function b(){}function m(){}function w(){}var x={};f(x,u,(function(){return this}));var k=Object.getPrototypeOf,S=k&&k(k(R([])));S&&S!==r&&n.call(S,u)&&(x=S);var O=w.prototype=b.prototype=Object.create(x);function _(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(o,i,u,s){var c=h(t[o],t,i);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"===a(l)&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function A(t,r,n){var o=p;return function(i,a){if(o===d)throw new Error("Generator is already running");if(o===v){if("throw"===i)throw a;return{value:e,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=P(u,n);if(s){if(s===g)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===p)throw o=v,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=d;var c=h(t,r,n);if("normal"===c.type){if(o=n.done?v:y,c.arg===g)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=v,n.method="throw",n.arg=c.arg)}}}function P(t,r){var n=r.method,o=t.iterator[n];if(o===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,P(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),g;var i=h(o,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,g;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,g):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function T(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function R(t){if(null!=t){var r=t[u];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return i.next=i}}throw new TypeError(a(t)+" is not iterable")}return m.prototype=w,o(O,"constructor",{value:w,configurable:!0}),o(w,"constructor",{value:m,configurable:!0}),m.displayName=f(w,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,c,"GeneratorFunction")),t.prototype=Object.create(O),t},t.awrap=function(t){return{__await:t}},_(E.prototype),f(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new E(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(O),f(O,c,"Generator"),f(O,u,(function(){return this})),f(O,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=R,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(T),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return u.type="throw",u.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),T(r),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;T(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:R(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}("object"===a(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=s}catch(t){"object"===("undefined"==typeof globalThis?"undefined":a(globalThis))?globalThis.regeneratorRuntime=s:Function("r","regeneratorRuntime = r")(s)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,o="",i=0,a=arguments.length;i!==a;++i){var u=+arguments[i];if(!(u<1114111&&u>>>0===u))throw RangeError("Invalid code point: "+u);u<=65535?n=r.push(u):(u-=65536,n=r.push(55296+(u>>10),u%1024+56320)),n>=16383&&(o+=t.apply(null,r),r.length=0)}return o+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}),String.prototype.codePointAt||function(){"use strict";var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var o,i=e.charCodeAt(n);return i>=55296&&i<=56319&&r>n+1&&(o=e.charCodeAt(n+1))>=56320&&o<=57343?1024*(i-55296)+o-56320+65536:i}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},u=function(){return function t(e,r,n){function o(a,u){if(!r[a]){if(!e[a]){if(i)return i(a,!0);var s=new Error("Cannot find module '"+a+"'");throw s.code="MODULE_NOT_FOUND",s}var c=r[a]={exports:{}};e[a][0].call(c.exports,(function(t){return o(e[a][1][t]||t)}),c,c.exports,t,e,r,n)}return r[a].exports}for(var i=void 0,a=0;a<n.length;a++)o(n[a]);return o}({1:[function(t,e,r){"use strict";var n=t("./utils"),o=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],o=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],i=["Thousand","Million","Billion","Trillion"],a={};e.forEach((function(t,e){a[t.toLowerCase()]=e})),r.forEach((function(t,e){a[t.toLowerCase()]=e})),o.forEach((function(t,e){var r=t.toLowerCase();a[r]=10*(e+2),a[r.substring(0,t.length-1)+"ieth"]=a[r]})),a.hundredth=100,i.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));a[r]=n,a[r+"th"]=n}));var u=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],s={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function c(t){for(var e=0;e<u.length;e++){var r=u[e];if(t>=r[0])return r[1]+c(t-r[0])}return""}function f(t,e){if(void 0!==t)return p(t=Math.floor(t),d(e))}var l={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},h={UPPER:"upper",LOWER:"lower",TITLE:"title"};function p(n,a){var u,s=n<0;switch(n=Math.abs(n),a.primary){case l.LETTERS:u=function(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}(n,a.case===h.UPPER?"A":"a");break;case l.ROMAN:u=c(n),a.case===h.UPPER&&(u=u.toUpperCase());break;case l.WORDS:u=function(t,n){return function t(n,a,u){var s="";if(n<=19)s=(a?" and ":"")+(u?r[n]:e[n]);else if(n<100){var c=Math.floor(n/10),f=n%10;s=(a?" and ":"")+o[c-2],f>0?s+="-"+t(f,!1,u):u&&(s=s.substring(0,s.length-1)+"ieth")}else if(n<1e3){var l=Math.floor(n/100),h=n%100;s=(a?", ":"")+e[l]+" Hundred",h>0?s+=t(h,!0,u):u&&(s+="th")}else{var p=Math.floor(Math.log10(n)/3);p>i.length&&(p=i.length);var y=Math.pow(10,3*p),d=Math.floor(n/y),v=n-d*y;s=(a?", ":"")+t(d,!1,!1)+" "+i[p-1],v>0?s+=t(v,!0,u):u&&(s+="th")}return s}(t,!1,n)}(n,a.ordinal),a.case===h.UPPER?u=u.toUpperCase():a.case===h.LOWER&&(u=u.toLowerCase());break;case l.DECIMAL:u=""+n;var f=a.mandatoryDigits-u.length;if(f>0){var p=new Array(f+1).join("0");u=p+u}if(48!==a.zeroCode&&(u=t(u).map((function(t){return String.fromCodePoint(t.codePointAt(0)+a.zeroCode-48)})).join("")),a.regular)for(var y=Math.floor((u.length-1)/a.groupingSeparators.position);y>0;y--){var d=u.length-y*a.groupingSeparators.position;u=u.substr(0,d)+a.groupingSeparators.character+u.substr(d)}else a.groupingSeparators.reverse().forEach((function(t){var e=u.length-t.position;u=u.substr(0,e)+t.character+u.substr(e)}));if(a.ordinal){var v={1:"st",2:"nd",3:"rd"}[u[u.length-1]];(!v||u.length>1&&"1"===u[u.length-2])&&(v="th"),u+=v}break;case l.SEQUENCE:throw{code:"D3130",value:a.token}}return s&&(u="-"+u),u}var y=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function d(e){var r,n={type:"integer",primary:l.DECIMAL,case:h.LOWER,ordinal:!1},o=e.lastIndexOf(";");switch(-1===o?r=e:(r=e.substring(0,o),"o"===e.substring(o+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=h.UPPER;case"a":n.primary=l.LETTERS;break;case"I":n.case=h.UPPER;case"i":n.primary=l.ROMAN;break;case"W":n.case=h.UPPER,n.primary=l.WORDS;break;case"Ww":n.case=h.TITLE,n.primary=l.WORDS;break;case"w":n.primary=l.WORDS;break;default:var i=null,a=0,u=0,s=[],c=0;if(t(r).map((function(t){return t.codePointAt(0)})).reverse().forEach((function(t){for(var e=!1,r=0;r<y.length;r++){var n=y[r];if(t>=n&&t<=n+9){if(e=!0,a++,c++,null===i)i=n;else if(n!==i)throw{code:"D3131"};break}}e||(35===t?(c++,u++):s.push({position:c,character:String.fromCodePoint(t)}))})),a>0){n.primary=l.DECIMAL,n.zeroCode=i,n.mandatoryDigits=a,n.optionalDigits=u;var f=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),o=n.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),i=1;i<=n.length;i++)if(-1===n.indexOf(i*o))return 0;return o}(s);f>0?(n.regular=!0,n.groupingSeparators={position:f,character:s[0].character}):(n.regular=!1,n.groupingSeparators=s)}else n.primary=l.SEQUENCE,n.token=r}return n}var v={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function g(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var o=t.substring(r,n);o=o.split("]]").join("]"),e.push({type:"literal",value:o})}},o=0,i=0;i<t.length;){if("["===t.charAt(i)){if("["===t.charAt(i+1)){n(o,i),e.push({type:"literal",value:"["}),o=i+=2;continue}if(n(o,i),o=i,-1===(i=t.indexOf("]",o)))throw{code:"D3135"};var a,u=t.substring(o+1,i),s={type:"marker",component:(u=u.split(/\s+/).join("")).charAt(0)},c=u.lastIndexOf(",");if(-1!==c){var f=u.substring(c+1),l=f.indexOf("-"),p=void 0,y=void 0,g=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===l?p=f:(p=f.substring(0,l),y=f.substring(l+1));var b={min:g(p),max:g(y)};s.width=b,a=u.substring(1,c)}else a=u.substring(1);if(1===a.length)s.presentation1=a;else if(a.length>1){var m=a.charAt(a.length-1);-1!=="atco".indexOf(m)?(s.presentation2=m,"o"===m&&(s.ordinal=!0),s.presentation1=a.substring(0,a.length-1)):s.presentation1=a}else s.presentation1=v[s.component];if(void 0===s.presentation1)throw{code:"D3132",value:s.component};if("n"===s.presentation1[0])s.names=h.LOWER;else if("N"===s.presentation1[0])"n"===s.presentation1[1]?s.names=h.TITLE:s.names=h.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(s.component)){var w=s.presentation1;if(s.presentation2&&(w+=";"+s.presentation2),s.integerFormat=d(w),s.width&&void 0!==s.width.min&&s.integerFormat.mandatoryDigits<s.width.min&&(s.integerFormat.mandatoryDigits=s.width.min),-1!=="YMD".indexOf(s.component))if(s.n=-1,s.width&&void 0!==s.width.max)s.n=s.width.max,s.integerFormat.mandatoryDigits=s.n;else{var x=s.integerFormat.mandatoryDigits+s.integerFormat.optionalDigits;x>=2&&(s.n=x)}}"Z"!==s.component&&"z"!==s.component||(s.integerFormat=d(s.presentation1)),e.push(s),o=i+1}i++}return n(o,i),r}var b=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],m=["January","February","March","April","May","June","July","August","September","October","November","December"],w=864e5,x=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*w:e-(r-1)*w},k=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},S=function(t,e){return(e-t)/6048e5+1},O=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/w+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=k(t.getUTCFullYear(),0),o=x(n),i=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),a=S(o,i);if(a>52)i>=x(n.nextYear())&&(a=1);else if(a<1){var u=x(n.previousYear());a=S(u,i)}r=Math.floor(a);break;case"w":var s=k(t.getUTCFullYear(),t.getUTCMonth()),c=x(s),f=Date.UTC(s.year,s.month,t.getUTCDate()),l=S(c,f);if(l>4)f>=x(s.nextMonth())&&(l=1);else if(l<1){var h=x(s.previousMonth());l=S(h,f)}r=Math.floor(l);break;case"X":var p=k(t.getUTCFullYear(),0),y=x(p),d=x(p.nextYear()),v=t.getTime();r=v<y?p.year-1:v>=d?p.year+1:p.year;break;case"x":var g=k(t.getUTCFullYear(),t.getUTCMonth()),b=x(g),m=g.nextMonth(),O=x(m),_=t.getTime();r=_<b?g.previousMonth().month+1:_>=O?m.month+1:g.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},_=null;function E(t,e,r){var n,o=0,i=0;if(void 0!==r){var a=parseInt(r);o=Math.floor(a/100),i=a%100}void 0===e?(null===_&&(_=g("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),n=_):n=g(e);var u=new Date(t+60*(60*o+i)*1e3),s="";return n.parts.forEach((function(t){"literal"===t.type?s+=t.value:s+=function(t,e){var r=O(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=m[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=b[r]}e.names===h.UPPER?r=r.toUpperCase():e.names===h.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=p(r,e.integerFormat);else if("f"===e.component)r=p(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var n=100*o+i;if(e.integerFormat.regular)r=p(n,e.integerFormat);else{var a=e.integerFormat.mandatoryDigits;if(1===a||2===a)r=p(o,e.integerFormat),0!==i&&(r+=":"+f(i,"00"));else{if(3!==a&&4!==a)throw{code:"D3134",value:a};r=p(n,e.integerFormat)}}n>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===n&&"t"===e.presentation2&&(r="Z")}return r}(u,t)})),s}function A(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,o=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),o=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),o=Number.parseInt(e.substring(3))),60*n+o}}else if(t.integerFormat)t.integerFormat.n=t.n,e=A(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)m.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)b.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===h.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case l.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return function(t,e){for(var r=e.charCodeAt(0),n=0,o=0;o<t.length;o++)n+=(t.charCodeAt(t.length-o-1)-r+1)*Math.pow(26,o);return n}(t,n?"A":"a")};break;case l.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return function(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var o=t[n],i=s[o];i<r?e-=i:(r=i,e+=i)}return e}(n?t:t.toUpperCase())};break;case l.WORDS:e.regex="(?:"+Object.keys(a).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return e=t.toLowerCase().split(/,\s|\sand\s|[\s\\-]/).map((function(t){return a[t]})),r=[0],e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)})),r.reduce((function(t,e){return t+e}),0);var e,r};break;case l.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case l.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function P(t,e){var r=A(g(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",o=new RegExp(n,"i").exec(t);if(null!==o){for(var i={},a=1;a<o.length;a++){var u=r.parts[a-1];u.parse&&(i[u.component]=u.parse(o[a]))}if(0===Object.getOwnPropertyNames(i).length)return;var s=0,c=function(t){s<<=1,s+=t?1:0},f=function(t){return!(~t&s||!(t&s))};"YXMxWwdD".split("").forEach((function(t){return c(i[t])}));var l=!f(161)&&f(130),h=f(84),p=!h&&f(72);s=0,"PHhmsf".split("").forEach((function(t){return c(i[t])}));var y=!f(23)&&f(47),d=(l?"YD":h?"XxwF":p?"XWF":"YMD")+(y?"Phmsf":"Hmsf"),v=this.environment.timestamp,b=!1,m=!1;if(d.split("").forEach((function(t){if(void 0===i[t])b?(i[t]=-1!=="MDd".indexOf(t)?1:0,m=!0):i[t]=O(v,t);else if(b=!0,m)throw{code:"D3136"}})),i.M>0?i.M-=1:i.M=0,l){var w=Date.UTC(i.Y,0),x=1e3*(i.d-1)*60*60*24,k=new Date(w+x);i.M=k.getUTCMonth(),i.D=k.getUTCDate()}if(h)throw{code:"D3136"};if(p)throw{code:"D3136"};y&&(i.H=12===i.h?0:i.h,1===i.P&&(i.H+=12));var S=Date.UTC(i.Y,i.M,i.D,i.H,i.m,i.s,i.f);return(i.Z||i.z)&&(S-=60*(i.Z||i.z)*1e3),S}}var j=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");return{formatInteger:f,parseInteger:function(t,e){if(void 0!==t)return A(d(e)).parse(t)},fromMillis:function(t,e,r){if(void 0!==t)return E.call(this,t,e,r)},toMillis:function(t,e){if(void 0!==t){if(void 0===e){if(!j.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return P.call(this,t,e)}}}}();e.exports=o},{"./utils":6}],2:[function(t,e,n){(function(r){(function(){"use strict";function n(t){return n="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},n(t)}function o(){o=function(){return e};var t,e={},r=Object.prototype,i=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},u="function"==typeof Symbol?Symbol:{},s=u.iterator||"@@iterator",c=u.asyncIterator||"@@asyncIterator",f=u.toStringTag||"@@toStringTag";function l(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{l({},"")}catch(t){l=function(t,e,r){return t[e]=r}}function h(t,e,r,n){var o=e&&e.prototype instanceof m?e:m,i=Object.create(o.prototype),u=new R(n||[]);return a(i,"_invoke",{value:P(t,r,u)}),i}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=h;var y="suspendedStart",d="suspendedYield",v="executing",g="completed",b={};function m(){}function w(){}function x(){}var k={};l(k,s,(function(){return this}));var S=Object.getPrototypeOf,O=S&&S(S(I([])));O&&O!==r&&i.call(O,s)&&(k=O);var _=x.prototype=m.prototype=Object.create(k);function E(t){["next","throw","return"].forEach((function(e){l(t,e,(function(t){return this._invoke(e,t)}))}))}function A(t,e){function r(o,a,u,s){var c=p(t[o],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==n(l)&&i.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var o;a(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}})}function P(e,r,n){var o=y;return function(i,a){if(o===v)throw new Error("Generator is already running");if(o===g){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=j(u,n);if(s){if(s===b)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===y)throw o=g,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=v;var c=p(e,r,n);if("normal"===c.type){if(o=n.done?g:d,c.arg===b)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=g,n.method="throw",n.arg=c.arg)}}}function j(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,j(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),b;var i=p(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,b;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,b):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,b)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function M(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function R(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(e){if(e||""===e){var r=e[s];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,a=function r(){for(;++o<e.length;)if(i.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return a.next=a}}throw new TypeError(n(e)+" is not iterable")}return w.prototype=x,a(_,"constructor",{value:x,configurable:!0}),a(x,"constructor",{value:w,configurable:!0}),w.displayName=l(x,f,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,x):(t.__proto__=x,l(t,f,"GeneratorFunction")),t.prototype=Object.create(_),t},e.awrap=function(t){return{__await:t}},E(A.prototype),l(A.prototype,c,(function(){return this})),e.AsyncIterator=A,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new A(h(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},E(_),l(_,f,"Generator"),l(_,s,(function(){return this})),l(_,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=I,R.prototype={constructor:R,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(M),!e)for(var r in this)"t"===r.charAt(0)&&i.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],u=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var s=i.call(a,"catchLoc"),c=i.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,b):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),b},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),M(r),b}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;M(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:I(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),b}},e}var i=t("./utils"),a=function(){var t=o().mark(j),e=o().mark(T),a=o().mark(M),u=o().mark(R),s=o().mark(I),c=o().mark(B),f=o().mark(N),l=o().mark(F),h=o().mark(z),p=o().mark(Y),y=o().mark(G),d=o().mark(H),v=i.isNumeric,g=i.isArrayOfStrings,b=i.isArrayOfNumbers,m=i.createSequence,w=i.isSequence,x=i.isFunction,k=i.isLambda,S=i.isIterable,O=i.getFunctionArity,_=i.isDeepEqual,E=i.stringToArray;function A(t,e,r){if(void 0!==t){var n=E(t),o=n.length;if(o+e<0&&(e=0),void 0!==r){if(r<=0)return"";var i=e>=0?e+r:o+e+r;return n.slice(e,i).join("")}return n.slice(e).join("")}}function P(t){if(void 0!==t)return E(t).length}function j(e,r){var n;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.apply(this,[r]),!S(n)){t.next=4;break}return t.delegateYield(n,"t0",3);case 3:n=t.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||x(n.next)){t.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return t.abrupt("return",n);case 7:case"end":return t.stop()}}),t,this)}function T(t,r){var n,i;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==t){e.next=2;break}return e.abrupt("return",void 0);case 2:if("string"!=typeof r){e.next=6;break}n=-1!==t.indexOf(r),e.next=9;break;case 6:return e.delegateYield(j(r,t),"t0",7);case 7:i=e.t0,n=void 0!==i;case 9:return e.abrupt("return",n);case 10:case"end":return e.stop()}}),e)}function M(t,e,r){var n,i,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!(r<0)){o.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=m(),!(void 0===r||r>0)){o.next=17;break}return i=0,o.delegateYield(j(e,t),"t0",8);case 8:if(void 0===(u=o.t0)){o.next=17;break}case 10:if(void 0===u||!(void 0===r||i<r)){o.next=17;break}return n.push({match:u.match,index:u.start,groups:u.groups}),o.delegateYield(j(u.next),"t1",13);case 13:u=o.t1,i++,o.next=10;break;case 17:return o.abrupt("return",n);case 18:case"end":return o.stop()}}),a)}function R(t,e,r,n){var i,a,s,c,f,l,h,p;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(i=this,""!==e){o.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){o.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(a="string"==typeof r?function(t){for(var e="",n=0,o=r.indexOf("$",n);-1!==o&&n<r.length;){e+=r.substring(n,o),n=o+1;var i=r.charAt(n);if("$"===i)e+="$",n++;else if("0"===i)e+=t.match,n++;else{var a;if(a=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,o=parseInt(r.substring(n,n+a),10),a>1&&o>t.groups.length&&(o=parseInt(r.substring(n,n+a-1),10)),isNaN(o))e+="$";else{if(t.groups.length>0){var u=t.groups[o-1];void 0!==u&&(e+=u)}n+=o.toString().length}}o=r.indexOf("$",n)}return e+r.substring(n)}:r,s="",c=0,!(void 0===n||n>0)){o.next=44;break}if(f=0,"string"!=typeof e){o.next=18;break}for(l=t.indexOf(e,c);-1!==l&&(void 0===n||f<n);)s+=t.substring(c,l),s+=r,c=l+e.length,f++,l=t.indexOf(e,c);s+=t.substring(c),o.next=42;break;case 18:return o.delegateYield(j(e,t),"t0",19);case 19:if(void 0===(h=o.t0)){o.next=41;break}case 21:if(void 0===h||!(void 0===n||f<n)){o.next=38;break}if(s+=t.substring(c,h.start),p=a.apply(i,[h]),!S(p)){o.next=27;break}return o.delegateYield(p,"t1",26);case 26:p=o.t1;case 27:if("string"!=typeof p){o.next=31;break}s+=p,o.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:p};case 32:return c=h.start+h.match.length,f++,o.delegateYield(j(h.next),"t2",35);case 35:h=o.t2,o.next=21;break;case 38:s+=t.substring(c),o.next=42;break;case 41:s=t;case 42:o.next=45;break;case 44:s=t;case 45:return o.abrupt("return",s);case 46:case"end":return o.stop()}}),u,this)}function I(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!(r<0)){o.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){o.next=27;break}if("string"!=typeof e){o.next=10;break}n=t.split(e,r),o.next=27;break;case 10:return i=0,o.delegateYield(j(e,t),"t0",12);case 12:if(void 0===(a=o.t0)){o.next=26;break}u=0;case 15:if(void 0===a||!(void 0===r||i<r)){o.next=23;break}return n.push(t.substring(u,a.start)),u=a.end,o.delegateYield(j(a.next),"t1",19);case 19:a=o.t1,i++,o.next=15;break;case 23:(void 0===r||i<r)&&n.push(t.substring(u)),o.next=27;break;case 26:n.push(t);case 27:return o.abrupt("return",n);case 28:case"end":return o.stop()}}),s)}function C(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var o=(r=Math.round(t))-t;return.5===Math.abs(o)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function L(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=L(t[0]):t.length>1&&(e=t.filter((function(t){return L(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):v(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function D(t,e,r,n){var o=[e],i=O(t);return i>=2&&o.push(r),i>=3&&o.push(n),o}function B(t,e){var r,n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){o.next=12;break}return i=D(e,t[n],n,t),o.delegateYield(e.apply(this,i),"t0",7);case 7:void 0!==(a=o.t0)&&r.push(a);case 9:n++,o.next=4;break;case 12:return o.abrupt("return",r);case 13:case"end":return o.stop()}}),c,this)}function N(t,e){var r,n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){o.next=13;break}return i=t[n],a=D(e,i,n,t),o.delegateYield(e.apply(this,a),"t0",8);case 8:L(o.t0)&&r.push(i);case 10:n++,o.next=4;break;case 13:return o.abrupt("return",r);case 14:case"end":return o.stop()}}),f,this)}function F(t,e){var r,n,i,a,u,s,c;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=!1,i=0;case 4:if(!(i<t.length)){o.next=22;break}if(a=t[i],u=!0,void 0===e){o.next=12;break}return s=D(e,a,i,t),o.delegateYield(e.apply(this,s),"t0",10);case 10:c=o.t0,u=L(c);case 12:if(!u){o.next=19;break}if(r){o.next=18;break}n=a,r=!0,o.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:i};case 19:i++,o.next=4;break;case 22:if(r){o.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return o.abrupt("return",n);case 25:case"end":return o.stop()}}),l,this)}function z(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!((i=O(e))<2)){o.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],a=1):(n=r,a=0);case 6:if(!(a<t.length)){o.next=15;break}return u=[n,t[a]],i>=3&&u.push(a),i>=4&&u.push(t),o.delegateYield(e.apply(this,u),"t0",11);case 11:n=o.t0,a++,o.next=6;break;case 15:return o.abrupt("return",n);case 16:case"end":return o.stop()}}),h,this)}function U(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=m(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function Y(t,e){var r,n,i,a;return o().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:r=m(),u.t0=o().keys(t);case 2:if((u.t1=u.t0()).done){u.next=10;break}return n=u.t1.value,i=D(e,t[n],n,t),u.delegateYield(e.apply(this,i),"t2",6);case 6:void 0!==(a=u.t2)&&r.push(a),u.next=2;break;case 10:return u.abrupt("return",r);case 11:case"end":return u.stop()}}),p,this)}function G(t,e){var r,n,i,a;return o().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:if(void 0!==t){u.next=2;break}return u.abrupt("return",void 0);case 2:if(!(t.length<=1)){u.next=4;break}return u.abrupt("return",t);case 4:if(void 0!==e){u.next=10;break}if(b(t)||g(t)){u.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=o().mark((function t(e,r){return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),u.next=11;break;case 10:r=e;case 11:return n=o().mark((function t(e,n){var i,a;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return i=o().mark((function t(e,n,i){return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(0!==n.length){o.next=4;break}Array.prototype.push.apply(e,i),o.next=16;break;case 4:if(0!==i.length){o.next=8;break}Array.prototype.push.apply(e,n),o.next=16;break;case 8:return o.delegateYield(r(n[0],i[0]),"t0",9);case 9:if(!o.t0){o.next=14;break}return e.push(i[0]),o.delegateYield(t(e,n,i.slice(1)),"t1",12);case 12:o.next=16;break;case 14:return e.push(n[0]),o.delegateYield(t(e,n.slice(1),i),"t2",16);case 16:case"end":return o.stop()}}),t)})),a=[],t.delegateYield(i(a,e,n),"t0",3);case 3:return t.abrupt("return",a);case 4:case"end":return t.stop()}}),t)})),i=o().mark((function t(e){var r,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){o.next=4;break}return o.abrupt("return",e);case 4:return r=Math.floor(e.length/2),i=e.slice(0,r),a=e.slice(r),o.delegateYield(t(i),"t0",8);case 8:return i=o.t0,o.delegateYield(t(a),"t1",10);case 10:return a=o.t1,o.delegateYield(n(i,a),"t2",12);case 12:return o.abrupt("return",o.t2);case 13:case"end":return o.stop()}}),t)})),u.delegateYield(i(t),"t0",14);case 14:return a=u.t0,u.abrupt("return",a);case 16:case"end":return u.stop()}}),y)}function H(t,e){var r,n,i,a;return o().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:r={},u.t0=o().keys(t);case 2:if((u.t1=u.t0()).done){u.next=11;break}return n=u.t1.value,i=t[n],a=D(e,i,n,t),u.delegateYield(e.apply(this,a),"t2",7);case 7:L(u.t2)&&(r[n]=i),u.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),u.abrupt("return",r);case 13:case"end":return u.stop()}}),d,this)}return{sum:function(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}},count:function(t){return void 0===t?0:t.length},max:function(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)},min:function(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)},average:function(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}},string:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(x(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&v(e)?Number(e.toPrecision(15)):e&&x(e)?"":e}),n)}return r}},substring:A,substringBefore:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}},substringAfter:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}},lowercase:function(t){if(void 0!==t)return t.toLowerCase()},uppercase:function(t){if(void 0!==t)return t.toUpperCase()},length:P,trim:function(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}},pad:function(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var o=Math.abs(e)-P(t);if(o>0){var i=new Array(o+1).join(r);r.length>1&&(i=A(i,0,o)),n=e>0?t+i:i+t}else n=t;return n}},match:M,contains:T,replace:R,split:I,join:function(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)},formatNumber:function(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var o=[],i=n["zero-digit"].charCodeAt(0),a=i;a<i+10;a++)o.push(String.fromCharCode(a));var u=o.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),s=e.split(n["pattern-separator"]);if(s.length>2)throw{code:"D3080",stack:(new Error).stack};var c=s.map((function(t){var e,r,o,i,a=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==u.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),s=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==u.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),c=t.substring(a.length,t.length-s.length),f=t.indexOf(n["exponent-separator"],a.length);-1===f||f>t.length-s.length?(e=c,r=void 0):(e=c.substring(0,f),r=c.substring(f+1));var l=e.indexOf(n["decimal-separator"]);return-1===l?(o=e,i=s):(o=e.substring(0,l),i=e.substring(l+1)),{prefix:a,suffix:s,activePart:c,mantissaPart:e,exponentPart:r,integerPart:o,fractionalPart:i,subpicture:t}}));c.forEach((function(t){var e,r,i=t.subpicture,a=i.indexOf(n["decimal-separator"]);a!==i.lastIndexOf(n["decimal-separator"])&&(e="D3081"),i.indexOf(n.percent)!==i.lastIndexOf(n.percent)&&(e="D3082"),i.indexOf(n["per-mille"])!==i.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==i.indexOf(n.percent)&&-1!==i.indexOf(n["per-mille"])&&(e="D3084");var s=!1;for(r=0;r<t.mantissaPart.length;r++){var c=t.mantissaPart.charAt(r);if(-1!==o.indexOf(c)||c===n.digit){s=!0;break}}s||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===u.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==a?i.charAt(a-1)!==n["grouping-separator"]&&i.charAt(a+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==i.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var f=t.integerPart.indexOf(n.digit);-1!==f&&t.integerPart.substring(0,f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(f=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3091");var l="string"==typeof t.exponentPart;if(l&&t.exponentPart.length>0&&(-1!==i.indexOf(n.percent)||-1!==i.indexOf(n["per-mille"]))&&(e="D3092"),l&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===o.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}}));var f,l,h,p,y=c.map((function(t){var e=function(e,r){for(var i=[],a=e.indexOf(n["grouping-separator"]);-1!==a;){var u=(r?e.substring(0,a):e.substring(a)).split("").filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length;i.push(u),a=t.integerPart.indexOf(n["grouping-separator"],a+1)}return i},r=e(t.integerPart),i=function(t){if(0===t.length)return 0;for(var e=t.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),r=1;r<=t.length;r++)if(-1===t.indexOf(r*e))return 0;return e}(r),a=e(t.fractionalPart,!0),u=t.integerPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length,s=u,c=t.fractionalPart.split(""),f=c.filter((function(t){return-1!==o.indexOf(t)})).length,l=c.filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length,h="string"==typeof t.exponentPart;0===u&&0===l&&(h?(f=1,l=1):u=1),h&&0===u&&-1!==t.integerPart.indexOf(n.digit)&&(u=1),0===u&&0===f&&(f=1);var p=0;return h&&(p=t.exponentPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:i,minimumIntegerPartSize:u,scalingFactor:s,prefix:t.prefix,fractionalPartGroupingPositions:a,minimumFactionalPartSize:f,maximumFactionalPartSize:l,minimumExponentSize:p,suffix:t.suffix,picture:t.subpicture}})),d=n["minus-sign"],v=n["zero-digit"],g=n["decimal-separator"],b=n["grouping-separator"];if(1===y.length&&(y.push(JSON.parse(JSON.stringify(y[0]))),y[1].prefix=d+y[1].prefix),l=-1!==(f=t>=0?y[0]:y[1]).picture.indexOf(n.percent)?100*t:-1!==f.picture.indexOf(n["per-mille"])?1e3*t:t,0===f.minimumExponentSize)h=l;else{var m=Math.pow(10,f.scalingFactor),w=Math.pow(10,f.scalingFactor-1);for(h=l,p=0;h<w;)h*=10,p-=1;for(;h>m;)h/=10,p+=1}var x=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==v&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?o[t.charCodeAt(0)-48]:t})).join("")),r},k=x(C(h,f.maximumFactionalPartSize),f.maximumFactionalPartSize),S=k.indexOf(".");for(-1===S?k+=g:k=k.replace(".",g);k.charAt(0)===v;)k=k.substring(1);for(;k.charAt(k.length-1)===v;)k=k.substring(0,k.length-1);S=k.indexOf(g);var O=f.minimumIntegerPartSize-S,_=f.minimumFactionalPartSize-(k.length-S-1);if(k=(O>0?new Array(O+1).join(v):"")+k,k+=_>0?new Array(_+1).join(v):"",S=k.indexOf(g),f.regularGrouping>0)for(var E=Math.floor((S-1)/f.regularGrouping),A=1;A<=E;A++)k=[k.slice(0,S-A*f.regularGrouping),b,k.slice(S-A*f.regularGrouping)].join("");else f.integerPartGroupingPositions.forEach((function(t){k=[k.slice(0,S-t),b,k.slice(S-t)].join(""),S++}));if(S=k.indexOf(g),f.fractionalPartGroupingPositions.forEach((function(t){k=[k.slice(0,t+S+1),b,k.slice(t+S+1)].join("")})),S=k.indexOf(g),-1!==f.picture.indexOf(g)&&S!==k.length-1||(k=k.substring(0,k.length-1)),void 0!==p){var P=x(p,0);(O=f.minimumExponentSize-P.length)>0&&(P=new Array(O+1).join(v)+P),k=k+n["exponent-separator"]+(p<0?d:"")+P}return k=f.prefix+k+f.suffix}},formatBase:function(t,e){if(void 0!==t){if(t=C(t),(e=void 0===e?10:C(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}},number:function(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}},floor:function(t){if(void 0!==t)return Math.floor(t)},ceil:function(t){if(void 0!==t)return Math.ceil(t)},round:C,abs:function(t){if(void 0!==t)return Math.abs(t)},sqrt:function(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}},power:function(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}},random:function(){return Math.random()},boolean:L,not:function(t){if(void 0!==t)return!L(t)},map:B,zip:function(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var o=e.map((function(t){return t[n]}));t.push(o)}return t},filter:N,single:F,foldLeft:z,sift:H,keys:function t(e){var r=m();if(Array.isArray(e)){var o={};e.forEach((function(e){t(e).forEach((function(t){o[t]=!0}))})),r=t(o)}else null===e||"object"!==n(e)||k(e)||Object.keys(e).forEach((function(t){return r.push(t)}));return r},lookup:function t(e,r){var o;if(Array.isArray(e)){o=m();for(var i=0;i<e.length;i++){var a=t(e[i],r);void 0!==a&&(Array.isArray(a)?a.forEach((function(t){return o.push(t)})):o.push(a))}}else null!==e&&"object"===n(e)&&(o=e[r]);return o},append:U,exists:function(t){return void 0!==t},spread:function t(e){var r=m();if(Array.isArray(e))e.forEach((function(e){r=U(r,t(e))}));else if(null===e||"object"!==n(e)||k(e))r=e;else for(var o in e){var i={};i[o]=e[o],r.push(i)}return r},merge:function(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}},reverse:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}},each:Y,error:function(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}},assert:function(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}},type:function(t){if(void 0!==t)return null===t?"null":v(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":x(t)?"function":"object"},sort:G,shuffle:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}},distinct:function(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=w(t)?m():[],r=0;r<t.length;r++){for(var n=t[r],o=!1,i=0;i<e.length;i++)if(_(n,e[i])){o=!0;break}o||e.push(n)}return e}},base64encode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.btoa:function(t){return new r.Buffer.from(t,"binary").toString("base64")};return e(t)}},base64decode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.atob:function(t){return new r.Buffer.from(t,"base64").toString("binary")};return e(t)}},encodeUrlComponent:function(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}},encodeUrl:function(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}},decodeUrlComponent:function(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}},decodeUrl:function(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}}}();e.exports=a}).call(this)}).call(this,void 0!==r.g?r.g:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){"use strict";function n(t){return n="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},n(t)}function o(){o=function(){return e};var t,e={},r=Object.prototype,i=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},u="function"==typeof Symbol?Symbol:{},s=u.iterator||"@@iterator",c=u.asyncIterator||"@@asyncIterator",f=u.toStringTag||"@@toStringTag";function l(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{l({},"")}catch(t){l=function(t,e,r){return t[e]=r}}function h(t,e,r,n){var o=e&&e.prototype instanceof m?e:m,i=Object.create(o.prototype),u=new R(n||[]);return a(i,"_invoke",{value:P(t,r,u)}),i}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=h;var y="suspendedStart",d="suspendedYield",v="executing",g="completed",b={};function m(){}function w(){}function x(){}var k={};l(k,s,(function(){return this}));var S=Object.getPrototypeOf,O=S&&S(S(I([])));O&&O!==r&&i.call(O,s)&&(k=O);var _=x.prototype=m.prototype=Object.create(k);function E(t){["next","throw","return"].forEach((function(e){l(t,e,(function(t){return this._invoke(e,t)}))}))}function A(t,e){function r(o,a,u,s){var c=p(t[o],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==n(l)&&i.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var o;a(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}})}function P(e,r,n){var o=y;return function(i,a){if(o===v)throw new Error("Generator is already running");if(o===g){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=j(u,n);if(s){if(s===b)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===y)throw o=g,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=v;var c=p(e,r,n);if("normal"===c.type){if(o=n.done?g:d,c.arg===b)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=g,n.method="throw",n.arg=c.arg)}}}function j(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,j(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),b;var i=p(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,b;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,b):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,b)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function M(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function R(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(e){if(e||""===e){var r=e[s];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,a=function r(){for(;++o<e.length;)if(i.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return a.next=a}}throw new TypeError(n(e)+" is not iterable")}return w.prototype=x,a(_,"constructor",{value:x,configurable:!0}),a(x,"constructor",{value:w,configurable:!0}),w.displayName=l(x,f,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,x):(t.__proto__=x,l(t,f,"GeneratorFunction")),t.prototype=Object.create(_),t},e.awrap=function(t){return{__await:t}},E(A.prototype),l(A.prototype,c,(function(){return this})),e.AsyncIterator=A,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new A(h(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},E(_),l(_,f,"Generator"),l(_,s,(function(){return this})),l(_,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=I,R.prototype={constructor:R,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(M),!e)for(var r in this)"t"===r.charAt(0)&&i.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],u=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var s=i.call(a,"catchLoc"),c=i.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,b):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),b},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),M(r),b}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;M(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:I(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),b}},e}var i=t("./datetime"),a=t("./functions"),u=t("./utils"),s=t("./parser"),c=t("./signature"),f=function(){var t=o().mark(z),e=o().mark(U),r=o().mark(G),f=o().mark(H),l=o().mark(W),h=o().mark(X),p=o().mark(q),y=o().mark(V),d=o().mark(it),v=o().mark(st),g=o().mark(lt),b=o().mark(ht),m=o().mark(pt),w=o().mark(vt),x=o().mark(mt),k=o().mark(wt),S=o().mark(xt),O=o().mark(kt),_=o().mark(Ot),E=o().mark(Et),A=o().mark(jt),P=o().mark(Rt),j=u.isNumeric,T=u.isArrayOfStrings,M=u.isArrayOfNumbers,R=u.createSequence,I=u.isSequence,C=u.isFunction,L=u.isLambda,D=u.isIterable,B=u.getFunctionArity,N=u.isDeepEqual,F=It(null);function z(e,r,n){var i,a,u,s;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(a=n.lookup("__evaluate_entry"))&&a(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(U(e,r,n),"t1",6);case 6:return i=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(q(e,r,n),"t2",9);case 9:return i=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(V(e,r,n),"t3",12);case 12:return i=t.t3,t.abrupt("break",50);case 14:return i=Q(e,r),t.abrupt("break",50);case 16:return i=K(e),t.abrupt("break",50);case 18:return i=J(0,r),t.abrupt("break",50);case 20:return i=$(0,r),t.abrupt("break",50);case 22:return i=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(ht(e,r,n),"t4",25);case 25:return i=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(pt(e,r,n),"t5",28);case 28:return i=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(lt(e,r,n),"t6",31);case 31:return i=t.t6,t.abrupt("break",50);case 33:return i=yt(e),t.abrupt("break",50);case 35:return t.delegateYield(wt(e,r,n),"t7",36);case 36:return i=t.t7,t.abrupt("break",50);case 38:return i=dt(e,r,n),t.abrupt("break",50);case 40:return i=St(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(Ot(e,r,n),"t8",43);case 43:return i=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(mt(e,r,n),"t9",46);case 46:return i=t.t9,t.abrupt("break",50);case 48:return i=gt(e,0,n),t.abrupt("break",50);case 50:if(!n.async||null!=i&&"function"==typeof i.then||(i=Promise.resolve(i)),!n.async||"function"!=typeof i.then||!e.nextFunction||"function"!=typeof i[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,i;case 56:i=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}u=0;case 59:if(!(u<e.predicate.length)){t.next=65;break}return t.delegateYield(X(e.predicate[u].expr,i,n),"t10",61);case 61:i=t.t10;case 62:u++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(st(e.group,i,n),"t11",67);case 67:i=t.t11;case 68:return(s=n.lookup("__evaluate_exit"))&&s(e,r,n,i),i&&I(i)&&!i.tupleStream&&(e.keepArray&&(i.keepSingleton=!0),0===i.length?i=void 0:1===i.length&&(i=i.keepSingleton?i:i[0])),t.abrupt("return",i);case 72:case"end":return t.stop()}}),t)}function U(t,r,n){var i,a,u,s,c,f;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:i=Array.isArray(r)&&"variable"!==t.steps[0].type?r:R(r),u=!1,s=void 0,c=0;case 4:if(!(c<t.steps.length)){e.next=25;break}if((f=t.steps[c]).tuple&&(u=!0),0!==c||!f.consarray){e.next=12;break}return e.delegateYield(z(f,i,n),"t0",9);case 9:a=e.t0,e.next=19;break;case 12:if(!u){e.next=17;break}return e.delegateYield(W(f,i,s,n),"t1",14);case 14:s=e.t1,e.next=19;break;case 17:return e.delegateYield(G(f,i,n,c===t.steps.length-1),"t2",18);case 18:a=e.t2;case 19:if(u||void 0!==a&&0!==a.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===f.focus&&(i=a);case 22:c++,e.next=4;break;case 25:if(u)if(t.tuple)a=s;else for(a=R(),c=0;c<s.length;c++)a.push(s[c]["@"]);if(t.keepSingletonArray&&(Array.isArray(a)&&a.cons&&!a.sequence&&(a=R(a)),a.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(st(t.group,u?s:a,n),"t3",29);case 29:a=e.t3;case 30:return e.abrupt("return",a);case 31:case"end":return e.stop()}}),e)}function Y(t,e){var r=It(t);for(var n in e)r.bind(n,e[n]);return r}function G(t,e,n,i){var a,u,s,c,f;return o().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(vt(t,e,n),"t0",2);case 2:if(a=r.t0,!t.stages){r.next=6;break}return r.delegateYield(H(t.stages,a,n),"t1",5);case 5:a=r.t1;case 6:return r.abrupt("return",a);case 7:a=R(),u=0;case 9:if(!(u<e.length)){r.next=24;break}return r.delegateYield(z(t,e[u],n),"t2",11);case 11:if(s=r.t2,!t.stages){r.next=20;break}c=0;case 14:if(!(c<t.stages.length)){r.next=20;break}return r.delegateYield(X(t.stages[c].expr,s,n),"t3",16);case 16:s=r.t3;case 17:c++,r.next=14;break;case 20:void 0!==s&&a.push(s);case 21:u++,r.next=9;break;case 24:return f=R(),i&&1===a.length&&Array.isArray(a[0])&&!I(a[0])?f=a[0]:a.forEach((function(t){!Array.isArray(t)||t.cons?f.push(t):t.forEach((function(t){return f.push(t)}))})),r.abrupt("return",f);case 27:case"end":return r.stop()}}),r)}function H(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:n=e,i=0;case 2:if(!(i<t.length)){o.next=15;break}a=t[i],o.t0=a.type,o.next="filter"===o.t0?7:"index"===o.t0?10:12;break;case 7:return o.delegateYield(X(a.expr,n,r),"t1",8);case 8:return n=o.t1,o.abrupt("break",12);case 10:for(u=0;u<n.length;u++)n[u][a.value]=u;return o.abrupt("break",12);case 12:i++,o.next=2;break;case 15:return o.abrupt("return",n);case 16:case"end":return o.stop()}}),f)}function W(t,e,r,n){var i,a,u,s,c,f,h,p;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if("sort"!==t.type){o.next=15;break}if(!r){o.next=6;break}return o.delegateYield(vt(t,r,n),"t0",3);case 3:i=o.t0,o.next=11;break;case 6:return o.delegateYield(vt(t,e,n),"t1",7);case 7:for(a=o.t1,(i=R()).tupleStream=!0,u=0;u<a.length;u++)(s={"@":a[u]})[t.index]=u,i.push(s);case 11:if(!t.stages){o.next=14;break}return o.delegateYield(H(t.stages,i,n),"t2",13);case 13:i=o.t2;case 14:return o.abrupt("return",i);case 15:(i=R()).tupleStream=!0,c=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),f=0;case 20:if(!(f<r.length)){o.next=28;break}return c=Y(n,r[f]),o.delegateYield(z(t,r[f]["@"],c),"t3",23);case 23:if(void 0!==(h=o.t3))for(Array.isArray(h)||(h=[h]),p=0;p<h.length;p++)s={},Object.assign(s,r[f]),h.tupleStream?Object.assign(s,h[p]):(t.focus?(s[t.focus]=h[p],s["@"]=r[f]["@"]):s["@"]=h[p],t.index&&(s[t.index]=p),t.ancestor&&(s[t.ancestor.label]=r[f]["@"])),i.push(s);case 25:f++,o.next=20;break;case 28:if(!t.stages){o.next=31;break}return o.delegateYield(H(t.stages,i,n),"t4",30);case 30:i=o.t4;case 31:return o.abrupt("return",i);case 32:case"end":return o.stop()}}),l)}function X(t,e,r){var n,i,u,s,c,f;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(n=R(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=R(e)),"number"!==t.type){o.next=10;break}(i=Math.floor(t.value))<0&&(i=e.length+i),void 0!==(u=e[i])&&(Array.isArray(u)?n=u:n.push(u)),o.next=23;break;case 10:i=0;case 11:if(!(i<e.length)){o.next=23;break}return u=e[i],s=u,c=r,e.tupleStream&&(s=u["@"],c=Y(r,u)),o.delegateYield(z(t,s,c),"t0",17);case 17:f=o.t0,j(f)&&(f=[f]),M(f)?f.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===i&&n.push(u)})):a.boolean(f)&&n.push(u);case 20:i++,o.next=11;break;case 23:return o.abrupt("return",n);case 24:case"end":return o.stop()}}),h)}function q(t,e,r){var n,i,a,u,s;return o().wrap((function(c){for(;;)switch(c.prev=c.next){case 0:return c.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(i=c.t0,a=t.value,u=o().mark((function n(){return o().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==a&&"or"!==a){c.next=15;break}return c.prev=5,c.delegateYield(it(i,u,a),"t1",7);case 7:return c.abrupt("return",c.t1);case 10:throw c.prev=10,c.t2=c.catch(5),c.t2.position=t.position,c.t2.token=a,c.t2;case 15:return c.delegateYield(u(),"t3",16);case 16:s=c.t3,c.prev=17,c.t4=a,c.next="+"===c.t4||"-"===c.t4||"*"===c.t4||"/"===c.t4||"%"===c.t4?21:"="===c.t4||"!="===c.t4?23:"<"===c.t4||"<="===c.t4||">"===c.t4||">="===c.t4?25:"&"===c.t4?27:".."===c.t4?29:"in"===c.t4?31:33;break;case 21:return n=et(i,s,a),c.abrupt("break",33);case 23:return n=rt(i,s,a),c.abrupt("break",33);case 25:return n=nt(i,s,a),c.abrupt("break",33);case 27:return n=ut(i,s),c.abrupt("break",33);case 29:return n=ft(i,s),c.abrupt("break",33);case 31:return n=ot(i,s),c.abrupt("break",33);case 33:c.next=40;break;case 35:throw c.prev=35,c.t5=c.catch(17),c.t5.position=t.position,c.t5.token=a,c.t5;case 40:return c.abrupt("return",n);case 41:case"end":return c.stop()}}),p,null,[[5,10],[17,35]])}function V(t,e,r){var n,i,u,s;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:o.t0=t.value,o.next="-"===o.t0?3:"["===o.t0?15:"{"===o.t0?27:30;break;case 3:return o.delegateYield(z(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=o.t1)){o.next=9;break}n=void 0,o.next=14;break;case 9:if(!j(n)){o.next=13;break}n=-n,o.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return o.abrupt("break",30);case 15:n=[],i=0;case 17:if(!(i<t.expressions.length)){o.next=25;break}return u=t.expressions[i],o.delegateYield(z(u,e,r),"t2",20);case 20:void 0!==(s=o.t2)&&("["===u.value?n.push(s):n=a.append(n,s));case 22:i++,o.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),o.abrupt("break",30);case 27:return o.delegateYield(st(t,e,r),"t3",28);case 28:return n=o.t3,o.abrupt("break",30);case 30:return o.abrupt("return",n);case 31:case"end":return o.stop()}}),y)}function Q(t,e,r){return a.lookup(e,t.value)}function K(t){return t.value}function J(t,e){var r=R();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=Z(n),r=a.append(r,n)):r.push(n)})),r}function Z(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){Z(t,e)})):e.push(t),e}function $(t,e){var r,n=R();return void 0!==e&&(tt(e,n),r=1===n.length?n[0]:n),r}function tt(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){tt(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){tt(t[r],e)}))}function et(t,e,r){var n;if(void 0!==t&&!j(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!j(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function rt(t,e,r){var o,i=n(t),a=n(e);if("undefined"===i||"undefined"===a)return!1;switch(r){case"=":o=N(t,e);break;case"!=":o=!N(t,e)}return o}function nt(t,e,r){var o,i=n(t),a=n(e);if("undefined"!==i&&"string"!==i&&"number"!==i||"undefined"!==a&&"string"!==a&&"number"!==a)throw{code:"T2010",stack:(new Error).stack,value:"string"!==i&&"number"!==i?t:e};if("undefined"!==i&&"undefined"!==a){if(i!==a)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":o=t<e;break;case"<=":o=t<=e;break;case">":o=t>e;break;case">=":o=t>=e}return o}}function ot(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function it(t,e,r){var n,i;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:i=at(t),o.t0=r,o.next="and"===o.t0?4:"or"===o.t0?12:20;break;case 4:if(o.t1=i,!o.t1){o.next=10;break}return o.t2=at,o.delegateYield(e(),"t3",8);case 8:o.t4=o.t3,o.t1=(0,o.t2)(o.t4);case 10:return n=o.t1,o.abrupt("break",20);case 12:if(o.t5=i,o.t5){o.next=18;break}return o.t6=at,o.delegateYield(e(),"t7",16);case 16:o.t8=o.t7,o.t5=(0,o.t6)(o.t8);case 18:return n=o.t5,o.abrupt("break",20);case 20:return o.abrupt("return",n);case 21:case"end":return o.stop()}}),d)}function at(t){var e=a.boolean(t);return void 0!==e&&e}function ut(t,e){var r="",n="";return void 0!==t&&(r=a.string(t)),void 0!==e&&(n=a.string(e)),r.concat(n)}function st(t,e,r){var n,i,u,s,c,f,l,h,p,y,d,g,b;return o().wrap((function(v){for(;;)switch(v.prev=v.next){case 0:n={},i={},u=!(!e||!e.tupleStream),Array.isArray(e)||(e=R(e)),0===e.length&&e.push(void 0),s=0;case 6:if(!(s<e.length)){v.next=31;break}c=e[s],f=u?Y(r,c):r,l=0;case 10:if(!(l<t.lhs.length)){v.next=28;break}return h=t.lhs[l],v.delegateYield(z(h[0],u?c["@"]:c,f),"t0",13);case 13:if("string"==typeof(p=v.t0)||void 0===p){v.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:p};case 16:if(void 0===p){v.next=25;break}if(y={data:c,exprIndex:l},!i.hasOwnProperty(p)){v.next=24;break}if(i[p].exprIndex===l){v.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:p};case 21:i[p].data=a.append(i[p].data,c),v.next=25;break;case 24:i[p]=y;case 25:l++,v.next=10;break;case 28:s++,v.next=6;break;case 31:v.t1=o().keys(i);case 32:if((v.t2=v.t1()).done){v.next=43;break}return p=v.t2.value,y=i[p],d=y.data,f=r,u&&(g=ct(y.data),d=g["@"],delete g["@"],f=Y(r,g)),v.delegateYield(z(t.lhs[y.exprIndex][1],d,f),"t3",39);case 39:void 0!==(b=v.t3)&&(n[p]=b),v.next=32;break;case 43:return v.abrupt("return",n);case 44:case"end":return v.stop()}}),v)}function ct(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=a.append(e[n],t[r][n]);return e}function ft(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var o=t,i=0;o<=e;o++,i++)r[i]=o;return r.sequence=!0,r}function lt(t,e,r){var n;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n=o.t0,r.bind(t.lhs.value,n),o.abrupt("return",n);case 4:case"end":return o.stop()}}),g)}function ht(t,e,r){var n,i;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.condition,e,r),"t0",1);case 1:if(i=o.t0,!a.boolean(i)){o.next=7;break}return o.delegateYield(z(t.then,e,r),"t1",4);case 4:n=o.t1,o.next=10;break;case 7:if(void 0===t.else){o.next=10;break}return o.delegateYield(z(t.else,e,r),"t2",9);case 9:n=o.t2;case 10:return o.abrupt("return",n);case 11:case"end":return o.stop()}}),b)}function pt(t,e,r){var n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:i=It(r),a=0;case 2:if(!(a<t.expressions.length)){o.next=8;break}return o.delegateYield(z(t.expressions[a],e,i),"t0",4);case 4:n=o.t0;case 5:a++,o.next=2;break;case 8:return o.abrupt("return",n);case 9:case"end":return o.stop()}}),m)}function yt(t){var e=new Dt.RegexEngine(t.value);return function r(n,o){var i;e.lastIndex=o||0;var a=e.exec(n);if(null!==a){if(i={match:a[0],start:a.index,end:a.index+a[0].length,groups:[]},a.length>1)for(var u=1;u<a.length;u++)i.groups.push(a[u]);i.next=function(){if(!(e.lastIndex>=n.length)){var o=r(n,e.lastIndex);if(o&&""===o.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return o}}}return i}}function dt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function vt(t,e,r){var i,u,s,c,f;return o().wrap((function(l){for(;;)switch(l.prev=l.next){case 0:return u=e,s=!!e.tupleStream,c=o().mark((function e(i,a){var u,c,f,l,h,p,y,d,v;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:u=0,c=0;case 2:if(!(0===u&&c<t.terms.length)){e.next=35;break}return f=t.terms[c],l=i,h=r,s&&(l=i["@"],h=Y(r,i)),e.delegateYield(z(f.expression,l,h),"t0",8);case 8:return p=e.t0,l=a,h=r,s&&(l=a["@"],h=Y(r,a)),e.delegateYield(z(f.expression,l,h),"t1",13);case 13:if(y=e.t1,d=n(p),v=n(y),"undefined"!==d){e.next=19;break}return u="undefined"===v?0:1,e.abrupt("continue",32);case 19:if("undefined"!==v){e.next=22;break}return u=-1,e.abrupt("continue",32);case 22:if(!("string"!==d&&"number"!==d||"string"!==v&&"number"!==v)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==d&&"number"!==d?p:y};case 24:if(d===v){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:p,value2:y};case 26:if(p!==y){e.next=30;break}return e.abrupt("continue",32);case 30:u=p<y?-1:1;case 31:!0===f.descending&&(u=-u);case 32:c++,e.next=2;break;case 35:return e.abrupt("return",1===u);case 36:case"end":return e.stop()}}),e)})),f={environment:r,input:e},l.delegateYield(a.sort.apply(f,[u,c]),"t0",5);case 5:return i=l.t0,l.abrupt("return",i);case 7:case"end":return l.stop()}}),w)}function gt(t,e,r){return Mt(o().mark((function e(i){var a,u,s,c,f,l,h,p,y,d,v;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==i){e.next=2;break}return e.abrupt("return",void 0);case 2:if(a=r.lookup("clone"),C(a)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(xt(a,[i],null,r),"t0",6);case 6:return u=e.t0,e.delegateYield(z(t.pattern,u,r),"t1",8);case 8:if(void 0===(s=e.t1)){e.next=35;break}Array.isArray(s)||(s=[s]),c=0;case 12:if(!(c<s.length)){e.next=35;break}if(!(f=s[c])||!(f.isPrototypeOf(u)||f instanceof Object.constructor)){e.next=16;break}throw{code:"D1010",stack:(new Error).stack,position:t.position};case 16:return e.delegateYield(z(t.update,f,r),"t2",17);case 17:if(l=e.t2,"undefined"===(h=n(l))){e.next=23;break}if("object"===h&&null!==l&&!Array.isArray(l)){e.next=22;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:l};case 22:for(p in l)f[p]=l[p];case 23:if(void 0===t.delete){e.next=32;break}return e.delegateYield(z(t.delete,f,r),"t3",25);case 25:if(void 0===(y=e.t3)){e.next=32;break}if(d=y,Array.isArray(y)||(y=[y]),T(y)){e.next=31;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:d};case 31:for(v=0;v<y.length;v++)"object"===n(f)&&null!==f&&delete f[y[v]];case 32:c++,e.next=12;break;case 35:return e.abrupt("return",u);case 36:case"end":return e.stop()}}),e)})),"<(oa):o>")}var bt=s("function($f, $g) { function($x){ $g($f($x)) } }");function mt(t,e,r){var n,i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(i=o.t0,"function"!==t.rhs.type){o.next=7;break}return o.delegateYield(wt(t.rhs,e,r,{context:i}),"t1",4);case 4:n=o.t1,o.next=20;break;case 7:return o.delegateYield(z(t.rhs,e,r),"t2",8);case 8:if(a=o.t2,C(a)){o.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:a};case 11:if(!C(i)){o.next=18;break}return o.delegateYield(z(bt,null,r),"t3",13);case 13:return u=o.t3,o.delegateYield(xt(u,[i,a],null,r),"t4",15);case 15:n=o.t4,o.next=20;break;case 18:return o.delegateYield(xt(a,[i],null,r),"t5",19);case 19:n=o.t5;case 20:return o.abrupt("return",n);case 21:case"end":return o.stop()}}),x)}function wt(t,e,r,i){var a,u,s,c,f,l;return o().wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return h.delegateYield(z(t.procedure,e,r),"t0",1);case 1:if(void 0!==(u=h.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){h.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:s=[],void 0!==i&&s.push(i.context),c=o().mark((function n(){var i,a;return o().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.arguments[f],e,r),"t0",1);case 1:i=n.t0,C(i)?(a=o().mark((function t(){var e,n,a,u=arguments;return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=u.length,n=new Array(e),a=0;a<e;a++)n[a]=u[a];return t.delegateYield(xt(i,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),a.arity=B(i),s.push(a)):s.push(i);case 3:case"end":return n.stop()}}),n)})),f=0;case 8:if(!(f<t.arguments.length)){h.next=13;break}return h.delegateYield(c(),"t1",10);case 10:f++,h.next=8;break;case 13:return l="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,h.prev=14,"object"===n(u)&&(u.token=l,u.position=t.position),h.delegateYield(xt(u,s,e,r),"t2",17);case 17:a=h.t2,h.next=25;break;case 20:throw h.prev=20,h.t3=h.catch(14),h.t3.position||(h.t3.position=t.position),h.t3.token||(h.t3.token=l),h.t3;case 25:return h.abrupt("return",a);case 26:case"end":return h.stop()}}),k,null,[[14,20]])}function xt(t,e,r,n){var i,a,u,s;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(kt(t,e,r,n),"t0",1);case 1:i=o.t0;case 2:if(!L(i)||!0!==i.thunk){o.next=21;break}return o.delegateYield(z(i.body.procedure,i.input,i.environment),"t1",4);case 4:a=o.t1,"variable"===i.body.procedure.type&&(a.token=i.body.procedure.value),a.position=i.body.procedure.position,u=[],s=0;case 9:if(!(s<i.body.arguments.length)){o.next=17;break}return o.t2=u,o.delegateYield(z(i.body.arguments[s],i.input,i.environment),"t3",12);case 12:o.t4=o.t3,o.t2.push.call(o.t2,o.t4);case 14:s++,o.next=9;break;case 17:return o.delegateYield(kt(a,u,r,n),"t5",18);case 18:i=o.t5,o.next=2;break;case 21:return o.abrupt("return",i);case 22:case"end":return o.stop()}}),S)}function kt(t,e,r,n){var i,a,u;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(o.prev=0,a=e,t&&(a=_t(t.signature,e,r)),!L(t)){o.next=8;break}return o.delegateYield(Et(t,a),"t0",5);case 5:i=o.t0,o.next=24;break;case 8:if(!t||!0!==t._jsonata_function){o.next=16;break}if(u={environment:n,input:r},i=t.implementation.apply(u,a),!D(i)){o.next=14;break}return o.delegateYield(i,"t1",13);case 13:i=o.t1;case 14:o.next=24;break;case 16:if("function"!=typeof t){o.next=23;break}if(i=t.apply(r,a),!D(i)){o.next=21;break}return o.delegateYield(i,"t2",20);case 20:i=o.t2;case 21:o.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:o.next=30;break;case 26:throw o.prev=26,o.t3=o.catch(0),t&&(void 0===o.t3.token&&void 0!==t.token&&(o.t3.token=t.token),o.t3.position=t.position||o.t3.position),o.t3;case 30:return o.abrupt("return",i);case 31:case"end":return o.stop()}}),O,null,[[0,26]])}function St(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=o().mark((function t(r,i){return o().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(xt(n,i,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function Ot(t,e,r){var n,i,a,u,s;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:i=[],a=0;case 2:if(!(a<t.arguments.length)){o.next=15;break}if("operator"!==(u=t.arguments[a]).type||"?"!==u.value){o.next=8;break}i.push(u),o.next=12;break;case 8:return o.t0=i,o.delegateYield(z(u,e,r),"t1",10);case 10:o.t2=o.t1,o.t0.push.call(o.t0,o.t2);case 12:a++,o.next=2;break;case 15:return o.delegateYield(z(t.procedure,e,r),"t3",16);case 16:if(void 0!==(s=o.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){o.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!L(s)){o.next=23;break}n=At(s,i),o.next=32;break;case 23:if(!s||!0!==s._jsonata_function){o.next=27;break}n=Pt(s.implementation,i),o.next=32;break;case 27:if("function"!=typeof s){o.next=31;break}n=Pt(s,i),o.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return o.abrupt("return",n);case 33:case"end":return o.stop()}}),_)}function _t(t,e,r){return void 0===t?e:t.validate(e,r)}function Et(t,e){var r,n;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(n=It(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){o.next=7;break}return o.delegateYield(jt(t.body,n),"t0",4);case 4:r=o.t0,o.next=9;break;case 7:return o.delegateYield(z(t.body,t.input,n),"t1",8);case 8:r=o.t1;case 9:return o.abrupt("return",r);case 10:case"end":return o.stop()}}),E)}function At(t,e){var r=It(t.environment),n=[];return t.arguments.forEach((function(t,o){var i=e[o];i&&"operator"===i.type&&"?"===i.value?n.push(t):r.bind(t.value,i)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Pt(t,e){var r=Tt(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",o=s(n);return o.body=t,At(o,e)}function jt(t,e){var r,n,i,a;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(r=Tt(t),n=r.map((function(t){return e.lookup(t.trim())})),i={environment:e},a=t.apply(i,n),!D(a)){o.next=7;break}return o.delegateYield(a,"t0",6);case 6:a=o.t0;case 7:return o.abrupt("return",a);case 8:case"end":return o.stop()}}),A)}function Tt(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function Mt(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=c(e)),r}function Rt(t,e){var r,n,i;return o().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!I(r)&&((r=R(r)).outerWrapper=!0)),o.prev=4,n=s(t,!1),o.next=12;break;case 8:throw o.prev=8,o.t0=o.catch(4),Lt(o.t0),{stack:(new Error).stack,code:"D3120",value:o.t0.message,error:o.t0};case 12:return o.prev=12,o.delegateYield(z(n,r,this.environment),"t1",14);case 14:i=o.t1,o.next=21;break;case 17:throw o.prev=17,o.t2=o.catch(12),Lt(o.t2),{stack:(new Error).stack,code:"D3121",value:o.t2.message,error:o.t2};case 21:return o.abrupt("return",i);case 22:case"end":return o.stop()}}),P,this,[[4,8],[12,17]])}function It(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}F.bind("sum",Mt(a.sum,"<a<n>:n>")),F.bind("count",Mt(a.count,"<a:n>")),F.bind("max",Mt(a.max,"<a<n>:n>")),F.bind("min",Mt(a.min,"<a<n>:n>")),F.bind("average",Mt(a.average,"<a<n>:n>")),F.bind("string",Mt(a.string,"<x-b?:s>")),F.bind("substring",Mt(a.substring,"<s-nn?:s>")),F.bind("substringBefore",Mt(a.substringBefore,"<s-s:s>")),F.bind("substringAfter",Mt(a.substringAfter,"<s-s:s>")),F.bind("lowercase",Mt(a.lowercase,"<s-:s>")),F.bind("uppercase",Mt(a.uppercase,"<s-:s>")),F.bind("length",Mt(a.length,"<s-:n>")),F.bind("trim",Mt(a.trim,"<s-:s>")),F.bind("pad",Mt(a.pad,"<s-ns?:s>")),F.bind("match",Mt(a.match,"<s-f<s:o>n?:a<o>>")),F.bind("contains",Mt(a.contains,"<s-(sf):b>")),F.bind("replace",Mt(a.replace,"<s-(sf)(sf)n?:s>")),F.bind("split",Mt(a.split,"<s-(sf)n?:a<s>>")),F.bind("join",Mt(a.join,"<a<s>s?:s>")),F.bind("formatNumber",Mt(a.formatNumber,"<n-so?:s>")),F.bind("formatBase",Mt(a.formatBase,"<n-n?:s>")),F.bind("formatInteger",Mt(i.formatInteger,"<n-s:s>")),F.bind("parseInteger",Mt(i.parseInteger,"<s-s:n>")),F.bind("number",Mt(a.number,"<(nsb)-:n>")),F.bind("floor",Mt(a.floor,"<n-:n>")),F.bind("ceil",Mt(a.ceil,"<n-:n>")),F.bind("round",Mt(a.round,"<n-n?:n>")),F.bind("abs",Mt(a.abs,"<n-:n>")),F.bind("sqrt",Mt(a.sqrt,"<n-:n>")),F.bind("power",Mt(a.power,"<n-n:n>")),F.bind("random",Mt(a.random,"<:n>")),F.bind("boolean",Mt(a.boolean,"<x-:b>")),F.bind("not",Mt(a.not,"<x-:b>")),F.bind("map",Mt(a.map,"<af>")),F.bind("zip",Mt(a.zip,"<a+>")),F.bind("filter",Mt(a.filter,"<af>")),F.bind("single",Mt(a.single,"<af?>")),F.bind("reduce",Mt(a.foldLeft,"<afj?:j>")),F.bind("sift",Mt(a.sift,"<o-f?:o>")),F.bind("keys",Mt(a.keys,"<x-:a<s>>")),F.bind("lookup",Mt(a.lookup,"<x-s:x>")),F.bind("append",Mt(a.append,"<xx:a>")),F.bind("exists",Mt(a.exists,"<x:b>")),F.bind("spread",Mt(a.spread,"<x-:a<o>>")),F.bind("merge",Mt(a.merge,"<a<o>:o>")),F.bind("reverse",Mt(a.reverse,"<a:a>")),F.bind("each",Mt(a.each,"<o-f:a>")),F.bind("error",Mt(a.error,"<s?:x>")),F.bind("assert",Mt(a.assert,"<bs?:x>")),F.bind("type",Mt(a.type,"<x:s>")),F.bind("sort",Mt(a.sort,"<af?:a>")),F.bind("shuffle",Mt(a.shuffle,"<a:a>")),F.bind("distinct",Mt(a.distinct,"<x:x>")),F.bind("base64encode",Mt(a.base64encode,"<s-:s>")),F.bind("base64decode",Mt(a.base64decode,"<s-:s>")),F.bind("encodeUrlComponent",Mt(a.encodeUrlComponent,"<s-:s>")),F.bind("encodeUrl",Mt(a.encodeUrl,"<s-:s>")),F.bind("decodeUrlComponent",Mt(a.decodeUrlComponent,"<s-:s>")),F.bind("decodeUrl",Mt(a.decodeUrl,"<s-:s>")),F.bind("eval",Mt(Rt,"<sx?:x>")),F.bind("toMillis",Mt(i.toMillis,"<s-s?:n>")),F.bind("fromMillis",Mt(i.fromMillis,"<n-s?s?:s>")),F.bind("clone",Mt((function(t){if(void 0!==t)return JSON.parse(a.string(t))}),"<(oa)-:o>"));var Ct={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",D1010:"Attempted to access the Javascript object prototype",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Lt(t){var e=Ct[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function Dt(t,e){var r,n;try{r=s(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Lt(t),t}var o=It(F),a=new Date;return o.bind("now",Mt((function(t,e){return i.fromMillis(a.getTime(),t,e)}),"<s?s?:s>")),o.bind("millis",Mt((function(){return a.getTime()}),"<:n>")),e&&e.RegexEngine?Dt.RegexEngine=e.RegexEngine:Dt.RegexEngine=RegExp,{evaluate:function(t,e,i){if(void 0!==n){var u={code:"S0500",position:0};throw Lt(u),u}var s,c,f;if(void 0!==e)for(var l in s=It(o),e)s.bind(l,e[l]);else s=o;if(s.bind("$",t),a=new Date,s.timestamp=a,Array.isArray(t)&&!I(t)&&((t=R(t)).outerWrapper=!0),"function"==typeof i){s.async=!0;var h=function(t){Lt(t),i(t,null)};f=z(r,t,s),(c=f.next()).value.then((function t(e){(c=f.next(e)).done?i(null,c.value):c.value.then(t).catch(h)})).catch(h)}else try{for(f=z(r,t,s),c=f.next();!c.done;)c=f.next(c.value);return c.value}catch(u){throw Lt(u),u}},assign:function(t,e){o.bind(t,e)},registerFunction:function(t,e,r){var n=Mt(e,r);o.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return Dt.parser=s,Dt}();e.exports=f},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){"use strict";var n,o,i,a=t("./signature"),u=(n={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},o={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},i=function(t){var e=0,r=t.length,i=function(t,r){return{type:t,value:r,position:e}};return function a(u){if(e>=r)return null;for(var s=t.charAt(e);e<r&&" \t\n\r\v".indexOf(s)>-1;)e++,s=t.charAt(e);if("/"===s&&"*"===t.charAt(e+1)){var c=e;for(e+=2,s=t.charAt(e);"*"!==s||"/"!==t.charAt(e+1);)if(s=t.charAt(++e),e>=r)throw{code:"S0106",stack:(new Error).stack,position:c};return e+=2,s=t.charAt(e),a(u)}if(!0!==u&&"/"===s)return e++,i("regex",function(){for(var n,o,i=e,a=0;e<r;){var u=t.charAt(e);if("/"===u&&"\\"!==t.charAt(e-1)&&0===a){if(""===(n=t.substring(i,e)))throw{code:"S0301",stack:(new Error).stack,position:e};for(e++,u=t.charAt(e),i=e;"i"===u||"m"===u;)e++,u=t.charAt(e);return o=t.substring(i,e)+"g",new RegExp(n,o)}"("!==u&&"["!==u&&"{"!==u||"\\"===t.charAt(e-1)||a++,")"!==u&&"]"!==u&&"}"!==u||"\\"===t.charAt(e-1)||a--,e++}throw{code:"S0302",stack:(new Error).stack,position:e}}());if("."===s&&"."===t.charAt(e+1))return e+=2,i("operator","..");if(":"===s&&"="===t.charAt(e+1))return e+=2,i("operator",":=");if("!"===s&&"="===t.charAt(e+1))return e+=2,i("operator","!=");if(">"===s&&"="===t.charAt(e+1))return e+=2,i("operator",">=");if("<"===s&&"="===t.charAt(e+1))return e+=2,i("operator","<=");if("*"===s&&"*"===t.charAt(e+1))return e+=2,i("operator","**");if("~"===s&&">"===t.charAt(e+1))return e+=2,i("operator","~>");if(Object.prototype.hasOwnProperty.call(n,s))return e++,i("operator",s);if('"'===s||"'"===s){var f=s;e++;for(var l="";e<r;){if("\\"===(s=t.charAt(e)))if(e++,s=t.charAt(e),Object.prototype.hasOwnProperty.call(o,s))l+=o[s];else{if("u"!==s)throw{code:"S0103",stack:(new Error).stack,position:e,token:s};var h=t.substr(e+1,4);if(!/^[0-9a-fA-F]+$/.test(h))throw{code:"S0104",stack:(new Error).stack,position:e};var p=parseInt(h,16);l+=String.fromCharCode(p),e+=4}else{if(s===f)return e++,i("string",l);l+=s}e++}throw{code:"S0101",stack:(new Error).stack,position:e}}var y,d=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(t.substring(e));if(null!==d){var v=parseFloat(d[0]);if(!isNaN(v)&&isFinite(v))return e+=d[0].length,i("number",v);throw{code:"S0102",stack:(new Error).stack,position:e,token:d[0]}}if("`"===s){e++;var g=t.indexOf("`",e);if(-1!==g)return y=t.substring(e,g),e=g+1,i("name",y);throw e=r,{code:"S0105",stack:(new Error).stack,position:e}}for(var b,m=e;;)if(b=t.charAt(m),m===r||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(n,b)){if("$"===t.charAt(e))return y=t.substring(e+1,m),e=m,i("variable",y);switch(y=t.substring(e,m),e=m,y){case"or":case"in":case"and":return i("operator",y);case"true":return i("value",!0);case"false":return i("value",!1);case"null":return i("value",null);default:return e===r&&""===y?null:i("name",y)}}else m++}},function(t,e){var r,o,u={},s=[],c=function(){var t=[];"(end)"!==r.id&&t.push({type:r.type,value:r.value,position:r.position});for(var e=o();null!==e;)t.push(e),e=o();return t},f={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(e)return t.remaining=c(),t.type="error",s.push(t),t;throw t.stack=(new Error).stack,t}},l=function(t,e){var r=u[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(f)).id=r.value=t,r.lbp=e,u[t]=r),r},h=function(t){if(e){t.remaining=c(),s.push(t);var n=u["(error)"];return(r=Object.create(n)).error=t,r.type="(error)",r}throw t.stack=(new Error).stack,t},p=function(e,n){if(e&&r.id!==e){var i={code:"(end)"===r.id?"S0203":"S0202",position:r.position,token:r.value,value:e};return h(i)}var a=o(n);if(null===a)return(r=u["(end)"]).position=t.length,r;var s,c=a.value,f=a.type;switch(f){case"name":case"variable":s=u["(name)"];break;case"operator":if(!(s=u[c]))return h({code:"S0204",stack:(new Error).stack,position:a.position,token:c});break;case"string":case"number":case"value":s=u["(literal)"];break;case"regex":f="regex",s=u["(regex)"];break;default:return h({code:"S0205",stack:(new Error).stack,position:a.position,token:c})}return(r=Object.create(s)).value=c,r.type=f,r.position=a.position,r},y=function(t){var e,n=r;for(p(null,!0),e=n.nud();t<r.lbp;)n=r,p(),e=n.led(e);return e},d=function(t){l(t,0).nud=function(){return this}},v=function(t,e,r){var o=e||n[t],i=l(t,o);return i.led=r||function(t){return this.lhs=t,this.rhs=y(o),this.type="binary",this},i},g=function(t,e,r){var n=l(t,e);return n.led=r,n},b=function(t,e){var r=l(t);return r.nud=e||function(){return this.expression=y(70),this.type="unary",this},r};d("(end)"),d("(name)"),d("(literal)"),d("(regex)"),l(":"),l(";"),l(","),l(")"),l("]"),l("}"),l(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),d("and"),d("or"),d("in"),b("-"),v("~>"),g("(error)",10,(function(t){return this.lhs=t,this.error=r.error,this.remaining=c(),this.type="error",this})),b("*",(function(){return this.type="wildcard",this})),b("**",(function(){return this.type="descendant",this})),b("%",(function(){return this.type="parent",this})),v("(",n["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==r.id)for(;"operator"===r.type&&"?"===r.id?(this.type="partial",this.arguments.push(r),p("?")):this.arguments.push(y(0)),","===r.id;)p(",");if(p(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return h({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===r.id){for(var e=r.position,n=1,o="<";n>0&&"{"!==r.id&&"(end)"!==r.id;){var i=p();">"===i.id?n--:"<"===i.id&&n++,o+=i.value}p(">");try{this.signature=a(o)}catch(t){return t.position=e+t.offset,h(t)}}p("{"),this.body=y(0),p("}")}return this})),b("(",(function(){for(var t=[];")"!==r.id&&(t.push(y(0)),";"===r.id);)p(";");return p(")",!0),this.type="block",this.expressions=t,this})),b("[",(function(){var t=[];if("]"!==r.id)for(;;){var e=y(0);if(".."===r.id){var n={type:"binary",value:"..",position:r.position,lhs:e};p(".."),n.rhs=y(0),e=n}if(t.push(e),","!==r.id)break;p(",")}return p("]",!0),this.expressions=t,this.type="unary",this})),v("[",n["["],(function(t){if("]"===r.id){for(var e=t;e&&"binary"===e.type&&"["===e.value;)e=e.lhs;return e.keepArray=!0,p("]"),t}return this.lhs=t,this.rhs=y(n["]"]),this.type="binary",p("]",!0),this})),v("^",n["^"],(function(t){p("(");for(var e=[];;){var n={descending:!1};if("<"===r.id?p("<"):">"===r.id&&(n.descending=!0,p(">")),n.expression=y(0),e.push(n),","!==r.id)break;p(",")}return p(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var m=function(t){var e=[];if("}"!==r.id)for(;;){var n=y(0);p(":");var o=y(0);if(e.push([n,o]),","!==r.id)break;p(",")}return p("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};b("{",m),v("{",n["{"],m),g(":=",n[":="],(function(t){return"variable"!==t.type?h({code:"S0212",stack:(new Error).stack,position:t.position,token:t.value}):(this.lhs=t,this.rhs=y(n[":="]-1),this.type="binary",this)})),v("@",n["@"],(function(t){return this.lhs=t,this.rhs=y(n["@"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",n["#"],(function(t){return this.lhs=t,this.rhs=y(n["#"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",n["?"],(function(t){return this.type="condition",this.condition=t,this.then=y(0),":"===r.id&&(p(":"),this.else=y(0)),this})),b("|",(function(){return this.type="transform",this.pattern=y(0),p("|"),this.update=y(0),","===r.id&&(p(","),this.delete=y(0)),p("|"),this}));var w=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var o={type:"lambda",thunk:!0,arguments:[],position:e.position};o.body=e,r=o}return r},x=0,k=0,S=[],O=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(S[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},_=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},E=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var o=0;o<n.length;o++){var i=n[o];for(e=t.steps.length-2;i.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[i]:t.seekingParent.push(i);break}for(var a=t.steps[e--];e>=0&&a.focus&&t.steps[e].focus;)a=t.steps[e--];i=O(a,i)}}};o=i(t),p();var A=y(0);if("(end)"!==r.id){var P={code:"S0201",position:r.position,token:r.value};h(P)}if(A=function t(r){var n;switch(r.type){case"binary":switch(r.value){case".":var o=t(r.lhs);n="path"===o.type?o:{type:"path",steps:[o]},"parent"===o.type&&(n.seekingParent=[o.slot]);var i=t(r.rhs);"function"===i.type&&"path"===i.procedure.type&&1===i.procedure.steps.length&&"name"===i.procedure.steps[0].type&&"function"===n.steps[n.steps.length-1].type&&(n.steps[n.steps.length-1].nextFunction=i.procedure.steps[0].value),"path"===i.type?Array.prototype.push.apply(n.steps,i.steps):(void 0!==i.predicate&&(i.stages=i.predicate,delete i.predicate),n.steps.push(i)),n.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),n.steps.filter((function(t){return!0===t.keepArray})).length>0&&(n.keepSingletonArray=!0);var a=n.steps[0];"unary"===a.type&&"["===a.value&&(a.consarray=!0);var u=n.steps[n.steps.length-1];"unary"===u.type&&"["===u.value&&(u.consarray=!0),E(n);break;case"[":var c=n=t(r.lhs),f="predicate";if("path"===n.type&&(c=n.steps[n.steps.length-1],f="stages"),void 0!==c.group)throw{code:"S0209",stack:(new Error).stack,position:r.position};void 0===c[f]&&(c[f]=[]);var l=t(r.rhs);void 0!==l.seekingParent&&(l.seekingParent.forEach((function(t){1===t.level?O(c,t):t.level--})),_(c,l)),c[f].push({type:"filter",expr:l,position:r.position});break;case"{":if(void 0!==(n=t(r.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:r.position};n.group={lhs:r.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:r.position};break;case"^":"path"!==(n=t(r.lhs)).type&&(n={type:"path",steps:[n]});var h={type:"sort",position:r.position};h.terms=r.rhs.map((function(e){var r=t(e.expression);return _(h,r),{descending:e.descending,expression:r}})),n.steps.push(h),E(n);break;case":=":(n={type:"bind",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),_(n,n.rhs);break;case"@":if(n=t(r.lhs),c=n,"path"===n.type&&(c=n.steps[n.steps.length-1]),void 0!==c.stages||void 0!==c.predicate)throw{code:"S0215",stack:(new Error).stack,position:r.position};if("sort"===c.type)throw{code:"S0216",stack:(new Error).stack,position:r.position};r.keepArray&&(c.keepArray=!0),c.focus=r.rhs.value,c.tuple=!0;break;case"#":n=t(r.lhs),c=n,"path"===n.type?c=n.steps[n.steps.length-1]:(n={type:"path",steps:[n]},void 0!==c.predicate&&(c.stages=c.predicate,delete c.predicate)),void 0===c.stages?c.index=r.rhs.value:c.stages.push({type:"index",value:r.rhs.value,position:r.position}),c.tuple=!0;break;case"~>":(n={type:"apply",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs);break;default:(n={type:r.type,value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),_(n,n.lhs),_(n,n.rhs)}break;case"unary":n={type:r.type,value:r.value,position:r.position},"["===r.value?n.expressions=r.expressions.map((function(e){var r=t(e);return _(n,r),r})):"{"===r.value?n.lhs=r.lhs.map((function(e){var r=t(e[0]);_(n,r);var o=t(e[1]);return _(n,o),[r,o]})):(n.expression=t(r.expression),"-"===r.value&&"number"===n.expression.type?(n=n.expression).value=-n.value:_(n,n.expression));break;case"function":case"partial":(n={type:r.type,name:r.name,value:r.value,position:r.position}).arguments=r.arguments.map((function(e){var r=t(e);return _(n,r),r})),n.procedure=t(r.procedure);break;case"lambda":n={type:r.type,arguments:r.arguments,signature:r.signature,position:r.position};var p=t(r.body);n.body=w(p);break;case"condition":(n={type:r.type,position:r.position}).condition=t(r.condition),_(n,n.condition),n.then=t(r.then),_(n,n.then),void 0!==r.else&&(n.else=t(r.else),_(n,n.else));break;case"transform":(n={type:r.type,position:r.position}).pattern=t(r.pattern),n.update=t(r.update),void 0!==r.delete&&(n.delete=t(r.delete));break;case"block":(n={type:r.type,position:r.position}).expressions=r.expressions.map((function(e){var r=t(e);return _(n,r),(r.consarray||"path"===r.type&&r.steps[0].consarray)&&(n.consarray=!0),r}));break;case"name":n={type:"path",steps:[r]},r.keepArray&&(n.keepSingletonArray=!0);break;case"parent":n={type:"parent",slot:{label:"!"+x++,level:1,index:k++}},S.push(n);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":n=r;break;case"operator":if("and"===r.value||"or"===r.value||"in"===r.value)r.type="name",n=t(r);else{if("?"!==r.value)throw{code:"S0201",stack:(new Error).stack,position:r.position,token:r.value};n=r}break;case"error":n=r,r.lhs&&(n=t(r.lhs));break;default:var y="S0206";"(end)"===r.id&&(y="S0207");var d={code:y,position:r.position,token:r.value};if(e)return s.push(d),{type:"error",error:d};throw d.stack=(new Error).stack,d}return r.keepArray&&(n.keepArray=!0),n}(A),"parent"===A.type||void 0!==A.seekingParent)throw{code:"S0217",token:A.type,position:A.position};return s.length>0&&(A.errors=s),A});e.exports=u},{"./signature":5}],5:[function(t,e,r){"use strict";function n(t){return n="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},n(t)}var o,i=t("./utils"),a=(o={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"},function(t){for(var e=1,r=[],a={},u=a;e<t.length;){var s=t.charAt(e);if(":"===s)break;var c=function(){r.push(a),u=a,a={}},f=function(t,e,r,n){for(var o=1,i=e;i<t.length;)if(i++,(s=t.charAt(i))===n){if(0==--o)break}else s===r&&o++;return i};switch(s){case"s":case"n":case"b":case"l":case"o":a.regex="["+s+"m]",a.type=s,c();break;case"a":a.regex="[asnblfom]",a.type=s,a.array=!0,c();break;case"f":a.regex="f",a.type=s,c();break;case"j":a.regex="[asnblom]",a.type=s,c();break;case"x":a.regex="[asnblfom]",a.type=s,c();break;case"-":u.context=!0,u.contextRegex=new RegExp(u.regex),u.regex+="?";break;case"?":case"+":u.regex+=s;break;case"(":var l=f(t,e,"(",")"),h=t.substring(e+1,l);if(-1!==h.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:h,offset:e};a.regex="["+h+"m]",a.type="("+h+")",e=l,c();break;case"<":if("a"!==u.type&&"f"!==u.type)throw{code:"S0401",stack:(new Error).stack,value:u.type,offset:e};var p=f(t,e,"<",">");u.subtype=t.substring(e+1,p),e=p}e++}var y="^"+r.map((function(t){return"("+t.regex+")"})).join("")+"$",d=new RegExp(y),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e};return{definition:t,validate:function(t,e){var n="";t.forEach((function(t){n+=v(t)}));var i=d.exec(n);if(i){var a=[],u=0;return r.forEach((function(r,n){var s=t[u],c=i[n+1];if(""===c)if(r.context&&r.contextRegex){var f=v(e);if(!r.contextRegex.test(f))throw{code:"T0411",stack:(new Error).stack,value:e,index:u+1};a.push(e)}else a.push(s),u++;else c.split("").forEach((function(e){if("a"===r.type){if("m"===e)s=void 0;else{s=t[u];var n=!0;if(void 0!==r.subtype)if("a"!==e&&c!==r.subtype)n=!1;else if("a"===e&&s.length>0){var i=v(s[0]);n=i===r.subtype.charAt(0)&&0===s.filter((function(t){return v(t)!==i})).length}if(!n)throw{code:"T0412",stack:(new Error).stack,value:s,index:u+1,type:o[r.subtype]};"a"!==e&&(s=[s])}a.push(s),u++}else a.push(s),u++}))})),a}!function(t,e){for(var n="^",o=0,i=0;i<r.length;i++){n+=r[i].regex;var a=e.match(n);if(null===a)throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1};o=a[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1}}(t,n)}}});e.exports=a},{"./utils":6}],6:[function(t,e,r){"use strict";function n(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function o(t){return o="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},o(t)}var i=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}var e=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";return{isNumeric:t,isArrayOfStrings:function(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e},isArrayOfNumbers:function(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r},createSequence:function(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t},isSequence:function(t){return!0===t.sequence&&Array.isArray(t)},isFunction:function(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t},isLambda:function(t){return t&&!0===t._jsonata_lambda},isIterable:function(t){return"object"===o(t)&&null!==t&&e in t&&"next"in t&&"function"==typeof t.next},getFunctionArity:function(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length},isDeepEqual:function t(e,r){if(e===r)return!0;if("object"===o(e)&&"object"===o(r)&&null!==e&&null!==r){if(Array.isArray(e)&&Array.isArray(r)){if(e.length!==r.length)return!1;for(var n=0;n<e.length;n++)if(!t(e[n],r[n]))return!1;return!0}var i=Object.getOwnPropertyNames(e),a=Object.getOwnPropertyNames(r);if(i.length!==a.length)return!1;for(i=i.sort(),a=a.sort(),n=0;n<i.length;n++)if(i[n]!==a[n])return!1;for(n=0;n<i.length;n++){var u=i[n];if(!t(e[u],r[u]))return!1}return!0}return!1},stringToArray:function(t){var e,r=[],o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var o=0,i=function(){};return{s:i,n:function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function(t){throw t},f:i}}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 a,u=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return u=t.done,t},e:function(t){s=!0,a=t},f:function(){try{u||null==r.return||r.return()}finally{if(s)throw a}}}}(t);try{for(o.s();!(e=o.n()).done;){var i=e.value;r.push(i)}}catch(t){o.e(t)}finally{o.f()}return r}}}();e.exports=i},{}]},{},[3])(3)},"object"===a(e)?t.exports=u():(o=[],void 0===(i="function"==typeof(n=u)?n.apply(e,o):n)||(t.exports=i))},95012:(t,e,r)=>{function n(t){return n="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},n(t)}var o=function(t){"use strict";var e,r=Object.prototype,o=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},u=a.iterator||"@@iterator",s=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof b?e:b,a=Object.create(o.prototype),u=new M(n||[]);return i(a,"_invoke",{value:A(t,r,u)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p="suspendedStart",y="suspendedYield",d="executing",v="completed",g={};function b(){}function m(){}function w(){}var x={};f(x,u,(function(){return this}));var k=Object.getPrototypeOf,S=k&&k(k(R([])));S&&S!==r&&o.call(S,u)&&(x=S);var O=w.prototype=b.prototype=Object.create(x);function _(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,a,u,s){var c=h(t[i],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"===n(l)&&o.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,u,s)}),(function(t){r("throw",t,u,s)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return r("throw",t,u,s)}))}s(c.arg)}var a;i(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return a=a?a.then(o,o):o()}})}function A(t,e,r){var n=p;return function(o,i){if(n===d)throw new Error("Generator is already running");if(n===v){if("throw"===o)throw i;return I()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var u=P(a,r);if(u){if(u===g)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===p)throw n=v,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=d;var s=h(t,e,r);if("normal"===s.type){if(n=r.done?v:y,s.arg===g)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(n=v,r.method="throw",r.arg=s.arg)}}}function P(t,r){var n=r.method,o=t.iterator[n];if(o===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,P(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),g;var i=h(o,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,g;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,g):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function T(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function R(t){if(t){var r=t[u];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function r(){for(;++n<t.length;)if(o.call(t,n))return r.value=t[n],r.done=!1,r;return r.value=e,r.done=!0,r};return i.next=i}}return{next:I}}function I(){return{value:e,done:!0}}return m.prototype=w,i(O,"constructor",{value:w,configurable:!0}),i(w,"constructor",{value:m,configurable:!0}),m.displayName=f(w,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,c,"GeneratorFunction")),t.prototype=Object.create(O),t},t.awrap=function(t){return{__await:t}},_(E.prototype),f(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new E(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(O),f(O,c,"Generator"),f(O,u,(function(){return this})),f(O,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=R,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(T),!t)for(var r in this)"t"===r.charAt(0)&&o.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function n(n,o){return u.type="throw",u.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var s=o.call(a,"catchLoc"),c=o.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),T(r),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;T(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:R(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}("object"===n(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=o}catch(t){"object"===("undefined"==typeof globalThis?"undefined":n(globalThis))?globalThis.regeneratorRuntime=o:Function("r","regeneratorRuntime = r")(o)}},10320:(t,e,r)=>{"use strict";var n=r(55747),o=r(89393),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},32606:(t,e,r)=>{"use strict";var n=r(1031),o=r(89393),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a constructor")}},35908:(t,e,r)=>{"use strict";var n=r(45015),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},71806:(t,e,r)=>{"use strict";var n=r(13128).has;t.exports=function(t){return n(t),t}},80575:(t,e,r)=>{"use strict";var n=r(24697),o=r(80674),i=r(74595).f,a=n("unscopables"),u=Array.prototype;void 0===u[a]&&i(u,a,{configurable:!0,value:o(null)}),t.exports=function(t){u[a][t]=!0}},35483:(t,e,r)=>{"use strict";var n=r(50233).charAt;t.exports=function(t,e,r){return e+(r?n(t,e).length:1)}},60077:(t,e,r)=>{"use strict";var n=r(21287),o=TypeError;t.exports=function(t,e){if(n(e,t))return t;throw new o("Incorrect invocation")}},30365:(t,e,r)=>{"use strict";var n=r(77568),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},70377:t=>{"use strict";t.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},2172:(t,e,r)=>{"use strict";var n=r(16210),o=r(38656),i=r(7462),a=n.ArrayBuffer,u=n.TypeError;t.exports=a&&o(a.prototype,"byteLength","get")||function(t){if("ArrayBuffer"!==i(t))throw new u("ArrayBuffer expected");return t.byteLength}},85092:(t,e,r)=>{"use strict";var n=r(16210),o=r(71138),i=r(2172),a=n.ArrayBuffer,u=a&&a.prototype,s=u&&o(u.slice);t.exports=function(t){if(0!==i(t))return!1;if(!s)return!1;try{return s(t,0,0),!1}catch(t){return!0}}},3782:(t,e,r)=>{"use strict";var n=r(40033);t.exports=n((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}}))},2183:(t,e,r)=>{"use strict";var n=r(85092),o=TypeError;t.exports=function(t){if(n(t))throw new o("ArrayBuffer is detached");return t}},61562:(t,e,r)=>{"use strict";var n=r(16210),o=r(67250),i=r(38656),a=r(43806),u=r(2183),s=r(2172),c=r(3609),f=r(8534),l=n.structuredClone,h=n.ArrayBuffer,p=n.DataView,y=Math.min,d=h.prototype,v=p.prototype,g=o(d.slice),b=i(d,"resizable","get"),m=i(d,"maxByteLength","get"),w=o(v.getInt8),x=o(v.setInt8);t.exports=(f||c)&&function(t,e,r){var n,o=s(t),i=void 0===e?o:a(e),d=!b||!b(t);if(u(t),f&&(t=l(t,{transfer:[t]}),o===i&&(r||d)))return t;if(o>=i&&(!r||d))n=g(t,0,i);else{var v=r&&!d&&m?{maxByteLength:m(t)}:void 0;n=new h(i,v);for(var k=new p(t),S=new p(n),O=y(i,o),_=0;_<O;_++)x(S,_,w(k,_))}return f||c(t),n}},4246:(t,e,r)=>{"use strict";var n,o,i,a=r(70377),u=r(58310),s=r(16210),c=r(55747),f=r(77568),l=r(45299),h=r(2281),p=r(89393),y=r(37909),d=r(55938),v=r(73936),g=r(21287),b=r(36917),m=r(76649),w=r(24697),x=r(16738),k=r(5419),S=k.enforce,O=k.get,_=s.Int8Array,E=_&&_.prototype,A=s.Uint8ClampedArray,P=A&&A.prototype,j=_&&b(_),T=E&&b(E),M=Object.prototype,R=s.TypeError,I=w("toStringTag"),C=x("TYPED_ARRAY_TAG"),L="TypedArrayConstructor",D=a&&!!m&&"Opera"!==h(s.opera),B=!1,N={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},F={BigInt64Array:8,BigUint64Array:8},z=function(t){var e=b(t);if(f(e)){var r=O(e);return r&&l(r,L)?r[L]:z(e)}},U=function(t){if(!f(t))return!1;var e=h(t);return l(N,e)||l(F,e)};for(n in N)(i=(o=s[n])&&o.prototype)?S(i)[L]=o:D=!1;for(n in F)(i=(o=s[n])&&o.prototype)&&(S(i)[L]=o);if((!D||!c(j)||j===Function.prototype)&&(j=function(){throw new R("Incorrect invocation")},D))for(n in N)s[n]&&m(s[n],j);if((!D||!T||T===M)&&(T=j.prototype,D))for(n in N)s[n]&&m(s[n].prototype,T);if(D&&b(P)!==T&&m(P,T),u&&!l(T,I))for(n in B=!0,v(T,I,{configurable:!0,get:function(){return f(this)?this[C]:void 0}}),N)s[n]&&y(s[n],C,n);t.exports={NATIVE_ARRAY_BUFFER_VIEWS:D,TYPED_ARRAY_TAG:B&&C,aTypedArray:function(t){if(U(t))return t;throw new R("Target is not a typed array")},aTypedArrayConstructor:function(t){if(c(t)&&(!m||g(j,t)))return t;throw new R(p(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(u){if(r)for(var o in N){var i=s[o];if(i&&l(i.prototype,t))try{delete i.prototype[t]}catch(r){try{i.prototype[t]=e}catch(t){}}}T[t]&&!r||d(T,t,r?e:D&&E[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,o;if(u){if(m){if(r)for(n in N)if((o=s[n])&&l(o,t))try{delete o[t]}catch(t){}if(j[t]&&!r)return;try{return d(j,t,r?e:D&&j[t]||e)}catch(t){}}for(n in N)!(o=s[n])||o[t]&&!r||d(o,t,e)}},getTypedArrayConstructor:z,isView:function(t){if(!f(t))return!1;var e=h(t);return"DataView"===e||l(N,e)||l(F,e)},isTypedArray:U,TypedArray:j,TypedArrayPrototype:T}},37336:(t,e,r)=>{"use strict";var n=r(16210),o=r(67250),i=r(58310),a=r(70377),u=r(70520),s=r(37909),c=r(73936),f=r(30145),l=r(40033),h=r(60077),p=r(61365),y=r(10188),d=r(43806),v=r(95867),g=r(91784),b=r(36917),m=r(76649),w=r(88471),x=r(54602),k=r(5781),S=r(5774),O=r(84925),_=r(5419),E=u.PROPER,A=u.CONFIGURABLE,P="ArrayBuffer",j="DataView",T="prototype",M="Wrong index",R=_.getterFor(P),I=_.getterFor(j),C=_.set,L=n[P],D=L,B=D&&D[T],N=n[j],F=N&&N[T],z=Object.prototype,U=n.Array,Y=n.RangeError,G=o(w),H=o([].reverse),W=g.pack,X=g.unpack,q=function(t){return[255&t]},V=function(t){return[255&t,t>>8&255]},Q=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},K=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},J=function(t){return W(v(t),23,4)},Z=function(t){return W(t,52,8)},$=function(t,e,r){c(t[T],e,{configurable:!0,get:function(){return r(this)[e]}})},tt=function(t,e,r,n){var o=I(t),i=d(r),a=!!n;if(i+e>o.byteLength)throw new Y(M);var u=o.bytes,s=i+o.byteOffset,c=x(u,s,s+e);return a?c:H(c)},et=function(t,e,r,n,o,i){var a=I(t),u=d(r),s=n(+o),c=!!i;if(u+e>a.byteLength)throw new Y(M);for(var f=a.bytes,l=u+a.byteOffset,h=0;h<e;h++)f[l+h]=s[c?h:e-h-1]};if(a){var rt=E&&L.name!==P;l((function(){L(1)}))&&l((function(){new L(-1)}))&&!l((function(){return new L,new L(1.5),new L(NaN),1!==L.length||rt&&!A}))?rt&&A&&s(L,"name",P):((D=function(t){return h(this,B),k(new L(d(t)),this,D)})[T]=B,B.constructor=D,S(D,L)),m&&b(F)!==z&&m(F,z);var nt=new N(new D(2)),ot=o(F.setInt8);nt.setInt8(0,2147483648),nt.setInt8(1,2147483649),!nt.getInt8(0)&&nt.getInt8(1)||f(F,{setInt8:function(t,e){ot(this,t,e<<24>>24)},setUint8:function(t,e){ot(this,t,e<<24>>24)}},{unsafe:!0})}else B=(D=function(t){h(this,B);var e=d(t);C(this,{type:P,bytes:G(U(e),0),byteLength:e}),i||(this.byteLength=e,this.detached=!1)})[T],F=(N=function(t,e,r){h(this,F),h(t,B);var n=R(t),o=n.byteLength,a=p(e);if(a<0||a>o)throw new Y("Wrong offset");if(a+(r=void 0===r?o-a:y(r))>o)throw new Y("Wrong length");C(this,{type:j,buffer:t,byteLength:r,byteOffset:a,bytes:n.bytes}),i||(this.buffer=t,this.byteLength=r,this.byteOffset=a)})[T],i&&($(D,"byteLength",R),$(N,"buffer",I),$(N,"byteLength",I),$(N,"byteOffset",I)),f(F,{getInt8:function(t){return tt(this,1,t)[0]<<24>>24},getUint8:function(t){return tt(this,1,t)[0]},getInt16:function(t){var e=tt(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=tt(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return K(tt(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return K(tt(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return X(tt(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return X(tt(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){et(this,1,t,q,e)},setUint8:function(t,e){et(this,1,t,q,e)},setInt16:function(t,e){et(this,2,t,V,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){et(this,2,t,V,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){et(this,4,t,Q,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){et(this,4,t,Q,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){et(this,4,t,J,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){et(this,8,t,Z,e,arguments.length>2&&arguments[2])}});O(D,P),O(N,j),t.exports={ArrayBuffer:D,DataView:N}},71447:(t,e,r)=>{"use strict";var n=r(46771),o=r(13912),i=r(24760),a=r(95108),u=Math.min;t.exports=[].copyWithin||function(t,e){var r=n(this),s=i(r),c=o(t,s),f=o(e,s),l=arguments.length>2?arguments[2]:void 0,h=u((void 0===l?s:o(l,s))-f,s-c),p=1;for(f<c&&c<f+h&&(p=-1,f+=h-1,c+=h-1);h-- >0;)f in r?r[c]=r[f]:a(r,c),c+=p,f+=p;return r}},88471:(t,e,r)=>{"use strict";var n=r(46771),o=r(13912),i=r(24760);t.exports=function(t){for(var e=n(this),r=i(e),a=arguments.length,u=o(a>1?arguments[1]:void 0,r),s=a>2?arguments[2]:void 0,c=void 0===s?r:o(s,r);c>u;)e[u++]=t;return e}},35601:(t,e,r)=>{"use strict";var n=r(22603).forEach,o=r(55528)("forEach");t.exports=o?[].forEach:function(t){return n(this,t,arguments.length>1?arguments[1]:void 0)}},78008:(t,e,r)=>{"use strict";var n=r(24760);t.exports=function(t,e,r){for(var o=0,i=arguments.length>2?r:n(e),a=new t(i);i>o;)a[o]=e[o++];return a}},73174:(t,e,r)=>{"use strict";var n=r(75754),o=r(91495),i=r(46771),a=r(40125),u=r(76571),s=r(1031),c=r(24760),f=r(60102),l=r(77455),h=r(59201),p=Array;t.exports=function(t){var e=i(t),r=s(this),y=arguments.length,d=y>1?arguments[1]:void 0,v=void 0!==d;v&&(d=n(d,y>2?arguments[2]:void 0));var g,b,m,w,x,k,S=h(e),O=0;if(!S||this===p&&u(S))for(g=c(e),b=r?new this(g):p(g);g>O;O++)k=v?d(e[O],O):e[O],f(b,O,k);else for(b=r?new this:[],x=(w=l(e,S)).next;!(m=o(x,w)).done;O++)k=v?a(w,d,[m.value,O],!0):m.value,f(b,O,k);return b.length=O,b}},14211:(t,e,r)=>{"use strict";var n=r(57591),o=r(13912),i=r(24760),a=function(t){return function(e,r,a){var u=n(e),s=i(u);if(0===s)return!t&&-1;var c,f=o(a,s);if(t&&r!=r){for(;s>f;)if((c=u[f++])!=c)return!0}else for(;s>f;f++)if((t||f in u)&&u[f]===r)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},77389:(t,e,r)=>{"use strict";var n=r(75754),o=r(37457),i=r(46771),a=r(24760),u=function(t){var e=1===t;return function(r,u,s){for(var c,f=i(r),l=o(f),h=a(l),p=n(u,s);h-- >0;)if(p(c=l[h],h,f))switch(t){case 0:return c;case 1:return h}return e?-1:void 0}};t.exports={findLast:u(0),findLastIndex:u(1)}},22603:(t,e,r)=>{"use strict";var n=r(75754),o=r(67250),i=r(37457),a=r(46771),u=r(24760),s=r(57823),c=o([].push),f=function(t){var e=1===t,r=2===t,o=3===t,f=4===t,l=6===t,h=7===t,p=5===t||l;return function(y,d,v,g){for(var b,m,w=a(y),x=i(w),k=u(x),S=n(d,v),O=0,_=g||s,E=e?_(y,k):r||h?_(y,0):void 0;k>O;O++)if((p||O in x)&&(m=S(b=x[O],O,w),t))if(e)E[O]=m;else if(m)switch(t){case 3:return!0;case 5:return b;case 6:return O;case 2:c(E,b)}else switch(t){case 4:return!1;case 7:c(E,b)}return l?-1:o||f?f:E}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6),filterReject:f(7)}},1325:(t,e,r)=>{"use strict";var n=r(61267),o=r(57591),i=r(61365),a=r(24760),u=r(55528),s=Math.min,c=[].lastIndexOf,f=!!c&&1/[1].lastIndexOf(1,-0)<0,l=u("lastIndexOf"),h=f||!l;t.exports=h?function(t){if(f)return n(c,this,arguments)||0;var e=o(this),r=a(e);if(0===r)return-1;var u=r-1;for(arguments.length>1&&(u=s(u,i(arguments[1]))),u<0&&(u=r+u);u>=0;u--)if(u in e&&e[u]===t)return u||0;return-1}:c},44091:(t,e,r)=>{"use strict";var n=r(40033),o=r(24697),i=r(83141),a=o("species");t.exports=function(t){return i>=51||!n((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},55528:(t,e,r)=>{"use strict";var n=r(40033);t.exports=function(t,e){var r=[][t];return!!r&&n((function(){r.call(null,e||function(){return 1},1)}))}},56844:(t,e,r)=>{"use strict";var n=r(10320),o=r(46771),i=r(37457),a=r(24760),u=TypeError,s="Reduce of empty array with no initial value",c=function(t){return function(e,r,c,f){var l=o(e),h=i(l),p=a(l);if(n(r),0===p&&c<2)throw new u(s);var y=t?p-1:0,d=t?-1:1;if(c<2)for(;;){if(y in h){f=h[y],y+=d;break}if(y+=d,t?y<0:p<=y)throw new u(s)}for(;t?y>=0:p>y;y+=d)y in h&&(f=r(f,h[y],y,l));return f}};t.exports={left:c(!1),right:c(!0)}},13345:(t,e,r)=>{"use strict";var n=r(58310),o=r(37386),i=TypeError,a=Object.getOwnPropertyDescriptor,u=n&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}();t.exports=u?function(t,e){if(o(t)&&!a(t,"length").writable)throw new i("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e}},54602:(t,e,r)=>{"use strict";var n=r(67250);t.exports=n([].slice)},90274:(t,e,r)=>{"use strict";var n=r(54602),o=Math.floor,i=function(t,e){var r=t.length;if(r<8)for(var a,u,s=1;s<r;){for(u=s,a=t[s];u&&e(t[u-1],a)>0;)t[u]=t[--u];u!==s++&&(t[u]=a)}else for(var c=o(r/2),f=i(n(t,0,c),e),l=i(n(t,c),e),h=f.length,p=l.length,y=0,d=0;y<h||d<p;)t[y+d]=y<h&&d<p?e(f[y],l[d])<=0?f[y++]:l[d++]:y<h?f[y++]:l[d++];return t};t.exports=i},8303:(t,e,r)=>{"use strict";var n=r(37386),o=r(1031),i=r(77568),a=r(24697)("species"),u=Array;t.exports=function(t){var e;return n(t)&&(e=t.constructor,(o(e)&&(e===u||n(e.prototype))||i(e)&&null===(e=e[a]))&&(e=void 0)),void 0===e?u:e}},57823:(t,e,r)=>{"use strict";var n=r(8303);t.exports=function(t,e){return new(n(t))(0===e?0:e)}},81354:(t,e,r)=>{"use strict";var n=r(24760);t.exports=function(t,e){for(var r=n(t),o=new e(r),i=0;i<r;i++)o[i]=t[r-i-1];return o}},85370:(t,e,r)=>{"use strict";var n=r(24760),o=r(61365),i=RangeError;t.exports=function(t,e,r,a){var u=n(t),s=o(r),c=s<0?u+s:s;if(c>=u||c<0)throw new i("Incorrect index");for(var f=new e(u),l=0;l<u;l++)f[l]=l===c?a:t[l];return f}},20622:t=>{"use strict";var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=e+"+/",n=e+"-_",o=function(t){for(var e={},r=0;r<64;r++)e[t.charAt(r)]=r;return e};t.exports={i2c:r,c2i:o(r),i2cUrl:n,c2iUrl:o(n)}},40125:(t,e,r)=>{"use strict";var n=r(30365),o=r(28649);t.exports=function(t,e,r,i){try{return i?e(n(r)[0],r[1]):e(r)}catch(e){o(t,"throw",e)}}},92490:(t,e,r)=>{"use strict";var n=r(24697)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[n]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){try{if(!e&&!o)return!1}catch(t){return!1}var r=!1;try{var i={};i[n]=function(){return{next:function(){return{done:r=!0}}}},t(i)}catch(t){}return r}},7462:(t,e,r)=>{"use strict";var n=r(67250),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},2281:(t,e,r)=>{"use strict";var n=r(2650),o=r(55747),i=r(7462),a=r(24697)("toStringTag"),u=Object,s="Arguments"===i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=u(t),a))?r:s?i(e):"Object"===(n=i(e))&&o(e.callee)?"Arguments":n}},41028:(t,e,r)=>{"use strict";var n=r(80674),o=r(73936),i=r(30145),a=r(75754),u=r(60077),s=r(42871),c=r(49450),f=r(65574),l=r(5959),h=r(58491),p=r(58310),y=r(81969).fastKey,d=r(5419),v=d.set,g=d.getterFor;t.exports={getConstructor:function(t,e,r,f){var l=t((function(t,o){u(t,h),v(t,{type:e,index:n(null),first:null,last:null,size:0}),p||(t.size=0),s(o)||c(o,t[f],{that:t,AS_ENTRIES:r})})),h=l.prototype,d=g(e),b=function(t,e,r){var n,o,i=d(t),a=m(t,e);return a?a.value=r:(i.last=a={index:o=y(e,!0),key:e,value:r,previous:n=i.last,next:null,removed:!1},i.first||(i.first=a),n&&(n.next=a),p?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},m=function(t,e){var r,n=d(t),o=y(e);if("F"!==o)return n.index[o];for(r=n.first;r;r=r.next)if(r.key===e)return r};return i(h,{clear:function(){for(var t=d(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=null),e=e.next;t.first=t.last=null,t.index=n(null),p?t.size=0:this.size=0},delete:function(t){var e=this,r=d(e),n=m(e,t);if(n){var o=n.next,i=n.previous;delete r.index[n.index],n.removed=!0,i&&(i.next=o),o&&(o.previous=i),r.first===n&&(r.first=o),r.last===n&&(r.last=i),p?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=d(this),n=a(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!m(this,t)}}),i(h,r?{get:function(t){var e=m(this,t);return e&&e.value},set:function(t,e){return b(this,0===t?0:t,e)}}:{add:function(t){return b(this,t=0===t?0:t,t)}}),p&&o(h,"size",{configurable:!0,get:function(){return d(this).size}}),l},setStrong:function(t,e,r){var n=e+" Iterator",o=g(e),i=g(n);f(t,e,(function(t,e){v(this,{type:n,target:t,state:o(t),kind:e,last:null})}),(function(){for(var t=i(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?l("keys"===e?r.key:"values"===e?r.value:[r.key,r.value],!1):(t.target=null,l(void 0,!0))}),r?"entries":"values",!r,!0),h(e)}}},39895:(t,e,r)=>{"use strict";var n=r(67250),o=r(30145),i=r(81969).getWeakData,a=r(60077),u=r(30365),s=r(42871),c=r(77568),f=r(49450),l=r(22603),h=r(45299),p=r(5419),y=p.set,d=p.getterFor,v=l.find,g=l.findIndex,b=n([].splice),m=0,w=function(t){return t.frozen||(t.frozen=new x)},x=function(){this.entries=[]},k=function(t,e){return v(t.entries,(function(t){return t[0]===e}))};x.prototype={get:function(t){var e=k(this,t);if(e)return e[1]},has:function(t){return!!k(this,t)},set:function(t,e){var r=k(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=g(this.entries,(function(e){return e[0]===t}));return~e&&b(this.entries,e,1),!!~e}},t.exports={getConstructor:function(t,e,r,n){var l=t((function(t,o){a(t,p),y(t,{type:e,id:m++,frozen:null}),s(o)||f(o,t[n],{that:t,AS_ENTRIES:r})})),p=l.prototype,v=d(e),g=function(t,e,r){var n=v(t),o=i(u(e),!0);return!0===o?w(n).set(e,r):o[n.id]=r,t};return o(p,{delete:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).delete(t):r&&h(r,e.id)&&delete r[e.id]},has:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).has(t):r&&h(r,e.id)}}),o(p,r?{get:function(t){var e=v(this);if(c(t)){var r=i(t);if(!0===r)return w(e).get(t);if(r)return r[e.id]}},set:function(t,e){return g(this,t,e)}}:{add:function(t){return g(this,t,!0)}}),l}}},45150:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(67250),a=r(41314),u=r(55938),s=r(81969),c=r(49450),f=r(60077),l=r(55747),h=r(42871),p=r(77568),y=r(40033),d=r(92490),v=r(84925),g=r(5781);t.exports=function(t,e,r){var b=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),w=b?"set":"add",x=o[t],k=x&&x.prototype,S=x,O={},_=function(t){var e=i(k[t]);u(k,t,"add"===t?function(t){return e(this,0===t?0:t),this}:"delete"===t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:"get"===t?function(t){return m&&!p(t)?void 0:e(this,0===t?0:t)}:"has"===t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(a(t,!l(x)||!(m||k.forEach&&!y((function(){(new x).entries().next()})))))S=r.getConstructor(e,t,b,w),s.enable();else if(a(t,!0)){var E=new S,A=E[w](m?{}:-0,1)!==E,P=y((function(){E.has(1)})),j=d((function(t){new x(t)})),T=!m&&y((function(){for(var t=new x,e=5;e--;)t[w](e,e);return!t.has(-0)}));j||((S=e((function(t,e){f(t,k);var r=g(new x,t,S);return h(e)||c(e,r[w],{that:r,AS_ENTRIES:b}),r}))).prototype=k,k.constructor=S),(P||T)&&(_("delete"),_("has"),b&&_("get")),(T||A)&&_(w),m&&k.clear&&delete k.clear}return O[t]=S,n({global:!0,constructor:!0,forced:S!==x},O),v(S,t),m||r.setStrong(S,t,b),S}},5774:(t,e,r)=>{"use strict";var n=r(45299),o=r(97921),i=r(27193),a=r(74595);t.exports=function(t,e,r){for(var u=o(e),s=a.f,c=i.f,f=0;f<u.length;f++){var l=u[f];n(t,l)||r&&n(r,l)||s(t,l,c(e,l))}}},45490:(t,e,r)=>{"use strict";var n=r(24697)("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[n]=!1,"/./"[t](e)}catch(t){}}return!1}},9225:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},72506:(t,e,r)=>{"use strict";var n=r(67250),o=r(16952),i=r(12605),a=/"/g,u=n("".replace);t.exports=function(t,e,r,n){var s=i(o(t)),c="<"+e;return""!==r&&(c+=" "+r+'="'+u(i(n),a,""")+'"'),c+">"+s+"</"+e+">"}},5959:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},37909:(t,e,r)=>{"use strict";var n=r(58310),o=r(74595),i=r(87458);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},87458:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},60102:(t,e,r)=>{"use strict";var n=r(58310),o=r(74595),i=r(87458);t.exports=function(t,e,r){n?o.f(t,e,i(0,r)):t[e]=r}},67206:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(24051).start,a=RangeError,u=isFinite,s=Math.abs,c=Date.prototype,f=c.toISOString,l=n(c.getTime),h=n(c.getUTCDate),p=n(c.getUTCFullYear),y=n(c.getUTCHours),d=n(c.getUTCMilliseconds),v=n(c.getUTCMinutes),g=n(c.getUTCMonth),b=n(c.getUTCSeconds);t.exports=o((function(){return"0385-07-25T07:06:39.999Z"!==f.call(new Date(-50000000000001))}))||!o((function(){f.call(new Date(NaN))}))?function(){if(!u(l(this)))throw new a("Invalid time value");var t=this,e=p(t),r=d(t),n=e<0?"-":e>9999?"+":"";return n+i(s(e),n?6:4,0)+"-"+i(g(t)+1,2,0)+"-"+i(h(t),2,0)+"T"+i(y(t),2,0)+":"+i(v(t),2,0)+":"+i(b(t),2,0)+"."+i(r,3,0)+"Z"}:f},10886:(t,e,r)=>{"use strict";var n=r(30365),o=r(13396),i=TypeError;t.exports=function(t){if(n(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new i("Incorrect hint");return o(this,t)}},73936:(t,e,r)=>{"use strict";var n=r(20001),o=r(74595);t.exports=function(t,e,r){return r.get&&n(r.get,e,{getter:!0}),r.set&&n(r.set,e,{setter:!0}),o.f(t,e,r)}},55938:(t,e,r)=>{"use strict";var n=r(55747),o=r(74595),i=r(20001),a=r(18231);t.exports=function(t,e,r,u){u||(u={});var s=u.enumerable,c=void 0!==u.name?u.name:e;if(n(r)&&i(r,c,u),u.global)s?t[e]=r:a(e,r);else{try{u.unsafe?t[e]&&(s=!0):delete t[e]}catch(t){}s?t[e]=r:o.f(t,e,{value:r,enumerable:!1,configurable:!u.nonConfigurable,writable:!u.nonWritable})}return t}},30145:(t,e,r)=>{"use strict";var n=r(55938);t.exports=function(t,e,r){for(var o in e)n(t,o,e[o],r);return t}},18231:(t,e,r)=>{"use strict";var n=r(16210),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},95108:(t,e,r)=>{"use strict";var n=r(89393),o=TypeError;t.exports=function(t,e){if(!delete t[e])throw new o("Cannot delete property "+n(e)+" of "+n(t))}},58310:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},3609:(t,e,r)=>{"use strict";var n,o,i,a,u=r(16210),s=r(58835),c=r(8534),f=u.structuredClone,l=u.ArrayBuffer,h=u.MessageChannel,p=!1;if(c)p=function(t){f(t,{transfer:[t]})};else if(l)try{h||(n=s("worker_threads"))&&(h=n.MessageChannel),h&&(o=new h,i=new l(2),a=function(t){o.port1.postMessage(null,[t])},2===i.byteLength&&(a(i),0===i.byteLength&&(p=a)))}catch(t){}t.exports=p},12689:(t,e,r)=>{"use strict";var n=r(16210),o=r(77568),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},21291:t=>{"use strict";var e=TypeError;t.exports=function(t){if(t>9007199254740991)throw e("Maximum allowed index exceeded");return t}},41852:t=>{"use strict";t.exports={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}}},69058:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},90502:(t,e,r)=>{"use strict";var n=r(12689)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},89453:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},50503:(t,e,r)=>{"use strict";var n=r(83309).match(/firefox\/(\d+)/i);t.exports=!!n&&+n[1]},79725:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/MSIE|Trident/.test(n)},16647:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/ipad|iphone|ipod/i.test(n)&&"undefined"!=typeof Pebble},27770:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},81663:(t,e,r)=>{"use strict";var n=r(10753);t.exports="NODE"===n},52854:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/web0s(?!.*chrome)/i.test(n)},83309:(t,e,r)=>{"use strict";var n=r(16210).navigator,o=n&&n.userAgent;t.exports=o?String(o):""},83141:(t,e,r)=>{"use strict";var n,o,i=r(16210),a=r(83309),u=i.process,s=i.Deno,c=u&&u.versions||s&&s.version,f=c&&c.v8;f&&(o=(n=f.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},44981:(t,e,r)=>{"use strict";var n=r(83309).match(/AppleWebKit\/(\d+)\./);t.exports=!!n&&+n[1]},10753:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(16210),i=r(83309),a=r(7462),u=function(t){return i.slice(0,t.length)===t};t.exports=u("Bun/")?"BUN":u("Cloudflare-Workers")?"CLOUDFLARE":u("Deno/")?"DENO":u("Node.js/")?"NODE":o.Bun&&"string"==typeof Bun.version?"BUN":o.Deno&&"object"==n(Deno.version)?"DENO":"process"===a(o.process)?"NODE":o.window&&o.document?"BROWSER":"REST"},89767:(t,e,r)=>{"use strict";var n=r(67250),o=Error,i=n("".replace),a=String(new o("zxcasd").stack),u=/\n\s*at [^:]*:[^\n]*/,s=u.test(a);t.exports=function(t,e){if(s&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,u,"");return t}},40505:(t,e,r)=>{"use strict";var n=r(37909),o=r(89767),i=r(31013),a=Error.captureStackTrace;t.exports=function(t,e,r,u){i&&(a?a(t,e):n(t,"stack",o(r,u)))}},31013:(t,e,r)=>{"use strict";var n=r(40033),o=r(87458);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},44790:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033),i=r(30365),a=r(75577),u=Error.prototype.toString,s=o((function(){if(n){var t=Object.create(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==u.call(t))return!0}return"2: 1"!==u.call({message:1,name:2})||"Error"!==u.call({})}));t.exports=s?function(){var t=i(this),e=a(t.name,"Error"),r=a(t.message);return e?r?e+": "+r:e:r}:u},63964:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(16210),i=r(27193).f,a=r(37909),u=r(55938),s=r(18231),c=r(5774),f=r(41314);t.exports=function(t,e){var r,l,h,p,y,d=t.target,v=t.global,g=t.stat;if(r=v?o:g?o[d]||s(d,{}):o[d]&&o[d].prototype)for(l in e){if(p=e[l],h=t.dontCallGetSet?(y=i(r,l))&&y.value:r[l],!f(v?l:d+(g?".":"#")+l,t.forced)&&void 0!==h){if(n(p)==n(h))continue;c(p,h)}(t.sham||h&&h.sham)&&a(p,"sham",!0),u(r,l,p,t)}}},40033:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},79942:(t,e,r)=>{"use strict";r(79669);var n=r(91495),o=r(55938),i=r(14489),a=r(40033),u=r(24697),s=r(37909),c=u("species"),f=RegExp.prototype;t.exports=function(t,e,r,l){var h=u(t),p=!a((function(){var e={};return e[h]=function(){return 7},7!==""[t](e)})),y=p&&!a((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[c]=function(){return r},r.flags="",r[h]=/./[h]),r.exec=function(){return e=!0,null},r[h](""),!e}));if(!p||!y||r){var d=/./[h],v=e(h,""[t],(function(t,e,r,o,a){var u=e.exec;return u===i||u===f.exec?p&&!a?{done:!0,value:n(d,e,r,o)}:{done:!0,value:n(t,r,e,o)}:{done:!1}}));o(String.prototype,t,v[0]),o(f,h,v[1])}l&&s(f[h],"sham",!0)}},65561:(t,e,r)=>{"use strict";var n=r(37386),o=r(24760),i=r(21291),a=r(75754),u=function(t,e,r,s,c,f,l,h){for(var p,y,d=c,v=0,g=!!l&&a(l,h);v<s;)v in r&&(p=g?g(r[v],v,e):r[v],f>0&&n(p)?(y=o(p),d=u(t,e,p,y,d,f-1)-1):(i(d+1),t[d]=p),d++),v++;return d};t.exports=u},50730:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){return Object.isExtensible(Object.preventExtensions({}))}))},61267:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(55050),i=Function.prototype,a=i.apply,u=i.call;t.exports="object"==("undefined"==typeof Reflect?"undefined":n(Reflect))&&Reflect.apply||(o?u.bind(a):function(){return u.apply(a,arguments)})},75754:(t,e,r)=>{"use strict";var n=r(71138),o=r(10320),i=r(55050),a=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?a(t,e):function(){return t.apply(e,arguments)}}},55050:(t,e,r)=>{"use strict";var n=r(40033);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},66284:(t,e,r)=>{"use strict";var n=r(67250),o=r(10320),i=r(77568),a=r(45299),u=r(54602),s=r(55050),c=Function,f=n([].concat),l=n([].join),h={};t.exports=s?c.bind:function(t){var e=o(this),r=e.prototype,n=u(arguments,1),s=function(){var r=f(n,u(arguments));return this instanceof s?function(t,e,r){if(!a(h,e)){for(var n=[],o=0;o<e;o++)n[o]="a["+o+"]";h[e]=c("C,a","return new C("+l(n,",")+")")}return h[e](t,r)}(e,r.length,r):e.apply(t,r)};return i(r)&&(s.prototype=r),s}},91495:(t,e,r)=>{"use strict";var n=r(55050),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},70520:(t,e,r)=>{"use strict";var n=r(58310),o=r(45299),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,u=o(i,"name"),s=u&&"something"===function(){}.name,c=u&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:u,PROPER:s,CONFIGURABLE:c}},38656:(t,e,r)=>{"use strict";var n=r(67250),o=r(10320);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},71138:(t,e,r)=>{"use strict";var n=r(7462),o=r(67250);t.exports=function(t){if("Function"===n(t))return o(t)}},67250:(t,e,r)=>{"use strict";var n=r(55050),o=Function.prototype,i=o.call,a=n&&o.bind.bind(i,i);t.exports=n?a:function(t){return function(){return i.apply(t,arguments)}}},58835:(t,e,r)=>{"use strict";var n=r(16210),o=r(81663);t.exports=function(t){if(o){try{return n.process.getBuiltinModule(t)}catch(t){}try{return Function('return require("'+t+'")')()}catch(t){}}}},24466:(t,e,r)=>{"use strict";var n=r(16210);t.exports=function(t,e){var r=n[t],o=r&&r.prototype;return o&&o[e]}},4009:(t,e,r)=>{"use strict";var n=r(16210),o=r(55747);t.exports=function(t,e){return arguments.length<2?(r=n[t],o(r)?r:void 0):n[t]&&n[t][e];var r}},79521:t=>{"use strict";t.exports=function(t){return{iterator:t,next:t.next,done:!1}}},31352:(t,e,r)=>{"use strict";var n=r(91495),o=r(30365),i=r(79521),a=r(59201);t.exports=function(t,e){e&&"string"==typeof t||o(t);var r=a(t);return i(o(void 0!==r?n(r,t):t))}},59201:(t,e,r)=>{"use strict";var n=r(2281),o=r(78060),i=r(42871),a=r(83967),u=r(24697)("iterator");t.exports=function(t){if(!i(t))return o(t,u)||o(t,"@@iterator")||a[n(t)]}},77455:(t,e,r)=>{"use strict";var n=r(91495),o=r(10320),i=r(30365),a=r(89393),u=r(59201),s=TypeError;t.exports=function(t,e){var r=arguments.length<2?u(t):e;if(o(r))return i(n(r,t));throw new s(a(t)+" is not iterable")}},39447:(t,e,r)=>{"use strict";var n=r(67250),o=r(37386),i=r(55747),a=r(7462),u=r(12605),s=n([].push);t.exports=function(t){if(i(t))return t;if(o(t)){for(var e=t.length,r=[],n=0;n<e;n++){var c=t[n];"string"==typeof c?s(r,c):"number"!=typeof c&&"Number"!==a(c)&&"String"!==a(c)||s(r,u(c))}var f=r.length,l=!0;return function(t,e){if(l)return l=!1,e;if(o(this))return e;for(var n=0;n<f;n++)if(r[n]===t)return e}}}},78060:(t,e,r)=>{"use strict";var n=r(10320),o=r(42871);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},34099:(t,e,r)=>{"use strict";var n=r(10320),o=r(30365),i=r(91495),a=r(61365),u=r(79521),s="Invalid size",c=RangeError,f=TypeError,l=Math.max,h=function(t,e){this.set=t,this.size=l(e,0),this.has=n(t.has),this.keys=n(t.keys)};h.prototype={getIterator:function(){return u(o(i(this.keys,this.set)))},includes:function(t){return i(this.has,this.set,t)}},t.exports=function(t){o(t);var e=+t.size;if(e!=e)throw new f(s);var r=a(e);if(r<0)throw new c(s);return new h(t,r)}},48300:(t,e,r)=>{"use strict";var n=r(67250),o=r(46771),i=Math.floor,a=n("".charAt),u=n("".replace),s=n("".slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,f=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,r,n,l,h){var p=r+t.length,y=n.length,d=f;return void 0!==l&&(l=o(l),d=c),u(h,d,(function(o,u){var c;switch(a(u,0)){case"$":return"$";case"&":return t;case"`":return s(e,0,r);case"'":return s(e,p);case"<":c=l[s(u,1,-1)];break;default:var f=+u;if(0===f)return o;if(f>y){var h=i(f/10);return 0===h?o:h<=y?void 0===n[h-1]?a(u,1):n[h-1]+a(u,1):o}c=n[f-1]}return void 0===c?"":c}))}},16210:function(t,e,r){"use strict";function n(t){return n="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},n(t)}var o=function(t){return t&&t.Math===Math&&t};t.exports=o("object"==("undefined"==typeof globalThis?"undefined":n(globalThis))&&globalThis)||o("object"==("undefined"==typeof window?"undefined":n(window))&&window)||o("object"==("undefined"==typeof self?"undefined":n(self))&&self)||o("object"==(void 0===r.g?"undefined":n(r.g))&&r.g)||o("object"==n(this)&&this)||function(){return this}()||Function("return this")()},45299:(t,e,r)=>{"use strict";var n=r(67250),o=r(46771),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},79195:t=>{"use strict";t.exports={}},72259:t=>{"use strict";t.exports=function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}}},5315:(t,e,r)=>{"use strict";var n=r(4009);t.exports=n("document","documentElement")},36223:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033),i=r(12689);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},91784:t=>{"use strict";var e=Array,r=Math.abs,n=Math.pow,o=Math.floor,i=Math.log,a=Math.LN2;t.exports={pack:function(t,u,s){var c,f,l,h=e(s),p=8*s-u-1,y=(1<<p)-1,d=y>>1,v=23===u?n(2,-24)-n(2,-77):0,g=t<0||0===t&&1/t<0?1:0,b=0;for((t=r(t))!=t||t===1/0?(f=t!=t?1:0,c=y):(c=o(i(t)/a),t*(l=n(2,-c))<1&&(c--,l*=2),(t+=c+d>=1?v/l:v*n(2,1-d))*l>=2&&(c++,l/=2),c+d>=y?(f=0,c=y):c+d>=1?(f=(t*l-1)*n(2,u),c+=d):(f=t*n(2,d-1)*n(2,u),c=0));u>=8;)h[b++]=255&f,f/=256,u-=8;for(c=c<<u|f,p+=u;p>0;)h[b++]=255&c,c/=256,p-=8;return h[b-1]|=128*g,h},unpack:function(t,e){var r,o=t.length,i=8*o-e-1,a=(1<<i)-1,u=a>>1,s=i-7,c=o-1,f=t[c--],l=127&f;for(f>>=7;s>0;)l=256*l+t[c--],s-=8;for(r=l&(1<<-s)-1,l>>=-s,s+=e;s>0;)r=256*r+t[c--],s-=8;if(0===l)l=1-u;else{if(l===a)return r?NaN:f?-1/0:1/0;r+=n(2,e),l-=u}return(f?-1:1)*r*n(2,l-e)}}},37457:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(7462),a=Object,u=n("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?u(t,""):a(t)}:a},5781:(t,e,r)=>{"use strict";var n=r(55747),o=r(77568),i=r(76649);t.exports=function(t,e,r){var a,u;return i&&n(a=e.constructor)&&a!==r&&o(u=a.prototype)&&u!==r.prototype&&i(t,u),t}},40492:(t,e,r)=>{"use strict";var n=r(67250),o=r(55747),i=r(40095),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},69946:(t,e,r)=>{"use strict";var n=r(77568),o=r(37909);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},81969:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(63964),i=r(67250),a=r(79195),u=r(77568),s=r(45299),c=r(74595).f,f=r(37310),l=r(81644),h=r(81834),p=r(16738),y=r(50730),d=!1,v=p("meta"),g=0,b=function(t){c(t,v,{value:{objectID:"O"+g++,weakData:{}}})},m=t.exports={enable:function(){m.enable=function(){},d=!0;var t=f.f,e=i([].splice),r={};r[v]=1,t(r).length&&(f.f=function(r){for(var n=t(r),o=0,i=n.length;o<i;o++)if(n[o]===v){e(n,o,1);break}return n},o({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:l.f}))},fastKey:function(t,e){if(!u(t))return"symbol"==n(t)?t:("string"==typeof t?"S":"P")+t;if(!s(t,v)){if(!h(t))return"F";if(!e)return"E";b(t)}return t[v].objectID},getWeakData:function(t,e){if(!s(t,v)){if(!h(t))return!0;if(!e)return!1;b(t)}return t[v].weakData},onFreeze:function(t){return y&&d&&h(t)&&!s(t,v)&&b(t),t}};a[v]=!0},5419:(t,e,r)=>{"use strict";var n,o,i,a=r(21820),u=r(16210),s=r(77568),c=r(37909),f=r(45299),l=r(40095),h=r(19417),p=r(79195),y="Object already initialized",d=u.TypeError,v=u.WeakMap;if(a||l.state){var g=l.state||(l.state=new v);g.get=g.get,g.has=g.has,g.set=g.set,n=function(t,e){if(g.has(t))throw new d(y);return e.facade=t,g.set(t,e),e},o=function(t){return g.get(t)||{}},i=function(t){return g.has(t)}}else{var b=h("state");p[b]=!0,n=function(t,e){if(f(t,b))throw new d(y);return e.facade=t,c(t,b,e),e},o=function(t){return f(t,b)?t[b]:{}},i=function(t){return f(t,b)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!s(e)||(r=o(e)).type!==t)throw new d("Incompatible receiver, "+t+" required");return r}}}},76571:(t,e,r)=>{"use strict";var n=r(24697),o=r(83967),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},37386:(t,e,r)=>{"use strict";var n=r(7462);t.exports=Array.isArray||function(t){return"Array"===n(t)}},40221:(t,e,r)=>{"use strict";var n=r(2281);t.exports=function(t){var e=n(t);return"BigInt64Array"===e||"BigUint64Array"===e}},55747:t=>{"use strict";function e(t){return e="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},e(t)}var r="object"==("undefined"==typeof document?"undefined":e(document))&&document.all;t.exports=void 0===r&&void 0!==r?function(t){return"function"==typeof t||t===r}:function(t){return"function"==typeof t}},1031:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(55747),a=r(2281),u=r(4009),s=r(40492),c=function(){},f=u("Reflect","construct"),l=/^\s*(?:class|function)\b/,h=n(l.exec),p=!l.test(c),y=function(t){if(!i(t))return!1;try{return f(c,[],t),!0}catch(t){return!1}},d=function(t){if(!i(t))return!1;switch(a(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return p||!!h(l,s(t))}catch(t){return!0}};d.sham=!0,t.exports=!f||o((function(){var t;return y(y.call)||!y(Object)||!y((function(){t=!0}))||t}))?d:y},98373:(t,e,r)=>{"use strict";var n=r(45299);t.exports=function(t){return void 0!==t&&(n(t,"value")||n(t,"writable"))}},41314:(t,e,r)=>{"use strict";var n=r(40033),o=r(55747),i=/#|\.prototype\./,a=function(t,e){var r=s[u(t)];return r===f||r!==c&&(o(e)?n(e):!!e)},u=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},s=a.data={},c=a.NATIVE="N",f=a.POLYFILL="P";t.exports=a},5841:(t,e,r)=>{"use strict";var n=r(77568),o=Math.floor;t.exports=Number.isInteger||function(t){return!n(t)&&isFinite(t)&&o(t)===t}},42871:t=>{"use strict";t.exports=function(t){return null==t}},77568:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(55747);t.exports=function(t){return"object"==n(t)?null!==t:o(t)}},45015:(t,e,r)=>{"use strict";var n=r(77568);t.exports=function(t){return n(t)||null===t}},4493:t=>{"use strict";t.exports=!1},72586:(t,e,r)=>{"use strict";var n=r(77568),o=r(7462),i=r(24697)("match");t.exports=function(t){var e;return n(t)&&(void 0!==(e=t[i])?!!e:"RegExp"===o(t))}},71399:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(4009),i=r(55747),a=r(21287),u=r(1062),s=Object;t.exports=u?function(t){return"symbol"==n(t)}:function(t){var e=o("Symbol");return i(e)&&a(e.prototype,s(t))}},34825:(t,e,r)=>{"use strict";var n=r(91495);t.exports=function(t,e,r){for(var o,i,a=r?t:t.iterator,u=t.next;!(o=n(u,a)).done;)if(void 0!==(i=e(o.value)))return i}},49450:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(75754),i=r(91495),a=r(30365),u=r(89393),s=r(76571),c=r(24760),f=r(21287),l=r(77455),h=r(59201),p=r(28649),y=TypeError,d=function(t,e){this.stopped=t,this.result=e},v=d.prototype;t.exports=function(t,e,r){var g,b,m,w,x,k,S,O=r&&r.that,_=!(!r||!r.AS_ENTRIES),E=!(!r||!r.IS_RECORD),A=!(!r||!r.IS_ITERATOR),P=!(!r||!r.INTERRUPTED),j=o(e,O),T=function(t){return g&&p(g,"normal",t),new d(!0,t)},M=function(t){return _?(a(t),P?j(t[0],t[1],T):j(t[0],t[1])):P?j(t,T):j(t)};if(E)g=t.iterator;else if(A)g=t;else{if(!(b=h(t)))throw new y(u(t)+" is not iterable");if(s(b)){for(m=0,w=c(t);w>m;m++)if((x=M(t[m]))&&f(v,x))return x;return new d(!1)}g=l(t,b)}for(k=E?t.next:g.next;!(S=i(k,g)).done;){try{x=M(S.value)}catch(t){p(g,"throw",t)}if("object"==n(x)&&x&&f(v,x))return x}return new d(!1)}},28649:(t,e,r)=>{"use strict";var n=r(91495),o=r(30365),i=r(78060);t.exports=function(t,e,r){var a,u;o(t);try{if(!(a=i(t,"return"))){if("throw"===e)throw r;return r}a=n(a,t)}catch(t){u=!0,a=t}if("throw"===e)throw r;if(u)throw a;return o(a),r}},5656:(t,e,r)=>{"use strict";var n=r(67635).IteratorPrototype,o=r(80674),i=r(87458),a=r(84925),u=r(83967),s=function(){return this};t.exports=function(t,e,r,c){var f=e+" Iterator";return t.prototype=o(n,{next:i(+!c,r)}),a(t,f,!1,!0),u[f]=s,t}},56860:(t,e,r)=>{"use strict";var n=r(91495),o=r(80674),i=r(37909),a=r(30145),u=r(24697),s=r(5419),c=r(78060),f=r(67635).IteratorPrototype,l=r(5959),h=r(28649),p=u("toStringTag"),y="IteratorHelper",d="WrapForValidIterator",v=s.set,g=function(t){var e=s.getterFor(t?d:y);return a(o(f),{next:function(){var r=e(this);if(t)return r.nextHandler();try{var n=r.done?void 0:r.nextHandler();return l(n,r.done)}catch(t){throw r.done=!0,t}},return:function(){var r=e(this),o=r.iterator;if(r.done=!0,t){var i=c(o,"return");return i?n(i,o):l(void 0,!0)}if(r.inner)try{h(r.inner.iterator,"normal")}catch(t){return h(o,"throw",t)}return o&&h(o,"normal"),l(void 0,!0)}})},b=g(!0),m=g(!1);i(m,p,"Iterator Helper"),t.exports=function(t,e){var r=function(r,n){n?(n.iterator=r.iterator,n.next=r.next):n=r,n.type=e?d:y,n.nextHandler=t,n.counter=0,n.done=!1,v(this,n)};return r.prototype=e?b:m,r}},65574:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(4493),a=r(70520),u=r(55747),s=r(5656),c=r(36917),f=r(76649),l=r(84925),h=r(37909),p=r(55938),y=r(24697),d=r(83967),v=r(67635),g=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,w=v.BUGGY_SAFARI_ITERATORS,x=y("iterator"),k="keys",S="values",O="entries",_=function(){return this};t.exports=function(t,e,r,a,y,v,E){s(r,e,a);var A,P,j,T=function(t){if(t===y&&L)return L;if(!w&&t&&t in I)return I[t];switch(t){case k:case S:case O:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",R=!1,I=t.prototype,C=I[x]||I["@@iterator"]||y&&I[y],L=!w&&C||T(y),D="Array"===e&&I.entries||C;if(D&&(A=c(D.call(new t)))!==Object.prototype&&A.next&&(i||c(A)===m||(f?f(A,m):u(A[x])||p(A,x,_)),l(A,M,!0,!0),i&&(d[M]=_)),g&&y===S&&C&&C.name!==S&&(!i&&b?h(I,"name",S):(R=!0,L=function(){return o(C,this)})),y)if(P={values:T(S),keys:v?L:T(k),entries:T(O)},E)for(j in P)(w||R||!(j in I))&&p(I,j,P[j]);else n({target:e,proto:!0,forced:w||R},P);return i&&!E||I[x]===L||p(I,x,L,{name:y}),d[e]=L,P}},9667:(t,e,r)=>{"use strict";var n=r(91495),o=r(10320),i=r(30365),a=r(79521),u=r(56860),s=r(40125),c=u((function(){var t=this.iterator,e=i(n(this.next,t));if(!(this.done=!!e.done))return s(t,this.mapper,[e.value,this.counter++],!0)}));t.exports=function(t){return i(this),o(t),new c(a(this),{mapper:t})}},67635:(t,e,r)=>{"use strict";var n,o,i,a=r(40033),u=r(55747),s=r(77568),c=r(80674),f=r(36917),l=r(55938),h=r(24697),p=r(4493),y=h("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=f(f(i)))!==Object.prototype&&(n=o):d=!0),!s(n)||a((function(){var t={};return n[y].call(t)!==t}))?n={}:p&&(n=c(n)),u(n[y])||l(n,y,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},83967:t=>{"use strict";t.exports={}},24760:(t,e,r)=>{"use strict";var n=r(10188);t.exports=function(t){return n(t.length)}},20001:(t,e,r)=>{"use strict";var n=r(67250),o=r(40033),i=r(55747),a=r(45299),u=r(58310),s=r(70520).CONFIGURABLE,c=r(40492),f=r(5419),l=f.enforce,h=f.get,p=String,y=Object.defineProperty,d=n("".slice),v=n("".replace),g=n([].join),b=u&&!o((function(){return 8!==y((function(){}),"length",{value:8}).length})),m=String(String).split("String"),w=t.exports=function(t,e,r){"Symbol("===d(p(e),0,7)&&(e="["+v(p(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!a(t,"name")||s&&t.name!==e)&&(u?y(t,"name",{value:e,configurable:!0}):t.name=e),b&&r&&a(r,"arity")&&t.length!==r.arity&&y(t,"length",{value:r.arity});try{r&&a(r,"constructor")&&r.constructor?u&&y(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=l(t);return a(n,"source")||(n.source=g(m,"string"==typeof e?e:"")),t};Function.prototype.toString=w((function(){return i(this)&&h(this).source||c(this)}),"toString")},31186:(t,e,r)=>{"use strict";var n=r(67250),o=Map.prototype;t.exports={Map,set:n(o.set),get:n(o.get),has:n(o.has),remove:n(o.delete),proto:o}},82040:t=>{"use strict";var e=Math.expm1,r=Math.exp;t.exports=!e||e(10)>22025.465794806718||e(10)<22025.465794806718||-2e-17!==e(-2e-17)?function(t){var e=+t;return 0===e?e:e>-1e-6&&e<1e-6?e+e*e/2:r(e)-1}:e},14950:(t,e,r)=>{"use strict";var n=r(22172),o=Math.abs,i=2220446049250313e-31,a=1/i;t.exports=function(t,e,r,u){var s=+t,c=o(s),f=n(s);if(c<u)return f*function(t){return t+a-a}(c/u/e)*u*e;var l=(1+e/i)*c,h=l-(l-c);return h>r||h!=h?f*(1/0):f*h}},95867:(t,e,r)=>{"use strict";var n=r(14950);t.exports=Math.fround||function(t){return n(t,1.1920928955078125e-7,34028234663852886e22,11754943508222875e-54)}},75002:t=>{"use strict";var e=Math.log,r=Math.LOG10E;t.exports=Math.log10||function(t){return e(t)*r}},90874:t=>{"use strict";var e=Math.log;t.exports=Math.log1p||function(t){var r=+t;return r>-1e-8&&r<1e-8?r-r*r/2:e(1+r)}},22172:t=>{"use strict";t.exports=Math.sign||function(t){var e=+t;return 0===e||e!=e?e:e<0?-1:1}},21119:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},37713:(t,e,r)=>{"use strict";var n,o,i,a,u,s=r(16210),c=r(44915),f=r(75754),l=r(60375).set,h=r(9547),p=r(27770),y=r(16647),d=r(52854),v=r(81663),g=s.MutationObserver||s.WebKitMutationObserver,b=s.document,m=s.process,w=s.Promise,x=c("queueMicrotask");if(!x){var k=new h,S=function(){var t,e;for(v&&(t=m.domain)&&t.exit();e=k.get();)try{e()}catch(t){throw k.head&&n(),t}t&&t.enter()};p||v||d||!g||!b?!y&&w&&w.resolve?((a=w.resolve(void 0)).constructor=w,u=f(a.then,a),n=function(){u(S)}):v?n=function(){m.nextTick(S)}:(l=f(l,s),n=function(){l(S)}):(o=!0,i=b.createTextNode(""),new g(S).observe(i,{characterData:!0}),n=function(){i.data=o=!o}),x=function(t){k.head||n(),k.add(t)}}t.exports=x},81837:(t,e,r)=>{"use strict";var n=r(10320),o=TypeError,i=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw new o("Bad Promise constructor");e=t,r=n})),this.resolve=n(e),this.reject=n(r)};t.exports.f=function(t){return new i(t)}},75577:(t,e,r)=>{"use strict";var n=r(12605);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},37567:t=>{"use strict";var e=RangeError;t.exports=function(t){if(t==t)return t;throw new e("NaN is not allowed")}},86213:(t,e,r)=>{"use strict";var n=r(72586),o=TypeError;t.exports=function(t){if(n(t))throw new o("The method doesn't accept regular expressions");return t}},3294:(t,e,r)=>{"use strict";var n=r(16210).isFinite;t.exports=Number.isFinite||function(t){return"number"==typeof t&&n(t)}},28506:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(67250),a=r(12605),u=r(92648).trim,s=r(4198),c=i("".charAt),f=n.parseFloat,l=n.Symbol,h=l&&l.iterator,p=1/f(s+"-0")!=-1/0||h&&!o((function(){f(Object(h))}));t.exports=p?function(t){var e=u(a(t)),r=f(e);return 0===r&&"-"===c(e,0)?-0:r}:f},13693:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(67250),a=r(12605),u=r(92648).trim,s=r(4198),c=n.parseInt,f=n.Symbol,l=f&&f.iterator,h=/^[+-]?0x/i,p=i(h.exec),y=8!==c(s+"08")||22!==c(s+"0x16")||l&&!o((function(){c(Object(l))}));t.exports=y?function(t,e){var r=u(a(t));return c(r,e>>>0||(p(h,r)?16:10))}:c},41143:(t,e,r)=>{"use strict";var n=r(58310),o=r(67250),i=r(91495),a=r(40033),u=r(18450),s=r(89235),c=r(12867),f=r(46771),l=r(37457),h=Object.assign,p=Object.defineProperty,y=o([].concat);t.exports=!h||a((function(){if(n&&1!==h({b:1},h(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol("assign detection"),o="abcdefghijklmnopqrst";return t[r]=7,o.split("").forEach((function(t){e[t]=t})),7!==h({},t)[r]||u(h({},e)).join("")!==o}))?function(t,e){for(var r=f(t),o=arguments.length,a=1,h=s.f,p=c.f;o>a;)for(var d,v=l(arguments[a++]),g=h?y(u(v),h(v)):u(v),b=g.length,m=0;b>m;)d=g[m++],n&&!i(p,v,d)||(r[d]=v[d]);return r}:h},80674:(t,e,r)=>{"use strict";var n,o=r(30365),i=r(24239),a=r(89453),u=r(79195),s=r(5315),c=r(12689),f=r(19417),l="prototype",h="script",p=f("IE_PROTO"),y=function(){},d=function(t){return"<"+h+">"+t+"</"+h+">"},v=function(t){t.write(d("")),t.close();var e=t.parentWindow.Object;return t=null,e},g=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;g="undefined"!=typeof document?document.domain&&n?v(n):(e=c("iframe"),r="java"+h+":",e.style.display="none",s.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(d("document.F=Object")),t.close(),t.F):v(n);for(var o=a.length;o--;)delete g[l][a[o]];return g()};u[p]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(y[l]=o(t),r=new y,y[l]=null,r[p]=t):r=g(),void 0===e?r:i.f(r,e)}},24239:(t,e,r)=>{"use strict";var n=r(58310),o=r(80944),i=r(74595),a=r(30365),u=r(57591),s=r(18450);e.f=n&&!o?Object.defineProperties:function(t,e){a(t);for(var r,n=u(e),o=s(e),c=o.length,f=0;c>f;)i.f(t,r=o[f++],n[r]);return t}},74595:(t,e,r)=>{"use strict";var n=r(58310),o=r(36223),i=r(80944),a=r(30365),u=r(767),s=TypeError,c=Object.defineProperty,f=Object.getOwnPropertyDescriptor,l="enumerable",h="configurable",p="writable";e.f=n?i?function(t,e,r){if(a(t),e=u(e),a(r),"function"==typeof t&&"prototype"===e&&"value"in r&&p in r&&!r[p]){var n=f(t,e);n&&n[p]&&(t[e]=r.value,r={configurable:h in r?r[h]:n[h],enumerable:l in r?r[l]:n[l],writable:!1})}return c(t,e,r)}:c:function(t,e,r){if(a(t),e=u(e),a(r),o)try{return c(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new s("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},27193:(t,e,r)=>{"use strict";var n=r(58310),o=r(91495),i=r(12867),a=r(87458),u=r(57591),s=r(767),c=r(45299),f=r(36223),l=Object.getOwnPropertyDescriptor;e.f=n?l:function(t,e){if(t=u(t),e=s(e),f)try{return l(t,e)}catch(t){}if(c(t,e))return a(!o(i.f,t,e),t[e])}},81644:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(7462),i=r(57591),a=r(37310).f,u=r(54602),s="object"==("undefined"==typeof window?"undefined":n(window))&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return s&&"Window"===o(t)?function(t){try{return a(t)}catch(t){return u(s)}}(t):a(i(t))}},37310:(t,e,r)=>{"use strict";var n=r(53726),o=r(89453).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},89235:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},36917:(t,e,r)=>{"use strict";var n=r(45299),o=r(55747),i=r(46771),a=r(19417),u=r(9225),s=a("IE_PROTO"),c=Object,f=c.prototype;t.exports=u?c.getPrototypeOf:function(t){var e=i(t);if(n(e,s))return e[s];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof c?f:null}},81834:(t,e,r)=>{"use strict";var n=r(40033),o=r(77568),i=r(7462),a=r(3782),u=Object.isExtensible,s=n((function(){u(1)}));t.exports=s||a?function(t){return!!o(t)&&(!a||"ArrayBuffer"!==i(t))&&(!u||u(t))}:u},21287:(t,e,r)=>{"use strict";var n=r(67250);t.exports=n({}.isPrototypeOf)},53726:(t,e,r)=>{"use strict";var n=r(67250),o=r(45299),i=r(57591),a=r(14211).indexOf,u=r(79195),s=n([].push);t.exports=function(t,e){var r,n=i(t),c=0,f=[];for(r in n)!o(u,r)&&o(n,r)&&s(f,r);for(;e.length>c;)o(n,r=e[c++])&&(~a(f,r)||s(f,r));return f}},18450:(t,e,r)=>{"use strict";var n=r(53726),o=r(89453);t.exports=Object.keys||function(t){return n(t,o)}},12867:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},57377:(t,e,r)=>{"use strict";var n=r(4493),o=r(16210),i=r(40033),a=r(44981);t.exports=n||!i((function(){if(!(a&&a<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete o[t]}}))},76649:(t,e,r)=>{"use strict";var n=r(38656),o=r(77568),i=r(16952),a=r(35908);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return i(r),a(n),o(r)?(e?t(r,n):r.__proto__=n,r):r}}():void 0)},70915:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033),i=r(67250),a=r(36917),u=r(18450),s=r(57591),c=i(r(12867).f),f=i([].push),l=n&&o((function(){var t=Object.create(null);return t[2]=2,!c(t,2)})),h=function(t){return function(e){for(var r,o=s(e),i=u(o),h=l&&null===a(o),p=i.length,y=0,d=[];p>y;)r=i[y++],n&&!(h?r in o:c(o,r))||f(d,t?[r,o[r]]:o[r]);return d}};t.exports={entries:h(!0),values:h(!1)}},2509:(t,e,r)=>{"use strict";var n=r(2650),o=r(2281);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},13396:(t,e,r)=>{"use strict";var n=r(91495),o=r(55747),i=r(77568),a=TypeError;t.exports=function(t,e){var r,u;if("string"===e&&o(r=t.toString)&&!i(u=n(r,t)))return u;if(o(r=t.valueOf)&&!i(u=n(r,t)))return u;if("string"!==e&&o(r=t.toString)&&!i(u=n(r,t)))return u;throw new a("Can't convert object to primitive value")}},97921:(t,e,r)=>{"use strict";var n=r(4009),o=r(67250),i=r(37310),a=r(89235),u=r(30365),s=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(u(t)),r=a.f;return r?s(e,r(t)):e}},61765:(t,e,r)=>{"use strict";var n=r(16210);t.exports=n},10729:t=>{"use strict";t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},74854:(t,e,r)=>{"use strict";var n=r(16210),o=r(67512),i=r(55747),a=r(41314),u=r(40492),s=r(24697),c=r(10753),f=r(4493),l=r(83141),h=o&&o.prototype,p=s("species"),y=!1,d=i(n.PromiseRejectionEvent),v=a("Promise",(function(){var t=u(o),e=t!==String(o);if(!e&&66===l)return!0;if(f&&(!h.catch||!h.finally))return!0;if(!l||l<51||!/native code/.test(t)){var r=new o((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[p]=n,!(y=r.then((function(){}))instanceof n))return!0}return!(e||"BROWSER"!==c&&"DENO"!==c||d)}));t.exports={CONSTRUCTOR:v,REJECTION_EVENT:d,SUBCLASSING:y}},67512:(t,e,r)=>{"use strict";var n=r(16210);t.exports=n.Promise},66628:(t,e,r)=>{"use strict";var n=r(30365),o=r(77568),i=r(81837);t.exports=function(t,e){if(n(t),o(e)&&e.constructor===t)return e;var r=i.f(t);return(0,r.resolve)(e),r.promise}},48199:(t,e,r)=>{"use strict";var n=r(67512),o=r(92490),i=r(74854).CONSTRUCTOR;t.exports=i||!o((function(t){n.all(t).then(void 0,(function(){}))}))},34550:(t,e,r)=>{"use strict";var n=r(74595).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},9547:t=>{"use strict";var e=function(){this.head=null,this.tail=null};e.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}},t.exports=e},28340:(t,e,r)=>{"use strict";var n=r(91495),o=r(30365),i=r(55747),a=r(7462),u=r(14489),s=TypeError;t.exports=function(t,e){var r=t.exec;if(i(r)){var c=n(r,t,e);return null!==c&&o(c),c}if("RegExp"===a(t))return n(u,t,e);throw new s("RegExp#exec called on incompatible receiver")}},14489:(t,e,r)=>{"use strict";var n,o,i=r(91495),a=r(67250),u=r(12605),s=r(70901),c=r(62115),f=r(16639),l=r(80674),h=r(5419).get,p=r(39173),y=r(35688),d=f("native-string-replace",String.prototype.replace),v=RegExp.prototype.exec,g=v,b=a("".charAt),m=a("".indexOf),w=a("".replace),x=a("".slice),k=(o=/b*/g,i(v,n=/a/,"a"),i(v,o,"a"),0!==n.lastIndex||0!==o.lastIndex),S=c.BROKEN_CARET,O=void 0!==/()??/.exec("")[1];(k||O||S||p||y)&&(g=function(t){var e,r,n,o,a,c,f,p=this,y=h(p),_=u(t),E=y.raw;if(E)return E.lastIndex=p.lastIndex,e=i(g,E,_),p.lastIndex=E.lastIndex,e;var A=y.groups,P=S&&p.sticky,j=i(s,p),T=p.source,M=0,R=_;if(P&&(j=w(j,"y",""),-1===m(j,"g")&&(j+="g"),R=x(_,p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==b(_,p.lastIndex-1))&&(T="(?: "+T+")",R=" "+R,M++),r=new RegExp("^(?:"+T+")",j)),O&&(r=new RegExp("^"+T+"$(?!\\s)",j)),k&&(n=p.lastIndex),o=i(v,P?r:p,R),P?o?(o.input=x(o.input,M),o[0]=x(o[0],M),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:k&&o&&(p.lastIndex=p.global?o.index+o[0].length:n),O&&o&&o.length>1&&i(d,o[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(o[a]=void 0)})),o&&A)for(o.groups=c=l(null),a=0;a<A.length;a++)c[(f=A[a])[0]]=o[f[1]];return o}),t.exports=g},70901:(t,e,r)=>{"use strict";var n=r(30365);t.exports=function(){var t=n(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e}},73392:(t,e,r)=>{"use strict";var n=r(91495),o=r(45299),i=r(21287),a=r(70901),u=RegExp.prototype;t.exports=function(t){var e=t.flags;return void 0!==e||"flags"in u||o(t,"flags")||!i(u,t)?e:n(a,t)}},62115:(t,e,r)=>{"use strict";var n=r(40033),o=r(16210).RegExp,i=n((function(){var t=o("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),a=i||n((function(){return!o("a","y").sticky})),u=i||n((function(){var t=o("^r","gy");return t.lastIndex=2,null!==t.exec("str")}));t.exports={BROKEN_CARET:u,MISSED_STICKY:a,UNSUPPORTED_Y:i}},39173:(t,e,r)=>{"use strict";var n=r(40033),o=r(16210).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)}))},35688:(t,e,r)=>{"use strict";var n=r(40033),o=r(16210).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},16952:(t,e,r)=>{"use strict";var n=r(42871),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},44915:(t,e,r)=>{"use strict";var n=r(16210),o=r(58310),i=Object.getOwnPropertyDescriptor;t.exports=function(t){if(!o)return n[t];var e=i(n,t);return e&&e.value}},5700:t=>{"use strict";t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},78362:(t,e,r)=>{"use strict";var n,o=r(16210),i=r(61267),a=r(55747),u=r(10753),s=r(83309),c=r(54602),f=r(24986),l=o.Function,h=/MSIE .\./.test(s)||"BUN"===u&&((n=o.Bun.version.split(".")).length<3||"0"===n[0]&&(n[1]<3||"3"===n[1]&&"0"===n[2]));t.exports=function(t,e){var r=e?2:1;return h?function(n,o){var u=f(arguments.length,1)>r,s=a(n)?n:l(n),h=u?c(arguments,r):[],p=u?function(){i(s,this,h)}:s;return e?t(p,o):t(p)}:t}},50960:(t,e,r)=>{"use strict";var n=r(13128),o=r(51551),i=n.Set,a=n.add;t.exports=function(t){var e=new i;return o(t,(function(t){a(e,t)})),e}},23710:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128),i=r(50960),a=r(79212),u=r(34099),s=r(51551),c=r(34825),f=o.has,l=o.remove;t.exports=function(t){var e=n(this),r=u(t),o=i(e);return a(e)<=r.size?s(e,(function(t){r.includes(t)&&l(o,t)})):c(r.getIterator(),(function(t){f(e,t)&&l(o,t)})),o}},13128:(t,e,r)=>{"use strict";var n=r(67250),o=Set.prototype;t.exports={Set,add:n(o.add),has:n(o.has),remove:n(o.delete),proto:o}},61752:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128),i=r(79212),a=r(34099),u=r(51551),s=r(34825),c=o.Set,f=o.add,l=o.has;t.exports=function(t){var e=n(this),r=a(t),o=new c;return i(e)>r.size?s(r.getIterator(),(function(t){l(e,t)&&f(o,t)})):u(e,(function(t){r.includes(t)&&f(o,t)})),o}},10979:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128).has,i=r(79212),a=r(34099),u=r(51551),s=r(34825),c=r(28649);t.exports=function(t){var e=n(this),r=a(t);if(i(e)<=r.size)return!1!==u(e,(function(t){if(r.includes(t))return!1}),!0);var f=r.getIterator();return!1!==s(f,(function(t){if(o(e,t))return c(f,"normal",!1)}))}},66040:(t,e,r)=>{"use strict";var n=r(71806),o=r(79212),i=r(51551),a=r(34099);t.exports=function(t){var e=n(this),r=a(t);return!(o(e)>r.size)&&!1!==i(e,(function(t){if(!r.includes(t))return!1}),!0)}},289:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128).has,i=r(79212),a=r(34099),u=r(34825),s=r(28649);t.exports=function(t){var e=n(this),r=a(t);if(i(e)<r.size)return!1;var c=r.getIterator();return!1!==u(c,(function(t){if(!o(e,t))return s(c,"normal",!1)}))}},51551:(t,e,r)=>{"use strict";var n=r(67250),o=r(34825),i=r(13128),a=i.Set,u=i.proto,s=n(u.forEach),c=n(u.keys),f=c(new a).next;t.exports=function(t,e,r){return r?o({iterator:c(t),next:f},e):s(t,e)}},94610:(t,e,r)=>{"use strict";var n=r(4009),o=function(t){return{size:t,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}};t.exports=function(t){var e=n("Set");try{(new e)[t](o(0));try{return(new e)[t](o(-1)),!1}catch(t){return!0}}catch(t){return!1}}},79212:(t,e,r)=>{"use strict";var n=r(38656),o=r(13128);t.exports=n(o.proto,"size","get")||function(t){return t.size}},58491:(t,e,r)=>{"use strict";var n=r(4009),o=r(73936),i=r(24697),a=r(58310),u=i("species");t.exports=function(t){var e=n(t);a&&e&&!e[u]&&o(e,u,{configurable:!0,get:function(){return this}})}},24052:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128),i=r(50960),a=r(34099),u=r(34825),s=o.add,c=o.has,f=o.remove;t.exports=function(t){var e=n(this),r=a(t).getIterator(),o=i(e);return u(r,(function(t){c(e,t)?f(o,t):s(o,t)})),o}},84925:(t,e,r)=>{"use strict";var n=r(74595).f,o=r(45299),i=r(24697)("toStringTag");t.exports=function(t,e,r){t&&!r&&(t=t.prototype),t&&!o(t,i)&&n(t,i,{configurable:!0,value:e})}},18630:(t,e,r)=>{"use strict";var n=r(71806),o=r(13128).add,i=r(50960),a=r(34099),u=r(34825);t.exports=function(t){var e=n(this),r=a(t).getIterator(),s=i(e);return u(r,(function(t){o(s,t)})),s}},19417:(t,e,r)=>{"use strict";var n=r(16639),o=r(16738),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},40095:(t,e,r)=>{"use strict";var n=r(4493),o=r(16210),i=r(18231),a="__core-js_shared__",u=t.exports=o[a]||i(a,{});(u.versions||(u.versions=[])).push({version:"3.39.0",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.39.0/LICENSE",source:"https://github.com/zloirock/core-js"})},16639:(t,e,r)=>{"use strict";var n=r(40095);t.exports=function(t,e){return n[t]||(n[t]=e||{})}},28987:(t,e,r)=>{"use strict";var n=r(30365),o=r(32606),i=r(42871),a=r(24697)("species");t.exports=function(t,e){var r,u=n(t).constructor;return void 0===u||i(r=n(u)[a])?e:o(r)}},88539:(t,e,r)=>{"use strict";var n=r(40033);t.exports=function(t){return n((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))}},50233:(t,e,r)=>{"use strict";var n=r(67250),o=r(61365),i=r(12605),a=r(16952),u=n("".charAt),s=n("".charCodeAt),c=n("".slice),f=function(t){return function(e,r){var n,f,l=i(a(e)),h=o(r),p=l.length;return h<0||h>=p?t?"":void 0:(n=s(l,h))<55296||n>56319||h+1===p||(f=s(l,h+1))<56320||f>57343?t?u(l,h):n:t?c(l,h,h+2):f-56320+(n-55296<<10)+65536}};t.exports={codeAt:f(!1),charAt:f(!0)}},34125:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)},24051:(t,e,r)=>{"use strict";var n=r(67250),o=r(10188),i=r(12605),a=r(62443),u=r(16952),s=n(a),c=n("".slice),f=Math.ceil,l=function(t){return function(e,r,n){var a,l,h=i(u(e)),p=o(r),y=h.length,d=void 0===n?" ":i(n);return p<=y||""===d?h:((l=s(d,f((a=p-y)/d.length))).length>a&&(l=c(l,0,a)),t?h+l:l+h)}};t.exports={start:l(!1),end:l(!0)}},74915:(t,e,r)=>{"use strict";var n=r(67250),o=2147483647,i=/[^\0-\u007E]/,a=/[.\u3002\uFF0E\uFF61]/g,u="Overflow: input needs wider integers to process",s=RangeError,c=n(a.exec),f=Math.floor,l=String.fromCharCode,h=n("".charCodeAt),p=n([].join),y=n([].push),d=n("".replace),v=n("".split),g=n("".toLowerCase),b=function(t){return t+22+75*(t<26)},m=function(t,e,r){var n=0;for(t=r?f(t/700):t>>1,t+=f(t/e);t>455;)t=f(t/35),n+=36;return f(n+36*t/(t+38))},w=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var o=h(t,r++);if(o>=55296&&o<=56319&&r<n){var i=h(t,r++);56320==(64512&i)?y(e,((1023&o)<<10)+(1023&i)+65536):(y(e,o),r--)}else y(e,o)}return e}(t);var r,n,i=t.length,a=128,c=0,d=72;for(r=0;r<t.length;r++)(n=t[r])<128&&y(e,l(n));var v=e.length,g=v;for(v&&y(e,"-");g<i;){var w=o;for(r=0;r<t.length;r++)(n=t[r])>=a&&n<w&&(w=n);var x=g+1;if(w-a>f((o-c)/x))throw new s(u);for(c+=(w-a)*x,a=w,r=0;r<t.length;r++){if((n=t[r])<a&&++c>o)throw new s(u);if(n===a){for(var k=c,S=36;;){var O=S<=d?1:S>=d+26?26:S-d;if(k<O)break;var _=k-O,E=36-O;y(e,l(b(O+_%E))),k=f(_/E),S+=36}y(e,l(b(k))),d=m(c,x,g===v),c=0,g++}}c++,a++}return p(e,"")};t.exports=function(t){var e,r,n=[],o=v(d(g(t),a,"."),".");for(e=0;e<o.length;e++)r=o[e],y(n,c(i,r)?"xn--"+w(r):r);return p(n,".")}},62443:(t,e,r)=>{"use strict";var n=r(61365),o=r(12605),i=r(16952),a=RangeError;t.exports=function(t){var e=o(i(this)),r="",u=n(t);if(u<0||u===1/0)throw new a("Wrong number of repetitions");for(;u>0;(u>>>=1)&&(e+=e))1&u&&(r+=e);return r}},43476:(t,e,r)=>{"use strict";var n=r(92648).end,o=r(90012);t.exports=o("trimEnd")?function(){return n(this)}:"".trimEnd},90012:(t,e,r)=>{"use strict";var n=r(70520).PROPER,o=r(40033),i=r(4198);t.exports=function(t){return o((function(){return!!i[t]()||"
"!=="
"[t]()||n&&i[t].name!==t}))}},43885:(t,e,r)=>{"use strict";var n=r(92648).start,o=r(90012);t.exports=o("trimStart")?function(){return n(this)}:"".trimStart},92648:(t,e,r)=>{"use strict";var n=r(67250),o=r(16952),i=r(12605),a=r(4198),u=n("".replace),s=RegExp("^["+a+"]+"),c=RegExp("(^|[^"+a+"])["+a+"]+$"),f=function(t){return function(e){var r=i(o(e));return 1&t&&(r=u(r,s,"")),2&t&&(r=u(r,c,"$1")),r}};t.exports={start:f(1),end:f(2),trim:f(3)}},8534:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(83141),a=r(10753),u=n.structuredClone;t.exports=!!u&&!o((function(){if("DENO"===a&&i>92||"NODE"===a&&i>94||"BROWSER"===a&&i>97)return!1;var t=new ArrayBuffer(8),e=u(t,{transfer:[t]});return 0!==t.byteLength||8!==e.byteLength}))},52357:(t,e,r)=>{"use strict";var n=r(83141),o=r(40033),i=r(16210).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},52360:(t,e,r)=>{"use strict";var n=r(91495),o=r(4009),i=r(24697),a=r(55938);t.exports=function(){var t=o("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,u=i("toPrimitive");e&&!e[u]&&a(e,u,(function(t){return n(r,this)}),{arity:1})}},66570:(t,e,r)=>{"use strict";var n=r(52357);t.exports=n&&!!Symbol.for&&!!Symbol.keyFor},60375:(t,e,r)=>{"use strict";var n,o,i,a,u=r(16210),s=r(61267),c=r(75754),f=r(55747),l=r(45299),h=r(40033),p=r(5315),y=r(54602),d=r(12689),v=r(24986),g=r(27770),b=r(81663),m=u.setImmediate,w=u.clearImmediate,x=u.process,k=u.Dispatch,S=u.Function,O=u.MessageChannel,_=u.String,E=0,A={},P="onreadystatechange";h((function(){n=u.location}));var j=function(t){if(l(A,t)){var e=A[t];delete A[t],e()}},T=function(t){return function(){j(t)}},M=function(t){j(t.data)},R=function(t){u.postMessage(_(t),n.protocol+"//"+n.host)};m&&w||(m=function(t){v(arguments.length,1);var e=f(t)?t:S(t),r=y(arguments,1);return A[++E]=function(){s(e,void 0,r)},o(E),E},w=function(t){delete A[t]},b?o=function(t){x.nextTick(T(t))}:k&&k.now?o=function(t){k.now(T(t))}:O&&!g?(a=(i=new O).port2,i.port1.onmessage=M,o=c(a.postMessage,a)):u.addEventListener&&f(u.postMessage)&&!u.importScripts&&n&&"file:"!==n.protocol&&!h(R)?(o=R,u.addEventListener("message",M,!1)):o=P in d("script")?function(t){p.appendChild(d("script"))[P]=function(){p.removeChild(this),j(t)}}:function(t){setTimeout(T(t),0)}),t.exports={set:m,clear:w}},46438:(t,e,r)=>{"use strict";var n=r(67250);t.exports=n(1..valueOf)},13912:(t,e,r)=>{"use strict";var n=r(61365),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},61484:(t,e,r)=>{"use strict";var n=r(24843),o=TypeError;t.exports=function(t){var e=n(t,"number");if("number"==typeof e)throw new o("Can't convert number to bigint");return BigInt(e)}},43806:(t,e,r)=>{"use strict";var n=r(61365),o=r(10188),i=RangeError;t.exports=function(t){if(void 0===t)return 0;var e=n(t),r=o(e);if(e!==r)throw new i("Wrong length or index");return r}},57591:(t,e,r)=>{"use strict";var n=r(37457),o=r(16952);t.exports=function(t){return n(o(t))}},61365:(t,e,r)=>{"use strict";var n=r(21119);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},10188:(t,e,r)=>{"use strict";var n=r(61365),o=Math.min;t.exports=function(t){var e=n(t);return e>0?o(e,9007199254740991):0}},46771:(t,e,r)=>{"use strict";var n=r(16952),o=Object;t.exports=function(t){return o(n(t))}},56043:(t,e,r)=>{"use strict";var n=r(16140),o=RangeError;t.exports=function(t,e){var r=n(t);if(r%e)throw new o("Wrong offset");return r}},16140:(t,e,r)=>{"use strict";var n=r(61365),o=RangeError;t.exports=function(t){var e=n(t);if(e<0)throw new o("The argument can't be less than 0");return e}},24843:(t,e,r)=>{"use strict";var n=r(91495),o=r(77568),i=r(71399),a=r(78060),u=r(13396),s=r(24697),c=TypeError,f=s("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,s=a(t,f);if(s){if(void 0===e&&(e="default"),r=n(s,t,e),!o(r)||i(r))return r;throw new c("Can't convert object to primitive value")}return void 0===e&&(e="number"),u(t,e)}},767:(t,e,r)=>{"use strict";var n=r(24843),o=r(71399);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},2650:(t,e,r)=>{"use strict";var n={};n[r(24697)("toStringTag")]="z",t.exports="[object z]"===String(n)},12605:(t,e,r)=>{"use strict";var n=r(2281),o=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},15409:t=>{"use strict";var e=Math.round;t.exports=function(t){var r=e(t);return r<0?0:r>255?255:255&r}},89393:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},80185:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(91495),a=r(58310),u=r(86563),s=r(4246),c=r(37336),f=r(60077),l=r(87458),h=r(37909),p=r(5841),y=r(10188),d=r(43806),v=r(56043),g=r(15409),b=r(767),m=r(45299),w=r(2281),x=r(77568),k=r(71399),S=r(80674),O=r(21287),_=r(76649),E=r(37310).f,A=r(3805),P=r(22603).forEach,j=r(58491),T=r(73936),M=r(74595),R=r(27193),I=r(78008),C=r(5419),L=r(5781),D=C.get,B=C.set,N=C.enforce,F=M.f,z=R.f,U=o.RangeError,Y=c.ArrayBuffer,G=Y.prototype,H=c.DataView,W=s.NATIVE_ARRAY_BUFFER_VIEWS,X=s.TYPED_ARRAY_TAG,q=s.TypedArray,V=s.TypedArrayPrototype,Q=s.isTypedArray,K="BYTES_PER_ELEMENT",J="Wrong length",Z=function(t,e){T(t,e,{configurable:!0,get:function(){return D(this)[e]}})},$=function(t){var e;return O(G,t)||"ArrayBuffer"===(e=w(t))||"SharedArrayBuffer"===e},tt=function(t,e){return Q(t)&&!k(e)&&e in t&&p(+e)&&e>=0},et=function(t,e){return e=b(e),tt(t,e)?l(2,t[e]):z(t,e)},rt=function(t,e,r){return e=b(e),!(tt(t,e)&&x(r)&&m(r,"value"))||m(r,"get")||m(r,"set")||r.configurable||m(r,"writable")&&!r.writable||m(r,"enumerable")&&!r.enumerable?F(t,e,r):(t[e]=r.value,t)};a?(W||(R.f=et,M.f=rt,Z(V,"buffer"),Z(V,"byteOffset"),Z(V,"byteLength"),Z(V,"length")),n({target:"Object",stat:!0,forced:!W},{getOwnPropertyDescriptor:et,defineProperty:rt}),t.exports=function(t,e,r){var a=t.match(/\d+/)[0]/8,s=t+(r?"Clamped":"")+"Array",c="get"+t,l="set"+t,p=o[s],b=p,m=b&&b.prototype,w={},k=function(t,e){F(t,e,{get:function(){return function(t,e){var r=D(t);return r.view[c](e*a+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,n){var o=D(t);o.view[l](e*a+o.byteOffset,r?g(n):n,!0)}(this,e,t)},enumerable:!0})};W?u&&(b=e((function(t,e,r,n){return f(t,m),L(x(e)?$(e)?void 0!==n?new p(e,v(r,a),n):void 0!==r?new p(e,v(r,a)):new p(e):Q(e)?I(b,e):i(A,b,e):new p(d(e)),t,b)})),_&&_(b,q),P(E(p),(function(t){t in b||h(b,t,p[t])})),b.prototype=m):(b=e((function(t,e,r,n){f(t,m);var o,u,s,c=0,l=0;if(x(e)){if(!$(e))return Q(e)?I(b,e):i(A,b,e);o=e,l=v(r,a);var h=e.byteLength;if(void 0===n){if(h%a)throw new U(J);if((u=h-l)<0)throw new U(J)}else if((u=y(n)*a)+l>h)throw new U(J);s=u/a}else s=d(e),o=new Y(u=s*a);for(B(t,{buffer:o,byteOffset:l,byteLength:u,length:s,view:new H(o)});c<s;)k(t,c++)})),_&&_(b,q),m=b.prototype=S(V)),m.constructor!==b&&h(m,"constructor",b),N(m).TypedArrayConstructor=b,X&&h(m,X,s);var O=b!==p;w[s]=b,n({global:!0,constructor:!0,forced:O,sham:!W},w),K in b||h(b,K,a),K in m||h(m,K,a),j(s)}):t.exports=function(){}},86563:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(92490),a=r(4246).NATIVE_ARRAY_BUFFER_VIEWS,u=n.ArrayBuffer,s=n.Int8Array;t.exports=!a||!o((function(){s(1)}))||!o((function(){new s(-1)}))||!i((function(t){new s,new s(null),new s(1.5),new s(t)}),!0)||o((function(){return 1!==new s(new u(2),1,void 0).length}))},60398:(t,e,r)=>{"use strict";var n=r(78008),o=r(4246).getTypedArrayConstructor;t.exports=function(t,e){return n(o(t),e)}},3805:(t,e,r)=>{"use strict";var n=r(75754),o=r(91495),i=r(32606),a=r(46771),u=r(24760),s=r(77455),c=r(59201),f=r(76571),l=r(40221),h=r(4246).aTypedArrayConstructor,p=r(61484);t.exports=function(t){var e,r,y,d,v,g,b,m,w=i(this),x=a(t),k=arguments.length,S=k>1?arguments[1]:void 0,O=void 0!==S,_=c(x);if(_&&!f(_))for(m=(b=s(x,_)).next,x=[];!(g=o(m,b)).done;)x.push(g.value);for(O&&k>2&&(S=n(S,arguments[2])),r=u(x),y=new(h(w))(r),d=l(y),e=0;r>e;e++)v=O?S(x[e],e):x[e],y[e]=d?p(v):+v;return y}},16738:(t,e,r)=>{"use strict";var n=r(67250),o=0,i=Math.random(),a=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},92178:(t,e,r)=>{"use strict";var n=r(40033),o=r(24697),i=r(58310),a=r(4493),u=o("iterator");t.exports=!n((function(){var t=new URL("b?a=1&b=2&c=3","https://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),a&&(!t.toJSON||!r.has("a",1)||r.has("a",2)||!r.has("a",void 0)||r.has("b"))||!e.size&&(a||!i)||!e.sort||"https://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[u]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("https://тест").host||"#%D0%B1"!==new URL("https://a#б").hash||"a1c3"!==n||"x"!==new URL("https://x",void 0).host}))},1062:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}var o=r(52357);t.exports=o&&!Symbol.sham&&"symbol"==n(Symbol.iterator)},80944:(t,e,r)=>{"use strict";var n=r(58310),o=r(40033);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},24986:t=>{"use strict";var e=TypeError;t.exports=function(t,r){if(t<r)throw new e("Not enough arguments");return t}},21820:(t,e,r)=>{"use strict";var n=r(16210),o=r(55747),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},85889:(t,e,r)=>{"use strict";var n=r(61765),o=r(45299),i=r(55557),a=r(74595).f;t.exports=function(t){var e=n.Symbol||(n.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},55557:(t,e,r)=>{"use strict";var n=r(24697);e.f=n},24697:(t,e,r)=>{"use strict";var n=r(16210),o=r(16639),i=r(45299),a=r(16738),u=r(52357),s=r(1062),c=n.Symbol,f=o("wks"),l=s?c.for||c:c&&c.withoutSetter||a;t.exports=function(t){return i(f,t)||(f[t]=u&&i(c,t)?c[t]:l("Symbol."+t)),f[t]}},4198:t=>{"use strict";t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},76151:(t,e,r)=>{"use strict";var n=r(4009),o=r(45299),i=r(37909),a=r(21287),u=r(76649),s=r(5774),c=r(34550),f=r(5781),l=r(75577),h=r(69946),p=r(40505),y=r(58310),d=r(4493);t.exports=function(t,e,r,v){var g="stackTraceLimit",b=v?2:1,m=t.split("."),w=m[m.length-1],x=n.apply(null,m);if(x){var k=x.prototype;if(!d&&o(k,"cause")&&delete k.cause,!r)return x;var S=n("Error"),O=e((function(t,e){var r=l(v?e:t,void 0),n=v?new x(t):new x;return void 0!==r&&i(n,"message",r),p(n,O,n.stack,2),this&&a(k,this)&&f(n,this,O),arguments.length>b&&h(n,arguments[b]),n}));if(O.prototype=k,"Error"!==w?u?u(O,S):s(O,S,{name:!0}):y&&g in x&&(c(O,x,g),c(O,x,"prepareStackTrace")),s(O,x),!d)try{k.name!==w&&i(k,"name",w),k.constructor=O}catch(t){}return O}}},6864:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(61267),a=r(40033),u=r(76151),s="AggregateError",c=o(s),f=!a((function(){return 1!==c([1]).errors[0]}))&&a((function(){return 7!==c([1],s,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:f},{AggregateError:u(s,(function(t){return function(e,r){return i(t,this,arguments)}}),f,!0)})},66587:(t,e,r)=>{"use strict";var n=r(63964),o=r(21287),i=r(36917),a=r(76649),u=r(5774),s=r(80674),c=r(37909),f=r(87458),l=r(69946),h=r(40505),p=r(49450),y=r(75577),d=r(24697)("toStringTag"),v=Error,g=[].push,b=function(t,e){var r,n=o(m,this);a?r=a(new v,n?i(this):m):(r=n?this:s(m),c(r,d,"Error")),void 0!==e&&c(r,"message",y(e)),h(r,b,r.stack,1),arguments.length>2&&l(r,arguments[2]);var u=[];return p(t,g,{that:u}),c(r,"errors",u),r};a?a(b,v):u(b,v,{name:!0});var m=b.prototype=s(v.prototype,{constructor:f(1,b),message:f(1,""),name:f(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:b})},43345:(t,e,r)=>{"use strict";r(66587)},75621:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(37336),a=r(58491),u="ArrayBuffer",s=i[u];n({global:!0,constructor:!0,forced:o[u]!==s},{ArrayBuffer:s}),a(u)},30603:(t,e,r)=>{"use strict";var n=r(58310),o=r(73936),i=r(85092),a=ArrayBuffer.prototype;n&&!("detached"in a)&&o(a,"detached",{configurable:!0,get:function(){return i(this)}})},26267:(t,e,r)=>{"use strict";var n=r(63964),o=r(4246);n({target:"ArrayBuffer",stat:!0,forced:!o.NATIVE_ARRAY_BUFFER_VIEWS},{isView:o.isView})},50095:(t,e,r)=>{"use strict";var n=r(63964),o=r(71138),i=r(40033),a=r(37336),u=r(30365),s=r(13912),c=r(10188),f=a.ArrayBuffer,l=a.DataView,h=l.prototype,p=o(f.prototype.slice),y=o(h.getUint8),d=o(h.setUint8);n({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:i((function(){return!new f(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(p&&void 0===e)return p(u(this),t);for(var r=u(this).byteLength,n=s(t,r),o=s(void 0===e?r:e,r),i=new f(c(o-n)),a=new l(this),h=new l(i),v=0;n<o;)d(h,v++,y(a,n++));return i}})},52326:(t,e,r)=>{"use strict";var n=r(63964),o=r(61562);o&&n({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return o(this,arguments.length?arguments[0]:void 0,!1)}})},29362:(t,e,r)=>{"use strict";var n=r(63964),o=r(61562);o&&n({target:"ArrayBuffer",proto:!0},{transfer:function(){return o(this,arguments.length?arguments[0]:void 0,!0)}})},43825:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(24760),a=r(61365),u=r(80575);n({target:"Array",proto:!0},{at:function(t){var e=o(this),r=i(e),n=a(t),u=n>=0?n:r+n;return u<0||u>=r?void 0:e[u]}}),u("at")},39600:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(37386),a=r(77568),u=r(46771),s=r(24760),c=r(21291),f=r(60102),l=r(57823),h=r(44091),p=r(24697),y=r(83141),d=p("isConcatSpreadable"),v=y>=51||!o((function(){var t=[];return t[d]=!1,t.concat()[0]!==t})),g=function(t){if(!a(t))return!1;var e=t[d];return void 0!==e?!!e:i(t)};n({target:"Array",proto:!0,arity:1,forced:!v||!h("concat")},{concat:function(t){var e,r,n,o,i,a=u(this),h=l(a,0),p=0;for(e=-1,n=arguments.length;e<n;e++)if(g(i=-1===e?a:arguments[e]))for(o=s(i),c(p+o),r=0;r<o;r++,p++)r in i&&f(h,p,i[r]);else c(p+1),f(h,p++,i);return h.length=p,h}})},93237:(t,e,r)=>{"use strict";var n=r(63964),o=r(71447),i=r(80575);n({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},32057:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).every;n({target:"Array",proto:!0,forced:!r(55528)("every")},{every:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},68933:(t,e,r)=>{"use strict";var n=r(63964),o=r(88471),i=r(80575);n({target:"Array",proto:!0},{fill:o}),i("fill")},47830:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).filter;n({target:"Array",proto:!0,forced:!r(44091)("filter")},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},64094:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).findIndex,i=r(80575),a="findIndex",u=!0;a in[]&&Array(1)[a]((function(){u=!1})),n({target:"Array",proto:!0,forced:u},{findIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},15381:(t,e,r)=>{"use strict";var n=r(63964),o=r(77389).findLastIndex,i=r(80575);n({target:"Array",proto:!0},{findLastIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLastIndex")},43620:(t,e,r)=>{"use strict";var n=r(63964),o=r(77389).findLast,i=r(80575);n({target:"Array",proto:!0},{findLast:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLast")},13455:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).find,i=r(80575),a="find",u=!0;a in[]&&Array(1)[a]((function(){u=!1})),n({target:"Array",proto:!0,forced:u},{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},32384:(t,e,r)=>{"use strict";var n=r(63964),o=r(65561),i=r(10320),a=r(46771),u=r(24760),s=r(57823);n({target:"Array",proto:!0},{flatMap:function(t){var e,r=a(this),n=u(r);return i(t),(e=s(r,0)).length=o(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}})},61915:(t,e,r)=>{"use strict";var n=r(63964),o=r(65561),i=r(46771),a=r(24760),u=r(61365),s=r(57823);n({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=i(this),r=a(e),n=s(e,0);return n.length=o(n,e,e,r,0,void 0===t?1:u(t)),n}})},25579:(t,e,r)=>{"use strict";var n=r(63964),o=r(35601);n({target:"Array",proto:!0,forced:[].forEach!==o},{forEach:o})},63532:(t,e,r)=>{"use strict";var n=r(63964),o=r(73174);n({target:"Array",stat:!0,forced:!r(92490)((function(t){Array.from(t)}))},{from:o})},33425:(t,e,r)=>{"use strict";var n=r(63964),o=r(14211).includes,i=r(40033),a=r(80575);n({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),a("includes")},43894:(t,e,r)=>{"use strict";var n=r(63964),o=r(71138),i=r(14211).indexOf,a=r(55528),u=o([].indexOf),s=!!u&&1/u([1],1,-0)<0;n({target:"Array",proto:!0,forced:s||!a("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return s?u(this,t,e)||0:i(this,t,e)}})},99636:(t,e,r)=>{"use strict";r(63964)({target:"Array",stat:!0},{isArray:r(37386)})},34570:(t,e,r)=>{"use strict";var n=r(57591),o=r(80575),i=r(83967),a=r(5419),u=r(74595).f,s=r(65574),c=r(5959),f=r(4493),l=r(58310),h="Array Iterator",p=a.set,y=a.getterFor(h);t.exports=s(Array,"Array",(function(t,e){p(this,{type:h,target:n(t),index:0,kind:e})}),(function(){var t=y(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,c(void 0,!0);switch(t.kind){case"keys":return c(r,!1);case"values":return c(e[r],!1)}return c([r,e[r]],!1)}),"values");var d=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!f&&l&&"values"!==d.name)try{u(d,"name",{value:"values"})}catch(t){}},94432:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(37457),a=r(57591),u=r(55528),s=o([].join);n({target:"Array",proto:!0,forced:i!==Object||!u("join",",")},{join:function(t){return s(a(this),void 0===t?",":t)}})},24683:(t,e,r)=>{"use strict";var n=r(63964),o=r(1325);n({target:"Array",proto:!0,forced:o!==[].lastIndexOf},{lastIndexOf:o})},69984:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).map;n({target:"Array",proto:!0,forced:!r(44091)("map")},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},32089:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(1031),a=r(60102),u=Array;n({target:"Array",stat:!0,forced:o((function(){function t(){}return!(u.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(i(this)?this:u)(e);e>t;)a(r,t,arguments[t++]);return r.length=e,r}})},11684:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(24760),a=r(13345),u=r(21291);n({target:"Array",proto:!0,arity:1,forced:r(40033)((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=o(this),r=i(e),n=arguments.length;u(r+n);for(var s=0;s<n;s++)e[r]=arguments[s],r++;return a(e,r),r}})},29645:(t,e,r)=>{"use strict";var n=r(63964),o=r(56844).right,i=r(55528),a=r(83141);n({target:"Array",proto:!0,forced:!r(81663)&&a>79&&a<83||!i("reduceRight")},{reduceRight:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},60206:(t,e,r)=>{"use strict";var n=r(63964),o=r(56844).left,i=r(55528),a=r(83141);n({target:"Array",proto:!0,forced:!r(81663)&&a>79&&a<83||!i("reduce")},{reduce:function(t){var e=arguments.length;return o(this,t,e,e>1?arguments[1]:void 0)}})},4788:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(37386),a=o([].reverse),u=[1,2];n({target:"Array",proto:!0,forced:String(u)===String(u.reverse())},{reverse:function(){return i(this)&&(this.length=this.length),a(this)}})},58672:(t,e,r)=>{"use strict";var n=r(63964),o=r(37386),i=r(1031),a=r(77568),u=r(13912),s=r(24760),c=r(57591),f=r(60102),l=r(24697),h=r(44091),p=r(54602),y=h("slice"),d=l("species"),v=Array,g=Math.max;n({target:"Array",proto:!0,forced:!y},{slice:function(t,e){var r,n,l,h=c(this),y=s(h),b=u(t,y),m=u(void 0===e?y:e,y);if(o(h)&&(r=h.constructor,(i(r)&&(r===v||o(r.prototype))||a(r)&&null===(r=r[d]))&&(r=void 0),r===v||void 0===r))return p(h,b,m);for(n=new(void 0===r?v:r)(g(m-b,0)),l=0;b<m;b++,l++)b in h&&f(n,l,h[b]);return n.length=l,n}})},19356:(t,e,r)=>{"use strict";var n=r(63964),o=r(22603).some;n({target:"Array",proto:!0,forced:!r(55528)("some")},{some:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},48968:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(10320),a=r(46771),u=r(24760),s=r(95108),c=r(12605),f=r(40033),l=r(90274),h=r(55528),p=r(50503),y=r(79725),d=r(83141),v=r(44981),g=[],b=o(g.sort),m=o(g.push),w=f((function(){g.sort(void 0)})),x=f((function(){g.sort(null)})),k=h("sort"),S=!f((function(){if(d)return d<70;if(!(p&&p>3)){if(y)return!0;if(v)return v<603;var t,e,r,n,o="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)g.push({k:e+n,v:r})}for(g.sort((function(t,e){return e.v-t.v})),n=0;n<g.length;n++)e=g[n].k.charAt(0),o.charAt(o.length-1)!==e&&(o+=e);return"DGBEFHACIJK"!==o}}));n({target:"Array",proto:!0,forced:w||!x||!k||!S},{sort:function(t){void 0!==t&&i(t);var e=a(this);if(S)return void 0===t?b(e):b(e,t);var r,n,o=[],f=u(e);for(n=0;n<f;n++)n in e&&m(o,e[n]);for(l(o,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:c(e)>c(r)?1:-1}}(t)),r=u(o),n=0;n<r;)e[n]=o[n++];for(;n<f;)s(e,n++);return e}})},49852:(t,e,r)=>{"use strict";r(58491)("Array")},2712:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(13912),a=r(61365),u=r(24760),s=r(13345),c=r(21291),f=r(57823),l=r(60102),h=r(95108),p=r(44091)("splice"),y=Math.max,d=Math.min;n({target:"Array",proto:!0,forced:!p},{splice:function(t,e){var r,n,p,v,g,b,m=o(this),w=u(m),x=i(t,w),k=arguments.length;for(0===k?r=n=0:1===k?(r=0,n=w-x):(r=k-2,n=d(y(a(e),0),w-x)),c(w+r-n),p=f(m,n),v=0;v<n;v++)(g=x+v)in m&&l(p,v,m[g]);if(p.length=n,r<n){for(v=x;v<w-n;v++)b=v+r,(g=v+n)in m?m[b]=m[g]:h(m,b);for(v=w;v>w-n+r;v--)h(m,v-1)}else if(r>n)for(v=w-n;v>x;v--)b=v+r-1,(g=v+n-1)in m?m[b]=m[g]:h(m,b);for(v=0;v<r;v++)m[v+x]=arguments[v+2];return s(m,w-n+r),p}})},26828:(t,e,r)=>{"use strict";var n=r(63964),o=r(81354),i=r(57591),a=r(80575),u=Array;n({target:"Array",proto:!0},{toReversed:function(){return o(i(this),u)}}),a("toReversed")},79243:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(10320),a=r(57591),u=r(78008),s=r(24466),c=r(80575),f=Array,l=o(s("Array","sort"));n({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&i(t);var e=a(this),r=u(f,e);return l(r,t)}}),c("toSorted")},63692:(t,e,r)=>{"use strict";var n=r(63964),o=r(80575),i=r(21291),a=r(24760),u=r(13912),s=r(57591),c=r(61365),f=Array,l=Math.max,h=Math.min;n({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,o,p,y=s(this),d=a(y),v=u(t,d),g=arguments.length,b=0;for(0===g?r=n=0:1===g?(r=0,n=d-v):(r=g-2,n=h(l(c(e),0),d-v)),o=i(d+r-n),p=f(o);b<v;b++)p[b]=y[b];for(;b<v+r;b++)p[b]=arguments[b-v+2];for(;b<o;b++)p[b]=y[b+n-r];return p}}),o("toSpliced")},54243:(t,e,r)=>{"use strict";r(80575)("flatMap")},864:(t,e,r)=>{"use strict";r(80575)("flat")},11519:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(24760),a=r(13345),u=r(95108),s=r(21291);n({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=o(this),r=i(e),n=arguments.length;if(n){s(r+n);for(var c=r;c--;){var f=c+n;c in e?e[f]=e[c]:u(e,f)}for(var l=0;l<n;l++)e[l]=arguments[l]}return a(e,r+n)}})},71016:(t,e,r)=>{"use strict";var n=r(63964),o=r(85370),i=r(57591),a=Array;n({target:"Array",proto:!0},{with:function(t,e){return o(i(this),a,t,e)}})},21265:(t,e,r)=>{"use strict";var n=r(63964),o=r(37336);n({global:!0,constructor:!0,forced:!r(70377)},{DataView:o.DataView})},33451:(t,e,r)=>{"use strict";r(21265)},36629:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(40033)((function(){return 120!==new Date(16e11).getYear()})),a=o(Date.prototype.getFullYear);n({target:"Date",proto:!0,forced:i},{getYear:function(){return a(this)-1900}})},74587:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=Date,a=o(i.prototype.getTime);n({target:"Date",stat:!0},{now:function(){return a(new i)}})},80329:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(61365),a=Date.prototype,u=o(a.getTime),s=o(a.setFullYear);n({target:"Date",proto:!0},{setYear:function(t){u(this);var e=i(t);return s(this,e>=0&&e<=99?e+1900:e)}})},66777:(t,e,r)=>{"use strict";r(63964)({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString})},25082:(t,e,r)=>{"use strict";var n=r(63964),o=r(67206);n({target:"Date",proto:!0,forced:Date.prototype.toISOString!==o},{toISOString:o})},47421:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(46771),a=r(24843);n({target:"Date",proto:!0,arity:1,forced:o((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=i(this),r=a(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}})},32122:(t,e,r)=>{"use strict";var n=r(45299),o=r(55938),i=r(10886),a=r(24697)("toPrimitive"),u=Date.prototype;n(u,a)||o(u,a,i)},6306:(t,e,r)=>{"use strict";var n=r(67250),o=r(55938),i=Date.prototype,a="Invalid Date",u="toString",s=n(i[u]),c=n(i.getTime);String(new Date(NaN))!==a&&o(i,u,(function(){var t=c(this);return t==t?s(this):a}))},55474:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(61267),a=r(76151),u="WebAssembly",s=o[u],c=7!==new Error("e",{cause:7}).cause,f=function(t,e){var r={};r[t]=a(t,e,c),n({global:!0,constructor:!0,arity:1,forced:c},r)},l=function(t,e){if(s&&s[t]){var r={};r[t]=a(u+"."+t,e,c),n({target:u,stat:!0,constructor:!0,arity:1,forced:c},r)}};f("Error",(function(t){return function(e){return i(t,this,arguments)}})),f("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),f("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),f("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),f("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),f("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),f("URIError",(function(t){return function(e){return i(t,this,arguments)}})),l("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),l("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),l("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},12612:(t,e,r)=>{"use strict";var n=r(55938),o=r(44790),i=Error.prototype;i.toString!==o&&n(i,"toString",o)},26338:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(12605),a=o("".charAt),u=o("".charCodeAt),s=o(/./.exec),c=o(1..toString),f=o("".toUpperCase),l=/[\w*+\-./@]/,h=function(t,e){for(var r=c(t,16);r.length<e;)r="0"+r;return r};n({global:!0},{escape:function(t){for(var e,r,n=i(t),o="",c=n.length,p=0;p<c;)e=a(n,p++),s(l,e)?o+=e:o+=(r=u(e,0))<256?"%"+h(r,2):"%u"+f(h(r,4));return o}})},90216:(t,e,r)=>{"use strict";var n=r(63964),o=r(66284);n({target:"Function",proto:!0,forced:Function.bind!==o},{bind:o})},84663:(t,e,r)=>{"use strict";var n=r(55747),o=r(77568),i=r(74595),a=r(21287),u=r(24697),s=r(20001),c=u("hasInstance"),f=Function.prototype;c in f||i.f(f,c,{value:s((function(t){if(!n(this)||!o(t))return!1;var e=this.prototype;return o(e)?a(e,t):t instanceof this}),c)})},92332:(t,e,r)=>{"use strict";var n=r(58310),o=r(70520).EXISTS,i=r(67250),a=r(73936),u=Function.prototype,s=i(u.toString),c=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,f=i(c.exec);n&&!o&&a(u,"name",{configurable:!0,get:function(){try{return f(c,s(this))[1]}catch(t){return""}}})},52631:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210);n({global:!0,forced:o.globalThis!==o},{globalThis:o})},17993:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(60077),a=r(30365),u=r(55747),s=r(36917),c=r(73936),f=r(60102),l=r(40033),h=r(45299),p=r(24697),y=r(67635).IteratorPrototype,d=r(58310),v=r(4493),g="constructor",b="Iterator",m=p("toStringTag"),w=TypeError,x=o[b],k=v||!u(x)||x.prototype!==y||!l((function(){x({})})),S=function(){if(i(this,y),s(this)===y)throw new w("Abstract class Iterator not directly constructable")},O=function(t,e){d?c(y,t,{configurable:!0,get:function(){return e},set:function(e){if(a(this),this===y)throw new w("You can't redefine this property");h(this,t)?this[t]=e:f(this,t,e)}}):y[t]=e};h(y,m)||O(m,b),!k&&h(y,g)&&y[g]!==Object||O(g,S),S.prototype=y,n({global:!0,constructor:!0,forced:k},{Iterator:S})},12304:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(30365),a=r(79521),u=r(37567),s=r(16140),c=r(56860),f=r(4493),l=c((function(){for(var t,e=this.iterator,r=this.next;this.remaining;)if(this.remaining--,t=i(o(r,e)),this.done=!!t.done)return;if(t=i(o(r,e)),!(this.done=!!t.done))return t.value}));n({target:"Iterator",proto:!0,real:!0,forced:f},{drop:function(t){i(this);var e=s(u(+t));return new l(a(this),{remaining:e})}})},93782:(t,e,r)=>{"use strict";var n=r(63964),o=r(49450),i=r(10320),a=r(30365),u=r(79521);n({target:"Iterator",proto:!0,real:!0},{every:function(t){a(this),i(t);var e=u(this),r=0;return!o(e,(function(e,n){if(!t(e,r++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},27295:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(30365),u=r(79521),s=r(56860),c=r(40125),f=r(4493),l=s((function(){for(var t,e,r=this.iterator,n=this.predicate,i=this.next;;){if(t=a(o(i,r)),this.done=!!t.done)return;if(e=t.value,c(r,n,[e,this.counter++],!0))return e}}));n({target:"Iterator",proto:!0,real:!0,forced:f},{filter:function(t){return a(this),i(t),new l(u(this),{predicate:t})}})},52706:(t,e,r)=>{"use strict";var n=r(63964),o=r(49450),i=r(10320),a=r(30365),u=r(79521);n({target:"Iterator",proto:!0,real:!0},{find:function(t){a(this),i(t);var e=u(this),r=0;return o(e,(function(e,n){if(t(e,r++))return n(e)}),{IS_RECORD:!0,INTERRUPTED:!0}).result}})},14773:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(30365),u=r(79521),s=r(31352),c=r(56860),f=r(28649),l=r(4493),h=c((function(){for(var t,e,r=this.iterator,n=this.mapper;;){if(e=this.inner)try{if(!(t=a(o(e.next,e.iterator))).done)return t.value;this.inner=null}catch(t){f(r,"throw",t)}if(t=a(o(this.next,r)),this.done=!!t.done)return;try{this.inner=s(n(t.value,this.counter++),!1)}catch(t){f(r,"throw",t)}}}));n({target:"Iterator",proto:!0,real:!0,forced:l},{flatMap:function(t){return a(this),i(t),new h(u(this),{mapper:t,inner:null})}})},83506:(t,e,r)=>{"use strict";var n=r(63964),o=r(49450),i=r(10320),a=r(30365),u=r(79521);n({target:"Iterator",proto:!0,real:!0},{forEach:function(t){a(this),i(t);var e=u(this),r=0;o(e,(function(e){t(e,r++)}),{IS_RECORD:!0})}})},9965:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(46771),a=r(21287),u=r(67635).IteratorPrototype,s=r(56860),c=r(31352),f=r(4493),l=s((function(){return o(this.next,this.iterator)}),!0);n({target:"Iterator",stat:!0,forced:f},{from:function(t){var e=c("string"==typeof t?i(t):t,!0);return a(u,e.iterator)?e.iterator:new l(e)}})},48399:(t,e,r)=>{"use strict";var n=r(63964),o=r(9667);n({target:"Iterator",proto:!0,real:!0,forced:r(4493)},{map:o})},46163:(t,e,r)=>{"use strict";var n=r(63964),o=r(49450),i=r(10320),a=r(30365),u=r(79521),s=TypeError;n({target:"Iterator",proto:!0,real:!0},{reduce:function(t){a(this),i(t);var e=u(this),r=arguments.length<2,n=r?void 0:arguments[1],c=0;if(o(e,(function(e){r?(r=!1,n=e):n=t(n,e,c),c++}),{IS_RECORD:!0}),r)throw new s("Reduce of empty iterator with no initial value");return n}})},55433:(t,e,r)=>{"use strict";var n=r(63964),o=r(49450),i=r(10320),a=r(30365),u=r(79521);n({target:"Iterator",proto:!0,real:!0},{some:function(t){a(this),i(t);var e=u(this),r=0;return o(e,(function(e,n){if(t(e,r++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},48574:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(30365),a=r(79521),u=r(37567),s=r(16140),c=r(56860),f=r(28649),l=r(4493),h=c((function(){var t=this.iterator;if(!this.remaining--)return this.done=!0,f(t,"normal",void 0);var e=i(o(this.next,t));return(this.done=!!e.done)?void 0:e.value}));n({target:"Iterator",proto:!0,real:!0,forced:l},{take:function(t){i(this);var e=s(u(+t));return new h(a(this),{remaining:e})}})},45616:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(49450),a=r(79521),u=[].push;n({target:"Iterator",proto:!0,real:!0},{toArray:function(){var t=[];return i(a(o(this)),u,{that:t,IS_RECORD:!0}),t}})},53008:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(61267),a=r(91495),u=r(67250),s=r(40033),c=r(55747),f=r(71399),l=r(54602),h=r(39447),p=r(52357),y=String,d=o("JSON","stringify"),v=u(/./.exec),g=u("".charAt),b=u("".charCodeAt),m=u("".replace),w=u(1..toString),x=/[\uD800-\uDFFF]/g,k=/^[\uD800-\uDBFF]$/,S=/^[\uDC00-\uDFFF]$/,O=!p||s((function(){var t=o("Symbol")("stringify detection");return"[null]"!==d([t])||"{}"!==d({a:t})||"{}"!==d(Object(t))})),_=s((function(){return'"\\udf06\\ud834"'!==d("\udf06\ud834")||'"\\udead"'!==d("\udead")})),E=function(t,e){var r=l(arguments),n=h(e);if(c(n)||void 0!==t&&!f(t))return r[1]=function(t,e){if(c(n)&&(e=a(n,this,y(t),e)),!f(e))return e},i(d,null,r)},A=function(t,e,r){var n=g(r,e-1),o=g(r,e+1);return v(k,t)&&!v(S,o)||v(S,t)&&!v(k,n)?"\\u"+w(b(t,0),16):t};d&&n({target:"JSON",stat:!0,arity:3,forced:O||_},{stringify:function(t,e,r){var n=l(arguments),o=i(O?E:d,null,n);return _&&"string"==typeof o?m(o,x,A):o}})},98329:(t,e,r)=>{"use strict";var n=r(16210);r(84925)(n.JSON,"JSON",!0)},7965:(t,e,r)=>{"use strict";r(45150)("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(41028))},12638:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(10320),a=r(16952),u=r(49450),s=r(31186),c=r(4493),f=r(40033),l=s.Map,h=s.has,p=s.get,y=s.set,d=o([].push),v=c||f((function(){return 1!==l.groupBy("ab",(function(t){return t})).get("a").length}));n({target:"Map",stat:!0,forced:c||v},{groupBy:function(t,e){a(t),i(e);var r=new l,n=0;return u(t,(function(t){var o=e(t,n++);h(r,o)?d(p(r,o),t):y(r,o,[t])})),r}})},9631:(t,e,r)=>{"use strict";r(7965)},47091:(t,e,r)=>{"use strict";var n=r(63964),o=r(90874),i=Math.acosh,a=Math.log,u=Math.sqrt,s=Math.LN2;n({target:"Math",stat:!0,forced:!i||710!==Math.floor(i(Number.MAX_VALUE))||i(1/0)!==1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?a(e)+s:o(e-1+u(e-1)*u(e+1))}})},59660:(t,e,r)=>{"use strict";var n=r(63964),o=Math.asinh,i=Math.log,a=Math.sqrt;n({target:"Math",stat:!0,forced:!(o&&1/o(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!==r?r<0?-t(-r):i(r+a(r*r+1)):r}})},15383:(t,e,r)=>{"use strict";var n=r(63964),o=Math.atanh,i=Math.log;n({target:"Math",stat:!0,forced:!(o&&1/o(-0)<0)},{atanh:function(t){var e=+t;return 0===e?e:i((1+e)/(1-e))/2}})},92866:(t,e,r)=>{"use strict";var n=r(63964),o=r(22172),i=Math.abs,a=Math.pow;n({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return o(e)*a(i(e),1/3)}})},86107:(t,e,r)=>{"use strict";var n=r(63964),o=Math.floor,i=Math.log,a=Math.LOG2E;n({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-o(i(e+.5)*a):32}})},29248:(t,e,r)=>{"use strict";var n=r(63964),o=r(82040),i=Math.cosh,a=Math.abs,u=Math.E;n({target:"Math",stat:!0,forced:!i||i(710)===1/0},{cosh:function(t){var e=o(a(t)-1)+1;return(e+1/(e*u*u))*(u/2)}})},52540:(t,e,r)=>{"use strict";var n=r(63964),o=r(82040);n({target:"Math",stat:!0,forced:o!==Math.expm1},{expm1:o})},79007:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{fround:r(95867)})},77199:(t,e,r)=>{"use strict";var n=r(63964),o=Math.hypot,i=Math.abs,a=Math.sqrt;n({target:"Math",stat:!0,arity:2,forced:!!o&&o(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,o=0,u=0,s=arguments.length,c=0;u<s;)c<(r=i(arguments[u++]))?(o=o*(n=c/r)*n+1,c=r):o+=r>0?(n=r/c)*n:r;return c===1/0?1/0:c*a(o)}})},6522:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=Math.imul;n({target:"Math",stat:!0,forced:o((function(){return-5!==i(4294967295,5)||2!==i.length}))},{imul:function(t,e){var r=65535,n=+t,o=+e,i=r&n,a=r&o;return 0|i*a+((r&n>>>16)*a+i*(r&o>>>16)<<16>>>0)}})},95542:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{log10:r(75002)})},2966:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{log1p:r(90874)})},20997:(t,e,r)=>{"use strict";var n=r(63964),o=Math.log,i=Math.LN2;n({target:"Math",stat:!0},{log2:function(t){return o(t)/i}})},57400:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{sign:r(22172)})},45571:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(82040),a=Math.abs,u=Math.exp,s=Math.E;n({target:"Math",stat:!0,forced:o((function(){return-2e-17!==Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return a(e)<1?(i(e)-i(-e))/2:(u(e-1)-u(-e-1))*(s/2)}})},54800:(t,e,r)=>{"use strict";var n=r(63964),o=r(82040),i=Math.exp;n({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=o(e),n=o(-e);return r===1/0?1:n===1/0?-1:(r-n)/(i(e)+i(-e))}})},15709:(t,e,r)=>{"use strict";r(84925)(Math,"Math",!0)},76059:(t,e,r)=>{"use strict";r(63964)({target:"Math",stat:!0},{trunc:r(21119)})},96614:(t,e,r)=>{"use strict";var n=r(63964),o=r(4493),i=r(58310),a=r(16210),u=r(61765),s=r(67250),c=r(41314),f=r(45299),l=r(5781),h=r(21287),p=r(71399),y=r(24843),d=r(40033),v=r(37310).f,g=r(27193).f,b=r(74595).f,m=r(46438),w=r(92648).trim,x="Number",k=a[x],S=u[x],O=k.prototype,_=a.TypeError,E=s("".slice),A=s("".charCodeAt),P=c(x,!k(" 0o1")||!k("0b1")||k("+0x1")),j=function(t){var e,r=arguments.length<1?0:k(function(t){var e=y(t,"number");return"bigint"==typeof e?e:function(t){var e,r,n,o,i,a,u,s,c=y(t,"number");if(p(c))throw new _("Cannot convert a Symbol value to a number");if("string"==typeof c&&c.length>2)if(c=w(c),43===(e=A(c,0))||45===e){if(88===(r=A(c,2))||120===r)return NaN}else if(48===e){switch(A(c,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+c}for(a=(i=E(c,2)).length,u=0;u<a;u++)if((s=A(i,u))<48||s>o)return NaN;return parseInt(i,n)}return+c}(e)}(t));return h(O,e=this)&&d((function(){m(e)}))?l(Object(r),this,j):r};j.prototype=O,P&&!o&&(O.constructor=j),n({global:!0,constructor:!0,wrap:!0,forced:P},{Number:j});var T=function(t,e){for(var r,n=i?v(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),o=0;n.length>o;o++)f(e,r=n[o])&&!f(t,r)&&b(t,r,g(e,r))};o&&S&&T(u[x],S),(P||o)&&T(u[x],k)},324:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},90426:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0},{isFinite:r(3294)})},95443:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0},{isInteger:r(5841)})},87968:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0},{isNaN:function(t){return t!=t}})},55007:(t,e,r)=>{"use strict";var n=r(63964),o=r(5841),i=Math.abs;n({target:"Number",stat:!0},{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},55323:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991})},13521:(t,e,r)=>{"use strict";r(63964)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991})},5006:(t,e,r)=>{"use strict";var n=r(63964),o=r(28506);n({target:"Number",stat:!0,forced:Number.parseFloat!==o},{parseFloat:o})},99009:(t,e,r)=>{"use strict";var n=r(63964),o=r(13693);n({target:"Number",stat:!0,forced:Number.parseInt!==o},{parseInt:o})},42719:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(61365),a=r(46438),u=r(62443),s=r(75002),c=r(40033),f=RangeError,l=String,h=isFinite,p=Math.abs,y=Math.floor,d=Math.pow,v=Math.round,g=o(1..toExponential),b=o(u),m=o("".slice),w="-6.9000e-11"===g(-69e-12,4)&&"1.25e+0"===g(1.255,2)&&"1.235e+4"===g(12345,3)&&"3e+1"===g(25,0);n({target:"Number",proto:!0,forced:!w||!(c((function(){g(1,1/0)}))&&c((function(){g(1,-1/0)})))||!!c((function(){g(1/0,1/0),g(NaN,1/0)}))},{toExponential:function(t){var e=a(this);if(void 0===t)return g(e);var r=i(t);if(!h(e))return String(e);if(r<0||r>20)throw new f("Incorrect fraction digits");if(w)return g(e,r);var n,o,u,c,x="";if(e<0&&(x="-",e=-e),0===e)o=0,n=b("0",r+1);else{var k=s(e);o=y(k);var S=d(10,o-r),O=v(e/S);2*e>=(2*O+1)*S&&(O+=1),O>=d(10,r+1)&&(O/=10,o+=1),n=l(O)}return 0!==r&&(n=m(n,0,1)+"."+m(n,1)),0===o?(u="+",c="0"):(u=o>0?"+":"-",c=l(p(o))),x+(n+"e")+u+c}})},85770:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(61365),a=r(46438),u=r(62443),s=r(40033),c=RangeError,f=String,l=Math.floor,h=o(u),p=o("".slice),y=o(1..toFixed),d=function(t,e,r){return 0===e?r:e%2==1?d(t,e-1,r*t):d(t*t,e/2,r)},v=function(t,e,r){for(var n=-1,o=r;++n<6;)o+=e*t[n],t[n]=o%1e7,o=l(o/1e7)},g=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=l(n/e),n=n%e*1e7},b=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=f(t[e]);r=""===r?n:r+h("0",7-n.length)+n}return r};n({target:"Number",proto:!0,forced:s((function(){return"0.000"!==y(8e-5,3)||"1"!==y(.9,0)||"1.25"!==y(1.255,2)||"1000000000000000128"!==y(0xde0b6b3a7640080,0)}))||!s((function(){y({})}))},{toFixed:function(t){var e,r,n,o,u=a(this),s=i(t),l=[0,0,0,0,0,0],y="",m="0";if(s<0||s>20)throw new c("Incorrect fraction digits");if(u!=u)return"NaN";if(u<=-1e21||u>=1e21)return f(u);if(u<0&&(y="-",u=-u),u>1e-21)if(r=(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(u*d(2,69,1))-69)<0?u*d(2,-e,1):u/d(2,e,1),r*=4503599627370496,(e=52-e)>0){for(v(l,0,r),n=s;n>=7;)v(l,1e7,0),n-=7;for(v(l,d(10,n,1),0),n=e-1;n>=23;)g(l,1<<23),n-=23;g(l,1<<n),v(l,1,1),g(l,2),m=b(l)}else v(l,0,r),v(l,1<<-e,0),m=b(l)+h("0",s);return s>0?y+((o=m.length)<=s?"0."+h("0",s-o)+m:p(m,0,o-s)+"."+p(m,o-s)):y+m}})},23532:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(40033),a=r(46438),u=o(1..toPrecision);n({target:"Number",proto:!0,forced:i((function(){return"1"!==u(1,void 0)}))||!i((function(){u({})}))},{toPrecision:function(t){return void 0===t?u(a(this)):u(a(this),t)}})},87119:(t,e,r)=>{"use strict";var n=r(63964),o=r(41143);n({target:"Object",stat:!0,arity:2,forced:Object.assign!==o},{assign:o})},78618:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0,sham:!r(58310)},{create:r(80674)})},27129:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(10320),u=r(46771),s=r(74595);o&&n({target:"Object",proto:!0,forced:i},{__defineGetter__:function(t,e){s.f(u(this),t,{get:a(e),enumerable:!0,configurable:!0})}})},31943:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(24239).f;n({target:"Object",stat:!0,forced:Object.defineProperties!==i,sham:!o},{defineProperties:i})},3579:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(74595).f;n({target:"Object",stat:!0,forced:Object.defineProperty!==i,sham:!o},{defineProperty:i})},97397:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(10320),u=r(46771),s=r(74595);o&&n({target:"Object",proto:!0,forced:i},{__defineSetter__:function(t,e){s.f(u(this),t,{set:a(e),enumerable:!0,configurable:!0})}})},85028:(t,e,r)=>{"use strict";var n=r(63964),o=r(70915).entries;n({target:"Object",stat:!0},{entries:function(t){return o(t)}})},8225:(t,e,r)=>{"use strict";var n=r(63964),o=r(50730),i=r(40033),a=r(77568),u=r(81969).onFreeze,s=Object.freeze;n({target:"Object",stat:!0,forced:i((function(){s(1)})),sham:!o},{freeze:function(t){return s&&a(t)?s(u(t)):t}})},43331:(t,e,r)=>{"use strict";var n=r(63964),o=r(49450),i=r(60102);n({target:"Object",stat:!0},{fromEntries:function(t){var e={};return o(t,(function(t,r){i(e,t,r)}),{AS_ENTRIES:!0}),e}})},62289:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(57591),a=r(27193).f,u=r(58310);n({target:"Object",stat:!0,forced:!u||o((function(){a(1)})),sham:!u},{getOwnPropertyDescriptor:function(t,e){return a(i(t),e)}})},56196:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(97921),a=r(57591),u=r(27193),s=r(60102);n({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(t){for(var e,r,n=a(t),o=u.f,c=i(n),f={},l=0;c.length>l;)void 0!==(r=o(n,e=c[l++]))&&s(f,e,r);return f}})},2950:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(81644).f;n({target:"Object",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},28603:(t,e,r)=>{"use strict";var n=r(63964),o=r(52357),i=r(40033),a=r(89235),u=r(46771);n({target:"Object",stat:!0,forced:!o||i((function(){a.f(1)}))},{getOwnPropertySymbols:function(t){var e=a.f;return e?e(u(t)):[]}})},44205:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(46771),a=r(36917),u=r(9225);n({target:"Object",stat:!0,forced:o((function(){a(1)})),sham:!u},{getPrototypeOf:function(t){return a(i(t))}})},79861:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(67250),a=r(10320),u=r(16952),s=r(767),c=r(49450),f=r(40033),l=Object.groupBy,h=o("Object","create"),p=i([].push);n({target:"Object",stat:!0,forced:!l||f((function(){return 1!==l("ab",(function(t){return t})).a.length}))},{groupBy:function(t,e){u(t),a(e);var r=h(null),n=0;return c(t,(function(t){var o=s(e(t,n++));o in r?p(r[o],t):r[o]=[t]})),r}})},11137:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0},{hasOwn:r(45299)})},83186:(t,e,r)=>{"use strict";var n=r(63964),o=r(81834);n({target:"Object",stat:!0,forced:Object.isExtensible!==o},{isExtensible:o})},76065:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(77568),a=r(7462),u=r(3782),s=Object.isFrozen;n({target:"Object",stat:!0,forced:u||o((function(){s(1)}))},{isFrozen:function(t){return!i(t)||!(!u||"ArrayBuffer"!==a(t))||!!s&&s(t)}})},13411:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(77568),a=r(7462),u=r(3782),s=Object.isSealed;n({target:"Object",stat:!0,forced:u||o((function(){s(1)}))},{isSealed:function(t){return!i(t)||!(!u||"ArrayBuffer"!==a(t))||!!s&&s(t)}})},76882:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0},{is:r(5700)})},26634:(t,e,r)=>{"use strict";var n=r(63964),o=r(46771),i=r(18450);n({target:"Object",stat:!0,forced:r(40033)((function(){i(1)}))},{keys:function(t){return i(o(t))}})},53118:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(46771),u=r(767),s=r(36917),c=r(27193).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupGetter__:function(t){var e,r=a(this),n=u(t);do{if(e=c(r,n))return e.get}while(r=s(r))}})},42514:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(57377),a=r(46771),u=r(767),s=r(36917),c=r(27193).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupSetter__:function(t){var e,r=a(this),n=u(t);do{if(e=c(r,n))return e.set}while(r=s(r))}})},84353:(t,e,r)=>{"use strict";var n=r(63964),o=r(77568),i=r(81969).onFreeze,a=r(50730),u=r(40033),s=Object.preventExtensions;n({target:"Object",stat:!0,forced:u((function(){s(1)})),sham:!a},{preventExtensions:function(t){return s&&o(t)?s(i(t)):t}})},30694:(t,e,r)=>{"use strict";var n=r(58310),o=r(73936),i=r(77568),a=r(45015),u=r(46771),s=r(16952),c=Object.getPrototypeOf,f=Object.setPrototypeOf,l=Object.prototype,h="__proto__";if(n&&c&&f&&!(h in l))try{o(l,h,{configurable:!0,get:function(){return c(u(this))},set:function(t){var e=s(this);a(t)&&i(e)&&f(e,t)}})}catch(t){}},62987:(t,e,r)=>{"use strict";var n=r(63964),o=r(77568),i=r(81969).onFreeze,a=r(50730),u=r(40033),s=Object.seal;n({target:"Object",stat:!0,forced:u((function(){s(1)})),sham:!a},{seal:function(t){return s&&o(t)?s(i(t)):t}})},48993:(t,e,r)=>{"use strict";r(63964)({target:"Object",stat:!0},{setPrototypeOf:r(76649)})},52917:(t,e,r)=>{"use strict";var n=r(2650),o=r(55938),i=r(2509);n||o(Object.prototype,"toString",i,{unsafe:!0})},4972:(t,e,r)=>{"use strict";var n=r(63964),o=r(70915).values;n({target:"Object",stat:!0},{values:function(t){return o(t)}})},28913:(t,e,r)=>{"use strict";var n=r(63964),o=r(28506);n({global:!0,forced:parseFloat!==o},{parseFloat:o})},36382:(t,e,r)=>{"use strict";var n=r(63964),o=r(13693);n({global:!0,forced:parseInt!==o},{parseInt:o})},93361:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(81837),u=r(10729),s=r(49450);n({target:"Promise",stat:!0,forced:r(48199)},{allSettled:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=u((function(){var r=i(e.resolve),a=[],u=0,c=1;s(t,(function(t){var i=u++,s=!1;c++,o(r,e,t).then((function(t){s||(s=!0,a[i]={status:"fulfilled",value:t},--c||n(a))}),(function(t){s||(s=!0,a[i]={status:"rejected",reason:t},--c||n(a))}))})),--c||n(a)}));return f.error&&c(f.value),r.promise}})},48865:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(81837),u=r(10729),s=r(49450);n({target:"Promise",stat:!0,forced:r(48199)},{all:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=u((function(){var r=i(e.resolve),a=[],u=0,f=1;s(t,(function(t){var i=u++,s=!1;f++,o(r,e,t).then((function(t){s||(s=!0,a[i]=t,--f||n(a))}),c)})),--f||n(a)}));return f.error&&c(f.value),r.promise}})},14128:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(4009),u=r(81837),s=r(10729),c=r(49450),f=r(48199),l="No one promise resolved";n({target:"Promise",stat:!0,forced:f},{any:function(t){var e=this,r=a("AggregateError"),n=u.f(e),f=n.resolve,h=n.reject,p=s((function(){var n=i(e.resolve),a=[],u=0,s=1,p=!1;c(t,(function(t){var i=u++,c=!1;s++,o(n,e,t).then((function(t){c||p||(p=!0,f(t))}),(function(t){c||p||(c=!0,a[i]=t,--s||h(new r(a,l)))}))})),--s||h(new r(a,l))}));return p.error&&h(p.value),n.promise}})},70641:(t,e,r)=>{"use strict";var n=r(63964),o=r(4493),i=r(74854).CONSTRUCTOR,a=r(67512),u=r(4009),s=r(55747),c=r(55938),f=a&&a.prototype;if(n({target:"Promise",proto:!0,forced:i,real:!0},{catch:function(t){return this.then(void 0,t)}}),!o&&s(a)){var l=u("Promise").prototype.catch;f.catch!==l&&c(f,"catch",l,{unsafe:!0})}},75946:(t,e,r)=>{"use strict";var n,o,i,a=r(63964),u=r(4493),s=r(81663),c=r(16210),f=r(91495),l=r(55938),h=r(76649),p=r(84925),y=r(58491),d=r(10320),v=r(55747),g=r(77568),b=r(60077),m=r(28987),w=r(60375).set,x=r(37713),k=r(72259),S=r(10729),O=r(9547),_=r(5419),E=r(67512),A=r(74854),P=r(81837),j="Promise",T=A.CONSTRUCTOR,M=A.REJECTION_EVENT,R=A.SUBCLASSING,I=_.getterFor(j),C=_.set,L=E&&E.prototype,D=E,B=L,N=c.TypeError,F=c.document,z=c.process,U=P.f,Y=U,G=!!(F&&F.createEvent&&c.dispatchEvent),H="unhandledrejection",W=function(t){var e;return!(!g(t)||!v(e=t.then))&&e},X=function(t,e){var r,n,o,i=e.value,a=1===e.state,u=a?t.ok:t.fail,s=t.resolve,c=t.reject,l=t.domain;try{u?(a||(2===e.rejection&&J(e),e.rejection=1),!0===u?r=i:(l&&l.enter(),r=u(i),l&&(l.exit(),o=!0)),r===t.promise?c(new N("Promise-chain cycle")):(n=W(r))?f(n,r,s,c):s(r)):c(i)}catch(t){l&&!o&&l.exit(),c(t)}},q=function(t,e){t.notified||(t.notified=!0,x((function(){for(var r,n=t.reactions;r=n.get();)X(r,t);t.notified=!1,e&&!t.rejection&&Q(t)})))},V=function(t,e,r){var n,o;G?((n=F.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),c.dispatchEvent(n)):n={promise:e,reason:r},!M&&(o=c["on"+t])?o(n):t===H&&k("Unhandled promise rejection",r)},Q=function(t){f(w,c,(function(){var e,r=t.facade,n=t.value;if(K(t)&&(e=S((function(){s?z.emit("unhandledRejection",n,r):V(H,r,n)})),t.rejection=s||K(t)?2:1,e.error))throw e.value}))},K=function(t){return 1!==t.rejection&&!t.parent},J=function(t){f(w,c,(function(){var e=t.facade;s?z.emit("rejectionHandled",e):V("rejectionhandled",e,t.value)}))},Z=function(t,e,r){return function(n){t(e,n,r)}},$=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,q(t,!0))},tt=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new N("Promise can't be resolved itself");var n=W(e);n?x((function(){var r={done:!1};try{f(n,e,Z(tt,r,t),Z($,r,t))}catch(e){$(r,e,t)}})):(t.value=e,t.state=1,q(t,!1))}catch(e){$({done:!1},e,t)}}};if(T&&(B=(D=function(t){b(this,B),d(t),f(n,this);var e=I(this);try{t(Z(tt,e),Z($,e))}catch(t){$(e,t)}}).prototype,(n=function(t){C(this,{type:j,done:!1,notified:!1,parent:!1,reactions:new O,rejection:!1,state:0,value:null})}).prototype=l(B,"then",(function(t,e){var r=I(this),n=U(m(this,D));return r.parent=!0,n.ok=!v(t)||t,n.fail=v(e)&&e,n.domain=s?z.domain:void 0,0===r.state?r.reactions.add(n):x((function(){X(n,r)})),n.promise})),o=function(){var t=new n,e=I(t);this.promise=t,this.resolve=Z(tt,e),this.reject=Z($,e)},P.f=U=function(t){return t===D||void 0===t?new o(t):Y(t)},!u&&v(E)&&L!==Object.prototype)){i=L.then,R||l(L,"then",(function(t,e){var r=this;return new D((function(t,e){f(i,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete L.constructor}catch(t){}h&&h(L,B)}a({global:!0,constructor:!0,wrap:!0,forced:T},{Promise:D}),p(D,j,!1,!0),y(j)},69861:(t,e,r)=>{"use strict";var n=r(63964),o=r(4493),i=r(67512),a=r(40033),u=r(4009),s=r(55747),c=r(28987),f=r(66628),l=r(55938),h=i&&i.prototype;if(n({target:"Promise",proto:!0,real:!0,forced:!!i&&a((function(){h.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=c(this,u("Promise")),r=s(t);return this.then(r?function(r){return f(e,t()).then((function(){return r}))}:t,r?function(r){return f(e,t()).then((function(){throw r}))}:t)}}),!o&&s(i)){var p=u("Promise").prototype.finally;h.finally!==p&&l(h,"finally",p,{unsafe:!0})}},53092:(t,e,r)=>{"use strict";r(75946),r(48865),r(70641),r(16937),r(41719),r(81702)},16937:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(10320),a=r(81837),u=r(10729),s=r(49450);n({target:"Promise",stat:!0,forced:r(48199)},{race:function(t){var e=this,r=a.f(e),n=r.reject,c=u((function(){var a=i(e.resolve);s(t,(function(t){o(a,e,t).then(r.resolve,n)}))}));return c.error&&n(c.value),r.promise}})},41719:(t,e,r)=>{"use strict";var n=r(63964),o=r(81837);n({target:"Promise",stat:!0,forced:r(74854).CONSTRUCTOR},{reject:function(t){var e=o.f(this);return(0,e.reject)(t),e.promise}})},81702:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(4493),a=r(67512),u=r(74854).CONSTRUCTOR,s=r(66628),c=o("Promise"),f=i&&!u;n({target:"Promise",stat:!0,forced:i||u},{resolve:function(t){return s(f&&this===c?a:this,t)}})},79027:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(61267),a=r(54602),u=r(81837),s=r(10320),c=r(10729),f=o.Promise,l=!1;n({target:"Promise",stat:!0,forced:!f||!f.try||c((function(){f.try((function(t){l=8===t}),8)})).error||!l},{try:function(t){var e=arguments.length>1?a(arguments,1):[],r=u.f(this),n=c((function(){return i(s(t),void 0,e)}));return(n.error?r.reject:r.resolve)(n.value),r.promise}})},70570:(t,e,r)=>{"use strict";var n=r(63964),o=r(81837);n({target:"Promise",stat:!0},{withResolvers:function(){var t=o.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}})},29674:(t,e,r)=>{"use strict";var n=r(63964),o=r(61267),i=r(10320),a=r(30365);n({target:"Reflect",stat:!0,forced:!r(40033)((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return o(i(t),e,a(r))}})},81543:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(61267),a=r(66284),u=r(32606),s=r(30365),c=r(77568),f=r(80674),l=r(40033),h=o("Reflect","construct"),p=Object.prototype,y=[].push,d=l((function(){function t(){}return!(h((function(){}),[],t)instanceof t)})),v=!l((function(){h((function(){}))})),g=d||v;n({target:"Reflect",stat:!0,forced:g,sham:g},{construct:function(t,e){u(t),s(e);var r=arguments.length<3?t:u(arguments[2]);if(v&&!d)return h(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return i(y,n,e),new(i(a,t,n))}var o=r.prototype,l=f(c(o)?o:p),g=i(t,l,e);return c(g)?g:l}})},9373:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(30365),a=r(767),u=r(74595);n({target:"Reflect",stat:!0,forced:r(40033)((function(){Reflect.defineProperty(u.f({},1,{value:1}),1,{value:2})})),sham:!o},{defineProperty:function(t,e,r){i(t);var n=a(e);i(r);try{return u.f(t,n,r),!0}catch(t){return!1}}})},45093:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(27193).f;n({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=i(o(t),e);return!(r&&!r.configurable)&&delete t[e]}})},5815:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(30365),a=r(27193);n({target:"Reflect",stat:!0,sham:!o},{getOwnPropertyDescriptor:function(t,e){return a.f(i(t),e)}})},88527:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(36917);n({target:"Reflect",stat:!0,sham:!r(9225)},{getPrototypeOf:function(t){return i(o(t))}})},63074:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(77568),a=r(30365),u=r(98373),s=r(27193),c=r(36917);n({target:"Reflect",stat:!0},{get:function t(e,r){var n,f,l=arguments.length<3?e:arguments[2];return a(e)===l?e[r]:(n=s.f(e,r))?u(n)?n.value:void 0===n.get?void 0:o(n.get,l):i(f=c(e))?t(f,r,l):void 0}})},66390:(t,e,r)=>{"use strict";r(63964)({target:"Reflect",stat:!0},{has:function(t,e){return e in t}})},7784:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(81834);n({target:"Reflect",stat:!0},{isExtensible:function(t){return o(t),i(t)}})},50551:(t,e,r)=>{"use strict";r(63964)({target:"Reflect",stat:!0},{ownKeys:r(97921)})},76483:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(30365);n({target:"Reflect",stat:!0,sham:!r(50730)},{preventExtensions:function(t){i(t);try{var e=o("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}})},63915:(t,e,r)=>{"use strict";var n=r(63964),o=r(30365),i=r(35908),a=r(76649);a&&n({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){o(t),i(e);try{return a(t,e),!0}catch(t){return!1}}})},92046:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(30365),a=r(77568),u=r(98373),s=r(40033),c=r(74595),f=r(27193),l=r(36917),h=r(87458);n({target:"Reflect",stat:!0,forced:s((function(){var t=function(){},e=c.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}))},{set:function t(e,r,n){var s,p,y,d=arguments.length<4?e:arguments[3],v=f.f(i(e),r);if(!v){if(a(p=l(e)))return t(p,r,n,d);v=h(0)}if(u(v)){if(!1===v.writable||!a(d))return!1;if(s=f.f(d,r)){if(s.get||s.set||!1===s.writable)return!1;s.value=n,c.f(d,r,s)}else c.f(d,r,h(0,n))}else{if(void 0===(y=v.set))return!1;o(y,d,n)}return!0}})},38054:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(84925);n({global:!0},{Reflect:{}}),i(o.Reflect,"Reflect",!0)},51454:(t,e,r)=>{"use strict";var n=r(58310),o=r(16210),i=r(67250),a=r(41314),u=r(5781),s=r(37909),c=r(80674),f=r(37310).f,l=r(21287),h=r(72586),p=r(12605),y=r(73392),d=r(62115),v=r(34550),g=r(55938),b=r(40033),m=r(45299),w=r(5419).enforce,x=r(58491),k=r(24697),S=r(39173),O=r(35688),_=k("match"),E=o.RegExp,A=E.prototype,P=o.SyntaxError,j=i(A.exec),T=i("".charAt),M=i("".replace),R=i("".indexOf),I=i("".slice),C=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,L=/a/g,D=/a/g,B=new E(L)!==L,N=d.MISSED_STICKY,F=d.UNSUPPORTED_Y;if(a("RegExp",n&&(!B||N||S||O||b((function(){return D[_]=!1,E(L)!==L||E(D)===D||"/a/i"!==String(E(L,"i"))}))))){for(var z=function(t,e){var r,n,o,i,a,f,d=l(A,this),v=h(t),g=void 0===e,b=[],x=t;if(!d&&v&&g&&t.constructor===z)return t;if((v||l(A,t))&&(t=t.source,g&&(e=y(x))),t=void 0===t?"":p(t),e=void 0===e?"":p(e),x=t,S&&"dotAll"in L&&(n=!!e&&R(e,"s")>-1)&&(e=M(e,/s/g,"")),r=e,N&&"sticky"in L&&(o=!!e&&R(e,"y")>-1)&&F&&(e=M(e,/y/g,"")),O&&(i=function(t){for(var e,r=t.length,n=0,o="",i=[],a=c(null),u=!1,s=!1,f=0,l="";n<=r;n++){if("\\"===(e=T(t,n)))e+=T(t,++n);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:if(o+=e,"?:"===I(t,n+1,n+3))continue;j(C,I(t,n+1))&&(n+=2,s=!0),f++;continue;case">"===e&&s:if(""===l||m(a,l))throw new P("Invalid capture group name");a[l]=!0,i[i.length]=[l,f],s=!1,l="";continue}s?l+=e:o+=e}return[o,i]}(t),t=i[0],b=i[1]),a=u(E(t,e),d?this:A,z),(n||o||b.length)&&(f=w(a),n&&(f.dotAll=!0,f.raw=z(function(t){for(var e,r=t.length,n=0,o="",i=!1;n<=r;n++)"\\"!==(e=T(t,n))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+T(t,++n);return o}(t),r)),o&&(f.sticky=!0),b.length&&(f.groups=b)),t!==x)try{s(a,"source",""===x?"(?:)":x)}catch(t){}return a},U=f(E),Y=0;U.length>Y;)v(z,E,U[Y++]);A.constructor=z,z.prototype=A,g(o,"RegExp",z,{constructor:!0})}x("RegExp")},67075:(t,e,r)=>{"use strict";var n=r(58310),o=r(39173),i=r(7462),a=r(73936),u=r(5419).get,s=RegExp.prototype,c=TypeError;n&&o&&a(s,"dotAll",{configurable:!0,get:function(){if(this!==s){if("RegExp"===i(this))return!!u(this).dotAll;throw new c("Incompatible receiver, RegExp required")}}})},79669:(t,e,r)=>{"use strict";var n=r(63964),o=r(14489);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},23057:(t,e,r)=>{"use strict";var n=r(16210),o=r(58310),i=r(73936),a=r(70901),u=r(40033),s=n.RegExp,c=s.prototype;o&&u((function(){var t=!0;try{s(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",o=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},i={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var a in t&&(i.hasIndices="d"),i)o(a,i[a]);return Object.getOwnPropertyDescriptor(c,"flags").get.call(e)!==n||r!==n}))&&i(c,"flags",{configurable:!0,get:a})},24199:(t,e,r)=>{"use strict";var n=r(58310),o=r(62115).MISSED_STICKY,i=r(7462),a=r(73936),u=r(5419).get,s=RegExp.prototype,c=TypeError;n&&o&&a(s,"sticky",{configurable:!0,get:function(){if(this!==s){if("RegExp"===i(this))return!!u(this).sticky;throw new c("Incompatible receiver, RegExp required")}}})},10280:(t,e,r)=>{"use strict";r(79669);var n,o,i=r(63964),a=r(91495),u=r(55747),s=r(30365),c=r(12605),f=(n=!1,(o=/[ac]/).exec=function(){return n=!0,/./.exec.apply(this,arguments)},!0===o.test("abc")&&n),l=/./.test;i({target:"RegExp",proto:!0,forced:!f},{test:function(t){var e=s(this),r=c(t),n=e.exec;if(!u(n))return a(l,e,r);var o=a(n,e,r);return null!==o&&(s(o),!0)}})},57983:(t,e,r)=>{"use strict";var n=r(70520).PROPER,o=r(55938),i=r(30365),a=r(12605),u=r(40033),s=r(73392),c="toString",f=RegExp.prototype,l=f[c],h=u((function(){return"/a/b"!==l.call({source:"a",flags:"b"})})),p=n&&l.name!==c;(h||p)&&o(f,c,(function(){var t=i(this);return"/"+a(t.source)+"/"+a(s(t))}),{unsafe:!0})},1963:(t,e,r)=>{"use strict";r(45150)("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(41028))},78592:(t,e,r)=>{"use strict";var n=r(63964),o=r(23710);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("difference")},{difference:o})},50814:(t,e,r)=>{"use strict";var n=r(63964),o=r(40033),i=r(61752);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("intersection")||o((function(){return"3,2"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))}))},{intersection:i})},32407:(t,e,r)=>{"use strict";var n=r(63964),o=r(10979);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("isDisjointFrom")},{isDisjointFrom:o})},52462:(t,e,r)=>{"use strict";var n=r(63964),o=r(66040);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("isSubsetOf")},{isSubsetOf:o})},66133:(t,e,r)=>{"use strict";var n=r(63964),o=r(289);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("isSupersetOf")},{isSupersetOf:o})},17953:(t,e,r)=>{"use strict";r(1963)},55146:(t,e,r)=>{"use strict";var n=r(63964),o=r(24052);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("symmetricDifference")},{symmetricDifference:o})},26580:(t,e,r)=>{"use strict";var n=r(63964),o=r(18630);n({target:"Set",proto:!0,real:!0,forced:!r(94610)("union")},{union:o})},95309:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("anchor")},{anchor:function(t){return o(this,"a","name",t)}})},89939:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(16952),a=r(61365),u=r(12605),s=r(40033),c=o("".charAt);n({target:"String",proto:!0,forced:s((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=u(i(this)),r=e.length,n=a(t),o=n>=0?n:r+n;return o<0||o>=r?void 0:c(e,o)}})},82256:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("big")},{big:function(){return o(this,"big","","")}})},49484:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("blink")},{blink:function(){return o(this,"blink","","")}})},38931:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("bold")},{bold:function(){return o(this,"b","","")}})},30442:(t,e,r)=>{"use strict";var n=r(63964),o=r(50233).codeAt;n({target:"String",proto:!0},{codePointAt:function(t){return o(this,t)}})},6403:(t,e,r)=>{"use strict";var n,o=r(63964),i=r(71138),a=r(27193).f,u=r(10188),s=r(12605),c=r(86213),f=r(16952),l=r(45490),h=r(4493),p=i("".slice),y=Math.min,d=l("endsWith");o({target:"String",proto:!0,forced:!(!h&&!d&&(n=a(String.prototype,"endsWith"),n&&!n.writable)||d)},{endsWith:function(t){var e=s(f(this));c(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,o=void 0===r?n:y(u(r),n),i=s(t);return p(e,o-i.length,o)===i}})},39308:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("fixed")},{fixed:function(){return o(this,"tt","","")}})},91550:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("fontcolor")},{fontcolor:function(t){return o(this,"font","color",t)}})},75008:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("fontsize")},{fontsize:function(t){return o(this,"font","size",t)}})},9867:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(13912),a=RangeError,u=String.fromCharCode,s=String.fromCodePoint,c=o([].join);n({target:"String",stat:!0,arity:1,forced:!!s&&1!==s.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,o=0;n>o;){if(e=+arguments[o++],i(e,1114111)!==e)throw new a(e+" is not a valid code point");r[o]=e<65536?u(e):u(55296+((e-=65536)>>10),e%1024+56320)}return c(r,"")}})},43673:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(86213),a=r(16952),u=r(12605),s=r(45490),c=o("".indexOf);n({target:"String",proto:!0,forced:!s("includes")},{includes:function(t){return!!~c(u(a(this)),u(i(t)),arguments.length>1?arguments[1]:void 0)}})},30569:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(16952),a=r(12605),u=o("".charCodeAt);n({target:"String",proto:!0},{isWellFormed:function(){for(var t=a(i(this)),e=t.length,r=0;r<e;r++){var n=u(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&u(t,r))))return!1}return!0}})},56027:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("italics")},{italics:function(){return o(this,"i","","")}})},12354:(t,e,r)=>{"use strict";var n=r(50233).charAt,o=r(12605),i=r(5419),a=r(65574),u=r(5959),s="String Iterator",c=i.set,f=i.getterFor(s);a(String,"String",(function(t){c(this,{type:s,string:o(t),index:0})}),(function(){var t,e=f(this),r=e.string,o=e.index;return o>=r.length?u(void 0,!0):(t=n(r,o),e.index+=t.length,u(t,!1))}))},50340:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("link")},{link:function(t){return o(this,"a","href",t)}})},14089:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(71138),a=r(5656),u=r(5959),s=r(16952),c=r(10188),f=r(12605),l=r(30365),h=r(42871),p=r(7462),y=r(72586),d=r(73392),v=r(78060),g=r(55938),b=r(40033),m=r(24697),w=r(28987),x=r(35483),k=r(28340),S=r(5419),O=r(4493),_=m("matchAll"),E="RegExp String",A=E+" Iterator",P=S.set,j=S.getterFor(A),T=RegExp.prototype,M=TypeError,R=i("".indexOf),I=i("".matchAll),C=!!I&&!b((function(){I("a",/./)})),L=a((function(t,e,r,n){P(this,{type:A,regexp:t,string:e,global:r,unicode:n,done:!1})}),E,(function(){var t=j(this);if(t.done)return u(void 0,!0);var e=t.regexp,r=t.string,n=k(e,r);return null===n?(t.done=!0,u(void 0,!0)):t.global?(""===f(n[0])&&(e.lastIndex=x(r,c(e.lastIndex),t.unicode)),u(n,!1)):(t.done=!0,u(n,!1))})),D=function(t){var e,r,n,o=l(this),i=f(t),a=w(o,RegExp),u=f(d(o));return e=new a(a===RegExp?o.source:o,u),r=!!~R(u,"g"),n=!!~R(u,"u"),e.lastIndex=c(o.lastIndex),new L(e,i,r,n)};n({target:"String",proto:!0,forced:C},{matchAll:function(t){var e,r,n,i,a=s(this);if(h(t)){if(C)return I(a,t)}else{if(y(t)&&(e=f(s(d(t))),!~R(e,"g")))throw new M("`.matchAll` does not allow non-global regexes");if(C)return I(a,t);if(void 0===(n=v(t,_))&&O&&"RegExp"===p(t)&&(n=D),n)return o(n,t,a)}return r=f(a),i=new RegExp(t,"g"),O?o(D,i,r):i[_](r)}}),O||_ in T||g(T,_,D)},22515:(t,e,r)=>{"use strict";var n=r(91495),o=r(79942),i=r(30365),a=r(42871),u=r(10188),s=r(12605),c=r(16952),f=r(78060),l=r(35483),h=r(28340);o("match",(function(t,e,r){return[function(e){var r=c(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](s(r))},function(t){var n=i(this),o=s(t),a=r(e,n,o);if(a.done)return a.value;if(!n.global)return h(n,o);var c=n.unicode;n.lastIndex=0;for(var f,p=[],y=0;null!==(f=h(n,o));){var d=s(f[0]);p[y]=d,""===d&&(n.lastIndex=l(o,u(n.lastIndex),c)),y++}return 0===y?null:p}]}))},5143:(t,e,r)=>{"use strict";var n=r(63964),o=r(24051).end;n({target:"String",proto:!0,forced:r(34125)},{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},93514:(t,e,r)=>{"use strict";var n=r(63964),o=r(24051).start;n({target:"String",proto:!0,forced:r(34125)},{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},5416:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(57591),a=r(46771),u=r(12605),s=r(24760),c=o([].push),f=o([].join);n({target:"String",stat:!0},{raw:function(t){var e=i(a(t).raw),r=s(e);if(!r)return"";for(var n=arguments.length,o=[],l=0;;){if(c(o,u(e[l++])),l===r)return f(o,"");l<n&&c(o,u(arguments[l]))}}})},11619:(t,e,r)=>{"use strict";r(63964)({target:"String",proto:!0},{repeat:r(62443)})},17024:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(67250),a=r(16952),u=r(55747),s=r(42871),c=r(72586),f=r(12605),l=r(78060),h=r(73392),p=r(48300),y=r(24697),d=r(4493),v=y("replace"),g=TypeError,b=i("".indexOf),m=i("".replace),w=i("".slice),x=Math.max;n({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,y,k,S,O,_,E,A,P=a(this),j=0,T="";if(!s(t)){if((r=c(t))&&(n=f(a(h(t))),!~b(n,"g")))throw new g("`.replaceAll` does not allow non-global regexes");if(i=l(t,v))return o(i,t,P,e);if(d&&r)return m(f(P),t,e)}for(y=f(P),k=f(t),(S=u(e))||(e=f(e)),O=k.length,_=x(1,O),E=b(y,k);-1!==E;)A=S?f(e(k,E,y)):p(k,y,E,[],void 0,e),T+=w(y,j,E)+A,j=E+O,E=E+_>y.length?-1:b(y,k,E+_);return j<y.length&&(T+=w(y,j)),T}})},44590:(t,e,r)=>{"use strict";var n=r(61267),o=r(91495),i=r(67250),a=r(79942),u=r(40033),s=r(30365),c=r(55747),f=r(42871),l=r(61365),h=r(10188),p=r(12605),y=r(16952),d=r(35483),v=r(78060),g=r(48300),b=r(28340),m=r(24697)("replace"),w=Math.max,x=Math.min,k=i([].concat),S=i([].push),O=i("".indexOf),_=i("".slice),E="$0"==="a".replace(/./,"$0"),A=!!/./[m]&&""===/./[m]("a","$0");a("replace",(function(t,e,r){var i=A?"$":"$0";return[function(t,r){var n=y(this),i=f(t)?void 0:v(t,m);return i?o(i,t,n,r):o(e,p(n),t,r)},function(t,o){var a=s(this),u=p(t);if("string"==typeof o&&-1===O(o,i)&&-1===O(o,"$<")){var f=r(e,a,u,o);if(f.done)return f.value}var y=c(o);y||(o=p(o));var v,m=a.global;m&&(v=a.unicode,a.lastIndex=0);for(var E,A=[];null!==(E=b(a,u))&&(S(A,E),m);)""===p(E[0])&&(a.lastIndex=d(u,h(a.lastIndex),v));for(var P,j="",T=0,M=0;M<A.length;M++){for(var R,I=p((E=A[M])[0]),C=w(x(l(E.index),u.length),0),L=[],D=1;D<E.length;D++)S(L,void 0===(P=E[D])?P:String(P));var B=E.groups;if(y){var N=k([I],L,C,u);void 0!==B&&S(N,B),R=p(n(o,void 0,N))}else R=g(I,u,C,L,B,o);C>=T&&(j+=_(u,T,C)+R,T=C+I.length)}return j+_(u,T)}]}),!!u((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!E||A)},63272:(t,e,r)=>{"use strict";var n=r(91495),o=r(79942),i=r(30365),a=r(42871),u=r(16952),s=r(5700),c=r(12605),f=r(78060),l=r(28340);o("search",(function(t,e,r){return[function(e){var r=u(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](c(r))},function(t){var n=i(this),o=c(t),a=r(e,n,o);if(a.done)return a.value;var u=n.lastIndex;s(u,0)||(n.lastIndex=0);var f=l(n,o);return s(n.lastIndex,u)||(n.lastIndex=u),null===f?-1:f.index}]}))},34325:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("small")},{small:function(){return o(this,"small","","")}})},39930:(t,e,r)=>{"use strict";var n=r(91495),o=r(67250),i=r(79942),a=r(30365),u=r(42871),s=r(16952),c=r(28987),f=r(35483),l=r(10188),h=r(12605),p=r(78060),y=r(28340),d=r(62115),v=r(40033),g=d.UNSUPPORTED_Y,b=Math.min,m=o([].push),w=o("".slice),x=!v((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),k="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;i("split",(function(t,e,r){var o="0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:n(e,this,t,r)}:e;return[function(e,r){var i=s(this),a=u(e)?void 0:p(e,t);return a?n(a,e,i,r):n(o,h(i),e,r)},function(t,n){var i=a(this),u=h(t);if(!k){var s=r(o,i,u,n,o!==e);if(s.done)return s.value}var p=c(i,RegExp),d=i.unicode,v=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(g?"g":"y"),x=new p(g?"^(?:"+i.source+")":i,v),S=void 0===n?4294967295:n>>>0;if(0===S)return[];if(0===u.length)return null===y(x,u)?[u]:[];for(var O=0,_=0,E=[];_<u.length;){x.lastIndex=g?0:_;var A,P=y(x,g?w(u,_):u);if(null===P||(A=b(l(x.lastIndex+(g?_:0)),u.length))===O)_=f(u,_,d);else{if(m(E,w(u,O,_)),E.length===S)return E;for(var j=1;j<=P.length-1;j++)if(m(E,P[j]),E.length===S)return E;_=O=A}}return m(E,w(u,O)),E}]}),k||!x,g)},4038:(t,e,r)=>{"use strict";var n,o=r(63964),i=r(71138),a=r(27193).f,u=r(10188),s=r(12605),c=r(86213),f=r(16952),l=r(45490),h=r(4493),p=i("".slice),y=Math.min,d=l("startsWith");o({target:"String",proto:!0,forced:!(!h&&!d&&(n=a(String.prototype,"startsWith"),n&&!n.writable)||d)},{startsWith:function(t){var e=s(f(this));c(t);var r=u(y(arguments.length>1?arguments[1]:void 0,e.length)),n=s(t);return p(e,r,r+n.length)===n}})},74498:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("strike")},{strike:function(){return o(this,"strike","","")}})},15812:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("sub")},{sub:function(){return o(this,"sub","","")}})},95689:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(16952),a=r(61365),u=r(12605),s=o("".slice),c=Math.max,f=Math.min;n({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,o=u(i(this)),l=o.length,h=a(t);return h===1/0&&(h=0),h<0&&(h=c(l+h,0)),(r=void 0===e?l:a(e))<=0||r===1/0||h>=(n=f(h+r,l))?"":s(o,h,n)}})},57726:(t,e,r)=>{"use strict";var n=r(63964),o=r(72506);n({target:"String",proto:!0,forced:r(88539)("sup")},{sup:function(){return o(this,"sup","","")}})},3388:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495),i=r(67250),a=r(16952),u=r(12605),s=r(40033),c=Array,f=i("".charAt),l=i("".charCodeAt),h=i([].join),p="".toWellFormed,y=p&&s((function(){return"1"!==o(p,1)}));n({target:"String",proto:!0,forced:y},{toWellFormed:function(){var t=u(a(this));if(y)return o(p,t);for(var e=t.length,r=c(e),n=0;n<e;n++){var i=l(t,n);55296!=(63488&i)?r[n]=f(t,n):i>=56320||n+1>=e||56320!=(64512&l(t,n+1))?r[n]="�":(r[n]=f(t,n),r[++n]=f(t,n))}return h(r,"")}})},70604:(t,e,r)=>{"use strict";r(99159);var n=r(63964),o=r(43476);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==o},{trimEnd:o})},85404:(t,e,r)=>{"use strict";var n=r(63964),o=r(43885);n({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==o},{trimLeft:o})},99159:(t,e,r)=>{"use strict";var n=r(63964),o=r(43476);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==o},{trimRight:o})},34965:(t,e,r)=>{"use strict";r(85404);var n=r(63964),o=r(43885);n({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==o},{trimStart:o})},8448:(t,e,r)=>{"use strict";var n=r(63964),o=r(92648).trim;n({target:"String",proto:!0,forced:r(90012)("trim")},{trim:function(){return o(this)}})},79250:(t,e,r)=>{"use strict";r(85889)("asyncIterator")},49899:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(91495),a=r(67250),u=r(4493),s=r(58310),c=r(52357),f=r(40033),l=r(45299),h=r(21287),p=r(30365),y=r(57591),d=r(767),v=r(12605),g=r(87458),b=r(80674),m=r(18450),w=r(37310),x=r(81644),k=r(89235),S=r(27193),O=r(74595),_=r(24239),E=r(12867),A=r(55938),P=r(73936),j=r(16639),T=r(19417),M=r(79195),R=r(16738),I=r(24697),C=r(55557),L=r(85889),D=r(52360),B=r(84925),N=r(5419),F=r(22603).forEach,z=T("hidden"),U="Symbol",Y="prototype",G=N.set,H=N.getterFor(U),W=Object[Y],X=o.Symbol,q=X&&X[Y],V=o.RangeError,Q=o.TypeError,K=o.QObject,J=S.f,Z=O.f,$=x.f,tt=E.f,et=a([].push),rt=j("symbols"),nt=j("op-symbols"),ot=j("wks"),it=!K||!K[Y]||!K[Y].findChild,at=function(t,e,r){var n=J(W,e);n&&delete W[e],Z(t,e,r),n&&t!==W&&Z(W,e,n)},ut=s&&f((function(){return 7!==b(Z({},"a",{get:function(){return Z(this,"a",{value:7}).a}})).a}))?at:Z,st=function(t,e){var r=rt[t]=b(q);return G(r,{type:U,tag:t,description:e}),s||(r.description=e),r},ct=function(t,e,r){t===W&&ct(nt,e,r),p(t);var n=d(e);return p(r),l(rt,n)?(r.enumerable?(l(t,z)&&t[z][n]&&(t[z][n]=!1),r=b(r,{enumerable:g(0,!1)})):(l(t,z)||Z(t,z,g(1,b(null))),t[z][n]=!0),ut(t,n,r)):Z(t,n,r)},ft=function(t,e){p(t);var r=y(e),n=m(r).concat(yt(r));return F(n,(function(e){s&&!i(lt,r,e)||ct(t,e,r[e])})),t},lt=function(t){var e=d(t),r=i(tt,this,e);return!(this===W&&l(rt,e)&&!l(nt,e))&&(!(r||!l(this,e)||!l(rt,e)||l(this,z)&&this[z][e])||r)},ht=function(t,e){var r=y(t),n=d(e);if(r!==W||!l(rt,n)||l(nt,n)){var o=J(r,n);return!o||!l(rt,n)||l(r,z)&&r[z][n]||(o.enumerable=!0),o}},pt=function(t){var e=$(y(t)),r=[];return F(e,(function(t){l(rt,t)||l(M,t)||et(r,t)})),r},yt=function(t){var e=t===W,r=$(e?nt:y(t)),n=[];return F(r,(function(t){!l(rt,t)||e&&!l(W,t)||et(n,rt[t])})),n};c||(A(q=(X=function(){if(h(q,this))throw new Q("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,e=R(t),r=function(t){var n=void 0===this?o:this;n===W&&i(r,nt,t),l(n,z)&&l(n[z],e)&&(n[z][e]=!1);var a=g(1,t);try{ut(n,e,a)}catch(t){if(!(t instanceof V))throw t;at(n,e,a)}};return s&&it&&ut(W,e,{configurable:!0,set:r}),st(e,t)})[Y],"toString",(function(){return H(this).tag})),A(X,"withoutSetter",(function(t){return st(R(t),t)})),E.f=lt,O.f=ct,_.f=ft,S.f=ht,w.f=x.f=pt,k.f=yt,C.f=function(t){return st(I(t),t)},s&&(P(q,"description",{configurable:!0,get:function(){return H(this).description}}),u||A(W,"propertyIsEnumerable",lt,{unsafe:!0}))),n({global:!0,constructor:!0,wrap:!0,forced:!c,sham:!c},{Symbol:X}),F(m(ot),(function(t){L(t)})),n({target:U,stat:!0,forced:!c},{useSetter:function(){it=!0},useSimple:function(){it=!1}}),n({target:"Object",stat:!0,forced:!c,sham:!s},{create:function(t,e){return void 0===e?b(t):ft(b(t),e)},defineProperty:ct,defineProperties:ft,getOwnPropertyDescriptor:ht}),n({target:"Object",stat:!0,forced:!c},{getOwnPropertyNames:pt}),D(),B(X,U),M[z]=!0},10933:(t,e,r)=>{"use strict";var n=r(63964),o=r(58310),i=r(16210),a=r(67250),u=r(45299),s=r(55747),c=r(21287),f=r(12605),l=r(73936),h=r(5774),p=i.Symbol,y=p&&p.prototype;if(o&&s(p)&&(!("description"in y)||void 0!==p().description)){var d={},v=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:f(arguments[0]),e=c(y,this)?new p(t):void 0===t?p():p(t);return""===t&&(d[e]=!0),e};h(v,p),v.prototype=y,y.constructor=v;var g="Symbol(description detection)"===String(p("description detection")),b=a(y.valueOf),m=a(y.toString),w=/^Symbol\((.*)\)[^)]+$/,x=a("".replace),k=a("".slice);l(y,"description",{configurable:!0,get:function(){var t=b(this);if(u(d,t))return"";var e=m(t),r=g?k(e,7,-1):x(e,w,"$1");return""===r?void 0:r}}),n({global:!0,constructor:!0,forced:!0},{Symbol:v})}},30828:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(45299),a=r(12605),u=r(16639),s=r(66570),c=u("string-to-symbol-registry"),f=u("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!s},{for:function(t){var e=a(t);if(i(c,e))return c[e];var r=o("Symbol")(e);return c[e]=r,f[r]=e,r}})},53795:(t,e,r)=>{"use strict";r(85889)("hasInstance")},87806:(t,e,r)=>{"use strict";r(85889)("isConcatSpreadable")},64677:(t,e,r)=>{"use strict";r(85889)("iterator")},33313:(t,e,r)=>{"use strict";r(49899),r(30828),r(6862),r(53008),r(28603)},6862:(t,e,r)=>{"use strict";var n=r(63964),o=r(45299),i=r(71399),a=r(89393),u=r(16639),s=r(66570),c=u("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!s},{keyFor:function(t){if(!i(t))throw new TypeError(a(t)+" is not a symbol");if(o(c,t))return c[t]}})},14836:(t,e,r)=>{"use strict";r(85889)("matchAll")},48058:(t,e,r)=>{"use strict";r(85889)("match")},51583:(t,e,r)=>{"use strict";r(85889)("replace")},82403:(t,e,r)=>{"use strict";r(85889)("search")},34265:(t,e,r)=>{"use strict";r(85889)("species")},3295:(t,e,r)=>{"use strict";r(85889)("split")},1078:(t,e,r)=>{"use strict";var n=r(85889),o=r(52360);n("toPrimitive"),o()},63207:(t,e,r)=>{"use strict";var n=r(4009),o=r(85889),i=r(84925);o("toStringTag"),i(n("Symbol"),"Symbol")},80520:(t,e,r)=>{"use strict";r(85889)("unscopables")},79042:(t,e,r)=>{"use strict";var n=r(4246),o=r(24760),i=r(61365),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("at",(function(t){var e=a(this),r=o(e),n=i(t),u=n>=0?n:r+n;return u<0||u>=r?void 0:e[u]}))},99872:(t,e,r)=>{"use strict";var n=r(67250),o=r(4246),i=n(r(71447)),a=o.aTypedArray;(0,o.exportTypedArrayMethod)("copyWithin",(function(t,e){return i(a(this),t,e,arguments.length>2?arguments[2]:void 0)}))},73364:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).every,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("every",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},58166:(t,e,r)=>{"use strict";var n=r(4246),o=r(88471),i=r(61484),a=r(2281),u=r(91495),s=r(67250),c=r(40033),f=n.aTypedArray,l=n.exportTypedArrayMethod,h=s("".slice);l("fill",(function(t){var e=arguments.length;f(this);var r="Big"===h(a(this),0,3)?i(t):+t;return u(o,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),c((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t})))},23793:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).filter,i=r(60398),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("filter",(function(t){var e=o(a(this),t,arguments.length>1?arguments[1]:void 0);return i(this,e)}))},13917:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).findIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},78256:(t,e,r)=>{"use strict";var n=r(4246),o=r(77389).findLastIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLastIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},62557:(t,e,r)=>{"use strict";var n=r(4246),o=r(77389).findLast,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLast",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},43820:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).find,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("find",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},80756:(t,e,r)=>{"use strict";r(80185)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},70567:(t,e,r)=>{"use strict";r(80185)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},19852:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).forEach,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("forEach",(function(t){o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},40379:(t,e,r)=>{"use strict";var n=r(86563);(0,r(4246).exportTypedArrayStaticMethod)("from",r(3805),n)},92770:(t,e,r)=>{"use strict";var n=r(4246),o=r(14211).includes,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("includes",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},81069:(t,e,r)=>{"use strict";var n=r(4246),o=r(14211).indexOf,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("indexOf",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},60037:(t,e,r)=>{"use strict";r(80185)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},44195:(t,e,r)=>{"use strict";r(80185)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},66756:(t,e,r)=>{"use strict";r(80185)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},63689:(t,e,r)=>{"use strict";var n=r(16210),o=r(40033),i=r(67250),a=r(4246),u=r(34570),s=r(24697)("iterator"),c=n.Uint8Array,f=i(u.values),l=i(u.keys),h=i(u.entries),p=a.aTypedArray,y=a.exportTypedArrayMethod,d=c&&c.prototype,v=!o((function(){d[s].call([1])})),g=!!d&&d.values&&d[s]===d.values&&"values"===d.values.name,b=function(){return f(p(this))};y("entries",(function(){return h(p(this))}),v),y("keys",(function(){return l(p(this))}),v),y("values",b,v||!g,{name:"values"}),y(s,b,v||!g,{name:"values"})},5659:(t,e,r)=>{"use strict";var n=r(4246),o=r(67250),i=n.aTypedArray,a=n.exportTypedArrayMethod,u=o([].join);a("join",(function(t){return u(i(this),t)}))},25014:(t,e,r)=>{"use strict";var n=r(4246),o=r(61267),i=r(1325),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return o(i,a(this),e>1?[t,arguments[1]]:[t])}))},32189:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).map,i=n.aTypedArray,a=n.getTypedArrayConstructor;(0,n.exportTypedArrayMethod)("map",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(a(t))(e)}))}))},23030:(t,e,r)=>{"use strict";var n=r(4246),o=r(86563),i=n.aTypedArrayConstructor;(0,n.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(i(this))(e);e>t;)r[t]=arguments[t++];return r}),o)},49110:(t,e,r)=>{"use strict";var n=r(4246),o=r(56844).right,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},24309:(t,e,r)=>{"use strict";var n=r(4246),o=r(56844).left,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},56445:(t,e,r)=>{"use strict";var n=r(4246),o=n.aTypedArray,i=n.exportTypedArrayMethod,a=Math.floor;i("reverse",(function(){for(var t,e=this,r=o(e).length,n=a(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}))},30939:(t,e,r)=>{"use strict";var n=r(16210),o=r(91495),i=r(4246),a=r(24760),u=r(56043),s=r(46771),c=r(40033),f=n.RangeError,l=n.Int8Array,h=l&&l.prototype,p=h&&h.set,y=i.aTypedArray,d=i.exportTypedArrayMethod,v=!c((function(){var t=new Uint8ClampedArray(2);return o(p,t,{length:1,0:3},1),3!==t[1]})),g=v&&i.NATIVE_ARRAY_BUFFER_VIEWS&&c((function(){var t=new l(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));d("set",(function(t){y(this);var e=u(arguments.length>1?arguments[1]:void 0,1),r=s(t);if(v)return o(p,this,r,e);var n=this.length,i=a(r),c=0;if(i+e>n)throw new f("Wrong length");for(;c<i;)this[e+c]=r[c++]}),!v||g)},48321:(t,e,r)=>{"use strict";var n=r(4246),o=r(40033),i=r(54602),a=n.aTypedArray,u=n.getTypedArrayConstructor;(0,n.exportTypedArrayMethod)("slice",(function(t,e){for(var r=i(a(this),t,e),n=u(this),o=0,s=r.length,c=new n(s);s>o;)c[o]=r[o++];return c}),o((function(){new Int8Array(1).slice()})))},88739:(t,e,r)=>{"use strict";var n=r(4246),o=r(22603).some,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("some",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},60415:(t,e,r)=>{"use strict";var n=r(16210),o=r(71138),i=r(40033),a=r(10320),u=r(90274),s=r(4246),c=r(50503),f=r(79725),l=r(83141),h=r(44981),p=s.aTypedArray,y=s.exportTypedArrayMethod,d=n.Uint16Array,v=d&&o(d.prototype.sort),g=!(!v||i((function(){v(new d(2),null)}))&&i((function(){v(new d(2),{})}))),b=!!v&&!i((function(){if(l)return l<74;if(c)return c<67;if(f)return!0;if(h)return h<602;var t,e,r=new d(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(v(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));y("sort",(function(t){return void 0!==t&&a(t),b?v(this,t):u(p(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!b||g)},72532:(t,e,r)=>{"use strict";var n=r(4246),o=r(10188),i=r(13912),a=n.aTypedArray,u=n.getTypedArrayConstructor;(0,n.exportTypedArrayMethod)("subarray",(function(t,e){var r=a(this),n=r.length,s=i(t,n);return new(u(r))(r.buffer,r.byteOffset+s*r.BYTES_PER_ELEMENT,o((void 0===e?n:i(e,n))-s))}))},62207:(t,e,r)=>{"use strict";var n=r(16210),o=r(61267),i=r(4246),a=r(40033),u=r(54602),s=n.Int8Array,c=i.aTypedArray,f=i.exportTypedArrayMethod,l=[].toLocaleString,h=!!s&&a((function(){l.call(new s(1))}));f("toLocaleString",(function(){return o(l,h?u(c(this)):c(this),u(arguments))}),a((function(){return[1,2].toLocaleString()!==new s([1,2]).toLocaleString()}))||!a((function(){s.prototype.toLocaleString.call([1,2])})))},42153:(t,e,r)=>{"use strict";var n=r(81354),o=r(4246),i=o.aTypedArray,a=o.exportTypedArrayMethod,u=o.getTypedArrayConstructor;a("toReversed",(function(){return n(i(this),u(this))}))},53262:(t,e,r)=>{"use strict";var n=r(4246),o=r(67250),i=r(10320),a=r(78008),u=n.aTypedArray,s=n.getTypedArrayConstructor,c=n.exportTypedArrayMethod,f=o(n.TypedArrayPrototype.sort);c("toSorted",(function(t){void 0!==t&&i(t);var e=u(this),r=a(s(e),e);return f(r,t)}))},906:(t,e,r)=>{"use strict";var n=r(4246).exportTypedArrayMethod,o=r(40033),i=r(16210),a=r(67250),u=i.Uint8Array,s=u&&u.prototype||{},c=[].toString,f=a([].join);o((function(){c.call({})}))&&(c=function(){return f(this)});var l=s.toString!==c;n("toString",c,l)},78824:(t,e,r)=>{"use strict";r(80185)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},72846:(t,e,r)=>{"use strict";r(80185)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},24575:(t,e,r)=>{"use strict";r(80185)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},71968:(t,e,r)=>{"use strict";r(80185)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0)},7811:(t,e,r)=>{"use strict";var n=r(85370),o=r(4246),i=r(40221),a=r(61365),u=r(61484),s=o.aTypedArray,c=o.getTypedArrayConstructor,f=o.exportTypedArrayMethod,l=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();f("with",{with:function(t,e){var r=s(this),o=a(t),f=i(r)?u(e):+e;return n(r,c(r),o,f)}}.with,!l)},22385:(t,e,r)=>{"use strict";var n=r(63964),o=r(67250),i=r(12605),a=String.fromCharCode,u=o("".charAt),s=o(/./.exec),c=o("".slice),f=/^[\da-f]{2}$/i,l=/^[\da-f]{4}$/i;n({global:!0},{unescape:function(t){for(var e,r,n=i(t),o="",h=n.length,p=0;p<h;){if("%"===(e=u(n,p++)))if("u"===u(n,p)){if(r=c(n,p+1,p+5),s(l,r)){o+=a(parseInt(r,16)),p+=5;continue}}else if(r=c(n,p,p+2),s(f,r)){o+=a(parseInt(r,16)),p+=2;continue}o+=e}return o}})},80040:(t,e,r)=>{"use strict";var n,o=r(50730),i=r(16210),a=r(67250),u=r(30145),s=r(81969),c=r(45150),f=r(39895),l=r(77568),h=r(5419).enforce,p=r(40033),y=r(21820),d=Object,v=Array.isArray,g=d.isExtensible,b=d.isFrozen,m=d.isSealed,w=d.freeze,x=d.seal,k=!i.ActiveXObject&&"ActiveXObject"in i,S=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},O=c("WeakMap",S,f),_=O.prototype,E=a(_.set);if(y)if(k){n=f.getConstructor(S,"WeakMap",!0),s.enable();var A=a(_.delete),P=a(_.has),j=a(_.get);u(_,{delete:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),A(this,t)||e.frozen.delete(t)}return A(this,t)},has:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),P(this,t)||e.frozen.has(t)}return P(this,t)},get:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),P(this,t)?j(this,t):e.frozen.get(t)}return j(this,t)},set:function(t,e){if(l(t)&&!g(t)){var r=h(this);r.frozen||(r.frozen=new n),P(this,t)?E(this,t,e):r.frozen.set(t,e)}else E(this,t,e);return this}})}else o&&p((function(){var t=w([]);return E(new O,t,1),!b(t)}))&&u(_,{set:function(t,e){var r;return v(t)&&(b(t)?r=w:m(t)&&(r=x)),E(this,t,e),r&&r(t),this}})},90846:(t,e,r)=>{"use strict";r(80040)},67042:(t,e,r)=>{"use strict";r(45150)("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(39895))},40348:(t,e,r)=>{"use strict";r(67042)},99243:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(4009),a=r(67250),u=r(91495),s=r(40033),c=r(12605),f=r(24986),l=r(20622).c2i,h=/[^\d+/a-z]/i,p=/[\t\n\f\r ]+/g,y=/[=]{1,2}$/,d=i("atob"),v=String.fromCharCode,g=a("".charAt),b=a("".replace),m=a(h.exec),w=!!d&&!s((function(){return"hi"!==d("aGk=")})),x=w&&s((function(){return""!==d(" ")})),k=w&&!s((function(){d("a")})),S=w&&!s((function(){d()})),O=w&&1!==d.length;n({global:!0,bind:!0,enumerable:!0,forced:!w||x||k||S||O},{atob:function(t){if(f(arguments.length,1),w&&!x&&!k)return u(d,o,t);var e,r,n,a=b(c(t),p,""),s="",S=0,O=0;if(a.length%4==0&&(a=b(a,y,"")),(e=a.length)%4==1||m(h,a))throw new(i("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;S<e;)r=g(a,S++),n=O%4?64*n+l[r]:l[r],O++%4&&(s+=v(255&n>>(-2*O&6)));return s}})},15209:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(4009),a=r(67250),u=r(91495),s=r(40033),c=r(12605),f=r(24986),l=r(20622).i2c,h=i("btoa"),p=a("".charAt),y=a("".charCodeAt),d=!!h&&!s((function(){return"aGk="!==h("hi")})),v=d&&!s((function(){h()})),g=d&&s((function(){return"bnVsbA=="!==h(null)})),b=d&&1!==h.length;n({global:!0,bind:!0,enumerable:!0,forced:!d||v||g||b},{btoa:function(t){if(f(arguments.length,1),d)return u(h,o,c(t));for(var e,r,n=c(t),a="",s=0,v=l;p(n,s)||(v="=",s%1);){if((r=y(n,s+=3/4))>255)throw new(i("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");a+=p(v,63&(e=e<<8|r)>>8-s%1*8)}return a}})},5606:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(60375).clear;n({global:!0,bind:!0,enumerable:!0,forced:o.clearImmediate!==i},{clearImmediate:i})},11446:(t,e,r)=>{"use strict";var n=r(16210),o=r(69058),i=r(90502),a=r(35601),u=r(37909),s=function(t){if(t&&t.forEach!==a)try{u(t,"forEach",a)}catch(e){t.forEach=a}};for(var c in o)o[c]&&s(n[c]&&n[c].prototype);s(i)},91127:(t,e,r)=>{"use strict";var n=r(16210),o=r(69058),i=r(90502),a=r(34570),u=r(37909),s=r(84925),c=r(24697)("iterator"),f=a.values,l=function(t,e){if(t){if(t[c]!==f)try{u(t,c,f)}catch(e){t[c]=f}if(s(t,e,!0),o[e])for(var r in a)if(t[r]!==a[r])try{u(t,r,a[r])}catch(e){t[r]=a[r]}}};for(var h in o)l(n[h]&&n[h].prototype,h);l(i,"DOMTokenList")},91001:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(58835),a=r(40033),u=r(80674),s=r(87458),c=r(74595).f,f=r(55938),l=r(73936),h=r(45299),p=r(60077),y=r(30365),d=r(44790),v=r(75577),g=r(41852),b=r(89767),m=r(5419),w=r(58310),x=r(4493),k="DOMException",S="DATA_CLONE_ERR",O=o("Error"),_=o(k)||function(){try{(new(o("MessageChannel")||i("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name===S&&25===t.code)return t.constructor}}(),E=_&&_.prototype,A=O.prototype,P=m.set,j=m.getterFor(k),T="stack"in new O(k),M=function(t){return h(g,t)&&g[t].m?g[t].c:0},R=function(){p(this,I);var t=arguments.length,e=v(t<1?void 0:arguments[0]),r=v(t<2?void 0:arguments[1],"Error"),n=M(r);if(P(this,{type:k,name:r,message:e,code:n}),w||(this.name=r,this.message=e,this.code=n),T){var o=new O(e);o.name=k,c(this,"stack",s(1,b(o.stack,1)))}},I=R.prototype=u(A),C=function(t){return{enumerable:!0,configurable:!0,get:t}},L=function(t){return C((function(){return j(this)[t]}))};w&&(l(I,"code",L("code")),l(I,"message",L("message")),l(I,"name",L("name"))),c(I,"constructor",s(1,R));var D=a((function(){return!(new _ instanceof O)})),B=D||a((function(){return A.toString!==d||"2: 1"!==String(new _(1,2))})),N=D||a((function(){return 25!==new _(1,"DataCloneError").code})),F=D||25!==_[S]||25!==E[S],z=x?B||N||F:D;n({global:!0,constructor:!0,forced:z},{DOMException:z?R:_});var U=o(k),Y=U.prototype;for(var G in B&&(x||_===U)&&f(Y,"toString",d),N&&w&&_===U&&l(Y,"code",C((function(){return M(y(this).name)}))),g)if(h(g,G)){var H=g[G],W=H.s,X=s(6,H.c);h(U,W)||c(U,W,X),h(Y,W)||c(Y,W,X)}},54913:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(4009),a=r(87458),u=r(74595).f,s=r(45299),c=r(60077),f=r(5781),l=r(75577),h=r(41852),p=r(89767),y=r(58310),d=r(4493),v="DOMException",g=i("Error"),b=i(v),m=function(){c(this,w);var t=arguments.length,e=l(t<1?void 0:arguments[0]),r=l(t<2?void 0:arguments[1],"Error"),n=new b(e,r),o=new g(e);return o.name=v,u(n,"stack",a(1,p(o.stack,1))),f(n,this,m),n},w=m.prototype=b.prototype,x="stack"in new g(v),k="stack"in new b(1,2),S=b&&y&&Object.getOwnPropertyDescriptor(o,v),O=!(!S||S.writable&&S.configurable),_=x&&!O&&!k;n({global:!0,constructor:!0,forced:d||_},{DOMException:_?m:b});var E=i(v),A=E.prototype;if(A.constructor!==E)for(var P in d||u(A,"constructor",a(1,E)),h)if(s(h,P)){var j=h[P],T=j.s;s(E,T)||u(E,T,a(6,j.c))}},47773:(t,e,r)=>{"use strict";var n=r(4009),o="DOMException";r(84925)(n(o),o)},83006:(t,e,r)=>{"use strict";r(5606),r(27807)},25764:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(37713),a=r(10320),u=r(24986),s=r(40033),c=r(58310);n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:s((function(){return c&&1!==Object.getOwnPropertyDescriptor(o,"queueMicrotask").value.length}))},{queueMicrotask:function(t){u(arguments.length,1),i(a(t))}})},11573:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(73936),a=r(58310),u=TypeError,s=Object.defineProperty,c=o.self!==o;try{if(a){var f=Object.getOwnPropertyDescriptor(o,"self");!c&&f&&f.get&&f.enumerable||i(o,"self",{get:function(){return o},set:function(t){if(this!==o)throw new u("Illegal invocation");s(o,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else n({global:!0,simple:!0,forced:c},{self:o})}catch(t){}},27807:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(60375).set,a=r(78362),u=o.setImmediate?a(i,!1):i;n({global:!0,bind:!0,enumerable:!0,forced:o.setImmediate!==u},{setImmediate:u})},45569:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(78362)(o.setInterval,!0);n({global:!0,bind:!0,forced:o.setInterval!==i},{setInterval:i})},5213:(t,e,r)=>{"use strict";var n=r(63964),o=r(16210),i=r(78362)(o.setTimeout,!0);n({global:!0,bind:!0,forced:o.setTimeout!==i},{setTimeout:i})},63908:(t,e,r)=>{"use strict";var n,o=r(4493),i=r(63964),a=r(16210),u=r(4009),s=r(67250),c=r(40033),f=r(16738),l=r(55747),h=r(1031),p=r(42871),y=r(77568),d=r(71399),v=r(49450),g=r(30365),b=r(2281),m=r(45299),w=r(60102),x=r(37909),k=r(24760),S=r(24986),O=r(73392),_=r(31186),E=r(13128),A=r(51551),P=r(3609),j=r(31013),T=r(8534),M=a.Object,R=a.Array,I=a.Date,C=a.Error,L=a.TypeError,D=a.PerformanceMark,B=u("DOMException"),N=_.Map,F=_.has,z=_.get,U=_.set,Y=E.Set,G=E.add,H=E.has,W=u("Object","keys"),X=s([].push),q=s((!0).valueOf),V=s(1..valueOf),Q=s("".valueOf),K=s(I.prototype.getTime),J=f("structuredClone"),Z="DataCloneError",$="Transferring",tt=function(t){return!c((function(){var e=new a.Set([7]),r=t(e),n=t(M(7));return r===e||!r.has(7)||!y(n)||7!=+n}))&&t},et=function(t,e){return!c((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},rt=a.structuredClone,nt=o||!et(rt,C)||!et(rt,B)||(n=rt,!!c((function(){var t=n(new a.AggregateError([1],J,{cause:3}));return"AggregateError"!==t.name||1!==t.errors[0]||t.message!==J||3!==t.cause}))),ot=!rt&&tt((function(t){return new D(J,{detail:t}).detail})),it=tt(rt)||ot,at=function(t){throw new B("Uncloneable type: "+t,Z)},ut=function(t,e){throw new B((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",Z)},st=function(t,e){return it||ut(e),it(t)},ct=function(t,e,r){if(F(e,t))return z(e,t);var n,o,i,u,s,c;if("SharedArrayBuffer"===(r||b(t)))n=it?it(t):t;else{var f=a.DataView;f||l(t.slice)||ut("ArrayBuffer");try{if(l(t.slice)&&!t.resizable)n=t.slice(0);else{o=t.byteLength,i="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(o,i),u=new f(t),s=new f(n);for(c=0;c<o;c++)s.setUint8(c,u.getUint8(c))}}catch(t){throw new B("ArrayBuffer is detached",Z)}}return U(e,t,n),n},ft=function(t,e){if(d(t)&&at("Symbol"),!y(t))return t;if(e){if(F(e,t))return z(e,t)}else e=new N;var r,n,o,i,s,c,f,h,p=b(t);switch(p){case"Array":o=R(k(t));break;case"Object":o={};break;case"Map":o=new N;break;case"Set":o=new Y;break;case"RegExp":o=new RegExp(t.source,O(t));break;case"Error":switch(n=t.name){case"AggregateError":o=new(u(n))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":o=new(u(n));break;case"CompileError":case"LinkError":case"RuntimeError":o=new(u("WebAssembly",n));break;default:o=new C}break;case"DOMException":o=new B(t.message,t.name);break;case"ArrayBuffer":case"SharedArrayBuffer":o=ct(t,e,p);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":c="DataView"===p?t.byteLength:t.length,o=function(t,e,r,n,o){var i=a[e];return y(i)||ut(e),new i(ct(t.buffer,o),r,n)}(t,p,t.byteOffset,c,e);break;case"DOMQuad":try{o=new DOMQuad(ft(t.p1,e),ft(t.p2,e),ft(t.p3,e),ft(t.p4,e))}catch(e){o=st(t,p)}break;case"File":if(it)try{o=it(t),b(o)!==p&&(o=void 0)}catch(t){}if(!o)try{o=new File([t],t.name,t)}catch(t){}o||ut(p);break;case"FileList":if(i=function(){var t;try{t=new a.DataTransfer}catch(e){try{t=new a.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(s=0,c=k(t);s<c;s++)i.items.add(ft(t[s],e));o=i.files}else o=st(t,p);break;case"ImageData":try{o=new ImageData(ft(t.data,e),t.width,t.height,{colorSpace:t.colorSpace})}catch(e){o=st(t,p)}break;default:if(it)o=it(t);else switch(p){case"BigInt":o=M(t.valueOf());break;case"Boolean":o=M(q(t));break;case"Number":o=M(V(t));break;case"String":o=M(Q(t));break;case"Date":o=new I(K(t));break;case"Blob":try{o=t.slice(0,t.size,t.type)}catch(t){ut(p)}break;case"DOMPoint":case"DOMPointReadOnly":r=a[p];try{o=r.fromPoint?r.fromPoint(t):new r(t.x,t.y,t.z,t.w)}catch(t){ut(p)}break;case"DOMRect":case"DOMRectReadOnly":r=a[p];try{o=r.fromRect?r.fromRect(t):new r(t.x,t.y,t.width,t.height)}catch(t){ut(p)}break;case"DOMMatrix":case"DOMMatrixReadOnly":r=a[p];try{o=r.fromMatrix?r.fromMatrix(t):new r(t)}catch(t){ut(p)}break;case"AudioData":case"VideoFrame":l(t.clone)||ut(p);try{o=t.clone()}catch(t){at(p)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":ut(p);default:at(p)}}switch(U(e,t,o),p){case"Array":case"Object":for(f=W(t),s=0,c=k(f);s<c;s++)h=f[s],w(o,h,ft(t[h],e));break;case"Map":t.forEach((function(t,r){U(o,ft(r,e),ft(t,e))}));break;case"Set":t.forEach((function(t){G(o,ft(t,e))}));break;case"Error":x(o,"message",ft(t.message,e)),m(t,"cause")&&x(o,"cause",ft(t.cause,e)),"AggregateError"===n?o.errors=ft(t.errors,e):"SuppressedError"===n&&(o.error=ft(t.error,e),o.suppressed=ft(t.suppressed,e));case"DOMException":j&&x(o,"stack",ft(t.stack,e))}return o};i({global:!0,enumerable:!0,sham:!T,forced:nt},{structuredClone:function(t){var e,r,n=S(arguments.length,1)>1&&!p(arguments[1])?g(arguments[1]):void 0,o=n?n.transfer:void 0;void 0!==o&&(r=function(t,e){if(!y(t))throw new L("Transfer option cannot be converted to a sequence");var r=[];v(t,(function(t){X(r,g(t))}));for(var n,o,i,u,s,c=0,f=k(r),p=new Y;c<f;){if(n=r[c++],"ArrayBuffer"===(o=b(n))?H(p,n):F(e,n))throw new B("Duplicate transferable",Z);if("ArrayBuffer"!==o){if(T)u=rt(n,{transfer:[n]});else switch(o){case"ImageBitmap":i=a.OffscreenCanvas,h(i)||ut(o,$);try{(s=new i(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),u=s.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":l(n.clone)&&l(n.close)||ut(o,$);try{u=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"MIDIAccess":case"OffscreenCanvas":case"ReadableStream":case"RTCDataChannel":case"TransformStream":case"WebTransportReceiveStream":case"WebTransportSendStream":case"WritableStream":ut(o,$)}if(void 0===u)throw new B("This object cannot be transferred: "+o,Z);U(e,n,u)}else G(p,n)}return p}(o,e=new N));var i=ft(t,e);return r&&function(t){A(t,(function(t){T?it(t,{transfer:[t]}):l(t.transfer)?t.transfer():P?P(t):ut("ArrayBuffer",$)}))}(r),i}})},69401:(t,e,r)=>{"use strict";r(45569),r(5213)},41504:(t,e,r)=>{"use strict";r(34570),r(9867);var n=r(63964),o=r(16210),i=r(44915),a=r(4009),u=r(91495),s=r(67250),c=r(58310),f=r(92178),l=r(55938),h=r(73936),p=r(30145),y=r(84925),d=r(5656),v=r(5419),g=r(60077),b=r(55747),m=r(45299),w=r(75754),x=r(2281),k=r(30365),S=r(77568),O=r(12605),_=r(80674),E=r(87458),A=r(77455),P=r(59201),j=r(5959),T=r(24986),M=r(24697),R=r(90274),I=M("iterator"),C="URLSearchParams",L=C+"Iterator",D=v.set,B=v.getterFor(C),N=v.getterFor(L),F=i("fetch"),z=i("Request"),U=i("Headers"),Y=z&&z.prototype,G=U&&U.prototype,H=o.TypeError,W=o.encodeURIComponent,X=String.fromCharCode,q=a("String","fromCodePoint"),V=parseInt,Q=s("".charAt),K=s([].join),J=s([].push),Z=s("".replace),$=s([].shift),tt=s([].splice),et=s("".split),rt=s("".slice),nt=s(/./.exec),ot=/\+/g,it=/^[0-9a-f]+$/i,at=function(t,e){var r=rt(t,e,e+2);return nt(it,r)?V(r,16):NaN},ut=function(t){for(var e=0,r=128;r>0&&t&r;r>>=1)e++;return e},st=function(t){var e=null;switch(t.length){case 1:e=t[0];break;case 2:e=(31&t[0])<<6|63&t[1];break;case 3:e=(15&t[0])<<12|(63&t[1])<<6|63&t[2];break;case 4:e=(7&t[0])<<18|(63&t[1])<<12|(63&t[2])<<6|63&t[3]}return e>1114111?null:e},ct=function(t){for(var e=(t=Z(t,ot," ")).length,r="",n=0;n<e;){var o=Q(t,n);if("%"===o){if("%"===Q(t,n+1)||n+3>e){r+="%",n++;continue}var i=at(t,n+1);if(i!=i){r+=o,n++;continue}n+=2;var a=ut(i);if(0===a)o=X(i);else{if(1===a||a>4){r+="�",n++;continue}for(var u=[i],s=1;s<a&&!(3+ ++n>e||"%"!==Q(t,n));){var c=at(t,n+1);if(c!=c){n+=3;break}if(c>191||c<128)break;J(u,c),n+=2,s++}if(u.length!==a){r+="�";continue}var f=st(u);null===f?r+="�":o=q(f)}}r+=o,n++}return r},ft=/[!'()~]|%20/g,lt={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},ht=function(t){return lt[t]},pt=function(t){return Z(W(t),ft,ht)},yt=d((function(t,e){D(this,{type:L,target:B(t).entries,index:0,kind:e})}),C,(function(){var t=N(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,j(void 0,!0);var n=e[r];switch(t.kind){case"keys":return j(n.key,!1);case"values":return j(n.value,!1)}return j([n.key,n.value],!1)}),!0),dt=function(t){this.entries=[],this.url=null,void 0!==t&&(S(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===Q(t,0)?rt(t,1):t:O(t)))};dt.prototype={type:C,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,o,i,a,s,c=this.entries,f=P(t);if(f)for(r=(e=A(t,f)).next;!(n=u(r,e)).done;){if(i=(o=A(k(n.value))).next,(a=u(i,o)).done||(s=u(i,o)).done||!u(i,o).done)throw new H("Expected sequence with length 2");J(c,{key:O(a.value),value:O(s.value)})}else for(var l in t)m(t,l)&&J(c,{key:l,value:O(t[l])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,o=et(t,"&"),i=0;i<o.length;)(e=o[i++]).length&&(r=et(e,"="),J(n,{key:ct($(r)),value:ct(K(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],J(r,pt(t.key)+"="+pt(t.value));return K(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var vt=function(){g(this,gt);var t=D(this,new dt(arguments.length>0?arguments[0]:void 0));c||(this.size=t.entries.length)},gt=vt.prototype;if(p(gt,{append:function(t,e){var r=B(this);T(arguments.length,2),J(r.entries,{key:O(t),value:O(e)}),c||this.length++,r.updateURL()},delete:function(t){for(var e=B(this),r=T(arguments.length,1),n=e.entries,o=O(t),i=r<2?void 0:arguments[1],a=void 0===i?i:O(i),u=0;u<n.length;){var s=n[u];if(s.key!==o||void 0!==a&&s.value!==a)u++;else if(tt(n,u,1),void 0!==a)break}c||(this.size=n.length),e.updateURL()},get:function(t){var e=B(this).entries;T(arguments.length,1);for(var r=O(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=B(this).entries;T(arguments.length,1);for(var r=O(t),n=[],o=0;o<e.length;o++)e[o].key===r&&J(n,e[o].value);return n},has:function(t){for(var e=B(this).entries,r=T(arguments.length,1),n=O(t),o=r<2?void 0:arguments[1],i=void 0===o?o:O(o),a=0;a<e.length;){var u=e[a++];if(u.key===n&&(void 0===i||u.value===i))return!0}return!1},set:function(t,e){var r=B(this);T(arguments.length,1);for(var n,o=r.entries,i=!1,a=O(t),u=O(e),s=0;s<o.length;s++)(n=o[s]).key===a&&(i?tt(o,s--,1):(i=!0,n.value=u));i||J(o,{key:a,value:u}),c||(this.size=o.length),r.updateURL()},sort:function(){var t=B(this);R(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=B(this).entries,n=w(t,arguments.length>1?arguments[1]:void 0),o=0;o<r.length;)n((e=r[o++]).value,e.key,this)},keys:function(){return new yt(this,"keys")},values:function(){return new yt(this,"values")},entries:function(){return new yt(this,"entries")}},{enumerable:!0}),l(gt,I,gt.entries,{name:"entries"}),l(gt,"toString",(function(){return B(this).serialize()}),{enumerable:!0}),c&&h(gt,"size",{get:function(){return B(this).entries.length},configurable:!0,enumerable:!0}),y(vt,C),n({global:!0,constructor:!0,forced:!f},{URLSearchParams:vt}),!f&&b(U)){var bt=s(G.has),mt=s(G.set),wt=function(t){if(S(t)){var e,r=t.body;if(x(r)===C)return e=t.headers?new U(t.headers):new U,bt(e,"content-type")||mt(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),_(t,{body:E(0,O(r)),headers:E(0,e)})}return t};if(b(F)&&n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return F(t,arguments.length>1?wt(arguments[1]):{})}}),b(z)){var xt=function(t){return g(this,Y),new z(t,arguments.length>1?wt(arguments[1]):{})};Y.constructor=xt,xt.prototype=Y,n({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:xt})}}t.exports={URLSearchParams:vt,getState:B}},1105:(t,e,r)=>{"use strict";var n=r(55938),o=r(67250),i=r(12605),a=r(24986),u=URLSearchParams,s=u.prototype,c=o(s.append),f=o(s.delete),l=o(s.forEach),h=o([].push),p=new u("a=1&a=2&b=3");p.delete("a",1),p.delete("b",void 0),p+""!="a=2"&&n(s,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=[];l(this,(function(t,e){h(n,{key:e,value:t})})),a(e,1);for(var o,u=i(t),s=i(r),p=0,y=0,d=!1,v=n.length;p<v;)o=n[p++],d||o.key===u?(d=!0,f(this,o.key)):y++;for(;y<v;)(o=n[y++]).key===u&&o.value===s||c(this,o.key,o.value)}),{enumerable:!0,unsafe:!0})},73612:(t,e,r)=>{"use strict";var n=r(55938),o=r(67250),i=r(12605),a=r(24986),u=URLSearchParams,s=u.prototype,c=o(s.getAll),f=o(s.has),l=new u("a=1");!l.has("a",2)&&l.has("a",void 0)||n(s,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=c(this,t);a(e,1);for(var o=i(r),u=0;u<n.length;)if(n[u++]===o)return!0;return!1}),{enumerable:!0,unsafe:!0})},92950:(t,e,r)=>{"use strict";r(41504)},27895:(t,e,r)=>{"use strict";var n=r(58310),o=r(67250),i=r(73936),a=URLSearchParams.prototype,u=o(a.forEach);n&&!("size"in a)&&i(a,"size",{get:function(){var t=0;return u(this,(function(){t++})),t},configurable:!0,enumerable:!0})},41172:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(40033),a=r(24986),u=r(12605),s=r(92178),c=o("URL"),f=s&&i((function(){c.canParse()})),l=i((function(){return 1!==c.canParse.length}));n({target:"URL",stat:!0,forced:!f||l},{canParse:function(t){var e=a(arguments.length,1),r=u(t),n=e<2||void 0===arguments[1]?void 0:u(arguments[1]);try{return!!new c(r,n)}catch(t){return!1}}})},52164:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}r(12354);var o,i=r(63964),a=r(58310),u=r(92178),s=r(16210),c=r(75754),f=r(67250),l=r(55938),h=r(73936),p=r(60077),y=r(45299),d=r(41143),v=r(73174),g=r(54602),b=r(50233).codeAt,m=r(74915),w=r(12605),x=r(84925),k=r(24986),S=r(41504),O=r(5419),_=O.set,E=O.getterFor("URL"),A=S.URLSearchParams,P=S.getState,j=s.URL,T=s.TypeError,M=s.parseInt,R=Math.floor,I=Math.pow,C=f("".charAt),L=f(/./.exec),D=f([].join),B=f(1..toString),N=f([].pop),F=f([].push),z=f("".replace),U=f([].shift),Y=f("".split),G=f("".slice),H=f("".toLowerCase),W=f([].unshift),X="Invalid scheme",q="Invalid host",V="Invalid port",Q=/[a-z]/i,K=/[\d+-.a-z]/i,J=/\d/,Z=/^0x/i,$=/^[0-7]+$/,tt=/^\d+$/,et=/^[\da-f]+$/i,rt=/[\0\t\n\r #%/:<>?@[\\\]^|]/,nt=/[\0\t\n\r #/:<>?@[\\\]^|]/,ot=/^[\u0000-\u0020]+/,it=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,at=/[\t\n\r]/g,ut=function(t){var e,r,o,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)W(e,t%256),t=R(t/256);return D(e,".")}if("object"==n(t)){for(e="",o=function(t){for(var e=null,r=1,n=null,o=0,i=0;i<8;i++)0!==t[i]?(o>r&&(e=n,r=o),n=null,o=0):(null===n&&(n=i),++o);return o>r?n:e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),o===r?(e+=r?":":"::",i=!0):(e+=B(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},st={},ct=d({},st,{" ":1,'"':1,"<":1,">":1,"`":1}),ft=d({},ct,{"#":1,"?":1,"{":1,"}":1}),lt=d({},ft,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),ht=function(t,e){var r=b(t,0);return r>32&&r<127&&!y(e,t)?t:encodeURIComponent(t)},pt={ftp:21,file:null,http:80,https:443,ws:80,wss:443},yt=function(t,e){var r;return 2===t.length&&L(Q,C(t,0))&&(":"===(r=C(t,1))||!e&&"|"===r)},dt=function(t){var e;return t.length>1&&yt(G(t,0,2))&&(2===t.length||"/"===(e=C(t,2))||"\\"===e||"?"===e||"#"===e)},vt=function(t){return"."===t||"%2e"===H(t)},gt={},bt={},mt={},wt={},xt={},kt={},St={},Ot={},_t={},Et={},At={},Pt={},jt={},Tt={},Mt={},Rt={},It={},Ct={},Lt={},Dt={},Bt={},Nt=function(t,e,r){var n,o,i,a=w(t);if(e){if(o=this.parse(a))throw new T(o);this.searchParams=null}else{if(void 0!==r&&(n=new Nt(r,!0)),o=this.parse(a,null,n))throw new T(o);(i=P(new A)).bindURL(this),this.searchParams=i}};Nt.prototype={type:"URL",parse:function(t,e,r){var n,i,a,u,s,c=this,f=e||gt,l=0,h="",p=!1,d=!1,b=!1;for(t=w(t),e||(c.scheme="",c.username="",c.password="",c.host=null,c.port=null,c.path=[],c.query=null,c.fragment=null,c.cannotBeABaseURL=!1,t=z(t,ot,""),t=z(t,it,"$1")),t=z(t,at,""),n=v(t);l<=n.length;){switch(i=n[l],f){case gt:if(!i||!L(Q,i)){if(e)return X;f=mt;continue}h+=H(i),f=bt;break;case bt:if(i&&(L(K,i)||"+"===i||"-"===i||"."===i))h+=H(i);else{if(":"!==i){if(e)return X;h="",f=mt,l=0;continue}if(e&&(c.isSpecial()!==y(pt,h)||"file"===h&&(c.includesCredentials()||null!==c.port)||"file"===c.scheme&&!c.host))return;if(c.scheme=h,e)return void(c.isSpecial()&&pt[c.scheme]===c.port&&(c.port=null));h="","file"===c.scheme?f=Tt:c.isSpecial()&&r&&r.scheme===c.scheme?f=wt:c.isSpecial()?f=Ot:"/"===n[l+1]?(f=xt,l++):(c.cannotBeABaseURL=!0,F(c.path,""),f=Lt)}break;case mt:if(!r||r.cannotBeABaseURL&&"#"!==i)return X;if(r.cannotBeABaseURL&&"#"===i){c.scheme=r.scheme,c.path=g(r.path),c.query=r.query,c.fragment="",c.cannotBeABaseURL=!0,f=Bt;break}f="file"===r.scheme?Tt:kt;continue;case wt:if("/"!==i||"/"!==n[l+1]){f=kt;continue}f=_t,l++;break;case xt:if("/"===i){f=Et;break}f=Ct;continue;case kt:if(c.scheme=r.scheme,i===o)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query;else if("/"===i||"\\"===i&&c.isSpecial())f=St;else if("?"===i)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query="",f=Dt;else{if("#"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.path.length--,f=Ct;continue}c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt}break;case St:if(!c.isSpecial()||"/"!==i&&"\\"!==i){if("/"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,f=Ct;continue}f=Et}else f=_t;break;case Ot:if(f=_t,"/"!==i||"/"!==C(h,l+1))continue;l++;break;case _t:if("/"!==i&&"\\"!==i){f=Et;continue}break;case Et:if("@"===i){p&&(h="%40"+h),p=!0,a=v(h);for(var m=0;m<a.length;m++){var x=a[m];if(":"!==x||b){var k=ht(x,lt);b?c.password+=k:c.username+=k}else b=!0}h=""}else if(i===o||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(p&&""===h)return"Invalid authority";l-=v(h).length+1,h="",f=At}else h+=i;break;case At:case Pt:if(e&&"file"===c.scheme){f=Rt;continue}if(":"!==i||d){if(i===o||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(c.isSpecial()&&""===h)return q;if(e&&""===h&&(c.includesCredentials()||null!==c.port))return;if(u=c.parseHost(h))return u;if(h="",f=It,e)return;continue}"["===i?d=!0:"]"===i&&(d=!1),h+=i}else{if(""===h)return q;if(u=c.parseHost(h))return u;if(h="",f=jt,e===Pt)return}break;case jt:if(!L(J,i)){if(i===o||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()||e){if(""!==h){var S=M(h,10);if(S>65535)return V;c.port=c.isSpecial()&&S===pt[c.scheme]?null:S,h=""}if(e)return;f=It;continue}return V}h+=i;break;case Tt:if(c.scheme="file","/"===i||"\\"===i)f=Mt;else{if(!r||"file"!==r.scheme){f=Ct;continue}switch(i){case o:c.host=r.host,c.path=g(r.path),c.query=r.query;break;case"?":c.host=r.host,c.path=g(r.path),c.query="",f=Dt;break;case"#":c.host=r.host,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt;break;default:dt(D(g(n,l),""))||(c.host=r.host,c.path=g(r.path),c.shortenPath()),f=Ct;continue}}break;case Mt:if("/"===i||"\\"===i){f=Rt;break}r&&"file"===r.scheme&&!dt(D(g(n,l),""))&&(yt(r.path[0],!0)?F(c.path,r.path[0]):c.host=r.host),f=Ct;continue;case Rt:if(i===o||"/"===i||"\\"===i||"?"===i||"#"===i){if(!e&&yt(h))f=Ct;else if(""===h){if(c.host="",e)return;f=It}else{if(u=c.parseHost(h))return u;if("localhost"===c.host&&(c.host=""),e)return;h="",f=It}continue}h+=i;break;case It:if(c.isSpecial()){if(f=Ct,"/"!==i&&"\\"!==i)continue}else if(e||"?"!==i)if(e||"#"!==i){if(i!==o&&(f=Ct,"/"!==i))continue}else c.fragment="",f=Bt;else c.query="",f=Dt;break;case Ct:if(i===o||"/"===i||"\\"===i&&c.isSpecial()||!e&&("?"===i||"#"===i)){if(".."===(s=H(s=h))||"%2e."===s||".%2e"===s||"%2e%2e"===s?(c.shortenPath(),"/"===i||"\\"===i&&c.isSpecial()||F(c.path,"")):vt(h)?"/"===i||"\\"===i&&c.isSpecial()||F(c.path,""):("file"===c.scheme&&!c.path.length&&yt(h)&&(c.host&&(c.host=""),h=C(h,0)+":"),F(c.path,h)),h="","file"===c.scheme&&(i===o||"?"===i||"#"===i))for(;c.path.length>1&&""===c.path[0];)U(c.path);"?"===i?(c.query="",f=Dt):"#"===i&&(c.fragment="",f=Bt)}else h+=ht(i,ft);break;case Lt:"?"===i?(c.query="",f=Dt):"#"===i?(c.fragment="",f=Bt):i!==o&&(c.path[0]+=ht(i,st));break;case Dt:e||"#"!==i?i!==o&&("'"===i&&c.isSpecial()?c.query+="%27":c.query+="#"===i?"%23":ht(i,st)):(c.fragment="",f=Bt);break;case Bt:i!==o&&(c.fragment+=ht(i,ct))}l++}},parseHost:function(t){var e,r,n;if("["===C(t,0)){if("]"!==C(t,t.length-1))return q;if(e=function(t){var e,r,n,o,i,a,u,s=[0,0,0,0,0,0,0,0],c=0,f=null,l=0,h=function(){return C(t,l)};if(":"===h()){if(":"!==C(t,1))return;l+=2,f=++c}for(;h();){if(8===c)return;if(":"!==h()){for(e=r=0;r<4&&L(et,h());)e=16*e+M(h(),16),l++,r++;if("."===h()){if(0===r)return;if(l-=r,c>6)return;for(n=0;h();){if(o=null,n>0){if(!("."===h()&&n<4))return;l++}if(!L(J,h()))return;for(;L(J,h());){if(i=M(h(),10),null===o)o=i;else{if(0===o)return;o=10*o+i}if(o>255)return;l++}s[c]=256*s[c]+o,2!=++n&&4!==n||c++}if(4!==n)return;break}if(":"===h()){if(l++,!h())return}else if(h())return;s[c++]=e}else{if(null!==f)return;l++,f=++c}}if(null!==f)for(a=c-f,c=7;0!==c&&a>0;)u=s[c],s[c--]=s[f+a-1],s[f+--a]=u;else if(8!==c)return;return s}(G(t,1,-1)),!e)return q;this.host=e}else if(this.isSpecial()){if(t=m(t),L(rt,t))return q;if(e=function(t){var e,r,n,o,i,a,u,s=Y(t,".");if(s.length&&""===s[s.length-1]&&s.length--,(e=s.length)>4)return t;for(r=[],n=0;n<e;n++){if(""===(o=s[n]))return t;if(i=10,o.length>1&&"0"===C(o,0)&&(i=L(Z,o)?16:8,o=G(o,8===i?1:2)),""===o)a=0;else{if(!L(10===i?tt:8===i?$:et,o))return t;a=M(o,i)}F(r,a)}for(n=0;n<e;n++)if(a=r[n],n===e-1){if(a>=I(256,5-e))return null}else if(a>255)return null;for(u=N(r),n=0;n<r.length;n++)u+=r[n]*I(256,3-n);return u}(t),null===e)return q;this.host=e}else{if(L(nt,t))return q;for(e="",r=v(t),n=0;n<r.length;n++)e+=ht(r[n],st);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return y(pt,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&yt(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,o=t.host,i=t.port,a=t.path,u=t.query,s=t.fragment,c=e+":";return null!==o?(c+="//",t.includesCredentials()&&(c+=r+(n?":"+n:"")+"@"),c+=ut(o),null!==i&&(c+=":"+i)):"file"===e&&(c+="//"),c+=t.cannotBeABaseURL?a[0]:a.length?"/"+D(a,"/"):"",null!==u&&(c+="?"+u),null!==s&&(c+="#"+s),c},setHref:function(t){var e=this.parse(t);if(e)throw new T(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new Ft(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+ut(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(w(t)+":",gt)},getUsername:function(){return this.username},setUsername:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=ht(e[r],lt)}},getPassword:function(){return this.password},setPassword:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=ht(e[r],lt)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?ut(t):ut(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,At)},getHostname:function(){var t=this.host;return null===t?"":ut(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,Pt)},getPort:function(){var t=this.port;return null===t?"":w(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=w(t))?this.port=null:this.parse(t,jt))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+D(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,It))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=w(t))?this.query=null:("?"===C(t,0)&&(t=G(t,1)),this.query="",this.parse(t,Dt)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=w(t))?("#"===C(t,0)&&(t=G(t,1)),this.fragment="",this.parse(t,Bt)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var Ft=function(t){var e=p(this,zt),r=k(arguments.length,1)>1?arguments[1]:void 0,n=_(e,new Nt(t,!1,r));a||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},zt=Ft.prototype,Ut=function(t,e){return{get:function(){return E(this)[t]()},set:e&&function(t){return E(this)[e](t)},configurable:!0,enumerable:!0}};if(a&&(h(zt,"href",Ut("serialize","setHref")),h(zt,"origin",Ut("getOrigin")),h(zt,"protocol",Ut("getProtocol","setProtocol")),h(zt,"username",Ut("getUsername","setUsername")),h(zt,"password",Ut("getPassword","setPassword")),h(zt,"host",Ut("getHost","setHost")),h(zt,"hostname",Ut("getHostname","setHostname")),h(zt,"port",Ut("getPort","setPort")),h(zt,"pathname",Ut("getPathname","setPathname")),h(zt,"search",Ut("getSearch","setSearch")),h(zt,"searchParams",Ut("getSearchParams")),h(zt,"hash",Ut("getHash","setHash"))),l(zt,"toJSON",(function(){return E(this).serialize()}),{enumerable:!0}),l(zt,"toString",(function(){return E(this).serialize()}),{enumerable:!0}),j){var Yt=j.createObjectURL,Gt=j.revokeObjectURL;Yt&&l(Ft,"createObjectURL",c(Yt,j)),Gt&&l(Ft,"revokeObjectURL",c(Gt,j))}x(Ft,"URL"),i({global:!0,constructor:!0,forced:!u,sham:!a},{URL:Ft})},90690:(t,e,r)=>{"use strict";r(52164)},74755:(t,e,r)=>{"use strict";var n=r(63964),o=r(4009),i=r(24986),a=r(12605),u=r(92178),s=o("URL");n({target:"URL",stat:!0,forced:!u},{parse:function(t){var e=i(arguments.length,1),r=a(t),n=e<2||void 0===arguments[1]?void 0:a(arguments[1]);try{return new s(r,n)}catch(t){return null}}})},83826:(t,e,r)=>{"use strict";var n=r(63964),o=r(91495);n({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return o(URL.prototype.toString,this)}})},65645:(t,e,r)=>{"use strict";r(33313),r(10933),r(79250),r(53795),r(87806),r(64677),r(48058),r(14836),r(51583),r(82403),r(34265),r(3295),r(1078),r(63207),r(80520),r(55474),r(12612),r(43345),r(6864),r(43825),r(39600),r(93237),r(32057),r(68933),r(47830),r(13455),r(64094),r(43620),r(15381),r(61915),r(32384),r(25579),r(63532),r(33425),r(43894),r(99636),r(34570),r(94432),r(24683),r(69984),r(32089),r(11684),r(60206),r(29645),r(4788),r(58672),r(19356),r(48968),r(49852),r(2712),r(26828),r(79243),r(63692),r(864),r(54243),r(11519),r(71016),r(75621),r(26267),r(50095),r(33451),r(30603),r(29362),r(52326),r(36629),r(74587),r(80329),r(66777),r(25082),r(47421),r(32122),r(6306),r(26338),r(90216),r(84663),r(92332),r(52631),r(17993),r(12304),r(93782),r(27295),r(52706),r(14773),r(83506),r(9965),r(48399),r(46163),r(55433),r(48574),r(45616),r(53008),r(98329),r(9631),r(12638),r(47091),r(59660),r(15383),r(92866),r(86107),r(29248),r(52540),r(79007),r(77199),r(6522),r(95542),r(2966),r(20997),r(57400),r(45571),r(54800),r(15709),r(76059),r(96614),r(324),r(90426),r(95443),r(87968),r(55007),r(55323),r(13521),r(5006),r(99009),r(42719),r(85770),r(23532),r(87119),r(78618),r(27129),r(31943),r(3579),r(97397),r(85028),r(8225),r(43331),r(62289),r(56196),r(2950),r(44205),r(79861),r(11137),r(76882),r(83186),r(76065),r(13411),r(26634),r(53118),r(42514),r(84353),r(30694),r(62987),r(48993),r(52917),r(4972),r(28913),r(36382),r(53092),r(93361),r(14128),r(69861),r(79027),r(70570),r(29674),r(81543),r(9373),r(45093),r(63074),r(5815),r(88527),r(66390),r(7784),r(50551),r(76483),r(92046),r(63915),r(38054),r(51454),r(67075),r(79669),r(23057),r(24199),r(10280),r(57983),r(17953),r(78592),r(50814),r(32407),r(52462),r(66133),r(55146),r(26580),r(89939),r(30442),r(6403),r(9867),r(43673),r(30569),r(12354),r(22515),r(14089),r(5143),r(93514),r(5416),r(11619),r(44590),r(17024),r(63272),r(39930),r(4038),r(95689),r(3388),r(8448),r(70604),r(34965),r(95309),r(82256),r(49484),r(38931),r(39308),r(91550),r(75008),r(56027),r(50340),r(34325),r(74498),r(15812),r(57726),r(80756),r(70567),r(66756),r(60037),r(44195),r(24575),r(71968),r(78824),r(72846),r(79042),r(99872),r(73364),r(58166),r(23793),r(43820),r(13917),r(62557),r(78256),r(19852),r(40379),r(92770),r(81069),r(63689),r(5659),r(25014),r(32189),r(23030),r(24309),r(49110),r(56445),r(30939),r(48321),r(88739),r(60415),r(72532),r(62207),r(42153),r(53262),r(906),r(7811),r(22385),r(90846),r(40348),r(99243),r(15209),r(11446),r(91127),r(91001),r(54913),r(47773),r(83006),r(25764),r(11573),r(63908),r(69401),r(90690),r(41172),r(74755),r(83826),r(92950),r(1105),r(73612),r(27895),r(61765)}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={id:n,loaded:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.loaded=!0,i.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var n={};return(()=>{"use strict";r.r(n),r.d(n,{AbsoluteLayout:()=>Du,AudioPlayer:()=>qv,CardLayout:()=>Fu,Component:()=>Ya,Connectable:()=>qs,Container:()=>Wy,ContainerAbstract:()=>ps,DEFAULT:()=>Jo,DPPX:()=>Vo,DataSource:()=>Wb,Donut:()=>xb,Ellipse:()=>Ed,EventMap:()=>vp,FPS:()=>ym,GESTURES:()=>Qo,GifView:()=>Bv,GlobalRef:()=>Yg,Group:()=>pg,HTMLAbsoluteLayout:()=>Ou,HTMLOverlayContainer:()=>Tg,HTMLOverlayElement:()=>Ov,ImageView:()=>gv,InfoWindow:()=>gu,KEYEVENTS:()=>Ko,Layer:()=>ks,Layout:()=>ku,Line:()=>bd,LinearHorizontalLayout:()=>Yu,LinearVerticalLayout:()=>Wu,LocalRef:()=>Sg,MAX_UNDO_SIZE:()=>qo,MODE_ADD:()=>Go,MODE_EDIT:()=>Uo,MODE_PASTE_DATABIND:()=>Wo,MODE_PASTE_STYLE:()=>Ho,MODE_SHIFT:()=>Yo,MODE_VIEW:()=>zo,Model:()=>dm,MoveHandle:()=>ns,NOTHING:()=>Fo,OrthoLine:()=>uv,Path:()=>ob,Polygon:()=>Ld,Polyline:()=>Vd,Popup:()=>Jg,Rect:()=>rc,RectPath:()=>au,ReferenceMap:()=>$b,RootContainer:()=>Xp,Ruler:()=>fc,SCENE_MODE:()=>Xo,Scene:()=>wy,ScenePopup:()=>Cu,ScriptLoader:()=>cm,Shape:()=>Ka,Star:()=>Tb,TableLayout:()=>qu,Text:()=>tg,Triangle:()=>hb,ValueHolder:()=>Nb,create:()=>_y,debug:()=>co,error:()=>uo,license:()=>vm,polyfill:()=>a,version:()=>fm,warn:()=>so});var t={};r.r(t),r.d(t,{append:()=>Mn,clear:()=>Nn,forEach:()=>Ln,getAt:()=>Cn,indexOf:()=>Dn,insertAt:()=>Tn,moveBackward:()=>zn,moveForward:()=>Fn,moveToHead:()=>Un,moveToTail:()=>Yn,prepend:()=>Rn,remove:()=>In,size:()=>Bn});var e={};r.r(e),r.d(e,{pop:()=>Hn,push:()=>Gn});var o={};r.r(o),r.d(o,{clear:()=>No,intercept:()=>Do,reset:()=>Bo});var i={};r.r(i),r.d(i,{compile:()=>vf,duplicate:()=>gf,match:()=>ni,select:()=>ai}),r(65645),r(95012),r(80272);const a="done";"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var o in n)n.hasOwnProperty(o)&&(e[o]=n[o])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){var e=[];for(var r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,o,i,a,u){this.save(),this.translate(t,e),this.rotate(o),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,i,a,u),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),o=Math.max(0,33-(n-t)),i=window.setTimeout((function(){e(n+o)}),o);return t=n+o,i}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});const u=function(t,e){return t===e||t!=t&&e!=e},s=function(t,e){for(var r=t.length;r--;)if(u(t[r][0],e))return r;return-1};var c=Array.prototype.splice;function f(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}f.prototype.clear=function(){this.__data__=[],this.size=0},f.prototype.delete=function(t){var e=this.__data__,r=s(e,t);return!(r<0||(r==e.length-1?e.pop():c.call(e,r,1),--this.size,0))},f.prototype.get=function(t){var e=this.__data__,r=s(e,t);return r<0?void 0:e[r][1]},f.prototype.has=function(t){return s(this.__data__,t)>-1},f.prototype.set=function(t,e){var r=this.__data__,n=s(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};const l=f;function h(t){return h="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},h(t)}const p="object"==("undefined"==typeof global?"undefined":h(global))&&global&&global.Object===Object&&global;function y(t){return y="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},y(t)}var d="object"==("undefined"==typeof self?"undefined":y(self))&&self&&self.Object===Object&&self;const v=p||d||Function("return this")(),g=v.Symbol;var b=Object.prototype,m=b.hasOwnProperty,w=b.toString,x=g?g.toStringTag:void 0;var k=Object.prototype.toString;var S=g?g.toStringTag:void 0;const O=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":S&&S in Object(t)?function(t){var e=m.call(t,x),r=t[x];try{t[x]=void 0;var n=!0}catch(t){}var o=w.call(t);return n&&(e?t[x]=r:delete t[x]),o}(t):function(t){return k.call(t)}(t)};function _(t){return _="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)}const E=function(t){var e=_(t);return null!=t&&("object"==e||"function"==e)},A=function(t){if(!E(t))return!1;var e=O(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e},P=v["__core-js_shared__"];var j,T=(j=/[^.]+$/.exec(P&&P.keys&&P.keys.IE_PROTO||""))?"Symbol(src)_1."+j:"";var M=Function.prototype.toString;const R=function(t){if(null!=t){try{return M.call(t)}catch(t){}try{return t+""}catch(t){}}return""};var I=/^\[object .+?Constructor\]$/,C=Function.prototype,L=Object.prototype,D=C.toString,B=L.hasOwnProperty,N=RegExp("^"+D.call(B).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const F=function(t){return!(!E(t)||(e=t,T&&T in e))&&(A(t)?N:I).test(R(t));var e},z=function(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return F(r)?r:void 0},U=z(v,"Map"),Y=z(Object,"create");var G=Object.prototype.hasOwnProperty;var H=Object.prototype.hasOwnProperty;function W(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}W.prototype.clear=function(){this.__data__=Y?Y(null):{},this.size=0},W.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},W.prototype.get=function(t){var e=this.__data__;if(Y){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return G.call(e,t)?e[t]:void 0},W.prototype.has=function(t){var e=this.__data__;return Y?void 0!==e[t]:H.call(e,t)},W.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=Y&&void 0===e?"__lodash_hash_undefined__":e,this};const X=W;function q(t){return q="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},q(t)}const V=function(t,e){var r,n,o=t.__data__;return("string"==(n=q(r=e))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?o["string"==typeof e?"string":"hash"]:o.map};function Q(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}Q.prototype.clear=function(){this.size=0,this.__data__={hash:new X,map:new(U||l),string:new X}},Q.prototype.delete=function(t){var e=V(this,t).delete(t);return this.size-=e?1:0,e},Q.prototype.get=function(t){return V(this,t).get(t)},Q.prototype.has=function(t){return V(this,t).has(t)},Q.prototype.set=function(t,e){var r=V(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};const K=Q;function J(t){var e=this.__data__=new l(t);this.size=e.size}J.prototype.clear=function(){this.__data__=new l,this.size=0},J.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},J.prototype.get=function(t){return this.__data__.get(t)},J.prototype.has=function(t){return this.__data__.has(t)},J.prototype.set=function(t,e){var r=this.__data__;if(r instanceof l){var n=r.__data__;if(!U||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new K(n)}return r.set(t,e),this.size=r.size,this};const Z=J;function $(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new K;++e<r;)this.add(t[e])}$.prototype.add=$.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},$.prototype.has=function(t){return this.__data__.has(t)};const tt=$,et=function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1},rt=function(t,e,r,n,o,i){var a=1&r,u=t.length,s=e.length;if(u!=s&&!(a&&s>u))return!1;var c=i.get(t),f=i.get(e);if(c&&f)return c==e&&f==t;var l=-1,h=!0,p=2&r?new tt:void 0;for(i.set(t,e),i.set(e,t);++l<u;){var y=t[l],d=e[l];if(n)var v=a?n(d,y,l,e,t,i):n(y,d,l,t,e,i);if(void 0!==v){if(v)continue;h=!1;break}if(p){if(!et(e,(function(t,e){if(a=e,!p.has(a)&&(y===t||o(y,t,r,n,i)))return p.push(e);var a}))){h=!1;break}}else if(y!==d&&!o(y,d,r,n,i)){h=!1;break}}return i.delete(t),i.delete(e),h},nt=v.Uint8Array,ot=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r},it=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r};var at=g?g.prototype:void 0,ut=at?at.valueOf:void 0;const st=function(t,e){for(var r=-1,n=e.length,o=t.length;++r<n;)t[o+r]=e[r];return t},ct=Array.isArray,ft=function(t,e,r){var n=e(t);return ct(t)?n:st(n,r(t))},lt=function(){return[]};var ht=Object.prototype.propertyIsEnumerable,pt=Object.getOwnPropertySymbols;const yt=pt?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,o=0,i=[];++r<n;){var a=t[r];e(a,r,t)&&(i[o++]=a)}return i}(pt(t),(function(e){return ht.call(t,e)})))}:lt;function dt(t){return dt="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},dt(t)}const vt=function(t){return null!=t&&"object"==dt(t)},gt=function(t){return vt(t)&&"[object Arguments]"==O(t)};var bt=Object.prototype,mt=bt.hasOwnProperty,wt=bt.propertyIsEnumerable;const xt=gt(function(){return arguments}())?gt:function(t){return vt(t)&&mt.call(t,"callee")&&!wt.call(t,"callee")};function kt(t){return kt="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},kt(t)}var St="object"==("undefined"==typeof exports?"undefined":kt(exports))&&exports&&!exports.nodeType&&exports,Ot=St&&"object"==("undefined"==typeof module?"undefined":kt(module))&&module&&!module.nodeType&&module,_t=Ot&&Ot.exports===St?v.Buffer:void 0;const Et=(_t?_t.isBuffer:void 0)||function(){return!1};function At(t){return At="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},At(t)}var Pt=/^(?:0|[1-9]\d*)$/;const jt=function(t,e){var r=At(t);return!!(e=null==e?9007199254740991:e)&&("number"==r||"symbol"!=r&&Pt.test(t))&&t>-1&&t%1==0&&t<e},Tt=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991};var Mt={};Mt["[object Float32Array]"]=Mt["[object Float64Array]"]=Mt["[object Int8Array]"]=Mt["[object Int16Array]"]=Mt["[object Int32Array]"]=Mt["[object Uint8Array]"]=Mt["[object Uint8ClampedArray]"]=Mt["[object Uint16Array]"]=Mt["[object Uint32Array]"]=!0,Mt["[object Arguments]"]=Mt["[object Array]"]=Mt["[object ArrayBuffer]"]=Mt["[object Boolean]"]=Mt["[object DataView]"]=Mt["[object Date]"]=Mt["[object Error]"]=Mt["[object Function]"]=Mt["[object Map]"]=Mt["[object Number]"]=Mt["[object Object]"]=Mt["[object RegExp]"]=Mt["[object Set]"]=Mt["[object String]"]=Mt["[object WeakMap]"]=!1;const Rt=function(t){return function(e){return t(e)}};function It(t){return It="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},It(t)}var Ct="object"==("undefined"==typeof exports?"undefined":It(exports))&&exports&&!exports.nodeType&&exports,Lt=Ct&&"object"==("undefined"==typeof module?"undefined":It(module))&&module&&!module.nodeType&&module,Dt=Lt&&Lt.exports===Ct&&p.process;const Bt=function(){try{return Lt&&Lt.require&&Lt.require("util").types||Dt&&Dt.binding&&Dt.binding("util")}catch(t){}}();var Nt=Bt&&Bt.isTypedArray;const Ft=Nt?Rt(Nt):function(t){return vt(t)&&Tt(t.length)&&!!Mt[O(t)]};var zt=Object.prototype.hasOwnProperty;const Ut=function(t,e){var r=ct(t),n=!r&&xt(t),o=!r&&!n&&Et(t),i=!r&&!n&&!o&&Ft(t),a=r||n||o||i,u=a?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],s=u.length;for(var c in t)!e&&!zt.call(t,c)||a&&("length"==c||o&&("offset"==c||"parent"==c)||i&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||jt(c,s))||u.push(c);return u};var Yt=Object.prototype;const Gt=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||Yt)},Ht=function(t,e){return function(r){return t(e(r))}},Wt=Ht(Object.keys,Object);var Xt=Object.prototype.hasOwnProperty;const qt=function(t){if(!Gt(t))return Wt(t);var e=[];for(var r in Object(t))Xt.call(t,r)&&"constructor"!=r&&e.push(r);return e},Vt=function(t){return null!=t&&Tt(t.length)&&!A(t)},Qt=function(t){return Vt(t)?Ut(t):qt(t)},Kt=function(t){return ft(t,Qt,yt)};var Jt=Object.prototype.hasOwnProperty;const Zt=z(v,"DataView"),$t=z(v,"Promise"),te=z(v,"Set"),ee=z(v,"WeakMap");var re="[object Map]",ne="[object Promise]",oe="[object Set]",ie="[object WeakMap]",ae="[object DataView]",ue=R(Zt),se=R(U),ce=R($t),fe=R(te),le=R(ee),he=O;(Zt&&he(new Zt(new ArrayBuffer(1)))!=ae||U&&he(new U)!=re||$t&&he($t.resolve())!=ne||te&&he(new te)!=oe||ee&&he(new ee)!=ie)&&(he=function(t){var e=O(t),r="[object Object]"==e?t.constructor:void 0,n=r?R(r):"";if(n)switch(n){case ue:return ae;case se:return re;case ce:return ne;case fe:return oe;case le:return ie}return e});const pe=he;var ye="[object Arguments]",de="[object Array]",ve="[object Object]",ge=Object.prototype.hasOwnProperty;const be=function(t,e,r,n,o,i){var a=ct(t),s=ct(e),c=a?de:pe(t),f=s?de:pe(e),l=(c=c==ye?ve:c)==ve,h=(f=f==ye?ve:f)==ve,p=c==f;if(p&&Et(t)){if(!Et(e))return!1;a=!0,l=!1}if(p&&!l)return i||(i=new Z),a||Ft(t)?rt(t,e,r,n,o,i):function(t,e,r,n,o,i,a){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!i(new nt(t),new nt(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return u(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var s=ot;case"[object Set]":var c=1&n;if(s||(s=it),t.size!=e.size&&!c)return!1;var f=a.get(t);if(f)return f==e;n|=2,a.set(t,e);var l=rt(s(t),s(e),n,o,i,a);return a.delete(t),l;case"[object Symbol]":if(ut)return ut.call(t)==ut.call(e)}return!1}(t,e,c,r,n,o,i);if(!(1&r)){var y=l&&ge.call(t,"__wrapped__"),d=h&&ge.call(e,"__wrapped__");if(y||d){var v=y?t.value():t,g=d?e.value():e;return i||(i=new Z),o(v,g,r,n,i)}}return!!p&&(i||(i=new Z),function(t,e,r,n,o,i){var a=1&r,u=Kt(t),s=u.length;if(s!=Kt(e).length&&!a)return!1;for(var c=s;c--;){var f=u[c];if(!(a?f in e:Jt.call(e,f)))return!1}var l=i.get(t),h=i.get(e);if(l&&h)return l==e&&h==t;var p=!0;i.set(t,e),i.set(e,t);for(var y=a;++c<s;){var d=t[f=u[c]],v=e[f];if(n)var g=a?n(v,d,f,e,t,i):n(d,v,f,t,e,i);if(!(void 0===g?d===v||o(d,v,r,n,i):g)){p=!1;break}y||(y="constructor"==f)}if(p&&!y){var b=t.constructor,m=e.constructor;b==m||!("constructor"in t)||!("constructor"in e)||"function"==typeof b&&b instanceof b&&"function"==typeof m&&m instanceof m||(p=!1)}return i.delete(t),i.delete(e),p}(t,e,r,n,o,i))},me=function t(e,r,n,o,i){return e===r||(null==e||null==r||!vt(e)&&!vt(r)?e!=e&&r!=r:be(e,r,n,o,t,i))},we=function(t,e){return me(t,e)},xe=function(){try{var t=z(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),ke=function(t,e,r){"__proto__"==e&&xe?xe(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r};var Se=Object.prototype.hasOwnProperty;const Oe=function(t,e,r){var n=t[e];Se.call(t,e)&&u(n,r)&&(void 0!==r||e in t)||ke(t,e,r)},_e=function(t,e,r,n){var o=!r;r||(r={});for(var i=-1,a=e.length;++i<a;){var u=e[i],s=n?n(r[u],t[u],u,r,t):void 0;void 0===s&&(s=t[u]),o?ke(r,u,s):Oe(r,u,s)}return r},Ee=function(t){return t},Ae=function(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)};var Pe=Math.max;const je=xe?function(t,e){return xe(t,"toString",{configurable:!0,enumerable:!1,value:(r=e,function(){return r}),writable:!0});var r}:Ee;var Te=Date.now;const Me=(Re=je,Ie=0,Ce=0,function(){var t=Te(),e=16-(t-Ce);if(Ce=t,e>0){if(++Ie>=800)return arguments[0]}else Ie=0;return Re.apply(void 0,arguments)});var Re,Ie,Ce;const Le=function(t,e){return Me(function(t,e,r){return e=Pe(void 0===e?t.length-1:e,0),function(){for(var n=arguments,o=-1,i=Pe(n.length-e,0),a=Array(i);++o<i;)a[o]=n[e+o];o=-1;for(var u=Array(e+1);++o<e;)u[o]=n[o];return u[e]=r(a),Ae(t,this,u)}}(t,e,Ee),t+"")};function De(t){return De="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},De(t)}const Be=function(t,e,r){if(!E(r))return!1;var n=De(e);return!!("number"==n?Vt(r)&&jt(e,r.length):"string"==n&&e in r)&&u(r[e],t)};var Ne=Object.prototype.hasOwnProperty;const Fe=function(t){if(!E(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=Gt(t),r=[];for(var n in t)("constructor"!=n||!e&&Ne.call(t,n))&&r.push(n);return r},ze=function(t){return Vt(t)?Ut(t,!0):Fe(t)},Ue=(Ye=function(t,e,r,n){_e(e,ze(e),t,n)},Le((function(t,e){var r=-1,n=e.length,o=n>1?e[n-1]:void 0,i=n>2?e[2]:void 0;for(o=Ye.length>3&&"function"==typeof o?(n--,o):void 0,i&&Be(e[0],e[1],i)&&(o=n<3?void 0:o,n=1),t=Object(t);++r<n;){var a=e[r];a&&Ye(t,a,r,o)}return t})));var Ye;const Ge=Ht(Object.getPrototypeOf,Object);var He=Function.prototype,We=Object.prototype,Xe=He.toString,qe=We.hasOwnProperty,Ve=Xe.call(Object);const Qe=function(t){if(!vt(t))return!1;var e=O(t);return"[object Error]"==e||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!vt(t)||"[object Object]"!=O(t))return!1;var e=Ge(t);if(null===e)return!0;var r=qe.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&Xe.call(r)==Ve}(t)},Ke=Le((function(t,e){try{return Ae(t,void 0,e)}catch(t){return Qe(t)?t:new Error(t)}})),Je=function(t,e){for(var r=-1,n=null==t?0:t.length,o=Array(n);++r<n;)o[r]=e(t[r],r,t);return o};var Ze=Object.prototype,$e=Ze.hasOwnProperty;const tr=function(t,e,r,n){return void 0===t||u(t,Ze[r])&&!$e.call(n,r)?e:t};var er={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};const rr=function(t){return"\\"+er[t]},nr=/<%=([\s\S]+?)%>/g,or=(ir={"&":"&","<":"<",">":">",'"':""","'":"'"},function(t){return null==ir?void 0:ir[t]});var ir;function ar(t){return ar="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},ar(t)}const ur=function(t){return"symbol"==ar(t)||vt(t)&&"[object Symbol]"==O(t)};var sr=g?g.prototype:void 0,cr=sr?sr.toString:void 0;const fr=function t(e){if("string"==typeof e)return e;if(ct(e))return Je(e,t)+"";if(ur(e))return cr?cr.call(e):"";var r=e+"";return"0"==r&&1/e==-1/0?"-0":r},lr=function(t){return null==t?"":fr(t)};var hr=/[&<>"']/g,pr=RegExp(hr.source);const yr={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:nr,variable:"",imports:{_:{escape:function(t){return(t=lr(t))&&pr.test(t)?t.replace(hr,or):t}}}};var dr=/\b__p \+= '';/g,vr=/\b(__p \+=) '' \+/g,gr=/(__e\(.*?\)|\b__t\)) \+\n'';/g,br=/[()=,{}\[\]\/\s]/,mr=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,wr=/($^)/,xr=/['\n\r\u2028\u2029\\]/g,kr=Object.prototype.hasOwnProperty;const Sr={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(var e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};function Or(t){return Or="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},Or(t)}function _r(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Er(n.key),n)}}function Er(t){var e=function(t){if("object"!=Or(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Or(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Or(e)?e:e+""}var Ar=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.client=e,this.config=r,this._started=!1;var n=this.config,o=n.delta,i=void 0===o?"linear":o,a=n.options,u=n.ease;"string"==typeof i&&(i=Sr[i]),this.delta="out"==u?function(t,e){return function(r){return 1-t(1-r,e)}}(i,a):"inout"==u?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,a):i,this.init()},(e=[{key:"dispose",value:function(){this.stop(),delete this.client}},{key:"init",value:function(){}},{key:"start",value:function(){var t=this;if(!this._started){var e=this.config,r=e.duration,n=void 0===r?2e3:r,o=e.delay,i=void 0===o?0:o,a=e.repeat,u=void 0!==a&&a,s=e.interval,c=void 0===s?0:s;this._started=!0;var f=0,l=0,h=function(){if(t._raf=null,t._timeout=null,t._started){0==f&&(f=performance.now(),t.client.touch());var e=performance.now()-f,r=Math.max((e-i)%(n+c),0)/n,o=c<=0&&l>r;if(l=r,r>=1||o){if(t.step(1),t.client&&t.client.invalidate(),!u||!t._started)return t.stop(),void(f=0);if(c>0)return void(t._timeout=setTimeout((function(){t.step(0),t.client&&t.client.invalidate(),t._timeout=setTimeout(h,c/2)}),c/2))}else t.step(t.delta(r)),t.client&&t.client.invalidate();t._raf=requestAnimationFrame(h)}};this._raf=requestAnimationFrame(h)}}},{key:"stop",value:function(){this._raf&&cancelAnimationFrame(this._raf),this._timeout&&clearTimeout(this._timeout),this._raf=null,this._timeout=null,this._started=!1}},{key:"started",get:function(){return this._started},set:function(t){this.started!=!!t&&(t?this.start():this.stop())}}])&&_r(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Pr(t){return Pr="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},Pr(t)}function jr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Tr(n.key),n)}}function Tr(t){var e=function(t){if("object"!=Pr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Pr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Pr(e)?e:e+""}function Mr(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Mr=function(){return!!t})()}function Rr(t){return Rr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Rr(t)}function Ir(t,e){return Ir=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ir(t,e)}function Cr(t){return Cr="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},Cr(t)}function Lr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Dr(n.key),n)}}function Dr(t){var e=function(t){if("object"!=Cr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Cr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Cr(e)?e:e+""}function Br(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Br=function(){return!!t})()}function Nr(t){return Nr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Nr(t)}function Fr(t,e){return Fr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Fr(t,e)}function zr(t){return zr="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},zr(t)}function Ur(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Yr(n.key),n)}}function Yr(t){var e=function(t){if("object"!=zr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=zr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==zr(e)?e:e+""}function Gr(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Gr=function(){return!!t})()}function Hr(t){return Hr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Hr(t)}function Wr(t,e){return Wr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Wr(t,e)}function Xr(t){return Xr="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},Xr(t)}function qr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Vr(n.key),n)}}function Vr(t){var e=function(t){if("object"!=Xr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Xr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Xr(e)?e:e+""}function Qr(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Qr=function(){return!!t})()}function Kr(t){return Kr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Kr(t)}function Jr(t,e){return Jr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Jr(t,e)}function Zr(t){return Zr="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},Zr(t)}function $r(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,tn(n.key),n)}}function tn(t){var e=function(t){if("object"!=Zr(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Zr(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Zr(e)?e:e+""}function en(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(en=function(){return!!t})()}function rn(t){return rn=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},rn(t)}function nn(t,e){return nn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},nn(t,e)}function on(t){return on="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},on(t)}function an(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,un(n.key),n)}}function un(t){var e=function(t){if("object"!=on(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=on(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==on(e)?e:e+""}function sn(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(sn=function(){return!!t})()}function cn(t){return cn=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cn(t)}function fn(t,e){return fn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},fn(t,e)}var ln={rotation:function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Rr(e),function(t,e){if(e&&("object"==Pr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Mr()?Reflect.construct(e,r||[],Rr(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ir(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?6.28:e;this.client.delta("theta",t*r)}}])&&jr(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ar),vibration:function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Nr(e),function(t,e){if(e&&("object"==Cr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Br()?Reflect.construct(e,r||[],Nr(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Fr(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?.2617993877991494:e,n=4*r,o=t*n;t<1/4?o*=-1:t<3/4?o-=2*r:o=n-o,this.client.delta("theta",o)}}])&&Lr(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ar),heartbeat:function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Hr(e),function(t,e){if(e&&("object"==zr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Gr()?Reflect.construct(e,r||[],Hr(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Wr(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e,r=this.config.scale,n=2*((void 0===r?1.3:r)-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}}])&&Ur(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ar),moving:function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Kr(e),function(t,e){if(e&&("object"==Xr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Qr()?Reflect.construct(e,r||[],Kr(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Jr(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e=this.config,r=e.x,n=void 0===r?0:r,o=e.y,i=void 0===o?0:o;this.client.delta("tx",t*n),this.client.delta("ty",t*i)}}])&&qr(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ar),outline:function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=rn(e),function(t,e){if(e&&("object"==Zr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,en()?Reflect.construct(e,r||[],rn(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nn(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e=this.config.rideOn,r=this.client;if(e&&r&&r.root){var n=r.root.findById(e);if(n){var o=r.delta(),i=o.tx,a=o.ty,u=n.outline(t),s=r.center,c=r.transcoordS2T(s.x,s.y);n&&(r.delta("tx",u.x-c.x+i),r.delta("ty",u.y-c.y+a))}}}}])&&$r(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ar),fade:function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=cn(e),function(t,e){if(e&&("object"==on(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,sn()?Reflect.construct(e,r||[],cn(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&fn(t,e)}(e,t),r=e,(n=[{key:"step",value:function(t){var e,r=this.config,n=r.startAlpha,o=void 0===n?1:n,i=r.endAlpha,a=void 0===i?0:i,u=Math.max(Math.min(o,a,1),0),s=2*(Math.min(Math.max(o,a,1),1)-u);e=t<.5?s*t:(1-t)*s,this.client.delta("fade",e)}}])&&an(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ar)};function hn(t){var e=t.duration,r=void 0===e?1e3:e,n=(t.delay,t.step),o=t.delta,i=t.ease,a=t.options,u=t.repeat,s=void 0!==u&&u;"string"==typeof o&&(o=Sr[o]),"out"==i?o=function(t,e){return function(r){return 1-t(1-r,e)}}(o,a):"inout"==i&&(o=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(o,a));var c=!1;return{start:function(){var t=this;if(c)return this;c=!0;var e=0,i=function(){if(c){0==e&&(e=performance.now());var u=(performance.now()-e)/r,f=s?u%1:Math.min(u,1);n(o(f,a)),!(u>=1)||s&&c||(t.stop(),e=0),c&&requestAnimationFrame(i)}};return requestAnimationFrame(i),this},stop:function(){return c=!1,this}}}var pn=/\s/;var yn=/^\s+/;const dn=function(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&pn.test(t.charAt(e)););return e}(t)+1).replace(yn,""):t};var vn=/^[-+]0x[0-9a-f]+$/i,gn=/^0b[01]+$/i,bn=/^0o[0-7]+$/i,mn=parseInt;const wn=function(t){if("number"==typeof t)return t;if(ur(t))return NaN;if(E(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=E(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=dn(t);var r=gn.test(t);return r||bn.test(t)?mn(t.slice(2),r?2:8):vn.test(t)?NaN:+t};var xn=1/0;const kn=function(t){var e=function(t){return t?(t=wn(t))===xn||t===-1/0?17976931348623157e292*(t<0?-1:1):t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0},Sn=function(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError("Expected a function");return t=kn(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)};var On=Object.prototype.hasOwnProperty;const _n=function(t){if(null==t)return!0;if(Vt(t)&&(ct(t)||"string"==typeof t||"function"==typeof t.splice||Et(t)||Ft(t)||xt(t)))return!t.length;var e=pe(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Gt(t))return!qt(t).length;for(var r in t)if(On.call(t,r))return!1;return!0};function En(t){return En="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},En(t)}var An=0;function Pn(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};"object"!=En(t)&&(t={});for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return r.forEach((function(e){var r=function(r){"object"!=En(e[r])?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((function(t){return"object"!=En(e[r])?t:Pn({},t)})):t[r]=Pn(t[r],e[r])};for(var n in e)r(n)})),t}function jn(t){for(;t&&"object"===En(t);){var e=t;for(var r in t){t=t[r];break}if(t===e){t=void 0;break}}return t}function Tn(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this}function Mn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this}function Rn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this}function In(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this}function Cn(t){if(this.__collection__)return this.__collection__[t]}function Ln(t,e){this.__collection__&&this.__collection__.forEach(t,e)}function Dn(t){if(this.__collection__)return this.__collection__.indexOf(t)}function Bn(){return this.__collection__?this.__collection__.length:0}function Nn(){this.__collection__=[]}function Fn(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)}function zn(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)}function Un(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}}function Yn(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}function Gn(t){throw new Error("Not Implemented Yet")}function Hn(t){throw new Error("Not Implemented Yet")}function Wn(){}function Xn(t){return Xn="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},Xn(t)}Wn.prototype=t;var qn=/\s+/;function Vn(t,e,r,n){if(!r)return!0;if("object"==Xn(r)){for(var o in r){var i=r[o];t[e].apply(t,[o,i])}return!1}return!qn.test(r)||(r.split(qn).forEach((function(r){return t[e].apply(t,[r].concat(n))})),!1)}var Qn=["on","off","once","delegate_on","delegate_off","trigger","listenTo"],Kn={withEvent:function(){var t=this;Qn.forEach((function(e){return t[e]=Kn[e]}))},on:function(t,e,r){return Vn(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once:function(t,e,r){if(!Vn(this,"once",t,[e,r])||!e)return this;var n=this,o=Sn((function(){n.off(t,o),e.apply(n,arguments)}));o._callback=e,this.on(t,o,r)},off:function(t,e,r){if(!this._listeners||!Vn(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(var o=0;o<n.length;o++){var i=n[o],a=this._listeners[i];if(a){var u=[];if(this._listeners[i]=u,e||r)for(var s=0;s<a.length;s++){var c=a[s];(e&&e!==c.callback&&e!==c.callback._callback||r&&r!==c.context)&&u.push(c)}u.length||delete this._listeners[i]}}return this},delegate_on:function(t){return this._delegators||(this._delegators=new Wn),this._delegators.append(t),this},delegate_off:function(t){return this._delegators?(this._delegators.remove(t),this):this},delegate:function(){if(this._delegators&&this._delegators.size()>0&&Zn(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&Jn(r,arguments),n&&Jn(n,arguments),this},trigger:function(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&Zn(this._delegators,e),!this._listeners)return this;if(!Vn(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&Jn(r,e),n&&Jn(n,e),this},stopListening:function(t,e,r){var n=this._listeningTo;if(!n)return this;var o=!e&&!r;for(var i in r||"object"!=Xn(e)||(r=this),t&&((n={})[t._listenId]=t),n){var a=n[i];a.off(e,r,this),(o||_n(a._events))&&delete this._listeningTo[i]}return this}};function Jn(t,e){t.forEach((function(t){return t.callback.apply(t.ctx,e)}))}function Zn(t,e){t.forEach((function(t){return Kn.delegate.apply(t,e)}))}var $n={listenTo:"on",listenToOnce:"once"};for(var to in $n){var eo=$n[to];Kn[to]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId="".concat("l").concat(++An)),n[t._listenId]=t,r||"object"!=Xn(e)||(r=this),t[eo](e,r,this),this}}const ro=Kn;function no(t,e){if(e instanceof Array)e.forEach((function(e){return no(t,e)}));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error("found cyclic dependencies between ".concat(t.mixingIn));t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}"undefined"==typeof window||window;var oo="[ERROR]",io="[WARN]",ao="[DEBUG]",uo=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).error.apply(t,[oo].concat(n,[e.join(" ")]))},so=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).warn.apply(t,[io].concat(n,[e.join(" ")]))},co=function(){for(var t,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];return(t=console).log.apply(t,[ao].concat(r))};function fo(t){return fo="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},fo(t)}var lo="object"==("undefined"==typeof exports?"undefined":fo(exports))&&exports&&!exports.nodeType&&exports,ho=lo&&"object"==("undefined"==typeof module?"undefined":fo(module))&&module&&!module.nodeType&&module,po=ho&&ho.exports===lo?v.Buffer:void 0,yo=po?po.allocUnsafe:void 0;const vo=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)st(e,yt(t)),t=Ge(t);return e}:lt,go=function(t){return ft(t,ze,vo)};var bo=Object.prototype.hasOwnProperty;const mo=function(t){var e=new t.constructor(t.byteLength);return new nt(e).set(new nt(t)),e};var wo=/\w*$/;var xo=g?g.prototype:void 0,ko=xo?xo.valueOf:void 0;const So=function(t,e,r){var n,o,i,a=t.constructor;switch(e){case"[object ArrayBuffer]":return mo(t);case"[object Boolean]":case"[object Date]":return new a(+t);case"[object DataView]":return function(t,e){var r=e?mo(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(t,e){var r=e?mo(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case"[object Map]":case"[object Set]":return new a;case"[object Number]":case"[object String]":return new a(t);case"[object RegExp]":return(i=new(o=t).constructor(o.source,wo.exec(o))).lastIndex=o.lastIndex,i;case"[object Symbol]":return n=t,ko?Object(ko.call(n)):{}}};var Oo=Object.create;const _o=function(){function t(){}return function(e){if(!E(e))return{};if(Oo)return Oo(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}();var Eo=Bt&&Bt.isMap;const Ao=Eo?Rt(Eo):function(t){return vt(t)&&"[object Map]"==pe(t)};var Po=Bt&&Bt.isSet;const jo=Po?Rt(Po):function(t){return vt(t)&&"[object Set]"==pe(t)};var To="[object Arguments]",Mo="[object Function]",Ro="[object Object]",Io={};Io[To]=Io["[object Array]"]=Io["[object ArrayBuffer]"]=Io["[object DataView]"]=Io["[object Boolean]"]=Io["[object Date]"]=Io["[object Float32Array]"]=Io["[object Float64Array]"]=Io["[object Int8Array]"]=Io["[object Int16Array]"]=Io["[object Int32Array]"]=Io["[object Map]"]=Io["[object Number]"]=Io[Ro]=Io["[object RegExp]"]=Io["[object Set]"]=Io["[object String]"]=Io["[object Symbol]"]=Io["[object Uint8Array]"]=Io["[object Uint8ClampedArray]"]=Io["[object Uint16Array]"]=Io["[object Uint32Array]"]=!0,Io["[object Error]"]=Io[Mo]=Io["[object WeakMap]"]=!1;const Co=function t(e,r,n,o,i,a){var u,s=1&r,c=2&r,f=4&r;if(n&&(u=i?n(e,o,i,a):n(e)),void 0!==u)return u;if(!E(e))return e;var l=ct(e);if(l){if(u=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&bo.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(e),!s)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(e,u)}else{var h=pe(e),p=h==Mo||"[object GeneratorFunction]"==h;if(Et(e))return function(t,e){if(e)return t.slice();var r=t.length,n=yo?yo(r):new t.constructor(r);return t.copy(n),n}(e,s);if(h==Ro||h==To||p&&!i){if(u=c||p?{}:function(t){return"function"!=typeof t.constructor||Gt(t)?{}:_o(Ge(t))}(e),!s)return c?function(t,e){return _e(t,vo(t),e)}(e,function(t,e){return t&&_e(e,ze(e),t)}(u,e)):function(t,e){return _e(t,yt(t),e)}(e,function(t,e){return t&&_e(e,Qt(e),t)}(u,e))}else{if(!Io[h])return i?e:{};u=So(e,h,s)}}a||(a=new Z);var y=a.get(e);if(y)return y;a.set(e,u),jo(e)?e.forEach((function(o){u.add(t(o,r,n,o,e,a))})):Ao(e)&&e.forEach((function(o,i){u.set(i,t(o,r,n,i,e,a))}));var d=l?void 0:(f?c?go:Kt:c?ze:Qt)(e);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(d||e,(function(o,i){d&&(o=e[i=o]),Oe(u,i,t(o,r,n,i,e,a))})),u},Lo=function(t){return Co(t,4)};function Do(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),Lo(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):uo("".concat(e," is not defined in ").concat(t.constructor.name))}function Bo(t){t.__cache__={}}function No(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];0==r.length?t.__cache__={}:r.forEach((function(e){return delete t.__cache__[e]}))}var Fo={},zo=0,Uo=1,Yo=2,Go=3,Ho=4,Wo=5,Xo={VIEW:0,EDIT:1,SHIFT:2,ADD:3},qo=30,Vo="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,Qo=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],Ko=["keydown","keyup"],Jo={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid"},Zo={x:1,y:1};function $o(t,e,r){var n=e.left,o=void 0===n?0:n,i=e.top,a=void 0===i?0:i,u=e.blurSize,s=void 0===u?0:u,c=e.color,f=void 0===c?"transparent":c,l=r.rootModel.get("scale")||Zo;t.shadowOffsetX=o*l.x*Vo,t.shadowOffsetY=a*l.y*Vo,t.shadowBlur=s*l.x*Vo,t.shadowColor=f}var ti={gradation:function(t,e,r){r.type;var n=r.subType,o=r.from,i=r.to,a=r.colors;switch(n){case"linear":var u=e.createLinearGradient(o.x,o.y,i.x,i.y);break;case"radial":u=e.createRadialGradient(o.x,o.y,o.r,i.x,i.y,i.r);break;default:u=e.createLinearGradient(o.x,o.y,i.x,i.y)}a&&(a.forEach((function(t){u.addColorStop(t.endPoint,t.color)})),e.fillStyle=u,e.fill())},shadow:$o};function ei(t,e,r,n){var o=e.get("class");return!!o&&(o.split(" ")||[]).indexOf(t.substr(1))>=0}function ri(t,e,r,n){return t==e.get("type")}function ni(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e){return t.substr(1)==e.get("id")}(t,e);case".":return ei(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return ri(t,e)}}function oi(t,e,r,n,o,i){return t(e,r,n,o)&&i.push(r),r.components&&r.components.forEach((function(r){oi(t,e,r,n,o,i)})),i}function ii(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function ai(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":return e.root.findAllById(t.substr(1))||[];case".":n=ei;break;case"(":n=ii;break;default:n=ri}return oi(n,t,e,r,e,[])}var ui=r(59877),si=r.n(ui),ci=function(t){return t};function fi(t){if(!t)return ci;try{var e=si()(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),ci}}function li(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function hi(t){var e=jn(t);return null==e?"":String(e)}function pi(t){return Number(jn(t))}function yi(t){return t}function di(t){return hi(t)}function vi(t){return pi(t)}function gi(t){if(this.param)return t=hi(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function bi(t){var e,r,n=this.param;if(n){for(var o in n){var i=(e=o.split("~"),r=2,function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(e,r)||function(t,e){if(t){if("string"==typeof t)return li(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?li(t,e):void 0}}(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=i[0],u=i[1],s=!!a,c=!!u;if(a=parseFloat(a),u=parseFloat(u),t=pi(t),s&&!c&&t>=a)return n[o];if(!s&&c&&t<a)return n[o];if(t>=a&&t<u)return n[o]}return n.default}}function mi(t){return pi(t)*Math.PI/180}function wi(){}function xi(t,e,r,n,o){switch(r){case"value":return"text"===o||"string"===o?di.bind(t):"number"===o?vi.bind(t):yi.bind(e);case"map":return gi.bind(t);case"range":return bi.bind(t);case"radian":return mi.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return uo(t),wi}}(n).bind(e);default:return yi.bind(e)}}function ki(t){return ki="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},ki(t)}function Si(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Oi(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,_i(n.key),n)}}function _i(t){var e=function(t){if("object"!=ki(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ki(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ki(e)?e:e+""}var Ei,Ai=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.owner=r,this.model=e},(e=[{key:"dispose",value:function(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor,delete this.source}},{key:"model",get:function(){return this._model},set:function(t){var e=t.target,r=t.property,n=t.rule,o=t.param,i=t.accessor;this._model=t,this.evaluator=xi(this,this.owner,n,o,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=fi(i);var a=e.match(/\[(.*?)\]/);if(a){var u=function(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(t,e)||function(t,e){if(t){if("string"==typeof t)return Si(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Si(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(a[1].split(":"),2),s=u[0],c=u[1];this.propAccessor=fi(s),this.partAccessor=fi(c)}}},{key:"target",get:function(){return this.model.target}},{key:"property",get:function(){return this.model.property}},{key:"source",get:function(){return this.model.source}},{key:"param",get:function(){return this.model.param}},{key:"ndnsp",get:function(){return!!this.model.ndnsp}},{key:"partial",get:function(){return!!this.model.partial}}])&&Oi(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Pi(t){return Pi="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},Pi(t)}function ji(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Ti(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ji(Object(r),!0).forEach((function(e){Mi(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ji(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Mi(t,e,r){return(e=function(t){var e=function(t){if("object"!=Pi(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Pi(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Pi(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ri(t,e,r,n){n?t.forEach((function(t){return t[e]=Ti(Ti({},t[e]),r)})):t.forEach((function(t){return t[e]=r}))}function Ii(){var t=this;(arguments.length>0&&void 0!==arguments[0]&&arguments[0]||void 0!==this.data)&&this.mappings&&this.mappings.forEach((function(e){try{var r,n,o=e.source,i=e.target,a=e.property,u=e.accessor,s=e.propAccessor,c=e.partAccessor,f=e.ndnsp,l=void 0!==f&&f,h=e.partial,p=void 0!==h&&h;o&&"(self)"!=o?(o.startsWith("#")&&(o=o.substring(1)),r=(null===(n=t.root.findById(o))||void 0===n?void 0:n.data)||{}):r=t.data;var y=u(r);if("(root)"==(i=i.trim())||"(key)"==i){if(null==y)return;var d=Object.keys(y||{}).map((function(e){return t.root.findOrCreate(e)})).filter(Boolean).flat();d.length>0&&d.forEach((function(t){var r=e.evaluator(y[t.get("id")],[t]);!a||"(action)"===a||l&&!r&&0!==r&&!1!==r||(t[a]=p?Ti(Ti({},t[a]),r):r)}))}else if(i.startsWith("[")){if(null==y)return;if(y instanceof Array)y.forEach((function(r){var n=s(r);if(n){var o=t.root.findOrCreate(n);if(o){var i=e.evaluator(c(r),o);!a||"(action)"===a||l&&!i&&0!==i&&!1!==i||Ri(o,a,i,p)}}}));else{if(!(y instanceof Object))throw String("mapping data should be an object to target property-id.("+y+")");var v=s(y);if(v){var g=t.root.findOrCreate(v);if(g){var b=e.evaluator(c(y),g);!a||"(action)"===a||l&&!b&&0!==b&&!1!==b||Ri(g,a,b,p)}}}}else{var m=t.root.findAll(i,t);if(m.length>0){var w=e.evaluator(y,m);!a||"(action)"===a||l&&!w&&0!==w&&!1!==w||Ri(m,a,w,p)}}}catch(r){uo(r,t,e)}}))}function Ci(t){return Ci="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},Ci(t)}function Li(t,e,r,n,o){var i=n.alpha,a=void 0===i?1:i,u=o.fillStyle;if(t.globalAlpha*=a,u)if("string"==typeof u)t.fillStyle=u,t.fill();else if("object"==Ci(u))if("gradient"==u.type){t.translate(r.x,r.y);var s,c=e.width,f=e.height;if("linear"==u.gradientType){var l=3.141592653589793,h=u.rotation;if(h>=.436332&&h<=1.13446||h>=2.00713&&h<=2.70526||h>=3.57792&&h<=4.27606||h>=5.14872&&h<=5.84685){var p=Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));p-=p-(c+f)/3,s=t.createLinearGradient(p*Math.cos(h+l),p*Math.sin(h+l),p*Math.cos(h),p*Math.sin(h))}else s=t.createLinearGradient((c-4)/2*Math.cos(h+l),(f-4)/2*Math.sin(h+l),(c-4)/2*Math.cos(h),(f-4)/2*Math.sin(h))}else if("radial"==u.gradientType){var y=.95*Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));switch(u.center){case"center":default:s=t.createRadialGradient(0,0,0,0,0,y);break;case"left-top":s=t.createRadialGradient(-c/2,-f/2,0,-c/2,-f/2,2*y);break;case"right-top":s=t.createRadialGradient(c/2,-f/2,0,c/2,-f/2,2*y);break;case"left-bottom":s=t.createRadialGradient(-c/2,f/2,0,-c/2,f/2,2*y);break;case"right-bottom":s=t.createRadialGradient(c/2,f/2,0,c/2,f/2,2*y)}}u.colorStops.forEach((function(t){if(t.position>=0&&t.position<=1)try{s.addColorStop(t.position,t.color)}catch(e){so("Invalid Color for colorstop : ",t.color),s.addColorStop(t.position,"#fff")}})),t.fillStyle=s,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==u.type&&u.image){o.prepareFillIf(!o._pattern_image_origin);var d=o._pattern_image;if(!d)return;var v=0,g=0,b=0,m=0,w=e.left,x=e.top;if(!u.fitPattern){v=u.offsetX,g=u.offsetY;var k=u.width?u.width:d.width,S=u.height?u.height:d.height;switch(u.align){case"center":b=e.width/2-k/2,m=e.height/2-S/2;break;case"left-top":b=0,m=0;break;case"left-bottom":b=0,m=e.height-S;break;case"right-top":b=e.width-k,m=0;break;case"right-bottom":b=e.width-k,m=e.height-S;break;case"left":b=0,m=e.height/2-S/2;break;case"right":b=e.width-k,m=e.height/2-S/2;break;case"top":b=e.width/2-k/2,m=0;break;case"bottom":b=e.width/2-k/2,m=e.height-S}w+=v+b,x+=g+m}t.translate(w,x),u.color&&(t.fillStyle=u.color,t.fill()),u.fitPattern?Math.abs((d.width-e.width)*(d.height-e.height))>1?(delete o._pattern_image,delete o._pattern_image_origin):t.fillStyle=t.createPattern(d,"no-repeat"):t.fillStyle=t.createPattern(d,u.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-w,-x)}}function Di(t,e,r){var n=e.strokeStyle,o=e.lineDash,i=e.lineWidth,a=e.lineCap,u=e.lineJoin,s=e.alpha;if(n&&0!=i){if(a&&(t.lineCap=a),o){var c="round"==a;switch(o){case"solid":o=[0,0];break;case"round-dot":o=c?[0,2*i]:[i,i];break;case"square-dot":o=c?[i,2*i]:[2*i,i];break;case"dash":o=c?[3*i,2.5*i]:[4*i,1.5*i];break;case"dash-dot":o=c?[3*i,3*i,0,3*i]:[4*i,2*i,i,2*i];break;case"long-dash":o=c?[5*i,4*i]:[6*i,3*i];break;case"long-dash-dot":o=c?[5*i,3*i,0,3*i]:[6*i,2*i,i,2*i];break;case"long-dash-dot-dot":o=c?[5*i,2*i,0,2*i,0,2*i]:[6*i,i,i,i,i,i]}t.setLineDash(o)}t.globalAlpha*=s,t.strokeStyle=n,t.lineWidth=i,t.lineJoin=u,t.stroke()}}function Bi(t){return Bi="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},Bi(t)}function Ni(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Fi(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ni(Object(r),!0).forEach((function(e){zi(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ni(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function zi(t,e,r){return(e=function(t){var e=function(t){if("object"!=Bi(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Bi(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Bi(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ui(t,e,r,n,o){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,a=arguments.length>6&&void 0!==arguments[6]&&arguments[6],u=!(arguments.length>7&&void 0!==arguments[7])||arguments[7];i="number"==typeof i?{tl:i,tr:i,br:i,bl:i}:Fi(Fi({},{tl:0,tr:0,br:0,bl:0}),i),t.beginPath(),t.moveTo(e+i.tl,r),t.lineTo(e+n-i.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+i.tr),t.lineTo(e+n,r+o-i.br),t.quadraticCurveTo(e+n,r+o,e+n-i.br,r+o),t.lineTo(e+i.bl,r+o),t.quadraticCurveTo(e,r+o,e,r+o-i.bl),t.lineTo(e,r+i.tl),t.quadraticCurveTo(e,r,e+i.tl,r),t.closePath(),a&&t.fill(),u&&t.stroke()}function Yi(t){return Yi="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},Yi(t)}function Gi(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return Hi(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Hi(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function Hi(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Wi(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Xi(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Wi(Object(r),!0).forEach((function(e){qi(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Wi(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function qi(t,e,r){return(e=function(t){var e=function(t){if("object"!=Yi(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Yi(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Yi(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Vi(t){for(var e,r=/(\*\*|__)(.*?)\1|(\*|_)(.*?)\3|([^\*_]+)/g,n=[];null!==(e=r.exec(t));)e[1]?n.push({text:e[2],bold:!0,italic:!1}):e[3]?n.push({text:e[4],bold:!1,italic:!0}):e[5]&&n.push({text:e[5],bold:!1,italic:!1});return n}function Qi(t,e,r){if(e.text.length<2)return e;for(var n=2;n<e.text.length;n++){var o=e.text.substring(0,n);if(!(t.measureText(o).width<r))break}return Xi(Xi({},e),{},{text:e.text.substring(0,n-1)})}function Ki(t,e,r,n,o,i){if(!n)return[];t.save(),t.font=r;var a=function(t,e,r,n,o){var i=String(e).split("\n");return n?[].concat.apply([],i.map((function(e){return function(t,e,r){var n=[],o=[],i=0;return e.forEach((function(e){for(var a=e.text;a.length>0;){var u=r-i,s=t.measureText(a).width;if(s<=u)o.push(Xi(Xi({},e),{},{text:a})),i+=s,a="";else{var c=Qi(t,Xi(Xi({},e),{},{text:a}),u);o.push(c),n.push(o),o=[],i=0,a=a.substring(c.text.length)}}})),o.length>0&&n.push(o),n}(t,o?Vi(e):[{text:e,bold:!1,italic:!1}],r)}))):i.map((function(t){return o?Vi(t):[{text:t,bold:!1,italic:!1}]}))}(t,n,e,!!o,i);return t.restore(),a}function Ji(t){var e=t.fontFamily,r=void 0===e?Jo.FONT_FAMILY:e,n=t.bold,o=void 0===n?Jo.BOLD:n,i=t.italic,a=void 0===i?Jo.ITALIC:i,u=t.fontSize,s=void 0===u?Jo.FONT_SIZE:u,c=[];return o&&c.push("bold"),a&&c.push("italic"),c.push(s+"px"),c.push(r),c.join(" ")}function Zi(t,e){var r=t.bold||e.bold,n=t.italic||e.italic,o=[];return r&&o.push("bold"),n&&o.push("italic"),o.push(t.fontSize+"px"),o.push(t.fontFamily),o.join(" ")}function $i(t,e,r,n){var o=n.alpha,i=n.fontColor,a=void 0===i?Jo.FONT_COLOR:i,u=n.textAlign,s=void 0===u?Jo.TEXT_ALIGN:u,c=n.textBaseline,f=void 0===c?Jo.TEXT_BASELINE:c,l=n.textBackgroundStyle,h=n.fontSize,p=n.lineHeight,y=n.textWrap,d=(n.supportMarkdown,n.textOverflow);void 0===(void 0===n.bold&&Jo.BOLD,n.italic)&&Jo.ITALIC,o=void 0!==o?o:1,h||(h=Jo.FONT_SIZE),p||(p=1.2*h),t.save(),t.beginPath();var v=e.left,g=e.top,b=e.width,m=e.height;if(t.font=Ji(n),!y&&d){var w=function(t,e,r,n){var o,i="ellipsis"===t?"…":"",a=e.measureText(i).width,u=[],s=0,c=Gi(r);try{for(c.s();!(o=c.n()).done;){var f,l=o.value,h=[],p=Gi(l);try{for(p.s();!(f=p.n()).done;){var y=f.value,d=e.measureText(y.text).width;if(!(s+d<=n-("ellipsis"===t?a:0))){var v=ta(e,y,n-s-("ellipsis"===t?a:0),t);return h.push(v),u.push(h),u}h.push(y),s+=d}}catch(t){p.e(t)}finally{p.f()}u.push(h),s=0}}catch(t){c.e(t)}finally{c.f()}return u}(d,t,r,b);r=w}var x,k=r.length*p;switch(f){case"top":x=g,t.textBaseline="top";break;case"bottom":x=g+m-k+p,t.textBaseline="bottom";break;default:x=g+m/2-k/2+p/2,t.textBaseline="middle"}t.globalAlpha*=o,t.fillStyle=a,r.forEach((function(e,o){var i=x+o*p,u=function(t,e,r){return e.reduce((function(e,n){return t.font=Zi(r,n),e+t.measureText(n.text).width}),0)}(t,e,n),c=v;switch(s){case"left":case"justify":c=v;break;case"right":c=v+b-u;break;case"center":c=v+(b-u)/2}if(l&&(t.fillStyle=l,Ui(t,c-4,i-h/2-4,u+8,h+8,4,!0,!1),t.fillStyle=a),"justify"===s&&o<r.length-1&&e.length>1){var f=b-u,y=e.length-1,d=f/y;e.forEach((function(e,r){t.font=Zi(n,e),t.fillText(e.text,c,i),c+=t.measureText(e.text).width+(r<y?d:0)}))}else e.forEach((function(e){t.font=Zi(n,e),t.fillText(e.text,c,i),c+=t.measureText(e.text).width}))})),t.restore()}function ta(t,e,r,n){for(var o="",i=0;i<e.text.length;i++){var a=o+e.text[i];if(t.measureText(a).width>r)break;o=a}return Xi(Xi({},e),{},{text:o+("ellipsis"===n?"…":"")})}function ea(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(-n)-e*Math.sin(-n)+r.x)/o.x,y:(t*Math.sin(-n)+e*Math.cos(-n)+r.y)/o.y}}function ra(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(n)-e*Math.sin(n)+r.x)*o.x,y:(t*Math.sin(n)+e*Math.cos(n)+r.y)*o.y}}Ei="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};var na={x:1,y:1},oa={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function ia(t){var e=t.state,r=e.id,n=e.scale,o=void 0===n?na:n,i=(e.translate,e.bold),a=e.italic,u=e.fontFamily,s=void 0===u?"":u,c=e.textAlign,f=e.textBaseline,l=e.textOverflow,h=e.paddingTop,p=e.paddingBottom,y=e.paddingLeft,d=e.paddingRight,v=e.fontSize,g=void 0===v?Jo.FONT_SIZE:v,b=e.lineWidth,m=void 0===b?0:b,w=e.lineDash;p||(p=0),h||(h=0),y||(y=0),d||(d=0);var x=t.state.class,k=(t.text,t.strokeStyle),S=(t.fillStyle,t.rotation),O=void 0===S?0:S,_=t.fontColor,E=t.hidden,A=t.bounds,P=A.left,j=A.top,T=A.width,M=A.height,R=t.element;if(R.hidden=E,r&&(R.id=r),x&&(R.className=x),Object.assign(R.style,oa,{fontFamily:s,fontSize:g+"px",width:T+"px",height:M+"px",paddingTop:h+"px",paddingRight:d+"px",paddingBottom:p+"px",paddingLeft:y+"px",border:m+"px",borderColor:k,borderStyle:m>0?w||Jo.LINE_DASH:"",color:_,fontWeight:i?"bold":"",fontStyle:a?"italic":"",textAlign:"end"==c?"right":"start"==c?"left":c,verticalAlign:f,whiteSpace:l?"nowrap":"",overflow:l?"hidden":"",textOverflow:l||""},t.isIn3DSpace()?{}:{left:P+"px",top:j+"px"}),function(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize="".concat(r.width?r.width+"px":"auto"," ").concat(r.height?r.height+"px":"auto"):n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{var o=r.offsetX,i=r.offsetY,a=r.noRepeat,u=r.align,s=r.color;if(a&&(n.backgroundRepeat="no-repeat"),s&&(n.backgroundColor=s),u)switch(u){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else o||i?n.backgroundPosition="".concat(Number(o)||0,"px ").concat(Number(i)||0,"px"):delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var r=t.bounds,n=r.width,o=r.height;switch(e){case"center":return[n/2,o/2];case"left-top":return[0,0];case"right-top":return[n,0];case"left-bottom":return[0,o];default:return[n,o]}}(t,e.center||"center").map((function(t){return t+"px"})).join(" ")+","+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90)+"deg, "+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")"}return""}(t,r)}else n.background="transparent"}(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,r=t.state.shadow,n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i,u=r.blurSize,s=void 0===u?0:u,c=r.color,f=void 0===c?"transparent":c;e.style.boxShadow="".concat(o,"px ").concat(a,"px ").concat(s,"px ").concat(f)}}(t),!t.isIn3DSpace()){var I=t.delta(),C=(o&&o.x||1)*I.sx,L=(o&&o.y||1)*I.sy,D=(O||0)+I.theta,B=I.tx||0,N=I.ty||0;R.style.transform="rotate(".concat(D,"rad) translate(").concat(B,"px, ").concat(N,"px) scale(").concat(C,", ").concat(L,") perspective(1px)")}}const aa=function(){return v.Date.now()};var ua=Math.max,sa=Math.min;const ca=function(t,e,r){var n,o,i,a,u,s,c=0,f=!1,l=!1,h=!0;if("function"!=typeof t)throw new TypeError("Expected a function");function p(e){var r=n,i=o;return n=o=void 0,c=e,a=t.apply(i,r)}function y(t){var r=t-s;return void 0===s||r>=e||r<0||l&&t-c>=i}function d(){var t=aa();if(y(t))return v(t);u=setTimeout(d,function(t){var r=e-(t-s);return l?sa(r,i-(t-c)):r}(t))}function v(t){return u=void 0,h&&n?p(t):(n=o=void 0,a)}function g(){var t=aa(),r=y(t);if(n=arguments,o=this,s=t,r){if(void 0===u)return function(t){return c=t,u=setTimeout(d,e),f?p(t):a}(s);if(l)return clearTimeout(u),u=setTimeout(d,e),p(s)}return void 0===u&&(u=setTimeout(d,e)),a}return e=wn(e)||0,E(r)&&(f=!!r.leading,i=(l="maxWait"in r)?ua(wn(r.maxWait)||0,e):i,h="trailing"in r?!!r.trailing:h),g.cancel=function(){void 0!==u&&clearTimeout(u),c=0,n=s=o=u=void 0},g.flush=function(){return void 0===u?a:v(aa())},g},fa=function(t,e,r){var n=!0,o=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return E(r)&&(n="leading"in r?!!r.leading:n,o="trailing"in r?!!r.trailing:o),ca(t,e,{leading:n,maxWait:e,trailing:o})};function la(t){return la="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},la(t)}function ha(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,pa(n.key),n)}}function pa(t){var e=function(t){if("object"!=la(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=la(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==la(e)?e:e+""}var ya,da=[];function va(){ya=null;var t=performance.now(),e=(da=da.filter((function(t){return ga(t)}))).reduce((function(e,r){var n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((function(t){var e=da.indexOf(t);-1!=e?(da.splice(e,1),t.removeSelf(!0)):uo("Should not be here. Maybe reentrance problem.")})),e.next>0&&(ya=setTimeout(ba,Math.max(e.next,500)))}function ga(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var ba=fa((function(){requestAnimationFrame(va)}),500);const ma=new(function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)},(e=[{key:"add",value:function(t){ga(t)&&-1==da.indexOf(t)&&(da.push(t),t.touch()),this.touch()}},{key:"remove",value:function(t){var e=da.indexOf(t);e>0&&da.splice(e,1),this.touch()}},{key:"touch",value:function(){null!==ya&&(clearTimeout(ya),ya=null),ba()}},{key:"length",get:function(){return da.length}}])&&ha(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}());var wa=function(t){return t};function xa(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var o=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((function(t){return!!t.trim()})),i=o.slice(1);return{defaultValue:n,match:t,originText:r||t,target:o[0],accessor:i.length>0?function(t){return i.reduce((function(t,e){return t?t[e]:void 0}),t)}:wa}}function ka(t,e,r){if(t){var n=r||jn,o=String(t),i=(o.match(/#{[^}]*}/gi)||[]).map((function(t){return xa(t)})),a=(o.match(/\${[^}]*}/gi)||[]).map((function(t){return xa(t)}));if(0!=i.length||0!=a.length)return function(){var t=o;return i.forEach((function(r){var o=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===o?r.defaultValue||"":o)})),a.forEach((function(r){var o=e.root.findById(r.target),i=n(r.accessor(o&&o.data));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),t}}}var Sa=210*Math.PI/180,Oa=150*Math.PI/180,_a={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;return t.mappings&&t.mappings.forEach((function(r){var o=t.root.findAll(r.target,t);o&&(e.lineWidth=2,o.forEach((function(r){var o=t.center,i=r.center;o=t.transcoordS2C(o.x,o.y,t.rootModel),i=r.transcoordS2C(i.x,i.y,r.rootModel),e.beginPath();var a=e.createLinearGradient(o.x,o.y,i.x,i.y);["#FFA50033","#FFA500"].forEach((function(t,e){return a.addColorStop(e,t)})),e.strokeStyle=a,e.fillStyle=a,function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,o=r.x-e.x,i=r.y-e.y,a=Math.atan2(i,o),u=r.x+n*Math.cos(a+Sa),s=r.y+n*Math.sin(a+Sa),c=r.x+n*Math.cos(a+Oa),f=r.y+n*Math.sin(a+Oa);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(u,s),t.moveTo(r.x,r.y),t.lineTo(c,f),t.stroke()}(e,o,i),n=!0})))})),n}},"bouncing-arrow":function(t,e,r){var n=t.bounds,o=n.left,i=n.top,a=n.width,u=t.state.id,s=t.transcoordS2C(o+a/2,i,t.rootModel),c=s.x,f=s.y,l=2*function(t){var e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(c=Math.max(c,20),f=Math.max(f,20),e.beginPath(),e.moveTo(c-10,f-16+l),e.lineTo(c+10,f-16+l),e.lineTo(c+10,f-8+l),e.lineTo(c+16,f-8+l),e.lineTo(c,f+l),e.lineTo(c-16,f-8+l),e.lineTo(c-10,f-8+l),e.lineTo(c-10,f-16+l),e.lineTo(c-10,f-16+l),e.fillStyle="#FF0000",e.fill(),u){e.beginPath(),e.font="12px Arial";var h=e.measureText(u);e.fillStyle="#FF0000",e.roundRect(c-h.actualBoundingBoxLeft-3+20,f-h.actualBoundingBoxAscent-3-6+l,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+6,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(u,c+20,f-6+l)}return!0},decotag:function(t,e,r){var n=t.decotag;if(n){var o=t.bounds,i=o.left,a=o.top,u=t.transcoordS2C(i,a,t.rootModel),s=u.x,c=u.y;s=Math.max(s+3,5),c=Math.max(c-8,15),e.font="12px Arial";var f=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(s-f.actualBoundingBoxLeft-3,c-f.actualBoundingBoxAscent-3,f.actualBoundingBoxLeft+f.actualBoundingBoxRight+6,f.actualBoundingBoxAscent+f.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,s,c),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((function(r){var o=r.name,i=r.position||{},a=i.x,u=i.y;if(o){var s=t.transcoordS2C(a,u,t.rootModel);a=s.x,u=s.y,a+=4,u+=4,e.font="12px Arial";var c=e.measureText(o);e.fillStyle="#FF0000",Ui(e,a,u,c.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(o,a+3,u+13),n=!0}})),n}},link:function(t,e,r){var n=!1;if(t.isLine())return[t.fromEnd,t.toEnd].filter(Boolean).forEach((function(t){var r=t.component,o=t.anchor;if(o){var i=o||{},a=i.name,u=i.position;if(a&&u){var s=u||{},c=s.x,f=s.y,l=r.transcoordS2C(c,f,r.rootModel);c=l.x,f=l.y,c+=8,f+=20,e.font="12px Arial";var h=e.measureText(a);e.fillStyle="#FF0000",Ui(e,c-h.actualBoundingBoxLeft-4,f-h.actualBoundingBoxAscent-4,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+8,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(a,c,f),n=!0}}})),n}};function Ea(t){return _a[t]}function Aa(t){return Aa="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},Aa(t)}function Pa(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function ja(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Pa(Object(r),!0).forEach((function(e){Ta(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Pa(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ta(t,e,r){return(e=Ca(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ma(){Ma=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function O(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function _(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==Aa(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(Aa(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},O(_.prototype),c(_.prototype,u,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function Ra(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function Ia(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ca(n.key),n)}}function Ca(t){var e=function(t){if("object"!=Aa(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Aa(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Aa(e)?e:e+""}var La={},Da={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},Ba=[],Na={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0},Fa=0,za={},Ua=new FinalizationRegistry((function(t){!function(t){Fa--;var e=za[t];e||(e=za[t]={up:0,down:0}),e.down++}(t)})),Ya=function(){return t=function t(e,r){var n,o;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._app=r,this._model=e||{},this._state={},this._delta=Lo(Na),r&&null!==(n=this.animation)&&void 0!==n&&n.config&&(1==this.animation.config.autoplay||null===(o=this.animation.config.autoplay)||void 0===o||o)&&(this.animation.started=!0),this.clearCache(),ma.add(this),function(t){Fa++;var e=za[t];e||(e=za[t]={up:0,down:0}),e.up++}(e.type),Ua.register(this,e.type)},e=[{key:"created",value:function(){}},{key:"added",value:function(t){}},{key:"removed",value:function(t){}},{key:"ready",value:(n=Ma().mark((function t(){var e,r,n;return Ma().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!this.state.persistent){t.next=6;break}if(e=this.app,r=e.isViewMode,n=e.dataStorage,!r){t.next=6;break}return t.next=5,n.load(this);case 5:this.data=t.sent;case 6:case"end":return t.stop()}}),t,this)})),i=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=n.apply(t,e);function a(t){Ra(i,r,o,a,u,"next",t)}function u(t){Ra(i,r,o,a,u,"throw",t)}a(void 0)}))},function(){return i.apply(this,arguments)})},{key:"touch",value:function(){this.updatedAt=performance.now()}},{key:"clearCache",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];No.apply(o,[this].concat(e))}},{key:"removeSelf",value:function(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}},{key:"dispose",value:function(){this._animation&&(this._animation.dispose(),delete this._animation),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&ma.touch(),this.clearCache(),delete this._app}},{key:"nature",get:function(){return this.constructor.nature}},{key:"disposed",get:function(){return!!this._disposed}},{key:"isLayer",value:function(){return!1}},{key:"isGroup",value:function(){return!1}},{key:"isContainer",value:function(){return!1}},{key:"isLine",value:function(){return!1}},{key:"isRoot",value:function(){return!1}},{key:"isRootModel",value:function(){return!1}},{key:"is3dish",value:function(){return!1}},{key:"isIn3DSpace",value:function(){return!1}},{key:"isTemplate",value:function(){return!!this.get("templatePrefix")}},{key:"isHTMLElement",value:function(){return!1}},{key:"isConnectable",value:function(){return!1}},{key:"isIdentifiable",value:function(){return!0}},{key:"replaceRefids",value:function(t){}},{key:"retention",get:function(){return Number(this.get("retention"))||0}},{key:"hasTextProperty",get:function(){return!0}},{key:"app",get:function(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}},{key:"model",get:function(){return this._model}},{key:"state",get:function(){return Object.assign({},this._model,this._state)}},{key:"hierarchy",get:function(){var t=Lo(this._model);return this.volatile.forEach((function(e){delete t[e]})),t}},{key:"volatile",get:function(){return Ba}},{key:"textHidden",get:function(){return!!this._textHidden},set:function(t){this._textHidden=!!t,this.invalidate()}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,e){if("string"==typeof t)return this.set(Ta({},t,e));var r={},n={},o=!1,i=(t=Lo(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){var a=i._model[e],u=t[e];we(a,u)||(n[e]=a,r[e]=u,i._model[e]=u,delete i._state[e],o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&ma.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"getState",value:function(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}},{key:"setState",value:function(t,e){if("string"==typeof t)return this.setState(Ta({},t,e));var r={},n={},o=!1,i=(t=Lo(t),this),a=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){var u=i.getState(e),s=t[e];!a&&we(u,s)||(n[e]=u,r[e]=s,i._state[e]=s,o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"root",get:function(){return this.isRoot()?this:this.parent&&this.parent.root}},{key:"rootModel",get:function(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}},{key:"parent",get:function(){return this._parent},set:function(t){this._parent=t}},{key:"anchors",get:function(){return this.nature.anchors||[]}},{key:"findAnchor",value:function(t){return this.anchors.find((function(e){return e.name===t}))}},{key:"isDescendible",value:function(t){return!0}},{key:"getContext",value:function(){return this._parent.getContext()}},{key:"center",get:function(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}},set:function(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((function(t){return{x:t.x+r,y:t.y+n}}))}}}},{key:"location",get:function(){var t=this.center;return{x:t.x,y:t.y,z:this.state.zPos}},set:function(t){var e=t||{},r=e.x,n=e.y,o=e.z;this.center={x:r,y:n},isNaN(o)||this.setState("zPos",Number(o))}},{key:"rotate",get:function(){var t=this.state;return{x:t.rotationX,y:t.rotationY,z:-t.rotation}},set:function(t){var e=t.x,r=t.y,n=t.z;this.setState({rotationX:e,rotationY:r,rotation:-n})}},{key:"dimension",get:function(){var t=this.bounds;return{width:t.width,height:t.height,depth:this.state.depth}},set:function(t){var e=t.width,r=t.height,n=t.depth,o=this.bounds,i=o.top,a=o.left;this.bounds={top:i,left:a,width:e,height:r},this.setState("depth",n)}},{key:"bounds",get:function(){var t,e,r,n,o=this.path;t=e=o[0].x,r=n=o[0].y;for(var i=1;i<o.length;i++){var a=o[i];a.x<t?t=a.x:a.x>e&&(e=a.x),a.y<r?r=a.y:a.y>n&&(n=a.y)}return{left:t,top:r,width:e-t,height:n-r}},set:function(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((function(o){return{x:t.left+(o.x-e.left)*r,y:t.top+(o.y-e.top)*n}}))}}},{key:"path",get:function(){return uo("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]},set:function(t){uo("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}},{key:"drawPath",get:function(){return this.path}},{key:"outline",value:function(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,o=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){var i=r[n-1],a=r[n],u=a.x-i.x,s=a.y-i.y;o.push(Math.sqrt(u*u+s*s)),n++}var c=o.reduce((function(t,e){return t+e}),0);n=0;var f=0;do{f+=o[n++]}while(f/c<e);e=(e-(f-=o[--n])/c)*(c/o[n]);var l=r[n%r.length],h=r[(n+1)%r.length],p=l.x+Math.round((h.x-l.x)*e),y=l.y+Math.round((h.y-l.y)*e);return t.transcoordS2T(p,y)}uo("path should not be empty")}(this,t||0)}},{key:"strokeStyle",get:function(){return this.get("strokeStyle")},set:function(t){this.set("strokeStyle",t)}},{key:"fillStyle",get:function(){return this.getState("fillStyle")},set:function(t){this.setState("fillStyle",t)}},{key:"fontColor",get:function(){return this.get("fontColor")},set:function(t){this.set("fontColor",String(jn(t)))}},{key:"rotation",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",Number(jn(t)))}},{key:"contains",value:function(t,e){return!1}},{key:"mutable",get:function(){return this.nature.mutable}},{key:"resizable",get:function(){return this.nature.resizable&&!this.stuck}},{key:"adjustResize",value:function(t,e,r){if(r){var n=this.bounds,o=n.height/n.width,i=t.width-n.width,a=t.height-n.height;i*o>a?a=i*o:i=a/o;var u=t.left-n.left,s=t.top-n.top;return 0!=u&&0!=s?(s=-a,u=-i):0!=u?u=-i:0!=s&&(s=-a),{left:n.left+u,top:n.top+s,width:n.width+i,height:n.height+a}}return t}},{key:"rotatable",get:function(){return this.nature.rotatable&&!this.stuck}},{key:"adjustRotation",value:function(t,e){if(e||this.app.rotateStepForced){var r=this.app.rotateStep;return Math.floor((t+r/2)/r)*r}return t}},{key:"capturable",get:function(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}},{key:"stuck",get:function(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(t.apply(void 0,[this].concat(r)))return this}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return"string"==typeof t?ai(t,this,r[0]||this):"function"==typeof t&&t.apply(void 0,[this].concat(r))?[this]:void 0}},{key:"capture",value:function(t,e,r){if(!this.capturable||null!=r&&r(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}},{key:"prepare",value:function(t,e){t(this)}},{key:"prepareIf",value:function(t){var e=this;t&&this.prepare&&this.prepare((function(t){e.invalidate()}),(function(t){uo(t)}))}},{key:"decotag",get:function(){var t=this.state,e=t.id,r=t.tag;return(e?"#".concat(e):"")+(r?"@".concat(r):"")}},{key:"decorators",get:function(){return["decotag","data-spread"]}},{key:"reactionDecorators",get:function(){return["bouncing-arrow"]}},{key:"hidden",get:function(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()},set:function(t){this.setState("hidden",t)}},{key:"draw",value:function(t){t.save(),this.__proto__.hasOwnProperty("_pre_draw")?this._pre_draw(t):this.prerender(t),this.__proto__.hasOwnProperty("_draw")?this._draw(t):this.render(t),this.__proto__.hasOwnProperty("_post_draw")?this._post_draw(t):this.postrender(t),t.restore()}},{key:"delta",value:function(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}},{key:"prerender",value:function(t){var e=this.rotatePoint,r=this.state,n=r.scale,o=r.rotation,i=r.shadow,a=r.alpha,u=(n&&n.x||1)*this._delta.sx,s=(n&&n.y||1)*this._delta.sy,c=(o||0)+this._delta.theta,f=this._delta,l=f.tx,h=void 0===l?0:l,p=f.ty,y=void 0===p?0:p,d=(a||1)-this._delta.fade;(h||y)&&t.translate(h,y),(1!=u||1!=s||c)&&(t.translate(e.x,e.y),1==u&&1==s||t.scale(u,s),c&&t.rotate(c),t.translate(-e.x,-e.y)),d&&(t.globalAlpha=d),i&&$o(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){this.drawText(t)}},{key:"drawText",value:function(t){!this.textHidden&&this.text&&this.hasTextProperty&&$i(t,this.textBounds,this.textLines(t),this.state)}},{key:"drawStroke",value:function(t,e){Di(t,e?ja(ja({},this.state),e):this.state)}},{key:"drawFill",value:function(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(Li(t,this.bounds,this.center,e?ja(ja({},this.state),e):this.state,this),function(t){t.shadowColor="transparent"}(t))}},{key:"animate",value:function(t){return this._animate&&this._animate.stop(),this._animate=hn(t),this._animate}},{key:"move",value:function(t){var e=t.x,r=t.y,n=this.path,o=e,i=r;this.path=n.map((function(t){return{x:t.x+o,y:t.y+i}}))}},{key:"symmetryX",value:function(t){"number"!=typeof t&&(t=this.center.x);var e=this.state.rotation,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=Lo(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((function(e){return{x:2*t-e.x,y:e.y}}))}},{key:"symmetryY",value:function(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}},{key:"animation",get:function(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=(e=t.oncreate,(r=ln[e.type])?new r(this,e):null))}var e,r;return this._animation}}},{key:"effect",value:function(t,e){return function(t,e,r){var n=ti[r.type];n&&n(t,e,r)}(this,t,e)}},{key:"started",set:function(t){this.animation&&(this.animation.started=t)}},{key:"invalidate",value:function(){this.parent&&this.parent.invalidate()}},{key:"font",get:function(){return Ji(this.model)}},{key:"lineHeight",get:function(){return this.get("lineHeight")||1.2*this.fontSize}},{key:"defaultTextSubstitutor",value:function(){var t=this.getState("text");return null==t?"":String(t)}},{key:"textSubstitutor",get:function(){return this._text_substitutor||(this._text_substitutor=ka(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}},{key:"text",get:function(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,o,i,a,u,s,c,f,l=t.length,h=t.search(/[0-9\-\+#]/),p=h>0?t.substring(0,h):"",y=t.split("").reverse().join(""),d=y.search(/[0-9\-\+#]/),v=l-d,g=t.substring(v,v+1),b=v+("."===g||","===g?1:0),m=d>0?t.substring(b,l):"";if(r=(e="-"===(t=t.substring(h,b)).charAt(0)?-e:+e)<0?e=-e:0,o=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",a=t[1]&&t[1].lastIndexOf("0"),(!(s=e.split("."))[1]||s[1]&&s[1].length<=a)&&(e=(+e).toFixed(a+1)),c=t[0].split(o),t[0]=c.join(""),(i=t[0]&&t[0].indexOf("0"))>-1)for(;s[0].length<t[0].length-i;)s[0]="0"+s[0];else 0==+s[0]&&(s[0]="");if((e=e.split("."))[0]=s[0],u=c[1]&&c[c.length-1].length){for(y="",v=(f=e[0]).length%u,l=f.length,b=0;b<l;b++)y+=f.charAt(b),!((b-v+1)%u)&&b<l-u&&(y+=o);e[0]=y}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),p+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+m}(t,this.textSubstitutor()):this.textSubstitutor()},set:function(t){delete this._text_substitutor;var e=jn(t);this.setState("text",null==e?"":String(e))}},{key:"textLines",value:function(t){var e=this.state,r=e.textWrap,n=e.supportMarkdown;return Ki(t||this.getContext(),this.textBounds.width,this.font,this.text,r,n)}},{key:"textBounds",get:function(){var t=this.state,e=t.paddingTop,r=t.paddingLeft,n=t.paddingRight,o=t.paddingBottom;o||(o=0),e||(e=0),r||(r=0),n||(n=0);var i=this.bounds,a=i.left,u=i.top,s=i.width,c=i.height;return{left:a+r,top:u+e,width:Math.max(s-r-n,0),height:Math.max(c-e-o,0)}}},{key:"textRotation",get:function(){return 0}},{key:"rotatePoint",get:function(){return this.center}},{key:"trim",value:function(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}},{key:"value",get:function(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]},set:function(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}},{key:"data",get:function(){return this.getState("data")},set:function(t){this.setState("data",t),this.touch()}},{key:"tap",set:function(t){var e,r=null===(e=this.model.event)||void 0===e?void 0:e.tap;if(r){var n,o=this.center,i=o.cx,a=o.cy;null===(n=this.rootModel)||void 0===n||n._doEventAction(r,this,!0,new CustomEvent("click",{offsetX:i,offsetY:a}))}}},{key:"mappings",get:function(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}},{key:"serialize",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return JSON.stringify.apply(JSON,[this.hierarchy].concat(e))}},{key:"controls",get:function(){}},{key:"closeScene",value:function(t){this.rootModel.closeScene(t)}}],r=[{key:"nature",get:function(){return Da}},{key:"register",value:function(t,e){if(!e)return La[t];La[t]=e}},{key:"residents",get:function(){return za}},{key:"residentsCount",get:function(){return Fa}},{key:"registerDecorator",value:function(t,e){!function(t,e){_a[t]=e}(t,e)}}],e&&Ia(t.prototype,e),r&&Ia(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,r,n,i}();function Ga(t){return Ga="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},Ga(t)}function Ha(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Wa(n.key),n)}}function Wa(t){var e=function(t){if("object"!=Ga(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ga(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ga(e)?e:e+""}function Xa(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Xa=function(){return!!t})()}function qa(){return qa="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Va(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},qa.apply(null,arguments)}function Va(t){return Va=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Va(t)}function Qa(t,e){return Qa=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qa(t,e)}Ya.union=function(t){var e,r,n,o;return t.forEach((function(t){void 0===e?(e=t.left,r=t.top,n=t.left+t.width,o=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),o=Math.max(t.top+t.height,o))})),{left:e,top:r,width:n-e,height:o-r}},Ya.transcoordR=ea,Ya.transcoordRR=ra,Ya.createCanvas=Ei,Ya.memoize=Do,Ya.mixin=no,Ya.drawText=$i,Ya.font=Ji,Ya.textLines=Ki,Ya.drawStroke=Di,Ya.drawFill=Li,Ya.reposition=ia,Ya.RetentionManager=ma,Ya.template=function(t,e,r){var n=yr.imports._.templateSettings||yr;r&&Be(t,e,r)&&(e=void 0),t=lr(t),e=Ue({},e,n,tr);var o,i,a=Ue({},e.imports,n.imports,tr),u=Qt(a),s=function(t,e){return Je(e,(function(e){return t[e]}))}(a,u),c=0,f=e.interpolate||wr,l="__p += '",h=RegExp((e.escape||wr).source+"|"+f.source+"|"+(f===nr?mr:wr).source+"|"+(e.evaluate||wr).source+"|$","g"),p=kr.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(h,(function(e,r,n,a,u,s){return n||(n=a),l+=t.slice(c,s).replace(xr,rr),r&&(o=!0,l+="' +\n__e("+r+") +\n'"),u&&(i=!0,l+="';\n"+u+";\n__p += '"),n&&(l+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),c=s+e.length,e})),l+="';\n";var y=kr.call(e,"variable")&&e.variable;if(y){if(br.test(y))throw new Error("Invalid `variable` option passed into `_.template`")}else l="with (obj) {\n"+l+"\n}\n";l=(i?l.replace(dr,""):l).replace(vr,"$1").replace(gr,"$1;"),l="function("+(y||"obj")+") {\n"+(y?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(o?", __e = _.escape":"")+(i?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+l+"return __p\n}";var d=Ke((function(){return Function(u,p+"return "+l).apply(void 0,s)}));if(d.source=l,Qe(d))throw d;return d},Ya.buildSubstitutor=ka,Object.assign(Ya.prototype,{drawEffect:function(t){var e=this;(this.state.effects||[]).forEach((function(r){e.effect(t,r)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);var e=r.width||this.width,o=r.height||this.height;r.fitPattern&&(e=n.bounds.width,o=n.bounds.height);var i=Ei(e,o);i.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,o),n._pattern_image=i,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){var e=this;t&&this.prepareFill((function(t){e.invalidate()}),(function(t){uo(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):(null==r?void 0:r.image)&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,o,i){var a=this;e.complete?t.drawImage(e,r,n,o,i):e.addEventListener("load",(function(){a.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,o=this.get("rotation"),i=this.get("scale");if(t){var a=t.call(e,r);a&&(r=a)}var u=r,s=u.left,c=u.top,f=[{x:s,y:c},{x:s+u.width,y:c+u.height}],l=(f=f.map((function(t){return ra(t.x,t.y,n,o,i)})))[0],h=f[1];n={x:(l.x+h.x)/2,y:(l.y+h.y)/2},l=(f=f.map((function(t){return ea(t.x,t.y,n,o,i)})))[0],h=f[1],this.bounds={left:l.x,top:l.y,width:h.x-l.x,height:h.y-l.y}},mutatePath:function(t,e,r){var n=this,o=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(o=t.call(r,o));var a=o.map((function(t){return n.transcoordS2P(t.x,t.y)}));e&&(o=e.call(r,a))&&(a=o);var u,s,c,f,l={x:0,y:0};o=a.map((function(t){return n.transcoordP2S(t.x,t.y,l)})),u=s=o[0].x,c=f=o[0].y;for(var h=1;h<o.length;h++){var p=o[h];p.x<u?u=p.x:p.x>s&&(s=p.x),p.y<c?c=p.y:p.y>f&&(f=p.y)}i={x:(u+s)/2,y:(c+f)/2},i=this.transcoordS2P(i.x,i.y,l),this.path=a.map((function(t){return n.transcoordP2S(t.x,t.y,i)}))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((function(t){return xa(t)}))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((function(t){return xa(t)}))[0];if(n){var o=this.root.findById(n.target);return n.accessor(this.getState(o))}return t}},substitute:function(t,e){var r=this;if(t){var n=String(t),o=e||jn,i=(n.match(/#{(\S*)}/gi)||[]).map((function(t){return xa(t)})),a=(n.match(/\${[^}]*}/gi)||[]).map((function(t){return xa(t)}));if(0==i.length&&0==a.length)return n;var u=n;return i.forEach((function(t){var e=o(t.accessor(r.getState(t.target)));u=u.replace(t.match,void 0===e?"":e)})),a.forEach((function(t){var e=r.root.findById(t.target),n=o(t.accessor(e&&e.data));u=u.replace(t.match,void 0===n?"":n)})),u}},onchangeMappings:function(t,e){this.disposeMappings(),Ii.call(this)},onchangeData:function(t,e){var r,n;this.state.persistent&&(null===(r=this.app)||void 0===r?void 0:r.isViewMode)&&(null===(n=this.app)||void 0===n||n.dataStorage.save(this,t.data)),Ii.call(this,[!0])},buildMappings:function(){var t=this;if(this._model.mappings)return!this._model.mappings instanceof Array?(uo("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).filter((function(t){return t.rule&&t.target})).map((function(e){return new Ai(e,t)})));this._mappings=[]},executeMappings:Ii,disposeMappings:function(){this._mappings&&this._mappings.forEach((function(t){return t.dispose()})),delete this._mappings},ondropfile:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,u=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var s=this.state.translate,c=ra(t,e,void 0,i+this._delta.theta,u);return s&&(c.x+=s.x,c.y+=s.y),c}r=r||this.rotatePoint;var f=this._delta||{},l=f.theta,h=void 0===l?0:l,p=f.tx,y=void 0===p?0:p,d=f.ty,v=void 0===d?0:d,g=f.sx,b=void 0===g?1:g,m=f.sy,w=void 0===m?1:m,x=ra(t+y,e+v,r={x:r.x+y,y:r.y+v},i+h,u={x:u.x*b,y:u.y*w});return{x:x.x-(r.x*u.x-r.x),y:x.y-(r.y*u.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,u=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var s=this.state.translate,c=ea(t,e,s,i,u);return s&&(c.x-=s.x/(u?u.x:1),c.y-=s.y/(u?u.y:1)),c}var f=ea(t,e,r=r||this.rotatePoint,i,u);return{x:f.x+(r.x-r.x/u.x),y:f.y+(r.y-r.y/u.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.push(o);var i=this.transcoordS2P(t,e);return n.forEach((function(t){var e=t.model.scale,r=t.bounds;if(e){var n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.splice(0,0,o);var i={x:t,y:e};return n.forEach((function(t){var e=t.model.scale;i=t.transcoordP2S(i.x,i.y);var r=t.bounds;if(e){var n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){var n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;var n=this.transcoordS2T(t,e,r);return ra(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){var n=this.rootModel,o=this.transcoordS2T(t,e,n);return r.transcoordT2S(o.x,o.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;var n=r.model,o=n.translate,i=void 0===o?{x:0,y:0}:o,a=n.scale,u=void 0===a?{x:1,y:1}:a,s=n.rotation,c=ea(t,e,i,void 0===s?0:s,u);return i&&(c.x-=i.x/(u?u.x:1),c.y-=i.y/(u?u.y:1)),r===this?c:this.transcoordT2S(c.x,c.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;if(r!==this)var n=this.transcoordS2T(t,e,r);else n={x:t,y:e};var o=r.model,i=o.translate,a=void 0===i?{x:0,y:0}:i,u=o.rotation,s=void 0===u?0:u,c=o.scale,f=void 0===c?{x:1,y:1}:c;return n=ra(n.x,n.y,void 0,s+r._delta.theta,f),a&&(n.x+=a.x,n.y+=a.y),n},_pre_draw:Ya.prototype.prerender,_draw:Ya.prototype.render,_post_draw:Ya.prototype.postrender}),["rotatePoint","font","lineHeight","retention"].forEach((function(t){return Ya.memoize(Ya.prototype,t,!1)})),["bounds","center","textBounds"].forEach((function(t){return Ya.memoize(Ya.prototype,t,!0)})),Ya.mixin(Ya.prototype,ro.withEvent);var Ka=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Va(e),function(t,e){if(e&&("object"==Ga(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Xa()?Reflect.construct(e,r||[],Va(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qa(t,e)}(e,t),r=e,n=[{key:"rotationX",get:function(){return this.getState("rotationX")},set:function(t){this.setState("rotationX",t)}},{key:"rotationY",get:function(){return this.getState("rotationY")},set:function(t){this.setState("rotationY",t)}},{key:"rotationZ",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",t)}},{key:"zPos",get:function(){return this.getState("zPos")},set:function(t){this.setState("zPos",t)}},{key:"depth",get:function(){return this.getState("depth")},set:function(t){this.setState("depth",t)}},{key:"postrender",value:function(t){var r,n,o;this.drawFill(t),this.drawStroke(t),(r=e,n=this,"function"==typeof(o=qa(Va(1&3?r.prototype:r),"postrender",n))?function(t){return o.apply(n,t)}:o)([t])}},{key:"render",value:function(t){var e=this.drawPath,r=this.state.round,n=void 0===r?0:r;if(!(e.length<=1)){t.beginPath();for(var o=0;o<e.length;o++){var i=e[(o-1+e.length)%e.length],a=e[(o+e.length)%e.length],u=e[(o+1)%e.length];if(i.x!==a.x||i.y!==a.y){var s,c=0!==(s=Math.sqrt((i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y)))?Math.atan2(i.x-a.x,i.y-a.y):0,f=Math.sin(c)*Math.min(n,s/2)+a.x,l=Math.cos(c)*Math.min(n,s/2)+a.y,h=n>0||0!==s?{x:f,y:l}:a;c=0!==(s=Math.sqrt((u.x-a.x)*(u.x-a.x)+(u.y-a.y)*(u.y-a.y)))?Math.atan2(u.x-a.x,u.y-a.y):0,f=Math.sin(c)*Math.min(n,s/2)+a.x,l=Math.cos(c)*Math.min(n,s/2)+a.y;var p=n>0||0!==s?{x:f,y:l}:a;0==o?t.moveTo(h.x,h.y):t.lineTo(h.x,h.y),n>0&&t.quadraticCurveTo(a.x,a.y,p.x,p.y)}}t.closePath()}}}],n&&Ha(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ya);function Ja(t,e,r){return Math.max(0,Math.min(t,Math.min(r,e)/2))}function Za(t){return Za="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},Za(t)}function $a(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function tu(t,e,r){return(e=ru(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function eu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ru(n.key),n)}}function ru(t){var e=function(t){if("object"!=Za(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Za(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Za(e)?e:e+""}function nu(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(nu=function(){return!!t})()}function ou(t){return ou=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ou(t)}function iu(t,e){return iu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},iu(t,e)}const au=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=ou(e),function(t,e){if(e&&("object"==Za(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,nu()?Reflect.construct(e,r||[],ou(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&iu(t,e)}(e,t),r=e,n=[{key:"contains",value:function(t,e){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height,u=r.lineWidth,s=(void 0===u?0:u)/2;return t<Math.max(n+i,n)+s&&t>Math.min(n+i,n)-s&&e<Math.max(o+a,o)+s&&e>Math.min(o+a,o)-s}},{key:"path",get:function(){var t=this.state,e=t.left,r=void 0===e?0:e,n=t.top,o=void 0===n?0:n,i=t.width,a=void 0===i?0:i,u=t.height,s=void 0===u?0:u;return[{x:r,y:o},{x:r+a,y:o},{x:r+a,y:o+s},{x:r,y:o+s}]},set:function(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,u=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:u}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:u}}]}(this)}},{key:"bounds",get:function(){var t=this.state,e=t.left,r=void 0===e?0:e,n=t.top,o=void 0===n?0:n,i=t.width,a=void 0===i?0:i,u=t.height;return{left:r,top:o,width:a,height:void 0===u?0:u}},set:function(t){this.set(function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?$a(Object(r),!0).forEach((function(e){tu(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):$a(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({left:0,top:0,width:0,height:0},t))}},{key:"render",value:function(t){var e=this.model.round,r=void 0===e?0:e,n=this.bounds,o=n.left,i=n.top,a=n.width,u=n.height;t.translate(o,i),t.beginPath(),(r=Ja(r,a,u))>0?t.roundRect(0,0,a,u,r):t.rect(0,0,a,u),t.translate(-o,-i)}}],n&&eu(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return Do(e.prototype,"path",!1),e};function uu(t){return uu="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},uu(t)}function su(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,cu(n.key),n)}}function cu(t){var e=function(t){if("object"!=uu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=uu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==uu(e)?e:e+""}function fu(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(fu=function(){return!!t})()}function lu(){return lu="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=hu(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},lu.apply(null,arguments)}function hu(t){return hu=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},hu(t)}function pu(t,e){return pu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},pu(t,e)}var yu={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"},du=20;function vu(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}var gu=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=hu(e),function(t,e){if(e&&("object"==uu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,fu()?Reflect.construct(e,r||[],hu(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&pu(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){var t,r,n,o=this;this.infoWindows.map((function(t){return t.component})).forEach((function(t){return o._removeInfoWindow(t)})),(t=e,r=this,"function"==typeof(n=lu(hu(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([])}},{key:"infoWindows",get:function(){return this._windows||(this._windows=[]),this._windows}},{key:"_findInfoWindowByComponent",value:function(t){return this.infoWindows.find((function(e){return e.component===t}))}},{key:"_addInfoWindow",value:function(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}},{key:"_removeInfoWindow",value:function(t){var e=this._findInfoWindowByComponent(t);if(e){var r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}}},{key:"render",value:function(t){var r=this.bounds,n=r.left,o=r.top,i=r.width,a=r.height;t.beginPath(),this.drawImage(t,e.image,n,o,i,a)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return yu}}],o=[{key:"image",get:function(){return e._image||(e._image=new Image,e._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),e._image}},{key:"toggle",value:function(t,r,n,o){if(r){var i=t.root.findById(r);i?i._findInfoWindowByComponent(t)?e.hide(t,r):e.show(t,r,n,o):console.warn("InfoWindow Not Found.",r)}else console.warn("InfoWindow not defined.")}},{key:"hide",value:function(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}},{key:"show",value:function(t,r,n,o){if(r){var i=t.root.findById(r);if(i){if(!i._findInfoWindowByComponent(t)){var a=i.model,u=a.frontSideTemplate,s=void 0===u?"":u,c=a.backSideTemplate,f=[s,void 0===c?"":c].filter((function(t){return String(t).trim()}));if(0!=(f=f.map((function(t){return Ya.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">X</button>':"",r?'<button class="flipable">⇌</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!n,2==f.length))}))).length){var l='\n.flip {\n backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity: 0.9;\n transform-origin: 50% 50% 0px;\n transition: all 2s;\n min-width: 100px;\n min-height: 50px;\n background-color: #3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY(0deg);\n}\n\n.flip:after {\n content: "";\n display: block;\n position: absolute;\n opacity: 0.9;\n width: 0;\n height: 0;\n}\n\n.flip.arrow-top:after {\n left: 45%;\n top: -17px;\n border-left: 10px solid transparent;\n border-bottom: 18px solid #323b44;\n border-right: 10px solid transparent;\n}\n\n.flip.arrow-right:after {\n left: 100%;\n top: 48%;\n border-top: 10px solid transparent;\n border-left: 18px solid #323b44;\n border-bottom: 10px solid transparent;\n}\n\n.flip.arrow-bottom:after {\n left: 45%;\n top: 100%;\n border-left: 10px solid transparent;\n border-top: 18px solid #323b44;\n border-right: 10px solid transparent;\n}\n\n.flip.arrow-left:after {\n right: 100%;\n top: 48%;\n border-top: 10px solid transparent;\n border-right: 18px solid #323b44;\n border-bottom: 10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY(180deg);\n}\n\n.flip-side-1 {\n transform: rotateY(0deg) !important;\n}\n\n.flip-side-2 {\n transform: rotateY(180deg) !important;\n}\n\n.info-window-btns {\n position: absolute;\n top: -18px;\n right: 5px;\n overflow: hidden;\n}\n\n.info-window-content {\n padding: 10px;\n color: #efefef;\n font-size: 13px;\n line-height: 1.4;\n}\n\n.info-window-btns button {\n width: 40px;\n height: 40px;\n float: right;\n border: 0;\n border-radius: 50%;\n background-color: #2a7da1;\n margin-right: 3px;\n text-align: center;\n cursor: pointer;\n font-size: 35px;\n color: #fff;\n line-height: 0;\n}\n\n.info-window-btns button:hover {\n background-color: #60bb23;\n}\n'+i.get("style"),h=t.bounds,p=h.left,y=h.top,d=o?t.rootModel.transcoordC2S(o.x,o.y):t.transcoordS2T(p,y);p=d.x,y=d.y;var v=document.createElement("span");v.style.position="absolute";var g=document.createElement("style");if(g.type="text/css",g.appendChild(document.createTextNode(l)),v.appendChild(g),f[0]){var b=document.createElement("div");b.id="side-1",b.className="flip",b.style.display="inline-block",b.innerHTML=f[0](t)}if(f[1]){var m=document.createElement("div");m.id="side-2",m.className="flip",m.style.display="inline-block",m.innerHTML=f[1](t)}Qo.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))})),Ko.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))}));var w=t.root.model_layer.overlay;if(b&&v.appendChild(b),m&&v.appendChild(m),w.appendChild(v),i._addInfoWindow(t,v,g),b){var x=b.querySelector(".info-window-btns > .flipable");x&&x.addEventListener("click",(function(t){t.preventDefault(),m.className=vu(m.className,"flip-side-1"),b.className=vu(b.className,"flip-side-2")}),!1);var k=b.querySelector(".info-window-btns > .closable");k&&k.addEventListener("click",(function(n){n.preventDefault(),e.hide(t,r)}),!1)}if(m){var S=m.querySelector(".info-window-btns > .flipable");S&&S.addEventListener("click",(function(t){t.preventDefault(),m.className=vu(m.className,"flip-side-1"),b.className=vu(b.className,"flip-side-2")}),!1);var O=m.querySelector(".info-window-btns > .closable");O&&O.addEventListener("click",(function(n){n.preventDefault(),e.hide(t,r)}),!1)}var _=b.offsetWidth,E=b.offsetHeight,A=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight,t.rootModel.target.getBoundingClientRect()),P=[];b&&P.push(b),m&&P.push(m);var j={x:p,y},T=t.transcoordS2C(j.x,j.y);if(T.x+_/2+A.left<A.right&&T.x-_/2>A.left){if(E+du<T.y)return v.style.marginLeft=j.x-_/2+"px",v.style.marginTop=j.y-E-du+"px",void P.forEach((function(t){return t.className+=" arrow-bottom"}));if(T=t.transcoordS2C(j.x,j.y+E+du),A.bottom>T.y+A.top)return v.style.marginLeft=j.x-_/2+"px",v.style.marginTop=j.y+du+"px",void P.forEach((function(t){return t.className+=" arrow-top"}))}if((T=t.transcoordS2C(j.x,j.y)).x-(_+du)>A.left)return v.style.marginLeft=j.x-_-du+"px",v.style.marginTop=j.y-E/2+"px",void P.forEach((function(t){return t.className+=" arrow-right"}));v.style.marginLeft=j.x+du+"px",v.style.marginTop=j.y-E/2+"px",P.forEach((function(t){return t.className+=" arrow-left"}))}}}else console.warn("InfoWindow Not Found.",r)}else console.warn("InfoWindow not defined.")}}],n&&su(r.prototype,n),o&&su(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(au(Ka));function bu(t){return bu="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},bu(t)}function mu(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function wu(t,e,r){return(e=function(t){var e=function(t){if("object"!=bu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=bu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==bu(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}Ya.register("info-window",gu);var xu={};const ku={list:function(){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?mu(Object(r),!0).forEach((function(e){wu(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):mu(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({},xu)},register:function(t,e){xu[t]=e},unregister:function(t){delete xu[t]},get:function(t){if(t){var e=xu[t];return e||uo("Layout Not Found - ",t),e}}};var Su={reflow:function(t,e){this.drawables(t).filter((function(t){return t.isHTMLElement()})).forEach((function(t){return t.reposition()}))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((function(t){return!t.hidden}))},isStuck:function(t){return!1},ABSOLUTE:!0};ku.register("html-absolute",Su);const Ou=Su;function _u(t){return _u="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},_u(t)}function Eu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Au(n.key),n)}}function Au(t){var e=function(t){if("object"!=_u(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=_u(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==_u(e)?e:e+""}function Pu(t,e){if(t){if("string"==typeof t)return ju(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ju(t,e):void 0}}function ju(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}var Tu=["run","goto","goto-playlist","goto-playlist","link-open","link-move","route-page","start-scenario","run-scenario","export-data","import-data"],Mu="center",Ru=new WeakMap;function Iu(t){var e=t.root,r=Ru.get(e);if(r)if(e!==t){var n=r.findIndex((function(e){return e[0]===t}));if(-1!==n){var o=r[n][1],i=o.div.parentNode;i&&i.removeChild(o.div);var a=o.scene;a.target=null,a.release&&a.release(),r.splice(n,1)}}else{for(var u in r)Iu(u[0]);Ru.delete(e)}}var Cu=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}return e=t,r=[{key:"hideAll",value:function(t){(Ru.get(t)||[]).forEach((function(t){var e=function(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(t,e)||Pu(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(t,2),r=e[0];return e[1],Iu(r)}))}},{key:"hide",value:function(t){Iu(t)}},{key:"show",value:function(e,r){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=n.data,i=n.location,a=void 0===i?Mu:i,u=n.modal,s=void 0!==u&&u,c=n.closable,f=void 0===c||c,l=n.output,h=void 0===l||l,p=e.app.refProvider;p&&p.get(r,!0).then((function(r){var n,i=document.createElement("div"),u=i.style;if(s){var c=e.rootModel.bounds,l=c.width,p=c.height;u.position="fixed",u.zIndex=1,u.left=0,u.top=0,u.width=l+"px",u.height=p+"px",u.overflow="auto",u.backgroundColor="rgba(0,0,0,0.3)"}else u.position="absolute",u.display="inline-block";i.innerHTML=!s&&f?'\n<div class="popup-content">\n</div>\n<button class="closable-1945">X</button>\n':'\n<div class="popup-content">\n</div>\n';var y=i.querySelector(".popup-content"),d=r.root.model;l=d.width,p=d.height,y.style.width=l+"px",y.style.height=p+"px";var v=document.createElement("style");v.type="text/css",v.appendChild(document.createTextNode("\nbutton.closable-1945 {\n width: 20px;\n height: 20px;\n right: 0px;\n top: 0px;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n color: black;\n position: absolute;\n background-color: transparent;\n}\n\nbutton.closable-1945:hover {\n background-color:#60bb23;\n}\n")),i.appendChild(v),Tu.forEach((function(t){r.on(t,(function(){for(var r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];e.trigger.apply(e,[t].concat(n))}))}));var g=i.querySelector(".popup-content");Qo.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),Ko.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),i.addEventListener("click",(function(r){r.target===i&&f&&t.hide(e)})),Qo.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),Ko.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),e.root.model_layer.overlay.appendChild(i),function(t,e,r){var n=t.root;if(n!==t){Iu(t);var o=Ru.get(n)||[];o=[].concat(function(t){return function(t){if(Array.isArray(t))return ju(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||Pu(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.")}()}(o),[[t,{div:e,scene:r}]]),Ru.set(n,o)}}(e,i,r),null===(n=i.querySelector(".closable-1945"))||void 0===n||n.addEventListener("click",(function(r){r.preventDefault(),t.hide(e)}),!1),i.addEventListener("close-scene",(function(r){r.preventDefault(),r.stopPropagation(),t.hide(e),h&&(e.data=r.detail)}),!1),r.target=y,r.data=o||e.data,r.fit("both");var b=function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:Mu,o=t.bounds,i=e.bounds,a=Math.max(o.width/4-i.width/2,20),u=Math.min(3*o.width/4+i.width/2,o.width-20)-i.width,s=Math.max(o.height/4-i.height/2,20),c=Math.min(3*o.height/4+i.height/2,o.height-20)-i.height;switch(n){case"auto":return{x:r.x<o.width/2?u:a,y:r.y<o.height/2?c:s};case"left-top":return{x:a,y:s};case"right-top":return{x:u,y:s};case"left-bottom":return{x:a,y:c};case"right-bottom":return{x:u,y:c};default:return{x:(o.width-i.width)/2,y:(o.height-i.height)/2}}}(e.rootModel,r.root,e.center,a);s?(y.style.left=b.x+"px",y.style.top=b.y+"px",y.style.width=l+"px",y.style.height=p+"px"):(i.style.left=b.x+"px",i.style.top=b.y+"px",i.style.width=l+"px",i.style.height=p+"px")}),(function(t){console.error("cannot fetch board: "+r,t)}))}}],null&&Eu(e.prototype,null),r&&Eu(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,r}(),Lu={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};ku.register("absolute",Lu);const Du=Lu;function Bu(t){var e=t.components.filter((function(t){return!t.hidden})),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}var Nu={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach((function(t,e){var o=e!=(r.activeIndex||0);t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=o?"hidden":"visible")}))},capturables:function(t){return Bu(t)},drawables:function(t){return Bu(t)},isStuck:function(t){return!0}};ku.register("card",Nu);const Fu=Nu;function zu(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var Uu={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce((function(t,e){return t+zu(e)}),0),o=t.bounds,i=n>0?(o.width-((r.left||0)+(r.right||0)))/n:o.width,a=o.height-((r.top||0)+(r.bottom||0)),u=0;e.forEach((function(t){var e=zu(t),n=t.get("margin")||{};t.bounds={left:i*u+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*i-((n.left||0)+(n.right||0)),height:a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),u+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};ku.register("linear-horizontal",Uu);const Yu=Uu;function Gu(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var Hu={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce((function(t,e){return t+Gu(e)}),0),o=t.bounds,i=n>0?(o.height-((r.top||0)+(r.bottom||0)))/n:o.height,a=o.width-((r.left||0)+(r.right||0)),u=0;e.forEach((function(t){var e=Gu(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:i*u+(r.top||0)+(n.top||0),width:a-((n.left||0)+(n.right||0)),height:e*i-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),u+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};ku.register("linear-vertical",Hu);const Wu=Hu;var Xu={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),o=e&&e.widths||t.getState("widths"),i=e&&e.heights||t.getState("heights"),a=o?o.filter((function(t,e){return e<r})).reduce((function(t,e){return t+e}),0):r,u=i?i.filter((function(t,e){return e<n})).reduce((function(t,e){return t+e}),0):n,s=t.textBounds,c=t.getState("paddingLeft")||0,f=t.getState("paddingTop")||0,l=s.width/a,h=s.height/u,p=0,y=0;t.components.forEach((function(t,e){for(var n=o?o[e%r]:1,a=i?i[Math.floor(e/r)]:1,u=t.colspan||1,s=0;--u>0;)s+=o?o[(e+u)%r]:1;for(var d=t.rowspan||1,v=0;--d>0;)v+=i?i[Math.floor(e/r)+d]:1;t.bounds={left:c+p,top:f+y,width:l*(n+s),height:h*(a+v)},t.setState("rotation",0),e%r==r-1?(p=0,y+=a*h):p+=n*l}))},capturables:function(t){return t.components.filter((function(t){return!t.merged}))},drawables:function(t){return t.components.filter((function(t){return!t.merged&&!t.hidden}))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),o=n&&n.columns||t.getState("columns"),i=n&&n.rows||t.getState("rows"),a=t.getRowColumn(e),u=a.row,s=a.column;switch(r.code){case"ArrowUp":if(u>0)return t.getAt((u-1)*o+s);break;case"ArrowDown":if(u<i-1)return t.getAt((u+1)*o+s);break;case"ArrowRight":if(s<o-1)return t.getAt(u*o+s+1);break;case"ArrowLeft":if(s>0)return t.getAt(u*o+s-1);break;default:return e}},joinType:!0};ku.register("table",Xu);const qu=Xu;function Vu(t){return Vu="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},Vu(t)}function Qu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ku(n.key),n)}}function Ku(t){var e=function(t){if("object"!=Vu(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Vu(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Vu(e)?e:e+""}function Ju(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ju=function(){return!!t})()}function Zu(t,e,r,n){var o=$u(ts(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function $u(){return $u="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=ts(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},$u.apply(null,arguments)}function ts(t){return ts=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ts(t)}function es(t,e){return es=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},es(t,e)}var rs=new Image;rs.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";const ns=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=ts(e),function(t,e){if(e&&("object"==Vu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ju()?Reflect.construct(e,r||[],ts(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&es(t,e)}(e,t),r=e,(n=[{key:"postrender",value:function(t){Zu(e,"postrender",this,3)([t]),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}},{key:"_draw_move_handle",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width;t.save(),t.beginPath(),t.globalAlpha=1,t.rect(r+o,n,25,25),t.fillStyle="rgba(".concat(235,", ").concat(235,", ").concat(235,", 1)"),t.fill(),t.drawImage(rs,r+o+3.75,n+3.75,17.5,17.5),t.closePath(),t.restore()}},{key:"contains",value:function(t,r){var n=Zu(e,"contains",this,3)([t,r]);if(this.app.isViewMode)return n;if(!n){var o=this.bounds,i=o.left,a=o.top,u=o.width,s=(o.height,i+u);this.showMoveHandle&&(n=t<Math.max(s+25,s)&&t>Math.min(s+25,s)&&r<Math.max(a+25,a)&&r>Math.min(a+25,a))}return this._focustd!==n&&(this._focused=n,this.invalidate()),n}}])&&Qu(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function os(t){return os="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},os(t)}function is(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,as(n.key),n)}}function as(t){var e=function(t){if("object"!=os(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=os(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==os(e)?e:e+""}function us(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(us=function(){return!!t})()}function ss(t,e,r,n){var o=cs(fs(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function cs(){return cs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=fs(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},cs.apply(null,arguments)}function fs(t){return fs=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},fs(t)}function ls(t,e){return ls=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ls(t,e)}var hs=[],ps=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e,r){return e=fs(e),function(t,e){if(e&&("object"==os(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,us()?Reflect.construct(e,r||[],fs(t).constructor):e.apply(t,r))}(this,e,[t,r]))._components=[],n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ls(t,e)}(e,t),r=e,n=[{key:"replaceRefids",value:function(t){this.components.forEach((function(e){return e.replaceRefids(t)}))}},{key:"showMoveHandle",get:function(){return!0}},{key:"showOverflow",get:function(){return!1}},{key:"dispose",value:function(){this.components.slice().forEach((function(t){return t.dispose()})),ss(e,"dispose",this,3)([])}},{key:"isContainer",value:function(){return!0}},{key:"containable",value:function(t){return t.isDescendible(this)}},{key:"hasTextProperty",get:function(){return!1}},{key:"components",get:function(){return this._components}},{key:"focusible",get:function(){return!0}},{key:"layout",get:function(){return ku.get(this.get("layout"))||Du}},{key:"reflow",value:function(){this.layout.reflow(this),this.components&&this.components.forEach((function(t){t.isContainer()&&t.reflow()}))}},{key:"hierarchy",get:function(){var t=ss(e,"hierarchy",this,1);return this.components&&(t.components=this.components.map((function(t){return t.hierarchy}))),t}},{key:"addComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}},{key:"removeComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}},{key:"insertComponentAt",value:function(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=t.parent;n&&n.removeComponent(t,r);var o=this._components.splice(0,e);this._components=o.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}},{key:"add",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?(t.forEach((function(t){-1==e._components.indexOf(t)&&e.addComponent(t,r)})),this):this.add.call(this,[t],r)}},{key:"remove",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?this._components?(t.forEach((function(t){e.removeComponent(t,r)})),this):this:this.remove.call(this,[t],r)}},{key:"getAt",value:function(t){if(this._components)return this._components[t]}},{key:"forEach",value:function(t,e){this._components&&this._components.forEach(t,e)}},{key:"traverse",value:function(t,e){t.call(e,this),this._components&&this._components.forEach((function(r){r.isContainer()?r.traverse(t,e):t.call(e,r)}))}},{key:"indexOf",value:function(t){return(this._components||hs).indexOf(t)}},{key:"size",value:function(){return(this._components||hs).length}},{key:"moveChildAt",value:function(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),o=this._components.splice(1);this._components=n.concat(o),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}},{key:"moveChildForward",value:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}},{key:"moveChildBackward",value:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}},{key:"moveChildToFront",value:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}},{key:"moveChildToBack",value:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}},{key:"symmetryX",value:function(t){ss(e,"symmetryX",this,3)([t]),this.components.map((function(t){t.symmetryX(0)}))}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return ai(t,this,r[0]||this);if("function"==typeof t){for(var o=[],i=this.components.length-1;i>=0;i--){var a,u=(a=this.components[i]).findAll.apply(a,[t].concat(r));u&&(o=o.concat(u))}return t.apply(void 0,[this].concat(r))&&o.push(this),o}}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return ai(t,this,r[0])[0];if("function"==typeof t){for(var o=this.components.length-1;o>=0;o--){var i,a=(i=this.components[o]).findFirst.apply(i,[t].concat(r));if(null!=a)return a}return t.apply(void 0,[this].concat(r))?this:null}}},{key:"findById",value:function(t){return this.root.findById(t)}},{key:"findByRefid",value:function(t){return this.root.findByRefid(t)}},{key:"contains",value:function(t,r){var n=ss(e,"contains",this,3)([t,r]);if(!n){var o=this.state,i=o.left,a=o.top,u=o.width,s=o.height;n=t<Math.max(i+u,i)&&t>Math.min(i+u,i)&&r<Math.max(a+s,a)&&r>Math.min(a+s,a)}return n}},{key:"capture",value:function(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var o=this.bounds;n.x-=o.left,n.y-=o.top;for(var i=this.layout.capturables(this),a=i.length-1;a>=0;a--){var u=i[a].capture(n.x,n.y,r);if(u)return u}return this.capturable&&!(null!=r&&r(this))&&this}},{key:"capturePath",value:function(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(var r=0;r<e.length;r++)if(!this.containable(e[r]))return!1}for(var n=[],o=this.bounds,i=o.left,a=o.top,u=o.width,s=o.height,c=0;c<t.length;c++){var f=this.transcoordP2S(t[c].x,t[c].y);if(f.x<i||f.x>i+u||f.y<a||f.y>a+s)return!1;f.x-=i,f.y-=a,n.push(f)}for(var l=this.layout.capturables(this),h=l.length-1;h>=0;h--){var p=l[h];if(p.isContainer()){var y=p.capturePath(n,e);if(y)return y}}return this.focusible&&this}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=void 0===r?0:r,o=e.top,i=void 0===o?0:o,a=e.width,u=e.height;t.beginPath(),t.rect(n,i,a,u),t.closePath(),this.drawFill(t),this.drawStroke(t)}},{key:"postrender",value:function(t){var r=this.layout.drawables(this);if(r.length>0){var n=this.bounds,o=n.left,i=void 0===o?0:o,a=n.top,u=void 0===a?0:a,s=n.width,c=n.height;t.save(),this.showOverflow||(t.beginPath(),t.rect(i,u,s,c),t.clip(),t.closePath());var f=this.state;u=f.top,i=f.left,t.translate(i,u),r.forEach((function(e){e.draw(t)})),t.translate(-i,-u),t.restore()}ss(e,"postrender",this,3)([t])}},{key:"trim",value:function(){this.components.forEach((function(t){t.trim()})),ss(e,"trim",this,3)([])}}],n&&is(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ns(au(Ya)));function ys(t){return ys="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},ys(t)}function ds(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,vs(n.key),n)}}function vs(t){var e=function(t){if("object"!=ys(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ys(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ys(e)?e:e+""}function gs(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(gs=function(){return!!t})()}function bs(t,e,r,n){var o=ms(ws(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function ms(){return ms="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=ws(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ms.apply(null,arguments)}function ws(t){return ws=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ws(t)}function xs(t,e){return xs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},xs(t,e)}["layout"].forEach((function(t){return Ya.memoize(ps.prototype,t,!1)}));var ks=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),n=function(t,e,r){return e=ws(e),function(t,e){if(e&&("object"==ys(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,gs()?Reflect.construct(e,r||[],ws(t).constructor):e.apply(t,r))}(this,e,[t,r]),t.translate=t.translate||{x:0,y:0},n._draw_reserved=!1,n.__draw__=function(){n._draw_reserved=!1,n.trigger("redraw"),n.reflow(),n.draw()},n.throttle_render=function(){n._draw_reserved||requestAnimationFrame(n.__draw__),n._draw_reserved=!0},n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&xs(t,e)}(e,t),r=e,(n=[{key:"fitSize",value:function(t,e,r,n){if(this.target){if(e){var o=getComputedStyle(this.target);r=r||(o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth),n=n||(o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*Vo),t.setAttribute("height",n*Vo)),t.style.width=r+"px",t.style.height=n+"px"}}},{key:"resize",value:function(){this.fitSize(this.element,!0)}},{key:"isLayer",value:function(){return!0}},{key:"showOverflow",get:function(){return this.app.isEditMode}},{key:"anchors",get:function(){}},{key:"createElement",value:function(){var t=Ya.createCanvas(1,1);return t.style.position="absolute",t}},{key:"target",get:function(){return this._target},set:function(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}},{key:"canvas",get:function(){return this.element}},{key:"dispose",value:function(){bs(e,"dispose",this,3)([]),this.target=null,this.element=null}},{key:"selected",get:function(){return this.root.selected},set:function(t){this.root.selected=t}},{key:"hasSameParentForAllSelected",get:function(){return this.root.hasSameParentForAllSelected}},{key:"focused",get:function(){return this.root.focused},set:function(t){this.root.focused=t}},{key:"getContext",value:function(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}},{key:"draw",value:function(t){this.canvas&&(t=t||this.getContext())&&bs(e,"draw",this,3)([t])}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.clearRect(0,0,t.canvas.width,t.canvas.height),r&&t.translate(r.x*Vo,r.y*Vo),t.scale(o.x*Vo,o.y*Vo),i&&t.rotate(i)}},{key:"rotatePoint",get:function(){return{x:0,y:0}}},{key:"contains",value:function(t,e){return!1}},{key:"invalidate",value:function(){this.throttle_render()}},{key:"move",value:function(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}},{key:"centerTo",value:function(t,e){var r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),n=t.center,o=n.x,i=n.y,a=t.transcoordP2S(o,i),u=a.x,s=a.y,c=t.transcoordS2T(u,s),f=c.x,l=c.y,h=t.rootModel.get("translate"),p=h.x,y=h.y,d=t.rootModel.get("scale"),v=d.x,g=d.y;e?hn({step:function(e){t.rootModel.set({translate:{x:p+(r.x-f)*v*e,y:y+(r.y-l)*g*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:p+(r.x-f)*v,y:y+(r.y-l)*g}})}}])&&ds(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ps);function Ss(t){return Ss="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},Ss(t)}function Os(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function _s(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Os(Object(r),!0).forEach((function(e){Es(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Os(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Es(t,e,r){return(e=Ps(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function As(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ps(n.key),n)}}function Ps(t){var e=function(t){if("object"!=Ss(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ss(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ss(e)?e:e+""}function js(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(js=function(){return!!t})()}function Ts(){return Ts="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Ms(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Ts.apply(null,arguments)}function Ms(t){return Ms=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ms(t)}function Rs(t,e){return Rs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Rs(t,e)}var Is={x:1,y:1},Cs={x:0,y:0},Ls=function(t){function e(t,r){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Ms(e),function(t,e){if(e&&("object"==Ss(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,js()?Reflect.construct(e,r||[],Ms(t).constructor):e.apply(t,r))}(this,e,[t,r])}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Rs(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Ts(Ms(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([]),delete this._canvas,delete this._overlay}},{key:"contains",value:function(t,e){return!0}},{key:"isRootModel",value:function(){return!0}},{key:"stuck",get:function(){return!0}},{key:"layout",get:function(){return Ou}},{key:"overlay",get:function(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}},{key:"createElement",value:function(){var t=document.createElement("div");return t.style.position="absolute",t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=Ya.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}},{key:"resize",value:function(){if(this.target){var t=this.model,e=t.width,r=t.height,n=t.fitMode;this.root.fitMode?n=this.root.fitMode:n||(n="ratio");try{var o=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth,a=o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight;switch(n){case"both":case"ratio":break;case"width":a=r*i/e;break;case"height":i=e*a/r;break;default:i=Math.max(e,i),a=Math.max(r,a)}switch(this.fitSize(this.canvas,!0,i,a),n){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>e?"hidden":"auto",this.element.style.overflowY=a>r?"hidden":"auto"}this.fitSize(this.element,!0)}}},{key:"canvas",get:function(){return this._canvas}},{key:"MPP",get:function(){var t=this.model,e=t.scale,r=void 0===e?{x:1,y:1}:e;switch(t.unit){case"mm":case"cm":return 1/this.app.PPM/r.x;case"in":return 1/this.app.PPI/r.x;default:return 1/r.x}}},{key:"capturePath",value:function(t,e){for(var r=this.layout.capturables(this),n=r.length-1;n>=0;n--){var o=r[n];if(o.isContainer()){var i=o.capturePath(t,e);if(i)return i}}return!1}},{key:"eventMap",get:function(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}},{key:"closeScene",value:function(t){var e=this;requestAnimationFrame((function(){return e.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))}))}},{key:"_repositionOverlay",value:function(){var t=this._overlay;if(t){var e=this.model,r=e.translate,n=void 0===r?Cs:r,o=e.scale,i=void 0===o?Is:o,a=e.rotation,u=void 0===a?0:a,s=this.bounds,c=s.left,f=s.top;s.width,s.height,t.style.left=c+"px",t.style.top=f+"px",t.style.transform="rotate(".concat(u,"rad) scale(").concat(i.x,", ").concat(i.y,") perspective(1px)"),t.style.marginLeft="".concat(n.x,"px"),t.style.marginTop="".concat(n.y,"px")}}},{key:"onchange",value:function(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}},{key:"_onchanged_all",value:function(t,e,r){this.invalidate()}},{key:"_onmouseenter_all",value:function(t,r){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&r){var n=r.origin;if(!(n instanceof e)&&n.model.event&&n.model.event.hover&&!n.hidden){var o=n.model.event.hover;o&&this._doEventAction(o,n,!0,t)}}}},{key:"_onmouseleave_all",value:function(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}},{key:"_onclick",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&this._doEventAction(o,n,!0,t)}}},{key:"_onmousedownup",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&o.pressed&&this._doMouseDownUpEventAction(o,n,"mousedown"==t.type||"touchstart"==t.type,t)}}},{key:"_doMouseDownUpEventAction",value:function(t,e,r,n){var o=t.pressed;void 0!==o&&o&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var r=e||{},n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i;t.delta("tx",o),t.delta("ty",a),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}},{key:"_doEventAction",value:function(t,e,r,n){var o,i=t.action,a=t.target,u=t.value,s=t.emphasize,c=void 0!==s&&s,f=t.restore,l=void 0!==f&&f,h=(t.pressed,t.options);if(a&&(a=e.access(a)),u&&(u=e.access(u)),c&&(r?function(t){t.hasOwnProperty("_backupStrokeStyle")||(t._backupStrokeStyle=t.model.strokeStyle,t.set("strokeStyle","#f26522"),t.hasOwnProperty("_backupLineWidth")||(t._backupLineWidth=t.model.lineWidth,t.set("lineWidth",t.model.lineWidth+5)))}(e):l&&function(t){t.hasOwnProperty("_backupStrokeStyle")&&(t.set("strokeStyle",t._backupStrokeStyle),delete t._backupStrokeStyle,t.hasOwnProperty("_backupLineWidth")&&(t.set("lineWidth",t._backupLineWidth),delete t._backupLineWidth))}(e)),i)switch(i){case"data-toggle":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){t.data=!t.data}));break;case"data-tristate":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){var e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-spreading":if(!a)return;if(r){var p=e.access(u);this.root.findAll(a,e).forEach((function(t){t.executeMappings(!0)}))}break;case"data-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.data=p})));break;case"partial-data-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.data=_s(_s({},t.data),p)})));break;case"value-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.value=p})));break;case"partial-value-set":if(!a)return;r&&(p=e.access(u),this.root.findAll(a,e).forEach((function(t){t.value=_s(_s({},t.value),p)})));break;case"infoWindow":case"info-window":if(!a)return;"click"==n.type||r?gu.show(e,a,l,{x:n.offsetX,y:n.offsetY}):l&&gu.hide(e,a);break;case"toggle-info-window":if(!a)return;gu.toggle(e,a,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!a)return;var y=h&&"input"in h?h.input:"(self)",d=!h||!("output"in h)||h.output;Cu.show(e,a,{data:y&&(null===(o=this.root.findFirst(y,e))||void 0===o?void 0:o.data),output:d,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":case"goto-playlist":this.trigger(i,a,h,e);break;case"mouse-cursor":r?this.target.style.cursor=a||"auto":l&&(this.target.style.cursor="auto");break;default:this.trigger(i,a,u,e)}}}],n&&As(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function Ds(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)}))}function Bs(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)}))}function Ns(t){return Ns="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},Ns(t)}function Fs(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function zs(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Us(n.key),n)}}function Us(t){var e=function(t){if("object"!=Ns(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ns(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ns(e)?e:e+""}function Ys(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ys=function(){return!!t})()}function Gs(t,e,r,n){var o=Hs(Ws(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Hs(){return Hs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Ws(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Hs.apply(null,arguments)}function Ws(t){return Ws=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ws(t)}function Xs(t,e){return Xs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Xs(t,e)}Ls.Popup=Cu,Ya.register("model-layer",Ls);const qs=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Ws(e),function(t,e){if(e&&("object"==Ns(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ys()?Reflect.construct(e,r||[],Ws(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Xs(t,e)}(e,t),r=e,(n=[{key:"isConnectable",value:function(){return!0}},{key:"postrender",value:function(t){Gs(e,"postrender",this,3)([t]),this._draw_anchors(t)}},{key:"_draw_anchors",value:function(t){var e=this,r=this.anchors||[];t.save(),r.forEach((function(r){var n=r.position,o=(n.x,n.y,r.draw);if(o){t.beginPath();try{o.call(r,t,e)}catch(t){console.error(t)}t.closePath()}})),t.restore()}},{key:"contains",value:function(t,r){if(f=Gs(e,"contains",this,3)([t,r]))return f;var n,o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return Fs(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Fs(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}(this.anchors||[]);try{for(o.s();!(n=o.n()).done;){var i=n.value.bounds;if(i){var a=i.left,u=i.top,s=i.width,c=i.height,f=t<Math.max(a+s,a)&&t>Math.min(a+s,a)&&r<Math.max(u+c,u)&&r>Math.min(u+c,u);if(f)return f}}}catch(t){o.e(t)}finally{o.f()}return!1}},{key:"findInOutLines",value:function(t){return function(t,e){var r=t.state.refid;return t.root.findAll((function(t){return!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))}))}(this,t)}},{key:"findOutletLines",value:function(t){return Ds(this,t)}},{key:"findOutletEnds",value:function(t){return function(t,e){return Ds(t,e).map((function(t){var e;return null===(e=t.toEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}},{key:"findInletLines",value:function(t){return Bs(this,t)}},{key:"findInletEnds",value:function(t){return function(t,e){return Bs(t,e).map((function(t){var e;return null===(e=t.fromEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}}])&&zs(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function Vs(t){return Vs="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},Vs(t)}function Qs(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ks(n.key),n)}}function Ks(t){var e=function(t){if("object"!=Vs(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Vs(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Vs(e)?e:e+""}function Js(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Js=function(){return!!t})()}function Zs(t){return Zs=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Zs(t)}function $s(t,e){return $s=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},$s(t,e)}var tc={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"},ec={ondragmove:function(t,e,r){var n=r.model,o=n.left,i=(n.top,n.width),a=n.height,u=(r.transcoordP2S(t.x,t.y).x-o)/(i/2)*100;u=Ja(u,i,a),r.set({round:u})}},rc=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Zs(e),function(t,e){if(e&&("object"==Vs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Js()?Reflect.construct(e,r||[],Zs(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&$s(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}},{key:"controls",get:function(){var t=this.state,e=t.left,r=t.top,n=t.width,o=t.round,i=t.height;return[{x:e+n/2*((o=null==o?0:Ja(o,n,i))/100),y:r,handler:ec}]}},{key:"nature",get:function(){return tc}}])&&Qs(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(qs(au(Ka)));function nc(t){return nc="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},nc(t)}function oc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ic(n.key),n)}}function ic(t){var e=function(t){if("object"!=nc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=nc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==nc(e)?e:e+""}function ac(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ac=function(){return!!t})()}function uc(t){return uc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},uc(t)}function sc(t,e){return sc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},sc(t,e)}Ya.register("rect",rc);var cc=[1,2,10,20,50,50,50,50,50,50],fc=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=uc(e),function(t,e){if(e&&("object"==nc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ac()?Reflect.construct(e,r||[],uc(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&sc(t,e)}(e,t),r=e,(n=[{key:"render",value:function(t){var e=this.state,r=e.lineWidth,n=void 0===r?1:r,o=e.fillStyle,i=void 0===o?"lightgray":o,a=e.font,u=void 0===a?"15px Arial":a,s=e.left,c=e.top,f=(e.rotation,e.origin),l=(e.margin,e.width),h=e.height,p=e.side,y=void 0===p?"bottom":p,d=e.strokeStyle,v=void 0===d?"#000000":d,g=e.scale,b=void 0===g?1:g;t.translate(s,c),t.beginPath();var m=Math.round(n/2);t.rect(-m,-m,l+2*m,h+2*m),t.clip(),t.beginPath(),t.rect(0,0,l,h),i&&(t.fillStyle=i,t.fill()),t.lineWidth=n,t.strokeStyle=v,t.stroke(),t.beginPath(),t.font=u;var w="bottom"!==y,x=w?0:h,k=4*h/5,S=2*h/3,O=1*h/2,_=3*h/5;w&&(k=h-k,S=h-S,O=h-O,_=h-1.5*h/5);var E=b*this.app.PPM/this.root.unitScale,A=Math.ceil(f/E),P=this.app.PPM/E,j=P<=1.1?1:cc[Math.round(P)]||100;1!=j&&(A+=(j-A%j)%j);var T=Math.ceil(A*E),M=f+l;for(t.fillStyle=v;T<M;){if(A%10==0){t.moveTo(T-f,O),t.lineTo(T-f,x);var R=(A/10).toString(),I=t.measureText(R);t.fillText(R,T-f-I.width-6,_)}else A%5==0?(t.moveTo(T-f,S),t.lineTo(T-f,x)):(t.moveTo(T-f,k),t.lineTo(T-f,x));A+=j,T=Math.ceil(A*E)}}}])&&oc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(au(Ka));function lc(t){return lc="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},lc(t)}function hc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,pc(n.key),n)}}function pc(t){var e=function(t){if("object"!=lc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=lc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==lc(e)?e:e+""}function yc(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(yc=function(){return!!t})()}function dc(t,e,r,n){var o=vc(gc(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function vc(){return vc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=gc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},vc.apply(null,arguments)}function gc(t){return gc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},gc(t)}function bc(t,e){return bc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},bc(t,e)}Ya.register("ruler",fc);var mc=20,wc=20,xc=90*Math.PI/180,kc="9px Verdana",Sc="#f4f4f4",Oc="#999";function _c(t,e,r){return{left:-t.x,top:-t.y,width:mc,height:20}}function Ec(t,e,r,n){return{left:mc-t.x,top:0-t.y,origin:20-t.x,width:e-mc,height:20}}function Ac(t,e,r,n){var o={x:0-t.x+10,y:-t.y+wc+(r-wc)/2},i=Ya.transcoordRR(0-t.x,-t.y+wc,o,xc);return{left:i.x-(r-wc),top:i.y,origin:20-t.y,width:r-wc,height:20}}function Pc(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/Vo,height:t.canvas.height/Vo}}var jc=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e,r){return e=gc(e),function(t,e){if(e&&("object"==lc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,yc()?Reflect.construct(e,r||[],gc(t).constructor):e.apply(t,r))}(this,e,[t,r])).appScale={x:1,y:1},"disabled"!==t.ruler&&(n.hruler=new fc({left:mc,top:0,origin:20,margin:0,height:20,unit:"m",rotation:0,font:kc,fillStyle:Sc,strokeStyle:Oc,capturable:!1}),n.vruler=new fc({left:0,top:0,origin:20,margin:0,height:20,unit:"m",rotation:xc,font:kc,side:"top",fillStyle:Sc,strokeStyle:Oc,capturable:!1}),n.origin_rect=new rc({left:-20,top:-20,width:20,height:20,fillStyle:Sc,strokeStyle:Oc,lineWidth:1}),n.addComponent(n.hruler),n.addComponent(n.vruler),n.addComponent(n.origin_rect)),n.invalidate(),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&bc(t,e)}(e,t),r=e,n=[{key:"capturable",get:function(){return!1}},{key:"ready",value:function(){if(dc(e,"ready",this,3)([]),this.hruler){var t=this.rootModel,r=Object.assign({},t.get("translate"));r.x<mc&&(r.x+=mc),r.y<wc&&(r.y+=wc);var n=t.get("scale")||{x:1,y:1};this.appScale=n,this.hruler.set("scale",n.x),this.vruler.set("scale",n.y),t.set("translate",r),this.set("translate",r),this.screen_coord=Pc(this);var o=this.screen_coord,i=o.width,a=o.height;this.hruler.set(Ec(r,i,0,this.hruler)),this.vruler.set(Ac(r,0,a,this.vruler)),this.origin_rect.set(_c(r))}else this.screen_coord=Pc(this)}},{key:"resize",value:function(){dc(e,"resize",this,3)([]),this.screen_coord=Pc(this);var t=this.screen_coord,r=t.width,n=t.height;this.hruler&&(this.hruler.set(Ec(this.model.translate,r,0,this.hruler)),this.vruler.set(Ac(this.model.translate,0,n,this.vruler)),this.origin_rect.set(_c(this.model.translate)))}},{key:"render",value:function(t){if(this.guide){t.save();var e=this.guide,r=e.x,n=e.y,o=this.screen_coord,i=o.top,a=o.left,u=o.width,s=o.height;t.beginPath(),t.moveTo(r,i),t.lineTo(r,i+s),t.moveTo(a,n),t.lineTo(a+u,n),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var c=this.transcoordS2C(r,n,this.rootModel);t.textBaseline=c.y>200?"bottom":"top",t.textAlign=c.x>200?"right":"left";var f=c.y>200?-5:5,l=c.x>200?-5:5,h=Math.round(r/this.appScale.x),p=Math.round(n/this.appScale.y);t.fillText(" ".concat(h,", ").concat(p," "),r+l,n+f),t.stroke(),t.restore()}}},{key:"guide",get:function(){return this._guide},set:function(t){this._guide=t,this.invalidate()}},{key:"contains",value:function(t,e){return!0}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}},{key:"onmousedown_origin",value:function(t,e){this.rootModel.set("translate",{x:20,y:20})}},{key:"onchange_root_model",value:function(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=Pc(this),this.hruler){var n=this.model.translate,o=this.screen_coord,i=o.width,a=o.height;this.hruler.set(Ec(n,i,0,this.hruler)),this.vruler.set(Ac(n,0,a,this.vruler)),this.origin_rect.set(_c(n))}this._guide=null}this.invalidate()}},{key:"onmouseout_child",value:function(t){this._guide=null,this.invalidate()}},{key:"onmousemove_child",value:function(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}}],n&&hc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function Tc(t){return Tc="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},Tc(t)}function Mc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Rc(n.key),n)}}function Rc(t){var e=function(t){if("object"!=Tc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Tc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Tc(e)?e:e+""}function Ic(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ic=function(){return!!t})()}function Cc(){return Cc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Lc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Cc.apply(null,arguments)}function Lc(t){return Lc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Lc(t)}function Dc(t,e){return Dc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Dc(t,e)}Ya.register("guide-layer",jc);var Bc=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Lc(e),function(t,e){if(e&&("object"==Tc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ic()?Reflect.construct(e,r||[],Lc(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Dc(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Cc(Lc(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel.get("translate");this.set("translate",o)}},{key:"render",value:function(t){}},{key:"contains",value:function(t,e){return!(this.app.mode!=Yo)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onkeydown",value:function(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=Yo)}},{key:"onkeyup",value:function(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}},{key:"ondragstart",value:function(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}},{key:"ondragmove",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.rootModel.move({x:r-this.last_position.x,y:n-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}}],n&&Mc(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function Nc(t){return Nc="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},Nc(t)}function Fc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,zc(n.key),n)}}function zc(t){var e=function(t){if("object"!=Nc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Nc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Nc(e)?e:e+""}Ya.register("shift-layer",Bc);var Uc=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.params=Object.assign({},e)},(e=[{key:"excute",value:function(){}}])&&Fc(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Yc(t){return Yc="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},Yc(t)}function Gc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Hc(n.key),n)}}function Hc(t){var e=function(t){if("object"!=Yc(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Yc(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Yc(e)?e:e+""}function Wc(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Wc=function(){return!!t})()}function Xc(t){return Xc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Xc(t)}function qc(t,e){return qc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},qc(t,e)}var Vc=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Xc(e),function(t,e){if(e&&("object"==Yc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Wc()?Reflect.construct(e,r||[],Xc(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&qc(t,e)}(e,t),r=e,o=[{key:"before",value:function(t){return t.map((function(t){return{component:t}}))}},{key:"after",value:function(t,e){e.execute(null,!1)}},{key:"around",value:function(t,e,r){e.call(r),t.execute(null,!1)}}],(n=[{key:"execute",value:function(){this.params.changes.forEach((function(t){return t.component.set(t.after)}))}}])&&Gc(r.prototype,n),o&&Gc(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(Uc),Qc="left",Kc="right",Jc="center",Zc="bottom",$c="middle",tf=[Qc,Kc,Jc,"top",$c,Zc];function ef(t){if(this.hasSameParentForAllSelected&&-1!=tf.indexOf(t)){var e=this.selected.filter((function(t){return!t.stuck}));if(!(e.length<=1)){var r=this.app.commander;Vc.around(r,(function(){!function(t,e){for(var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,o=r.top+r.height,i=0;i<e.length;i++){var a=e[i].bounds;r.left=a.left>r.left?r.left:a.left,r.top=a.top>r.top?r.top:a.top,n=a.left+a.width>n?a.left+a.width:n,o=a.top+a.height>o?a.top+a.height:o}switch(r.width=n-r.left,r.height=o-r.top,t){case Qc:for(var u=0;u<e.length;u++){var s=e[u].bounds;e[u].bounds={left:r.left,top:s.top,width:s.width,height:s.height}}break;case Jc:for(var c=0;c<e.length;c++){var f=e[c].bounds;e[c].bounds={left:r.left+r.width/2-f.width/2,top:f.top,width:f.width,height:f.height}}break;case Kc:for(var l=0;l<e.length;l++){var h=e[l].bounds;e[l].bounds={left:n-h.width,top:h.top,width:h.width,height:h.height}}break;case"top":for(var p=0;p<e.length;p++){var y=e[p].bounds;e[p].bounds={left:y.left,top:r.top,width:y.width,height:y.height}}break;case $c:for(var d=0;d<e.length;d++){var v=e[d].bounds;e[d].bounds={left:v.left,top:r.top+r.height/2-v.height/2,width:v.width,height:v.height}}break;case Zc:for(var g=0;g<e.length;g++){var b=e[g].bounds;e[g].bounds={left:b.left,top:o-b.height,width:b.width,height:b.height}}}}(t,e)}))}}}var rf="VERTICAL",nf=[rf,"HORIZONTAL"];function of(t){if(this.hasSameParentForAllSelected&&-1!=nf.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;Vc.around(r,(function(){!function(t,e){var r=e.filter((function(t){return!t.stuck})).slice(0);r.sort((function(e,r){var n=e.center,o=r.center;return t===rf?n.y-o.y:n.x-o.x}));for(var n=r.reduce((function(e,r){return e+(t===rf?r.bounds.height:r.bounds.width)}),0),o=r[0].bounds,i=r[r.length-1].bounds,a=((t===rf?i.top+i.height-o.top:i.left+i.width-o.left)-n)/(r.length-1),u=t===rf?o.top+o.height:o.left+o.width,s=1;s<r.length-1;s++){var c=r[s],f=c.bounds;u+=a,t===rf?(f.top=u,u+=f.height):(f.left=u,u+=f.width),c.bounds=f}}(t,e)}))}}}function af(t){return af="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},af(t)}function uf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,sf(n.key),n)}}function sf(t){var e=function(t){if("object"!=af(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=af(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==af(e)?e:e+""}function cf(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(cf=function(){return!!t})()}function ff(t){return ff=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ff(t)}function lf(t,e){return lf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},lf(t,e)}function hf(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}var pf=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=ff(e),function(t,e){if(e&&("object"==af(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,cf()?Reflect.construct(e,r||[],ff(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&lf(t,e)}(e,t),r=e,(n=[{key:"execute",value:function(){this.params.changes.forEach((function(t){var e=t.component,r=t.to_container,n=t.to_index,o=t.to_left,i=t.to_top,a=(t.hint,function(t){if(t.isRootModel())return t.bounds;var e=t.bounds,r=t.rotatePoint,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e)),u=hf(e);if(e.removeSelf(!r),e.bounds=a,e.set("rotation",u),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-hf(e))%(2*Math.PI)}(e,r));var s=function(t,e){if(e.isRootModel())return t.bounds;var r=t.bounds,n=t.rotatePoint,o=e.transcoordT2S(n.x,n.y),i=e.bounds;return{left:o.x-(n.x-r.left)-i.left,top:o.y-(n.y-r.top)-i.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==o?o:s.left,t.to_top=void 0!==i?i:s.top,e.bounds={left:t.to_left,top:t.to_top,width:s.width,height:s.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}])&&uf(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Uc);function yf(t,e,r){this.app.commander.execute(new pf({changes:[{component:t,to_container:e,to_index:r}]}))}function df(t){var e=this.selected.filter((function(t){return!t.stuck}));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){var o=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:o,to_index:o+1}]}else if("backward"==t){var i=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:i,to_index:i-1}]}else r=e.filter((function(t){return t.parent===n})).sort((function(e,r){var o=n.indexOf(e)<n.indexOf(r);return"front"==t?o:!o})).map((function(e,r){return n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r}}));var a=new pf({changes:r});this.app.commander.execute(a)}}function vf(t,e,r,n){var o=Ya.register(t.type);if(!o)return so("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var i=new o(t,e);return t.components&&i.isContainer()&&(t.components.forEach((function(t){var o=vf(t,e,r,n);o&&i.addComponent(o)})),delete t.components),i.created(),i}function gf(t,e){var r=Lo(t.hierarchy);return delete r.id,vf(r,t.app,e)}function bf(t,e,r){var n=this;t instanceof Array||(t=[t]),r||(r=this.model_layer);var o=[],i=new Map;this.selected=t.map((function(t){try{return vf(t,r.app,(function(t){var e=n.getNewRefid();return void 0!==t&&i.set(t,e),e}),(function(t){return(n.indexMap[t]||[])[0]}))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((function(t){var n=e.left,a=e.top,u=e.width,s=e.height,c=e.x,f=e.y,l=e.cx,h=e.cy;return t.replaceRefids(i),isNaN(n)||isNaN(a)||isNaN(u)||isNaN(s)||(t.bounds={left:n,top:a,width:u,height:s}),isNaN(c)||isNaN(f)||t.move({x:c,y:f},!1),isNaN(l)||isNaN(h)||(t.center={x:l,y:h}),o.push({component:t,to_container:r}),t})),this.app.commander.execute(new pf({changes:o}))}function mf(){var t=this,e=[],r=new Map;if(this.selected=this.selected.filter((function(t){return!t.isRootModel()})).map((function(n){var o=gf(n,(function(e){var n=t.getNewRefid();return void 0!==e&&r.set(e,n),n}));return o.move({x:20,y:20},!1),e.push({component:o,to_container:n.parent}),o})).map((function(t){return t.replaceRefids(r),t})),0!=e.length){var n=new pf({changes:e});this.app.commander.execute(n)}}function wf(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((function(t){return!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup())})).map((function(t){return e||(e=t.parent),{component:t,to_container:null}})),n=function(){var t=[];if(e.components.filter((function(t){return!r.find((function(e){return e.component===t}))})).forEach((function(e){return t.push(e)})),t.length>1)return 1;var n=e.parent;t.forEach((function(t){return r.push({component:t,to_container:n})})),r.push({component:e,to_container:null}),e=n};e&&e.isGroup()&&!n(););r.length>0&&this.app.commander.execute(new pf({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function xf(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.on(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.on(t,e,r);break;default:this.on(t,e,r)}}function kf(t,e,r){var n;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function Sf(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.off(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.off(t,e,r);break;default:this.off(t,e,r)}}function Of(t){var e=this.target_element,r=t||this.fitMode,n=this;function o(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.removeEventListener(t,o)}))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.addEventListener(t,o)})),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var _f=0;function Ef(){var t=this.selected.filter((function(t){return!t.isRootModel()})).map((function(t){return t.hierarchy}));if(0!=t.length)return _f=0,JSON.stringify(t,null,2)}function Af(){_f=0;var t=Ef.call(this);return wf.call(this),t}function Pf(t){if(t)try{_f++,bf.call(this,JSON.parse(t),{x:15*_f,y:15*_f})}catch(e){uo(e,t)}}var jf=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:e,mimeType:function(t){var r,n;return(r="application/font-woff",n="image/jpeg",{woff:r,woff2:r,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:n,jpeg:n,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[e(t).toLowerCase()]||""},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,o=new Uint8Array(n),i=0;i<n;i++)o[i]=r.charCodeAt(i);e(new Blob([o],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var o=r.createElement("a");return r.body.appendChild(o),n.href=e,o.href=t,o.href},getAndEncode:function(t){return Ff.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime()),new Promise((function(e){var r,n=new XMLHttpRequest;if(n.onreadystatechange=function(){if(4===n.readyState)if(200===n.status){var o=new FileReader;o.onloadend=function(){var t=o.result.split(/,/)[1];e(t)},o.readAsDataURL(n.response)}else r?e(r):i("cannot fetch resource: "+t+", status: "+n.status)},n.ontimeout=function(){r?e(r):i("timeout of 30000ms occured while fetching resource: "+t)},n.responseType="blob",n.timeout=3e4,n.open("GET",t,!0),n.send(),Ff.impl.options.imagePlaceholder){var o=Ff.impl.options.imagePlaceholder.split(/,/);o&&o[1]&&(r=o[1])}function i(t){console.error(t),e("")}}))},uid:(t=0,function(){return"u"+("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4)+t++}),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var e=r(t,"border-left-width"),n=r(t,"border-right-width");return t.scrollWidth+e+n},height:function(t){var e=r(t,"border-top-width"),n=r(t,"border-bottom-width");return t.scrollHeight+e+n}};var t;function e(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function r(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),Tf=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,o,i){return e(t)?Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,o,i)}))})),r})):Promise.resolve(t)},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!jf.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?jf.resolveUrl(t,r):t})).then(n||jf.getAndEncode).then((function(t){return jf.dataAsUrl(t,jf.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+jf.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),Mf=function(){return{resolveAll:function(){return t(document).then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(jf.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{jf.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return Tf.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return Tf.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),Rf=function(){return{inlineAll:function e(r){return r instanceof Element?function(t){var e=t.style.getPropertyValue("background");return e?Tf.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(jf.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r)},impl:{newImage:t}};function t(t){return{inline:function(e){return jf.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||jf.getAndEncode).then((function(e){return jf.dataAsUrl(e,jf.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),If=void 0,Cf=!1;function Lf(t,e){return function(t){void 0===t.imagePlaceholder?Ff.impl.options.imagePlaceholder=If:Ff.impl.options.imagePlaceholder=t.imagePlaceholder,void 0===t.cacheBust?Ff.impl.options.cacheBust=Cf:Ff.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return Bf(t,e.filter,!0)})).then(Nf).then((function(t){var r=e,n=r.bgcolor,o=r.width,i=r.height,a=r.style,u=r.sx,s=void 0===u?1:u,c=r.sy,f=void 0===c?1:c,l=t.style;return n&&(l.backgroundColor=n),o&&(l.width=o+"px"),i&&(l.height=i+"px"),l["margin-left"]="0px",l["margin-top"]="0px",l.transform="rotate(0rad) translate(0px, 0px) scale(".concat(s,", ").concat(f,") perspective(1px)"),a&&Object.keys(a).forEach((function(t){l[t]=a[t]})),t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(jf.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||jf.width(t),e.height||jf.height(t))}))}function Df(t,e){return Lf(t,e).then(jf.makeImage).then(jf.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(e.width,e.height,r.width=e.width||jf.width(t),r.height=e.height||jf.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function Bf(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return jf.makeImage(t.toDataURL())}catch(t){so(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):function(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return Bf(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}(e,jf.asArray(n),r).then((function(){return e}))}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then((function(){r=window.getComputedStyle(t),n=e.style,r.cssText?n.cssText=r.cssText:function(t,e){jf.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}(r,n);var r,n})).then((function(){[":before",":after"].forEach((function(r){!function(r){var n=window.getComputedStyle(t,r),o=n.getPropertyValue("content");if(""!==o&&"none"!==o){var i=jf.uid();e.className=e.className+" "+i;var a=document.createElement("style");a.appendChild(function(t,e,r){var n="."+t+":"+e,o=r.cssText?i(r):a(r);return document.createTextNode(n+"{"+o+"}");function i(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function a(t){return jf.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}(i,r,n)),e.appendChild(a)}}(r)}))})).then((function(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)})).then((function(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))})).then((function(){return e})):e}(t,e)})):Promise.resolve()}function Nf(t){return Rf.inlineAll(t).then((function(){return t}))}var Ff={toSvg:Lf,toPng:function(t,e){return Df(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return Df(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return Df(t,e||{}).then(jf.canvasToBlob)},toPixelData:function(t,e){return Df(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,jf.width(t),jf.height(t)).data}))},impl:{fontFaces:Mf,images:Rf,util:jf,inliner:Tf,options:{}}};const zf=Ff;function Uf(t,e,r,n){var o=this.model_layer,i=o._overlay;return new Promise((function(a,u){if(o){var s=o.get("width"),c=o.get("height");r=r||s,n=n||c;var f=o.get("translate"),l=o.get("scale"),h=Math.min(r/s,n/c);r=s*h,n=c*h,o.set("translate",{x:0,y:0}),o.set("scale",{x:h/Vo,y:h/Vo});var p=Ya.createCanvas(r,n),y=p.getContext("2d");if(o.draw(y),o.set("translate",f),o.set("scale",l),!i)return a(p.toDataURL(t,e)),void(p=null);zf.toPng(i,{sx:h,sy:h,width:r,height:n}).then((function(o){var i=new Image;i.onload=function(){y.drawImage(i,0,0,r,n),a(p.toDataURL(t,e)),p=null},i.src=o}),(function(r){uo(r),a(p.toDataURL(t,e)),p=null}))}else u("No target model")}))}function Yf(){var t=this;if(this.hasSameParentForAllSelected){var e=this.selected.filter((function(t){return!!t.parent&&!t.stuck}));if(!(e.length<2)){var r=e[0].parent,n=[],o=e.sort((function(t,e){return r.components.indexOf(t)-r.components.indexOf(e)}));o.forEach((function(t){n.push(t.bounds)}));var i=Ya.union(n),a=e[0].transcoordP2S(i.left,i.top);a=e[0].transcoordS2T(a.x,a.y);var u=new Map,s=vf({type:"group",left:a.x,top:a.y,width:i.width,height:i.height},r.app,(function(e){var r=t.getNewRefid();return void 0!==e&&u.set(e,r),r}));s.replaceRefids(u);var c=[{component:s,to_container:r}];o.forEach((function(t){c.push({component:t,to_container:s})})),this.app.commander.execute(new pf({changes:c})),this.selected=[s]}}}function Gf(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((function(r){if(r.isGroup()){var n=r.parent;r.components.forEach((function(r){t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new pf({changes:e})),this.selected=t}}function Hf(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=Ya.union(e),n=r.left+r.width/2;t.map((function(t){t.symmetryX(n)}))}}function Wf(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=Ya.union(e),n=r.top+r.height/2;t.map((function(t){t.symmetryY(n)}))}}function Xf(){Vc.around(this.app.commander,Hf,this)}function qf(){Vc.around(this.app.commander,Wf,this)}function Vf(t,e,r){var n=this.findAll(t,r);return n.forEach((function(t){t.set(e)})),n}function Qf(t){Vc.around(this.app.commander,t)}function Kf(){return Object.values(this.indexMap).map((function(t){return t.map((function(t){var e=t.model;return{key:e.id,value:e.data}}))})).flat().sort((function(t,e){return t.key>e.key?1:-1}))}function Jf(t){return Jf="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},Jf(t)}function Zf(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function $f(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Zf(Object(r),!0).forEach((function(e){tl(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Zf(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function tl(t,e,r){return(e=function(t){var e=function(t){if("object"!=Jf(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Jf(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Jf(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var el="left",rl="right",nl="center",ol="bottom",il="middle",al=[el,rl,nl,"top",il,ol];function ul(t){if(this.hasSameParentForAllSelected&&-1!=al.indexOf(t)){var e=this.selected.filter((function(t){return!t.stuck})),r=this.app.commander;Vc.around(r,(function(){!function(t,e){var r=e[0].parent.bounds,n=r.width,o=r.height;switch(t){case el:for(var i=0;i<e.length;i++){var a=e[i].bounds;e[i].bounds=$f($f({},a),{},{left:0})}break;case nl:for(var u=0;u<e.length;u++){var s=e[u].bounds;e[u].bounds=$f($f({},s),{},{left:n/2-s.width/2})}break;case rl:for(var c=0;c<e.length;c++){var f=e[c].bounds;e[c].bounds=$f($f({},f),{},{left:n-f.width})}break;case"top":for(var l=0;l<e.length;l++){var h=e[l].bounds;e[l].bounds=$f($f({},h),{},{top:0})}break;case il:for(var p=0;p<e.length;p++){var y=e[p].bounds;e[p].bounds=$f($f({},y),{},{top:o/2-y.height/2})}break;case ol:for(var d=0;d<e.length;d++){var v=e[d].bounds;e[d].bounds=$f($f({},v),{},{top:o-v.height})}}}(t,e)}))}}function sl(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function cl(){this.trigger("stylepastestart")}function fl(){this.trigger("stylepastestop")}function ll(){this.trigger("databindpastestart")}function hl(){this.trigger("databindpastestop")}function pl(t){return pl="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},pl(t)}function yl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,dl(n.key),n)}}function dl(t){var e=function(t){if("object"!=pl(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=pl(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==pl(e)?e:e+""}function vl(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(vl=function(){return!!t})()}function gl(){return gl="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=bl(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},gl.apply(null,arguments)}function bl(t){return bl=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},bl(t)}function ml(t,e){return ml=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ml(t,e)}var wl=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=bl(e),function(t,e){if(e&&("object"==pl(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,vl()?Reflect.construct(e,r||[],bl(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ml(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=gl(bl(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel,i=o.get("translate"),a=o.get("scale");this.set("translate",i),this.set("scale",a)}},{key:"render",value:function(t){var e=this.addbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"contains",value:function(t,e){return!(this.app.mode!=Go)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"onaddstart",value:function(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=Go)}},{key:"onaddstop",value:function(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}},{key:"onkeydown",value:function(t){this.app.mode!==Go||"Esc"!=t.code&&"Escape"!=t.code||this.root.trigger("addstop")}},{key:"ondragstart",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox={sx:r,sy:n}}},{key:"ondragmove",value:function(t){if(this.app.mode===Go){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox&&(this.addbox.ex=r,this.addbox.ey=n,this.invalidate())}}},{key:"ondragend",value:function(t,e){if(this.app.mode===Go){var r=this.addbox,n=r.sx,o=r.sy,i=r.ex,a=r.ey;bf.call(this.root,this.models,{left:Math.min(n,i),top:Math.min(o,a),width:Math.abs(i-n),height:Math.abs(a-o)}),this.root.trigger("addstop")}}},{key:"onmousedown",value:function(t,e){this.app.mode===Go&&(this.downpoint={x:t.offsetX,y:t.offsetY})}},{key:"onmouseup",value:function(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;bf.call(this.root,this.models,{cx:n,cy:o}),this.root.trigger("addstop")}}}],n&&yl(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function xl(t,e,r,n,o){o||function(t,e,r,n){var o=t.selected,i=n?o.slice(0):[];n&&i.length>0?e=i[0].parent:e.isContainer()||(e=e.parent);var a=e.layout.capturables(e),u=!!e.layout.joinType;if(n&&r.selected.forEach((function(t){i.splice(i.indexOf(t),1)})),r.selected=[],a.forEach((function(t){t.capturable&&function(t,e,r){var n,o,i,a,u=e.sx,s=e.sy,c=e.ex,f=e.ey;if(u>c?(n=c,o=u):(n=u,o=c),s>f?(i=f,a=s):(i=s,a=f),r){var l=t.bounds,h=t.transcoordS2TR(l.left,l.top),p=t.transcoordS2TR(l.left+l.width,l.top+l.height),y=h.x,d=p.x,v=h.y,g=p.y,b=Math.min(n,y,o,d),m=Math.max(n,y,o,d),w=Math.min(i,v,a,g),x=Math.max(i,v,a,g);return!(m-b>Math.abs(o-n)+Math.abs(d-y)||x-w>Math.abs(a-i)+Math.abs(g-v))}var k=t.path;if(!k)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(var S=0;S<k.length;S++){var O=t.transcoordS2TR(k[S].x,k[S].y);if(n>O.x||o<O.x||i>O.y||a<O.y)return!1}return!0}(t,r,u)&&-1==i.indexOf(t)&&r.selected.push(t)})),i=i.concat(r.selected),o.length!==i.length)t.selected=i;else for(var s=0;s<i.length;s++)if(o[s]!=i[s]){t.selected=i;break}}(t,e,r,n)}function kl(t){return kl="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},kl(t)}function Sl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ol(n.key),n)}}function Ol(t){var e=function(t){if("object"!=kl(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=kl(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==kl(e)?e:e+""}function _l(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(_l=function(){return!!t})()}function El(){return El="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Al(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},El.apply(null,arguments)}function Al(t){return Al=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Al(t)}function Pl(t,e){return Pl=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Pl(t,e)}function jl(t,e){if(t){if("string"==typeof t)return Tl(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Tl(t,e):void 0}}function Tl(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Ml(t,e){var r,n=function(t){var e="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!e){if(Array.isArray(t)||(e=jl(t))){e&&(t=e);var r=0,n=function(){};return{s:n,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:n}}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 o,i=!0,a=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return i=t.done,t},e:function(t){a=!0,o=t},f:function(){try{i||null==e.return||e.return()}finally{if(a)throw o}}}}(t.components||[]);try{for(n.s();!(r=n.n()).done;){var o=r.value;Ml(o,e);var i=e.indexOf(o);-1!=i&&e.splice(i,1)}}catch(t){n.e(t)}finally{n.f()}}Ya.register("add-layer",wl);var Rl=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Al(e),function(t,e){if(e&&("object"==kl(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,_l()?Reflect.construct(e,r||[],Al(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Pl(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=El(Al(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel,i=o.get("translate"),a=o.get("scale");this.set("translate",i),this.set("scale",a)}},{key:"contains",value:function(t,e){return!1}},{key:"render",value:function(t){var e=this.selbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}},{key:"onkeydown",value:function(t,e){e.origin;var r=e.deliverer,n=r.selected;if(1!==n.length)return!1;var o=n[0],i=o.parent;if(!i||i===r)return!1;if("Tab"===t.code){var a=i.layout.capturables(i),u=a.indexOf(o);if(-1==u){if(!i.indexOf(o))return so("Container not contains [",o,"] as a component"),!1;u=0}var s=a.length;t.shiftKey?u--:u++,o=a[(u+s)%s]}else{if(!i.layout.keyNavigate)return!1;o=i.layout.keyNavigate(i,o,t)||o}r.selected=[o],t.preventDefault()}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"_pendingDecision",value:function(t){this.downpoint={x:t.offsetX,y:t.offsetY}}},{key:"_selectGroupItem",value:function(t,e){for(var r=this.selected.indexOf(t),n=t.parent;n.parent.isGroup();)n=n.parent;var o=[],i=!1,a=!1;if(this.selected.forEach((function(t){var e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(o.push(t),i=!0)}else a=!0})),i)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);o.push(t)}else{if(-1!=r)return void this._pendingDecision(e);o=[t]}else{if(a)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n))return;o=[].concat(function(t){return function(t){if(Array.isArray(t))return Tl(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||jl(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.")}()}(this.selected),[n])}else o=[n];else o=[n]}this.selected=o}},{key:"onmousedown_comp",value:function(t,e){var r=e.origin;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);var n=this.selected.filter((function(t){return!t.isRootModel()&&!!t.parent})),o=n.length>0&&n[0].parent;o&&o!==r.parent&&(function(t,e){for(var r=t.parent;r;){var n=e.indexOf(r);-1!=n&&e.splice(n,1),r=r.parent}}(r,n),Ml(r,n)),n.push(r),this.selected=n}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r],this.sameParent=!0}}},{key:"onmouseup_comp",value:function(t,e){if(this.downpoint&&this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=e.origin,n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){var o=this.selected.slice();return n>-1&&o.splice(n,1),void(this.selected=o)}r.parent.isGroup()&&(this.selected=[r])}}},{key:"ondragstart_selbox",value:function(t,e){if(e.origin.stuck){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;this.selbox={sx:n,sy:o,selected:[]}}}},{key:"ondragmove_selbox",value:function(t,e){var r=e.origin;if(r.stuck){var n=this.transcoordC2S(t.offsetX,t.offsetY),o=n.x,i=n.y;e.deliverer,this.selbox&&(this.selbox.ex=o,this.selbox.ey=i,xl(this,r,this.selbox,t.shiftKey),this.invalidate())}}},{key:"ondragend_selbox",value:function(t,e){e.origin.stuck&&(this.last_pos=null,this.selbox=null,xl(this,null,null,!1,!0),this.invalidate())}}],n&&Sl(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function Il(t){return Il="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},Il(t)}function Cl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ll(n.key),n)}}function Ll(t){var e=function(t){if("object"!=Il(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Il(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Il(e)?e:e+""}Ya.register("selection-layer",Rl);var Dl=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},(e=[{key:"draw",value:function(t,e,r){var n=e.bounds,o=n.left,i=n.top,a=n.width,u=n.height;0!=a&&0!=u&&(t.beginPath(),t.rect(o,i,a,u),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(o,i,a,u),t.stroke(),t.closePath())}}])&&Cl(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Bl(t){return Bl="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},Bl(t)}function Nl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Fl(n.key),n)}}function Fl(t){var e=function(t){if("object"!=Bl(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Bl(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Bl(e)?e:e+""}var zl=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},(e=[{key:"draw",value:function(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}])&&Nl(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Ul(t){return Ul="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},Ul(t)}function Yl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Gl(n.key),n)}}function Gl(t){var e=function(t){if("object"!=Ul(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ul(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ul(e)?e:e+""}var Hl=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this,i=r.controls;return!!i&&(i.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a,handler:i.handler}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){var n=e.controls;n&&n.forEach((function(e,n){t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}},{key:"onevent",value:function(t,e){var r=this.active,n=r.handler,o=r.component,i=r.index,a=o.transcoordC2S(e.offsetX,e.offsetY);a=o.transcoordS2P(a.x,a.y),n&&"function"==typeof n[t]&&n[t](a,i,o)}},{key:"onmousedown",value:function(t){this.onevent("onmousedown",t)}},{key:"ondragstart",value:function(t){var e=this.active;e.changes=Vc.before([e.component]),this.onevent("ondragstart",t)}},{key:"ondragmove",value:function(t){this.onevent("ondragmove",t)}},{key:"ondragend",value:function(t){this.onevent("ondragend",t);var e=this.active,r=e.component,n=e.changes;Vc.after(n,r.app.commander),r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}],e&&Yl(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Wl(t){return Wl="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},Wl(t)}function Xl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ql(n.key),n)}}function ql(t){var e=function(t){if("object"!=Wl(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Wl(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Wl(e)?e:e+""}function Vl(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}var Ql=15*Math.PI/180,Kl=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null,this.created=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.mutable&&(r.path.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"startLinkProcess",value:function(t,e,r){try{var n=vf(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}},{key:"draw",value:function(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,o=this.active;n.forEach((function(n,i){t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",o&&o.component===e&&o.index===i&&(t.strokeStyle="#fa7703",o.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}},{key:"ondblclick",value:function(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.index,n=e.component;this.created||(this.active.changes=Vc.before([n])),0!==r&&r!==n.path.length-1||(this.layer.counterEnd=0===r?n.toEnd||{fromto:"to"}:n.fromEnd||{fromto:"from"})}},{key:"ondragmove",value:function(t){var e,r,n,o,i,a=this.active||{},u=a.component,s=a.index,c=t.offsetX,f=t.offsetY,l=u.transcoordC2S(c,f);if(l=u.transcoordS2P(l.x,l.y),t.shiftKey){var h=u.path.length,p=u.isLine()&&0==s?u.path[1]:u.path[(s-1+h)%h];p=u.transcoordS2P(p.x,p.y);var y,d=0;h>2&&(u.isLine()?0==s?y=u.path[2]:1!=s&&(y=u.path[s-2]):y=u.path[(s-2+h)%h],y&&(d=Vl(y=u.transcoordS2P(y.x,y.y),p))),e=p,r=Math.round((Vl(p,l)-d)/Ql)*Ql+d,o=p,i=l,n=Math.sqrt((i.x-o.x)*(i.x-o.x)+(i.y-o.y)*(i.y-o.y)),l={x:Math.cos(r)*n+e.x,y:Math.sin(r)*n+e.y}}if(0===s||s===u.path.length-1){var v=this.layer.anchorTarget=u.rootModel.capture(c,f,(function(t){return!t.isConnectable()}));if(v){var g=v.transcoordC2S(c,f),b=g.x,m=g.y,w=this.layer.get("scale")||{x:1,y:1},x=this.layer.counterEnd,k=(v.anchors||[]).find((function(t){var e=t.name,r=t.inout,n=t.multiplicity,o=void 0===n?1/0:n,i=t.position,a=t.filter;if(x){var s=x.anchor,c=x.fromto;if(s&&("out"===s.inout&&"out"===r||"in"===s.inout&&"in"===r))return!1;if("from"===c&&"out"===r||"to"===c&&"in"===r)return!1}else console.error("should not be here.");if(Math.abs(b-i.x)>8/w.x||Math.abs(m-i.y)>8/w.y)return!1;var f=v.findInOutLines(e);return!(!f.includes(u)&&(o!==1/0&&f.length>=o||x&&a&&!a.call(t,x)))}));k?0==s?u.from={component:v.get("refid"),anchor:k.name,position:l}:u.to={component:v.get("refid"),anchor:k.name,position:l}:0==s?u.from={position:l}:u.to={position:l}}}u.mutatePath(null,(function(t){t[s]=l}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.changes;if(0===n||n===r.path.length-1){var i=t.offsetX,a=t.offsetY,u=r.rootModel.capture(i,a,(function(t){return t===r||t.isLine()})),s=u.transcoordC2S(i,a),c=s.x,f=s.y,l=this.layer.get("scale")||{x:1,y:1},h=(u.anchors||[]).find((function(t){return t&&Math.abs(c-t.position.x)<=8/l.x&&Math.abs(f-t.position.y)<=8/l.y}));h&&(0==n?r.from={component:u.get("refid"),anchor:h.name}:r.to={component:u.get("refid"),anchor:h.name}),this.layer.endLinkProcess()}if(this.created){var p=new pf({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(p)}else Vc.after(o,r.app.commander);r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}],e&&Xl(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function Jl(t){return Jl="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},Jl(t)}function Zl(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function $l(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Zl(Object(r),!0).forEach((function(e){th(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Zl(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function th(t,e,r){return(e=rh(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function eh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,rh(n.key),n)}}function rh(t){var e=function(t){if("object"!=Jl(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Jl(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Jl(e)?e:e+""}var nh=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"active",get:function(){var t;return null!==(t=this._active)&&void 0!==t&&t.component.disposed&&(this._active=null),this._active},set:function(t){this._active=t}},{key:"reset",value:function(){this.active=null}},{key:"contains",value:function(t,e,r,n){var o,i,a=this,u=(null===(o=this.active)||void 0===o?void 0:o.component)===r&&(null===(i=this.active)||void 0===i?void 0:i.anchor);this.active=null;var s=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((function(t){var e=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(s){var u=s.anchor,c=s.fromto;if(u&&("out"===u.inout&&"out"===n||"in"===u.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i||a&&s&&!a.call(t,s))})).every((function(o){var i=u===o.name?2:1;return o&&o.position&&Math.abs(t-o.position.x)<=4*i/n.x&&Math.abs(e-o.position.y)<=4*i/n.y&&(a.active={component:r,anchor:o.name,template:o.template}),!a.active})),!!this.active}},{key:"draw",value:function(t,e,r){var n,o;if(e.get("refid")&&!e.isLine()){var i=this.active,a=(null===(n=this.active)||void 0===n?void 0:n.component)===e&&(null===(o=this.active)||void 0===o?void 0:o.anchor),u=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((function(t){var r=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(u){var s=u.anchor,c=u.fromto;if(s&&("out"===s.inout&&"out"===n||"in"===s.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i||u&&a&&!a.call(t,u))})).forEach((function(n){var o=n.name,u=n.position,s=a===o?2:1;u&&(t.beginPath(),t.ellipse(u.x,u.y,4*s/r.x,4*s/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",i&&i.component===e&&i.anchor===o&&(t.strokeStyle="#fa7703",i.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.component,n=e.anchor,o=e.template,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(r,$l($l({type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10},o),{},{from:{component:r.get("refid"),anchor:n,position:i},to:{position:i}}),t)}},{key:"ondragmove",value:function(t){}},{key:"ondragend",value:function(t){}}],e&&eh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function oh(t){return oh="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},oh(t)}function ih(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ah(n.key),n)}}function ah(t){var e=function(t){if("object"!=oh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=oh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==oh(e)?e:e+""}function uh(t,e,r){var n,o,i=t.bounds,a=i.left,u=i.top,s=i.width,c=i.height;switch(e){case 0:n=a,o=u;break;case 1:n=a+s/2,o=u;break;case 2:n=a+s,o=u;break;case 3:n=a+s,o=u+c/2;break;case 4:n=a+s,o=u+c;break;case 5:n=a+s/2,o=u+c;break;case 6:n=a,o=u+c;break;case 7:n=a,o=u+c/2}var f=n,l=o,h=t.transcoordT2S(r.x,r.y);return{dx:h.x-f,dy:h.y-l}}function sh(t,e,r,n,o,i){var a=t.bounds,u=a.left,s=a.top,c=a.width,f=a.height,l={left:u,top:s,width:c,height:f};switch(e){case 0:u+=n,s+=o,c-=n,f-=o;break;case 1:s+=o,f-=o;break;case 2:s+=o,c+=n,f-=o;break;case 3:c+=n;break;case 4:c+=n,f+=o;break;case 5:f+=o;break;case 6:u+=n,c-=n,f+=o;break;case 7:u+=n,c-=n}if(t.mutateBounds((function(e){return Math.abs(c)<=.001&&(c=.001),Math.abs(f)<=.001&&(f=.001),t.adjustResize({left:u,top:s,width:c,height:f},l,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var h=l.left-u,p=l.top-s;i?t.components.forEach((function(t){t.delta("tx",0),t.delta("ty",0),t.move({x:h,y:p},!1)})):t.components.forEach((function(t){t.delta("tx",h),t.delta("ty",p)}))}else{var y=i&&t.parent;y&&y.isGroup()&&y.calculateBounds()}}function ch(t,e){var r=t.left,n=t.top,o=t.width,i=t.height,a=r+o/2,u=n+i/2,s=r+o,c=n+i,f=o*e.x>50,l=i*e.y>50;return[{x:r,y:n},f?{x:a,y:n}:null,{x:s,y:n},l?{x:s,y:u}:null,{x:s,y:c},f?{x:a,y:c}:null,{x:r,y:c},l?{x:r,y:u}:null]}var fh=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.resizable&&(ch(r.bounds,n).every((function(i,a){return i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){if(!e.isLine()){var n=e.bounds,o=n.left,i=n.top,a=n.width,u=n.height;if(t.beginPath(),t.rect(o-4/r.x,i-4/r.y,a+8/r.x,u+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var s=this.active;ch(e.bounds,r).forEach((function(n,o){n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",s&&s.component===e&&s.index===o&&(t.strokeStyle="#fa7703",s.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active.component;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((function(t){return t.resizable})).map((function(t){return t.bounds}))}},{key:"ondragmove",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var u=uh(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],sh(e,n,t.shiftKey,u.dx,u.dy,!1)}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var u=uh(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],sh(e,n,t.shiftKey,u.dx,u.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}],e&&ih(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function lh(t){return lh="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},lh(t)}function hh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ph(n.key),n)}}function ph(t){var e=function(t){if("object"!=lh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=lh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==lh(e)?e:e+""}var yh=2*Math.PI,dh=Math.PI/2;function vh(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}var gh=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e},e=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){if(!r.rotatable)return!1;var o=vh(r,n);return Math.abs(t-o.x)<=4/n.x&&Math.abs(e-o.y)<=4/n.y&&(this.active={component:r},!0)}},{key:"draw",value:function(t,e,r){if(e.rotatable){t.beginPath();var n=vh(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,yh,!0),t.stroke(),t.fillStyle="#fff",t.fill();var o=this.active;o&&o.component===e&&(t.strokeStyle="#fa7703",t.stroke(),o.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((function(t){return t.rotatable})).map((function(t){return t.get("rotation")}))}},{key:"ondragmove",value:function(t){var e=this.active.component,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,o=e.get("rotation")||0,i=Math.atan((n.y-r.y)/(n.x-r.x)),a=(i=n.x>=r.x?i-dh:dh+i)-o;this.layer.selected.filter((function(t){return t.rotatable})).forEach((function(e,r){var n=((e.get("rotation")||0)+a)%yh;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component;e.rotations,r.app.commander.execute(null,!1)}}],e&&hh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function bh(t){return bh="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},bh(t)}function mh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,wh(n.key),n)}}function wh(t){var e=function(t){if("object"!=bh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=bh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==bh(e)?e:e+""}function xh(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(xh=function(){return!!t})()}function kh(){return kh="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Sh(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},kh.apply(null,arguments)}function Sh(t){return Sh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Sh(t)}function Oh(t,e){return Oh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Oh(t,e)}var _h=function(t){function e(t,r){var n;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e,r){return e=Sh(e),function(t,e){if(e&&("object"==bh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,xh()?Reflect.construct(e,r||[],Sh(t).constructor):e.apply(t,r))}(this,e,[t,r])).pathHandler=new Kl(n);var o=n.pathHandler,i=new Hl(n),a=new fh(n),u=new gh(n);return n._modelers=[o,i,a,u],n._control_mode_modelers=[i,o,a,u],n.focusOutline=new Dl(n),n.groupOutline=new zl(n),n.anchorHandler=new nh(n),n._reversed_modelers=n._modelers.slice().reverse(),n._control_mode_reverse_modelers=n._control_mode_modelers.slice().reverse(),n.hovered=null,n.hoveredDest=null,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Oh(t,e)}(e,t),r=e,n=[{key:"modelers",get:function(){return this._control_mode?this._control_mode_modelers:this._modelers}},{key:"reversedModelers",get:function(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}},{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=kh(Sh(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]);var o=this.rootModel,i=o.get("translate"),a=o.get("scale");this.set("translate",i),this.set("scale",a)}},{key:"contains",value:function(t,e){var r=this.selected.filter((function(t){return!!t.parent})),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){var o=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(o.x,o.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((function(t){return t.reset()})),r=this.selected.filter((function(t){return!!t.parent}));for(var i=0;i<r.length;i++)for(var a=r[i],u=a.transcoordT2S(t,e),s=0;s<this.modelers.length;s++){var c=this.modelers[s];if(c.contains(u.x,u.y,a,n))return this.currentModeler=c,!0}if(this.anchorTarget){var f=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(f.x,f.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}},{key:"_componentDrawer",value:function(t,e,r,n){var o=[],i=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;i&&!i.isRootModel();)o.push(i),i=i.parent;t.save(),o.reverse().forEach((function(e){var r=e.rotatePoint;t.translate(r.x,r.y);var n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);var o=e.bounds;t.translate(o.left,o.top)}));var a=e.rotatePoint;t.translate(a.x,a.y);var u=e.get("scale");u&&t.scale(u.x,u.y),t.rotate(e.get("rotation")),t.translate(-a.x,-a.y),n(t,e,r),t.restore()}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),r&&t.translate(r.x*Vo,r.y*Vo),t.scale(o.x*Vo,o.y*Vo),i&&t.rotate(i),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}},{key:"render",value:function(t){var e=this;t.beginPath();var r=this.get("scale")||{x:1,y:1},n=this.selected.filter((function(t){return!!t.parent}));if(this.focused&&this._componentDrawer(t,this.focused,r,(function(t,r,n){e.focusOutline.draw(t,r,n)})),n.length>0&&n[0].parent.isGroup()){for(var o=n[0].parent;o.parent.isGroup();)o=o.parent;this._componentDrawer(t,o,r,(function(t,r,n){e.groupOutline.draw(t,r,n)}))}n.forEach((function(n){e._componentDrawer(t,n,r,(function(t,r,n){e.reversedModelers.forEach((function(e){return e.draw(t,r,n)}))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,r,(function(t,r,n){e.anchorHandler.draw(t,r,n)}))}},{key:"anchorTarget",get:function(){var t;return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||null!==(t=this.hovered)&&void 0!==t&&t.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget},set:function(t){this._anchorTarget=t}},{key:"hovered",get:function(){return this._hovered},set:function(t){this._hovered=t,this.invalidate()}},{key:"startLinkProcess",value:function(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}},{key:"counterEnd",get:function(){return this._counter_end},set:function(t){this.currentModeler=this.pathHandler,this._counter_end=t}},{key:"endLinkProcess",value:function(){var t;null===(t=this.processingLink)||void 0===t||t.trigger("tagreset"),this.processingLink=null,this._counter_end=null}},{key:"eventMap",get:function(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onmouseenter",value:function(t,e){this.hovered=null==e?void 0:e.origin}},{key:"onmouseleave",value:function(t,e){this.hovered=null}},{key:"onkeydown",value:function(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}},{key:"onkeyup",value:function(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}},{key:"onselected",value:function(t,e){this.invalidate()}},{key:"onchange_model",value:function(t,e,r){r.origin===r.deliverer&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}},{key:"ondblclick_model",value:function(t,e){var r=e.origin;null==r||r.root.fit()}},{key:"ondblclick",value:function(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}},{key:"onmousedown",value:function(t){this.currentModeler.onmousedown(t),this.invalidate()}},{key:"onmouseup",value:function(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}},{key:"ondragstart",value:function(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}},{key:"ondragmove",value:function(t){this.currentModeler.ondragmove(t),this.invalidate()}},{key:"ondragend",value:function(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}},{key:"ondrop",value:function(t,e){var r=this,n=e.origin,o=t.dataTransfer.files;if(!(o.length<1)){var i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),a=this.rootModel;Promise.all(Array.from(o).map((function(t){return new Promise((function(e,r){var n=new FileReader;n.addEventListener("loadend",(function(t){e(n.result)})),["error","abort"].forEach((function(t){return n.addEventListener(t,(function(t){r(t)}))})),n.readAsDataURL(t)}))}))).then((function(e){if(t.altKey)return Vc.around(r.app.commander,(function(){n.ondropfile(o,e)})),void(r.selected=[n]);var u=[],s=e.map((function(t,e){var r,n=o[e].type,s=o[e].name;return n.startsWith("image/")?(r=vf({type:n.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},a.app),u.push(new Promise((function(e,n){var o=new Image;o.src=t,o.onload=function(){r.set({width:o.width,height:o.height}),e()},o.onerror=function(t){n(t)}})))):n.startsWith("audio/")?r=vf({type:"audio",top:0,left:0,width:100,height:100,src:t},a.app):n.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(s)?r=vf({type:"excel",top:0,left:0,width:100,height:100,src:t},a.app):console.log("droped file",o[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((function(t){return{component:t,to_container:a}}));s.length>0&&Promise.all(u).then((function(){r.app.commander.execute(new pf({changes:s})),r.selected=s.map((function(t){return t.component}))}),(function(t){console.error(t)}))}),(function(t){console.error(t)}))}}},{key:"onwheel_scale",value:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;Vc.around(this.app.commander,(function(){r.selected.forEach((function(t){var e=t.get("fontSize")||Jo.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;var o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,u=t.offsetY,s=r.transcoordC2S(a,u),c=.1*n,f={x:o.x+c,y:o.y+c};if(n<0&&o.x<.2||n>0&&o.x>10)return;r.set("scale",f);var l=r.transcoordC2S(a,u);r.set("translate",{x:i.x+(l.x-s.x)*f.x,y:i.y+(l.y-s.y)*f.y})}}}}],n&&mh(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function Eh(t){return Eh="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},Eh(t)}function Ah(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ph(n.key),n)}}function Ph(t){var e=function(t){if("object"!=Eh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Eh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Eh(e)?e:e+""}function jh(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(jh=function(){return!!t})()}function Th(t){return Th=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Th(t)}function Mh(t,e){return Mh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Mh(t,e)}Ya.register("modeling-layer",_h);var Rh=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e,r){return e=Th(e),function(t,e){if(e&&("object"==Eh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,jh()?Reflect.construct(e,r||[],Th(t).constructor):e.apply(t,r))}(this,e,[t,r]))._anim_alpha=1,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Mh(t,e)}(e,t),r=e,(n=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.decorators,o=!1;return n.map((function(t){return"string"==typeof t?Ea(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.decoTargets&&this.decoTargets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.decoTargets)}},{key:"decoTargets",get:function(){return this._decoTargets},set:function(t){this._decoTargets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}},{key:"onmouseenter",value:function(t,e){this._decotagreset(),this._ondecotag(e.origin)}},{key:"onmouseleave",value:function(t,e){this._decotagreset()}},{key:"ondecotagreset",value:function(t){this._decotagreset()}},{key:"ondecotag",value:function(t){this._ondecotag(t.origin)}},{key:"offdecotag",value:function(t,e){this._offdecotag(e.origin)}},{key:"_ondecotag",value:function(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}},{key:"_offdecotag",value:function(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}},{key:"_decotagreset",value:function(){this.decoTargets=[]}}])&&Ah(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function Ih(t){return Ih="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},Ih(t)}function Ch(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Lh(n.key),n)}}function Lh(t){var e=function(t){if("object"!=Ih(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ih(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ih(e)?e:e+""}function Dh(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Dh=function(){return!!t})()}function Bh(t){return Bh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Bh(t)}function Nh(t,e){return Nh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Nh(t,e)}Ya.register("decotag-layer",Rh),Ya.register("tag-layer",Rh);var Fh=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e,r){return e=Bh(e),function(t,e){if(e&&("object"==Ih(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Dh()?Reflect.construct(e,r||[],Bh(t).constructor):e.apply(t,r))}(this,e,[t,r]))._anim_alpha=1,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Nh(t,e)}(e,t),r=e,(n=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.reactionDecorators,o=!1;return n.map((function(t){return"string"==typeof t?Ea(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.targets&&this.targets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.targets)}},{key:"targets",get:function(){return this._targets},set:function(t){this._targets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}},{key:"onreactionreset",value:function(t){this._reactionreset()}},{key:"onreaction",value:function(t){this._onreaction(t.origin)}},{key:"offreaction",value:function(t,e){this._offreaction(e.origin)}},{key:"_onreaction",value:function(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}},{key:"_offreaction",value:function(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}},{key:"_reactionreset",value:function(){this.targets=[]}}])&&Ch(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function zh(t){return zh="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},zh(t)}function Uh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Yh(n.key),n)}}function Yh(t){var e=function(t){if("object"!=zh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=zh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==zh(e)?e:e+""}function Gh(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Gh=function(){return!!t})()}function Hh(){return Hh="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Wh(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Hh.apply(null,arguments)}function Wh(t){return Wh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Wh(t)}function Xh(t,e){return Xh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Xh(t,e)}Ya.register("reaction-layer",Fh);var qh=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Wh(e),function(t,e){if(e&&("object"==zh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Gh()?Reflect.construct(e,r||[],Wh(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Xh(t,e)}(e,t),r=e,n=[{key:"capturable",get:function(){return!0}},{key:"render",value:function(t){var e=this.state.scrolling;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){var r=this.vscroller,n=r.left,o=r.top,i=r.width,a=r.height;t.globalAlpha="v"==e?1:.3,t.fillRect(n,o,i,a)}if(this.hscroller){var u=this.hscroller,s=u.left,c=u.top,f=u.width,l=u.height;t.globalAlpha="h"==e?1:.3,t.fillRect(s,c,f,l)}t.stroke(),t.restore()}},{key:"resize",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Hh(Wh(1&3?t.prototype:t),"resize",r))?function(t){return n.apply(r,t)}:n)([]),this.calcScrollerBounds()}},{key:"contains",value:function(t,e){var r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}},{key:"eventMap",get:function(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}},{key:"onchange",value:function(t){"scrolling"in t&&this.invalidate()}},{key:"ondragstart",value:function(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragmove",value:function(t,e){var r=this.root,n=this.canvas,o=n.clientWidth,i=n.clientHeight,a=this.rootModel.model,u=a.width,s=a.height,c={x:t.offsetX,y:t.offsetY},f=c.x,l=c.y,h=this._scale,p=h.x,y=h.y,d=this.state.scrolling,v=u/o,g=s/i;d&&r.rootModel.move({x:"h"==d?(-f+this.lastPosition.x)*p*v:0,y:"v"==d?(-l+this.lastPosition.y)*y*g:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragend",value:function(){delete this.lastPosition,this.setState({scrolling:null})}},{key:"calcScrollerBounds",value:function(){var t=this.canvas,e=t.clientWidth,r=t.clientHeight,n=this.rootModel.model,o=n.width,i=n.height,a=this._scale||{},u=a.x,s=void 0===u?1:u,c=a.y,f=void 0===c?1:c,l=this._translate||{},h=l.x,p=void 0===h?0:h,y=l.y,d=void 0===y?0:y,v=o/e,g=i/r,b={left:-p/s/v,top:r-10,width:e/s/v,height:10};this.hscroller=b.left>1||b.width+b.left<e-1?b:null,b={left:e-10,top:-d/f/g,width:10,height:r/f/g},this.vscroller=b.top>1||b.height+b.top<r-1?b:null,this.invalidate()}},{key:"onchangeModelLayer",value:function(t,e,r){if(t.scale){var n=(null==t?void 0:t.scale)||{},o=n.x,i=void 0===o?1:o,a=n.y,u=void 0===a?1:a;this._scale={x:i,y:u},this.calcScrollerBounds()}if(t.translate){var s=t.translate||{},c=s.x,f=void 0===c?0:c,l=s.y,h=void 0===l?0:l;this._translate={x:f,y:h},this.calcScrollerBounds()}}}],n&&Uh(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(ks);function Vh(t){return Vh="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},Vh(t)}function Qh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Kh(n.key),n)}}function Kh(t){var e=function(t){if("object"!=Vh(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Vh(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Vh(e)?e:e+""}function Jh(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((function(n){!function(t,e,r,n,o){for(var i in r){var a=r[i];if(ni(i,n.origin,0,t))for(var u in a){var s=a[u];u==n.name&&(n.listener=e,s.apply(e,o))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}Ya.register("scroll-layer",qh);var Zh=function(){return t=function t(e){if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),void 0===e.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=e,this.listeners=[]},(e=[{key:"start",value:function(){this.deliverer.on("(all)",Jh,{event_pump:this})}},{key:"stop",value:function(){this.deliverer.off("(all)",Jh)}},{key:"on",value:function(t,e){var r=Object.assign({},e);Object.keys(r).forEach((function(e){if(0==e.indexOf("?")){var n=r[e],o=e.substr(1),i=t.get(o);delete r[e],i?r[i]=n:so("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}},{key:"off",value:function(t,e){for(var r=0;r<this.listeners.length;r++){var n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}},{key:"clear",value:function(){this.listeners=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}])&&Qh(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function $h(t){return $h="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},$h(t)}function tp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ep(n.key),n)}}function ep(t){var e=function(t){if("object"!=$h(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=$h(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==$h(e)?e:e+""}var rp=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.eventMaps=[],this.root=e,e.eventMap&&this.add(e,e.eventMap)},(e=[{key:"root",get:function(){return this._root},set:function(t){this._root=t}},{key:"stop",value:function(){this.eventMaps.forEach((function(t){return t.eventPump.stop()}))}},{key:"add",value:function(t,e){var r=this;if(this.root){var n=function(){var n=e[o];if("(self)"===o&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");ai(o,r.root,t).forEach((function(o){var i=new Zh(o);i.on(t,n),i.start(),r.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:o})}))};for(var o in e)n()}}},{key:"remove",value:function(t,e){for(var r=this.eventMaps.slice(0),n=0;n<r.length;n++){var o=r[n];o.listener!==t||e&&o.handlerMap!==e||(this.eventMaps.splice(n,1),o.eventPump.dispose())}}},{key:"clear",value:function(){this.eventMaps.slice(0).forEach((function(t){return t.eventPump.dispose()})),this.eventMaps=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}])&&tp(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function np(t){return np="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},np(t)}function op(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ip(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,up(n.key),n)}}function ap(t,e,r){return e&&ip(t.prototype,e),r&&ip(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function up(t){var e=function(t){if("object"!=np(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=np(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==np(e)?e:e+""}var sp={},cp=0,fp=function(){return ap((function t(e,r){op(this,t),this._type=r||e.type,this._ctrlKey=e.ctrlKey,this._altKey=e.altKey,this._shiftKey=e.shiftKey,this._metaKey=e.metaKey;var n=function(t){if(t.touches){var e=t.touches[0];if(!e)return sp;var r=e.target.getBoundingClientRect();return sp={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(e);if(this._offsetX=n.x,this._offsetY=n.y,"wheel"==e.type)this.deltaX=e.deltaX,this.deltaY=e.deltaY,this.deltaZ=e.deltaZ;else if("drop"==e.type)this.dataTransfer=e.dataTransfer;else if(e.type.match(/^touch/)&&(this._scale=e.scale,this._touches=e.touches,this._changedTouches=e.changedTouches,null==this._scale)){var o=function(t){var e,r,n=0,o=0;if(1===t.touches.length)return 0;Array.from(t.touches).forEach((function(t){e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,o=Math.max(t.screenY,o)}));var i=n-e||0,a=o-r||0;return Math.sqrt(Math.pow(i,2)+Math.pow(a,2))||0}(e);cp>0&&(this._scale=o/cp),cp=o}}),[{key:"type",get:function(){return this._type},set:function(t){this._type=t}},{key:"offsetX",get:function(){return this._offsetX}},{key:"offsetY",get:function(){return this._offsetY}},{key:"altKey",get:function(){return this._altKey}},{key:"ctrlKey",get:function(){return this._ctrlKey}},{key:"shiftKey",get:function(){return this._shiftKey}},{key:"metaKey",get:function(){return this._metaKey}},{key:"touches",get:function(){return this._touches}},{key:"changedTouches",get:function(){return this._changedTouches}},{key:"scale",get:function(){return this._scale}},{key:"stopPropagation",value:function(){this._stop_=!0,this.originalEvent&&"function"==typeof this.originalEvent.stopPropagation&&this.originalEvent.stopPropagation()}},{key:"isPropagationStopped",value:function(){return this._stop_}},{key:"preventDefault",value:function(){this._prevented=!0}},{key:"isDefaultPrevented",value:function(){return this._prevented}}])}();function lp(t,e){return t.capture(e.offsetX,e.offsetY)}function hp(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof fp&&e===r.type||(r=new fp(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}var pp=function(){return ap((function t(e,r){var n=this;op(this,t),this.container=e,this.html_element=r,this.status=0,this.last_target=null,this.gesture_handlers=Qo.map((function(t){return n.gestureHandlerBuilder(t)})),this.keyevent_handlers=Ko.map((function(t){return n.keyeventHandlerBuilder(t)})),Qo.forEach((function(t,e){return r.addEventListener(t,n.gesture_handlers[e])}),{passive:!1}),Ko.forEach((function(t,e){return r.addEventListener(t,n.keyevent_handlers[e])})),r.ondragover=this.gestureHandlerBuilder("dragover"),r.ondrop=this.gestureHandlerBuilder("drop"),r.tabIndex=1}),[{key:"dispose",value:function(){var t=this;this.last_enter_target&&hp(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),Qo.forEach((function(e,r){return t.html_element.removeEventListener(e,t.gesture_handlers[r])})),Ko.forEach((function(e,r){return t.html_element.removeEventListener(e,t.keyevent_handlers[r])})),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}},{key:"gestureHandlerBuilder",value:function(t){var e=this["on".concat(t)].bind(this);return function(t){var r=new fp(t);return e(r),r.isDefaultPrevented()&&t.preventDefault(),!1}}},{key:"keyeventHandlerBuilder",value:function(t){return this["on".concat(t)].bind(this)}},{key:"ondragover",value:function(t){return hp(lp(this.container,t),t.type,t),!1}},{key:"ondrop",value:function(t){return hp(lp(this.container,t),t.type,t),!1}},{key:"ondblclick",value:function(t){return hp(lp(this.container,t),t.type,t),this.last_target=null,!1}},{key:"onkeydown",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onkeyup",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onmousemove",value:function(t){switch(this.status){case 1:var e=t.offsetX-this.__dragstart_e.offsetX,r=t.offsetY-this.__dragstart_e.offsetY;if(e*e+r*r<16)break;this.status=2,hp(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,hp(this.last_target,"dragmove",t);break;case 2:this.__dragmove_e=t,hp(this.last_target,"dragmove",t);break;default:var n=lp(this.container,t);this.last_enter_target!==n&&(this.last_enter_target&&hp(this.last_enter_target,"mouseleave",t),n&&hp(n,"mouseenter",t),this.last_enter_target=n),hp(n,t.type,t),this.last_target=n}return!1}},{key:"onmousedown",value:function(t){if(2===this.status)hp(this.last_target,"dragend",t),this.last_target=null,this.status=0;else{var e=lp(this.container,t);this.last_target=e,this.status=1,this.__dragstart_e=t,hp(e,t.type,t)}return!1}},{key:"onmouseup",value:function(t){if(2===this.status)hp(this.last_target,"dragend",t);else{var e=lp(this.container,t);hp(e,t.type,t),this.last_target===e&&hp(e,"click",t)}return this.last_target=null,this.status=0,!1}},{key:"onmouseout",value:function(t){var e=lp(this.container,t);if(2===this.status)hp(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(hp(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=0,!1}},{key:"ontouchstart",value:function(t){var e=this,r=lp(this.container,t);return this.last_target=r,this.status=1,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((function(){e.status=0,hp(e.last_target,"hold",t),delete e.holdTimer}),500),hp(r,t.type,t),!1}},{key:"ontouchmove",value:function(t){var e=this;if(!t.touches||!t.changedTouches)return hp(this.last_target,"dragstart",t),hp(this.last_target,"dragmove",t),!1;var r=lp(this.container,t);switch(this.status){case 1:Array.from(t.changedTouches).forEach((function(t){var r=e.touchPoints.find((function(e){return e.identifier===t.identifier}));if(r){var n=r.clientX-t.clientX,o=r.clientY-t.clientY;return Math.sqrt(Math.pow(n,2)+Math.pow(o,2))>=16?(e.status=2,void(e.holdTimer&&(clearTimeout(e.holdTimer),delete e.holdTimer))):void 0}}));break;case 2:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return hp(this.last_target,"pinch",t),!1;hp(this.last_target,"pan",t),r=this.last_target;break;default:this.last_enter_target!==r&&(this.last_enter_target&&hp(this.last_enter_target,"mouseleave",t),r&&hp(r,"mouseenter",t),this.last_enter_target=r),this.last_target=r}return hp(r,"touchmove",t),!1}},{key:"ontouchend",value:function(t){var e=lp(this.container,t);switch(this.status){case 2:e=this.last_target;break;case 1:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,hp(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}hp(e,"touchend",t);var o=this.touchPoints.findIndex((function(e){return e.identifier===t.changedTouches[0].identifier}));return this.touchPoints.splice(o,1),this.last_target=null,this.status=0,!1}},{key:"onwheel",value:function(t){return hp(lp(this.container,t),t.type,t),!1}}])}();function yp(t,e,r){if(e.length<2)return e;for(var n=2;n<e.length;n++){var o=e.substring(0,n);if(!(t.measureText(o).width<r))break}return e.substring(0,n-1)}var dp={};const vp={register:function(t,e){dp[t]=e},unregister:function(t){delete dp[t]},get:function(t){return dp[t]}};function gp(t){if(t.hasTextProperty&&!t.textHidden){var e=t.model,r=e.text,n=void 0===r?"":r,o=e.bold,i=void 0===o?Jo.BOLD:o,a=e.italic,u=void 0===a?Jo.ITALIC:a,s=e.textWrap,c=void 0===s?Jo.TEXT_WRAP:s,f=e.fontFamily,l=void 0===f?Jo.FONT_FAMILY:f,h=e.fontColor,p=void 0===h?Jo.FONT_COLOR:h,y=e.textAlign,d=void 0===y?Jo.TEXT_ALIGN:y,v=e.textBaseline,g=void 0===v?Jo.TEXT_BASELINE:v,b=e.fontSize,m=void 0===b?Jo.FONT_SIZE:b,w=e.lineHeight,x=void 0===w?1.2*m:w,k=t.textBounds,S=k.left,O=k.top,_=k.width,E=k.height;m||(m=Jo.FONT_SIZE),x||(x=1.2*m),t.textHidden=!0;var A=document.createElement("textarea");Qo.forEach((function(t){A.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));var P=t.transcoordS2C(S,O),j=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;var o=n.get("scale")||{x:1,y:1},i=o.x,a=o.y;r*=Math.max(i,a)||1,n=n.parent}return{rotation:e,scale:r}}(t),T=j.rotation,M=j.scale;switch(A.style.position="absolute",A.style.width=_+"px",A.style.height=E+"px",A.style.padding="0",A.value=n,A.style.fontFamily=l,A.style.fontSize=m+"px",A.style.lineHeight=x+"px",A.style.overflow="hidden",A.style.resize="none",A.style.outline="none",A.style.border=0,A.style.backgroundColor="transparent",A.style.display="inline-block",A.style.color=p,i&&(A.style.fontWeight="bold"),u&&(A.style.fontStyle="italic"),d){case"right":case"end":A.style.textAlign="right";break;case"justify":A.style.textAlign="justify";break;case"left":case"start":A.style.textAlign="left";break;default:A.style.textAlign="center"}var R=[i,u,m+"px",l].filter(Boolean).join(" ");N(n);var I=t.root.target_element;I.appendChild(A),A.select();var C,L=!1;A.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((function(){N(A.value)})):(L=C.skipUpdate="Escape"==t.code,document.createEvent?A.dispatchEvent(C):A.fireEvent(C.eventType,C))})),document.createEvent?(C=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(C=document.createEventObject()).eventType="blur";var D=t.root.selected,B=function(e){t.root.selected=D,t.textHidden=!1,A.removeEventListener("blur",B,!1),A.parentElement&&A.parentElement.removeChild(A),I.focus(),e.skipUpdate||L||t.app.commander.execute(new Vc({changes:[{component:t,before:{text:n},after:{text:A.value}}]}))};A.addEventListener("blur",B,!1)}function N(e){var r={left:0,top:0},n=x*function(t,e,r,n){var o,i=t.getContext();return i.save(),i.font=r,o=function(t,e,r,n){var o=String(e).split("\n");return n?[].concat.apply([],o.map((function(e){return function(t,e,r){var n,o,i=e.split(" "),a=[],u=[];for(n=0,o=1;o<=i.length;o++)if(u=i.slice(n,o),t.measureText(u.join(" ")).width>r){if(o-n==1){var s=yp(t,u[0],r);a.push([s]),i.splice(n,1,s,u[0].substring(s.length))}else{for(;""==i[o-1];)o++;a.push(i.slice(n,--o))}n=o}return o-n>1&&a.push(u),0==a.length&&a.push([""]),a}(t,e,r)}))):o.map((function(t){return t.split(" ")}))}(i,e,n,t.get("textWrap")).length,i.restore(),o}(t,e,R,_);switch(A.style.height=n+"px",g){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=E-n;break;default:r.top=E/2-n/2}if(!c){var o=function(t,e,r,n){var o=e.split("\n"),i=n,a=t.getContext();return a.save(),a.font=r,o.forEach((function(t){var e=a.measureText(t).width;e>i&&(i=e)})),a.restore(),i}(t,e,R,_);switch(A.style.width=o+"px",d){case"right":case"end":r.left=_-o;break;case"left":case"start":break;default:r.left=(_-o)/2}}A.style.marginLeft=r.left+"px",A.style.marginTop=r.top+"px",A.style.transform="translate(".concat(P.x,"px, ").concat(P.y,"px) scale(").concat(M,") rotate(").concat(T,"rad)"),A.style.transformOrigin="".concat(-r.left,"px ").concat(-r.top,"px")}}vp.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){e.origin;var r=e.deliverer.selected;return!(1!==r.length||!r[0].hasTextProperty||"Enter"!=t.code&&"NumpadEnter"!=t.code||(gp(r[0]),t.preventDefault(),0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){gp(e.origin)}}}});var bp,mp,wp,xp=ca((function(t,e,r){if(t.hasSameParentForAllSelected&&!r){var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((function(t){t.path.forEach((function(e){n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}else t.focused=null}),300);vp.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected,i=n.selected.filter((function(t){return!t.stuck}));if(o.length!==i.length&&(o=n.selected=i),0!=o.length){var a=o[0].transcoordC2S(t.offsetX,t.offsetY);if(a=o[0].transcoordS2P(a.x,a.y),this.last_pos=a,this.direction=0,n.focused=o[0].parent,t.altKey){var u=[],s=new Map;n.selected=n.selected.filter((function(t){return!t.isRootModel()})).map((function(t){var e=gf(t,(function(t){var e=n.root.getNewRefid();return void 0!==t&&s.set(t,e),e}));return u.push({component:e,to_container:t.parent}),e})).map((function(t){return t.replaceRefids(s),t})),u.forEach((function(t){var e=t.component;t.to_container.addComponent(e)})),this.duplicates=n.selected.map((function(t){return{component:t}}))}else this.changes=Vc.before(o)}}},dragmove:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].transcoordC2S(t.offsetX,t.offsetY),a=i.x,u=i.y,s=o[0].transcoordS2P(a,u);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var c=s.x-this.last_pos.x,f=s.y-this.last_pos.y;if(0==this.direction){if(c*c+f*f<25)return;Math.abs(c)>Math.abs(f)?this.direction=3:this.direction=4}3==this.direction?f=0:4==this.direction&&(c=0),o.forEach((function(t){t.move({x:c,y:f},1===o.length)})),this.last_pos=s,xp(n,o)}}},dragend:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].parent,a=n.focused||e.deliverer;if(this.changes&&!a.isGroup())if(n.hasSameParentForAllSelected&&a&&a!==i){var u=this.changes.map((function(t){var e=t.component;return t.before,{component:e,to_container:a}}));n.app.commander.execute(new pf({changes:u}))}else Vc.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((function(t){return t.to_container=a,t}));var s=new pf({changes:this.duplicates});n.app.commander.execute(s)}o.forEach((function(t){t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,xp(n,o,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var r=e.origin,n=e.deliverer,o={},i=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:o.x=-i,o.y=0;break;case 38:o.x=0,o.y=-i;break;case 39:o.x=i,o.y=0;break;case 40:o.x=0,o.y=i;break;default:return}var a=n.selected;Vc.around(n.app.commander,(function(){a.forEach((function(t){!t.stuck&&t.move(o,!1)}))}))}}}});var kp=fa((function(){var t=wp,e=t.x,r=t.y,n=mp.deref();n&&(n.rootModel.move({x:e-bp.x,y:r-bp.y},!1),bp={x:e,y:r})}),60,{leading:!0,trailing:!0});function Sp(t){return Sp="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},Sp(t)}function Op(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function _p(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Op(Object(r),!0).forEach((function(e){Ep(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Op(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Ep(t,e,r){return(e=function(t){var e=function(t){if("object"!=Sp(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Sp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Sp(e)?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}vp.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){bp={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){mp=new WeakRef(e.deliverer),wp={x:t.offsetX,y:t.offsetY},kp()}}}}),vp.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer,n=t.deltaY<0?1:-1,o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,u=t.offsetY,s=r.transcoordC2S(a,u),c=.1*n,f={x:o.x+c,y:o.y+c};if(!(n<0&&o.x<.2||n>0&&o.x>10)){r.set("scale",f);var l=r.transcoordC2S(a,u);r.set("translate",{x:i.x+(l.x-s.x)*f.x,y:i.y+(l.y-s.y)*f.y})}}}},"(self)":{dblclick:function(t,e){var r=e.origin;null==r||r.root.fit()}}}});var Ap={},Pp={};function jp(t){var e={};for(var r in t)t.hasOwnProperty(r)&&void 0!==t[r]&&(e[r]=t[r]);return e}function Tp(t){return Tp="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},Tp(t)}function Mp(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=Dp(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}function Rp(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(t,e)||Dp(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ip(){Ip=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function O(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function _(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==Tp(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(Tp(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},O(_.prototype),c(_.prototype,u,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function Cp(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function Lp(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){Cp(i,n,o,a,u,"next",t)}function u(t){Cp(i,n,o,a,u,"throw",t)}a(void 0)}))}}function Dp(t,e){if(t){if("string"==typeof t)return Bp(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Bp(t,e):void 0}}function Bp(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Np(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Fp(n.key),n)}}function Fp(t){var e=function(t){if("object"!=Tp(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Tp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Tp(e)?e:e+""}function zp(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(zp=function(){return!!t})()}function Up(){return Up="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Yp(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Up.apply(null,arguments)}function Yp(t){return Yp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Yp(t)}function Gp(t,e){return Gp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Gp(t,e)}vp.register("paste-handler",{"(root)":{"(self)":{stylepastestart:function(t){var e=t.deliverer,r=e.app,n=e.selected;if(n&&n[0]&&n!==e.rootModel){var o=n[0].state,i=o.fillStyle,a=o.strokeStyle,u=o.alpha,s=o.lineWidth,c=o.lineDash,f=o.lineCap,l=o.lineJoin,h=o.fontColor,p=o.fontSize,y=o.fontFamily,d=o.bold,v=o.italic,g=o.textAlign,b=o.textBaseline,m=o.textOverflow,w=o.paddingTop,x=o.paddingBottom,k=o.paddingLeft,S=o.paddingRight;Ap=Lo({fillStyle:i,strokeStyle:a,alpha:u,lineWidth:s,lineDash:c,lineCap:f,lineJoin:l,fontColor:h,fontSize:p,fontFamily:y,bold:d,italic:v,textAlign:g,textBaseline:b,textOverflow:m,paddingTop:w,paddingBottom:x,paddingLeft:k,paddingRight:S}),r.mode=Ho}},stylepastestop:function(t){var e=t.deliverer.app;Ap={},e.mode==Ho&&(e.mode=Uo)},databindpastestart:function(t){var e=t.deliverer,r=e.app,n=e.selected;if(n&&n[0]&&n!==e.rootModel){var o=n[0].state.mappings;Pp=Lo({mappings:o}),r.mode=Wo}},databindpastestop:function(t){var e=t.deliverer.app;Pp={},e.mode==Wo&&(e.mode=Uo)},keydown:function(t,e){var r=e.deliverer;"Esc"!=t.code&&"Escape"!=t.code||(r.app.mode==Ho?r.trigger("stylepastestop"):r.app.mode==Wo&&r.trigger("databindpastestop"))}}},"model-layer":{"(all)":{click:function(t,e){var r=e.deliverer,n=r.app;if(n.mode==Ho||n.mode==Wo){var o=e.origin;n.mode==Ho?o===r?r.root.trigger("stylepastestop"):o&&Vc.around(n.commander,(function(){var t=jp(_p(_p({},o.model),Ap));null==o||o.set(t)})):o===r?r.root.trigger("databindpastestop"):o&&Vc.around(n.commander,(function(){var t=jp(_p(_p({},o.model),Pp));null==o||o.set(t)}))}}}}});var Hp=[],Wp=ca((function(){Hp.forEach((function(t){t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",Wp);var Xp=function(t){function e(t,r){var n;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(n=function(t,e,r){return e=Yp(e),function(t,e){if(e&&("object"==Tp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,zp()?Reflect.construct(e,r||[],Yp(t).constructor):e.apply(t,r))}(this,e,[Object.assign({type:"root",scale:{x:1,y:1}},t||{}),r]))._maxRefid=r.isViewMode?1e6:0,t=t||{},n.fitMode=t.model&&t.model.fitMode,n._app=r,n.style=t.style,n.target_element=t.target_element,n.rebuildContentModel(n.model.model),Hp.push(n),n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Gp(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){var t,r,n;Cu.hideAll(this),this._app&&this._app.dispose(),(t=e,r=this,"function"==typeof(n=Up(Yp(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([]),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var o=Hp.indexOf(this);o>=0&&Hp.splice(o,1),this.refidIndexMap.clear(),this._maxRefid=0}},{key:"isRoot",value:function(){return!0}},{key:"app",get:function(){return this._app}},{key:"target_element",get:function(){return this._target_element},set:function(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new pp(this,t)),this.forEach((function(e){return e.target=t})),this._target_element=t}},{key:"unitScale",get:function(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}},{key:"addTemplate",value:function(t,e){var r=this.templateMap[t];r&&uo("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}},{key:"removeTemplate",value:function(t,e){var r=this.templateMap[t];r!==e?so("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}},{key:"findTemplateFor",value:function(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((function(e){return t.startsWith(e)}));if(e)return this.templateMap[e]}},{key:"addIndex",value:function(t,e){var r=this.indexMap[t]||[];this.indexMap[t]=[].concat(function(t){return function(t){if(Array.isArray(t))return Bp(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||Dp(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.")}()}(r),[e])}},{key:"removeIndex",value:function(t,e){var r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?so("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}},{key:"addRefidIndex",value:function(t,e){null==t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&uo("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}},{key:"removeRefidIndex",value:function(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?uo("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}},{key:"getNewRefid",value:function(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}},{key:"subscribe",value:(i=Lp(Ip().mark((function t(e,r){return Ip().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(this._app.isViewMode&&e&&this._app)){t.next=4;break}return t.next=3,this._app.subscribe(e,r);case 3:r._subscription=t.sent;case 4:case"end":return t.stop()}}),t,this)}))),function(t,e){return i.apply(this,arguments)})},{key:"unsubscribe",value:(o=Lp(Ip().mark((function t(e,r){return Ip().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!r._subscription){t.next=4;break}return t.next=3,r._subscription.unsubscribe();case 3:delete r._subscription;case 4:case"end":return t.stop()}}),t)}))),function(t,e){return o.apply(this,arguments)})},{key:"findById",value:function(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}},{key:"findAllById",value:function(t){return this.indexMap[t.replace(/^#/,"")]||[]}},{key:"findByRefid",value:function(t){return this.refidIndexMap.get(t)}},{key:"findOrCreate",value:function(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){var r=this.findTemplateFor(t);if(r){var n=Object.assign(Lo(r.hierarchy),{id:t,templatePrefix:""});return component=vf(n,this.app),this.model_layer.addComponent(component),[component]}}return e}},{key:"resize",value:function(){this.components.forEach((function(t){t.resize&&t.resize()})),this.invalidate()}},{key:"_disposeAllResources",value:function(){var t=this;this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((function(e){t.eventEngine.remove(e)})),this.eventEngine.dispose(),delete this.eventEngine),this.assist_layers&&this.assist_layers.forEach((function(e){e.dispose(),t.removeComponent(e)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}},{key:"rebuildContentModel",value:function(t){var e=this;this._disposeAllResources(),this.eventEngine=new rp(this),(t=t||{}).type="model-layer",this.model_layer=vf(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((function(t){var r=vf(t,e.app);return e.addComponent(r),r.target=e.target_element,r})),this.assist_handlers=(this.model.handlers||[]).map((function(t){var r={};return e.eventEngine.add(r,vp.get(t)),r})),this._ready=!0,this.traverse((function(t){return t.ready()}))}},{key:"root",get:function(){return this}},{key:"anchors",get:function(){}},{key:"isReady",get:function(){return this._ready}},{key:"rootModel",get:function(){return this.model_layer}},{key:"stuck",get:function(){return!0}},{key:"data",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=Rp(e,1)[0];return t[r.model.id]=r.data,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.data=t[e]}))}}},{key:"dataByRefid",get:function(){var t,e={},r=Mp(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=Rp(t.value,2),o=n[0],i=n[1];e[o]=i.data}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}},{key:"values",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=Rp(e,1)[0];return t[r.model.id]=r.value,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.value=t[e]}))}}},{key:"valuesByRefid",get:function(){var t,e={},r=Mp(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=Rp(t.value,2),o=n[0],i=n[1];e[o]=i.value}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}},{key:"selected",get:function(){return(this._selected||[]).filter((function(t){return t.parent}))},set:function(t){var e=this._selected;if(this._selected=t,!t||t.length<=1)this.hasSameParentForAllSelected=!0;else{var r=t[0].parent;this.hasSameParentForAllSelected=!t.find((function(t){return t.parent!=r}))}this.trigger("selected",t,e)}},{key:"focused",get:function(){return this._focused},set:function(t){this._focused!==t&&(this._focused=t,this.invalidate())}},{key:"style",get:function(){return this._style},set:function(t){this._style=t,this._compiled_style=t}},{key:"hasTextProperty",get:function(){return!1}},{key:"render",value:function(){this.components.forEach((function(t){return t.draw()}))}},{key:"contains",value:function(t,e){return!0}},{key:"capturePath",value:function(t,e){return this.model_layer.capturePath(t,e)}},{key:"invalidate",value:function(){this.components.forEach((function(t){return t.invalidate()}))}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}},{key:"refreshMappings",value:function(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=ca((function t(e){e.executeMappings(),e.components&&e.components.forEach((function(e){return t(e)}))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}},{key:"_addTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._addTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.addRefidIndex(o,t),n&&this.addIndex(n,t),i&&this.subscribe(i,t),a&&this.addTemplate(a,t);var u=Pn({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,u)}},{key:"_removeTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._removeTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.removeRefidIndex(o,t),n&&this.removeIndex(n,t),i&&this.unsubscribe(i,t),a&&this.removeTemplate(a,t),this.eventEngine.remove(t)}},{key:"onadded",value:function(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}},{key:"onremoved",value:function(t,e){this._removeTraverse(e),this.invalidate()}},{key:"onchanged",value:function(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}],n&&Np(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o,i}(ps);Object.assign(Xp.prototype,{fit:function(t){var e=this.model_layer.model,r=e.width,n=e.height,o=e.fitMode,i=this.target_element,a=this.model_layer;if(this.fitMode=t||this.fitMode||o||"ratio",r&&n&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,o=e.model,i=o.width,a=o.height;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-a*n)/2,0)})}(this,a,i);break;case"both":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,u=r.clientHeight;e.set("scale",{x:a/o,y:u/i}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"ratio":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,u=r.clientHeight,s=a/o,c=u/i,f=Math.min(s,c);e.set("scale",{x:f,y:f}),e.set("translate",{x:(a-o*f)/2,y:(u-i*f)/2})}(0,a,i);break;default:!function(t,e){var r=t.unitScale;e.set("scale",{x:r,y:r}),e.set("translate",{x:0,y:0})}(this,a)}this.resize()}}}),Ya.memoize(Xp.prototype,"unitScale",!1);var qp=13.3;function Vp(t){return Vp="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},Vp(t)}function Qp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Kp(n.key),n)}}function Kp(t){var e=function(t){if("object"!=Vp(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Vp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Vp(e)?e:e+""}var Jp="$base_url",Zp=Math.PI/12,$p=function(){return t=function t(e,r){var n;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._mode=e,this.screen=(void 0!==n&&(qp=n),qp),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=r,this.isEditMode&&(this._rotateStep=Zp,this._rotateStepForced=!1)},e=[{key:"dispose",value:function(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}},{key:"_calcScreen",value:function(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var o=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return o>0?Math.round(o):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}},{key:"subscribe",value:function(t,e){var r;return null===(r=this._dataSubscriptionProvider)||void 0===r?void 0:r.subscribe(t,e)}},{key:"refProvider",get:function(){return this._refProvider}},{key:"dataSubscriptionProvider",get:function(){return this._dataSubscriptionProvider},set:function(t){this._dataSubscriptionProvider=t}},{key:"commander",get:function(){return this._commander},set:function(t){this._commander=t}},{key:"screen",get:function(){return this._screen},set:function(t){this._screen=t,this._calcScreen()}},{key:"DPPX",get:function(){return Vo}},{key:"PPI",get:function(){return this._PPI}},{key:"PPM",get:function(){return this._PPM}},{key:"mode",get:function(){return this._mode},set:function(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}},{key:"isViewMode",get:function(){return this._mode==zo}},{key:"isEditMode",get:function(){return this._mode==Uo}},{key:"baseUrl",get:function(){return this._baseUrl},set:function(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}},{key:"url",value:function(t){try{return(t.includes(Jp)?new URL(t.replace(Jp,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){so(e,t)}}},{key:"rotateStep",get:function(){return this._rotateStep},set:function(t){this._rotateStep=Number(t)||Zp}},{key:"rotateStepForced",get:function(){return this._rotateStepForced},set:function(t){this._rotateStepForced=!!t}},{key:"dataStorage",get:function(){return this._dataStorage},set:function(t){this._dataStorage=t}}],e&&Qp(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function ty(t){return ty="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},ty(t)}function ey(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ry(n.key),n)}}function ry(t){var e=function(t){if("object"!=ty(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ty(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ty(e)?e:e+""}no($p.prototype,ro.withEvent);var ny=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),!(e=Number(e))||e<=0?(uo("TimeCapsule maxsize should be greater than 0.",e),this.maxsize=10):this.maxsize=e,this.reset(),r&&(this.snapshot(r),this.preserve())},(e=[{key:"preserve",value:function(){this.checkPoint=this.pos}},{key:"hasUnpreservedChanges",value:function(){return this.checkPoint!=this.pos}},{key:"dispose",value:function(){this.reset()}},{key:"snapshot",value:function(t){if(this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize){var e=this.q.splice(0,this.q.length-this.maxsize);this.checkPoint=Math.max(-1,this.checkPoint-e.length)}this.pos=this.q.length-1}},{key:"forward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];so("Not forwardable.")}},{key:"backward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];so("Not backwardable.")}},{key:"current",get:function(){if(-1!==this.pos)return this.q[this.pos];so("Non state has been recorded.")}},{key:"length",get:function(){return this.q.length}},{key:"forwardable",get:function(){return this.pos<this.q.length-1}},{key:"backwardable",get:function(){return this.pos>0}},{key:"snapshot_taker",get:function(){return this._snapshot_taker},set:function(t){this._snapshot_taker=t}},{key:"reset",value:function(){this.q=[],this.pos=-1,this.checkPoint=-1}}])&&ey(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function oy(t){return oy="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},oy(t)}function iy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ay(n.key),n)}}function ay(t){var e=function(t){if("object"!=oy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=oy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==oy(e)?e:e+""}var uy=ca((function(t){t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function sy(t){!t.brake&&t.dirty&&uy(t)}var cy=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.brake=!1,this.dirty=!1,this.state_holder=e,this.timecapsule=r,this.timecapsule.snapshot_taker=this},(e=[{key:"dispose",value:function(){delete this.state_holder,delete this.timecapsule}},{key:"touch",value:function(){this.dirty=!0,sy(this)}},{key:"take",value:function(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}},{key:"brake",get:function(){return this._brake},set:function(t){this._brake=!!t,sy(this)}}])&&iy(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function fy(t){return fy="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},fy(t)}function ly(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,hy(n.key),n)}}function hy(t){var e=function(t){if("object"!=fy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=fy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==fy(e)?e:e+""}function py(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){var o=JSON.parse(t);o.scale=r,o.translate=n,e.rebuildContentModel(o)}}var yy=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.container=e,this.timecapsule=new ny(20);var r=this;this.snapshot_taker=new cy({get state(){var t=r.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0),this.timecapsule.preserve()},(e=[{key:"dispose",value:function(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}},{key:"preserve",value:function(){this.timecapsule.preserve()}},{key:"hasUnpreservedChanges",value:function(){return this.timecapsule.hasUnpreservedChanges()}},{key:"execute",value:function(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}},{key:"undo",value:function(){this.timecapsule.backwardable&&(py(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}},{key:"redo",value:function(){this.timecapsule.forwardable&&(py(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}},{key:"undoable",value:function(){return this.timecapsule.backwardable}},{key:"redoable",value:function(){return this.timecapsule.forwardable}},{key:"reset",value:function(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}])&&ly(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();function dy(t){return dy="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},dy(t)}function vy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,gy(n.key),n)}}function gy(t){var e=function(t){if("object"!=dy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=dy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==dy(e)?e:e+""}no(yy.prototype,ro.withEvent);var by=0,my=new FinalizationRegistry((function(t){by--}));const wy=function(){return t=function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._container=e,this.app=e.app,this._commander=new yy(this._container),this.app.commander=this._commander,by++,my.register(this,by)},e=[{key:"add",value:function(){return bf.apply(this._container,arguments)}},{key:"duplicate",value:function(){return mf.apply(this._container,arguments)}},{key:"remove",value:function(){return wf.apply(this._container,arguments)}},{key:"animate",value:function(){return hn.apply(this,arguments)}},{key:"fullscreen",value:function(){return Of.apply(this._container,arguments)}},{key:"target",get:function(){return this._container.target_element},set:function(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw"target element '".concat(t,"' is not exist");if(e.firstChild)throw"target element '".concat(t,"' already has children")}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}},{key:"scale",get:function(){return this.root.get("scale")},set:function(t){this.root.set("scale",t)}},{key:"translate",get:function(){return this.root.get("translate")},set:function(t){this.root.set("translate",t)}},{key:"unit",get:function(){return this.root.get("unit")||"px"}},{key:"PPM",get:function(){return this.app.PPM}},{key:"PPI",get:function(){return this.app.PPI}},{key:"DPPX",get:function(){return this.app.DPPX}},{key:"unitScale",get:function(){return this._container.unitScale}},{key:"screen",get:function(){return this.app.screen},set:function(t){this.app.screen=t,this._container.resize()}},{key:"resize",value:function(){this._container.resize()}},{key:"release",value:function(){this.dispose()}},{key:"dispose",value:function(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}},{key:"selected",get:function(){return this._container.selected.slice()},set:function(t){this._container.selected=t}},{key:"select",value:function(t){for(var e,r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return this._container.selected=null===(e=this.root)||void 0===e?void 0:e.findAll.apply(e,[t].concat(n)),this.selected}},{key:"commander",get:function(){return this._commander}},{key:"undo",value:function(){this.commander.undo()}},{key:"undoable",value:function(){return this.commander.undoable()}},{key:"redo",value:function(){this.commander.redo()}},{key:"redoable",value:function(){return this.commander.redoable()}},{key:"preserve",value:function(){this.commander.preserve()}},{key:"hasUnpreservedChanges",value:function(){return this.commander.hasUnpreservedChanges()}},{key:"cut",value:function(){return Af.apply(this._container,arguments)}},{key:"copy",value:function(){return Ef.apply(this._container,arguments)}},{key:"paste",value:function(){return Pf.apply(this._container,arguments)}},{key:"undoableChange",value:function(){return Qf.apply(this._container,arguments)}},{key:"change",value:function(){return Vf.apply(this.root,arguments)}},{key:"model",get:function(){return this.root.hierarchy},set:function(t){this._container.rebuildContentModel(t)}},{key:"rootContainer",get:function(){return this._container}},{key:"root",get:function(){var t;return null===(t=this._container)||void 0===t?void 0:t.model_layer}},{key:"findAll",value:function(){return this.root.findAll.apply(this.root,arguments)}},{key:"findFirst",value:function(){return this.root.findFirst.apply(this.root,arguments)}},{key:"findById",value:function(){return this._container.findById.apply(this._container,arguments)}},{key:"serialize",value:function(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}},{key:"align",value:function(){return ef.apply(this._container,arguments)}},{key:"place",value:function(){return ul.apply(this._container,arguments)}},{key:"distribute",value:function(){return of.apply(this._container,arguments)}},{key:"move",value:function(){return yf.apply(this._container,arguments)}},{key:"zorder",value:function(){return df.apply(this._container,arguments)}},{key:"symmetryX",value:function(){return Xf.apply(this._container,arguments)}},{key:"symmetryY",value:function(){return qf.apply(this._container,arguments)}},{key:"on",value:function(){return xf.apply(this._container,arguments)}},{key:"once",value:function(){return kf.apply(this._container,arguments)}},{key:"off",value:function(){return this._container&&Sf.apply(this._container,arguments)}},{key:"centerTo",value:function(t,e){return this.root.centerTo(t,e)}},{key:"mode",get:function(){return this.app.mode},set:function(t){void 0!==t&&(this.app.mode=t)}},{key:"toDataURL",value:function(){return Uf.apply(this._container,arguments)}},{key:"group",value:function(){return Yf.apply(this._container,arguments)}},{key:"ungroup",value:function(){return Gf.apply(this._container,arguments)}},{key:"fit",value:function(t){var e=this;this._container.once("redraw",(function(){return e._container.fit(t)})),this._container.invalidate()}},{key:"fitMode",get:function(){return this._container.fitMode}},{key:"ids",get:function(){return Kf.apply(this._container)}},{key:"data",get:function(){return this._container.data},set:function(t){this._container.data=t}},{key:"dataByRefid",get:function(){return this._container.dataByRefid},set:function(t){this._container.dataByRefid=t}},{key:"values",get:function(){return this._container.values},set:function(t){this._container.values=t}},{key:"valuesByRefid",get:function(){return this._container.valuesByRefid},set:function(t){this._container.valuesByRefid=t}},{key:"baseUrl",get:function(){return this.app.baseUrl},set:function(t){this.app.baseUrl=t}},{key:"startAddMode",value:function(){return sl.apply(this._container,arguments)}},{key:"startStylePasteMode",value:function(){return cl.apply(this._container,arguments)}},{key:"stopStylePasteMode",value:function(){return fl.apply(this._container,arguments)}},{key:"startDatabindPasteMode",value:function(){return ll.apply(this._container,arguments)}},{key:"stopDatabindPasteMode",value:function(){return hl.apply(this._container,arguments)}}],r=[{key:"residents",get:function(){return by}},{key:"residentsCount",get:function(){return by}},{key:"DPPX",get:function(){return Vo}}],e&&vy(t.prototype,e),r&&vy(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,r}();function xy(t){return xy="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},xy(t)}function ky(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Sy(n.key),n)}}function Sy(t){var e=function(t){if("object"!=xy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=xy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==xy(e)?e:e+""}var Oy=new(function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)},(e=[{key:"load",value:function(t){}},{key:"save",value:function(t,e){}},{key:"clear",value:function(t){}}])&&ky(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}());function _y(t){var e=t.target,r=t.model,n=t.style,o=t.layers,i=void 0===o?[]:o,a=t.handlers,u=void 0===a?[]:a,s=t.mode,c=void 0===s?zo:s,f=t.refProvider,l=t.dataSubscriptionProvider,h=t.dataStorage,p=void 0===h?Oy:h,y=t.baseUrl,d=t.fitMode,v=null;if("string"==typeof e){if(!(v=document.getElementById(e)))throw"target element '".concat(e,"' is not exist");if(v.firstChild)throw"target element '".concat(e,"' is not empty")}else v=e;v&&v.style&&(v.style.position="absolute",v.style.cursor="default",v.style.overflow="hidden");var g=new $p(c,f);return g.baseUrl=y,g.dataSubscriptionProvider=l,g.dataStorage=p,new wy(new Xp({target_element:v,model:r,style:n,layers:i,handlers:u,fitMode:d},g))}function Ey(t){return Ey="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},Ey(t)}function Ay(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Py(n.key),n)}}function Py(t){var e=function(t){if("object"!=Ey(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ey(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ey(e)?e:e+""}function jy(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(jy=function(){return!!t})()}function Ty(t,e,r,n){var o=My(Ry(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function My(){return My="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Ry(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},My.apply(null,arguments)}function Ry(t){return Ry=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ry(t)}function Iy(t,e){return Iy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Iy(t,e)}var Cy=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];const Ly=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Ry(e),function(t,e){if(e&&("object"==Ey(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,jy()?Reflect.construct(e,r||[],Ry(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Iy(t,e)}(e,t),r=e,n=[{key:"isHTMLElement",value:function(){return!0}},{key:"isShadowable",value:function(){return!0}},{key:"element",get:function(){return this._element},set:function(t){this._element=t}},{key:"tagName",get:function(){return this.get("type")}},{key:"setElementProperties",value:function(t){throw new Error("Not Implemented Yet")}},{key:"createElement",value:function(){var t=this;this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),Cy.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),Ko.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),this.oncreate_element&&this.oncreate_element(this.element))}},{key:"userInputEventHandler",value:function(t){hp(this,t.type,t),t.stopPropagation()}},{key:"reposition",value:function(){this.element&&ia(this)}},{key:"disposeElement",value:function(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}},{key:"ready",value:function(){Ty(e,"ready",this,3)([]),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}},{key:"dispose",value:function(){this.disposeElement(this),Ty(e,"dispose",this,3)([])}},{key:"hasTextProperty",get:function(){return!0}},{key:"textHidden",get:function(){return!0}},{key:"onchange",value:function(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}},{key:"isDescendible",value:function(t){return t.isHTMLElement()}}],n&&Ay(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function Dy(t){return Dy="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},Dy(t)}function By(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ny(n.key),n)}}function Ny(t){var e=function(t){if("object"!=Dy(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Dy(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Dy(e)?e:e+""}function Fy(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Fy=function(){return!!t})()}function zy(t){return zy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zy(t)}function Uy(t,e){return Uy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Uy(t,e)}var Yy={x:1,y:1},Gy={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},Hy={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"}],help:"scene/component/container"},Wy=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=zy(e),function(t,e){if(e&&("object"==Dy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Fy()?Reflect.construct(e,r||[],zy(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Uy(t,e)}(e,t),r=e,(n=[{key:"tagName",get:function(){return"div"}},{key:"nature",get:function(){return Hy}},{key:"setElementProperties",value:function(t){}},{key:"layout",get:function(){return ku.get(this.get("layout"))||Ou}},{key:"reposition",value:function(){if(this.element){var t=this,e=t.state,r=e.id,n=e.class,o=e.scale,i=void 0===o?Yy:o,a=t.rotation,u=void 0===a?0:a,s=t.hidden,c=t.bounds,f=c.left,l=c.top,h=c.width/2,p=c.height/2,y=t.element;y.hidden=s,r&&(y.id=r),n&&(y.className=n),Object.assign(y.style,Gy,{left:f+"px",top:l+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var d=t.delta(),v=(i&&i.x||1)*d.sx,g=(i&&i.y||1)*d.sy,b=(u||0)+d.theta,m=d.tx||0,w=d.ty||0;y.style.transform="translate(".concat(m+h,"px, ").concat(w+p,"px) rotate(").concat(b,"rad) translate(").concat(-h,"px, ").concat(-p,"px) scale(").concat(v,", ").concat(g,") perspective(1px)")}}}])&&By(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ly(ps));Ya.register("container",Wy);var Xy=Math.sqrt(3);function qy(t,e,r,n,o){var i,a,u,s,c=5+o,f=r.x,l=r.y,h=n.x,p=n.y;if(Math.abs(f-h)>c&&Math.abs(l-p)>c){var y=(p-l)/(h-f),d=l-y*f;if(Math.abs(e-(y*t+d))>c)return!1}return f>h?(a=f,i=h):(a=h,i=f),l>p?(s=l,u=p):(s=p,u=l),!(a+5<t||i-5>t||s+5<e||u-5>e)}function Vy(t,e,r){for(var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:2,o=0;o<r.length-1;o++)if(qy(t,e,r[o],r[o+1],n))return!0;return!1}function Qy(t,e,r,n){if("arrow"!=t.slice(-5))return r;r.x,r.y;var o=Math.atan2(n.y-r.y,n.x-r.x),i=1.5*e;return{x:r.x+Math.cos(o)*i,y:r.y+Math.sin(o)*i}}function Ky(t,e,r){var n=r.lineWidth,o=void 0===n?2:n,i=r.strokeStyle,a=void 0===i?"#000000":i,u=r.lineCap,s=void 0!==u&&u,c=r.alpha,f=void 0===c?1:c,l=r.begin,h=void 0===l?"none":l,p=r.end,y=void 0===p?"none":p,d=r.beginSize,v=void 0===d?"size5":d,g=r.endSize,b=void 0===g?"size5":g;if(("none"!=h||"none"!=y)&&(o=Number(o)||2,t.lineCap=s,t.lineWidth=o,t.strokeStyle=a,t.fillStyle=a,t.globalAlpha*=f,"none"!=h&&Jy(t,e[0],e[1],o,h,Zy(v,o)),"none"!=y)){var m=e.length;Jy(t,e[m-1],e[m-2],o,y,Zy(b,o))}}function Jy(t,e,r,n,o,i){var a=e.x,u=e.y,s=Math.atan2(r.y-u,r.x-a);switch(t.beginPath(),t.translate(a,u),t.rotate(s),o){case"oval":t.ellipse(0,0,i.X,i.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-i.X,0),t.lineTo(0,-i.Y),t.lineTo(i.X,0),t.lineTo(0,i.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(Xy*i.X,-i.Y),t.lineTo(Xy*i.X,i.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(Xy*i.X,-i.Y),t.lineTo(-i.X/1.5+Xy*i.X,0),t.lineTo(Xy*i.X,i.Y),t.fill();break;case"open-arrow":t.moveTo(Xy*i.X+n,-i.Y),t.lineTo(n,0),t.lineTo(Xy*i.X+n,i.Y),t.stroke()}t.rotate(-s),t.translate(-a,-u),t.closePath()}function Zy(t,e){var r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}function $y(t,e){if(t){if("string"==typeof t)return td(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?td(t,e):void 0}}function td(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function ed(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function rd(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ed(Object(r),!0).forEach((function(e){nd(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ed(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function nd(t,e,r){return(e=hd(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function od(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(od=function(){return!!t})()}function id(){return id="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=ad(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},id.apply(null,arguments)}function ad(t){return ad=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ad(t)}function ud(t,e){return ud=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ud(t,e)}function sd(t){return sd="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},sd(t)}function cd(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function fd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,hd(n.key),n)}}function ld(t,e,r){return e&&fd(t.prototype,e),r&&fd(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function hd(t){var e=function(t){if("object"!=sd(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=sd(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==sd(e)?e:e+""}var pd="N",yd="S",dd="E",vd="W",gd=function(){return ld((function t(e){var r=e.component,n=e.anchor,o=e.position,i=e.self;cd(this,t),this.component=r,this._anchorName=n,this._position=o,this.self=i}),[{key:"position",get:function(){var t=this.anchor;if(t){var e=t.position,r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position},set:function(t){var e=t.x,r=t.y;this._position={x:e,y:r}}},{key:"anchor",get:function(){var t;return null===(t=this.component)||void 0===t?void 0:t.findAnchor(this._anchorName)}},{key:"direction",get:function(){var t=this.component.bounds,e=this.anchor;if(!e)return dd;var r=e.position;return r.y<=t.top?pd:r.y>=t.top+t.height?yd:r.x<=t.left?vd:dd}},{key:"boundaryPosition",get:function(){var t=this.anchor;if(t){var e=t.position,r=0,n=0;switch(this.direction){case yd:n=20;break;case pd:n=-20;break;case vd:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};var o=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(o.x,o.y)}}}])}(),bd=function(t){function e(){return cd(this,e),t=this,n=arguments,r=ad(r=e),function(t,e){if(e&&("object"==sd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,od()?Reflect.construct(r,n||[],ad(t).constructor):r.apply(t,n));var t,r,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ud(t,e)}(e,t),ld(e,[{key:"isLine",value:function(){return!0}},{key:"replaceRefids",value:function(t){var e=this;["from","to"].forEach((function(r){var n=e.get(r);if(null!=n&&n.component){var o=t.get(n.component)||n.component;e.set(r,rd(rd({},n),{},{component:o}))}}))}},{key:"fromEnd",get:function(){if(this.parent&&!this._fromEnd){var t,e=this.getState("from")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._fromEnd=new gd({component:i,fromto:"from",anchor:n,position:o,self:this})}return this._fromEnd}},{key:"from",get:function(){return this.getState("from")},set:function(t){delete this._fromEnd,this.set("from",t)}},{key:"toEnd",get:function(){if(this.parent&&!this._toEnd){var t,e=this.getState("to")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._toEnd=new gd({component:i,fromto:"to",anchor:n,position:o,self:this})}return this._toEnd}},{key:"to",get:function(){return this.getState("to")},set:function(t){delete this._toEnd,this.set("to",t)}},{key:"move",value:function(t,r){var n,o,i,a,u,s,c,f=t.x,l=t.y;r&&(this.from={position:(null===(n=this._fromEnd)||void 0===n?void 0:n.position)||(null===(o=this.getState("from"))||void 0===o?void 0:o.position)||{x:0,y:0}},this.to={position:(null===(i=this._toEnd)||void 0===i?void 0:i.position)||(null===(a=this.getState("to"))||void 0===a?void 0:a.position)||{x:0,y:0}}),(u=e,s=this,"function"==typeof(c=id(ad(1&3?u.prototype:u),"move",s))?function(t){return c.apply(s,t)}:c)([{x:f,y:l},r])}},{key:"render",value:function(t){var e=this.state,r=e.begin,n=void 0===r?"none":r,o=e.end,i=void 0===o?"none":o,a=e.lineWidth,u=e.round,s=void 0===u?0:u,c=this.drawPath;Ky(t,c,this.state),t.beginPath();var f,l=Qy(n,a,c[0],c[1]),h=Qy(i,a,c[c.length-1],c[c.length-2]);c=[l].concat(function(t){if(Array.isArray(t))return td(t)}(f=c.slice(1,-1))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(f)||$y(f)||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.")}(),[h]);var p={x:l.x,y:l.y};t.moveTo(l.x,l.y);for(var y=1;y<c.length;y++){var d=p;p=c[y];var v=c[y+1];if(d.x!==p.x||d.y!==p.y){if(!v){t.lineTo(p.x,p.y);break}var g,b=0!==(g=Math.sqrt((d.x-p.x)*(d.x-p.x)+(d.y-p.y)*(d.y-p.y)))?Math.atan2(d.x-p.x,d.y-p.y):0,m=Math.sin(b)*Math.min(s,g/2)+p.x,w=Math.cos(b)*Math.min(s,g/2)+p.y,x=s>0||0!==g?{x:m,y:w}:p;b=0!==(g=Math.sqrt((v.x-p.x)*(v.x-p.x)+(v.y-p.y)*(v.y-p.y)))?Math.atan2(v.x-p.x,v.y-p.y):0,m=Math.sin(b)*Math.min(s,g/2)+p.x,w=Math.cos(b)*Math.min(s,g/2)+p.y;var k=s>0||0!==g?{x:m,y:w}:p;t.lineTo(x.x,x.y),s>0&&t.quadraticCurveTo(p.x,p.y,k.x,k.y)}}this.drawStroke(t)}},{key:"contains",value:function(t,e){var r=this.state.lineWidth;return Vy(t,e,this.drawPath,r)}},{key:"resizable",get:function(){return!1}},{key:"mutable",get:function(){return!0}},{key:"rotatable",get:function(){return!1}},{key:"path",get:function(){var t,e,r=this.state,n=r.from,o=r.to,i=this.state,a=i.x1,u=i.y1,s=i.x2,c=i.y2;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==n?void 0:n.position)||{x:a,y:u},(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==o?void 0:o.position)||{x:s,y:c}]},set:function(t){var e,r,n=(r=2,function(t){if(Array.isArray(t))return t}(e=t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(e,r)||$y(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=n[0],i=n[1],a=this.state,u=a.from,s=a.to;delete this._fromEnd,delete this._toEnd,this.set({from:rd(rd({},u),{},{position:o}),to:rd(rd({},s),{},{position:i})})}},{key:"textBounds",get:function(){for(var t,e,r=this.drawPath,n=0,o=1;o<r.length;o++){var i=r[o-1],a=r[o],u=(i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y);u>n&&(n=Math.ceil(u),t=i,e=a)}var s=this.state,c=s.paddingTop,f=s.paddingLeft,l=s.paddingRight,h=s.paddingBottom;return h||(h=0),c||(c=0),f||(f=0),l||(l=0),{left:Math.min(t.x,e.x)+f,top:Math.min(t.y,e.y)+c,width:Math.max(Math.abs(t.x-e.x)-f-l,0),height:Math.max(Math.abs(t.y-e.y)-c-h,0)}}},{key:"decorators",get:function(){return["decotag"]}}])}(Ya);function md(t){return md="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},md(t)}function wd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,xd(n.key),n)}}function xd(t){var e=function(t){if("object"!=md(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=md(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==md(e)?e:e+""}function kd(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(kd=function(){return!!t})()}function Sd(t){return Sd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Sd(t)}function Od(t,e){return Od=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Od(t,e)}bd.getTipNeckPos=Qy,bd.containedInPath=Vy,bd.drawEndTips=Ky,Ya.register("line",bd);var _d={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},Ed=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Sd(e),function(t,e){if(e&&("object"==md(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,kd()?Reflect.construct(e,r||[],Sd(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Od(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}},{key:"render",value:function(t){var e=this.state,r=e.cx,n=e.cy,o=e.rx,i=e.ry,a=e.startAngle,u=e.endAngle,s=e.anticlockwise;t.beginPath(),t.ellipse(r,n,Math.abs(o),Math.abs(i),0,a||0,u||2*Math.PI,s)}},{key:"path",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ry;return[{x:e-n,y:r-o},{x:e+n,y:r-o},{x:e+n,y:r+o},{x:e-n,y:r+o}]},set:function(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=(t-n)/(2*r.rx-.5),a=(e-o)/(2*r.ry-.5);return i*i+a*a<.25}},{key:"outline",value:function(t){return function(t,e){var r=t.model,n=r.cx,o=r.cy,i=r.rx,a=r.ry,u=2*Math.PI*e,s=n+i*Math.cos(u),c=o+a*Math.sin(u);return t.transcoordS2T(s,c)}(this,t)}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,u=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:u}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:u}}]}(this)}},{key:"nature",get:function(){return _d}}])&&wd(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(qs(Ka));function Ad(t){return Ad="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},Ad(t)}function Pd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,jd(n.key),n)}}function jd(t){var e=function(t){if("object"!=Ad(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ad(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ad(e)?e:e+""}function Td(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Td=function(){return!!t})()}function Md(t){return Md=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Md(t)}function Rd(t,e){return Rd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Rd(t,e)}Ya.memoize(Ed.prototype,"path",!1),Ya.register("ellipse",Ed);var Id={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}},Cd={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"},Ld=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Md(e),function(t,e){if(e&&("object"==Ad(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Td()?Reflect.construct(e,r||[],Md(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Rd(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}},{key:"mutable",get:function(){return!0}},{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){return this.state.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,u=o.x,s=o.y,c=r[a].x,f=r[a].y;s>e!=f>e&&t<(c-u)*(e-s)/(f-s)+u&&(n=!n)})),n}},{key:"controls",get:function(){var t=this.path;return t.map((function(e,r){var n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:Id}}))}},{key:"nature",get:function(){return Cd}}])&&Pd(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ka);function Dd(t){return Dd="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},Dd(t)}function Bd(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Nd(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Bd(Object(r),!0).forEach((function(e){Fd(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Bd(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Fd(t,e,r){return(e=Yd(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function zd(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Ud(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Yd(n.key),n)}}function Yd(t){var e=function(t){if("object"!=Dd(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Dd(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Dd(e)?e:e+""}function Gd(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Gd=function(){return!!t})()}function Hd(t){return Hd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Hd(t)}function Wd(t,e){return Wd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Wd(t,e)}Ya.memoize(Ld.prototype,"controls",!1),Ya.register("polygon",Ld);var Xd={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}},qd={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"},Vd=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Hd(e),function(t,e){if(e&&("object"==Dd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Gd()?Reflect.construct(e,r||[],Hd(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Wd(t,e)}(e,t),r=e,(n=[{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){var t,e,r=this.state,n=r.from,o=r.to,i=this.state.path;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==n?void 0:n.position)||i[0]].concat(function(t){return function(t){if(Array.isArray(t))return zd(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return zd(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?zd(t,e):void 0}}(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.")}()}(i.slice(1,-1)),[(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==o?void 0:o.position)||i[i.length-1]])},set:function(t){var e=this.state,r=e.from,n=e.to;delete this._fromEnd,delete this._toEnd,this.set({from:Nd(Nd({},r),{},{position:t[0]}),to:Nd(Nd({},n),{},{position:t[t.length-1]}),path:t})}},{key:"controls",get:function(){for(var t=this.path,e=[],r=0;r<t.length-1;r++){var n=t[r],o=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:Xd}),e.push({x:(n.x+o.x)/2,y:(n.y+o.y)/2,handler:Xd}),r==t.length-2&&e.push({x:o.x,y:o.y,handler:Xd})}return e}},{key:"nature",get:function(){return qd}}])&&Ud(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(bd);function Qd(t){return Qd="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},Qd(t)}function Kd(t){return function(t){if(Array.isArray(t))return Jd(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Jd(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Jd(t,e):void 0}}(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 Jd(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Zd(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function $d(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Zd(Object(r),!0).forEach((function(e){tv(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Zd(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function tv(t,e,r){return(e=rv(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ev(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,rv(n.key),n)}}function rv(t){var e=function(t){if("object"!=Qd(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Qd(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Qd(e)?e:e+""}function nv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(nv=function(){return!!t})()}function ov(t){return ov=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ov(t)}function iv(t,e){return iv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},iv(t,e)}Ya.register("polyline",Vd);var av={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"},uv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=ov(e),function(t,e){if(e&&("object"==Qd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,nv()?Reflect.construct(e,r||[],ov(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&iv(t,e)}(e,t),r=e,(n=[{key:"pathExtendable",get:function(){return!1}},{key:"drawPath",get:function(){var t=this.path[0],e=this.path[1],r=this.fromEnd||{},n=r.component,o=r.direction,i=r.boundaryPosition,a=void 0===i?t:i,u=this.toEnd||{},s=u.component,c=u.direction,f=u.boundaryPosition,l=void 0===f?e:f,h=[a,l],p=[];a&&p.push(a);var y=null==n?void 0:n.bounds;if(y){var d=n.transcoordS2T(y.left,y.top);d=this.transcoordT2P(d.x,d.y),y=$d($d({},y),{},{left:d.x,top:d.y})}var v=y?{left:y.left-20,top:y.top-20,width:y.width+40,height:y.height+40}:{left:a.x,top:a.y,width:0,height:0};y=y||v;var g=null==s?void 0:s.bounds;g&&(d=s.transcoordS2T(g.left,g.top),d=this.transcoordT2P(d.x,d.y),g=$d($d({},g),{},{left:d.x,top:d.y}));var b=g?{left:g.left-20,top:g.top-20,width:g.width+40,height:g.height+40}:{left:l.x,top:l.y,width:0,height:0};g=g||b;var m,w,x,k,S,O,_,E,A,P,j=[v,b],T=v.left>b.left?b.left:v.left,M=v.top>b.top?b.top:v.top,R={left:T,top:M,width:v.left+v.width>b.left+b.width?v.left+v.width-T:b.left+b.width-T,height:v.top+v.height>b.top+b.height?v.top+v.height-M:b.top+b.height-M},I=0,C=0;y.left+y.width<g.left?(k=0,S=1,A=o,P=c,m=(y.left+y.width+g.left)/2,I=g.left-m):g.left+g.width<y.left&&(k=1,S=0,A=c,P=o,m=(y.left+g.width+g.left)/2,I=y.left-m),y.top+y.height<g.top?(x=0,O=1,_=o,E=c,w=(y.top+y.height+g.top)/2,C=g.top-w):g.top+g.height<y.top&&(x=1,O=0,_=c,E=o,w=(y.top+g.height+g.top)/2,C=y.top-w);var L=[];if(m&&I>C){switch(P){case vd:switch(A){case dd:L.push({x:m,y:h[k].y}),L.push({x:m,y:h[S].y});break;case vd:var D=j[k].top+j[k].height/2>h[S].y?Math.min(j[k].top,h[S].y):Math.max(j[k].top+j[k].height,h[S].y);L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;case pd:case yd:D=A===yd?Math.max(h[k].y,h[S].y):Math.min(h[k].y,h[S].y),L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;default:return this.path}break;case dd:switch(A){case dd:var B=D=h[k].y<h[S].y?Math.min(j[S].top,h[k].y):Math.max(j[S].top+j[S].height,h[k].y);break;case vd:B=D=void 0!==w?w:h[k].y<h[S].y?R.top-.5*I:R.top+R.height+.5*I;break;case yd:B=D=void 0!==w?Math.max(w,h[k].y):R.top+R.height;break;case pd:B=D=w?Math.min(w,j[k].top):R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case yd:switch(A){case dd:D=h[k].y,B=h[k].y>h[S].y?h[k].y:j[S].top+j[S].height;break;case vd:B=D=w?Math.max(w,j[S].top+j[S].height):R.top+R.height;break;case yd:B=D=R.top+R.height;break;case pd:D=w?Math.min(w,j[k].top):j[k].top,B=w?Math.max(w,j[S].top+j[S].height):j[S].top+j[S].height;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case pd:switch(A){case dd:D=h[k].y,B=h[k].y<h[S].y?h[k].y:j[S].top;break;case vd:B=D=w?Math.min(w,j[S].top):R.top;break;case yd:D=void 0!==w?Math.max(w,h[k].y):h[k].y,B=void 0!==w?Math.min(w,h[S].y):h[S].y;break;case pd:B=D=R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;default:return this.path}p.push.apply(p,Kd(0===k?L:L.reverse()))}else if(w){switch(E){case pd:switch(_){case yd:L.push({x:h[x].x,y:w}),L.push({x:h[O].x,y:w});break;case pd:var N=j[x].left+j[x].width/2>h[O].x?Math.min(j[x].left,h[O].x):Math.max(j[x].left+j[x].width,h[O].x);L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[O].x,y:w});break;case vd:N=Math.min(h[x].x,h[O].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[O].x,y:w});break;case dd:N=Math.max(h[x].x,h[O].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[O].x,y:w});break;default:return this.path}break;case yd:switch(_){case vd:var F=N=R.left;break;case dd:F=N=void 0!==m?Math.max(m,h[x].x):R.left+R.width;break;case pd:F=N=void 0!==m?m:h[x].x<h[O].x?R.left-.5*C:R.left+R.width+.5*C;break;case yd:N=h[x].x,F=h[x].x<h[O].x?Math.min(j[O].left,h[x].x):Math.max(j[O].left+j[O].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[O].y});break;case dd:switch(_){case vd:N=void 0!==m?Math.min(m,h[x].x):h[x].x,F=void 0!==m?Math.max(m,h[O].x):h[O].x;break;case dd:F=N=R.left+R.width;break;case pd:F=N=void 0!==m?Math.max(m,h[O].x):R.left+R.width;break;case yd:N=h[x].x,F=Math.max(j[O].left+j[O].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[O].y});break;case vd:switch(_){case vd:F=N=R.left;break;case dd:N=void 0!==m?Math.max(m,h[x].x):h[x].x,F=void 0!==m?Math.min(m,h[O].x):h[O].x;break;case pd:F=N=R.left;break;case yd:N=h[x].x<h[O].x?Math.min(j[O].left,h[x].x):h[x].x,F=Math.min(N,h[O].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[O].y});break;default:return this.path}p.push.apply(p,Kd(0===x?L:L.reverse()))}else switch(o){case pd:switch(c){case pd:var z=R.top;p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case yd:var U=R.left+R.width;p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top+R.height}),p.push({x:h[1].x,y:R.top+R.height});break;case dd:U=h[1].y<h[0].y&&h[1].x<h[0].x?h[0].x:R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;case vd:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case yd:switch(c){case pd:U=R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top}),p.push({x:h[1].x,y:R.top});break;case yd:case dd:case vd:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;case vd:switch(c){case pd:U=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].x:R.left,z=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].y:Math.min(R.top,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case yd:U=R.left,z=Math.max(R.top+R.height,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case dd:U=R.left+R.width,p.push({x:h[0].x,y:R.top}),p.push({x:U,y:R.top}),p.push({x:U,y:h[1].y});break;case vd:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case dd:switch(c){case pd:z=h[0].y<h[1].y&&h[0].x<h[1].x?h[0].y:R.top,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case yd:z=h[0].y>h[1].y&&h[0].x<h[1].x?h[0].y:R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case dd:case vd:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;default:return this.path}return l&&p.push(l),[t].concat(p,[e]).filter((function(t,e,r){if(0===e)return!0;var n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter((function(t,e,r){if(0===e||e>=r.length-1)return!0;var n=r[e-1],o=r[e+1];return!(t.x===n.x&&t.x===o.x||t.y===n.y&&t.y===o.y)}))}},{key:"nature",get:function(){return av}}])&&ev(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(bd);function sv(t){return sv="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},sv(t)}function cv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,fv(n.key),n)}}function fv(t){var e=function(t){if("object"!=sv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=sv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==sv(e)?e:e+""}function lv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(lv=function(){return!!t})()}function hv(t,e,r,n){var o=pv(yv(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function pv(){return pv="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=yv(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},pv.apply(null,arguments)}function yv(t){return yv=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},yv(t)}function dv(t,e){return dv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},dv(t,e)}Ya.register("ortholine",uv);var vv={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"},gv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=yv(e),function(t,e){if(e&&("object"==sv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,lv()?Reflect.construct(e,r||[],yv(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&dv(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){hv(e,"dispose",this,3)([]),this._offcanvas=null,this._image=null}},{key:"render",value:function(t){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height,u=r.isGray,s=void 0!==u&&u,c=r.alpha,f=void 0===c?1:c,l=r.src;if(this.prepareIf(!this._image&&l),t.beginPath(),t.globalAlpha*=f,this._image&&this._image.complete)if(s&&this._offcanvas)t.drawImage(this._offcanvas,n,o,i,a);else try{t.drawImage(this._image,n,o,i,a)}catch(r){t.drawImage(e.noimage,n,o,i,a)}else!this.app.isViewMode&&t.drawImage(e.noimage,n,o,i,a)}},{key:"nature",get:function(){return vv}},{key:"hasTextProperty",get:function(){return!1}},{key:"ready",value:function(){hv(e,"ready",this,3)([]),this.prepareIf(!this._image&&this.state.src)}},{key:"prepare",value:function(t,e){var r=this,n=this.state,o=n.src,i=n.crossOrigin;if(o){this._image=new Image;try{i&&(this._image.crossOrigin=i),this._image.src=this.app.url(o)||""}catch(t){return void e(t)}this._image.onload=function(){if(r.get("isGray")){var e=r._image.width,n=r._image.height;r._offcanvas=Ya.createCanvas(e,n);var o=r._offcanvas.getContext("2d");o.drawImage(r._image,0,0);var i=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return uo("Get Image Data Error: "+t.message),null}for(var o=n.data,i=0;i<e*r*4;i+=4){var a=o[i],u=o[i+1],s=o[i+2],c=parseInt((a+u+s)/3);n.data[i]=c,n.data[i+1]=c,n.data[i+2]=c}return n}(o,e,n);o.putImageData(i,0,0)}t(r)},this._image.onerror=function(t){r._image&&!r._image.currentSrc&&(r._image=null),e(t)}}else t(this)}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"onchange",value:function(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}],o=[{key:"noimage",get:function(){return e.NOIMAGE||(e.NOIMAGE=new Image,e.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),e.NOIMAGE}}],n&&cv(r.prototype,n),o&&cv(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(au(Ka));function bv(t){return bv="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},bv(t)}function mv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,wv(n.key),n)}}function wv(t){var e=function(t){if("object"!=bv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=bv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==bv(e)?e:e+""}function xv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(xv=function(){return!!t})()}function kv(t){return kv=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},kv(t)}function Sv(t,e){return Sv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Sv(t,e)}Ya.register("image-view",gv);var Ov=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=kv(e),function(t,e){if(e&&("object"==bv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,xv()?Reflect.construct(e,r||[],kv(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Sv(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}}])&&mv(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ly(au(Ya))),_v=r(60579);function Ev(t){return Ev="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},Ev(t)}function Av(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=Array(e);r<e;r++)n[r]=t[r];return n}function Pv(){Pv=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function O(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function _(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==Ev(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(Ev(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},O(_.prototype),c(_.prototype,u,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function jv(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function Tv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Mv(n.key),n)}}function Mv(t){var e=function(t){if("object"!=Ev(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Ev(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Ev(e)?e:e+""}function Rv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Rv=function(){return!!t})()}function Iv(){return Iv="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Cv(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Iv.apply(null,arguments)}function Cv(t){return Cv=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Cv(t)}function Lv(t,e){return Lv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Lv(t,e)}var Dv={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"},Bv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Cv(e),function(t,e){if(e&&("object"==Ev(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Rv()?Reflect.construct(e,r||[],Cv(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Lv(t,e)}(e,t),r=e,n=[{key:"oncreate_element",value:(o=Pv().mark((function t(e){var r,n,o;return Pv().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:r=this.state,n=r.src,o=r.play,this.onchangesrc(n),this.onchangeplay(o);case 3:case"end":return t.stop()}}),t,this)})),i=function(){var t=this,e=arguments;return new Promise((function(r,n){var i=o.apply(t,e);function a(t){jv(i,r,n,a,u,"next",t)}function u(t){jv(i,r,n,a,u,"throw",t)}a(void 0)}))},function(t){return i.apply(this,arguments)})},{key:"buildImg",value:function(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}},{key:"onchange",value:function(t,r){var n,o,i;(n=e,o=this,"function"==typeof(i=Iv(Cv(1&3?n.prototype:n),"onchange",o))?function(t){return i.apply(o,t)}:i)([t,r]),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}},{key:"setElementProperties",value:function(t){}},{key:"onchangeplay",value:function(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}},{key:"onchangesrc",value:function(t){var e=this,r=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),r.src=t,r.setAttribute("rel:animated_src",t),r.setAttribute("rel:auto_play",0),this._superGif=new _v.U(r,{autoPlay:!1}),this._superGif.init();var n,o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return Av(t,e);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Av(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},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,a=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(u)throw i}}}}(this.element.children);try{for(o.s();!(n=o.n()).done;){var i=n.value;i.style.width="100%",i.style.height="100%"}}catch(t){o.e(t)}finally{o.f()}var a=this._superGif.getCanvas();a.style.width="100%",a.style.height="100%",this._superGif.load((function(){setTimeout((function(){e._superGif.moveTo(0),e.play&&e._superGif.play()}),100)}))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}},{key:"src",get:function(){return this.getState("src")},set:function(t){this.set("src",t)}},{key:"play",get:function(){return this.getState("play")},set:function(t){this.setState("play",t)}},{key:"nature",get:function(){return Dv}},{key:"tagName",get:function(){return"div"}}],n&&Tv(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o,i}(Ov);function Nv(t){return Nv="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},Nv(t)}function Fv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,zv(n.key),n)}}function zv(t){var e=function(t){if("object"!=Nv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Nv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Nv(e)?e:e+""}function Uv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Uv=function(){return!!t})()}function Yv(t,e,r,n){var o=Gv(Hv(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Gv(){return Gv="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Hv(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Gv.apply(null,arguments)}function Hv(t){return Hv=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Hv(t)}function Wv(t,e){return Wv=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Wv(t,e)}Ya.register("gif-view",Bv);var Xv={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"attachment-selector",label:"src",name:"src",property:{category:"audio"}},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"},qv=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Hv(e),function(t,e){if(e&&("object"==Nv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Uv()?Reflect.construct(e,r||[],Hv(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Wv(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){Yv(e,"dispose",this,3)([]),this.started=!1,delete this._audio}},{key:"ready",value:function(){var t=this;Yv(e,"ready",this,3)([]),this._audio=new Audio,this._audio.addEventListener("canplay",(function(){t.started&&t._audio.play()}));var r=this.state,n=r.src,o=void 0===n?"":n,i=r.loop,a=void 0!==i&&i,u=r.started,s=void 0!==u&&u;this.onchangeSrc(o),this.onchangeLoop(a),this.onchangeStarted(s)}},{key:"render",value:function(t){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height;r.src,t.beginPath(),this.drawImage(t,e.image,n,o,i,a)}},{key:"nature",get:function(){return Xv}},{key:"hasTextProperty",get:function(){return!1}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"started",get:function(){return!!this.get("started")},set:function(t){this.set("started",t)}},{key:"start",value:function(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}},{key:"pause",value:function(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}},{key:"onchangeSrc",value:function(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}},{key:"onchangeStarted",value:function(t){var e=this._audio;t?4==e.readyState&&e.play():e.pause()}},{key:"onchangeLoop",value:function(t){this._audio.loop=t}},{key:"onchange",value:function(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}},{key:"ondblclick",value:function(t){this.started=!this.started}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}],o=[{key:"image",get:function(){return e.IMAGE||(e.IMAGE=new Image,e.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),e.IMAGE}}],n&&Fv(r.prototype,n),o&&Fv(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(au(Ka));function Vv(t){return Vv="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},Vv(t)}function Qv(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Kv(n.key),n)}}function Kv(t){var e=function(t){if("object"!=Vv(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Vv(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Vv(e)?e:e+""}function Jv(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Jv=function(){return!!t})()}function Zv(t){return Zv=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Zv(t)}function $v(t,e){return $v=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},$v(t,e)}Ya.register("audio",qv);var tg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Zv(e),function(t,e){if(e&&("object"==Vv(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Jv()?Reflect.construct(e,r||[],Zv(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&$v(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!0}}])&&Qv(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(au(Ya));function eg(t){return eg="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},eg(t)}function rg(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ag(n.key),n)}}function ng(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(ng=function(){return!!t})()}function og(t,e,r,n){return og="undefined"!=typeof Reflect&&Reflect.set?Reflect.set:function(t,e,r,n){var o,i=cg(t,e);if(i){if((o=Object.getOwnPropertyDescriptor(i,e)).set)return o.set.call(n,r),!0;if(!o.writable)return!1}if(o=Object.getOwnPropertyDescriptor(n,e)){if(!o.writable)return!1;o.value=r,Object.defineProperty(n,e,o)}else ig(n,e,r);return!0},og(t,e,r,n)}function ig(t,e,r){return(e=ag(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ag(t){var e=function(t){if("object"!=eg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=eg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==eg(e)?e:e+""}function ug(t,e,r,n){var o=sg(fg(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function sg(){return sg="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=cg(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},sg.apply(null,arguments)}function cg(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=fg(t)););return t}function fg(t){return fg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},fg(t)}function lg(t,e){return lg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},lg(t,e)}Ya.register("text",tg);var hg=["refid","left","top","width","height","rotation","animation"],pg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=fg(e),function(t,e){if(e&&("object"==eg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,ng()?Reflect.construct(e,r||[],fg(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&lg(t,e)}(e,t),r=e,(n=[{key:"isGroup",value:function(){return!0}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,r){if("string"==typeof t)return this.set(ig({},t,r));var n=hg.reduce((function(e,r){return t.hasOwnProperty(r)&&(e[r]=t[r]),e}),{});return ug(e,"set",this,3)([n])}},{key:"capture",value:function(t,r,n){var o=ug(e,"capture",this,3)([t,r,n]);if(o!==this)return o}},{key:"bounds",get:function(){return ug(e,"bounds",this,1)},set:function(t){if(this.__MUTATING__)!function(t,e,r,n,o,i){(function(t,e,r,n,o){if(!og(t,e,r,n||t)&&o)throw new TypeError("failed to set property")})(fg(i?t.prototype:t),e,r,n,o)}(e,"bounds",t,this,1,1);else{var r=this.bounds,n=t.width/r.width,o=t.height/r.height;this.path=this.path.map((function(e){return{x:t.left+(e.x-r.left)*n,y:t.top+(e.y-r.top)*o}})),this.components&&this.components.forEach((function(t){if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*n,y:t.y*o}}))}));else{var e=t.bounds,r=t.center,i={x:r.x*(1-n),y:r.y*(1-o)},a=e.width*(1-n),u=e.height*(1-o),s=-(i.x-a/2),c=-(i.y-u/2);t.bounds={left:e.left+s,top:e.top+c,width:e.width*n,height:e.height*o}}}))}}},{key:"focusible",get:function(){return!1}},{key:"hasTextProperty",get:function(){return!1}},{key:"isIdentifiable",value:function(){return!1}},{key:"calculateBounds",value:function(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=Ya.union(this.components.map((function(t){return t.bounds})));return this.components.forEach((function(t){var r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){var e=this.state,r=e.top,n=e.left;e.scale,t.translate(n,r),this.layout.drawables(this).forEach((function(e){e.draw(t)})),t.translate(-n,-r)}}])&&rg(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Wy);function yg(t){return yg="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},yg(t)}function dg(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,vg(n.key),n)}}function vg(t){var e=function(t){if("object"!=yg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=yg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==yg(e)?e:e+""}function gg(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(gg=function(){return!!t})()}function bg(t,e,r,n){var o=mg(wg(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function mg(){return mg="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=wg(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},mg.apply(null,arguments)}function wg(t){return wg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},wg(t)}function xg(t,e){return xg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},xg(t,e)}Ya.register("group",pg);var kg={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"},Sg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=wg(e),function(t,e){if(e&&("object"==yg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,gg()?Reflect.construct(e,r||[],wg(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&xg(t,e)}(e,t),r=e,(n=[{key:"ref",get:function(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null},set:function(t){this.setState("ref",t)}},{key:"refScale",get:function(){var t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}},{key:"draw",value:function(t){this._drawing||(this._drawing=!0,bg(e,"draw",this,3)([t]),this._drawing=!1)}},{key:"prerender",value:function(t){if(bg(e,"prerender",this,3)([t]),this.ref){var r=this.ref.center,n=this.center,o=this.refScale;t.translate(n.x,n.y),t.scale(o.x,o.y),t.translate(-r.x,-r.y)}}},{key:"postrender",value:function(t){if(this.ref)return this.ref.postrender(t);bg(e,"postrender",this,3)([t])}},{key:"render",value:function(t){if(this.ref)return this.ref.render(t);this.state.round;var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),t.rect(r,n,o,i)}},{key:"nature",get:function(){return kg}},{key:"hasTextProperty",get:function(){return!1}}])&&dg(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(au(Ka));function Og(t){return Og="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},Og(t)}function _g(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Eg(n.key),n)}}function Eg(t){var e=function(t){if("object"!=Og(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Og(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Og(e)?e:e+""}function Ag(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Ag=function(){return!!t})()}function Pg(t){return Pg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Pg(t)}function jg(t,e){return jg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},jg(t,e)}Ya.memoize(Sg.prototype,"ref",!1),Ya.memoize(Sg.prototype,"refScale",!1),Ya.register("local-ref",Sg);var Tg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Pg(e),function(t,e){if(e&&("object"==Og(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Ag()?Reflect.construct(e,r||[],Pg(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&jg(t,e)}(e,t),r=e,(n=[{key:"render",value:function(t){}},{key:"is3dish",value:function(){return!0}},{key:"layout",get:function(){return ku.get(this.get("layout"))||Ou}}])&&_g(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ly(ps));function Mg(t){return Mg="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},Mg(t)}function Rg(){Rg=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function O(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function _(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==Mg(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(Mg(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},O(_.prototype),c(_.prototype,u,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function Ig(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function Cg(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Lg(n.key),n)}}function Lg(t){var e=function(t){if("object"!=Mg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Mg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Mg(e)?e:e+""}function Dg(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Dg=function(){return!!t})()}function Bg(t,e,r,n){var o=Ng(Fg(1&n?t.prototype:t),e,r);return 2&n&&"function"==typeof o?function(t){return o.apply(r,t)}:o}function Ng(){return Ng="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Fg(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Ng.apply(null,arguments)}function Fg(t){return Fg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Fg(t)}function zg(t,e){return zg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},zg(t,e)}var Ug={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"number",label:"round",name:"round",property:{min:0}},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio","width","height","none"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"},Yg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Fg(e),function(t,e){if(e&&("object"==Mg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Dg()?Reflect.construct(e,r||[],Fg(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&zg(t,e)}(e,t),r=e,n=[{key:"dispose",value:function(){this._releaseRef(),Bg(e,"dispose",this,3)([])}},{key:"nature",get:function(){return Ug}},{key:"hasTextProperty",get:function(){return!1}},{key:"tagName",get:function(){return"div"}},{key:"setElementProperties",value:function(t){var e=this.state,r=e.mode,n=void 0===r?"view":r,o=e.round,i=void 0===o?0:o;t.style.pointerEvents="view"==n?"none":"inherit",t.style.borderRadius=i+"px"}},{key:"ready",value:function(){Bg(e,"ready",this,3)([]),this.fetchRef()}},{key:"reposition",value:function(){if(this.element){Bg(e,"reposition",this,3)([]);var t=this._element_bounds,r=this.element,n=r.offsetWidth,o=r.offsetHeight;if(this._element_bounds={offsetWidth:n,offsetHeight:o},(!t||t.offsetWidth!=n||t.offsetHeight!=o)&&this.ref&&this.root.target_element){var i=this.state.fit,a=void 0===i?"ratio":i;this.ref.fit(a)}}}},{key:"fetchRef",value:(o=Rg().mark((function t(){var e,r,n,o,i;return Rg().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(this._releaseRef(),e=this.state,r=e.ref,n=e.fit,o=void 0===n?"ratio":n,r){t.next=4;break}return t.abrupt("return");case 4:if(!(i=this.app.refProvider)||!r){t.next=18;break}return t.prev=6,t.next=9,i.get(r,!0);case 9:this.__ref=t.sent,this.__ref.target=this.element,this.__ref.fit(o),this.__ref.data=this.data,t.next=18;break;case 15:t.prev=15,t.t0=t.catch(6),uo(t.t0);case 18:case"end":return t.stop()}}),t,this,[[6,15]])})),i=function(){var t=this,e=arguments;return new Promise((function(r,n){var i=o.apply(t,e);function a(t){Ig(i,r,n,a,u,"next",t)}function u(t){Ig(i,r,n,a,u,"throw",t)}a(void 0)}))},function(){return i.apply(this,arguments)})},{key:"ref",get:function(){return this.__ref},set:function(t){this.setState("ref",t)}},{key:"_releaseRef",value:function(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}},{key:"onchange",value:function(t,r,n){var o=this;Bg(e,"onchange",this,3)([t,r,n]),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((function(){var t=o.state.fit;o.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((function(){o.ref.data=t.data}))}}],n&&Cg(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o,i}(Tg);function Gg(t){return Gg="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},Gg(t)}function Hg(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Wg(n.key),n)}}function Wg(t){var e=function(t){if("object"!=Gg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Gg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Gg(e)?e:e+""}function Xg(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Xg=function(){return!!t})()}function qg(){return qg="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Vg(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},qg.apply(null,arguments)}function Vg(t){return Vg=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Vg(t)}function Qg(t,e){return Qg=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qg(t,e)}Ya.register("global-ref",Yg);var Kg={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"},Jg=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Vg(e),function(t,e){if(e&&("object"==Gg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Xg()?Reflect.construct(e,r||[],Vg(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qg(t,e)}(e,t),r=e,n=[{key:"ready",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=qg(Vg(1&3?t.prototype:t),"ready",r))?function(t){return n.apply(r,t)}:n)([]),this.show&&this.onchangeShow(!0)}},{key:"render",value:function(t){var r=this.bounds,n=r.left,o=r.top,i=r.width,a=r.height;t.beginPath(),this.drawImage(t,e.image,n,o,i,a)}},{key:"onchange",value:function(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}},{key:"onchangeShow",value:function(t){!this.app.isEditMode&&this.getState("board")&&(t?Cu.show(this,this.board,{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,data:this.value}):Cu.hide(this))}},{key:"board",get:function(){return this.getState("board")},set:function(t){this.set("board",t)}},{key:"show",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"started",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"value",get:function(){return this.getState("value")},set:function(t){this.setState("value",t)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return Kg}}],o=[{key:"image",get:function(){return e._image||(e._image=new Image,e._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),e._image}}],n&&Hg(r.prototype,n),o&&Hg(r,o),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n,o}(au(Ka));function Zg(t){return Zg="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},Zg(t)}function $g(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,tb(n.key),n)}}function tb(t){var e=function(t){if("object"!=Zg(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Zg(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Zg(e)?e:e+""}function eb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(eb=function(){return!!t})()}function rb(t){return rb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},rb(t)}function nb(t,e){return nb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},nb(t,e)}Ya.register("popup",Jg);var ob=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=rb(e),function(t,e){if(e&&("object"==Zg(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,eb()?Reflect.construct(e,r||[],rb(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nb(t,e)}(e,t),r=e,(n=[{key:"render",value:function(t){var e=this.state.path,r=void 0===e?[]:e;if(!(r.length<=1)){t.beginPath(),t.moveTo(r[0].x,r[0].y);for(var n=1;n<r.length;n++)t.lineTo(r[n].x,r[n].y);t.closePath(),this.drawStroke(t)}}},{key:"path",get:function(){return this.model.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,u=o.x,s=o.y,c=r[a].x,f=r[a].y;s>e!=f>e&&t<(c-u)*(e-s)/(f-s)+u&&(n=!n)})),n}}])&&$g(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ya);function ib(t){return ib="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},ib(t)}function ab(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ub(n.key),n)}}function ub(t){var e=function(t){if("object"!=ib(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=ib(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==ib(e)?e:e+""}function sb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(sb=function(){return!!t})()}function cb(t){return cb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cb(t)}function fb(t,e){return fb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},fb(t,e)}Ya.register("path",ob);var lb={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"},hb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=cb(e),function(t,e){if(e&&("object"==ib(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,sb()?Reflect.construct(e,r||[],cb(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&fb(t,e)}(e,t),r=e,(n=[{key:"contains",value:function(t,e){for(var r=this.state,n=[r.x1,r.y1,r.x2,r.y2,r.x3,r.y3],o=!1,i=0;i<n.length;i+=2){var a=(i+2)%n.length,u=n[i],s=n[i+1],c=n[a+1];s>e!=c>e&&t<(n[a]-u)*(e-s)/(c-s)+u&&(o=!o)}return o}},{key:"mutable",get:function(){return!0}},{key:"path",get:function(){var t=this.state;return[{x:t.x1,y:t.y1},{x:t.x2,y:t.y2},{x:t.x3,y:t.y3}]},set:function(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}},{key:"nature",get:function(){return lb}}])&&ab(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ka);function pb(t){return pb="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},pb(t)}function yb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,db(n.key),n)}}function db(t){var e=function(t){if("object"!=pb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=pb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==pb(e)?e:e+""}function vb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(vb=function(){return!!t})()}function gb(t){return gb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},gb(t)}function bb(t,e){return bb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},bb(t,e)}Ya.memoize(hb.prototype,"path",!1),Ya.register("triangle",hb);var mb={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"},wb={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cx,i=n.rx;i=Math.abs(i);var a=(r.transcoordP2S(t.x,t.y).x-o)/i*100;a=a>=100||a<=-100?100:Math.abs(a),r.set({ratio:a})}},xb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=gb(e),function(t,e){if(e&&("object"==pb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,vb()?Reflect.construct(e,r||[],gb(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&bb(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?50:r,o=e.cx,i=e.cy,a=e.rx,u=e.ry,s=e.startAngle,c=e.endAngle,f=e.anticlockwise;a=Math.abs(a),u=Math.abs(u),t.beginPath(),t.ellipse(o,i,a,u,0,s||0,c||2*Math.PI,f),t.moveTo(o+a/100*n,i),t.ellipse(o,i,a/100*n,u/100*n,0,s||0,c||2*Math.PI,!0)}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=r.rx,a=r.ry,u=r.ratio,s=(t-n)/(2*(i=Math.abs(i))-.5),c=(e-o)/(2*(a=Math.abs(a))-.5),f=(t-n)/(i/100*u*2-.5),l=(e-o)/(a/100*u*2-.5),h=!1;return s*s+c*c<.25&&f*f+l*l>.25&&(h=!h),h}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ratio;return[{x:e+(n=Math.abs(n))/100*o,y:r,handler:wb}]}},{key:"nature",get:function(){return mb}}])&&yb(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ed);function kb(t){return kb="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},kb(t)}function Sb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ob(n.key),n)}}function Ob(t){var e=function(t){if("object"!=kb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=kb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==kb(e)?e:e+""}function _b(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(_b=function(){return!!t})()}function Eb(t){return Eb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Eb(t)}function Ab(t,e){return Ab=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ab(t,e)}Ya.memoize(xb.prototype,"controls",!1),Ya.register("donut",xb);var Pb={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"},jb={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cy,i=n.ry,a=(r.transcoordP2S(t.x,t.y).y-o)/i*100+100;a>=100?a=100:a<=0&&(a=0),r.set({ratio:a})}},Tb=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Eb(e),function(t,e){if(e&&("object"==kb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,_b()?Reflect.construct(e,r||[],Eb(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ab(t,e)}(e,t),r=e,(n=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?30:r,o=e.wing,i=void 0===o?5:o,a=e.cx,u=e.cy,s=e.rx,c=e.ry;if(e.startAngle,e.endAngle,e.anticlockwise,!(i<3)){var f=1.5707963267948966,l=2*Math.PI/i,h=s-n/100*s,p=c-n/100*c;t.save(),t.beginPath(),t.translate(a,u),t.moveTo(s*Math.cos(-f),c*Math.sin(-f)),t.lineTo((s-h)*(Math.cos(l-f)+Math.cos(0-f))/2,(c-p)*(Math.sin(l-f)+Math.sin(0-f))/2);for(var y=1;y<i;y++)t.lineTo(s*Math.cos(l*y-f),c*Math.sin(l*y-f)),t.lineTo((s-h)*(Math.cos(l*(y+1)-f)+Math.cos(l*y-f))/2,(c-p)*(Math.sin(l*(y+1)-f)+Math.sin(l*y-f))/2);t.closePath(),t.restore()}}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.ry;return[{x:e,y:r-n+n*(t.ratio/100),handler:jb}]}},{key:"nature",get:function(){return Pb}}])&&Sb(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(Ed);function Mb(t){return Mb="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},Mb(t)}function Rb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ib(n.key),n)}}function Ib(t){var e=function(t){if("object"!=Mb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Mb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Mb(e)?e:e+""}function Cb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Cb=function(){return!!t})()}function Lb(){return Lb="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!{}.hasOwnProperty.call(t,e)&&null!==(t=Db(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Lb.apply(null,arguments)}function Db(t){return Db=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Db(t)}function Bb(t,e){return Bb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Bb(t,e)}Ya.memoize(Tb.prototype,"controls",!1),Ya.register("star",Tb);const Nb=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Db(e),function(t,e){if(e&&("object"==Mb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Cb()?Reflect.construct(e,r||[],Db(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Bb(t,e)}(e,t),r=e,n=[{key:"animOnValueChange",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2?arguments[2]:void 0;if(t!=this._lastValue){if(r)var o=t-(Number(n)||0);else o=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-o,this.animate({step:function(t){e._anim_alpha=o*(t-1),e.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}},{key:"dispose",value:function(){var t,r,n;(t=e,r=this,"function"==typeof(n=Lb(Db(1&3?t.prototype:t),"dispose",r))?function(t){return n.apply(r,t)}:n)([]),delete this._value_substitutor}},{key:"onchange",value:function(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}},{key:"animAlpha",get:function(){return this._anim_alpha||0}},{key:"animValue",get:function(){return(this._lastValue||0)+(this._anim_alpha||0)}},{key:"defaultValueSubstitutor",value:function(){return this.getState("value")}},{key:"valueSubstitutor",get:function(){return this._value_substitutor||(this._value_substitutor=ka(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}},{key:"value",get:function(){return Number(this.valueSubstitutor())||0},set:function(t){delete this._value_substitutor,this.setState("value",Number(jn(t)))}}],n&&Rb(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function Fb(t){return Fb="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},Fb(t)}function zb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Ub(n.key),n)}}function Ub(t){var e=function(t){if("object"!=Fb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Fb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Fb(e)?e:e+""}function Yb(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(Yb=function(){return!!t})()}function Gb(t){return Gb=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Gb(t)}function Hb(t,e){return Hb=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Hb(t,e)}const Wb=function(t){var e=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),function(t,e,r){return e=Gb(e),function(t,e){if(e&&("object"==Fb(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,Yb()?Reflect.construct(e,r||[],Gb(t).constructor):e.apply(t,r))}(this,e,arguments)}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Hb(t,e)}(e,t),r=e,(n=[{key:"_convertDataFormat",value:function(t,e){return"json"===e?JSON.parse(t):t}},{key:"isDataSource",value:function(){return!0}}])&&zb(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(t);return e};function Xb(t){return Xb="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},Xb(t)}function qb(){qb=function(){return e};var t,e={},r=Object.prototype,n=r.hasOwnProperty,o=Object.defineProperty||function(t,e,r){t[e]=r.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof g?e:g,a=Object.create(i.prototype),u=new T(n||[]);return o(a,"_invoke",{value:E(t,r,u)}),a}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,a,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(M([])));k&&k!==r&&n.call(k,a)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function O(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function _(t,e){function r(o,i,a,u){var s=l(t[o],t,i);if("throw"!==s.type){var c=s.arg,f=c.value;return f&&"object"==Xb(f)&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(f).then((function(t){c.value=t,a(c)}),(function(t){return r("throw",t,a,u)}))}u(s.arg)}var i;o(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return i=i?i.then(o,o):o()}})}function E(e,r,n){var o=h;return function(i,a){if(o===y)throw Error("Generator is already running");if(o===d){if("throw"===i)throw a;return{value:t,done:!0}}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var s=A(u,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===h)throw o=d,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=y;var c=l(e,r,n);if("normal"===c.type){if(o=n.done?d:p,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=d,n.method="throw",n.arg=c.arg)}}}function A(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,A(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var i=l(o,e.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,v;var a=i.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function M(e){if(e||""===e){var r=e[a];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function r(){for(;++o<e.length;)if(n.call(e,o))return r.value=e[o],r.done=!1,r;return r.value=t,r.done=!0,r};return i.next=i}}throw new TypeError(Xb(e)+" is not iterable")}return b.prototype=m,o(S,"constructor",{value:m,configurable:!0}),o(m,"constructor",{value:b,configurable:!0}),b.displayName=c(m,s,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,s,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},O(_.prototype),c(_.prototype,u,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(f(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(S),c(S,s,"Generator"),c(S,a,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=M,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(j),!e)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function o(n,o){return u.type="throw",u.arg=e,r.next=n,o&&(r.method="next",r.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],u=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var s=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;j(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:M(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),v}},e}function Vb(t,e,r,n,o,i,a){try{var u=t[i](a),s=u.value}catch(t){return void r(t)}u.done?e(s):Promise.resolve(s).then(n,o)}function Qb(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Kb(n.key),n)}}function Kb(t){var e=function(t){if("object"!=Xb(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=Xb(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==Xb(e)?e:e+""}var Jb=0,Zb=new FinalizationRegistry((function(){Jb--})),$b=function(){return t=function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.counters={},this.references={},this.creator=e,this.disposer=r,Jb++,Zb.register(this,Jb)},e=[{key:"dispose",value:function(){if(this.disposer)for(var t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}},{key:"ids",get:function(){return Object.keys(this.references)}},{key:"create",value:function(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,co("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}},{key:"add",value:function(t,e){var r=this,n=new Promise((function(n,o){var i=r.references[t];if(i)i===e?o(Error("Reference ID and target duplicate")):e?o(Error("Reference ID duplicate")):n(i);else{function a(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)a(e);else{if(!r.creator)return void o(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){a(t)}),(function(t){o(t)}))}}}));return this.references[t]||(this.references[t]=n),n}},{key:"get",value:(n=qb().mark((function t(e,r){var n;return qb().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(n=this.references[e])){t.next=13;break}if(n instanceof Promise){t.next=7;break}if(e in this.counters){t.next=5;break}throw new Error("No Reference Count");case 5:return this.counters[e]++,t.abrupt("return",n);case 7:if(!r){t.next=13;break}return t.next=10,n;case 10:return n=t.sent,this.counters[e]++,t.abrupt("return",n);case 13:if(!r){t.next=17;break}return t.next=16,this.add(e);case 16:return t.abrupt("return",t.sent);case 17:throw new Error("No References for "+e);case 18:case"end":return t.stop()}}),t,this)})),o=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=n.apply(t,e);function a(t){Vb(i,r,o,a,u,"next",t)}function u(t){Vb(i,r,o,a,u,"throw",t)}a(void 0)}))},function(t,e){return o.apply(this,arguments)})},{key:"_id",value:function(t){for(var e in this.references)if(this.references[e]===t)return e;return-1}},{key:"release",value:function(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,co("RELEASED",e))):uo("No Referenced ID")}}],r=[{key:"residents",get:function(){return Jb}},{key:"residentsCount",get:function(){return Jb}}],e&&Qb(t.prototype,e),r&&Qb(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e,r,n,o}();function tm(t){return tm="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},tm(t)}function em(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,rm(n.key),n)}}function rm(t){var e=function(t){if("object"!=tm(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!=tm(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==tm(e)?e:e+""}var nm={},om={},im=[];function am(t){var e="SCRIPT"==t.target.tagName?nm:om,r=t.target.src||t.target.href;e[r]=!0,im.forEach((function(t,n){var o=t.resolve,i=t.scripts,a=t.styles;if(e==nm){var u=i.indexOf(r);u>-1&&u<i.length-1&&sm(i[u+1])}for(var s=0;s<i.length;s++)if(!nm[i[s]])return;if(a)for(var c=0;c<a.length;c++)if(!om[a[c]])return;o(),im[n]=null})),im=im.filter(Boolean)}function um(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?nm:om;im.forEach((function(n,o){var i=n.reject,a=n.scripts,u=n.styles,s=!1;if(r===nm){for(var c=0;c<a.length;c++)if(a[c]==e){s=!0;break}}else if(u)for(var f=0;f<u.length;f++)if(u[f]==e){s=!0;break}s&&(i(t),im[o]=null)})),im=im.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function sm(t){nm[t]=!1;var e=document.createElement("script");e.onload=am,e.onerror=um,e.type="text/javascript",e.src=t,document.head.appendChild(e)}var cm=function(){return t=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)},e=[{key:"load",value:function(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var o,i=!0;if(e&&e.forEach((function(t){om.hasOwnProperty(t)||function(t){om[t]=!1;var e=document.createElement("link");e.onload=am,e.onerror=um,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),om[t]||(i=!1)})),t&&t.length>0&&t.forEach((function(t){nm.hasOwnProperty(t)?nm[t]||(i=!1):o=o||t})),o)sm(o);else if(i)return void r();im.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}],null&&em(t.prototype,null),e&&em(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,e}();const fm="0.0.0";var lm=0,hm=performance.now(),pm=0;function ym(){return lm}requestAnimationFrame((function t(){requestAnimationFrame(t),pm++;var e=performance.now(),r=e-hm;r<1e3||(lm=Math.round(1e3*pm/r),hm=e,pm=0)}));var dm=i;function vm(){}})(),n})()));
|