@wick-charts/react 0.3.6 → 0.4.1
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/README.md +6 -6
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +782 -344
- package/dist/index.js +4926 -4157
- package/package.json +3 -3
- package/src/BarSeries.tsx +18 -56
- package/src/CandlestickSeries.tsx +11 -57
- package/src/ChartContainer.tsx +80 -51
- package/src/LineSeries.tsx +18 -56
- package/src/PieSeries.tsx +1 -2
- package/src/index.ts +8 -4
- package/src/ui/Crosshair.tsx +5 -1
- package/src/ui/InfoBar.tsx +35 -1
- package/src/ui/Sparkline.tsx +95 -2
- package/src/ui/TimeAxis.tsx +13 -72
- package/src/ui/Title.tsx +33 -29
- package/src/ui/YAxis.tsx +11 -67
- package/src/ui/axisFade.ts +0 -23
package/dist/index.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const I=require("react"),T=require("react/jsx-runtime");var Kn=Object.defineProperty,Xs=s=>{throw TypeError(s)},qn=(s,t,e)=>t in s?Kn(s,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):s[t]=e,L=(s,t,e)=>qn(s,typeof t!="symbol"?t+"":t,e),Qi=(s,t,e)=>t.has(s)||Xs("Cannot "+e),o=(s,t,e)=>(Qi(s,t,"read from private field"),e?e.call(s):t.get(s)),D=(s,t,e)=>t.has(s)?Xs("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(s):t.set(s,e),k=(s,t,e,i)=>(Qi(s,t,"write to private field"),t.set(s,e),e),B=(s,t,e)=>(Qi(s,t,"access private method"),e),Hi=(s,t,e,i)=>({set _(n){k(s,t,n)},get _(){return o(s,t,i)}});const pe=s=>1-(1-s)**3;class Be{constructor(t){L(this,"_current"),L(this,"_from"),L(this,"_to"),L(this,"_startTime",0),L(this,"_activeDuration"),L(this,"_defaultDuration"),L(this,"_easing"),L(this,"_lerp"),L(this,"_equals"),L(this,"_animating",!1),this._current=t.initial,this._from=t.initial,this._to=t.initial,this._defaultDuration=t.duration,this._activeDuration=t.duration,this._easing=t.easing??pe,this._lerp=t.lerp,this._equals=t.equals??Object.is}get current(){return this._current}get target(){return this._to}get animating(){return this._animating}snap(t){this._current=t,this._from=t,this._to=t,this._animating=!1}setTarget(t,e={}){const i=e.now??performance.now();if(this._animating){if(this._equals(t,this._to))return;this.tick(i)}else if(this._equals(t,this._current))return;const n=e.duration??this._defaultDuration;if(n<=0){this.snap(t);return}this._from=this._current,this._to=t,this._activeDuration=n,this._startTime=i,this._animating=!0}tick(t){if(!this._animating)return!1;const e=t-this._startTime;if(e>=this._activeDuration)return this._current=this._to,this._animating=!1,!1;const i=e<=0?0:e/this._activeDuration;return this._current=this._lerp(this._from,this._to,this._easing(i)),!0}}const ms=250,vi={streamTick:ms,fit:ms},Ai=250,be=Ai,Zi=Ai,Us=600,Gs=Ai,Jn=0,Ni=Ai,ps=100;class li{constructor(){L(this,"listeners",new Map)}on(t,e){let i=this.listeners.get(t);i||(i=new Set,this.listeners.set(t,i)),i.add(e)}off(t,e){var i;(i=this.listeners.get(t))==null||i.delete(e)}emit(t,...e){var i;(i=this.listeners.get(t))==null||i.forEach(n=>n(...e))}removeAllListeners(){this.listeners.clear()}}function bs(s,t){const e=new Map;return new Proxy(s,{get(i,n){const r=Reflect.get(i,n,i);if(typeof r!="function")return r;const a=e.get(n);if(a)return a;const l=typeof n=="string"?n:String(n),h=r,d=(...c)=>(t.set(l,(t.get(l)??0)+1),h.apply(i,c));return e.set(n,d),d},set(i,n,r){return Reflect.set(i,n,r,i)}})}function vs(s,t,e){const i=document.createElement("canvas");return i.style.position="absolute",i.style.inset="0",i.style.width="100%",i.style.height="100%",i.style.display="block",i.style.zIndex=String(t),s.appendChild(i),i}class Qn extends li{constructor(t,e){super(),L(this,"mainCanvas"),L(this,"mainCtx"),L(this,"overlayCanvas"),L(this,"overlayCtx"),L(this,"resizeObserver"),L(this,"_size"),L(this,"supportsDevicePixelContentBox",!1),this.mainCanvas=vs(t,0),this.overlayCanvas=vs(t,1);const i=this.mainCanvas.getContext("2d",{alpha:!0}),n=this.overlayCanvas.getContext("2d",{alpha:!0});if(!i||!n)throw new Error("CanvasManager: failed to acquire 2D rendering context");this.mainCtx=e?bs(i,e.drawCallsMain):i,this.overlayCtx=e?bs(n,e.drawCallsOverlay):n;const r=window.devicePixelRatio||1;this._size={media:{width:0,height:0},bitmap:{width:0,height:0},horizontalPixelRatio:r,verticalPixelRatio:r},this.resizeObserver=new ResizeObserver(l=>{this.handleResize(l[0])});try{this.resizeObserver.observe(t,{box:"device-pixel-content-box"}),this.supportsDevicePixelContentBox=!0}catch{this.resizeObserver.observe(t,{box:"content-box"})}const a=t.getBoundingClientRect();if(a.width>0&&a.height>0){const l=window.devicePixelRatio||1,h=l,d=Math.round(a.width*l),c=Math.round(a.height*h);this.mainCanvas.width=d,this.mainCanvas.height=c,this.overlayCanvas.width=d,this.overlayCanvas.height=c,this._size={media:{width:a.width,height:a.height},bitmap:{width:d,height:c},horizontalPixelRatio:d/a.width,verticalPixelRatio:c/a.height}}}handleResize(t){var e,i;let n,r,a,l;if(this.supportsDevicePixelContentBox&&(e=t.devicePixelContentBoxSize)!=null&&e[0]){const c=t.devicePixelContentBoxSize[0];n=c.inlineSize,r=c.blockSize;const u=t.contentBoxSize[0];a=u.inlineSize,l=u.blockSize}else{const c=(i=t.contentBoxSize)==null?void 0:i[0];if(c)a=c.inlineSize,l=c.blockSize;else{const f=t.contentRect;a=f.width,l=f.height}const u=window.devicePixelRatio||1;n=Math.round(a*u),r=Math.round(l*u)}if(n===0||r===0)return;this.mainCanvas.width=n,this.mainCanvas.height=r,this.overlayCanvas.width=n,this.overlayCanvas.height=r;const h=n/a,d=r/l;this._size={media:{width:a,height:l},bitmap:{width:n,height:r},horizontalPixelRatio:h,verticalPixelRatio:d},this.emit("resize",this._size)}get size(){return this._size}useMainLayer(t){this.mainCtx.save(),t({context:this.mainCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.mainCtx.restore()}useOverlayLayer(t){const{width:e,height:i}=this._size.bitmap;this.overlayCtx.clearRect(0,0,e,i),this.overlayCtx.save(),t({context:this.overlayCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.overlayCtx.restore()}get canvas(){return this.overlayCanvas}destroy(){this.resizeObserver.disconnect(),this.mainCanvas.remove(),this.overlayCanvas.remove(),this.removeAllListeners()}}function Zn(s,t,e,i){const{context:n,bitmapSize:r,horizontalPixelRatio:a}=s;n.strokeStyle=i.crosshair.color,n.lineWidth=1,n.setLineDash([4*a,4*a]);const l=Math.round(t)+.5,h=Math.round(e)+.5;n.beginPath(),n.moveTo(l,0),n.lineTo(l,r.height),n.moveTo(0,h),n.lineTo(r.width,h),n.stroke(),n.setLineDash([])}const tr=3,er=8,ys=900,ir=24,sr=11,nr=10,rr=18;function ar(s){const{state:t}=s;if(t==="idle"||t==="has-more")return;const e=s.timeScale.timeToX(s.boundaryTime);if(Number.isFinite(e)){if(t==="loading"){or(s,e);return}t==="no-data"&&lr(s,e)}}function or({scope:s,theme:t,chartMediaHeight:e,side:i,now:n},r){const{context:a,horizontalPixelRatio:l,verticalPixelRatio:h}=s,d=tr*l,c=er*l,u=ir*l,f=r*l,m=i==="right"?f+u:f-u,g=e/2*h,p=n%ys/ys,w=Math.floor(p*3),x=Ks(t.axis.textColor??"#787b86",.3),v=t.axis.textColor??"#787b86";a.save();for(let S=0;S<3;S++){const M=(S-1)*c,y=m+M;a.beginPath(),a.arc(y,g,d,0,Math.PI*2),a.fillStyle=S===w?v:x,a.fill()}a.restore()}function lr({scope:s,theme:t,chartMediaHeight:e,side:i},n){const{context:r,horizontalPixelRatio:a,verticalPixelRatio:l}=s,h=Math.round(n*a)+.5;r.save(),r.strokeStyle=Ks(t.axis.textColor??"#787b86",.6),r.lineWidth=1,r.setLineDash([4*a,4*a]),r.beginPath(),r.moveTo(h,0),r.lineTo(h,e*l),r.stroke(),r.setLineDash([]);const d=nr*a,c=i==="right"?h-d:h+d,u=rr*l;r.fillStyle=t.axis.textColor??"#787b86",r.font=`${sr*a}px ${t.typography.fontFamily}`,r.textAlign=i==="right"?"right":"left",r.textBaseline="top",r.fillText("No more data",c,u),r.restore()}function Ks(s,t){const e=/^#([0-9a-f]{6})$/i.exec(s.trim());if(!e)return s;const i=parseInt(e[1].slice(0,2),16),n=parseInt(e[1].slice(2,4),16),r=parseInt(e[1].slice(4,6),16);return`rgba(${i}, ${n}, ${r}, ${t})`}function hr(s,t,e,i,n){const{context:r,bitmapSize:a,horizontalPixelRatio:l,verticalPixelRatio:h}=s;r.strokeStyle=i.grid.color,r.lineWidth=1,i.grid.style==="dashed"?r.setLineDash([4*l,4*l]):i.grid.style==="dotted"&&r.setLineDash([1*l,3*l]);const d=e.niceTickValues();r.beginPath();for(const u of d){const f=Math.round(e.valueToBitmapY(u))+.5;r.moveTo(0,f),r.lineTo(a.width,f)}r.stroke();const{ticks:c}=t.niceTickValues(n);r.beginPath();for(const u of c){const f=Math.round(t.timeToBitmapX(u))+.5;r.moveTo(f,0),r.lineTo(f,a.height)}r.stroke(),r.setLineDash([])}function Pe(s,t,e){return Math.max(t,Math.min(e,s))}function bt(s,t,e){return s+(t-s)*e}function xs(s,t,e,i){const n=Math.exp(-e*i);return t+(s-t)*n}function qs(s){return 1-(1-s)**3}function Bi(s,t,e){let i=0,n=s.length-1;for(;i<=n;){const r=i+n>>>1,a=e(s[r]);if(a<t)i=r+1;else if(a>t)n=r-1;else return r}return i}class Js extends li{constructor(){super(...arguments),L(this,"data",[]),L(this,"_visible",!0),L(this,"cachedRange",null),L(this,"cachedResult",[])}setVisible(t){this._visible=t}isVisible(){return this._visible}setData(t){let e=!0;for(let i=1;i<t.length;i++)if(t[i].time<t[i-1].time){e=!1;break}this.data=e?t.slice():[...t].sort((i,n)=>i.time-n.time),this.cachedRange=null,this.emit("update")}append(t){if(this.data.length>0&&t.time<=this.data[this.data.length-1].time){this.updateLast(t);return}this.data.push(t),this.cachedRange=null,this.emit("update")}updateLast(t){this.data.length!==0&&(this.data[this.data.length-1]=t,this.cachedRange=null,this.emit("update"))}getAll(){return this.data}getVisibleData(t,e){if(this.data.length===0)return[];if(this.cachedRange&&this.cachedRange.from===t&&this.cachedRange.to===e)return this.cachedResult;const i=Math.max(0,Bi(this.data,t,r=>r.time)-1),n=Math.min(this.data.length,Bi(this.data,e,r=>r.time)+1);return this.cachedResult=this.data.slice(i,n),this.cachedRange={from:t,to:e},this.cachedResult}first(){return this.data[0]}last(){return this.data[this.data.length-1]}get length(){return this.data.length}isEmpty(){return this.data.length===0}findNearest(t,e){if(this.data.length===0)return null;const i=Bi(this.data,t,a=>a.time);let n=null,r=e;for(let a=Math.max(0,i-1);a<=Math.min(this.data.length-1,i+1);a++){const l=Math.abs(this.data[a].time-t);l<=r&&(r=l,n=this.data[a])}return n}}class cr{constructor(t,e,i,n=0){L(this,"dragging",!1),L(this,"lastX",0),this.viewport=t,this.timeScale=e,this.canvas=i,this.inputResponseMs=n}setInputResponseMs(t){this.inputResponseMs=Math.max(0,t)}handleMouseDown(t){t.button===0&&(this.dragging=!0,this.lastX=t.clientX,this.canvas.style.cursor="grabbing")}handleMouseMove(t){if(!this.dragging)return;const e=t.clientX-this.lastX;this.lastX=t.clientX;const i=this.timeScale.pixelDeltaToTimeDelta(-e);this.viewport.pan(i,this.timeScale.getMediaWidth(),this.inputResponseMs)}handleMouseUp(){this.dragging&&(this.dragging=!1,this.canvas.style.cursor="crosshair",this.viewport.startRebound(this.timeScale.getMediaWidth()))}isDragging(){return this.dragging}}const ur=150;class dr{constructor(t,e,i=0){L(this,"reboundTimer",null),this.viewport=t,this.timeScale=e,this.inputResponseMs=i}setInputResponseMs(t){this.inputResponseMs=Math.max(0,t)}getInputResponseMs(){return this.inputResponseMs}handleWheel(t){t.preventDefault();const e=fr(t.deltaY,t.deltaMode),i=Math.exp(e*.005),n=this.timeScale.getMediaWidth(),r=Math.min(t.offsetX,n),a=this.timeScale.xToTime(r);this.viewport.zoomAt(a,i,n,this.inputResponseMs),this.reboundTimer!==null&&clearTimeout(this.reboundTimer),this.reboundTimer=setTimeout(()=>{this.reboundTimer=null,this.viewport.startRebound(n)},ur)}cancelPendingRebound(){this.reboundTimer!==null&&(clearTimeout(this.reboundTimer),this.reboundTimer=null)}}function fr(s,t){return t===WheelEvent.DOM_DELTA_LINE?s*8:t===WheelEvent.DOM_DELTA_PAGE?s*24:s}class gr extends li{constructor(t,e,i,n,r=0){super(),L(this,"zoom"),L(this,"pan"),L(this,"canvas"),L(this,"timeScale"),L(this,"yScale"),L(this,"viewport"),L(this,"onWheel",a=>{this.zoom.handleWheel(a)}),L(this,"onMouseDown",a=>{this.zoom.cancelPendingRebound(),this.pan.handleMouseDown(a)}),L(this,"onMouseMove",a=>{this.pan.isDragging()&&this.pan.handleMouseMove(a),this.emitCrosshair(a.offsetX,a.offsetY)}),L(this,"onMouseUp",()=>{this.pan.handleMouseUp()}),L(this,"onMouseLeave",()=>{this.pan.handleMouseUp(),this.emit("crosshairMove",null)}),L(this,"onDblClick",()=>{}),L(this,"lastTouchDist",0),L(this,"lastTouchCenter",0),L(this,"touchCount",0),L(this,"onTouchStart",a=>{a.preventDefault(),this.zoom.cancelPendingRebound(),this.touchCount=a.touches.length,a.touches.length===1?this.pan.handleMouseDown({button:0,clientX:a.touches[0].clientX}):a.touches.length===2&&(this.lastTouchDist=Math.abs(a.touches[0].clientX-a.touches[1].clientX),this.lastTouchCenter=(a.touches[0].clientX+a.touches[1].clientX)/2)}),L(this,"onTouchMove",a=>{if(a.preventDefault(),a.touches.length===1&&this.touchCount===1)this.pan.handleMouseMove({clientX:a.touches[0].clientX});else if(a.touches.length===2){const l=Math.abs(a.touches[0].clientX-a.touches[1].clientX),h=(a.touches[0].clientX+a.touches[1].clientX)/2,d=this.canvas.getBoundingClientRect();if(this.lastTouchDist>0){const c=this.lastTouchDist/l,u=this.timeScale.xToTime(h-d.left);this.viewport.zoomAt(u,c,this.timeScale.getMediaWidth(),this.zoom.getInputResponseMs())}this.lastTouchDist=l,this.lastTouchCenter=h}}),L(this,"onTouchEnd",a=>{if(a.touches.length===0){const l=this.touchCount===2;this.pan.handleMouseUp(),l&&this.viewport.startRebound(this.timeScale.getMediaWidth()),this.touchCount=0,this.lastTouchDist=0,this.emit("crosshairMove",null)}}),this.canvas=t,this.viewport=e,this.timeScale=i,this.yScale=n,this.zoom=new dr(e,i,r),this.pan=new cr(e,i,t,r),t.style.cursor="crosshair",t.style.touchAction="none",t.addEventListener("wheel",this.onWheel,{passive:!1}),t.addEventListener("mousedown",this.onMouseDown),t.addEventListener("mousemove",this.onMouseMove),t.addEventListener("mouseup",this.onMouseUp),t.addEventListener("mouseleave",this.onMouseLeave),t.addEventListener("dblclick",this.onDblClick),t.addEventListener("touchstart",this.onTouchStart,{passive:!1}),t.addEventListener("touchmove",this.onTouchMove,{passive:!1}),t.addEventListener("touchend",this.onTouchEnd)}setInputResponseMs(t){this.pan.setInputResponseMs(t),this.zoom.setInputResponseMs(t)}emitCrosshair(t,e){const i=this.timeScale.xToTime(t),n=this.yScale.yToValue(e);this.emit("crosshairMove",{mediaX:t,mediaY:e,time:i,y:n})}destroy(){this.zoom.cancelPendingRebound(),this.canvas.removeEventListener("wheel",this.onWheel),this.canvas.removeEventListener("mousedown",this.onMouseDown),this.canvas.removeEventListener("mousemove",this.onMouseMove),this.canvas.removeEventListener("mouseup",this.onMouseUp),this.canvas.removeEventListener("mouseleave",this.onMouseLeave),this.canvas.removeEventListener("dblclick",this.onDblClick),this.canvas.removeEventListener("touchstart",this.onTouchStart),this.canvas.removeEventListener("touchmove",this.onTouchMove),this.canvas.removeEventListener("touchend",this.onTouchEnd),this.removeAllListeners()}}const mr=new WeakMap;function pr(s,t){mr.set(s,t)}const br=100,vr={position:"absolute",top:"4px",right:"4px",padding:"4px 6px",background:"rgba(0, 0, 0, 0.6)",color:"#e0e0e0",font:"11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace",borderRadius:"3px",pointerEvents:"none",zIndex:"20",whiteSpace:"pre",letterSpacing:"0.01em"};function ws(s){let t=0;for(const e of Object.values(s))t+=e;return t}const oi=9,ts=7,Pt=6,es=9;function yr(s,t){return Math.round(s*t).toLocaleString("en-US")}function Ss(s,t,e,i,n){return[s.padEnd(oi),t.toFixed(1).padStart(ts),e.toFixed(2).padStart(Pt),i.toFixed(2).padStart(Pt),yr(n,t).padStart(es)].join(" ")}function Ms(s){return[s.padEnd(oi),"—".padStart(ts),"—".padStart(Pt),"—".padStart(Pt),"idle".padStart(es)].join(" ")}function xr(){return["".padEnd(oi),"FPS".padStart(ts),"ms".padStart(Pt),"worst".padStart(Pt),"calls/s".padStart(es)].join(" ")}function wr(s){const t=ws(s.drawCalls.main),e=ws(s.drawCalls.overlay),i=s.frameCount.main===0?Ms("Main"):Ss("Main",s.mainRendersPerSec,s.mainFrameMs.last,s.mainFrameMs.p95,t),n=s.frameCount.overlay===0?Ms("Overlay"):Ss("Overlay",s.overlayRendersPerSec,s.overlayFrameMs.last,s.overlayFrameMs.p95,e),r=[xr(),i,n],a=Object.keys(s.perSeries);if(a.length>1){r.push(""),r.push("Per series (main pass)"),r.push(["".padEnd(oi),"ms".padStart(Pt),"worst".padStart(Pt)].join(" "));for(const l of a){const h=s.perSeries[l];r.push([` ${l}`.padEnd(oi),h.last.toFixed(2).padStart(Pt),h.p95.toFixed(2).padStart(Pt)].join(" "))}}return r.join(`
|
|
2
|
-
`)}class Sr{constructor(t,e,i=br){L(this,"element"),L(this,"unsubscribe"),L(this,"updateIntervalMs"),L(this,"lastUpdate",0),this.updateIntervalMs=i;for(const n of t.querySelectorAll("[data-chart-perf-hud]"))n.remove();this.element=document.createElement("div"),this.element.setAttribute("data-chart-perf-hud",""),Object.assign(this.element.style,vr),this.element.textContent="perf: waiting for first frame…",t.appendChild(this.element),this.unsubscribe=e.onFrame(n=>this.onFrame(n))}destroy(){this.unsubscribe(),this.element.remove()}onFrame(t){const e=performance.now();e-this.lastUpdate<this.updateIntervalMs||(this.lastUpdate=e,this.element.textContent=wr(t))}}const Mr=5e3,kr=2e3,Cr=30;function zi(s,t,e){let i=0;for(;i<t.length&&t[i]<e;)i++;i>0&&(s.splice(0,i),t.splice(0,i))}function Ei(s,t,e){const i=s.length-e;i>0&&(s.splice(0,i),t.splice(0,i))}function Vi(s){if(s.length===0)return{last:0,p50:0,p95:0};const t=[...s].sort((e,i)=>e-i);return{last:s[s.length-1],p50:t[Math.floor(t.length*.5)]??0,p95:t[Math.floor(t.length*.95)]??0}}function ks(s){if(s.length<2)return 0;const t=s[s.length-1]-s[0];return t<=0?0:(s.length-1)*1e3/t}function Cs(s){const t={};for(const[e,i]of s)t[e]=i;return t}class Yi{constructor(t={}){L(this,"drawCallsMain",new Map),L(this,"drawCallsOverlay",new Map),L(this,"mainMs",[]),L(this,"overlayMs",[]),L(this,"mainStamps",[]),L(this,"overlayStamps",[]),L(this,"perSeriesMs",new Map),L(this,"perSeriesStamps",new Map),L(this,"listeners",new Set),L(this,"windowMs"),L(this,"maxSamples"),L(this,"heapInterval"),L(this,"heapCounter",0),L(this,"heapMb",null),L(this,"mainFrameCount",0),L(this,"overlayFrameCount",0),L(this,"lastStamp",0),this.windowMs=t.windowMs??Mr,this.maxSamples=t.maxSamples??kr,this.heapInterval=t.heapSampleEveryNFrames??Cr}resetDrawCalls(t){(t==="main"?this.drawCallsMain:this.drawCallsOverlay).clear()}recordFrame(t,e,i){if(this.lastStamp=i,t==="main"?(this.mainMs.push(e),this.mainStamps.push(i),this.mainFrameCount++,this.sampleHeap()):(this.overlayMs.push(e),this.overlayStamps.push(i),this.overlayFrameCount++),this.trimAll(i),this.listeners.size>0){const n=this.getStats();for(const r of this.listeners)r(n)}}recordSeries(t,e,i=this.lastStamp){let n=this.perSeriesMs.get(t),r=this.perSeriesStamps.get(t);(!n||!r)&&(n=[],r=[],this.perSeriesMs.set(t,n),this.perSeriesStamps.set(t,r)),n.push(e),r.push(i)}trimAll(t){const e=t-this.windowMs;zi(this.mainMs,this.mainStamps,e),zi(this.overlayMs,this.overlayStamps,e),Ei(this.mainMs,this.mainStamps,this.maxSamples),Ei(this.overlayMs,this.overlayStamps,this.maxSamples);for(const i of this.perSeriesMs.keys()){const n=this.perSeriesMs.get(i),r=this.perSeriesStamps.get(i);!n||!r||(zi(n,r,e),Ei(n,r,this.maxSamples))}}onFrame(t){return this.listeners.add(t),()=>{this.listeners.delete(t)}}getStats(){const t={};for(const[i,n]of this.perSeriesMs)t[i]=Vi(n);const e=ks(this.mainStamps);return{mainRendersPerSec:e,overlayRendersPerSec:ks(this.overlayStamps),fps:e,mainFrameMs:Vi(this.mainMs),overlayFrameMs:Vi(this.overlayMs),frameCount:{main:this.mainFrameCount,overlay:this.overlayFrameCount},drawCalls:{main:Cs(this.drawCallsMain),overlay:Cs(this.drawCallsOverlay)},perSeries:t,heapMb:this.heapMb}}destroy(){this.listeners.clear(),this.mainMs.length=0,this.overlayMs.length=0,this.mainStamps.length=0,this.overlayStamps.length=0,this.perSeriesMs.clear(),this.perSeriesStamps.clear(),this.drawCallsMain.clear(),this.drawCallsOverlay.clear(),this.mainFrameCount=0,this.overlayFrameCount=0,this.lastStamp=0,this.heapCounter=0,this.heapMb=null}sampleHeap(){if(this.heapCounter++,this.heapCounter<this.heapInterval)return;this.heapCounter=0;const t=performance.memory;this.heapMb=t?t.usedJSHeapSize/(1024*1024):null}}class pi{constructor(t){L(this,"dirty",!1),L(this,"rafId",null),L(this,"callback"),L(this,"render",e=>{this.dirty=!1,this.rafId=null,this.callback(e)}),this.callback=t}markDirty(){this.dirty||(this.dirty=!0,this.rafId=requestAnimationFrame(this.render))}destroy(){this.rafId!==null&&(cancelAnimationFrame(this.rafId),this.rafId=null),this.dirty=!1}}const ye=6e4,le=36e5,se=864e5,Vt=365*se;function ut(s){return s instanceof Date?s.getTime():s}function Tr(s){return s.length===0||!s.some(t=>t.time instanceof Date)?s:s.map(t=>({...t,time:ut(t.time)}))}function Rr(s){return s.length===0||!s.some(t=>t.time instanceof Date)?s:s.map(t=>({...t,time:ut(t.time)}))}function Qs(s){if(s.length<2)return se;const t=[];for(let e=1;e<Math.min(s.length,20);e++)t.push(s[e]-s[e-1]);return t.sort((e,i)=>e-i),t[Math.floor(t.length/2)]}function hi(s,t){const e=new Date(s);return t>=Vt?e.toLocaleDateString("en-US",{year:"numeric"}):t>=se?e.toLocaleDateString("en-US",{month:"short",day:"numeric"}):t>=le?e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",hour12:!1}):e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}function Zs(s){return new Date(s).toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"})}function Lr(s){const t=[1e3,5e3,1e4,15e3,3e4],e=[ye,5*ye,10*ye,15*ye,30*ye],i=[le,2*le,4*le,6*le,12*le],n=[se,7*se,30*se,90*se],r=[Vt,2*Vt,5*Vt,10*Vt,25*Vt,50*Vt,100*Vt];return s<ye?[...t,...e,...i,...n,...r]:s<le?[...e,...i,...n,...r]:s<se?[...i,...n,...r]:s<Vt?[...n,...r]:r}const Ir=50,Ar=80;class tn{constructor(){L(this,"from",0),L(this,"to",0),L(this,"width",1),L(this,"pixelRatio",1),L(this,"dataInterval",null),L(this,"labelCountHintValue",null),L(this,"minSpacingValue",null),L(this,"resolvedInterval",null),L(this,"lastInterval",null),L(this,"lastWant",null),L(this,"lastBucketKey",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??Ar}update(t,e,i,n){if(this.from=t.from,this.to=t.to,this.width=e,this.pixelRatio=i,n!==void 0&&n>0){const r=Ts(n);this.lastBucketKey!==null&&this.lastBucketKey!==r&&this.resetHysteresis(),this.lastBucketKey=r,this.dataInterval=n}this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=Dr(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=Wr(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastWant=null}timeToX(t){return this.to<=this.from?0:(t-this.from)/(this.to-this.from)*this.width}timeToBitmapX(t){return Math.round(this.timeToX(t)*this.pixelRatio)}xToTime(t){return this.to<=this.from?this.from:this.from+t/this.width*(this.to-this.from)}pixelDeltaToTimeDelta(t){return this.to<=this.from?0:t/this.width*(this.to-this.from)}barWidthMedia(t){return this.to<=this.from?0:t/(this.to-this.from)*this.width}barWidthBitmap(t){return Math.max(1,Math.round(this.barWidthMedia(t)*this.pixelRatio))}niceTickValues(t){if(this.to<=this.from)return{ticks:[],tickInterval:0};if(this.dataInterval!==t){const a=Ts(t);this.lastBucketKey!==null&&this.lastBucketKey!==a&&this.resetHysteresis(),this.lastBucketKey=a,this.dataInterval=t,this.resolveInterval()}if(this.resolvedInterval==null)return{ticks:[],tickInterval:0};const e=this.resolvedInterval,i=Math.ceil(this.from/e)*e,n=Math.max(0,Math.min(Ir,Math.floor((this.to-i)/e)+1)),r=[];for(let a=0;a<n;a++)r.push(i+a*e);return{ticks:r,tickInterval:e}}getRange(){return{from:this.from,to:this.to}}getMediaWidth(){return this.width}resolveInterval(){if(this.to<=this.from||this.width<=0||this.dataInterval==null||this.dataInterval<=0){this.resolvedInterval=null;return}const t=Lr(this.dataInterval),e=this.to-this.from,i=e/this.width*this.minLabelSpacing;let n;if(this.labelCountHint!=null){const l=Math.max(1,this.labelCountHint);n=Math.max(e/l,i)}else n=i;if(this.lastInterval!=null&&this.lastWant!=null&&t.includes(this.lastInterval)){const l=n>=this.lastWant*.8&&n<=this.lastWant*1.25,h=this.lastInterval>=i;if(l&&h){this.resolvedInterval=this.lastInterval;return}}let r=t[t.length-1],a=t.length-1;for(let l=0;l<t.length;l++)if(t[l]>=n){r=t[l],a=l;break}if(this.labelCountHint!=null&&a>0&&this.countTicks(r)<this.labelCountHint){const l=t[a-1];l>=i&&(r=l)}this.resolvedInterval=r,this.lastInterval=r,this.lastWant=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.from/t)*t;return Math.max(0,Math.floor((this.to-e)/t)+1)}}function Ts(s){return s<6e4?0:s<36e5?1:s<864e5?2:3}function Dr(s){return typeof s=="number"&&Number.isFinite(s)&&s>=2?Math.floor(s):null}function Wr(s){return typeof s=="number"&&Number.isFinite(s)&&s>0?s:null}function en(s){const t=Math.abs(s);if(t===0)return"0";if(t<1e-12)return s.toExponential(2);const e=Math.max(0,Math.ceil(-Math.log10(t))-1),i=Math.min(12,e+4),n=s.toFixed(i);return n.includes(".")?n.replace(/\.?0+$/,""):n}function sn(s){return Number.isNaN(s)?"—":s===1/0?"∞":s===-1/0?"−∞":null}function oe(s,t){const e=sn(s);if(e!==null)return e;const i=Math.abs(s),n=(t==null?void 0:t.decimals)??2,r=(a,l,h)=>{const d=a/l,c=Number.parseFloat(d.toFixed(n));return Math.abs(c)>=1e3?null:`${d.toFixed(n)}${h}`};return i>=1e15?s.toExponential(2):i>=1e12?r(s,1e12,"T")??s.toExponential(2):i>=1e9?r(s,1e9,"B")??`${(s/1e12).toFixed(n)}T`:i>=1e6?r(s,1e6,"M")??`${(s/1e9).toFixed(n)}B`:i>=1e3?r(s,1e3,"K")??`${(s/1e6).toFixed(n)}M`:i<1?en(s):i<100?s.toFixed(2):s.toFixed(0)}function is(s){const t=sn(s);if(t!==null)return t;const e=Math.abs(s);return e===0?"0":e<1?en(s):e<100?s.toFixed(4):e>=1e7?oe(s):e<1e4?s.toFixed(2):s.toFixed(0)}function Fr(s){if(!Number.isFinite(s)||s<=0)return 1;const t=10**Math.floor(Math.log10(s)),e=s/t;return(e<=1?1:e<=2?2:e<=5?5:10)*t}function Pr(s){if(!Number.isFinite(s)||s<=0)return 1;const t=10**Math.floor(Math.log10(s)),e=s/t;return(e>=5?5:e>=2?2:1)*t}const Br=50,zr=50;class nn{constructor(){L(this,"min",0),L(this,"max",0),L(this,"height",1),L(this,"pixelRatio",1),L(this,"labelCountHintValue",null),L(this,"minSpacingValue",null),L(this,"resolvedInterval",null),L(this,"lastInterval",null),L(this,"lastRawInterval",null),L(this,"customFormat",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??zr}update(t,e,i){this.min=t.min,this.max=t.max,this.height=e,this.pixelRatio=i,this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=Er(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=Vr(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastRawInterval=null}setFormat(t){this.customFormat=t}getFormat(){return this.customFormat}valueToY(t){const e=this.max-this.min;return e===0?this.height/2:(1-(t-this.min)/e)*this.height}valueToBitmapY(t){return Math.round(this.valueToY(t)*this.pixelRatio)}yToValue(t){const e=this.max-this.min;return e===0?this.min:this.max-t/this.height*e}niceTickValues(){if(this.resolvedInterval==null)return[];const t=this.resolvedInterval,e=Math.ceil(this.min/t)*t,i=Math.max(0,Math.min(Br,Math.floor((this.max-e)/t)+1)),n=[];for(let r=0;r<i;r++)n.push(e+r*t);return n}getRange(){return{min:this.min,max:this.max}}getMediaHeight(){return this.height}formatY(t){if(this.customFormat)return this.customFormat(t);if(this.max-this.min>=1e6)return oe(t);const e=this.resolvedInterval,i=e!=null&&e>0?Math.max(0,-Math.floor(Math.log10(e))):1;return t.toFixed(i)}resolveInterval(){if(this.max<=this.min||this.height<=0){this.resolvedInterval=null;return}const t=this.max-this.min,e=t*this.minLabelSpacing/this.height,i=this.labelCountHint!=null?Math.max(1,this.labelCountHint):Math.max(1,Math.floor(this.height/this.minLabelSpacing));let n=t/i;if(n<e&&(n=e),this.lastInterval!=null&&this.lastRawInterval!=null){const a=n>=this.lastRawInterval*.8&&n<=this.lastRawInterval*1.25,l=this.lastInterval>=e;if(a&&l){this.resolvedInterval=this.lastInterval;return}}let r=Fr(n);if(this.labelCountHint!=null&&this.countTicks(r)<this.labelCountHint){const a=Pr(n);a>=e&&a>0&&(r=a)}this.resolvedInterval=r,this.lastInterval=r,this.lastRawInterval=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.min/t)*t;return Math.max(0,Math.floor((this.max-e)/t)+1)}}function Er(s){return typeof s=="number"&&Number.isFinite(s)&&s>=2?Math.floor(s):null}function Vr(s){return typeof s=="number"&&Number.isFinite(s)&&s>0?s:null}function ae(s,t){return s===!1?0:s===void 0?t:s}function Yr(s,t,e,i){const n=s==null?void 0:s.get(t);if(!n)return 1;if(i<=0)return s==null||s.delete(t),1;const r=Pe((e-n.startTime)/i,0,1),a=qs(r);return r>=1&&(s==null||s.delete(t)),a}function jr(s){let t=0,e=0;for(const i of s)i>0?t+=i:i<0&&(e+=i);return{positive:t,negative:e}}function _r(s){return s.positive>0?s.positive:s.negative<0?s.negative:0}function Or(s){return s.positive>0?100:s.negative<0?-100:0}const Hr=16,Nr=(s,t,e)=>s+(t-s)*e;var xt,Yt,he;class rn{constructor(t){L(this,"stores"),D(this,xt),D(this,Yt),D(this,he,0),L(this,"entries"),this.stores=Array.from({length:t},()=>new Js),k(this,xt,new Array(t).fill(null)),k(this,Yt,new Array(t).fill(Number.NaN)),this.entries=Array.from({length:t},()=>new Map)}get displayedLastValues(){return o(this,xt).map(t=>(t==null?void 0:t.current)??null)}get lastSeededTimes(){return o(this,Yt)}getColor(){return this.getCommonOptions().colors[0]}getColors(){return this.getCommonOptions().colors}setData(t,e=0){var i;const n=this.stores[e];if(!n)return;const r=Rr(t??[]);n.setData(r),(i=this.entries[e])==null||i.clear()}appendPoint(t,e=0){var i;const n=this.stores[e];if(!n)return;const r=t,a=ut(r.time),l=this.createEntry(e,a,performance.now());n.append({...r,time:a}),l&&((i=this.entries[e])==null||i.set(a,l))}updateLastPoint(t,e=0){const i=this.stores[e];if(!i)return;const n=t;i.updateLast({...n,time:ut(n.time)})}getLayerCount(){return this.stores.length}setLayerVisible(t,e){var i;(i=this.stores[t])==null||i.setVisible(e)}isLayerVisible(t){var e;return((e=this.stores[t])==null?void 0:e.isVisible())??!0}getLayerColors(){return this.getColors()}onDataChanged(t){for(const e of this.stores)e.on("update",t);return()=>{for(const e of this.stores)e.off("update",t)}}dispose(){for(const t of this.stores)t.removeAllListeners();for(const t of this.entries)t.clear();for(let t=0;t<o(this,xt).length;t++)o(this,xt)[t]=null,o(this,Yt)[t]=Number.NaN;k(this,he,0)}cancelEntranceAnimations(){for(const t of this.entries)t.clear()}get needsAnimation(){for(const t of this.entries)if(t.size>0)return!0;for(const t of o(this,xt))if(t!=null&&t.animating)return!0;return!1}advanceLiveTracking(t){if(t===o(this,he))return;const e=ae(this.getCommonOptions().smoothMs,Zi),i=o(this,he)?Math.min(t-o(this,he),Hr):0,n=t-i;for(let r=0;r<this.stores.length;r++){const a=this.stores[r].last();if(!a){o(this,xt)[r]=null,o(this,Yt)[r]=Number.NaN;continue}const l=o(this,Yt)[r]!==a.time,h=o(this,xt)[r];if(h===null||l||e<=0){o(this,xt)[r]=new Be({initial:a.value,duration:e>0?e:0,easing:pe,lerp:Nr}),o(this,Yt)[r]=a.time;continue}h.setTarget(a.value,{duration:e,now:n}),h.tick(t)}k(this,he,t)}entranceProgress(t,e,i){const n=ae(this.getCommonOptions().entryMs,be);return Yr(this.entries[t],e,i,n)}effectiveValue(t,e,i){var n;if(o(this,Yt)[t]!==e)return i;const r=(n=o(this,xt)[t])==null?void 0:n.current;return r===void 0?i:r}getLastValue(){for(let t=this.stores.length-1;t>=0;t--){const e=this.stores[t].last();if(e)return e.value}return null}getDataAtTime(t,e){var i;return((i=this.stores[0])==null?void 0:i.findNearest(t,e))??null}getLayerSnapshots(t,e){if(this.stores.length<=1)return null;const i=this.getColors(),n=[];for(let r=0;r<this.stores.length;r++){if(!this.stores[r].isVisible())continue;const a=this.stores[r].getVisibleData(t-e,t+e);if(a.length===0)continue;let l=a[0],h=Math.abs(a[0].time-t);for(let d=1;d<a.length;d++){const c=Math.abs(a[d].time-t);c<=h&&(h=c,l=a[d])}n.push({layerIndex:r,time:l.time,value:l.value,color:i[r%i.length]})}return n.length>0?n:null}getStackedLastValue(){var t;if(this.stores.length<=1){const a=(t=this.stores[0])==null?void 0:t.last();return a?{value:a.value,isLive:!0}:null}let e=-1/0;for(const a of this.stores){if(!a.isVisible())continue;const l=a.last();l&&l.time>e&&(e=l.time)}if(e===-1/0)return null;const i=this.getCommonOptions().stacking;if(i==="off"){for(let a=this.stores.length-1;a>=0;a--){if(!this.stores[a].isVisible())continue;const l=this.stores[a].last();if(l)return{value:l.value,isLive:!0}}return null}const n=[];for(const a of this.stores){if(!a.isVisible())continue;const l=a.last();n.push(l&&l.time===e?l.value:0)}const r=jr(n);return{value:i==="percent"?Or(r):_r(r),isLive:!0}}getLayerLastSnapshots(){if(this.stores.length<=1)return null;const t=this.getColors(),e=[];for(let i=0;i<this.stores.length;i++){if(!this.stores[i].isVisible())continue;const n=this.stores[i].last();n&&e.push({layerIndex:i,time:n.time,value:n.value,color:t[i%t.length]})}return e.length>0?e:null}getTotalLength(){let t=0;for(const e of this.stores)t+=e.length;return t}getValueRange(t,e){const i=this.getCommonOptions().stacking;if(i==="percent")return{min:0,max:100};if(this.stores.length<=1)return null;const n=this.stores.map(h=>h.isVisible()?h.getVisibleData(t,e):[]);if(i==="off"){let h=1/0,d=-1/0;for(const c of n)for(const u of c)Number.isFinite(u.value)&&(u.value<h&&(h=u.value),u.value>d&&(d=u.value));return h<1/0?{min:h,max:d}:null}const r=new Map;for(let h=0;h<n.length;h++)for(const d of n[h]){let c=r.get(d.time);c||(c=new Array(n.length).fill(0),r.set(d.time,c)),c[h]=Number.isFinite(d.value)?d.value:0}let a=0,l=0;for(const h of r.values()){let d=0,c=0;for(const u of h)u>0?d+=u:c+=u;d>l&&(l=d),c<a&&(a=c)}return l>a?{min:a,max:l}:null}}xt=new WeakMap,Yt=new WeakMap,he=new WeakMap;const $r={colors:["#26a69a","#ef5350"],barWidthRatio:.6,stacking:"off"};function Rs(s){if(!s)return{};const t={...s};return s.enterAnimation!==void 0&&s.entryAnimation===void 0&&(t.entryAnimation=s.enterAnimation),s.enterMs!==void 0&&s.entryMs===void 0&&(t.entryMs=s.enterMs),t}class Xr extends rn{constructor(t,e){super(t),L(this,"options"),this.options={...$r,...Rs(e)}}get store(){return this.stores[0]}updateOptions(t){this.options={...this.options,...Rs(t)}}getCommonOptions(){return this.options}createEntry(t,e,i){const n=this.options.entryAnimation??"fade-grow",r=ae(this.options.entryMs,be);return n==="none"||r<=0?null:{startTime:i}}applyTheme(t,e){const i=e.seriesColors,n=this.options.colors.map((r,a)=>r===i[a]?t.seriesColors[a]??r:r);this.updateOptions({colors:n})}applyBarTransform(t,e,i,n,r,a){const l=this.options.entryAnimation??"fade-grow";if(t>=1||l==="none")return{topY:i,barHeight:n,x:r,barWidth:a,alpha:1};let h=i,d=n,c=r,u=1;if((l==="fade"||l==="fade-grow")&&(u=t),l==="grow"||l==="fade-grow"){const f=n*t;i<e?h=e-f:h=e,d=Math.max(1,f)}return l==="slide"&&(c=r+(1-t)*a,u=t),{topY:h,barHeight:d,x:c,barWidth:a,alpha:u}}render(t){switch(this.advanceLiveTracking(performance.now()),this.options.stacking){case"normal":this.renderStacked(t,!1);break;case"percent":this.renderStacked(t,!0);break;default:this.renderOff(t);break}}renderOff(t){const{scope:e,timeScale:i,yScale:n,dataInterval:r}=t,{context:a,horizontalPixelRatio:l}=e,h=i.getRange(),d=performance.now();let c=0;for(const v of this.stores){if(!v.isVisible())continue;const S=v.getVisibleData(h.from,h.to).length;if(S>c&&(c=S),c>2)break}const u=i.barWidthBitmap(r),f=Math.round(30*l),m=c<=2?Math.min(f,u):u,g=Math.max(1,Math.round(m*this.options.barWidthRatio)-2),p=Math.floor(g/2),w=n.getRange().min<0,x=w?n.valueToBitmapY(0):e.bitmapSize.height;if(this.stores.length===1){if(!this.stores[0].isVisible())return;const v=this.options.colors[0],S=this.options.colors.length>1?this.options.colors[1]:v,M=this.stores[0].getVisibleData(h.from,h.to);for(const y of M){if(!Number.isFinite(y.value))continue;const W=this.effectiveValue(0,y.time,y.value),b=this.entranceProgress(0,y.time,d),A=i.timeToBitmapX(y.time);if(W>=0){const C=n.valueToBitmapY(W),R=Math.max(1,x-C);this.drawAnimatedBar(a,b,x,C,R,A-p,g,W>=0?v:S)}else{const C=n.valueToBitmapY(W),R=Math.max(1,C-x);this.drawAnimatedBar(a,b,x,x,R,A-p,g,S)}}}else{const v=this.stores.map(M=>M.isVisible()?M.getVisibleData(h.from,h.to):[]),S=new Map;for(let M=0;M<v.length;M++)for(const y of v[M]){if(!Number.isFinite(y.value))continue;let W=S.get(y.time);W||(W=[],S.set(y.time,W)),W.push({layer:M,value:this.effectiveValue(M,y.time,y.value)})}for(const[M,y]of S){y.sort((b,A)=>Math.abs(A.value)-Math.abs(b.value));const W=i.timeToBitmapX(M);for(const{layer:b,value:A}of y){const C=this.options.colors[b%this.options.colors.length],R=this.entranceProgress(b,M,d);if(A>=0){const F=n.valueToBitmapY(A),P=Math.max(1,x-F);this.drawAnimatedBar(a,R,x,F,P,W-p,g,C)}else{const F=n.valueToBitmapY(A),P=Math.max(1,F-x);this.drawAnimatedBar(a,R,x,x,P,W-p,g,C)}}}}if(w){a.strokeStyle=t.theme.grid.color,a.lineWidth=1;const v=Math.round(x)+.5;a.beginPath(),a.moveTo(0,v),a.lineTo(e.bitmapSize.width,v),a.stroke()}}renderStacked(t,e){const{scope:i,timeScale:n,yScale:r,dataInterval:a}=t,{context:l,horizontalPixelRatio:h}=i,d=n.getRange(),c=performance.now();let u=0;for(const S of this.stores){if(!S.isVisible())continue;const M=S.getVisibleData(d.from,d.to).length;if(M>u&&(u=M),u>2)break}const f=n.barWidthBitmap(a),m=Math.round(30*h),g=u<=2?Math.min(m,f):f,p=Math.max(1,Math.round(g*this.options.barWidthRatio)-2),w=Math.floor(p/2),x=this.stores.map(S=>S.isVisible()?S.getVisibleData(d.from,d.to):[]);if(x.every(S=>S.length===0))return;const v=new Map;for(let S=0;S<x.length;S++)for(const M of x[S]){let y=v.get(M.time);y||(y=new Array(x.length).fill(0),v.set(M.time,y));const W=Number.isFinite(M.value)?M.value:0;y[S]=this.stores[S].isVisible()?this.effectiveValue(S,M.time,W):0}for(let S=0;S<x.length;S++){const M=this.options.colors[S%this.options.colors.length];for(const[y,W]of v){const b=W[S];if(b===0)continue;const A=n.timeToBitmapX(y);let C=0,R=0;for(let P=0;P<S;P++){const E=W[P];E>0?C+=E:R+=E}const F=this.entranceProgress(S,y,c);if(e){let P=0,E=0;for(const z of W)z>0?P+=z:E+=z;if(b>0&&P>0){const z=C/P*100,_=(C+b)/P*100,N=r.valueToBitmapY(_),$=r.valueToBitmapY(z),st=Math.max(1,$-N);this.drawAnimatedBar(l,F,$,N,st,A-w,p,M)}else if(b<0&&E<0){const z=R/E*-100,_=(R+b)/E*-100,N=r.valueToBitmapY(z),$=r.valueToBitmapY(_),st=Math.max(1,$-N);this.drawAnimatedBar(l,F,N,N,st,A-w,p,M)}}else if(b>0){const P=r.valueToBitmapY(C+b),E=r.valueToBitmapY(C),z=Math.max(1,E-P);this.drawAnimatedBar(l,F,E,P,z,A-w,p,M)}else{const P=r.valueToBitmapY(R),E=r.valueToBitmapY(R+b),z=Math.max(1,E-P);this.drawAnimatedBar(l,F,P,P,z,A-w,p,M)}}}}fillBar(t,e,i,n,r,a){t.fillStyle=a,t.fillRect(e,i,n,r)}drawAnimatedBar(t,e,i,n,r,a,l,h){const d=this.options.entryAnimation??"fade-grow";if(e>=1||d==="none"){this.fillBar(t,a,n,l,r,h);return}const c=this.applyBarTransform(e,i,n,r,a,l);t.save(),t.globalAlpha=c.alpha,t.fillStyle=h,t.fillRect(c.x,c.topY,c.barWidth,c.barHeight),t.restore()}}function Ls(s,t){return s.length<=t?s:Gr(s,t,e=>e.time,e=>e.value)}function Ur(s,t){if(s.length<=t)return s;const e=Math.ceil(s.length/t),i=[];for(let n=0;n<s.length;n+=e){const r=Math.min(n+e,s.length);let a=-1/0,l=1/0,h=0;for(let d=n;d<r;d++)s[d].high>a&&(a=s[d].high),s[d].low<l&&(l=s[d].low),h+=s[d].volume??0;i.push({time:s[n].time,open:s[n].open,high:a,low:l,close:s[r-1].close,volume:h})}return i}function Gr(s,t,e,i){if(t>=s.length||t<3)return s;const n=[s[0]],r=(s.length-2)/(t-2);let a=0;for(let l=0;l<t-2;l++){const h=Math.floor((l+1)*r)+1,d=Math.min(Math.floor((l+2)*r)+1,s.length-1);let c=0,u=0;const f=d,m=Math.min(Math.floor((l+3)*r)+1,s.length),g=m-f;if(g>0){for(let S=f;S<m;S++)c+=e(s[S]),u+=i(s[S]);c/=g,u/=g}let p=-1,w=h;const x=e(s[a]),v=i(s[a]);for(let S=h;S<d;S++){const M=Math.abs((x-c)*(i(s[S])-v)-(x-e(s[S]))*(u-v));M>p&&(p=M,w=S)}n.push(s[w]),a=w}return n.push(s[s.length-1]),n}function ss(s,t){var e,i;return t==="x"&&((e=s.axis.x)==null?void 0:e.fontSize)!==void 0?s.axis.x.fontSize:t==="y"&&((i=s.axis.y)==null?void 0:i.fontSize)!==void 0?s.axis.y.fontSize:s.axis.fontSize}function ns(s,t){var e,i;return t==="x"&&((e=s.axis.x)==null?void 0:e.textColor)!==void 0?s.axis.x.textColor:t==="y"&&((i=s.axis.y)==null?void 0:i.textColor)!==void 0?s.axis.y.textColor:s.axis.textColor}function vt(s){return Array.isArray(s)?s.source??s[0]:s}const Is=new Map;function Kr(s){return[parseInt(s.slice(1,3),16),parseInt(s.slice(3,5),16),parseInt(s.slice(5,7),16)]}function De(s,t){if(s.startsWith("rgba"))return s.replace(/[\d.]+\)\s*$/,`${t})`);if(s.startsWith("rgb("))return s.replace(/^rgb\((.*)\)$/i,`rgba($1, ${t})`);const e=s+t;let i=Is.get(e);if(i)return i;const[n,r,a]=Kr(s);return i=`rgba(${n}, ${r}, ${a}, ${t})`,Is.set(e,i),i}const qr=(s,t,e)=>({time:t.time,open:s.open+(t.open-s.open)*e,high:s.high+(t.high-s.high)*e,low:s.low+(t.low-s.low)*e,close:s.close+(t.close-s.close)*e,volume:s.volume===void 0||t.volume===void 0?t.volume:s.volume+(t.volume-s.volume)*e}),Jr=(s,t)=>s.time===t.time&&s.open===t.open&&s.high===t.high&&s.low===t.low&&s.close===t.close&&s.volume===t.volume,Qr={up:{body:"#26a69a",wick:"#26a69a"},down:{body:"#ef5350",wick:"#ef5350"},bodyWidthRatio:.6};function As(s){if(!s)return{};const t={...s};return s.enterAnimation!==void 0&&s.entryAnimation===void 0&&(t.entryAnimation=s.enterAnimation),s.enterMs!==void 0&&s.entryMs===void 0&&(t.entryMs=s.enterMs),t}var Ct,Se,Me;class Zr{constructor(t,e){L(this,"store"),L(this,"options"),D(this,Ct,null),D(this,Se,Number.NaN),D(this,Me,0),L(this,"entries",new Map),this.store=t,this.options={...Qr,...As(e)}}get displayedLast(){var t;return((t=o(this,Ct))==null?void 0:t.current)??null}updateOptions(t){this.options={...this.options,...As(t)}}getColor(){return vt(this.options.up.body)}setData(t){this.store.setData(Tr(t??[])),this.entries.clear()}appendPoint(t){const e=t,i=ut(e.time);this.store.append({...e,time:i});const n=this.options.entryAnimation??"unfold",r=ae(this.options.entryMs,be);n!=="none"&&r>0&&this.entries.set(i,{startTime:performance.now()})}updateLastPoint(t){const e=t;this.store.updateLast({...e,time:ut(e.time)})}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[vt(this.options.up.body)]}applyTheme(t,e){this.updateOptions({up:{...t.candlestick.up},down:{...t.candlestick.down}})}onDataChanged(t){return this.store.on("update",t),()=>this.store.off("update",t)}dispose(){this.store.removeAllListeners(),k(this,Ct,null),k(this,Se,Number.NaN),k(this,Me,0),this.entries.clear()}getLastValue(){const t=this.store.last();return t?t.close:null}getDataAtTime(t,e){return this.store.findNearest(t,e)}cancelEntranceAnimations(){this.entries.clear()}get needsAnimation(){var t;return!!(this.entries.size>0||(t=o(this,Ct))!=null&&t.animating)}entranceProgress(t,e){const i=this.entries.get(t);if(!i)return 1;const n=ae(this.options.entryMs,be);if(n<=0)return this.entries.delete(t),1;const r=Pe((e-i.startTime)/n,0,1),a=qs(r);return r>=1&&this.entries.delete(t),a}advanceLiveTracking(t){const e=this.store.last();if(!e){k(this,Ct,null),k(this,Se,Number.NaN);return}const i=o(this,Se)!==e.time,n=ae(this.options.smoothMs,Zi);if(o(this,Ct)===null||i||n<=0){k(this,Ct,new Be({initial:{...e},duration:n>0?n:0,easing:pe,lerp:qr,equals:Jr})),k(this,Se,e.time),k(this,Me,t);return}const r=Math.min(t-o(this,Me),16),a=t-r;o(this,Ct).setTarget(e,{duration:n,now:a}),o(this,Ct).tick(t),k(this,Me,t)}render(t){const{scope:e,timeScale:i,yScale:n,dataInterval:r}=t,{context:a,horizontalPixelRatio:l}=e,h=i.getRange(),d=performance.now();this.advanceLiveTracking(d);let c=this.store.getVisibleData(h.from,h.to);const u=e.mediaSize.width,f=c.length>u*2;if(f&&(c=Ur(c,Math.round(u*1.5)),this.entries.clear()),c.length===0)return;if(!f&&this.displayedLast){const A=c.length-1;c[A].time===this.displayedLast.time&&(c=[...c.slice(0,A),this.displayedLast])}const m=this.entries.size>0?new Map:null;if(m)for(const A of c)this.entries.has(A.time)&&m.set(A.time,this.entranceProgress(A.time,d));const g=i.barWidthBitmap(r),p=Math.round(30*l),w=c.length<=2?Math.min(p,g):g,x=Math.max(1,Math.round(l));let v=Math.max(1,Math.round(w*this.options.bodyWidthRatio)-2);(v&1)!==(x&1)&&(v=v>1?v-1:2);const S=Math.floor(v/2),M=Math.round(n.getMediaHeight()*e.verticalPixelRatio);this.drawVolume({ctx:a,data:c,timeScale:i,chartHeight:M,barWidth:w,wickWidth:x,entranceByTime:m});const y=[],W=[];for(const A of c)A.close>=A.open?y.push(A):W.push(A);const b={ctx:a,timeScale:i,yScale:n,halfBody:S,bodyWidth:v,wickWidth:x,entranceByTime:m};this.drawCandles({...b,candles:y,body:this.options.up.body,wickColor:this.options.up.wick}),this.drawCandles({...b,candles:W,body:this.options.down.body,wickColor:this.options.down.wick})}drawVolume({ctx:t,data:e,timeScale:i,chartHeight:n,barWidth:r,wickWidth:a,entranceByTime:l}){let h=0;for(const p of e)Number.isFinite(p.volume)&&p.volume>h&&(h=p.volume);if(h===0)return;const d=n*.2;let c=Math.max(1,r-2);(c&1)!==(a&1)&&(c=c>1?c-1:2);const u=Math.floor(c/2),f=De(vt(this.options.up.body),.2),m=De(vt(this.options.down.body),.2),g=this.options.entryAnimation??"unfold";for(const p of e){if(!Number.isFinite(p.volume)||p.volume<=0)continue;const w=p.volume,x=i.timeToBitmapX(p.time),v=Math.max(1,w/h*d),S=p.close>=p.open;t.fillStyle=S?f:m;const M=(l==null?void 0:l.get(p.time))??1;if(M>=1||g==="none"){t.fillRect(x-u,n-v,c,v);continue}const y=ji(M,g,{x:x-u,barWidth:c,anchorY:n,topY:n-v,bottomY:n});t.save(),t.globalAlpha=y.alpha,t.fillRect(y.x,y.topY,c,Math.max(1,y.bottomY-y.topY)),t.restore()}}drawCandles({ctx:t,candles:e,timeScale:i,yScale:n,halfBody:r,bodyWidth:a,wickWidth:l,body:h,wickColor:d,entranceByTime:c}){if(e.length===0)return;const u=this.options.entryAnimation??"unfold",f=a+2;t.fillStyle=d;for(const g of e){const p=(c==null?void 0:c.get(g.time))??1,w=i.timeToBitmapX(g.time),x=n.valueToBitmapY(g.open),v=n.valueToBitmapY(g.high),S=n.valueToBitmapY(g.low),M=w-Math.floor(l/2);if(p>=1||u==="none"){t.fillRect(M,v,l,S-v);continue}const y=ji(p,u,{x:M,barWidth:f,anchorY:x,topY:v,bottomY:S});t.save(),t.globalAlpha=y.alpha,t.fillRect(y.x,y.topY,l,Math.max(1,y.bottomY-y.topY)),t.restore()}const m=Array.isArray(h);for(const g of e){const p=(c==null?void 0:c.get(g.time))??1,w=i.timeToBitmapX(g.time),x=n.valueToBitmapY(g.open),v=n.valueToBitmapY(g.close),S=Math.min(x,v),M=Math.max(x,v),y=Math.max(1,M-S),W=p<1&&u!=="none";let b=w-r,A=S,C=y,R=1;if(W){const F=ji(p,u,{x:w-r,barWidth:f,anchorY:x,topY:S,bottomY:M});b=F.x,A=F.topY,C=Math.max(1,F.bottomY-F.topY),R=F.alpha}if(W&&t.save(),m&&C>2){const F=t.createLinearGradient(0,A,0,A+C);F.addColorStop(0,h[0]),F.addColorStop(1,h[1]),t.fillStyle=F}else t.fillStyle=m?h[0]:h;W&&(t.globalAlpha=R),t.fillRect(b,A,a,C),W&&t.restore()}}}Ct=new WeakMap,Se=new WeakMap,Me=new WeakMap;function ji(s,t,e){switch(t){case"none":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:1};case"fade":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:s};case"unfold":return{x:e.x,topY:bt(e.anchorY,e.topY,s),bottomY:bt(e.anchorY,e.bottomY,s),alpha:1};case"slide":return{x:e.x+(1-s)*e.barWidth,topY:e.topY,bottomY:e.bottomY,alpha:s};case"fade-unfold":return{x:e.x,topY:bt(e.anchorY,e.topY,s),bottomY:bt(e.anchorY,e.bottomY,s),alpha:s}}}const ta={colors:["#2962FF"],strokeWidth:1,area:{visible:!0},pulse:!0,stacking:"off"};function Ds(s){if(!s)return{};const t={...s};return s.areaFill!==void 0&&s.area===void 0&&(t.area={visible:!!s.areaFill}),s.enterAnimation!==void 0&&s.entryAnimation===void 0&&(t.entryAnimation=s.enterAnimation),s.enterMs!==void 0&&s.entryMs===void 0&&(t.entryMs=s.enterMs),t}class ea extends rn{constructor(t,e){super(t),L(this,"options"),L(this,"areaGradientCache",new Map),this.options={...ta,...Ds(e)}}get store(){return this.stores[0]}updateOptions(t){this.options={...this.options,...Ds(t)}}getStacking(){return this.options.stacking}getCommonOptions(){return this.options}createEntry(t,e,i){var n;const r=this.options.entryAnimation??"grow",a=ae(this.options.entryMs,be);if(r==="none"||a<=0)return null;const l=(n=this.stores[t])==null?void 0:n.last();return{startTime:i,fromTime:l?l.time:e}}applyTheme(t,e){this.stores.length===1?this.getColor()===e.line.color&&this.updateOptions({colors:[t.line.color]}):this.updateOptions({colors:t.seriesColors.slice(0,this.stores.length)}),this.options.strokeWidth===e.line.width&&this.updateOptions({strokeWidth:t.line.width})}peekEntry(t,e){var i;return(i=this.entries[t])==null?void 0:i.get(e)}resolvedPulseMs(){return ae(this.options.pulseMs,Us)}get hasPulse(){return this.options.pulse&&this.resolvedPulseMs()>0&&this.stores.some(t=>t.isVisible()&&t.length>0)}get overlayNeedsAnimation(){return this.hasPulse}hasOverlayContentInRange(t,e){for(let i=0;i<this.stores.length;i++){if(!this.stores[i].isVisible())continue;const n=this.stores[i].last();if(n&&n.time>=t)return!0}return!1}render(t){this.advanceLiveTracking(performance.now()),this.options.stacking==="off"?this.renderOff(t):this.renderStacked(t,this.options.stacking==="percent")}trailingEndpoint(t,e,i,n){const r=this.stores[t],a=r.last();if(!a)return null;const l=e.timeToBitmapX(a.time),h=i.valueToBitmapY(this.effectiveValue(t,a.time,a.value)),d=this.options.entryAnimation??"grow";if(!this.peekEntry(t,a.time)||d!=="grow")return{x:l,y:h};const c=this.entranceProgress(t,a.time,n);if(c>=1)return{x:l,y:h};const u=r.getAll();if(u.length<2)return{x:l,y:h};const f=u[u.length-2];if(!Number.isFinite(f.value))return{x:l,y:h};const m=e.timeToBitmapX(f.time),g=i.valueToBitmapY(f.value);return{x:bt(m,l,c),y:bt(g,h,c)}}renderOff(t){var e;const{scope:i,timeScale:n,yScale:r}=t,{context:a}=i,l=n.getRange(),{verticalPixelRatio:h}=i,d=this.options.strokeWidth>0,c=Math.max(1,Math.round(this.options.strokeWidth*h)),u=performance.now(),f=this.options.entryAnimation??"grow";for(let m=0;m<this.stores.length;m++){if(!this.stores[m].isVisible())continue;let g=this.stores[m].getVisibleData(l.from,l.to);const p=i.mediaSize.width;if(g.length>p*2&&(g=Ls(g,Math.round(p*1.5))),g.length<2)continue;const w=this.options.colors[m%this.options.colors.length],x=g[g.length-1],v=this.peekEntry(m,x.time),S=this.entranceProgress(m,x.time,u),M=v&&f==="fade"&&S<1,y=this.trailingEndpoint(m,n,r,u)??{x:n.timeToBitmapX(x.time),y:r.valueToBitmapY(this.effectiveValue(m,x.time,x.value))},W=y.x,b=y.y;M&&(a.save(),a.globalAlpha=S);const A=g.length-1,C=[];let R=null;for(let P=0;P<A;P++){const E=g[P].value;if(!Number.isFinite(E)){R=null;continue}R||(R=[],C.push(R)),R.push({x:n.timeToBitmapX(g[P].time),y:r.valueToBitmapY(E)})}const F=(e=g[A])==null?void 0:e.value;if(Number.isFinite(W)&&Number.isFinite(b)&&Number.isFinite(F)&&(R?R.push({x:W,y:b}):C.push([{x:W,y:b}])),d&&C.some(P=>P.length>=2)){a.beginPath();for(const P of C)if(!(P.length<2)){a.moveTo(P[0].x,P[0].y);for(let E=1;E<P.length;E++)a.lineTo(P[E].x,P[E].y)}a.strokeStyle=w,a.lineWidth=c,a.lineJoin="round",a.lineCap="round",a.stroke()}if(d){const P=Math.max(1,c/2);let E=!1;for(const z of C)z.length===1&&(E||(a.beginPath(),E=!0),a.moveTo(z[0].x+P,z[0].y),a.arc(z[0].x,z[0].y,P,0,Math.PI*2));E&&(a.fillStyle=w,a.fill())}if(this.options.area.visible){const P=i.bitmapSize.height,E=String(m),z=this.areaGradientCache.get(E);let _;z&&z.bottomY===P&&z.color===w?_=z.gradient:(_=a.createLinearGradient(0,0,0,P),_.addColorStop(0,De(w,.12)),_.addColorStop(1,De(w,.01)),this.areaGradientCache.set(E,{gradient:_,bottomY:P,color:w})),a.fillStyle=_;for(const N of C)if(!(N.length<2)){a.beginPath(),a.moveTo(N[0].x,N[0].y);for(let $=1;$<N.length;$++)a.lineTo(N[$].x,N[$].y);a.lineTo(N[N.length-1].x,P),a.lineTo(N[0].x,P),a.closePath(),a.fill()}}M&&a.restore()}}renderStacked(t,e){const{scope:i,timeScale:n,yScale:r}=t,{context:a}=i,l=n.getRange(),{verticalPixelRatio:h}=i,d=this.options.strokeWidth>0,c=Math.max(1,Math.round(this.options.strokeWidth*h)),u=i.mediaSize.width,f=this.stores.map(b=>{let A=b.getVisibleData(l.from,l.to);return A.length>u*2&&(A=Ls(A,Math.round(u*1.5))),A}),m=new Set;for(const b of f)for(const A of b)m.add(A.time);const g=Array.from(m).sort((b,A)=>b-A);if(g.length<2)return;const p=f.map((b,A)=>{const C=new Map;for(const R of b)C.set(R.time,this.effectiveValue(A,R.time,R.value));return C}),w=Array.from({length:this.stores.length},()=>new Array(g.length).fill(0));for(let b=0;b<g.length;b++){const A=g[b];let C=0;if(e)for(let F=0;F<this.stores.length;F++){if(!this.stores[F].isVisible())continue;const P=p[F].get(A);Number.isFinite(P)&&(C+=P)}let R=0;for(let F=0;F<this.stores.length;F++){const P=this.stores[F].isVisible()?p[F].get(A):0,E=Number.isFinite(P)?P:0;R+=e&&C>0?E/C*100:E,w[F][b]=R}}const x=performance.now(),v=this.options.entryAnimation??"grow",S=new Map;for(let b=0;b<g.length;b++)S.set(g[b],b);const M=g.length-1,y=new Array(this.stores.length).fill(1);for(let b=0;b<this.stores.length;b++){if(!this.stores[b].isVisible())continue;const A=this.stores[b].last();if(!A)continue;const C=this.peekEntry(b,A.time);if(!C)continue;const R=S.get(A.time);R!==M||S.get(C.fromTime)!==R-1||(y[b]=this.entranceProgress(b,A.time,x))}const W=(b,A)=>{if(A>=1||b.length<2)return;const C=b.length-1,R=b[C-1],F=b[C];b[C]=[bt(R[0],F[0],A),bt(R[1],F[1],A)]};for(let b=this.stores.length-1;b>=0;b--){if(!this.stores[b].isVisible())continue;const A=this.options.colors[b%this.options.colors.length],C=y[b],R=b>0&&this.stores[b-1].isVisible()?y[b-1]:1,F=[];for(let z=0;z<g.length;z++)F.push([n.timeToBitmapX(g[z]),r.valueToBitmapY(w[b][z])]);v==="grow"&&W(F,C);const P=[];for(let z=0;z<g.length;z++){const _=b>0?w[b-1][z]:0;P.push([n.timeToBitmapX(g[z]),r.valueToBitmapY(_)])}v==="grow"&&W(P,R);const E=v==="fade"&&C<1;if(E&&(a.save(),a.globalAlpha=C),this.options.area.visible){a.beginPath(),a.moveTo(F[0][0],F[0][1]);for(let z=1;z<F.length;z++)a.lineTo(F[z][0],F[z][1]);for(let z=P.length-1;z>=0;z--)a.lineTo(P[z][0],P[z][1]);a.closePath(),a.fillStyle=De(A,.25),a.fill()}if(d){a.beginPath(),a.moveTo(F[0][0],F[0][1]);for(let z=1;z<F.length;z++)a.lineTo(F[z][0],F[z][1]);a.strokeStyle=A,a.lineWidth=c,a.lineJoin="round",a.lineCap="round",a.stroke()}E&&a.restore()}}drawOverlay(t){const{scope:e,timeScale:i,yScale:n,crosshair:r,dataInterval:a}=t,l=e,h=this.resolvedPulseMs();if(r){const d=this.options.colors,c=this.options.stacking,u=4*l.horizontalPixelRatio,f=[],m=[];for(let p=0;p<this.stores.length;p++){const w=this.stores[p].findNearest(r.time,a);w?(f.push(w.value),m.push(w.time)):(f.push(0),m.push(null))}const g=[];if(c==="off")for(const p of f)g.push(p);else{let p=0;if(c==="percent")for(let x=0;x<f.length;x++)this.stores[x].isVisible()&&(p+=f[x]);let w=0;for(let x=0;x<f.length;x++){const v=this.stores[x].isVisible()?f[x]:0;w+=c==="percent"&&p>0?v/p*100:v,g.push(w)}}for(let p=0;p<this.stores.length;p++){const w=m[p];if(w===null||!this.stores[p].isVisible())continue;const x=d[p%d.length],v=i.timeToBitmapX(w),S=n.valueToBitmapY(g[p]);e.context.beginPath(),e.context.arc(v,S,u+3*l.horizontalPixelRatio,0,Math.PI*2);const M=x.startsWith("#")?x+"40":/^rgb\(/i.test(x)?x.replace(/^rgb\((.*)\)$/i,"rgba($1, 0.25)"):x.replace(/[\d.]+\)\s*$/,"0.25)");e.context.fillStyle=M,e.context.fill(),e.context.beginPath(),e.context.arc(v,S,u,0,Math.PI*2),e.context.fillStyle=x,e.context.fill()}}if(this.hasPulse&&h>0){const d=performance.now();this.advanceLiveTracking(d);const c=this.options.stacking;for(let u=0;u<this.stores.length;u++){if(!this.stores[u].isVisible())continue;const f=this.options.colors[u%this.options.colors.length];if(c==="off"){const y=this.trailingEndpoint(u,i,n,d);if(!y)continue;this.drawPulse({ctx:e.context,x:y.x,y:y.y,color:f,pixelRatio:l.horizontalPixelRatio,pulseMs:h});continue}const m=this.stores[u].last();if(!m)continue;const g=m.time,p=c==="percent",w=y=>{const W=C=>{const R=C===u&&y===g?m:this.stores[C].findNearest(y,0);return!R||R.time!==y?0:this.effectiveValue(C,y,R.value)};let b=0;if(p)for(let C=0;C<this.stores.length;C++)this.stores[C].isVisible()&&(b+=W(C));let A=0;for(let C=0;C<=u;C++){if(!this.stores[C].isVisible())continue;const R=W(C);A+=p&&b>0?R/b*100:R}return A};let x=i.timeToBitmapX(g),v=n.valueToBitmapY(w(g));const S=this.options.entryAnimation??"grow",M=this.peekEntry(u,g);if(S==="grow"&&M){const y=this.entranceProgress(u,g,d);if(y<1&&M.fromTime!==g){const W=i.timeToBitmapX(M.fromTime),b=n.valueToBitmapY(w(M.fromTime));x=bt(W,x,y),v=bt(b,v,y)}}this.drawPulse({ctx:e.context,x,y:v,color:f,pixelRatio:l.horizontalPixelRatio,pulseMs:h})}}}drawPulse({ctx:t,x:e,y:i,color:n,pixelRatio:r,pulseMs:a}){const l=3*r,h=.4+.6*Math.abs(Math.sin(performance.now()/a)),d=l+4*r*h;t.beginPath(),t.arc(e,i,d,0,Math.PI*2),t.fillStyle=De(n,h*.3),t.fill(),t.beginPath(),t.arc(e,i,l,0,Math.PI*2),t.fillStyle=n,t.fill()}}const an={mode:"outside",content:"both",fontSize:11,minSliceAngle:2.5,elbowLen:12,legPad:6,distance:14,railWidth:16,labelGap:1.8,balanceSides:!0},ia={innerRadiusRatio:0,padAngle:1.15,sliceLabels:{...an},animate:!1},$i=Math.PI/180;function sa(s,t){return{...s??{},...t}}function na(s){return{...an,...s??{}}}function ra(s){const t={color:"rgba(0, 0, 0, 0.22)",blur:24,offsetX:0,offsetY:10};return s===!0||s===!1?t:{...t,...s}}function aa(s){const t={color:"rgba(0, 0, 0, 0.1)",depth:.3};return s===!0||s===!1?t:{...t,...s}}const We=Math.PI*2,on=.85;function Ws(s){const{bitmapWidth:t,bitmapHeight:e,padTop:i,padBottom:n}=s,r=Math.max(0,s.labelReserve??0),a=Math.min(Math.max(0,i),e),l=Math.min(Math.max(0,n),e-a),h=e-a-l,d=Math.max(0,t-2*r),c=t/2,u=a+h/2,f=Math.max(0,Math.min(d,h)/2*on);return{cx:c,cy:u,maxR:f}}function oa(s){if(!s.startsWith("#"))return!1;const t=parseInt(s.slice(1,3),16),e=parseInt(s.slice(3,5),16),i=parseInt(s.slice(5,7),16);return t*.299+e*.587+i*.114>150}function la(s,t){if(!s.startsWith("#"))return s;const e=Math.min(255,parseInt(s.slice(1,3),16)+Math.round(255*t)),i=Math.min(255,parseInt(s.slice(3,5),16)+Math.round(255*t)),n=Math.min(255,parseInt(s.slice(5,7),16)+Math.round(255*t));return`#${e.toString(16).padStart(2,"0")}${i.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}`}function Fs(s){if(s.startsWith("#"))return{r:parseInt(s.slice(1,3),16)||0,g:parseInt(s.slice(3,5),16)||0,b:parseInt(s.slice(5,7),16)||0,a:1};const t=s.match(/^rgba?\s*\(([^)]+)\)$/i);if(t){const e=t[1].split(",").map(i=>i.trim());return{r:Number.parseFloat(e[0])||0,g:Number.parseFloat(e[1])||0,b:Number.parseFloat(e[2])||0,a:e[3]===void 0?1:Number.parseFloat(e[3])}}return{r:0,g:0,b:0,a:1}}function ha(s,t){const e=Fs(s),i=Fs(t),n=i.a,r=Math.round(i.r*n+e.r*(1-n)),a=Math.round(i.g*n+e.g*(1-n)),l=Math.round(i.b*n+e.b*(1-n));return`#${r.toString(16).padStart(2,"0")}${a.toString(16).padStart(2,"0")}${l.toString(16).padStart(2,"0")}`}var U,G,Tt,lt,ke,Jt,St,ce,At,Xi,yi,ln,hn,cn;class xi{constructor(t){D(this,At),D(this,U,[]),D(this,G),D(this,Tt,-1),D(this,lt,[]),D(this,ke,0),D(this,Jt,1),D(this,St,null),D(this,ce,[]),k(this,G,B(this,At,Xi).call(this,ia,t??{}))}getData(){return o(this,U)}setData(t){const e=t??[];k(this,U,e),k(this,lt,new Array(e.length).fill(0)),k(this,Jt,o(this,G).animate?0:1),k(this,St,null);for(const i of o(this,ce))i()}onDataChanged(t){return o(this,ce).push(t),()=>{const e=o(this,ce).indexOf(t);e>=0&&o(this,ce).splice(e,1)}}updateOptions(t){var e,i;const n=(e=o(this,G).sliceLabels)==null?void 0:e.mode;k(this,G,B(this,At,Xi).call(this,o(this,G),t??{})),((i=o(this,G).sliceLabels)==null?void 0:i.mode)==="outside"&&n!=="outside"&&k(this,Jt,o(this,G).animate?0:1),k(this,St,null)}getColor(){var t,e;return((t=o(this,U)[0])==null?void 0:t.color)??((e=o(this,G).colors)==null?void 0:e[0])??"#888"}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[this.getColor()]}applyTheme(t,e){t.typography.fontFamily!==e.typography.fontFamily&&k(this,St,null)}hitTest(t,e,i,n,r){var a;if(o(this,U).length===0)return-1;const l=o(this,U).reduce((S,M)=>S+M.value,0);if(l<=0)return-1;const h=((a=o(this,St))==null?void 0:a.reserve)??0,{cx:d,cy:c,maxR:u}=Ws({bitmapWidth:i,bitmapHeight:n,padTop:(r==null?void 0:r.top)??0,padBottom:(r==null?void 0:r.bottom)??0,labelReserve:h}),f=u,m=f*o(this,G).innerRadiusRatio,g=t-d,p=e-c,w=Math.sqrt(g*g+p*p);if(w>f||w<m)return-1;let x=Math.atan2(p,g)+Math.PI/2;x<0&&(x+=We);let v=0;for(let S=0;S<o(this,U).length;S++){const M=o(this,U)[S].value/l*We;if(x>=v&&x<v+M)return S;v+=M}return-1}setHoverIndex(t){return o(this,Tt)===t?!1:(k(this,Tt,t),!0)}getHoverIndex(){return o(this,Tt)}getHoverInfo(t){if(o(this,Tt)<0)return null;const e=o(this,U)[o(this,Tt)];if(!e)return null;const i=o(this,U).reduce((r,a)=>r+a.value,0),n=o(this,G).colors??t.seriesColors;return{label:e.label,value:e.value,percent:i>0?e.value/i*100:0,color:e.color??n[o(this,Tt)%n.length]}}getSliceInfo(t){if(o(this,U).length===0)return null;const e=o(this,U).reduce((n,r)=>n+r.value,0),i=o(this,G).colors??t.seriesColors;return o(this,U).map((n,r)=>({label:n.label,value:n.value,percent:e>0?n.value/e*100:0,color:n.color??i[r%i.length]}))}get needsAnimation(){var t;if(!o(this,G).animate)return!1;for(let e=0;e<o(this,lt).length;e++){const i=e===o(this,Tt)?1:0;if(Math.abs(o(this,lt)[e]-i)>.01)return!0}return((t=o(this,G).sliceLabels)==null?void 0:t.mode)==="outside"&&o(this,Jt)<.99}dispose(){k(this,ce,[]),k(this,U,[]),k(this,lt,[]),k(this,ke,0)}_inspectSliceOffsets(){return o(this,lt)}render(t){if(o(this,U).length===0)return;const{scope:e,theme:i,padding:n}=t,{context:r,bitmapSize:a,horizontalPixelRatio:l,verticalPixelRatio:h}=e,d=performance.now(),c=o(this,ke)?Math.min(.05,(d-o(this,ke))/1e3):0;k(this,ke,d);const u=o(this,U).reduce((_,N)=>_+N.value,0);if(u<=0)return;const f=12;for(;o(this,lt).length<o(this,U).length;)o(this,lt).push(0);if(o(this,G).animate)for(let _=0;_<o(this,U).length;_++){const N=_===o(this,Tt)?1:0;o(this,lt)[_]=xs(o(this,lt)[_],N,f,c)}const m=na(o(this,G).sliceLabels);r.font=`${m.fontSize*l}px ${i.typography.fontFamily}`,m.mode==="outside"&&o(this,G).animate&&k(this,Jt,xs(o(this,Jt),1,6,c));const g=o(this,G).colors??i.seriesColors,p=m.mode==="outside"?B(this,At,ln).call(this,r,m,u,l):0,{cx:w,cy:x,maxR:v}=Ws({bitmapWidth:a.width,bitmapHeight:a.height,padTop:n.top*h,padBottom:n.bottom*h,labelReserve:p}),S=v,M=S*o(this,G).innerRadiusRatio,y=o(this,G).padAngle*$i,W=8*l,b=o(this,G).shadow??!1,A=ra(b),C=o(this,G).innerShadow??!1,R=aa(C);let F=-Math.PI/2;for(let _=0;_<o(this,U).length;_++){const N=o(this,U)[_],$=N.value/u*We,st=F+y/2,X=F+$-y/2,Mt=F+$/2,yt=N.color??g[_%g.length];if(X<=st){F+=$;continue}const Bt=o(this,lt)[_]*W,Q=Math.cos(Mt)*Bt,kt=Math.sin(Mt)*Bt,dt=w+Q,ft=x+kt;r.beginPath(),r.arc(dt,ft,S,st,X),M>0?r.arc(dt,ft,M,X,st,!0):r.lineTo(dt,ft),r.closePath();const gt=r.createRadialGradient(dt,ft,M||0,dt,ft,S);if(gt.addColorStop(0,la(yt,.15)),C){const zt=Math.max(0,Math.min(.999,1-R.depth));gt.addColorStop(zt,yt),gt.addColorStop(1,ha(yt,R.color))}else gt.addColorStop(1,yt);r.fillStyle=gt;const Gt=o(this,lt)[_];if(b||Gt>.01){const zt=b?1:0,Kt=Gt;r.shadowColor=b?A.color:"rgba(0,0,0,0.25)",r.shadowBlur=(A.blur*zt+12*Kt)*l,r.shadowOffsetX=A.offsetX*zt*l+Q*.3*Kt,r.shadowOffsetY=A.offsetY*zt*h+kt*.3*Kt}r.fill(),r.shadowColor="transparent",r.shadowBlur=0,r.shadowOffsetX=0,r.shadowOffsetY=0,F+=$}if(m.mode==="none")return;F=-Math.PI/2;const P=i.tooltip.textColor;if(m.mode==="outside"){const _=B(this,At,cn).call(this,{cx:w,cy:x,outerR:S,total:u,palette:g,labels:m,hpr:l,bitmapHeight:a.height}),N=_.length>1?Math.min(.06,.9/(_.length-1)):0;for(let $=0;$<_.length;$++){const st=_[$];if(st===null)continue;const X=$*N,Mt=Pe((o(this,Jt)-X)/(1-X),0,1);B(this,At,hn).call(this,{context:r,entry:st,textColor:P,labels:m,hpr:l,progress:Mt})}return}const E=M>0?(S+M)/2:S*.65;r.textAlign="center",r.textBaseline="middle";const z=m.minSliceAngle*$i;for(let _=0;_<o(this,U).length;_++){const N=o(this,U)[_],$=N.value/u*We;if($>=z){const st=F+$/2,X=o(this,lt)[_]*W,Mt=N.color??g[_%g.length],yt=B(this,At,yi).call(this,N,u,m.content),Bt=r.measureText(yt).width,Q=m.fontSize*1.2*l,kt=$<Math.PI?2*E*Math.sin($/2):2*E,dt=Bt>kt-4*l,ft=M>0&&E-M<Q;if(!dt&&!ft){const gt=w+Math.cos(st)*(E+X),Gt=x+Math.sin(st)*(E+X);r.fillStyle=oa(Mt)?"#000000":"#ffffff",r.fillText(yt,gt,Gt)}}F+=$}}}U=new WeakMap,G=new WeakMap,Tt=new WeakMap,lt=new WeakMap,ke=new WeakMap,Jt=new WeakMap,St=new WeakMap,ce=new WeakMap,At=new WeakSet,Xi=function(s,t){const e={...s,...t};return t.sliceLabels!==void 0&&(e.sliceLabels=sa(s.sliceLabels,t.sliceLabels)),e},yi=function(s,t,e){const i=t>0?s.value/t*100:0,n=`${i.toFixed(i>=10?0:1)}%`;return e==="percent"?n:e==="label"?s.label:`${s.label} ${n}`},ln=function(s,t,e,i){const n=s.font;if(o(this,St)&&o(this,St).fontScale===i&&o(this,St).font===n)return o(this,St).reserve;let r=0;for(const h of o(this,U)){const d=B(this,At,yi).call(this,h,e,t.content),c=s.measureText(d).width;c>r&&(r=c)}const a=Math.max(t.distance,t.elbowLen),l=(r+(a+Math.max(0,t.railWidth)+t.legPad+4)*i)/on;return k(this,St,{fontScale:i,font:n,reserve:l}),l},hn=function(s){const{context:t,entry:e,textColor:i,labels:n,hpr:r,progress:a}=s;if(a<=0)return;const{anchorX:l,anchorY:h,elbowX:d,elbowY:c,side:u,text:f,color:m,labelX:g,labelY:p}=e,w=g+u*n.legPad*r,x=Pe(a/.15,0,1),v=Pe((a-.15)/.45,0,1),S=Pe((a-.6)/.4,0,1);if(t.save(),t.globalAlpha=x,t.fillStyle=m,t.beginPath(),t.arc(l,h,2.5*r,0,We),t.fill(),t.restore(),v>0){t.save(),t.globalAlpha=v,t.strokeStyle=m,t.lineWidth=1*r,t.lineCap="round",t.beginPath(),t.moveTo(l,h);const M=l+(d-l)*v,y=h+(c-h)*v;if(t.lineTo(M,y),S>0){const W=d+(g-d)*S,b=c+(p-c)*S;t.lineTo(W,b)}t.stroke(),t.restore()}S>0&&(t.save(),t.globalAlpha=S,t.fillStyle=i,t.textAlign=u>=0?"left":"right",t.textBaseline="middle",t.fillText(f,w,p),t.restore())},cn=function(s){const{cx:t,cy:e,outerR:i,total:n,palette:r,labels:a,hpr:l,bitmapHeight:h}=s,d=new Array(o(this,U).length).fill(null),c=a.elbowLen*l,u=Math.max(a.distance,a.elbowLen)*l,f=Math.max(0,a.railWidth)*l,m=[];let g=-Math.PI/2;const p=a.minSliceAngle*$i;for(let S=0;S<o(this,U).length;S++){const M=o(this,U)[S],y=M.value/n*We;if(y>=p){const W=g+y/2,b=o(this,lt)[S]*(8*l),A=Math.cos(W),C=Math.sin(W),R=A>=0?1:-1,F=t+A*(i+b),P=e+C*(i+b),E=t+A*(i+b+c),z=e+C*(i+b+c),_=t+A*(i+b+u)+R*f,N=e+C*(i+b+u),$={anchorX:F,anchorY:P,elbowX:E,elbowY:z,side:R,labelX:_,labelY:N,text:B(this,At,yi).call(this,M,n,a.content),color:M.color??r[S%r.length]};d[S]=$,m.push({entry:$})}g+=y}const w=Math.max(1,a.fontSize*a.labelGap)*l,x=a.fontSize*l,v=h-a.fontSize*l;for(const S of[1,-1]){const M=[];for(const b of m)b.entry.side===S&&M.push(b.entry);if(M.length===0)continue;M.sort((b,A)=>b.labelY-A.labelY);const y=[];for(let b=0;b<M.length;b++)for(y.push({count:1,sumIdeal:M[b].labelY,startIdx:b});y.length>=2;){const A=y[y.length-2],C=y[y.length-1],R=A.sumIdeal/A.count,F=C.sumIdeal/C.count,P=R+(A.count-1)*w/2;if(F-(C.count-1)*w/2>=P+w)break;A.count+=C.count,A.sumIdeal+=C.sumIdeal,y.pop()}if(y.length>0){const b=y[0],A=b.sumIdeal/b.count-(b.count-1)*w/2;if(A<x)for(b.sumIdeal+=(x-A)*b.count;y.length>=2;){const C=y[0],R=y[1],F=C.sumIdeal/C.count,P=R.sumIdeal/R.count,E=F+(C.count-1)*w/2;if(P-(R.count-1)*w/2>=E+w)break;C.count+=R.count,C.sumIdeal+=R.sumIdeal,y.splice(1,1)}}if(y.length>0){const b=y[y.length-1],A=b.sumIdeal/b.count+(b.count-1)*w/2;if(A>v)for(b.sumIdeal-=(A-v)*b.count;y.length>=2;){const C=y[y.length-2],R=y[y.length-1],F=C.sumIdeal/C.count,P=R.sumIdeal/R.count,E=F+(C.count-1)*w/2;if(P-(R.count-1)*w/2>=E+w)break;C.count+=R.count,C.sumIdeal+=R.sumIdeal,y.pop()}}const W=(x+v)/2;for(const b of y){const A=(b.count-1)*w,C=b.sumIdeal/b.count;A>v-x&&C-A/2<x&&(b.sumIdeal=W*b.count)}for(const b of y){const A=b.sumIdeal/b.count;for(let C=0;C<b.count;C++)M[b.startIdx+C].labelY=A+(C-(b.count-1)/2)*w}}for(const S of m){const M=S.entry,y=M.labelY-M.anchorY;let W;if(Math.abs(y)<=c){const C=M.side*Math.sqrt(Math.max(0,c*c-y*y));W=M.anchorX+C}else W=(M.anchorX+M.labelX)/2;const b=Math.min(M.anchorX,M.labelX),A=Math.max(M.anchorX,M.labelX);M.elbowX=Math.max(b,Math.min(A,W)),M.elbowY=M.labelY}return d};function un(s){return!s.startsWith("#")||s.length<7?!1:parseInt(s.slice(1,3),16)*.299+parseInt(s.slice(3,5),16)*.587+parseInt(s.slice(5,7),16)*.114<128}function J(s){var t,e,i,n,r,a,l,h,d,c,u,f,m,g,p,w,x,v,S,M,y,W,b,A,C,R,F,P,E,z,_,N,$,st;const{background:X,name:Mt="Custom",description:yt,fontUrl:Bt=null}=s,Q=un(X),kt=Q?"#d1d4dc":"#24292f",dt=Q?"#787b86":"#8b949e",ft=Q?"#26a69a":"#2da44e",gt=Q?"#ef5350":"#cf222e",Gt=Q?"#2962ff":"#0969da",zt=Q?"rgba(42,46,57,0.6)":"rgba(200,200,200,0.5)",Kt=Q?"rgba(150,150,150,0.5)":"rgba(170,170,170,0.3)",ze=Q?Oe(X,.1):Ui(X,.05),fi=Q?Ce(X,.92):Ce(X,.95),gi=Q?Ce(Oe(X,.15),.6):"rgba(200,200,200,0.5)",mi=Fi,ve=((e=(t=s.candlestick)==null?void 0:t.up)==null?void 0:e.body)??ft,Z=((n=(i=s.candlestick)==null?void 0:i.down)==null?void 0:n.body)??gt,mt=vt(ve),Et=vt(Z),Ee=((r=s.line)==null?void 0:r.color)??Gt,ds=((a=s.tooltip)==null?void 0:a.textColor)??kt,fs=((l=s.axis)==null?void 0:l.textColor)??dt,Xn=((h=s.typography)==null?void 0:h.fontFamily)??mi,gs=((d=s.typography)==null?void 0:d.fontSize)??12,Un=s.chartGradient??(Q?[Oe(X,.04),Ui(X,.06)]:[Oe(X,.06),X]),Gn={background:X,chartGradient:Un,typography:{fontFamily:Xn,fontSize:gs},grid:{color:((c=s.grid)==null?void 0:c.color)??zt,style:((u=s.grid)==null?void 0:u.style)??"dashed"},candlestick:{up:{body:ve,wick:((m=(f=s.candlestick)==null?void 0:f.up)==null?void 0:m.wick)??mt},down:{body:Z,wick:((p=(g=s.candlestick)==null?void 0:g.down)==null?void 0:p.wick)??Et}},line:{color:Ee,width:((w=s.line)==null?void 0:w.width)??1,areaTopColor:((x=s.line)==null?void 0:x.areaTopColor)??Ce(Ee,.08),areaBottomColor:((v=s.line)==null?void 0:v.areaBottomColor)??Ce(Ee,.01)},seriesColors:s.seriesColors??[Ee,ft,gt],bands:{upper:((S=s.bands)==null?void 0:S.upper)??Ee,lower:((M=s.bands)==null?void 0:M.lower)??Et},crosshair:{color:((y=s.crosshair)==null?void 0:y.color)??Kt,labelBackground:((W=s.crosshair)==null?void 0:W.labelBackground)??ze,labelTextColor:((b=s.crosshair)==null?void 0:b.labelTextColor)??ds},axis:{fontSize:((A=s.axis)==null?void 0:A.fontSize)??10,textColor:fs,...(C=s.axis)!=null&&C.x?{x:{...s.axis.x}}:{},...(R=s.axis)!=null&&R.y?{y:{...s.axis.y}}:{}},yLabel:{fontSize:((F=s.yLabel)==null?void 0:F.fontSize)??11,upBackground:((P=s.yLabel)==null?void 0:P.upBackground)??mt,downBackground:((E=s.yLabel)==null?void 0:E.downBackground)??Et,neutralBackground:((z=s.yLabel)==null?void 0:z.neutralBackground)??ze,textColor:((_=s.yLabel)==null?void 0:_.textColor)??"#ffffff"},tooltip:{fontSize:((N=s.tooltip)==null?void 0:N.fontSize)??gs,background:(($=s.tooltip)==null?void 0:$.background)??fi,textColor:ds,borderColor:((st=s.tooltip)==null?void 0:st.borderColor)??gi},navigator:ca({dark:Q,bg:X,neutralFg:fs,upBody:ve,downBody:Z,upBase:mt,downBase:Et,config:s.navigator})};return{name:Mt,description:yt,fontUrl:Bt,dark:Q,theme:Gn}}function ca(s){var t,e,i,n,r,a,l,h,d,c,u,f,m,g,p,w,x,v;const{dark:S,bg:M,neutralFg:y,upBody:W,downBody:b,upBase:A,downBase:C,config:R}=s,F=(R==null?void 0:R.background)??"transparent",P=S?"rgba(255,255,255,1)":"rgba(0,0,0,1)",E=((t=R==null?void 0:R.handle)==null?void 0:t.color)??Ve(P,.3),z=((e=R==null?void 0:R.mask)==null?void 0:e.fill)??Ve(M,S?.78:.82);return{height:(R==null?void 0:R.height)??48,background:F,borderColor:(R==null?void 0:R.borderColor)??Ve(y,S?.18:.22),line:{color:((i=R==null?void 0:R.line)==null?void 0:i.color)??y,width:((n=R==null?void 0:R.line)==null?void 0:n.width)??1,areaTopColor:((r=R==null?void 0:R.line)==null?void 0:r.areaTopColor)??Ve(y,S?.22:.18),areaBottomColor:((a=R==null?void 0:R.line)==null?void 0:a.areaBottomColor)??Ve(y,0)},candlestick:{up:{body:((h=(l=R==null?void 0:R.candlestick)==null?void 0:l.up)==null?void 0:h.body)??W,wick:((c=(d=R==null?void 0:R.candlestick)==null?void 0:d.up)==null?void 0:c.wick)??A},down:{body:((f=(u=R==null?void 0:R.candlestick)==null?void 0:u.down)==null?void 0:f.body)??b,wick:((g=(m=R==null?void 0:R.candlestick)==null?void 0:m.down)==null?void 0:g.wick)??C}},window:{fill:((p=R==null?void 0:R.window)==null?void 0:p.fill)??"transparent",border:((w=R==null?void 0:R.window)==null?void 0:w.border)??"transparent",borderWidth:((x=R==null?void 0:R.window)==null?void 0:x.borderWidth)??0},handle:{color:E,width:((v=R==null?void 0:R.handle)==null?void 0:v.width)??6},mask:{fill:z}}}function Ve(s,t){if(s.startsWith("#")&&s.length===7)return Ce(s,t);const e=s.match(/^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return e?`rgba(${e[1]},${e[2]},${e[3]},${t})`:s}function Ce(s,t){const e=parseInt(s.slice(1,3),16),i=parseInt(s.slice(3,5),16),n=parseInt(s.slice(5,7),16);return`rgba(${e}, ${i}, ${n}, ${t})`}function Oe(s,t){if(!s.startsWith("#"))return s;const e=Math.min(255,Math.round(parseInt(s.slice(1,3),16)+255*t)),i=Math.min(255,Math.round(parseInt(s.slice(3,5),16)+255*t)),n=Math.min(255,Math.round(parseInt(s.slice(5,7),16)+255*t));return`#${e.toString(16).padStart(2,"0")}${i.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}`}function Ui(s,t){if(!s.startsWith("#"))return s;const e=Math.max(0,Math.round(parseInt(s.slice(1,3),16)*(1-t))),i=Math.max(0,Math.round(parseInt(s.slice(3,5),16)*(1-t))),n=Math.max(0,Math.round(parseInt(s.slice(5,7),16)*(1-t)));return`#${e.toString(16).padStart(2,"0")}${i.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}`}function V(s){const t=s.startsWith("#")&&s.length===7?[Oe(s,.2),Ui(s,.15)]:[s,s];return Object.defineProperty(t,"source",{value:s,enumerable:!1}),t}const Di="'JetBrains Mono', 'Fira Code', monospace",Wi="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap",Fi="'Outfit', -apple-system, BlinkMacSystemFont, sans-serif",rs="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap",dn="'Roboto Mono', monospace",fn="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap",ua="'IBM Plex Mono', monospace",da="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap",as="'Fira Code', monospace",os="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&display=swap",gn="'Source Code Pro', monospace",mn="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600&display=swap",fa="'Space Mono', monospace",ga="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap",ls="'Plus Jakarta Sans', sans-serif",hs="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap",ma="'Caveat', 'Comic Sans MS', cursive",pa="https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap",pn=J({name:"Catppuccin",description:"Pastel tones on a mocha base",background:"#1e1e2e",grid:{color:"rgba(49,50,68,0.8)"},candlestick:{up:{body:V("#a6e3a1"),wick:"#a6e3a1"},down:{body:V("#f38ba8"),wick:"#f38ba8"}},line:{color:"#89b4fa"},seriesColors:["#89b4fa","#fab387","#a6e3a1","#cba6f7","#f38ba8","#f9e2af","#94e2d5","#eba0ac","#74c7ec","#cba6f7"],bands:{upper:"#74c7ec",lower:"#f38ba8"},crosshair:{color:"rgba(108,112,134,0.4)",labelBackground:"#313244"},axis:{textColor:"#6c7086"},tooltip:{background:"rgba(30,30,46,0.92)",textColor:"#cdd6f4",borderColor:"rgba(49,50,68,0.6)"},typography:{fontFamily:Fi},fontUrl:rs}),qt={top:20,bottom:20,right:{intervals:3},left:{intervals:0}},ba=.1,va=.3,ya=.4,xa=.5,wa=4,Sa=(s,t,e)=>({from:bt(s.from,t.from,e),to:bt(s.to,t.to,e)}),Ma=(s,t)=>s.from===t.from&&s.to===t.to;var ot,Rt,nt;class ka extends li{constructor({padding:t,reboundMs:e}={}){super(),D(this,ot),L(this,"_yRange",{min:0,max:0}),L(this,"_autoScroll",!0),L(this,"padding"),L(this,"reboundMs"),L(this,"dataInterval",6e4),D(this,Rt,null),D(this,nt,null),L(this,"_prevDataEnd",null),L(this,"_lastChartWidth",0),this.padding={top:(t==null?void 0:t.top)??qt.top,bottom:(t==null?void 0:t.bottom)??qt.bottom,right:(t==null?void 0:t.right)??qt.right,left:(t==null?void 0:t.left)??qt.left},this.reboundMs=e??Gs,k(this,ot,new Be({initial:{from:0,to:0},duration:vi.streamTick,easing:pe,lerp:Sa,equals:Ma}))}setReboundMs(t){this.reboundMs=Math.max(0,t)}resolveHPad(t,e,i){return typeof t=="object"?t.intervals*this.dataInterval:i<=0?0:t/i*e}get visualRange(){return o(this,ot).current}get logicalRange(){return o(this,ot).target}get visibleRange(){return o(this,ot).current}get yRange(){return this._yRange}get autoScroll(){return this._autoScroll}get animating(){return o(this,ot).animating}get dataStart(){return o(this,Rt)}get dataEnd(){return o(this,nt)}setDataInterval(t){this.dataInterval=t}setPadding(t){this.padding={top:(t==null?void 0:t.top)??qt.top,bottom:(t==null?void 0:t.bottom)??qt.bottom,right:(t==null?void 0:t.right)??qt.right,left:(t==null?void 0:t.left)??qt.left}}getPadding(){return this.padding}setDataStart(t){k(this,Rt,t)}setDataEnd(t){this._prevDataEnd=o(this,nt),k(this,nt,t)}cancelPendingAnimation(){o(this,ot).animating&&(o(this,ot).snap(o(this,ot).current),this.emit("change"))}applyLogical(t,e){e<=t||(e-t)/this.dataInterval<2||(o(this,ot).snap({from:t,to:e}),this.emit("change"))}retargetLogical(t,e,i,n){e<=t||(e-t)/this.dataInterval<2||(o(this,ot).setTarget({from:t,to:e},{duration:i,now:n}),this.emit("change"))}tick(t){if(!o(this,ot).animating)return!1;const e=o(this,ot).tick(t);return this.emit("change"),e}getSoftBounds(t,e){const i=a=>typeof a=="object"||a===0||e>0,n=o(this,Rt)!==null&&i(this.padding.left)?o(this,Rt)-this.resolveHPad(this.padding.left,t,e):null,r=o(this,nt)!==null&&i(this.padding.right)?o(this,nt)+this.resolveHPad(this.padding.right,t,e):null;return{left:n,right:r}}get softMinRange(){return 10*this.dataInterval}dataFitsCurrentViewport(t=0){if(o(this,Rt)===null||o(this,nt)===null)return!1;const{from:e,to:i}=this.logicalRange,n=i-e;if(n<=0)return!1;t>0&&(this._lastChartWidth=t);const r=t>0?t:this._lastChartWidth,a=this.resolveHPad(this.padding.left,n,r),l=o(this,Rt)-a,h=this.dataInterval*.5;return Math.abs(e-l)<=h}softMaxRange(){if(o(this,Rt)===null||o(this,nt)===null)return null;const t=o(this,nt)-o(this,Rt);if(t<=0)return null;const e=typeof this.padding.left=="object"?this.padding.left.intervals*this.dataInterval:null,i=typeof this.padding.right=="object"?this.padding.right.intervals*this.dataInterval:null;return e!==null||i!==null?t+(e??0)+(i??0):t+this.dataInterval*5}setRange(t){const{from:e,to:i}=t;if(!Number.isFinite(e)||!Number.isFinite(i)||i<=e||(i-e)/this.dataInterval<2)return;const n=this.visibleRange;if(n.from===e&&n.to===i)return;const r=o(this,nt)!==null&&o(this,nt)>=e&&o(this,nt)<=i;this._autoScroll=r,this.applyLogical(e,i)}setYRange(t,e,i,n=!1,r=!1){const a=e-t,l=i>0?this.padding.top/i*a:0,h=i>0?this.padding.bottom/i*a:0;this._yRange={min:n?t:t-h,max:r?e:e+l}}zoomAt(t,e,i=this._lastChartWidth,n=0){i>0&&(this._lastChartWidth=i),this.cancelPendingAnimation();const{from:r,to:a}=this.logicalRange,l=a-r;if(l<=0)return;const h=this.softMinRange,{left:d,right:c}=this.getSoftBounds(l,i),u=d!==null&&c!==null?c-d:this.softMaxRange();let f=e;const m=h*ya;if(e<1&&l<h){const v=h-l,S=(1-Math.min(1,v/m))**2;f=1-(1-e)*S}let g=l*f;g<h-m&&(g=h-m),e>1&&u!==null&&g>u&&(g=u);const p=(t-r)/l;let w=t-p*g,x=w+g;if(e<1&&x<a){const v=a-x;w+=v,x+=v}if(e>1){if(c!==null&&x>c){const v=x-c;w-=v,x-=v}if(d!==null&&w<d){const v=d-w;w+=v,x+=v}}n>0?this.retargetLogical(w,x,n):this.applyLogical(w,x),this.emit("interact")}pan(t,e=0,i=0){e>0&&(this._lastChartWidth=e),this.cancelPendingAnimation();const{from:n,to:r}=this.logicalRange,a=r-n;if(a<=0)return;const{left:l,right:h}=this.getSoftBounds(a,e),d=a*va;let c=t;if(t>0&&h!==null){const g=Math.max(0,r-h);g>0&&(c*=1/(g/d+1))}else if(t<0&&l!==null){const g=Math.max(0,l-n);g>0&&(c*=1/(g/d+1))}let u=n+c,f=r+c;if(h!==null&&f>h+d){const g=f-(h+d);u-=g,f-=g}if(l!==null&&u<l-d){const g=l-d-u;u+=g,f+=g}const m=o(this,nt)!==null&&o(this,nt)>=u&&o(this,nt)<=f;this._autoScroll=m,i>0?this.retargetLogical(u,f,i):this.applyLogical(u,f),this.emit("interact")}startRebound(t=this._lastChartWidth){const{from:e,to:i}=this.logicalRange,n=i-e;if(n<=0)return;const r=this.softMinRange,a=this.softMaxRange();let l=n;l<r&&(l=r),a!==null&&l>a&&(l=a);let h=e,d=i;if(l!==n){const v=(e+i)/2;h=v-l/2,d=v+l/2}const{left:c,right:u}=this.getSoftBounds(l,t);if(u!==null&&d>u){const v=d-u;h-=v,d-=v}if(c!==null&&h<c){const v=c-h;h+=v,d+=v}const f=Math.abs(h-e),m=Math.abs(d-i);if(f<1&&m<1)return;const g=n*ba;let p=null,w=0,x=0;u!==null&&i-u>g?(p="right",w=i-u,x=u):c!==null&&c-e>g&&(p="left",w=c-e,x=c),this.reboundMs<=0?this.applyLogical(h,d):this.retargetLogical(h,d,this.reboundMs),this.emit("interact"),p!==null&&this.emit("edgeReached",{side:p,overshoot:w,boundaryTime:x})}fitToData(t,e,i=0,n=!1,r){this._autoScroll=!0,i>0&&(this._lastChartWidth=i);const a=400*this.dataInterval,l=e-t,h=l>0?l:this.dataInterval*10,d=this.resolveHPad(this.padding.right,h,i),c=this.resolveHPad(this.padding.left,h,i);let u=e+d,f=t-c;u-f>a&&(u=e+d,f=u-a);const{from:m,to:g}=this.logicalRange;n&&!(m===0&&g===0)?this.retargetLogical(f,u,r??vi.fit):this.applyLogical(f,u)}scrollToEnd(t,e=0){e>0&&(this._lastChartWidth=e);const{from:i,to:n}=this.logicalRange,r=n-i;if(r<=0)return;const a=this.resolveHPad(this.padding.right,r,e),l=n,h=this._prevDataEnd!==null?l-this._prevDataEnd:a,d=Math.max(0,Math.min(a,h)),c=t+d,u=c-r;this._autoScroll=!0;const f=xa*this.dataInterval,m=e>0?wa/e*r:f,g=Math.min(f,m);Math.abs(c-n)<g||(this.retargetLogical(u,c,vi.streamTick),this._prevDataEnd=o(this,nt))}getVisibleBarsCount(){const{from:t,to:e}=o(this,ot).current;return(e-t)/this.dataInterval}destroy(){this.removeAllListeners()}}ot=new WeakMap,Rt=new WeakMap,nt=new WeakMap;function xe(s,t){return s===!1||s===0?0:s===void 0?t:s}function Ps(s){if(s===!1)return{points:{enterMs:0,smoothMs:0,pulseMs:0},viewport:{reboundMs:0,yAxisMs:0,inputResponseMs:0}};const t=s===!0||s===void 0?void 0:s,e=t==null?void 0:t.points,i=t==null?void 0:t.viewport,n=e===!1?{enterMs:0,smoothMs:0,pulseMs:0}:{enterMs:xe(e==null?void 0:e.enterMs,be),smoothMs:xe(e==null?void 0:e.smoothMs,Zi),pulseMs:xe(e==null?void 0:e.pulseMs,Us)},r=i===!1?{reboundMs:0,yAxisMs:0,inputResponseMs:0}:{reboundMs:xe(i==null?void 0:i.reboundMs,Gs),yAxisMs:xe(i==null?void 0:i.yAxisMs,Ni),inputResponseMs:xe(i==null?void 0:i.inputResponseMs,Jn)};return{points:n,viewport:r}}function Ca(s){if(!s)return{monitor:null,ownsMonitor:!1,showHud:!1};if(s===!0)return{monitor:new Yi,ownsMonitor:!0,showHud:!0};if(s instanceof Yi)return{monitor:s,ownsMonitor:!1,showHud:!1};const{hud:t,monitor:e,...i}=s,n=e!==void 0;return{monitor:e??new Yi(i),ownsMonitor:!n,showHud:t??!n}}let Ta=0;var et,O,K,wt,Te,Y,tt,He,ct,ht,rt,ee,Gi,Re,Lt,wi,Si,Ot,Ne,ue,ri,Ri,Dt,jt,$e,Xe,q,ie,Bs,Mi,Ue,Ge,bn,vn,ki,Ke,Qt,Zt,Le,qe;class yn extends li{constructor(t,e){var i,n,r,a;super(),D(this,q),D(this,et),D(this,O),D(this,K),D(this,wt),L(this,"timeScale"),L(this,"yScale"),D(this,Te),D(this,Y,[]),D(this,tt),D(this,He),D(this,ct,6e4),D(this,ht,null),D(this,rt,{}),D(this,ee,null),D(this,Gi,!1),D(this,Re,{}),D(this,Lt,{left:"idle",right:"idle"}),D(this,wi,{left:null,right:null}),D(this,Si),D(this,Ot,0),D(this,Ne,!1),D(this,ue,!1),D(this,ri,!1),D(this,Ri,0),D(this,Dt),D(this,jt),D(this,$e,!1),D(this,Xe,null),D(this,ki,0),D(this,Ke,!1),D(this,Qt,new Be({initial:0,duration:Ni,easing:pe,lerp:(c,u,f)=>c+(u-c)*f})),D(this,Zt,new Be({initial:0,duration:Ni,easing:pe,lerp:(c,u,f)=>c+(u-c)*f})),D(this,Le,!1),D(this,qe,!1),e!=null&&e.axis&&(k(this,Re,e.axis),k(this,rt,{min:(i=e.axis.y)==null?void 0:i.min,max:(n=e.axis.y)==null?void 0:n.max})),k(this,tt,(e==null?void 0:e.theme)??pn.theme),k(this,He,((r=e==null?void 0:e.grid)==null?void 0:r.visible)!==!1),k(this,Dt,Ps(e==null?void 0:e.animations)),k(this,Si,e==null?void 0:e.onEdgeReached);const l=Ca(e==null?void 0:e.perf);k(this,jt,l.monitor),k(this,$e,l.ownsMonitor),k(this,et,new Qn(t,o(this,jt)??void 0)),k(this,O,new ka({padding:e==null?void 0:e.padding,reboundMs:o(this,Dt).viewport.reboundMs})),pr(this,o(this,O)),this.timeScale=new tn,this.yScale=new nn;const h=o(this,jt);h?(k(this,K,new pi(c=>{h.resetDrawCalls("main");const u=performance.now();this.renderMain(c),h.recordFrame("main",performance.now()-u,c)})),k(this,wt,new pi(c=>{h.resetDrawCalls("overlay");const u=performance.now();this.renderOverlay(c),h.recordFrame("overlay",performance.now()-u,c)})),l.showHud&&k(this,Xe,new Sr(t,h))):(k(this,K,new pi(c=>this.renderMain(c))),k(this,wt,new pi(c=>this.renderOverlay(c))));const d=(e==null?void 0:e.interactive)!==!1;k(this,Te,d?new gr(o(this,et).canvas,o(this,O),this.timeScale,this.yScale,o(this,Dt).viewport.inputResponseMs):null),o(this,O).on("change",()=>{this.syncScales(),o(this,K).markDirty(),this.emit("viewportChange")}),o(this,O).on("edgeReached",c=>{var u;o(this,wi)[c.side]=c.boundaryTime,(u=o(this,Si))==null||u.call(this,c)}),o(this,O).on("interact",()=>{k(this,qe,!0)}),o(this,et).on("resize",()=>{this.updateScales(!0),this.renderMain(),this.emit("viewportChange")}),(a=o(this,Te))==null||a.on("crosshairMove",c=>{k(this,ht,c),o(this,wt).markDirty(),this.emit("crosshairMove",c),B(this,q,vn).call(this,c)})}get yAxisWidth(){const t=o(this,Re).y;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.width)??55}get xAxisHeight(){const t=o(this,Re).x;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.height)??30}getOverlayVersion(){return o(this,Ri)}addCandlestickSeries(t){const e=new Js,i=new Zr(e,{up:{...o(this,tt).candlestick.up},down:{...o(this,tt).candlestick.down},bodyWidthRatio:.6,...B(this,q,Mi).call(this,"candle"),...t,...B(this,q,Ue).call(this)});return B(this,q,Ge).call(this,i,i.store,t??{})}addLineSeries(t){const{layers:e,...i}=t??{},n=e??1,r=new ea(n,{colors:n===1?[o(this,tt).line.color]:o(this,tt).seriesColors.slice(0,n),strokeWidth:o(this,tt).line.width,area:{visible:!0},...B(this,q,Mi).call(this,"line"),...i,...B(this,q,Ue).call(this)});return B(this,q,Ge).call(this,r,r.store,i)}addBarSeries(t){const{layers:e,...i}=t??{},n=e??1,r=new Xr(n,{colors:o(this,tt).seriesColors.slice(0,n),barWidthRatio:.6,...B(this,q,Mi).call(this,"bar"),...i,...B(this,q,Ue).call(this)});return B(this,q,Ge).call(this,r,r.store,i)}addPieSeries(t){const e=new xi(t);return B(this,q,Ge).call(this,e,null,t??{})}removeSeries(t){const e=o(this,Y).findIndex(i=>i.id===t);e>=0&&(o(this,Y)[e].renderer.dispose(),o(this,Y).splice(e,1),k(this,ee,null),this.updateViewportPadding(),o(this,K).markDirty(),this.emit("seriesChange"),B(this,q,ie).call(this))}setSeriesData(t,e,i){const n=o(this,Y).find(r=>r.id===t);n&&(k(this,Ke,!0),n.renderer.setData(e,i))}appendData(t,e,i){var n,r;const a=o(this,Y).find(l=>l.id===t);(r=a==null?void 0:(n=a.renderer).appendPoint)==null||r.call(n,e,i)}updateData(t,e,i){var n,r;const a=o(this,Y).find(l=>l.id===t);(r=a==null?void 0:(n=a.renderer).updateLastPoint)==null||r.call(n,e,i)}updateSeriesOptions(t,e){const i=o(this,Y).find(d=>d.id===t);if(!i)return;const n=i.label,r=i.renderer.getLayerColors().slice();i.renderer.updateOptions({...e,...B(this,q,Ue).call(this)}),"label"in e&&typeof e.label=="string"&&(i.label=e.label),o(this,K).markDirty();const a=i.renderer.getLayerColors(),l=r.length!==a.length||r.some((d,c)=>d!==a[c]),h=n!==i.label;(l||h)&&B(this,q,ie).call(this)}batch(t){Hi(this,Ot)._++;try{t()}finally{--Hi(this,Ot)._<=0&&(k(this,Ot,0),o(this,Ne)?(k(this,Ne,!1),k(this,ue,!1),this.onDataChanged()):o(this,ue)&&(k(this,ue,!1),this.updateYRange(!0),o(this,K).markDirty()),o(this,ri)&&(k(this,ri,!1),this.emit("overlayChange")))}}setSeriesVisible(t,e){const i=o(this,Y).find(n=>n.id===t);if(!(!i||i.visible===e)){if(i.visible=e,B(this,q,ie).call(this),o(this,Ot)>0){k(this,ue,!0);return}this.updateYRange(!0),o(this,K).markDirty()}}isSeriesVisible(t){var e;return((e=o(this,Y).find(i=>i.id===t))==null?void 0:e.visible)??!0}setLayerVisible(t,e,i){const n=o(this,Y).find(r=>r.id===t);if(n&&!(n.renderer.getLayerCount()<=1)&&n.renderer.isLayerVisible(e)!==i){if(n.renderer.setLayerVisible(e,i),B(this,q,ie).call(this),o(this,Ot)>0){k(this,ue,!0);return}this.updateYRange(!0),o(this,K).markDirty()}}isLayerVisible(t,e){const i=o(this,Y).find(n=>n.id===t);return(i==null?void 0:i.renderer.isLayerVisible(e))??!0}fitContent(){const{first:t,last:e}=this.getDataBounds();if(t===void 0||e===void 0)return;const i=o(this,et).size.media.width-this.yAxisWidth;o(this,O).fitToData(t,e,i,!0)}getVisibleRange(){return o(this,O).visibleRange}getDataRange(){const t=o(this,O).dataStart,e=o(this,O).dataEnd;return t===null||e===null?null:{from:t,to:e}}setVisibleRange(t){if(typeof t=="number"){if(!Number.isInteger(t)||t<2)return;const{first:e,last:i}=this.getDataBounds();if(e===void 0||i===void 0)return;const n=Math.max(e,i-(t-1)*o(this,ct)),r=o(this,et).size.media.width-this.yAxisWidth;o(this,O).fitToData(n,i,r,!1);return}o(this,O).setRange(t)}getYRange(){return o(this,O).yRange}getCrosshairPosition(){return o(this,ht)}setCrosshair(t){if(t===null){if(o(this,ht)===null)return;k(this,ht,null),o(this,wt).markDirty(),this.emit("crosshairMove",null);return}const{time:e}=t;if(!Number.isFinite(e))return;const i=o(this,ht);let n;if(t.y!==void 0)n=t.y;else if(i!==null)n=i.y;else{const l=o(this,O).yRange;n=(l.min+l.max)/2}if(!Number.isFinite(n)||i!==null&&i.time===e&&i.y===n)return;const r=this.timeScale.timeToX(e),a=this.yScale.valueToY(n);k(this,ht,{mediaX:r,mediaY:a,time:e,y:n}),o(this,wt).markDirty(),this.emit("crosshairMove",o(this,ht))}getLastValue(t){const e=o(this,Y).find(h=>h.id===t);if(!(e!=null&&e.store))return null;const i=e.store.last();if(!i)return null;const n=h=>"close"in h?h.close:h.value,{from:r,to:a}=o(this,O).visibleRange;if(i.time>=r&&i.time<=a)return{value:n(i),isLive:!0};const l=e.store.getVisibleData(r,a);return l.length===0?null:{value:n(l[l.length-1]),isLive:!1}}getPreviousClose(t){const e=o(this,Y).find(r=>r.id===t);if(!(e!=null&&e.store))return null;const i=e.store.getAll();if(i.length<2)return null;const n=i[i.length-2];return"close"in n?n.close:n.value}getLastData(t){const e=o(this,Y).find(i=>i.id===t);return e!=null&&e.store?e.store.last()??null:null}getDataAtTime(t,e){var i,n;const r=o(this,Y).find(a=>a.id===t);return r?((n=(i=r.renderer).getDataAtTime)==null?void 0:n.call(i,e,o(this,ct)))??null:null}getLayerSnapshots(t,e){var i,n;const r=o(this,Y).find(a=>a.id===t);return r!=null&&r.visible?((n=(i=r.renderer).getLayerSnapshots)==null?void 0:n.call(i,e,o(this,ct)))??null:null}getSeriesIds(){return o(this,ee)||k(this,ee,o(this,Y).map(t=>t.id)),o(this,ee).slice()}getSeriesType(t){const e=o(this,Y).find(i=>i.id===t);return e?e.renderer instanceof xi?"pie":"time":null}getSeriesIdsByType(t,e){const i=(e==null?void 0:e.visibleOnly)===!0,n=(e==null?void 0:e.singleLayerOnly)===!0,r=[];for(const a of o(this,Y)){const l=a.renderer instanceof xi;if(t==="pie"&&!l||t==="time"&&l)continue;const h=a.renderer.getLayerCount();if(!(n&&h>1)){if(i){if(!a.visible)continue;if(h>1){let d=!1;for(let c=0;c<h;c++)if(a.renderer.isLayerVisible(c)){d=!0;break}if(!d)continue}}r.push(a.id)}}return r}getStackedLastValue(t){var e,i;const n=o(this,Y).find(a=>a.id===t);return n?((i=(e=n.renderer).getStackedLastValue)==null?void 0:i.call(e))||this.getLastValue(t):null}getLayerLastSnapshots(t){var e,i;const n=o(this,Y).find(r=>r.id===t);return((i=n==null?void 0:(e=n.renderer).getLayerLastSnapshots)==null?void 0:i.call(e))??null}listSeriesForTest(){return o(this,Y).map(t=>({id:t.id,renderer:t.renderer}))}getSeriesColor(t){const e=o(this,Y).find(i=>i.id===t);return e?e.renderer.getLayerColors()[0]??o(this,tt).line.color:null}getSeriesLabel(t){var e;return(e=o(this,Y).find(i=>i.id===t))==null?void 0:e.label}getSeriesLayers(t){const e=o(this,Y).find(r=>r.id===t);if(!e)return null;const i=e.renderer.getLayerCount();if(i<=1)return null;const n=e.renderer.getLayerColors();return Array.from({length:i},(r,a)=>({color:n[a%n.length]}))}getSliceInfo(t){var e,i;const n=o(this,Y).find(r=>r.id===t);return((i=n==null?void 0:(e=n.renderer).getSliceInfo)==null?void 0:i.call(e,o(this,tt)))??null}getHoverInfo(t){var e,i;const n=o(this,Y).find(r=>r.id===t);return((i=n==null?void 0:(e=n.renderer).getHoverInfo)==null?void 0:i.call(e,o(this,tt)))??null}setTheme(t){const e=o(this,tt);k(this,tt,t);for(const i of o(this,Y))i.renderer.applyTheme(t,e);o(this,K).markDirty(),B(this,q,ie).call(this)}getTheme(){return o(this,tt)}setAxis(t){var e,i;const n=this.yAxisWidth,r=this.xAxisHeight;k(this,Re,t),k(this,rt,{min:(e=t.y)==null?void 0:e.min,max:(i=t.y)==null?void 0:i.max}),k(this,Le,!1),this.updateYRange(!0),(this.yAxisWidth!==n||this.xAxisHeight!==r)&&this.updateScales(!0),o(this,K).markDirty()}setYAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.yScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.yScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),o(this,K).markDirty())}setTimeAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.timeScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.timeScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),o(this,K).markDirty())}getMediaSize(){return o(this,et).size.media}getLayout(){const t=o(this,et).size.media,e=this.yAxisWidth,i=this.xAxisHeight;return{chartArea:{x:0,y:0,width:t.width-e,height:t.height-i},yAxisWidth:e,xAxisHeight:i}}getDataInterval(){return o(this,ct)}setAnimations(t){var e,i,n;const r=Ps(t);k(this,Dt,r),o(this,O).setReboundMs(r.viewport.reboundMs),(e=o(this,Te))==null||e.setInputResponseMs(r.viewport.inputResponseMs);const a={};if(r.points.enterMs===0&&(a.entryMs=0),r.points.smoothMs===0&&(a.smoothMs=0),r.points.pulseMs===0&&(a.pulseMs=0),Object.keys(a).length>0)for(const l of o(this,Y))(n=(i=l.renderer).updateOptions)==null||n.call(i,a);o(this,K).markDirty()}setPadding(t){const e=o(this,O).getPadding();o(this,O).setPadding(t);const i=o(this,O).getPadding(),n=!zs(e.left,i.left)||!zs(e.right,i.right),r=e.top!==i.top||e.bottom!==i.bottom;if(n){const{first:a,last:l}=this.getDataBounds();if(a!==void 0&&l!==void 0){const h=o(this,et).size.media.width-this.yAxisWidth;o(this,O).fitToData(a,l,h,!1)}}r&&this.updateYRange(!0),this.syncScales(),o(this,K).markDirty(),r&&this.emit("viewportChange")}setGrid(t){k(this,He,t.visible),o(this,K).markDirty()}setEdgeState(t,e){o(this,Lt)[t]!==e&&(o(this,Lt)[t]=e,o(this,wt).markDirty())}getEdgeState(t){return o(this,Lt)[t]}setYLabel(t){k(this,Gi,t),this.updateViewportPadding()}updateViewportPadding(){}destroy(){var t,e,i;for(const n of o(this,Y))n.renderer.dispose();k(this,Y,[]),k(this,ee,null),o(this,O).destroy(),o(this,K).destroy(),o(this,wt).destroy(),(t=o(this,Te))==null||t.destroy(),o(this,et).destroy(),(e=o(this,Xe))==null||e.destroy(),k(this,Xe,null),o(this,$e)&&((i=o(this,jt))==null||i.destroy()),k(this,jt,null),k(this,$e,!1),this.removeAllListeners()}getPerfMonitor(){return o(this,jt)}getDataBounds(){let t,e;for(const i of o(this,Y)){if(!i.visible||!i.store)continue;const n=i.store.first(),r=i.store.last();n&&(t===void 0||n.time<t)&&(t=n.time),r&&(e===void 0||r.time>e)&&(e=r.time)}return{first:t,last:e}}onDataChanged(){if(o(this,Ot)>0){k(this,Ne,!0);return}this.updateDataInterval();const{first:t,last:e}=this.getDataBounds();t!==void 0&&o(this,O).setDataStart(t),e!==void 0&&o(this,O).setDataEnd(e);let i=0;for(const a of o(this,Y))a.renderer.getTotalLength?i+=a.renderer.getTotalLength():a.store&&(i+=a.store.length);const n=i-o(this,ki)>5;if(k(this,ki,i),t!==void 0&&e!==void 0){const{from:a,to:l}=o(this,O).logicalRange,h=a===0&&l===0,d=o(this,et).size.media.width-this.yAxisWidth;h?o(this,O).fitToData(t,e,d,!1):n&&o(this,O).autoScroll?o(this,O).fitToData(t,e,d,!0):!n&&o(this,O).autoScroll&&(o(this,O).dataFitsCurrentViewport(d)?o(this,O).fitToData(t,e,d,!0,vi.streamTick):o(this,O).scrollToEnd(e,d))}const r=o(this,Ke);k(this,Ke,!1),this.updateYRange(n||r),this.syncScales(),o(this,K).markDirty(),this.emit("dataUpdate"),B(this,q,ie).call(this)}updateDataInterval(){for(const t of o(this,Y)){if(!t.store)continue;const e=t.store.getAll();if(e.length>=2){const i=e.slice(0,20).map(n=>n.time);k(this,ct,Qs(i)),o(this,O).setDataInterval(o(this,ct));break}}}computeTargetYRange(t,e){let i=1/0,n=-1/0;for(const r of o(this,Y)){if(!r.visible)continue;if(r.renderer.getValueRange){const l=r.renderer.getValueRange(t.from,t.to);if(l){l.max>n&&(n=l.max),l.min<i&&(i=l.min),e==null||e.push(l.min,l.max);continue}}if(!r.store)continue;const a=r.store.getVisibleData(t.from,t.to);for(const l of a)if("high"in l){const h=l;Number.isFinite(h.high)&&(h.high>n&&(n=h.high),e==null||e.push(h.high)),Number.isFinite(h.low)&&(h.low<i&&(i=h.low),e==null||e.push(h.low))}else{const h=l;Number.isFinite(h.value)&&(h.value>n&&(n=h.value),h.value<i&&(i=h.value),e==null||e.push(h.value))}}return i===1/0||n===-1/0?null:{min:i,max:n}}updateYRange(t=!1,e){const i=o(this,O).logicalRange,n=o(this,rt).min!==void 0&&o(this,rt).min!=="auto"&&typeof o(this,rt).min!="number"||o(this,rt).max!==void 0&&o(this,rt).max!=="auto"&&typeof o(this,rt).max!="number"?[]:null,r=this.computeTargetYRange(i,n);if(r===null){k(this,Le,!1);return}const a=this.resolveBound(o(this,rt).min,r.min,r.max,n??[],"min"),l=this.resolveBound(o(this,rt).max,r.max,r.min,n??[],"max"),h=o(this,Dt).viewport.yAxisMs,d=o(this,qe);k(this,qe,!1);const c=d&&h>ps?ps:h;if(!o(this,Le)||t||c<=0)o(this,Qt).snap(a),o(this,Zt).snap(l),k(this,Le,!0);else{const x=o(this,Dt).points.enterMs>0;a<o(this,Qt).current&&!x?o(this,Qt).snap(a):o(this,Qt).setTarget(a,{duration:c,now:e}),l>o(this,Zt).current&&!x?o(this,Zt).snap(l):o(this,Zt).setTarget(l,{duration:c,now:e})}const u=e??performance.now(),f=o(this,Qt).tick(u),m=o(this,Zt).tick(u);(f||m)&&o(this,K).markDirty();const g=o(this,rt).min!==void 0&&o(this,rt).min!=="auto",p=o(this,rt).max!==void 0&&o(this,rt).max!=="auto",w=o(this,et).size.media.height-this.xAxisHeight;o(this,O).setYRange(o(this,Qt).current,o(this,Zt).current,w,g,p)}resolveBound(t,e,i,n,r){if(t===void 0||t==="auto")return e;if(typeof t=="number")return t;if(typeof t=="function")return t(n);const a=String(t).match(/^([+-]?)\s*(\d+(?:\.\d+)?)\s*%$/);if(a){const l=a[1]==="-"?-1:1,h=parseFloat(a[2])/100,d=Math.abs(i-e)||Math.abs(e)||1;return e+l*h*d*(r==="max"?1:-1)}return e}syncScales(){const t=o(this,et).size;if(t.media.width===0||t.media.height===0)return;const e=t.media.width-this.yAxisWidth,i=t.media.height-this.xAxisHeight;this.timeScale.update(o(this,O).visibleRange,e,t.horizontalPixelRatio,o(this,ct)),this.yScale.update(o(this,O).yRange,i,t.verticalPixelRatio)}updateScales(t=!1,e){const i=o(this,et).size;if(i.media.width===0||i.media.height===0)return;const n=i.media.width-this.yAxisWidth,r=i.media.height-this.xAxisHeight;this.timeScale.update(o(this,O).visibleRange,n,i.horizontalPixelRatio,o(this,ct)),this.yScale.update(o(this,O).yRange,r,i.verticalPixelRatio),this.updateYRange(t,e),this.yScale.update(o(this,O).yRange,r,i.verticalPixelRatio)}renderMain(t){const e=o(this,et).size;if(e.media.width===0||e.media.height===0)return;const i=typeof t=="number"?t:performance.now();o(this,O).tick(i)&&o(this,K).markDirty(),this.updateScales(!1,i),o(this,et).useMainLayer(n=>{const{context:r,bitmapSize:a}=n,l=(e.media.width-this.yAxisWidth)*e.horizontalPixelRatio,h=(e.media.height-this.xAxisHeight)*e.verticalPixelRatio;r.clearRect(0,0,a.width,a.height),r.save(),r.beginPath(),r.rect(0,0,l,h),r.clip(),o(this,He)&&hr(n,this.timeScale,this.yScale,o(this,tt),o(this,ct));const d=o(this,O).getPadding(),c={top:d.top,bottom:d.bottom},u=o(this,jt);for(const f of o(this,Y)){if(!f.visible)continue;const m={scope:n,timeScale:this.timeScale,yScale:this.yScale,theme:o(this,tt),dataInterval:o(this,ct),padding:c};if(u){const g=performance.now();f.renderer.render(m),u.recordSeries(f.id,performance.now()-g,i)}else f.renderer.render(m)}r.restore()});for(const n of o(this,Y))if(n.renderer.needsAnimation){o(this,K).markDirty();break}this.renderOverlay()}renderOverlay(t){var e,i;const n=o(this,et).size;if(n.media.width===0||n.media.height===0)return;let r=!1;for(const h of o(this,Y))if(h.visible&&h.renderer.overlayNeedsAnimation){r=!0;break}const a=o(this,Lt).left==="loading"||o(this,Lt).right==="loading",l=o(this,Lt).left!=="idle"||o(this,Lt).right!=="idle";if(o(this,et).useOverlayLayer(h=>{var d,c;if(!o(this,ht)&&!r&&!l)return;const u=(n.media.width-this.yAxisWidth)*n.horizontalPixelRatio,f=(n.media.height-this.xAxisHeight)*n.verticalPixelRatio;if(h.context.save(),h.context.beginPath(),h.context.rect(0,0,u,f),h.context.clip(),o(this,ht)&&B(this,q,bn).call(this)){const p=o(this,ht).mediaX*n.horizontalPixelRatio,w=o(this,ht).mediaY*n.verticalPixelRatio;Zn(h,p,w,o(this,tt))}const m=o(this,O).getPadding(),g={top:m.top,bottom:m.bottom};for(const p of o(this,Y))p.visible&&((c=(d=p.renderer).drawOverlay)==null||c.call(d,{scope:h,timeScale:this.timeScale,yScale:this.yScale,theme:o(this,tt),dataInterval:o(this,ct),padding:g,crosshair:o(this,ht)}));l&&this.drawEdgeIndicators(h,n.media.height-this.xAxisHeight),h.context.restore()}),r){const{from:h,to:d}=this.timeScale.getRange();let c=!1;for(const u of o(this,Y))if(!(!u.visible||!u.renderer.overlayNeedsAnimation)&&(((i=(e=u.renderer).hasOverlayContentInRange)==null?void 0:i.call(e,h,d))??!0)){c=!0;break}c&&o(this,wt).markDirty()}a&&o(this,wt).markDirty()}drawEdgeIndicators(t,e){const i=performance.now();for(const n of["left","right"]){const r=o(this,Lt)[n];if(r==="idle"||r==="has-more")continue;const a=this.resolveEdgeBoundary(n);a!==null&&ar({scope:t,timeScale:this.timeScale,theme:o(this,tt),chartMediaHeight:e,boundaryTime:a,side:n,state:r,now:i})}}resolveEdgeBoundary(t){const e=o(this,wi)[t];if(e!==null)return e;const{first:i,last:n}=this.getDataBounds();return t==="left"?i??null:n??null}}et=new WeakMap,O=new WeakMap,K=new WeakMap,wt=new WeakMap,Te=new WeakMap,Y=new WeakMap,tt=new WeakMap,He=new WeakMap,ct=new WeakMap,ht=new WeakMap,rt=new WeakMap,ee=new WeakMap,Gi=new WeakMap,Re=new WeakMap,Lt=new WeakMap,wi=new WeakMap,Si=new WeakMap,Ot=new WeakMap,Ne=new WeakMap,ue=new WeakMap,ri=new WeakMap,Ri=new WeakMap,Dt=new WeakMap,jt=new WeakMap,$e=new WeakMap,Xe=new WeakMap,q=new WeakSet,ie=function(){if(Hi(this,Ri)._++,o(this,Ot)>0){k(this,ri,!0);return}this.emit("overlayChange")},Bs=function(s){if(s&&!o(this,Y).some(e=>e.id===s))return s;let t;do t=`series_${++Ta}`;while(o(this,Y).some(e=>e.id===t));return t},Mi=function(s){const{enterMs:t,smoothMs:e,pulseMs:i}=o(this,Dt).points;return s==="line"?{enterMs:t,smoothMs:e,pulseMs:i}:{enterMs:t,smoothMs:e}},Ue=function(){const{enterMs:s,smoothMs:t,pulseMs:e}=o(this,Dt).points,i={};return s===0&&(i.enterMs=0),t===0&&(i.smoothMs=0),e===0&&(i.pulseMs=0),i},Ge=function(s,t,e){var i;const n=B(this,q,Bs).call(this,e.id);return(i=s.onDataChanged)==null||i.call(s,()=>this.onDataChanged()),o(this,Y).push({id:n,label:e.label,renderer:s,store:t,visible:!0}),k(this,ee,null),this.updateViewportPadding(),this.emit("seriesChange"),B(this,q,ie).call(this),n},bn=function(){for(const s of o(this,Y))if(s.visible&&!(s.renderer instanceof xi))return!0;return!1},vn=function(s){const t=o(this,et).size,e=o(this,O).getPadding(),i={top:e.top*t.verticalPixelRatio,bottom:e.bottom*t.verticalPixelRatio};let n=!1;for(const r of o(this,Y)){if(!r.renderer.hitTest||!r.renderer.setHoverIndex)continue;let a=-1;if(s){const l=s.mediaX*t.horizontalPixelRatio,h=s.mediaY*t.verticalPixelRatio;a=r.renderer.hitTest(l,h,t.bitmap.width,t.bitmap.height,i)}r.renderer.setHoverIndex(a)&&(n=!0)}n&&o(this,K).markDirty()},ki=new WeakMap,Ke=new WeakMap,Qt=new WeakMap,Zt=new WeakMap,Le=new WeakMap,qe=new WeakMap;function zs(s,t){return typeof s=="number"&&typeof t=="number"?s===t:typeof s=="object"&&typeof t=="object"?s.intervals===t.intervals:!1}function Ra(s,t){if(s.length<=t||t<=0)return s;const e=s[0].time,i=s[s.length-1].time,n=i-e;if(n<=0)return s;const r=n/t,a=[];let l=0;for(let h=0;h<t;h++){const d=h===t-1?i+1:e+(h+1)*r;let c=null,u=null;for(;l<s.length&&s[l].time<d;){const f=s[l];(c===null||f.value<c.value)&&(c=f),(u===null||f.value>u.value)&&(u=f),l++}if(!(c===null||u===null)){if(c===u){a.push(c);continue}c.time<u.time?a.push(c,u):a.push(u,c)}}return a}function La(s,t){if(s.length<=t||t<=0)return s;const e=s[0].time,i=s[s.length-1].time,n=i-e;if(n<=0)return s;const r=n/t,a=[];let l=0;for(let h=0;h<t;h++){const d=h===t-1?i+1:e+(h+1)*r;let c=null;for(;l<s.length&&s[l].time<d;){const u=s[l];c===null?c={time:u.time,open:u.open,high:u.high,low:u.low,close:u.close}:(u.high>c.high&&(c.high=u.high),u.low<c.low&&(c.low=u.low),c.close=u.close),l++}c!==null&&a.push(c)}return a}const Es=8;function xn(s,t){return Math.abs(s-t.left)<=Es?{gesture:"resize-left",snapToCenter:!1}:Math.abs(s-t.right)<=Es?{gesture:"resize-right",snapToCenter:!1}:s>t.left&&s<t.right?{gesture:"pan",snapToCenter:!1}:{gesture:"pan",snapToCenter:!0}}function Ia(s){const{startVisible:t,deltaPx:e,pixelsPerTime:i,dataRange:n}=s,r=t.to-t.from,a=e/i;let l=t.from+a,h=t.to+a;return l<n.from&&(l=n.from,h=l+r),h>n.to&&(h=n.to,l=h-r),l<n.from&&(l=n.from),{from:l,to:h}}function Aa(s){const{edge:t,startVisible:e,deltaPx:i,pixelsPerTime:n,dataRange:r,minSpan:a}=s,l=i/n;if(t==="left"){let c=e.from+l,u=e.to;return c<r.from&&(c=r.from),u-c<a&&(c=u-a),c<r.from&&(c=r.from,u=Math.min(r.to,c+a)),{from:c,to:u}}let h=e.from,d=e.to+l;return d>r.to&&(d=r.to),d-h<a&&(d=h+a),d>r.to&&(d=r.to,h=Math.max(r.from,d-a)),{from:h,to:d}}function Da(s){const{time:t,startVisible:e,dataRange:i}=s,n=e.to-e.from;let r=t-n/2,a=r+n;return r<i.from&&(r=i.from,a=r+n),a>i.to&&(a=i.to,r=a-n),r<i.from&&(r=i.from),{from:r,to:a}}function Wa(s){const{ctx:t,theme:e,mediaWidth:i,mediaHeight:n}=s;t.fillStyle=e.background,t.fillRect(0,0,i,n)}function Fa(s,t,e=!0,i=1){if(t.length<2)return;const{ctx:n,timeScale:r,yScale:a,mediaHeight:l,theme:h}=s,d=i<1&&t.length>=2,c=d?t.length-2:t.length-1;if(e){const u=n.createLinearGradient(0,0,0,l);u.addColorStop(0,h.line.areaTopColor),u.addColorStop(1,h.line.areaBottomColor),n.beginPath();for(let f=0;f<=c;f++){const m=t[f],g=r.timeToX(m.time),p=a.valueToY(m.value);f===0?n.moveTo(g,p):n.lineTo(g,p)}if(n.lineTo(r.timeToX(t[c].time),l),n.lineTo(r.timeToX(t[0].time),l),n.closePath(),n.fillStyle=u,n.fill(),d){n.save(),n.globalAlpha=i,n.beginPath();const f=t[c],m=t[t.length-1],g=r.timeToX(f.time),p=r.timeToX(m.time);n.moveTo(g,a.valueToY(f.value)),n.lineTo(p,a.valueToY(m.value)),n.lineTo(p,l),n.lineTo(g,l),n.closePath(),n.fillStyle=u,n.fill(),n.restore()}}n.beginPath();for(let u=0;u<=c;u++){const f=t[u],m=r.timeToX(f.time),g=a.valueToY(f.value);u===0?n.moveTo(m,g):n.lineTo(m,g)}if(n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),d){n.save(),n.globalAlpha=i,n.beginPath();const u=t[c],f=t[t.length-1];n.moveTo(r.timeToX(u.time),a.valueToY(u.value)),n.lineTo(r.timeToX(f.time),a.valueToY(f.value)),n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),n.restore()}}function Pa(s,t,e=1){if(t.length===0)return;const{ctx:i,timeScale:n,yScale:r,mediaHeight:a,theme:l}=s,h=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.8:2),d=e<1,c=t.length-1;i.fillStyle=l.line.color;for(let u=0;u<t.length;u++){const f=t[u],m=n.timeToX(f.time),g=r.valueToY(f.value),p=Math.max(1,a-g);d&&u===c?(i.save(),i.globalAlpha=e,i.fillRect(m-h/2,g,h,p),i.restore()):i.fillRect(m-h/2,g,h,p)}}function Ba(s,t,e=1){if(t.length===0)return;const{ctx:i,timeScale:n,yScale:r,theme:a}=s,l=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.75:2),h=e<1,d=t.length-1;for(let c=0;c<t.length;c++){const u=t[c],f=u.close>=u.open?a.candlestick.up:a.candlestick.down,m=vt(f.body),g=n.timeToX(u.time),p=r.valueToY(u.open),w=r.valueToY(u.close),x=r.valueToY(u.high),v=r.valueToY(u.low),S=h&&c===d;S&&(i.save(),i.globalAlpha=e),i.strokeStyle=f.wick,i.lineWidth=1,i.beginPath(),i.moveTo(g,x),i.lineTo(g,v),i.stroke();const M=Math.min(p,w),y=Math.max(1,Math.abs(w-p));i.fillStyle=m,i.fillRect(g-l/2,M,l,y),S&&i.restore()}}function za(s,t,e){const i=Math.max(e.from,Math.min(e.to,t.from)),n=Math.max(e.from,Math.min(e.to,t.to)),r=s.timeToX(i),a=s.timeToX(n),l=Math.min(r,a),h=Math.max(r,a);return{left:l,right:h,width:Math.max(1,h-l)}}var It,H,Li,it,Wt,re,$t,Xt,Ht,Nt,me,Fe,te,Ci,Ti,de,_t,Ut,Je,Ft,Qe,ai,Ze,ge,ti,ei,ii,si,fe,ni,j,Ki,pt,wn,qi,ne,Ye,_i,bi,Vs,Sn,Mn,kn,Ys,js,we,_s;class Cn{constructor(t){D(this,j),D(this,It),D(this,H),D(this,Li),D(this,it),D(this,Wt),D(this,re),D(this,$t),D(this,Xt),D(this,Ht),D(this,Nt),D(this,me),D(this,Fe),D(this,te,new tn),D(this,Ci,new nn),D(this,Ti,0),D(this,de,0),D(this,_t,1),D(this,Ut,null),D(this,Je,!0),D(this,Ft,null),D(this,Qe,null),D(this,ai,-1),D(this,Ze),D(this,ge,null),D(this,ti),D(this,ei),D(this,ii),D(this,si),D(this,fe),D(this,ni),k(this,It,t.container),k(this,it,t.chart),k(this,me,t.data),k(this,Fe,t.options??{}),window.getComputedStyle(o(this,It)).position==="static"&&(o(this,It).style.position="relative"),k(this,H,document.createElement("canvas")),o(this,H).style.position="absolute",o(this,H).style.left="0",o(this,H).style.top="0",o(this,H).style.height="100%",o(this,H).style.touchAction="none",o(this,It).appendChild(o(this,H));const e=o(this,H).getContext("2d",{alpha:!0});if(!e)throw new Error("NavigatorController: failed to acquire 2D context");k(this,Li,e),k(this,Wt,document.createElement("div")),o(this,Wt).dataset.chartNavigatorOverlay="",o(this,Wt).style.cssText="position:absolute;left:0;top:0;height:100%;pointer-events:none;",k(this,re,document.createElement("div")),o(this,re).style.cssText="position:absolute;left:0;top:0;bottom:0;",k(this,$t,document.createElement("div")),o(this,$t).style.cssText="position:absolute;top:0;bottom:0;",k(this,Xt,document.createElement("div")),o(this,Xt).style.cssText="position:absolute;top:0;bottom:0;box-sizing:border-box;",k(this,Ht,Hs()),k(this,Nt,Hs()),o(this,Wt).append(o(this,re),o(this,$t),o(this,Xt),o(this,Ht),o(this,Nt)),o(this,It).appendChild(o(this,Wt)),k(this,ti,()=>B(this,j,ne).call(this)),k(this,ei,()=>B(this,j,ne).call(this)),o(this,it).on("viewportChange",o(this,ti)),o(this,it).on("overlayChange",o(this,ei)),k(this,ii,n=>B(this,j,Sn).call(this,n)),k(this,si,n=>B(this,j,Mn).call(this,n)),k(this,fe,n=>B(this,j,kn).call(this,n)),k(this,ni,()=>{o(this,ge)===null&&(o(this,H).style.cursor="default")}),o(this,H).addEventListener("pointerdown",o(this,ii)),o(this,H).addEventListener("pointermove",o(this,si)),o(this,H).addEventListener("pointerup",o(this,fe)),o(this,H).addEventListener("pointercancel",o(this,fe)),o(this,H).addEventListener("pointerleave",o(this,ni)),k(this,Ze,new ResizeObserver(n=>B(this,j,wn).call(this,n[0]))),o(this,Ze).observe(o(this,It)),B(this,j,Ki).call(this);const i=o(this,It).getBoundingClientRect();i.width>0&&i.height>0&&B(this,j,qi).call(this,i.width,i.height),B(this,j,ne).call(this)}setData(t){var e;const i=Ea(t),n=(i==null?void 0:i.time)??null;if(n!==null&&o(this,Qe)!==null&&n!==o(this,Qe)){const r=((e=o(this,Ft))==null?void 0:e.current)??0;k(this,Ft,new Be({initial:r,duration:be,easing:pe,lerp:(a,l,h)=>a+(l-a)*h})),o(this,Ft).setTarget(1)}k(this,Qe,n),k(this,ai,(i==null?void 0:i.seriesIndex)??-1),k(this,me,t),B(this,j,ne).call(this)}setOptions(t){k(this,Fe,t),B(this,j,Ki).call(this),B(this,j,ne).call(this)}destroy(){o(this,it).off("viewportChange",o(this,ti)),o(this,it).off("overlayChange",o(this,ei)),o(this,H).removeEventListener("pointerdown",o(this,ii)),o(this,H).removeEventListener("pointermove",o(this,si)),o(this,H).removeEventListener("pointerup",o(this,fe)),o(this,H).removeEventListener("pointercancel",o(this,fe)),o(this,H).removeEventListener("pointerleave",o(this,ni)),o(this,Ze).disconnect(),o(this,Ut)!==null&&(cancelAnimationFrame(o(this,Ut)),k(this,Ut,null)),o(this,H).remove(),o(this,Wt).remove()}get height(){return o(this,Fe).height??o(this,it).getTheme().navigator.height}}It=new WeakMap,H=new WeakMap,Li=new WeakMap,it=new WeakMap,Wt=new WeakMap,re=new WeakMap,$t=new WeakMap,Xt=new WeakMap,Ht=new WeakMap,Nt=new WeakMap,me=new WeakMap,Fe=new WeakMap,te=new WeakMap,Ci=new WeakMap,Ti=new WeakMap,de=new WeakMap,_t=new WeakMap,Ut=new WeakMap,Je=new WeakMap,Ft=new WeakMap,Qe=new WeakMap,ai=new WeakMap,Ze=new WeakMap,ge=new WeakMap,ti=new WeakMap,ei=new WeakMap,ii=new WeakMap,si=new WeakMap,fe=new WeakMap,ni=new WeakMap,j=new WeakSet,Ki=function(){const s=o(this,Fe).height;s!==void 0&&(o(this,It).style.height=`${s}px`)},pt=function(){return Math.max(0,o(this,Ti)-o(this,it).yAxisWidth)},wn=function(s){var t;if(!s)return;const e=(t=s.contentBoxSize)==null?void 0:t[0],i=(e==null?void 0:e.inlineSize)??s.contentRect.width,n=(e==null?void 0:e.blockSize)??s.contentRect.height;i<=0||n<=0||(B(this,j,qi).call(this,i,n),B(this,j,ne).call(this))},qi=function(s,t){const e=window.devicePixelRatio||1;k(this,Ti,s),k(this,de,t),k(this,_t,e);const i=o(this,j,pt);o(this,H).width=Math.round(i*e),o(this,H).height=Math.round(t*e),o(this,H).style.width=`${i}px`,o(this,Wt).style.width=`${i}px`},ne=function(){o(this,Je)&&o(this,Ut)!==null||(k(this,Je,!0),o(this,Ut)===null&&k(this,Ut,requestAnimationFrame(()=>{k(this,Ut,null),k(this,Je,!1),B(this,j,Ys).call(this)})))},Ye=function(s){const t=o(this,H).getBoundingClientRect();return s.clientX-t.left},_i=function(){const s=B(this,j,we).call(this),t=B(this,j,_s).call(this);return o(this,te).update(s,o(this,j,pt),o(this,_t)),o(this,Ci).update(t,o(this,de),o(this,_t)),{dataRange:s,yRange:t}},bi=function(){return B(this,j,_i).call(this),za(o(this,te),o(this,it).getVisibleRange(),B(this,j,we).call(this))},Vs=function(){const s=B(this,j,we).call(this),t=s.to-s.from;return t<=0||o(this,j,pt)<=0?0:o(this,j,pt)/t},Sn=function(s){if(s.button!==void 0&&s.button!==0)return;const t=B(this,j,Ye).call(this,s),e=B(this,j,we).call(this);if(e.to<=e.from)return;const i=B(this,j,bi).call(this),n=xn(t,i),r=B(this,j,Vs).call(this);if(r===0)return;let a=o(this,it).getVisibleRange();if(n.snapToCenter){const l=o(this,te).xToTime(t),h=Da({time:l,startVisible:a,dataRange:e});o(this,it).setVisibleRange(h),a=h}k(this,ge,{pointerId:s.pointerId,gesture:n.gesture,startX:t,startVisible:a,pixelsPerTime:r}),o(this,H).setPointerCapture(s.pointerId),o(this,H).style.cursor=Tn(n.gesture,!0),s.preventDefault()},Mn=function(s){const t=o(this,ge);if(t===null){o(this,H).style.cursor=Os(B(this,j,Ye).call(this,s),B(this,j,bi).call(this));return}if(s.pointerId!==t.pointerId)return;const e=B(this,j,Ye).call(this,s)-t.startX,i=B(this,j,we).call(this);let n;if(t.gesture==="pan")n=Ia({startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:i});else{const r=t.gesture==="resize-left"?"left":"right";n=Aa({edge:r,startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:i,minSpan:2*o(this,it).getDataInterval()})}o(this,it).setVisibleRange(n)},kn=function(s){const t=o(this,ge);t===null||s.pointerId!==t.pointerId||(k(this,ge,null),o(this,H).hasPointerCapture(s.pointerId)&&o(this,H).releasePointerCapture(s.pointerId),o(this,H).style.cursor=Os(B(this,j,Ye).call(this,s),B(this,j,bi).call(this)))},Ys=function(){if(o(this,j,pt)<=0||o(this,de)<=0)return;const s=o(this,it).getTheme().navigator,{dataRange:t}=B(this,j,_i).call(this);o(this,H).width=Math.round(o(this,j,pt)*o(this,_t)),o(this,H).height=Math.round(o(this,de)*o(this,_t)),o(this,H).style.width=`${o(this,j,pt)}px`,o(this,Wt).style.width=`${o(this,j,pt)}px`;const e=o(this,Li),i=o(this,H).width,n=o(this,H).height;e.save(),e.clearRect(0,0,i,n),e.scale(o(this,_t),o(this,_t));const r={ctx:e,timeScale:o(this,te),yScale:o(this,Ci),mediaWidth:o(this,j,pt),mediaHeight:o(this,de),theme:s};o(this,H).style.boxShadow=`inset 0 1px 0 ${s.borderColor}, inset 0 -1px 0 ${s.borderColor}`,Wa(r);let a=1;o(this,Ft)!==null&&(o(this,Ft).tick(performance.now()),a=o(this,Ft).current,o(this,Ft).animating?B(this,j,ne).call(this):k(this,Ft,null));const l=Math.max(1,Math.round(o(this,j,pt))),h=o(this,me);if(h.type==="candlestick")Ba(r,La(h.points,l),a);else{const d=Oi(h),c=d.length===1,u=o(this,ai)>=0?o(this,ai):d.length-1;for(let f=0;f<d.length;f++){const m=Ra(d[f],l),g=f===u?a:1;h.type==="bar"?Pa(r,m,g):Fa(r,m,c,g)}}e.restore(),B(this,j,js).call(this,s,t)},js=function(s,t){if(t.to<=t.from)return;const e=o(this,it).getVisibleRange(),i=Math.max(t.from,Math.min(t.to,e.from)),n=Math.max(t.from,Math.min(t.to,e.to)),r=o(this,te).timeToX(i),a=o(this,te).timeToX(n),l=Math.min(r,a),h=Math.max(r,a),d=Math.max(1,h-l);o(this,re).style.width=`${l}px`,o(this,re).style.background=s.mask.fill,o(this,re).style.display=l>0?"block":"none";const c=Math.max(0,o(this,j,pt)-(l+d));o(this,$t).style.left=`${l+d}px`,o(this,$t).style.width=`${c}px`,o(this,$t).style.background=s.mask.fill,o(this,$t).style.display=c>0?"block":"none",o(this,Xt).style.left=`${l}px`,o(this,Xt).style.width=`${d}px`,o(this,Xt).style.background=s.window.fill,o(this,Xt).style.border=s.window.borderWidth>0?`${s.window.borderWidth}px solid ${s.window.border}`:"none";const u=s.handle.width,f=Math.max(1,u/2),m=o(this,it).getTheme().background;o(this,Ht).style.left=`${l-u/2}px`,o(this,Ht).style.width=`${u}px`,o(this,Ht).style.background=s.handle.color,o(this,Ht).style.borderRadius=`${f}px`,o(this,Nt).style.left=`${l+d-u/2}px`,o(this,Nt).style.width=`${u}px`,o(this,Nt).style.background=s.handle.color,o(this,Nt).style.borderRadius=`${f}px`;for(const g of o(this,Ht).children)g.style.background=m;for(const g of o(this,Nt).children)g.style.background=m},we=function(){const s=o(this,me);let t=Number.POSITIVE_INFINITY,e=Number.NEGATIVE_INFINITY,i=0;if(s.type==="candlestick")i=s.points.length,i>0&&(t=s.points[0].time,e=s.points[i-1].time);else for(const r of Oi(s))r.length!==0&&(i+=r.length,r[0].time<t&&(t=r[0].time),r[r.length-1].time>e&&(e=r[r.length-1].time));if(i>=2&&e>t)return{from:t,to:e};if(i===1)return{...o(this,it).getVisibleRange()};const n=o(this,it).getDataRange();return n&&n.to>n.from?n:{...o(this,it).getVisibleRange()}},_s=function(){const s=o(this,me);let t=1/0,e=-1/0;if(s.type==="candlestick")for(const n of s.points)n.low<t&&(t=n.low),n.high>e&&(e=n.high);else for(const n of Oi(s))for(const r of n)r.value<t&&(t=r.value),r.value>e&&(e=r.value);if(!Number.isFinite(t)||!Number.isFinite(e))return{min:0,max:1};if(t===e){const n=Math.abs(t)*.05||1;return{min:t-n,max:e+n}}const i=(e-t)*.2;return{min:t-i,max:e+i}};function Oi(s){return"series"in s?s.series:[s.points]}function Ea(s){if(s.type==="candlestick"){const n=s.points.length;return n===0?null:{time:s.points[n-1].time,seriesIndex:-1}}const t="series"in s?s.series:[s.points];let e=null,i=-1;for(let n=0;n<t.length;n++){const r=t[n];if(r.length===0)continue;const a=r[r.length-1].time;(e===null||a>e)&&(e=a,i=n)}return e===null?null:{time:e,seriesIndex:i}}function Tn(s,t){return s==="resize-left"||s==="resize-right"?"ew-resize":t?"grabbing":"grab"}function Os(s,t){return Tn(Va(s,t),!1)}function Va(s,t){return xn(s,t).gesture}function Hs(){const s=document.createElement("div");s.style.cssText="position:absolute;top:0;bottom:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;";for(let t=0;t<3;t++){const e=document.createElement("div");e.style.cssText="width:2px;height:2px;border-radius:50%;flex-shrink:0;",s.appendChild(e)}return s}const Ji=new WeakMap;function Rn(s,t){var e;return(e=Ji.get(s))==null?void 0:e.get(t)}function Ln(s,t,e){let i=Ji.get(s);i||(i=new Map,Ji.set(s,i)),i.set(t,e)}function Ns(s){return"close"in s?s.close:s.value}function In(s,t){if(t==="none"||s.length<=1)return s;const e=[...s];return e.sort((i,n)=>{const r=Ns(i.data),a=Ns(n.data);return t==="asc"?r-a:a-r}),e}function Ii(s){const t=Object.freeze({...s.data}),e={id:s.id,seriesId:s.seriesId,layerIndex:s.layerIndex,label:s.label,data:t,color:s.color};return Object.freeze(e)}function cs(s,t){const e=t.sort??"none",i=s.getOverlayVersion(),n=Rn(s,t.cacheKey);if(n&&n.version===i&&n.time===t.time&&n.sort===e)return n.data;const r=[];for(const l of s.getSeriesIds()){if(!s.isSeriesVisible(l))continue;const h=s.getSeriesLabel(l);if(s.getSeriesLayers(l)!==null){const c=s.getLayerSnapshots(l,t.time);if(!c)continue;for(const u of c)r.push(Ii({id:`${l}_layer${u.layerIndex}`,seriesId:l,layerIndex:u.layerIndex,label:h,data:{time:u.time,value:u.value},color:u.color}));continue}const d=s.getDataAtTime(l,t.time);d&&r.push(Ii({id:l,seriesId:l,label:h,data:d,color:s.getSeriesColor(l)??"#888"}))}const a=Object.freeze(In(r,e));return Ln(s,t.cacheKey,{version:i,time:t.time,sort:e,data:a}),a}function An(s,t){const e=t.sort??"none",i=s.getOverlayVersion(),n=Rn(s,t.cacheKey);if(n&&n.version===i&&n.time===null&&n.sort===e)return n.data;const r=[];for(const l of s.getSeriesIds()){if(!s.isSeriesVisible(l))continue;const h=s.getSeriesLabel(l),d=s.getLayerLastSnapshots(l);if(d){for(const u of d)r.push(Ii({id:`${l}_layer${u.layerIndex}`,seriesId:l,layerIndex:u.layerIndex,label:h,data:{time:u.time,value:u.value},color:u.color}));continue}const c=s.getLastData(l);c&&r.push(Ii({id:l,seriesId:l,label:h,data:c,color:s.getSeriesColor(l)??"#888"}))}const a=Object.freeze(In(r,e));return Ln(s,t.cacheKey,{version:i,time:null,sort:e,data:a}),a}const Ya={background:"#131722",chartGradient:["#1a1f2e","#101318"],typography:{fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",fontSize:12},grid:{color:"rgba(42, 46, 57, 0.6)",style:"dashed"},candlestick:{up:{body:V("#26a69a"),wick:"#26a69a"},down:{body:V("#ef5350"),wick:"#ef5350"}},line:{color:"#2962FF",width:1,areaTopColor:"rgba(41, 98, 255, 0.08)",areaBottomColor:"rgba(41, 98, 255, 0.01)"},seriesColors:["#2962FF","#FF6D00","#26a69a","#AB47BC","#ef5350","#FFCA28","#66BB6A","#EC407A","#42A5F5","#B388FF"],bands:{upper:"#42A5F5",lower:"#EC407A"},crosshair:{color:"rgba(150, 150, 150, 0.5)",labelBackground:"#363a45",labelTextColor:"#d1d4dc"},axis:{fontSize:10,textColor:"#787b86"},yLabel:{fontSize:11,upBackground:"#26a69a",downBackground:"#ef5350",neutralBackground:"#363a45",textColor:"#ffffff"},tooltip:{fontSize:12,background:"rgba(19, 23, 34, 0.9)",textColor:"#d1d4dc",borderColor:"rgba(42, 46, 57, 0.8)"},navigator:{height:48,background:"transparent",borderColor:"rgba(120, 123, 134, 0.18)",line:{color:"#787b86",width:1,areaTopColor:"rgba(120, 123, 134, 0.22)",areaBottomColor:"rgba(120, 123, 134, 0)"},candlestick:{up:{body:V("#26a69a"),wick:"#26a69a"},down:{body:V("#ef5350"),wick:"#ef5350"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(255, 255, 255, 0.30)",width:6},mask:{fill:"rgba(19, 23, 34, 0.78)"}}},ja={background:"#ffffff",chartGradient:["#ffffff","#f5f6f8"],typography:{fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",fontSize:12},grid:{color:"rgba(0, 0, 0, 0.06)",style:"solid"},candlestick:{up:{body:V("#089981"),wick:"#089981"},down:{body:V("#f23645"),wick:"#f23645"}},line:{color:"#2962FF",width:1,areaTopColor:"rgba(41, 98, 255, 0.08)",areaBottomColor:"rgba(41, 98, 255, 0.01)"},seriesColors:["#2962FF","#FF6D00","#089981","#AB47BC","#f23645","#E6A700","#43A047","#D81B60","#1E88E5","#7E57C2"],bands:{upper:"#1E88E5",lower:"#D81B60"},crosshair:{color:"rgba(0, 0, 0, 0.2)",labelBackground:"#4c525e",labelTextColor:"#ffffff"},axis:{fontSize:10,textColor:"#787b86"},yLabel:{fontSize:11,upBackground:"#089981",downBackground:"#f23645",neutralBackground:"#4c525e",textColor:"#ffffff"},tooltip:{fontSize:12,background:"rgba(255, 255, 255, 0.95)",textColor:"#131722",borderColor:"rgba(0, 0, 0, 0.1)"},navigator:{height:48,background:"transparent",borderColor:"rgba(139, 148, 158, 0.22)",line:{color:"#8b949e",width:1,areaTopColor:"rgba(139, 148, 158, 0.18)",areaBottomColor:"rgba(139, 148, 158, 0)"},candlestick:{up:{body:V("#089981"),wick:"#089981"},down:{body:V("#f23645"),wick:"#f23645"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(0, 0, 0, 0.30)",width:6},mask:{fill:"rgba(255, 255, 255, 0.82)"}}},_a=J({name:"Andromeda",description:"Deep space purples and cosmic blues",background:"#23262e",grid:{color:"rgba(50,48,56,0.8)"},candlestick:{up:{body:V("#96e072"),wick:"#96e072"},down:{body:V("#ee5d43"),wick:"#ee5d43"}},line:{color:"#00e8c6"},seriesColors:["#00e8c6","#f39c12","#96e072","#c74ded","#ee5d43","#ffe66d","#00e8c6","#ee5d43","#7cb7ff","#c74ded"],bands:{upper:"#7cb7ff",lower:"#c74ded"},crosshair:{color:"rgba(102,94,110,0.4)",labelBackground:"#2e3038"},axis:{textColor:"#665e6e"},tooltip:{background:"rgba(35,38,46,0.92)",textColor:"#d5ced9",borderColor:"rgba(50,48,56,0.6)"},typography:{fontFamily:dn},fontUrl:fn}),Oa=J({name:"Ayu Mirage",description:"Warm dark with amber accents",background:"#1f2430",grid:{color:"rgba(42,48,60,0.8)"},candlestick:{up:{body:V("#bae67e"),wick:"#bae67e"},down:{body:V("#f27983"),wick:"#f27983"}},line:{color:"#73d0ff"},seriesColors:["#73d0ff","#ffad66","#bae67e","#d4bfff","#f27983","#ffd580","#95e6cb","#f28779","#5ccfe6","#d4bfff"],bands:{upper:"#5ccfe6",lower:"#f28779"},crosshair:{color:"rgba(92,103,115,0.4)",labelBackground:"#2a3040"},axis:{textColor:"#5c6773"},tooltip:{background:"rgba(31,36,48,0.92)",textColor:"#cbccc6",borderColor:"rgba(42,48,60,0.6)"},typography:{fontFamily:Fi},fontUrl:rs}),Ha=J({name:"Dracula",description:"Classic dark with vibrant highlights",background:"#282a36",grid:{color:"rgba(68,71,90,0.8)"},candlestick:{up:{body:V("#50fa7b"),wick:"#50fa7b"},down:{body:V("#ff5555"),wick:"#ff5555"}},line:{color:"#bd93f9"},seriesColors:["#bd93f9","#8be9fd","#50fa7b","#ff79c6","#ffb86c","#f1fa8c","#ff5555","#6272a4","#ff5555","#ff79c6"],bands:{upper:"#8be9fd",lower:"#ff79c6"},crosshair:{color:"rgba(98,114,164,0.4)",labelBackground:"#44475a"},axis:{textColor:"#a0b0d0"},tooltip:{background:"rgba(40,42,54,0.92)",textColor:"#f8f8f2",borderColor:"rgba(68,71,90,0.6)"},typography:{fontFamily:as},fontUrl:os}),Na=J({name:"GitHub Light",description:"Clean and familiar, GitHub-inspired",background:"#fafbfc",chartGradient:["#ffffff","#fafbfc"],grid:{color:"rgba(208,215,222,0.4)"},candlestick:{up:{body:V("#2da44e"),wick:"#2da44e"},down:{body:V("#cf222e"),wick:"#cf222e"}},line:{color:"#0969da",areaTopColor:"rgba(9,105,218,0.05)",areaBottomColor:"rgba(9,105,218,0.005)"},seriesColors:["#0969da","#c4820e","#2da44e","#8250df","#cf222e","#c4820e","#0550ae","#cf222e","#2da44e","#8250df"],bands:{upper:"#0550ae",lower:"#cf222e"},crosshair:{color:"rgba(208,215,222,0.3)",labelBackground:"#f0f3f6"},axis:{textColor:"#8b949e"},tooltip:{background:"rgba(250,251,252,0.95)",textColor:"#24292f",borderColor:"rgba(216,222,228,0.5)"},typography:{fontFamily:ls},fontUrl:hs}),$a=J({name:"Gruvbox",description:"Retro warm with earthy tones",background:"#282828",grid:{color:"rgba(60,56,54,0.8)"},candlestick:{up:{body:V("#b8bb26"),wick:"#b8bb26"},down:{body:V("#fb4934"),wick:"#fb4934"}},line:{color:"#83a598"},seriesColors:["#83a598","#fe8019","#b8bb26","#d3869b","#fb4934","#fabd2f","#8ec07c","#fb4934","#458588","#d3869b"],bands:{upper:"#83a598",lower:"#d3869b"},crosshair:{color:"rgba(146,131,116,0.4)",labelBackground:"#3c3836"},axis:{textColor:"#928374"},tooltip:{background:"rgba(40,40,40,0.92)",textColor:"#ebdbb2",borderColor:"rgba(60,56,54,0.6)"},typography:{fontFamily:Di},fontUrl:Wi}),Xa={name:"Handwritten",description:"Sketch-style with a personal touch",fontUrl:pa,dark:!1,theme:{background:"#fdf5e6",chartGradient:["#fef6e3","#fdf5e6"],typography:{fontFamily:ma,fontSize:15},grid:{color:"rgba(180,170,150,0.3)",style:"dashed"},candlestick:{up:{body:V("#7a9a5e"),wick:"#7a9a5e"},down:{body:V("#b07060"),wick:"#b07060"}},line:{color:"#6a8fa0",width:1,areaTopColor:"rgba(106,143,160,0.08)",areaBottomColor:"rgba(106,143,160,0.01)"},seriesColors:["#6a8fa0","#c09050","#7a9a5e","#8a7098","#b07060","#a09030","#508878","#a06878","#6888a0","#8870a0"],bands:{upper:"#6888a0",lower:"#a06878"},crosshair:{color:"rgba(160,152,128,0.3)",labelBackground:"#f5edd8",labelTextColor:"#5c5040"},axis:{fontSize:13,textColor:"#a09880"},yLabel:{fontSize:15,upBackground:"#7a9a5e",downBackground:"#b07060",neutralBackground:"#e8dcc8",textColor:"#fdf5e6"},tooltip:{fontSize:14,background:"rgba(253,245,230,0.95)",textColor:"#5c5040",borderColor:"rgba(180,170,150,0.4)"},navigator:{height:48,background:"transparent",borderColor:"rgba(106,143,160,0.22)",line:{color:"#92806c",width:1,areaTopColor:"rgba(146,128,108,0.18)",areaBottomColor:"rgba(146,128,108,0)"},candlestick:{up:{body:V("#7a9a5e"),wick:"#7a9a5e"},down:{body:V("#b07060"),wick:"#b07060"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(0,0,0,0.30)",width:6},mask:{fill:"rgba(253,245,230,0.78)"}}}},Ua="'Silkscreen', cursive",Ga="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",Ka=J({name:"Matrix",background:"#000000",candlestick:{up:{body:V("#00ff41"),wick:"#00ff41"},down:{body:V("#00802a"),wick:"#00802a"}},line:{color:"#00ff41"},seriesColors:["#00ff41","#00cc33","#00992a","#33ff66","#66ff88","#00e639","#00b830","#4dff78","#00ff41","#00cc33"],bands:{upper:"#33ff66",lower:"#00802a"},grid:{color:"rgba(0,255,65,0.06)"},axis:{textColor:"#00cc33"},crosshair:{color:"rgba(0,255,65,0.3)",labelBackground:"#0a1a0a"},tooltip:{background:"rgba(0,10,0,0.95)",textColor:"#00ff41",borderColor:"rgba(0,255,65,0.2)"},typography:{fontFamily:Ua},fontUrl:Ga,chartGradient:["#010a01","#000000"]}),qa=J({name:"Lavender Mist",background:"#f5f0f4",candlestick:{up:{body:V("#6b8e5e"),wick:"#6b8e5e"},down:{body:V("#b85468"),wick:"#b85468"}},line:{color:"#7c6bc4"},seriesColors:["#7c6bc4","#d4885a","#6b8e5e","#c46b8e","#b85468","#8e7a4e","#4e8e8a","#b85468","#7c6bc4","#c46b8e"],bands:{upper:"#4e8e8a",lower:"#b85468"},grid:{color:"rgba(150,130,155,0.12)"},axis:{textColor:"#9a88a0"},crosshair:{color:"rgba(150,130,155,0.2)",labelBackground:"#ebe4e8"},tooltip:{background:"rgba(245,240,244,0.95)",textColor:"#3a3050",borderColor:"rgba(150,130,155,0.25)"},typography:{fontFamily:ls},fontUrl:hs,chartGradient:["#f8f4f7","#f5f0f4"]}),Ja=J({name:"Love",description:"Soft romantic pinks and roses",background:"#fef7f8",chartGradient:["#fffafb","#fef7f8"],grid:{color:"rgba(200,160,175,0.25)"},candlestick:{up:{body:V("#6a9a6e"),wick:"#6a9a6e"},down:{body:V("#c45070"),wick:"#c45070"}},line:{color:"#a05080"},seriesColors:["#a05080","#d08850","#6a9a6e","#7868a8","#c45070","#c89040","#508890","#c45070","#a05080","#7868a8"],bands:{upper:"#508890",lower:"#c45070"},crosshair:{color:"rgba(180,140,155,0.3)",labelBackground:"#f0dce2"},axis:{textColor:"#b08898"},tooltip:{background:"rgba(253,242,244,0.95)",textColor:"#4a3040",borderColor:"rgba(200,160,175,0.35)"},typography:{fontFamily:Fi},fontUrl:rs}),Qa=J({name:"Material Palenight",description:"Material Design in moonlit hues",background:"#292d3e",grid:{color:"rgba(55,59,75,0.8)"},candlestick:{up:{body:V("#c3e88d"),wick:"#c3e88d"},down:{body:V("#f07178"),wick:"#f07178"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#f78c6c","#c3e88d","#c792ea","#f07178","#ffcb6b","#89ddff","#ff5370","#82aaff","#c792ea"],bands:{upper:"#89ddff",lower:"#f07178"},crosshair:{color:"rgba(103,110,149,0.4)",labelBackground:"#34324a"},axis:{textColor:"#676e95"},tooltip:{background:"rgba(41,45,62,0.92)",textColor:"#a6accd",borderColor:"rgba(55,59,75,0.6)"},typography:{fontFamily:dn},fontUrl:fn}),Za="'Silkscreen', cursive",to="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",eo=J({name:"Monochrome",description:"Pure black and white, pixel font",background:"#ffffff",chartGradient:["#ffffff","#fafafa"],grid:{color:"rgba(0,0,0,0.06)",style:"solid"},candlestick:{up:{body:V("#111111"),wick:"#111111"},down:{body:V("#bbbbbb"),wick:"#bbbbbb"}},line:{color:"#111111"},seriesColors:["#111111","#888888","#bbbbbb","#555555","#999999","#333333","#aaaaaa","#666666","#cccccc","#444444"],bands:{upper:"#555555",lower:"#bbbbbb"},crosshair:{color:"rgba(0,0,0,0.08)",labelBackground:"#f0f0f0"},axis:{textColor:"#b0b0b0"},tooltip:{fontSize:9,background:"rgba(255,255,255,0.97)",textColor:"#222222",borderColor:"rgba(0,0,0,0.08)"},typography:{fontFamily:Za},fontUrl:to}),io=J({name:"Mint Breeze",background:"#f6f5ee",candlestick:{up:{body:V("#2e9070"),wick:"#2e9070"},down:{body:V("#d04848"),wick:"#d04848"}},line:{color:"#2a8a80"},seriesColors:["#2a8a80","#d0884a","#2e9070","#7a68b0","#d04848","#a09040","#3a7a9a","#d04848","#2a8a80","#7a68b0"],bands:{upper:"#3a7a9a",lower:"#d04848"},grid:{color:"rgba(100,150,140,0.1)"},axis:{textColor:"#80a098"},crosshair:{color:"rgba(120,140,120,0.18)",labelBackground:"#ece8de"},tooltip:{background:"rgba(246,245,238,0.95)",textColor:"#2a3530",borderColor:"rgba(130,140,115,0.2)"},typography:{fontFamily:fa},fontUrl:ga,chartGradient:["#f8f7f0","#f6f5ee"]}),so=J({name:"Monokai Pro",description:"Bold syntax colors on dark gray",background:"#2d2a2e",grid:{color:"rgba(64,60,62,0.8)"},candlestick:{up:{body:V("#8ab862"),wick:"#8ab862"},down:{body:V("#d05470"),wick:"#d05470"}},line:{color:"#62b8c8"},seriesColors:["#62b8c8","#d08050","#8ab862","#9080c8","#d05470","#d0b850","#62b8c8","#d05470","#8ab862","#9080c8"],bands:{upper:"#62b8c8",lower:"#d05470"},crosshair:{color:"rgba(114,112,114,0.4)",labelBackground:"#403e42"},axis:{textColor:"#727072"},tooltip:{background:"rgba(45,42,46,0.92)",textColor:"#fcfcfa",borderColor:"rgba(64,60,62,0.6)"},typography:{fontFamily:as},fontUrl:os}),no=J({name:"Night Owl",description:"Crafted for late-night coding",background:"#011627",grid:{color:"rgba(31,52,72,0.8)"},candlestick:{up:{body:V("#7ec699"),wick:"#7ec699"},down:{body:V("#e06c75"),wick:"#e06c75"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#d49a6a","#7ec699","#b48ead","#e06c75","#d4b568","#5fb3a1","#d47084","#6bc5e0","#b48ead"],bands:{upper:"#6bc5e0",lower:"#d47084"},crosshair:{color:"rgba(99,119,119,0.4)",labelBackground:"#1d3b53"},axis:{textColor:"#4d5a6c"},tooltip:{background:"rgba(1,22,39,0.92)",textColor:"#d6deeb",borderColor:"rgba(31,52,72,0.6)"},typography:{fontFamily:Di},fontUrl:Wi}),ro=J({name:"One Dark Pro",description:"Atom editor's iconic dark palette",background:"#282c34",grid:{color:"rgba(59,64,72,0.8)"},candlestick:{up:{body:V("#98c379"),wick:"#98c379"},down:{body:V("#e06c75"),wick:"#e06c75"}},line:{color:"#61afef"},seriesColors:["#61afef","#e5c07b","#98c379","#c678dd","#e06c75","#56b6c2","#d19a66","#be5046","#61afef","#c678dd"],bands:{upper:"#56b6c2",lower:"#c678dd"},crosshair:{color:"rgba(99,110,123,0.4)",labelBackground:"#3e4451"},axis:{textColor:"#5c6370"},tooltip:{background:"rgba(40,44,52,0.92)",textColor:"#abb2bf",borderColor:"rgba(59,64,72,0.6)"},typography:{fontFamily:Di},fontUrl:Wi}),ao=J({name:"Panda",description:"Playful neons on charcoal",background:"#292a2b",grid:{color:"rgba(58,58,60,0.8)"},candlestick:{up:{body:V("#19f9d8"),wick:"#19f9d8"},down:{body:V("#ff75b5"),wick:"#ff75b5"}},line:{color:"#6fc1ff"},seriesColors:["#6fc1ff","#ffb86c","#19f9d8","#b084eb","#ff75b5","#ffcc95","#19f9d8","#ff4b82","#45a9f9","#b084eb"],bands:{upper:"#45a9f9",lower:"#ff75b5"},crosshair:{color:"rgba(117,117,117,0.4)",labelBackground:"#3a3a3c"},axis:{textColor:"#757575"},tooltip:{background:"rgba(41,42,43,0.92)",textColor:"#e6e6e6",borderColor:"rgba(58,58,60,0.6)"},typography:{fontFamily:as},fontUrl:os}),oo=J({name:"Peach Cream",background:"#fef6f0",candlestick:{up:{body:V("#5a9a68"),wick:"#5a9a68"},down:{body:V("#d06848"),wick:"#d06848"}},line:{color:"#d07040"},seriesColors:["#d07040","#5a9a68","#8a6aaa","#c0884a","#d06848","#4a8a9a","#9a7a4a","#d06848","#d07040","#8a6aaa"],bands:{upper:"#4a8a9a",lower:"#d06848"},grid:{color:"rgba(180,140,120,0.12)"},axis:{textColor:"#b09080"},crosshair:{color:"rgba(180,140,120,0.2)",labelBackground:"#f0e4d8"},tooltip:{background:"rgba(254,246,240,0.95)",textColor:"#4a3028",borderColor:"rgba(180,140,120,0.25)"},typography:{fontFamily:ls},fontUrl:hs,chartGradient:["#fff8f2","#fef6f0"]}),lo=J({name:"Quiet Light",description:"Subdued and easy on the eyes",background:"#f5f5f5",chartGradient:["#fdfdfd","#f5f5f5"],grid:{color:"rgba(200,200,200,0.5)"},candlestick:{up:{body:V("#448c27"),wick:"#448c27"},down:{body:V("#aa3731"),wick:"#aa3731"}},line:{color:"#4b69c6"},seriesColors:["#4b69c6","#c47820","#448c27","#7a3e9d","#aa3731","#c47820","#2d8fa1","#aa3731","#448c27","#7a3e9d"],bands:{upper:"#2d8fa1",lower:"#aa3731"},crosshair:{color:"rgba(170,170,170,0.3)",labelBackground:"#e8e8e8"},axis:{textColor:"#aaaaaa"},tooltip:{background:"rgba(245,245,245,0.95)",textColor:"#333333",borderColor:"rgba(200,200,200,0.5)"},typography:{fontFamily:ua},fontUrl:da}),ho=J({name:"Rosé Pine Dawn",description:"Dawn-inspired warm neutrals",background:"#faf4ed",grid:{color:"rgba(152,147,165,0.2)"},candlestick:{up:{body:V("#56949f"),wick:"#56949f"},down:{body:V("#b4637a"),wick:"#b4637a"}},line:{color:"#907aa9"},seriesColors:["#907aa9","#ea9d34","#56949f","#d7827e","#b4637a","#ea9d34","#286983","#b4637a","#907aa9","#d7827e"],bands:{upper:"#286983",lower:"#b4637a"},crosshair:{color:"rgba(152,147,165,0.3)",labelBackground:"#f2e9e1"},axis:{textColor:"#9893a5"},tooltip:{background:"rgba(250,244,237,0.95)",textColor:"#575279",borderColor:"rgba(152,147,165,0.3)"},typography:{fontFamily:gn},fontUrl:mn}),co=J({name:"Sand Dune",background:"#f4f0e8",candlestick:{up:{body:V("#5a8a50"),wick:"#5a8a50"},down:{body:V("#b85040"),wick:"#b85040"}},line:{color:"#8a6a3a"},seriesColors:["#8a6a3a","#b87a40","#5a8a50","#7a5a70","#b85040","#a09030","#4a7a7a","#b85040","#8a6a3a","#7a5a70"],bands:{upper:"#4a7a7a",lower:"#b85040"},grid:{color:"rgba(150,130,100,0.15)"},axis:{textColor:"#9a8a70"},crosshair:{color:"rgba(150,130,100,0.2)",labelBackground:"#e8e0d0"},tooltip:{background:"rgba(244,240,232,0.95)",textColor:"#3a3020",borderColor:"rgba(150,130,100,0.3)"},typography:{fontFamily:gn},fontUrl:mn,chartGradient:["#f8f4ec","#f4f0e8"]}),uo=J({name:"Solarized Light",description:"Ethan Schoonover's precision palette",background:"#fdf6e3",chartGradient:["#fef8e8","#fdf6e3"],grid:{color:"rgba(238,232,213,0.8)"},candlestick:{up:{body:V("#859900"),wick:"#859900"},down:{body:V("#dc322f"),wick:"#dc322f"}},line:{color:"#268bd2"},seriesColors:["#268bd2","#cb4b16","#859900","#6c71c4","#dc322f","#b58900","#2aa198","#d33682","#268bd2","#6c71c4"],bands:{upper:"#2aa198",lower:"#d33682"},crosshair:{color:"rgba(147,161,161,0.3)",labelBackground:"#eee8d5"},axis:{textColor:"#93a1a1"},tooltip:{background:"rgba(253,246,227,0.95)",textColor:"#586e75",borderColor:"rgba(238,232,213,0.6)"},typography:{fontFamily:Di},fontUrl:Wi});function ci(s){const{x:t,y:e,chartWidth:i,chartHeight:n,tooltipWidth:r,tooltipHeight:a,offsetX:l=16,offsetY:h=16}=s,d=t+l+r>i?t-l-r:t+l,c=e+h+a>n?e-h-a:e+h,u=Math.max(0,i-r),f=Math.max(0,n-a);return{left:Math.max(0,Math.min(u,d)),top:Math.max(0,Math.min(f,c))}}const Ie=I.createContext(null);function at(){const s=I.useContext(Ie);if(!s)throw new Error("useChartInstance must be used within <ChartContainer>");return s}const fo=20;function Dn({data:s,options:t,id:e}){var h;const i=at(),n=I.useRef(null),r=I.useRef([]),a=I.useRef([]),l=I.useRef([]);return I.useLayoutEffect(()=>{const d=i.addBarSeries({...t,layers:s.length,id:e});return n.current=d,r.current=new Array(s.length).fill(0),a.current=new Array(s.length).fill(null),l.current=new Array(s.length).fill(null),()=>{i.removeSeries(d),n.current=null,r.current=[],a.current=[],l.current=[]}},[i,s.length,e]),I.useLayoutEffect(()=>{const d=n.current;d&&i.batch(()=>{for(let c=0;c<s.length;c++){const u=s[c],f=r.current[c]??0,m=a.current[c]??null;if(u.length===0){i.setSeriesData(d,[],c),r.current[c]=0,a.current[c]=null,l.current[c]=null;continue}const g=ut(u[0].time),p=ut(u[u.length-1].time),w=l.current[c]??null,x=m!==null&&m!==g,v=u.length-f;if(x&&v===0&&(w!==null&&w!==p))i.setSeriesData(d,u.slice(0,-1),c),i.appendData(d,u[u.length-1],c);else if(f===0||u.length<f||v>fo||x)i.setSeriesData(d,u,c);else if(u.length===f)i.updateData(d,u[u.length-1],c);else for(let M=f;M<u.length;M++)i.appendData(d,u[M],c);r.current[c]=u.length,a.current[c]=g,l.current[c]=p}})},[i,s]),I.useEffect(()=>{n.current&&t&&i.updateSeriesOptions(n.current,t)},[i,(h=t==null?void 0:t.colors)==null?void 0:h.join(","),t==null?void 0:t.barWidthRatio,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.enterAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.enterMs,t==null?void 0:t.smoothMs]),null}const go=20;function mo({data:s,options:t,id:e}){var h,d,c,u,f,m;const i=at(),n=I.useRef(null),r=I.useRef(0),a=I.useRef(null),l=I.useRef(null);return I.useLayoutEffect(()=>{const g=i.addCandlestickSeries({...t,id:e});return n.current=g,()=>{i.removeSeries(g),n.current=null,r.current=0,a.current=null,l.current=null}},[i,e]),I.useLayoutEffect(()=>{const g=n.current;if(!g)return;if(s.length===0){i.setSeriesData(g,[]),r.current=0,a.current=null,l.current=null;return}const p=r.current,w=a.current,x=l.current,v=ut(s[0].time),S=ut(s[s.length-1].time),M=w!==null&&w!==v,y=s.length-p;if(M&&y===0&&(x!==null&&x!==S))i.setSeriesData(g,s.slice(0,-1)),i.appendData(g,s[s.length-1]);else if(p===0||s.length<p||y>go||M)i.setSeriesData(g,s);else if(s.length===p)i.updateData(g,s[s.length-1]);else for(let b=p;b<s.length;b++)i.appendData(g,s[b]);r.current=s.length,a.current=v,l.current=S},[i,s]),I.useEffect(()=>{n.current&&t&&i.updateSeriesOptions(n.current,t)},[i,Array.isArray((h=t==null?void 0:t.up)==null?void 0:h.body)?t.up.body.join(","):(d=t==null?void 0:t.up)==null?void 0:d.body,Array.isArray((c=t==null?void 0:t.down)==null?void 0:c.body)?t.down.body.join(","):(u=t==null?void 0:t.down)==null?void 0:u.body,(f=t==null?void 0:t.up)==null?void 0:f.wick,(m=t==null?void 0:t.down)==null?void 0:m.wick,t==null?void 0:t.bodyWidthRatio,t==null?void 0:t.entryAnimation,t==null?void 0:t.enterAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.enterMs,t==null?void 0:t.smoothMs]),null}const us=I.createContext(null),Ae=us.Provider;function ui(){const s=I.useContext(us);if(!s)throw new Error("useTheme must be used within <ThemeProvider>");return s}function po(){return I.useContext(us)}function Pi(s,t,e){const i=Array.isArray(t)?t:[t];return{subscribe:n=>{const r=n;for(const a of i)s.on(a,r);return()=>{for(const a of i)s.off(a,r)}},getSnapshot:e}}function Wn(s){const t=I.useMemo(()=>Pi(s,["viewportChange","dataUpdate","seriesChange"],()=>s.getVisibleRange()),[s]);return I.useSyncExternalStore(t.subscribe,t.getSnapshot)}function Fn(s){const t=I.useMemo(()=>Pi(s,["viewportChange","dataUpdate","seriesChange"],()=>s.getYRange()),[s]);return I.useSyncExternalStore(t.subscribe,t.getSnapshot)}function bo(s,t){const e=I.useMemo(()=>{let i=s.getLastValue(t),n=i?s.yScale.valueToY(i.value):null;const r=()=>i,a=()=>{const l=s.getLastValue(t),h=l?s.yScale.valueToY(l.value):null;return(i==null?void 0:i.value)===(l==null?void 0:l.value)&&(i==null?void 0:i.isLive)===(l==null?void 0:l.isLive)&&n===h?!1:(i=l,n=h,!0)};return{subscribe:l=>{a();const h=()=>{a()&&l()};return s.on("dataUpdate",h),s.on("viewportChange",h),()=>{s.off("dataUpdate",h),s.off("viewportChange",h)}},getSnapshot:r}},[s,t]);return I.useSyncExternalStore(e.subscribe,e.getSnapshot)}function vo(s,t){const e=I.useMemo(()=>Pi(s,"dataUpdate",()=>s.getPreviousClose(t)),[s,t]);return I.useSyncExternalStore(e.subscribe,e.getSnapshot)}function di(s){const t=I.useMemo(()=>Pi(s,"crosshairMove",()=>s.getCrosshairPosition()),[s]);return I.useSyncExternalStore(t.subscribe,t.getSnapshot)}const yo=(s,t)=>t==="volume"?oe(s):is(s);function Pn({sort:s="none",format:t=yo,children:e}){const i=at(),n=ui(),r=di(i),[,a]=I.useState(0);I.useLayoutEffect(()=>{const f=()=>a(m=>m+1);return i.on("overlayChange",f),i.getSeriesIds().length>0&&a(m=>m+1),()=>{i.off("overlayChange",f)}},[i]);const l=An(i,{sort:s,cacheKey:"infobar-last"});let h=l,d=l.length===0?0:Math.max(...l.map(f=>f.data.time)),c=!1;if(r!==null){const f=cs(i,{time:r.time,sort:s,cacheKey:"infobar-hover"});f.length>0&&(h=f,d=r.time,c=!0)}if(h.length===0)return null;if(e)return T.jsx("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",flexShrink:0,fontFamily:n.typography.fontFamily,fontSize:n.typography.fontSize,fontVariantNumeric:"tabular-nums",opacity:c?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:e({snapshots:h,time:d,isHover:c})});const u=i.getDataInterval();return T.jsxs("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",gap:4,flexWrap:"wrap",padding:"4px 8px",flexShrink:0,fontSize:n.typography.fontSize,fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",opacity:c?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:[T.jsx("span",{style:{color:n.axis.textColor,marginRight:2},children:hi(d,u)}),h.map(f=>{if("open"in f.data){const p=f.data,w=p.close>=p.open,x=vt(w?n.candlestick.up.body:n.candlestick.down.body);return T.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:4},children:[T.jsx(je,{label:"O",display:t(p.open,"open"),color:x,dim:n.axis.textColor}),T.jsx(je,{label:"H",display:t(p.high,"high"),color:x,dim:n.axis.textColor}),T.jsx(je,{label:"L",display:t(p.low,"low"),color:x,dim:n.axis.textColor}),T.jsx(je,{label:"C",display:t(p.close,"close"),color:x,dim:n.axis.textColor}),p.volume!=null&&T.jsx(je,{label:"V",display:t(p.volume,"volume"),color:n.axis.textColor,dim:n.axis.textColor})]},f.id)}const g=f.data;return T.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:3},children:[T.jsx("span",{style:{width:6,height:6,borderRadius:"50%",background:f.color,flexShrink:0}}),T.jsx("span",{style:{color:f.color,fontWeight:500},children:t(g.value,"value")})]},f.id)})]})}function je({label:s,display:t,color:e,dim:i}){return T.jsxs(T.Fragment,{children:[T.jsx("span",{style:{color:i,opacity:.5,marginLeft:5},children:s}),T.jsx("span",{style:{color:e,fontWeight:500,marginLeft:2},children:t})]})}function xo({chart:s,isolatedIdRef:t,setIsolatedId:e}){const i=[],n=s.getSeriesIds();for(const r of n){const a=s.getSeriesLayers(r);if(a){const l=s.getSeriesLabel(r);for(let h=0;h<a.length;h++){const d=`${r}_layer${h}`,c=s.isSeriesVisible(r)&&s.isLayerVisible(r,h);i.push($s({id:d,seriesId:r,layerIndex:h,label:l?`${l} ${h+1}`:`Series ${h+1}`,color:a[h].color,isDisabled:!c,chart:s,isolatedIdRef:t,setIsolatedId:e}))}}else{const l=s.getSeriesColor(r);if(!l)continue;const h=s.getSeriesLabel(r),d=s.isSeriesVisible(r);i.push($s({id:r,seriesId:r,layerIndex:void 0,label:h??"Series",color:l,isDisabled:!d,chart:s,isolatedIdRef:t,setIsolatedId:e}))}}return i}function $s(s){const{id:t,seriesId:e,layerIndex:i,label:n,color:r,isDisabled:a,chart:l,isolatedIdRef:h,setIsolatedId:d}=s;return{id:t,seriesId:e,layerIndex:i,label:n,color:r,isDisabled:a,toggle:()=>{i!==void 0?l.setLayerVisible(e,i,!l.isLayerVisible(e,i)):l.setSeriesVisible(e,!l.isSeriesVisible(e))},isolate:()=>{if(h.current===t){l.batch(()=>{for(const f of l.getSeriesIds()){l.setSeriesVisible(f,!0);const m=l.getSeriesLayers(f);if(m)for(let g=0;g<m.length;g++)l.setLayerVisible(f,g,!0)}}),h.current=null,d(null);return}l.batch(()=>{for(const f of l.getSeriesIds()){const m=l.getSeriesLayers(f);if(m){l.setSeriesVisible(f,f===e);for(let g=0;g<m.length;g++)l.setLayerVisible(f,g,f===e&&g===i)}else l.setSeriesVisible(f,f===t)}}),h.current=t,d(t)}}}function Bn({items:s,position:t="bottom",mode:e="toggle",children:i}){const n=at(),r=ui(),[a,l]=I.useState(null),[h,d]=I.useState(0),c=I.useRef(a);c.current=a,I.useLayoutEffect(()=>{const p=()=>d(x=>x+1),w=()=>l(null);return n.on("overlayChange",p),n.on("seriesChange",w),n.getSeriesIds().length>0&&d(x=>x+1),()=>{n.off("overlayChange",p),n.off("seriesChange",w)}},[n]);const u=I.useMemo(()=>xo({chart:n,isolatedIdRef:c,setIsolatedId:l}),[n,a,h]),f=t==="right",m={display:"flex",flexDirection:f?"column":"row",flexWrap:"wrap",gap:f?6:14,padding:f?"8px 6px":"6px 8px",alignItems:f?"flex-start":"center",justifyContent:f?"flex-start":"center",fontFamily:r.typography.fontFamily,fontSize:r.axis.fontSize,color:r.axis.textColor,pointerEvents:"auto",flexShrink:0};if(i)return u.length===0?null:T.jsx("div",{"data-legend":t,style:m,children:i({items:u})});if(s)return s.length===0?null:T.jsx("div",{"data-legend":t,style:m,children:s.map((p,w)=>T.jsxs("div",{style:{display:"flex",alignItems:"center",gap:4,userSelect:"none"},children:[T.jsx("span",{style:{width:8,height:8,borderRadius:2,background:p.color,flexShrink:0}}),T.jsx("span",{style:{whiteSpace:"nowrap"},children:p.label})]},w))});if(u.length===0)return null;const g=p=>{e==="isolate"||e==="solo"?p.isolate():p.toggle()};return T.jsx("div",{"data-legend":t,style:m,children:u.map(p=>T.jsxs("div",{onClick:()=>g(p),style:{display:"flex",alignItems:"center",gap:4,cursor:"pointer",opacity:p.isDisabled?.35:1,transition:"opacity 0.15s ease",userSelect:"none"},children:[T.jsx("span",{style:{width:8,height:8,borderRadius:2,background:p.color,flexShrink:0}}),T.jsx("span",{style:{whiteSpace:"nowrap"},children:p.label})]},p.id))})}function zn({data:s,height:t,style:e,className:i}){const n=at(),r=ui(),a=I.useRef(null),l=I.useRef(null);I.useLayoutEffect(()=>{if(!a.current)return;const d=new Cn({container:a.current,chart:n,data:s,options:t!==void 0?{height:t}:void 0});return l.current=d,()=>{d.destroy(),l.current=null}},[n]),I.useEffect(()=>{var d;(d=l.current)==null||d.setData(s)},[s]),I.useEffect(()=>{var d;(d=l.current)==null||d.setOptions(t!==void 0?{height:t}:{})},[t]);const h=t??r.navigator.height;return T.jsx("div",{ref:a,className:i,"data-chart-navigator":"",style:{position:"relative",width:"100%",height:h,flexShrink:0,...e}})}function wo(s,t){if(t!==void 0)return t;const e=s.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}function En({seriesId:s,mode:t,format:e,position:i,children:n}){const r=t??"both",a=i??"bottom",l=e??oe,h=at(),d=h.getTheme(),[,c]=I.useState(0);I.useLayoutEffect(()=>{const g=()=>c(p=>p+1);return h.on("overlayChange",g),h.getSeriesIds().length>0&&g(),()=>{h.off("overlayChange",g)}},[h]);const u=wo(h,s),f=u!==null?h.getSliceInfo(u):null;if(!f||f.length===0)return null;if(n)return T.jsx(T.Fragment,{children:n({slices:f,mode:r,format:l})});const m=a==="overlay";return T.jsx("div",{"data-chart-pie-legend":"","data-chart-pie-legend-position":a,style:{display:"flex",flexDirection:"column",gap:6,padding:m?"8px 12px":"6px 10px",fontFamily:d.typography.fontFamily,fontSize:d.typography.fontSize,color:d.tooltip.textColor,pointerEvents:"auto"},children:f.map((g,p)=>T.jsxs("div",{style:{display:"flex",alignItems:"center",gap:10},children:[T.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:g.color,flexShrink:0}}),T.jsx("span",{style:{flex:1,opacity:.8},children:g.label}),(r==="value"||r==="both")&&T.jsx("span",{style:{fontWeight:600,fontVariantNumeric:"tabular-nums",minWidth:r==="value"?40:void 0,textAlign:"right"},children:l(g.value)}),(r==="percent"||r==="both")&&T.jsxs("span",{style:{opacity:r==="percent"?1:.5,fontWeight:r==="percent"?600:400,fontSize:r==="percent"?d.typography.fontSize:d.axis.fontSize,fontVariantNumeric:"tabular-nums",minWidth:40,textAlign:"right"},children:[g.percent.toFixed(1),"%"]})]},p))})}function Vn({children:s,sub:t,style:e}){const i=ui();return T.jsxs("div",{"data-chart-title":"",style:{display:"flex",alignItems:"baseline",gap:6,padding:"6px 8px 0",flexShrink:0,fontFamily:i.typography.fontFamily,fontSize:i.typography.fontSize,fontWeight:600,color:i.tooltip.textColor,pointerEvents:"none",...e},children:[s!=null&&s!==!1&&T.jsx("span",{children:s}),t!=null&&t!==!1&&T.jsx("span",{style:{fontWeight:400,color:i.axis.textColor,fontSize:i.axis.fontSize},children:t})]})}function So(s){let t=null,e=null,i=null,n=null,r=null;const a=[],l=h=>{if(I.isValidElement(h)&&h.type===I.Fragment){I.Children.forEach(h.props.children,l);return}if(I.isValidElement(h)){if(h.type===Vn){t=h;return}if(h.type===Bn){e=h;return}if(h.type===En){const d=h;d.props.position==="overlay"?a.push(h):i=d;return}if(h.type===Pn){n=h;return}if(h.type===zn){r=h;return}}a.push(h)};return I.Children.forEach(s,l),{titleEl:t,legendEl:e,pieLegendEl:i,tooltipLegendEl:n,navigatorEl:r,overlay:a}}function Yn({children:s,theme:t,axis:e,padding:i,gradient:n=!0,interactive:r,grid:a,headerLayout:l="overlay",perf:h,animations:d,onEdgeReached:c,style:u,className:f}){var Kt,ze,fi,gi,mi,ve;const m=I.useRef(h),g=I.useRef(c),p=po(),w=t??p??void 0,x=I.useRef(null),v=I.useRef(null),[S,M]=I.useState(0);I.useLayoutEffect(()=>{if(!x.current||v.current)return;const Z={};return e&&(Z.axis=e),w&&(Z.theme=w),i&&(Z.padding=i),r!==void 0&&(Z.interactive=r),a!==void 0&&(Z.grid=a),m.current!==void 0&&(Z.perf=m.current),d!==void 0&&(Z.animations=d),g.current&&(Z.onEdgeReached=g.current),v.current=new yn(x.current,Z),M(mt=>mt+1),()=>{var mt;(mt=v.current)==null||mt.destroy(),v.current=null}},[]),I.useEffect(()=>{v.current&&w&&v.current.setTheme(w)},[w]),I.useEffect(()=>{v.current&&e&&v.current.setAxis(e)},[(Kt=e==null?void 0:e.y)==null?void 0:Kt.width,(ze=e==null?void 0:e.y)==null?void 0:ze.min,(fi=e==null?void 0:e.y)==null?void 0:fi.max,(gi=e==null?void 0:e.y)==null?void 0:gi.visible,(mi=e==null?void 0:e.x)==null?void 0:mi.height,(ve=e==null?void 0:e.x)==null?void 0:ve.visible]),I.useEffect(()=>{v.current&&d!==void 0&&v.current.setAnimations(d)},[JSON.stringify(d)]);const y=I.useRef(null),[W,b]=I.useState(0),A=l==="overlay"?W:0;I.useEffect(()=>{const Z=v.current;if(!Z)return;const Et={top:((i==null?void 0:i.top)??20)+A,...(i==null?void 0:i.bottom)!==void 0?{bottom:i.bottom}:{},...(i==null?void 0:i.right)!==void 0?{right:i.right}:{},...(i==null?void 0:i.left)!==void 0?{left:i.left}:{}};Z.setPadding(Et)},[i==null?void 0:i.top,i==null?void 0:i.bottom,typeof(i==null?void 0:i.right)=="object"?i.right.intervals:i==null?void 0:i.right,typeof(i==null?void 0:i.left)=="object"?i.left.intervals:i==null?void 0:i.left,A]),I.useEffect(()=>{v.current&&a!==void 0&&v.current.setGrid(a)},[a==null?void 0:a.visible]);const C=v.current,{titleEl:R,legendEl:F,pieLegendEl:P,tooltipLegendEl:E,navigatorEl:z,overlay:_}=So(s),N=(F==null?void 0:F.props.position)??"bottom",$=(P==null?void 0:P.props.position)??"bottom",st=N==="right"||$==="right",X=w??(C==null?void 0:C.getTheme()),[Mt,yt]=(X==null?void 0:X.chartGradient)??["transparent","transparent"],Bt=(X==null?void 0:X.background)??"transparent",Q=n?`linear-gradient(to bottom, ${Mt} 0%, ${Bt} 70%, ${yt} 100%)`:Bt;I.useLayoutEffect(()=>{if(l!=="overlay"){b(0);return}const Z=y.current;if(!Z){b(0);return}const mt=()=>b(Z.getBoundingClientRect().height);mt();const Et=new ResizeObserver(mt);return Et.observe(Z),()=>Et.disconnect()},[R!==null,E!==null,l,C!==null]);const kt=(R||E)&&T.jsxs("div",{"data-chart-header":"","data-chart-top-overlay":l==="overlay"?"":void 0,ref:y,style:l==="overlay"?{position:"absolute",top:0,left:0,right:0,zIndex:2,pointerEvents:"none",display:"flex",flexDirection:"column"}:{flexShrink:0,display:"flex",flexDirection:"column",pointerEvents:"none"},children:[R,E]}),dt=T.jsx("div",{ref:x,style:{position:"relative",flex:1,minWidth:0,minHeight:0,overflow:"hidden"},children:C&&T.jsx(Ie.Provider,{value:C,children:T.jsxs(Ae,{value:w??C.getTheme(),children:[l==="overlay"&&kt,T.jsx("div",{"data-chart-series-overlay":"",style:{position:"absolute",inset:0,pointerEvents:"none",zIndex:3},children:_})]})})}),ft=l==="inline"?T.jsxs("div",{"data-chart-canvas-block":"",style:{display:"flex",flexDirection:"column",flex:1,minWidth:0,minHeight:0},children:[C&&kt&&T.jsx(Ie.Provider,{value:C,children:T.jsx(Ae,{value:w??C.getTheme(),children:kt})}),dt]}):dt,gt=C&&F&&T.jsx(Ie.Provider,{value:C,children:T.jsx(Ae,{value:w??C.getTheme(),children:F})}),Gt=C&&P&&T.jsx(Ie.Provider,{value:C,children:T.jsx(Ae,{value:w??C.getTheme(),children:P})}),zt=C&&z&&T.jsx(Ie.Provider,{value:C,children:T.jsx(Ae,{value:w??C.getTheme(),children:z})});return T.jsxs("div",{className:f,style:{display:"flex",flexDirection:"column",width:"100%",height:"100%",overflow:"hidden",background:Q,...u},children:[T.jsxs("div",{style:{display:"flex",flexDirection:st?"row":"column",flex:1,minHeight:0,minWidth:0},children:[ft,gt,Gt]}),zt]})}function Mo({side:s,threshold:t=5,onTrigger:e,indicator:i="canvas",children:n}){const r=at(),[a,l]=I.useState(!1),[h,d]=I.useState(!0),[,c]=I.useState(0),u=I.useRef(e);u.current=e;const f=I.useRef(n!==void 0);f.current=n!==void 0;const m=I.useRef(!1),g=I.useRef(!1);if(I.useEffect(()=>{if(!h)return;const v=()=>{const y=r.getVisibleRange(),W=r.getDataRange();return W?s==="left"?y.from-W.from:W.to-y.to:null},S=()=>{if(m.current||!h)return;m.current=!0,l(!0),i==="canvas"&&r.setEdgeState(s,"loading");let y;try{y=u.current()}catch(b){throw m.current=!1,l(!1),i==="canvas"&&r.setEdgeState(s,"idle"),b}const W=b=>{m.current=!1,l(!1),b===!1?(d(!1),i==="canvas"&&r.setEdgeState(s,"no-data")):i==="canvas"&&r.setEdgeState(s,"idle")};y&&typeof y.then=="function"?y.then(W,()=>W(void 0)):W(void 0)},M=()=>{const y=r.getDataInterval(),W=v();if(W!==null){if(!g.current){W>t*y&&(g.current=!0);return}W<=t*y&&S(),f.current&&c(b=>b+1)}};return r.on("viewportChange",M),r.on("overlayChange",M),M(),()=>{r.off("viewportChange",M),r.off("overlayChange",M)}},[r,s,t,i,h]),I.useEffect(()=>()=>{i==="canvas"&&r.setEdgeState(s,"idle")},[r,s,i]),!n)return null;const p=r.getDataRange();if(!p)return null;const w=s==="left"?p.from:p.to,x=r.timeScale.timeToX(w);return T.jsx(T.Fragment,{children:n({x,side:s,isLoading:a,boundaryTime:w,hasMore:h})})}const ko=20;function jn({data:s,options:t,id:e}){var h,d;const i=at(),n=I.useRef(null),r=I.useRef([]),a=I.useRef([]),l=I.useRef([]);return I.useLayoutEffect(()=>{const c=i.addLineSeries({...t,layers:s.length,id:e});return n.current=c,r.current=new Array(s.length).fill(0),a.current=new Array(s.length).fill(null),l.current=new Array(s.length).fill(null),()=>{i.removeSeries(c),n.current=null,r.current=[],a.current=[],l.current=[]}},[i,s.length,e]),I.useLayoutEffect(()=>{const c=n.current;c&&i.batch(()=>{for(let u=0;u<s.length;u++){const f=s[u],m=r.current[u]??0,g=a.current[u]??null;if(f.length===0){i.setSeriesData(c,[],u),r.current[u]=0,a.current[u]=null,l.current[u]=null;continue}const p=ut(f[0].time),w=ut(f[f.length-1].time),x=l.current[u]??null,v=g!==null&&g!==p,S=f.length-m;if(v&&S===0&&(x!==null&&x!==w))i.setSeriesData(c,f.slice(0,-1),u),i.appendData(c,f[f.length-1],u);else if(m===0||f.length<m||S>ko||v)i.setSeriesData(c,f,u);else if(f.length===m)i.updateData(c,f[f.length-1],u);else for(let y=m;y<f.length;y++)i.appendData(c,f[y],u);r.current[u]=f.length,a.current[u]=p,l.current[u]=w}})},[i,s]),I.useEffect(()=>{n.current&&t&&i.updateSeriesOptions(n.current,t)},[i,(h=t==null?void 0:t.colors)==null?void 0:h.join(","),t==null?void 0:t.strokeWidth,(d=t==null?void 0:t.area)==null?void 0:d.visible,t==null?void 0:t.areaFill,t==null?void 0:t.pulse,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.enterAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.enterMs,t==null?void 0:t.smoothMs]),null}function Co({data:s,options:t,id:e}){var r,a,l,h,d,c,u,f,m,g;const i=at(),n=I.useRef(null);return I.useLayoutEffect(()=>{const p=i.addPieSeries({...t,id:e});return n.current=p,()=>{i.removeSeries(p),n.current=null}},[i,e]),I.useEffect(()=>{n.current&&t&&i.updateSeriesOptions(n.current,t)},[i,t==null?void 0:t.innerRadiusRatio,t==null?void 0:t.padAngle,t==null?void 0:t.animate,t==null?void 0:t.shadow,t==null?void 0:t.innerShadow,t==null?void 0:t.colors,(r=t==null?void 0:t.sliceLabels)==null?void 0:r.mode,(a=t==null?void 0:t.sliceLabels)==null?void 0:a.content,(l=t==null?void 0:t.sliceLabels)==null?void 0:l.fontSize,(h=t==null?void 0:t.sliceLabels)==null?void 0:h.minSliceAngle,(d=t==null?void 0:t.sliceLabels)==null?void 0:d.elbowLen,(c=t==null?void 0:t.sliceLabels)==null?void 0:c.legPad,(u=t==null?void 0:t.sliceLabels)==null?void 0:u.labelGap,(f=t==null?void 0:t.sliceLabels)==null?void 0:f.distance,(m=t==null?void 0:t.sliceLabels)==null?void 0:m.railWidth,(g=t==null?void 0:t.sliceLabels)==null?void 0:g.balanceSides]),I.useLayoutEffect(()=>{n.current&&i.setSeriesData(n.current,s)},[i,s]),null}function To(){const s=at(),t=di(s);if(!t)return null;const e=s.getTheme(),i=s.getDataInterval(),n={background:`color-mix(in srgb, ${e.crosshair.labelBackground} 80%, transparent)`,color:e.crosshair.labelTextColor,fontSize:e.axis.fontSize,fontFamily:e.typography.fontFamily,fontVariantNumeric:"tabular-nums",padding:"2px 6px",borderRadius:2,whiteSpace:"nowrap",pointerEvents:"none",zIndex:2};return T.jsxs(T.Fragment,{children:[T.jsx("div",{style:{position:"absolute",right:0,top:t.mediaY,transform:"translateY(-50%)",...n},children:s.yScale.formatY(t.y)}),T.jsx("div",{style:{position:"absolute",bottom:0,left:t.mediaX,transform:"translateX(-50%)",...n},children:hi(t.time,i)})]})}const Ro=["0","1","2","3","4","5","6","7","8","9"];function Lo(s){const t=[];for(const e of s)e>="0"&&e<="9"?t.push({type:"digit",value:e}):t.push({type:"symbol",value:e});return t}function _n({value:s,format:t,locale:e="en-US",spinDuration:i=350,className:n,style:r}){const l=I.useMemo(()=>{if(typeof t=="function")return t;const d=new Intl.NumberFormat(e,typeof t=="object"?t:void 0);return c=>d.format(c)},[t,e])(s),h=Lo(l);return T.jsx("span",{className:n,style:{display:"inline-flex",fontVariantNumeric:"tabular-nums",lineHeight:1.2,...r},children:h.map((d,c)=>d.type==="digit"?T.jsx(Io,{digit:parseInt(d.value,10),duration:i},`d${c}`):T.jsx("span",{style:{display:"inline-block"},children:d.value},`s${c}`))})}function Io({digit:s,duration:t}){const e=I.useRef(!1);return I.useEffect(()=>{e.current=!0},[]),T.jsx("span",{style:{display:"inline-block",height:"1.2em",overflow:"hidden",position:"relative"},children:T.jsx("span",{style:{display:"flex",flexDirection:"column",transform:`translateY(${-s*1.2}em)`,transition:e.current?`transform ${t}ms cubic-bezier(0.16, 1, 0.3, 1)`:"none"},children:Ro.map(i=>T.jsx("span",{style:{display:"flex",alignItems:"center",justifyContent:"center",height:"1.2em"},children:i},i))})})}function Ao(s,t){if(t!==void 0)return t;const e=s.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}const Do=160,Wo=70;function Fo({seriesId:s,format:t=oe,children:e}){const i=at(),n=di(i),[,r]=I.useState(0);I.useLayoutEffect(()=>{const f=()=>r(m=>m+1);return i.on("overlayChange",f),()=>{i.off("overlayChange",f)}},[i]);const a=Ao(i,s),l=a!==null?i.getHoverInfo(a):null;if(!l||!n)return null;const h=i.getTheme(),d=i.getMediaSize();if(e)return T.jsx(Po,{x:n.mediaX,y:n.mediaY,chartWidth:d.width,chartHeight:d.height,children:e({info:l,format:t})});const{left:c,top:u}=ci({x:n.mediaX,y:n.mediaY,chartWidth:d.width,chartHeight:d.height,tooltipWidth:Do,tooltipHeight:Wo,offsetX:16,offsetY:16});return T.jsxs("div",{style:{position:"absolute",left:c,top:u,pointerEvents:"none",zIndex:10,background:h.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${h.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:h.typography.fontSize,fontFamily:h.typography.fontFamily,color:h.tooltip.textColor,display:"flex",flexDirection:"column",gap:6},children:[T.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8},children:[T.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:l.color,flexShrink:0}}),T.jsx("span",{style:{fontWeight:600},children:l.label})]}),T.jsxs("div",{style:{display:"flex",justifyContent:"space-between",gap:16},children:[T.jsx("span",{style:{opacity:.6},children:t(l.value)}),T.jsxs("span",{style:{fontWeight:600},children:[l.percent.toFixed(1),"%"]})]})]})}function Po({x:s,y:t,chartWidth:e,chartHeight:i,children:n}){const r=I.useRef(null),[a,l]=I.useState(null);I.useEffect(()=>{const d=r.current;if(!d||typeof ResizeObserver>"u")return;const c=new ResizeObserver(u=>{var m;const f=(m=u[0])==null?void 0:m.contentRect;f&&l(g=>g&&g.width===f.width&&g.height===f.height?g:{width:f.width,height:f.height})});return c.observe(d),()=>c.disconnect()},[]);const h=a?ci({x:s,y:t,chartWidth:e,chartHeight:i,tooltipWidth:a.width,tooltipHeight:a.height,offsetX:16,offsetY:16}):{left:0,top:0};return T.jsx("div",{ref:r,"data-measured":a?"true":"false",style:{position:"absolute",left:h.left,top:h.top,pointerEvents:"none",zIndex:10,width:"max-content",maxWidth:e,boxSizing:"border-box",visibility:a?"visible":"hidden"},children:n})}function Bo(s,t){if(s.startsWith("rgba")||!s.startsWith("#"))return s;const e=parseInt(s.slice(1,3),16),i=parseInt(s.slice(3,5),16),n=parseInt(s.slice(5,7),16);return`rgba(${e}, ${i}, ${n}, ${t})`}function zo(s){if(s.length<2)return{value:0,pct:0,positive:!0};const t=s[0].value,i=s[s.length-1].value-t,n=t!==0?i/t*100:0;return{value:i,pct:n,positive:i>=0}}function Eo({data:s,theme:t,variant:e="line",valuePosition:i="right",formatValue:n=oe,label:r,sublabel:a,color:l,negativeColor:h,area:d,areaFill:c,width:u=140,height:f=48,strokeWidth:m=1.5,gradient:g=!0,style:p}){const w=(d==null?void 0:d.visible)??c??!0,x=s.length>0?s[s.length-1].value:0,v=I.useMemo(()=>zo(s),[s]),S=l??t.seriesColors[0],M=h??vt(t.candlestick.down.body),y=vt(v.positive?t.candlestick.up.body:t.candlestick.down.body),W=i!=="none"&&T.jsxs("div",{style:{display:"flex",flexDirection:"column",justifyContent:"center",gap:1,minWidth:0,flexShrink:0},children:[r&&T.jsx("div",{style:{fontSize:t.axis.fontSize,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"},children:r}),T.jsx("div",{style:{fontSize:t.typography.fontSize+3,fontWeight:700,color:t.tooltip.textColor,lineHeight:1.1,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:n(x)}),a!==void 0?T.jsx("div",{style:{fontSize:t.axis.fontSize-1,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap"},children:a}):T.jsxs("div",{style:{fontSize:t.axis.fontSize-1,fontWeight:500,color:y,lineHeight:1.2,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:[v.positive?"+":"",v.pct.toFixed(1),"%"]})]}),b=T.jsx("div",{style:{width:u,height:f,flexShrink:0,borderRadius:4,overflow:"hidden"},children:T.jsx(Yn,{theme:t,axis:{y:{visible:!1,width:0},x:{visible:!1,height:0}},padding:{top:5,right:0,bottom:0,left:0},gradient:g,interactive:!1,grid:{visible:!1},children:e==="line"?T.jsx(jn,{data:[s],options:{colors:[S],strokeWidth:m,area:{visible:w},pulse:!1,stacking:"off"}}):T.jsx(Dn,{data:[s],options:{colors:[S,M],barWidthRatio:.7,stacking:"off"}})})});return T.jsxs("div",{style:{display:"inline-flex",alignItems:"center",gap:12,padding:"8px 12px",borderRadius:8,background:Bo(t.tooltip.background,.7),border:`1px solid ${t.tooltip.borderColor}`,fontFamily:t.typography.fontFamily,...p},children:[i==="left"&&W,b,i==="right"&&W]})}const On=250,Hn=`opacity ${On/1e3}s ease`,Nn=On*2;function $n({labelCount:s,minLabelSpacing:t}={}){const e=at();Wn(e),I.useLayoutEffect(()=>(e.setTimeAxisLabelDensity({labelCount:s??null,minLabelSpacing:t??null}),()=>{e.setTimeAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[e,s,t]);const i=e.getTheme(),n=e.getDataInterval(),{ticks:r,tickInterval:a}=e.timeScale.niceTickValues(n),l=new Set(r),d=I.useRef(new Map).current,c=performance.now();for(const f of r)d.has(f)?d.get(f).opacity=1:d.set(f,{opacity:1,addedAt:c});for(const[f,m]of d)l.has(f)||m.opacity!==0&&(m.opacity=0,m.fadedAt=c);for(const[f,m]of d)m.opacity===0&&m.fadedAt!==void 0&&c-m.fadedAt>Nn&&d.delete(f);const u=Array.from(d.entries());return T.jsx("div",{style:{position:"absolute",left:0,bottom:0,right:e.yAxisWidth,height:e.xAxisHeight,pointerEvents:"none",display:"flex",alignItems:"center"},children:u.map(([f,m])=>{const g=e.timeScale.timeToX(f);return T.jsx("span",{style:{position:"absolute",left:g,transform:"translateX(-50%)",color:ns(i,"x"),fontSize:ss(i,"x"),fontFamily:i.typography.fontFamily,userSelect:"none",whiteSpace:"nowrap",opacity:m.opacity,transition:Hn,willChange:"opacity"},children:hi(f,a)},f)})})}const Vo=(s,t)=>t==="volume"?oe(s):is(s);function Yo({sort:s="none",format:t=Vo,children:e}){const i=at(),n=di(i),[,r]=I.useState(0);if(I.useLayoutEffect(()=>{const f=()=>r(m=>m+1);return i.on("overlayChange",f),i.getSeriesIds().length>0&&r(m=>m+1),()=>{i.off("overlayChange",f)}},[i]),!n)return null;const a=cs(i,{time:n.time,sort:s,cacheKey:"tooltip"});if(a.length===0)return null;const l=i.getTheme(),h=i.getDataInterval(),d=i.getMediaSize(),c=d.width-i.yAxisWidth,u=d.height-i.xAxisHeight;return e?T.jsx(jo,{x:n.mediaX,y:n.mediaY,chartWidth:c,chartHeight:u,theme:l,children:e({snapshots:a,time:n.time})}):T.jsx(_o,{snapshots:a,displayTime:n.time,x:n.mediaX,y:n.mediaY,chartWidth:c,chartHeight:u,theme:l,dataInterval:h,format:t})}function jo({x:s,y:t,chartWidth:e,chartHeight:i,theme:n,children:r}){const a=I.useRef(null),[l,h]=I.useState(null);I.useEffect(()=>{const c=a.current;if(!c||typeof ResizeObserver>"u")return;const u=new ResizeObserver(f=>{var g;const m=(g=f[0])==null?void 0:g.contentRect;m&&h(p=>p&&p.width===m.width&&p.height===m.height?p:{width:m.width,height:m.height})});return u.observe(c),()=>u.disconnect()},[]);const d=l?ci({x:s,y:t,chartWidth:e,chartHeight:i,tooltipWidth:l.width,tooltipHeight:l.height}):{left:0,top:0};return T.jsx("div",{ref:a,"data-measured":l?"true":"false",style:{position:"absolute",left:d.left,top:d.top,pointerEvents:"none",background:n.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${n.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontFamily:n.typography.fontFamily,fontSize:n.tooltip.fontSize,fontVariantNumeric:"tabular-nums",color:n.tooltip.textColor,width:"max-content",maxWidth:e,boxSizing:"border-box",zIndex:10,visibility:l?"visible":"hidden"},children:r})}function _o({snapshots:s,displayTime:t,x:e,y:i,chartWidth:n,chartHeight:r,theme:a,dataInterval:l,format:h}){const d=s.some(v=>"open"in v.data),c=s.filter(v=>!("open"in v.data)).length,u=160,f=d?140:40+c*22,{left:m,top:g}=ci({x:e,y:i,chartWidth:n,chartHeight:r,tooltipWidth:u,tooltipHeight:f}),p=a.tooltip.background,w=a.tooltip.borderColor;return T.jsxs("div",{style:{position:"absolute",left:m,top:g,pointerEvents:"none",background:p,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${w}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:a.tooltip.fontSize,fontFamily:a.typography.fontFamily,fontVariantNumeric:"tabular-nums",color:a.tooltip.textColor,width:u,boxSizing:"border-box",zIndex:10,transition:"opacity 0.15s ease"},children:[T.jsxs("div",{style:{fontSize:a.axis.fontSize,color:a.axis.textColor,marginBottom:8,paddingBottom:6,borderBottom:`1px solid ${w}`,letterSpacing:"0.02em"},children:[Zs(t)," ",hi(t,l)]}),s.map(v=>{if("open"in v.data){const y=v.data,W=y.close>=y.open,b=vt(W?a.candlestick.up.body:a.candlestick.down.body);return T.jsxs("div",{style:{display:"grid",gridTemplateColumns:"auto 1fr",gap:"4px 12px"},children:[T.jsx(_e,{label:"Open",color:b,display:h(y.open,"open")}),T.jsx(_e,{label:"High",color:b,display:h(y.high,"high")}),T.jsx(_e,{label:"Low",color:b,display:h(y.low,"low")}),T.jsx(_e,{label:"Close",color:b,display:h(y.close,"close")}),y.volume!=null&&T.jsx(_e,{label:"Volume",color:a.tooltip.textColor,display:h(y.volume,"volume")})]},v.id)}const M=v.data;return T.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8,padding:"2px 0"},children:[T.jsx("span",{style:{width:8,height:8,borderRadius:"50%",background:v.color,flexShrink:0}}),T.jsx("span",{style:{opacity:.6,flex:1},children:v.label??"Value"}),T.jsx("span",{style:{fontWeight:600,color:v.color},children:h(M.value,"value")})]},v.id)})]})}function _e({label:s,color:t,display:e}){return T.jsxs(T.Fragment,{children:[T.jsx("span",{style:{opacity:.5},children:s}),T.jsx("span",{style:{fontWeight:600,color:t,textAlign:"right"},children:e})]})}function Oo({format:s,labelCount:t,minLabelSpacing:e}={}){const i=at();Fn(i),I.useLayoutEffect(()=>(i.yScale.setFormat(s??null),()=>i.yScale.setFormat(null)),[i,s]),I.useLayoutEffect(()=>(i.setYAxisLabelDensity({labelCount:t??null,minLabelSpacing:e??null}),()=>{i.setYAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[i,t,e]);const n=i.getTheme(),r=i.yScale.niceTickValues(),a=new Set(r),h=I.useRef(new Map).current,d=performance.now();for(const u of r)h.has(u)?h.get(u).opacity=1:h.set(u,{opacity:1,addedAt:d});for(const[u,f]of h)a.has(u)||f.opacity!==0&&(f.opacity=0,f.fadedAt=d);for(const[u,f]of h)f.opacity===0&&f.fadedAt!==void 0&&d-f.fadedAt>Nn&&h.delete(u);const c=Array.from(h.entries());return T.jsx("div",{style:{position:"absolute",right:0,top:0,bottom:i.xAxisHeight,width:i.yAxisWidth,pointerEvents:"none"},children:c.map(([u,f])=>{const m=i.yScale.valueToY(u);return T.jsx("span",{style:{position:"absolute",right:8,top:m,transform:"translateY(-50%)",color:ns(n,"y"),fontSize:ss(n,"y"),fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",userSelect:"none",opacity:f.opacity,transition:Hn,willChange:"opacity"},children:i.yScale.formatY(u)},u)})})}function Ho(s,t){if(t!==void 0)return t;const e=s.getSeriesIdsByType("time",{visibleOnly:!0,singleLayerOnly:!0});if(e.length>0)return e[0];const i=s.getSeriesIdsByType("time",{visibleOnly:!0});return i.length>0?i[0]:null}function No({seriesId:s,color:t,format:e,children:i}){const n=at();I.useEffect(()=>(n.setYLabel(!0),()=>n.setYLabel(!1)),[n]);const[,r]=I.useState(0);I.useLayoutEffect(()=>{const S=()=>r(M=>M+1);return n.on("overlayChange",S),n.on("viewportChange",S),n.getSeriesIds().length>0&&r(M=>M+1),()=>{n.off("overlayChange",S),n.off("viewportChange",S)}},[n]);const a=Ho(n,s),l=a!==null?n.getStackedLastValue(a):null,h=a!==null?n.getPreviousClose(a):null,d=n.yScale.getRange(),c=d.max-d.min,u=c<.1?6:c<10?4:c<1e3?2:0,f=I.useMemo(()=>{if(e)return e;const S=new Intl.NumberFormat("en-US",{minimumFractionDigits:u,maximumFractionDigits:u,useGrouping:!1});return M=>S.format(M)},[e,u]);if(!l||a===null)return null;const{value:m,isLive:g}=l,p=n.getTheme(),w=n.yScale.valueToY(m),x=h===null?"neutral":m>h?"up":m<h?"down":"neutral";let v;return g?t?v=t:v=x==="up"?p.yLabel.upBackground:x==="down"?p.yLabel.downBackground:p.yLabel.neutralBackground:v=p.axis.textColor,i?T.jsx(T.Fragment,{children:i({value:m,y:w,bgColor:v,isLive:g,direction:x,format:f})}):T.jsxs(T.Fragment,{children:[T.jsx("div",{style:{position:"absolute",left:0,right:n.yAxisWidth,top:w,height:0,borderTop:`1px dashed ${v}`,opacity:.5,pointerEvents:"none",zIndex:2}}),T.jsx("div",{style:{position:"absolute",right:4,top:w,transform:"translateY(-50%)",pointerEvents:"auto",zIndex:3,background:v,color:p.yLabel.textColor,fontSize:p.yLabel.fontSize,fontFamily:p.typography.fontFamily,padding:"3px 8px",borderRadius:3,whiteSpace:"nowrap",transition:"background-color 0.3s ease"},children:T.jsx(_n,{value:m,format:f,spinDuration:350})})]})}exports.BarSeries=Dn;exports.CandlestickSeries=mo;exports.ChartContainer=Yn;exports.ChartInstance=yn;exports.Crosshair=To;exports.EdgeLoader=Mo;exports.InfoBar=Pn;exports.Legend=Bn;exports.LineSeries=jn;exports.Navigator=zn;exports.NavigatorController=Cn;exports.NumberFlow=_n;exports.PieLegend=En;exports.PieSeries=Co;exports.PieTooltip=Fo;exports.Sparkline=Eo;exports.ThemeProvider=Ae;exports.TimeAxis=$n;exports.Title=Vn;exports.Tooltip=Yo;exports.XAxis=$n;exports.YAxis=Oo;exports.YLabel=No;exports.andromeda=_a;exports.autoGradient=V;exports.ayuMirage=Oa;exports.buildHoverSnapshots=cs;exports.buildLastSnapshots=An;exports.catppuccin=pn;exports.computeTooltipPosition=ci;exports.createTheme=J;exports.darkTheme=Ya;exports.detectInterval=Qs;exports.dracula=Ha;exports.formatCompact=oe;exports.formatDate=Zs;exports.formatPriceAdaptive=is;exports.formatTime=hi;exports.githubLight=Na;exports.gruvbox=$a;exports.handwritten=Xa;exports.highContrast=Ka;exports.isDarkBg=un;exports.lavenderMist=qa;exports.lightPink=Ja;exports.lightTheme=ja;exports.materialPalenight=Qa;exports.minimalLight=eo;exports.mintBreeze=io;exports.monokaiPro=so;exports.nightOwl=no;exports.normalizeTime=ut;exports.oneDarkPro=ro;exports.panda=ao;exports.peachCream=oo;exports.quietLight=lo;exports.resolveAxisFontSize=ss;exports.resolveAxisTextColor=ns;exports.resolveCandlestickBodyColor=vt;exports.rosePineDawn=ho;exports.sandDune=co;exports.solarizedLight=uo;exports.useChartInstance=at;exports.useCrosshairPosition=di;exports.useLastYValue=bo;exports.usePreviousClose=vo;exports.useTheme=ui;exports.useVisibleRange=Wn;exports.useYRange=Fn;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const R=require("react"),I=require("react/jsx-runtime");var fo=Object.defineProperty,Zr=i=>{throw TypeError(i)},mo=(i,t,e)=>t in i?fo(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e,F=(i,t,e)=>mo(i,typeof t!="symbol"?t+"":t,e),_n=(i,t,e)=>t.has(i)||Zr("Cannot "+e),r=(i,t,e)=>(_n(i,t,"read from private field"),e?e.call(i):t.get(i)),v=(i,t,e)=>t.has(i)?Zr("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(i):t.set(i,e),c=(i,t,e,s)=>(_n(i,t,"write to private field"),t.set(i,e),e),S=(i,t,e)=>(_n(i,t,"access private method"),e),Rn=(i,t,e,s)=>({set _(n){c(i,t,n)},get _(){return r(i,t,s)}});const go=22.999999999999996;var He,si,ni,lt,At,Jt,Nt,vi,An,Pn;class po{constructor(t){v(this,vi),v(this,He),v(this,si,0),v(this,ni,0),v(this,lt),v(this,At,go),v(this,Jt,-1),v(this,Nt),c(this,He,{from:t.initial.from,to:t.initial.to}),c(this,lt,{from:t.initial.from,to:t.initial.to}),c(this,Nt,{from:t.initial.from,to:t.initial.to})}get current(){return r(this,Nt)}get target(){return r(this,lt)}get animating(){const t=S(this,vi,Pn).call(this);return Math.abs(r(this,Nt).from-r(this,lt).from)>t||Math.abs(r(this,Nt).to-r(this,lt).to)>t||Math.abs(r(this,si))>t*r(this,At)||Math.abs(r(this,ni))>t*r(this,At)}retarget(t,e={}){const s=e.expandMs??200;if(s<=0){this.snap(t,e);return}const n=e.now??performance.now(),a=4.6/(s/1e3);if(r(this,Jt)<0){c(this,lt,{from:t.from,to:t.to}),c(this,At,a),c(this,Jt,n);return}const{x:o,vFrom:l,vTo:h}=S(this,vi,An).call(this,n);c(this,He,o),c(this,si,l),c(this,ni,h),c(this,At,a),c(this,lt,{from:t.from,to:t.to}),c(this,Jt,n),c(this,Nt,o)}snap(t,e={}){const s=e.now??performance.now();c(this,He,{from:t.from,to:t.to}),c(this,lt,{from:t.from,to:t.to}),c(this,si,0),c(this,ni,0),c(this,Jt,s),c(this,Nt,{from:t.from,to:t.to})}tick(t){if(r(this,Jt)<0)return c(this,Jt,t),!1;const{x:e,vFrom:s,vTo:n}=S(this,vi,An).call(this,t);c(this,Nt,e);const a=S(this,vi,Pn).call(this);return Math.abs(e.from-r(this,lt).from)<a&&Math.abs(e.to-r(this,lt).to)<a&&Math.abs(s)<a*r(this,At)&&Math.abs(n)<a*r(this,At)?(c(this,Nt,{from:r(this,lt).from,to:r(this,lt).to}),c(this,He,{from:r(this,lt).from,to:r(this,lt).to}),c(this,si,0),c(this,ni,0),c(this,Jt,t),!1):!0}}He=new WeakMap,si=new WeakMap,ni=new WeakMap,lt=new WeakMap,At=new WeakMap,Jt=new WeakMap,Nt=new WeakMap,vi=new WeakSet,An=function(i){const t=Math.max(0,(i-r(this,Jt))/1e3),e=Math.exp(-r(this,At)*t),s=r(this,He).from-r(this,lt).from,n=r(this,si)+r(this,At)*s,a=r(this,lt).from+(s+n*t)*e,o=(n-r(this,At)*(s+n*t))*e,l=r(this,He).to-r(this,lt).to,h=r(this,ni)+r(this,At)*l,u=r(this,lt).to+(l+h*t)*e,d=(h-r(this,At)*(l+h*t))*e;return{x:{from:a,to:u},vFrom:o,vTo:d}},Pn=function(){return Math.max(r(this,lt).to-r(this,lt).from,1)*1e-4};const Fn=250,gr=4.6/(Fn/1e3);var $e,ri,ai,ht,we,Me,Qt,Ut,yi,Bn,Dn;class bo{constructor(t){v(this,yi),v(this,$e),v(this,ri,0),v(this,ai,0),v(this,ht),v(this,we,gr),v(this,Me,gr),v(this,Qt,-1),v(this,Ut),c(this,$e,{min:t.initial.min,max:t.initial.max}),c(this,ht,{min:t.initial.min,max:t.initial.max}),c(this,Ut,{min:t.initial.min,max:t.initial.max})}get current(){return r(this,Ut)}get target(){return r(this,ht)}get animating(){const t=S(this,yi,Dn).call(this),e=Math.min(r(this,we),r(this,Me));return Math.abs(r(this,Ut).min-r(this,ht).min)>t||Math.abs(r(this,Ut).max-r(this,ht).max)>t||Math.abs(r(this,ri))>t*e||Math.abs(r(this,ai))>t*e}retarget(t,e={}){const s=e.now??performance.now(),n=e.expandMs??Fn,a=e.contractMs??Fn,o=4.6/(n/1e3),l=4.6/(a/1e3);if(r(this,Qt)<0){c(this,ht,{min:t.min,max:t.max}),c(this,we,o),c(this,Me,o),c(this,Qt,s);return}const{x:h,vMin:u,vMax:d}=S(this,yi,Bn).call(this,s);c(this,$e,h),c(this,ri,u),c(this,ai,d),c(this,we,t.min<h.min?o:l),c(this,Me,t.max>h.max?o:l),c(this,ht,{min:t.min,max:t.max}),c(this,Qt,s),c(this,Ut,h)}snap(t,e={}){const s=e.now??performance.now();c(this,$e,{min:t.min,max:t.max}),c(this,ht,{min:t.min,max:t.max}),c(this,ri,0),c(this,ai,0),c(this,Qt,s),c(this,Ut,{min:t.min,max:t.max})}tick(t){if(r(this,Qt)<0)return c(this,Qt,t),!1;const{x:e,vMin:s,vMax:n}=S(this,yi,Bn).call(this,t);c(this,Ut,e);const a=S(this,yi,Dn).call(this),o=Math.min(r(this,we),r(this,Me));return Math.abs(e.min-r(this,ht).min)<a&&Math.abs(e.max-r(this,ht).max)<a&&Math.abs(s)<a*o&&Math.abs(n)<a*o?(c(this,Ut,{min:r(this,ht).min,max:r(this,ht).max}),c(this,$e,{min:r(this,ht).min,max:r(this,ht).max}),c(this,ri,0),c(this,ai,0),c(this,Qt,t),!1):!0}}$e=new WeakMap,ri=new WeakMap,ai=new WeakMap,ht=new WeakMap,we=new WeakMap,Me=new WeakMap,Qt=new WeakMap,Ut=new WeakMap,yi=new WeakSet,Bn=function(i){const t=Math.max(0,(i-r(this,Qt))/1e3),e=Math.exp(-r(this,we)*t),s=Math.exp(-r(this,Me)*t),n=r(this,$e).min-r(this,ht).min,a=r(this,ri)+r(this,we)*n,o=r(this,ht).min+(n+a*t)*e,l=(a-r(this,we)*(n+a*t))*e,h=r(this,$e).max-r(this,ht).max,u=r(this,ai)+r(this,Me)*h,d=r(this,ht).max+(h+u*t)*s,f=(u-r(this,Me)*(h+u*t))*s;return{x:{min:o,max:d},vMin:l,vMax:f}},Dn=function(){return Math.max(r(this,ht).max-r(this,ht).min,1)*1e-4};function Jr(){return({initial:i})=>vo(i)?new bo({initial:i}):new po({initial:i})}function vo(i){return"min"in i&&"max"in i}const yo=/^(\d+(?:\.\d+)?)(ms|s)$/;function Qr(i){if(i===!1)return 0;if(typeof i=="number")return i;if(typeof i=="string"){const t=yo.exec(i);if(!t)throw new Error(`Invalid AnimationTime: ${JSON.stringify(i)}`);const e=Number.parseFloat(t[1]);return t[2]==="s"?e*1e3:e}throw new Error(`Invalid AnimationTime: ${String(i)}`)}function vt(i,t){return i===void 0?t:Qr(i)}const xo=100;var N,J,qi,le,sn,_t,pt,Xs,Ns,he,Us;class wo{constructor(t){v(this,pt),v(this,N),v(this,J),v(this,qi),v(this,le),v(this,sn),v(this,_t,!1),c(this,N,{transition:t.y.curve({initial:t.initial.yRange}),settleMs:t.y.settleMs,stickyMs:t.y.stickyMs,stickyFloorMs:t.y.stickyFloorMs,gestureMs:t.y.gestureMs,toggleMs:t.y.toggleMs,toggleUntil:0}),c(this,J,{transition:t.x.curve({initial:t.initial.xRange}),settleMs:t.x.settleMs,gestureMs:t.x.gestureMs,lastTarget:null,gestureUntil:0}),c(this,qi,t.computeXTarget),c(this,le,t.computeYTarget),c(this,sn,t.onWake)}onPointAppended(t){const e=t??performance.now();if(e<r(this,J).gestureUntil)return;const s=r(this,qi).call(this),n=s??r(this,J).transition.target,a=r(this,le).call(this,{xTarget:n});if(s===null&&a===null)return;const o=!r(this,_t),l=e<r(this,N).toggleUntil;s!==null&&S(this,pt,Xs).call(this,s,e,r(this,J).settleMs),a!==null&&!l&&r(this,N).transition.retarget(a,{now:e,expandMs:r(this,N).settleMs,contractMs:S(this,pt,Us).call(this,r(this,N).transition.current,a)}),S(this,pt,he).call(this,o)}onSeriesVisibilityChanged(t){const e=r(this,le).call(this,{xTarget:r(this,J).transition.target});if(e===null)return;const s=t??performance.now(),n=!r(this,_t);r(this,N).toggleMs>0?(r(this,N).transition.snap(r(this,N).transition.current,{now:s}),r(this,N).transition.retarget(e,{now:s,expandMs:r(this,N).toggleMs,contractMs:r(this,N).toggleMs}),r(this,N).toggleUntil=s+r(this,N).toggleMs):(r(this,N).transition.snap(e,{now:s}),r(this,N).toggleUntil=0),S(this,pt,he).call(this,n)}onPanZoom(t,e){const s=e??performance.now(),n=!r(this,_t);if(S(this,pt,Xs).call(this,t.xTarget,s,r(this,J).gestureMs),r(this,J).gestureUntil=s+xo,t.yAuto){const a=r(this,le).call(this,{xTarget:t.xTarget});a!==null&&r(this,N).transition.retarget(a,{now:s,expandMs:r(this,N).gestureMs,contractMs:r(this,N).gestureMs})}S(this,pt,he).call(this,n)}onAxisReconfig(t){const e=r(this,le).call(this,{xTarget:r(this,J).transition.target});if(e===null)return;const s=t??performance.now(),n=!r(this,_t);r(this,N).transition.snap(e,{now:s}),S(this,pt,he).call(this,n)}onProgrammaticZoom(t,e){r(this,J).gestureUntil=0;const s=r(this,le).call(this,{xTarget:t.xTarget}),n=e??performance.now(),a=!r(this,_t);if(t.xEase===!0){S(this,pt,Xs).call(this,t.xTarget,n,r(this,J).gestureMs),s!==null&&r(this,N).transition.retarget(s,{now:n,expandMs:r(this,N).settleMs,contractMs:S(this,pt,Us).call(this,r(this,N).transition.current,s)}),S(this,pt,he).call(this,a);return}S(this,pt,Ns).call(this,t.xTarget,n),s!==null&&r(this,N).transition.retarget(s,{now:n,expandMs:r(this,N).settleMs,contractMs:S(this,pt,Us).call(this,r(this,N).transition.current,s)}),S(this,pt,he).call(this,a)}onDataReplaced(t){const e=r(this,qi).call(this),s=r(this,le).call(this,{xTarget:e??r(this,J).transition.target});if(e===null&&s===null)return;const n=t??performance.now(),a=!r(this,_t);e!==null&&S(this,pt,Ns).call(this,e,n),s!==null&&r(this,N).transition.snap(s,{now:n}),S(this,pt,he).call(this,a)}snap(t,e){r(this,J).gestureUntil=0;const s=e??performance.now(),n=!r(this,_t);t.x!==void 0&&S(this,pt,Ns).call(this,t.x,s),t.y!==void 0&&r(this,N).transition.snap(t.y,{now:s}),S(this,pt,he).call(this,n)}tick(t){r(this,J).transition.tick(t),r(this,N).transition.tick(t);const e=r(this,J).transition.animating||r(this,N).transition.animating;return c(this,_t,e),{xRange:r(this,J).transition.current,yRange:r(this,N).transition.current,animating:e}}getAnimationState(){return{xRange:r(this,J).transition.current,yRange:r(this,N).transition.current,animating:r(this,J).transition.animating||r(this,N).transition.animating}}getTarget(){return{x:r(this,J).transition.target,y:r(this,N).transition.target}}get animating(){return r(this,J).transition.animating||r(this,N).transition.animating}get lastXTarget(){return r(this,J).lastTarget}setXSettleMs(t){r(this,J).settleMs=t}}N=new WeakMap,J=new WeakMap,qi=new WeakMap,le=new WeakMap,sn=new WeakMap,_t=new WeakMap,pt=new WeakSet,Xs=function(i,t,e){r(this,J).transition.retarget(i,{now:t,expandMs:e}),r(this,J).lastTarget={from:i.from,to:i.to}},Ns=function(i,t){r(this,J).transition.snap({from:i.from,to:i.to},{now:t}),r(this,J).lastTarget={from:i.from,to:i.to}},he=function(i){var t;i&&((t=r(this,sn))==null||t.call(this))},Us=function(i,t){const e=r(this,N).stickyMs;if(e<=0)return e;const s=Math.max(i.max-i.min,Number.EPSILON),n=Math.max(0,t.min-i.min),a=Math.max(0,i.max-t.max),o=Math.min(1,Math.max(n,a)/s),l=Math.min(r(this,N).stickyFloorMs,e);return Math.max(l,e*o)};function Mo(i){return new wo(i)}const Ys=250;var Dt,Oe,Xe,ct,$t,ke,Se,Ft,Ce,zn,bn,vn,ta;class ko{constructor(t){v(this,Ce),v(this,Dt),v(this,Oe,0),v(this,Xe,0),v(this,ct),v(this,$t,-1),v(this,ke,Ys/1e3),v(this,Se,Ys/1e3),v(this,Ft),c(this,Dt,{min:t.initial.min,max:t.initial.max}),c(this,ct,{min:t.initial.min,max:t.initial.max}),c(this,Ft,{min:t.initial.min,max:t.initial.max})}get current(){return r(this,Ft)}get target(){return r(this,ct)}get animating(){if(r(this,$t)<0)return!1;const t=S(this,Ce,ta).call(this);return Math.abs(r(this,Ft).min-r(this,ct).min)>t||Math.abs(r(this,Ft).max-r(this,ct).max)>t}retarget(t,e={}){const s=e.now??performance.now(),n=e.expandMs??Ys,a=e.contractMs??Ys;if(r(this,$t)<0){c(this,ct,{min:t.min,max:t.max}),c(this,ke,(t.min<r(this,Ft).min?n:a)/1e3),c(this,Se,(t.max>r(this,Ft).max?n:a)/1e3),c(this,$t,s);return}const{x:o,vMin:l,vMax:h}=S(this,Ce,zn).call(this,s);c(this,Dt,o),c(this,Oe,Math.sign(l)===Math.sign(t.min-o.min)?l:0),c(this,Xe,Math.sign(h)===Math.sign(t.max-o.max)?h:0),c(this,ke,(t.min<o.min?n:a)/1e3),c(this,Se,(t.max>o.max?n:a)/1e3),c(this,ct,{min:t.min,max:t.max}),c(this,$t,s),c(this,Ft,o)}snap(t,e={}){const s=e.now??performance.now();c(this,Dt,{min:t.min,max:t.max}),c(this,ct,{min:t.min,max:t.max}),c(this,Oe,0),c(this,Xe,0),c(this,$t,s),c(this,Ft,{min:t.min,max:t.max})}tick(t){if(r(this,$t)<0)return c(this,$t,t),!1;if(r(this,Dt).min===r(this,ct).min&&r(this,Dt).max===r(this,ct).max&&r(this,Oe)===0&&r(this,Xe)===0)return!1;const{x:e}=S(this,Ce,zn).call(this,t);c(this,Ft,e);const s=(t-r(this,$t))/1e3;return s>=r(this,ke)&&s>=r(this,Se)?(c(this,Ft,{min:r(this,ct).min,max:r(this,ct).max}),c(this,Dt,{min:r(this,ct).min,max:r(this,ct).max}),c(this,Oe,0),c(this,Xe,0),!1):!0}}Dt=new WeakMap,Oe=new WeakMap,Xe=new WeakMap,ct=new WeakMap,$t=new WeakMap,ke=new WeakMap,Se=new WeakMap,Ft=new WeakMap,Ce=new WeakSet,zn=function(i){const t=Math.max(0,(i-r(this,$t))/1e3),e=r(this,ke)>0?Math.min(1,t/r(this,ke)):1,s=r(this,Se)>0?Math.min(1,t/r(this,Se)):1,n=S(this,Ce,bn).call(this,r(this,Dt).min,r(this,Oe),r(this,ct).min,e,r(this,ke)),a=e>=1?0:S(this,Ce,vn).call(this,r(this,Dt).min,r(this,Oe),r(this,ct).min,e,r(this,ke)),o=S(this,Ce,bn).call(this,r(this,Dt).max,r(this,Xe),r(this,ct).max,s,r(this,Se)),l=s>=1?0:S(this,Ce,vn).call(this,r(this,Dt).max,r(this,Xe),r(this,ct).max,s,r(this,Se));return{x:{min:n,max:o},vMin:a,vMax:l}},bn=function(i,t,e,s,n){if(s>=1)return e;const a=s*s,o=a*s,l=2*o-3*a+1,h=o-2*a+s,u=-2*o+3*a;return l*i+h*n*t+u*e},vn=function(i,t,e,s,n){if(n<=0)return 0;const a=s*s,o=6*a-6*s,l=3*a-4*s+1,h=-6*a+6*s;return(o*i+l*n*t+h*e)/n},ta=function(){return Math.max(r(this,ct).max-r(this,ct).min,1)*1e-4};function ea(){return({initial:i})=>new ko({initial:i})}var Ze;class So{constructor(t){v(this,Ze),c(this,Ze,{...t.initial})}get current(){return r(this,Ze)}get target(){return r(this,Ze)}get animating(){return!1}retarget(t){c(this,Ze,{...t})}snap(t){c(this,Ze,{...t})}tick(){return!1}}Ze=new WeakMap;function Zi(){return({initial:i})=>new So({initial:i})}function ia(i,t){var e,s;return t==="x"&&((e=i.axis.x)==null?void 0:e.fontSize)!==void 0?i.axis.x.fontSize:t==="y"&&((s=i.axis.y)==null?void 0:s.fontSize)!==void 0?i.axis.y.fontSize:i.axis.fontSize}function sa(i,t){var e,s;return t==="x"&&((e=i.axis.x)==null?void 0:e.textColor)!==void 0?i.axis.x.textColor:t==="y"&&((s=i.axis.y)==null?void 0:s.textColor)!==void 0?i.axis.y.textColor:i.axis.textColor}function zt(i){return Array.isArray(i)?i.source??i[0]:i}const pi=6e4,Je=36e5,Ne=864e5,ce=365*Ne;function Et(i){return i instanceof Date?i.getTime():i}function Co(i){return i.length===0||!i.some(t=>t.time instanceof Date)?i:i.map(t=>({...t,time:Et(t.time)}))}function To(i){return i.length===0||!i.some(t=>t.time instanceof Date)?i:i.map(t=>({...t,time:Et(t.time)}))}function na(i){if(i.length<2)return Ne;const t=[];for(let e=1;e<Math.min(i.length,20);e++)t.push(i[e]-i[e-1]);return t.sort((e,s)=>e-s),t[Math.floor(t.length/2)]}function Rs(i,t){const e=new Date(i);return t>=ce?e.toLocaleDateString("en-US",{year:"numeric"}):t>=Ne?e.toLocaleDateString("en-US",{month:"short",day:"numeric"}):t>=Je?e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",hour12:!1}):e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}function ra(i){return new Date(i).toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"})}function Lo(i){const t=[1e3,5e3,1e4,15e3,3e4],e=[pi,5*pi,10*pi,15*pi,30*pi],s=[Je,2*Je,4*Je,6*Je,12*Je],n=[Ne,7*Ne,30*Ne,90*Ne],a=[ce,2*ce,5*ce,10*ce,25*ce,50*ce,100*ce];return i<pi?[...t,...e,...s,...n,...a]:i<Je?[...e,...s,...n,...a]:i<Ne?[...s,...n,...a]:i<ce?[...n,...a]:a}const Io=.01;function aa(i){const{chart:t,container:e,axis:s}=i,n=new Map;let a=null;const o=s==="x"?t.timeScale.tickTracker:t.yScale.tickTracker;function l(){return s==="x"?t.timeScale.niceTickValues(t.getDataInterval()):{ticks:t.yScale.niceTickValues(),tickInterval:0}}function h(g,b){return s==="x"?Rs(g,b):t.yScale.formatY(g)}function u(g,b){if(s==="x"){g.style.left=`${t.timeScale.timeToX(b)}px`;return}g.style.top=`${t.yScale.valueToY(b)}px`}function d(g,b){g.style.color=sa(b,s),g.style.fontSize=`${ia(b,s)}px`,g.style.fontFamily=b.typography.fontFamily}function f(g,b,y){const M=document.createElement("span");return M.textContent=h(g,b),M.style.position="absolute",M.style.userSelect="none",d(M,y),M.style.willChange="opacity",s==="x"?(M.style.transform="translateX(-50%)",M.style.whiteSpace="nowrap"):(M.style.right="8px",M.style.transform="translateY(-50%)",M.style.fontVariantNumeric="tabular-nums"),e.appendChild(M),M}function m(){const g=t.getTheme(),b=g!==a;a=g;const{ticks:y,tickInterval:M}=l();o.setCurrentTicks(y);const{entries:L}=o.snapshot(),x=new Set;for(const{value:k,opacity:C}of L){if(C<=Io)continue;x.add(k);let A=n.get(k);if(A===void 0)A=f(k,M,g),n.set(k,A);else{const T=h(k,M);A.textContent!==T&&(A.textContent=T),b&&d(A,g)}u(A,k),A.style.opacity=String(C)}for(const[k,C]of n)x.has(k)||(C.remove(),n.delete(k))}function p(){t.getAnimationState().animating||m()}return m(),t.on("tickFrame",m),t.on("viewportChange",p),t.on("overlayChange",m),()=>{t.off("tickFrame",m),t.off("viewportChange",p),t.off("overlayChange",m);for(const g of n.values())g.remove();n.clear()}}const Gn=250,Kn=250,cn=Gn,qn=Kn,Zn=600,Jn=Gn,Qn=Kn,tr=Gn,er=Kn,Wo=250,Ro=250,Ao=200,Po=150,Fo=250,yn=2500,pr=500,Bo=100,Do=250,oa=250,la={line:{entryMs:0,smoothMs:0,pulseMs:0},candlestick:{entryMs:0,smoothMs:0},bar:{entryMs:0,smoothMs:0},pie:{entryMs:0,updateMs:0}};function zo(i){if(i!==null&&typeof i=="object")return{stickyMs:vt(i.max,yn),stickyFloorMs:vt(i.min,pr)};if(i===void 0)return{stickyMs:yn,stickyFloorMs:pr};const t=vt(i,yn);return{stickyMs:t,stickyFloorMs:t}}class nn{constructor(t,e,s){F(this,"axis"),F(this,"toggleMs"),F(this,"series"),this.axis=t,this.toggleMs=e,this.series=s}static resolve(t){if(t===!1)return new nn({y:{curve:Zi(),settleMs:0,stickyMs:0,stickyFloorMs:0,gestureMs:0},x:{curve:Zi(),settleMs:0,gestureMs:0},ticksMs:0},0,la);const e=t===!0||t===void 0?void 0:t,s=e==null?void 0:e.axis,n=s===!1?!1:s==null?void 0:s.y,a=s===!1?!1:s==null?void 0:s.x,o=s===!1?!1:s==null?void 0:s.ticks,l=e==null?void 0:e.toggle,h=e==null?void 0:e.series,u=n===!1?{curve:Zi(),settleMs:0,stickyMs:0,stickyFloorMs:0,gestureMs:0}:{curve:(n==null?void 0:n.curve)??ea(),settleMs:vt(n==null?void 0:n.settle,Fo),...zo(n==null?void 0:n.sticky),gestureMs:vt(n==null?void 0:n.gesture,Bo)},d=a===!1?{curve:Zi(),settleMs:0,gestureMs:0}:{curve:(a==null?void 0:a.curve)??Jr(),settleMs:vt(a==null?void 0:a.settle,Ao),gestureMs:vt(a==null?void 0:a.gesture,Po)},f=o===!1?0:vt(o,oa),m=vt(l,Do),p=Eo(h);return new nn({y:u,x:d,ticksMs:f},m,p)}defaults(t){if(t==="line"){const{entryMs:n,smoothMs:a,pulseMs:o}=this.series.line;return{entryMs:n,smoothMs:a,pulseMs:o}}if(t==="candlestick"){const{entryMs:n,smoothMs:a}=this.series.candlestick;return{entryMs:n,smoothMs:a}}if(t==="pie"){const{entryMs:n,updateMs:a}=this.series.pie;return{entryMs:n,updateMs:a}}const{entryMs:e,smoothMs:s}=this.series.bar;return{entryMs:e,smoothMs:s}}overrides(t){const e={};if(t==="line"){const{entryMs:a,smoothMs:o,pulseMs:l}=this.series.line;return a===0&&(e.entryMs=0),o===0&&(e.smoothMs=0),l===0&&(e.pulseMs=0),e}if(t==="pie")return e;const{entryMs:s,smoothMs:n}=t==="candlestick"?this.series.candlestick:this.series.bar;return s===0&&(e.entryMs=0),n===0&&(e.smoothMs=0),e}}function Eo(i){if(i===!1)return la;const t=i==null?void 0:i.line,e=i==null?void 0:i.candlestick,s=i==null?void 0:i.bar,n=i==null?void 0:i.pie,a=t===!1?{entryMs:0,smoothMs:0,pulseMs:0}:{entryMs:vt(t==null?void 0:t.entry,cn),smoothMs:vt(t==null?void 0:t.smooth,qn),pulseMs:vt(t==null?void 0:t.pulse,Zn)},o=e===!1?{entryMs:0,smoothMs:0}:{entryMs:vt(e==null?void 0:e.entry,Jn),smoothMs:vt(e==null?void 0:e.smooth,Qn)},l=s===!1?{entryMs:0,smoothMs:0}:{entryMs:vt(s==null?void 0:s.entry,tr),smoothMs:vt(s==null?void 0:s.smooth,er)},h=n===!1?{entryMs:0,updateMs:0}:{entryMs:vt(n==null?void 0:n.entry,Wo),updateMs:vt(n==null?void 0:n.update,Ro)};return{line:a,candlestick:o,bar:l,pie:h}}class un{constructor(){F(this,"listeners",new Map)}on(t,e){let s=this.listeners.get(t);s||(s=new Set,this.listeners.set(t,s)),s.add(e)}off(t,e){var s;(s=this.listeners.get(t))==null||s.delete(e)}emit(t,...e){var s;(s=this.listeners.get(t))==null||s.forEach(n=>n(...e))}removeAllListeners(){this.listeners.clear()}}function br(i,t){const e=new Map;return new Proxy(i,{get(s,n){const a=Reflect.get(s,n,s);if(typeof a!="function")return a;const o=e.get(n);if(o)return o;const l=typeof n=="string"?n:String(n),h=a,u=(...d)=>(t.set(l,(t.get(l)??0)+1),h.apply(s,d));return e.set(n,u),u},set(s,n,a){return Reflect.set(s,n,a,s)}})}function vr(i,t,e){const s=document.createElement("canvas");return s.style.position="absolute",s.style.inset="0",s.style.width="100%",s.style.height="100%",s.style.display="block",s.style.zIndex=String(t),i.appendChild(s),s}class Vo extends un{constructor(t,e){super(),F(this,"mainCanvas"),F(this,"mainCtx"),F(this,"overlayCanvas"),F(this,"overlayCtx"),F(this,"resizeObserver"),F(this,"_size"),F(this,"supportsDevicePixelContentBox",!1),this.mainCanvas=vr(t,0),this.overlayCanvas=vr(t,1);const s=this.mainCanvas.getContext("2d",{alpha:!0}),n=this.overlayCanvas.getContext("2d",{alpha:!0});if(!s||!n)throw new Error("CanvasManager: failed to acquire 2D rendering context");this.mainCtx=e?br(s,e.drawCallsMain):s,this.overlayCtx=e?br(n,e.drawCallsOverlay):n;const a=window.devicePixelRatio||1;this._size={media:{width:0,height:0},bitmap:{width:0,height:0},horizontalPixelRatio:a,verticalPixelRatio:a},this.resizeObserver=new ResizeObserver(l=>{this.handleResize(l[0])});try{this.resizeObserver.observe(t,{box:"device-pixel-content-box"}),this.supportsDevicePixelContentBox=!0}catch{this.resizeObserver.observe(t,{box:"content-box"})}const o=t.getBoundingClientRect();if(o.width>0&&o.height>0){const l=window.devicePixelRatio||1,h=l,u=Math.round(o.width*l),d=Math.round(o.height*h);this.mainCanvas.width=u,this.mainCanvas.height=d,this.overlayCanvas.width=u,this.overlayCanvas.height=d,this._size={media:{width:o.width,height:o.height},bitmap:{width:u,height:d},horizontalPixelRatio:u/o.width,verticalPixelRatio:d/o.height}}}handleResize(t){var e,s;let n,a,o,l;if(this.supportsDevicePixelContentBox&&(e=t.devicePixelContentBoxSize)!=null&&e[0]){const d=t.devicePixelContentBoxSize[0];n=d.inlineSize,a=d.blockSize;const f=t.contentBoxSize[0];o=f.inlineSize,l=f.blockSize}else{const d=(s=t.contentBoxSize)==null?void 0:s[0];if(d)o=d.inlineSize,l=d.blockSize;else{const m=t.contentRect;o=m.width,l=m.height}const f=window.devicePixelRatio||1;n=Math.round(o*f),a=Math.round(l*f)}if(n===0||a===0)return;this.mainCanvas.width=n,this.mainCanvas.height=a,this.overlayCanvas.width=n,this.overlayCanvas.height=a;const h=n/o,u=a/l;this._size={media:{width:o,height:l},bitmap:{width:n,height:a},horizontalPixelRatio:h,verticalPixelRatio:u},this.emit("resize",this._size)}get size(){return this._size}useMainLayer(t){this.mainCtx.save(),t({context:this.mainCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.mainCtx.restore()}useOverlayLayer(t){const{width:e,height:s}=this._size.bitmap;this.overlayCtx.clearRect(0,0,e,s),this.overlayCtx.save(),t({context:this.overlayCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.overlayCtx.restore()}get canvas(){return this.overlayCanvas}destroy(){this.resizeObserver.disconnect(),this.mainCanvas.remove(),this.overlayCanvas.remove(),this.removeAllListeners()}}const Yo=3,jo=8,yr=900,Ho=24,$o=11,Oo=10,Xo=18;function No(i){const{state:t}=i;if(t==="idle"||t==="has-more")return;const e=i.timeScale.timeToX(i.boundaryTime);if(Number.isFinite(e)){if(t==="loading"){Uo(i,e);return}t==="no-data"&&_o(i,e)}}function Uo({scope:i,theme:t,chartMediaHeight:e,side:s,now:n},a){const{context:o,horizontalPixelRatio:l,verticalPixelRatio:h}=i,u=Yo*l,d=jo*l,f=Ho*l,m=a*l,p=s==="right"?m+f:m-f,g=e/2*h,b=n%yr/yr,y=Math.floor(b*3),M=ha(t.axis.textColor??"#787b86",.3),L=t.axis.textColor??"#787b86";o.save();for(let x=0;x<3;x++){const k=(x-1)*d,C=p+k;o.beginPath(),o.arc(C,g,u,0,Math.PI*2),o.fillStyle=x===y?L:M,o.fill()}o.restore()}function _o({scope:i,theme:t,chartMediaHeight:e,side:s},n){const{context:a,horizontalPixelRatio:o,verticalPixelRatio:l}=i,h=Math.round(n*o)+.5;a.save(),a.strokeStyle=ha(t.axis.textColor??"#787b86",.6),a.lineWidth=1,a.setLineDash([4*o,4*o]),a.beginPath(),a.moveTo(h,0),a.lineTo(h,e*l),a.stroke(),a.setLineDash([]);const u=Oo*o,d=s==="right"?h-u:h+u,f=Xo*l;a.fillStyle=t.axis.textColor??"#787b86",a.font=`${$o*o}px ${t.typography.fontFamily}`,a.textAlign=s==="right"?"right":"left",a.textBaseline="top",a.fillText("No more data",d,f),a.restore()}function ha(i,t){const e=/^#([0-9a-f]{6})$/i.exec(i.trim());if(!e)return i;const s=parseInt(e[1].slice(0,2),16),n=parseInt(e[1].slice(2,4),16),a=parseInt(e[1].slice(4,6),16);return`rgba(${s}, ${n}, ${a}, ${t})`}function Go(i){const t=performance.now();for(const e of["left","right"]){const s=i.edgeStates[e];if(s==="idle"||s==="has-more")continue;const n=i.resolveBoundary(e);n!==null&&No({scope:i.scope,timeScale:i.timeScale,theme:i.theme,chartMediaHeight:i.chartMediaHeight,boundaryTime:n,side:e,state:s,now:t})}}function Ko(i,t,e){return t!==null?t:i==="left"?e.first??null:e.last??null}function Ge(i,t,e,s){return typeof i=="object"?i.intervals*e:s<=0?0:i/s*t}function qo(i){const{firstTime:t,lastTime:e,dataInterval:s,maxVisibleBars:n,chartWidth:a,padding:o}=i,l=n*s,h=e-t,u=h>0?h:s*10,d=Ge(o.right,u,s,a),f=Ge(o.left,u,s,a);let m=e+d,p=t-f;return m-p>l&&(m=e+d,p=m-l),{from:p,to:m}}const xr=i=>"close"in i?i.close:i.value;function ca(i,t,e){const s=t.find(u=>u.id===i);if(!s)return null;const n=s.renderer;if(n.kind==="pie")return null;const a=n.getLastDataPoint();if(!a)return null;const{from:o,to:l}=e;if(a.time>=o&&a.time<=l)return{value:xr(a),isLive:!0};const h=n.getVisibleDataPoints(o,l);return h.length===0?null:{value:xr(h[h.length-1]),isLive:!1}}function Zo(i,t,e){var s,n;const a=t.find(l=>l.id===i);return a?((n=(s=a.renderer).getStackedLastValue)==null?void 0:n.call(s))||ca(i,t,e):null}function Jo(i,t){const e=t.find(a=>a.id===i);if(!e)return null;const s=e.renderer;if(s.kind==="pie")return null;const n=s.getSecondLastDataPoint();return n?"close"in n?n.close:n.value:null}const Qo=5e3,tl=2e3,el=30;function xn(i,t,e){let s=0;for(;s<t.length&&t[s]<e;)s++;s>0&&(i.splice(0,s),t.splice(0,s))}function wn(i,t,e){const s=i.length-e;s>0&&(i.splice(0,s),t.splice(0,s))}function Mn(i){if(i.length===0)return{last:0,p50:0,p95:0};const t=[...i].sort((e,s)=>e-s);return{last:i[i.length-1],p50:t[Math.floor(t.length*.5)]??0,p95:t[Math.floor(t.length*.95)]??0}}function wr(i){if(i.length<2)return 0;const t=i[i.length-1]-i[0];return t<=0?0:(i.length-1)*1e3/t}function Mr(i){const t={};for(const[e,s]of i)t[e]=s;return t}class kn{constructor(t={}){F(this,"drawCallsMain",new Map),F(this,"drawCallsOverlay",new Map),F(this,"mainMs",[]),F(this,"overlayMs",[]),F(this,"mainStamps",[]),F(this,"overlayStamps",[]),F(this,"perSeriesMs",new Map),F(this,"perSeriesStamps",new Map),F(this,"listeners",new Set),F(this,"windowMs"),F(this,"maxSamples"),F(this,"heapInterval"),F(this,"heapCounter",0),F(this,"heapMb",null),F(this,"mainFrameCount",0),F(this,"overlayFrameCount",0),F(this,"lastStamp",0),this.windowMs=t.windowMs??Qo,this.maxSamples=t.maxSamples??tl,this.heapInterval=t.heapSampleEveryNFrames??el}resetDrawCalls(t){(t==="main"?this.drawCallsMain:this.drawCallsOverlay).clear()}recordFrame(t,e,s){if(this.lastStamp=s,t==="main"?(this.mainMs.push(e),this.mainStamps.push(s),this.mainFrameCount++,this.sampleHeap()):(this.overlayMs.push(e),this.overlayStamps.push(s),this.overlayFrameCount++),this.trimAll(s),this.listeners.size>0){const n=this.getStats();for(const a of this.listeners)a(n)}}recordSeries(t,e,s=this.lastStamp){let n=this.perSeriesMs.get(t),a=this.perSeriesStamps.get(t);(!n||!a)&&(n=[],a=[],this.perSeriesMs.set(t,n),this.perSeriesStamps.set(t,a)),n.push(e),a.push(s)}trimAll(t){const e=t-this.windowMs;xn(this.mainMs,this.mainStamps,e),xn(this.overlayMs,this.overlayStamps,e),wn(this.mainMs,this.mainStamps,this.maxSamples),wn(this.overlayMs,this.overlayStamps,this.maxSamples);for(const s of this.perSeriesMs.keys()){const n=this.perSeriesMs.get(s),a=this.perSeriesStamps.get(s);!n||!a||(xn(n,a,e),wn(n,a,this.maxSamples))}}onFrame(t){return this.listeners.add(t),()=>{this.listeners.delete(t)}}getStats(){const t={};for(const[e,s]of this.perSeriesMs)t[e]=Mn(s);return{mainRendersPerSec:wr(this.mainStamps),overlayRendersPerSec:wr(this.overlayStamps),mainFrameMs:Mn(this.mainMs),overlayFrameMs:Mn(this.overlayMs),frameCount:{main:this.mainFrameCount,overlay:this.overlayFrameCount},drawCalls:{main:Mr(this.drawCallsMain),overlay:Mr(this.drawCallsOverlay)},perSeries:t,heapMb:this.heapMb}}destroy(){this.listeners.clear(),this.mainMs.length=0,this.overlayMs.length=0,this.mainStamps.length=0,this.overlayStamps.length=0,this.perSeriesMs.clear(),this.perSeriesStamps.clear(),this.drawCallsMain.clear(),this.drawCallsOverlay.clear(),this.mainFrameCount=0,this.overlayFrameCount=0,this.lastStamp=0,this.heapCounter=0,this.heapMb=null}sampleHeap(){if(this.heapCounter++,this.heapCounter<this.heapInterval)return;this.heapCounter=0;const t=performance.memory;this.heapMb=t?t.usedJSHeapSize/(1024*1024):null}}const il=200,sl=2;function nl(i){const{range:t,chartWidth:e,dataInterval:s,padding:n,dataStart:a,dataEnd:o}=i,l=d=>typeof d=="object"||d===0||e>0,h=a!==null&&l(n.left)?a-Ge(n.left,t,s,e):null,u=o!==null&&l(n.right)?o+Ge(n.right,t,s,e):null;return{left:h,right:u}}function rl(i){return 10*i}function al(i){const{dataInterval:t,padding:e,dataStart:s,dataEnd:n}=i;if(s===null||n===null)return null;const a=n-s;if(a<=0)return null;const o=typeof e.left=="object"?e.left.intervals*t:null,l=typeof e.right=="object"?e.right.intervals*t:null;return o!==null||l!==null?a+(o??0)+(l??0):a+t*5}function ol(i){return i*.5}function ll(i){const{currentLogical:t,timeDelta:e,chartWidth:s,dataInterval:n,padding:a,dataStart:o,dataEnd:l}=i,{from:h,to:u}=t;if(u-h<=0)return{newLogical:null,autoScrollOff:!1,edgeReached:null};let d=h+e,f=u+e,m=null;if(l!==null&&d>l){const y=d-l;d-=y,f-=y,m={side:"right",overshoot:y,boundaryTime:l}}if(o!==null&&f<o){const y=o-f;d+=y,f+=y,m={side:"left",overshoot:y,boundaryTime:o}}const p=l!==null&&(typeof a.right=="object"||a.right===0||s>0)?Ge(a.right,f-d,n,s):0,g=ol(n),b=l!==null&&Math.abs(f-(l+p))<g;return{newLogical:{from:d,to:f},autoScrollOff:!b,edgeReached:m}}function hl(i){const{currentLogical:t,centerTime:e,factor:s,chartWidth:n,dataInterval:a,padding:o,dataStart:l,dataEnd:h}=i,{from:u,to:d}=t,f=d-u;if(f<=0)return{newLogical:null};const m=rl(a),{left:p,right:g}=nl({range:f,chartWidth:n,dataInterval:a,padding:o,dataStart:l,dataEnd:h}),b=p!==null&&g!==null?g-p:al({dataInterval:a,padding:o,dataStart:l,dataEnd:h});let y=f*s;y<m&&(y=m),s>1&&b!==null&&y>b&&(y=b);const M=(e-u)/f,L=e-M*y,x=L+y;return{newLogical:{from:L,to:x}}}function cl(i){if(!i)return{monitor:null,ownsMonitor:!1,showHud:!1};if(i===!0)return{monitor:new kn,ownsMonitor:!0,showHud:!0};if(i instanceof kn)return{monitor:i,ownsMonitor:!1,showHud:!1};const{hud:t,monitor:e,...s}=i,n=e!==void 0;return{monitor:e??new kn(s),ownsMonitor:!n,showHud:t??!n}}const js={top:20,bottom:20,right:{intervals:3},left:{intervals:0}};function kr(i){return{top:(i==null?void 0:i.top)??js.top,bottom:(i==null?void 0:i.bottom)??js.bottom,right:(i==null?void 0:i.right)??js.right,left:(i==null?void 0:i.left)??js.left}}function Sr(i,t){return typeof i=="number"&&typeof t=="number"?i===t:typeof i=="object"&&typeof t=="object"?i.intervals===t.intervals:!1}function ul(i){return i===void 0||!Number.isFinite(i)?il:Math.max(sl,Math.floor(i))}const dl=5e3,fl=5,Cr=.3,ml=5e3;var xi,Pe;class gl{constructor(){v(this,xi,0),v(this,Pe,0)}observe(t){if(r(this,xi)>0){const e=t-r(this,xi);e>=fl&&e<dl&&c(this,Pe,r(this,Pe)===0?e:Cr*e+(1-Cr)*r(this,Pe))}c(this,xi,t)}pause(){c(this,xi,0)}pickSettleMs(t,e=3){return r(this,Pe)===0?t:Math.min(ml,Math.max(t,r(this,Pe)*e))}get emaMs(){return r(this,Pe)}}xi=new WeakMap,Pe=new WeakMap;const pl=.5,bl=4;function vl(i){const{currentLogical:t,lastTime:e,prevDataEnd:s,dataInterval:n,paddingRight:a,chartWidth:o,holdUntilFilled:l}=i,{from:h,to:u}=t,d=u-h;if(d<=0)return{newLogical:null,releaseHold:!1,reengageAutoScroll:!1};const f=Ge(a,d,n,o);if(l){const x=n*.01;if(e+f<=u+x)return{newLogical:null,releaseHold:!1,reengageAutoScroll:!0}}const m=s!==null?u-s:f,p=Math.max(0,Math.min(f,m)),g=e+p,b=g-d,y=pl*n,M=o>0?bl/o*d:y,L=Math.min(y,M);return Math.abs(g-u)<L?{newLogical:null,releaseHold:l,reengageAutoScroll:!0}:{newLogical:{from:b,to:g},releaseHold:l,reengageAutoScroll:!0}}function yl(i,t,e){let s=1/0,n=-1/0;for(const a of t){if(!a.visible||a.renderer.kind==="pie")continue;const o=a.renderer.getValueRange(i.from,i.to);o&&(o.max>n&&(n=o.max),o.min<s&&(s=o.min),e==null||e.push(o.min,o.max))}return s===1/0||n===-1/0?null:{min:s,max:n}}function Tr(i,t,e,s,n){if(i===void 0||i==="auto")return t;if(typeof i=="number")return i;if(typeof i=="function")return i(s);const a=String(i).match(/^([+-]?)\s*(\d+(?:\.\d+)?)\s*%$/);if(a){const o=a[1]==="-"?-1:1,l=parseFloat(a[2])/100,h=Math.abs(e-t)||Math.abs(t)||1;return t+o*l*h*(n==="max"?1:-1)}return t}function xl(i,t,e,s){const{context:n,bitmapSize:a,horizontalPixelRatio:o,verticalPixelRatio:l}=i,h=Math.max(1,Math.round(l)),u=Math.max(1,Math.round(o));n.strokeStyle=s.crosshair.color,n.lineWidth=Math.max(h,u),n.setLineDash([4*o,4*o]);const d=Math.round(t)+(u%2===1?.5:0),f=Math.round(e)+(h%2===1?.5:0);n.beginPath(),n.moveTo(d,0),n.lineTo(d,a.height),n.moveTo(0,f),n.lineTo(a.width,f),n.stroke(),n.setLineDash([])}function wl({scope:i,timeScale:t,yScale:e,theme:s,yTicks:n,timeTicks:a}){const{context:o,bitmapSize:l,horizontalPixelRatio:h,verticalPixelRatio:u}=i;o.save(),o.strokeStyle=s.grid.color,s.grid.style==="dashed"?o.setLineDash([4*h,4*h]):s.grid.style==="dotted"&&o.setLineDash([1*h,3*h]);const d=Math.max(1,Math.round(u)),f=d%2===1?.5:0;o.lineWidth=d;for(const{value:g,opacity:b}of n.entries){if(b<=.01)continue;const y=Math.round(e.valueToBitmapY(g))+f;o.globalAlpha=b,o.beginPath(),o.moveTo(0,y),o.lineTo(l.width,y),o.stroke()}const m=Math.max(1,Math.round(h)),p=m%2===1?.5:0;o.lineWidth=m;for(const{value:g,opacity:b}of a.entries){if(b<=.01)continue;const y=Math.round(t.timeToBitmapX(g))+p;o.globalAlpha=b,o.beginPath(),o.moveTo(y,0),o.lineTo(y,l.height),o.stroke()}o.restore()}function Ss(i,t,e){return Math.max(t,Math.min(e,i))}function se(i,t,e){return i+(t-i)*e}function Lr(i,t,e,s){const n=Math.exp(-e*s);return t+(i-t)*n}function Sn(i,t,e){let s=0,n=i.length-1;for(;s<=n;){const a=s+n>>>1,o=e(i[a]);if(o<t)s=a+1;else if(o>t)n=a-1;else return a}return s}class ua extends un{constructor(){super(...arguments),F(this,"data",[]),F(this,"_visible",!0),F(this,"cachedRange",null),F(this,"cachedResult",[])}setVisible(t){this._visible=t}isVisible(){return this._visible}setData(t){let e=!0;for(let s=1;s<t.length;s++)if(t[s].time<t[s-1].time){e=!1;break}this.data=e?t.slice():[...t].sort((s,n)=>s.time-n.time),this.cachedRange=null,this.emit("update")}append(t){if(this.data.length>0&&t.time<=this.data[this.data.length-1].time){this.updateLast(t);return}this.data.push(t),this.cachedRange=null,this.emit("update")}updateLast(t){this.data.length!==0&&(this.data[this.data.length-1]=t,this.cachedRange=null,this.emit("update"))}trimStart(t){if(!(t<=0||this.data.length===0)){if(t>=this.data.length){this.data=[],this.cachedRange=null,this.emit("update");return}this.data=this.data.slice(t),this.cachedRange=null,this.emit("update")}}getAll(){return this.data}getVisibleData(t,e){if(this.data.length===0)return[];if(this.cachedRange&&this.cachedRange.from===t&&this.cachedRange.to===e)return this.cachedResult;const s=Math.max(0,Sn(this.data,t,a=>a.time)-1),n=Math.min(this.data.length,Sn(this.data,e,a=>a.time)+1);return this.cachedResult=this.data.slice(s,n),this.cachedRange={from:t,to:e},this.cachedResult}first(){return this.data[0]}last(){return this.data[this.data.length-1]}get length(){return this.data.length}isEmpty(){return this.data.length===0}findNearest(t,e){if(this.data.length===0)return null;const s=Sn(this.data,t,o=>o.time);let n=null,a=e;for(let o=Math.max(0,s-1);o<=Math.min(this.data.length-1,s+1);o++){const l=Math.abs(this.data[o].time-t);l<=a&&(a=l,n=this.data[o])}return n}}class Ml{constructor(t,e,s){F(this,"dragging",!1),F(this,"lastX",0),this.target=t,this.timeScale=e,this.canvas=s}handleMouseDown(t){t.button===0&&(this.dragging=!0,this.lastX=t.clientX,this.canvas.style.cursor="grabbing")}handleMouseMove(t){if(!this.dragging)return;const e=t.clientX-this.lastX;this.lastX=t.clientX;const s=this.timeScale.pixelDeltaToTimeDelta(-e);this.target.pan(s,this.timeScale.getMediaWidth())}handleMouseUp(){this.dragging&&(this.dragging=!1,this.canvas.style.cursor="crosshair")}isDragging(){return this.dragging}}class kl{constructor(t,e){this.target=t,this.timeScale=e}handleWheel(t){t.preventDefault();const e=Sl(t.deltaY,t.deltaMode),s=Math.exp(e*.005),n=this.timeScale.getMediaWidth(),a=Math.min(t.offsetX,n),o=this.timeScale.xToTime(a);this.target.zoomAt(o,s,n)}cancelPendingRebound(){}}function Sl(i,t){return t===WheelEvent.DOM_DELTA_LINE?i*8:t===WheelEvent.DOM_DELTA_PAGE?i*24:i}function Ir(i,t){const e=i.clientX-t.clientX,s=i.clientY-t.clientY;return Math.hypot(e,s)}class Cl extends un{constructor(t,e,s,n){super(),F(this,"zoom"),F(this,"pan"),F(this,"canvas"),F(this,"timeScale"),F(this,"yScale"),F(this,"target"),F(this,"onWheel",a=>{this.zoom.handleWheel(a)}),F(this,"onMouseDown",a=>{this.zoom.cancelPendingRebound(),this.pan.handleMouseDown(a)}),F(this,"onMouseMove",a=>{this.pan.isDragging()&&this.pan.handleMouseMove(a),this.emitCrosshair(a.offsetX,a.offsetY)}),F(this,"onMouseUp",()=>{this.pan.handleMouseUp()}),F(this,"onMouseLeave",()=>{this.pan.handleMouseUp(),this.emit("crosshairMove",null)}),F(this,"onDblClick",()=>{}),F(this,"lastTouchDist",0),F(this,"touchCount",0),F(this,"onTouchStart",a=>{a.preventDefault(),this.zoom.cancelPendingRebound(),this.touchCount=a.touches.length,a.touches.length===1?this.pan.handleMouseDown({button:0,clientX:a.touches[0].clientX}):a.touches.length===2&&(this.lastTouchDist=Ir(a.touches[0],a.touches[1]))}),F(this,"onTouchMove",a=>{if(a.preventDefault(),a.touches.length===1&&this.touchCount===1)this.pan.handleMouseMove({clientX:a.touches[0].clientX});else if(a.touches.length===2){const o=Ir(a.touches[0],a.touches[1]),l=(a.touches[0].clientX+a.touches[1].clientX)/2,h=this.canvas.getBoundingClientRect();if(o>0&&this.lastTouchDist>0){const u=Ss(this.lastTouchDist/o,.1,10),d=this.timeScale.xToTime(l-h.left);this.target.zoomAt(d,u,this.timeScale.getMediaWidth())}this.lastTouchDist=o}}),F(this,"onTouchEnd",a=>{if(a.touches.length===0){this.pan.handleMouseUp(),this.touchCount=0,this.lastTouchDist=0,this.emit("crosshairMove",null);return}a.touches.length===1&&(this.touchCount=1,this.lastTouchDist=0,this.pan.handleMouseDown({button:0,clientX:a.touches[0].clientX}))}),F(this,"onTouchCancel",()=>{this.pan.handleMouseUp(),this.touchCount=0,this.lastTouchDist=0,this.emit("crosshairMove",null)}),this.canvas=t,this.target=e,this.timeScale=s,this.yScale=n,this.zoom=new kl(e,s),this.pan=new Ml(e,s,t),t.style.cursor="crosshair",t.style.touchAction="none",t.addEventListener("wheel",this.onWheel,{passive:!1}),t.addEventListener("mousedown",this.onMouseDown),t.addEventListener("mousemove",this.onMouseMove),t.addEventListener("mouseup",this.onMouseUp),t.addEventListener("mouseleave",this.onMouseLeave),t.addEventListener("dblclick",this.onDblClick),t.addEventListener("touchstart",this.onTouchStart,{passive:!1}),t.addEventListener("touchmove",this.onTouchMove,{passive:!1}),t.addEventListener("touchend",this.onTouchEnd),t.addEventListener("touchcancel",this.onTouchCancel)}emitCrosshair(t,e){const s=this.timeScale.xToTime(t),n=this.yScale.yToValue(e);this.emit("crosshairMove",{mediaX:t,mediaY:e,time:s,y:n})}destroy(){this.zoom.cancelPendingRebound(),this.canvas.removeEventListener("wheel",this.onWheel),this.canvas.removeEventListener("mousedown",this.onMouseDown),this.canvas.removeEventListener("mousemove",this.onMouseMove),this.canvas.removeEventListener("mouseup",this.onMouseUp),this.canvas.removeEventListener("mouseleave",this.onMouseLeave),this.canvas.removeEventListener("dblclick",this.onDblClick),this.canvas.removeEventListener("touchstart",this.onTouchStart),this.canvas.removeEventListener("touchmove",this.onTouchMove),this.canvas.removeEventListener("touchend",this.onTouchEnd),this.canvas.removeEventListener("touchcancel",this.onTouchCancel),this.removeAllListeners()}}const Tl=100,Ll={position:"absolute",top:"4px",right:"4px",padding:"4px 6px",background:"rgba(0, 0, 0, 0.6)",color:"#e0e0e0",font:"11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace",borderRadius:"3px",pointerEvents:"none",zIndex:"20",whiteSpace:"pre",letterSpacing:"0.01em"};function Wr(i){let t=0;for(const e of Object.values(i))t+=e;return t}const Ws=9,ir=7,ae=6,sr=9;function Il(i,t){return Math.round(i*t).toLocaleString("en-US")}function Rr(i,t,e,s,n){return[i.padEnd(Ws),t.toFixed(1).padStart(ir),e.toFixed(2).padStart(ae),s.toFixed(2).padStart(ae),Il(n,t).padStart(sr)].join(" ")}function Ar(i){return[i.padEnd(Ws),"—".padStart(ir),"—".padStart(ae),"—".padStart(ae),"idle".padStart(sr)].join(" ")}function Wl(){return["".padEnd(Ws),"FPS".padStart(ir),"ms".padStart(ae),"worst".padStart(ae),"calls/s".padStart(sr)].join(" ")}function Rl(i){const t=Wr(i.drawCalls.main),e=Wr(i.drawCalls.overlay),s=i.frameCount.main===0?Ar("Main"):Rr("Main",i.mainRendersPerSec,i.mainFrameMs.last,i.mainFrameMs.p95,t),n=i.frameCount.overlay===0?Ar("Overlay"):Rr("Overlay",i.overlayRendersPerSec,i.overlayFrameMs.last,i.overlayFrameMs.p95,e),a=[Wl(),s,n],o=Object.keys(i.perSeries);if(o.length>1){a.push(""),a.push("Per series (main pass)"),a.push(["".padEnd(Ws),"ms".padStart(ae),"worst".padStart(ae)].join(" "));for(const l of o){const h=i.perSeries[l];a.push([` ${l}`.padEnd(Ws),h.last.toFixed(2).padStart(ae),h.p95.toFixed(2).padStart(ae)].join(" "))}}return a.join(`
|
|
2
|
+
`)}class Al{constructor(t,e,s=Tl){F(this,"element"),F(this,"unsubscribe"),F(this,"updateIntervalMs"),F(this,"lastUpdate",0),this.updateIntervalMs=s;for(const n of t.querySelectorAll("[data-chart-perf-hud]"))n.remove();this.element=document.createElement("div"),this.element.setAttribute("data-chart-perf-hud",""),Object.assign(this.element.style,Ll),this.element.textContent="perf: waiting for first frame…",t.appendChild(this.element),this.unsubscribe=e.onFrame(n=>this.onFrame(n))}destroy(){this.unsubscribe(),this.element.remove()}onFrame(t){const e=performance.now();e-this.lastUpdate<this.updateIntervalMs||(this.lastUpdate=e,this.element.textContent=Rl(t))}}class Hs{constructor(t){F(this,"dirty",!1),F(this,"rafId",null),F(this,"callback"),F(this,"render",e=>{this.dirty=!1,this.rafId=null,this.callback(e)}),this.callback=t}markDirty(){this.dirty||(this.dirty=!0,this.rafId=requestAnimationFrame(this.render))}destroy(){this.rafId!==null&&(cancelAnimationFrame(this.rafId),this.rafId=null),this.dirty=!1}}const hi=i=>1-(1-i)**3;var ue,wi,de,_s,Mi,Ji,Gs,Qi,Ks,ts,Fe;class dn{constructor(t){v(this,ue),v(this,wi),v(this,de),v(this,_s,0),v(this,Mi),v(this,Ji),v(this,Gs),v(this,Qi),v(this,Ks),v(this,ts),v(this,Fe,!1),c(this,ue,t.initial),c(this,wi,t.initial),c(this,de,t.initial),c(this,Gs,t.duration),c(this,Mi,t.duration),c(this,Qi,t.easing??hi),c(this,Ji,r(this,Qi)),c(this,Ks,t.lerp),c(this,ts,t.equals??Object.is)}get current(){return r(this,ue)}get target(){return r(this,de)}get animating(){return r(this,Fe)}snap(t){c(this,ue,t),c(this,wi,t),c(this,de,t),c(this,Fe,!1)}setTarget(t,e={}){const s=e.now??performance.now();if(r(this,Fe)){if(r(this,ts).call(this,t,r(this,de)))return;this.tick(s)}else if(r(this,ts).call(this,t,r(this,ue)))return;const n=e.duration??r(this,Gs);if(n<=0){this.snap(t);return}c(this,wi,r(this,ue)),c(this,de,t),c(this,Mi,n),c(this,Ji,e.easing??r(this,Qi)),c(this,_s,s),c(this,Fe,!0)}tick(t){if(!r(this,Fe))return!1;const e=t-r(this,_s);if(e>=r(this,Mi))return c(this,ue,r(this,de)),c(this,Fe,!1),!1;const s=e<=0?0:e/r(this,Mi);return c(this,ue,r(this,Ks).call(this,r(this,wi),r(this,de),r(this,Ji).call(this,s))),!0}}ue=new WeakMap,wi=new WeakMap,de=new WeakMap,_s=new WeakMap,Mi=new WeakMap,Ji=new WeakMap,Gs=new WeakMap,Qi=new WeakMap,Ks=new WeakMap,ts=new WeakMap,Fe=new WeakMap;const da=250,Pr=4.6/(da/1e3);var oi,Vi,Rt,Ue,te,Be,es,En,fa;class ki{constructor(t){v(this,es),v(this,oi),v(this,Vi,0),v(this,Rt),v(this,Ue,Pr),v(this,te,-1),v(this,Be),c(this,oi,t),c(this,Rt,t),c(this,Be,t)}get current(){return r(this,Be)}get target(){return r(this,Rt)}retarget(t,e={}){const s=e.now??performance.now(),n=e.settleMs??da,a=n>0?4.6/(n/1e3):Pr;if(r(this,te)<0){c(this,Rt,t),c(this,Ue,a),c(this,te,s);return}const{x:o,v:l}=S(this,es,En).call(this,s);c(this,oi,o),c(this,Vi,l),c(this,Ue,a),c(this,Rt,t),c(this,te,s),c(this,Be,o)}snap(t,e={}){const s=e.now??performance.now();c(this,oi,t),c(this,Rt,t),c(this,Vi,0),c(this,te,s),c(this,Be,t)}tick(t){if(r(this,te)<0)return c(this,te,t),!1;const{x:e,v:s}=S(this,es,En).call(this,t);c(this,Be,e);const n=S(this,es,fa).call(this);return Math.abs(e-r(this,Rt))<n&&Math.abs(s)<n*r(this,Ue)?(c(this,Be,r(this,Rt)),c(this,oi,r(this,Rt)),c(this,Vi,0),c(this,te,t),!1):!0}}oi=new WeakMap,Vi=new WeakMap,Rt=new WeakMap,Ue=new WeakMap,te=new WeakMap,Be=new WeakMap,es=new WeakSet,En=function(i){const t=Math.max(0,(i-r(this,te))/1e3),e=Math.exp(-r(this,Ue)*t),s=r(this,oi)-r(this,Rt),n=r(this,Vi)+r(this,Ue)*s,a=r(this,Rt)+(s+n*t)*e,o=(n-r(this,Ue)*(s+n*t))*e;return{x:a,v:o}},fa=function(){return Math.max(Math.abs(r(this,Rt)),1)*1e-4};const Pl={entries:[],isAnimating:!1},Fl=(i,t,e)=>i+(t-i)*e;function Bl(i,t){if(i===t)return!0;if(i.length!==t.length)return!1;for(let e=0;e<i.length;e++)if(i[e]!==t[e])return!1;return!0}var fe,is,Gt,Si,Ci;class ma{constructor(t={}){v(this,fe,[]),v(this,is,[]),v(this,Gt,new Map),v(this,Si),v(this,Ci,!1),c(this,Si,t.fadeMs??oa)}setCurrentTicks(t){if(Bl(t,r(this,fe)))return;const e=r(this,Ci)?r(this,Si):0,s=new Set(t),n=new Set(r(this,fe));for(const a of t){if(n.has(a))continue;let o=r(this,Gt).get(a);o===void 0&&(o=new dn({initial:0,duration:r(this,Si),lerp:Fl}),r(this,Gt).set(a,o)),o.setTarget(1,{duration:e})}for(const a of r(this,fe)){if(s.has(a))continue;const o=r(this,Gt).get(a);o!==void 0&&o.setTarget(0,{duration:e})}c(this,is,r(this,fe)),c(this,fe,t.slice())}tick(t){let e=!1;for(const[s,n]of r(this,Gt)){if(n.tick(t)){e=!0;continue}n.current===0&&r(this,Gt).delete(s)}return e}snapshot(){if(r(this,Gt).size===0)return Pl;const t=[];let e=!1;for(const[s,n]of r(this,Gt)){const a=n.current;a<=0||(t.push({value:s,opacity:a}),n.animating&&(e=!0))}return{entries:t,isAnimating:e}}getCurrentTicks(){return r(this,fe)}getPreviousTicks(){return r(this,is)}setFadeMs(t){c(this,Si,t)}markArmed(){c(this,Ci,!0)}get isArmed(){return r(this,Ci)}reset(){c(this,fe,[]),c(this,is,[]),r(this,Gt).clear(),c(this,Ci,!1)}}fe=new WeakMap,is=new WeakMap,Gt=new WeakMap,Si=new WeakMap,Ci=new WeakMap;const Dl=50,zl=80;class ga{constructor(){F(this,"tickTracker",new ma),F(this,"from",0),F(this,"to",0),F(this,"width",1),F(this,"pixelRatio",1),F(this,"dataInterval",null),F(this,"labelCountHintValue",null),F(this,"minSpacingValue",null),F(this,"resolvedInterval",null),F(this,"lastInterval",null),F(this,"lastWant",null),F(this,"lastBucketKey",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??zl}update(t,e,s,n){if(this.from=t.from,this.to=t.to,this.width=e,this.pixelRatio=s,n!==void 0&&n>0){const a=Fr(n);this.lastBucketKey!==null&&this.lastBucketKey!==a&&this.resetHysteresis(),this.lastBucketKey=a,this.dataInterval=n}this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=El(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=Vl(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastWant=null}timeToX(t){return this.to<=this.from?0:(t-this.from)/(this.to-this.from)*this.width}timeToBitmapX(t){return Math.round(this.timeToX(t)*this.pixelRatio)}xToTime(t){return this.to<=this.from?this.from:this.from+t/this.width*(this.to-this.from)}pixelDeltaToTimeDelta(t){return this.to<=this.from?0:t/this.width*(this.to-this.from)}barWidthMedia(t){return this.to<=this.from?0:t/(this.to-this.from)*this.width}barWidthBitmap(t){return Math.max(1,Math.round(this.barWidthMedia(t)*this.pixelRatio))}niceTickValues(t){if(this.to<=this.from)return{ticks:[],tickInterval:0};if(this.dataInterval!==t){const o=Fr(t);this.lastBucketKey!==null&&this.lastBucketKey!==o&&this.resetHysteresis(),this.lastBucketKey=o,this.dataInterval=t,this.resolveInterval()}if(this.resolvedInterval==null)return{ticks:[],tickInterval:0};const e=this.resolvedInterval,s=Math.ceil(this.from/e)*e,n=Math.max(0,Math.min(Dl,Math.floor((this.to-s)/e)+1)),a=[];for(let o=0;o<n;o++)a.push(s+o*e);return{ticks:a,tickInterval:e}}getRange(){return{from:this.from,to:this.to}}getMediaWidth(){return this.width}resolveInterval(){if(this.to<=this.from||this.width<=0||this.dataInterval==null||this.dataInterval<=0){this.resolvedInterval=null;return}const t=Lo(this.dataInterval),e=this.to-this.from,s=e/this.width*this.minLabelSpacing;let n;if(this.labelCountHint!=null){const l=Math.max(1,this.labelCountHint);n=Math.max(e/l,s)}else n=s;if(this.lastInterval!=null&&this.lastWant!=null&&t.includes(this.lastInterval)){const l=n>=this.lastWant*.8&&n<=this.lastWant*1.25,h=this.lastInterval>=s;if(l&&h){this.resolvedInterval=this.lastInterval;return}}let a=t[t.length-1],o=t.length-1;for(let l=0;l<t.length;l++)if(t[l]>=n){a=t[l],o=l;break}if(this.labelCountHint!=null&&o>0&&this.countTicks(a)<this.labelCountHint){const l=t[o-1];l>=s&&(a=l)}this.resolvedInterval=a,this.lastInterval=a,this.lastWant=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.from/t)*t;return Math.max(0,Math.floor((this.to-e)/t)+1)}}function Fr(i){return i<6e4?0:i<36e5?1:i<864e5?2:3}function El(i){return typeof i=="number"&&Number.isFinite(i)&&i>=2?Math.floor(i):null}function Vl(i){return typeof i=="number"&&Number.isFinite(i)&&i>0?i:null}function pa(i){const t=Math.abs(i);if(t===0)return"0";if(t<1e-12)return i.toExponential(2);const e=Math.max(0,Math.ceil(-Math.log10(t))-1),s=Math.min(12,e+4),n=i.toFixed(s);return n.includes(".")?n.replace(/\.?0+$/,""):n}function ba(i){return Number.isNaN(i)?"—":i===1/0?"∞":i===-1/0?"−∞":null}function Ke(i,t){const e=ba(i);if(e!==null)return e;const s=Math.abs(i),n=(t==null?void 0:t.decimals)??2,a=(o,l,h)=>{const u=o/l,d=Number.parseFloat(u.toFixed(n));return Math.abs(d)>=1e3?null:`${u.toFixed(n)}${h}`};return s>=1e15?i.toExponential(2):s>=1e12?a(i,1e12,"T")??i.toExponential(2):s>=1e9?a(i,1e9,"B")??`${(i/1e12).toFixed(n)}T`:s>=1e6?a(i,1e6,"M")??`${(i/1e9).toFixed(n)}B`:s>=1e3?a(i,1e3,"K")??`${(i/1e6).toFixed(n)}M`:s<1?pa(i):s<100?i.toFixed(2):i.toFixed(0)}function nr(i){const t=ba(i);if(t!==null)return t;const e=Math.abs(i);return e===0?"0":e<1?pa(i):e<100?i.toFixed(4):e>=1e7?Ke(i):e<1e4?i.toFixed(2):i.toFixed(0)}function Yl(i){if(!Number.isFinite(i)||i<=0)return 1;const t=10**Math.floor(Math.log10(i)),e=i/t;return(e<=1?1:e<=2?2:e<=5?5:10)*t}function jl(i){if(!Number.isFinite(i)||i<=0)return 1;const t=10**Math.floor(Math.log10(i)),e=i/t;return(e>=5?5:e>=2?2:1)*t}const Hl=50,$l=50;class va{constructor(){F(this,"tickTracker",new ma),F(this,"min",0),F(this,"max",0),F(this,"height",1),F(this,"pixelRatio",1),F(this,"labelCountHintValue",null),F(this,"minSpacingValue",null),F(this,"resolvedInterval",null),F(this,"lastInterval",null),F(this,"lastRawInterval",null),F(this,"customFormat",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??$l}update(t,e,s){this.min=t.min,this.max=t.max,this.height=e,this.pixelRatio=s,this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=Ol(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=Xl(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastRawInterval=null}setFormat(t){this.customFormat=t}getFormat(){return this.customFormat}valueToY(t){const e=this.max-this.min;return e===0?this.height/2:(1-(t-this.min)/e)*this.height}valueToBitmapY(t){return Math.round(this.valueToY(t)*this.pixelRatio)}yToValue(t){const e=this.max-this.min;return e===0?this.min:this.max-t/this.height*e}niceTickValues(){if(this.resolvedInterval==null)return[];const t=this.resolvedInterval,e=Math.ceil(this.min/t)*t,s=Math.max(0,Math.min(Hl,Math.floor((this.max-e)/t)+1)),n=[];for(let a=0;a<s;a++)n.push(e+a*t);return n}getRange(){return{min:this.min,max:this.max}}getMediaHeight(){return this.height}formatY(t){if(this.customFormat)return this.customFormat(t);if(this.max-this.min>=1e6)return Ke(t);const e=this.resolvedInterval,s=e!=null&&e>0?Math.max(0,-Math.floor(Math.log10(e))):1;return t.toFixed(s)}resolveInterval(){if(this.max<=this.min||this.height<=0){this.resolvedInterval=null;return}const t=this.max-this.min,e=t*this.minLabelSpacing/this.height,s=this.labelCountHint!=null?Math.max(1,this.labelCountHint):Math.max(1,Math.floor(this.height/this.minLabelSpacing));let n=t/s;if(n<e&&(n=e),this.lastInterval!=null&&this.lastRawInterval!=null){const o=n>=this.lastRawInterval*.8&&n<=this.lastRawInterval*1.25,l=this.lastInterval>=e;if(o&&l){this.resolvedInterval=this.lastInterval;return}}let a=Yl(n);if(this.labelCountHint!=null&&this.countTicks(a)<this.labelCountHint){const o=jl(n);o>=e&&o>0&&(a=o)}this.resolvedInterval=a,this.lastInterval=a,this.lastRawInterval=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.min/t)*t;return Math.max(0,Math.floor((this.max-e)/t)+1)}}function Ol(i){return typeof i=="number"&&Number.isFinite(i)&&i>=2?Math.floor(i):null}function Xl(i){return typeof i=="number"&&Number.isFinite(i)&&i>0?i:null}function Nl(i){let t=0,e=0;for(const s of i)s>0?t+=s:s<0&&(e+=s);return{positive:t,negative:e}}function Ul(i){return i.positive>0?i.positive:i.negative<0?i.negative:0}function _l(i){return i.positive>0?100:i.negative<0?-100:0}const Gl=(i,t,e)=>i+(t-i)*e;var Yt,me;class ya{constructor(t){F(this,"stores"),F(this,"entries"),F(this,"displayedLastValues"),v(this,Yt),v(this,me),this.stores=Array.from({length:t},()=>new ua),this.entries=Array.from({length:t},()=>new Map),this.displayedLastValues=new Array(t).fill(null),c(this,Yt,new Array(t).fill(null)),c(this,me,Array.from({length:t},()=>new dn({initial:1,duration:0,lerp:Gl})))}getColor(){return this.options.colors[0]}getColors(){return this.options.colors}setData(t,e=0){const s=this.stores[e];if(!s)return;const n=To(t??[]);s.setData(n);const a=s.last();this.displayedLastValues[e]=a?a.value:null,r(this,Yt)[e]=null,this.entries[e].clear()}appendPoint(t,e=0){const s=this.stores[e];if(!s)return;const n=t,a=Et(n.time);s.append({...n,time:a}),this.displayedLastValues[e]=n.value,r(this,Yt)[e]=null;const o=this.options.entryMs;this.isEntryEnabled()&&o>0&&this.entries[e].set(a,{startTime:performance.now()})}updateLastPoint(t,e=0){const s=this.stores[e];if(!s)return;const n=t;s.updateLast({...n,time:Et(n.time)});const a=n.value,o=this.options.smoothMs;if(o<=0){this.displayedLastValues[e]=a,r(this,Yt)[e]=null;return}let l=r(this,Yt)[e];if(l===null){const h=this.displayedLastValues[e]??a;l=new ki(h),r(this,Yt)[e]=l}l.retarget(a,{settleMs:o})}keepLast(t,e=0){const s=this.stores[e];if(!s||t<0)return;const n=s.length-t;n<=0||s.trimStart(n)}getLayerCount(){return this.stores.length}setLayerVisible(t,e){var s;(s=this.stores[t])==null||s.setVisible(e)}isLayerVisible(t){var e;return((e=this.stores[t])==null?void 0:e.isVisible())??!0}getLayerColors(){return this.getColors()}onDataChanged(t){for(const e of this.stores)e.on("update",t);return()=>{for(const e of this.stores)e.off("update",t)}}dispose(){for(const t of this.stores)t.removeAllListeners()}entranceProgress(t,e,s){var n;const a=(n=this.entries[e])==null?void 0:n.get(s);if(a===void 0)return 1;const o=this.options.entryMs;if(o<=0)return 1;const l=performance.now()-a.startTime;return l<=0?0:l>=o?1:l/o}effectiveValue(t,e,s,n){var a,o;const l=(o=(a=this.stores[e])==null?void 0:a.last())==null?void 0:o.time;return l===void 0||s!==l?n:this.displayedLastValues[e]??n}tickAnimations(t){for(const e of r(this,me))e.tick(t);for(let e=0;e<this.stores.length;e++){const s=r(this,Yt)[e];if(s!==null){const o=s.tick(t);this.displayedLastValues[e]=s.current,o||(r(this,Yt)[e]=null)}const n=this.options.entryMs;if(n<=0){this.entries[e].clear();continue}const a=this.entries[e];for(const[o,l]of a)t-l.startTime>=n&&a.delete(o)}}get needsAnimation(){for(const t of r(this,me))if(t.animating)return!0;for(const t of r(this,Yt))if(t!==null)return!0;for(const t of this.entries)if(t.size>0)return!0;return!1}cancelEntranceAnimations(){for(const t of this.entries)t.clear()}setAlpha(t,e){for(const s of r(this,me))s.setTarget(t,{duration:e})}getAlpha(){for(const t of r(this,me))if(t.current>0||t.animating)return 1;return 0}setLayerAlpha(t,e,s){var n;(n=r(this,me)[t])==null||n.setTarget(e,{duration:s})}getLayerAlpha(t){var e;return((e=r(this,me)[t])==null?void 0:e.current)??1}getLastValue(){for(let t=this.stores.length-1;t>=0;t--){const e=this.stores[t].last();if(e)return e.value}return null}getDataAtTime(t,e){var s;return((s=this.stores[0])==null?void 0:s.findNearest(t,e))??null}getLayerSnapshots(t,e){if(this.stores.length<=1)return null;const s=this.getColors(),n=[];for(let a=0;a<this.stores.length;a++){if(!this.stores[a].isVisible())continue;const o=this.stores[a].getVisibleData(t-e,t+e);if(o.length===0)continue;let l=o[0],h=Math.abs(o[0].time-t);for(let u=1;u<o.length;u++){const d=Math.abs(o[u].time-t);d<=h&&(h=d,l=o[u])}n.push({layerIndex:a,time:l.time,value:l.value,color:s[a%s.length]})}return n.length>0?n:null}getStackedLastValue(){var t;if(this.stores.length<=1){const o=(t=this.stores[0])==null?void 0:t.last();return o?{value:o.value,isLive:!0}:null}let e=-1/0;for(const o of this.stores){if(!o.isVisible())continue;const l=o.last();l&&l.time>e&&(e=l.time)}if(e===-1/0)return null;const s=this.options.stacking;if(s==="off"){for(let o=this.stores.length-1;o>=0;o--){if(!this.stores[o].isVisible())continue;const l=this.stores[o].last();if(l)return{value:l.value,isLive:!0}}return null}const n=[];for(const o of this.stores){if(!o.isVisible())continue;const l=o.last();n.push(l&&l.time===e?l.value:0)}const a=Nl(n);return{value:s==="percent"?_l(a):Ul(a),isLive:!0}}getLayerLastSnapshots(){if(this.stores.length<=1)return null;const t=this.getColors(),e=[];for(let s=0;s<this.stores.length;s++){if(!this.stores[s].isVisible())continue;const n=this.stores[s].last();n&&e.push({layerIndex:s,time:n.time,value:n.value,color:t[s%t.length]})}return e.length>0?e:null}getTotalLength(){let t=0;for(const e of this.stores)t+=e.length;return t}getTimeBounds(){let t=1/0,e=-1/0;for(const s of this.stores){const n=s.first();if(!n)continue;const a=s.last()??n;n.time<t&&(t=n.time),a.time>e&&(e=a.time)}return t===1/0?null:{first:t,last:e}}getLastDataPoint(){var t;return((t=this.stores[0])==null?void 0:t.last())??null}getSecondLastDataPoint(){var t;const e=(t=this.stores[0])==null?void 0:t.getAll();return!e||e.length<2?null:e[e.length-2]}sampleTimes(t){for(const e of this.stores){const s=e.getAll();if(s.length!==0)return s.slice(0,t).map(n=>n.time)}return[]}getVisibleDataPoints(t,e){var s;return((s=this.stores[0])==null?void 0:s.getVisibleData(t,e))??[]}getValueRange(t,e){const s=this.options.stacking;if(s==="percent")return{min:0,max:100};const n=this.stores.map(h=>h.isVisible()?h.getVisibleData(t,e):[]);if(s==="off"){let h=1/0,u=-1/0;for(const d of n)for(const f of d)Number.isFinite(f.value)&&(f.value<h&&(h=f.value),f.value>u&&(u=f.value));return h<1/0?{min:h,max:u}:null}const a=new Map;for(let h=0;h<n.length;h++)for(const u of n[h]){let d=a.get(u.time);d||(d=new Array(n.length).fill(0),a.set(u.time,d)),d[h]=Number.isFinite(u.value)?u.value:0}let o=0,l=0;for(const h of a.values()){let u=0,d=0;for(const f of h)f>0?u+=f:d+=f;u>l&&(l=u),d<o&&(o=d)}return l>o?{min:o,max:l}:null}}Yt=new WeakMap,me=new WeakMap;const Kl={colors:["#26a69a","#ef5350"],barWidthRatio:.6,stacking:"off",anchor:"center",entryMs:tr,smoothMs:er};function Br(i){return{...i,entryMs:i.entryMs===!1?0:i.entryMs??tr,smoothMs:i.smoothMs===!1?0:i.smoothMs??er}}class ql extends ya{constructor(t,e){super(t),F(this,"kind","bar"),this.options=Br({...Kl,...e})}updateOptions(t){this.options=Br({...this.options,...t})}isEntryEnabled(){return(this.options.entryAnimation??"fade-grow")!=="none"}applyTheme(t,e){const s=e.seriesColors,n=this.options.colors.map((a,o)=>a===s[o]?t.seriesColors[o]??a:a);this.updateOptions({colors:n})}applyBarTransform(t,e,s,n,a,o){const l=this.options.entryAnimation??"fade-grow";if(t>=1||l==="none")return{topY:s,barHeight:n,x:a,barWidth:o,alpha:1};let h=s,u=n,d=a,f=1;if((l==="fade"||l==="fade-grow")&&(f=t),l==="grow"||l==="fade-grow"){const m=n*t;s<e?h=e-m:h=e,u=Math.max(1,m)}return l==="slide"&&(d=a+(1-t)*o,f=t),{topY:h,barHeight:u,x:d,barWidth:o,alpha:f}}render(t){switch(this.tickAnimations(performance.now()),this.options.stacking){case"normal":this.renderStacked(t,!1);break;case"percent":this.renderStacked(t,!0);break;default:this.renderOff(t);break}}renderOff(t){const{scope:e,timeScale:s,yScale:n,dataInterval:a}=t,{context:o,horizontalPixelRatio:l}=e,h=s.getRange();let u=0;for(const L of this.stores){if(!L.isVisible())continue;const x=L.getVisibleData(h.from,h.to).length;if(x>u&&(u=x),u>2)break}const d=s.barWidthBitmap(a),f=Math.round(30*l),m=u<=2?Math.min(f,d):d,p=Math.max(1,Math.round(m*this.options.barWidthRatio)-2),g=Math.floor(p/2),b=this.options.anchor==="right"?p:g,y=n.getRange().min<0,M=y?n.valueToBitmapY(0):e.bitmapSize.height;if(this.stores.length===1){if(!this.stores[0].isVisible())return;const L=this.options.colors[0],x=this.options.colors.length>1?this.options.colors[1]:L,k=this.stores[0].getVisibleData(h.from,h.to);for(const C of k){if(!Number.isFinite(C.value))continue;const A=this.effectiveValue(t,0,C.time,C.value),T=this.entranceProgress(t,0,C.time),D=s.timeToBitmapX(C.time);if(A>=0){const B=n.valueToBitmapY(A),w=Math.max(1,M-B);this.drawAnimatedBar({context:o,progress:T,baselineY:M,topY:B,barHeight:w,x:D-b,barWidth:p,color:L})}else{const B=n.valueToBitmapY(A),w=Math.max(1,B-M);this.drawAnimatedBar({context:o,progress:T,baselineY:M,topY:M,barHeight:w,x:D-b,barWidth:p,color:x})}}}else{const L=this.stores.map((k,C)=>this.getLayerAlpha(C)>0?k.getVisibleData(h.from,h.to):[]),x=new Map;for(let k=0;k<L.length;k++){const C=this.getLayerAlpha(k);for(const A of L[k]){if(!Number.isFinite(A.value))continue;let T=x.get(A.time);T||(T=[],x.set(A.time,T)),T.push({layer:k,value:this.effectiveValue(t,k,A.time,A.value)*C})}}for(const[k,C]of x){C.sort((T,D)=>Math.abs(D.value)-Math.abs(T.value));const A=s.timeToBitmapX(k);for(const{layer:T,value:D}of C){const B=this.options.colors[T%this.options.colors.length],w=this.entranceProgress(t,T,k);if(D>=0){const W=n.valueToBitmapY(D),P=Math.max(1,M-W);this.drawAnimatedBar({context:o,progress:w,baselineY:M,topY:W,barHeight:P,x:A-b,barWidth:p,color:B})}else{const W=n.valueToBitmapY(D),P=Math.max(1,W-M);this.drawAnimatedBar({context:o,progress:w,baselineY:M,topY:M,barHeight:P,x:A-b,barWidth:p,color:B})}}}}if(y){o.strokeStyle=t.theme.grid.color,o.lineWidth=1;const L=Math.round(M)+.5;o.beginPath(),o.moveTo(0,L),o.lineTo(e.bitmapSize.width,L),o.stroke()}}renderStacked(t,e){const{scope:s,timeScale:n,yScale:a,dataInterval:o}=t,{context:l,horizontalPixelRatio:h}=s,u=n.getRange();let d=0;for(const x of this.stores){if(!x.isVisible())continue;const k=x.getVisibleData(u.from,u.to).length;if(k>d&&(d=k),d>2)break}const f=n.barWidthBitmap(o),m=Math.round(30*h),p=d<=2?Math.min(m,f):f,g=Math.max(1,Math.round(p*this.options.barWidthRatio)-2),b=Math.floor(g/2),y=this.options.anchor==="right"?g:b,M=this.stores.map((x,k)=>this.getLayerAlpha(k)>0?x.getVisibleData(u.from,u.to):[]);if(M.every(x=>x.length===0))return;const L=new Map;for(let x=0;x<M.length;x++){const k=this.getLayerAlpha(x);for(const C of M[x]){let A=L.get(C.time);A||(A=new Array(M.length).fill(0),L.set(C.time,A));const T=Number.isFinite(C.value)?C.value:0;A[x]=this.effectiveValue(t,x,C.time,T)*k}}for(let x=0;x<M.length;x++){const k=this.options.colors[x%this.options.colors.length];for(const[C,A]of L){const T=A[x];if(T===0)continue;const D=n.timeToBitmapX(C);let B=0,w=0;for(let P=0;P<x;P++){const z=A[P];z>0?B+=z:w+=z}const W=this.entranceProgress(t,x,C);if(e){let P=0,z=0;for(const E of A)E>0?P+=E:z+=E;if(T>0&&P>0){const E=B/P*100,V=(B+T)/P*100,X=a.valueToBitmapY(V),$=a.valueToBitmapY(E),G=Math.max(1,$-X);this.drawAnimatedBar({context:l,progress:W,baselineY:$,topY:X,barHeight:G,x:D-y,barWidth:g,color:k})}else if(T<0&&z<0){const E=w/z*-100,V=(w+T)/z*-100,X=a.valueToBitmapY(E),$=a.valueToBitmapY(V),G=Math.max(1,$-X);this.drawAnimatedBar({context:l,progress:W,baselineY:X,topY:X,barHeight:G,x:D-y,barWidth:g,color:k})}}else if(T>0){const P=a.valueToBitmapY(B+T),z=a.valueToBitmapY(B),E=Math.max(1,z-P);this.drawAnimatedBar({context:l,progress:W,baselineY:z,topY:P,barHeight:E,x:D-y,barWidth:g,color:k})}else{const P=a.valueToBitmapY(w),z=a.valueToBitmapY(w+T),E=Math.max(1,z-P);this.drawAnimatedBar({context:l,progress:W,baselineY:P,topY:P,barHeight:E,x:D-y,barWidth:g,color:k})}}}}fillBar(t,e,s,n,a,o){t.fillStyle=o,t.fillRect(e,s,n,a)}drawAnimatedBar(t){const{context:e,progress:s,baselineY:n,topY:a,barHeight:o,x:l,barWidth:h,color:u}=t,d=this.options.entryAnimation??"fade-grow";if(s>=1||d==="none"){this.fillBar(e,l,a,h,o,u);return}const f=this.applyBarTransform(s,n,a,o,l,h);e.save(),e.globalAlpha=f.alpha,e.fillStyle=u,e.fillRect(f.x,f.topY,f.barWidth,f.barHeight),e.restore()}}function Dr(i,t){return i.length<=t?i:Jl(i,t,e=>e.time,e=>e.value)}function Zl(i,t){if(i.length<=t)return i;const e=Math.ceil(i.length/t),s=[];for(let n=0;n<i.length;n+=e){const a=Math.min(n+e,i.length);let o=-1/0,l=1/0,h=0;for(let u=n;u<a;u++)i[u].high>o&&(o=i[u].high),i[u].low<l&&(l=i[u].low),h+=i[u].volume??0;s.push({time:i[n].time,open:i[n].open,high:o,low:l,close:i[a-1].close,volume:h})}return s}function Jl(i,t,e,s){if(t>=i.length||t<3)return i;const n=[i[0]],a=(i.length-2)/(t-2);let o=0;for(let l=0;l<t-2;l++){const h=Math.floor((l+1)*a)+1,u=Math.min(Math.floor((l+2)*a)+1,i.length-1);let d=0,f=0;const m=u,p=Math.min(Math.floor((l+3)*a)+1,i.length),g=p-m;if(g>0){for(let x=m;x<p;x++)d+=e(i[x]),f+=s(i[x]);d/=g,f/=g}let b=-1,y=h;const M=e(i[o]),L=s(i[o]);for(let x=h;x<u;x++){const k=Math.abs((M-d)*(s(i[x])-L)-(M-e(i[x]))*(f-L));k>b&&(b=k,y=x)}n.push(i[y]),o=y}return n.push(i[i.length-1]),n}const zr=new Map,Er=new Map;function xa(i){return[parseInt(i.slice(1,3),16),parseInt(i.slice(3,5),16),parseInt(i.slice(5,7),16)]}function Ql(i,t,e){return`#${i.toString(16).padStart(2,"0")}${t.toString(16).padStart(2,"0")}${e.toString(16).padStart(2,"0")}`}function Ye(i,t){if(i.startsWith("rgba"))return i.replace(/[\d.]+\)\s*$/,`${t})`);if(i.startsWith("rgb("))return i.replace(/^rgb\((.*)\)$/i,`rgba($1, ${t})`);const e=i+t;let s=zr.get(e);if(s)return s;const[n,a,o]=xa(i);return s=`rgba(${n}, ${a}, ${o}, ${t})`,zr.set(e,s),s}function wa(i,t){const e=i+t;let s=Er.get(e);if(s)return s;const[n,a,o]=xa(i);return s=Ql(Math.min(255,Math.round(n+(255-n)*t)),Math.min(255,Math.round(a+(255-a)*t)),Math.min(255,Math.round(o+(255-o)*t))),Er.set(e,s),s}function $s(i){return typeof i=="number"&&!Number.isFinite(i)}const th=(()=>{const i=new WeakSet;return(t,e,s,n)=>{s.length===0||i.has(t)||(i.add(t),console.warn(`[wick-charts] ${e}: skipping ${s.length} row${s.length===1?"":"s"} with NaN / Infinity values (indices ${s.join(", ")}; first offending row: ${n}). Filter upstream data; the renderer drops poisoned rows to keep the rest of the chart alive.`))}})(),eh=.15,ih=.005;var Ti,Li,Ii,Wi,Ri,ss,ns;class sh{constructor(t){v(this,Ti),v(this,Li),v(this,Ii),v(this,Wi),v(this,Ri),v(this,ss),v(this,ns),c(this,Ti,new ki(t.open)),c(this,Li,new ki(t.high)),c(this,Ii,new ki(t.low)),c(this,Wi,new ki(t.close)),c(this,Ri,new ki(t.volume??0)),c(this,ss,t.time),c(this,ns,t.volume!==void 0)}retarget(t,e={}){c(this,ss,t.time),t.volume!==void 0&&c(this,ns,!0),r(this,Ti).retarget(t.open,e),r(this,Li).retarget(t.high,e),r(this,Ii).retarget(t.low,e),r(this,Wi).retarget(t.close,e),r(this,Ri).retarget(t.volume??0,e)}tick(t){const e=r(this,Ti).tick(t),s=r(this,Li).tick(t),n=r(this,Ii).tick(t),a=r(this,Wi).tick(t),o=r(this,Ri).tick(t);return e||s||n||a||o}get current(){const t={time:r(this,ss),open:r(this,Ti).current,high:r(this,Li).current,low:r(this,Ii).current,close:r(this,Wi).current};return r(this,ns)&&(t.volume=r(this,Ri).current),t}}Ti=new WeakMap,Li=new WeakMap,Ii=new WeakMap,Wi=new WeakMap,Ri=new WeakMap,ss=new WeakMap,ns=new WeakMap;const nh={up:{body:"#26a69a",wick:"#26a69a"},down:{body:"#ef5350",wick:"#ef5350"},bodyWidthRatio:.6,entryMs:Jn,smoothMs:Qn};function Vr(i){return{...i,entryMs:i.entryMs===!1?0:i.entryMs??Jn,smoothMs:i.smoothMs===!1?0:i.smoothMs??Qn}}var Kt,jt,rs,qs,Ai;class rh{constructor(t,e){F(this,"kind","candlestick"),F(this,"store"),F(this,"options"),F(this,"displayedLast",null),F(this,"entries",new Map),v(this,Kt,null),v(this,jt,null),v(this,rs,!0),v(this,qs,!1),v(this,Ai,new dn({initial:1,duration:0,lerp:(s,n,a)=>s+(n-s)*a})),this.store=t,this.options=Vr({...nh,...e}),this.displayedLast=t.last()??null}isEntryEnabled(){return(this.options.entryAnimation??"unfold")!=="none"}updateOptions(t){this.options=Vr({...this.options,...t})}getColor(){return zt(this.options.up.body)}setData(t){this.store.setData(Co(t??[]));const e=this.store.last();this.displayedLast=e??null,c(this,Kt,null),this.entries.clear(),c(this,jt,null)}appendPoint(t){const e=t,s=Et(e.time),n={...e,time:s};this.store.append(n),this.displayedLast=n,c(this,Kt,null);const a=this.options.entryMs;this.isEntryEnabled()&&a>0&&this.entries.set(s,{startTime:performance.now()})}updateLastPoint(t){const e=t,s=Et(e.time),n={...e,time:s};this.store.updateLast(n);const a=this.options.smoothMs;if(a<=0){this.displayedLast=n,c(this,Kt,null);return}let o=r(this,Kt);if(o===null){const l=this.displayedLast??n;o=new sh(l),c(this,Kt,o)}o.retarget(n,{settleMs:a})}keepLast(t){if(t<0)return;const e=this.store.length-t;e<=0||this.store.trimStart(e)}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[zt(this.options.up.body)]}applyTheme(t,e){this.updateOptions({up:{...t.candlestick.up},down:{...t.candlestick.down}})}onDataChanged(t){return this.store.on("update",t),()=>this.store.off("update",t)}dispose(){this.store.removeAllListeners()}tickAnimations(t){r(this,Ai).tick(t);const e=r(this,Kt);if(e!==null){const n=e.tick(t);this.displayedLast=e.current,n||c(this,Kt,null)}const s=this.options.entryMs;if(s<=0){this.entries.clear();return}for(const[n,a]of this.entries)t-a.startTime>=s&&this.entries.delete(n)}get needsAnimation(){return r(this,Ai).animating||r(this,Kt)!==null||this.entries.size>0||!r(this,rs)}cancelEntranceAnimations(){this.entries.clear()}setAlpha(t,e){r(this,Ai).setTarget(t,{duration:e})}getAlpha(){return r(this,Ai).current}getLastValue(){const t=this.store.last();return t?t.close:null}getDataAtTime(t,e){return this.store.findNearest(t,e)}getTimeBounds(){const t=this.store.first(),e=this.store.last();return!t||!e?null:{first:t.time,last:e.time}}getLastDataPoint(){return this.store.last()??null}getSecondLastDataPoint(){const t=this.store.getAll();return t.length>=2?t[t.length-2]:null}sampleTimes(t){return this.store.getAll().slice(0,t).map(e=>e.time)}getVisibleDataPoints(t,e){return this.store.getVisibleData(t,e)}getValueRange(t,e){const s=this.store.getVisibleData(t,e);let n=1/0,a=-1/0;for(const o of s)Number.isFinite(o.low)&&o.low<n&&(n=o.low),Number.isFinite(o.high)&&o.high>a&&(a=o.high);return n===1/0||a===-1/0?null:{min:n,max:a}}render(t){this.tickAnimations(performance.now());const{scope:e,timeScale:s,yScale:n,dataInterval:a}=t,{context:o,horizontalPixelRatio:l}=e,h=s.getRange();let u=this.store.getVisibleData(h.from,h.to);const d=e.mediaSize.width,f=u.length>d*2;if(f&&(u=Zl(u,Math.round(d*1.5))),u.length===0)return;const m=this.displayedLast;if(!f&&m!==null){const W=u.length-1;u[W].time===m.time&&(u=[...u.slice(0,W),m])}let p=null;if(this.entries.size>0){const W=this.options.entryMs,P=performance.now();for(const z of u){const E=this.entries.get(z.time);if(E===void 0)continue;const V=P-E.startTime,X=W<=0?1:Math.min(1,Math.max(0,V/W));if(X>=1)continue;const $=hi(X);p===null&&(p=new Map),p.set(z.time,$)}}const g=s.barWidthBitmap(a),b=Math.round(30*l),y=u.length<=2?Math.min(b,g):g,M=Math.max(1,Math.round(l));let L=Math.max(1,Math.round(y*this.options.bodyWidthRatio)-2);(L&1)!==(M&1)&&(L=L>1?L-1:2);const x=Math.floor(L/2),k=f!==r(this,qs);c(this,qs,f);const C=Math.round(n.getMediaHeight()*e.verticalPixelRatio);this.drawVolume({ctx:o,data:u,timeScale:s,chartHeight:C,barWidth:y,wickWidth:M,entranceByTime:p,snapVolScale:k});const A=[],T=[],D=[];let B=null;for(let W=0;W<u.length;W++){const P=u[W];if($s(P.open)||$s(P.close)||$s(P.high)||$s(P.low)){D.push(W),B===null&&(B=P);continue}P.close>=P.open?A.push(P):T.push(P)}B!==null&&th(this,"candlestick",D,`time ${B.time}`);const w={ctx:o,timeScale:s,yScale:n,halfBody:x,bodyWidth:L,wickWidth:M,entranceByTime:p};this.drawCandles({...w,candles:A,body:this.options.up.body,wickColor:this.options.up.wick}),this.drawCandles({...w,candles:T,body:this.options.down.body,wickColor:this.options.down.wick})}drawVolume({ctx:t,data:e,timeScale:s,chartHeight:n,barWidth:a,wickWidth:o,entranceByTime:l,snapVolScale:h}){let u=0;for(const M of e)Number.isFinite(M.volume)&&M.volume>u&&(u=M.volume);if(u===0){c(this,jt,null),c(this,rs,!0);return}r(this,jt)===null||h?c(this,jt,u):c(this,jt,r(this,jt)+(u-r(this,jt))*eh),c(this,rs,Math.abs(u-r(this,jt))<=u*ih);const d=r(this,jt),f=n*.2;let m=Math.max(1,a-2);(m&1)!==(o&1)&&(m=m>1?m-1:2);const p=Math.floor(m/2),g=Ye(zt(this.options.up.body),.2),b=Ye(zt(this.options.down.body),.2),y=this.options.entryAnimation??"unfold";for(const M of e){if(!Number.isFinite(M.volume)||M.volume<=0)continue;const L=M.volume,x=s.timeToBitmapX(M.time),k=Math.min(f,Math.max(1,L/d*f)),C=M.close>=M.open;t.fillStyle=C?g:b;const A=(l==null?void 0:l.get(M.time))??1;if(A>=1||y==="none"){t.fillRect(x-p,n-k,m,k);continue}const T=Cn(A,y,{x:x-p,barWidth:m,anchorY:n,topY:n-k,bottomY:n});t.save(),t.globalAlpha=T.alpha,t.fillRect(T.x,T.topY,m,Math.max(1,T.bottomY-T.topY)),t.restore()}}drawCandles({ctx:t,candles:e,timeScale:s,yScale:n,halfBody:a,bodyWidth:o,wickWidth:l,body:h,wickColor:u,entranceByTime:d}){if(e.length===0)return;const f=this.options.entryAnimation??"unfold",m=o+2;t.fillStyle=u;for(const g of e){const b=(d==null?void 0:d.get(g.time))??1,y=s.timeToBitmapX(g.time),M=n.valueToBitmapY(g.open),L=n.valueToBitmapY(g.high),x=n.valueToBitmapY(g.low),k=y-Math.floor(l/2);if(b>=1||f==="none"){t.fillRect(k,L,l,x-L);continue}const C=Cn(b,f,{x:k,barWidth:m,anchorY:M,topY:L,bottomY:x});t.save(),t.globalAlpha=C.alpha,t.fillRect(C.x,C.topY,l,Math.max(1,C.bottomY-C.topY)),t.restore()}const p=Array.isArray(h);for(const g of e){const b=(d==null?void 0:d.get(g.time))??1,y=s.timeToBitmapX(g.time),M=n.valueToBitmapY(g.open),L=n.valueToBitmapY(g.close),x=Math.min(M,L),k=Math.max(M,L),C=Math.max(1,k-x),A=b<1&&f!=="none";let T=y-a,D=x,B=C,w=1;if(A){const W=Cn(b,f,{x:y-a,barWidth:m,anchorY:M,topY:x,bottomY:k});T=W.x,D=W.topY,B=Math.max(1,W.bottomY-W.topY),w=W.alpha}if(A&&t.save(),p&&B>2){const W=t.createLinearGradient(0,D,0,D+B);W.addColorStop(0,h[0]),W.addColorStop(1,h[1]),t.fillStyle=W}else t.fillStyle=p?h[0]:h;A&&(t.globalAlpha=w),t.fillRect(T,D,o,B),A&&t.restore()}}}Kt=new WeakMap,jt=new WeakMap,rs=new WeakMap,qs=new WeakMap,Ai=new WeakMap;function Cn(i,t,e){switch(t){case"none":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:1};case"fade":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:i};case"unfold":return{x:e.x,topY:se(e.anchorY,e.topY,i),bottomY:se(e.anchorY,e.bottomY,i),alpha:1};case"slide":return{x:e.x+(1-i)*e.barWidth,topY:e.topY,bottomY:e.bottomY,alpha:i};case"fade-unfold":return{x:e.x,topY:se(e.anchorY,e.topY,i),bottomY:se(e.anchorY,e.bottomY,i),alpha:i}}}const ah={colors:["#2962FF"],strokeWidth:1,area:{visible:!0},pulse:!0,stacking:"off",entryMs:cn,smoothMs:qn,pulseMs:Zn};function Yr(i){const t=i.areaFill,e=t!==void 0&&i.area===void 0?{visible:!!t}:i.area;return{...i,area:e,entryMs:i.entryMs===!1?0:i.entryMs??cn,smoothMs:i.smoothMs===!1?0:i.smoothMs??qn,pulseMs:i.pulseMs===!1?0:i.pulseMs??Zn}}class oh extends ya{constructor(t,e){super(t),F(this,"kind","line"),F(this,"areaGradientCache",new Map),this.options=Yr({...ah,...e})}updateOptions(t){this.options=Yr({...this.options,...t})}getStacking(){return this.options.stacking}applyTheme(t,e){this.stores.length===1?this.getColor()===e.line.color&&this.updateOptions({colors:[t.line.color]}):this.updateOptions({colors:t.seriesColors.slice(0,this.stores.length)}),this.options.strokeWidth===e.line.width&&this.updateOptions({strokeWidth:t.line.width})}isEntryEnabled(){return(this.options.entryAnimation??"grow")!=="none"}get hasPulse(){return this.options.pulse&&this.options.pulseMs>0&&this.stores.some(t=>t.isVisible()&&t.length>0)}get overlayNeedsAnimation(){return this.hasPulse}hasOverlayContentInRange(t,e){for(let s=0;s<this.stores.length;s++){if(this.getLayerAlpha(s)<=0)continue;const n=this.stores[s].last();if(n&&n.time>=t)return!0}return!1}render(t){this.tickAnimations(performance.now()),this.options.stacking==="off"?this.renderOff(t):this.renderStacked(t,this.options.stacking==="percent")}trailingEndpoint(t,e){const s=this.stores[e],n=s.last();if(!n)return null;const{timeScale:a,yScale:o}=t,l=a.timeToBitmapX(n.time),h=o.valueToBitmapY(this.effectiveValue(t,e,n.time,n.value));if((this.options.entryAnimation??"grow")!=="grow")return{x:l,y:h};const u=this.entranceProgress(t,e,n.time);if(u>=1)return{x:l,y:h};const d=s.getAll();if(d.length<2)return{x:l,y:h};const f=d[d.length-2];if(!Number.isFinite(f.value))return{x:l,y:h};const m=a.timeToBitmapX(f.time),p=o.valueToBitmapY(f.value),g=hi(u);return{x:se(m,l,g),y:se(p,h,g)}}renderOff(t){var e;const{scope:s,timeScale:n,yScale:a}=t,{context:o}=s,l=n.getRange(),{verticalPixelRatio:h}=s,u=this.options.strokeWidth>0,d=Math.max(1,Math.round(this.options.strokeWidth*h)),f=this.options.entryAnimation??"grow";for(let m=0;m<this.stores.length;m++){const p=this.getLayerAlpha(m);if(p<=0)continue;let g=this.stores[m].getVisibleData(l.from,l.to);const b=s.mediaSize.width;if(g.length>b*2&&(g=Dr(g,Math.round(b*1.5))),g.length<2)continue;const y=this.options.colors[m%this.options.colors.length],M=g[g.length-1],L=this.entranceProgress(t,m,M.time),x=f==="fade"&&L<1,k=this.trailingEndpoint(t,m)??{x:n.timeToBitmapX(M.time),y:a.valueToBitmapY(this.effectiveValue(t,m,M.time,M.value))},C=k.x,A=k.y,T=p<1;(T||x)&&(o.save(),T&&(o.globalAlpha*=p),x&&(o.globalAlpha*=L));const D=g.length-1,B=[];let w=null;for(let P=0;P<D;P++){const z=g[P].value;if(!Number.isFinite(z)){w=null;continue}w||(w=[],B.push(w)),w.push({x:n.timeToBitmapX(g[P].time),y:a.valueToBitmapY(z)})}const W=(e=g[D])==null?void 0:e.value;if(Number.isFinite(C)&&Number.isFinite(A)&&Number.isFinite(W)&&(w?w.push({x:C,y:A}):B.push([{x:C,y:A}])),u&&B.some(P=>P.length>=2)){o.beginPath();for(const P of B)if(!(P.length<2)){o.moveTo(P[0].x,P[0].y);for(let z=1;z<P.length;z++)o.lineTo(P[z].x,P[z].y)}o.strokeStyle=y,o.lineWidth=d,o.lineJoin="round",o.lineCap="round",o.stroke()}if(u){const P=Math.max(1,d/2);let z=!1;for(const E of B)E.length===1&&(z||(o.beginPath(),z=!0),o.moveTo(E[0].x+P,E[0].y),o.arc(E[0].x,E[0].y,P,0,Math.PI*2));z&&(o.fillStyle=y,o.fill())}if(this.options.area.visible){const P=s.bitmapSize.height,z=String(m),E=this.areaGradientCache.get(z);let V;E&&E.bottomY===P&&E.color===y?V=E.gradient:(V=o.createLinearGradient(0,0,0,P),V.addColorStop(0,Ye(y,.12)),V.addColorStop(1,Ye(y,.01)),this.areaGradientCache.set(z,{gradient:V,bottomY:P,color:y})),o.fillStyle=V;for(const X of B)if(!(X.length<2)){o.beginPath(),o.moveTo(X[0].x,X[0].y);for(let $=1;$<X.length;$++)o.lineTo(X[$].x,X[$].y);o.lineTo(X[X.length-1].x,P),o.lineTo(X[0].x,P),o.closePath(),o.fill()}}(x||T)&&o.restore()}}renderStacked(t,e){const{scope:s,timeScale:n,yScale:a}=t,{context:o}=s,l=n.getRange(),{verticalPixelRatio:h}=s,u=this.options.strokeWidth>0,d=Math.max(1,Math.round(this.options.strokeWidth*h)),f=s.mediaSize.width,m=this.stores.map((w,W)=>{if(this.getLayerAlpha(W)<=0)return[];let P=w.getVisibleData(l.from,l.to);return P.length>f*2&&(P=Dr(P,Math.round(f*1.5))),P}),p=new Set;for(const w of m)for(const W of w)p.add(W.time);const g=Array.from(p).sort((w,W)=>w-W);if(g.length<2)return;const b=m.map((w,W)=>{const P=new Map,z=this.getLayerAlpha(W);for(const E of w)P.set(E.time,this.effectiveValue(t,W,E.time,E.value)*z);return P}),y=Array.from({length:this.stores.length},()=>new Array(g.length).fill(0));for(let w=0;w<g.length;w++){const W=g[w];let P=0;if(e)for(let E=0;E<this.stores.length;E++){const V=b[E].get(W);Number.isFinite(V)&&(P+=V)}let z=0;for(let E=0;E<this.stores.length;E++){const V=b[E].get(W),X=Number.isFinite(V)?V:0;z+=e&&P>0?X/P*100:X,y[E][w]=z}}const M=this.options.entryAnimation??"grow",L=new Map;for(let w=0;w<g.length;w++)L.set(g[w],w);const x=g.length-1,k=new Array(this.stores.length).fill(1);for(let w=0;w<this.stores.length;w++){if(this.getLayerAlpha(w)<=0)continue;const W=this.stores[w].last();if(!W)continue;const P=this.entranceProgress(t,w,W.time);if(P>=1)continue;const z=L.get(W.time);if(z!==x)continue;const E=this.stores[w].getAll();if(E.length<2)continue;const V=E[E.length-2].time;L.get(V)===z-1&&(k[w]=P)}const C=(w,W)=>{if(W>=1||w.length<2)return;const P=w.length-1,z=w[P-1],E=w[P];w[P]=[se(z[0],E[0],W),se(z[1],E[1],W)]},A=s.bitmapSize.height;let T=-1,D=-1;for(let w=0;w<this.stores.length;w++)if(!(this.getLayerAlpha(w)<=0))if(T<0)T=w;else{D=w;break}const B=T>=0?this.getLayerAlpha(T):1;for(let w=this.stores.length-1;w>=0;w--){const W=this.getLayerAlpha(w);if(W<=0)continue;const P=this.options.colors[w%this.options.colors.length],z=k[w],E=w>0&&this.getLayerAlpha(w-1)>0?k[w-1]:1,V=w===T,X=D>=0&&w===D&&B<1,$=[];for(let _=0;_<g.length;_++){const q=w>0?a.valueToBitmapY(y[w-1][_]):A;let Z=q;V?Z=A:X&&(Z=q+(A-q)*(1-B)),$.push([n.timeToBitmapX(g[_]),Z])}M==="grow"&&C($,hi(E));const G=[];for(let _=0;_<g.length;_++){let q=a.valueToBitmapY(y[w][_]);V&&W<1&&(q=A+(q-A)*W),G.push([n.timeToBitmapX(g[_]),q])}M==="grow"&&C(G,hi(z));const xt=M==="fade"&&z<1;if(xt&&(o.save(),o.globalAlpha=z),this.options.area.visible){let _=G[0][1],q=$[0][1];for(let K=1;K<G.length;K++)G[K][1]<_&&(_=G[K][1]);for(let K=1;K<$.length;K++)$[K][1]>q&&(q=$[K][1]);let Z=Ye(P,.25);if(q>_+.5){const K=o.createLinearGradient(0,_,0,q);K.addColorStop(0,Ye(P,.25)),K.addColorStop(1,Ye(P,.05)),Z=K}o.beginPath(),o.moveTo(G[0][0],G[0][1]);for(let K=1;K<G.length;K++)o.lineTo(G[K][0],G[K][1]);for(let K=$.length-1;K>=0;K--)o.lineTo($[K][0],$[K][1]);o.closePath(),o.fillStyle=Z,o.fill()}const Tt=u&&W<1;if(Tt&&(o.save(),o.globalAlpha*=W),u){o.beginPath(),o.moveTo(G[0][0],G[0][1]);for(let _=1;_<G.length;_++)o.lineTo(G[_][0],G[_][1]);o.strokeStyle=P,o.lineWidth=d,o.lineJoin="round",o.lineCap="round",o.stroke()}Tt&&o.restore(),xt&&o.restore()}}drawOverlay(t){this.tickAnimations(performance.now());const{scope:e,timeScale:s,yScale:n,crosshair:a,dataInterval:o}=t,l=e,h=this.options.pulseMs,u=h>0?performance.now()/(h*2*Math.PI)%1:0;if(a){const d=this.options.colors,f=this.options.stacking,m=4*l.horizontalPixelRatio,p=[],g=[];for(let y=0;y<this.stores.length;y++){const M=this.stores[y].findNearest(a.time,o);M?(p.push(M.value),g.push(M.time)):(p.push(0),g.push(null))}const b=[];if(f==="off")for(const y of p)b.push(y);else{let y=0;if(f==="percent")for(let L=0;L<p.length;L++)y+=p[L]*this.getLayerAlpha(L);let M=0;for(let L=0;L<p.length;L++){const x=p[L]*this.getLayerAlpha(L);M+=f==="percent"&&y>0?x/y*100:x,b.push(M)}}for(let y=0;y<this.stores.length;y++){const M=g[y];if(M===null)continue;const L=this.getLayerAlpha(y);if(L<=0)continue;const x=d[y%d.length],k=s.timeToBitmapX(M),C=n.valueToBitmapY(b[y]),A=L<1;A&&(e.context.save(),e.context.globalAlpha*=L),e.context.save(),e.context.globalAlpha*=.25,e.context.beginPath(),e.context.arc(k,C,m+3*l.horizontalPixelRatio,0,Math.PI*2),e.context.fillStyle=x,e.context.fill(),e.context.restore(),e.context.beginPath(),e.context.arc(k,C,m,0,Math.PI*2),e.context.fillStyle=x,e.context.fill(),A&&e.context.restore()}}if(this.hasPulse&&h>0){const d=this.options.stacking;for(let f=0;f<this.stores.length;f++){const m=this.getLayerAlpha(f);if(m<=0)continue;const p=this.options.colors[f%this.options.colors.length];if(d==="off"){const k=this.trailingEndpoint(t,f);if(!k)continue;this.drawPulse({ctx:e.context,x:k.x,y:k.y,color:p,pixelRatio:l.horizontalPixelRatio,phase:u,alpha:m});continue}const g=this.stores[f].last();if(!g)continue;const b=g.time,y=d==="percent",M=k=>{const C=D=>{const B=this.getLayerAlpha(D);if(B<=0)return 0;const w=D===f&&k===b?g:this.stores[D].findNearest(k,0);return!w||w.time!==k?0:this.effectiveValue(t,D,k,w.value)*B};let A=0;if(y)for(let D=0;D<this.stores.length;D++)A+=C(D);let T=0;for(let D=0;D<=f;D++){const B=C(D);T+=y&&A>0?B/A*100:B}return T};let L=s.timeToBitmapX(b),x=n.valueToBitmapY(M(b));if((this.options.entryAnimation??"grow")==="grow"){const k=this.entranceProgress(t,f,b);if(k<1){const C=this.stores[f].getAll(),A=C.length>=2?C[C.length-2]:null;if(A!==null&&A.time!==b){const T=hi(k),D=s.timeToBitmapX(A.time),B=n.valueToBitmapY(M(A.time));L=se(D,L,T),x=se(B,x,T)}}}this.drawPulse({ctx:e.context,x:L,y:x,color:p,pixelRatio:l.horizontalPixelRatio,phase:u,alpha:m})}}}drawPulse({ctx:t,x:e,y:s,color:n,pixelRatio:a,phase:o,alpha:l=1}){const h=3*a,u=.4+.6*Math.abs(Math.sin(o*2*Math.PI)),d=h+4*a*u,f=l<1;f&&(t.save(),t.globalAlpha*=l),t.beginPath(),t.arc(e,s,d,0,Math.PI*2),t.fillStyle=Ye(n,u*.3),t.fill(),t.beginPath(),t.arc(e,s,h,0,Math.PI*2),t.fillStyle=n,t.fill(),f&&t.restore()}}const Ma={mode:"outside",content:"both",fontSize:11,minSliceAngle:2.5,elbowLen:12,legPad:6,distance:14,railWidth:16,labelGap:1.8},lh={innerRadiusRatio:0,padAngle:1.15,sliceLabels:{...Ma},animate:!1},Vn=Math.PI/180;function hh(i,t){return{...i??{},...t}}function ch(i){return{...Ma,...i??{}}}function uh(i){const t={color:"rgba(0, 0, 0, 0.22)",blur:24,offsetX:0,offsetY:10};return i===!0||i===!1?t:{...t,...i}}function dh(i){const t={color:"rgba(0, 0, 0, 0.1)",depth:.3};return i===!0||i===!1?t:{...t,...i}}const Yi=Math.PI*2,ka=.85;function jr(i){const{bitmapWidth:t,bitmapHeight:e,padTop:s,padBottom:n}=i,a=Math.max(0,i.labelReserve??0),o=Math.min(Math.max(0,s),e),l=Math.min(Math.max(0,n),e-o),h=e-o-l,u=Math.max(0,t-2*a),d=t/2,f=o+h/2,m=Math.max(0,Math.min(u,h)/2*ka);return{cx:d,cy:f,maxR:m}}function fh(i){if(!i.startsWith("#"))return!1;const t=parseInt(i.slice(1,3),16),e=parseInt(i.slice(3,5),16),s=parseInt(i.slice(5,7),16);return t*.299+e*.587+s*.114>150}function mh(i,t){if(!i.startsWith("#"))return i;const e=i.length===4?`#${i[1]}${i[1]}${i[2]}${i[2]}${i[3]}${i[3]}`:i;return wa(e,t)}function Hr(i){if(i.startsWith("#"))return{r:parseInt(i.slice(1,3),16)||0,g:parseInt(i.slice(3,5),16)||0,b:parseInt(i.slice(5,7),16)||0,a:1};const t=i.match(/^rgba?\s*\(([^)]+)\)$/i);if(t){const e=t[1].split(",").map(s=>s.trim());return{r:Number.parseFloat(e[0])||0,g:Number.parseFloat(e[1])||0,b:Number.parseFloat(e[2])||0,a:e[3]===void 0?1:Number.parseFloat(e[3])}}return{r:0,g:0,b:0,a:1}}function gh(i,t){const e=Hr(i),s=Hr(t),n=s.a,a=Math.round(s.r*n+e.r*(1-n)),o=Math.round(s.g*n+e.g*(1-n)),l=Math.round(s.b*n+e.b*(1-n));return`#${a.toString(16).padStart(2,"0")}${o.toString(16).padStart(2,"0")}${l.toString(16).padStart(2,"0")}`}var tt,it,qt,Mt,Pi,De,Ot,Qe,rt,Yn,Te,as,Zs,Sa,Ca,Ta;class ph{constructor(t){v(this,rt),F(this,"kind","pie"),v(this,tt,[]),v(this,it),v(this,qt,-1),v(this,Mt,[]),v(this,Pi,0),v(this,De,1),v(this,Ot,null),v(this,Qe,[]),c(this,it,S(this,rt,Yn).call(this,lh,t??{}))}getData(){return r(this,tt)}setData(t){const e=t??[];c(this,tt,e),c(this,Mt,new Array(e.length).fill(0)),c(this,De,r(this,it).animate?0:1),c(this,Ot,null);for(const s of r(this,Qe))s()}onDataChanged(t){return r(this,Qe).push(t),()=>{const e=r(this,Qe).indexOf(t);e>=0&&r(this,Qe).splice(e,1)}}updateOptions(t){var e,s;const n=(e=r(this,it).sliceLabels)==null?void 0:e.mode;c(this,it,S(this,rt,Yn).call(this,r(this,it),t??{})),((s=r(this,it).sliceLabels)==null?void 0:s.mode)==="outside"&&n!=="outside"&&c(this,De,r(this,it).animate?0:1),c(this,Ot,null)}getColor(){var t,e;return((t=r(this,tt)[0])==null?void 0:t.color)??((e=r(this,it).colors)==null?void 0:e[0])??"#888"}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[this.getColor()]}applyTheme(t,e){t.typography.fontFamily!==e.typography.fontFamily&&c(this,Ot,null)}hitTest(t,e,s,n,a){var o;if(r(this,tt).length===0)return-1;const l=S(this,rt,as).call(this);if(l<=0)return-1;const h=((o=r(this,Ot))==null?void 0:o.reserve)??0,{cx:u,cy:d,maxR:f}=jr({bitmapWidth:s,bitmapHeight:n,padTop:(a==null?void 0:a.top)??0,padBottom:(a==null?void 0:a.bottom)??0,labelReserve:h}),m=f,p=m*r(this,it).innerRadiusRatio,g=t-u,b=e-d,y=Math.sqrt(g*g+b*b);if(y>m||y<p)return-1;let M=Math.atan2(b,g)+Math.PI/2;M<0&&(M+=Yi);let L=0;for(let x=0;x<r(this,tt).length;x++){const k=S(this,rt,Te).call(this,r(this,tt)[x].value)/l*Yi;if(M>=L&&M<L+k)return x;L+=k}return-1}setHoverIndex(t){return r(this,qt)===t?!1:(c(this,qt,t),!0)}getHoverIndex(){return r(this,qt)}getHoverInfo(t){if(r(this,qt)<0)return null;const e=r(this,tt)[r(this,qt)];if(!e)return null;const s=S(this,rt,as).call(this),n=r(this,it).colors??t.seriesColors;return{label:e.label,value:e.value,percent:s>0?S(this,rt,Te).call(this,e.value)/s*100:0,color:e.color??n[r(this,qt)%n.length]}}getSliceInfo(t){if(r(this,tt).length===0)return null;const e=S(this,rt,as).call(this),s=r(this,it).colors??t.seriesColors;return r(this,tt).map((n,a)=>({label:n.label,value:n.value,percent:e>0?S(this,rt,Te).call(this,n.value)/e*100:0,color:n.color??s[a%s.length]}))}get needsAnimation(){var t;if(!r(this,it).animate)return!1;for(let e=0;e<r(this,Mt).length;e++){const s=e===r(this,qt)?1:0;if(Math.abs(r(this,Mt)[e]-s)>.01)return!0}return((t=r(this,it).sliceLabels)==null?void 0:t.mode)==="outside"&&r(this,De)<.99}dispose(){c(this,Qe,[]),c(this,tt,[]),c(this,Mt,[]),c(this,Pi,0)}_inspectSliceOffsets(){return r(this,Mt)}render(t){if(r(this,tt).length===0)return;const{scope:e,theme:s,padding:n}=t,{context:a,bitmapSize:o,horizontalPixelRatio:l,verticalPixelRatio:h}=e,u=performance.now(),d=r(this,Pi)?Math.min(.05,(u-r(this,Pi))/1e3):0;c(this,Pi,u);const f=S(this,rt,as).call(this);if(f<=0)return;const m=12;for(;r(this,Mt).length<r(this,tt).length;)r(this,Mt).push(0);if(r(this,it).animate)for(let V=0;V<r(this,tt).length;V++){const X=V===r(this,qt)?1:0;r(this,Mt)[V]=Lr(r(this,Mt)[V],X,m,d)}const p=ch(r(this,it).sliceLabels);a.font=`${p.fontSize*l}px ${s.typography.fontFamily}`,p.mode==="outside"&&r(this,it).animate&&c(this,De,Lr(r(this,De),1,6,d));const g=r(this,it).colors??s.seriesColors,b=p.mode==="outside"?S(this,rt,Sa).call(this,a,p,f,l):0,{cx:y,cy:M,maxR:L}=jr({bitmapWidth:o.width,bitmapHeight:o.height,padTop:n.top*h,padBottom:n.bottom*h,labelReserve:b}),x=L,k=x*r(this,it).innerRadiusRatio,C=r(this,it).padAngle*Vn,A=8*l,T=r(this,it).shadow??!1,D=uh(T),B=r(this,it).innerShadow??!1,w=dh(B);let W=-Math.PI/2;for(let V=0;V<r(this,tt).length;V++){const X=r(this,tt)[V],$=S(this,rt,Te).call(this,X.value)/f*Yi,G=W+C/2,xt=W+$-C/2,Tt=W+$/2,_=X.color??g[V%g.length];if(xt<=G){W+=$;continue}const q=r(this,Mt)[V]*A,Z=Math.cos(Tt)*q,K=Math.sin(Tt)*q,Vt=y+Z,kt=M+K;a.beginPath(),a.arc(Vt,kt,x,G,xt),k>0?a.arc(Vt,kt,k,xt,G,!0):a.lineTo(Vt,kt),a.closePath();const Lt=a.createRadialGradient(Vt,kt,k||0,Vt,kt,x);if(Lt.addColorStop(0,mh(_,.15)),B){const oe=Math.max(0,Math.min(.999,1-w.depth));Lt.addColorStop(oe,_),Lt.addColorStop(1,gh(_,w.color))}else Lt.addColorStop(1,_);a.fillStyle=Lt;const Ae=r(this,Mt)[V];if(T||Ae>.01){const oe=T?1:0,qe=Ae;a.shadowColor=T?D.color:"rgba(0,0,0,0.25)",a.shadowBlur=(D.blur*oe+12*qe)*l,a.shadowOffsetX=D.offsetX*oe*l+Z*.3*qe,a.shadowOffsetY=D.offsetY*oe*h+K*.3*qe}a.fill(),a.shadowColor="transparent",a.shadowBlur=0,a.shadowOffsetX=0,a.shadowOffsetY=0,W+=$}if(p.mode==="none")return;W=-Math.PI/2;const P=s.tooltip.textColor;if(p.mode==="outside"){const V=S(this,rt,Ta).call(this,{cx:y,cy:M,outerR:x,total:f,palette:g,labels:p,hpr:l,bitmapHeight:o.height}),X=V.length>1?Math.min(.06,.9/(V.length-1)):0;for(let $=0;$<V.length;$++){const G=V[$];if(G===null)continue;const xt=$*X,Tt=Ss((r(this,De)-xt)/(1-xt),0,1);S(this,rt,Ca).call(this,{context:a,entry:G,textColor:P,labels:p,hpr:l,progress:Tt})}return}const z=k>0?(x+k)/2:x*.65;a.textAlign="center",a.textBaseline="middle";const E=p.minSliceAngle*Vn;for(let V=0;V<r(this,tt).length;V++){const X=r(this,tt)[V],$=S(this,rt,Te).call(this,X.value)/f*Yi;if($>=E){const G=W+$/2,xt=r(this,Mt)[V]*A,Tt=X.color??g[V%g.length],_=S(this,rt,Zs).call(this,X,f,p.content),q=a.measureText(_).width,Z=p.fontSize*1.2*l,K=$<Math.PI?2*z*Math.sin($/2):2*z,Vt=q>K-4*l,kt=k>0&&z-k<Z;if(!Vt&&!kt){const Lt=y+Math.cos(G)*(z+xt),Ae=M+Math.sin(G)*(z+xt);a.fillStyle=fh(Tt)?"#000000":"#ffffff",a.fillText(_,Lt,Ae)}}W+=$}}}tt=new WeakMap,it=new WeakMap,qt=new WeakMap,Mt=new WeakMap,Pi=new WeakMap,De=new WeakMap,Ot=new WeakMap,Qe=new WeakMap,rt=new WeakSet,Yn=function(i,t){const e={...i,...t};return t.sliceLabels!==void 0&&(e.sliceLabels=hh(i.sliceLabels,t.sliceLabels)),e},Te=function(i){return Number.isFinite(i)&&i>0?i:0},as=function(){let i=0;for(const t of r(this,tt))i+=S(this,rt,Te).call(this,t.value);return i},Zs=function(i,t,e){const s=t>0?S(this,rt,Te).call(this,i.value)/t*100:0,n=`${s.toFixed(s>=10?0:1)}%`;return e==="percent"?n:e==="label"?i.label:`${i.label} ${n}`},Sa=function(i,t,e,s){const n=i.font;if(r(this,Ot)&&r(this,Ot).fontScale===s&&r(this,Ot).font===n)return r(this,Ot).reserve;let a=0;for(const h of r(this,tt)){const u=S(this,rt,Zs).call(this,h,e,t.content),d=i.measureText(u).width;d>a&&(a=d)}const o=Math.max(t.distance,t.elbowLen),l=(a+(o+Math.max(0,t.railWidth)+t.legPad+4)*s)/ka;return c(this,Ot,{fontScale:s,font:n,reserve:l}),l},Ca=function(i){const{context:t,entry:e,textColor:s,labels:n,hpr:a,progress:o}=i;if(o<=0)return;const{anchorX:l,anchorY:h,elbowX:u,elbowY:d,side:f,text:m,color:p,labelX:g,labelY:b}=e,y=g+f*n.legPad*a,M=Ss(o/.15,0,1),L=Ss((o-.15)/.45,0,1),x=Ss((o-.6)/.4,0,1);if(t.save(),t.globalAlpha=M,t.fillStyle=p,t.beginPath(),t.arc(l,h,2.5*a,0,Yi),t.fill(),t.restore(),L>0){t.save(),t.globalAlpha=L,t.strokeStyle=p,t.lineWidth=1*a,t.lineCap="round",t.beginPath(),t.moveTo(l,h);const k=l+(u-l)*L,C=h+(d-h)*L;if(t.lineTo(k,C),x>0){const A=u+(g-u)*x,T=d+(b-d)*x;t.lineTo(A,T)}t.stroke(),t.restore()}x>0&&(t.save(),t.globalAlpha=x,t.fillStyle=s,t.textAlign=f>=0?"left":"right",t.textBaseline="middle",t.fillText(m,y,b),t.restore())},Ta=function(i){const{cx:t,cy:e,outerR:s,total:n,palette:a,labels:o,hpr:l,bitmapHeight:h}=i,u=new Array(r(this,tt).length).fill(null),d=o.elbowLen*l,f=Math.max(o.distance,o.elbowLen)*l,m=Math.max(0,o.railWidth)*l,p=[];let g=-Math.PI/2;const b=o.minSliceAngle*Vn;for(let x=0;x<r(this,tt).length;x++){const k=r(this,tt)[x],C=S(this,rt,Te).call(this,k.value)/n*Yi;if(C>=b){const A=g+C/2,T=r(this,Mt)[x]*(8*l),D=Math.cos(A),B=Math.sin(A),w=D>=0?1:-1,W=t+D*(s+T),P=e+B*(s+T),z=t+D*(s+T+d),E=e+B*(s+T+d),V=t+D*(s+T+f)+w*m,X=e+B*(s+T+f),$={anchorX:W,anchorY:P,elbowX:z,elbowY:E,side:w,labelX:V,labelY:X,text:S(this,rt,Zs).call(this,k,n,o.content),color:k.color??a[x%a.length]};u[x]=$,p.push({entry:$})}g+=C}const y=Math.max(1,o.fontSize*o.labelGap)*l,M=o.fontSize*l,L=h-o.fontSize*l;for(const x of[1,-1]){const k=[];for(const T of p)T.entry.side===x&&k.push(T.entry);if(k.length===0)continue;k.sort((T,D)=>T.labelY-D.labelY);const C=[];for(let T=0;T<k.length;T++)for(C.push({count:1,sumIdeal:k[T].labelY,startIdx:T});C.length>=2;){const D=C[C.length-2],B=C[C.length-1],w=D.sumIdeal/D.count,W=B.sumIdeal/B.count,P=w+(D.count-1)*y/2;if(W-(B.count-1)*y/2>=P+y)break;D.count+=B.count,D.sumIdeal+=B.sumIdeal,C.pop()}if(C.length>0){const T=C[0],D=T.sumIdeal/T.count-(T.count-1)*y/2;if(D<M)for(T.sumIdeal+=(M-D)*T.count;C.length>=2;){const B=C[0],w=C[1],W=B.sumIdeal/B.count,P=w.sumIdeal/w.count,z=W+(B.count-1)*y/2;if(P-(w.count-1)*y/2>=z+y)break;B.count+=w.count,B.sumIdeal+=w.sumIdeal,C.splice(1,1)}}if(C.length>0){const T=C[C.length-1],D=T.sumIdeal/T.count+(T.count-1)*y/2;if(D>L)for(T.sumIdeal-=(D-L)*T.count;C.length>=2;){const B=C[C.length-2],w=C[C.length-1],W=B.sumIdeal/B.count,P=w.sumIdeal/w.count,z=W+(B.count-1)*y/2;if(P-(w.count-1)*y/2>=z+y)break;B.count+=w.count,B.sumIdeal+=w.sumIdeal,C.pop()}}const A=(M+L)/2;for(const T of C){const D=(T.count-1)*y,B=T.sumIdeal/T.count;D>L-M&&B-D/2<M&&(T.sumIdeal=A*T.count)}for(const T of C){const D=T.sumIdeal/T.count;for(let B=0;B<T.count;B++)k[T.startIdx+B].labelY=D+(B-(T.count-1)/2)*y}}for(const x of p){const k=x.entry,C=k.labelY-k.anchorY;let A;if(Math.abs(C)<=d){const B=k.side*Math.sqrt(Math.max(0,d*d-C*C));A=k.anchorX+B}else A=(k.anchorX+k.labelX)/2;const T=Math.min(k.anchorX,k.labelX),D=Math.max(k.anchorX,k.labelX);k.elbowX=Math.max(T,Math.min(D,A)),k.elbowY=k.labelY}return u};function As(i){if(!i.startsWith("#")||i.length!==4)return i;const t=i[1],e=i[2],s=i[3];return`#${t}${t}${e}${e}${s}${s}`}function La(i){const t=As(i);return!t.startsWith("#")||t.length<7?!1:parseInt(t.slice(1,3),16)*.299+parseInt(t.slice(3,5),16)*.587+parseInt(t.slice(5,7),16)*.114<128}function ot(i){var t,e,s,n,a,o,l,h,u,d,f,m,p,g,b,y,M,L,x,k,C,A,T,D,B,w,W,P,z,E,V,X,$,G;const{name:xt="Custom",description:Tt,fontUrl:_=null}=i,q=As(i.background),Z=La(q),K=Z?"#d1d4dc":"#24292f",Vt=Z?"#787b86":"#8b949e",kt=Z?"#26a69a":"#2da44e",Lt=Z?"#ef5350":"#cf222e",Ae=Z?"#2962ff":"#0969da",oe=Z?"rgba(42,46,57,0.6)":"rgba(200,200,200,0.5)",qe=Z?"rgba(150,150,150,0.5)":"rgba(170,170,170,0.3)",Ds=Z?os(q,.1):jn(q,.05),zs=Z?Fi(q,.92):Fi(q,.95),Es=Z?Fi(os(q,.15),.6):"rgba(200,200,200,0.5)",Vs=gn,fi=((e=(t=i.candlestick)==null?void 0:t.up)==null?void 0:e.body)??kt,mi=((n=(s=i.candlestick)==null?void 0:s.down)==null?void 0:n.body)??Lt,gi=zt(fi),st=zt(mi),yt=((a=i.line)==null?void 0:a.color)??Ae,It=((o=i.tooltip)==null?void 0:o.textColor)??K,fr=((l=i.axis)==null?void 0:l.textColor)??Vt,ho=((h=i.typography)==null?void 0:h.fontFamily)??Vs,mr=((u=i.typography)==null?void 0:u.fontSize)??12,co=i.chartGradient??(Z?[os(q,.04),jn(q,.06)]:[os(q,.06),q]),uo={background:q,chartGradient:co,typography:{fontFamily:ho,fontSize:mr},grid:{color:((d=i.grid)==null?void 0:d.color)??oe,style:((f=i.grid)==null?void 0:f.style)??"solid"},candlestick:{up:{body:fi,wick:((p=(m=i.candlestick)==null?void 0:m.up)==null?void 0:p.wick)??gi},down:{body:mi,wick:((b=(g=i.candlestick)==null?void 0:g.down)==null?void 0:b.wick)??st}},line:{color:yt,width:((y=i.line)==null?void 0:y.width)??1,areaTopColor:((M=i.line)==null?void 0:M.areaTopColor)??Fi(yt,.08),areaBottomColor:((L=i.line)==null?void 0:L.areaBottomColor)??Fi(yt,.01)},seriesColors:i.seriesColors??[yt,kt,Lt],bands:{upper:((x=i.bands)==null?void 0:x.upper)??yt,lower:((k=i.bands)==null?void 0:k.lower)??st},crosshair:{color:((C=i.crosshair)==null?void 0:C.color)??qe,labelBackground:((A=i.crosshair)==null?void 0:A.labelBackground)??Ds,labelTextColor:((T=i.crosshair)==null?void 0:T.labelTextColor)??It},axis:{fontSize:((D=i.axis)==null?void 0:D.fontSize)??10,textColor:fr,...(B=i.axis)!=null&&B.x?{x:{...i.axis.x}}:{},...(w=i.axis)!=null&&w.y?{y:{...i.axis.y}}:{}},yLabel:{fontSize:((W=i.yLabel)==null?void 0:W.fontSize)??11,upBackground:((P=i.yLabel)==null?void 0:P.upBackground)??gi,downBackground:((z=i.yLabel)==null?void 0:z.downBackground)??st,neutralBackground:((E=i.yLabel)==null?void 0:E.neutralBackground)??Ds,textColor:((V=i.yLabel)==null?void 0:V.textColor)??"#ffffff"},tooltip:{fontSize:((X=i.tooltip)==null?void 0:X.fontSize)??mr,background:(($=i.tooltip)==null?void 0:$.background)??zs,textColor:It,borderColor:((G=i.tooltip)==null?void 0:G.borderColor)??Es},navigator:bh({dark:Z,bg:q,neutralFg:fr,upBody:fi,downBody:mi,upBase:gi,downBase:st,config:i.navigator})};return{name:xt,description:Tt,fontUrl:_,dark:Z,theme:uo}}function bh(i){var t,e,s,n,a,o,l,h,u,d,f,m,p,g,b,y,M,L;const{dark:x,bg:k,neutralFg:C,upBody:A,downBody:T,upBase:D,downBase:B,config:w}=i,W=(w==null?void 0:w.background)??"transparent",P=x?"rgba(255,255,255,1)":"rgba(0,0,0,1)",z=((t=w==null?void 0:w.handle)==null?void 0:t.color)??Ui(P,.3),E=((e=w==null?void 0:w.mask)==null?void 0:e.fill)??Ui(k,x?.78:.82);return{height:(w==null?void 0:w.height)??48,background:W,borderColor:(w==null?void 0:w.borderColor)??Ui(C,x?.18:.22),line:{color:((s=w==null?void 0:w.line)==null?void 0:s.color)??C,width:((n=w==null?void 0:w.line)==null?void 0:n.width)??1,areaTopColor:((a=w==null?void 0:w.line)==null?void 0:a.areaTopColor)??Ui(C,x?.22:.18),areaBottomColor:((o=w==null?void 0:w.line)==null?void 0:o.areaBottomColor)??Ui(C,0)},candlestick:{up:{body:((h=(l=w==null?void 0:w.candlestick)==null?void 0:l.up)==null?void 0:h.body)??A,wick:((d=(u=w==null?void 0:w.candlestick)==null?void 0:u.up)==null?void 0:d.wick)??D},down:{body:((m=(f=w==null?void 0:w.candlestick)==null?void 0:f.down)==null?void 0:m.body)??T,wick:((g=(p=w==null?void 0:w.candlestick)==null?void 0:p.down)==null?void 0:g.wick)??B}},window:{fill:((b=w==null?void 0:w.window)==null?void 0:b.fill)??"transparent",border:((y=w==null?void 0:w.window)==null?void 0:y.border)??"transparent",borderWidth:((M=w==null?void 0:w.window)==null?void 0:M.borderWidth)??0},handle:{color:z,width:((L=w==null?void 0:w.handle)==null?void 0:L.width)??6},mask:{fill:E}}}function Ui(i,t){if(i.startsWith("#")&&i.length===7)return Fi(i,t);const e=i.match(/^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return e?`rgba(${e[1]},${e[2]},${e[3]},${t})`:i}function Fi(i,t){const e=As(i),s=parseInt(e.slice(1,3),16),n=parseInt(e.slice(3,5),16),a=parseInt(e.slice(5,7),16);return`rgba(${s}, ${n}, ${a}, ${t})`}function os(i,t){return i.startsWith("#")?wa(As(i),t):i}function jn(i,t){if(!i.startsWith("#"))return i;const e=As(i),s=Math.max(0,Math.round(parseInt(e.slice(1,3),16)*(1-t))),n=Math.max(0,Math.round(parseInt(e.slice(3,5),16)*(1-t))),a=Math.max(0,Math.round(parseInt(e.slice(5,7),16)*(1-t)));return`#${s.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}${a.toString(16).padStart(2,"0")}`}function H(i){const t=i.startsWith("#")&&i.length===7?[os(i,.2),jn(i,.15)]:[i,i];return Object.defineProperty(t,"source",{value:i,enumerable:!1}),t}const fn="'JetBrains Mono', 'Fira Code', monospace",mn="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap",gn="'Outfit', -apple-system, BlinkMacSystemFont, sans-serif",rr="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap",Ia="'Roboto Mono', monospace",Wa="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap",vh="'IBM Plex Mono', monospace",yh="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap",ar="'Fira Code', monospace",or="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&display=swap",Ra="'Source Code Pro', monospace",Aa="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600&display=swap",xh="'Space Mono', monospace",wh="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap",lr="'Plus Jakarta Sans', sans-serif",hr="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap",Mh="'Caveat', 'Comic Sans MS', cursive",kh="https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap",Pa=ot({name:"Catppuccin",description:"Pastel tones on a mocha base",background:"#1e1e2e",grid:{color:"rgba(90,92,116,0.2)"},candlestick:{up:{body:H("#a6e3a1"),wick:"#a6e3a1"},down:{body:H("#f38ba8"),wick:"#f38ba8"}},line:{color:"#89b4fa"},seriesColors:["#89b4fa","#fab387","#a6e3a1","#cba6f7","#f38ba8","#f9e2af","#94e2d5","#eba0ac","#74c7ec","#cba6f7"],bands:{upper:"#74c7ec",lower:"#f38ba8"},crosshair:{color:"rgba(108,112,134,0.7)",labelBackground:"#313244"},axis:{textColor:"#6c7086"},tooltip:{background:"rgba(30,30,46,0.92)",textColor:"#cdd6f4",borderColor:"rgba(49,50,68,0.6)"},typography:{fontFamily:gn},fontUrl:rr});let Sh=0;var ut,nt,Ht,ls,O,ft,hs,dt,St,mt,ze,Bi,Zt,Js,Qs,be,cs,ti,Cs,rn,Wt,Q,ci,an,ne,et,Oi,Le,on,gt,ji,Bt,bt,Di,ge,us,ds,j,Ee,Fa,Ba,Da,za,fs,Ct,li,Hi,Ts,Ls,Hn,Ea,Xi,ms,Va,Tn,ui,$n,On,Xt;class Ya extends un{constructor(t,e){var s,n,a,o,l,h;super(),v(this,j),v(this,ut),v(this,nt),v(this,Ht),F(this,"timeScale"),F(this,"yScale"),v(this,ls),v(this,O,[]),v(this,ft),v(this,hs),v(this,dt,6e4),v(this,St,null),v(this,mt,{}),v(this,ze,null),v(this,Bi,{}),v(this,Zt,{left:"idle",right:"idle"}),v(this,Js,{left:null,right:null}),v(this,Qs),v(this,be,0),v(this,cs,!1),v(this,ti,!1),v(this,Cs,!1),v(this,rn,0),v(this,Wt),v(this,Q),v(this,ci),v(this,an,!1),v(this,ne,null),v(this,et,null),v(this,Oi,null),v(this,Le,!1),v(this,on),v(this,gt,{from:0,to:0}),v(this,ji,{min:0,max:0}),v(this,Bt,!0),v(this,bt),v(this,Di,0),v(this,ge),v(this,us,!1),v(this,ds,null),v(this,fs,!1),v(this,Ct,!1),v(this,li,!1),v(this,Hi),v(this,Ts,Number.NaN),v(this,Ls,Number.NaN),e!=null&&e.axis&&(c(this,Bi,e.axis),c(this,mt,{min:(s=e.axis.y)==null?void 0:s.min,max:(n=e.axis.y)==null?void 0:n.max})),c(this,ft,(e==null?void 0:e.theme)??Pa.theme),c(this,hs,((a=e==null?void 0:e.grid)==null?void 0:a.visible)!==!1),c(this,Wt,nn.resolve(e==null?void 0:e.animations)),c(this,on,ul((o=e==null?void 0:e.viewport)==null?void 0:o.maxVisibleBars)),c(this,bt,kr(e==null?void 0:e.padding)),c(this,ci,new gl);const u=r(this,Wt).axis.y,d=r(this,Wt).axis.x;c(this,Q,Mo({initial:{yRange:{min:0,max:0},xRange:{from:0,to:0}},y:{curve:u.curve,settleMs:u.settleMs,stickyMs:u.stickyMs,stickyFloorMs:u.stickyFloorMs,gestureMs:u.gestureMs,toggleMs:r(this,Wt).toggleMs},x:{curve:d.curve,settleMs:d.settleMs,gestureMs:d.gestureMs},computeXTarget:()=>S(this,j,Ea).call(this),computeYTarget:({xTarget:b})=>S(this,j,Hn).call(this,b),onWake:()=>{var b;return(b=r(this,nt))==null?void 0:b.markDirty()}})),c(this,Qs,e==null?void 0:e.onEdgeReached),c(this,Hi,(l=e==null?void 0:e.viewport)==null?void 0:l.initialRange);const f=cl(e==null?void 0:e.perf);c(this,ge,f.monitor),c(this,us,f.ownsMonitor),c(this,ut,new Vo(t,r(this,ge)??void 0)),this.timeScale=new ga,this.yScale=new va;const m=r(this,Wt).axis.ticksMs;this.timeScale.tickTracker.setFadeMs(m),this.yScale.tickTracker.setFadeMs(m);const p=r(this,ge);p?(c(this,nt,new Hs(b=>{p.resetDrawCalls("main");const y=performance.now();this.renderMain(b),p.recordFrame("main",performance.now()-y,b)})),c(this,Ht,new Hs(b=>{p.resetDrawCalls("overlay");const y=performance.now();this.renderOverlay(b),p.recordFrame("overlay",performance.now()-y,b)})),f.showHud&&c(this,ds,new Al(t,p))):(c(this,nt,new Hs(b=>this.renderMain(b))),c(this,Ht,new Hs(b=>this.renderOverlay(b))));const g=(e==null?void 0:e.interactive)!==!1;c(this,ls,g?new Cl(r(this,ut).canvas,this,this.timeScale,this.yScale):null),r(this,ut).on("resize",()=>{this.syncScales(),this.renderMain(),this.emit("viewportChange")}),this.syncScales(),(h=r(this,ls))==null||h.on("crosshairMove",b=>{c(this,St,b),r(this,Ht).markDirty(),this.emit("crosshairMove",b),S(this,j,za).call(this,b)})}get yAxisWidth(){const t=r(this,Bi).y;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.width)??55}get xAxisHeight(){const t=r(this,Bi).x;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.height)??30}getOverlayVersion(){return r(this,rn)}addSeries(t,e={}){var s;const{layers:n,id:a,...o}=e,l=n??1,h={...r(this,Wt).defaults(t),...o,...r(this,Wt).overrides(t)},u=S(this,j,Ba).call(this,t,l,h),d=S(this,j,Fa).call(this,a);return(s=u.onDataChanged)==null||s.call(u,()=>this.onDataChanged()),r(this,O).push({id:d,label:o.label,renderer:u,visible:!0}),c(this,ze,null),this.emit("seriesChange"),S(this,j,Ee).call(this),d}removeSeries(t){const e=r(this,O).findIndex(s=>s.id===t);e>=0&&(r(this,O)[e].renderer.dispose(),r(this,O).splice(e,1),c(this,ze,null),r(this,nt).markDirty(),this.emit("seriesChange"),S(this,j,Ee).call(this))}getAnimationState(){return r(this,Q).getAnimationState()}setSeriesData(t,e,s){const n=r(this,O).find(a=>a.id===t);n&&(c(this,fs,!0),n.renderer.setData(e,s))}appendData(t,e,s){const n=r(this,O).find(a=>a.id===t);n===void 0||n.renderer.appendPoint===void 0||n.renderer.appendPoint(e,s)}updateData(t,e,s){var n,a;const o=r(this,O).find(l=>l.id===t);(a=o==null?void 0:(n=o.renderer).updateLastPoint)==null||a.call(n,e,s)}keepLast(t,e,s){var n,a;const o=r(this,O).find(l=>l.id===t);(a=o==null?void 0:(n=o.renderer).keepLast)==null||a.call(n,e,s)}updateSeriesOptions(t,e){const s=r(this,O).find(d=>d.id===t);if(!s)return;const n=s.label,a=s.renderer.getLayerColors().slice(),o=r(this,Wt).overrides(s.renderer.kind);s.renderer.updateOptions({...e,...o}),"label"in e&&typeof e.label=="string"&&(s.label=e.label),r(this,nt).markDirty();const l=s.renderer.getLayerColors(),h=a.length!==l.length||a.some((d,f)=>d!==l[f]),u=n!==s.label;(h||u)&&S(this,j,Ee).call(this)}batch(t){Rn(this,be)._++;try{t()}finally{if(--Rn(this,be)._<=0){if(c(this,be,0),r(this,cs))c(this,cs,!1),c(this,ti,!1),this.onDataChanged();else if(r(this,ti)){c(this,ti,!1),c(this,Ct,!0);const e=performance.now();r(this,Q).onAxisReconfig(e),S(this,j,Xt).call(this,e),r(this,nt).markDirty()}r(this,Cs)&&(c(this,Cs,!1),this.emit("overlayChange"))}}}setSeriesVisible(t,e){var s,n;const a=r(this,O).find(h=>h.id===t);if(!a||a.visible===e)return;a.visible=e,S(this,j,Ee).call(this);const o=r(this,Wt).toggleMs;if((n=(s=a.renderer).setAlpha)==null||n.call(s,e?1:0,o),r(this,nt).markDirty(),r(this,be)>0){c(this,ti,!0);return}c(this,Ct,!0);const l=performance.now();r(this,Q).onSeriesVisibilityChanged(l),S(this,j,Xt).call(this,l)}getAutoScroll(){return r(this,Bt)}isSeriesVisible(t){var e;return((e=r(this,O).find(s=>s.id===t))==null?void 0:e.visible)??!0}setLayerVisible(t,e,s){var n,a;const o=r(this,O).find(u=>u.id===t);if(!o||o.renderer.getLayerCount()<=1||o.renderer.isLayerVisible(e)===s)return;o.renderer.setLayerVisible(e,s),S(this,j,Ee).call(this);const l=r(this,Wt).toggleMs;if((a=(n=o.renderer).setLayerAlpha)==null||a.call(n,e,s?1:0,l),r(this,nt).markDirty(),r(this,be)>0){c(this,ti,!0);return}c(this,Ct,!0);const h=performance.now();r(this,Q).onSeriesVisibilityChanged(h),S(this,j,Xt).call(this,h)}isLayerVisible(t,e){const s=r(this,O).find(n=>n.id===t);return(s==null?void 0:s.renderer.isLayerVisible(e))??!0}fitContent(){const{first:t,last:e}=this.getDataBounds();if(t===void 0||e===void 0)return;const s=r(this,ut).size.media.width-this.yAxisWidth;S(this,j,Xi).call(this,t,e,s),S(this,j,ms).call(this,{xEase:!0})}getVisibleRange(){return r(this,gt).from===0&&r(this,gt).to===0?r(this,Q).getAnimationState().xRange:r(this,gt)}getDataRange(){return r(this,ne)===null||r(this,et)===null?null:{from:r(this,ne),to:r(this,et)}}setVisibleRange(t,e){if(typeof t=="number"){if(!Number.isInteger(t)||t<2)return;const{first:o,last:l}=this.getDataBounds();if(o===void 0||l===void 0)return;const h=Math.max(o,l-(t-1)*r(this,dt)),u=r(this,ut).size.media.width-this.yAxisWidth;S(this,j,Xi).call(this,h,l,u),S(this,j,ms).call(this);return}if("bars"in t){if(!Number.isInteger(t.bars)||t.bars<2)return;const o=Et(t.from),l=o+t.bars*r(this,dt);c(this,Bt,r(this,et)!==null&&r(this,et)>=o&&r(this,et)<=l),S(this,j,ui).call(this,{from:o,to:l},{emitChange:!0}),c(this,Le,!0),S(this,j,ms).call(this);return}const s=Et(t.from),n=Et(t.to);c(this,Bt,r(this,et)!==null&&r(this,et)>=s&&r(this,et)<=n),c(this,Le,!1);const a=S(this,j,ui).call(this,{from:s,to:n},{emitChange:!0});if(e!=null&&e.gesture){a&&S(this,j,Va).call(this);return}S(this,j,ms).call(this)}getYRange(){return r(this,ji)}getCrosshairPosition(){return r(this,St)}setCrosshair(t){if(t===null){if(r(this,St)===null)return;c(this,St,null),r(this,Ht).markDirty(),this.emit("crosshairMove",null);return}const{time:e}=t;if(!Number.isFinite(e))return;const s=r(this,St);let n;if(t.y!==void 0)n=t.y;else if(s!==null)n=s.y;else{const l=r(this,ji);n=(l.min+l.max)/2}if(!Number.isFinite(n)||s!==null&&s.time===e&&s.y===n)return;const a=this.timeScale.timeToX(e),o=this.yScale.valueToY(n);c(this,St,{mediaX:a,mediaY:o,time:e,y:n}),r(this,Ht).markDirty(),this.emit("crosshairMove",r(this,St))}getLastValue(t){return ca(t,r(this,O),r(this,Q).getAnimationState().xRange)}getPreviousClose(t){return Jo(t,r(this,O))}getLastData(t){const e=r(this,O).find(s=>s.id===t);return!e||e.renderer.kind==="pie"?null:e.renderer.getLastDataPoint()}getDataAtTime(t,e){var s,n;const a=r(this,O).find(o=>o.id===t);return a?((n=(s=a.renderer).getDataAtTime)==null?void 0:n.call(s,e,r(this,dt)))??null:null}getLayerSnapshots(t,e){var s,n;const a=r(this,O).find(o=>o.id===t);return a!=null&&a.visible?((n=(s=a.renderer).getLayerSnapshots)==null?void 0:n.call(s,e,r(this,dt)))??null:null}getSeriesIds(){return r(this,ze)||c(this,ze,r(this,O).map(t=>t.id)),r(this,ze).slice()}getSeriesIdsByType(t,e){const s=(e==null?void 0:e.visibleOnly)===!0,n=(e==null?void 0:e.singleLayerOnly)===!0,a=[];for(const o of r(this,O)){const l=o.renderer.kind==="pie";if(t==="pie"&&!l||t==="time"&&l)continue;const h=o.renderer.getLayerCount();if(!(n&&h>1)){if(s){if(!o.visible)continue;if(h>1){let u=!1;for(let d=0;d<h;d++)if(o.renderer.isLayerVisible(d)){u=!0;break}if(!u)continue}}a.push(o.id)}}return a}getStackedLastValue(t){return Zo(t,r(this,O),r(this,Q).getAnimationState().xRange)}getLayerLastSnapshots(t){var e,s;const n=r(this,O).find(a=>a.id===t);return((s=n==null?void 0:(e=n.renderer).getLayerLastSnapshots)==null?void 0:s.call(e))??null}listSeriesForTest(){return r(this,O).map(t=>({id:t.id,renderer:t.renderer}))}getSeriesColor(t){const e=r(this,O).find(s=>s.id===t);return e?e.renderer.getLayerColors()[0]??r(this,ft).line.color:null}getSeriesLabel(t){var e;return(e=r(this,O).find(s=>s.id===t))==null?void 0:e.label}getSeriesLayers(t){const e=r(this,O).find(a=>a.id===t);if(!e)return null;const s=e.renderer.getLayerCount();if(s<=1)return null;const n=e.renderer.getLayerColors();return Array.from({length:s},(a,o)=>({color:n[o%n.length]}))}getSliceInfo(t){var e,s;const n=r(this,O).find(a=>a.id===t);return((s=n==null?void 0:(e=n.renderer).getSliceInfo)==null?void 0:s.call(e,r(this,ft)))??null}getHoverInfo(t){var e,s;const n=r(this,O).find(a=>a.id===t);return((s=n==null?void 0:(e=n.renderer).getHoverInfo)==null?void 0:s.call(e,r(this,ft)))??null}setTheme(t){const e=r(this,ft);c(this,ft,t);for(const s of r(this,O))s.renderer.applyTheme(t,e);r(this,nt).markDirty(),S(this,j,Ee).call(this)}getTheme(){return r(this,ft)}setAxis(t){var e,s;const n=this.yAxisWidth,a=this.xAxisHeight;c(this,Bi,t),c(this,mt,{min:(e=t.y)==null?void 0:e.min,max:(s=t.y)==null?void 0:s.max}),c(this,Ct,!0);const o=performance.now();r(this,Q).onAxisReconfig(o),S(this,j,Xt).call(this,o),(this.yAxisWidth!==n||this.xAxisHeight!==a)&&this.syncScales(),r(this,nt).markDirty()}setYAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.yScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.yScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),r(this,nt).markDirty())}setTimeAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.timeScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.timeScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),r(this,nt).markDirty())}getMediaSize(){return r(this,ut).size.media}getLayout(){const t=r(this,ut).size.media,e=this.yAxisWidth,s=this.xAxisHeight;return{chartArea:{x:0,y:0,width:t.width-e,height:t.height-s},yAxisWidth:e,xAxisHeight:s}}getDataInterval(){return r(this,dt)}setPadding(t){const e=r(this,bt);c(this,bt,kr(t));const s=r(this,bt),n=!Sr(e.left,s.left)||!Sr(e.right,s.right),a=e.top!==s.top||e.bottom!==s.bottom;if(n){const{first:o,last:l}=this.getDataBounds();if(o!==void 0&&l!==void 0){const h=r(this,ut).size.media.width-this.yAxisWidth;S(this,j,Xi).call(this,o,l,h)}}if(n||a){c(this,Ct,!0);const o=performance.now();r(this,Q).onAxisReconfig(o),S(this,j,Xt).call(this,o)}this.syncScales(),r(this,nt).markDirty(),a&&this.emit("viewportChange")}setGrid(t){c(this,hs,t.visible),r(this,nt).markDirty()}setEdgeState(t,e){r(this,Zt)[t]!==e&&(r(this,Zt)[t]=e,r(this,Ht).markDirty())}getEdgeState(t){return r(this,Zt)[t]}setYLabel(t){}destroy(){var t,e,s;for(const n of r(this,O))n.renderer.dispose();c(this,O,[]),c(this,ze,null),r(this,nt).destroy(),r(this,Ht).destroy(),(t=r(this,ls))==null||t.destroy(),r(this,ut).destroy(),(e=r(this,ds))==null||e.destroy(),c(this,ds,null),r(this,us)&&((s=r(this,ge))==null||s.destroy()),c(this,ge,null),c(this,us,!1),this.removeAllListeners()}getPerfMonitor(){return r(this,ge)}getDataBounds(){let t,e;for(const s of r(this,O)){if(!s.visible||s.renderer.kind==="pie")continue;const n=s.renderer.getTimeBounds();n!==null&&((t===void 0||n.first<t)&&(t=n.first),(e===void 0||n.last>e)&&(e=n.last))}return{first:t,last:e}}onDataChanged(){if(r(this,be)>0){c(this,cs,!0);return}this.updateDataInterval();const{first:t,last:e}=this.getDataBounds();t!==void 0&&c(this,ne,t),e!==void 0&&(c(this,Oi,r(this,et)),c(this,et,e));const s=r(this,fs);c(this,fs,!1);const n=!r(this,Ct)&&t!==void 0;s&&(this.yScale.tickTracker.reset(),this.timeScale.tickTracker.reset()),c(this,an,s);const a=performance.now();s||n?r(this,Q).onDataReplaced(a):r(this,Q).onPointAppended(a),r(this,Q).lastXTarget!==null&&c(this,li,!0),t!==void 0&&c(this,Ct,!0),S(this,j,Xt).call(this,a),this.syncScales(),n?this.renderMain():r(this,nt).markDirty(),this.emit("dataUpdate"),S(this,j,Ee).call(this)}updateDataInterval(){for(const t of r(this,O)){if(t.renderer.kind==="pie")continue;const e=t.renderer.sampleTimes(20);if(e.length>=2){c(this,dt,na(e));break}}}pan(t,e=r(this,Di)){var s;e>0&&c(this,Di,e),c(this,Le,!1);const n=ll({currentLogical:r(this,gt),timeDelta:t,chartWidth:e,dataInterval:r(this,dt),padding:{left:r(this,bt).left,right:r(this,bt).right},dataStart:r(this,ne),dataEnd:r(this,et)});n.newLogical!==null&&(c(this,Bt,!n.autoScrollOff),S(this,j,ui).call(this,n.newLogical,{emitChange:!0}),n.edgeReached!==null&&(r(this,Js)[n.edgeReached.side]=n.edgeReached.boundaryTime,(s=r(this,Qs))==null||s.call(this,n.edgeReached)),r(this,ci).pause(),S(this,j,On).call(this))}zoomAt(t,e,s=r(this,Di)){s>0&&c(this,Di,s),c(this,Le,!1);const n=hl({currentLogical:r(this,gt),centerTime:t,factor:e,chartWidth:s,dataInterval:r(this,dt),padding:{left:r(this,bt).left,right:r(this,bt).right},dataStart:r(this,ne),dataEnd:r(this,et)});if(n.newLogical===null)return;let a=n.newLogical;if(r(this,Bt)&&r(this,et)!==null){const o=a.to-a.from,l=Ge(r(this,bt).right,o,r(this,dt),s),h=r(this,et)+l;a={from:h-o,to:h},c(this,Oi,r(this,et))}S(this,j,ui).call(this,a,{emitChange:!0}),r(this,ci).pause(),S(this,j,On).call(this)}syncScales(){const t=r(this,ut).size;if(t.media.width===0||t.media.height===0)return;const e=t.media.width-this.yAxisWidth,s=t.media.height-this.xAxisHeight;this.timeScale.update(r(this,Q).getAnimationState().xRange,e,t.horizontalPixelRatio,r(this,dt)),this.yScale.update(r(this,ji),s,t.verticalPixelRatio)}renderMain(t){const e=r(this,ut).size;if(e.media.width===0||e.media.height===0)return;const s=typeof t=="number"?t:performance.now(),n=r(this,Q).tick(s);n.animating&&r(this,nt).markDirty();const a=n.yRange.min,o=n.yRange.max,l=a!==r(this,Ts)||o!==r(this,Ls);if(l){const m=r(this,mt).min!==void 0&&r(this,mt).min!=="auto",p=r(this,mt).max!==void 0&&r(this,mt).max!=="auto",g=e.media.height-this.xAxisHeight;S(this,j,$n).call(this,a,o,g,m,p),c(this,Ts,a),c(this,Ls,o)}if(this.syncScales(),r(this,et)!==null&&!r(this,Bt)){const m=r(this,Q).lastXTarget??r(this,gt),p=m.to-m.from;if(p>0){const g=r(this,ut).size.media.width-this.yAxisWidth,b=Ge(r(this,bt).right,p,r(this,dt),g),y=r(this,dt)*.5;Math.abs(m.to-(r(this,et)+b))<y&&c(this,Bt,!0)}}l&&this.emit("viewportChange");let h=!1,u=!1;r(this,ut).useMainLayer(m=>{var p,g;const{context:b,bitmapSize:y}=m,M=(e.media.width-this.yAxisWidth)*e.horizontalPixelRatio,L=(e.media.height-this.xAxisHeight)*e.verticalPixelRatio;b.clearRect(0,0,y.width,y.height),b.save(),b.beginPath(),b.rect(0,0,M,L),b.clip(),this.yScale.tickTracker.setCurrentTicks(this.yScale.niceTickValues()),this.timeScale.tickTracker.setCurrentTicks(this.timeScale.niceTickValues(r(this,dt)).ticks),this.yScale.tickTracker.tick(s),this.timeScale.tickTracker.tick(s);const x=this.yScale.tickTracker.snapshot(),k=this.timeScale.tickTracker.snapshot();h=x.isAnimating,u=k.isAnimating,(x.isAnimating||k.isAnimating||n.animating)&&this.emit("tickFrame"),r(this,hs)&&wl({scope:m,timeScale:this.timeScale,yScale:this.yScale,theme:r(this,ft),yTicks:x,timeTicks:k});const C=r(this,bt),A={top:C.top,bottom:C.bottom},T=r(this,ge);for(const D of r(this,O)){const B=((g=(p=D.renderer).getAlpha)==null?void 0:g.call(p))??(D.visible?1:0);if(B<=0)continue;const w={scope:m,timeScale:this.timeScale,yScale:this.yScale,theme:r(this,ft),dataInterval:r(this,dt),padding:A,state:n,seriesId:D.id},W=b.globalAlpha;if(B<1&&(b.globalAlpha=W*B),T){const P=performance.now();D.renderer.render(w),T.recordSeries(D.id,performance.now()-P,s)}else D.renderer.render(w);B<1&&(b.globalAlpha=W)}b.restore()});let d=!1;for(const m of r(this,O))if(m.renderer.needsAnimation){d=!0,r(this,nt).markDirty();break}const f=h||u;!n.animating&&!d&&!f&&(this.yScale.tickTracker.markArmed(),this.timeScale.tickTracker.markArmed()),this.renderOverlay()}renderOverlay(t){var e,s;const n=r(this,ut).size;if(n.media.width===0||n.media.height===0)return;let a=!1;for(const h of r(this,O))if(h.visible&&h.renderer.overlayNeedsAnimation){a=!0;break}const o=r(this,Zt).left==="loading"||r(this,Zt).right==="loading",l=r(this,Zt).left!=="idle"||r(this,Zt).right!=="idle";if(r(this,ut).useOverlayLayer(h=>{var u,d;if(!r(this,St)&&!a&&!l)return;const f=(n.media.width-this.yAxisWidth)*n.horizontalPixelRatio,m=(n.media.height-this.xAxisHeight)*n.verticalPixelRatio;if(h.context.save(),h.context.beginPath(),h.context.rect(0,0,f,m),h.context.clip(),r(this,St)&&S(this,j,Da).call(this)){const y=r(this,St).mediaX*n.horizontalPixelRatio,M=r(this,St).mediaY*n.verticalPixelRatio;xl(h,y,M,r(this,ft))}const p=r(this,bt),g={top:p.top,bottom:p.bottom},b=r(this,Q).getAnimationState();for(const y of r(this,O))y.visible&&((d=(u=y.renderer).drawOverlay)==null||d.call(u,{scope:h,timeScale:this.timeScale,yScale:this.yScale,theme:r(this,ft),dataInterval:r(this,dt),padding:g,crosshair:r(this,St),state:b,seriesId:y.id}));l&&Go({scope:h,chartMediaHeight:n.media.height-this.xAxisHeight,timeScale:this.timeScale,theme:r(this,ft),edgeStates:r(this,Zt),resolveBoundary:y=>Ko(y,r(this,Js)[y],this.getDataBounds())}),h.context.restore()}),a){const{from:h,to:u}=this.timeScale.getRange();let d=!1;for(const f of r(this,O))if(!(!f.visible||!f.renderer.overlayNeedsAnimation)&&(((s=(e=f.renderer).hasOverlayContentInRange)==null?void 0:s.call(e,h,u))??!0)){d=!0;break}d&&r(this,Ht).markDirty()}o&&r(this,Ht).markDirty()}}ut=new WeakMap,nt=new WeakMap,Ht=new WeakMap,ls=new WeakMap,O=new WeakMap,ft=new WeakMap,hs=new WeakMap,dt=new WeakMap,St=new WeakMap,mt=new WeakMap,ze=new WeakMap,Bi=new WeakMap,Zt=new WeakMap,Js=new WeakMap,Qs=new WeakMap,be=new WeakMap,cs=new WeakMap,ti=new WeakMap,Cs=new WeakMap,rn=new WeakMap,Wt=new WeakMap,Q=new WeakMap,ci=new WeakMap,an=new WeakMap,ne=new WeakMap,et=new WeakMap,Oi=new WeakMap,Le=new WeakMap,on=new WeakMap,gt=new WeakMap,ji=new WeakMap,Bt=new WeakMap,bt=new WeakMap,Di=new WeakMap,ge=new WeakMap,us=new WeakMap,ds=new WeakMap,j=new WeakSet,Ee=function(){if(Rn(this,rn)._++,r(this,be)>0){c(this,Cs,!0);return}this.emit("overlayChange")},Fa=function(i){if(i&&!r(this,O).some(e=>e.id===i))return i;let t;do t=`series_${++Sh}`;while(r(this,O).some(e=>e.id===t));return t},Ba=function(i,t,e){switch(i){case"candlestick":return new rh(new ua,{up:{...r(this,ft).candlestick.up},down:{...r(this,ft).candlestick.down},...e});case"line":return new oh(t,{colors:t===1?[r(this,ft).line.color]:r(this,ft).seriesColors.slice(0,t),strokeWidth:r(this,ft).line.width,...e});case"bar":return new ql(t,{colors:r(this,ft).seriesColors.slice(0,t),...e});case"pie":return new ph({...e})}},Da=function(){for(const i of r(this,O))if(i.visible&&i.renderer.kind!=="pie")return!0;return!1},za=function(i){const t=r(this,ut).size,e=r(this,bt),s={top:e.top*t.verticalPixelRatio,bottom:e.bottom*t.verticalPixelRatio};let n=!1;for(const a of r(this,O)){if(!a.renderer.hitTest||!a.renderer.setHoverIndex)continue;let o=-1;if(i){const l=i.mediaX*t.horizontalPixelRatio,h=i.mediaY*t.verticalPixelRatio;o=a.renderer.hitTest(l,h,t.bitmap.width,t.bitmap.height,s)}a.renderer.setHoverIndex(o)&&(n=!0)}n&&r(this,nt).markDirty()},fs=new WeakMap,Ct=new WeakMap,li=new WeakMap,Hi=new WeakMap,Ts=new WeakMap,Ls=new WeakMap,Hn=function(i){const t=i??r(this,gt),e=r(this,mt).min!==void 0&&r(this,mt).min!=="auto"&&typeof r(this,mt).min!="number"||r(this,mt).max!==void 0&&r(this,mt).max!=="auto"&&typeof r(this,mt).max!="number"?[]:null,s=yl(t,r(this,O),e);if(s===null)return c(this,Ct,!1),null;const n=Tr(r(this,mt).min,s.min,s.max,e??[],"min"),a=Tr(r(this,mt).max,s.max,s.min,e??[],"max");return{min:n,max:a}},Ea=function(){if(r(this,ne)===null||r(this,et)===null)return null;const{from:i,to:t}=r(this,gt),e=i===0&&t===0,s=r(this,ut).size.media.width-this.yAxisWidth;if(e)return S(this,j,Xi).call(this,r(this,ne),r(this,et),s),r(this,Hi)!==void 0&&(this.setVisibleRange(r(this,Hi)),c(this,Hi,void 0)),r(this,gt);if(!r(this,Bt))return null;if(r(this,an))return S(this,j,Xi).call(this,r(this,ne),r(this,et),s),r(this,gt);const n=vl({currentLogical:r(this,gt),lastTime:r(this,et),prevDataEnd:r(this,Oi),dataInterval:r(this,dt),paddingRight:r(this,bt).right,chartWidth:s,holdUntilFilled:r(this,Le)});return n.releaseHold&&c(this,Le,!1),n.reengageAutoScroll&&c(this,Bt,!0),n.newLogical===null?null:(r(this,ci).observe(performance.now()),r(this,Q).setXSettleMs(r(this,ci).pickSettleMs(r(this,Wt).axis.x.settleMs)),S(this,j,ui).call(this,n.newLogical,{emitChange:!1,skipValidation:!0}),c(this,Oi,r(this,et)),n.newLogical)},Xi=function(i,t,e){const s=r(this,bt),n=qo({firstTime:i,lastTime:t,dataInterval:r(this,dt),maxVisibleBars:r(this,on),chartWidth:e,padding:{left:s.left,right:s.right}});c(this,Le,!1),c(this,Bt,!0),S(this,j,ui).call(this,n,{emitChange:!0})},ms=function(i){const t=r(this,gt);if(t.to<=t.from)return;const e=performance.now();if(!r(this,li)||!r(this,Ct)){S(this,j,Tn).call(this,e);return}r(this,Q).onProgrammaticZoom({xTarget:t,xEase:i==null?void 0:i.xEase},e),S(this,j,Xt).call(this,e)},Va=function(){const i=r(this,gt);if(i.to<=i.from)return;const t=performance.now();if(!r(this,li)||!r(this,Ct)){S(this,j,Tn).call(this,t);return}r(this,Q).onPanZoom({xTarget:i,yAuto:!0},t),S(this,j,Xt).call(this,t)},Tn=function(i){const t=r(this,gt),e=S(this,j,Hn).call(this,t);c(this,li,!0),e!==null&&c(this,Ct,!0),r(this,Q).snap({x:t,y:e??void 0},i),S(this,j,Xt).call(this,i)},ui=function(i,t){var e;const{from:s,to:n}=i;return!Number.isFinite(s)||!Number.isFinite(n)||n<=s||!t.skipValidation&&(n-s)/r(this,dt)<2||r(this,gt).from===s&&r(this,gt).to===n?!1:(c(this,gt,{from:s,to:n}),t.emitChange&&(this.syncScales(),(e=r(this,nt))==null||e.markDirty(),this.emit("viewportChange")),!0)},$n=function(i,t,e,s,n){const a=t-i,o=e>0?r(this,bt).top/e*a:0,l=e>0?r(this,bt).bottom/e*a:0;c(this,ji,{min:s?i:i-l,max:n?t:t+o})},On=function(){const i=r(this,gt);if(i.to<=i.from)return;c(this,li,!0),c(this,Ct,!0);const t=performance.now();r(this,Q).onPanZoom({xTarget:i,yAuto:!0},t),S(this,j,Xt).call(this,t)},Xt=function(i){const t=r(this,Q).tick(i),e=r(this,ut).size;if(e.media.width===0||e.media.height===0)return;const s=r(this,mt).min!==void 0&&r(this,mt).min!=="auto",n=r(this,mt).max!==void 0&&r(this,mt).max!=="auto",a=e.media.height-this.xAxisHeight;S(this,j,$n).call(this,t.yRange.min,t.yRange.max,a,s,n),c(this,Ts,t.yRange.min),c(this,Ls,t.yRange.max),this.syncScales()};const Ni={len:0,firstTime:null,lastTime:null},Ch=20;function cr(i){const{chart:t,id:e,data:s,prev:n,layerIndex:a}=i;if(s.length===0)return t.setSeriesData(e,[],a),{len:0,firstTime:null,lastTime:null};const o=Et(s[0].time),l=Et(s[s.length-1].time),h=n.firstTime!==null&&n.firstTime!==o,u=s.length-n.len,d=n.lastTime!==null&&n.lastTime!==l;if(h&&u===0&&d)t.appendData(e,s[s.length-1],a),t.keepLast(e,s.length,a);else if(n.len===0||s.length<n.len||u>Ch||h)t.setSeriesData(e,s,a);else if(s.length===n.len)t.updateData(e,s[s.length-1],a);else for(let f=n.len;f<s.length;f++)t.appendData(e,s[f],a);return{len:s.length,firstTime:o,lastTime:l}}function Th(i,t){if(i.length<=t||t<=0)return i;const e=i[0].time,s=i[i.length-1].time,n=s-e;if(n<=0)return i;const a=n/t,o=[];let l=0;for(let h=0;h<t;h++){const u=h===t-1?s+1:e+(h+1)*a;let d=null,f=null;for(;l<i.length&&i[l].time<u;){const m=i[l];(d===null||m.value<d.value)&&(d=m),(f===null||m.value>f.value)&&(f=m),l++}if(!(d===null||f===null)){if(d===f){o.push(d);continue}d.time<f.time?o.push(d,f):o.push(f,d)}}return o}function Lh(i,t){if(i.length<=t||t<=0)return i;const e=i[0].time,s=i[i.length-1].time,n=s-e;if(n<=0)return i;const a=n/t,o=[];let l=0;for(let h=0;h<t;h++){const u=h===t-1?s+1:e+(h+1)*a;let d=null;for(;l<i.length&&i[l].time<u;){const f=i[l];d===null?d={time:f.time,open:f.open,high:f.high,low:f.low,close:f.close}:(f.high>d.high&&(d.high=f.high),f.low<d.low&&(d.low=f.low),d.close=f.close),l++}d!==null&&o.push(d)}return o}const $r=8;function ja(i,t){return Math.abs(i-t.left)<=$r?{gesture:"resize-left",snapToCenter:!1}:Math.abs(i-t.right)<=$r?{gesture:"resize-right",snapToCenter:!1}:i>t.left&&i<t.right?{gesture:"pan",snapToCenter:!1}:{gesture:"pan",snapToCenter:!0}}function Ih(i){const{startVisible:t,deltaPx:e,pixelsPerTime:s,dataRange:n}=i,a=t.to-t.from,o=e/s;let l=t.from+o,h=t.to+o;return l<n.from&&(l=n.from,h=l+a),h>n.to&&(h=n.to,l=h-a),l<n.from&&(l=n.from),{from:l,to:h}}function Wh(i){const{edge:t,startVisible:e,deltaPx:s,pixelsPerTime:n,dataRange:a,minSpan:o}=i,l=s/n;if(t==="left"){let d=e.from+l,f=e.to;return d<a.from&&(d=a.from),f-d<o&&(d=f-o),d<a.from&&(d=a.from,f=Math.min(a.to,d+o)),{from:d,to:f}}let h=e.from,u=e.to+l;return u>a.to&&(u=a.to),u-h<o&&(u=h+o),u>a.to&&(u=a.to,h=Math.max(a.from,u-o)),{from:h,to:u}}function Rh(i){const{time:t,startVisible:e,xRange:s}=i,n=e.to-e.from;let a=t-n/2,o=a+n;return a<s.from&&(a=s.from,o=a+n),o>s.to&&(o=s.to,a=o-n),a<s.from&&(a=s.from),{from:a,to:o}}function Ah(i){const{ctx:t,theme:e,mediaWidth:s,mediaHeight:n}=i;t.fillStyle=e.background,t.fillRect(0,0,s,n)}function Ph(i,t,e=!0,s=1){if(t.length<2)return;const{ctx:n,timeScale:a,yScale:o,mediaHeight:l,theme:h}=i,u=s<1&&t.length>=2,d=u?t.length-2:t.length-1;if(e){const f=n.createLinearGradient(0,0,0,l);f.addColorStop(0,h.line.areaTopColor),f.addColorStop(1,h.line.areaBottomColor),n.beginPath();for(let m=0;m<=d;m++){const p=t[m],g=a.timeToX(p.time),b=o.valueToY(p.value);m===0?n.moveTo(g,b):n.lineTo(g,b)}if(n.lineTo(a.timeToX(t[d].time),l),n.lineTo(a.timeToX(t[0].time),l),n.closePath(),n.fillStyle=f,n.fill(),u){n.save(),n.globalAlpha=s,n.beginPath();const m=t[d],p=t[t.length-1],g=a.timeToX(m.time),b=a.timeToX(p.time);n.moveTo(g,o.valueToY(m.value)),n.lineTo(b,o.valueToY(p.value)),n.lineTo(b,l),n.lineTo(g,l),n.closePath(),n.fillStyle=f,n.fill(),n.restore()}}n.beginPath();for(let f=0;f<=d;f++){const m=t[f],p=a.timeToX(m.time),g=o.valueToY(m.value);f===0?n.moveTo(p,g):n.lineTo(p,g)}if(n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),u){n.save(),n.globalAlpha=s,n.beginPath();const f=t[d],m=t[t.length-1];n.moveTo(a.timeToX(f.time),o.valueToY(f.value)),n.lineTo(a.timeToX(m.time),o.valueToY(m.value)),n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),n.restore()}}function Fh(i,t,e=1){if(t.length===0)return;const{ctx:s,timeScale:n,yScale:a,mediaHeight:o,theme:l}=i,h=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.8:2),u=e<1,d=t.length-1;s.fillStyle=l.line.color;for(let f=0;f<t.length;f++){const m=t[f],p=n.timeToX(m.time),g=a.valueToY(m.value),b=Math.max(1,o-g);u&&f===d?(s.save(),s.globalAlpha=e,s.fillRect(p-h/2,g,h,b),s.restore()):s.fillRect(p-h/2,g,h,b)}}function Bh(i,t,e=1){if(t.length===0)return;const{ctx:s,timeScale:n,yScale:a,theme:o}=i,l=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.75:2),h=e<1,u=t.length-1;for(let d=0;d<t.length;d++){const f=t[d],m=f.close>=f.open?o.candlestick.up:o.candlestick.down,p=zt(m.body),g=n.timeToX(f.time),b=a.valueToY(f.open),y=a.valueToY(f.close),M=a.valueToY(f.high),L=a.valueToY(f.low),x=h&&d===u;x&&(s.save(),s.globalAlpha=e),s.strokeStyle=m.wick,s.lineWidth=1,s.beginPath(),s.moveTo(g,M),s.lineTo(g,L),s.stroke();const k=Math.min(b,y),C=Math.max(1,Math.abs(y-b));s.fillStyle=p,s.fillRect(g-l/2,k,l,C),x&&s.restore()}}function Dh(i,t,e){const s=Math.max(e.from,Math.min(e.to,t.from)),n=Math.max(e.from,Math.min(e.to,t.to)),a=i.timeToX(s),o=i.timeToX(n),l=Math.min(a,o),h=Math.max(a,o);return{left:l,right:h,width:Math.max(1,h-l)}}var ee,U,ln,at,ie,_e,Ie,We,ve,ye,di,$i,Ve,tn,en,ei,pe,Re,gs,re,ps,Is,bs,je,vs,ys,xs,ws,Ms,ii,ks,Y,Xn,Pt,Ha,Nn,xe,_i,Ln,In,Os,Or,$a,Oa,Xa,Xr,Nr,bi,Ur;class Na{constructor(t){v(this,Y),v(this,ee),v(this,U),v(this,ln),v(this,at),v(this,ie),v(this,_e),v(this,Ie),v(this,We),v(this,ve),v(this,ye),v(this,di),v(this,$i),v(this,Ve,new ga),v(this,tn,new va),v(this,en,0),v(this,ei,0),v(this,pe,1),v(this,Re,null),v(this,gs,!0),v(this,re,null),v(this,ps,null),v(this,Is,-1),v(this,bs),v(this,je,null),v(this,vs),v(this,ys),v(this,xs),v(this,ws),v(this,Ms),v(this,ii),v(this,ks),c(this,ee,t.container),c(this,at,t.chart),c(this,di,t.data),c(this,$i,t.options??{}),window.getComputedStyle(r(this,ee)).position==="static"&&(r(this,ee).style.position="relative"),c(this,U,document.createElement("canvas")),r(this,U).style.position="absolute",r(this,U).style.left="0",r(this,U).style.top="0",r(this,U).style.height="100%",r(this,U).style.touchAction="none",r(this,ee).appendChild(r(this,U));const e=r(this,U).getContext("2d",{alpha:!0});if(!e)throw new Error("NavigatorController: failed to acquire 2D context");c(this,ln,e),c(this,ie,document.createElement("div")),r(this,ie).dataset.chartNavigatorOverlay="",r(this,ie).style.cssText="position:absolute;left:0;top:0;height:100%;pointer-events:none;",c(this,_e,document.createElement("div")),r(this,_e).style.cssText="position:absolute;left:0;top:0;bottom:0;",c(this,Ie,document.createElement("div")),r(this,Ie).style.cssText="position:absolute;top:0;bottom:0;",c(this,We,document.createElement("div")),r(this,We).style.cssText="position:absolute;top:0;bottom:0;box-sizing:border-box;",c(this,ve,Gr()),c(this,ye,Gr()),r(this,ie).append(r(this,_e),r(this,Ie),r(this,We),r(this,ve),r(this,ye)),r(this,ee).appendChild(r(this,ie)),c(this,vs,()=>S(this,Y,xe).call(this)),c(this,ys,()=>S(this,Y,xe).call(this)),c(this,xs,()=>S(this,Y,xe).call(this)),r(this,at).on("viewportChange",r(this,vs)),r(this,at).on("overlayChange",r(this,ys)),r(this,at).on("tickFrame",r(this,xs)),c(this,ws,n=>S(this,Y,$a).call(this,n)),c(this,Ms,n=>S(this,Y,Oa).call(this,n)),c(this,ii,n=>S(this,Y,Xa).call(this,n)),c(this,ks,()=>{r(this,je)===null&&(r(this,U).style.cursor="default")}),r(this,U).addEventListener("pointerdown",r(this,ws)),r(this,U).addEventListener("pointermove",r(this,Ms)),r(this,U).addEventListener("pointerup",r(this,ii)),r(this,U).addEventListener("pointercancel",r(this,ii)),r(this,U).addEventListener("pointerleave",r(this,ks)),c(this,bs,new ResizeObserver(n=>S(this,Y,Ha).call(this,n[0]))),r(this,bs).observe(r(this,ee)),S(this,Y,Xn).call(this);const s=r(this,ee).getBoundingClientRect();s.width>0&&s.height>0&&S(this,Y,Nn).call(this,s.width,s.height),S(this,Y,xe).call(this)}setData(t){var e;const s=zh(t),n=(s==null?void 0:s.time)??null;if(n!==null&&r(this,ps)!==null&&n!==r(this,ps)){const a=((e=r(this,re))==null?void 0:e.current)??0;c(this,re,new dn({initial:a,duration:cn,easing:hi,lerp:(o,l,h)=>o+(l-o)*h})),r(this,re).setTarget(1)}c(this,ps,n),c(this,Is,(s==null?void 0:s.seriesIndex)??-1),c(this,di,t),S(this,Y,xe).call(this)}setOptions(t){c(this,$i,t),S(this,Y,Xn).call(this),S(this,Y,xe).call(this)}destroy(){r(this,at).off("viewportChange",r(this,vs)),r(this,at).off("overlayChange",r(this,ys)),r(this,at).off("tickFrame",r(this,xs)),r(this,U).removeEventListener("pointerdown",r(this,ws)),r(this,U).removeEventListener("pointermove",r(this,Ms)),r(this,U).removeEventListener("pointerup",r(this,ii)),r(this,U).removeEventListener("pointercancel",r(this,ii)),r(this,U).removeEventListener("pointerleave",r(this,ks)),r(this,bs).disconnect(),r(this,Re)!==null&&(cancelAnimationFrame(r(this,Re)),c(this,Re,null)),r(this,U).remove(),r(this,ie).remove()}get height(){return r(this,$i).height??r(this,at).getTheme().navigator.height}}ee=new WeakMap,U=new WeakMap,ln=new WeakMap,at=new WeakMap,ie=new WeakMap,_e=new WeakMap,Ie=new WeakMap,We=new WeakMap,ve=new WeakMap,ye=new WeakMap,di=new WeakMap,$i=new WeakMap,Ve=new WeakMap,tn=new WeakMap,en=new WeakMap,ei=new WeakMap,pe=new WeakMap,Re=new WeakMap,gs=new WeakMap,re=new WeakMap,ps=new WeakMap,Is=new WeakMap,bs=new WeakMap,je=new WeakMap,vs=new WeakMap,ys=new WeakMap,xs=new WeakMap,ws=new WeakMap,Ms=new WeakMap,ii=new WeakMap,ks=new WeakMap,Y=new WeakSet,Xn=function(){const i=r(this,$i).height;i!==void 0&&(r(this,ee).style.height=`${i}px`)},Pt=function(){return Math.max(0,r(this,en)-r(this,at).yAxisWidth)},Ha=function(i){var t;if(!i)return;const e=(t=i.contentBoxSize)==null?void 0:t[0],s=(e==null?void 0:e.inlineSize)??i.contentRect.width,n=(e==null?void 0:e.blockSize)??i.contentRect.height;s<=0||n<=0||(S(this,Y,Nn).call(this,s,n),S(this,Y,xe).call(this))},Nn=function(i,t){const e=window.devicePixelRatio||1;c(this,en,i),c(this,ei,t),c(this,pe,e);const s=r(this,Y,Pt);r(this,U).width=Math.round(s*e),r(this,U).height=Math.round(t*e),r(this,U).style.width=`${s}px`,r(this,ie).style.width=`${s}px`},xe=function(){r(this,gs)&&r(this,Re)!==null||(c(this,gs,!0),r(this,Re)===null&&c(this,Re,requestAnimationFrame(()=>{c(this,Re,null),c(this,gs,!1),S(this,Y,Xr).call(this)})))},_i=function(i){const t=r(this,U).getBoundingClientRect();return i.clientX-t.left},Ln=function(){const i=S(this,Y,bi).call(this),t=S(this,Y,Ur).call(this);return r(this,Ve).update(i,r(this,Y,Pt),r(this,pe)),r(this,tn).update(t,r(this,ei),r(this,pe)),{xRange:i,yRange:t}},In=function(){return r(this,je)!==null?r(this,at).getVisibleRange():r(this,at).getAnimationState().xRange},Os=function(){return S(this,Y,Ln).call(this),Dh(r(this,Ve),S(this,Y,In).call(this),S(this,Y,bi).call(this))},Or=function(){const i=S(this,Y,bi).call(this),t=i.to-i.from;return t<=0||r(this,Y,Pt)<=0?0:r(this,Y,Pt)/t},$a=function(i){if(i.button!==void 0&&i.button!==0)return;const t=S(this,Y,_i).call(this,i),e=S(this,Y,bi).call(this);if(e.to<=e.from)return;const s=S(this,Y,Os).call(this),n=ja(t,s),a=S(this,Y,Or).call(this);if(a===0)return;let o=r(this,at).getVisibleRange();if(n.snapToCenter){const l=r(this,Ve).xToTime(t),h=Rh({time:l,startVisible:o,xRange:e});r(this,at).setVisibleRange(h),o=h}c(this,je,{pointerId:i.pointerId,gesture:n.gesture,startX:t,startVisible:o,pixelsPerTime:a}),r(this,U).setPointerCapture(i.pointerId),r(this,U).style.cursor=Ua(n.gesture,!0),i.preventDefault()},Oa=function(i){const t=r(this,je);if(t===null){r(this,U).style.cursor=_r(S(this,Y,_i).call(this,i),S(this,Y,Os).call(this));return}if(i.pointerId!==t.pointerId)return;const e=S(this,Y,_i).call(this,i)-t.startX,s=S(this,Y,bi).call(this);let n;if(t.gesture==="pan")n=Ih({startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:s});else{const a=t.gesture==="resize-left"?"left":"right";n=Wh({edge:a,startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:s,minSpan:2*r(this,at).getDataInterval()})}r(this,at).setVisibleRange(n)},Xa=function(i){const t=r(this,je);t===null||i.pointerId!==t.pointerId||(c(this,je,null),r(this,U).hasPointerCapture(i.pointerId)&&r(this,U).releasePointerCapture(i.pointerId),r(this,U).style.cursor=_r(S(this,Y,_i).call(this,i),S(this,Y,Os).call(this)))},Xr=function(){if(r(this,Y,Pt)<=0||r(this,ei)<=0)return;const i=r(this,at).getTheme().navigator,{xRange:t}=S(this,Y,Ln).call(this);r(this,U).width=Math.round(r(this,Y,Pt)*r(this,pe)),r(this,U).height=Math.round(r(this,ei)*r(this,pe)),r(this,U).style.width=`${r(this,Y,Pt)}px`,r(this,ie).style.width=`${r(this,Y,Pt)}px`;const e=r(this,ln),s=r(this,U).width,n=r(this,U).height;e.save(),e.clearRect(0,0,s,n),e.scale(r(this,pe),r(this,pe));const a={ctx:e,timeScale:r(this,Ve),yScale:r(this,tn),mediaWidth:r(this,Y,Pt),mediaHeight:r(this,ei),theme:i};r(this,U).style.boxShadow=`inset 0 1px 0 ${i.borderColor}, inset 0 -1px 0 ${i.borderColor}`,Ah(a);let o=1;r(this,re)!==null&&(r(this,re).tick(performance.now()),o=r(this,re).current,r(this,re).animating?S(this,Y,xe).call(this):c(this,re,null));const l=Math.max(1,Math.round(r(this,Y,Pt))),h=r(this,di);if(h.type==="candlestick")Bh(a,Lh(h.points,l),o);else{const u=Wn(h),d=u.length===1,f=r(this,Is)>=0?r(this,Is):u.length-1;for(let m=0;m<u.length;m++){const p=Th(u[m],l),g=m===f?o:1;h.type==="bar"?Fh(a,p,g):Ph(a,p,d,g)}}e.restore(),S(this,Y,Nr).call(this,i,t)},Nr=function(i,t){if(t.to<=t.from)return;const e=S(this,Y,In).call(this),s=Math.max(t.from,Math.min(t.to,e.from)),n=Math.max(t.from,Math.min(t.to,e.to)),a=r(this,Ve).timeToX(s),o=r(this,Ve).timeToX(n),l=Math.min(a,o),h=Math.max(a,o),u=Math.max(1,h-l);r(this,_e).style.width=`${l}px`,r(this,_e).style.background=i.mask.fill,r(this,_e).style.display=l>0?"block":"none";const d=Math.max(0,r(this,Y,Pt)-(l+u));r(this,Ie).style.left=`${l+u}px`,r(this,Ie).style.width=`${d}px`,r(this,Ie).style.background=i.mask.fill,r(this,Ie).style.display=d>0?"block":"none",r(this,We).style.left=`${l}px`,r(this,We).style.width=`${u}px`,r(this,We).style.background=i.window.fill,r(this,We).style.border=i.window.borderWidth>0?`${i.window.borderWidth}px solid ${i.window.border}`:"none";const f=i.handle.width,m=Math.max(1,f/2),p=r(this,at).getTheme().background;r(this,ve).style.left=`${l-f/2}px`,r(this,ve).style.width=`${f}px`,r(this,ve).style.background=i.handle.color,r(this,ve).style.borderRadius=`${m}px`,r(this,ye).style.left=`${l+u-f/2}px`,r(this,ye).style.width=`${f}px`,r(this,ye).style.background=i.handle.color,r(this,ye).style.borderRadius=`${m}px`;for(const g of r(this,ve).children)g.style.background=p;for(const g of r(this,ye).children)g.style.background=p},bi=function(){const i=r(this,di);let t=Number.POSITIVE_INFINITY,e=Number.NEGATIVE_INFINITY,s=0;if(i.type==="candlestick")s=i.points.length,s>0&&(t=i.points[0].time,e=i.points[s-1].time);else for(const a of Wn(i))a.length!==0&&(s+=a.length,a[0].time<t&&(t=a[0].time),a[a.length-1].time>e&&(e=a[a.length-1].time));if(s>=2&&e>t)return{from:t,to:e};if(s===1)return{...r(this,at).getVisibleRange()};const n=r(this,at).getDataRange();return n&&n.to>n.from?n:{...r(this,at).getVisibleRange()}},Ur=function(){const i=r(this,di);let t=1/0,e=-1/0;if(i.type==="candlestick")for(const n of i.points)n.low<t&&(t=n.low),n.high>e&&(e=n.high);else for(const n of Wn(i))for(const a of n)a.value<t&&(t=a.value),a.value>e&&(e=a.value);if(!Number.isFinite(t)||!Number.isFinite(e))return{min:0,max:1};if(t===e){const n=Math.abs(t)*.05||1;return{min:t-n,max:e+n}}const s=(e-t)*.2;return{min:t-s,max:e+s}};function Wn(i){return"series"in i?i.series:[i.points]}function zh(i){if(i.type==="candlestick"){const n=i.points.length;return n===0?null:{time:i.points[n-1].time,seriesIndex:-1}}const t="series"in i?i.series:[i.points];let e=null,s=-1;for(let n=0;n<t.length;n++){const a=t[n];if(a.length===0)continue;const o=a[a.length-1].time;(e===null||o>e)&&(e=o,s=n)}return e===null?null:{time:e,seriesIndex:s}}function Ua(i,t){return i==="resize-left"||i==="resize-right"?"ew-resize":t?"grabbing":"grab"}function _r(i,t){return Ua(Eh(i,t),!1)}function Eh(i,t){return ja(i,t).gesture}function Gr(){const i=document.createElement("div");i.style.cssText="position:absolute;top:0;bottom:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;";for(let t=0;t<3;t++){const e=document.createElement("div");e.style.cssText="width:2px;height:2px;border-radius:50%;flex-shrink:0;",i.appendChild(e)}return i}const Un=new WeakMap;function _a(i,t){var e;return(e=Un.get(i))==null?void 0:e.get(t)}function Ga(i,t,e){let s=Un.get(i);s||(s=new Map,Un.set(i,s)),s.set(t,e)}function Kr(i){return"close"in i?i.close:i.value}function Ka(i,t){if(t==="none"||i.length<=1)return i;const e=[...i];return e.sort((s,n)=>{const a=Kr(s.data),o=Kr(n.data);return t==="asc"?a-o:o-a}),e}function hn(i){const t=Object.freeze({...i.data}),e={id:i.id,seriesId:i.seriesId,layerIndex:i.layerIndex,label:i.label,data:t,color:i.color};return Object.freeze(e)}function ur(i,t){const e=t.sort??"none",s=i.getOverlayVersion(),n=_a(i,t.cacheKey);if(n&&n.version===s&&n.time===t.time&&n.sort===e)return n.data;const a=[];for(const l of i.getSeriesIds()){if(!i.isSeriesVisible(l))continue;const h=i.getSeriesLabel(l);if(i.getSeriesLayers(l)!==null){const d=i.getLayerSnapshots(l,t.time);if(!d)continue;for(const f of d)a.push(hn({id:`${l}_layer${f.layerIndex}`,seriesId:l,layerIndex:f.layerIndex,label:h,data:{time:f.time,value:f.value},color:f.color}));continue}const u=i.getDataAtTime(l,t.time);u&&a.push(hn({id:l,seriesId:l,label:h,data:u,color:i.getSeriesColor(l)??"#888"}))}const o=Object.freeze(Ka(a,e));return Ga(i,t.cacheKey,{version:s,time:t.time,sort:e,data:o}),o}function qa(i,t){const e=t.sort??"none",s=i.getOverlayVersion(),n=_a(i,t.cacheKey);if(n&&n.version===s&&n.time===null&&n.sort===e)return n.data;const a=[];for(const l of i.getSeriesIds()){if(!i.isSeriesVisible(l))continue;const h=i.getSeriesLabel(l),u=i.getLayerLastSnapshots(l);if(u){for(const f of u)a.push(hn({id:`${l}_layer${f.layerIndex}`,seriesId:l,layerIndex:f.layerIndex,label:h,data:{time:f.time,value:f.value},color:f.color}));continue}const d=i.getLastData(l);d&&a.push(hn({id:l,seriesId:l,label:h,data:d,color:i.getSeriesColor(l)??"#888"}))}const o=Object.freeze(Ka(a,e));return Ga(i,t.cacheKey,{version:s,time:null,sort:e,data:o}),o}const Vh=ot({name:"Andromeda",description:"Deep space purples and cosmic blues",background:"#23262e",grid:{color:"rgba(90,88,100,0.2)"},candlestick:{up:{body:H("#96e072"),wick:"#96e072"},down:{body:H("#ee5d43"),wick:"#ee5d43"}},line:{color:"#00e8c6"},seriesColors:["#00e8c6","#f39c12","#96e072","#c74ded","#ee5d43","#ffe66d","#00e8c6","#ee5d43","#7cb7ff","#c74ded"],bands:{upper:"#7cb7ff",lower:"#c74ded"},crosshair:{color:"rgba(102,94,110,0.7)",labelBackground:"#2e3038"},axis:{textColor:"#665e6e"},tooltip:{background:"rgba(35,38,46,0.92)",textColor:"#d5ced9",borderColor:"rgba(50,48,56,0.6)"},typography:{fontFamily:Ia},fontUrl:Wa}),Yh=ot({name:"Ayu Mirage",description:"Warm dark with amber accents",background:"#1f2430",grid:{color:"rgba(82,90,108,0.2)"},candlestick:{up:{body:H("#bae67e"),wick:"#bae67e"},down:{body:H("#f27983"),wick:"#f27983"}},line:{color:"#73d0ff"},seriesColors:["#73d0ff","#ffad66","#bae67e","#d4bfff","#f27983","#ffd580","#95e6cb","#f28779","#5ccfe6","#d4bfff"],bands:{upper:"#5ccfe6",lower:"#f28779"},crosshair:{color:"rgba(92,103,115,0.7)",labelBackground:"#2a3040"},axis:{textColor:"#5c6773"},tooltip:{background:"rgba(31,36,48,0.92)",textColor:"#cbccc6",borderColor:"rgba(42,48,60,0.6)"},typography:{fontFamily:gn},fontUrl:rr}),jh=ot({name:"Dracula",description:"Classic dark with vibrant highlights",background:"#282a36",grid:{color:"rgba(108,113,140,0.2)"},candlestick:{up:{body:H("#50fa7b"),wick:"#50fa7b"},down:{body:H("#ff5555"),wick:"#ff5555"}},line:{color:"#bd93f9"},seriesColors:["#bd93f9","#8be9fd","#50fa7b","#ff79c6","#ffb86c","#f1fa8c","#ff5555","#6272a4","#ff5555","#ff79c6"],bands:{upper:"#8be9fd",lower:"#ff79c6"},crosshair:{color:"rgba(98,114,164,0.7)",labelBackground:"#44475a"},axis:{textColor:"#a0b0d0"},tooltip:{background:"rgba(40,42,54,0.92)",textColor:"#f8f8f2",borderColor:"rgba(68,71,90,0.6)"},typography:{fontFamily:ar},fontUrl:or}),Hh=ot({name:"GitHub Light",description:"Clean and familiar, GitHub-inspired",background:"#fafbfc",chartGradient:["#ffffff","#fafbfc"],grid:{color:"rgba(208,215,222,0.4)"},candlestick:{up:{body:H("#2da44e"),wick:"#2da44e"},down:{body:H("#cf222e"),wick:"#cf222e"}},line:{color:"#0969da",areaTopColor:"rgba(9,105,218,0.05)",areaBottomColor:"rgba(9,105,218,0.005)"},seriesColors:["#0969da","#c4820e","#2da44e","#8250df","#cf222e","#c4820e","#0550ae","#cf222e","#2da44e","#8250df"],bands:{upper:"#0550ae",lower:"#cf222e"},crosshair:{color:"rgba(80,90,100,0.5)",labelBackground:"#f0f3f6"},axis:{textColor:"#8b949e"},tooltip:{background:"rgba(250,251,252,0.95)",textColor:"#24292f",borderColor:"rgba(216,222,228,0.5)"},typography:{fontFamily:lr},fontUrl:hr}),$h=ot({name:"Gruvbox",description:"Retro warm with earthy tones",background:"#282828",grid:{color:"rgba(100,94,90,0.2)"},candlestick:{up:{body:H("#b8bb26"),wick:"#b8bb26"},down:{body:H("#fb4934"),wick:"#fb4934"}},line:{color:"#83a598"},seriesColors:["#83a598","#fe8019","#b8bb26","#d3869b","#fb4934","#fabd2f","#8ec07c","#fb4934","#458588","#d3869b"],bands:{upper:"#83a598",lower:"#d3869b"},crosshair:{color:"rgba(146,131,116,0.7)",labelBackground:"#3c3836"},axis:{textColor:"#928374"},tooltip:{background:"rgba(40,40,40,0.92)",textColor:"#ebdbb2",borderColor:"rgba(60,56,54,0.6)"},typography:{fontFamily:fn},fontUrl:mn}),Oh={name:"Handwritten",description:"Sketch-style with a personal touch",fontUrl:kh,dark:!1,theme:{background:"#fdf5e6",chartGradient:["#fef6e3","#fdf5e6"],typography:{fontFamily:Mh,fontSize:15},grid:{color:"rgba(180,170,150,0.2)",style:"solid"},candlestick:{up:{body:H("#7a9a5e"),wick:"#7a9a5e"},down:{body:H("#b07060"),wick:"#b07060"}},line:{color:"#6a8fa0",width:1,areaTopColor:"rgba(106,143,160,0.08)",areaBottomColor:"rgba(106,143,160,0.01)"},seriesColors:["#6a8fa0","#c09050","#7a9a5e","#8a7098","#b07060","#a09030","#508878","#a06878","#6888a0","#8870a0"],bands:{upper:"#6888a0",lower:"#a06878"},crosshair:{color:"rgba(160,152,128,0.3)",labelBackground:"#f5edd8",labelTextColor:"#5c5040"},axis:{fontSize:13,textColor:"#a09880"},yLabel:{fontSize:15,upBackground:"#7a9a5e",downBackground:"#b07060",neutralBackground:"#e8dcc8",textColor:"#fdf5e6"},tooltip:{fontSize:14,background:"rgba(253,245,230,0.95)",textColor:"#5c5040",borderColor:"rgba(180,170,150,0.3)"},navigator:{height:48,background:"transparent",borderColor:"rgba(106,143,160,0.22)",line:{color:"#92806c",width:1,areaTopColor:"rgba(146,128,108,0.18)",areaBottomColor:"rgba(146,128,108,0)"},candlestick:{up:{body:H("#7a9a5e"),wick:"#7a9a5e"},down:{body:H("#b07060"),wick:"#b07060"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(0,0,0,0.30)",width:6},mask:{fill:"rgba(253,245,230,0.78)"}}}},Xh="'Silkscreen', cursive",Nh="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",Uh=ot({name:"Matrix",background:"#000000",candlestick:{up:{body:H("#00ff41"),wick:"#00ff41"},down:{body:H("#00802a"),wick:"#00802a"}},line:{color:"#00ff41"},seriesColors:["#00ff41","#00cc33","#00992a","#33ff66","#66ff88","#00e639","#00b830","#4dff78","#00ff41","#00cc33"],bands:{upper:"#33ff66",lower:"#00802a"},grid:{color:"rgba(0,255,65,0.08)"},axis:{textColor:"#00cc33"},crosshair:{color:"rgba(0,255,65,0.3)",labelBackground:"#0a1a0a"},tooltip:{background:"rgba(0,10,0,0.95)",textColor:"#00ff41",borderColor:"rgba(0,255,65,0.2)"},typography:{fontFamily:Xh},fontUrl:Nh,chartGradient:["#010a01","#000000"]}),_h=ot({name:"Lavender Mist",background:"#f5f0f4",candlestick:{up:{body:H("#6b8e5e"),wick:"#6b8e5e"},down:{body:H("#b85468"),wick:"#b85468"}},line:{color:"#7c6bc4"},seriesColors:["#7c6bc4","#d4885a","#6b8e5e","#c46b8e","#b85468","#8e7a4e","#4e8e8a","#b85468","#7c6bc4","#c46b8e"],bands:{upper:"#4e8e8a",lower:"#b85468"},grid:{color:"rgba(150,130,155,0.3)",style:"dashed"},axis:{textColor:"#9a88a0"},crosshair:{color:"rgba(80,60,90,0.45)",labelBackground:"#ebe4e8"},tooltip:{background:"rgba(245,240,244,0.95)",textColor:"#3a3050",borderColor:"rgba(150,130,155,0.25)"},typography:{fontFamily:lr},fontUrl:hr,chartGradient:["#f8f4f7","#f5f0f4"]}),Gh=ot({name:"Love",description:"Soft romantic pinks and roses",background:"#fef7f8",chartGradient:["#fffafb","#fef7f8"],grid:{color:"rgba(200,160,175,0.25)",style:"dotted"},candlestick:{up:{body:H("#6a9a6e"),wick:"#6a9a6e"},down:{body:H("#c45070"),wick:"#c45070"}},line:{color:"#a05080"},seriesColors:["#a05080","#d08850","#6a9a6e","#7868a8","#c45070","#c89040","#508890","#c45070","#a05080","#7868a8"],bands:{upper:"#508890",lower:"#c45070"},crosshair:{color:"rgba(120,70,90,0.5)",labelBackground:"#f0dce2"},axis:{textColor:"#b08898"},tooltip:{background:"rgba(253,242,244,0.95)",textColor:"#4a3040",borderColor:"rgba(200,160,175,0.25)"},typography:{fontFamily:gn},fontUrl:rr}),Kh=ot({name:"Material Palenight",description:"Material Design in moonlit hues",background:"#292d3e",grid:{color:"rgba(95,99,120,0.2)"},candlestick:{up:{body:H("#c3e88d"),wick:"#c3e88d"},down:{body:H("#f07178"),wick:"#f07178"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#f78c6c","#c3e88d","#c792ea","#f07178","#ffcb6b","#89ddff","#ff5370","#82aaff","#c792ea"],bands:{upper:"#89ddff",lower:"#f07178"},crosshair:{color:"rgba(103,110,149,0.7)",labelBackground:"#34324a"},axis:{textColor:"#676e95"},tooltip:{background:"rgba(41,45,62,0.92)",textColor:"#a6accd",borderColor:"rgba(55,59,75,0.6)"},typography:{fontFamily:Ia},fontUrl:Wa}),qh="'Silkscreen', cursive",Zh="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",Jh=ot({name:"Monochrome",description:"Pure black and white, pixel font",background:"#ffffff",chartGradient:["#ffffff","#fafafa"],grid:{color:"rgba(0,0,0,0.04)",style:"solid"},candlestick:{up:{body:H("#111111"),wick:"#111111"},down:{body:H("#bbbbbb"),wick:"#bbbbbb"}},line:{color:"#111111"},seriesColors:["#111111","#888888","#bbbbbb","#555555","#999999","#333333","#aaaaaa","#666666","#cccccc","#444444"],bands:{upper:"#555555",lower:"#bbbbbb"},crosshair:{color:"rgba(0,0,0,0.35)",labelBackground:"#f0f0f0"},axis:{textColor:"#b0b0b0"},tooltip:{fontSize:9,background:"rgba(255,255,255,0.97)",textColor:"#222222",borderColor:"rgba(0,0,0,0.04)"},typography:{fontFamily:qh},fontUrl:Zh}),Qh=ot({name:"Mint Breeze",background:"#f6f5ee",candlestick:{up:{body:H("#2e9070"),wick:"#2e9070"},down:{body:H("#d04848"),wick:"#d04848"}},line:{color:"#2a8a80"},seriesColors:["#2a8a80","#d0884a","#2e9070","#7a68b0","#d04848","#a09040","#3a7a9a","#d04848","#2a8a80","#7a68b0"],bands:{upper:"#3a7a9a",lower:"#d04848"},grid:{color:"rgba(100,150,140,0.1)"},axis:{textColor:"#80a098"},crosshair:{color:"rgba(55,80,70,0.45)",labelBackground:"#ece8de"},tooltip:{background:"rgba(246,245,238,0.95)",textColor:"#2a3530",borderColor:"rgba(130,140,115,0.2)"},typography:{fontFamily:xh},fontUrl:wh,chartGradient:["#f8f7f0","#f6f5ee"]}),tc=ot({name:"Monokai Pro",description:"Bold syntax colors on dark gray",background:"#2d2a2e",grid:{color:"rgba(104,100,102,0.2)"},candlestick:{up:{body:H("#8ab862"),wick:"#8ab862"},down:{body:H("#d05470"),wick:"#d05470"}},line:{color:"#62b8c8"},seriesColors:["#62b8c8","#d08050","#8ab862","#9080c8","#d05470","#d0b850","#62b8c8","#d05470","#8ab862","#9080c8"],bands:{upper:"#62b8c8",lower:"#d05470"},crosshair:{color:"rgba(114,112,114,0.7)",labelBackground:"#403e42"},axis:{textColor:"#727072"},tooltip:{background:"rgba(45,42,46,0.92)",textColor:"#fcfcfa",borderColor:"rgba(64,60,62,0.6)"},typography:{fontFamily:ar},fontUrl:or}),ec=ot({name:"Night Owl",description:"Crafted for late-night coding",background:"#011627",grid:{color:"rgba(71,92,118,0.2)"},candlestick:{up:{body:H("#7ec699"),wick:"#7ec699"},down:{body:H("#e06c75"),wick:"#e06c75"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#d49a6a","#7ec699","#b48ead","#e06c75","#d4b568","#5fb3a1","#d47084","#6bc5e0","#b48ead"],bands:{upper:"#6bc5e0",lower:"#d47084"},crosshair:{color:"rgba(99,119,119,0.7)",labelBackground:"#1d3b53"},axis:{textColor:"#4d5a6c"},tooltip:{background:"rgba(1,22,39,0.92)",textColor:"#d6deeb",borderColor:"rgba(31,52,72,0.6)"},typography:{fontFamily:fn},fontUrl:mn}),ic=ot({name:"One Dark Pro",description:"Atom editor's iconic dark palette",background:"#282c34",grid:{color:"rgba(99,104,116,0.2)"},candlestick:{up:{body:H("#98c379"),wick:"#98c379"},down:{body:H("#e06c75"),wick:"#e06c75"}},line:{color:"#61afef"},seriesColors:["#61afef","#e5c07b","#98c379","#c678dd","#e06c75","#56b6c2","#d19a66","#be5046","#61afef","#c678dd"],bands:{upper:"#56b6c2",lower:"#c678dd"},crosshair:{color:"rgba(99,110,123,0.7)",labelBackground:"#3e4451"},axis:{textColor:"#5c6370"},tooltip:{background:"rgba(40,44,52,0.92)",textColor:"#abb2bf",borderColor:"rgba(59,64,72,0.6)"},typography:{fontFamily:fn},fontUrl:mn}),sc=ot({name:"Panda",description:"Playful neons on charcoal",background:"#292a2b",grid:{color:"rgba(98,98,100,0.2)"},candlestick:{up:{body:H("#19f9d8"),wick:"#19f9d8"},down:{body:H("#ff75b5"),wick:"#ff75b5"}},line:{color:"#6fc1ff"},seriesColors:["#6fc1ff","#ffb86c","#19f9d8","#b084eb","#ff75b5","#ffcc95","#19f9d8","#ff4b82","#45a9f9","#b084eb"],bands:{upper:"#45a9f9",lower:"#ff75b5"},crosshair:{color:"rgba(117,117,117,0.7)",labelBackground:"#3a3a3c"},axis:{textColor:"#757575"},tooltip:{background:"rgba(41,42,43,0.92)",textColor:"#e6e6e6",borderColor:"rgba(58,58,60,0.6)"},typography:{fontFamily:ar},fontUrl:or}),nc=ot({name:"Peach Cream",background:"#fef6f0",candlestick:{up:{body:H("#5a9a68"),wick:"#5a9a68"},down:{body:H("#d06848"),wick:"#d06848"}},line:{color:"#d07040"},seriesColors:["#d07040","#5a9a68","#8a6aaa","#c0884a","#d06848","#4a8a9a","#9a7a4a","#d06848","#d07040","#8a6aaa"],bands:{upper:"#4a8a9a",lower:"#d06848"},grid:{color:"rgba(180,140,120,0.12)"},axis:{textColor:"#b09080"},crosshair:{color:"rgba(100,70,55,0.45)",labelBackground:"#f0e4d8"},tooltip:{background:"rgba(254,246,240,0.95)",textColor:"#4a3028",borderColor:"rgba(180,140,120,0.25)"},typography:{fontFamily:lr},fontUrl:hr,chartGradient:["#fff8f2","#fef6f0"]}),rc=ot({name:"Quiet Light",description:"Subdued and easy on the eyes",background:"#f5f5f5",chartGradient:["#fdfdfd","#f5f5f5"],grid:{color:"rgba(200,200,200,0.4)"},candlestick:{up:{body:H("#448c27"),wick:"#448c27"},down:{body:H("#aa3731"),wick:"#aa3731"}},line:{color:"#4b69c6"},seriesColors:["#4b69c6","#c47820","#448c27","#7a3e9d","#aa3731","#c47820","#2d8fa1","#aa3731","#448c27","#7a3e9d"],bands:{upper:"#2d8fa1",lower:"#aa3731"},crosshair:{color:"rgba(80,80,80,0.5)",labelBackground:"#e8e8e8"},axis:{textColor:"#aaaaaa"},tooltip:{background:"rgba(245,245,245,0.95)",textColor:"#333333",borderColor:"rgba(200,200,200,0.5)"},typography:{fontFamily:vh},fontUrl:yh}),ac=ot({name:"Rosé Pine Dawn",description:"Dawn-inspired warm neutrals",background:"#faf4ed",grid:{color:"rgba(152,147,165,0.2)"},candlestick:{up:{body:H("#56949f"),wick:"#56949f"},down:{body:H("#b4637a"),wick:"#b4637a"}},line:{color:"#907aa9"},seriesColors:["#907aa9","#ea9d34","#56949f","#d7827e","#b4637a","#ea9d34","#286983","#b4637a","#907aa9","#d7827e"],bands:{upper:"#286983",lower:"#b4637a"},crosshair:{color:"rgba(80,72,98,0.5)",labelBackground:"#f2e9e1"},axis:{textColor:"#9893a5"},tooltip:{background:"rgba(250,244,237,0.95)",textColor:"#575279",borderColor:"rgba(152,147,165,0.2)"},typography:{fontFamily:Ra},fontUrl:Aa}),oc=ot({name:"Sand Dune",background:"#f4f0e8",candlestick:{up:{body:H("#5a8a50"),wick:"#5a8a50"},down:{body:H("#b85040"),wick:"#b85040"}},line:{color:"#8a6a3a"},seriesColors:["#8a6a3a","#b87a40","#5a8a50","#7a5a70","#b85040","#a09030","#4a7a7a","#b85040","#8a6a3a","#7a5a70"],bands:{upper:"#4a7a7a",lower:"#b85040"},grid:{color:"rgba(150,130,100,0.15)"},axis:{textColor:"#9a8a70"},crosshair:{color:"rgba(85,65,45,0.45)",labelBackground:"#e8e0d0"},tooltip:{background:"rgba(244,240,232,0.95)",textColor:"#3a3020",borderColor:"rgba(150,130,100,0.3)"},typography:{fontFamily:Ra},fontUrl:Aa,chartGradient:["#f8f4ec","#f4f0e8"]}),lc=ot({name:"Solarized Light",description:"Ethan Schoonover's precision palette",background:"#fdf6e3",chartGradient:["#fef8e8","#fdf6e3"],grid:{color:"rgba(200,193,170,0.4)"},candlestick:{up:{body:H("#859900"),wick:"#859900"},down:{body:H("#dc322f"),wick:"#dc322f"}},line:{color:"#268bd2"},seriesColors:["#268bd2","#cb4b16","#859900","#6c71c4","#dc322f","#b58900","#2aa198","#d33682","#268bd2","#6c71c4"],bands:{upper:"#2aa198",lower:"#d33682"},crosshair:{color:"rgba(80,100,100,0.55)",labelBackground:"#eee8d5"},axis:{textColor:"#93a1a1"},tooltip:{background:"rgba(253,246,227,0.95)",textColor:"#586e75",borderColor:"rgba(238,232,213,0.6)"},typography:{fontFamily:fn},fontUrl:mn});function Ps(i){const{x:t,y:e,chartWidth:s,chartHeight:n,tooltipWidth:a,tooltipHeight:o,offsetX:l=16,offsetY:h=16}=i,u=t+l+a>s?t-l-a:t+l,d=e+h+o>n?e-h-o:e+h,f=Math.max(0,s-a),m=Math.max(0,n-o);return{left:Math.max(0,Math.min(f,u)),top:Math.max(0,Math.min(m,d))}}const zi=R.createContext(null);function wt(){const i=R.useContext(zi);if(!i)throw new Error("useChartInstance must be used within <ChartContainer>");return i}function Za({data:i,options:t,id:e}){var o;const s=wt(),n=R.useRef(null),a=R.useRef([]);return R.useLayoutEffect(()=>{const l=s.addSeries("bar",{...t,layers:i.length,id:e});return n.current=l,a.current=new Array(i.length).fill(Ni),()=>{s.removeSeries(l),n.current=null,a.current=[]}},[s,i.length,e]),R.useLayoutEffect(()=>{const l=n.current;l&&s.batch(()=>{for(let h=0;h<i.length;h++)a.current[h]=cr({chart:s,id:l,data:i[h],prev:a.current[h]??Ni,layerIndex:h})})},[s,i]),R.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,(o=t==null?void 0:t.colors)==null?void 0:o.join(","),t==null?void 0:t.barWidthRatio,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.smoothMs]),null}function hc({data:i,options:t,id:e}){var o,l,h,u,d,f;const s=wt(),n=R.useRef(null),a=R.useRef(Ni);return R.useLayoutEffect(()=>{const m=s.addSeries("candlestick",{...t,id:e});return n.current=m,()=>{s.removeSeries(m),n.current=null,a.current=Ni}},[s,e]),R.useLayoutEffect(()=>{const m=n.current;m&&(a.current=cr({chart:s,id:m,data:i,prev:a.current}))},[s,i]),R.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,Array.isArray((o=t==null?void 0:t.up)==null?void 0:o.body)?t.up.body.join(","):(l=t==null?void 0:t.up)==null?void 0:l.body,Array.isArray((h=t==null?void 0:t.down)==null?void 0:h.body)?t.down.body.join(","):(u=t==null?void 0:t.down)==null?void 0:u.body,(d=t==null?void 0:t.up)==null?void 0:d.wick,(f=t==null?void 0:t.down)==null?void 0:f.wick,t==null?void 0:t.bodyWidthRatio,t==null?void 0:t.entryAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.smoothMs]),null}const dr=R.createContext(null),Ei=dr.Provider;function Fs(){const i=R.useContext(dr);if(!i)throw new Error("useTheme must be used within <ThemeProvider>");return i}function cc(){return R.useContext(dr)}function pn(i,t,e){const s=Array.isArray(t)?t:[t];return{subscribe:n=>{const a=n;for(const o of s)i.on(o,a);return()=>{for(const o of s)i.off(o,a)}},getSnapshot:e}}function Ja(i){const t=R.useMemo(()=>pn(i,["viewportChange","dataUpdate","seriesChange"],()=>i.getVisibleRange()),[i]);return R.useSyncExternalStore(t.subscribe,t.getSnapshot)}function Qa(i){const t=R.useMemo(()=>pn(i,["viewportChange","dataUpdate","seriesChange"],()=>i.getYRange()),[i]);return R.useSyncExternalStore(t.subscribe,t.getSnapshot)}function uc(i,t){const e=R.useMemo(()=>{let s=i.getLastValue(t),n=s?i.yScale.valueToY(s.value):null;const a=()=>s,o=()=>{const l=i.getLastValue(t),h=l?i.yScale.valueToY(l.value):null;return(s==null?void 0:s.value)===(l==null?void 0:l.value)&&(s==null?void 0:s.isLive)===(l==null?void 0:l.isLive)&&n===h?!1:(s=l,n=h,!0)};return{subscribe:l=>{o();const h=()=>{o()&&l()};return i.on("dataUpdate",h),i.on("viewportChange",h),()=>{i.off("dataUpdate",h),i.off("viewportChange",h)}},getSnapshot:a}},[i,t]);return R.useSyncExternalStore(e.subscribe,e.getSnapshot)}function dc(i,t){const e=R.useMemo(()=>pn(i,"dataUpdate",()=>i.getPreviousClose(t)),[i,t]);return R.useSyncExternalStore(e.subscribe,e.getSnapshot)}function Bs(i){const t=R.useMemo(()=>pn(i,"crosshairMove",()=>i.getCrosshairPosition()),[i]);return R.useSyncExternalStore(t.subscribe,t.getSnapshot)}const fc=(i,t)=>t==="volume"?Ke(i):nr(i);function to({sort:i="none",format:t=fc,children:e}){const s=wt(),n=Fs(),a=Bs(s),[,o]=R.useState(0);R.useLayoutEffect(()=>{const m=()=>o(p=>p+1);return s.on("overlayChange",m),s.getSeriesIds().length>0&&o(p=>p+1),()=>{s.off("overlayChange",m)}},[s]);const l=qa(s,{sort:i,cacheKey:"infobar-last"});let h=l,u=l.length===0?0:Math.max(...l.map(m=>m.data.time)),d=!1;if(a!==null){const m=ur(s,{time:a.time,sort:i,cacheKey:"infobar-hover"});m.length>0&&(h=m,u=a.time,d=!0)}if(h.length===0)return e?null:I.jsx("div",{"data-tooltip-legend":"","aria-hidden":"true",style:{display:"flex",alignItems:"center",gap:4,padding:"4px 8px",flexShrink:0,fontSize:n.typography.fontSize,fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",visibility:"hidden",pointerEvents:"none"},children:I.jsx("span",{children:" "})});if(e)return I.jsx("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",flexShrink:0,fontFamily:n.typography.fontFamily,fontSize:n.typography.fontSize,fontVariantNumeric:"tabular-nums",opacity:d?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:e({snapshots:h,time:u,isHover:d})});const f=s.getDataInterval();return I.jsxs("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",gap:4,flexWrap:"wrap",padding:"4px 8px",flexShrink:0,fontSize:n.typography.fontSize,fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",opacity:d?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:[I.jsx("span",{style:{color:n.axis.textColor,marginRight:2},children:Rs(u,f)}),h.map(m=>{if("open"in m.data){const b=m.data,y=b.close>=b.open,M=zt(y?n.candlestick.up.body:n.candlestick.down.body);return I.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:4},children:[I.jsx(Gi,{label:"O",display:t(b.open,"open"),color:M,dim:n.axis.textColor}),I.jsx(Gi,{label:"H",display:t(b.high,"high"),color:M,dim:n.axis.textColor}),I.jsx(Gi,{label:"L",display:t(b.low,"low"),color:M,dim:n.axis.textColor}),I.jsx(Gi,{label:"C",display:t(b.close,"close"),color:M,dim:n.axis.textColor}),b.volume!=null&&I.jsx(Gi,{label:"V",display:t(b.volume,"volume"),color:n.axis.textColor,dim:n.axis.textColor})]},m.id)}const g=m.data;return I.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:3},children:[I.jsx("span",{style:{width:6,height:6,borderRadius:"50%",background:m.color,flexShrink:0}}),I.jsx("span",{style:{color:m.color,fontWeight:500},children:t(g.value,"value")})]},m.id)})]})}function Gi({label:i,display:t,color:e,dim:s}){return I.jsxs(I.Fragment,{children:[I.jsx("span",{style:{color:s,opacity:.5,marginLeft:5},children:i}),I.jsx("span",{style:{color:e,fontWeight:500,marginLeft:2},children:t})]})}function mc({chart:i,isolatedIdRef:t,setIsolatedId:e}){const s=[],n=i.getSeriesIds();for(const a of n){const o=i.getSeriesLayers(a);if(o){const l=i.getSeriesLabel(a);for(let h=0;h<o.length;h++){const u=`${a}_layer${h}`,d=i.isSeriesVisible(a)&&i.isLayerVisible(a,h);s.push(qr({id:u,seriesId:a,layerIndex:h,label:l?`${l} ${h+1}`:`Series ${h+1}`,color:o[h].color,isDisabled:!d,chart:i,isolatedIdRef:t,setIsolatedId:e}))}}else{const l=i.getSeriesColor(a);if(!l)continue;const h=i.getSeriesLabel(a),u=i.isSeriesVisible(a);s.push(qr({id:a,seriesId:a,layerIndex:void 0,label:h??"Series",color:l,isDisabled:!u,chart:i,isolatedIdRef:t,setIsolatedId:e}))}}return s}function qr(i){const{id:t,seriesId:e,layerIndex:s,label:n,color:a,isDisabled:o,chart:l,isolatedIdRef:h,setIsolatedId:u}=i;return{id:t,seriesId:e,layerIndex:s,label:n,color:a,isDisabled:o,toggle:()=>{s!==void 0?l.setLayerVisible(e,s,!l.isLayerVisible(e,s)):l.setSeriesVisible(e,!l.isSeriesVisible(e))},isolate:()=>{if(h.current===t){l.batch(()=>{for(const m of l.getSeriesIds()){l.setSeriesVisible(m,!0);const p=l.getSeriesLayers(m);if(p)for(let g=0;g<p.length;g++)l.setLayerVisible(m,g,!0)}}),h.current=null,u(null);return}l.batch(()=>{for(const m of l.getSeriesIds()){const p=l.getSeriesLayers(m);if(p){l.setSeriesVisible(m,m===e);for(let g=0;g<p.length;g++)l.setLayerVisible(m,g,m===e&&g===s)}else l.setSeriesVisible(m,m===t)}}),h.current=t,u(t)}}}function eo({items:i,position:t="bottom",mode:e="toggle",children:s}){const n=wt(),a=Fs(),[o,l]=R.useState(null),[h,u]=R.useState(0),d=R.useRef(o);d.current=o,R.useLayoutEffect(()=>{const b=()=>u(M=>M+1),y=()=>l(null);return n.on("overlayChange",b),n.on("seriesChange",y),n.getSeriesIds().length>0&&u(M=>M+1),()=>{n.off("overlayChange",b),n.off("seriesChange",y)}},[n]);const f=R.useMemo(()=>mc({chart:n,isolatedIdRef:d,setIsolatedId:l}),[n,o,h]),m=t==="right",p={display:"flex",flexDirection:m?"column":"row",flexWrap:"wrap",gap:m?6:14,padding:m?"8px 6px":"6px 8px",alignItems:m?"flex-start":"center",justifyContent:m?"flex-start":"center",fontFamily:a.typography.fontFamily,fontSize:a.axis.fontSize,color:a.axis.textColor,pointerEvents:"auto",flexShrink:0};if(s)return f.length===0?null:I.jsx("div",{"data-legend":t,style:p,children:s({items:f})});if(i)return i.length===0?null:I.jsx("div",{"data-legend":t,style:p,children:i.map((b,y)=>I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:4,userSelect:"none"},children:[I.jsx("span",{style:{width:8,height:8,borderRadius:2,background:b.color,flexShrink:0}}),I.jsx("span",{style:{whiteSpace:"nowrap"},children:b.label})]},y))});if(f.length===0)return null;const g=b=>{e==="isolate"||e==="solo"?b.isolate():b.toggle()};return I.jsx("div",{"data-legend":t,style:p,children:f.map(b=>I.jsxs("div",{onClick:()=>g(b),style:{display:"flex",alignItems:"center",gap:4,cursor:"pointer",opacity:b.isDisabled?.35:1,transition:"opacity 0.15s ease",userSelect:"none"},children:[I.jsx("span",{style:{width:8,height:8,borderRadius:2,background:b.color,flexShrink:0}}),I.jsx("span",{style:{whiteSpace:"nowrap"},children:b.label})]},b.id))})}function io({data:i,height:t,style:e,className:s}){const n=wt(),a=Fs(),o=R.useRef(null),l=R.useRef(null);R.useLayoutEffect(()=>{if(!o.current)return;const u=new Na({container:o.current,chart:n,data:i,options:t!==void 0?{height:t}:void 0});return l.current=u,()=>{u.destroy(),l.current=null}},[n]),R.useEffect(()=>{var u;(u=l.current)==null||u.setData(i)},[i]),R.useEffect(()=>{var u;(u=l.current)==null||u.setOptions(t!==void 0?{height:t}:{})},[t]);const h=t??a.navigator.height;return I.jsx("div",{ref:o,className:s,"data-chart-navigator":"",style:{position:"relative",width:"100%",height:h,flexShrink:0,...e}})}function gc(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}function so({seriesId:i,mode:t,format:e,position:s,children:n}){const a=t??"both",o=s??"bottom",l=e??Ke,h=wt(),u=h.getTheme(),[,d]=R.useState(0);R.useLayoutEffect(()=>{const g=()=>d(b=>b+1);return h.on("overlayChange",g),h.getSeriesIds().length>0&&g(),()=>{h.off("overlayChange",g)}},[h]);const f=gc(h,i),m=f!==null?h.getSliceInfo(f):null;if(!m||m.length===0)return null;if(n)return I.jsx(I.Fragment,{children:n({slices:m,mode:a,format:l})});const p=o==="overlay";return I.jsx("div",{"data-chart-pie-legend":"","data-chart-pie-legend-position":o,style:{display:"flex",flexDirection:"column",gap:6,padding:p?"8px 12px":"6px 10px",fontFamily:u.typography.fontFamily,fontSize:u.typography.fontSize,color:u.tooltip.textColor,pointerEvents:"auto"},children:m.map((g,b)=>I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:10},children:[I.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:g.color,flexShrink:0}}),I.jsx("span",{style:{flex:1,opacity:.8},children:g.label}),(a==="value"||a==="both")&&I.jsx("span",{style:{fontWeight:600,fontVariantNumeric:"tabular-nums",minWidth:a==="value"?40:void 0,textAlign:"right"},children:l(g.value)}),(a==="percent"||a==="both")&&I.jsxs("span",{style:{opacity:a==="percent"?1:.5,fontWeight:a==="percent"?600:400,fontSize:a==="percent"?u.typography.fontSize:u.axis.fontSize,fontVariantNumeric:"tabular-nums",minWidth:40,textAlign:"right"},children:[g.percent.toFixed(1),"%"]})]},b))})}const no=R.memo(function({children:t,sub:e,style:s}){const n=Fs();return I.jsxs("div",{"data-chart-title":"",style:{display:"flex",alignItems:"baseline",gap:6,padding:"6px 8px 0",flexShrink:0,fontFamily:n.typography.fontFamily,fontSize:n.typography.fontSize,fontWeight:600,color:n.tooltip.textColor,pointerEvents:"none",...s},children:[t!=null&&t!==!1&&I.jsx("span",{children:t}),e!=null&&e!==!1&&I.jsx("span",{style:{fontWeight:400,color:n.axis.textColor,fontSize:n.axis.fontSize},children:e})]})},(i,t)=>i.children===t.children&&i.sub===t.sub&&i.style===t.style);function pc(i){let t=null,e=null,s=null,n=null,a=null;const o=[],l=h=>{if(R.isValidElement(h)&&h.type===R.Fragment){R.Children.forEach(h.props.children,l);return}if(R.isValidElement(h)){if(h.type===no){t=h;return}if(h.type===eo){e=h;return}if(h.type===so){const u=h;u.props.position==="overlay"?o.push(h):s=u;return}if(h.type===to){n=h;return}if(h.type===io){a=h;return}}o.push(h)};return R.Children.forEach(i,l),{titleEl:t,legendEl:e,pieLegendEl:s,tooltipLegendEl:n,navigatorEl:a,overlay:o}}function ro({children:i,theme:t,axis:e,padding:s,viewport:n,gradient:a=!0,interactive:o,grid:l,headerLayout:h="overlay",perf:u,animations:d,onEdgeReached:f,style:m,className:p}){var zs,Es,Vs,fi,mi,gi;const g=R.useRef(u),b=R.useRef(f),y=cc(),M=t??y??void 0,L=R.useRef(null),x=R.useRef(null),[k,C]=R.useState(0),A=R.useRef([]);R.useLayoutEffect(()=>{if(!L.current)return;const st={};if(e&&(st.axis=e),M&&(st.theme=M),s&&(st.padding=s),n&&(st.viewport=n),o!==void 0&&(st.interactive=o),l!==void 0&&(st.grid=l),g.current!==void 0&&(st.perf=g.current),d!==void 0&&(st.animations=d),b.current&&(st.onEdgeReached=b.current),x.current=new Ya(L.current,st),process.env.NODE_ENV!=="production"){const yt=performance.now(),It=A.current;for(It.push(yt);It.length>0&&yt-It[0]>1e3;)It.shift();It.length>3&&console.warn("[wick-charts] <ChartContainer> recreated the chart >3 times in the last second. The `animations` prop is init-only — wrap it in useMemo(() => ({...}), [deps]) so a stable reference identity prevents tear-down on every render.")}return C(yt=>yt+1),()=>{var yt;(yt=x.current)==null||yt.destroy(),x.current=null}},[d]),R.useEffect(()=>{x.current&&M&&x.current.setTheme(M)},[M]),R.useEffect(()=>{x.current&&e&&x.current.setAxis(e)},[(zs=e==null?void 0:e.y)==null?void 0:zs.width,(Es=e==null?void 0:e.y)==null?void 0:Es.min,(Vs=e==null?void 0:e.y)==null?void 0:Vs.max,(fi=e==null?void 0:e.y)==null?void 0:fi.visible,(mi=e==null?void 0:e.x)==null?void 0:mi.height,(gi=e==null?void 0:e.x)==null?void 0:gi.visible]);const T=R.useRef(null),[D,B]=R.useState(0),w=h==="overlay"?D:0;R.useLayoutEffect(()=>{const st=x.current;if(!st)return;const It={top:((s==null?void 0:s.top)??20)+w,...(s==null?void 0:s.bottom)!==void 0?{bottom:s.bottom}:{},...(s==null?void 0:s.right)!==void 0?{right:s.right}:{},...(s==null?void 0:s.left)!==void 0?{left:s.left}:{}};st.setPadding(It)},[s==null?void 0:s.top,s==null?void 0:s.bottom,typeof(s==null?void 0:s.right)=="object"?s.right.intervals:s==null?void 0:s.right,typeof(s==null?void 0:s.left)=="object"?s.left.intervals:s==null?void 0:s.left,w]),R.useEffect(()=>{x.current&&l!==void 0&&x.current.setGrid(l)},[l==null?void 0:l.visible]);const W=x.current,{titleEl:P,legendEl:z,pieLegendEl:E,tooltipLegendEl:V,navigatorEl:X,overlay:$}=pc(i),G=(z==null?void 0:z.props.position)??"bottom",xt=(E==null?void 0:E.props.position)??"bottom",Tt=G==="right"||xt==="right",_=M??(W==null?void 0:W.getTheme()),[q,Z]=(_==null?void 0:_.chartGradient)??["transparent","transparent"],K=(_==null?void 0:_.background)??"transparent",Vt=a?`linear-gradient(to bottom, ${q} 0%, ${K} 70%, ${Z} 100%)`:K;R.useLayoutEffect(()=>{if(h!=="overlay"){B(0);return}const st=T.current;if(!st){B(0);return}const yt=()=>B(st.getBoundingClientRect().height);yt();const It=new ResizeObserver(yt);return It.observe(st),()=>It.disconnect()},[P!==null,V!==null,h,W!==null]);const kt=(P||V)&&I.jsxs("div",{"data-chart-header":"","data-chart-top-overlay":h==="overlay"?"":void 0,ref:T,style:h==="overlay"?{position:"absolute",top:0,left:0,right:0,zIndex:2,pointerEvents:"none",display:"flex",flexDirection:"column"}:{flexShrink:0,display:"flex",flexDirection:"column",pointerEvents:"none"},children:[P,V]}),Lt=I.jsx("div",{ref:L,style:{position:"relative",flex:1,minWidth:0,minHeight:0,overflow:"hidden"},children:W&&I.jsx(zi.Provider,{value:W,children:I.jsxs(Ei,{value:M??W.getTheme(),children:[h==="overlay"&&kt,I.jsx("div",{"data-chart-series-overlay":"",style:{position:"absolute",inset:0,pointerEvents:"none",zIndex:3},children:$})]})})}),Ae=h==="inline"?I.jsxs("div",{"data-chart-canvas-block":"",style:{display:"flex",flexDirection:"column",flex:1,minWidth:0,minHeight:0},children:[W&&kt&&I.jsx(zi.Provider,{value:W,children:I.jsx(Ei,{value:M??W.getTheme(),children:kt})}),Lt]}):Lt,oe=W&&z&&I.jsx(zi.Provider,{value:W,children:I.jsx(Ei,{value:M??W.getTheme(),children:z})}),qe=W&&E&&I.jsx(zi.Provider,{value:W,children:I.jsx(Ei,{value:M??W.getTheme(),children:E})}),Ds=W&&X&&I.jsx(zi.Provider,{value:W,children:I.jsx(Ei,{value:M??W.getTheme(),children:X})});return I.jsxs("div",{className:p,style:{display:"flex",flexDirection:"column",width:"100%",height:"100%",overflow:"hidden",background:Vt,...m},children:[I.jsxs("div",{style:{display:"flex",flexDirection:Tt?"row":"column",flex:1,minHeight:0,minWidth:0},children:[Ae,oe,qe]}),Ds]})}function bc({side:i,threshold:t=5,onTrigger:e,indicator:s="canvas",children:n}){const a=wt(),[o,l]=R.useState(!1),[h,u]=R.useState(!0),[,d]=R.useState(0),f=R.useRef(e);f.current=e;const m=R.useRef(n!==void 0);m.current=n!==void 0;const p=R.useRef(!1),g=R.useRef(!1);if(R.useEffect(()=>{if(!h)return;const L=()=>{const C=a.getVisibleRange(),A=a.getDataRange();return A?i==="left"?C.from-A.from:A.to-C.to:null},x=()=>{if(p.current||!h)return;p.current=!0,l(!0),s==="canvas"&&a.setEdgeState(i,"loading");let C;try{C=f.current()}catch(T){throw p.current=!1,l(!1),s==="canvas"&&a.setEdgeState(i,"idle"),T}const A=T=>{p.current=!1,l(!1),T===!1?(u(!1),s==="canvas"&&a.setEdgeState(i,"no-data")):s==="canvas"&&a.setEdgeState(i,"idle")};C&&typeof C.then=="function"?C.then(A,()=>A(void 0)):A(void 0)},k=()=>{const C=a.getDataInterval(),A=L();if(A!==null){if(!g.current){A>t*C&&(g.current=!0);return}A<=t*C&&x(),m.current&&d(T=>T+1)}};return a.on("viewportChange",k),a.on("overlayChange",k),k(),()=>{a.off("viewportChange",k),a.off("overlayChange",k)}},[a,i,t,s,h]),R.useEffect(()=>()=>{s==="canvas"&&a.setEdgeState(i,"idle")},[a,i,s]),!n)return null;const b=a.getDataRange();if(!b)return null;const y=i==="left"?b.from:b.to,M=a.timeScale.timeToX(y);return I.jsx(I.Fragment,{children:n({x:M,side:i,isLoading:o,boundaryTime:y,hasMore:h})})}function ao({data:i,options:t,id:e}){var o,l;const s=wt(),n=R.useRef(null),a=R.useRef([]);return R.useLayoutEffect(()=>{const h=s.addSeries("line",{...t,layers:i.length,id:e});return n.current=h,a.current=new Array(i.length).fill(Ni),()=>{s.removeSeries(h),n.current=null,a.current=[]}},[s,i.length,e]),R.useLayoutEffect(()=>{const h=n.current;h&&s.batch(()=>{for(let u=0;u<i.length;u++)a.current[u]=cr({chart:s,id:h,data:i[u],prev:a.current[u]??Ni,layerIndex:u})})},[s,i]),R.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,(o=t==null?void 0:t.colors)==null?void 0:o.join(","),t==null?void 0:t.strokeWidth,(l=t==null?void 0:t.area)==null?void 0:l.visible,t==null?void 0:t.areaFill,t==null?void 0:t.pulse,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.smoothMs]),null}function vc({data:i,options:t,id:e}){var a,o,l,h,u,d,f,m,p;const s=wt(),n=R.useRef(null);return R.useLayoutEffect(()=>{const g=s.addSeries("pie",{...t,id:e});return n.current=g,()=>{s.removeSeries(g),n.current=null}},[s,e]),R.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,t==null?void 0:t.innerRadiusRatio,t==null?void 0:t.padAngle,t==null?void 0:t.animate,t==null?void 0:t.shadow,t==null?void 0:t.innerShadow,t==null?void 0:t.colors,(a=t==null?void 0:t.sliceLabels)==null?void 0:a.mode,(o=t==null?void 0:t.sliceLabels)==null?void 0:o.content,(l=t==null?void 0:t.sliceLabels)==null?void 0:l.fontSize,(h=t==null?void 0:t.sliceLabels)==null?void 0:h.minSliceAngle,(u=t==null?void 0:t.sliceLabels)==null?void 0:u.elbowLen,(d=t==null?void 0:t.sliceLabels)==null?void 0:d.legPad,(f=t==null?void 0:t.sliceLabels)==null?void 0:f.labelGap,(m=t==null?void 0:t.sliceLabels)==null?void 0:m.distance,(p=t==null?void 0:t.sliceLabels)==null?void 0:p.railWidth]),R.useLayoutEffect(()=>{n.current&&s.setSeriesData(n.current,i)},[s,i]),null}function yc(){const i=wt(),t=Bs(i);if(!t)return null;const e=i.getTheme(),s=i.getDataInterval(),n=i.timeScale.niceTickValues(s).tickInterval||s,a={background:`color-mix(in srgb, ${e.crosshair.labelBackground} 80%, transparent)`,color:e.crosshair.labelTextColor,fontSize:e.axis.fontSize,fontFamily:e.typography.fontFamily,fontVariantNumeric:"tabular-nums",padding:"2px 6px",borderRadius:2,whiteSpace:"nowrap",pointerEvents:"none",zIndex:2};return I.jsxs(I.Fragment,{children:[I.jsx("div",{style:{position:"absolute",right:0,top:t.mediaY,transform:"translateY(-50%)",...a},children:i.yScale.formatY(t.y)}),I.jsx("div",{style:{position:"absolute",bottom:0,left:t.mediaX,transform:"translateX(-50%)",...a},children:Rs(t.time,n)})]})}const xc=["0","1","2","3","4","5","6","7","8","9"];function wc(i){const t=[];for(const e of i)e>="0"&&e<="9"?t.push({type:"digit",value:e}):t.push({type:"symbol",value:e});return t}function oo({value:i,format:t,locale:e="en-US",spinDuration:s=350,className:n,style:a}){const l=R.useMemo(()=>{if(typeof t=="function")return t;const u=new Intl.NumberFormat(e,typeof t=="object"?t:void 0);return d=>u.format(d)},[t,e])(i),h=wc(l);return I.jsx("span",{className:n,style:{display:"inline-flex",fontVariantNumeric:"tabular-nums",lineHeight:1.2,...a},children:h.map((u,d)=>u.type==="digit"?I.jsx(Mc,{digit:parseInt(u.value,10),duration:s},`d${d}`):I.jsx("span",{style:{display:"inline-block"},children:u.value},`s${d}`))})}function Mc({digit:i,duration:t}){const e=R.useRef(!1);return R.useEffect(()=>{e.current=!0},[]),I.jsx("span",{style:{display:"inline-block",height:"1.2em",overflow:"hidden",position:"relative"},children:I.jsx("span",{style:{display:"flex",flexDirection:"column",transform:`translateY(${-i*1.2}em)`,transition:e.current?`transform ${t}ms cubic-bezier(0.16, 1, 0.3, 1)`:"none"},children:xc.map(s=>I.jsx("span",{style:{display:"flex",alignItems:"center",justifyContent:"center",height:"1.2em"},children:s},s))})})}function kc(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}const Sc=160,Cc=70;function Tc({seriesId:i,format:t=Ke,children:e}){const s=wt(),n=Bs(s),[,a]=R.useState(0);R.useLayoutEffect(()=>{const m=()=>a(p=>p+1);return s.on("overlayChange",m),()=>{s.off("overlayChange",m)}},[s]);const o=kc(s,i),l=o!==null?s.getHoverInfo(o):null;if(!l||!n)return null;const h=s.getTheme(),u=s.getMediaSize();if(e)return I.jsx(Lc,{x:n.mediaX,y:n.mediaY,chartWidth:u.width,chartHeight:u.height,children:e({info:l,format:t})});const{left:d,top:f}=Ps({x:n.mediaX,y:n.mediaY,chartWidth:u.width,chartHeight:u.height,tooltipWidth:Sc,tooltipHeight:Cc,offsetX:16,offsetY:16});return I.jsxs("div",{style:{position:"absolute",left:d,top:f,pointerEvents:"none",zIndex:10,background:h.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${h.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:h.typography.fontSize,fontFamily:h.typography.fontFamily,color:h.tooltip.textColor,display:"flex",flexDirection:"column",gap:6},children:[I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8},children:[I.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:l.color,flexShrink:0}}),I.jsx("span",{style:{fontWeight:600},children:l.label})]}),I.jsxs("div",{style:{display:"flex",justifyContent:"space-between",gap:16},children:[I.jsx("span",{style:{opacity:.6},children:t(l.value)}),I.jsxs("span",{style:{fontWeight:600},children:[l.percent.toFixed(1),"%"]})]})]})}function Lc({x:i,y:t,chartWidth:e,chartHeight:s,children:n}){const a=R.useRef(null),[o,l]=R.useState(null);R.useEffect(()=>{const u=a.current;if(!u||typeof ResizeObserver>"u")return;const d=new ResizeObserver(f=>{var p;const m=(p=f[0])==null?void 0:p.contentRect;m&&l(g=>g&&g.width===m.width&&g.height===m.height?g:{width:m.width,height:m.height})});return d.observe(u),()=>d.disconnect()},[]);const h=o?Ps({x:i,y:t,chartWidth:e,chartHeight:s,tooltipWidth:o.width,tooltipHeight:o.height,offsetX:16,offsetY:16}):{left:0,top:0};return I.jsx("div",{ref:a,"data-measured":o?"true":"false",style:{position:"absolute",left:h.left,top:h.top,pointerEvents:"none",zIndex:10,width:"max-content",maxWidth:e,boxSizing:"border-box",visibility:o?"visible":"hidden"},children:n})}function Ic(i,t){if(i.startsWith("rgba")||!i.startsWith("#"))return i;const e=parseInt(i.slice(1,3),16),s=parseInt(i.slice(3,5),16),n=parseInt(i.slice(5,7),16);return`rgba(${e}, ${s}, ${n}, ${t})`}function Wc(i){if(i.length<2)return{value:0,pct:0,positive:!0};const t=i[0].value,s=i[i.length-1].value-t,n=t!==0?s/t*100:0;return{value:s,pct:n,positive:s>=0}}function Rc({data:i,theme:t,variant:e="line",valuePosition:s="right",formatValue:n=Ke,label:a,sublabel:o,color:l,negativeColor:h,area:u,areaFill:d,yRange:f,flow:m,width:p=140,height:g=48,strokeWidth:b=1.5,gradient:y=!0,style:M}){const L=(u==null?void 0:u.visible)??d??!0,x=i.length>0?i[i.length-1].value:0,k=R.useMemo(()=>Wc(i),[i]),C=l??t.seriesColors[0],A=h??zt(t.candlestick.down.body),T=zt(k.positive?t.candlestick.up.body:t.candlestick.down.body),D=R.useMemo(()=>{if(!m||i.length<2)return;const W=i[1].time-i[0].time;if(W<=0)return;const P=m.align??"right";if(P==="left")return{maxVisibleBars:m.capacity,initialRange:{from:i[0].time,bars:m.capacity}};const z=i[i.length-1].time,E=P==="offscreen"?z-W:z,V=E-m.capacity*W;return{maxVisibleBars:m.capacity,initialRange:{from:V,to:E}}},[]),B=s!=="none"&&I.jsxs("div",{style:{display:"flex",flexDirection:"column",justifyContent:"center",gap:1,minWidth:0,flexShrink:0},children:[a&&I.jsx("div",{style:{fontSize:t.axis.fontSize,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"},children:a}),I.jsx("div",{style:{fontSize:t.typography.fontSize+3,fontWeight:700,color:t.tooltip.textColor,lineHeight:1.1,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:n(x)}),o!==void 0?I.jsx("div",{style:{fontSize:t.axis.fontSize-1,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap"},children:o}):I.jsxs("div",{style:{fontSize:t.axis.fontSize-1,fontWeight:500,color:T,lineHeight:1.2,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:[k.positive?"+":"",k.pct.toFixed(1),"%"]})]}),w=I.jsx("div",{style:{width:p,height:g,flexShrink:0,borderRadius:4,overflow:"hidden"},children:I.jsx(ro,{theme:t,axis:{y:{visible:!1,width:0,min:f==null?void 0:f.min,max:f==null?void 0:f.max},x:{visible:!1,height:0}},padding:{top:5,right:0,bottom:0,left:0},gradient:y,interactive:!1,grid:{visible:!1},viewport:D,children:e==="line"?I.jsx(ao,{data:[i],options:{colors:[C],strokeWidth:b,area:{visible:L},pulse:!1,stacking:"off"}}):I.jsx(Za,{data:[i],options:{colors:[C,A],barWidthRatio:.7,stacking:"off",anchor:"right"}})})});return I.jsxs("div",{style:{display:"inline-flex",alignItems:"center",gap:12,padding:"8px 12px",borderRadius:8,background:Ic(t.tooltip.background,.7),border:`1px solid ${t.tooltip.borderColor}`,fontFamily:t.typography.fontFamily,...M},children:[s==="left"&&B,w,s==="right"&&B]})}function lo({labelCount:i,minLabelSpacing:t}={}){const e=wt();Ja(e);const s=R.useRef(null);return R.useLayoutEffect(()=>(e.setTimeAxisLabelDensity({labelCount:i??null,minLabelSpacing:t??null}),()=>{e.setTimeAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[e,i,t]),R.useLayoutEffect(()=>{const n=s.current;if(n!==null)return aa({chart:e,container:n,axis:"x"})},[e]),I.jsx("div",{ref:s,style:{position:"absolute",left:0,bottom:0,right:e.yAxisWidth,height:e.xAxisHeight,pointerEvents:"none",display:"flex",alignItems:"center"}})}const Ac=(i,t)=>t==="volume"?Ke(i):nr(i);function Pc({sort:i="none",format:t=Ac,children:e}){const s=wt(),n=Bs(s),[,a]=R.useState(0);if(R.useLayoutEffect(()=>{const m=()=>a(p=>p+1);return s.on("overlayChange",m),s.getSeriesIds().length>0&&a(p=>p+1),()=>{s.off("overlayChange",m)}},[s]),!n)return null;const o=ur(s,{time:n.time,sort:i,cacheKey:"tooltip"});if(o.length===0)return null;const l=s.getTheme(),h=s.getDataInterval(),u=s.getMediaSize(),d=u.width-s.yAxisWidth,f=u.height-s.xAxisHeight;return e?I.jsx(Fc,{x:n.mediaX,y:n.mediaY,chartWidth:d,chartHeight:f,theme:l,children:e({snapshots:o,time:n.time})}):I.jsx(Bc,{snapshots:o,displayTime:n.time,x:n.mediaX,y:n.mediaY,chartWidth:d,chartHeight:f,theme:l,dataInterval:h,format:t})}function Fc({x:i,y:t,chartWidth:e,chartHeight:s,theme:n,children:a}){const o=R.useRef(null),[l,h]=R.useState(null);R.useEffect(()=>{const d=o.current;if(!d||typeof ResizeObserver>"u")return;const f=new ResizeObserver(m=>{var g;const p=(g=m[0])==null?void 0:g.contentRect;p&&h(b=>b&&b.width===p.width&&b.height===p.height?b:{width:p.width,height:p.height})});return f.observe(d),()=>f.disconnect()},[]);const u=l?Ps({x:i,y:t,chartWidth:e,chartHeight:s,tooltipWidth:l.width,tooltipHeight:l.height}):{left:0,top:0};return I.jsx("div",{ref:o,"data-measured":l?"true":"false",style:{position:"absolute",left:u.left,top:u.top,pointerEvents:"none",background:n.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${n.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontFamily:n.typography.fontFamily,fontSize:n.tooltip.fontSize,fontVariantNumeric:"tabular-nums",color:n.tooltip.textColor,width:"max-content",maxWidth:e,boxSizing:"border-box",zIndex:10,visibility:l?"visible":"hidden"},children:a})}function Bc({snapshots:i,displayTime:t,x:e,y:s,chartWidth:n,chartHeight:a,theme:o,dataInterval:l,format:h}){const u=i.some(L=>"open"in L.data),d=i.filter(L=>!("open"in L.data)).length,f=160,m=u?140:40+d*22,{left:p,top:g}=Ps({x:e,y:s,chartWidth:n,chartHeight:a,tooltipWidth:f,tooltipHeight:m}),b=o.tooltip.background,y=o.tooltip.borderColor;return I.jsxs("div",{style:{position:"absolute",left:p,top:g,pointerEvents:"none",background:b,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${y}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:o.tooltip.fontSize,fontFamily:o.typography.fontFamily,fontVariantNumeric:"tabular-nums",color:o.tooltip.textColor,width:f,boxSizing:"border-box",zIndex:10,transition:"opacity 0.15s ease"},children:[I.jsxs("div",{style:{fontSize:o.axis.fontSize,color:o.axis.textColor,marginBottom:8,paddingBottom:6,borderBottom:`1px solid ${y}`,letterSpacing:"0.02em"},children:[ra(t)," ",Rs(t,l)]}),i.map(L=>{if("open"in L.data){const C=L.data,A=C.close>=C.open,T=zt(A?o.candlestick.up.body:o.candlestick.down.body);return I.jsxs("div",{style:{display:"grid",gridTemplateColumns:"auto 1fr",gap:"4px 12px"},children:[I.jsx(Ki,{label:"Open",color:T,display:h(C.open,"open")}),I.jsx(Ki,{label:"High",color:T,display:h(C.high,"high")}),I.jsx(Ki,{label:"Low",color:T,display:h(C.low,"low")}),I.jsx(Ki,{label:"Close",color:T,display:h(C.close,"close")}),C.volume!=null&&I.jsx(Ki,{label:"Volume",color:o.tooltip.textColor,display:h(C.volume,"volume")})]},L.id)}const k=L.data;return I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8,padding:"2px 0"},children:[I.jsx("span",{style:{width:8,height:8,borderRadius:"50%",background:L.color,flexShrink:0}}),I.jsx("span",{style:{opacity:.6,flex:1},children:L.label??"Value"}),I.jsx("span",{style:{fontWeight:600,color:L.color},children:h(k.value,"value")})]},L.id)})]})}function Ki({label:i,color:t,display:e}){return I.jsxs(I.Fragment,{children:[I.jsx("span",{style:{opacity:.5},children:i}),I.jsx("span",{style:{fontWeight:600,color:t,textAlign:"right"},children:e})]})}function Dc({format:i,labelCount:t,minLabelSpacing:e}={}){const s=wt();Qa(s);const n=R.useRef(null);return R.useLayoutEffect(()=>(s.yScale.setFormat(i??null),()=>s.yScale.setFormat(null)),[s,i]),R.useLayoutEffect(()=>(s.setYAxisLabelDensity({labelCount:t??null,minLabelSpacing:e??null}),()=>{s.setYAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[s,t,e]),R.useLayoutEffect(()=>{const a=n.current;if(a!==null)return aa({chart:s,container:a,axis:"y"})},[s]),I.jsx("div",{ref:n,style:{position:"absolute",right:0,top:0,bottom:s.xAxisHeight,width:s.yAxisWidth,pointerEvents:"none"}})}function zc(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("time",{visibleOnly:!0,singleLayerOnly:!0});if(e.length>0)return e[0];const s=i.getSeriesIdsByType("time",{visibleOnly:!0});return s.length>0?s[0]:null}function Ec({seriesId:i,color:t,format:e,children:s}){const n=wt();R.useEffect(()=>(n.setYLabel(!0),()=>n.setYLabel(!1)),[n]);const[,a]=R.useState(0);R.useLayoutEffect(()=>{const x=()=>a(k=>k+1);return n.on("overlayChange",x),n.on("viewportChange",x),n.getSeriesIds().length>0&&a(k=>k+1),()=>{n.off("overlayChange",x),n.off("viewportChange",x)}},[n]);const o=zc(n,i),l=o!==null?n.getStackedLastValue(o):null,h=o!==null?n.getPreviousClose(o):null,u=n.yScale.getRange(),d=u.max-u.min,f=d<.1?6:d<10?4:d<1e3?2:0,m=R.useMemo(()=>{if(e)return e;const x=new Intl.NumberFormat("en-US",{minimumFractionDigits:f,maximumFractionDigits:f,useGrouping:!1});return k=>x.format(k)},[e,f]);if(!l||o===null)return null;const{value:p,isLive:g}=l,b=n.getTheme(),y=n.yScale.valueToY(p),M=h===null?"neutral":p>h?"up":p<h?"down":"neutral";let L;return g?t?L=t:L=M==="up"?b.yLabel.upBackground:M==="down"?b.yLabel.downBackground:b.yLabel.neutralBackground:L=b.axis.textColor,s?I.jsx(I.Fragment,{children:s({value:p,y,bgColor:L,isLive:g,direction:M,format:m})}):I.jsxs(I.Fragment,{children:[I.jsx("div",{style:{position:"absolute",left:0,right:n.yAxisWidth,top:y,height:0,borderTop:`1px dashed ${L}`,opacity:.5,pointerEvents:"none",zIndex:2}}),I.jsx("div",{style:{position:"absolute",right:4,top:y,transform:"translateY(-50%)",pointerEvents:"auto",zIndex:3,background:L,color:b.yLabel.textColor,fontSize:b.yLabel.fontSize,fontFamily:b.typography.fontFamily,padding:"3px 8px",borderRadius:3,whiteSpace:"nowrap",transition:"background-color 0.3s ease"},children:I.jsx(oo,{value:p,format:m,spinDuration:350})})]})}exports.BarSeries=Za;exports.CandlestickSeries=hc;exports.ChartContainer=ro;exports.ChartInstance=Ya;exports.Crosshair=yc;exports.EdgeLoader=bc;exports.InfoBar=to;exports.Legend=eo;exports.LineSeries=ao;exports.Navigator=io;exports.NavigatorController=Na;exports.NumberFlow=oo;exports.PieLegend=so;exports.PieSeries=vc;exports.PieTooltip=Tc;exports.Sparkline=Rc;exports.ThemeProvider=Ei;exports.TimeAxis=lo;exports.Title=no;exports.Tooltip=Pc;exports.XAxis=lo;exports.YAxis=Dc;exports.YLabel=Ec;exports.andromeda=Vh;exports.autoGradient=H;exports.ayuMirage=Yh;exports.buildHoverSnapshots=ur;exports.buildLastSnapshots=qa;exports.catppuccin=Pa;exports.computeTooltipPosition=Ps;exports.createTheme=ot;exports.detectInterval=na;exports.dracula=jh;exports.formatCompact=Ke;exports.formatDate=ra;exports.formatPriceAdaptive=nr;exports.formatTime=Rs;exports.githubLight=Hh;exports.gruvbox=$h;exports.handwritten=Oh;exports.hermite=ea;exports.highContrast=Uh;exports.isDarkBg=La;exports.lavenderMist=_h;exports.lightPink=Gh;exports.materialPalenight=Kh;exports.minimalLight=Jh;exports.mintBreeze=Qh;exports.monokaiPro=tc;exports.nightOwl=ec;exports.normalizeTime=Et;exports.oneDarkPro=ic;exports.panda=sc;exports.parseAnimationTime=Qr;exports.peachCream=nc;exports.quietLight=rc;exports.resolveAxisFontSize=ia;exports.resolveAxisTextColor=sa;exports.resolveCandlestickBodyColor=zt;exports.rosePineDawn=ac;exports.sandDune=oc;exports.snap=Zi;exports.solarizedLight=lc;exports.spring=Jr;exports.useChartInstance=wt;exports.useCrosshairPosition=Bs;exports.useLastYValue=uc;exports.usePreviousClose=dc;exports.useTheme=Fs;exports.useVisibleRange=Ja;exports.useYRange=Qa;
|