@orbcharts/plugins-basic 3.0.0-alpha.79 → 3.0.0-beta.10
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/LICENSE +200 -200
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
- package/dist/{src/base/BaseBarStack.d.ts → orbcharts-plugins-basic/src/base/BaseStackedBar.d.ts} +6 -6
- package/dist/orbcharts-plugins-basic/src/base/BaseTooltip.d.ts +14 -0
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
- package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +6 -5
- package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
- package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +4 -3
- package/dist/orbcharts-plugins-basic/src/grid/plugins/GridTooltip.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/grid/plugins/GridZoom.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedValueAxis.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/index.d.ts +7 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/defaults.d.ts +15 -0
- package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +4 -3
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiGridTooltip.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/noneData/index.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/relationship/defaults.d.ts +6 -0
- package/dist/orbcharts-plugins-basic/src/relationship/index.d.ts +5 -0
- package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirected.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/relationship/relationshipObservables.d.ts +1 -0
- package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +2 -1
- package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/series/plugins/SeriesTooltip.d.ts +1 -0
- package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
- package/dist/orbcharts-plugins-basic/src/tree/defaults.d.ts +5 -0
- package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/tree/plugins/TreeTooltip.d.ts +1 -0
- package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +1 -1
- package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
- package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
- package/dist/orbcharts-plugins-basic.es.js +13490 -10057
- package/dist/orbcharts-plugins-basic.umd.js +179 -24
- package/dist/src/index.d.ts +1 -5
- package/lib/core-types.ts +7 -7
- package/lib/core.ts +6 -6
- package/lib/plugins-basic-types.ts +6 -6
- package/package.json +44 -44
- package/src/base/BaseBars.ts +765 -765
- package/src/base/BaseBarsTriangle.ts +676 -674
- package/src/base/BaseDots.ts +464 -515
- package/src/base/BaseGroupAxis.ts +679 -679
- package/src/base/BaseLegend.ts +684 -644
- package/src/base/BaseLineAreas.ts +629 -629
- package/src/base/BaseLines.ts +706 -706
- package/src/base/{BaseBarStack.ts → BaseStackedBar.ts} +782 -780
- package/src/base/BaseTooltip.ts +386 -0
- package/src/base/BaseValueAxis.ts +583 -580
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +247 -128
- package/src/grid/gridObservables.ts +554 -545
- package/src/grid/index.ts +16 -15
- package/src/grid/plugins/Bars.ts +69 -69
- package/src/grid/plugins/BarsPN.ts +66 -66
- package/src/grid/plugins/BarsTriangle.ts +73 -73
- package/src/grid/plugins/Dots.ts +68 -68
- package/src/grid/plugins/GridLegend.ts +107 -96
- package/src/grid/plugins/GridTooltip.ts +66 -0
- package/src/grid/plugins/{ScalingArea.ts → GridZoom.ts} +218 -218
- package/src/grid/plugins/GroupAux.ts +1103 -1098
- package/src/grid/plugins/GroupAxis.ts +97 -97
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/{BarStack.ts → StackedBar.ts} +64 -64
- package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
- package/src/grid/plugins/ValueAxis.ts +94 -93
- package/src/index.ts +6 -9
- package/src/multiGrid/defaults.ts +225 -159
- package/src/multiGrid/index.ts +15 -14
- package/src/multiGrid/multiGridObservables.ts +49 -49
- package/src/multiGrid/plugins/MultiBars.ts +108 -108
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
- package/src/multiGrid/plugins/MultiDots.ts +102 -102
- package/src/multiGrid/plugins/MultiGridLegend.ts +159 -148
- package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -0
- package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
- package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
- package/src/multiGrid/plugins/MultiLines.ts +101 -101
- package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBar.ts} +106 -106
- package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
- package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
- package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +299 -298
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
- package/src/multiValue/defaults.ts +167 -0
- package/src/multiValue/index.ts +9 -0
- package/src/multiValue/multiValueObservables.ts +297 -0
- package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
- package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
- package/src/multiValue/plugins/Scatter.ts +426 -0
- package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
- package/src/multiValue/plugins/XYAux.ts +682 -0
- package/src/multiValue/plugins/XYAxes.ts +685 -0
- package/src/multiValue/plugins/XYZoom.ts +300 -0
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +4 -4
- package/src/noneData/plugins/Container.ts +28 -28
- package/src/noneData/plugins/Tooltip.ts +374 -374
- package/src/relationship/defaults.ts +196 -0
- package/src/relationship/index.ts +5 -0
- package/src/relationship/plugins/ForceDirected.ts +1167 -0
- package/src/relationship/plugins/ForceDirectedBubbles.ts +1391 -0
- package/src/relationship/plugins/RelationshipLegend.ts +100 -0
- package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
- package/src/relationship/relationshipObservables.ts +50 -0
- package/src/series/defaults.ts +207 -149
- package/src/series/index.ts +10 -9
- package/src/series/plugins/Bubbles.ts +606 -603
- package/src/series/plugins/Pie.ts +623 -623
- package/src/series/plugins/PieEventTexts.ts +284 -283
- package/src/series/plugins/PieLabels.ts +640 -640
- package/src/series/plugins/Rose.ts +516 -516
- package/src/series/plugins/RoseLabels.ts +600 -600
- package/src/series/plugins/SeriesLegend.ts +107 -96
- package/src/series/plugins/SeriesTooltip.ts +66 -0
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/tree/defaults.ts +79 -23
- package/src/tree/index.ts +5 -4
- package/src/tree/plugins/TreeLegend.ts +100 -96
- package/src/tree/plugins/TreeMap.ts +333 -333
- package/src/tree/plugins/TreeTooltip.ts +66 -0
- package/src/utils/commonUtils.ts +21 -21
- package/src/utils/d3Graphics.ts +174 -174
- package/src/utils/d3Utils.ts +74 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +116 -100
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
- package/dist/src/grid/plugins/BarStack.d.ts +0 -1
- package/dist/src/grid/plugins/ScalingArea.d.ts +0 -1
- package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/defaults.d.ts +0 -14
- package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
- package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
- package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
- package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
- package/dist/src/noneData/index.d.ts +0 -2
- package/dist/src/noneData/plugins/Container.d.ts +0 -1
- package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
- package/dist/src/relationship/index.d.ts +0 -0
- package/dist/src/relationship/plugins/Relationship.d.ts +0 -0
- package/dist/src/tree/defaults.d.ts +0 -4
- package/src/base/BaseGroupArea.ts +0 -0
- package/src/multiValue/plugins/ScatterAxes.ts +0 -0
- package/src/relationship/plugins/Relationship.ts +0 -0
- /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
- /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
- /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
- /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
- /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
- /package/dist/{src/base/BaseGroupArea.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts} +0 -0
- /package/dist/{src/multiValue/index.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts} +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
- /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
- /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
- /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -1,24 +1,126 @@
|
|
1
|
-
(function(
|
1
|
+
(function(H,Dr){typeof exports=="object"&&typeof module<"u"?Dr(exports):typeof define=="function"&&define.amd?define(["exports"],Dr):(H=typeof globalThis<"u"?globalThis:H||self,Dr(H["orbcharts-plugins-basic"]={}))})(this,function(H){"use strict";const Dr={lineCurve:"curveLinear",lineWidth:2},ed={lineCurve:"curveLinear",linearGradientOpacity:[1,0]},td={radius:4,fillColorType:"white",strokeColorType:"label",strokeWidth:2,onlyShowHighlighted:!1},bu={showLine:!0,showLabel:!0,lineDashArray:"3, 3",lineColorType:"primary",labelColorType:"primary",labelTextColorType:"background",labelTextFormat:e=>e,labelPadding:20,labelRotate:0};bu.labelTextFormat.toString=()=>"text => text";const ga={barWidth:0,barPadding:1,barGroupPadding:40,barRadius:!1},U2={...ga},nd={barWidth:0,barGroupPadding:10,barRadius:!1},rd={barWidth:0,barPadding:1,barGroupPadding:20,linearGradientOpacity:[1,0]},xu={labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!0,axisLineColorType:"primary",ticks:"all",tickFormat:e=>e,tickLineVisible:!0,tickPadding:20,tickFullLine:!1,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary"};xu.tickFormat.toString=()=>"text => text";const ma={labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:null,tickFormat:e=>e,tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary"};ma.tickFormat.toString=()=>"v => v";const id={...ma},od={},ad={placement:"bottom",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,textColorType:"primary"},vu={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,renderFn:(e,{styles:t,utils:n})=>{const r=t.textSizePx*.7,i=t.textSizePx/2-r/2,o=`<g><text dominant-baseline="hanging" font-size="${t.textSizePx}">${e.groupLabel}</text></g>`,a=e.groups.reduce((c,f)=>{const h=`${f.seriesLabel}${f.value}`;return h.length>c.length?h:c},""),l=n.measureTextWidth(a,t.textSizePx)+t.textSizePx*2,u=e.groups.map((c,f)=>{const h=f*t.textSizePx*1.5,p=c.id===(e.datum&&e.datum.id);return`<g transform="translate(0, ${t.textSizePx*2})">
|
2
|
+
<rect width="${r}" height="${r}" x="${i}" y="${h+i}" rx="${r/2}" fill="${c.color}"></rect>
|
3
|
+
<text x="${t.textSizePx*1.5}" y="${h}" font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
4
|
+
<tspan font-weight="${p?"bold":""}">${c.seriesLabel}</tspan>
|
5
|
+
<tspan font-weight="bold" text-anchor="end" x="${l}">${c.value}</tspan>
|
6
|
+
</text>
|
7
|
+
</g>`}).join("");return`${o}
|
8
|
+
${u}`}};vu.renderFn.toString=()=>`(eventData, { styles, utils }) => {
|
9
|
+
const bulletWidth = styles.textSizePx * 0.7
|
10
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
11
|
+
|
12
|
+
const titleSvg = \`<g><text dominant-baseline="hanging" font-size="\${styles.textSizePx}">\${eventData.groupLabel}</text></g>\`
|
13
|
+
const maxLengthText = eventData.groups.reduce((acc, group) => {
|
14
|
+
const text = \`\${group.seriesLabel}\${group.value}\`
|
15
|
+
return text.length > acc.length ? text : acc
|
16
|
+
}, '')
|
17
|
+
const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
|
18
|
+
const lineEndX = maxTextWidth + styles.textSizePx * 2
|
19
|
+
const contentSvg = eventData.groups
|
20
|
+
.map((group, i) => {
|
21
|
+
const y = i * styles.textSizePx * 1.5
|
22
|
+
const isHighlight = group.id === (eventData.datum && eventData.datum.id)
|
23
|
+
return \`<g transform="translate(0, \${styles.textSizePx * 2})">
|
24
|
+
<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${y + offset}" rx="\${bulletWidth / 2}" fill="\${group.color}"></rect>
|
25
|
+
<text x="\${styles.textSizePx * 1.5}" y="\${y}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
26
|
+
<tspan font-weight="\${isHighlight ? 'bold' : ''}">\${group.seriesLabel}</tspan>
|
27
|
+
<tspan font-weight="bold" text-anchor="end" x="\${lineEndX}">\${group.value}</tspan>
|
28
|
+
</text>
|
29
|
+
</g>\`
|
30
|
+
})
|
31
|
+
.join('')
|
32
|
+
return \`\${titleSvg}
|
33
|
+
\${contentSvg}\`
|
34
|
+
}`;var $u=function(e,t){return $u=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(n[i]=r[i])},$u(e,t)};function zt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");$u(e,t);function n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}function H2(e,t,n,r){function i(o){return o instanceof n?o:new n(function(a){a(o)})}return new(n||(n=Promise))(function(o,a){function s(c){try{u(r.next(c))}catch(f){a(f)}}function l(c){try{u(r.throw(c))}catch(f){a(f)}}function u(c){c.done?o(c.value):i(c.value).then(s,l)}u((r=r.apply(e,t||[])).next())})}function sd(e,t){var n={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,i,o,a=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(u){return function(c){return l([u,c])}}function l(u){if(r)throw new TypeError("Generator is already executing.");for(;a&&(a=0,u[0]&&(n=0)),n;)try{if(r=1,i&&(o=u[0]&2?i.return:u[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,u[1])).done)return o;switch(i=0,o&&(u=[u[0]&2,o.value]),u[0]){case 0:case 1:o=u;break;case 4:return n.label++,{value:u[1],done:!1};case 5:n.label++,i=u[1],u=[0];continue;case 7:u=n.ops.pop(),n.trys.pop();continue;default:if(o=n.trys,!(o=o.length>0&&o[o.length-1])&&(u[0]===6||u[0]===2)){n=0;continue}if(u[0]===3&&(!o||u[1]>o[0]&&u[1]<o[3])){n.label=u[1];break}if(u[0]===6&&n.label<o[1]){n.label=o[1],o=u;break}if(o&&n.label<o[2]){n.label=o[2],n.ops.push(u);break}o[2]&&n.ops.pop(),n.trys.pop();continue}u=t.call(e,n)}catch(c){u=[6,c],i=0}finally{r=o=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}}function Mr(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function zn(e,t){var n=typeof Symbol=="function"&&e[Symbol.iterator];if(!n)return e;var r=n.call(e),i,o=[],a;try{for(;(t===void 0||t-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(s){a={error:s}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(a)throw a.error}}return o}function Cr(e,t,n){if(n||arguments.length===2)for(var r=0,i=t.length,o;r<i;r++)(o||!(r in t))&&(o||(o=Array.prototype.slice.call(t,0,r)),o[r]=t[r]);return e.concat(o||Array.prototype.slice.call(t))}function Lr(e){return this instanceof Lr?(this.v=e,this):new Lr(e)}function j2(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),i,o=[];return i=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),s("next"),s("throw"),s("return",a),i[Symbol.asyncIterator]=function(){return this},i;function a(p){return function(d){return Promise.resolve(d).then(p,f)}}function s(p,d){r[p]&&(i[p]=function(m){return new Promise(function(g,y){o.push([p,m,g,y])>1||l(p,m)})},d&&(i[p]=d(i[p])))}function l(p,d){try{u(r[p](d))}catch(m){h(o[0][3],m)}}function u(p){p.value instanceof Lr?Promise.resolve(p.value.v).then(c,f):h(o[0][2],p)}function c(p){l("next",p)}function f(p){l("throw",p)}function h(p,d){p(d),o.shift(),o.length&&l(o[0][0],o[0][1])}}function q2(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof Mr=="function"?Mr(e):e[Symbol.iterator](),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(o){n[o]=e[o]&&function(a){return new Promise(function(s,l){a=e[o](a),i(s,l,a.done,a.value)})}}function i(o,a,s,l){Promise.resolve(l).then(function(u){o({value:u,done:s})},a)}}typeof SuppressedError=="function"&&SuppressedError;function xe(e){return typeof e=="function"}function _u(e){var t=function(r){Error.call(r),r.stack=new Error().stack},n=e(t);return n.prototype=Object.create(Error.prototype),n.prototype.constructor=n,n}var Su=_u(function(e){return function(n){e(this),this.message=n?n.length+` errors occurred during unsubscription:
|
2
35
|
`+n.map(function(r,i){return i+1+") "+r.toString()}).join(`
|
3
|
-
`):"",this.name="UnsubscriptionError",this.errors=n}});function Vu(t,e){if(t){var n=t.indexOf(e);0<=n&&t.splice(n,1)}}var Vo=function(){function t(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var e,n,r,i,o;if(!this.closed){this.closed=!0;var a=this._parentage;if(a)if(this._parentage=null,Array.isArray(a))try{for(var s=mr(a),u=s.next();!u.done;u=s.next()){var l=u.value;l.remove(this)}}catch(g){e={error:g}}finally{try{u&&!u.done&&(n=s.return)&&n.call(s)}finally{if(e)throw e.error}}else a.remove(this);var c=this.initialTeardown;if(yt(c))try{c()}catch(g){o=g instanceof ju?g.errors:[g]}var f=this._finalizers;if(f){this._finalizers=null;try{for(var h=mr(f),p=h.next();!p.done;p=h.next()){var d=p.value;try{wp(d)}catch(g){o=o??[],g instanceof ju?o=_i(_i([],yr(o)),yr(g.errors)):o.push(g)}}}catch(g){r={error:g}}finally{try{p&&!p.done&&(i=h.return)&&i.call(h)}finally{if(r)throw r.error}}}if(o)throw new ju(o)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)wp(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=(n=this._finalizers)!==null&&n!==void 0?n:[]).push(e)}},t.prototype._hasParent=function(e){var n=this._parentage;return n===e||Array.isArray(n)&&n.includes(e)},t.prototype._addParent=function(e){var n=this._parentage;this._parentage=Array.isArray(n)?(n.push(e),n):n?[n,e]:e},t.prototype._removeParent=function(e){var n=this._parentage;n===e?this._parentage=null:Array.isArray(n)&&Vu(n,e)},t.prototype.remove=function(e){var n=this._finalizers;n&&Vu(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),vp=Vo.EMPTY;function _p(t){return t instanceof Vo||t&&"closed"in t&&yt(t.remove)&&yt(t.add)&&yt(t.unsubscribe)}function wp(t){yt(t)?t():t.unsubscribe()}var $p={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},Sp={setTimeout:function(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setTimeout.apply(void 0,_i([t,e],yr(n)))},clearTimeout:function(t){var e=Sp.delegate;return((e==null?void 0:e.clearTimeout)||clearTimeout)(t)},delegate:void 0};function Ap(t){Sp.setTimeout(function(){throw t})}function qu(){}function qo(t){t()}var Zu=function(t){Cn(e,t);function e(n){var r=t.call(this)||this;return r.isStopped=!1,n?(r.destination=n,_p(n)&&n.add(r)):r.destination=X2,r}return e.create=function(n,r,i){return new wi(n,r,i)},e.prototype.next=function(n){this.isStopped||this._next(n)},e.prototype.error=function(n){this.isStopped||(this.isStopped=!0,this._error(n))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(n){this.destination.next(n)},e.prototype._error=function(n){try{this.destination.error(n)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e}(Vo),U2=Function.prototype.bind;function Ku(t,e){return U2.call(t,e)}var W2=function(){function t(e){this.partialObserver=e}return t.prototype.next=function(e){var n=this.partialObserver;if(n.next)try{n.next(e)}catch(r){Zo(r)}},t.prototype.error=function(e){var n=this.partialObserver;if(n.error)try{n.error(e)}catch(r){Zo(r)}else Zo(e)},t.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(n){Zo(n)}},t}(),wi=function(t){Cn(e,t);function e(n,r,i){var o=t.call(this)||this,a;if(yt(n)||!n)a={next:n??void 0,error:r??void 0,complete:i??void 0};else{var s;o&&$p.useDeprecatedNextContext?(s=Object.create(n),s.unsubscribe=function(){return o.unsubscribe()},a={next:n.next&&Ku(n.next,s),error:n.error&&Ku(n.error,s),complete:n.complete&&Ku(n.complete,s)}):a=n}return o.destination=new W2(a),o}return e}(Zu);function Zo(t){Ap(t)}function H2(t){throw t}var X2={closed:!0,next:qu,error:H2,complete:qu},Qu=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function xr(t){return t}function j2(t){return t.length===0?xr:t.length===1?t[0]:function(n){return t.reduce(function(r,i){return i(r)},n)}}var dt=function(){function t(e){e&&(this._subscribe=e)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(e,n,r){var i=this,o=q2(e)?e:new wi(e,n,r);return qo(function(){var a=i,s=a.operator,u=a.source;o.add(s?s.call(o,u):u?i._subscribe(o):i._trySubscribe(o))}),o},t.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(n){e.error(n)}},t.prototype.forEach=function(e,n){var r=this;return n=Tp(n),new n(function(i,o){var a=new wi({next:function(s){try{e(s)}catch(u){o(u),a.unsubscribe()}},error:o,complete:i});r.subscribe(a)})},t.prototype._subscribe=function(e){var n;return(n=this.source)===null||n===void 0?void 0:n.subscribe(e)},t.prototype[Qu]=function(){return this},t.prototype.pipe=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return j2(e)(this)},t.prototype.toPromise=function(e){var n=this;return e=Tp(e),new e(function(r,i){var o;n.subscribe(function(a){return o=a},function(a){return i(a)},function(){return r(o)})})},t.create=function(e){return new t(e)},t}();function Tp(t){var e;return(e=t??$p.Promise)!==null&&e!==void 0?e:Promise}function V2(t){return t&&yt(t.next)&&yt(t.error)&&yt(t.complete)}function q2(t){return t&&t instanceof Zu||V2(t)&&_p(t)}function Z2(t){return yt(t==null?void 0:t.lift)}function he(t){return function(e){if(Z2(e))return e.lift(function(n){try{return t(n,this)}catch(r){this.error(r)}});throw new TypeError("Unable to lift unknown Observable type")}}function ae(t,e,n,r,i){return new K2(t,e,n,r,i)}var K2=function(t){Cn(e,t);function e(n,r,i,o,a,s){var u=t.call(this,n)||this;return u.onFinalize=a,u.shouldUnsubscribe=s,u._next=r?function(l){try{r(l)}catch(c){n.error(c)}}:t.prototype._next,u._error=o?function(l){try{o(l)}catch(c){n.error(c)}finally{this.unsubscribe()}}:t.prototype._error,u._complete=i?function(){try{i()}catch(l){n.error(l)}finally{this.unsubscribe()}}:t.prototype._complete,u}return e.prototype.unsubscribe=function(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;t.prototype.unsubscribe.call(this),!r&&((n=this.onFinalize)===null||n===void 0||n.call(this))}},e}(Zu),Q2=Xu(function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}}),nt=function(t){Cn(e,t);function e(){var n=t.call(this)||this;return n.closed=!1,n.currentObservers=null,n.observers=[],n.isStopped=!1,n.hasError=!1,n.thrownError=null,n}return e.prototype.lift=function(n){var r=new Pp(this,this);return r.operator=n,r},e.prototype._throwIfClosed=function(){if(this.closed)throw new Q2},e.prototype.next=function(n){var r=this;qo(function(){var i,o;if(r._throwIfClosed(),!r.isStopped){r.currentObservers||(r.currentObservers=Array.from(r.observers));try{for(var a=mr(r.currentObservers),s=a.next();!s.done;s=a.next()){var u=s.value;u.next(n)}}catch(l){i={error:l}}finally{try{s&&!s.done&&(o=a.return)&&o.call(a)}finally{if(i)throw i.error}}}})},e.prototype.error=function(n){var r=this;qo(function(){if(r._throwIfClosed(),!r.isStopped){r.hasError=r.isStopped=!0,r.thrownError=n;for(var i=r.observers;i.length;)i.shift().error(n)}})},e.prototype.complete=function(){var n=this;qo(function(){if(n._throwIfClosed(),!n.isStopped){n.isStopped=!0;for(var r=n.observers;r.length;)r.shift().complete()}})},e.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(e.prototype,"observed",{get:function(){var n;return((n=this.observers)===null||n===void 0?void 0:n.length)>0},enumerable:!1,configurable:!0}),e.prototype._trySubscribe=function(n){return this._throwIfClosed(),t.prototype._trySubscribe.call(this,n)},e.prototype._subscribe=function(n){return this._throwIfClosed(),this._checkFinalizedStatuses(n),this._innerSubscribe(n)},e.prototype._innerSubscribe=function(n){var r=this,i=this,o=i.hasError,a=i.isStopped,s=i.observers;return o||a?vp:(this.currentObservers=null,s.push(n),new Vo(function(){r.currentObservers=null,Vu(s,n)}))},e.prototype._checkFinalizedStatuses=function(n){var r=this,i=r.hasError,o=r.thrownError,a=r.isStopped;i?n.error(o):a&&n.complete()},e.prototype.asObservable=function(){var n=new dt;return n.source=this,n},e.create=function(n,r){return new Pp(n,r)},e}(dt),Pp=function(t){Cn(e,t);function e(n,r){var i=t.call(this)||this;return i.destination=n,i.source=r,i}return e.prototype.next=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.next)===null||i===void 0||i.call(r,n)},e.prototype.error=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.error)===null||i===void 0||i.call(r,n)},e.prototype.complete=function(){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.complete)===null||r===void 0||r.call(n)},e.prototype._subscribe=function(n){var r,i;return(i=(r=this.source)===null||r===void 0?void 0:r.subscribe(n))!==null&&i!==void 0?i:vp},e}(nt),J2=function(t){Cn(e,t);function e(n){var r=t.call(this)||this;return r._value=n,r}return Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),e.prototype._subscribe=function(n){var r=t.prototype._subscribe.call(this,n);return!r.closed&&n.next(this._value),r},e.prototype.getValue=function(){var n=this,r=n.hasError,i=n.thrownError,o=n._value;if(r)throw i;return this._throwIfClosed(),o},e.prototype.next=function(n){t.prototype.next.call(this,this._value=n)},e}(nt),Mp={now:function(){return(Mp.delegate||Date).now()},delegate:void 0},t_=function(t){Cn(e,t);function e(n,r,i){n===void 0&&(n=1/0),r===void 0&&(r=1/0),i===void 0&&(i=Mp);var o=t.call(this)||this;return o._bufferSize=n,o._windowTime=r,o._timestampProvider=i,o._buffer=[],o._infiniteTimeWindow=!0,o._infiniteTimeWindow=r===1/0,o._bufferSize=Math.max(1,n),o._windowTime=Math.max(1,r),o}return e.prototype.next=function(n){var r=this,i=r.isStopped,o=r._buffer,a=r._infiniteTimeWindow,s=r._timestampProvider,u=r._windowTime;i||(o.push(n),!a&&o.push(s.now()+u)),this._trimBuffer(),t.prototype.next.call(this,n)},e.prototype._subscribe=function(n){this._throwIfClosed(),this._trimBuffer();for(var r=this._innerSubscribe(n),i=this,o=i._infiniteTimeWindow,a=i._buffer,s=a.slice(),u=0;u<s.length&&!n.closed;u+=o?1:2)n.next(s[u]);return this._checkFinalizedStatuses(n),r},e.prototype._trimBuffer=function(){var n=this,r=n._bufferSize,i=n._timestampProvider,o=n._buffer,a=n._infiniteTimeWindow,s=(a?1:2)*r;if(r<1/0&&s<o.length&&o.splice(0,o.length-s),!a){for(var u=i.now(),l=0,c=1;c<o.length&&o[c]<=u;c+=2)l=c;l&&o.splice(0,l+1)}},e}(nt),Dp=new dt(function(t){return t.complete()});function e_(t){return t&&yt(t.schedule)}function Ju(t){return t[t.length-1]}function n_(t){return yt(Ju(t))?t.pop():void 0}function tl(t){return e_(Ju(t))?t.pop():void 0}function r_(t,e){return typeof Ju(t)=="number"?t.pop():e}var el=function(t){return t&&typeof t.length=="number"&&typeof t!="function"};function Cp(t){return yt(t==null?void 0:t.then)}function Lp(t){return yt(t[Qu])}function kp(t){return Symbol.asyncIterator&&yt(t==null?void 0:t[Symbol.asyncIterator])}function Rp(t){return new TypeError("You provided "+(t!==null&&typeof t=="object"?"an invalid object":"'"+t+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function i_(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var Ep=i_();function Ip(t){return yt(t==null?void 0:t[Ep])}function Np(t){return z2(this,arguments,function(){var n,r,i,o;return xp(this,function(a){switch(a.label){case 0:n=t.getReader(),a.label=1;case 1:a.trys.push([1,,9,10]),a.label=2;case 2:return[4,br(n.read())];case 3:return r=a.sent(),i=r.value,o=r.done,o?[4,br(void 0)]:[3,5];case 4:return[2,a.sent()];case 5:return[4,br(i)];case 6:return[4,a.sent()];case 7:return a.sent(),[3,2];case 8:return[3,10];case 9:return n.releaseLock(),[7];case 10:return[2]}})})}function Bp(t){return yt(t==null?void 0:t.getReader)}function pe(t){if(t instanceof dt)return t;if(t!=null){if(Lp(t))return o_(t);if(el(t))return a_(t);if(Cp(t))return s_(t);if(kp(t))return Fp(t);if(Ip(t))return u_(t);if(Bp(t))return l_(t)}throw Rp(t)}function o_(t){return new dt(function(e){var n=t[Qu]();if(yt(n.subscribe))return n.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function a_(t){return new dt(function(e){for(var n=0;n<t.length&&!e.closed;n++)e.next(t[n]);e.complete()})}function s_(t){return new dt(function(e){t.then(function(n){e.closed||(e.next(n),e.complete())},function(n){return e.error(n)}).then(null,Ap)})}function u_(t){return new dt(function(e){var n,r;try{for(var i=mr(t),o=i.next();!o.done;o=i.next()){var a=o.value;if(e.next(a),e.closed)return}}catch(s){n={error:s}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}e.complete()})}function Fp(t){return new dt(function(e){c_(t,e).catch(function(n){return e.error(n)})})}function l_(t){return Fp(Np(t))}function c_(t,e){var n,r,i,o;return G2(this,void 0,void 0,function(){var a,s;return xp(this,function(u){switch(u.label){case 0:u.trys.push([0,5,6,11]),n=Y2(t),u.label=1;case 1:return[4,n.next()];case 2:if(r=u.sent(),!!r.done)return[3,4];if(a=r.value,e.next(a),e.closed)return[2];u.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return s=u.sent(),i={error:s},[3,11];case 6:return u.trys.push([6,,9,10]),r&&!r.done&&(o=n.return)?[4,o.call(n)]:[3,8];case 7:u.sent(),u.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}})})}function fn(t,e,n,r,i){r===void 0&&(r=0),i===void 0&&(i=!1);var o=e.schedule(function(){n(),i?t.add(this.schedule(null,r)):this.unsubscribe()},r);if(t.add(o),!i)return o}function Op(t,e){return e===void 0&&(e=0),he(function(n,r){n.subscribe(ae(r,function(i){return fn(r,t,function(){return r.next(i)},e)},function(){return fn(r,t,function(){return r.complete()},e)},function(i){return fn(r,t,function(){return r.error(i)},e)}))})}function Gp(t,e){return e===void 0&&(e=0),he(function(n,r){r.add(t.schedule(function(){return n.subscribe(r)},e))})}function f_(t,e){return pe(t).pipe(Gp(e),Op(e))}function h_(t,e){return pe(t).pipe(Gp(e),Op(e))}function p_(t,e){return new dt(function(n){var r=0;return e.schedule(function(){r===t.length?n.complete():(n.next(t[r++]),n.closed||this.schedule())})})}function d_(t,e){return new dt(function(n){var r;return fn(n,e,function(){r=t[Ep](),fn(n,e,function(){var i,o,a;try{i=r.next(),o=i.value,a=i.done}catch(s){n.error(s);return}a?n.complete():n.next(o)},0,!0)}),function(){return yt(r==null?void 0:r.return)&&r.return()}})}function zp(t,e){if(!t)throw new Error("Iterable cannot be null");return new dt(function(n){fn(n,e,function(){var r=t[Symbol.asyncIterator]();fn(n,e,function(){r.next().then(function(i){i.done?n.complete():n.next(i.value)})},0,!0)})})}function g_(t,e){return zp(Np(t),e)}function m_(t,e){if(t!=null){if(Lp(t))return f_(t,e);if(el(t))return p_(t,e);if(Cp(t))return h_(t,e);if(kp(t))return zp(t,e);if(Ip(t))return d_(t,e);if(Bp(t))return g_(t,e)}throw Rp(t)}function Ko(t,e){return e?m_(t,e):pe(t)}function Qo(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=tl(t);return Ko(t,n)}var Yp=Xu(function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}});function B(t,e){return he(function(n,r){var i=0;n.subscribe(ae(r,function(o){r.next(t.call(e,o,i++))}))})}var y_=Array.isArray;function b_(t,e){return y_(e)?t.apply(void 0,_i([],yr(e))):t(e)}function Up(t){return B(function(e){return b_(t,e)})}var x_=Array.isArray,v_=Object.getPrototypeOf,__=Object.prototype,w_=Object.keys;function $_(t){if(t.length===1){var e=t[0];if(x_(e))return{args:e,keys:null};if(S_(e)){var n=w_(e);return{args:n.map(function(r){return e[r]}),keys:n}}}return{args:t,keys:null}}function S_(t){return t&&typeof t=="object"&&v_(t)===__}function A_(t,e){return t.reduce(function(n,r,i){return n[r]=e[i],n},{})}function U(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=tl(t),r=n_(t),i=$_(t),o=i.args,a=i.keys;if(o.length===0)return Ko([],n);var s=new dt(T_(o,n,a?function(u){return A_(a,u)}:xr));return r?s.pipe(Up(r)):s}function T_(t,e,n){return n===void 0&&(n=xr),function(r){Wp(e,function(){for(var i=t.length,o=new Array(i),a=i,s=i,u=function(c){Wp(e,function(){var f=Ko(t[c],e),h=!1;f.subscribe(ae(r,function(p){o[c]=p,h||(h=!0,s--),s||r.next(n(o.slice()))},function(){--a||r.complete()}))},r)},l=0;l<i;l++)u(l)},r)}}function Wp(t,e,n){t?fn(n,t,e):e()}function P_(t,e,n,r,i,o,a,s){var u=[],l=0,c=0,f=!1,h=function(){f&&!u.length&&!l&&e.complete()},p=function(g){return l<r?d(g):u.push(g)},d=function(g){l++;var m=!1;pe(n(g,c++)).subscribe(ae(e,function(y){e.next(y)},function(){m=!0},void 0,function(){if(m)try{l--;for(var y=function(){var b=u.shift();a||d(b)};u.length&&l<r;)y();h()}catch(b){e.error(b)}}))};return t.subscribe(ae(e,p,function(){f=!0,h()})),function(){}}function nl(t,e,n){return n===void 0&&(n=1/0),yt(e)?nl(function(r,i){return B(function(o,a){return e(r,o,i,a)})(pe(t(r,i)))},n):(typeof e=="number"&&(n=e),he(function(r,i){return P_(r,i,t,n)}))}function M_(t){return t===void 0&&(t=1/0),nl(xr,t)}function D_(t){return new dt(function(e){pe(t()).subscribe(e)})}var C_=["addListener","removeListener"],L_=["addEventListener","removeEventListener"],k_=["on","off"];function rl(t,e,n,r){if(yt(n)&&(r=n,n=void 0),r)return rl(t,e,n).pipe(Up(r));var i=yr(I_(t)?L_.map(function(s){return function(u){return t[s](e,u,n)}}):R_(t)?C_.map(Hp(t,e)):E_(t)?k_.map(Hp(t,e)):[],2),o=i[0],a=i[1];if(!o&&el(t))return nl(function(s){return rl(s,e,n)})(pe(t));if(!o)throw new TypeError("Invalid event target");return new dt(function(s){var u=function(){for(var l=[],c=0;c<arguments.length;c++)l[c]=arguments[c];return s.next(1<l.length?l:l[0])};return o(u),function(){return a(u)}})}function Hp(t,e){return function(n){return function(r){return t[n](e,r)}}}function R_(t){return yt(t.addListener)&&yt(t.removeListener)}function E_(t){return yt(t.on)&&yt(t.off)}function I_(t){return yt(t.addEventListener)&&yt(t.removeEventListener)}function Xp(t,e,n){return D_(function(){return t()?e:n})}function il(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=tl(t),r=r_(t,1/0),i=t;return i.length?i.length===1?pe(i[0]):M_(r)(Ko(i,n)):Dp}function $i(t,e){return he(function(n,r){var i=0;n.subscribe(ae(r,function(o){return t.call(e,o,i++)&&r.next(o)}))})}function N_(t){return he(function(e,n){var r=!1;e.subscribe(ae(n,function(i){r=!0,n.next(i)},function(){r||n.next(t),n.complete()}))})}function B_(t){return t<=0?function(){return Dp}:he(function(e,n){var r=0;e.subscribe(ae(n,function(i){++r<=t&&(n.next(i),t<=r&&n.complete())}))})}function tt(t,e){return e===void 0&&(e=xr),t=t??F_,he(function(n,r){var i,o=!0;n.subscribe(ae(r,function(a){var s=e(a);(o||!t(i,s))&&(o=!1,i=s,r.next(a))}))})}function F_(t,e){return t===e}function O_(t){return t===void 0&&(t=G_),he(function(e,n){var r=!1;e.subscribe(ae(n,function(i){r=!0,n.next(i)},function(){return r?n.complete():n.error(t())}))})}function G_(){return new Yp}function z_(t,e){var n=arguments.length>=2;return function(r){return r.pipe(xr,B_(1),n?N_(e):O_(function(){return new Yp}))}}function Y_(t){t===void 0&&(t={});var e=t.connector,n=e===void 0?function(){return new nt}:e,r=t.resetOnError,i=r===void 0?!0:r,o=t.resetOnComplete,a=o===void 0?!0:o,s=t.resetOnRefCountZero,u=s===void 0?!0:s;return function(l){var c,f,h,p=0,d=!1,g=!1,m=function(){f==null||f.unsubscribe(),f=void 0},y=function(){m(),c=h=void 0,d=g=!1},b=function(){var v=c;y(),v==null||v.unsubscribe()};return he(function(v,x){p++,!g&&!d&&m();var S=h=h??n();x.add(function(){p--,p===0&&!g&&!d&&(f=ol(b,u))}),S.subscribe(x),!c&&p>0&&(c=new wi({next:function($){return S.next($)},error:function($){g=!0,m(),f=ol(y,i,$),S.error($)},complete:function(){d=!0,m(),f=ol(y,a),S.complete()}}),pe(v).subscribe(c))})(l)}}function ol(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];if(e===!0){t();return}if(e!==!1){var i=new wi({next:function(){i.unsubscribe(),t()}});return pe(e.apply(void 0,_i([],yr(n)))).subscribe(i)}}function St(t,e,n){var r,i=!1;return r=t,Y_({connector:function(){return new t_(r,e,n)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:i})}function W(t,e){return he(function(n,r){var i=null,o=0,a=!1,s=function(){return a&&!i&&r.complete()};n.subscribe(ae(r,function(u){i==null||i.unsubscribe();var l=0,c=o++;pe(t(u,c)).subscribe(i=ae(r,function(f){return r.next(e?e(u,f,c,l++):f)},function(){i=null,s()}))},function(){a=!0,s()}))})}function I(t){return he(function(e,n){pe(t).subscribe(ae(n,function(){return n.complete()},qu)),!n.closed&&e.subscribe(n)})}const vr={position:"left",scaleDomain:["auto","auto"],scaleRange:[0,.9],label:""};function _r(t){return Object.prototype.toString.call(t)==="[object Object]"}function U_(t){return Object.prototype.toString.call(t)==="[object Function]"}function al(t,e){if(_r(t)===!1||_r(e)===!1)return Object.assign({},e);const n=(r,i)=>{const o=Object.assign({},i);for(let a of Object.keys(r)){if(!(a in i))continue;let s;_r(r[a])&&_r(i[a])?(s=n(r[a],i[a]),o[a]=s):o[a]=r[a]}return o};return n(t,e)}function W_(t,e){const n={string:i=>typeof i=="string",number:i=>typeof i=="number",boolean:i=>typeof i=="boolean",object:i=>_r(i),"object[]":i=>Array.isArray(i)&&i.every(o=>_r(o)),"string[]":i=>Array.isArray(i)&&i.every(o=>typeof o=="string"),"number[]":i=>Array.isArray(i)&&i.every(o=>typeof o=="number"),Function:i=>U_(i),null:i=>i===null,undefined:i=>i===void 0},r={ColorType:i=>i==="none"||i==="series"||i==="primary"||i==="secondary"||i==="white"||i==="background"};return Object.keys(t).find(i=>{if(e[i]){const o=e[i],a=t[i];if(o.toBeTypes){if(o.toBeTypes.some(s=>n[s](a))===!1)return!0}else if(o.toBe){const{toBe:s,test:u}=o;if(u(a)===!1)return!0}else if(o.toBeOption){const s=o.toBeOption;if(r[s](a)===!1)return!0}}return!1})}function H_(t,e){const n=W_(t,e);if(n){const r=e[n],i=r.toBeTypes?r.toBeTypes.join(" | "):r.toBe?r.toBe:r.toBeOption?r.toBeOption:"";return{status:"error",columnName:n,expectToBe:i}}else return{status:"success",columnName:"",expectToBe:""}}function Jo(t,e){return t==null||e==null?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function X_(t,e){return t==null||e==null?NaN:e<t?-1:e>t?1:e>=t?0:NaN}function jp(t){let e,n,r;t.length!==2?(e=Jo,n=(s,u)=>Jo(t(s),u),r=(s,u)=>t(s)-u):(e=t===Jo||t===X_?t:j_,n=t,r=t);function i(s,u,l=0,c=s.length){if(l<c){if(e(u,u)!==0)return c;do{const f=l+c>>>1;n(s[f],u)<0?l=f+1:c=f}while(l<c)}return l}function o(s,u,l=0,c=s.length){if(l<c){if(e(u,u)!==0)return c;do{const f=l+c>>>1;n(s[f],u)<=0?l=f+1:c=f}while(l<c)}return l}function a(s,u,l=0,c=s.length){const f=i(s,u,l,c-1);return f>l&&r(s[f-1],u)>-r(s[f],u)?f-1:f}return{left:i,center:a,right:o}}function j_(){return 0}function V_(t){return t===null?NaN:+t}const q_=jp(Jo),Vp=q_.right;jp(V_).center;const Z_=Math.sqrt(50),K_=Math.sqrt(10),Q_=Math.sqrt(2);function ta(t,e,n){const r=(e-t)/Math.max(0,n),i=Math.floor(Math.log10(r)),o=r/Math.pow(10,i),a=o>=Z_?10:o>=K_?5:o>=Q_?2:1;let s,u,l;return i<0?(l=Math.pow(10,-i)/a,s=Math.round(t*l),u=Math.round(e*l),s/l<t&&++s,u/l>e&&--u,l=-l):(l=Math.pow(10,i)*a,s=Math.round(t/l),u=Math.round(e/l),s*l<t&&++s,u*l>e&&--u),u<s&&.5<=n&&n<2?ta(t,e,n*2):[s,u,l]}function J_(t,e,n){if(e=+e,t=+t,n=+n,!(n>0))return[];if(t===e)return[t];const r=e<t,[i,o,a]=r?ta(e,t,n):ta(t,e,n);if(!(o>=i))return[];const s=o-i+1,u=new Array(s);if(r)if(a<0)for(let l=0;l<s;++l)u[l]=(o-l)/-a;else for(let l=0;l<s;++l)u[l]=(o-l)*a;else if(a<0)for(let l=0;l<s;++l)u[l]=(i+l)/-a;else for(let l=0;l<s;++l)u[l]=(i+l)*a;return u}function sl(t,e,n){return e=+e,t=+t,n=+n,ta(t,e,n)[2]}function tw(t,e,n){e=+e,t=+t,n=+n;const r=e<t,i=r?sl(e,t,n):sl(t,e,n);return(r?-1:1)*(i<0?1/-i:i)}var ew={value:()=>{}};function qp(){for(var t=0,e=arguments.length,n={},r;t<e;++t){if(!(r=arguments[t]+"")||r in n||/[\s.]/.test(r))throw new Error("illegal type: "+r);n[r]=[]}return new ea(n)}function ea(t){this._=t}function nw(t,e){return t.trim().split(/^|\s+/).map(function(n){var r="",i=n.indexOf(".");if(i>=0&&(r=n.slice(i+1),n=n.slice(0,i)),n&&!e.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:r}})}ea.prototype=qp.prototype={constructor:ea,on:function(t,e){var n=this._,r=nw(t+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(t=r[o]).type)&&(i=rw(n[i],t.name)))return i;return}if(e!=null&&typeof e!="function")throw new Error("invalid callback: "+e);for(;++o<a;)if(i=(t=r[o]).type)n[i]=Zp(n[i],t.name,e);else if(e==null)for(i in n)n[i]=Zp(n[i],t.name,null);return this},copy:function(){var t={},e=this._;for(var n in e)t[n]=e[n].slice();return new ea(t)},call:function(t,e){if((i=arguments.length-2)>0)for(var n=new Array(i),r=0,i,o;r<i;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(o=this._[t],r=0,i=o.length;r<i;++r)o[r].value.apply(e,n)},apply:function(t,e,n){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(e,n)}};function rw(t,e){for(var n=0,r=t.length,i;n<r;++n)if((i=t[n]).name===e)return i.value}function Zp(t,e,n){for(var r=0,i=t.length;r<i;++r)if(t[r].name===e){t[r]=ew,t=t.slice(0,r).concat(t.slice(r+1));break}return n!=null&&t.push({name:e,value:n}),t}var ul="http://www.w3.org/1999/xhtml";const Kp={svg:"http://www.w3.org/2000/svg",xhtml:ul,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function na(t){var e=t+="",n=e.indexOf(":");return n>=0&&(e=t.slice(0,n))!=="xmlns"&&(t=t.slice(n+1)),Kp.hasOwnProperty(e)?{space:Kp[e],local:t}:t}function iw(t){return function(){var e=this.ownerDocument,n=this.namespaceURI;return n===ul&&e.documentElement.namespaceURI===ul?e.createElement(t):e.createElementNS(n,t)}}function ow(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}function Qp(t){var e=na(t);return(e.local?ow:iw)(e)}function aw(){}function ll(t){return t==null?aw:function(){return this.querySelector(t)}}function sw(t){typeof t!="function"&&(t=ll(t));for(var e=this._groups,n=e.length,r=new Array(n),i=0;i<n;++i)for(var o=e[i],a=o.length,s=r[i]=new Array(a),u,l,c=0;c<a;++c)(u=o[c])&&(l=t.call(u,u.__data__,c,o))&&("__data__"in u&&(l.__data__=u.__data__),s[c]=l);return new we(r,this._parents)}function uw(t){return t==null?[]:Array.isArray(t)?t:Array.from(t)}function lw(){return[]}function Jp(t){return t==null?lw:function(){return this.querySelectorAll(t)}}function cw(t){return function(){return uw(t.apply(this,arguments))}}function fw(t){typeof t=="function"?t=cw(t):t=Jp(t);for(var e=this._groups,n=e.length,r=[],i=[],o=0;o<n;++o)for(var a=e[o],s=a.length,u,l=0;l<s;++l)(u=a[l])&&(r.push(t.call(u,u.__data__,l,a)),i.push(u));return new we(r,i)}function td(t){return function(){return this.matches(t)}}function ed(t){return function(e){return e.matches(t)}}var hw=Array.prototype.find;function pw(t){return function(){return hw.call(this.children,t)}}function dw(){return this.firstElementChild}function gw(t){return this.select(t==null?dw:pw(typeof t=="function"?t:ed(t)))}var mw=Array.prototype.filter;function yw(){return Array.from(this.children)}function bw(t){return function(){return mw.call(this.children,t)}}function xw(t){return this.selectAll(t==null?yw:bw(typeof t=="function"?t:ed(t)))}function vw(t){typeof t!="function"&&(t=td(t));for(var e=this._groups,n=e.length,r=new Array(n),i=0;i<n;++i)for(var o=e[i],a=o.length,s=r[i]=[],u,l=0;l<a;++l)(u=o[l])&&t.call(u,u.__data__,l,o)&&s.push(u);return new we(r,this._parents)}function nd(t){return new Array(t.length)}function _w(){return new we(this._enter||this._groups.map(nd),this._parents)}function ra(t,e){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=e}ra.prototype={constructor:ra,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,e){return this._parent.insertBefore(t,e)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};function ww(t){return function(){return t}}function $w(t,e,n,r,i,o){for(var a=0,s,u=e.length,l=o.length;a<l;++a)(s=e[a])?(s.__data__=o[a],r[a]=s):n[a]=new ra(t,o[a]);for(;a<u;++a)(s=e[a])&&(i[a]=s)}function Sw(t,e,n,r,i,o,a){var s,u,l=new Map,c=e.length,f=o.length,h=new Array(c),p;for(s=0;s<c;++s)(u=e[s])&&(h[s]=p=a.call(u,u.__data__,s,e)+"",l.has(p)?i[s]=u:l.set(p,u));for(s=0;s<f;++s)p=a.call(t,o[s],s,o)+"",(u=l.get(p))?(r[s]=u,u.__data__=o[s],l.delete(p)):n[s]=new ra(t,o[s]);for(s=0;s<c;++s)(u=e[s])&&l.get(h[s])===u&&(i[s]=u)}function Aw(t){return t.__data__}function Tw(t,e){if(!arguments.length)return Array.from(this,Aw);var n=e?Sw:$w,r=this._parents,i=this._groups;typeof t!="function"&&(t=ww(t));for(var o=i.length,a=new Array(o),s=new Array(o),u=new Array(o),l=0;l<o;++l){var c=r[l],f=i[l],h=f.length,p=Pw(t.call(c,c&&c.__data__,l,r)),d=p.length,g=s[l]=new Array(d),m=a[l]=new Array(d),y=u[l]=new Array(h);n(c,f,g,m,y,p,e);for(var b=0,v=0,x,S;b<d;++b)if(x=g[b]){for(b>=v&&(v=b+1);!(S=m[v])&&++v<d;);x._next=S||null}}return a=new we(a,r),a._enter=s,a._exit=u,a}function Pw(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function Mw(){return new we(this._exit||this._groups.map(nd),this._parents)}function Dw(t,e,n){var r=this.enter(),i=this,o=this.exit();return typeof t=="function"?(r=t(r),r&&(r=r.selection())):r=r.append(t+""),e!=null&&(i=e(i),i&&(i=i.selection())),n==null?o.remove():n(o),r&&i?r.merge(i).order():i}function Cw(t){for(var e=t.selection?t.selection():t,n=this._groups,r=e._groups,i=n.length,o=r.length,a=Math.min(i,o),s=new Array(i),u=0;u<a;++u)for(var l=n[u],c=r[u],f=l.length,h=s[u]=new Array(f),p,d=0;d<f;++d)(p=l[d]||c[d])&&(h[d]=p);for(;u<i;++u)s[u]=n[u];return new we(s,this._parents)}function Lw(){for(var t=this._groups,e=-1,n=t.length;++e<n;)for(var r=t[e],i=r.length-1,o=r[i],a;--i>=0;)(a=r[i])&&(o&&a.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(a,o),o=a);return this}function kw(t){t||(t=Rw);function e(f,h){return f&&h?t(f.__data__,h.__data__):!f-!h}for(var n=this._groups,r=n.length,i=new Array(r),o=0;o<r;++o){for(var a=n[o],s=a.length,u=i[o]=new Array(s),l,c=0;c<s;++c)(l=a[c])&&(u[c]=l);u.sort(e)}return new we(i,this._parents).order()}function Rw(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function Ew(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this}function Iw(){return Array.from(this)}function Nw(){for(var t=this._groups,e=0,n=t.length;e<n;++e)for(var r=t[e],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null}function Bw(){let t=0;for(const e of this)++t;return t}function Fw(){return!this.node()}function Ow(t){for(var e=this._groups,n=0,r=e.length;n<r;++n)for(var i=e[n],o=0,a=i.length,s;o<a;++o)(s=i[o])&&t.call(s,s.__data__,o,i);return this}function Gw(t){return function(){this.removeAttribute(t)}}function zw(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Yw(t,e){return function(){this.setAttribute(t,e)}}function Uw(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function Ww(t,e){return function(){var n=e.apply(this,arguments);n==null?this.removeAttribute(t):this.setAttribute(t,n)}}function Hw(t,e){return function(){var n=e.apply(this,arguments);n==null?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,n)}}function Xw(t,e){var n=na(t);if(arguments.length<2){var r=this.node();return n.local?r.getAttributeNS(n.space,n.local):r.getAttribute(n)}return this.each((e==null?n.local?zw:Gw:typeof e=="function"?n.local?Hw:Ww:n.local?Uw:Yw)(n,e))}function rd(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function jw(t){return function(){this.style.removeProperty(t)}}function Vw(t,e,n){return function(){this.style.setProperty(t,e,n)}}function qw(t,e,n){return function(){var r=e.apply(this,arguments);r==null?this.style.removeProperty(t):this.style.setProperty(t,r,n)}}function Zw(t,e,n){return arguments.length>1?this.each((e==null?jw:typeof e=="function"?qw:Vw)(t,e,n??"")):wr(this.node(),t)}function wr(t,e){return t.style.getPropertyValue(e)||rd(t).getComputedStyle(t,null).getPropertyValue(e)}function Kw(t){return function(){delete this[t]}}function Qw(t,e){return function(){this[t]=e}}function Jw(t,e){return function(){var n=e.apply(this,arguments);n==null?delete this[t]:this[t]=n}}function t$(t,e){return arguments.length>1?this.each((e==null?Kw:typeof e=="function"?Jw:Qw)(t,e)):this.node()[t]}function id(t){return t.trim().split(/^|\s+/)}function cl(t){return t.classList||new od(t)}function od(t){this._node=t,this._names=id(t.getAttribute("class")||"")}od.prototype={add:function(t){var e=this._names.indexOf(t);e<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var e=this._names.indexOf(t);e>=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};function ad(t,e){for(var n=cl(t),r=-1,i=e.length;++r<i;)n.add(e[r])}function sd(t,e){for(var n=cl(t),r=-1,i=e.length;++r<i;)n.remove(e[r])}function e$(t){return function(){ad(this,t)}}function n$(t){return function(){sd(this,t)}}function r$(t,e){return function(){(e.apply(this,arguments)?ad:sd)(this,t)}}function i$(t,e){var n=id(t+"");if(arguments.length<2){for(var r=cl(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof e=="function"?r$:e?e$:n$)(n,e))}function o$(){this.textContent=""}function a$(t){return function(){this.textContent=t}}function s$(t){return function(){var e=t.apply(this,arguments);this.textContent=e??""}}function u$(t){return arguments.length?this.each(t==null?o$:(typeof t=="function"?s$:a$)(t)):this.node().textContent}function l$(){this.innerHTML=""}function c$(t){return function(){this.innerHTML=t}}function f$(t){return function(){var e=t.apply(this,arguments);this.innerHTML=e??""}}function h$(t){return arguments.length?this.each(t==null?l$:(typeof t=="function"?f$:c$)(t)):this.node().innerHTML}function p$(){this.nextSibling&&this.parentNode.appendChild(this)}function d$(){return this.each(p$)}function g$(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function m$(){return this.each(g$)}function y$(t){var e=typeof t=="function"?t:Qp(t);return this.select(function(){return this.appendChild(e.apply(this,arguments))})}function b$(){return null}function x$(t,e){var n=typeof t=="function"?t:Qp(t),r=e==null?b$:typeof e=="function"?e:ll(e);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function v$(){var t=this.parentNode;t&&t.removeChild(this)}function _$(){return this.each(v$)}function w$(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function $$(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function S$(t){return this.select(t?$$:w$)}function A$(t){return arguments.length?this.property("__data__",t):this.node().__data__}function T$(t){return function(e){t.call(this,e,this.__data__)}}function P$(t){return t.trim().split(/^|\s+/).map(function(e){var n="",r=e.indexOf(".");return r>=0&&(n=e.slice(r+1),e=e.slice(0,r)),{type:e,name:n}})}function M$(t){return function(){var e=this.__on;if(e){for(var n=0,r=-1,i=e.length,o;n<i;++n)o=e[n],(!t.type||o.type===t.type)&&o.name===t.name?this.removeEventListener(o.type,o.listener,o.options):e[++r]=o;++r?e.length=r:delete this.__on}}}function D$(t,e,n){return function(){var r=this.__on,i,o=T$(e);if(r){for(var a=0,s=r.length;a<s;++a)if((i=r[a]).type===t.type&&i.name===t.name){this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=o,i.options=n),i.value=e;return}}this.addEventListener(t.type,o,n),i={type:t.type,name:t.name,value:e,listener:o,options:n},r?r.push(i):this.__on=[i]}}function C$(t,e,n){var r=P$(t+""),i,o=r.length,a;if(arguments.length<2){var s=this.node().__on;if(s){for(var u=0,l=s.length,c;u<l;++u)for(i=0,c=s[u];i<o;++i)if((a=r[i]).type===c.type&&a.name===c.name)return c.value}return}for(s=e?D$:M$,i=0;i<o;++i)this.each(s(r[i],e,n));return this}function ud(t,e,n){var r=rd(t),i=r.CustomEvent;typeof i=="function"?i=new i(e,n):(i=r.document.createEvent("Event"),n?(i.initEvent(e,n.bubbles,n.cancelable),i.detail=n.detail):i.initEvent(e,!1,!1)),t.dispatchEvent(i)}function L$(t,e){return function(){return ud(this,t,e)}}function k$(t,e){return function(){return ud(this,t,e.apply(this,arguments))}}function R$(t,e){return this.each((typeof e=="function"?k$:L$)(t,e))}function*E$(){for(var t=this._groups,e=0,n=t.length;e<n;++e)for(var r=t[e],i=0,o=r.length,a;i<o;++i)(a=r[i])&&(yield a)}var I$=[null];function we(t,e){this._groups=t,this._parents=e}function Si(){return new we([[document.documentElement]],I$)}function N$(){return this}we.prototype=Si.prototype={constructor:we,select:sw,selectAll:fw,selectChild:gw,selectChildren:xw,filter:vw,data:Tw,enter:_w,exit:Mw,join:Dw,merge:Cw,selection:N$,order:Lw,sort:kw,call:Ew,nodes:Iw,node:Nw,size:Bw,empty:Fw,each:Ow,attr:Xw,style:Zw,property:t$,classed:i$,text:u$,html:h$,raise:d$,lower:m$,append:y$,insert:x$,remove:_$,clone:S$,datum:A$,on:C$,dispatch:R$,[Symbol.iterator]:E$};function fl(t,e,n){t.prototype=e.prototype=n,n.constructor=t}function ld(t,e){var n=Object.create(t.prototype);for(var r in e)n[r]=e[r];return n}function Ai(){}var Ti=.7,ia=1/Ti,$r="\\s*([+-]?\\d+)\\s*",Pi="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ee="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",B$=/^#([0-9a-f]{3,8})$/,F$=new RegExp(`^rgb\\(${$r},${$r},${$r}\\)$`),O$=new RegExp(`^rgb\\(${Ee},${Ee},${Ee}\\)$`),G$=new RegExp(`^rgba\\(${$r},${$r},${$r},${Pi}\\)$`),z$=new RegExp(`^rgba\\(${Ee},${Ee},${Ee},${Pi}\\)$`),Y$=new RegExp(`^hsl\\(${Pi},${Ee},${Ee}\\)$`),U$=new RegExp(`^hsla\\(${Pi},${Ee},${Ee},${Pi}\\)$`),cd={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};fl(Ai,Ln,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:fd,formatHex:fd,formatHex8:W$,formatHsl:H$,formatRgb:hd,toString:hd});function fd(){return this.rgb().formatHex()}function W$(){return this.rgb().formatHex8()}function H$(){return yd(this).formatHsl()}function hd(){return this.rgb().formatRgb()}function Ln(t){var e,n;return t=(t+"").trim().toLowerCase(),(e=B$.exec(t))?(n=e[1].length,e=parseInt(e[1],16),n===6?pd(e):n===3?new ne(e>>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):n===8?oa(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):n===4?oa(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|e&240,((e&15)<<4|e&15)/255):null):(e=F$.exec(t))?new ne(e[1],e[2],e[3],1):(e=O$.exec(t))?new ne(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=G$.exec(t))?oa(e[1],e[2],e[3],e[4]):(e=z$.exec(t))?oa(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=Y$.exec(t))?md(e[1],e[2]/100,e[3]/100,1):(e=U$.exec(t))?md(e[1],e[2]/100,e[3]/100,e[4]):cd.hasOwnProperty(t)?pd(cd[t]):t==="transparent"?new ne(NaN,NaN,NaN,0):null}function pd(t){return new ne(t>>16&255,t>>8&255,t&255,1)}function oa(t,e,n,r){return r<=0&&(t=e=n=NaN),new ne(t,e,n,r)}function X$(t){return t instanceof Ai||(t=Ln(t)),t?(t=t.rgb(),new ne(t.r,t.g,t.b,t.opacity)):new ne}function hl(t,e,n,r){return arguments.length===1?X$(t):new ne(t,e,n,r??1)}function ne(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}fl(ne,hl,ld(Ai,{brighter(t){return t=t==null?ia:Math.pow(ia,t),new ne(this.r*t,this.g*t,this.b*t,this.opacity)},darker(t){return t=t==null?Ti:Math.pow(Ti,t),new ne(this.r*t,this.g*t,this.b*t,this.opacity)},rgb(){return this},clamp(){return new ne(kn(this.r),kn(this.g),kn(this.b),aa(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:dd,formatHex:dd,formatHex8:j$,formatRgb:gd,toString:gd}));function dd(){return`#${Rn(this.r)}${Rn(this.g)}${Rn(this.b)}`}function j$(){return`#${Rn(this.r)}${Rn(this.g)}${Rn(this.b)}${Rn((isNaN(this.opacity)?1:this.opacity)*255)}`}function gd(){const t=aa(this.opacity);return`${t===1?"rgb(":"rgba("}${kn(this.r)}, ${kn(this.g)}, ${kn(this.b)}${t===1?")":`, ${t})`}`}function aa(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function kn(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function Rn(t){return t=kn(t),(t<16?"0":"")+t.toString(16)}function md(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new $e(t,e,n,r)}function yd(t){if(t instanceof $e)return new $e(t.h,t.s,t.l,t.opacity);if(t instanceof Ai||(t=Ln(t)),!t)return new $e;if(t instanceof $e)return t;t=t.rgb();var e=t.r/255,n=t.g/255,r=t.b/255,i=Math.min(e,n,r),o=Math.max(e,n,r),a=NaN,s=o-i,u=(o+i)/2;return s?(e===o?a=(n-r)/s+(n<r)*6:n===o?a=(r-e)/s+2:a=(e-n)/s+4,s/=u<.5?o+i:2-o-i,a*=60):s=u>0&&u<1?0:a,new $e(a,s,u,t.opacity)}function V$(t,e,n,r){return arguments.length===1?yd(t):new $e(t,e,n,r??1)}function $e(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}fl($e,V$,ld(Ai,{brighter(t){return t=t==null?ia:Math.pow(ia,t),new $e(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?Ti:Math.pow(Ti,t),new $e(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=this.h%360+(this.h<0)*360,e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*e,i=2*n-r;return new ne(pl(t>=240?t-240:t+120,i,r),pl(t,i,r),pl(t<120?t+240:t-120,i,r),this.opacity)},clamp(){return new $e(bd(this.h),sa(this.s),sa(this.l),aa(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const t=aa(this.opacity);return`${t===1?"hsl(":"hsla("}${bd(this.h)}, ${sa(this.s)*100}%, ${sa(this.l)*100}%${t===1?")":`, ${t})`}`}}));function bd(t){return t=(t||0)%360,t<0?t+360:t}function sa(t){return Math.max(0,Math.min(1,t||0))}function pl(t,e,n){return(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)*255}const dl=t=>()=>t;function q$(t,e){return function(n){return t+n*e}}function Z$(t,e,n){return t=Math.pow(t,n),e=Math.pow(e,n)-t,n=1/n,function(r){return Math.pow(t+r*e,n)}}function K$(t){return(t=+t)==1?xd:function(e,n){return n-e?Z$(e,n,t):dl(isNaN(e)?n:e)}}function xd(t,e){var n=e-t;return n?q$(t,n):dl(isNaN(t)?e:t)}const ua=function t(e){var n=K$(e);function r(i,o){var a=n((i=hl(i)).r,(o=hl(o)).r),s=n(i.g,o.g),u=n(i.b,o.b),l=xd(i.opacity,o.opacity);return function(c){return i.r=a(c),i.g=s(c),i.b=u(c),i.opacity=l(c),i+""}}return r.gamma=t,r}(1);function Q$(t,e){e||(e=[]);var n=t?Math.min(e.length,t.length):0,r=e.slice(),i;return function(o){for(i=0;i<n;++i)r[i]=t[i]*(1-o)+e[i]*o;return r}}function J$(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function tS(t,e){var n=e?e.length:0,r=t?Math.min(n,t.length):0,i=new Array(r),o=new Array(n),a;for(a=0;a<r;++a)i[a]=yl(t[a],e[a]);for(;a<n;++a)o[a]=e[a];return function(s){for(a=0;a<r;++a)o[a]=i[a](s);return o}}function eS(t,e){var n=new Date;return t=+t,e=+e,function(r){return n.setTime(t*(1-r)+e*r),n}}function Se(t,e){return t=+t,e=+e,function(n){return t*(1-n)+e*n}}function nS(t,e){var n={},r={},i;(t===null||typeof t!="object")&&(t={}),(e===null||typeof e!="object")&&(e={});for(i in e)i in t?n[i]=yl(t[i],e[i]):r[i]=e[i];return function(o){for(i in n)r[i]=n[i](o);return r}}var gl=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,ml=new RegExp(gl.source,"g");function rS(t){return function(){return t}}function iS(t){return function(e){return t(e)+""}}function vd(t,e){var n=gl.lastIndex=ml.lastIndex=0,r,i,o,a=-1,s=[],u=[];for(t=t+"",e=e+"";(r=gl.exec(t))&&(i=ml.exec(e));)(o=i.index)>n&&(o=e.slice(n,o),s[a]?s[a]+=o:s[++a]=o),(r=r[0])===(i=i[0])?s[a]?s[a]+=i:s[++a]=i:(s[++a]=null,u.push({i:a,x:Se(r,i)})),n=ml.lastIndex;return n<e.length&&(o=e.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?u[0]?iS(u[0].x):rS(e):(e=u.length,function(l){for(var c=0,f;c<e;++c)s[(f=u[c]).i]=f.x(l);return s.join("")})}function yl(t,e){var n=typeof e,r;return e==null||n==="boolean"?dl(e):(n==="number"?Se:n==="string"?(r=Ln(e))?(e=r,ua):vd:e instanceof Ln?ua:e instanceof Date?eS:J$(e)?Q$:Array.isArray(e)?tS:typeof e.valueOf!="function"&&typeof e.toString!="function"||isNaN(e)?nS:Se)(t,e)}function oS(t,e){return t=+t,e=+e,function(n){return Math.round(t*(1-n)+e*n)}}var _d=180/Math.PI,wd={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function $d(t,e,n,r,i,o){var a,s,u;return(a=Math.sqrt(t*t+e*e))&&(t/=a,e/=a),(u=t*n+e*r)&&(n-=t*u,r-=e*u),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,u/=s),t*r<e*n&&(t=-t,e=-e,u=-u,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(e,t)*_d,skewX:Math.atan(u)*_d,scaleX:a,scaleY:s}}var la;function aS(t){const e=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(t+"");return e.isIdentity?wd:$d(e.a,e.b,e.c,e.d,e.e,e.f)}function sS(t){return t==null||(la||(la=document.createElementNS("http://www.w3.org/2000/svg","g")),la.setAttribute("transform",t),!(t=la.transform.baseVal.consolidate()))?wd:(t=t.matrix,$d(t.a,t.b,t.c,t.d,t.e,t.f))}function Sd(t,e,n,r){function i(l){return l.length?l.pop()+" ":""}function o(l,c,f,h,p,d){if(l!==f||c!==h){var g=p.push("translate(",null,e,null,n);d.push({i:g-4,x:Se(l,f)},{i:g-2,x:Se(c,h)})}else(f||h)&&p.push("translate("+f+e+h+n)}function a(l,c,f,h){l!==c?(l-c>180?c+=360:c-l>180&&(l+=360),h.push({i:f.push(i(f)+"rotate(",null,r)-2,x:Se(l,c)})):c&&f.push(i(f)+"rotate("+c+r)}function s(l,c,f,h){l!==c?h.push({i:f.push(i(f)+"skewX(",null,r)-2,x:Se(l,c)}):c&&f.push(i(f)+"skewX("+c+r)}function u(l,c,f,h,p,d){if(l!==f||c!==h){var g=p.push(i(p)+"scale(",null,",",null,")");d.push({i:g-4,x:Se(l,f)},{i:g-2,x:Se(c,h)})}else(f!==1||h!==1)&&p.push(i(p)+"scale("+f+","+h+")")}return function(l,c){var f=[],h=[];return l=t(l),c=t(c),o(l.translateX,l.translateY,c.translateX,c.translateY,f,h),a(l.rotate,c.rotate,f,h),s(l.skewX,c.skewX,f,h),u(l.scaleX,l.scaleY,c.scaleX,c.scaleY,f,h),l=c=null,function(p){for(var d=-1,g=h.length,m;++d<g;)f[(m=h[d]).i]=m.x(p);return f.join("")}}}var uS=Sd(aS,"px, ","px)","deg)"),lS=Sd(sS,", ",")",")"),Sr=0,Mi=0,Di=0,Ad=1e3,ca,Ci,fa=0,En=0,ha=0,Li=typeof performance=="object"&&performance.now?performance:Date,Td=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function bl(){return En||(Td(cS),En=Li.now()+ha)}function cS(){En=0}function pa(){this._call=this._time=this._next=null}pa.prototype=Pd.prototype={constructor:pa,restart:function(t,e,n){if(typeof t!="function")throw new TypeError("callback is not a function");n=(n==null?bl():+n)+(e==null?0:+e),!this._next&&Ci!==this&&(Ci?Ci._next=this:ca=this,Ci=this),this._call=t,this._time=n,xl()},stop:function(){this._call&&(this._call=null,this._time=1/0,xl())}};function Pd(t,e,n){var r=new pa;return r.restart(t,e,n),r}function fS(){bl(),++Sr;for(var t=ca,e;t;)(e=En-t._time)>=0&&t._call.call(void 0,e),t=t._next;--Sr}function Md(){En=(fa=Li.now())+ha,Sr=Mi=0;try{fS()}finally{Sr=0,pS(),En=0}}function hS(){var t=Li.now(),e=t-fa;e>Ad&&(ha-=e,fa=t)}function pS(){for(var t,e=ca,n,r=1/0;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:ca=n);Ci=t,xl(r)}function xl(t){if(!Sr){Mi&&(Mi=clearTimeout(Mi));var e=t-En;e>24?(t<1/0&&(Mi=setTimeout(Md,t-Li.now()-ha)),Di&&(Di=clearInterval(Di))):(Di||(fa=Li.now(),Di=setInterval(hS,Ad)),Sr=1,Td(Md))}}function Dd(t,e,n){var r=new pa;return e=e==null?0:+e,r.restart(i=>{r.stop(),t(i+e)},e,n),r}var dS=qp("start","end","cancel","interrupt"),gS=[],Cd=0,Ld=1,vl=2,da=3,kd=4,_l=5,ga=6;function ma(t,e,n,r,i,o){var a=t.__transition;if(!a)t.__transition={};else if(n in a)return;mS(t,n,{name:e,index:r,group:i,on:dS,tween:gS,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:Cd})}function wl(t,e){var n=Ae(t,e);if(n.state>Cd)throw new Error("too late; already scheduled");return n}function Ie(t,e){var n=Ae(t,e);if(n.state>da)throw new Error("too late; already running");return n}function Ae(t,e){var n=t.__transition;if(!n||!(n=n[e]))throw new Error("transition not found");return n}function mS(t,e,n){var r=t.__transition,i;r[e]=n,n.timer=Pd(o,0,n.time);function o(l){n.state=Ld,n.timer.restart(a,n.delay,n.time),n.delay<=l&&a(l-n.delay)}function a(l){var c,f,h,p;if(n.state!==Ld)return u();for(c in r)if(p=r[c],p.name===n.name){if(p.state===da)return Dd(a);p.state===kd?(p.state=ga,p.timer.stop(),p.on.call("interrupt",t,t.__data__,p.index,p.group),delete r[c]):+c<e&&(p.state=ga,p.timer.stop(),p.on.call("cancel",t,t.__data__,p.index,p.group),delete r[c])}if(Dd(function(){n.state===da&&(n.state=kd,n.timer.restart(s,n.delay,n.time),s(l))}),n.state=vl,n.on.call("start",t,t.__data__,n.index,n.group),n.state===vl){for(n.state=da,i=new Array(h=n.tween.length),c=0,f=-1;c<h;++c)(p=n.tween[c].value.call(t,t.__data__,n.index,n.group))&&(i[++f]=p);i.length=f+1}}function s(l){for(var c=l<n.duration?n.ease.call(null,l/n.duration):(n.timer.restart(u),n.state=_l,1),f=-1,h=i.length;++f<h;)i[f].call(t,c);n.state===_l&&(n.on.call("end",t,t.__data__,n.index,n.group),u())}function u(){n.state=ga,n.timer.stop(),delete r[e];for(var l in r)return;delete t.__transition}}function yS(t,e){var n=t.__transition,r,i,o=!0,a;if(n){e=e==null?null:e+"";for(a in n){if((r=n[a]).name!==e){o=!1;continue}i=r.state>vl&&r.state<_l,r.state=ga,r.timer.stop(),r.on.call(i?"interrupt":"cancel",t,t.__data__,r.index,r.group),delete n[a]}o&&delete t.__transition}}function bS(t){return this.each(function(){yS(this,t)})}function xS(t,e){var n,r;return function(){var i=Ie(this,t),o=i.tween;if(o!==n){r=n=o;for(var a=0,s=r.length;a<s;++a)if(r[a].name===e){r=r.slice(),r.splice(a,1);break}}i.tween=r}}function vS(t,e,n){var r,i;if(typeof n!="function")throw new Error;return function(){var o=Ie(this,t),a=o.tween;if(a!==r){i=(r=a).slice();for(var s={name:e,value:n},u=0,l=i.length;u<l;++u)if(i[u].name===e){i[u]=s;break}u===l&&i.push(s)}o.tween=i}}function _S(t,e){var n=this._id;if(t+="",arguments.length<2){for(var r=Ae(this.node(),n).tween,i=0,o=r.length,a;i<o;++i)if((a=r[i]).name===t)return a.value;return null}return this.each((e==null?xS:vS)(n,t,e))}function $l(t,e,n){var r=t._id;return t.each(function(){var i=Ie(this,r);(i.value||(i.value={}))[e]=n.apply(this,arguments)}),function(i){return Ae(i,r).value[e]}}function Rd(t,e){var n;return(typeof e=="number"?Se:e instanceof Ln?ua:(n=Ln(e))?(e=n,ua):vd)(t,e)}function wS(t){return function(){this.removeAttribute(t)}}function $S(t){return function(){this.removeAttributeNS(t.space,t.local)}}function SS(t,e,n){var r,i=n+"",o;return function(){var a=this.getAttribute(t);return a===i?null:a===r?o:o=e(r=a,n)}}function AS(t,e,n){var r,i=n+"",o;return function(){var a=this.getAttributeNS(t.space,t.local);return a===i?null:a===r?o:o=e(r=a,n)}}function TS(t,e,n){var r,i,o;return function(){var a,s=n(this),u;return s==null?void this.removeAttribute(t):(a=this.getAttribute(t),u=s+"",a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s)))}}function PS(t,e,n){var r,i,o;return function(){var a,s=n(this),u;return s==null?void this.removeAttributeNS(t.space,t.local):(a=this.getAttributeNS(t.space,t.local),u=s+"",a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s)))}}function MS(t,e){var n=na(t),r=n==="transform"?lS:Rd;return this.attrTween(t,typeof e=="function"?(n.local?PS:TS)(n,r,$l(this,"attr."+t,e)):e==null?(n.local?$S:wS)(n):(n.local?AS:SS)(n,r,e))}function DS(t,e){return function(n){this.setAttribute(t,e.call(this,n))}}function CS(t,e){return function(n){this.setAttributeNS(t.space,t.local,e.call(this,n))}}function LS(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&CS(t,o)),n}return i._value=e,i}function kS(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&DS(t,o)),n}return i._value=e,i}function RS(t,e){var n="attr."+t;if(arguments.length<2)return(n=this.tween(n))&&n._value;if(e==null)return this.tween(n,null);if(typeof e!="function")throw new Error;var r=na(t);return this.tween(n,(r.local?LS:kS)(r,e))}function ES(t,e){return function(){wl(this,t).delay=+e.apply(this,arguments)}}function IS(t,e){return e=+e,function(){wl(this,t).delay=e}}function NS(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?ES:IS)(e,t)):Ae(this.node(),e).delay}function BS(t,e){return function(){Ie(this,t).duration=+e.apply(this,arguments)}}function FS(t,e){return e=+e,function(){Ie(this,t).duration=e}}function OS(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?BS:FS)(e,t)):Ae(this.node(),e).duration}function GS(t,e){if(typeof e!="function")throw new Error;return function(){Ie(this,t).ease=e}}function zS(t){var e=this._id;return arguments.length?this.each(GS(e,t)):Ae(this.node(),e).ease}function YS(t,e){return function(){var n=e.apply(this,arguments);if(typeof n!="function")throw new Error;Ie(this,t).ease=n}}function US(t){if(typeof t!="function")throw new Error;return this.each(YS(this._id,t))}function WS(t){typeof t!="function"&&(t=td(t));for(var e=this._groups,n=e.length,r=new Array(n),i=0;i<n;++i)for(var o=e[i],a=o.length,s=r[i]=[],u,l=0;l<a;++l)(u=o[l])&&t.call(u,u.__data__,l,o)&&s.push(u);return new Ve(r,this._parents,this._name,this._id)}function HS(t){if(t._id!==this._id)throw new Error;for(var e=this._groups,n=t._groups,r=e.length,i=n.length,o=Math.min(r,i),a=new Array(r),s=0;s<o;++s)for(var u=e[s],l=n[s],c=u.length,f=a[s]=new Array(c),h,p=0;p<c;++p)(h=u[p]||l[p])&&(f[p]=h);for(;s<r;++s)a[s]=e[s];return new Ve(a,this._parents,this._name,this._id)}function XS(t){return(t+"").trim().split(/^|\s+/).every(function(e){var n=e.indexOf(".");return n>=0&&(e=e.slice(0,n)),!e||e==="start"})}function jS(t,e,n){var r,i,o=XS(e)?wl:Ie;return function(){var a=o(this,t),s=a.on;s!==r&&(i=(r=s).copy()).on(e,n),a.on=i}}function VS(t,e){var n=this._id;return arguments.length<2?Ae(this.node(),n).on.on(t):this.each(jS(n,t,e))}function qS(t){return function(){var e=this.parentNode;for(var n in this.__transition)if(+n!==t)return;e&&e.removeChild(this)}}function ZS(){return this.on("end.remove",qS(this._id))}function KS(t){var e=this._name,n=this._id;typeof t!="function"&&(t=ll(t));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var s=r[a],u=s.length,l=o[a]=new Array(u),c,f,h=0;h<u;++h)(c=s[h])&&(f=t.call(c,c.__data__,h,s))&&("__data__"in c&&(f.__data__=c.__data__),l[h]=f,ma(l[h],e,n,h,l,Ae(c,n)));return new Ve(o,this._parents,e,n)}function QS(t){var e=this._name,n=this._id;typeof t!="function"&&(t=Jp(t));for(var r=this._groups,i=r.length,o=[],a=[],s=0;s<i;++s)for(var u=r[s],l=u.length,c,f=0;f<l;++f)if(c=u[f]){for(var h=t.call(c,c.__data__,f,u),p,d=Ae(c,n),g=0,m=h.length;g<m;++g)(p=h[g])&&ma(p,e,n,g,h,d);o.push(h),a.push(c)}return new Ve(o,a,e,n)}var JS=Si.prototype.constructor;function tA(){return new JS(this._groups,this._parents)}function eA(t,e){var n,r,i;return function(){var o=wr(this,t),a=(this.style.removeProperty(t),wr(this,t));return o===a?null:o===n&&a===r?i:i=e(n=o,r=a)}}function Ed(t){return function(){this.style.removeProperty(t)}}function nA(t,e,n){var r,i=n+"",o;return function(){var a=wr(this,t);return a===i?null:a===r?o:o=e(r=a,n)}}function rA(t,e,n){var r,i,o;return function(){var a=wr(this,t),s=n(this),u=s+"";return s==null&&(u=s=(this.style.removeProperty(t),wr(this,t))),a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s))}}function iA(t,e){var n,r,i,o="style."+e,a="end."+o,s;return function(){var u=Ie(this,t),l=u.on,c=u.value[o]==null?s||(s=Ed(e)):void 0;(l!==n||i!==c)&&(r=(n=l).copy()).on(a,i=c),u.on=r}}function oA(t,e,n){var r=(t+="")=="transform"?uS:Rd;return e==null?this.styleTween(t,eA(t,r)).on("end.style."+t,Ed(t)):typeof e=="function"?this.styleTween(t,rA(t,r,$l(this,"style."+t,e))).each(iA(this._id,t)):this.styleTween(t,nA(t,r,e),n).on("end.style."+t,null)}function aA(t,e,n){return function(r){this.style.setProperty(t,e.call(this,r),n)}}function sA(t,e,n){var r,i;function o(){var a=e.apply(this,arguments);return a!==i&&(r=(i=a)&&aA(t,a,n)),r}return o._value=e,o}function uA(t,e,n){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(e==null)return this.tween(r,null);if(typeof e!="function")throw new Error;return this.tween(r,sA(t,e,n??""))}function lA(t){return function(){this.textContent=t}}function cA(t){return function(){var e=t(this);this.textContent=e??""}}function fA(t){return this.tween("text",typeof t=="function"?cA($l(this,"text",t)):lA(t==null?"":t+""))}function hA(t){return function(e){this.textContent=t.call(this,e)}}function pA(t){var e,n;function r(){var i=t.apply(this,arguments);return i!==n&&(e=(n=i)&&hA(i)),e}return r._value=t,r}function dA(t){var e="text";if(arguments.length<1)return(e=this.tween(e))&&e._value;if(t==null)return this.tween(e,null);if(typeof t!="function")throw new Error;return this.tween(e,pA(t))}function gA(){for(var t=this._name,e=this._id,n=Id(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,u,l=0;l<s;++l)if(u=a[l]){var c=Ae(u,e);ma(u,t,n,l,a,{time:c.time+c.delay+c.duration,delay:0,duration:c.duration,ease:c.ease})}return new Ve(r,this._parents,t,n)}function mA(){var t,e,n=this,r=n._id,i=n.size();return new Promise(function(o,a){var s={value:a},u={value:function(){--i===0&&o()}};n.each(function(){var l=Ie(this,r),c=l.on;c!==t&&(e=(t=c).copy(),e._.cancel.push(s),e._.interrupt.push(s),e._.end.push(u)),l.on=e}),i===0&&o()})}var yA=0;function Ve(t,e,n,r){this._groups=t,this._parents=e,this._name=n,this._id=r}function Id(){return++yA}var qe=Si.prototype;Ve.prototype={constructor:Ve,select:KS,selectAll:QS,selectChild:qe.selectChild,selectChildren:qe.selectChildren,filter:WS,merge:HS,selection:tA,transition:gA,call:qe.call,nodes:qe.nodes,node:qe.node,size:qe.size,empty:qe.empty,each:qe.each,on:VS,attr:MS,attrTween:RS,style:oA,styleTween:uA,text:fA,textTween:dA,remove:ZS,tween:_S,delay:NS,duration:OS,ease:zS,easeVarying:US,end:mA,[Symbol.iterator]:qe[Symbol.iterator]};function bA(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}var xA={time:null,delay:0,duration:250,ease:bA};function vA(t,e){for(var n;!(n=t.__transition)||!(n=n[e]);)if(!(t=t.parentNode))throw new Error(`transition ${e} not found`);return n}function _A(t){var e,n;t instanceof Ve?(e=t._id,t=t._name):(e=Id(),(n=xA).time=bl(),t=t==null?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,u,l=0;l<s;++l)(u=a[l])&&ma(u,t,e,l,a,n||vA(u,e));return new Ve(r,this._parents,t,e)}Si.prototype.interrupt=bS,Si.prototype.transition=_A;function wA(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)}function ya(t,e){if((n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var n,r=t.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+t.slice(n+1)]}function Ar(t){return t=ya(Math.abs(t)),t?t[1]:NaN}function $A(t,e){return function(n,r){for(var i=n.length,o=[],a=0,s=t[0],u=0;i>0&&s>0&&(u+s+1>r&&(s=Math.max(1,r-u)),o.push(n.substring(i-=s,i+s)),!((u+=s+1)>r));)s=t[a=(a+1)%t.length];return o.reverse().join(e)}}function SA(t){return function(e){return e.replace(/[0-9]/g,function(n){return t[+n]})}}var AA=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function ba(t){if(!(e=AA.exec(t)))throw new Error("invalid format: "+t);var e;return new Sl({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}ba.prototype=Sl.prototype;function Sl(t){this.fill=t.fill===void 0?" ":t.fill+"",this.align=t.align===void 0?">":t.align+"",this.sign=t.sign===void 0?"-":t.sign+"",this.symbol=t.symbol===void 0?"":t.symbol+"",this.zero=!!t.zero,this.width=t.width===void 0?void 0:+t.width,this.comma=!!t.comma,this.precision=t.precision===void 0?void 0:+t.precision,this.trim=!!t.trim,this.type=t.type===void 0?"":t.type+""}Sl.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function TA(t){t:for(var e=t.length,n=1,r=-1,i;n<e;++n)switch(t[n]){case".":r=i=n;break;case"0":r===0&&(r=n),i=n;break;default:if(!+t[n])break t;r>0&&(r=0);break}return r>0?t.slice(0,r)+t.slice(i+1):t}var Nd;function PA(t,e){var n=ya(t,e);if(!n)return t+"";var r=n[0],i=n[1],o=i-(Nd=Math.max(-8,Math.min(8,Math.floor(i/3)))*3)+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+ya(t,Math.max(0,e+o-1))[0]}function Bd(t,e){var n=ya(t,e);if(!n)return t+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}const Fd={"%":(t,e)=>(t*100).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:wA,e:(t,e)=>t.toExponential(e),f:(t,e)=>t.toFixed(e),g:(t,e)=>t.toPrecision(e),o:t=>Math.round(t).toString(8),p:(t,e)=>Bd(t*100,e),r:Bd,s:PA,X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function Od(t){return t}var Gd=Array.prototype.map,zd=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function MA(t){var e=t.grouping===void 0||t.thousands===void 0?Od:$A(Gd.call(t.grouping,Number),t.thousands+""),n=t.currency===void 0?"":t.currency[0]+"",r=t.currency===void 0?"":t.currency[1]+"",i=t.decimal===void 0?".":t.decimal+"",o=t.numerals===void 0?Od:SA(Gd.call(t.numerals,String)),a=t.percent===void 0?"%":t.percent+"",s=t.minus===void 0?"−":t.minus+"",u=t.nan===void 0?"NaN":t.nan+"";function l(f){f=ba(f);var h=f.fill,p=f.align,d=f.sign,g=f.symbol,m=f.zero,y=f.width,b=f.comma,v=f.precision,x=f.trim,S=f.type;S==="n"?(b=!0,S="g"):Fd[S]||(v===void 0&&(v=12),x=!0,S="g"),(m||h==="0"&&p==="=")&&(m=!0,h="0",p="=");var $=g==="$"?n:g==="#"&&/[boxX]/.test(S)?"0"+S.toLowerCase():"",R=g==="$"?r:/[%p]/.test(S)?a:"",T=Fd[S],w=/[defgprs%]/.test(S);v=v===void 0?6:/[gprs]/.test(S)?Math.max(1,Math.min(21,v)):Math.max(0,Math.min(20,v));function P(_){var N=$,D=R,A,L,M;if(S==="c")D=T(_)+D,_="";else{_=+_;var G=_<0||1/_<0;if(_=isNaN(_)?u:T(Math.abs(_),v),x&&(_=TA(_)),G&&+_==0&&d!=="+"&&(G=!1),N=(G?d==="("?d:s:d==="-"||d==="("?"":d)+N,D=(S==="s"?zd[8+Nd/3]:"")+D+(G&&d==="("?")":""),w){for(A=-1,L=_.length;++A<L;)if(M=_.charCodeAt(A),48>M||M>57){D=(M===46?i+_.slice(A+1):_.slice(A))+D,_=_.slice(0,A);break}}}b&&!m&&(_=e(_,1/0));var O=N.length+_.length+D.length,E=O<y?new Array(y-O+1).join(h):"";switch(b&&m&&(_=e(E+_,E.length?y-D.length:1/0),E=""),p){case"<":_=N+_+D+E;break;case"=":_=N+E+_+D;break;case"^":_=E.slice(0,O=E.length>>1)+N+_+D+E.slice(O);break;default:_=E+N+_+D;break}return o(_)}return P.toString=function(){return f+""},P}function c(f,h){var p=l((f=ba(f),f.type="f",f)),d=Math.max(-8,Math.min(8,Math.floor(Ar(h)/3)))*3,g=Math.pow(10,-d),m=zd[8+d/3];return function(y){return p(g*y)+m}}return{format:l,formatPrefix:c}}var xa,Yd,Ud;DA({thousands:",",grouping:[3],currency:["$",""]});function DA(t){return xa=MA(t),Yd=xa.format,Ud=xa.formatPrefix,xa}function CA(t){return Math.max(0,-Ar(Math.abs(t)))}function LA(t,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(Ar(e)/3)))*3-Ar(Math.abs(t)))}function kA(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,Ar(e)-Ar(t))+1}function Wd(t,e){switch(arguments.length){case 0:break;case 1:this.range(t);break;default:this.range(e).domain(t);break}return this}function RA(t){return function(){return t}}function EA(t){return+t}var Hd=[0,1];function Tr(t){return t}function Al(t,e){return(e-=t=+t)?function(n){return(n-t)/e}:RA(isNaN(e)?NaN:.5)}function IA(t,e){var n;return t>e&&(n=t,t=e,e=n),function(r){return Math.max(t,Math.min(e,r))}}function NA(t,e,n){var r=t[0],i=t[1],o=e[0],a=e[1];return i<r?(r=Al(i,r),o=n(a,o)):(r=Al(r,i),o=n(o,a)),function(s){return o(r(s))}}function BA(t,e,n){var r=Math.min(t.length,e.length)-1,i=new Array(r),o=new Array(r),a=-1;for(t[r]<t[0]&&(t=t.slice().reverse(),e=e.slice().reverse());++a<r;)i[a]=Al(t[a],t[a+1]),o[a]=n(e[a],e[a+1]);return function(s){var u=Vp(t,s,1,r)-1;return o[u](i[u](s))}}function FA(t,e){return e.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp()).unknown(t.unknown())}function OA(){var t=Hd,e=Hd,n=yl,r,i,o,a=Tr,s,u,l;function c(){var h=Math.min(t.length,e.length);return a!==Tr&&(a=IA(t[0],t[h-1])),s=h>2?BA:NA,u=l=null,f}function f(h){return h==null||isNaN(h=+h)?o:(u||(u=s(t.map(r),e,n)))(r(a(h)))}return f.invert=function(h){return a(i((l||(l=s(e,t.map(r),Se)))(h)))},f.domain=function(h){return arguments.length?(t=Array.from(h,EA),c()):t.slice()},f.range=function(h){return arguments.length?(e=Array.from(h),c()):e.slice()},f.rangeRound=function(h){return e=Array.from(h),n=oS,c()},f.clamp=function(h){return arguments.length?(a=h?!0:Tr,c()):a!==Tr},f.interpolate=function(h){return arguments.length?(n=h,c()):n},f.unknown=function(h){return arguments.length?(o=h,f):o},function(h,p){return r=h,i=p,c()}}function GA(){return OA()(Tr,Tr)}function zA(t,e,n,r){var i=tw(t,e,n),o;switch(r=ba(r??",f"),r.type){case"s":{var a=Math.max(Math.abs(t),Math.abs(e));return r.precision==null&&!isNaN(o=LA(i,a))&&(r.precision=o),Ud(r,a)}case"":case"e":case"g":case"p":case"r":{r.precision==null&&!isNaN(o=kA(i,Math.max(Math.abs(t),Math.abs(e))))&&(r.precision=o-(r.type==="e"));break}case"f":case"%":{r.precision==null&&!isNaN(o=CA(i))&&(r.precision=o-(r.type==="%")*2);break}}return Yd(r)}function Xd(t){var e=t.domain;return t.ticks=function(n){var r=e();return J_(r[0],r[r.length-1],n??10)},t.tickFormat=function(n,r){var i=e();return zA(i[0],i[i.length-1],n??10,r)},t.nice=function(n){n==null&&(n=10);var r=e(),i=0,o=r.length-1,a=r[i],s=r[o],u,l,c=10;for(s<a&&(l=a,a=s,s=l,l=i,i=o,o=l);c-- >0;){if(l=sl(a,s,n),l===u)return r[i]=a,r[o]=s,e(r);if(l>0)a=Math.floor(a/l)*l,s=Math.ceil(s/l)*l;else if(l<0)a=Math.ceil(a*l)/l,s=Math.floor(s*l)/l;else break;u=l}return t},t}function jd(){var t=GA();return t.copy=function(){return FA(t,jd())},Wd.apply(t,arguments),Xd(t)}function Vd(){var t=0,e=1,n=1,r=[.5],i=[0,1],o;function a(u){return u!=null&&u<=u?i[Vp(r,u,0,n)]:o}function s(){var u=-1;for(r=new Array(n);++u<n;)r[u]=((u+1)*e-(u-n)*t)/(n+1);return a}return a.domain=function(u){return arguments.length?([t,e]=u,t=+t,e=+e,s()):[t,e]},a.range=function(u){return arguments.length?(n=(i=Array.from(u)).length-1,s()):i.slice()},a.invertExtent=function(u){var l=i.indexOf(u);return l<0?[NaN,NaN]:l<1?[t,r[0]]:l>=n?[r[n-1],e]:[r[l-1],r[l]]},a.unknown=function(u){return arguments.length&&(o=u),a},a.thresholds=function(){return r.slice()},a.copy=function(){return Vd().domain([t,e]).range(i).unknown(o)},Wd.apply(Xd(a),arguments)}function ki(t,e,n){this.k=t,this.x=e,this.y=n}ki.prototype={constructor:ki,scale:function(t){return t===1?this:new ki(this.k*t,this.x,this.y)},translate:function(t,e){return t===0&e===0?this:new ki(this.k,this.x+this.k*t,this.y+this.k*e)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}},ki.prototype;function YA(t){let e=Math.floor(Math.sqrt(t)),n=Math.ceil(t/e);for(;e*n<t;)n++;return{rowAmount:e,columnAmount:n}}function qd(t,e,n){const{gap:r}=e,{rowAmount:i,columnAmount:o}=e.rowAmount*e.columnAmount>=n?e:YA(n);return new Array(n).fill(null).map((a,s)=>{const u=s%o,l=Math.floor(s/o),c=(t.width-r*(o-1))/o,f=(t.height-r*(i-1))/i,h=u*c+u*r,p=l*f+l*r,d=[h,p],g=[c/t.width,f/t.height];return{slotIndex:s,rowIndex:l,columnIndex:u,translate:d,scale:g}})}var Tl=function(t,e){return Tl=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(n[i]=r[i])},Tl(t,e)};function Ne(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");Tl(t,e);function n(){this.constructor=t}t.prototype=e===null?Object.create(e):(n.prototype=e.prototype,new n)}function UA(t,e,n,r){function i(o){return o instanceof n?o:new n(function(a){a(o)})}return new(n||(n=Promise))(function(o,a){function s(c){try{l(r.next(c))}catch(f){a(f)}}function u(c){try{l(r.throw(c))}catch(f){a(f)}}function l(c){c.done?o(c.value):i(c.value).then(s,u)}l((r=r.apply(t,[])).next())})}function Zd(t,e){var n={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,i,o,a=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(l){return function(c){return u([l,c])}}function u(l){if(r)throw new TypeError("Generator is already executing.");for(;a&&(a=0,l[0]&&(n=0)),n;)try{if(r=1,i&&(o=l[0]&2?i.return:l[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,l[1])).done)return o;switch(i=0,o&&(l=[l[0]&2,o.value]),l[0]){case 0:case 1:o=l;break;case 4:return n.label++,{value:l[1],done:!1};case 5:n.label++,i=l[1],l=[0];continue;case 7:l=n.ops.pop(),n.trys.pop();continue;default:if(o=n.trys,!(o=o.length>0&&o[o.length-1])&&(l[0]===6||l[0]===2)){n=0;continue}if(l[0]===3&&(!o||l[1]>o[0]&&l[1]<o[3])){n.label=l[1];break}if(l[0]===6&&n.label<o[1]){n.label=o[1],o=l;break}if(o&&n.label<o[2]){n.label=o[2],n.ops.push(l);break}o[2]&&n.ops.pop(),n.trys.pop();continue}l=e.call(t,n)}catch(c){l=[6,c],i=0}finally{r=o=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}}function Pr(t){var e=typeof Symbol=="function"&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&typeof t.length=="number")return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function Mr(t,e){var n=typeof Symbol=="function"&&t[Symbol.iterator];if(!n)return t;var r=n.call(t),i,o=[],a;try{for(;(e===void 0||e-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(s){a={error:s}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(a)throw a.error}}return o}function Dr(t,e,n){if(arguments.length===2)for(var r=0,i=e.length,o;r<i;r++)(o||!(r in e))&&(o||(o=Array.prototype.slice.call(e,0,r)),o[r]=e[r]);return t.concat(o||Array.prototype.slice.call(e))}function Cr(t){return this instanceof Cr?(this.v=t,this):new Cr(t)}function WA(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(t,e||[]),i,o=[];return i=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),s("next"),s("throw"),s("return",a),i[Symbol.asyncIterator]=function(){return this},i;function a(p){return function(d){return Promise.resolve(d).then(p,f)}}function s(p,d){r[p]&&(i[p]=function(g){return new Promise(function(m,y){o.push([p,g,m,y])>1||u(p,g)})},d&&(i[p]=d(i[p])))}function u(p,d){try{l(r[p](d))}catch(g){h(o[0][3],g)}}function l(p){p.value instanceof Cr?Promise.resolve(p.value.v).then(c,f):h(o[0][2],p)}function c(p){u("next",p)}function f(p){u("throw",p)}function h(p,d){p(d),o.shift(),o.length&&u(o[0][0],o[0][1])}}function HA(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e=t[Symbol.asyncIterator],n;return e?e.call(t):(t=typeof Pr=="function"?Pr(t):t[Symbol.iterator](),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(o){n[o]=t[o]&&function(a){return new Promise(function(s,u){a=t[o](a),i(s,u,a.done,a.value)})}}function i(o,a,s,u){Promise.resolve(u).then(function(l){o({value:l,done:s})},a)}}function Dt(t){return typeof t=="function"}function Pl(t){var e=function(r){Error.call(r),r.stack=new Error().stack},n=t(e);return n.prototype=Object.create(Error.prototype),n.prototype.constructor=n,n}var Ml=Pl(function(t){return function(e){t(this),this.message=e?e.length+` errors occurred during unsubscription:
|
4
|
-
`+
|
5
|
-
`):"",this.name="UnsubscriptionError",this.errors=e}});function va(t,e){if(t){var n=t.indexOf(e);0<=n&&t.splice(n,1)}}var Ri=function(){function t(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var e,n,r,i,o;if(!this.closed){this.closed=!0;var a=this._parentage;if(a)if(this._parentage=null,Array.isArray(a))try{for(var s=Pr(a),u=s.next();!u.done;u=s.next()){var l=u.value;l.remove(this)}}catch(g){e={error:g}}finally{try{u&&!u.done&&(n=s.return)&&n.call(s)}finally{if(e)throw e.error}}else a.remove(this);var c=this.initialTeardown;if(Dt(c))try{c()}catch(g){o=g instanceof Ml?g.errors:[g]}var f=this._finalizers;if(f){this._finalizers=null;try{for(var h=Pr(f),p=h.next();!p.done;p=h.next()){var d=p.value;try{Jd(d)}catch(g){o=o??[],g instanceof Ml?o=Dr(Dr([],Mr(o)),Mr(g.errors)):o.push(g)}}}catch(g){r={error:g}}finally{try{p&&!p.done&&(i=h.return)&&i.call(h)}finally{if(r)throw r.error}}}if(o)throw new Ml(o)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)Jd(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=(n=this._finalizers)!==null&&n!==void 0?n:[]).push(e)}},t.prototype._hasParent=function(e){var n=this._parentage;return n===e||Array.isArray(n)&&n.includes(e)},t.prototype._addParent=function(e){var n=this._parentage;this._parentage=Array.isArray(n)?(n.push(e),n):n?[n,e]:e},t.prototype._removeParent=function(e){var n=this._parentage;n===e?this._parentage=null:Array.isArray(n)&&va(n,e)},t.prototype.remove=function(e){var n=this._finalizers;n&&va(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),Kd=Ri.EMPTY;function Qd(t){return t instanceof Ri||t&&"closed"in t&&Dt(t.remove)&&Dt(t.add)&&Dt(t.unsubscribe)}function Jd(t){Dt(t)?t():t.unsubscribe()}var tg={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},XA={setTimeout:function(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setTimeout.apply(void 0,Dr([t,e],Mr(n)))},clearTimeout:function(t){return clearTimeout(t)},delegate:void 0};function eg(t){XA.setTimeout(function(){throw t})}function Dl(){}function _a(t){t()}var Cl=function(t){Ne(e,t);function e(n){var r=t.call(this)||this;return r.isStopped=!1,n?(r.destination=n,Qd(n)&&n.add(r)):r.destination=ZA,r}return e.create=function(n,r,i){return new Ei(n,r,i)},e.prototype.next=function(n){this.isStopped||this._next(n)},e.prototype.error=function(n){this.isStopped||(this.isStopped=!0,this._error(n))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(n){this.destination.next(n)},e.prototype._error=function(n){try{this.destination.error(n)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e}(Ri),jA=Function.prototype.bind;function Ll(t,e){return jA.call(t,e)}var VA=function(){function t(e){this.partialObserver=e}return t.prototype.next=function(e){var n=this.partialObserver;if(n.next)try{n.next(e)}catch(r){wa(r)}},t.prototype.error=function(e){var n=this.partialObserver;if(n.error)try{n.error(e)}catch(r){wa(r)}else wa(e)},t.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(n){wa(n)}},t}(),Ei=function(t){Ne(e,t);function e(n,r,i){var o=t.call(this)||this,a;if(Dt(n)||!n)a={next:n??void 0,error:r??void 0,complete:i??void 0};else{var s;o&&tg.useDeprecatedNextContext?(s=Object.create(n),s.unsubscribe=function(){return o.unsubscribe()},a={next:n.next&&Ll(n.next,s),error:n.error&&Ll(n.error,s),complete:n.complete&&Ll(n.complete,s)}):a=n}return o.destination=new VA(a),o}return e}(Cl);function wa(t){eg(t)}function qA(t){throw t}var ZA={closed:!0,next:Dl,error:qA,complete:Dl},kl=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function $a(t){return t}function KA(t){return t.length===0?$a:t.length===1?t[0]:function(e){return t.reduce(function(n,r){return r(n)},e)}}var se=function(){function t(e){e&&(this._subscribe=e)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(e,n,r){var i=this,o=JA(e)?e:new Ei(e,n,r);return _a(function(){var a=i,s=a.operator,u=a.source;o.add(s?s.call(o,u):u?i._subscribe(o):i._trySubscribe(o))}),o},t.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(n){e.error(n)}},t.prototype.forEach=function(e,n){var r=this;return n=ng(n),new n(function(i,o){var a=new Ei({next:function(s){try{e(s)}catch(u){o(u),a.unsubscribe()}},error:o,complete:i});r.subscribe(a)})},t.prototype._subscribe=function(e){var n;return(n=this.source)===null||n===void 0?void 0:n.subscribe(e)},t.prototype[kl]=function(){return this},t.prototype.pipe=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return KA(e)(this)},t.prototype.toPromise=function(e){var n=this;return e=ng(e),new e(function(r,i){var o;n.subscribe(function(a){return o=a},function(a){return i(a)},function(){return r(o)})})},t.create=function(e){return new t(e)},t}();function ng(t){var e;return(e=t??tg.Promise)!==null&&e!==void 0?e:Promise}function QA(t){return t&&Dt(t.next)&&Dt(t.error)&&Dt(t.complete)}function JA(t){return t&&t instanceof Cl||QA(t)&&Qd(t)}function tT(t){return Dt(t==null?void 0:t.lift)}function In(t){return function(e){if(tT(e))return e.lift(function(n){try{return t(n,this)}catch(r){this.error(r)}});throw new TypeError("Unable to lift unknown Observable type")}}function Nn(t,e,n,r,i){return new eT(t,e,n,r,i)}var eT=function(t){Ne(e,t);function e(n,r,i,o,a,s){var u=t.call(this,n)||this;return u.onFinalize=a,u.shouldUnsubscribe=s,u._next=r?function(l){try{r(l)}catch(c){n.error(c)}}:t.prototype._next,u._error=o?function(l){try{o(l)}catch(c){n.error(c)}finally{this.unsubscribe()}}:t.prototype._error,u._complete=i?function(){try{i()}catch(l){n.error(l)}finally{this.unsubscribe()}}:t.prototype._complete,u}return e.prototype.unsubscribe=function(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;t.prototype.unsubscribe.call(this),!r&&((n=this.onFinalize)===null||n===void 0||n.call(this))}},e}(Cl),nT=Pl(function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}}),Lr=function(t){Ne(e,t);function e(){var n=t.call(this)||this;return n.closed=!1,n.currentObservers=null,n.observers=[],n.isStopped=!1,n.hasError=!1,n.thrownError=null,n}return e.prototype.lift=function(n){var r=new rg(this,this);return r.operator=n,r},e.prototype._throwIfClosed=function(){if(this.closed)throw new nT},e.prototype.next=function(n){var r=this;_a(function(){var i,o;if(r._throwIfClosed(),!r.isStopped){r.currentObservers||(r.currentObservers=Array.from(r.observers));try{for(var a=Pr(r.currentObservers),s=a.next();!s.done;s=a.next()){var u=s.value;u.next(n)}}catch(l){i={error:l}}finally{try{s&&!s.done&&(o=a.return)&&o.call(a)}finally{if(i)throw i.error}}}})},e.prototype.error=function(n){var r=this;_a(function(){if(r._throwIfClosed(),!r.isStopped){r.hasError=r.isStopped=!0,r.thrownError=n;for(var i=r.observers;i.length;)i.shift().error(n)}})},e.prototype.complete=function(){var n=this;_a(function(){if(n._throwIfClosed(),!n.isStopped){n.isStopped=!0;for(var r=n.observers;r.length;)r.shift().complete()}})},e.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(e.prototype,"observed",{get:function(){var n;return((n=this.observers)===null||n===void 0?void 0:n.length)>0},enumerable:!1,configurable:!0}),e.prototype._trySubscribe=function(n){return this._throwIfClosed(),t.prototype._trySubscribe.call(this,n)},e.prototype._subscribe=function(n){return this._throwIfClosed(),this._checkFinalizedStatuses(n),this._innerSubscribe(n)},e.prototype._innerSubscribe=function(n){var r=this,i=this,o=i.hasError,a=i.isStopped,s=i.observers;return o||a?Kd:(this.currentObservers=null,s.push(n),new Ri(function(){r.currentObservers=null,va(s,n)}))},e.prototype._checkFinalizedStatuses=function(n){var r=this,i=r.hasError,o=r.thrownError,a=r.isStopped;i?n.error(o):a&&n.complete()},e.prototype.asObservable=function(){var n=new se;return n.source=this,n},e.create=function(n,r){return new rg(n,r)},e}(se),rg=function(t){Ne(e,t);function e(n,r){var i=t.call(this)||this;return i.destination=n,i.source=r,i}return e.prototype.next=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.next)===null||i===void 0||i.call(r,n)},e.prototype.error=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.error)===null||i===void 0||i.call(r,n)},e.prototype.complete=function(){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.complete)===null||r===void 0||r.call(n)},e.prototype._subscribe=function(n){var r,i;return(i=(r=this.source)===null||r===void 0?void 0:r.subscribe(n))!==null&&i!==void 0?i:Kd},e}(Lr),ig=function(t){Ne(e,t);function e(n){var r=t.call(this)||this;return r._value=n,r}return Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),e.prototype._subscribe=function(n){var r=t.prototype._subscribe.call(this,n);return!r.closed&&n.next(this._value),r},e.prototype.getValue=function(){var n=this,r=n.hasError,i=n.thrownError,o=n._value;if(r)throw i;return this._throwIfClosed(),o},e.prototype.next=function(n){t.prototype.next.call(this,this._value=n)},e}(Lr),Rl={now:function(){return(Rl.delegate||Date).now()},delegate:void 0},rT=function(t){Ne(e,t);function e(n,r,i){n===void 0&&(n=1/0),r===void 0&&(r=1/0),i===void 0&&(i=Rl);var o=t.call(this)||this;return o._bufferSize=n,o._windowTime=r,o._timestampProvider=i,o._buffer=[],o._infiniteTimeWindow=!0,o._infiniteTimeWindow=r===1/0,o._bufferSize=Math.max(1,n),o._windowTime=Math.max(1,r),o}return e.prototype.next=function(n){var r=this,i=r.isStopped,o=r._buffer,a=r._infiniteTimeWindow,s=r._timestampProvider,u=r._windowTime;i||(o.push(n),!a&&o.push(s.now()+u)),this._trimBuffer(),t.prototype.next.call(this,n)},e.prototype._subscribe=function(n){this._throwIfClosed(),this._trimBuffer();for(var r=this._innerSubscribe(n),i=this,o=i._infiniteTimeWindow,a=i._buffer,s=a.slice(),u=0;u<s.length&&!n.closed;u+=o?1:2)n.next(s[u]);return this._checkFinalizedStatuses(n),r},e.prototype._trimBuffer=function(){var n=this,r=n._bufferSize,i=n._timestampProvider,o=n._buffer,a=n._infiniteTimeWindow,s=(a?1:2)*r;if(r<1/0&&s<o.length&&o.splice(0,o.length-s),!a){for(var u=i.now(),l=0,c=1;c<o.length&&o[c]<=u;c+=2)l=c;l&&o.splice(0,l+1)}},e}(Lr),iT=function(t){Ne(e,t);function e(n,r){return t.call(this)||this}return e.prototype.schedule=function(n,r){return this},e}(Ri),og={setInterval:function(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setInterval.apply(void 0,Dr([t,e],Mr(n)))},clearInterval:function(t){return clearInterval(t)},delegate:void 0},oT=function(t){Ne(e,t);function e(n,r){var i=t.call(this,n,r)||this;return i.scheduler=n,i.work=r,i.pending=!1,i}return e.prototype.schedule=function(n,r){var i;if(r===void 0&&(r=0),this.closed)return this;this.state=n;var o=this.id,a=this.scheduler;return o!=null&&(this.id=this.recycleAsyncId(a,o,r)),this.pending=!0,this.delay=r,this.id=(i=this.id)!==null&&i!==void 0?i:this.requestAsyncId(a,this.id,r),this},e.prototype.requestAsyncId=function(n,r,i){return i===void 0&&(i=0),og.setInterval(n.flush.bind(n,this),i)},e.prototype.recycleAsyncId=function(n,r,i){if(i===void 0&&(i=0),i!=null&&this.delay===i&&this.pending===!1)return r;r!=null&&og.clearInterval(r)},e.prototype.execute=function(n,r){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var i=this._execute(n,r);if(i)return i;this.pending===!1&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},e.prototype._execute=function(n,r){var i=!1,o;try{this.work(n)}catch(a){i=!0,o=a||new Error("Scheduled action threw falsy error")}if(i)return this.unsubscribe(),o},e.prototype.unsubscribe=function(){if(!this.closed){var n=this,r=n.id,i=n.scheduler,o=i.actions;this.work=this.state=this.scheduler=null,this.pending=!1,va(o,this),r!=null&&(this.id=this.recycleAsyncId(i,r,null)),this.delay=null,t.prototype.unsubscribe.call(this)}},e}(iT),ag=function(){function t(e,n){n===void 0&&(n=t.now),this.schedulerActionCtor=e,this.now=n}return t.prototype.schedule=function(e,n,r){return n===void 0&&(n=0),new this.schedulerActionCtor(this,e).schedule(r,n)},t.now=Rl.now,t}(),aT=function(t){Ne(e,t);function e(n,r){r===void 0&&(r=ag.now);var i=t.call(this,n,r)||this;return i.actions=[],i._active=!1,i}return e.prototype.flush=function(n){var r=this.actions;if(this._active){r.push(n);return}var i;this._active=!0;do if(i=n.execute(n.state,n.delay))break;while(n=r.shift());if(this._active=!1,i){for(;n=r.shift();)n.unsubscribe();throw i}},e}(ag);new aT(oT);function sT(t){return t&&Dt(t.schedule)}function sg(t){return t[t.length-1]}function uT(t){return Dt(sg(t))?t.pop():void 0}function lT(t){return sT(sg(t))?t.pop():void 0}var ug=function(t){return t&&typeof t.length=="number"&&typeof t!="function"};function lg(t){return Dt(t==null?void 0:t.then)}function cg(t){return Dt(t[kl])}function fg(t){return Symbol.asyncIterator&&Dt(t==null?void 0:t[Symbol.asyncIterator])}function hg(t){return new TypeError("You provided "+(t!==null&&typeof t=="object"?"an invalid object":"'"+t+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function cT(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var pg=cT();function dg(t){return Dt(t==null?void 0:t[pg])}function gg(t){return WA(this,arguments,function(){var e,n,r,i;return Zd(this,function(o){switch(o.label){case 0:e=t.getReader(),o.label=1;case 1:o.trys.push([1,,9,10]),o.label=2;case 2:return[4,Cr(e.read())];case 3:return n=o.sent(),r=n.value,i=n.done,i?[4,Cr(void 0)]:[3,5];case 4:return[2,o.sent()];case 5:return[4,Cr(r)];case 6:return[4,o.sent()];case 7:return o.sent(),[3,2];case 8:return[3,10];case 9:return e.releaseLock(),[7];case 10:return[2]}})})}function mg(t){return Dt(t==null?void 0:t.getReader)}function Bn(t){if(t instanceof se)return t;if(t!=null){if(cg(t))return fT(t);if(ug(t))return hT(t);if(lg(t))return pT(t);if(fg(t))return yg(t);if(dg(t))return dT(t);if(mg(t))return gT(t)}throw hg(t)}function fT(t){return new se(function(e){var n=t[kl]();if(Dt(n.subscribe))return n.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function hT(t){return new se(function(e){for(var n=0;n<t.length&&!e.closed;n++)e.next(t[n]);e.complete()})}function pT(t){return new se(function(e){t.then(function(n){e.closed||(e.next(n),e.complete())},function(n){return e.error(n)}).then(null,eg)})}function dT(t){return new se(function(e){var n,r;try{for(var i=Pr(t),o=i.next();!o.done;o=i.next()){var a=o.value;if(e.next(a),e.closed)return}}catch(s){n={error:s}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}e.complete()})}function yg(t){return new se(function(e){mT(t,e).catch(function(n){return e.error(n)})})}function gT(t){return yg(gg(t))}function mT(t,e){var n,r,i,o;return UA(this,void 0,void 0,function(){var a,s;return Zd(this,function(u){switch(u.label){case 0:u.trys.push([0,5,6,11]),n=HA(t),u.label=1;case 1:return[4,n.next()];case 2:if(r=u.sent(),!!r.done)return[3,4];if(a=r.value,e.next(a),e.closed)return[2];u.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return s=u.sent(),i={error:s},[3,11];case 6:return u.trys.push([6,,9,10]),r&&!r.done&&(o=n.return)?[4,o.call(n)]:[3,8];case 7:u.sent(),u.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}})})}function hn(t,e,n,r,i){r===void 0&&(r=0),i===void 0&&(i=!1);var o=e.schedule(function(){n(),i?t.add(this.schedule(null,r)):this.unsubscribe()},r);if(t.add(o),!i)return o}function bg(t,e){return e===void 0&&(e=0),In(function(n,r){n.subscribe(Nn(r,function(i){return hn(r,t,function(){return r.next(i)},e)},function(){return hn(r,t,function(){return r.complete()},e)},function(i){return hn(r,t,function(){return r.error(i)},e)}))})}function xg(t,e){return e===void 0&&(e=0),In(function(n,r){r.add(t.schedule(function(){return n.subscribe(r)},e))})}function yT(t,e){return Bn(t).pipe(xg(e),bg(e))}function bT(t,e){return Bn(t).pipe(xg(e),bg(e))}function xT(t,e){return new se(function(n){var r=0;return e.schedule(function(){r===t.length?n.complete():(n.next(t[r++]),n.closed||this.schedule())})})}function vT(t,e){return new se(function(n){var r;return hn(n,e,function(){r=t[pg](),hn(n,e,function(){var i,o,a;try{i=r.next(),o=i.value,a=i.done}catch(s){n.error(s);return}a?n.complete():n.next(o)},0,!0)}),function(){return Dt(r==null?void 0:r.return)&&r.return()}})}function vg(t,e){if(!t)throw new Error("Iterable cannot be null");return new se(function(n){hn(n,e,function(){var r=t[Symbol.asyncIterator]();hn(n,e,function(){r.next().then(function(i){i.done?n.complete():n.next(i.value)})},0,!0)})})}function _T(t,e){return vg(gg(t),e)}function wT(t,e){if(t!=null){if(cg(t))return yT(t,e);if(ug(t))return xT(t,e);if(lg(t))return bT(t,e);if(fg(t))return vg(t,e);if(dg(t))return vT(t,e);if(mg(t))return _T(t,e)}throw hg(t)}function _g(t,e){return e?wT(t,e):Bn(t)}Pl(function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}});function kr(t,e){return In(function(n,r){var i=0;n.subscribe(Nn(r,function(o){r.next(t.call(e,o,i++))}))})}var $T=Array.isArray;function ST(t,e){return $T(e)?t.apply(void 0,Dr([],Mr(e))):t(e)}function AT(t){return kr(function(e){return ST(t,e)})}var TT=Array.isArray,PT=Object.getPrototypeOf,MT=Object.prototype,DT=Object.keys;function CT(t){if(t.length===1){var e=t[0];if(TT(e))return{args:e,keys:null};if(LT(e)){var n=DT(e);return{args:n.map(function(r){return e[r]}),keys:n}}}return{args:t,keys:null}}function LT(t){return t&&typeof t=="object"&&PT(t)===MT}function kT(t,e){return t.reduce(function(n,r,i){return n[r]=e[i],n},{})}function wg(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=lT(t),r=uT(t),i=CT(t),o=i.args,a=i.keys;if(o.length===0)return _g([],n);var s=new se(RT(o,n,a?function(u){return kT(a,u)}:$a));return r?s.pipe(AT(r)):s}function RT(t,e,n){return n===void 0&&(n=$a),function(r){$g(e,function(){for(var i=t.length,o=new Array(i),a=i,s=i,u=function(c){$g(e,function(){var f=_g(t[c],e),h=!1;f.subscribe(Nn(r,function(p){o[c]=p,h||(h=!0,s--),s||r.next(n(o.slice()))},function(){--a||r.complete()}))},r)},l=0;l<i;l++)u(l)},r)}}function $g(t,e,n){t?hn(n,t,e):e()}function ET(t,e){return e===void 0&&(e=$a),t=t??IT,In(function(n,r){var i,o=!0;n.subscribe(Nn(r,function(a){var s=e(a);(o||!t(i,s))&&(o=!1,i=s,r.next(a))}))})}function IT(t,e){return t===e}function NT(t){t===void 0&&(t={});var e=t.connector,n=e===void 0?function(){return new Lr}:e,r=t.resetOnError,i=r===void 0?!0:r,o=t.resetOnComplete,a=o===void 0?!0:o,s=t.resetOnRefCountZero,u=s===void 0?!0:s;return function(l){var c,f,h,p=0,d=!1,g=!1,m=function(){f==null||f.unsubscribe(),f=void 0},y=function(){m(),c=h=void 0,d=g=!1},b=function(){var v=c;y(),v==null||v.unsubscribe()};return In(function(v,x){p++,!g&&!d&&m();var S=h=h??n();x.add(function(){p--,p===0&&!g&&!d&&(f=El(b,u))}),S.subscribe(x),!c&&p>0&&(c=new Ei({next:function($){return S.next($)},error:function($){g=!0,m(),f=El(y,i,$),S.error($)},complete:function(){d=!0,m(),f=El(y,a),S.complete()}}),Bn(v).subscribe(c))})(l)}}function El(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];if(e===!0){t();return}if(e!==!1){var i=new Ei({next:function(){i.unsubscribe(),t()}});return Bn(e.apply(void 0,Dr([],Mr(n)))).subscribe(i)}}function BT(t,e,n){var r,i=!1;return r=t,NT({connector:function(){return new rT(r,e,n)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:i})}function Il(t,e){return In(function(n,r){var i=null,o=0,a=!1,s=function(){return a&&!i&&r.complete()};n.subscribe(Nn(r,function(u){i==null||i.unsubscribe();var l=0,c=o++;Bn(t(u,c)).subscribe(i=Nn(r,function(f){return r.next(e?e(u,f,c,l++):f)},function(){i=null,s()}))},function(){a=!0,s()}))})}function Sg(t){return In(function(e,n){Bn(t).subscribe(Nn(n,function(){return n.complete()},Dl)),!n.closed&&e.subscribe(n)})}const FT=t=>t.pipe(kr(e=>e.styles.textSize),ET(),kr(e=>{let n=NaN;if(typeof e=="string")if(e.includes("rem")){const r=parseFloat(getComputedStyle(document.documentElement).fontSize);n=parseFloat(e)*r}else e.includes("px")&&(n=parseFloat(e));else if(typeof e=="number")return e;return n||14})),Ag=({maxValue:t=1,minValue:e=0,axisWidth:n,scaleDomain:r=vr.scaleDomain,scaleRange:i=vr.scaleRange})=>{const o=r[0]??vr.scaleDomain[0],a=r[1]??vr.scaleDomain[1],s=i[0]??vr.scaleRange[0],u=i[1]??vr.scaleRange[1];let l=o==="auto"?e<0?e:0:o==="min"?e:o,c=a==="auto"?t>=0?t:0:a==="max"?t:a;const f=t-(t-l)/(1-s),h=c/u;return jd().domain([f,h]).range([0,n])},Tg=({axisLabels:t,axisWidth:e,padding:n=0,reverse:r=!1})=>{let i=t.map((u,l)=>l);r&&i.reverse();const o=i.length-1+n*2,a=e/o,s=a*n-a*.5;return Vd().domain([s,e-s]).range(i)},Pg=({fullDataFormatter$:t,layout$:e})=>{const n=new Lr;function r({xAxis:i,yAxis:o,width:a,height:s}){if(!i||!o)return{translate:[0,0],scale:[1,1],rotate:0,rotateX:0,rotateY:0,value:""};let u=0,l=0,c=0,f=0,h=0;return i.position==="bottom"?o.position==="left"?(f=180,l=s):o.position==="right"?(f=180,h=180,u=a,l=s):(f=180,l=s):i.position==="top"?o.position==="left"||(o.position==="right"?(h=180,u=a):(f=180,l=s)):i.position==="left"?o.position==="bottom"?(c=-90,l=s):o.position==="top"?(c=-90,h=180):(f=180,l=s):i.position==="right"?o.position==="bottom"?(c=-90,f=180,l=s,u=a):o.position==="top"?(c=-90,f=180,h=180,u=a):(f=180,l=s):(f=180,l=s),{translate:[u,l],scale:[1,1],rotate:c,rotateX:f,rotateY:h,value:`translate(${u}px, ${l}px) rotate(${c}deg) rotateX(${f}deg) rotateY(${h}deg)`}}return new se(i=>(wg({fullDataFormatter:t,layout:e}).pipe(Sg(n),Il(async o=>o)).subscribe(o=>{const a=r({xAxis:o.fullDataFormatter.grid.groupAxis,yAxis:o.fullDataFormatter.grid.valueAxis,width:o.layout.width,height:o.layout.height});i.next(a)}),function(){n.next(void 0)}))},Mg=({gridAxesTransform$:t})=>t.pipe(kr(e=>{const n=[0,0],r=[1/e.scale[0],1/e.scale[1]],i=e.rotate*-1,o=e.rotateX*-1,a=e.rotateY*-1;return{translate:n,scale:r,rotate:i,rotateX:o,rotateY:a,value:`translate(${n[0]}px, ${n[1]}px) rotateX(${o}deg) rotateY(${a}deg) rotate(${i}deg)`}})),Dg=({computedData$:t,fullDataFormatter$:e,layout$:n})=>wg({computedData:t,fullDataFormatter:e,layout:n}).pipe(Il(async r=>r),kr(r=>{if(r.fullDataFormatter.grid.separateSeries)return qd(r.layout,r.fullDataFormatter.container,r.computedData.length);{const i=qd(r.layout,r.fullDataFormatter.container,1);return r.computedData.map((o,a)=>i[0])}}));function OT(t){return`[OrbCharts warn]: ${t.message}`}function GT({columnName:t,expectToBe:e,from:n}){return`Invalid value: '${t}' must be '${e}'
|
36
|
+
`):"",this.name="UnsubscriptionError",this.errors=n}});function ya(e,t){if(e){var n=e.indexOf(t);0<=n&&e.splice(n,1)}}var Gi=function(){function e(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return e.prototype.unsubscribe=function(){var t,n,r,i,o;if(!this.closed){this.closed=!0;var a=this._parentage;if(a)if(this._parentage=null,Array.isArray(a))try{for(var s=Mr(a),l=s.next();!l.done;l=s.next()){var u=l.value;u.remove(this)}}catch(m){t={error:m}}finally{try{l&&!l.done&&(n=s.return)&&n.call(s)}finally{if(t)throw t.error}}else a.remove(this);var c=this.initialTeardown;if(xe(c))try{c()}catch(m){o=m instanceof Su?m.errors:[m]}var f=this._finalizers;if(f){this._finalizers=null;try{for(var h=Mr(f),p=h.next();!p.done;p=h.next()){var d=p.value;try{cd(d)}catch(m){o=o??[],m instanceof Su?o=Cr(Cr([],zn(o)),zn(m.errors)):o.push(m)}}}catch(m){r={error:m}}finally{try{p&&!p.done&&(i=h.return)&&i.call(h)}finally{if(r)throw r.error}}}if(o)throw new Su(o)}},e.prototype.add=function(t){var n;if(t&&t!==this)if(this.closed)cd(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=(n=this._finalizers)!==null&&n!==void 0?n:[]).push(t)}},e.prototype._hasParent=function(t){var n=this._parentage;return n===t||Array.isArray(n)&&n.includes(t)},e.prototype._addParent=function(t){var n=this._parentage;this._parentage=Array.isArray(n)?(n.push(t),n):n?[n,t]:t},e.prototype._removeParent=function(t){var n=this._parentage;n===t?this._parentage=null:Array.isArray(n)&&ya(n,t)},e.prototype.remove=function(t){var n=this._finalizers;n&&ya(n,t),t instanceof e&&t._removeParent(this)},e.EMPTY=function(){var t=new e;return t.closed=!0,t}(),e}(),ld=Gi.EMPTY;function ud(e){return e instanceof Gi||e&&"closed"in e&&xe(e.remove)&&xe(e.add)&&xe(e.unsubscribe)}function cd(e){xe(e)?e():e.unsubscribe()}var fd={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},hd={setTimeout:function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setTimeout.apply(void 0,Cr([e,t],zn(n)))},clearTimeout:function(e){var t=hd.delegate;return((t==null?void 0:t.clearTimeout)||clearTimeout)(e)},delegate:void 0};function pd(e){hd.setTimeout(function(){throw e})}function wu(){}function ba(e){e()}var Tu=function(e){zt(t,e);function t(n){var r=e.call(this)||this;return r.isStopped=!1,n?(r.destination=n,ud(n)&&n.add(r)):r.destination=J2,r}return t.create=function(n,r,i){return new Yi(n,r,i)},t.prototype.next=function(n){this.isStopped||this._next(n)},t.prototype.error=function(n){this.isStopped||(this.isStopped=!0,this._error(n))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(n){this.destination.next(n)},t.prototype._error=function(n){try{this.destination.error(n)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}(Gi),Z2=Function.prototype.bind;function Au(e,t){return Z2.call(e,t)}var K2=function(){function e(t){this.partialObserver=t}return e.prototype.next=function(t){var n=this.partialObserver;if(n.next)try{n.next(t)}catch(r){xa(r)}},e.prototype.error=function(t){var n=this.partialObserver;if(n.error)try{n.error(t)}catch(r){xa(r)}else xa(t)},e.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(n){xa(n)}},e}(),Yi=function(e){zt(t,e);function t(n,r,i){var o=e.call(this)||this,a;if(xe(n)||!n)a={next:n??void 0,error:r??void 0,complete:i??void 0};else{var s;o&&fd.useDeprecatedNextContext?(s=Object.create(n),s.unsubscribe=function(){return o.unsubscribe()},a={next:n.next&&Au(n.next,s),error:n.error&&Au(n.error,s),complete:n.complete&&Au(n.complete,s)}):a=n}return o.destination=new K2(a),o}return t}(Tu);function xa(e){pd(e)}function Q2(e){throw e}var J2={closed:!0,next:wu,error:Q2,complete:wu},Pu=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function kr(e){return e}function e_(e){return e.length===0?kr:e.length===1?e[0]:function(n){return e.reduce(function(r,i){return i(r)},n)}}var de=function(){function e(t){t&&(this._subscribe=t)}return e.prototype.lift=function(t){var n=new e;return n.source=this,n.operator=t,n},e.prototype.subscribe=function(t,n,r){var i=this,o=n_(t)?t:new Yi(t,n,r);return ba(function(){var a=i,s=a.operator,l=a.source;o.add(s?s.call(o,l):l?i._subscribe(o):i._trySubscribe(o))}),o},e.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(n){t.error(n)}},e.prototype.forEach=function(t,n){var r=this;return n=dd(n),new n(function(i,o){var a=new Yi({next:function(s){try{t(s)}catch(l){o(l),a.unsubscribe()}},error:o,complete:i});r.subscribe(a)})},e.prototype._subscribe=function(t){var n;return(n=this.source)===null||n===void 0?void 0:n.subscribe(t)},e.prototype[Pu]=function(){return this},e.prototype.pipe=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return e_(t)(this)},e.prototype.toPromise=function(t){var n=this;return t=dd(t),new t(function(r,i){var o;n.subscribe(function(a){return o=a},function(a){return i(a)},function(){return r(o)})})},e.create=function(t){return new e(t)},e}();function dd(e){var t;return(t=e??fd.Promise)!==null&&t!==void 0?t:Promise}function t_(e){return e&&xe(e.next)&&xe(e.error)&&xe(e.complete)}function n_(e){return e&&e instanceof Tu||t_(e)&&ud(e)}function r_(e){return xe(e==null?void 0:e.lift)}function ft(e){return function(t){if(r_(t))return t.lift(function(n){try{return e(n,this)}catch(r){this.error(r)}});throw new TypeError("Unable to lift unknown Observable type")}}function ot(e,t,n,r,i){return new i_(e,t,n,r,i)}var i_=function(e){zt(t,e);function t(n,r,i,o,a,s){var l=e.call(this,n)||this;return l.onFinalize=a,l.shouldUnsubscribe=s,l._next=r?function(u){try{r(u)}catch(c){n.error(c)}}:e.prototype._next,l._error=o?function(u){try{o(u)}catch(c){n.error(c)}finally{this.unsubscribe()}}:e.prototype._error,l._complete=i?function(){try{i()}catch(u){n.error(u)}finally{this.unsubscribe()}}:e.prototype._complete,l}return t.prototype.unsubscribe=function(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;e.prototype.unsubscribe.call(this),!r&&((n=this.onFinalize)===null||n===void 0||n.call(this))}},t}(Tu),o_=_u(function(e){return function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}}),J=function(e){zt(t,e);function t(){var n=e.call(this)||this;return n.closed=!1,n.currentObservers=null,n.observers=[],n.isStopped=!1,n.hasError=!1,n.thrownError=null,n}return t.prototype.lift=function(n){var r=new gd(this,this);return r.operator=n,r},t.prototype._throwIfClosed=function(){if(this.closed)throw new o_},t.prototype.next=function(n){var r=this;ba(function(){var i,o;if(r._throwIfClosed(),!r.isStopped){r.currentObservers||(r.currentObservers=Array.from(r.observers));try{for(var a=Mr(r.currentObservers),s=a.next();!s.done;s=a.next()){var l=s.value;l.next(n)}}catch(u){i={error:u}}finally{try{s&&!s.done&&(o=a.return)&&o.call(a)}finally{if(i)throw i.error}}}})},t.prototype.error=function(n){var r=this;ba(function(){if(r._throwIfClosed(),!r.isStopped){r.hasError=r.isStopped=!0,r.thrownError=n;for(var i=r.observers;i.length;)i.shift().error(n)}})},t.prototype.complete=function(){var n=this;ba(function(){if(n._throwIfClosed(),!n.isStopped){n.isStopped=!0;for(var r=n.observers;r.length;)r.shift().complete()}})},t.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(t.prototype,"observed",{get:function(){var n;return((n=this.observers)===null||n===void 0?void 0:n.length)>0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(n){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,n)},t.prototype._subscribe=function(n){return this._throwIfClosed(),this._checkFinalizedStatuses(n),this._innerSubscribe(n)},t.prototype._innerSubscribe=function(n){var r=this,i=this,o=i.hasError,a=i.isStopped,s=i.observers;return o||a?ld:(this.currentObservers=null,s.push(n),new Gi(function(){r.currentObservers=null,ya(s,n)}))},t.prototype._checkFinalizedStatuses=function(n){var r=this,i=r.hasError,o=r.thrownError,a=r.isStopped;i?n.error(o):a&&n.complete()},t.prototype.asObservable=function(){var n=new de;return n.source=this,n},t.create=function(n,r){return new gd(n,r)},t}(de),gd=function(e){zt(t,e);function t(n,r){var i=e.call(this)||this;return i.destination=n,i.source=r,i}return t.prototype.next=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.next)===null||i===void 0||i.call(r,n)},t.prototype.error=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.error)===null||i===void 0||i.call(r,n)},t.prototype.complete=function(){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.complete)===null||r===void 0||r.call(n)},t.prototype._subscribe=function(n){var r,i;return(i=(r=this.source)===null||r===void 0?void 0:r.subscribe(n))!==null&&i!==void 0?i:ld},t}(J),Du=function(e){zt(t,e);function t(n){var r=e.call(this)||this;return r._value=n,r}return Object.defineProperty(t.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),t.prototype._subscribe=function(n){var r=e.prototype._subscribe.call(this,n);return!r.closed&&n.next(this._value),r},t.prototype.getValue=function(){var n=this,r=n.hasError,i=n.thrownError,o=n._value;if(r)throw i;return this._throwIfClosed(),o},t.prototype.next=function(n){e.prototype.next.call(this,this._value=n)},t}(J),Mu={now:function(){return(Mu.delegate||Date).now()},delegate:void 0},a_=function(e){zt(t,e);function t(n,r,i){n===void 0&&(n=1/0),r===void 0&&(r=1/0),i===void 0&&(i=Mu);var o=e.call(this)||this;return o._bufferSize=n,o._windowTime=r,o._timestampProvider=i,o._buffer=[],o._infiniteTimeWindow=!0,o._infiniteTimeWindow=r===1/0,o._bufferSize=Math.max(1,n),o._windowTime=Math.max(1,r),o}return t.prototype.next=function(n){var r=this,i=r.isStopped,o=r._buffer,a=r._infiniteTimeWindow,s=r._timestampProvider,l=r._windowTime;i||(o.push(n),!a&&o.push(s.now()+l)),this._trimBuffer(),e.prototype.next.call(this,n)},t.prototype._subscribe=function(n){this._throwIfClosed(),this._trimBuffer();for(var r=this._innerSubscribe(n),i=this,o=i._infiniteTimeWindow,a=i._buffer,s=a.slice(),l=0;l<s.length&&!n.closed;l+=o?1:2)n.next(s[l]);return this._checkFinalizedStatuses(n),r},t.prototype._trimBuffer=function(){var n=this,r=n._bufferSize,i=n._timestampProvider,o=n._buffer,a=n._infiniteTimeWindow,s=(a?1:2)*r;if(r<1/0&&s<o.length&&o.splice(0,o.length-s),!a){for(var l=i.now(),u=0,c=1;c<o.length&&o[c]<=l;c+=2)u=c;u&&o.splice(0,u+1)}},t}(J),s_=function(e){zt(t,e);function t(n,r){return e.call(this)||this}return t.prototype.schedule=function(n,r){return this},t}(Gi),Cu={setInterval:function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setInterval.apply(void 0,Cr([e,t],zn(n)))},clearInterval:function(e){var t=Cu.delegate;return((t==null?void 0:t.clearInterval)||clearInterval)(e)},delegate:void 0},l_=function(e){zt(t,e);function t(n,r){var i=e.call(this,n,r)||this;return i.scheduler=n,i.work=r,i.pending=!1,i}return t.prototype.schedule=function(n,r){var i;if(r===void 0&&(r=0),this.closed)return this;this.state=n;var o=this.id,a=this.scheduler;return o!=null&&(this.id=this.recycleAsyncId(a,o,r)),this.pending=!0,this.delay=r,this.id=(i=this.id)!==null&&i!==void 0?i:this.requestAsyncId(a,this.id,r),this},t.prototype.requestAsyncId=function(n,r,i){return i===void 0&&(i=0),Cu.setInterval(n.flush.bind(n,this),i)},t.prototype.recycleAsyncId=function(n,r,i){if(i===void 0&&(i=0),i!=null&&this.delay===i&&this.pending===!1)return r;r!=null&&Cu.clearInterval(r)},t.prototype.execute=function(n,r){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var i=this._execute(n,r);if(i)return i;this.pending===!1&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},t.prototype._execute=function(n,r){var i=!1,o;try{this.work(n)}catch(a){i=!0,o=a||new Error("Scheduled action threw falsy error")}if(i)return this.unsubscribe(),o},t.prototype.unsubscribe=function(){if(!this.closed){var n=this,r=n.id,i=n.scheduler,o=i.actions;this.work=this.state=this.scheduler=null,this.pending=!1,ya(o,this),r!=null&&(this.id=this.recycleAsyncId(i,r,null)),this.delay=null,e.prototype.unsubscribe.call(this)}},t}(s_),md=function(){function e(t,n){n===void 0&&(n=e.now),this.schedulerActionCtor=t,this.now=n}return e.prototype.schedule=function(t,n,r){return n===void 0&&(n=0),new this.schedulerActionCtor(this,t).schedule(r,n)},e.now=Mu.now,e}(),u_=function(e){zt(t,e);function t(n,r){r===void 0&&(r=md.now);var i=e.call(this,n,r)||this;return i.actions=[],i._active=!1,i}return t.prototype.flush=function(n){var r=this.actions;if(this._active){r.push(n);return}var i;this._active=!0;do if(i=n.execute(n.state,n.delay))break;while(n=r.shift());if(this._active=!1,i){for(;n=r.shift();)n.unsubscribe();throw i}},t}(md),c_=new u_(l_),va=new de(function(e){return e.complete()});function f_(e){return e&&xe(e.schedule)}function Lu(e){return e[e.length-1]}function h_(e){return xe(Lu(e))?e.pop():void 0}function ku(e){return f_(Lu(e))?e.pop():void 0}function p_(e,t){return typeof Lu(e)=="number"?e.pop():t}var Ru=function(e){return e&&typeof e.length=="number"&&typeof e!="function"};function yd(e){return xe(e==null?void 0:e.then)}function bd(e){return xe(e[Pu])}function xd(e){return Symbol.asyncIterator&&xe(e==null?void 0:e[Symbol.asyncIterator])}function vd(e){return new TypeError("You provided "+(e!==null&&typeof e=="object"?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function d_(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var $d=d_();function _d(e){return xe(e==null?void 0:e[$d])}function Sd(e){return j2(this,arguments,function(){var n,r,i,o;return sd(this,function(a){switch(a.label){case 0:n=e.getReader(),a.label=1;case 1:a.trys.push([1,,9,10]),a.label=2;case 2:return[4,Lr(n.read())];case 3:return r=a.sent(),i=r.value,o=r.done,o?[4,Lr(void 0)]:[3,5];case 4:return[2,a.sent()];case 5:return[4,Lr(i)];case 6:return[4,a.sent()];case 7:return a.sent(),[3,2];case 8:return[3,10];case 9:return n.releaseLock(),[7];case 10:return[2]}})})}function wd(e){return xe(e==null?void 0:e.getReader)}function xt(e){if(e instanceof de)return e;if(e!=null){if(bd(e))return g_(e);if(Ru(e))return m_(e);if(yd(e))return y_(e);if(xd(e))return Td(e);if(_d(e))return b_(e);if(wd(e))return x_(e)}throw vd(e)}function g_(e){return new de(function(t){var n=e[Pu]();if(xe(n.subscribe))return n.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function m_(e){return new de(function(t){for(var n=0;n<e.length&&!t.closed;n++)t.next(e[n]);t.complete()})}function y_(e){return new de(function(t){e.then(function(n){t.closed||(t.next(n),t.complete())},function(n){return t.error(n)}).then(null,pd)})}function b_(e){return new de(function(t){var n,r;try{for(var i=Mr(e),o=i.next();!o.done;o=i.next()){var a=o.value;if(t.next(a),t.closed)return}}catch(s){n={error:s}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}t.complete()})}function Td(e){return new de(function(t){v_(e,t).catch(function(n){return t.error(n)})})}function x_(e){return Td(Sd(e))}function v_(e,t){var n,r,i,o;return H2(this,void 0,void 0,function(){var a,s;return sd(this,function(l){switch(l.label){case 0:l.trys.push([0,5,6,11]),n=q2(e),l.label=1;case 1:return[4,n.next()];case 2:if(r=l.sent(),!!r.done)return[3,4];if(a=r.value,t.next(a),t.closed)return[2];l.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return s=l.sent(),i={error:s},[3,11];case 6:return l.trys.push([6,,9,10]),r&&!r.done&&(o=n.return)?[4,o.call(n)]:[3,8];case 7:l.sent(),l.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return t.complete(),[2]}})})}function $n(e,t,n,r,i){r===void 0&&(r=0),i===void 0&&(i=!1);var o=t.schedule(function(){n(),i?e.add(this.schedule(null,r)):this.unsubscribe()},r);if(e.add(o),!i)return o}function Ad(e,t){return t===void 0&&(t=0),ft(function(n,r){n.subscribe(ot(r,function(i){return $n(r,e,function(){return r.next(i)},t)},function(){return $n(r,e,function(){return r.complete()},t)},function(i){return $n(r,e,function(){return r.error(i)},t)}))})}function Pd(e,t){return t===void 0&&(t=0),ft(function(n,r){r.add(e.schedule(function(){return n.subscribe(r)},t))})}function $_(e,t){return xt(e).pipe(Pd(t),Ad(t))}function __(e,t){return xt(e).pipe(Pd(t),Ad(t))}function S_(e,t){return new de(function(n){var r=0;return t.schedule(function(){r===e.length?n.complete():(n.next(e[r++]),n.closed||this.schedule())})})}function w_(e,t){return new de(function(n){var r;return $n(n,t,function(){r=e[$d](),$n(n,t,function(){var i,o,a;try{i=r.next(),o=i.value,a=i.done}catch(s){n.error(s);return}a?n.complete():n.next(o)},0,!0)}),function(){return xe(r==null?void 0:r.return)&&r.return()}})}function Dd(e,t){if(!e)throw new Error("Iterable cannot be null");return new de(function(n){$n(n,t,function(){var r=e[Symbol.asyncIterator]();$n(n,t,function(){r.next().then(function(i){i.done?n.complete():n.next(i.value)})},0,!0)})})}function T_(e,t){return Dd(Sd(e),t)}function A_(e,t){if(e!=null){if(bd(e))return $_(e,t);if(Ru(e))return S_(e,t);if(yd(e))return __(e,t);if(xd(e))return Dd(e,t);if(_d(e))return w_(e,t);if(wd(e))return T_(e,t)}throw vd(e)}function $a(e,t){return t?A_(e,t):xt(e)}function _a(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=ku(e);return $a(e,n)}var Md=_u(function(e){return function(){e(this),this.name="EmptyError",this.message="no elements in sequence"}});function R(e,t){return ft(function(n,r){var i=0;n.subscribe(ot(r,function(o){r.next(e.call(t,o,i++))}))})}var P_=Array.isArray;function D_(e,t){return P_(t)?e.apply(void 0,Cr([],zn(t))):e(t)}function Cd(e){return R(function(t){return D_(e,t)})}var M_=Array.isArray,C_=Object.getPrototypeOf,L_=Object.prototype,k_=Object.keys;function R_(e){if(e.length===1){var t=e[0];if(M_(t))return{args:t,keys:null};if(E_(t)){var n=k_(t);return{args:n.map(function(r){return t[r]}),keys:n}}}return{args:e,keys:null}}function E_(e){return e&&typeof e=="object"&&C_(e)===L_}function I_(e,t){return e.reduce(function(n,r,i){return n[r]=t[i],n},{})}function Y(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=ku(e),r=h_(e),i=R_(e),o=i.args,a=i.keys;if(o.length===0)return $a([],n);var s=new de(B_(o,n,a?function(l){return I_(a,l)}:kr));return r?s.pipe(Cd(r)):s}function B_(e,t,n){return n===void 0&&(n=kr),function(r){Ld(t,function(){for(var i=e.length,o=new Array(i),a=i,s=i,l=function(c){Ld(t,function(){var f=$a(e[c],t),h=!1;f.subscribe(ot(r,function(p){o[c]=p,h||(h=!0,s--),s||r.next(n(o.slice()))},function(){--a||r.complete()}))},r)},u=0;u<i;u++)l(u)},r)}}function Ld(e,t,n){e?$n(n,e,t):t()}function N_(e,t,n,r,i,o,a,s){var l=[],u=0,c=0,f=!1,h=function(){f&&!l.length&&!u&&t.complete()},p=function(m){return u<r?d(m):l.push(m)},d=function(m){u++;var g=!1;xt(n(m,c++)).subscribe(ot(t,function(y){t.next(y)},function(){g=!0},void 0,function(){if(g)try{u--;for(var y=function(){var b=l.shift();a||d(b)};l.length&&u<r;)y();h()}catch(b){t.error(b)}}))};return e.subscribe(ot(t,p,function(){f=!0,h()})),function(){}}function Eu(e,t,n){return n===void 0&&(n=1/0),xe(t)?Eu(function(r,i){return R(function(o,a){return t(r,o,i,a)})(xt(e(r,i)))},n):(typeof t=="number"&&(n=t),ft(function(r,i){return N_(r,i,e,n)}))}function F_(e){return e===void 0&&(e=1/0),Eu(kr,e)}function z_(e){return new de(function(t){xt(e()).subscribe(t)})}var O_=["addListener","removeListener"],G_=["addEventListener","removeEventListener"],Y_=["on","off"];function Iu(e,t,n,r){if(xe(n)&&(r=n,n=void 0),r)return Iu(e,t,n).pipe(Cd(r));var i=zn(V_(e)?G_.map(function(s){return function(l){return e[s](t,l,n)}}):W_(e)?O_.map(kd(e,t)):X_(e)?Y_.map(kd(e,t)):[],2),o=i[0],a=i[1];if(!o&&Ru(e))return Eu(function(s){return Iu(s,t,n)})(xt(e));if(!o)throw new TypeError("Invalid event target");return new de(function(s){var l=function(){for(var u=[],c=0;c<arguments.length;c++)u[c]=arguments[c];return s.next(1<u.length?u:u[0])};return o(l),function(){return a(l)}})}function kd(e,t){return function(n){return function(r){return e[n](t,r)}}}function W_(e){return xe(e.addListener)&&xe(e.removeListener)}function X_(e){return xe(e.on)&&xe(e.off)}function V_(e){return xe(e.addEventListener)&&xe(e.removeEventListener)}function Wi(e,t,n){return z_(function(){return e()?t:n})}function Bu(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=ku(e),r=p_(e,1/0),i=e;return i.length?i.length===1?xt(i[0]):F_(r)($a(i,n)):va}function Rr(e,t){return ft(function(n,r){var i=0;n.subscribe(ot(r,function(o){return e.call(t,o,i++)&&r.next(o)}))})}function U_(e,t){return t===void 0&&(t=c_),ft(function(n,r){var i=null,o=null,a=null,s=function(){if(i){i.unsubscribe(),i=null;var u=o;o=null,r.next(u)}};function l(){var u=a+e,c=t.now();if(c<u){i=this.schedule(void 0,u-c),r.add(i);return}s()}n.subscribe(ot(r,function(u){o=u,a=t.now(),i||(i=t.schedule(l,e),r.add(i))},function(){s(),r.complete()},void 0,function(){o=i=null}))})}function H_(e){return ft(function(t,n){var r=!1;t.subscribe(ot(n,function(i){r=!0,n.next(i)},function(){r||n.next(e),n.complete()}))})}function j_(e){return e<=0?function(){return va}:ft(function(t,n){var r=0;t.subscribe(ot(n,function(i){++r<=e&&(n.next(i),e<=r&&n.complete())}))})}function ee(e,t){return t===void 0&&(t=kr),e=e??q_,ft(function(n,r){var i,o=!0;n.subscribe(ot(r,function(a){var s=t(a);(o||!e(i,s))&&(o=!1,i=s,r.next(a))}))})}function q_(e,t){return e===t}function Z_(e){return e===void 0&&(e=K_),ft(function(t,n){var r=!1;t.subscribe(ot(n,function(i){r=!0,n.next(i)},function(){return r?n.complete():n.error(e())}))})}function K_(){return new Md}function Xi(e,t){var n=arguments.length>=2;return function(r){return r.pipe(kr,j_(1),n?H_(t):Z_(function(){return new Md}))}}function Q_(e){e===void 0&&(e={});var t=e.connector,n=t===void 0?function(){return new J}:t,r=e.resetOnError,i=r===void 0?!0:r,o=e.resetOnComplete,a=o===void 0?!0:o,s=e.resetOnRefCountZero,l=s===void 0?!0:s;return function(u){var c,f,h,p=0,d=!1,m=!1,g=function(){f==null||f.unsubscribe(),f=void 0},y=function(){g(),c=h=void 0,d=m=!1},b=function(){var v=c;y(),v==null||v.unsubscribe()};return ft(function(v,x){p++,!m&&!d&&g();var _=h=h??n();x.add(function(){p--,p===0&&!m&&!d&&(f=Nu(b,l))}),_.subscribe(x),!c&&p>0&&(c=new Yi({next:function(A){return _.next(A)},error:function(A){m=!0,g(),f=Nu(y,i,A),_.error(A)},complete:function(){d=!0,g(),f=Nu(y,a),_.complete()}}),xt(v).subscribe(c))})(u)}}function Nu(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];if(t===!0){e();return}if(t!==!1){var i=new Yi({next:function(){i.unsubscribe(),e()}});return xt(t.apply(void 0,Cr([],zn(n)))).subscribe(i)}}function pe(e,t,n){var r,i=!1;return r=e,Q_({connector:function(){return new a_(r,t,n)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:i})}function G(e,t){return ft(function(n,r){var i=null,o=0,a=!1,s=function(){return a&&!i&&r.complete()};n.subscribe(ot(r,function(l){i==null||i.unsubscribe();var u=0,c=o++;xt(e(l,c)).subscribe(i=ot(r,function(f){return r.next(t?t(l,f,c,u++):f)},function(){i=null,s()}))},function(){a=!0,s()}))})}function L(e){return ft(function(t,n){xt(e).subscribe(ot(n,function(){return n.complete()},wu)),!n.closed&&t.subscribe(n)})}const ht={position:"left",scaleDomain:["auto","auto"],scaleRange:[0,.9],label:""},J_={position:"bottom",scaleDomain:[0,"max"],scalePadding:.5,label:""},eS={gap:120,rowAmount:1,columnAmount:1},tS={seriesDirection:"row",rowLabels:[],columnLabels:[],valueAxis:{...ht},groupAxis:{...J_},separateSeries:!1},nS={type:"grid",visibleFilter:(e,t)=>!0,...tS,container:{...eS}};nS.visibleFilter.toString=()=>"(datum, context) => true";function Er(e){return Object.prototype.toString.call(e)==="[object Object]"}function rS(e){return Object.prototype.toString.call(e)==="[object Function]"}function Fu(e,t){if(Er(e)===!1||Er(t)===!1)return Object.assign({},t);const n=(r,i)=>{const o=Object.assign({},i);for(let a of Object.keys(r)){if(!(a in i))continue;let s;Er(r[a])&&Er(i[a])?(s=n(r[a],i[a]),o[a]=s):o[a]=r[a]}return o};return n(e,t)}function iS(e,t){const n={string:i=>typeof i=="string",number:i=>typeof i=="number",boolean:i=>typeof i=="boolean",object:i=>Er(i),"object[]":i=>Array.isArray(i)&&i.every(o=>Er(o)),"string[]":i=>Array.isArray(i)&&i.every(o=>typeof o=="string"),"number[]":i=>Array.isArray(i)&&i.every(o=>typeof o=="number"),Function:i=>rS(i),null:i=>i===null,undefined:i=>i===void 0},r={ColorType:i=>i==="none"||i==="label"||i==="primary"||i==="secondary"||i==="white"||i==="background"};return Object.keys(e).find(i=>{if(t[i]){const o=t[i],a=e[i];if(o.toBeTypes){if(o.toBeTypes.some(s=>n[s](a))===!1)return!0}else if(o.toBe){const{toBe:s,test:l}=o;if(l(a)===!1)return!0}else if(o.toBeOption){const s=o.toBeOption;if(r[s](a)===!1)return!0}}return!1})}function oS(e,t){const n=iS(e,t);if(n){const r=t[n],i=r.toBeTypes?r.toBeTypes.join(" | "):r.toBe?r.toBe:r.toBeOption?r.toBeOption:"";return{status:"error",columnName:n,expectToBe:i}}else return{status:"success",columnName:"",expectToBe:""}}function Sa(e,t){return e==null||t==null?NaN:e<t?-1:e>t?1:e>=t?0:NaN}function aS(e,t){return e==null||t==null?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function Rd(e){let t,n,r;e.length!==2?(t=Sa,n=(s,l)=>Sa(e(s),l),r=(s,l)=>e(s)-l):(t=e===Sa||e===aS?e:sS,n=e,r=e);function i(s,l,u=0,c=s.length){if(u<c){if(t(l,l)!==0)return c;do{const f=u+c>>>1;n(s[f],l)<0?u=f+1:c=f}while(u<c)}return u}function o(s,l,u=0,c=s.length){if(u<c){if(t(l,l)!==0)return c;do{const f=u+c>>>1;n(s[f],l)<=0?u=f+1:c=f}while(u<c)}return u}function a(s,l,u=0,c=s.length){const f=i(s,l,u,c-1);return f>u&&r(s[f-1],l)>-r(s[f],l)?f-1:f}return{left:i,center:a,right:o}}function sS(){return 0}function lS(e){return e===null?NaN:+e}const uS=Rd(Sa),Ed=uS.right;Rd(lS).center;const cS=Math.sqrt(50),fS=Math.sqrt(10),hS=Math.sqrt(2);function wa(e,t,n){const r=(t-e)/Math.max(0,n),i=Math.floor(Math.log10(r)),o=r/Math.pow(10,i),a=o>=cS?10:o>=fS?5:o>=hS?2:1;let s,l,u;return i<0?(u=Math.pow(10,-i)/a,s=Math.round(e*u),l=Math.round(t*u),s/u<e&&++s,l/u>t&&--l,u=-u):(u=Math.pow(10,i)*a,s=Math.round(e/u),l=Math.round(t/u),s*u<e&&++s,l*u>t&&--l),l<s&&.5<=n&&n<2?wa(e,t,n*2):[s,l,u]}function pS(e,t,n){if(t=+t,e=+e,n=+n,!(n>0))return[];if(e===t)return[e];const r=t<e,[i,o,a]=r?wa(t,e,n):wa(e,t,n);if(!(o>=i))return[];const s=o-i+1,l=new Array(s);if(r)if(a<0)for(let u=0;u<s;++u)l[u]=(o-u)/-a;else for(let u=0;u<s;++u)l[u]=(o-u)*a;else if(a<0)for(let u=0;u<s;++u)l[u]=(i+u)/-a;else for(let u=0;u<s;++u)l[u]=(i+u)*a;return l}function zu(e,t,n){return t=+t,e=+e,n=+n,wa(e,t,n)[2]}function dS(e,t,n){t=+t,e=+e,n=+n;const r=t<e,i=r?zu(t,e,n):zu(e,t,n);return(r?-1:1)*(i<0?1/-i:i)}var gS={value:()=>{}};function Id(){for(var e=0,t=arguments.length,n={},r;e<t;++e){if(!(r=arguments[e]+"")||r in n||/[\s.]/.test(r))throw new Error("illegal type: "+r);n[r]=[]}return new Ta(n)}function Ta(e){this._=e}function mS(e,t){return e.trim().split(/^|\s+/).map(function(n){var r="",i=n.indexOf(".");if(i>=0&&(r=n.slice(i+1),n=n.slice(0,i)),n&&!t.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:r}})}Ta.prototype=Id.prototype={constructor:Ta,on:function(e,t){var n=this._,r=mS(e+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(e=r[o]).type)&&(i=yS(n[i],e.name)))return i;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++o<a;)if(i=(e=r[o]).type)n[i]=Bd(n[i],e.name,t);else if(t==null)for(i in n)n[i]=Bd(n[i],e.name,null);return this},copy:function(){var e={},t=this._;for(var n in t)e[n]=t[n].slice();return new Ta(e)},call:function(e,t){if((i=arguments.length-2)>0)for(var n=new Array(i),r=0,i,o;r<i;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(o=this._[e],r=0,i=o.length;r<i;++r)o[r].value.apply(t,n)},apply:function(e,t,n){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var r=this._[e],i=0,o=r.length;i<o;++i)r[i].value.apply(t,n)}};function yS(e,t){for(var n=0,r=e.length,i;n<r;++n)if((i=e[n]).name===t)return i.value}function Bd(e,t,n){for(var r=0,i=e.length;r<i;++r)if(e[r].name===t){e[r]=gS,e=e.slice(0,r).concat(e.slice(r+1));break}return n!=null&&e.push({name:t,value:n}),e}var Ou="http://www.w3.org/1999/xhtml";const Nd={svg:"http://www.w3.org/2000/svg",xhtml:Ou,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Aa(e){var t=e+="",n=t.indexOf(":");return n>=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),Nd.hasOwnProperty(t)?{space:Nd[t],local:e}:e}function bS(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===Ou&&t.documentElement.namespaceURI===Ou?t.createElement(e):t.createElementNS(n,e)}}function xS(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function Fd(e){var t=Aa(e);return(t.local?xS:bS)(t)}function vS(){}function Gu(e){return e==null?vS:function(){return this.querySelector(e)}}function $S(e){typeof e!="function"&&(e=Gu(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=new Array(a),l,u,c=0;c<a;++c)(l=o[c])&&(u=e.call(l,l.__data__,c,o))&&("__data__"in l&&(u.__data__=l.__data__),s[c]=u);return new Dt(r,this._parents)}function _S(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function SS(){return[]}function zd(e){return e==null?SS:function(){return this.querySelectorAll(e)}}function wS(e){return function(){return _S(e.apply(this,arguments))}}function TS(e){typeof e=="function"?e=wS(e):e=zd(e);for(var t=this._groups,n=t.length,r=[],i=[],o=0;o<n;++o)for(var a=t[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&(r.push(e.call(l,l.__data__,u,a)),i.push(l));return new Dt(r,i)}function Od(e){return function(){return this.matches(e)}}function Gd(e){return function(t){return t.matches(e)}}var AS=Array.prototype.find;function PS(e){return function(){return AS.call(this.children,e)}}function DS(){return this.firstElementChild}function MS(e){return this.select(e==null?DS:PS(typeof e=="function"?e:Gd(e)))}var CS=Array.prototype.filter;function LS(){return Array.from(this.children)}function kS(e){return function(){return CS.call(this.children,e)}}function RS(e){return this.selectAll(e==null?LS:kS(typeof e=="function"?e:Gd(e)))}function ES(e){typeof e!="function"&&(e=Od(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new Dt(r,this._parents)}function Yd(e){return new Array(e.length)}function IS(){return new Dt(this._enter||this._groups.map(Yd),this._parents)}function Pa(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}Pa.prototype={constructor:Pa,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}};function BS(e){return function(){return e}}function NS(e,t,n,r,i,o){for(var a=0,s,l=t.length,u=o.length;a<u;++a)(s=t[a])?(s.__data__=o[a],r[a]=s):n[a]=new Pa(e,o[a]);for(;a<l;++a)(s=t[a])&&(i[a]=s)}function FS(e,t,n,r,i,o,a){var s,l,u=new Map,c=t.length,f=o.length,h=new Array(c),p;for(s=0;s<c;++s)(l=t[s])&&(h[s]=p=a.call(l,l.__data__,s,t)+"",u.has(p)?i[s]=l:u.set(p,l));for(s=0;s<f;++s)p=a.call(e,o[s],s,o)+"",(l=u.get(p))?(r[s]=l,l.__data__=o[s],u.delete(p)):n[s]=new Pa(e,o[s]);for(s=0;s<c;++s)(l=t[s])&&u.get(h[s])===l&&(i[s]=l)}function zS(e){return e.__data__}function OS(e,t){if(!arguments.length)return Array.from(this,zS);var n=t?FS:NS,r=this._parents,i=this._groups;typeof e!="function"&&(e=BS(e));for(var o=i.length,a=new Array(o),s=new Array(o),l=new Array(o),u=0;u<o;++u){var c=r[u],f=i[u],h=f.length,p=GS(e.call(c,c&&c.__data__,u,r)),d=p.length,m=s[u]=new Array(d),g=a[u]=new Array(d),y=l[u]=new Array(h);n(c,f,m,g,y,p,t);for(var b=0,v=0,x,_;b<d;++b)if(x=m[b]){for(b>=v&&(v=b+1);!(_=g[v])&&++v<d;);x._next=_||null}}return a=new Dt(a,r),a._enter=s,a._exit=l,a}function GS(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function YS(){return new Dt(this._exit||this._groups.map(Yd),this._parents)}function WS(e,t,n){var r=this.enter(),i=this,o=this.exit();return typeof e=="function"?(r=e(r),r&&(r=r.selection())):r=r.append(e+""),t!=null&&(i=t(i),i&&(i=i.selection())),n==null?o.remove():n(o),r&&i?r.merge(i).order():i}function XS(e){for(var t=e.selection?e.selection():e,n=this._groups,r=t._groups,i=n.length,o=r.length,a=Math.min(i,o),s=new Array(i),l=0;l<a;++l)for(var u=n[l],c=r[l],f=u.length,h=s[l]=new Array(f),p,d=0;d<f;++d)(p=u[d]||c[d])&&(h[d]=p);for(;l<i;++l)s[l]=n[l];return new Dt(s,this._parents)}function VS(){for(var e=this._groups,t=-1,n=e.length;++t<n;)for(var r=e[t],i=r.length-1,o=r[i],a;--i>=0;)(a=r[i])&&(o&&a.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(a,o),o=a);return this}function US(e){e||(e=HS);function t(f,h){return f&&h?e(f.__data__,h.__data__):!f-!h}for(var n=this._groups,r=n.length,i=new Array(r),o=0;o<r;++o){for(var a=n[o],s=a.length,l=i[o]=new Array(s),u,c=0;c<s;++c)(u=a[c])&&(l[c]=u);l.sort(t)}return new Dt(i,this._parents).order()}function HS(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function jS(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function qS(){return Array.from(this)}function ZS(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null}function KS(){let e=0;for(const t of this)++e;return e}function QS(){return!this.node()}function JS(e){for(var t=this._groups,n=0,r=t.length;n<r;++n)for(var i=t[n],o=0,a=i.length,s;o<a;++o)(s=i[o])&&e.call(s,s.__data__,o,i);return this}function ew(e){return function(){this.removeAttribute(e)}}function tw(e){return function(){this.removeAttributeNS(e.space,e.local)}}function nw(e,t){return function(){this.setAttribute(e,t)}}function rw(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function iw(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}}function ow(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,n)}}function aw(e,t){var n=Aa(e);if(arguments.length<2){var r=this.node();return n.local?r.getAttributeNS(n.space,n.local):r.getAttribute(n)}return this.each((t==null?n.local?tw:ew:typeof t=="function"?n.local?ow:iw:n.local?rw:nw)(n,t))}function Wd(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function sw(e){return function(){this.style.removeProperty(e)}}function lw(e,t,n){return function(){this.style.setProperty(e,t,n)}}function uw(e,t,n){return function(){var r=t.apply(this,arguments);r==null?this.style.removeProperty(e):this.style.setProperty(e,r,n)}}function cw(e,t,n){return arguments.length>1?this.each((t==null?sw:typeof t=="function"?uw:lw)(e,t,n??"")):Ir(this.node(),e)}function Ir(e,t){return e.style.getPropertyValue(t)||Wd(e).getComputedStyle(e,null).getPropertyValue(t)}function fw(e){return function(){delete this[e]}}function hw(e,t){return function(){this[e]=t}}function pw(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function dw(e,t){return arguments.length>1?this.each((t==null?fw:typeof t=="function"?pw:hw)(e,t)):this.node()[e]}function Xd(e){return e.trim().split(/^|\s+/)}function Yu(e){return e.classList||new Vd(e)}function Vd(e){this._node=e,this._names=Xd(e.getAttribute("class")||"")}Vd.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function Ud(e,t){for(var n=Yu(e),r=-1,i=t.length;++r<i;)n.add(t[r])}function Hd(e,t){for(var n=Yu(e),r=-1,i=t.length;++r<i;)n.remove(t[r])}function gw(e){return function(){Ud(this,e)}}function mw(e){return function(){Hd(this,e)}}function yw(e,t){return function(){(t.apply(this,arguments)?Ud:Hd)(this,e)}}function bw(e,t){var n=Xd(e+"");if(arguments.length<2){for(var r=Yu(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof t=="function"?yw:t?gw:mw)(n,t))}function xw(){this.textContent=""}function vw(e){return function(){this.textContent=e}}function $w(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function _w(e){return arguments.length?this.each(e==null?xw:(typeof e=="function"?$w:vw)(e)):this.node().textContent}function Sw(){this.innerHTML=""}function ww(e){return function(){this.innerHTML=e}}function Tw(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function Aw(e){return arguments.length?this.each(e==null?Sw:(typeof e=="function"?Tw:ww)(e)):this.node().innerHTML}function Pw(){this.nextSibling&&this.parentNode.appendChild(this)}function Dw(){return this.each(Pw)}function Mw(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function Cw(){return this.each(Mw)}function Lw(e){var t=typeof e=="function"?e:Fd(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function kw(){return null}function Rw(e,t){var n=typeof e=="function"?e:Fd(e),r=t==null?kw:typeof t=="function"?t:Gu(t);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function Ew(){var e=this.parentNode;e&&e.removeChild(this)}function Iw(){return this.each(Ew)}function Bw(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function Nw(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function Fw(e){return this.select(e?Nw:Bw)}function zw(e){return arguments.length?this.property("__data__",e):this.node().__data__}function Ow(e){return function(t){e.call(this,t,this.__data__)}}function Gw(e){return e.trim().split(/^|\s+/).map(function(t){var n="",r=t.indexOf(".");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{type:t,name:n}})}function Yw(e){return function(){var t=this.__on;if(t){for(var n=0,r=-1,i=t.length,o;n<i;++n)o=t[n],(!e.type||o.type===e.type)&&o.name===e.name?this.removeEventListener(o.type,o.listener,o.options):t[++r]=o;++r?t.length=r:delete this.__on}}}function Ww(e,t,n){return function(){var r=this.__on,i,o=Ow(t);if(r){for(var a=0,s=r.length;a<s;++a)if((i=r[a]).type===e.type&&i.name===e.name){this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=o,i.options=n),i.value=t;return}}this.addEventListener(e.type,o,n),i={type:e.type,name:e.name,value:t,listener:o,options:n},r?r.push(i):this.__on=[i]}}function Xw(e,t,n){var r=Gw(e+""),i,o=r.length,a;if(arguments.length<2){var s=this.node().__on;if(s){for(var l=0,u=s.length,c;l<u;++l)for(i=0,c=s[l];i<o;++i)if((a=r[i]).type===c.type&&a.name===c.name)return c.value}return}for(s=t?Ww:Yw,i=0;i<o;++i)this.each(s(r[i],t,n));return this}function jd(e,t,n){var r=Wd(e),i=r.CustomEvent;typeof i=="function"?i=new i(t,n):(i=r.document.createEvent("Event"),n?(i.initEvent(t,n.bubbles,n.cancelable),i.detail=n.detail):i.initEvent(t,!1,!1)),e.dispatchEvent(i)}function Vw(e,t){return function(){return jd(this,e,t)}}function Uw(e,t){return function(){return jd(this,e,t.apply(this,arguments))}}function Hw(e,t){return this.each((typeof t=="function"?Uw:Vw)(e,t))}function*jw(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length,a;i<o;++i)(a=r[i])&&(yield a)}var qw=[null];function Dt(e,t){this._groups=e,this._parents=t}function Vi(){return new Dt([[document.documentElement]],qw)}function Zw(){return this}Dt.prototype=Vi.prototype={constructor:Dt,select:$S,selectAll:TS,selectChild:MS,selectChildren:RS,filter:ES,data:OS,enter:IS,exit:YS,join:WS,merge:XS,selection:Zw,order:VS,sort:US,call:jS,nodes:qS,node:ZS,size:KS,empty:QS,each:JS,attr:aw,style:cw,property:dw,classed:bw,text:_w,html:Aw,raise:Dw,lower:Cw,append:Lw,insert:Rw,remove:Iw,clone:Fw,datum:zw,on:Xw,dispatch:Hw,[Symbol.iterator]:jw};function Wu(e,t,n){e.prototype=t.prototype=n,n.constructor=e}function qd(e,t){var n=Object.create(e.prototype);for(var r in t)n[r]=t[r];return n}function Ui(){}var Hi=.7,Da=1/Hi,Br="\\s*([+-]?\\d+)\\s*",ji="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ot="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Kw=/^#([0-9a-f]{3,8})$/,Qw=new RegExp(`^rgb\\(${Br},${Br},${Br}\\)$`),Jw=new RegExp(`^rgb\\(${Ot},${Ot},${Ot}\\)$`),eT=new RegExp(`^rgba\\(${Br},${Br},${Br},${ji}\\)$`),tT=new RegExp(`^rgba\\(${Ot},${Ot},${Ot},${ji}\\)$`),nT=new RegExp(`^hsl\\(${ji},${Ot},${Ot}\\)$`),rT=new RegExp(`^hsla\\(${ji},${Ot},${Ot},${ji}\\)$`),Zd={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Wu(Ui,On,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:Kd,formatHex:Kd,formatHex8:iT,formatHsl:oT,formatRgb:Qd,toString:Qd});function Kd(){return this.rgb().formatHex()}function iT(){return this.rgb().formatHex8()}function oT(){return rg(this).formatHsl()}function Qd(){return this.rgb().formatRgb()}function On(e){var t,n;return e=(e+"").trim().toLowerCase(),(t=Kw.exec(e))?(n=t[1].length,t=parseInt(t[1],16),n===6?Jd(t):n===3?new at(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?Ma(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?Ma(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=Qw.exec(e))?new at(t[1],t[2],t[3],1):(t=Jw.exec(e))?new at(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=eT.exec(e))?Ma(t[1],t[2],t[3],t[4]):(t=tT.exec(e))?Ma(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=nT.exec(e))?ng(t[1],t[2]/100,t[3]/100,1):(t=rT.exec(e))?ng(t[1],t[2]/100,t[3]/100,t[4]):Zd.hasOwnProperty(e)?Jd(Zd[e]):e==="transparent"?new at(NaN,NaN,NaN,0):null}function Jd(e){return new at(e>>16&255,e>>8&255,e&255,1)}function Ma(e,t,n,r){return r<=0&&(e=t=n=NaN),new at(e,t,n,r)}function aT(e){return e instanceof Ui||(e=On(e)),e?(e=e.rgb(),new at(e.r,e.g,e.b,e.opacity)):new at}function Xu(e,t,n,r){return arguments.length===1?aT(e):new at(e,t,n,r??1)}function at(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}Wu(at,Xu,qd(Ui,{brighter(e){return e=e==null?Da:Math.pow(Da,e),new at(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?Hi:Math.pow(Hi,e),new at(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new at(Gn(this.r),Gn(this.g),Gn(this.b),Ca(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:eg,formatHex:eg,formatHex8:sT,formatRgb:tg,toString:tg}));function eg(){return`#${Yn(this.r)}${Yn(this.g)}${Yn(this.b)}`}function sT(){return`#${Yn(this.r)}${Yn(this.g)}${Yn(this.b)}${Yn((isNaN(this.opacity)?1:this.opacity)*255)}`}function tg(){const e=Ca(this.opacity);return`${e===1?"rgb(":"rgba("}${Gn(this.r)}, ${Gn(this.g)}, ${Gn(this.b)}${e===1?")":`, ${e})`}`}function Ca(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Gn(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Yn(e){return e=Gn(e),(e<16?"0":"")+e.toString(16)}function ng(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new Mt(e,t,n,r)}function rg(e){if(e instanceof Mt)return new Mt(e.h,e.s,e.l,e.opacity);if(e instanceof Ui||(e=On(e)),!e)return new Mt;if(e instanceof Mt)return e;e=e.rgb();var t=e.r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),o=Math.max(t,n,r),a=NaN,s=o-i,l=(o+i)/2;return s?(t===o?a=(n-r)/s+(n<r)*6:n===o?a=(r-t)/s+2:a=(t-n)/s+4,s/=l<.5?o+i:2-o-i,a*=60):s=l>0&&l<1?0:a,new Mt(a,s,l,e.opacity)}function lT(e,t,n,r){return arguments.length===1?rg(e):new Mt(e,t,n,r??1)}function Mt(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}Wu(Mt,lT,qd(Ui,{brighter(e){return e=e==null?Da:Math.pow(Da,e),new Mt(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?Hi:Math.pow(Hi,e),new Mt(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,i=2*n-r;return new at(Vu(e>=240?e-240:e+120,i,r),Vu(e,i,r),Vu(e<120?e+240:e-120,i,r),this.opacity)},clamp(){return new Mt(ig(this.h),La(this.s),La(this.l),Ca(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=Ca(this.opacity);return`${e===1?"hsl(":"hsla("}${ig(this.h)}, ${La(this.s)*100}%, ${La(this.l)*100}%${e===1?")":`, ${e})`}`}}));function ig(e){return e=(e||0)%360,e<0?e+360:e}function La(e){return Math.max(0,Math.min(1,e||0))}function Vu(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}const Uu=e=>()=>e;function uT(e,t){return function(n){return e+n*t}}function cT(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}function fT(e){return(e=+e)==1?og:function(t,n){return n-t?cT(t,n,e):Uu(isNaN(t)?n:t)}}function og(e,t){var n=t-e;return n?uT(e,n):Uu(isNaN(e)?t:e)}const ka=function e(t){var n=fT(t);function r(i,o){var a=n((i=Xu(i)).r,(o=Xu(o)).r),s=n(i.g,o.g),l=n(i.b,o.b),u=og(i.opacity,o.opacity);return function(c){return i.r=a(c),i.g=s(c),i.b=l(c),i.opacity=u(c),i+""}}return r.gamma=e,r}(1);function hT(e,t){t||(t=[]);var n=e?Math.min(t.length,e.length):0,r=t.slice(),i;return function(o){for(i=0;i<n;++i)r[i]=e[i]*(1-o)+t[i]*o;return r}}function pT(e){return ArrayBuffer.isView(e)&&!(e instanceof DataView)}function dT(e,t){var n=t?t.length:0,r=e?Math.min(n,e.length):0,i=new Array(r),o=new Array(n),a;for(a=0;a<r;++a)i[a]=qu(e[a],t[a]);for(;a<n;++a)o[a]=t[a];return function(s){for(a=0;a<r;++a)o[a]=i[a](s);return o}}function gT(e,t){var n=new Date;return e=+e,t=+t,function(r){return n.setTime(e*(1-r)+t*r),n}}function Ct(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}function mT(e,t){var n={},r={},i;(e===null||typeof e!="object")&&(e={}),(t===null||typeof t!="object")&&(t={});for(i in t)i in e?n[i]=qu(e[i],t[i]):r[i]=t[i];return function(o){for(i in n)r[i]=n[i](o);return r}}var Hu=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,ju=new RegExp(Hu.source,"g");function yT(e){return function(){return e}}function bT(e){return function(t){return e(t)+""}}function ag(e,t){var n=Hu.lastIndex=ju.lastIndex=0,r,i,o,a=-1,s=[],l=[];for(e=e+"",t=t+"";(r=Hu.exec(e))&&(i=ju.exec(t));)(o=i.index)>n&&(o=t.slice(n,o),s[a]?s[a]+=o:s[++a]=o),(r=r[0])===(i=i[0])?s[a]?s[a]+=i:s[++a]=i:(s[++a]=null,l.push({i:a,x:Ct(r,i)})),n=ju.lastIndex;return n<t.length&&(o=t.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?l[0]?bT(l[0].x):yT(t):(t=l.length,function(u){for(var c=0,f;c<t;++c)s[(f=l[c]).i]=f.x(u);return s.join("")})}function qu(e,t){var n=typeof t,r;return t==null||n==="boolean"?Uu(t):(n==="number"?Ct:n==="string"?(r=On(t))?(t=r,ka):ag:t instanceof On?ka:t instanceof Date?gT:pT(t)?hT:Array.isArray(t)?dT:typeof t.valueOf!="function"&&typeof t.toString!="function"||isNaN(t)?mT:Ct)(e,t)}function xT(e,t){return e=+e,t=+t,function(n){return Math.round(e*(1-n)+t*n)}}var sg=180/Math.PI,lg={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function ug(e,t,n,r,i,o){var a,s,l;return(a=Math.sqrt(e*e+t*t))&&(e/=a,t/=a),(l=e*n+t*r)&&(n-=e*l,r-=t*l),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,l/=s),e*r<t*n&&(e=-e,t=-t,l=-l,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(t,e)*sg,skewX:Math.atan(l)*sg,scaleX:a,scaleY:s}}var Ra;function vT(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?lg:ug(t.a,t.b,t.c,t.d,t.e,t.f)}function $T(e){return e==null||(Ra||(Ra=document.createElementNS("http://www.w3.org/2000/svg","g")),Ra.setAttribute("transform",e),!(e=Ra.transform.baseVal.consolidate()))?lg:(e=e.matrix,ug(e.a,e.b,e.c,e.d,e.e,e.f))}function cg(e,t,n,r){function i(u){return u.length?u.pop()+" ":""}function o(u,c,f,h,p,d){if(u!==f||c!==h){var m=p.push("translate(",null,t,null,n);d.push({i:m-4,x:Ct(u,f)},{i:m-2,x:Ct(c,h)})}else(f||h)&&p.push("translate("+f+t+h+n)}function a(u,c,f,h){u!==c?(u-c>180?c+=360:c-u>180&&(u+=360),h.push({i:f.push(i(f)+"rotate(",null,r)-2,x:Ct(u,c)})):c&&f.push(i(f)+"rotate("+c+r)}function s(u,c,f,h){u!==c?h.push({i:f.push(i(f)+"skewX(",null,r)-2,x:Ct(u,c)}):c&&f.push(i(f)+"skewX("+c+r)}function l(u,c,f,h,p,d){if(u!==f||c!==h){var m=p.push(i(p)+"scale(",null,",",null,")");d.push({i:m-4,x:Ct(u,f)},{i:m-2,x:Ct(c,h)})}else(f!==1||h!==1)&&p.push(i(p)+"scale("+f+","+h+")")}return function(u,c){var f=[],h=[];return u=e(u),c=e(c),o(u.translateX,u.translateY,c.translateX,c.translateY,f,h),a(u.rotate,c.rotate,f,h),s(u.skewX,c.skewX,f,h),l(u.scaleX,u.scaleY,c.scaleX,c.scaleY,f,h),u=c=null,function(p){for(var d=-1,m=h.length,g;++d<m;)f[(g=h[d]).i]=g.x(p);return f.join("")}}}var _T=cg(vT,"px, ","px)","deg)"),ST=cg($T,", ",")",")"),Nr=0,qi=0,Zi=0,fg=1e3,Ea,Ki,Ia=0,Wn=0,Ba=0,Qi=typeof performance=="object"&&performance.now?performance:Date,hg=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function Zu(){return Wn||(hg(wT),Wn=Qi.now()+Ba)}function wT(){Wn=0}function Na(){this._call=this._time=this._next=null}Na.prototype=pg.prototype={constructor:Na,restart:function(e,t,n){if(typeof e!="function")throw new TypeError("callback is not a function");n=(n==null?Zu():+n)+(t==null?0:+t),!this._next&&Ki!==this&&(Ki?Ki._next=this:Ea=this,Ki=this),this._call=e,this._time=n,Ku()},stop:function(){this._call&&(this._call=null,this._time=1/0,Ku())}};function pg(e,t,n){var r=new Na;return r.restart(e,t,n),r}function TT(){Zu(),++Nr;for(var e=Ea,t;e;)(t=Wn-e._time)>=0&&e._call.call(void 0,t),e=e._next;--Nr}function dg(){Wn=(Ia=Qi.now())+Ba,Nr=qi=0;try{TT()}finally{Nr=0,PT(),Wn=0}}function AT(){var e=Qi.now(),t=e-Ia;t>fg&&(Ba-=t,Ia=e)}function PT(){for(var e,t=Ea,n,r=1/0;t;)t._call?(r>t._time&&(r=t._time),e=t,t=t._next):(n=t._next,t._next=null,t=e?e._next=n:Ea=n);Ki=e,Ku(r)}function Ku(e){if(!Nr){qi&&(qi=clearTimeout(qi));var t=e-Wn;t>24?(e<1/0&&(qi=setTimeout(dg,e-Qi.now()-Ba)),Zi&&(Zi=clearInterval(Zi))):(Zi||(Ia=Qi.now(),Zi=setInterval(AT,fg)),Nr=1,hg(dg))}}function gg(e,t,n){var r=new Na;return t=t==null?0:+t,r.restart(i=>{r.stop(),e(i+t)},t,n),r}var DT=Id("start","end","cancel","interrupt"),MT=[],mg=0,yg=1,Qu=2,Fa=3,bg=4,Ju=5,za=6;function Oa(e,t,n,r,i,o){var a=e.__transition;if(!a)e.__transition={};else if(n in a)return;CT(e,n,{name:t,index:r,group:i,on:DT,tween:MT,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:mg})}function ec(e,t){var n=Lt(e,t);if(n.state>mg)throw new Error("too late; already scheduled");return n}function Gt(e,t){var n=Lt(e,t);if(n.state>Fa)throw new Error("too late; already running");return n}function Lt(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function CT(e,t,n){var r=e.__transition,i;r[t]=n,n.timer=pg(o,0,n.time);function o(u){n.state=yg,n.timer.restart(a,n.delay,n.time),n.delay<=u&&a(u-n.delay)}function a(u){var c,f,h,p;if(n.state!==yg)return l();for(c in r)if(p=r[c],p.name===n.name){if(p.state===Fa)return gg(a);p.state===bg?(p.state=za,p.timer.stop(),p.on.call("interrupt",e,e.__data__,p.index,p.group),delete r[c]):+c<t&&(p.state=za,p.timer.stop(),p.on.call("cancel",e,e.__data__,p.index,p.group),delete r[c])}if(gg(function(){n.state===Fa&&(n.state=bg,n.timer.restart(s,n.delay,n.time),s(u))}),n.state=Qu,n.on.call("start",e,e.__data__,n.index,n.group),n.state===Qu){for(n.state=Fa,i=new Array(h=n.tween.length),c=0,f=-1;c<h;++c)(p=n.tween[c].value.call(e,e.__data__,n.index,n.group))&&(i[++f]=p);i.length=f+1}}function s(u){for(var c=u<n.duration?n.ease.call(null,u/n.duration):(n.timer.restart(l),n.state=Ju,1),f=-1,h=i.length;++f<h;)i[f].call(e,c);n.state===Ju&&(n.on.call("end",e,e.__data__,n.index,n.group),l())}function l(){n.state=za,n.timer.stop(),delete r[t];for(var u in r)return;delete e.__transition}}function LT(e,t){var n=e.__transition,r,i,o=!0,a;if(n){t=t==null?null:t+"";for(a in n){if((r=n[a]).name!==t){o=!1;continue}i=r.state>Qu&&r.state<Ju,r.state=za,r.timer.stop(),r.on.call(i?"interrupt":"cancel",e,e.__data__,r.index,r.group),delete n[a]}o&&delete e.__transition}}function kT(e){return this.each(function(){LT(this,e)})}function RT(e,t){var n,r;return function(){var i=Gt(this,e),o=i.tween;if(o!==n){r=n=o;for(var a=0,s=r.length;a<s;++a)if(r[a].name===t){r=r.slice(),r.splice(a,1);break}}i.tween=r}}function ET(e,t,n){var r,i;if(typeof n!="function")throw new Error;return function(){var o=Gt(this,e),a=o.tween;if(a!==r){i=(r=a).slice();for(var s={name:t,value:n},l=0,u=i.length;l<u;++l)if(i[l].name===t){i[l]=s;break}l===u&&i.push(s)}o.tween=i}}function IT(e,t){var n=this._id;if(e+="",arguments.length<2){for(var r=Lt(this.node(),n).tween,i=0,o=r.length,a;i<o;++i)if((a=r[i]).name===e)return a.value;return null}return this.each((t==null?RT:ET)(n,e,t))}function tc(e,t,n){var r=e._id;return e.each(function(){var i=Gt(this,r);(i.value||(i.value={}))[t]=n.apply(this,arguments)}),function(i){return Lt(i,r).value[t]}}function xg(e,t){var n;return(typeof t=="number"?Ct:t instanceof On?ka:(n=On(t))?(t=n,ka):ag)(e,t)}function BT(e){return function(){this.removeAttribute(e)}}function NT(e){return function(){this.removeAttributeNS(e.space,e.local)}}function FT(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttribute(e);return a===i?null:a===r?o:o=t(r=a,n)}}function zT(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttributeNS(e.space,e.local);return a===i?null:a===r?o:o=t(r=a,n)}}function OT(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttribute(e):(a=this.getAttribute(e),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function GT(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttributeNS(e.space,e.local):(a=this.getAttributeNS(e.space,e.local),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function YT(e,t){var n=Aa(e),r=n==="transform"?ST:xg;return this.attrTween(e,typeof t=="function"?(n.local?GT:OT)(n,r,tc(this,"attr."+e,t)):t==null?(n.local?NT:BT)(n):(n.local?zT:FT)(n,r,t))}function WT(e,t){return function(n){this.setAttribute(e,t.call(this,n))}}function XT(e,t){return function(n){this.setAttributeNS(e.space,e.local,t.call(this,n))}}function VT(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&XT(e,o)),n}return i._value=t,i}function UT(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&WT(e,o)),n}return i._value=t,i}function HT(e,t){var n="attr."+e;if(arguments.length<2)return(n=this.tween(n))&&n._value;if(t==null)return this.tween(n,null);if(typeof t!="function")throw new Error;var r=Aa(e);return this.tween(n,(r.local?VT:UT)(r,t))}function jT(e,t){return function(){ec(this,e).delay=+t.apply(this,arguments)}}function qT(e,t){return t=+t,function(){ec(this,e).delay=t}}function ZT(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?jT:qT)(t,e)):Lt(this.node(),t).delay}function KT(e,t){return function(){Gt(this,e).duration=+t.apply(this,arguments)}}function QT(e,t){return t=+t,function(){Gt(this,e).duration=t}}function JT(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?KT:QT)(t,e)):Lt(this.node(),t).duration}function eA(e,t){if(typeof t!="function")throw new Error;return function(){Gt(this,e).ease=t}}function tA(e){var t=this._id;return arguments.length?this.each(eA(t,e)):Lt(this.node(),t).ease}function nA(e,t){return function(){var n=t.apply(this,arguments);if(typeof n!="function")throw new Error;Gt(this,e).ease=n}}function rA(e){if(typeof e!="function")throw new Error;return this.each(nA(this._id,e))}function iA(e){typeof e!="function"&&(e=Od(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new en(r,this._parents,this._name,this._id)}function oA(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,n=e._groups,r=t.length,i=n.length,o=Math.min(r,i),a=new Array(r),s=0;s<o;++s)for(var l=t[s],u=n[s],c=l.length,f=a[s]=new Array(c),h,p=0;p<c;++p)(h=l[p]||u[p])&&(f[p]=h);for(;s<r;++s)a[s]=t[s];return new en(a,this._parents,this._name,this._id)}function aA(e){return(e+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||t==="start"})}function sA(e,t,n){var r,i,o=aA(t)?ec:Gt;return function(){var a=o(this,e),s=a.on;s!==r&&(i=(r=s).copy()).on(t,n),a.on=i}}function lA(e,t){var n=this._id;return arguments.length<2?Lt(this.node(),n).on.on(e):this.each(sA(n,e,t))}function uA(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function cA(){return this.on("end.remove",uA(this._id))}function fA(e){var t=this._name,n=this._id;typeof e!="function"&&(e=Gu(e));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var s=r[a],l=s.length,u=o[a]=new Array(l),c,f,h=0;h<l;++h)(c=s[h])&&(f=e.call(c,c.__data__,h,s))&&("__data__"in c&&(f.__data__=c.__data__),u[h]=f,Oa(u[h],t,n,h,u,Lt(c,n)));return new en(o,this._parents,t,n)}function hA(e){var t=this._name,n=this._id;typeof e!="function"&&(e=zd(e));for(var r=this._groups,i=r.length,o=[],a=[],s=0;s<i;++s)for(var l=r[s],u=l.length,c,f=0;f<u;++f)if(c=l[f]){for(var h=e.call(c,c.__data__,f,l),p,d=Lt(c,n),m=0,g=h.length;m<g;++m)(p=h[m])&&Oa(p,t,n,m,h,d);o.push(h),a.push(c)}return new en(o,a,t,n)}var pA=Vi.prototype.constructor;function dA(){return new pA(this._groups,this._parents)}function gA(e,t){var n,r,i;return function(){var o=Ir(this,e),a=(this.style.removeProperty(e),Ir(this,e));return o===a?null:o===n&&a===r?i:i=t(n=o,r=a)}}function vg(e){return function(){this.style.removeProperty(e)}}function mA(e,t,n){var r,i=n+"",o;return function(){var a=Ir(this,e);return a===i?null:a===r?o:o=t(r=a,n)}}function yA(e,t,n){var r,i,o;return function(){var a=Ir(this,e),s=n(this),l=s+"";return s==null&&(l=s=(this.style.removeProperty(e),Ir(this,e))),a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s))}}function bA(e,t){var n,r,i,o="style."+t,a="end."+o,s;return function(){var l=Gt(this,e),u=l.on,c=l.value[o]==null?s||(s=vg(t)):void 0;(u!==n||i!==c)&&(r=(n=u).copy()).on(a,i=c),l.on=r}}function xA(e,t,n){var r=(e+="")=="transform"?_T:xg;return t==null?this.styleTween(e,gA(e,r)).on("end.style."+e,vg(e)):typeof t=="function"?this.styleTween(e,yA(e,r,tc(this,"style."+e,t))).each(bA(this._id,e)):this.styleTween(e,mA(e,r,t),n).on("end.style."+e,null)}function vA(e,t,n){return function(r){this.style.setProperty(e,t.call(this,r),n)}}function $A(e,t,n){var r,i;function o(){var a=t.apply(this,arguments);return a!==i&&(r=(i=a)&&vA(e,a,n)),r}return o._value=t,o}function _A(e,t,n){var r="style."+(e+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;return this.tween(r,$A(e,t,n??""))}function SA(e){return function(){this.textContent=e}}function wA(e){return function(){var t=e(this);this.textContent=t??""}}function TA(e){return this.tween("text",typeof e=="function"?wA(tc(this,"text",e)):SA(e==null?"":e+""))}function AA(e){return function(t){this.textContent=e.call(this,t)}}function PA(e){var t,n;function r(){var i=e.apply(this,arguments);return i!==n&&(t=(n=i)&&AA(i)),t}return r._value=e,r}function DA(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,PA(e))}function MA(){for(var e=this._name,t=this._id,n=$g(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)if(l=a[u]){var c=Lt(l,t);Oa(l,e,n,u,a,{time:c.time+c.delay+c.duration,delay:0,duration:c.duration,ease:c.ease})}return new en(r,this._parents,e,n)}function CA(){var e,t,n=this,r=n._id,i=n.size();return new Promise(function(o,a){var s={value:a},l={value:function(){--i===0&&o()}};n.each(function(){var u=Gt(this,r),c=u.on;c!==e&&(t=(e=c).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(l)),u.on=t}),i===0&&o()})}var LA=0;function en(e,t,n,r){this._groups=e,this._parents=t,this._name=n,this._id=r}function $g(){return++LA}var tn=Vi.prototype;en.prototype={constructor:en,select:fA,selectAll:hA,selectChild:tn.selectChild,selectChildren:tn.selectChildren,filter:iA,merge:oA,selection:dA,transition:MA,call:tn.call,nodes:tn.nodes,node:tn.node,size:tn.size,empty:tn.empty,each:tn.each,on:lA,attr:YT,attrTween:HT,style:xA,styleTween:_A,text:TA,textTween:DA,remove:cA,tween:IT,delay:ZT,duration:JT,ease:tA,easeVarying:rA,end:CA,[Symbol.iterator]:tn[Symbol.iterator]};function kA(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var RA={time:null,delay:0,duration:250,ease:kA};function EA(e,t){for(var n;!(n=e.__transition)||!(n=n[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return n}function IA(e){var t,n;e instanceof en?(t=e._id,e=e._name):(t=$g(),(n=RA).time=Zu(),e=e==null?null:e+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&Oa(l,e,t,u,a,n||EA(l,t));return new en(r,this._parents,e,t)}Vi.prototype.interrupt=kT,Vi.prototype.transition=IA;function BA(e){return Math.abs(e=Math.round(e))>=1e21?e.toLocaleString("en").replace(/,/g,""):e.toString(10)}function Ga(e,t){if((n=(e=t?e.toExponential(t-1):e.toExponential()).indexOf("e"))<0)return null;var n,r=e.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+e.slice(n+1)]}function Fr(e){return e=Ga(Math.abs(e)),e?e[1]:NaN}function NA(e,t){return function(n,r){for(var i=n.length,o=[],a=0,s=e[0],l=0;i>0&&s>0&&(l+s+1>r&&(s=Math.max(1,r-l)),o.push(n.substring(i-=s,i+s)),!((l+=s+1)>r));)s=e[a=(a+1)%e.length];return o.reverse().join(t)}}function FA(e){return function(t){return t.replace(/[0-9]/g,function(n){return e[+n]})}}var zA=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Ya(e){if(!(t=zA.exec(e)))throw new Error("invalid format: "+e);var t;return new nc({fill:t[1],align:t[2],sign:t[3],symbol:t[4],zero:t[5],width:t[6],comma:t[7],precision:t[8]&&t[8].slice(1),trim:t[9],type:t[10]})}Ya.prototype=nc.prototype;function nc(e){this.fill=e.fill===void 0?" ":e.fill+"",this.align=e.align===void 0?">":e.align+"",this.sign=e.sign===void 0?"-":e.sign+"",this.symbol=e.symbol===void 0?"":e.symbol+"",this.zero=!!e.zero,this.width=e.width===void 0?void 0:+e.width,this.comma=!!e.comma,this.precision=e.precision===void 0?void 0:+e.precision,this.trim=!!e.trim,this.type=e.type===void 0?"":e.type+""}nc.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function OA(e){e:for(var t=e.length,n=1,r=-1,i;n<t;++n)switch(e[n]){case".":r=i=n;break;case"0":r===0&&(r=n),i=n;break;default:if(!+e[n])break e;r>0&&(r=0);break}return r>0?e.slice(0,r)+e.slice(i+1):e}var _g;function GA(e,t){var n=Ga(e,t);if(!n)return e+"";var r=n[0],i=n[1],o=i-(_g=Math.max(-8,Math.min(8,Math.floor(i/3)))*3)+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Ga(e,Math.max(0,t+o-1))[0]}function Sg(e,t){var n=Ga(e,t);if(!n)return e+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}const wg={"%":(e,t)=>(e*100).toFixed(t),b:e=>Math.round(e).toString(2),c:e=>e+"",d:BA,e:(e,t)=>e.toExponential(t),f:(e,t)=>e.toFixed(t),g:(e,t)=>e.toPrecision(t),o:e=>Math.round(e).toString(8),p:(e,t)=>Sg(e*100,t),r:Sg,s:GA,X:e=>Math.round(e).toString(16).toUpperCase(),x:e=>Math.round(e).toString(16)};function Tg(e){return e}var Ag=Array.prototype.map,Pg=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function YA(e){var t=e.grouping===void 0||e.thousands===void 0?Tg:NA(Ag.call(e.grouping,Number),e.thousands+""),n=e.currency===void 0?"":e.currency[0]+"",r=e.currency===void 0?"":e.currency[1]+"",i=e.decimal===void 0?".":e.decimal+"",o=e.numerals===void 0?Tg:FA(Ag.call(e.numerals,String)),a=e.percent===void 0?"%":e.percent+"",s=e.minus===void 0?"−":e.minus+"",l=e.nan===void 0?"NaN":e.nan+"";function u(f){f=Ya(f);var h=f.fill,p=f.align,d=f.sign,m=f.symbol,g=f.zero,y=f.width,b=f.comma,v=f.precision,x=f.trim,_=f.type;_==="n"?(b=!0,_="g"):wg[_]||(v===void 0&&(v=12),x=!0,_="g"),(g||h==="0"&&p==="=")&&(g=!0,h="0",p="=");var A=m==="$"?n:m==="#"&&/[boxX]/.test(_)?"0"+_.toLowerCase():"",S=m==="$"?r:/[%p]/.test(_)?a:"",P=wg[_],M=/[defgprs%]/.test(_);v=v===void 0?6:/[gprs]/.test(_)?Math.max(1,Math.min(21,v)):Math.max(0,Math.min(20,v));function B($){var k=A,C=S,T,w,D;if(_==="c")C=P($)+C,$="";else{$=+$;var F=$<0||1/$<0;if($=isNaN($)?l:P(Math.abs($),v),x&&($=OA($)),F&&+$==0&&d!=="+"&&(F=!1),k=(F?d==="("?d:s:d==="-"||d==="("?"":d)+k,C=(_==="s"?Pg[8+_g/3]:"")+C+(F&&d==="("?")":""),M){for(T=-1,w=$.length;++T<w;)if(D=$.charCodeAt(T),48>D||D>57){C=(D===46?i+$.slice(T+1):$.slice(T))+C,$=$.slice(0,T);break}}}b&&!g&&($=t($,1/0));var z=k.length+$.length+C.length,I=z<y?new Array(y-z+1).join(h):"";switch(b&&g&&($=t(I+$,I.length?y-C.length:1/0),I=""),p){case"<":$=k+$+C+I;break;case"=":$=k+I+$+C;break;case"^":$=I.slice(0,z=I.length>>1)+k+$+C+I.slice(z);break;default:$=I+k+$+C;break}return o($)}return B.toString=function(){return f+""},B}function c(f,h){var p=u((f=Ya(f),f.type="f",f)),d=Math.max(-8,Math.min(8,Math.floor(Fr(h)/3)))*3,m=Math.pow(10,-d),g=Pg[8+d/3];return function(y){return p(m*y)+g}}return{format:u,formatPrefix:c}}var Wa,Dg,Mg;WA({thousands:",",grouping:[3],currency:["$",""]});function WA(e){return Wa=YA(e),Dg=Wa.format,Mg=Wa.formatPrefix,Wa}function XA(e){return Math.max(0,-Fr(Math.abs(e)))}function VA(e,t){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(Fr(t)/3)))*3-Fr(Math.abs(e)))}function UA(e,t){return e=Math.abs(e),t=Math.abs(t)-e,Math.max(0,Fr(t)-Fr(e))+1}function Cg(e,t){switch(arguments.length){case 0:break;case 1:this.range(e);break;default:this.range(t).domain(e);break}return this}function HA(e){return function(){return e}}function jA(e){return+e}var Lg=[0,1];function zr(e){return e}function rc(e,t){return(t-=e=+e)?function(n){return(n-e)/t}:HA(isNaN(t)?NaN:.5)}function qA(e,t){var n;return e>t&&(n=e,e=t,t=n),function(r){return Math.max(e,Math.min(t,r))}}function ZA(e,t,n){var r=e[0],i=e[1],o=t[0],a=t[1];return i<r?(r=rc(i,r),o=n(a,o)):(r=rc(r,i),o=n(o,a)),function(s){return o(r(s))}}function KA(e,t,n){var r=Math.min(e.length,t.length)-1,i=new Array(r),o=new Array(r),a=-1;for(e[r]<e[0]&&(e=e.slice().reverse(),t=t.slice().reverse());++a<r;)i[a]=rc(e[a],e[a+1]),o[a]=n(t[a],t[a+1]);return function(s){var l=Ed(e,s,1,r)-1;return o[l](i[l](s))}}function QA(e,t){return t.domain(e.domain()).range(e.range()).interpolate(e.interpolate()).clamp(e.clamp()).unknown(e.unknown())}function JA(){var e=Lg,t=Lg,n=qu,r,i,o,a=zr,s,l,u;function c(){var h=Math.min(e.length,t.length);return a!==zr&&(a=qA(e[0],e[h-1])),s=h>2?KA:ZA,l=u=null,f}function f(h){return h==null||isNaN(h=+h)?o:(l||(l=s(e.map(r),t,n)))(r(a(h)))}return f.invert=function(h){return a(i((u||(u=s(t,e.map(r),Ct)))(h)))},f.domain=function(h){return arguments.length?(e=Array.from(h,jA),c()):e.slice()},f.range=function(h){return arguments.length?(t=Array.from(h),c()):t.slice()},f.rangeRound=function(h){return t=Array.from(h),n=xT,c()},f.clamp=function(h){return arguments.length?(a=h?!0:zr,c()):a!==zr},f.interpolate=function(h){return arguments.length?(n=h,c()):n},f.unknown=function(h){return arguments.length?(o=h,f):o},function(h,p){return r=h,i=p,c()}}function eP(){return JA()(zr,zr)}function tP(e,t,n,r){var i=dS(e,t,n),o;switch(r=Ya(r??",f"),r.type){case"s":{var a=Math.max(Math.abs(e),Math.abs(t));return r.precision==null&&!isNaN(o=VA(i,a))&&(r.precision=o),Mg(r,a)}case"":case"e":case"g":case"p":case"r":{r.precision==null&&!isNaN(o=UA(i,Math.max(Math.abs(e),Math.abs(t))))&&(r.precision=o-(r.type==="e"));break}case"f":case"%":{r.precision==null&&!isNaN(o=XA(i))&&(r.precision=o-(r.type==="%")*2);break}}return Dg(r)}function kg(e){var t=e.domain;return e.ticks=function(n){var r=t();return pS(r[0],r[r.length-1],n??10)},e.tickFormat=function(n,r){var i=t();return tP(i[0],i[i.length-1],n??10,r)},e.nice=function(n){n==null&&(n=10);var r=t(),i=0,o=r.length-1,a=r[i],s=r[o],l,u,c=10;for(s<a&&(u=a,a=s,s=u,u=i,i=o,o=u);c-- >0;){if(u=zu(a,s,n),u===l)return r[i]=a,r[o]=s,t(r);if(u>0)a=Math.floor(a/u)*u,s=Math.ceil(s/u)*u;else if(u<0)a=Math.ceil(a*u)/u,s=Math.floor(s*u)/u;else break;l=u}return e},e}function Ji(){var e=eP();return e.copy=function(){return QA(e,Ji())},Cg.apply(e,arguments),kg(e)}function Rg(){var e=0,t=1,n=1,r=[.5],i=[0,1],o;function a(l){return l!=null&&l<=l?i[Ed(r,l,0,n)]:o}function s(){var l=-1;for(r=new Array(n);++l<n;)r[l]=((l+1)*t-(l-n)*e)/(n+1);return a}return a.domain=function(l){return arguments.length?([e,t]=l,e=+e,t=+t,s()):[e,t]},a.range=function(l){return arguments.length?(n=(i=Array.from(l)).length-1,s()):i.slice()},a.invertExtent=function(l){var u=i.indexOf(l);return u<0?[NaN,NaN]:u<1?[e,r[0]]:u>=n?[r[n-1],t]:[r[u-1],r[u]]},a.unknown=function(l){return arguments.length&&(o=l),a},a.thresholds=function(){return r.slice()},a.copy=function(){return Rg().domain([e,t]).range(i).unknown(o)},Cg.apply(kg(a),arguments)}function eo(e,t,n){this.k=e,this.x=t,this.y=n}eo.prototype={constructor:eo,scale:function(e){return e===1?this:new eo(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new eo(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}},eo.prototype;function ic(e){const t=[0,0];return e.length?e.reduce((n,r)=>[r<n[0]?r:n[0],r>n[1]?r:n[1]],[e[0],e[0]]):t}function nP(e){let t=Math.floor(Math.sqrt(e)),n=Math.ceil(e/t);for(;t*n<e;)n++;return{rowAmount:t,columnAmount:n}}function Eg(e,t,n){const{gap:r}=t,{rowAmount:i,columnAmount:o}=t.rowAmount*t.columnAmount>=n?t:nP(n);return new Array(n).fill(null).map((a,s)=>{const l=s%o,u=Math.floor(s/o),c=(e.width-r*(o-1))/o,f=(e.height-r*(i-1))/i,h=l*c+l*r,p=u*f+u*r,d=[h,p],m=[c/e.width,f/e.height];return{slotIndex:s,rowIndex:u,columnIndex:l,translate:d,scale:m}})}var oc=function(e,t){return oc=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(n[i]=r[i])},oc(e,t)};function Yt(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");oc(e,t);function n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}function rP(e,t,n,r){function i(o){return o instanceof n?o:new n(function(a){a(o)})}return new(n||(n=Promise))(function(o,a){function s(c){try{u(r.next(c))}catch(f){a(f)}}function l(c){try{u(r.throw(c))}catch(f){a(f)}}function u(c){c.done?o(c.value):i(c.value).then(s,l)}u((r=r.apply(e,[])).next())})}function Ig(e,t){var n={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,i,o,a=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(u){return function(c){return l([u,c])}}function l(u){if(r)throw new TypeError("Generator is already executing.");for(;a&&(a=0,u[0]&&(n=0)),n;)try{if(r=1,i&&(o=u[0]&2?i.return:u[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,u[1])).done)return o;switch(i=0,o&&(u=[u[0]&2,o.value]),u[0]){case 0:case 1:o=u;break;case 4:return n.label++,{value:u[1],done:!1};case 5:n.label++,i=u[1],u=[0];continue;case 7:u=n.ops.pop(),n.trys.pop();continue;default:if(o=n.trys,!(o=o.length>0&&o[o.length-1])&&(u[0]===6||u[0]===2)){n=0;continue}if(u[0]===3&&(!o||u[1]>o[0]&&u[1]<o[3])){n.label=u[1];break}if(u[0]===6&&n.label<o[1]){n.label=o[1],o=u;break}if(o&&n.label<o[2]){n.label=o[2],n.ops.push(u);break}o[2]&&n.ops.pop(),n.trys.pop();continue}u=t.call(e,n)}catch(c){u=[6,c],i=0}finally{r=o=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}}function Or(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function Gr(e,t){var n=typeof Symbol=="function"&&e[Symbol.iterator];if(!n)return e;var r=n.call(e),i,o=[],a;try{for(;(t===void 0||t-- >0)&&!(i=r.next()).done;)o.push(i.value)}catch(s){a={error:s}}finally{try{i&&!i.done&&(n=r.return)&&n.call(r)}finally{if(a)throw a.error}}return o}function Yr(e,t,n){if(arguments.length===2)for(var r=0,i=t.length,o;r<i;r++)(o||!(r in t))&&(o||(o=Array.prototype.slice.call(t,0,r)),o[r]=t[r]);return e.concat(o||Array.prototype.slice.call(t))}function Wr(e){return this instanceof Wr?(this.v=e,this):new Wr(e)}function iP(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),i,o=[];return i=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),s("next"),s("throw"),s("return",a),i[Symbol.asyncIterator]=function(){return this},i;function a(p){return function(d){return Promise.resolve(d).then(p,f)}}function s(p,d){r[p]&&(i[p]=function(m){return new Promise(function(g,y){o.push([p,m,g,y])>1||l(p,m)})},d&&(i[p]=d(i[p])))}function l(p,d){try{u(r[p](d))}catch(m){h(o[0][3],m)}}function u(p){p.value instanceof Wr?Promise.resolve(p.value.v).then(c,f):h(o[0][2],p)}function c(p){l("next",p)}function f(p){l("throw",p)}function h(p,d){p(d),o.shift(),o.length&&l(o[0][0],o[0][1])}}function oP(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof Or=="function"?Or(e):e[Symbol.iterator](),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(o){n[o]=e[o]&&function(a){return new Promise(function(s,l){a=e[o](a),i(s,l,a.done,a.value)})}}function i(o,a,s,l){Promise.resolve(l).then(function(u){o({value:u,done:s})},a)}}function Le(e){return typeof e=="function"}function ac(e){var t=function(r){Error.call(r),r.stack=new Error().stack},n=e(t);return n.prototype=Object.create(Error.prototype),n.prototype.constructor=n,n}var sc=ac(function(e){return function(t){e(this),this.message=t?t.length+` errors occurred during unsubscription:
|
37
|
+
`+t.map(function(n,r){return r+1+") "+n.toString()}).join(`
|
38
|
+
`):"",this.name="UnsubscriptionError",this.errors=t}});function Xa(e,t){if(e){var n=e.indexOf(t);0<=n&&e.splice(n,1)}}var to=function(){function e(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return e.prototype.unsubscribe=function(){var t,n,r,i,o;if(!this.closed){this.closed=!0;var a=this._parentage;if(a)if(this._parentage=null,Array.isArray(a))try{for(var s=Or(a),l=s.next();!l.done;l=s.next()){var u=l.value;u.remove(this)}}catch(m){t={error:m}}finally{try{l&&!l.done&&(n=s.return)&&n.call(s)}finally{if(t)throw t.error}}else a.remove(this);var c=this.initialTeardown;if(Le(c))try{c()}catch(m){o=m instanceof sc?m.errors:[m]}var f=this._finalizers;if(f){this._finalizers=null;try{for(var h=Or(f),p=h.next();!p.done;p=h.next()){var d=p.value;try{Fg(d)}catch(m){o=o??[],m instanceof sc?o=Yr(Yr([],Gr(o)),Gr(m.errors)):o.push(m)}}}catch(m){r={error:m}}finally{try{p&&!p.done&&(i=h.return)&&i.call(h)}finally{if(r)throw r.error}}}if(o)throw new sc(o)}},e.prototype.add=function(t){var n;if(t&&t!==this)if(this.closed)Fg(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=(n=this._finalizers)!==null&&n!==void 0?n:[]).push(t)}},e.prototype._hasParent=function(t){var n=this._parentage;return n===t||Array.isArray(n)&&n.includes(t)},e.prototype._addParent=function(t){var n=this._parentage;this._parentage=Array.isArray(n)?(n.push(t),n):n?[n,t]:t},e.prototype._removeParent=function(t){var n=this._parentage;n===t?this._parentage=null:Array.isArray(n)&&Xa(n,t)},e.prototype.remove=function(t){var n=this._finalizers;n&&Xa(n,t),t instanceof e&&t._removeParent(this)},e.EMPTY=function(){var t=new e;return t.closed=!0,t}(),e}(),Bg=to.EMPTY;function Ng(e){return e instanceof to||e&&"closed"in e&&Le(e.remove)&&Le(e.add)&&Le(e.unsubscribe)}function Fg(e){Le(e)?e():e.unsubscribe()}var zg={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},aP={setTimeout:function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setTimeout.apply(void 0,Yr([e,t],Gr(n)))},clearTimeout:function(e){return clearTimeout(e)},delegate:void 0};function Og(e){aP.setTimeout(function(){throw e})}function lc(){}function Va(e){e()}var uc=function(e){Yt(t,e);function t(n){var r=e.call(this)||this;return r.isStopped=!1,n?(r.destination=n,Ng(n)&&n.add(r)):r.destination=cP,r}return t.create=function(n,r,i){return new no(n,r,i)},t.prototype.next=function(n){this.isStopped||this._next(n)},t.prototype.error=function(n){this.isStopped||(this.isStopped=!0,this._error(n))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(n){this.destination.next(n)},t.prototype._error=function(n){try{this.destination.error(n)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}(to),sP=Function.prototype.bind;function cc(e,t){return sP.call(e,t)}var lP=function(){function e(t){this.partialObserver=t}return e.prototype.next=function(t){var n=this.partialObserver;if(n.next)try{n.next(t)}catch(r){Ua(r)}},e.prototype.error=function(t){var n=this.partialObserver;if(n.error)try{n.error(t)}catch(r){Ua(r)}else Ua(t)},e.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(n){Ua(n)}},e}(),no=function(e){Yt(t,e);function t(n,r,i){var o=e.call(this)||this,a;if(Le(n)||!n)a={next:n??void 0,error:r??void 0,complete:i??void 0};else{var s;o&&zg.useDeprecatedNextContext?(s=Object.create(n),s.unsubscribe=function(){return o.unsubscribe()},a={next:n.next&&cc(n.next,s),error:n.error&&cc(n.error,s),complete:n.complete&&cc(n.complete,s)}):a=n}return o.destination=new lP(a),o}return t}(uc);function Ua(e){Og(e)}function uP(e){throw e}var cP={closed:!0,next:lc,error:uP,complete:lc},fc=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function Ha(e){return e}function fP(e){return e.length===0?Ha:e.length===1?e[0]:function(t){return e.reduce(function(n,r){return r(n)},t)}}var pt=function(){function e(t){t&&(this._subscribe=t)}return e.prototype.lift=function(t){var n=new e;return n.source=this,n.operator=t,n},e.prototype.subscribe=function(t,n,r){var i=this,o=pP(t)?t:new no(t,n,r);return Va(function(){var a=i,s=a.operator,l=a.source;o.add(s?s.call(o,l):l?i._subscribe(o):i._trySubscribe(o))}),o},e.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(n){t.error(n)}},e.prototype.forEach=function(t,n){var r=this;return n=Gg(n),new n(function(i,o){var a=new no({next:function(s){try{t(s)}catch(l){o(l),a.unsubscribe()}},error:o,complete:i});r.subscribe(a)})},e.prototype._subscribe=function(t){var n;return(n=this.source)===null||n===void 0?void 0:n.subscribe(t)},e.prototype[fc]=function(){return this},e.prototype.pipe=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return fP(t)(this)},e.prototype.toPromise=function(t){var n=this;return t=Gg(t),new t(function(r,i){var o;n.subscribe(function(a){return o=a},function(a){return i(a)},function(){return r(o)})})},e.create=function(t){return new e(t)},e}();function Gg(e){var t;return(t=e??zg.Promise)!==null&&t!==void 0?t:Promise}function hP(e){return e&&Le(e.next)&&Le(e.error)&&Le(e.complete)}function pP(e){return e&&e instanceof uc||hP(e)&&Ng(e)}function dP(e){return Le(e==null?void 0:e.lift)}function Xn(e){return function(t){if(dP(t))return t.lift(function(n){try{return e(n,this)}catch(r){this.error(r)}});throw new TypeError("Unable to lift unknown Observable type")}}function Vn(e,t,n,r,i){return new gP(e,t,n,r,i)}var gP=function(e){Yt(t,e);function t(n,r,i,o,a,s){var l=e.call(this,n)||this;return l.onFinalize=a,l.shouldUnsubscribe=s,l._next=r?function(u){try{r(u)}catch(c){n.error(c)}}:e.prototype._next,l._error=o?function(u){try{o(u)}catch(c){n.error(c)}finally{this.unsubscribe()}}:e.prototype._error,l._complete=i?function(){try{i()}catch(u){n.error(u)}finally{this.unsubscribe()}}:e.prototype._complete,l}return t.prototype.unsubscribe=function(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;e.prototype.unsubscribe.call(this),!r&&((n=this.onFinalize)===null||n===void 0||n.call(this))}},t}(uc),mP=ac(function(e){return function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}}),Xr=function(e){Yt(t,e);function t(){var n=e.call(this)||this;return n.closed=!1,n.currentObservers=null,n.observers=[],n.isStopped=!1,n.hasError=!1,n.thrownError=null,n}return t.prototype.lift=function(n){var r=new Yg(this,this);return r.operator=n,r},t.prototype._throwIfClosed=function(){if(this.closed)throw new mP},t.prototype.next=function(n){var r=this;Va(function(){var i,o;if(r._throwIfClosed(),!r.isStopped){r.currentObservers||(r.currentObservers=Array.from(r.observers));try{for(var a=Or(r.currentObservers),s=a.next();!s.done;s=a.next()){var l=s.value;l.next(n)}}catch(u){i={error:u}}finally{try{s&&!s.done&&(o=a.return)&&o.call(a)}finally{if(i)throw i.error}}}})},t.prototype.error=function(n){var r=this;Va(function(){if(r._throwIfClosed(),!r.isStopped){r.hasError=r.isStopped=!0,r.thrownError=n;for(var i=r.observers;i.length;)i.shift().error(n)}})},t.prototype.complete=function(){var n=this;Va(function(){if(n._throwIfClosed(),!n.isStopped){n.isStopped=!0;for(var r=n.observers;r.length;)r.shift().complete()}})},t.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(t.prototype,"observed",{get:function(){var n;return((n=this.observers)===null||n===void 0?void 0:n.length)>0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(n){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,n)},t.prototype._subscribe=function(n){return this._throwIfClosed(),this._checkFinalizedStatuses(n),this._innerSubscribe(n)},t.prototype._innerSubscribe=function(n){var r=this,i=this,o=i.hasError,a=i.isStopped,s=i.observers;return o||a?Bg:(this.currentObservers=null,s.push(n),new to(function(){r.currentObservers=null,Xa(s,n)}))},t.prototype._checkFinalizedStatuses=function(n){var r=this,i=r.hasError,o=r.thrownError,a=r.isStopped;i?n.error(o):a&&n.complete()},t.prototype.asObservable=function(){var n=new pt;return n.source=this,n},t.create=function(n,r){return new Yg(n,r)},t}(pt),Yg=function(e){Yt(t,e);function t(n,r){var i=e.call(this)||this;return i.destination=n,i.source=r,i}return t.prototype.next=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.next)===null||i===void 0||i.call(r,n)},t.prototype.error=function(n){var r,i;(i=(r=this.destination)===null||r===void 0?void 0:r.error)===null||i===void 0||i.call(r,n)},t.prototype.complete=function(){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.complete)===null||r===void 0||r.call(n)},t.prototype._subscribe=function(n){var r,i;return(i=(r=this.source)===null||r===void 0?void 0:r.subscribe(n))!==null&&i!==void 0?i:Bg},t}(Xr),Wg=function(e){Yt(t,e);function t(n){var r=e.call(this)||this;return r._value=n,r}return Object.defineProperty(t.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),t.prototype._subscribe=function(n){var r=e.prototype._subscribe.call(this,n);return!r.closed&&n.next(this._value),r},t.prototype.getValue=function(){var n=this,r=n.hasError,i=n.thrownError,o=n._value;if(r)throw i;return this._throwIfClosed(),o},t.prototype.next=function(n){e.prototype.next.call(this,this._value=n)},t}(Xr),hc={now:function(){return(hc.delegate||Date).now()},delegate:void 0},yP=function(e){Yt(t,e);function t(n,r,i){n===void 0&&(n=1/0),r===void 0&&(r=1/0),i===void 0&&(i=hc);var o=e.call(this)||this;return o._bufferSize=n,o._windowTime=r,o._timestampProvider=i,o._buffer=[],o._infiniteTimeWindow=!0,o._infiniteTimeWindow=r===1/0,o._bufferSize=Math.max(1,n),o._windowTime=Math.max(1,r),o}return t.prototype.next=function(n){var r=this,i=r.isStopped,o=r._buffer,a=r._infiniteTimeWindow,s=r._timestampProvider,l=r._windowTime;i||(o.push(n),!a&&o.push(s.now()+l)),this._trimBuffer(),e.prototype.next.call(this,n)},t.prototype._subscribe=function(n){this._throwIfClosed(),this._trimBuffer();for(var r=this._innerSubscribe(n),i=this,o=i._infiniteTimeWindow,a=i._buffer,s=a.slice(),l=0;l<s.length&&!n.closed;l+=o?1:2)n.next(s[l]);return this._checkFinalizedStatuses(n),r},t.prototype._trimBuffer=function(){var n=this,r=n._bufferSize,i=n._timestampProvider,o=n._buffer,a=n._infiniteTimeWindow,s=(a?1:2)*r;if(r<1/0&&s<o.length&&o.splice(0,o.length-s),!a){for(var l=i.now(),u=0,c=1;c<o.length&&o[c]<=l;c+=2)u=c;u&&o.splice(0,u+1)}},t}(Xr),bP=function(e){Yt(t,e);function t(n,r){return e.call(this)||this}return t.prototype.schedule=function(n,r){return this},t}(to),Xg={setInterval:function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setInterval.apply(void 0,Yr([e,t],Gr(n)))},clearInterval:function(e){return clearInterval(e)},delegate:void 0},xP=function(e){Yt(t,e);function t(n,r){var i=e.call(this,n,r)||this;return i.scheduler=n,i.work=r,i.pending=!1,i}return t.prototype.schedule=function(n,r){var i;if(r===void 0&&(r=0),this.closed)return this;this.state=n;var o=this.id,a=this.scheduler;return o!=null&&(this.id=this.recycleAsyncId(a,o,r)),this.pending=!0,this.delay=r,this.id=(i=this.id)!==null&&i!==void 0?i:this.requestAsyncId(a,this.id,r),this},t.prototype.requestAsyncId=function(n,r,i){return i===void 0&&(i=0),Xg.setInterval(n.flush.bind(n,this),i)},t.prototype.recycleAsyncId=function(n,r,i){if(i===void 0&&(i=0),i!=null&&this.delay===i&&this.pending===!1)return r;r!=null&&Xg.clearInterval(r)},t.prototype.execute=function(n,r){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var i=this._execute(n,r);if(i)return i;this.pending===!1&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},t.prototype._execute=function(n,r){var i=!1,o;try{this.work(n)}catch(a){i=!0,o=a||new Error("Scheduled action threw falsy error")}if(i)return this.unsubscribe(),o},t.prototype.unsubscribe=function(){if(!this.closed){var n=this,r=n.id,i=n.scheduler,o=i.actions;this.work=this.state=this.scheduler=null,this.pending=!1,Xa(o,this),r!=null&&(this.id=this.recycleAsyncId(i,r,null)),this.delay=null,e.prototype.unsubscribe.call(this)}},t}(bP),Vg=function(){function e(t,n){n===void 0&&(n=e.now),this.schedulerActionCtor=t,this.now=n}return e.prototype.schedule=function(t,n,r){return n===void 0&&(n=0),new this.schedulerActionCtor(this,t).schedule(r,n)},e.now=hc.now,e}(),vP=function(e){Yt(t,e);function t(n,r){r===void 0&&(r=Vg.now);var i=e.call(this,n,r)||this;return i.actions=[],i._active=!1,i}return t.prototype.flush=function(n){var r=this.actions;if(this._active){r.push(n);return}var i;this._active=!0;do if(i=n.execute(n.state,n.delay))break;while(n=r.shift());if(this._active=!1,i){for(;n=r.shift();)n.unsubscribe();throw i}},t}(Vg);new vP(xP);function $P(e){return e&&Le(e.schedule)}function Ug(e){return e[e.length-1]}function _P(e){return Le(Ug(e))?e.pop():void 0}function SP(e){return $P(Ug(e))?e.pop():void 0}var Hg=function(e){return e&&typeof e.length=="number"&&typeof e!="function"};function jg(e){return Le(e==null?void 0:e.then)}function qg(e){return Le(e[fc])}function Zg(e){return Symbol.asyncIterator&&Le(e==null?void 0:e[Symbol.asyncIterator])}function Kg(e){return new TypeError("You provided "+(e!==null&&typeof e=="object"?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function wP(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var Qg=wP();function Jg(e){return Le(e==null?void 0:e[Qg])}function e0(e){return iP(this,arguments,function(){var t,n,r,i;return Ig(this,function(o){switch(o.label){case 0:t=e.getReader(),o.label=1;case 1:o.trys.push([1,,9,10]),o.label=2;case 2:return[4,Wr(t.read())];case 3:return n=o.sent(),r=n.value,i=n.done,i?[4,Wr(void 0)]:[3,5];case 4:return[2,o.sent()];case 5:return[4,Wr(r)];case 6:return[4,o.sent()];case 7:return o.sent(),[3,2];case 8:return[3,10];case 9:return t.releaseLock(),[7];case 10:return[2]}})})}function t0(e){return Le(e==null?void 0:e.getReader)}function Un(e){if(e instanceof pt)return e;if(e!=null){if(qg(e))return TP(e);if(Hg(e))return AP(e);if(jg(e))return PP(e);if(Zg(e))return n0(e);if(Jg(e))return DP(e);if(t0(e))return MP(e)}throw Kg(e)}function TP(e){return new pt(function(t){var n=e[fc]();if(Le(n.subscribe))return n.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function AP(e){return new pt(function(t){for(var n=0;n<e.length&&!t.closed;n++)t.next(e[n]);t.complete()})}function PP(e){return new pt(function(t){e.then(function(n){t.closed||(t.next(n),t.complete())},function(n){return t.error(n)}).then(null,Og)})}function DP(e){return new pt(function(t){var n,r;try{for(var i=Or(e),o=i.next();!o.done;o=i.next()){var a=o.value;if(t.next(a),t.closed)return}}catch(s){n={error:s}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}t.complete()})}function n0(e){return new pt(function(t){CP(e,t).catch(function(n){return t.error(n)})})}function MP(e){return n0(e0(e))}function CP(e,t){var n,r,i,o;return rP(this,void 0,void 0,function(){var a,s;return Ig(this,function(l){switch(l.label){case 0:l.trys.push([0,5,6,11]),n=oP(e),l.label=1;case 1:return[4,n.next()];case 2:if(r=l.sent(),!!r.done)return[3,4];if(a=r.value,t.next(a),t.closed)return[2];l.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return s=l.sent(),i={error:s},[3,11];case 6:return l.trys.push([6,,9,10]),r&&!r.done&&(o=n.return)?[4,o.call(n)]:[3,8];case 7:l.sent(),l.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return t.complete(),[2]}})})}function _n(e,t,n,r,i){r===void 0&&(r=0),i===void 0&&(i=!1);var o=t.schedule(function(){n(),i?e.add(this.schedule(null,r)):this.unsubscribe()},r);if(e.add(o),!i)return o}function r0(e,t){return t===void 0&&(t=0),Xn(function(n,r){n.subscribe(Vn(r,function(i){return _n(r,e,function(){return r.next(i)},t)},function(){return _n(r,e,function(){return r.complete()},t)},function(i){return _n(r,e,function(){return r.error(i)},t)}))})}function i0(e,t){return t===void 0&&(t=0),Xn(function(n,r){r.add(e.schedule(function(){return n.subscribe(r)},t))})}function LP(e,t){return Un(e).pipe(i0(t),r0(t))}function kP(e,t){return Un(e).pipe(i0(t),r0(t))}function RP(e,t){return new pt(function(n){var r=0;return t.schedule(function(){r===e.length?n.complete():(n.next(e[r++]),n.closed||this.schedule())})})}function EP(e,t){return new pt(function(n){var r;return _n(n,t,function(){r=e[Qg](),_n(n,t,function(){var i,o,a;try{i=r.next(),o=i.value,a=i.done}catch(s){n.error(s);return}a?n.complete():n.next(o)},0,!0)}),function(){return Le(r==null?void 0:r.return)&&r.return()}})}function o0(e,t){if(!e)throw new Error("Iterable cannot be null");return new pt(function(n){_n(n,t,function(){var r=e[Symbol.asyncIterator]();_n(n,t,function(){r.next().then(function(i){i.done?n.complete():n.next(i.value)})},0,!0)})})}function IP(e,t){return o0(e0(e),t)}function BP(e,t){if(e!=null){if(qg(e))return LP(e,t);if(Hg(e))return RP(e,t);if(jg(e))return kP(e,t);if(Zg(e))return o0(e,t);if(Jg(e))return EP(e,t);if(t0(e))return IP(e,t)}throw Kg(e)}function a0(e,t){return t?BP(e,t):Un(e)}ac(function(e){return function(){e(this),this.name="EmptyError",this.message="no elements in sequence"}});function Vr(e,t){return Xn(function(n,r){var i=0;n.subscribe(Vn(r,function(o){r.next(e.call(t,o,i++))}))})}var NP=Array.isArray;function FP(e,t){return NP(t)?e.apply(void 0,Yr([],Gr(t))):e(t)}function zP(e){return Vr(function(t){return FP(e,t)})}var OP=Array.isArray,GP=Object.getPrototypeOf,YP=Object.prototype,WP=Object.keys;function XP(e){if(e.length===1){var t=e[0];if(OP(t))return{args:t,keys:null};if(VP(t)){var n=WP(t);return{args:n.map(function(r){return t[r]}),keys:n}}}return{args:e,keys:null}}function VP(e){return e&&typeof e=="object"&&GP(e)===YP}function UP(e,t){return e.reduce(function(n,r,i){return n[r]=t[i],n},{})}function s0(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=SP(e),r=_P(e),i=XP(e),o=i.args,a=i.keys;if(o.length===0)return a0([],n);var s=new pt(HP(o,n,a?function(l){return UP(a,l)}:Ha));return r?s.pipe(zP(r)):s}function HP(e,t,n){return n===void 0&&(n=Ha),function(r){l0(t,function(){for(var i=e.length,o=new Array(i),a=i,s=i,l=function(c){l0(t,function(){var f=a0(e[c],t),h=!1;f.subscribe(Vn(r,function(p){o[c]=p,h||(h=!0,s--),s||r.next(n(o.slice()))},function(){--a||r.complete()}))},r)},u=0;u<i;u++)l(u)},r)}}function l0(e,t,n){e?_n(n,e,t):t()}function jP(e,t){return t===void 0&&(t=Ha),e=e??qP,Xn(function(n,r){var i,o=!0;n.subscribe(Vn(r,function(a){var s=t(a);(o||!e(i,s))&&(o=!1,i=s,r.next(a))}))})}function qP(e,t){return e===t}function ZP(e){e===void 0&&(e={});var t=e.connector,n=t===void 0?function(){return new Xr}:t,r=e.resetOnError,i=r===void 0?!0:r,o=e.resetOnComplete,a=o===void 0?!0:o,s=e.resetOnRefCountZero,l=s===void 0?!0:s;return function(u){var c,f,h,p=0,d=!1,m=!1,g=function(){f==null||f.unsubscribe(),f=void 0},y=function(){g(),c=h=void 0,d=m=!1},b=function(){var v=c;y(),v==null||v.unsubscribe()};return Xn(function(v,x){p++,!m&&!d&&g();var _=h=h??n();x.add(function(){p--,p===0&&!m&&!d&&(f=pc(b,l))}),_.subscribe(x),!c&&p>0&&(c=new no({next:function(A){return _.next(A)},error:function(A){m=!0,g(),f=pc(y,i,A),_.error(A)},complete:function(){d=!0,g(),f=pc(y,a),_.complete()}}),Un(v).subscribe(c))})(u)}}function pc(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];if(t===!0){e();return}if(t!==!1){var i=new no({next:function(){i.unsubscribe(),e()}});return Un(t.apply(void 0,Yr([],Gr(n)))).subscribe(i)}}function KP(e,t,n){var r,i=!1;return r=e,ZP({connector:function(){return new yP(r,t,n)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:i})}function dc(e,t){return Xn(function(n,r){var i=null,o=0,a=!1,s=function(){return a&&!i&&r.complete()};n.subscribe(Vn(r,function(l){i==null||i.unsubscribe();var u=0,c=o++;Un(e(l,c)).subscribe(i=Vn(r,function(f){return r.next(t?t(l,f,c,u++):f)},function(){i=null,s()}))},function(){a=!0,s()}))})}function u0(e){return Xn(function(t,n){Un(e).subscribe(Vn(n,function(){return n.complete()},lc)),!n.closed&&t.subscribe(n)})}const QP=e=>e.pipe(Vr(t=>t.styles.textSize),jP(),Vr(t=>{let n=NaN;if(typeof t=="string")if(t.includes("rem")){const r=parseFloat(getComputedStyle(document.documentElement).fontSize);n=parseFloat(t)*r}else t.includes("px")&&(n=parseFloat(t));else if(typeof t=="number")return t;return n||14})),ro=({maxValue:e=1,minValue:t=0,axisWidth:n,scaleDomain:r=ht.scaleDomain,scaleRange:i=ht.scaleRange,reverse:o=!1})=>{const a=r[0]??ht.scaleDomain[0],s=r[1]??ht.scaleDomain[1],l=i[0]??ht.scaleRange[0],u=i[1]??ht.scaleRange[1];let c=a==="auto"?t<0?t:0:a==="min"?t:a,f=s==="auto"?e>=0?e:0:s==="max"?e:s;const h=e-(e-c)/(1-l),p=f/u;return o?Ji().domain([h,p]).range([n,0]):Ji().domain([h,p]).range([0,n])},c0=({maxValue:e=1,minValue:t=0,axisWidth:n,scaleDomain:r=ht.scaleDomain,scaleRange:i=ht.scaleRange,reverse:o=!1})=>{t===e&&(e+=1,t-=1);const a=r[0]??ht.scaleDomain[0],s=r[1]??ht.scaleDomain[1],l=i[0]??ht.scaleRange[0],u=i[1]??ht.scaleRange[1];let c=a==="auto"?t<0?t:0:a==="min"?t:a,f=s==="auto"?e>=0?e:0:s==="max"?e:s;const h=e-(e-c)/(1-l),p=f/u;return o?Ji().domain([n,0]).range([h,p]):Ji().domain([0,n]).range([h,p])},f0=({axisLabels:e,axisWidth:t,padding:n=0,reverse:r=!1})=>{let i=e.map((l,u)=>u);r&&i.reverse();const o=i.length-1+n*2,a=t/o,s=a*n-a*.5;return Rg().domain([s,t-s]).range(i)},h0=({computedData$:e,fullDataFormatter$:t,layout$:n})=>s0({computedData:e,fullDataFormatter:t,layout:n}).pipe(dc(async r=>r),Vr(r=>{if(r.fullDataFormatter.separateSeries)return Eg(r.layout,r.fullDataFormatter.container,r.computedData.length);{const i=Eg(r.layout,r.fullDataFormatter.container,1);return r.computedData.map((o,a)=>i[0])}})),p0=({fullDataFormatter$:e,layout$:t})=>{const n=new Xr;function r({xAxis:i,yAxis:o,width:a,height:s}){if(!i||!o)return{translate:[0,0],scale:[1,1],rotate:0,rotateX:0,rotateY:0,value:""};let l=0,u=0,c=0,f=0,h=0;return i.position==="bottom"?o.position==="left"?(f=180,u=s):o.position==="right"?(f=180,h=180,l=a,u=s):(f=180,u=s):i.position==="top"?o.position==="left"||(o.position==="right"?(h=180,l=a):(f=180,u=s)):i.position==="left"?o.position==="bottom"?(c=-90,u=s):o.position==="top"?(c=-90,h=180):(f=180,u=s):i.position==="right"?o.position==="bottom"?(c=-90,f=180,u=s,l=a):o.position==="top"?(c=-90,f=180,h=180,l=a):(f=180,u=s):(f=180,u=s),{translate:[l,u],scale:[1,1],rotate:c,rotateX:f,rotateY:h,value:`translate(${l}px, ${u}px) rotate(${c}deg) rotateX(${f}deg) rotateY(${h}deg)`}}return new pt(i=>(s0({fullDataFormatter:e,layout:t}).pipe(u0(n),dc(async o=>o)).subscribe(o=>{const a=r({xAxis:o.fullDataFormatter.groupAxis,yAxis:o.fullDataFormatter.valueAxis,width:o.layout.width,height:o.layout.height});i.next(a)}),function(){n.next(void 0)}))},d0=({gridAxesTransform$:e})=>e.pipe(Vr(t=>{const n=[0,0],r=[1/t.scale[0],1/t.scale[1]],i=t.rotate*-1,o=t.rotateX*-1,a=t.rotateY*-1;return{translate:n,scale:r,rotate:i,rotateX:o,rotateY:a,value:`translate(${n[0]}px, ${n[1]}px) rotateX(${o}deg) rotateY(${a}deg) rotate(${i}deg)`}}));function JP(e){return`[OrbCharts warn]: ${e.message}`}function eD({columnName:e,expectToBe:t,from:n}){return`Invalid value: '${e}' must be '${t}'
|
6
39
|
|
7
|
-
----> find in '${n}'`}function
|
40
|
+
----> find in '${n}'`}function tD({columnName:e,expectToBe:t,from:n}){return`Value is not correct: '${e}' suppose to be '${t}', it may cause unexpected errors.'
|
8
41
|
|
9
|
-
----> find in '${n}'`}function YT({chartType:t,config:e,initFn:n}){const r=new Lr,i=new WeakMap;let o=()=>{},a;const s=new ig(e.defaultParams),u=new ig({}),l=s.pipe(Il(c=>u.pipe(Sg(r),kr(f=>{try{const{status:h,columnName:p,expectToBe:d}=e.validator(f,{validateColumns:H_});if(h==="error")throw new Error(GT({columnName:p,expectToBe:d,from:`${e.name}.params$`}));h==="warning"&&console.warn(zT({columnName:p,expectToBe:d,from:`${e.name}.params$`}))}catch(h){console.error(OT(h))}return al(f,c)}))),BT(1));return{params$:u,name:e.name,chartType:t,defaultParams:e.defaultParams,layerIndex:e.layerIndex,init(){a&&(o=n(a)??(()=>{}),i.set(a.selection,a))},destroy(){o(),a&&(a.selection.remove(),a=void 0),r.next(void 0)},setPresetParams:c=>{s.next(al(c,e.defaultParams))},setContext:c=>{a=c,a.observer.fullParams$=l}}}const Ii=t=>function(e){return function(n){return class{constructor(){const r=YT({chartType:t,config:e,initFn:n});this.params$=r.params$,this.name=r.name,this.chartType=r.chartType,this.defaultParams=r.defaultParams,this.layerIndex=r.layerIndex,this.init=r.init,this.destroy=r.destroy,this.setPresetParams=r.setPresetParams,this.setContext=r.setContext}}}},Fn=Ii("series"),ue=Ii("grid"),de=Ii("multiGrid"),UT=Ii("noneData"),Cg=Ii("tree");function _t(t,e){return t==null||e==null?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function Lg(t,e){return t==null||e==null?NaN:e<t?-1:e>t?1:e>=t?0:NaN}function Sa(t){let e,n,r;t.length!==2?(e=_t,n=(s,u)=>_t(t(s),u),r=(s,u)=>t(s)-u):(e=t===_t||t===Lg?t:WT,n=t,r=t);function i(s,u,l=0,c=s.length){if(l<c){if(e(u,u)!==0)return c;do{const f=l+c>>>1;n(s[f],u)<0?l=f+1:c=f}while(l<c)}return l}function o(s,u,l=0,c=s.length){if(l<c){if(e(u,u)!==0)return c;do{const f=l+c>>>1;n(s[f],u)<=0?l=f+1:c=f}while(l<c)}return l}function a(s,u,l=0,c=s.length){const f=i(s,u,l,c-1);return f>l&&r(s[f-1],u)>-r(s[f],u)?f-1:f}return{left:i,center:a,right:o}}function WT(){return 0}function Aa(t){return t===null?NaN:+t}function*HT(t,e){if(e===void 0)for(let n of t)n!=null&&(n=+n)>=n&&(yield n);else{let n=-1;for(let r of t)(r=e(r,++n,t))!=null&&(r=+r)>=r&&(yield r)}}const kg=Sa(_t),Rg=kg.right,XT=kg.left,jT=Sa(Aa).center,On=Rg;function VT(t,e){if(!((e=+e)>=0))throw new RangeError("invalid r");let n=t.length;if(!((n=Math.floor(n))>=0))throw new RangeError("invalid length");if(!n||!e)return t;const r=Nl(e),i=t.slice();return r(t,i,0,n,1),r(i,t,0,n,1),r(t,i,0,n,1),t}const Eg=Ig(Nl),qT=Ig(ZT);function Ig(t){return function(e,n,r=n){if(!((n=+n)>=0))throw new RangeError("invalid rx");if(!((r=+r)>=0))throw new RangeError("invalid ry");let{data:i,width:o,height:a}=e;if(!((o=Math.floor(o))>=0))throw new RangeError("invalid width");if(!((a=Math.floor(a!==void 0?a:i.length/o))>=0))throw new RangeError("invalid height");if(!o||!a||!n&&!r)return e;const s=n&&t(n),u=r&&t(r),l=i.slice();return s&&u?(Rr(s,l,i,o,a),Rr(s,i,l,o,a),Rr(s,l,i,o,a),Er(u,i,l,o,a),Er(u,l,i,o,a),Er(u,i,l,o,a)):s?(Rr(s,i,l,o,a),Rr(s,l,i,o,a),Rr(s,i,l,o,a)):u&&(Er(u,i,l,o,a),Er(u,l,i,o,a),Er(u,i,l,o,a)),e}}function Rr(t,e,n,r,i){for(let o=0,a=r*i;o<a;)t(e,n,o,o+=r,1)}function Er(t,e,n,r,i){for(let o=0,a=r*i;o<r;++o)t(e,n,o,o+a,r)}function ZT(t){const e=Nl(t);return(n,r,i,o,a)=>{i<<=2,o<<=2,a<<=2,e(n,r,i+0,o+0,a),e(n,r,i+1,o+1,a),e(n,r,i+2,o+2,a),e(n,r,i+3,o+3,a)}}function Nl(t){const e=Math.floor(t);if(e===t)return KT(t);const n=t-e,r=2*t+1;return(i,o,a,s,u)=>{if(!((s-=u)>=a))return;let l=e*o[a];const c=u*e,f=c+u;for(let h=a,p=a+c;h<p;h+=u)l+=o[Math.min(s,h)];for(let h=a,p=s;h<=p;h+=u)l+=o[Math.min(s,h+c)],i[h]=(l+n*(o[Math.max(a,h-f)]+o[Math.min(s,h+f)]))/r,l-=o[Math.max(a,h-c)]}}function KT(t){const e=2*t+1;return(n,r,i,o,a)=>{if(!((o-=a)>=i))return;let s=t*r[i];const u=a*t;for(let l=i,c=i+u;l<c;l+=a)s+=r[Math.min(o,l)];for(let l=i,c=o;l<=c;l+=a)s+=r[Math.min(o,l+u)],n[l]=s/e,s-=r[Math.max(i,l-u)]}}function Ta(t,e){let n=0;if(e===void 0)for(let r of t)r!=null&&(r=+r)>=r&&++n;else{let r=-1;for(let i of t)(i=e(i,++r,t))!=null&&(i=+i)>=i&&++n}return n}function QT(t){return t.length|0}function JT(t){return!(t>0)}function t3(t){return typeof t!="object"||"length"in t?t:Array.from(t)}function e3(t){return e=>t(...e)}function n3(...t){const e=typeof t[t.length-1]=="function"&&e3(t.pop());t=t.map(t3);const n=t.map(QT),r=t.length-1,i=new Array(r+1).fill(0),o=[];if(r<0||n.some(JT))return o;for(;;){o.push(i.map((s,u)=>t[u][s]));let a=r;for(;++i[a]===n[a];){if(a===0)return e?o.map(e):o;i[a--]=0}}}function r3(t,e){var n=0,r=0;return Float64Array.from(t,e===void 0?i=>n+=+i||0:i=>n+=+e(i,r++,t)||0)}function Ng(t,e){let n=0,r,i=0,o=0;if(e===void 0)for(let a of t)a!=null&&(a=+a)>=a&&(r=a-i,i+=r/++n,o+=r*(a-i));else{let a=-1;for(let s of t)(s=e(s,++a,t))!=null&&(s=+s)>=s&&(r=s-i,i+=r/++n,o+=r*(s-i))}if(n>1)return o/(n-1)}function Bg(t,e){const n=Ng(t,e);return n&&Math.sqrt(n)}function Ni(t,e){let n,r;if(e===void 0)for(const i of t)i!=null&&(n===void 0?i>=i&&(n=r=i):(n>i&&(n=i),r<i&&(r=i)));else{let i=-1;for(let o of t)(o=e(o,++i,t))!=null&&(n===void 0?o>=o&&(n=r=o):(n>o&&(n=o),r<o&&(r=o)))}return[n,r]}class Ct{constructor(){this._partials=new Float64Array(32),this._n=0}add(e){const n=this._partials;let r=0;for(let i=0;i<this._n&&i<32;i++){const o=n[i],a=e+o,s=Math.abs(e)<Math.abs(o)?e-(a-o):o-(a-e);s&&(n[r++]=s),e=a}return n[r]=e,this._n=r+1,this}valueOf(){const e=this._partials;let n=this._n,r,i,o,a=0;if(n>0){for(a=e[--n];n>0&&(r=a,i=e[--n],a=r+i,o=i-(a-r),!o););n>0&&(o<0&&e[n-1]<0||o>0&&e[n-1]>0)&&(i=o*2,r=a+i,i==r-a&&(a=r))}return a}}function i3(t,e){const n=new Ct;if(e===void 0)for(let r of t)(r=+r)&&n.add(r);else{let r=-1;for(let i of t)(i=+e(i,++r,t))&&n.add(i)}return+n}function o3(t,e){const n=new Ct;let r=-1;return Float64Array.from(t,e===void 0?i=>n.add(+i||0):i=>n.add(+e(i,++r,t)||0))}class Bi extends Map{constructor(e,n=Gg){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:n}}),e!=null)for(const[r,i]of e)this.set(r,i)}get(e){return super.get(Bl(this,e))}has(e){return super.has(Bl(this,e))}set(e,n){return super.set(Fg(this,e),n)}delete(e){return super.delete(Og(this,e))}}class Gn extends Set{constructor(e,n=Gg){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:n}}),e!=null)for(const r of e)this.add(r)}has(e){return super.has(Bl(this,e))}add(e){return super.add(Fg(this,e))}delete(e){return super.delete(Og(this,e))}}function Bl({_intern:t,_key:e},n){const r=e(n);return t.has(r)?t.get(r):n}function Fg({_intern:t,_key:e},n){const r=e(n);return t.has(r)?t.get(r):(t.set(r,n),n)}function Og({_intern:t,_key:e},n){const r=e(n);return t.has(r)&&(n=t.get(r),t.delete(r)),n}function Gg(t){return t!==null&&typeof t=="object"?t.valueOf():t}function Ir(t){return t}function zg(t,...e){return Nr(t,Ir,Ir,e)}function Yg(t,...e){return Nr(t,Array.from,Ir,e)}function Ug(t,e){for(let n=1,r=e.length;n<r;++n)t=t.flatMap(i=>i.pop().map(([o,a])=>[...i,o,a]));return t}function a3(t,...e){return Ug(Yg(t,...e),e)}function s3(t,e,...n){return Ug(Hg(t,e,...n),n)}function Wg(t,e,...n){return Nr(t,Ir,e,n)}function Hg(t,e,...n){return Nr(t,Array.from,e,n)}function u3(t,...e){return Nr(t,Ir,Xg,e)}function l3(t,...e){return Nr(t,Array.from,Xg,e)}function Xg(t){if(t.length!==1)throw new Error("duplicate key");return t[0]}function Nr(t,e,n,r){return function i(o,a){if(a>=r.length)return n(o);const s=new Bi,u=r[a++];let l=-1;for(const c of o){const f=u(c,++l,o),h=s.get(f);h?h.push(c):s.set(f,[c])}for(const[c,f]of s)s.set(c,i(f,a));return e(s)}(t,0)}function jg(t,e){return Array.from(e,n=>t[n])}function Fl(t,...e){if(typeof t[Symbol.iterator]!="function")throw new TypeError("values is not iterable");t=Array.from(t);let[n]=e;if(n&&n.length!==2||e.length>1){const r=Uint32Array.from(t,(i,o)=>o);return e.length>1?(e=e.map(i=>t.map(i)),r.sort((i,o)=>{for(const a of e){const s=Br(a[i],a[o]);if(s)return s}})):(n=t.map(n),r.sort((i,o)=>Br(n[i],n[o]))),jg(t,r)}return t.sort(Ol(n))}function Ol(t=_t){if(t===_t)return Br;if(typeof t!="function")throw new TypeError("compare is not a function");return(e,n)=>{const r=t(e,n);return r||r===0?r:(t(n,n)===0)-(t(e,e)===0)}}function Br(t,e){return(t==null||!(t>=t))-(e==null||!(e>=e))||(t<e?-1:t>e?1:0)}function c3(t,e,n){return(e.length!==2?Fl(Wg(t,e,n),([r,i],[o,a])=>_t(i,a)||_t(r,o)):Fl(zg(t,n),([r,i],[o,a])=>e(i,a)||_t(r,o))).map(([r])=>r)}var f3=Array.prototype,h3=f3.slice;function Gl(t){return()=>t}const p3=Math.sqrt(50),d3=Math.sqrt(10),g3=Math.sqrt(2);function Pa(t,e,n){const r=(e-t)/Math.max(0,n),i=Math.floor(Math.log10(r)),o=r/Math.pow(10,i),a=o>=p3?10:o>=d3?5:o>=g3?2:1;let s,u,l;return i<0?(l=Math.pow(10,-i)/a,s=Math.round(t*l),u=Math.round(e*l),s/l<t&&++s,u/l>e&&--u,l=-l):(l=Math.pow(10,i)*a,s=Math.round(t/l),u=Math.round(e/l),s*l<t&&++s,u*l>e&&--u),u<s&&.5<=n&&n<2?Pa(t,e,n*2):[s,u,l]}function zn(t,e,n){if(e=+e,t=+t,n=+n,!(n>0))return[];if(t===e)return[t];const r=e<t,[i,o,a]=r?Pa(e,t,n):Pa(t,e,n);if(!(o>=i))return[];const s=o-i+1,u=new Array(s);if(r)if(a<0)for(let l=0;l<s;++l)u[l]=(o-l)/-a;else for(let l=0;l<s;++l)u[l]=(o-l)*a;else if(a<0)for(let l=0;l<s;++l)u[l]=(i+l)/-a;else for(let l=0;l<s;++l)u[l]=(i+l)*a;return u}function Yn(t,e,n){return e=+e,t=+t,n=+n,Pa(t,e,n)[2]}function Ma(t,e,n){e=+e,t=+t,n=+n;const r=e<t,i=r?Yn(e,t,n):Yn(t,e,n);return(r?-1:1)*(i<0?1/-i:i)}function zl(t,e,n){let r;for(;;){const i=Yn(t,e,n);if(i===r||i===0||!isFinite(i))return[t,e];i>0?(t=Math.floor(t/i)*i,e=Math.ceil(e/i)*i):i<0&&(t=Math.ceil(t*i)/i,e=Math.floor(e*i)/i),r=i}}function Yl(t){return Math.max(1,Math.ceil(Math.log(Ta(t))/Math.LN2)+1)}function Vg(){var t=Ir,e=Ni,n=Yl;function r(i){Array.isArray(i)||(i=Array.from(i));var o,a=i.length,s,u,l=new Array(a);for(o=0;o<a;++o)l[o]=t(i[o],o,i);var c=e(l),f=c[0],h=c[1],p=n(l,f,h);if(!Array.isArray(p)){const v=h,x=+p;if(e===Ni&&([f,h]=zl(f,h,x)),p=zn(f,h,x),p[0]<=f&&(u=Yn(f,h,x)),p[p.length-1]>=h)if(v>=h&&e===Ni){const S=Yn(f,h,x);isFinite(S)&&(S>0?h=(Math.floor(h/S)+1)*S:S<0&&(h=(Math.ceil(h*-S)+1)/-S))}else p.pop()}for(var d=p.length,g=0,m=d;p[g]<=f;)++g;for(;p[m-1]>h;)--m;(g||m<d)&&(p=p.slice(g,m),d=m-g);var y=new Array(d+1),b;for(o=0;o<=d;++o)b=y[o]=[],b.x0=o>0?p[o-1]:f,b.x1=o<d?p[o]:h;if(isFinite(u)){if(u>0)for(o=0;o<a;++o)(s=l[o])!=null&&f<=s&&s<=h&&y[Math.min(d,Math.floor((s-f)/u))].push(i[o]);else if(u<0){for(o=0;o<a;++o)if((s=l[o])!=null&&f<=s&&s<=h){const v=Math.floor((f-s)*u);y[Math.min(d,v+(p[v]<=s))].push(i[o])}}}else for(o=0;o<a;++o)(s=l[o])!=null&&f<=s&&s<=h&&y[On(p,s,0,d)].push(i[o]);return y}return r.value=function(i){return arguments.length?(t=typeof i=="function"?i:Gl(i),r):t},r.domain=function(i){return arguments.length?(e=typeof i=="function"?i:Gl([i[0],i[1]]),r):e},r.thresholds=function(i){return arguments.length?(n=typeof i=="function"?i:Gl(Array.isArray(i)?h3.call(i):i),r):n},r}function Fi(t,e){let n;if(e===void 0)for(const r of t)r!=null&&(n<r||n===void 0&&r>=r)&&(n=r);else{let r=-1;for(let i of t)(i=e(i,++r,t))!=null&&(n<i||n===void 0&&i>=i)&&(n=i)}return n}function Ul(t,e){let n,r=-1,i=-1;if(e===void 0)for(const o of t)++i,o!=null&&(n<o||n===void 0&&o>=o)&&(n=o,r=i);else for(let o of t)(o=e(o,++i,t))!=null&&(n<o||n===void 0&&o>=o)&&(n=o,r=i);return r}function Da(t,e){let n;if(e===void 0)for(const r of t)r!=null&&(n>r||n===void 0&&r>=r)&&(n=r);else{let r=-1;for(let i of t)(i=e(i,++r,t))!=null&&(n>i||n===void 0&&i>=i)&&(n=i)}return n}function Wl(t,e){let n,r=-1,i=-1;if(e===void 0)for(const o of t)++i,o!=null&&(n>o||n===void 0&&o>=o)&&(n=o,r=i);else for(let o of t)(o=e(o,++i,t))!=null&&(n>o||n===void 0&&o>=o)&&(n=o,r=i);return r}function Ca(t,e,n=0,r=1/0,i){if(e=Math.floor(e),n=Math.floor(Math.max(0,n)),r=Math.floor(Math.min(t.length-1,r)),!(n<=e&&e<=r))return t;for(i=i===void 0?Br:Ol(i);r>n;){if(r-n>600){const u=r-n+1,l=e-n+1,c=Math.log(u),f=.5*Math.exp(2*c/3),h=.5*Math.sqrt(c*f*(u-f)/u)*(l-u/2<0?-1:1),p=Math.max(n,Math.floor(e-l*f/u+h)),d=Math.min(r,Math.floor(e+(u-l)*f/u+h));Ca(t,e,p,d,i)}const o=t[e];let a=n,s=r;for(Oi(t,n,e),i(t[r],o)>0&&Oi(t,n,r);a<s;){for(Oi(t,a,s),++a,--s;i(t[a],o)<0;)++a;for(;i(t[s],o)>0;)--s}i(t[n],o)===0?Oi(t,n,s):(++s,Oi(t,s,r)),s<=e&&(n=s+1),e<=s&&(r=s-1)}return t}function Oi(t,e,n){const r=t[e];t[e]=t[n],t[n]=r}function qg(t,e=_t){let n,r=!1;if(e.length===1){let i;for(const o of t){const a=e(o);(r?_t(a,i)>0:_t(a,a)===0)&&(n=o,i=a,r=!0)}}else for(const i of t)(r?e(i,n)>0:e(i,i)===0)&&(n=i,r=!0);return n}function Gi(t,e,n){if(t=Float64Array.from(HT(t,n)),!(!(r=t.length)||isNaN(e=+e))){if(e<=0||r<2)return Da(t);if(e>=1)return Fi(t);var r,i=(r-1)*e,o=Math.floor(i),a=Fi(Ca(t,o).subarray(0,o+1)),s=Da(t.subarray(o+1));return a+(s-a)*(i-o)}}function Zg(t,e,n=Aa){if(!(!(r=t.length)||isNaN(e=+e))){if(e<=0||r<2)return+n(t[0],0,t);if(e>=1)return+n(t[r-1],r-1,t);var r,i=(r-1)*e,o=Math.floor(i),a=+n(t[o],o,t),s=+n(t[o+1],o+1,t);return a+(s-a)*(i-o)}}function Kg(t,e,n=Aa){if(!isNaN(e=+e)){if(r=Float64Array.from(t,(s,u)=>Aa(n(t[u],u,t))),e<=0)return Wl(r);if(e>=1)return Ul(r);var r,i=Uint32Array.from(t,(s,u)=>u),o=r.length-1,a=Math.floor(o*e);return Ca(i,a,0,o,(s,u)=>Br(r[s],r[u])),a=qg(i.subarray(0,a+1),s=>r[s]),a>=0?a:-1}}function m3(t,e,n){const r=Ta(t),i=Gi(t,.75)-Gi(t,.25);return r&&i?Math.ceil((n-e)/(2*i*Math.pow(r,-1/3))):1}function y3(t,e,n){const r=Ta(t),i=Bg(t);return r&&i?Math.ceil((n-e)*Math.cbrt(r)/(3.49*i)):1}function b3(t,e){let n=0,r=0;if(e===void 0)for(let i of t)i!=null&&(i=+i)>=i&&(++n,r+=i);else{let i=-1;for(let o of t)(o=e(o,++i,t))!=null&&(o=+o)>=o&&(++n,r+=o)}if(n)return r/n}function x3(t,e){return Gi(t,.5,e)}function v3(t,e){return Kg(t,.5,e)}function*_3(t){for(const e of t)yield*e}function Hl(t){return Array.from(_3(t))}function w3(t,e){const n=new Bi;if(e===void 0)for(let o of t)o!=null&&o>=o&&n.set(o,(n.get(o)||0)+1);else{let o=-1;for(let a of t)(a=e(a,++o,t))!=null&&a>=a&&n.set(a,(n.get(a)||0)+1)}let r,i=0;for(const[o,a]of n)a>i&&(i=a,r=o);return r}function $3(t,e=S3){const n=[];let r,i=!1;for(const o of t)i&&n.push(e(r,o)),r=o,i=!0;return n}function S3(t,e){return[t,e]}function pn(t,e,n){t=+t,e=+e,n=(i=arguments.length)<2?(e=t,t=0,1):i<3?1:+n;for(var r=-1,i=Math.max(0,Math.ceil((e-t)/n))|0,o=new Array(i);++r<i;)o[r]=t+r*n;return o}function A3(t,e=_t){if(typeof t[Symbol.iterator]!="function")throw new TypeError("values is not iterable");let n=Array.from(t);const r=new Float64Array(n.length);e.length!==2&&(n=n.map(e),e=_t);const i=(s,u)=>e(n[s],n[u]);let o,a;return t=Uint32Array.from(n,(s,u)=>u),t.sort(e===_t?(s,u)=>Br(n[s],n[u]):Ol(i)),t.forEach((s,u)=>{const l=i(s,o===void 0?s:o);l>=0?((o===void 0||l>0)&&(o=s,a=u),r[s]=a):r[s]=NaN}),r}function T3(t,e=_t){let n,r=!1;if(e.length===1){let i;for(const o of t){const a=e(o);(r?_t(a,i)<0:_t(a,a)===0)&&(n=o,i=a,r=!0)}}else for(const i of t)(r?e(i,n)<0:e(i,i)===0)&&(n=i,r=!0);return n}function Qg(t,e=_t){if(e.length===1)return Wl(t,e);let n,r=-1,i=-1;for(const o of t)++i,(r<0?e(o,o)===0:e(o,n)<0)&&(n=o,r=i);return r}function P3(t,e=_t){if(e.length===1)return Ul(t,e);let n,r=-1,i=-1;for(const o of t)++i,(r<0?e(o,o)===0:e(o,n)>0)&&(n=o,r=i);return r}function M3(t,e){const n=Qg(t,e);return n<0?void 0:n}const D3=Jg(Math.random);function Jg(t){return function(n,r=0,i=n.length){let o=i-(r=+r);for(;o;){const a=t()*o--|0,s=n[o+r];n[o+r]=n[a+r],n[a+r]=s}return n}}function t0(t,e){let n=0;if(e===void 0)for(let r of t)(r=+r)&&(n+=r);else{let r=-1;for(let i of t)(i=+e(i,++r,t))&&(n+=i)}return n}function e0(t){if(!(o=t.length))return[];for(var e=-1,n=Da(t,C3),r=new Array(n);++e<n;)for(var i=-1,o,a=r[e]=new Array(o);++i<o;)a[i]=t[i][e];return r}function C3(t){return t.length}function L3(){return e0(arguments)}function k3(t,e){if(typeof e!="function")throw new TypeError("test is not a function");let n=-1;for(const r of t)if(!e(r,++n,t))return!1;return!0}function R3(t,e){if(typeof e!="function")throw new TypeError("test is not a function");let n=-1;for(const r of t)if(e(r,++n,t))return!0;return!1}function E3(t,e){if(typeof e!="function")throw new TypeError("test is not a function");const n=[];let r=-1;for(const i of t)e(i,++r,t)&&n.push(i);return n}function I3(t,e){if(typeof t[Symbol.iterator]!="function")throw new TypeError("values is not iterable");if(typeof e!="function")throw new TypeError("mapper is not a function");return Array.from(t,(n,r)=>e(n,r,t))}function N3(t,e,n){if(typeof e!="function")throw new TypeError("reducer is not a function");const r=t[Symbol.iterator]();let i,o,a=-1;if(arguments.length<3){if({done:i,value:n}=r.next(),i)return;++a}for(;{done:i,value:o}=r.next(),!i;)n=e(n,o,++a,t);return n}function B3(t){if(typeof t[Symbol.iterator]!="function")throw new TypeError("values is not iterable");return Array.from(t).reverse()}function F3(t,...e){t=new Gn(t);for(const n of e)for(const r of n)t.delete(r);return t}function O3(t,e){const n=e[Symbol.iterator](),r=new Gn;for(const i of t){if(r.has(i))return!1;let o,a;for(;({value:o,done:a}=n.next())&&!a;){if(Object.is(i,o))return!1;r.add(o)}}return!0}function G3(t,...e){t=new Gn(t),e=e.map(z3);t:for(const n of t)for(const r of e)if(!r.has(n)){t.delete(n);continue t}return t}function z3(t){return t instanceof Gn?t:new Gn(t)}function n0(t,e){const n=t[Symbol.iterator](),r=new Set;for(const i of e){const o=r0(i);if(r.has(o))continue;let a,s;for(;{value:a,done:s}=n.next();){if(s)return!1;const u=r0(a);if(r.add(u),Object.is(o,u))break}}return!0}function r0(t){return t!==null&&typeof t=="object"?t.valueOf():t}function Y3(t,e){return n0(e,t)}function U3(...t){const e=new Gn;for(const n of t)for(const r of n)e.add(r);return e}function W3(t){return t}var La=1,ka=2,Xl=3,zi=4,i0=1e-6;function H3(t){return"translate("+t+",0)"}function X3(t){return"translate(0,"+t+")"}function j3(t){return e=>+t(e)}function V3(t,e){return e=Math.max(0,t.bandwidth()-e*2)/2,t.round()&&(e=Math.round(e)),n=>+t(n)+e}function q3(){return!this.__axis}function Ra(t,e){var n=[],r=null,i=null,o=6,a=6,s=3,u=typeof window<"u"&&window.devicePixelRatio>1?0:.5,l=t===La||t===zi?-1:1,c=t===zi||t===ka?"x":"y",f=t===La||t===Xl?H3:X3;function h(p){var d=r??(e.ticks?e.ticks.apply(e,n):e.domain()),g=i??(e.tickFormat?e.tickFormat.apply(e,n):W3),m=Math.max(o,0)+s,y=e.range(),b=+y[0]+u,v=+y[y.length-1]+u,x=(e.bandwidth?V3:j3)(e.copy(),u),S=p.selection?p.selection():p,$=S.selectAll(".domain").data([null]),R=S.selectAll(".tick").data(d,e).order(),T=R.exit(),w=R.enter().append("g").attr("class","tick"),P=R.select("line"),_=R.select("text");$=$.merge($.enter().insert("path",".tick").attr("class","domain").attr("stroke","currentColor")),R=R.merge(w),P=P.merge(w.append("line").attr("stroke","currentColor").attr(c+"2",l*o)),_=_.merge(w.append("text").attr("fill","currentColor").attr(c,l*m).attr("dy",t===La?"0em":t===Xl?"0.71em":"0.32em")),p!==S&&($=$.transition(p),R=R.transition(p),P=P.transition(p),_=_.transition(p),T=T.transition(p).attr("opacity",i0).attr("transform",function(N){return isFinite(N=x(N))?f(N+u):this.getAttribute("transform")}),w.attr("opacity",i0).attr("transform",function(N){var D=this.parentNode.__axis;return f((D&&isFinite(D=D(N))?D:x(N))+u)})),T.remove(),$.attr("d",t===zi||t===ka?a?"M"+l*a+","+b+"H"+u+"V"+v+"H"+l*a:"M"+u+","+b+"V"+v:a?"M"+b+","+l*a+"V"+u+"H"+v+"V"+l*a:"M"+b+","+u+"H"+v),R.attr("opacity",1).attr("transform",function(N){return f(x(N)+u)}),P.attr(c+"2",l*o),_.attr(c,l*m).text(g),S.filter(q3).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===ka?"start":t===zi?"end":"middle"),S.each(function(){this.__axis=x})}return h.scale=function(p){return arguments.length?(e=p,h):e},h.ticks=function(){return n=Array.from(arguments),h},h.tickArguments=function(p){return arguments.length?(n=p==null?[]:Array.from(p),h):n.slice()},h.tickValues=function(p){return arguments.length?(r=p==null?null:Array.from(p),h):r&&r.slice()},h.tickFormat=function(p){return arguments.length?(i=p,h):i},h.tickSize=function(p){return arguments.length?(o=a=+p,h):o},h.tickSizeInner=function(p){return arguments.length?(o=+p,h):o},h.tickSizeOuter=function(p){return arguments.length?(a=+p,h):a},h.tickPadding=function(p){return arguments.length?(s=+p,h):s},h.offset=function(p){return arguments.length?(u=+p,h):u},h}function Z3(t){return Ra(La,t)}function K3(t){return Ra(ka,t)}function o0(t){return Ra(Xl,t)}function a0(t){return Ra(zi,t)}var Q3={value:()=>{}};function Un(){for(var t=0,e=arguments.length,n={},r;t<e;++t){if(!(r=arguments[t]+"")||r in n||/[\s.]/.test(r))throw new Error("illegal type: "+r);n[r]=[]}return new Ea(n)}function Ea(t){this._=t}function J3(t,e){return t.trim().split(/^|\s+/).map(function(n){var r="",i=n.indexOf(".");if(i>=0&&(r=n.slice(i+1),n=n.slice(0,i)),n&&!e.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:r}})}Ea.prototype=Un.prototype={constructor:Ea,on:function(t,e){var n=this._,r=J3(t+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(t=r[o]).type)&&(i=t5(n[i],t.name)))return i;return}if(e!=null&&typeof e!="function")throw new Error("invalid callback: "+e);for(;++o<a;)if(i=(t=r[o]).type)n[i]=s0(n[i],t.name,e);else if(e==null)for(i in n)n[i]=s0(n[i],t.name,null);return this},copy:function(){var t={},e=this._;for(var n in e)t[n]=e[n].slice();return new Ea(t)},call:function(t,e){if((i=arguments.length-2)>0)for(var n=new Array(i),r=0,i,o;r<i;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(o=this._[t],r=0,i=o.length;r<i;++r)o[r].value.apply(e,n)},apply:function(t,e,n){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var r=this._[t],i=0,o=r.length;i<o;++i)r[i].value.apply(e,n)}};function t5(t,e){for(var n=0,r=t.length,i;n<r;++n)if((i=t[n]).name===e)return i.value}function s0(t,e,n){for(var r=0,i=t.length;r<i;++r)if(t[r].name===e){t[r]=Q3,t=t.slice(0,r).concat(t.slice(r+1));break}return n!=null&&t.push({name:e,value:n}),t}var jl="http://www.w3.org/1999/xhtml";const Vl={svg:"http://www.w3.org/2000/svg",xhtml:jl,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Yi(t){var e=t+="",n=e.indexOf(":");return n>=0&&(e=t.slice(0,n))!=="xmlns"&&(t=t.slice(n+1)),Vl.hasOwnProperty(e)?{space:Vl[e],local:t}:t}function e5(t){return function(){var e=this.ownerDocument,n=this.namespaceURI;return n===jl&&e.documentElement.namespaceURI===jl?e.createElement(t):e.createElementNS(n,t)}}function n5(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}function Ia(t){var e=Yi(t);return(e.local?n5:e5)(e)}function r5(){}function Na(t){return t==null?r5:function(){return this.querySelector(t)}}function i5(t){typeof t!="function"&&(t=Na(t));for(var e=this._groups,n=e.length,r=new Array(n),i=0;i<n;++i)for(var o=e[i],a=o.length,s=r[i]=new Array(a),u,l,c=0;c<a;++c)(u=o[c])&&(l=t.call(u,u.__data__,c,o))&&("__data__"in u&&(l.__data__=u.__data__),s[c]=l);return new Wt(r,this._parents)}function u0(t){return t==null?[]:Array.isArray(t)?t:Array.from(t)}function o5(){return[]}function ql(t){return t==null?o5:function(){return this.querySelectorAll(t)}}function a5(t){return function(){return u0(t.apply(this,arguments))}}function s5(t){typeof t=="function"?t=a5(t):t=ql(t);for(var e=this._groups,n=e.length,r=[],i=[],o=0;o<n;++o)for(var a=e[o],s=a.length,u,l=0;l<s;++l)(u=a[l])&&(r.push(t.call(u,u.__data__,l,a)),i.push(u));return new Wt(r,i)}function Zl(t){return function(){return this.matches(t)}}function l0(t){return function(e){return e.matches(t)}}var u5=Array.prototype.find;function l5(t){return function(){return u5.call(this.children,t)}}function c5(){return this.firstElementChild}function f5(t){return this.select(t==null?c5:l5(typeof t=="function"?t:l0(t)))}var h5=Array.prototype.filter;function p5(){return Array.from(this.children)}function d5(t){return function(){return h5.call(this.children,t)}}function g5(t){return this.selectAll(t==null?p5:d5(typeof t=="function"?t:l0(t)))}function m5(t){typeof t!="function"&&(t=Zl(t));for(var e=this._groups,n=e.length,r=new Array(n),i=0;i<n;++i)for(var o=e[i],a=o.length,s=r[i]=[],u,l=0;l<a;++l)(u=o[l])&&t.call(u,u.__data__,l,o)&&s.push(u);return new Wt(r,this._parents)}function c0(t){return new Array(t.length)}function y5(){return new Wt(this._enter||this._groups.map(c0),this._parents)}function Ba(t,e){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=e}Ba.prototype={constructor:Ba,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,e){return this._parent.insertBefore(t,e)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};function b5(t){return function(){return t}}function x5(t,e,n,r,i,o){for(var a=0,s,u=e.length,l=o.length;a<l;++a)(s=e[a])?(s.__data__=o[a],r[a]=s):n[a]=new Ba(t,o[a]);for(;a<u;++a)(s=e[a])&&(i[a]=s)}function v5(t,e,n,r,i,o,a){var s,u,l=new Map,c=e.length,f=o.length,h=new Array(c),p;for(s=0;s<c;++s)(u=e[s])&&(h[s]=p=a.call(u,u.__data__,s,e)+"",l.has(p)?i[s]=u:l.set(p,u));for(s=0;s<f;++s)p=a.call(t,o[s],s,o)+"",(u=l.get(p))?(r[s]=u,u.__data__=o[s],l.delete(p)):n[s]=new Ba(t,o[s]);for(s=0;s<c;++s)(u=e[s])&&l.get(h[s])===u&&(i[s]=u)}function _5(t){return t.__data__}function w5(t,e){if(!arguments.length)return Array.from(this,_5);var n=e?v5:x5,r=this._parents,i=this._groups;typeof t!="function"&&(t=b5(t));for(var o=i.length,a=new Array(o),s=new Array(o),u=new Array(o),l=0;l<o;++l){var c=r[l],f=i[l],h=f.length,p=$5(t.call(c,c&&c.__data__,l,r)),d=p.length,g=s[l]=new Array(d),m=a[l]=new Array(d),y=u[l]=new Array(h);n(c,f,g,m,y,p,e);for(var b=0,v=0,x,S;b<d;++b)if(x=g[b]){for(b>=v&&(v=b+1);!(S=m[v])&&++v<d;);x._next=S||null}}return a=new Wt(a,r),a._enter=s,a._exit=u,a}function $5(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function S5(){return new Wt(this._exit||this._groups.map(c0),this._parents)}function A5(t,e,n){var r=this.enter(),i=this,o=this.exit();return typeof t=="function"?(r=t(r),r&&(r=r.selection())):r=r.append(t+""),e!=null&&(i=e(i),i&&(i=i.selection())),n==null?o.remove():n(o),r&&i?r.merge(i).order():i}function T5(t){for(var e=t.selection?t.selection():t,n=this._groups,r=e._groups,i=n.length,o=r.length,a=Math.min(i,o),s=new Array(i),u=0;u<a;++u)for(var l=n[u],c=r[u],f=l.length,h=s[u]=new Array(f),p,d=0;d<f;++d)(p=l[d]||c[d])&&(h[d]=p);for(;u<i;++u)s[u]=n[u];return new Wt(s,this._parents)}function P5(){for(var t=this._groups,e=-1,n=t.length;++e<n;)for(var r=t[e],i=r.length-1,o=r[i],a;--i>=0;)(a=r[i])&&(o&&a.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(a,o),o=a);return this}function M5(t){t||(t=D5);function e(f,h){return f&&h?t(f.__data__,h.__data__):!f-!h}for(var n=this._groups,r=n.length,i=new Array(r),o=0;o<r;++o){for(var a=n[o],s=a.length,u=i[o]=new Array(s),l,c=0;c<s;++c)(l=a[c])&&(u[c]=l);u.sort(e)}return new Wt(i,this._parents).order()}function D5(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function C5(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this}function L5(){return Array.from(this)}function k5(){for(var t=this._groups,e=0,n=t.length;e<n;++e)for(var r=t[e],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null}function R5(){let t=0;for(const e of this)++t;return t}function E5(){return!this.node()}function I5(t){for(var e=this._groups,n=0,r=e.length;n<r;++n)for(var i=e[n],o=0,a=i.length,s;o<a;++o)(s=i[o])&&t.call(s,s.__data__,o,i);return this}function N5(t){return function(){this.removeAttribute(t)}}function B5(t){return function(){this.removeAttributeNS(t.space,t.local)}}function F5(t,e){return function(){this.setAttribute(t,e)}}function O5(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function G5(t,e){return function(){var n=e.apply(this,arguments);n==null?this.removeAttribute(t):this.setAttribute(t,n)}}function z5(t,e){return function(){var n=e.apply(this,arguments);n==null?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,n)}}function Y5(t,e){var n=Yi(t);if(arguments.length<2){var r=this.node();return n.local?r.getAttributeNS(n.space,n.local):r.getAttribute(n)}return this.each((e==null?n.local?B5:N5:typeof e=="function"?n.local?z5:G5:n.local?O5:F5)(n,e))}function Kl(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function U5(t){return function(){this.style.removeProperty(t)}}function W5(t,e,n){return function(){this.style.setProperty(t,e,n)}}function H5(t,e,n){return function(){var r=e.apply(this,arguments);r==null?this.style.removeProperty(t):this.style.setProperty(t,r,n)}}function X5(t,e,n){return arguments.length>1?this.each((e==null?U5:typeof e=="function"?H5:W5)(t,e,n??"")):Wn(this.node(),t)}function Wn(t,e){return t.style.getPropertyValue(e)||Kl(t).getComputedStyle(t,null).getPropertyValue(e)}function j5(t){return function(){delete this[t]}}function V5(t,e){return function(){this[t]=e}}function q5(t,e){return function(){var n=e.apply(this,arguments);n==null?delete this[t]:this[t]=n}}function Z5(t,e){return arguments.length>1?this.each((e==null?j5:typeof e=="function"?q5:V5)(t,e)):this.node()[t]}function f0(t){return t.trim().split(/^|\s+/)}function Ql(t){return t.classList||new h0(t)}function h0(t){this._node=t,this._names=f0(t.getAttribute("class")||"")}h0.prototype={add:function(t){var e=this._names.indexOf(t);e<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var e=this._names.indexOf(t);e>=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};function p0(t,e){for(var n=Ql(t),r=-1,i=e.length;++r<i;)n.add(e[r])}function d0(t,e){for(var n=Ql(t),r=-1,i=e.length;++r<i;)n.remove(e[r])}function K5(t){return function(){p0(this,t)}}function Q5(t){return function(){d0(this,t)}}function J5(t,e){return function(){(e.apply(this,arguments)?p0:d0)(this,t)}}function t6(t,e){var n=f0(t+"");if(arguments.length<2){for(var r=Ql(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof e=="function"?J5:e?K5:Q5)(n,e))}function e6(){this.textContent=""}function n6(t){return function(){this.textContent=t}}function r6(t){return function(){var e=t.apply(this,arguments);this.textContent=e??""}}function i6(t){return arguments.length?this.each(t==null?e6:(typeof t=="function"?r6:n6)(t)):this.node().textContent}function o6(){this.innerHTML=""}function a6(t){return function(){this.innerHTML=t}}function s6(t){return function(){var e=t.apply(this,arguments);this.innerHTML=e??""}}function u6(t){return arguments.length?this.each(t==null?o6:(typeof t=="function"?s6:a6)(t)):this.node().innerHTML}function l6(){this.nextSibling&&this.parentNode.appendChild(this)}function c6(){return this.each(l6)}function f6(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function h6(){return this.each(f6)}function p6(t){var e=typeof t=="function"?t:Ia(t);return this.select(function(){return this.appendChild(e.apply(this,arguments))})}function d6(){return null}function g6(t,e){var n=typeof t=="function"?t:Ia(t),r=e==null?d6:typeof e=="function"?e:Na(e);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function m6(){var t=this.parentNode;t&&t.removeChild(this)}function y6(){return this.each(m6)}function b6(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function x6(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function v6(t){return this.select(t?x6:b6)}function _6(t){return arguments.length?this.property("__data__",t):this.node().__data__}function w6(t){return function(e){t.call(this,e,this.__data__)}}function $6(t){return t.trim().split(/^|\s+/).map(function(e){var n="",r=e.indexOf(".");return r>=0&&(n=e.slice(r+1),e=e.slice(0,r)),{type:e,name:n}})}function S6(t){return function(){var e=this.__on;if(e){for(var n=0,r=-1,i=e.length,o;n<i;++n)o=e[n],(!t.type||o.type===t.type)&&o.name===t.name?this.removeEventListener(o.type,o.listener,o.options):e[++r]=o;++r?e.length=r:delete this.__on}}}function A6(t,e,n){return function(){var r=this.__on,i,o=w6(e);if(r){for(var a=0,s=r.length;a<s;++a)if((i=r[a]).type===t.type&&i.name===t.name){this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=o,i.options=n),i.value=e;return}}this.addEventListener(t.type,o,n),i={type:t.type,name:t.name,value:e,listener:o,options:n},r?r.push(i):this.__on=[i]}}function T6(t,e,n){var r=$6(t+""),i,o=r.length,a;if(arguments.length<2){var s=this.node().__on;if(s){for(var u=0,l=s.length,c;u<l;++u)for(i=0,c=s[u];i<o;++i)if((a=r[i]).type===c.type&&a.name===c.name)return c.value}return}for(s=e?A6:S6,i=0;i<o;++i)this.each(s(r[i],e,n));return this}function g0(t,e,n){var r=Kl(t),i=r.CustomEvent;typeof i=="function"?i=new i(e,n):(i=r.document.createEvent("Event"),n?(i.initEvent(e,n.bubbles,n.cancelable),i.detail=n.detail):i.initEvent(e,!1,!1)),t.dispatchEvent(i)}function P6(t,e){return function(){return g0(this,t,e)}}function M6(t,e){return function(){return g0(this,t,e.apply(this,arguments))}}function D6(t,e){return this.each((typeof e=="function"?M6:P6)(t,e))}function*C6(){for(var t=this._groups,e=0,n=t.length;e<n;++e)for(var r=t[e],i=0,o=r.length,a;i<o;++i)(a=r[i])&&(yield a)}var Jl=[null];function Wt(t,e){this._groups=t,this._parents=e}function Hn(){return new Wt([[document.documentElement]],Jl)}function L6(){return this}Wt.prototype=Hn.prototype={constructor:Wt,select:i5,selectAll:s5,selectChild:f5,selectChildren:g5,filter:m5,data:w5,enter:y5,exit:S5,join:A5,merge:T5,selection:L6,order:P5,sort:M5,call:C5,nodes:L5,node:k5,size:R5,empty:E5,each:I5,attr:Y5,style:X5,property:Z5,classed:t6,text:i6,html:u6,raise:c6,lower:h6,append:p6,insert:g6,remove:y6,clone:v6,datum:_6,on:T6,dispatch:D6,[Symbol.iterator]:C6};function V(t){return typeof t=="string"?new Wt([[document.querySelector(t)]],[document.documentElement]):new Wt([[t]],Jl)}function k6(t){return V(Ia(t).call(document.documentElement))}var R6=0;function m0(){return new tc}function tc(){this._="@"+(++R6).toString(36)}tc.prototype=m0.prototype={constructor:tc,get:function(t){for(var e=this._;!(e in t);)if(!(t=t.parentNode))return;return t[e]},set:function(t,e){return t[this._]=e},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}};function y0(t){let e;for(;e=t.sourceEvent;)t=e;return t}function le(t,e){if(t=y0(t),e===void 0&&(e=t.currentTarget),e){var n=e.ownerSVGElement||e;if(n.createSVGPoint){var r=n.createSVGPoint();return r.x=t.clientX,r.y=t.clientY,r=r.matrixTransform(e.getScreenCTM().inverse()),[r.x,r.y]}if(e.getBoundingClientRect){var i=e.getBoundingClientRect();return[t.clientX-i.left-e.clientLeft,t.clientY-i.top-e.clientTop]}}return[t.pageX,t.pageY]}function E6(t,e){return t.target&&(t=y0(t),e===void 0&&(e=t.currentTarget),t=t.touches||[t]),Array.from(t,n=>le(n,e))}function I6(t){return typeof t=="string"?new Wt([document.querySelectorAll(t)],[document.documentElement]):new Wt([u0(t)],Jl)}const N6={passive:!1},Ui={capture:!0,passive:!1};function ec(t){t.stopImmediatePropagation()}function Fr(t){t.preventDefault(),t.stopImmediatePropagation()}function Fa(t){var e=t.document.documentElement,n=V(t).on("dragstart.drag",Fr,Ui);"onselectstart"in e?n.on("selectstart.drag",Fr,Ui):(e.__noselect=e.style.MozUserSelect,e.style.MozUserSelect="none")}function Oa(t,e){var n=t.document.documentElement,r=V(t).on("dragstart.drag",null);e&&(r.on("click.drag",Fr,Ui),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in n?r.on("selectstart.drag",null):(n.style.MozUserSelect=n.__noselect,delete n.__noselect)}const Ga=t=>()=>t;function nc(t,{sourceEvent:e,subject:n,target:r,identifier:i,active:o,x:a,y:s,dx:u,dy:l,dispatch:c}){Object.defineProperties(this,{type:{value:t,enumerable:!0,configurable:!0},sourceEvent:{value:e,enumerable:!0,configurable:!0},subject:{value:n,enumerable:!0,configurable:!0},target:{value:r,enumerable:!0,configurable:!0},identifier:{value:i,enumerable:!0,configurable:!0},active:{value:o,enumerable:!0,configurable:!0},x:{value:a,enumerable:!0,configurable:!0},y:{value:s,enumerable:!0,configurable:!0},dx:{value:u,enumerable:!0,configurable:!0},dy:{value:l,enumerable:!0,configurable:!0},_:{value:c}})}nc.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};function B6(t){return!t.ctrlKey&&!t.button}function F6(){return this.parentNode}function O6(t,e){return e??{x:t.x,y:t.y}}function G6(){return navigator.maxTouchPoints||"ontouchstart"in this}function b0(){var t=B6,e=F6,n=O6,r=G6,i={},o=Un("start","drag","end"),a=0,s,u,l,c,f=0;function h(x){x.on("mousedown.drag",p).filter(r).on("touchstart.drag",m).on("touchmove.drag",y,N6).on("touchend.drag touchcancel.drag",b).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function p(x,S){if(!(c||!t.call(this,x,S))){var $=v(this,e.call(this,x,S),x,S,"mouse");$&&(V(x.view).on("mousemove.drag",d,Ui).on("mouseup.drag",g,Ui),Fa(x.view),ec(x),l=!1,s=x.clientX,u=x.clientY,$("start",x))}}function d(x){if(Fr(x),!l){var S=x.clientX-s,$=x.clientY-u;l=S*S+$*$>f}i.mouse("drag",x)}function g(x){V(x.view).on("mousemove.drag mouseup.drag",null),Oa(x.view,l),Fr(x),i.mouse("end",x)}function m(x,S){if(t.call(this,x,S)){var $=x.changedTouches,R=e.call(this,x,S),T=$.length,w,P;for(w=0;w<T;++w)(P=v(this,R,x,S,$[w].identifier,$[w]))&&(ec(x),P("start",x,$[w]))}}function y(x){var S=x.changedTouches,$=S.length,R,T;for(R=0;R<$;++R)(T=i[S[R].identifier])&&(Fr(x),T("drag",x,S[R]))}function b(x){var S=x.changedTouches,$=S.length,R,T;for(c&&clearTimeout(c),c=setTimeout(function(){c=null},500),R=0;R<$;++R)(T=i[S[R].identifier])&&(ec(x),T("end",x,S[R]))}function v(x,S,$,R,T,w){var P=o.copy(),_=le(w||$,S),N,D,A;if((A=n.call(x,new nc("beforestart",{sourceEvent:$,target:h,identifier:T,active:a,x:_[0],y:_[1],dx:0,dy:0,dispatch:P}),R))!=null)return N=A.x-_[0]||0,D=A.y-_[1]||0,function L(M,G,O){var E=_,k;switch(M){case"start":i[T]=L,k=a++;break;case"end":delete i[T],--a;case"drag":_=le(O||G,S),k=a;break}P.call(M,x,new nc(M,{sourceEvent:G,subject:A,target:h,identifier:T,active:k,x:_[0]+N,y:_[1]+D,dx:_[0]-E[0],dy:_[1]-E[1],dispatch:P}),R)}}return h.filter=function(x){return arguments.length?(t=typeof x=="function"?x:Ga(!!x),h):t},h.container=function(x){return arguments.length?(e=typeof x=="function"?x:Ga(x),h):e},h.subject=function(x){return arguments.length?(n=typeof x=="function"?x:Ga(x),h):n},h.touchable=function(x){return arguments.length?(r=typeof x=="function"?x:Ga(!!x),h):r},h.on=function(){var x=o.on.apply(o,arguments);return x===o?h:x},h.clickDistance=function(x){return arguments.length?(f=(x=+x)*x,h):Math.sqrt(f)},h}function Or(t,e,n){t.prototype=e.prototype=n,n.constructor=t}function Wi(t,e){var n=Object.create(t.prototype);for(var r in e)n[r]=e[r];return n}function dn(){}var Xn=.7,Gr=1/Xn,zr="\\s*([+-]?\\d+)\\s*",Hi="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Be="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",z6=/^#([0-9a-f]{3,8})$/,Y6=new RegExp(`^rgb\\(${zr},${zr},${zr}\\)$`),U6=new RegExp(`^rgb\\(${Be},${Be},${Be}\\)$`),W6=new RegExp(`^rgba\\(${zr},${zr},${zr},${Hi}\\)$`),H6=new RegExp(`^rgba\\(${Be},${Be},${Be},${Hi}\\)$`),X6=new RegExp(`^hsl\\(${Hi},${Be},${Be}\\)$`),j6=new RegExp(`^hsla\\(${Hi},${Be},${Be},${Hi}\\)$`),x0={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Or(dn,gn,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:v0,formatHex:v0,formatHex8:V6,formatHsl:q6,formatRgb:_0,toString:_0});function v0(){return this.rgb().formatHex()}function V6(){return this.rgb().formatHex8()}function q6(){return T0(this).formatHsl()}function _0(){return this.rgb().formatRgb()}function gn(t){var e,n;return t=(t+"").trim().toLowerCase(),(e=z6.exec(t))?(n=e[1].length,e=parseInt(e[1],16),n===6?w0(e):n===3?new Rt(e>>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):n===8?za(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):n===4?za(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|e&240,((e&15)<<4|e&15)/255):null):(e=Y6.exec(t))?new Rt(e[1],e[2],e[3],1):(e=U6.exec(t))?new Rt(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=W6.exec(t))?za(e[1],e[2],e[3],e[4]):(e=H6.exec(t))?za(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=X6.exec(t))?A0(e[1],e[2]/100,e[3]/100,1):(e=j6.exec(t))?A0(e[1],e[2]/100,e[3]/100,e[4]):x0.hasOwnProperty(t)?w0(x0[t]):t==="transparent"?new Rt(NaN,NaN,NaN,0):null}function w0(t){return new Rt(t>>16&255,t>>8&255,t&255,1)}function za(t,e,n,r){return r<=0&&(t=e=n=NaN),new Rt(t,e,n,r)}function rc(t){return t instanceof dn||(t=gn(t)),t?(t=t.rgb(),new Rt(t.r,t.g,t.b,t.opacity)):new Rt}function Yr(t,e,n,r){return arguments.length===1?rc(t):new Rt(t,e,n,r??1)}function Rt(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}Or(Rt,Yr,Wi(dn,{brighter(t){return t=t==null?Gr:Math.pow(Gr,t),new Rt(this.r*t,this.g*t,this.b*t,this.opacity)},darker(t){return t=t==null?Xn:Math.pow(Xn,t),new Rt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb(){return this},clamp(){return new Rt(jn(this.r),jn(this.g),jn(this.b),Ya(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:$0,formatHex:$0,formatHex8:Z6,formatRgb:S0,toString:S0}));function $0(){return`#${Vn(this.r)}${Vn(this.g)}${Vn(this.b)}`}function Z6(){return`#${Vn(this.r)}${Vn(this.g)}${Vn(this.b)}${Vn((isNaN(this.opacity)?1:this.opacity)*255)}`}function S0(){const t=Ya(this.opacity);return`${t===1?"rgb(":"rgba("}${jn(this.r)}, ${jn(this.g)}, ${jn(this.b)}${t===1?")":`, ${t})`}`}function Ya(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function jn(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function Vn(t){return t=jn(t),(t<16?"0":"")+t.toString(16)}function A0(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new Te(t,e,n,r)}function T0(t){if(t instanceof Te)return new Te(t.h,t.s,t.l,t.opacity);if(t instanceof dn||(t=gn(t)),!t)return new Te;if(t instanceof Te)return t;t=t.rgb();var e=t.r/255,n=t.g/255,r=t.b/255,i=Math.min(e,n,r),o=Math.max(e,n,r),a=NaN,s=o-i,u=(o+i)/2;return s?(e===o?a=(n-r)/s+(n<r)*6:n===o?a=(r-e)/s+2:a=(e-n)/s+4,s/=u<.5?o+i:2-o-i,a*=60):s=u>0&&u<1?0:a,new Te(a,s,u,t.opacity)}function Ua(t,e,n,r){return arguments.length===1?T0(t):new Te(t,e,n,r??1)}function Te(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}Or(Te,Ua,Wi(dn,{brighter(t){return t=t==null?Gr:Math.pow(Gr,t),new Te(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?Xn:Math.pow(Xn,t),new Te(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=this.h%360+(this.h<0)*360,e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*e,i=2*n-r;return new Rt(ic(t>=240?t-240:t+120,i,r),ic(t,i,r),ic(t<120?t+240:t-120,i,r),this.opacity)},clamp(){return new Te(P0(this.h),Wa(this.s),Wa(this.l),Ya(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const t=Ya(this.opacity);return`${t===1?"hsl(":"hsla("}${P0(this.h)}, ${Wa(this.s)*100}%, ${Wa(this.l)*100}%${t===1?")":`, ${t})`}`}}));function P0(t){return t=(t||0)%360,t<0?t+360:t}function Wa(t){return Math.max(0,Math.min(1,t||0))}function ic(t,e,n){return(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)*255}const M0=Math.PI/180,D0=180/Math.PI,Ha=18,C0=.96422,L0=1,k0=.82521,R0=4/29,Ur=6/29,E0=3*Ur*Ur,K6=Ur*Ur*Ur;function I0(t){if(t instanceof Pe)return new Pe(t.l,t.a,t.b,t.opacity);if(t instanceof Fe)return B0(t);t instanceof Rt||(t=rc(t));var e=uc(t.r),n=uc(t.g),r=uc(t.b),i=oc((.2225045*e+.7168786*n+.0606169*r)/L0),o,a;return e===n&&n===r?o=a=i:(o=oc((.4360747*e+.3850649*n+.1430804*r)/C0),a=oc((.0139322*e+.0971045*n+.7141733*r)/k0)),new Pe(116*i-16,500*(o-i),200*(i-a),t.opacity)}function Q6(t,e){return new Pe(t,0,0,e??1)}function Xa(t,e,n,r){return arguments.length===1?I0(t):new Pe(t,e,n,r??1)}function Pe(t,e,n,r){this.l=+t,this.a=+e,this.b=+n,this.opacity=+r}Or(Pe,Xa,Wi(dn,{brighter(t){return new Pe(this.l+Ha*(t??1),this.a,this.b,this.opacity)},darker(t){return new Pe(this.l-Ha*(t??1),this.a,this.b,this.opacity)},rgb(){var t=(this.l+16)/116,e=isNaN(this.a)?t:t+this.a/500,n=isNaN(this.b)?t:t-this.b/200;return e=C0*ac(e),t=L0*ac(t),n=k0*ac(n),new Rt(sc(3.1338561*e-1.6168667*t-.4906146*n),sc(-.9787684*e+1.9161415*t+.033454*n),sc(.0719453*e-.2289914*t+1.4052427*n),this.opacity)}}));function oc(t){return t>K6?Math.pow(t,1/3):t/E0+R0}function ac(t){return t>Ur?t*t*t:E0*(t-R0)}function sc(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function uc(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function N0(t){if(t instanceof Fe)return new Fe(t.h,t.c,t.l,t.opacity);if(t instanceof Pe||(t=I0(t)),t.a===0&&t.b===0)return new Fe(NaN,0<t.l&&t.l<100?0:NaN,t.l,t.opacity);var e=Math.atan2(t.b,t.a)*D0;return new Fe(e<0?e+360:e,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function J6(t,e,n,r){return arguments.length===1?N0(t):new Fe(n,e,t,r??1)}function ja(t,e,n,r){return arguments.length===1?N0(t):new Fe(t,e,n,r??1)}function Fe(t,e,n,r){this.h=+t,this.c=+e,this.l=+n,this.opacity=+r}function B0(t){if(isNaN(t.h))return new Pe(t.l,0,0,t.opacity);var e=t.h*M0;return new Pe(t.l,Math.cos(e)*t.c,Math.sin(e)*t.c,t.opacity)}Or(Fe,ja,Wi(dn,{brighter(t){return new Fe(this.h,this.c,this.l+Ha*(t??1),this.opacity)},darker(t){return new Fe(this.h,this.c,this.l-Ha*(t??1),this.opacity)},rgb(){return B0(this).rgb()}}));var F0=-.14861,lc=1.78277,cc=-.29227,Va=-.90649,Xi=1.97294,O0=Xi*Va,G0=Xi*lc,z0=lc*cc-Va*F0;function tP(t){if(t instanceof qn)return new qn(t.h,t.s,t.l,t.opacity);t instanceof Rt||(t=rc(t));var e=t.r/255,n=t.g/255,r=t.b/255,i=(z0*r+O0*e-G0*n)/(z0+O0-G0),o=r-i,a=(Xi*(n-i)-cc*o)/Va,s=Math.sqrt(a*a+o*o)/(Xi*i*(1-i)),u=s?Math.atan2(a,o)*D0-120:NaN;return new qn(u<0?u+360:u,s,i,t.opacity)}function Me(t,e,n,r){return arguments.length===1?tP(t):new qn(t,e,n,r??1)}function qn(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}Or(qn,Me,Wi(dn,{brighter(t){return t=t==null?Gr:Math.pow(Gr,t),new qn(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?Xn:Math.pow(Xn,t),new qn(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=isNaN(this.h)?0:(this.h+120)*M0,e=+this.l,n=isNaN(this.s)?0:this.s*e*(1-e),r=Math.cos(t),i=Math.sin(t);return new Rt(255*(e+n*(F0*r+lc*i)),255*(e+n*(cc*r+Va*i)),255*(e+n*(Xi*r)),this.opacity)}}));function Y0(t,e,n,r,i){var o=t*t,a=o*t;return((1-3*t+3*o-a)*e+(4-6*o+3*a)*n+(1+3*t+3*o-3*a)*r+a*i)/6}function U0(t){var e=t.length-1;return function(n){var r=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[r],o=t[r+1],a=r>0?t[r-1]:2*i-o,s=r<e-1?t[r+2]:2*o-i;return Y0((n-r/e)*e,a,i,o,s)}}function W0(t){var e=t.length;return function(n){var r=Math.floor(((n%=1)<0?++n:n)*e),i=t[(r+e-1)%e],o=t[r%e],a=t[(r+1)%e],s=t[(r+2)%e];return Y0((n-r/e)*e,i,o,a,s)}}const qa=t=>()=>t;function H0(t,e){return function(n){return t+n*e}}function eP(t,e,n){return t=Math.pow(t,n),e=Math.pow(e,n)-t,n=1/n,function(r){return Math.pow(t+r*e,n)}}function Za(t,e){var n=e-t;return n?H0(t,n>180||n<-180?n-360*Math.round(n/360):n):qa(isNaN(t)?e:t)}function nP(t){return(t=+t)==1?Et:function(e,n){return n-e?eP(e,n,t):qa(isNaN(e)?n:e)}}function Et(t,e){var n=e-t;return n?H0(t,n):qa(isNaN(t)?e:t)}const ji=function t(e){var n=nP(e);function r(i,o){var a=n((i=Yr(i)).r,(o=Yr(o)).r),s=n(i.g,o.g),u=n(i.b,o.b),l=Et(i.opacity,o.opacity);return function(c){return i.r=a(c),i.g=s(c),i.b=u(c),i.opacity=l(c),i+""}}return r.gamma=t,r}(1);function X0(t){return function(e){var n=e.length,r=new Array(n),i=new Array(n),o=new Array(n),a,s;for(a=0;a<n;++a)s=Yr(e[a]),r[a]=s.r||0,i[a]=s.g||0,o[a]=s.b||0;return r=t(r),i=t(i),o=t(o),s.opacity=1,function(u){return s.r=r(u),s.g=i(u),s.b=o(u),s+""}}}var j0=X0(U0),rP=X0(W0);function fc(t,e){e||(e=[]);var n=t?Math.min(e.length,t.length):0,r=e.slice(),i;return function(o){for(i=0;i<n;++i)r[i]=t[i]*(1-o)+e[i]*o;return r}}function V0(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function iP(t,e){return(V0(e)?fc:q0)(t,e)}function q0(t,e){var n=e?e.length:0,r=t?Math.min(n,t.length):0,i=new Array(r),o=new Array(n),a;for(a=0;a<r;++a)i[a]=Ze(t[a],e[a]);for(;a<n;++a)o[a]=e[a];return function(s){for(a=0;a<r;++a)o[a]=i[a](s);return o}}function Z0(t,e){var n=new Date;return t=+t,e=+e,function(r){return n.setTime(t*(1-r)+e*r),n}}function ge(t,e){return t=+t,e=+e,function(n){return t*(1-n)+e*n}}function K0(t,e){var n={},r={},i;(t===null||typeof t!="object")&&(t={}),(e===null||typeof e!="object")&&(e={});for(i in e)i in t?n[i]=Ze(t[i],e[i]):r[i]=e[i];return function(o){for(i in n)r[i]=n[i](o);return r}}var hc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,pc=new RegExp(hc.source,"g");function oP(t){return function(){return t}}function aP(t){return function(e){return t(e)+""}}function dc(t,e){var n=hc.lastIndex=pc.lastIndex=0,r,i,o,a=-1,s=[],u=[];for(t=t+"",e=e+"";(r=hc.exec(t))&&(i=pc.exec(e));)(o=i.index)>n&&(o=e.slice(n,o),s[a]?s[a]+=o:s[++a]=o),(r=r[0])===(i=i[0])?s[a]?s[a]+=i:s[++a]=i:(s[++a]=null,u.push({i:a,x:ge(r,i)})),n=pc.lastIndex;return n<e.length&&(o=e.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?u[0]?aP(u[0].x):oP(e):(e=u.length,function(l){for(var c=0,f;c<e;++c)s[(f=u[c]).i]=f.x(l);return s.join("")})}function Ze(t,e){var n=typeof e,r;return e==null||n==="boolean"?qa(e):(n==="number"?ge:n==="string"?(r=gn(e))?(e=r,ji):dc:e instanceof gn?ji:e instanceof Date?Z0:V0(e)?fc:Array.isArray(e)?q0:typeof e.valueOf!="function"&&typeof e.toString!="function"||isNaN(e)?K0:ge)(t,e)}function sP(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}function uP(t,e){var n=Za(+t,+e);return function(r){var i=n(r);return i-360*Math.floor(i/360)}}function Ka(t,e){return t=+t,e=+e,function(n){return Math.round(t*(1-n)+e*n)}}var Q0=180/Math.PI,gc={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function J0(t,e,n,r,i,o){var a,s,u;return(a=Math.sqrt(t*t+e*e))&&(t/=a,e/=a),(u=t*n+e*r)&&(n-=t*u,r-=e*u),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,u/=s),t*r<e*n&&(t=-t,e=-e,u=-u,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(e,t)*Q0,skewX:Math.atan(u)*Q0,scaleX:a,scaleY:s}}var Qa;function lP(t){const e=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(t+"");return e.isIdentity?gc:J0(e.a,e.b,e.c,e.d,e.e,e.f)}function cP(t){return t==null||(Qa||(Qa=document.createElementNS("http://www.w3.org/2000/svg","g")),Qa.setAttribute("transform",t),!(t=Qa.transform.baseVal.consolidate()))?gc:(t=t.matrix,J0(t.a,t.b,t.c,t.d,t.e,t.f))}function tm(t,e,n,r){function i(l){return l.length?l.pop()+" ":""}function o(l,c,f,h,p,d){if(l!==f||c!==h){var g=p.push("translate(",null,e,null,n);d.push({i:g-4,x:ge(l,f)},{i:g-2,x:ge(c,h)})}else(f||h)&&p.push("translate("+f+e+h+n)}function a(l,c,f,h){l!==c?(l-c>180?c+=360:c-l>180&&(l+=360),h.push({i:f.push(i(f)+"rotate(",null,r)-2,x:ge(l,c)})):c&&f.push(i(f)+"rotate("+c+r)}function s(l,c,f,h){l!==c?h.push({i:f.push(i(f)+"skewX(",null,r)-2,x:ge(l,c)}):c&&f.push(i(f)+"skewX("+c+r)}function u(l,c,f,h,p,d){if(l!==f||c!==h){var g=p.push(i(p)+"scale(",null,",",null,")");d.push({i:g-4,x:ge(l,f)},{i:g-2,x:ge(c,h)})}else(f!==1||h!==1)&&p.push(i(p)+"scale("+f+","+h+")")}return function(l,c){var f=[],h=[];return l=t(l),c=t(c),o(l.translateX,l.translateY,c.translateX,c.translateY,f,h),a(l.rotate,c.rotate,f,h),s(l.skewX,c.skewX,f,h),u(l.scaleX,l.scaleY,c.scaleX,c.scaleY,f,h),l=c=null,function(p){for(var d=-1,g=h.length,m;++d<g;)f[(m=h[d]).i]=m.x(p);return f.join("")}}}var em=tm(lP,"px, ","px)","deg)"),nm=tm(cP,", ",")",")"),fP=1e-12;function rm(t){return((t=Math.exp(t))+1/t)/2}function hP(t){return((t=Math.exp(t))-1/t)/2}function pP(t){return((t=Math.exp(2*t))-1)/(t+1)}const im=function t(e,n,r){function i(o,a){var s=o[0],u=o[1],l=o[2],c=a[0],f=a[1],h=a[2],p=c-s,d=f-u,g=p*p+d*d,m,y;if(g<fP)y=Math.log(h/l)/e,m=function(R){return[s+R*p,u+R*d,l*Math.exp(e*R*y)]};else{var b=Math.sqrt(g),v=(h*h-l*l+r*g)/(2*l*n*b),x=(h*h-l*l-r*g)/(2*h*n*b),S=Math.log(Math.sqrt(v*v+1)-v),$=Math.log(Math.sqrt(x*x+1)-x);y=($-S)/e,m=function(R){var T=R*y,w=rm(S),P=l/(n*b)*(w*pP(e*T+S)-hP(S));return[s+P*p,u+P*d,l*w/rm(e*T+S)]}}return m.duration=y*1e3*e/Math.SQRT2,m}return i.rho=function(o){var a=Math.max(.001,+o),s=a*a,u=s*s;return t(a,s,u)},i}(Math.SQRT2,2,4);function om(t){return function(e,n){var r=t((e=Ua(e)).h,(n=Ua(n)).h),i=Et(e.s,n.s),o=Et(e.l,n.l),a=Et(e.opacity,n.opacity);return function(s){return e.h=r(s),e.s=i(s),e.l=o(s),e.opacity=a(s),e+""}}}const dP=om(Za);var gP=om(Et);function mP(t,e){var n=Et((t=Xa(t)).l,(e=Xa(e)).l),r=Et(t.a,e.a),i=Et(t.b,e.b),o=Et(t.opacity,e.opacity);return function(a){return t.l=n(a),t.a=r(a),t.b=i(a),t.opacity=o(a),t+""}}function am(t){return function(e,n){var r=t((e=ja(e)).h,(n=ja(n)).h),i=Et(e.c,n.c),o=Et(e.l,n.l),a=Et(e.opacity,n.opacity);return function(s){return e.h=r(s),e.c=i(s),e.l=o(s),e.opacity=a(s),e+""}}}const yP=am(Za);var bP=am(Et);function sm(t){return function e(n){n=+n;function r(i,o){var a=t((i=Me(i)).h,(o=Me(o)).h),s=Et(i.s,o.s),u=Et(i.l,o.l),l=Et(i.opacity,o.opacity);return function(c){return i.h=a(c),i.s=s(c),i.l=u(Math.pow(c,n)),i.opacity=l(c),i+""}}return r.gamma=e,r}(1)}const xP=sm(Za);var Ja=sm(Et);function um(t,e){e===void 0&&(e=t,t=Ze);for(var n=0,r=e.length-1,i=e[0],o=new Array(r<0?0:r);n<r;)o[n]=t(i,i=e[++n]);return function(a){var s=Math.max(0,Math.min(r-1,Math.floor(a*=r)));return o[s](a-s)}}function vP(t,e){for(var n=new Array(e),r=0;r<e;++r)n[r]=t(r/(e-1));return n}var Wr=0,Vi=0,qi=0,lm=1e3,ts,Zi,es=0,Zn=0,ns=0,Ki=typeof performance=="object"&&performance.now?performance:Date,cm=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function Qi(){return Zn||(cm(_P),Zn=Ki.now()+ns)}function _P(){Zn=0}function Ji(){this._call=this._time=this._next=null}Ji.prototype=rs.prototype={constructor:Ji,restart:function(t,e,n){if(typeof t!="function")throw new TypeError("callback is not a function");n=(n==null?Qi():+n)+(e==null?0:+e),!this._next&&Zi!==this&&(Zi?Zi._next=this:ts=this,Zi=this),this._call=t,this._time=n,mc()},stop:function(){this._call&&(this._call=null,this._time=1/0,mc())}};function rs(t,e,n){var r=new Ji;return r.restart(t,e,n),r}function fm(){Qi(),++Wr;for(var t=ts,e;t;)(e=Zn-t._time)>=0&&t._call.call(void 0,e),t=t._next;--Wr}function hm(){Zn=(es=Ki.now())+ns,Wr=Vi=0;try{fm()}finally{Wr=0,$P(),Zn=0}}function wP(){var t=Ki.now(),e=t-es;e>lm&&(ns-=e,es=t)}function $P(){for(var t,e=ts,n,r=1/0;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:ts=n);Zi=t,mc(r)}function mc(t){if(!Wr){Vi&&(Vi=clearTimeout(Vi));var e=t-Zn;e>24?(t<1/0&&(Vi=setTimeout(hm,t-Ki.now()-ns)),qi&&(qi=clearInterval(qi))):(qi||(es=Ki.now(),qi=setInterval(wP,lm)),Wr=1,cm(hm))}}function yc(t,e,n){var r=new Ji;return e=e==null?0:+e,r.restart(i=>{r.stop(),t(i+e)},e,n),r}function SP(t,e,n){var r=new Ji,i=e;return e==null?(r.restart(t,e,n),r):(r._restart=r.restart,r.restart=function(o,a,s){a=+a,s=s==null?Qi():+s,r._restart(function u(l){l+=i,r._restart(u,i+=a,s),o(l)},a,s)},r.restart(t,e,n),r)}var AP=Un("start","end","cancel","interrupt"),TP=[],pm=0,bc=1,xc=2,is=3,dm=4,vc=5,os=6;function as(t,e,n,r,i,o){var a=t.__transition;if(!a)t.__transition={};else if(n in a)return;PP(t,n,{name:e,index:r,group:i,on:AP,tween:TP,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:pm})}function _c(t,e){var n=De(t,e);if(n.state>pm)throw new Error("too late; already scheduled");return n}function Oe(t,e){var n=De(t,e);if(n.state>is)throw new Error("too late; already running");return n}function De(t,e){var n=t.__transition;if(!n||!(n=n[e]))throw new Error("transition not found");return n}function PP(t,e,n){var r=t.__transition,i;r[e]=n,n.timer=rs(o,0,n.time);function o(l){n.state=bc,n.timer.restart(a,n.delay,n.time),n.delay<=l&&a(l-n.delay)}function a(l){var c,f,h,p;if(n.state!==bc)return u();for(c in r)if(p=r[c],p.name===n.name){if(p.state===is)return yc(a);p.state===dm?(p.state=os,p.timer.stop(),p.on.call("interrupt",t,t.__data__,p.index,p.group),delete r[c]):+c<e&&(p.state=os,p.timer.stop(),p.on.call("cancel",t,t.__data__,p.index,p.group),delete r[c])}if(yc(function(){n.state===is&&(n.state=dm,n.timer.restart(s,n.delay,n.time),s(l))}),n.state=xc,n.on.call("start",t,t.__data__,n.index,n.group),n.state===xc){for(n.state=is,i=new Array(h=n.tween.length),c=0,f=-1;c<h;++c)(p=n.tween[c].value.call(t,t.__data__,n.index,n.group))&&(i[++f]=p);i.length=f+1}}function s(l){for(var c=l<n.duration?n.ease.call(null,l/n.duration):(n.timer.restart(u),n.state=vc,1),f=-1,h=i.length;++f<h;)i[f].call(t,c);n.state===vc&&(n.on.call("end",t,t.__data__,n.index,n.group),u())}function u(){n.state=os,n.timer.stop(),delete r[e];for(var l in r)return;delete t.__transition}}function Kn(t,e){var n=t.__transition,r,i,o=!0,a;if(n){e=e==null?null:e+"";for(a in n){if((r=n[a]).name!==e){o=!1;continue}i=r.state>xc&&r.state<vc,r.state=os,r.timer.stop(),r.on.call(i?"interrupt":"cancel",t,t.__data__,r.index,r.group),delete n[a]}o&&delete t.__transition}}function MP(t){return this.each(function(){Kn(this,t)})}function DP(t,e){var n,r;return function(){var i=Oe(this,t),o=i.tween;if(o!==n){r=n=o;for(var a=0,s=r.length;a<s;++a)if(r[a].name===e){r=r.slice(),r.splice(a,1);break}}i.tween=r}}function CP(t,e,n){var r,i;if(typeof n!="function")throw new Error;return function(){var o=Oe(this,t),a=o.tween;if(a!==r){i=(r=a).slice();for(var s={name:e,value:n},u=0,l=i.length;u<l;++u)if(i[u].name===e){i[u]=s;break}u===l&&i.push(s)}o.tween=i}}function LP(t,e){var n=this._id;if(t+="",arguments.length<2){for(var r=De(this.node(),n).tween,i=0,o=r.length,a;i<o;++i)if((a=r[i]).name===t)return a.value;return null}return this.each((e==null?DP:CP)(n,t,e))}function wc(t,e,n){var r=t._id;return t.each(function(){var i=Oe(this,r);(i.value||(i.value={}))[e]=n.apply(this,arguments)}),function(i){return De(i,r).value[e]}}function gm(t,e){var n;return(typeof e=="number"?ge:e instanceof gn?ji:(n=gn(e))?(e=n,ji):dc)(t,e)}function kP(t){return function(){this.removeAttribute(t)}}function RP(t){return function(){this.removeAttributeNS(t.space,t.local)}}function EP(t,e,n){var r,i=n+"",o;return function(){var a=this.getAttribute(t);return a===i?null:a===r?o:o=e(r=a,n)}}function IP(t,e,n){var r,i=n+"",o;return function(){var a=this.getAttributeNS(t.space,t.local);return a===i?null:a===r?o:o=e(r=a,n)}}function NP(t,e,n){var r,i,o;return function(){var a,s=n(this),u;return s==null?void this.removeAttribute(t):(a=this.getAttribute(t),u=s+"",a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s)))}}function BP(t,e,n){var r,i,o;return function(){var a,s=n(this),u;return s==null?void this.removeAttributeNS(t.space,t.local):(a=this.getAttributeNS(t.space,t.local),u=s+"",a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s)))}}function FP(t,e){var n=Yi(t),r=n==="transform"?nm:gm;return this.attrTween(t,typeof e=="function"?(n.local?BP:NP)(n,r,wc(this,"attr."+t,e)):e==null?(n.local?RP:kP)(n):(n.local?IP:EP)(n,r,e))}function OP(t,e){return function(n){this.setAttribute(t,e.call(this,n))}}function GP(t,e){return function(n){this.setAttributeNS(t.space,t.local,e.call(this,n))}}function zP(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&GP(t,o)),n}return i._value=e,i}function YP(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&OP(t,o)),n}return i._value=e,i}function UP(t,e){var n="attr."+t;if(arguments.length<2)return(n=this.tween(n))&&n._value;if(e==null)return this.tween(n,null);if(typeof e!="function")throw new Error;var r=Yi(t);return this.tween(n,(r.local?zP:YP)(r,e))}function WP(t,e){return function(){_c(this,t).delay=+e.apply(this,arguments)}}function HP(t,e){return e=+e,function(){_c(this,t).delay=e}}function XP(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?WP:HP)(e,t)):De(this.node(),e).delay}function jP(t,e){return function(){Oe(this,t).duration=+e.apply(this,arguments)}}function VP(t,e){return e=+e,function(){Oe(this,t).duration=e}}function qP(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?jP:VP)(e,t)):De(this.node(),e).duration}function ZP(t,e){if(typeof e!="function")throw new Error;return function(){Oe(this,t).ease=e}}function KP(t){var e=this._id;return arguments.length?this.each(ZP(e,t)):De(this.node(),e).ease}function QP(t,e){return function(){var n=e.apply(this,arguments);if(typeof n!="function")throw new Error;Oe(this,t).ease=n}}function JP(t){if(typeof t!="function")throw new Error;return this.each(QP(this._id,t))}function t8(t){typeof t!="function"&&(t=Zl(t));for(var e=this._groups,n=e.length,r=new Array(n),i=0;i<n;++i)for(var o=e[i],a=o.length,s=r[i]=[],u,l=0;l<a;++l)(u=o[l])&&t.call(u,u.__data__,l,o)&&s.push(u);return new Ge(r,this._parents,this._name,this._id)}function e8(t){if(t._id!==this._id)throw new Error;for(var e=this._groups,n=t._groups,r=e.length,i=n.length,o=Math.min(r,i),a=new Array(r),s=0;s<o;++s)for(var u=e[s],l=n[s],c=u.length,f=a[s]=new Array(c),h,p=0;p<c;++p)(h=u[p]||l[p])&&(f[p]=h);for(;s<r;++s)a[s]=e[s];return new Ge(a,this._parents,this._name,this._id)}function n8(t){return(t+"").trim().split(/^|\s+/).every(function(e){var n=e.indexOf(".");return n>=0&&(e=e.slice(0,n)),!e||e==="start"})}function r8(t,e,n){var r,i,o=n8(e)?_c:Oe;return function(){var a=o(this,t),s=a.on;s!==r&&(i=(r=s).copy()).on(e,n),a.on=i}}function i8(t,e){var n=this._id;return arguments.length<2?De(this.node(),n).on.on(t):this.each(r8(n,t,e))}function o8(t){return function(){var e=this.parentNode;for(var n in this.__transition)if(+n!==t)return;e&&e.removeChild(this)}}function a8(){return this.on("end.remove",o8(this._id))}function s8(t){var e=this._name,n=this._id;typeof t!="function"&&(t=Na(t));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var s=r[a],u=s.length,l=o[a]=new Array(u),c,f,h=0;h<u;++h)(c=s[h])&&(f=t.call(c,c.__data__,h,s))&&("__data__"in c&&(f.__data__=c.__data__),l[h]=f,as(l[h],e,n,h,l,De(c,n)));return new Ge(o,this._parents,e,n)}function u8(t){var e=this._name,n=this._id;typeof t!="function"&&(t=ql(t));for(var r=this._groups,i=r.length,o=[],a=[],s=0;s<i;++s)for(var u=r[s],l=u.length,c,f=0;f<l;++f)if(c=u[f]){for(var h=t.call(c,c.__data__,f,u),p,d=De(c,n),g=0,m=h.length;g<m;++g)(p=h[g])&&as(p,e,n,g,h,d);o.push(h),a.push(c)}return new Ge(o,a,e,n)}var l8=Hn.prototype.constructor;function c8(){return new l8(this._groups,this._parents)}function f8(t,e){var n,r,i;return function(){var o=Wn(this,t),a=(this.style.removeProperty(t),Wn(this,t));return o===a?null:o===n&&a===r?i:i=e(n=o,r=a)}}function mm(t){return function(){this.style.removeProperty(t)}}function h8(t,e,n){var r,i=n+"",o;return function(){var a=Wn(this,t);return a===i?null:a===r?o:o=e(r=a,n)}}function p8(t,e,n){var r,i,o;return function(){var a=Wn(this,t),s=n(this),u=s+"";return s==null&&(u=s=(this.style.removeProperty(t),Wn(this,t))),a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s))}}function d8(t,e){var n,r,i,o="style."+e,a="end."+o,s;return function(){var u=Oe(this,t),l=u.on,c=u.value[o]==null?s||(s=mm(e)):void 0;(l!==n||i!==c)&&(r=(n=l).copy()).on(a,i=c),u.on=r}}function g8(t,e,n){var r=(t+="")=="transform"?em:gm;return e==null?this.styleTween(t,f8(t,r)).on("end.style."+t,mm(t)):typeof e=="function"?this.styleTween(t,p8(t,r,wc(this,"style."+t,e))).each(d8(this._id,t)):this.styleTween(t,h8(t,r,e),n).on("end.style."+t,null)}function m8(t,e,n){return function(r){this.style.setProperty(t,e.call(this,r),n)}}function y8(t,e,n){var r,i;function o(){var a=e.apply(this,arguments);return a!==i&&(r=(i=a)&&m8(t,a,n)),r}return o._value=e,o}function b8(t,e,n){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(e==null)return this.tween(r,null);if(typeof e!="function")throw new Error;return this.tween(r,y8(t,e,n??""))}function x8(t){return function(){this.textContent=t}}function v8(t){return function(){var e=t(this);this.textContent=e??""}}function _8(t){return this.tween("text",typeof t=="function"?v8(wc(this,"text",t)):x8(t==null?"":t+""))}function w8(t){return function(e){this.textContent=t.call(this,e)}}function $8(t){var e,n;function r(){var i=t.apply(this,arguments);return i!==n&&(e=(n=i)&&w8(i)),e}return r._value=t,r}function S8(t){var e="text";if(arguments.length<1)return(e=this.tween(e))&&e._value;if(t==null)return this.tween(e,null);if(typeof t!="function")throw new Error;return this.tween(e,$8(t))}function A8(){for(var t=this._name,e=this._id,n=bm(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,u,l=0;l<s;++l)if(u=a[l]){var c=De(u,e);as(u,t,n,l,a,{time:c.time+c.delay+c.duration,delay:0,duration:c.duration,ease:c.ease})}return new Ge(r,this._parents,t,n)}function T8(){var t,e,n=this,r=n._id,i=n.size();return new Promise(function(o,a){var s={value:a},u={value:function(){--i===0&&o()}};n.each(function(){var l=Oe(this,r),c=l.on;c!==t&&(e=(t=c).copy(),e._.cancel.push(s),e._.interrupt.push(s),e._.end.push(u)),l.on=e}),i===0&&o()})}var P8=0;function Ge(t,e,n,r){this._groups=t,this._parents=e,this._name=n,this._id=r}function ym(t){return Hn().transition(t)}function bm(){return++P8}var Ke=Hn.prototype;Ge.prototype=ym.prototype={constructor:Ge,select:s8,selectAll:u8,selectChild:Ke.selectChild,selectChildren:Ke.selectChildren,filter:t8,merge:e8,selection:c8,transition:A8,call:Ke.call,nodes:Ke.nodes,node:Ke.node,size:Ke.size,empty:Ke.empty,each:Ke.each,on:i8,attr:FP,attrTween:UP,style:g8,styleTween:b8,text:_8,textTween:S8,remove:a8,tween:LP,delay:XP,duration:qP,ease:KP,easeVarying:JP,end:T8,[Symbol.iterator]:Ke[Symbol.iterator]};const M8=t=>+t;function D8(t){return t*t}function C8(t){return t*(2-t)}function xm(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function L8(t){return t*t*t}function k8(t){return--t*t*t+1}function to(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}var $c=3,R8=function t(e){e=+e;function n(r){return Math.pow(r,e)}return n.exponent=t,n}($c),E8=function t(e){e=+e;function n(r){return 1-Math.pow(1-r,e)}return n.exponent=t,n}($c),vm=function t(e){e=+e;function n(r){return((r*=2)<=1?Math.pow(r,e):2-Math.pow(2-r,e))/2}return n.exponent=t,n}($c),_m=Math.PI,wm=_m/2;function I8(t){return+t==1?1:1-Math.cos(t*wm)}function N8(t){return Math.sin(t*wm)}function $m(t){return(1-Math.cos(_m*t))/2}function mn(t){return(Math.pow(2,-10*t)-.0009765625)*1.0009775171065494}function B8(t){return mn(1-+t)}function F8(t){return 1-mn(t)}function Sm(t){return((t*=2)<=1?mn(1-t):2-mn(t-1))/2}function O8(t){return 1-Math.sqrt(1-t*t)}function G8(t){return Math.sqrt(1- --t*t)}function Am(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}var Sc=4/11,z8=6/11,Y8=8/11,U8=3/4,W8=9/11,H8=10/11,X8=15/16,j8=21/22,V8=63/64,ss=1/Sc/Sc;function q8(t){return 1-eo(1-t)}function eo(t){return(t=+t)<Sc?ss*t*t:t<Y8?ss*(t-=z8)*t+U8:t<H8?ss*(t-=W8)*t+X8:ss*(t-=j8)*t+V8}function Z8(t){return((t*=2)<=1?1-eo(1-t):eo(t-1)+1)/2}var Ac=1.70158,K8=function t(e){e=+e;function n(r){return(r=+r)*r*(e*(r-1)+r)}return n.overshoot=t,n}(Ac),Q8=function t(e){e=+e;function n(r){return--r*r*((r+1)*e+r)+1}return n.overshoot=t,n}(Ac),Tm=function t(e){e=+e;function n(r){return((r*=2)<1?r*r*((e+1)*r-e):(r-=2)*r*((e+1)*r+e)+2)/2}return n.overshoot=t,n}(Ac),Hr=2*Math.PI,Tc=1,Pc=.3,J8=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Hr);function i(o){return e*mn(- --o)*Math.sin((r-o)/n)}return i.amplitude=function(o){return t(o,n*Hr)},i.period=function(o){return t(e,o)},i}(Tc,Pc),no=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Hr);function i(o){return 1-e*mn(o=+o)*Math.sin((o+r)/n)}return i.amplitude=function(o){return t(o,n*Hr)},i.period=function(o){return t(e,o)},i}(Tc,Pc),tM=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Hr);function i(o){return((o=o*2-1)<0?e*mn(-o)*Math.sin((r-o)/n):2-e*mn(o)*Math.sin((r+o)/n))/2}return i.amplitude=function(o){return t(o,n*Hr)},i.period=function(o){return t(e,o)},i}(Tc,Pc),eM={time:null,delay:0,duration:250,ease:to};function nM(t,e){for(var n;!(n=t.__transition)||!(n=n[e]);)if(!(t=t.parentNode))throw new Error(`transition ${e} not found`);return n}function rM(t){var e,n;t instanceof Ge?(e=t._id,t=t._name):(e=bm(),(n=eM).time=Qi(),t=t==null?null:t+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,u,l=0;l<s;++l)(u=a[l])&&as(u,t,e,l,a,n||nM(u,e));return new Ge(r,this._parents,t,e)}Hn.prototype.interrupt=MP,Hn.prototype.transition=rM;var iM=[null];function oM(t,e){var n=t.__transition,r,i;if(n){e=e==null?null:e+"";for(i in n)if((r=n[i]).state>bc&&r.name===e)return new Ge([[t]],iM,e,+i)}return null}const Mc=t=>()=>t;function aM(t,{sourceEvent:e,target:n,selection:r,mode:i,dispatch:o}){Object.defineProperties(this,{type:{value:t,enumerable:!0,configurable:!0},sourceEvent:{value:e,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},selection:{value:r,enumerable:!0,configurable:!0},mode:{value:i,enumerable:!0,configurable:!0},_:{value:o}})}function sM(t){t.stopImmediatePropagation()}function Dc(t){t.preventDefault(),t.stopImmediatePropagation()}var Pm={name:"drag"},Cc={name:"space"},Xr={name:"handle"},jr={name:"center"};const{abs:Mm,max:Ft,min:Ot}=Math;function Dm(t){return[+t[0],+t[1]]}function Lc(t){return[Dm(t[0]),Dm(t[1])]}var us={name:"x",handles:["w","e"].map(ro),input:function(t,e){return t==null?null:[[+t[0],e[0][1]],[+t[1],e[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},ls={name:"y",handles:["n","s"].map(ro),input:function(t,e){return t==null?null:[[e[0][0],+t[0]],[e[1][0],+t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},uM={name:"xy",handles:["n","w","e","s","nw","ne","sw","se"].map(ro),input:function(t){return t==null?null:Lc(t)},output:function(t){return t}},Qe={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Cm={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},Lm={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},lM={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},cM={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1};function ro(t){return{type:t}}function fM(t){return!t.ctrlKey&&!t.button}function hM(){var t=this.ownerSVGElement||this;return t.hasAttribute("viewBox")?(t=t.viewBox.baseVal,[[t.x,t.y],[t.x+t.width,t.y+t.height]]):[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function pM(){return navigator.maxTouchPoints||"ontouchstart"in this}function kc(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function dM(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function gM(t){var e=t.__brush;return e?e.dim.output(e.selection):null}function mM(){return Rc(us)}function yM(){return Rc(ls)}function bM(){return Rc(uM)}function Rc(t){var e=hM,n=fM,r=pM,i=!0,o=Un("start","brush","end"),a=6,s;function u(m){var y=m.property("__brush",g).selectAll(".overlay").data([ro("overlay")]);y.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",Qe.overlay).merge(y).each(function(){var v=kc(this).extent;V(this).attr("x",v[0][0]).attr("y",v[0][1]).attr("width",v[1][0]-v[0][0]).attr("height",v[1][1]-v[0][1])}),m.selectAll(".selection").data([ro("selection")]).enter().append("rect").attr("class","selection").attr("cursor",Qe.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var b=m.selectAll(".handle").data(t.handles,function(v){return v.type});b.exit().remove(),b.enter().append("rect").attr("class",function(v){return"handle handle--"+v.type}).attr("cursor",function(v){return Qe[v.type]}),m.each(l).attr("fill","none").attr("pointer-events","all").on("mousedown.brush",h).filter(r).on("touchstart.brush",h).on("touchmove.brush",p).on("touchend.brush touchcancel.brush",d).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}u.move=function(m,y,b){m.tween?m.on("start.brush",function(v){c(this,arguments).beforestart().start(v)}).on("interrupt.brush end.brush",function(v){c(this,arguments).end(v)}).tween("brush",function(){var v=this,x=v.__brush,S=c(v,arguments),$=x.selection,R=t.input(typeof y=="function"?y.apply(this,arguments):y,x.extent),T=Ze($,R);function w(P){x.selection=P===1&&R===null?null:T(P),l.call(v),S.brush()}return $!==null&&R!==null?w:w(1)}):m.each(function(){var v=this,x=arguments,S=v.__brush,$=t.input(typeof y=="function"?y.apply(v,x):y,S.extent),R=c(v,x).beforestart();Kn(v),S.selection=$===null?null:$,l.call(v),R.start(b).brush(b).end(b)})},u.clear=function(m,y){u.move(m,null,y)};function l(){var m=V(this),y=kc(this).selection;y?(m.selectAll(".selection").style("display",null).attr("x",y[0][0]).attr("y",y[0][1]).attr("width",y[1][0]-y[0][0]).attr("height",y[1][1]-y[0][1]),m.selectAll(".handle").style("display",null).attr("x",function(b){return b.type[b.type.length-1]==="e"?y[1][0]-a/2:y[0][0]-a/2}).attr("y",function(b){return b.type[0]==="s"?y[1][1]-a/2:y[0][1]-a/2}).attr("width",function(b){return b.type==="n"||b.type==="s"?y[1][0]-y[0][0]+a:a}).attr("height",function(b){return b.type==="e"||b.type==="w"?y[1][1]-y[0][1]+a:a})):m.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function c(m,y,b){var v=m.__brush.emitter;return v&&(!b||!v.clean)?v:new f(m,y,b)}function f(m,y,b){this.that=m,this.args=y,this.state=m.__brush,this.active=0,this.clean=b}f.prototype={beforestart:function(){return++this.active===1&&(this.state.emitter=this,this.starting=!0),this},start:function(m,y){return this.starting?(this.starting=!1,this.emit("start",m,y)):this.emit("brush",m),this},brush:function(m,y){return this.emit("brush",m,y),this},end:function(m,y){return--this.active===0&&(delete this.state.emitter,this.emit("end",m,y)),this},emit:function(m,y,b){var v=V(this.that).datum();o.call(m,this.that,new aM(m,{sourceEvent:y,target:u,selection:t.output(this.state.selection),mode:b,dispatch:o}),v)}};function h(m){if(s&&!m.touches||!n.apply(this,arguments))return;var y=this,b=m.target.__data__.type,v=(i&&m.metaKey?b="overlay":b)==="selection"?Pm:i&&m.altKey?jr:Xr,x=t===ls?null:lM[b],S=t===us?null:cM[b],$=kc(y),R=$.extent,T=$.selection,w=R[0][0],P,_,N=R[0][1],D,A,L=R[1][0],M,G,O=R[1][1],E,k,C=0,F=0,X,Q=x&&S&&i&&m.shiftKey,z,Z,Y=Array.from(m.touches||[m],st=>{const Pt=st.identifier;return st=le(st,y),st.point0=st.slice(),st.identifier=Pt,st});Kn(y);var q=c(y,arguments,!0).beforestart();if(b==="overlay"){T&&(X=!0);const st=[Y[0],Y[1]||Y[0]];$.selection=T=[[P=t===ls?w:Ot(st[0][0],st[1][0]),D=t===us?N:Ot(st[0][1],st[1][1])],[M=t===ls?L:Ft(st[0][0],st[1][0]),E=t===us?O:Ft(st[0][1],st[1][1])]],Y.length>1&&mt(m)}else P=T[0][0],D=T[0][1],M=T[1][0],E=T[1][1];_=P,A=D,G=M,k=E;var j=V(y).attr("pointer-events","none"),rt=j.selectAll(".overlay").attr("cursor",Qe[b]);if(m.touches)q.moved=H,q.ended=ht;else{var ut=V(m.view).on("mousemove.brush",H,!0).on("mouseup.brush",ht,!0);i&&ut.on("keydown.brush",Ut,!0).on("keyup.brush",ee,!0),Fa(m.view)}l.call(y),q.start(m,v.name);function H(st){for(const Pt of st.changedTouches||[st])for(const Xo of Y)Xo.identifier===Pt.identifier&&(Xo.cur=le(Pt,y));if(Q&&!z&&!Z&&Y.length===1){const Pt=Y[0];Mm(Pt.cur[0]-Pt[0])>Mm(Pt.cur[1]-Pt[1])?Z=!0:z=!0}for(const Pt of Y)Pt.cur&&(Pt[0]=Pt.cur[0],Pt[1]=Pt.cur[1]);X=!0,Dc(st),mt(st)}function mt(st){const Pt=Y[0],Xo=Pt.point0;var Dn;switch(C=Pt[0]-Xo[0],F=Pt[1]-Xo[1],v){case Cc:case Pm:{x&&(C=Ft(w-P,Ot(L-M,C)),_=P+C,G=M+C),S&&(F=Ft(N-D,Ot(O-E,F)),A=D+F,k=E+F);break}case Xr:{Y[1]?(x&&(_=Ft(w,Ot(L,Y[0][0])),G=Ft(w,Ot(L,Y[1][0])),x=1),S&&(A=Ft(N,Ot(O,Y[0][1])),k=Ft(N,Ot(O,Y[1][1])),S=1)):(x<0?(C=Ft(w-P,Ot(L-P,C)),_=P+C,G=M):x>0&&(C=Ft(w-M,Ot(L-M,C)),_=P,G=M+C),S<0?(F=Ft(N-D,Ot(O-D,F)),A=D+F,k=E):S>0&&(F=Ft(N-E,Ot(O-E,F)),A=D,k=E+F));break}case jr:{x&&(_=Ft(w,Ot(L,P-C*x)),G=Ft(w,Ot(L,M+C*x))),S&&(A=Ft(N,Ot(O,D-F*S)),k=Ft(N,Ot(O,E+F*S)));break}}G<_&&(x*=-1,Dn=P,P=M,M=Dn,Dn=_,_=G,G=Dn,b in Cm&&rt.attr("cursor",Qe[b=Cm[b]])),k<A&&(S*=-1,Dn=D,D=E,E=Dn,Dn=A,A=k,k=Dn,b in Lm&&rt.attr("cursor",Qe[b=Lm[b]])),$.selection&&(T=$.selection),z&&(_=T[0][0],G=T[1][0]),Z&&(A=T[0][1],k=T[1][1]),(T[0][0]!==_||T[0][1]!==A||T[1][0]!==G||T[1][1]!==k)&&($.selection=[[_,A],[G,k]],l.call(y),q.brush(st,v.name))}function ht(st){if(sM(st),st.touches){if(st.touches.length)return;s&&clearTimeout(s),s=setTimeout(function(){s=null},500)}else Oa(st.view,X),ut.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);j.attr("pointer-events","all"),rt.attr("cursor",Qe.overlay),$.selection&&(T=$.selection),dM(T)&&($.selection=null,l.call(y)),q.end(st,v.name)}function Ut(st){switch(st.keyCode){case 16:{Q=x&&S;break}case 18:{v===Xr&&(x&&(M=G-C*x,P=_+C*x),S&&(E=k-F*S,D=A+F*S),v=jr,mt(st));break}case 32:{(v===Xr||v===jr)&&(x<0?M=G-C:x>0&&(P=_-C),S<0?E=k-F:S>0&&(D=A-F),v=Cc,rt.attr("cursor",Qe.selection),mt(st));break}default:return}Dc(st)}function ee(st){switch(st.keyCode){case 16:{Q&&(z=Z=Q=!1,mt(st));break}case 18:{v===jr&&(x<0?M=G:x>0&&(P=_),S<0?E=k:S>0&&(D=A),v=Xr,mt(st));break}case 32:{v===Cc&&(st.altKey?(x&&(M=G-C*x,P=_+C*x),S&&(E=k-F*S,D=A+F*S),v=jr):(x<0?M=G:x>0&&(P=_),S<0?E=k:S>0&&(D=A),v=Xr),rt.attr("cursor",Qe[b]),mt(st));break}default:return}Dc(st)}}function p(m){c(this,arguments).moved(m)}function d(m){c(this,arguments).ended(m)}function g(){var m=this.__brush||{selection:null};return m.extent=Lc(e.apply(this,arguments)),m.dim=t,m}return u.extent=function(m){return arguments.length?(e=typeof m=="function"?m:Mc(Lc(m)),u):e},u.filter=function(m){return arguments.length?(n=typeof m=="function"?m:Mc(!!m),u):n},u.touchable=function(m){return arguments.length?(r=typeof m=="function"?m:Mc(!!m),u):r},u.handleSize=function(m){return arguments.length?(a=+m,u):a},u.keyModifiers=function(m){return arguments.length?(i=!!m,u):i},u.on=function(){var m=o.on.apply(o,arguments);return m===o?u:m},u}var km=Math.abs,Vr=Math.cos,qr=Math.sin,Rm=Math.PI,cs=Rm/2,Em=Rm*2,Im=Math.max,Ec=1e-12;function Ic(t,e){return Array.from({length:e-t},(n,r)=>t+r)}function xM(t){return function(e,n){return t(e.source.value+e.target.value,n.source.value+n.target.value)}}function vM(){return Nc(!1,!1)}function _M(){return Nc(!1,!0)}function wM(){return Nc(!0,!1)}function Nc(t,e){var n=0,r=null,i=null,o=null;function a(s){var u=s.length,l=new Array(u),c=Ic(0,u),f=new Array(u*u),h=new Array(u),p=0,d;s=Float64Array.from({length:u*u},e?(g,m)=>s[m%u][m/u|0]:(g,m)=>s[m/u|0][m%u]);for(let g=0;g<u;++g){let m=0;for(let y=0;y<u;++y)m+=s[g*u+y]+t*s[y*u+g];p+=l[g]=m}p=Im(0,Em-n*u)/p,d=p?n:Em/u;{let g=0;r&&c.sort((m,y)=>r(l[m],l[y]));for(const m of c){const y=g;if(t){const b=Ic(~u+1,u).filter(v=>v<0?s[~v*u+m]:s[m*u+v]);i&&b.sort((v,x)=>i(v<0?-s[~v*u+m]:s[m*u+v],x<0?-s[~x*u+m]:s[m*u+x]));for(const v of b)if(v<0){const x=f[~v*u+m]||(f[~v*u+m]={source:null,target:null});x.target={index:m,startAngle:g,endAngle:g+=s[~v*u+m]*p,value:s[~v*u+m]}}else{const x=f[m*u+v]||(f[m*u+v]={source:null,target:null});x.source={index:m,startAngle:g,endAngle:g+=s[m*u+v]*p,value:s[m*u+v]}}h[m]={index:m,startAngle:y,endAngle:g,value:l[m]}}else{const b=Ic(0,u).filter(v=>s[m*u+v]||s[v*u+m]);i&&b.sort((v,x)=>i(s[m*u+v],s[m*u+x]));for(const v of b){let x;if(m<v?(x=f[m*u+v]||(f[m*u+v]={source:null,target:null}),x.source={index:m,startAngle:g,endAngle:g+=s[m*u+v]*p,value:s[m*u+v]}):(x=f[v*u+m]||(f[v*u+m]={source:null,target:null}),x.target={index:m,startAngle:g,endAngle:g+=s[m*u+v]*p,value:s[m*u+v]},m===v&&(x.source=x.target)),x.source&&x.target&&x.source.value<x.target.value){const S=x.source;x.source=x.target,x.target=S}}h[m]={index:m,startAngle:y,endAngle:g,value:l[m]}}g+=d}}return f=Object.values(f),f.groups=h,o?f.sort(o):f}return a.padAngle=function(s){return arguments.length?(n=Im(0,s),a):n},a.sortGroups=function(s){return arguments.length?(r=s,a):r},a.sortSubgroups=function(s){return arguments.length?(i=s,a):i},a.sortChords=function(s){return arguments.length?(s==null?o=null:(o=xM(s))._=s,a):o&&o._},a}const Bc=Math.PI,Fc=2*Bc,Qn=1e-6,$M=Fc-Qn;function Nm(t){this._+=t[0];for(let e=1,n=t.length;e<n;++e)this._+=arguments[e]+t[e]}function SM(t){let e=Math.floor(t);if(!(e>=0))throw new Error(`invalid digits: ${t}`);if(e>15)return Nm;const n=10**e;return function(r){this._+=r[0];for(let i=1,o=r.length;i<o;++i)this._+=Math.round(arguments[i]*n)/n+r[i]}}let io=class{constructor(e){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=e==null?Nm:SM(e)}moveTo(e,n){this._append`M${this._x0=this._x1=+e},${this._y0=this._y1=+n}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._append`Z`)}lineTo(e,n){this._append`L${this._x1=+e},${this._y1=+n}`}quadraticCurveTo(e,n,r,i){this._append`Q${+e},${+n},${this._x1=+r},${this._y1=+i}`}bezierCurveTo(e,n,r,i,o,a){this._append`C${+e},${+n},${+r},${+i},${this._x1=+o},${this._y1=+a}`}arcTo(e,n,r,i,o){if(e=+e,n=+n,r=+r,i=+i,o=+o,o<0)throw new Error(`negative radius: ${o}`);let a=this._x1,s=this._y1,u=r-e,l=i-n,c=a-e,f=s-n,h=c*c+f*f;if(this._x1===null)this._append`M${this._x1=e},${this._y1=n}`;else if(h>Qn)if(!(Math.abs(f*u-l*c)>Qn)||!o)this._append`L${this._x1=e},${this._y1=n}`;else{let p=r-a,d=i-s,g=u*u+l*l,m=p*p+d*d,y=Math.sqrt(g),b=Math.sqrt(h),v=o*Math.tan((Bc-Math.acos((g+h-m)/(2*y*b)))/2),x=v/b,S=v/y;Math.abs(x-1)>Qn&&this._append`L${e+x*c},${n+x*f}`,this._append`A${o},${o},0,0,${+(f*p>c*d)},${this._x1=e+S*u},${this._y1=n+S*l}`}}arc(e,n,r,i,o,a){if(e=+e,n=+n,r=+r,a=!!a,r<0)throw new Error(`negative radius: ${r}`);let s=r*Math.cos(i),u=r*Math.sin(i),l=e+s,c=n+u,f=1^a,h=a?i-o:o-i;this._x1===null?this._append`M${l},${c}`:(Math.abs(this._x1-l)>Qn||Math.abs(this._y1-c)>Qn)&&this._append`L${l},${c}`,r&&(h<0&&(h=h%Fc+Fc),h>$M?this._append`A${r},${r},0,1,${f},${e-s},${n-u}A${r},${r},0,1,${f},${this._x1=l},${this._y1=c}`:h>Qn&&this._append`A${r},${r},0,${+(h>=Bc)},${f},${this._x1=e+r*Math.cos(o)},${this._y1=n+r*Math.sin(o)}`)}rect(e,n,r,i){this._append`M${this._x0=this._x1=+e},${this._y0=this._y1=+n}h${r=+r}v${+i}h${-r}Z`}toString(){return this._}};function Oc(){return new io}Oc.prototype=io.prototype;function AM(t=3){return new io(+t)}var TM=Array.prototype.slice;function Jn(t){return function(){return t}}function PM(t){return t.source}function MM(t){return t.target}function Bm(t){return t.radius}function DM(t){return t.startAngle}function CM(t){return t.endAngle}function LM(){return 0}function kM(){return 10}function Fm(t){var e=PM,n=MM,r=Bm,i=Bm,o=DM,a=CM,s=LM,u=null;function l(){var c,f=e.apply(this,arguments),h=n.apply(this,arguments),p=s.apply(this,arguments)/2,d=TM.call(arguments),g=+r.apply(this,(d[0]=f,d)),m=o.apply(this,d)-cs,y=a.apply(this,d)-cs,b=+i.apply(this,(d[0]=h,d)),v=o.apply(this,d)-cs,x=a.apply(this,d)-cs;if(u||(u=c=Oc()),p>Ec&&(km(y-m)>p*2+Ec?y>m?(m+=p,y-=p):(m-=p,y+=p):m=y=(m+y)/2,km(x-v)>p*2+Ec?x>v?(v+=p,x-=p):(v-=p,x+=p):v=x=(v+x)/2),u.moveTo(g*Vr(m),g*qr(m)),u.arc(0,0,g,m,y),m!==v||y!==x)if(t){var S=+t.apply(this,arguments),$=b-S,R=(v+x)/2;u.quadraticCurveTo(0,0,$*Vr(v),$*qr(v)),u.lineTo(b*Vr(R),b*qr(R)),u.lineTo($*Vr(x),$*qr(x))}else u.quadraticCurveTo(0,0,b*Vr(v),b*qr(v)),u.arc(0,0,b,v,x);if(u.quadraticCurveTo(0,0,g*Vr(m),g*qr(m)),u.closePath(),c)return u=null,c+""||null}return t&&(l.headRadius=function(c){return arguments.length?(t=typeof c=="function"?c:Jn(+c),l):t}),l.radius=function(c){return arguments.length?(r=i=typeof c=="function"?c:Jn(+c),l):r},l.sourceRadius=function(c){return arguments.length?(r=typeof c=="function"?c:Jn(+c),l):r},l.targetRadius=function(c){return arguments.length?(i=typeof c=="function"?c:Jn(+c),l):i},l.startAngle=function(c){return arguments.length?(o=typeof c=="function"?c:Jn(+c),l):o},l.endAngle=function(c){return arguments.length?(a=typeof c=="function"?c:Jn(+c),l):a},l.padAngle=function(c){return arguments.length?(s=typeof c=="function"?c:Jn(+c),l):s},l.source=function(c){return arguments.length?(e=c,l):e},l.target=function(c){return arguments.length?(n=c,l):n},l.context=function(c){return arguments.length?(u=c??null,l):u},l}function RM(){return Fm()}function EM(){return Fm(kM)}var IM=Array.prototype,Om=IM.slice;function NM(t,e){return t-e}function BM(t){for(var e=0,n=t.length,r=t[n-1][1]*t[0][0]-t[n-1][0]*t[0][1];++e<n;)r+=t[e-1][1]*t[e][0]-t[e-1][0]*t[e][1];return r}const yn=t=>()=>t;function FM(t,e){for(var n=-1,r=e.length,i;++n<r;)if(i=OM(t,e[n]))return i;return 0}function OM(t,e){for(var n=e[0],r=e[1],i=-1,o=0,a=t.length,s=a-1;o<a;s=o++){var u=t[o],l=u[0],c=u[1],f=t[s],h=f[0],p=f[1];if(GM(u,f,e))return 0;c>r!=p>r&&n<(h-l)*(r-c)/(p-c)+l&&(i=-i)}return i}function GM(t,e,n){var r;return zM(t,e,n)&&YM(t[r=+(t[0]===e[0])],n[r],e[r])}function zM(t,e,n){return(e[0]-t[0])*(n[1]-t[1])===(n[0]-t[0])*(e[1]-t[1])}function YM(t,e,n){return t<=e&&e<=n||n<=e&&e<=t}function UM(){}var Je=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]];function Gc(){var t=1,e=1,n=Yl,r=u;function i(l){var c=n(l);if(Array.isArray(c))c=c.slice().sort(NM);else{const f=Ni(l,WM);for(c=zn(...zl(f[0],f[1],c),c);c[c.length-1]>=f[1];)c.pop();for(;c[1]<f[0];)c.shift()}return c.map(f=>o(l,f))}function o(l,c){const f=c==null?NaN:+c;if(isNaN(f))throw new Error(`invalid value: ${c}`);var h=[],p=[];return a(l,f,function(d){r(d,l,f),BM(d)>0?h.push([d]):p.push(d)}),p.forEach(function(d){for(var g=0,m=h.length,y;g<m;++g)if(FM((y=h[g])[0],d)!==-1){y.push(d);return}}),{type:"MultiPolygon",value:c,coordinates:h}}function a(l,c,f){var h=new Array,p=new Array,d,g,m,y,b,v;for(d=g=-1,y=tr(l[0],c),Je[y<<1].forEach(x);++d<t-1;)m=y,y=tr(l[d+1],c),Je[m|y<<1].forEach(x);for(Je[y<<0].forEach(x);++g<e-1;){for(d=-1,y=tr(l[g*t+t],c),b=tr(l[g*t],c),Je[y<<1|b<<2].forEach(x);++d<t-1;)m=y,y=tr(l[g*t+t+d+1],c),v=b,b=tr(l[g*t+d+1],c),Je[m|y<<1|b<<2|v<<3].forEach(x);Je[y|b<<3].forEach(x)}for(d=-1,b=l[g*t]>=c,Je[b<<2].forEach(x);++d<t-1;)v=b,b=tr(l[g*t+d+1],c),Je[b<<2|v<<3].forEach(x);Je[b<<3].forEach(x);function x(S){var $=[S[0][0]+d,S[0][1]+g],R=[S[1][0]+d,S[1][1]+g],T=s($),w=s(R),P,_;(P=p[T])?(_=h[w])?(delete p[P.end],delete h[_.start],P===_?(P.ring.push(R),f(P.ring)):h[P.start]=p[_.end]={start:P.start,end:_.end,ring:P.ring.concat(_.ring)}):(delete p[P.end],P.ring.push(R),p[P.end=w]=P):(P=h[w])?(_=p[T])?(delete h[P.start],delete p[_.end],P===_?(P.ring.push(R),f(P.ring)):h[_.start]=p[P.end]={start:_.start,end:P.end,ring:_.ring.concat(P.ring)}):(delete h[P.start],P.ring.unshift($),h[P.start=T]=P):h[T]=p[w]={start:T,end:w,ring:[$,R]}}}function s(l){return l[0]*2+l[1]*(t+1)*4}function u(l,c,f){l.forEach(function(h){var p=h[0],d=h[1],g=p|0,m=d|0,y=zc(c[m*t+g]);p>0&&p<t&&g===p&&(h[0]=Gm(p,zc(c[m*t+g-1]),y,f)),d>0&&d<e&&m===d&&(h[1]=Gm(d,zc(c[(m-1)*t+g]),y,f))})}return i.contour=o,i.size=function(l){if(!arguments.length)return[t,e];var c=Math.floor(l[0]),f=Math.floor(l[1]);if(!(c>=0&&f>=0))throw new Error("invalid size");return t=c,e=f,i},i.thresholds=function(l){return arguments.length?(n=typeof l=="function"?l:Array.isArray(l)?yn(Om.call(l)):yn(l),i):n},i.smooth=function(l){return arguments.length?(r=l?u:UM,i):r===u},i}function WM(t){return isFinite(t)?t:NaN}function tr(t,e){return t==null?!1:+t>=e}function zc(t){return t==null||isNaN(t=+t)?-1/0:t}function Gm(t,e,n,r){const i=r-e,o=n-e,a=isFinite(i)||isFinite(o)?i/o:Math.sign(i)/Math.sign(o);return isNaN(a)?t:t+a-.5}function HM(t){return t[0]}function XM(t){return t[1]}function jM(){return 1}function VM(){var t=HM,e=XM,n=jM,r=960,i=500,o=20,a=2,s=o*3,u=r+s*2>>a,l=i+s*2>>a,c=yn(20);function f(b){var v=new Float32Array(u*l),x=Math.pow(2,-a),S=-1;for(const D of b){var $=(t(D,++S,b)+s)*x,R=(e(D,S,b)+s)*x,T=+n(D,S,b);if(T&&$>=0&&$<u&&R>=0&&R<l){var w=Math.floor($),P=Math.floor(R),_=$-w-.5,N=R-P-.5;v[w+P*u]+=(1-_)*(1-N)*T,v[w+1+P*u]+=_*(1-N)*T,v[w+1+(P+1)*u]+=_*N*T,v[w+(P+1)*u]+=(1-_)*N*T}}return Eg({data:v,width:u,height:l},o*x),v}function h(b){var v=f(b),x=c(v),S=Math.pow(2,2*a);return Array.isArray(x)||(x=zn(Number.MIN_VALUE,Fi(v)/S,x)),Gc().size([u,l]).thresholds(x.map($=>$*S))(v).map(($,R)=>($.value=+x[R],p($)))}h.contours=function(b){var v=f(b),x=Gc().size([u,l]),S=Math.pow(2,2*a),$=R=>{R=+R;var T=p(x.contour(v,R*S));return T.value=R,T};return Object.defineProperty($,"max",{get:()=>Fi(v)/S}),$};function p(b){return b.coordinates.forEach(d),b}function d(b){b.forEach(g)}function g(b){b.forEach(m)}function m(b){b[0]=b[0]*Math.pow(2,a)-s,b[1]=b[1]*Math.pow(2,a)-s}function y(){return s=o*3,u=r+s*2>>a,l=i+s*2>>a,h}return h.x=function(b){return arguments.length?(t=typeof b=="function"?b:yn(+b),h):t},h.y=function(b){return arguments.length?(e=typeof b=="function"?b:yn(+b),h):e},h.weight=function(b){return arguments.length?(n=typeof b=="function"?b:yn(+b),h):n},h.size=function(b){if(!arguments.length)return[r,i];var v=+b[0],x=+b[1];if(!(v>=0&&x>=0))throw new Error("invalid size");return r=v,i=x,y()},h.cellSize=function(b){if(!arguments.length)return 1<<a;if(!((b=+b)>=1))throw new Error("invalid cell size");return a=Math.floor(Math.log(b)/Math.LN2),y()},h.thresholds=function(b){return arguments.length?(c=typeof b=="function"?b:Array.isArray(b)?yn(Om.call(b)):yn(b),h):c},h.bandwidth=function(b){if(!arguments.length)return Math.sqrt(o*(o+1));if(!((b=+b)>=0))throw new Error("invalid bandwidth");return o=(Math.sqrt(4*b*b+1)-1)/2,y()},h}const tn=11102230246251565e-32,Gt=134217729,qM=(3+8*tn)*tn;function Yc(t,e,n,r,i){let o,a,s,u,l=e[0],c=r[0],f=0,h=0;c>l==c>-l?(o=l,l=e[++f]):(o=c,c=r[++h]);let p=0;if(f<t&&h<n)for(c>l==c>-l?(a=l+o,s=o-(a-l),l=e[++f]):(a=c+o,s=o-(a-c),c=r[++h]),o=a,s!==0&&(i[p++]=s);f<t&&h<n;)c>l==c>-l?(a=o+l,u=a-o,s=o-(a-u)+(l-u),l=e[++f]):(a=o+c,u=a-o,s=o-(a-u)+(c-u),c=r[++h]),o=a,s!==0&&(i[p++]=s);for(;f<t;)a=o+l,u=a-o,s=o-(a-u)+(l-u),l=e[++f],o=a,s!==0&&(i[p++]=s);for(;h<n;)a=o+c,u=a-o,s=o-(a-u)+(c-u),c=r[++h],o=a,s!==0&&(i[p++]=s);return(o!==0||p===0)&&(i[p++]=o),p}function ZM(t,e){let n=e[0];for(let r=1;r<t;r++)n+=e[r];return n}function oo(t){return new Float64Array(t)}const KM=(3+16*tn)*tn,QM=(2+12*tn)*tn,JM=(9+64*tn)*tn*tn,Zr=oo(4),zm=oo(8),Ym=oo(12),Um=oo(16),Ht=oo(4);function t4(t,e,n,r,i,o,a){let s,u,l,c,f,h,p,d,g,m,y,b,v,x,S,$,R,T;const w=t-i,P=n-i,_=e-o,N=r-o;x=w*N,h=Gt*w,p=h-(h-w),d=w-p,h=Gt*N,g=h-(h-N),m=N-g,S=d*m-(x-p*g-d*g-p*m),$=_*P,h=Gt*_,p=h-(h-_),d=_-p,h=Gt*P,g=h-(h-P),m=P-g,R=d*m-($-p*g-d*g-p*m),y=S-R,f=S-y,Zr[0]=S-(y+f)+(f-R),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-$,f=v-y,Zr[1]=v-(y+f)+(f-$),T=b+y,f=T-b,Zr[2]=b-(T-f)+(y-f),Zr[3]=T;let D=ZM(4,Zr),A=QM*a;if(D>=A||-D>=A||(f=t-w,s=t-(w+f)+(f-i),f=n-P,l=n-(P+f)+(f-i),f=e-_,u=e-(_+f)+(f-o),f=r-N,c=r-(N+f)+(f-o),s===0&&u===0&&l===0&&c===0)||(A=JM*a+qM*Math.abs(D),D+=w*c+N*s-(_*l+P*u),D>=A||-D>=A))return D;x=s*N,h=Gt*s,p=h-(h-s),d=s-p,h=Gt*N,g=h-(h-N),m=N-g,S=d*m-(x-p*g-d*g-p*m),$=u*P,h=Gt*u,p=h-(h-u),d=u-p,h=Gt*P,g=h-(h-P),m=P-g,R=d*m-($-p*g-d*g-p*m),y=S-R,f=S-y,Ht[0]=S-(y+f)+(f-R),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-$,f=v-y,Ht[1]=v-(y+f)+(f-$),T=b+y,f=T-b,Ht[2]=b-(T-f)+(y-f),Ht[3]=T;const L=Yc(4,Zr,4,Ht,zm);x=w*c,h=Gt*w,p=h-(h-w),d=w-p,h=Gt*c,g=h-(h-c),m=c-g,S=d*m-(x-p*g-d*g-p*m),$=_*l,h=Gt*_,p=h-(h-_),d=_-p,h=Gt*l,g=h-(h-l),m=l-g,R=d*m-($-p*g-d*g-p*m),y=S-R,f=S-y,Ht[0]=S-(y+f)+(f-R),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-$,f=v-y,Ht[1]=v-(y+f)+(f-$),T=b+y,f=T-b,Ht[2]=b-(T-f)+(y-f),Ht[3]=T;const M=Yc(L,zm,4,Ht,Ym);x=s*c,h=Gt*s,p=h-(h-s),d=s-p,h=Gt*c,g=h-(h-c),m=c-g,S=d*m-(x-p*g-d*g-p*m),$=u*l,h=Gt*u,p=h-(h-u),d=u-p,h=Gt*l,g=h-(h-l),m=l-g,R=d*m-($-p*g-d*g-p*m),y=S-R,f=S-y,Ht[0]=S-(y+f)+(f-R),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-$,f=v-y,Ht[1]=v-(y+f)+(f-$),T=b+y,f=T-b,Ht[2]=b-(T-f)+(y-f),Ht[3]=T;const G=Yc(M,Ym,4,Ht,Um);return Um[G-1]}function fs(t,e,n,r,i,o){const a=(e-o)*(n-i),s=(t-i)*(r-o),u=a-s,l=Math.abs(a+s);return Math.abs(u)>=KM*l?u:-t4(t,e,n,r,i,o,l)}const Wm=Math.pow(2,-52),hs=new Uint32Array(512);class ps{static from(e,n=o4,r=a4){const i=e.length,o=new Float64Array(i*2);for(let a=0;a<i;a++){const s=e[a];o[2*a]=n(s),o[2*a+1]=r(s)}return new ps(o)}constructor(e){const n=e.length>>1;if(n>0&&typeof e[0]!="number")throw new Error("Expected coords to contain numbers.");this.coords=e;const r=Math.max(2*n-5,0);this._triangles=new Uint32Array(r*3),this._halfedges=new Int32Array(r*3),this._hashSize=Math.ceil(Math.sqrt(n)),this._hullPrev=new Uint32Array(n),this._hullNext=new Uint32Array(n),this._hullTri=new Uint32Array(n),this._hullHash=new Int32Array(this._hashSize),this._ids=new Uint32Array(n),this._dists=new Float64Array(n),this.update()}update(){const{coords:e,_hullPrev:n,_hullNext:r,_hullTri:i,_hullHash:o}=this,a=e.length>>1;let s=1/0,u=1/0,l=-1/0,c=-1/0;for(let w=0;w<a;w++){const P=e[2*w],_=e[2*w+1];P<s&&(s=P),_<u&&(u=_),P>l&&(l=P),_>c&&(c=_),this._ids[w]=w}const f=(s+l)/2,h=(u+c)/2;let p,d,g;for(let w=0,P=1/0;w<a;w++){const _=Uc(f,h,e[2*w],e[2*w+1]);_<P&&(p=w,P=_)}const m=e[2*p],y=e[2*p+1];for(let w=0,P=1/0;w<a;w++){if(w===p)continue;const _=Uc(m,y,e[2*w],e[2*w+1]);_<P&&_>0&&(d=w,P=_)}let b=e[2*d],v=e[2*d+1],x=1/0;for(let w=0;w<a;w++){if(w===p||w===d)continue;const P=r4(m,y,b,v,e[2*w],e[2*w+1]);P<x&&(g=w,x=P)}let S=e[2*g],$=e[2*g+1];if(x===1/0){for(let _=0;_<a;_++)this._dists[_]=e[2*_]-e[0]||e[2*_+1]-e[1];Kr(this._ids,this._dists,0,a-1);const w=new Uint32Array(a);let P=0;for(let _=0,N=-1/0;_<a;_++){const D=this._ids[_],A=this._dists[D];A>N&&(w[P++]=D,N=A)}this.hull=w.subarray(0,P),this.triangles=new Uint32Array(0),this.halfedges=new Uint32Array(0);return}if(fs(m,y,b,v,S,$)<0){const w=d,P=b,_=v;d=g,b=S,v=$,g=w,S=P,$=_}const R=i4(m,y,b,v,S,$);this._cx=R.x,this._cy=R.y;for(let w=0;w<a;w++)this._dists[w]=Uc(e[2*w],e[2*w+1],R.x,R.y);Kr(this._ids,this._dists,0,a-1),this._hullStart=p;let T=3;r[p]=n[g]=d,r[d]=n[p]=g,r[g]=n[d]=p,i[p]=0,i[d]=1,i[g]=2,o.fill(-1),o[this._hashKey(m,y)]=p,o[this._hashKey(b,v)]=d,o[this._hashKey(S,$)]=g,this.trianglesLen=0,this._addTriangle(p,d,g,-1,-1,-1);for(let w=0,P,_;w<this._ids.length;w++){const N=this._ids[w],D=e[2*N],A=e[2*N+1];if(w>0&&Math.abs(D-P)<=Wm&&Math.abs(A-_)<=Wm||(P=D,_=A,N===p||N===d||N===g))continue;let L=0;for(let k=0,C=this._hashKey(D,A);k<this._hashSize&&(L=o[(C+k)%this._hashSize],!(L!==-1&&L!==r[L]));k++);L=n[L];let M=L,G;for(;G=r[M],fs(D,A,e[2*M],e[2*M+1],e[2*G],e[2*G+1])>=0;)if(M=G,M===L){M=-1;break}if(M===-1)continue;let O=this._addTriangle(M,N,r[M],-1,-1,i[M]);i[N]=this._legalize(O+2),i[M]=O,T++;let E=r[M];for(;G=r[E],fs(D,A,e[2*E],e[2*E+1],e[2*G],e[2*G+1])<0;)O=this._addTriangle(E,N,G,i[N],-1,i[E]),i[N]=this._legalize(O+2),r[E]=E,T--,E=G;if(M===L)for(;G=n[M],fs(D,A,e[2*G],e[2*G+1],e[2*M],e[2*M+1])<0;)O=this._addTriangle(G,N,M,-1,i[M],i[G]),this._legalize(O+2),i[G]=O,r[M]=M,T--,M=G;this._hullStart=n[N]=M,r[M]=n[E]=N,r[N]=E,o[this._hashKey(D,A)]=N,o[this._hashKey(e[2*M],e[2*M+1])]=M}this.hull=new Uint32Array(T);for(let w=0,P=this._hullStart;w<T;w++)this.hull[w]=P,P=r[P];this.triangles=this._triangles.subarray(0,this.trianglesLen),this.halfedges=this._halfedges.subarray(0,this.trianglesLen)}_hashKey(e,n){return Math.floor(e4(e-this._cx,n-this._cy)*this._hashSize)%this._hashSize}_legalize(e){const{_triangles:n,_halfedges:r,coords:i}=this;let o=0,a=0;for(;;){const s=r[e],u=e-e%3;if(a=u+(e+2)%3,s===-1){if(o===0)break;e=hs[--o];continue}const l=s-s%3,c=u+(e+1)%3,f=l+(s+2)%3,h=n[a],p=n[e],d=n[c],g=n[f];if(n4(i[2*h],i[2*h+1],i[2*p],i[2*p+1],i[2*d],i[2*d+1],i[2*g],i[2*g+1])){n[e]=g,n[s]=h;const y=r[f];if(y===-1){let v=this._hullStart;do{if(this._hullTri[v]===f){this._hullTri[v]=e;break}v=this._hullPrev[v]}while(v!==this._hullStart)}this._link(e,y),this._link(s,r[a]),this._link(a,f);const b=l+(s+1)%3;o<hs.length&&(hs[o++]=b)}else{if(o===0)break;e=hs[--o]}}return a}_link(e,n){this._halfedges[e]=n,n!==-1&&(this._halfedges[n]=e)}_addTriangle(e,n,r,i,o,a){const s=this.trianglesLen;return this._triangles[s]=e,this._triangles[s+1]=n,this._triangles[s+2]=r,this._link(s,i),this._link(s+1,o),this._link(s+2,a),this.trianglesLen+=3,s}}function e4(t,e){const n=t/(Math.abs(t)+Math.abs(e));return(e>0?3-n:1+n)/4}function Uc(t,e,n,r){const i=t-n,o=e-r;return i*i+o*o}function n4(t,e,n,r,i,o,a,s){const u=t-a,l=e-s,c=n-a,f=r-s,h=i-a,p=o-s,d=u*u+l*l,g=c*c+f*f,m=h*h+p*p;return u*(f*m-g*p)-l*(c*m-g*h)+d*(c*p-f*h)<0}function r4(t,e,n,r,i,o){const a=n-t,s=r-e,u=i-t,l=o-e,c=a*a+s*s,f=u*u+l*l,h=.5/(a*l-s*u),p=(l*c-s*f)*h,d=(a*f-u*c)*h;return p*p+d*d}function i4(t,e,n,r,i,o){const a=n-t,s=r-e,u=i-t,l=o-e,c=a*a+s*s,f=u*u+l*l,h=.5/(a*l-s*u),p=t+(l*c-s*f)*h,d=e+(a*f-u*c)*h;return{x:p,y:d}}function Kr(t,e,n,r){if(r-n<=20)for(let i=n+1;i<=r;i++){const o=t[i],a=e[o];let s=i-1;for(;s>=n&&e[t[s]]>a;)t[s+1]=t[s--];t[s+1]=o}else{const i=n+r>>1;let o=n+1,a=r;ao(t,i,o),e[t[n]]>e[t[r]]&&ao(t,n,r),e[t[o]]>e[t[r]]&&ao(t,o,r),e[t[n]]>e[t[o]]&&ao(t,n,o);const s=t[o],u=e[s];for(;;){do o++;while(e[t[o]]<u);do a--;while(e[t[a]]>u);if(a<o)break;ao(t,o,a)}t[n+1]=t[a],t[a]=s,r-o+1>=a-n?(Kr(t,e,o,r),Kr(t,e,n,a-1)):(Kr(t,e,n,a-1),Kr(t,e,o,r))}}function ao(t,e,n){const r=t[e];t[e]=t[n],t[n]=r}function o4(t){return t[0]}function a4(t){return t[1]}const Hm=1e-6;class er{constructor(){this._x0=this._y0=this._x1=this._y1=null,this._=""}moveTo(e,n){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+n}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")}lineTo(e,n){this._+=`L${this._x1=+e},${this._y1=+n}`}arc(e,n,r){e=+e,n=+n,r=+r;const i=e+r,o=n;if(r<0)throw new Error("negative radius");this._x1===null?this._+=`M${i},${o}`:(Math.abs(this._x1-i)>Hm||Math.abs(this._y1-o)>Hm)&&(this._+="L"+i+","+o),r&&(this._+=`A${r},${r},0,1,1,${e-r},${n}A${r},${r},0,1,1,${this._x1=i},${this._y1=o}`)}rect(e,n,r,i){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+n}h${+r}v${+i}h${-r}Z`}value(){return this._||null}}class Wc{constructor(){this._=[]}moveTo(e,n){this._.push([e,n])}closePath(){this._.push(this._[0].slice())}lineTo(e,n){this._.push([e,n])}value(){return this._.length?this._:null}}class Xm{constructor(e,[n,r,i,o]=[0,0,960,500]){if(!((i=+i)>=(n=+n))||!((o=+o)>=(r=+r)))throw new Error("invalid bounds");this.delaunay=e,this._circumcenters=new Float64Array(e.points.length*2),this.vectors=new Float64Array(e.points.length*2),this.xmax=i,this.xmin=n,this.ymax=o,this.ymin=r,this._init()}update(){return this.delaunay.update(),this._init(),this}_init(){const{delaunay:{points:e,hull:n,triangles:r},vectors:i}=this;let o,a;const s=this.circumcenters=this._circumcenters.subarray(0,r.length/3*2);for(let g=0,m=0,y=r.length,b,v;g<y;g+=3,m+=2){const x=r[g]*2,S=r[g+1]*2,$=r[g+2]*2,R=e[x],T=e[x+1],w=e[S],P=e[S+1],_=e[$],N=e[$+1],D=w-R,A=P-T,L=_-R,M=N-T,G=(D*M-A*L)*2;if(Math.abs(G)<1e-9){if(o===void 0){o=a=0;for(const E of n)o+=e[E*2],a+=e[E*2+1];o/=n.length,a/=n.length}const O=1e9*Math.sign((o-R)*M-(a-T)*L);b=(R+_)/2-O*M,v=(T+N)/2+O*L}else{const O=1/G,E=D*D+A*A,k=L*L+M*M;b=R+(M*E-A*k)*O,v=T+(D*k-L*E)*O}s[m]=b,s[m+1]=v}let u=n[n.length-1],l,c=u*4,f,h=e[2*u],p,d=e[2*u+1];i.fill(0);for(let g=0;g<n.length;++g)u=n[g],l=c,f=h,p=d,c=u*4,h=e[2*u],d=e[2*u+1],i[l+2]=i[c]=p-d,i[l+3]=i[c+1]=h-f}render(e){const n=e==null?e=new er:void 0,{delaunay:{halfedges:r,inedges:i,hull:o},circumcenters:a,vectors:s}=this;if(o.length<=1)return null;for(let c=0,f=r.length;c<f;++c){const h=r[c];if(h<c)continue;const p=Math.floor(c/3)*2,d=Math.floor(h/3)*2,g=a[p],m=a[p+1],y=a[d],b=a[d+1];this._renderSegment(g,m,y,b,e)}let u,l=o[o.length-1];for(let c=0;c<o.length;++c){u=l,l=o[c];const f=Math.floor(i[l]/3)*2,h=a[f],p=a[f+1],d=u*4,g=this._project(h,p,s[d+2],s[d+3]);g&&this._renderSegment(h,p,g[0],g[1],e)}return n&&n.value()}renderBounds(e){const n=e==null?e=new er:void 0;return e.rect(this.xmin,this.ymin,this.xmax-this.xmin,this.ymax-this.ymin),n&&n.value()}renderCell(e,n){const r=n==null?n=new er:void 0,i=this._clip(e);if(i===null||!i.length)return;n.moveTo(i[0],i[1]);let o=i.length;for(;i[0]===i[o-2]&&i[1]===i[o-1]&&o>1;)o-=2;for(let a=2;a<o;a+=2)(i[a]!==i[a-2]||i[a+1]!==i[a-1])&&n.lineTo(i[a],i[a+1]);return n.closePath(),r&&r.value()}*cellPolygons(){const{delaunay:{points:e}}=this;for(let n=0,r=e.length/2;n<r;++n){const i=this.cellPolygon(n);i&&(i.index=n,yield i)}}cellPolygon(e){const n=new Wc;return this.renderCell(e,n),n.value()}_renderSegment(e,n,r,i,o){let a;const s=this._regioncode(e,n),u=this._regioncode(r,i);s===0&&u===0?(o.moveTo(e,n),o.lineTo(r,i)):(a=this._clipSegment(e,n,r,i,s,u))&&(o.moveTo(a[0],a[1]),o.lineTo(a[2],a[3]))}contains(e,n,r){return n=+n,n!==n||(r=+r,r!==r)?!1:this.delaunay._step(e,n,r)===e}*neighbors(e){const n=this._clip(e);if(n)for(const r of this.delaunay.neighbors(e)){const i=this._clip(r);if(i){t:for(let o=0,a=n.length;o<a;o+=2)for(let s=0,u=i.length;s<u;s+=2)if(n[o]===i[s]&&n[o+1]===i[s+1]&&n[(o+2)%a]===i[(s+u-2)%u]&&n[(o+3)%a]===i[(s+u-1)%u]){yield r;break t}}}}_cell(e){const{circumcenters:n,delaunay:{inedges:r,halfedges:i,triangles:o}}=this,a=r[e];if(a===-1)return null;const s=[];let u=a;do{const l=Math.floor(u/3);if(s.push(n[l*2],n[l*2+1]),u=u%3===2?u-2:u+1,o[u]!==e)break;u=i[u]}while(u!==a&&u!==-1);return s}_clip(e){if(e===0&&this.delaunay.hull.length===1)return[this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax,this.xmin,this.ymin];const n=this._cell(e);if(n===null)return null;const{vectors:r}=this,i=e*4;return this._simplify(r[i]||r[i+1]?this._clipInfinite(e,n,r[i],r[i+1],r[i+2],r[i+3]):this._clipFinite(e,n))}_clipFinite(e,n){const r=n.length;let i=null,o,a,s=n[r-2],u=n[r-1],l,c=this._regioncode(s,u),f,h=0;for(let p=0;p<r;p+=2)if(o=s,a=u,s=n[p],u=n[p+1],l=c,c=this._regioncode(s,u),l===0&&c===0)f=h,h=0,i?i.push(s,u):i=[s,u];else{let d,g,m,y,b;if(l===0){if((d=this._clipSegment(o,a,s,u,l,c))===null)continue;[g,m,y,b]=d}else{if((d=this._clipSegment(s,u,o,a,c,l))===null)continue;[y,b,g,m]=d,f=h,h=this._edgecode(g,m),f&&h&&this._edge(e,f,h,i,i.length),i?i.push(g,m):i=[g,m]}f=h,h=this._edgecode(y,b),f&&h&&this._edge(e,f,h,i,i.length),i?i.push(y,b):i=[y,b]}if(i)f=h,h=this._edgecode(i[0],i[1]),f&&h&&this._edge(e,f,h,i,i.length);else if(this.contains(e,(this.xmin+this.xmax)/2,(this.ymin+this.ymax)/2))return[this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax,this.xmin,this.ymin];return i}_clipSegment(e,n,r,i,o,a){const s=o<a;for(s&&([e,n,r,i,o,a]=[r,i,e,n,a,o]);;){if(o===0&&a===0)return s?[r,i,e,n]:[e,n,r,i];if(o&a)return null;let u,l,c=o||a;c&8?(u=e+(r-e)*(this.ymax-n)/(i-n),l=this.ymax):c&4?(u=e+(r-e)*(this.ymin-n)/(i-n),l=this.ymin):c&2?(l=n+(i-n)*(this.xmax-e)/(r-e),u=this.xmax):(l=n+(i-n)*(this.xmin-e)/(r-e),u=this.xmin),o?(e=u,n=l,o=this._regioncode(e,n)):(r=u,i=l,a=this._regioncode(r,i))}}_clipInfinite(e,n,r,i,o,a){let s=Array.from(n),u;if((u=this._project(s[0],s[1],r,i))&&s.unshift(u[0],u[1]),(u=this._project(s[s.length-2],s[s.length-1],o,a))&&s.push(u[0],u[1]),s=this._clipFinite(e,s))for(let l=0,c=s.length,f,h=this._edgecode(s[c-2],s[c-1]);l<c;l+=2)f=h,h=this._edgecode(s[l],s[l+1]),f&&h&&(l=this._edge(e,f,h,s,l),c=s.length);else this.contains(e,(this.xmin+this.xmax)/2,(this.ymin+this.ymax)/2)&&(s=[this.xmin,this.ymin,this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax]);return s}_edge(e,n,r,i,o){for(;n!==r;){let a,s;switch(n){case 5:n=4;continue;case 4:n=6,a=this.xmax,s=this.ymin;break;case 6:n=2;continue;case 2:n=10,a=this.xmax,s=this.ymax;break;case 10:n=8;continue;case 8:n=9,a=this.xmin,s=this.ymax;break;case 9:n=1;continue;case 1:n=5,a=this.xmin,s=this.ymin;break}(i[o]!==a||i[o+1]!==s)&&this.contains(e,a,s)&&(i.splice(o,0,a,s),o+=2)}return o}_project(e,n,r,i){let o=1/0,a,s,u;if(i<0){if(n<=this.ymin)return null;(a=(this.ymin-n)/i)<o&&(u=this.ymin,s=e+(o=a)*r)}else if(i>0){if(n>=this.ymax)return null;(a=(this.ymax-n)/i)<o&&(u=this.ymax,s=e+(o=a)*r)}if(r>0){if(e>=this.xmax)return null;(a=(this.xmax-e)/r)<o&&(s=this.xmax,u=n+(o=a)*i)}else if(r<0){if(e<=this.xmin)return null;(a=(this.xmin-e)/r)<o&&(s=this.xmin,u=n+(o=a)*i)}return[s,u]}_edgecode(e,n){return(e===this.xmin?1:e===this.xmax?2:0)|(n===this.ymin?4:n===this.ymax?8:0)}_regioncode(e,n){return(e<this.xmin?1:e>this.xmax?2:0)|(n<this.ymin?4:n>this.ymax?8:0)}_simplify(e){if(e&&e.length>4){for(let n=0;n<e.length;n+=2){const r=(n+2)%e.length,i=(n+4)%e.length;(e[n]===e[r]&&e[r]===e[i]||e[n+1]===e[r+1]&&e[r+1]===e[i+1])&&(e.splice(r,2),n-=2)}e.length||(e=null)}return e}}const s4=2*Math.PI,Qr=Math.pow;function u4(t){return t[0]}function l4(t){return t[1]}function c4(t){const{triangles:e,coords:n}=t;for(let r=0;r<e.length;r+=3){const i=2*e[r],o=2*e[r+1],a=2*e[r+2];if((n[a]-n[i])*(n[o+1]-n[i+1])-(n[o]-n[i])*(n[a+1]-n[i+1])>1e-10)return!1}return!0}function f4(t,e,n){return[t+Math.sin(t+e)*n,e+Math.cos(t-e)*n]}class Hc{static from(e,n=u4,r=l4,i){return new Hc("length"in e?h4(e,n,r,i):Float64Array.from(p4(e,n,r,i)))}constructor(e){this._delaunator=new ps(e),this.inedges=new Int32Array(e.length/2),this._hullIndex=new Int32Array(e.length/2),this.points=this._delaunator.coords,this._init()}update(){return this._delaunator.update(),this._init(),this}_init(){const e=this._delaunator,n=this.points;if(e.hull&&e.hull.length>2&&c4(e)){this.collinear=Int32Array.from({length:n.length/2},(h,p)=>p).sort((h,p)=>n[2*h]-n[2*p]||n[2*h+1]-n[2*p+1]);const u=this.collinear[0],l=this.collinear[this.collinear.length-1],c=[n[2*u],n[2*u+1],n[2*l],n[2*l+1]],f=1e-8*Math.hypot(c[3]-c[1],c[2]-c[0]);for(let h=0,p=n.length/2;h<p;++h){const d=f4(n[2*h],n[2*h+1],f);n[2*h]=d[0],n[2*h+1]=d[1]}this._delaunator=new ps(n)}else delete this.collinear;const r=this.halfedges=this._delaunator.halfedges,i=this.hull=this._delaunator.hull,o=this.triangles=this._delaunator.triangles,a=this.inedges.fill(-1),s=this._hullIndex.fill(-1);for(let u=0,l=r.length;u<l;++u){const c=o[u%3===2?u-2:u+1];(r[u]===-1||a[c]===-1)&&(a[c]=u)}for(let u=0,l=i.length;u<l;++u)s[i[u]]=u;i.length<=2&&i.length>0&&(this.triangles=new Int32Array(3).fill(-1),this.halfedges=new Int32Array(3).fill(-1),this.triangles[0]=i[0],a[i[0]]=1,i.length===2&&(a[i[1]]=0,this.triangles[1]=i[1],this.triangles[2]=i[1]))}voronoi(e){return new Xm(this,e)}*neighbors(e){const{inedges:n,hull:r,_hullIndex:i,halfedges:o,triangles:a,collinear:s}=this;if(s){const f=s.indexOf(e);f>0&&(yield s[f-1]),f<s.length-1&&(yield s[f+1]);return}const u=n[e];if(u===-1)return;let l=u,c=-1;do{if(yield c=a[l],l=l%3===2?l-2:l+1,a[l]!==e)return;if(l=o[l],l===-1){const f=r[(i[e]+1)%r.length];f!==c&&(yield f);return}}while(l!==u)}find(e,n,r=0){if(e=+e,e!==e||(n=+n,n!==n))return-1;const i=r;let o;for(;(o=this._step(r,e,n))>=0&&o!==r&&o!==i;)r=o;return o}_step(e,n,r){const{inedges:i,hull:o,_hullIndex:a,halfedges:s,triangles:u,points:l}=this;if(i[e]===-1||!l.length)return(e+1)%(l.length>>1);let c=e,f=Qr(n-l[e*2],2)+Qr(r-l[e*2+1],2);const h=i[e];let p=h;do{let d=u[p];const g=Qr(n-l[d*2],2)+Qr(r-l[d*2+1],2);if(g<f&&(f=g,c=d),p=p%3===2?p-2:p+1,u[p]!==e)break;if(p=s[p],p===-1){if(p=o[(a[e]+1)%o.length],p!==d&&Qr(n-l[p*2],2)+Qr(r-l[p*2+1],2)<f)return p;break}}while(p!==h);return c}render(e){const n=e==null?e=new er:void 0,{points:r,halfedges:i,triangles:o}=this;for(let a=0,s=i.length;a<s;++a){const u=i[a];if(u<a)continue;const l=o[a]*2,c=o[u]*2;e.moveTo(r[l],r[l+1]),e.lineTo(r[c],r[c+1])}return this.renderHull(e),n&&n.value()}renderPoints(e,n){n===void 0&&(!e||typeof e.moveTo!="function")&&(n=e,e=null),n=n==null?2:+n;const r=e==null?e=new er:void 0,{points:i}=this;for(let o=0,a=i.length;o<a;o+=2){const s=i[o],u=i[o+1];e.moveTo(s+n,u),e.arc(s,u,n,0,s4)}return r&&r.value()}renderHull(e){const n=e==null?e=new er:void 0,{hull:r,points:i}=this,o=r[0]*2,a=r.length;e.moveTo(i[o],i[o+1]);for(let s=1;s<a;++s){const u=2*r[s];e.lineTo(i[u],i[u+1])}return e.closePath(),n&&n.value()}hullPolygon(){const e=new Wc;return this.renderHull(e),e.value()}renderTriangle(e,n){const r=n==null?n=new er:void 0,{points:i,triangles:o}=this,a=o[e*=3]*2,s=o[e+1]*2,u=o[e+2]*2;return n.moveTo(i[a],i[a+1]),n.lineTo(i[s],i[s+1]),n.lineTo(i[u],i[u+1]),n.closePath(),r&&r.value()}*trianglePolygons(){const{triangles:e}=this;for(let n=0,r=e.length/3;n<r;++n)yield this.trianglePolygon(n)}trianglePolygon(e){const n=new Wc;return this.renderTriangle(e,n),n.value()}}function h4(t,e,n,r){const i=t.length,o=new Float64Array(i*2);for(let a=0;a<i;++a){const s=t[a];o[a*2]=e.call(r,s,a,t),o[a*2+1]=n.call(r,s,a,t)}return o}function*p4(t,e,n,r){let i=0;for(const o of t)yield e.call(r,o,i,t),yield n.call(r,o,i,t),++i}var jm={},Xc={},jc=34,so=10,Vc=13;function Vm(t){return new Function("d","return {"+t.map(function(e,n){return JSON.stringify(e)+": d["+n+'] || ""'}).join(",")+"}")}function d4(t,e){var n=Vm(t);return function(r,i){return e(n(r),i,t)}}function qm(t){var e=Object.create(null),n=[];return t.forEach(function(r){for(var i in r)i in e||n.push(e[i]=i)}),n}function re(t,e){var n=t+"",r=n.length;return r<e?new Array(e-r+1).join(0)+n:n}function g4(t){return t<0?"-"+re(-t,6):t>9999?"+"+re(t,6):re(t,4)}function m4(t){var e=t.getUTCHours(),n=t.getUTCMinutes(),r=t.getUTCSeconds(),i=t.getUTCMilliseconds();return isNaN(t)?"Invalid Date":g4(t.getUTCFullYear())+"-"+re(t.getUTCMonth()+1,2)+"-"+re(t.getUTCDate(),2)+(i?"T"+re(e,2)+":"+re(n,2)+":"+re(r,2)+"."+re(i,3)+"Z":r?"T"+re(e,2)+":"+re(n,2)+":"+re(r,2)+"Z":n||e?"T"+re(e,2)+":"+re(n,2)+"Z":"")}function ds(t){var e=new RegExp('["'+t+`
|
10
|
-
\r]`),n=
|
11
|
-
`)}function s(f,h){return h==null&&(h=
|
12
|
-
`)}function
|
13
|
-
`)}function l(f){return f.map(c).join(t)}function c(f){return f==null?"":f instanceof Date?m4(f):e.test(f+="")?'"'+f.replace(/"/g,'""')+'"':f}return{parse:r,parseRows:i,format:a,formatBody:s,formatRows:u,formatRow:l,formatValue:c}}var nr=ds(","),Zm=nr.parse,y4=nr.parseRows,b4=nr.format,x4=nr.formatBody,v4=nr.formatRows,_4=nr.formatRow,w4=nr.formatValue,rr=ds(" "),Km=rr.parse,$4=rr.parseRows,S4=rr.format,A4=rr.formatBody,T4=rr.formatRows,P4=rr.formatRow,M4=rr.formatValue;function D4(t){for(var e in t){var n=t[e].trim(),r,i;if(!n)n=null;else if(n==="true")n=!0;else if(n==="false")n=!1;else if(n==="NaN")n=NaN;else if(!isNaN(r=+n))n=r;else if(i=n.match(/^([-+]\d{2})?\d{4}(-\d{2}(-\d{2})?)?(T\d{2}:\d{2}(:\d{2}(\.\d{3})?)?(Z|[-+]\d{2}:\d{2})?)?$/))C4&&i[4]&&!i[7]&&(n=n.replace(/-/g,"/").replace(/T/," ")),n=new Date(n);else continue;t[e]=n}return t}const C4=new Date("2019-01-01T00:00").getHours()||new Date("2019-07-01T00:00").getHours();function L4(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.blob()}function k4(t,e){return fetch(t,e).then(L4)}function R4(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.arrayBuffer()}function E4(t,e){return fetch(t,e).then(R4)}function I4(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.text()}function gs(t,e){return fetch(t,e).then(I4)}function Qm(t){return function(e,n,r){return arguments.length===2&&typeof n=="function"&&(r=n,n=void 0),gs(e,n).then(function(i){return t(i,r)})}}function N4(t,e,n,r){arguments.length===3&&typeof n=="function"&&(r=n,n=void 0);var i=ds(t);return gs(e,n).then(function(o){return i.parse(o,r)})}var B4=Qm(Zm),F4=Qm(Km);function O4(t,e){return new Promise(function(n,r){var i=new Image;for(var o in e)i[o]=e[o];i.onerror=r,i.onload=function(){n(i)},i.src=t})}function G4(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);if(!(t.status===204||t.status===205))return t.json()}function z4(t,e){return fetch(t,e).then(G4)}function qc(t){return(e,n)=>gs(e,n).then(r=>new DOMParser().parseFromString(r,t))}const Y4=qc("application/xml");var U4=qc("text/html"),W4=qc("image/svg+xml");function H4(t,e){var n,r=1;t==null&&(t=0),e==null&&(e=0);function i(){var o,a=n.length,s,u=0,l=0;for(o=0;o<a;++o)s=n[o],u+=s.x,l+=s.y;for(u=(u/a-t)*r,l=(l/a-e)*r,o=0;o<a;++o)s=n[o],s.x-=u,s.y-=l}return i.initialize=function(o){n=o},i.x=function(o){return arguments.length?(t=+o,i):t},i.y=function(o){return arguments.length?(e=+o,i):e},i.strength=function(o){return arguments.length?(r=+o,i):r},i}function X4(t){const e=+this._x.call(null,t),n=+this._y.call(null,t);return Jm(this.cover(e,n),e,n,t)}function Jm(t,e,n,r){if(isNaN(e)||isNaN(n))return t;var i,o=t._root,a={data:r},s=t._x0,u=t._y0,l=t._x1,c=t._y1,f,h,p,d,g,m,y,b;if(!o)return t._root=a,t;for(;o.length;)if((g=e>=(f=(s+l)/2))?s=f:l=f,(m=n>=(h=(u+c)/2))?u=h:c=h,i=o,!(o=o[y=m<<1|g]))return i[y]=a,t;if(p=+t._x.call(null,o.data),d=+t._y.call(null,o.data),e===p&&n===d)return a.next=o,i?i[y]=a:t._root=a,t;do i=i?i[y]=new Array(4):t._root=new Array(4),(g=e>=(f=(s+l)/2))?s=f:l=f,(m=n>=(h=(u+c)/2))?u=h:c=h;while((y=m<<1|g)===(b=(d>=h)<<1|p>=f));return i[b]=o,i[y]=a,t}function j4(t){var e,n,r=t.length,i,o,a=new Array(r),s=new Array(r),u=1/0,l=1/0,c=-1/0,f=-1/0;for(n=0;n<r;++n)isNaN(i=+this._x.call(null,e=t[n]))||isNaN(o=+this._y.call(null,e))||(a[n]=i,s[n]=o,i<u&&(u=i),i>c&&(c=i),o<l&&(l=o),o>f&&(f=o));if(u>c||l>f)return this;for(this.cover(u,l).cover(c,f),n=0;n<r;++n)Jm(this,a[n],s[n],t[n]);return this}function V4(t,e){if(isNaN(t=+t)||isNaN(e=+e))return this;var n=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(n))i=(n=Math.floor(t))+1,o=(r=Math.floor(e))+1;else{for(var a=i-n||1,s=this._root,u,l;n>t||t>=i||r>e||e>=o;)switch(l=(e<r)<<1|t<n,u=new Array(4),u[l]=s,s=u,a*=2,l){case 0:i=n+a,o=r+a;break;case 1:n=i-a,o=r+a;break;case 2:i=n+a,r=o-a;break;case 3:n=i-a,r=o-a;break}this._root&&this._root.length&&(this._root=s)}return this._x0=n,this._y0=r,this._x1=i,this._y1=o,this}function q4(){var t=[];return this.visit(function(e){if(!e.length)do t.push(e.data);while(e=e.next)}),t}function Z4(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}function Xt(t,e,n,r,i){this.node=t,this.x0=e,this.y0=n,this.x1=r,this.y1=i}function K4(t,e,n){var r,i=this._x0,o=this._y0,a,s,u,l,c=this._x1,f=this._y1,h=[],p=this._root,d,g;for(p&&h.push(new Xt(p,i,o,c,f)),n==null?n=1/0:(i=t-n,o=e-n,c=t+n,f=e+n,n*=n);d=h.pop();)if(!(!(p=d.node)||(a=d.x0)>c||(s=d.y0)>f||(u=d.x1)<i||(l=d.y1)<o))if(p.length){var m=(a+u)/2,y=(s+l)/2;h.push(new Xt(p[3],m,y,u,l),new Xt(p[2],a,y,m,l),new Xt(p[1],m,s,u,y),new Xt(p[0],a,s,m,y)),(g=(e>=y)<<1|t>=m)&&(d=h[h.length-1],h[h.length-1]=h[h.length-1-g],h[h.length-1-g]=d)}else{var b=t-+this._x.call(null,p.data),v=e-+this._y.call(null,p.data),x=b*b+v*v;if(x<n){var S=Math.sqrt(n=x);i=t-S,o=e-S,c=t+S,f=e+S,r=p.data}}return r}function Q4(t){if(isNaN(c=+this._x.call(null,t))||isNaN(f=+this._y.call(null,t)))return this;var e,n=this._root,r,i,o,a=this._x0,s=this._y0,u=this._x1,l=this._y1,c,f,h,p,d,g,m,y;if(!n)return this;if(n.length)for(;;){if((d=c>=(h=(a+u)/2))?a=h:u=h,(g=f>=(p=(s+l)/2))?s=p:l=p,e=n,!(n=n[m=g<<1|d]))return this;if(!n.length)break;(e[m+1&3]||e[m+2&3]||e[m+3&3])&&(r=e,y=m)}for(;n.data!==t;)if(i=n,!(n=n.next))return this;return(o=n.next)&&delete n.next,i?(o?i.next=o:delete i.next,this):e?(o?e[m]=o:delete e[m],(n=e[0]||e[1]||e[2]||e[3])&&n===(e[3]||e[2]||e[1]||e[0])&&!n.length&&(r?r[y]=n:this._root=n),this):(this._root=o,this)}function J4(t){for(var e=0,n=t.length;e<n;++e)this.remove(t[e]);return this}function tD(){return this._root}function eD(){var t=0;return this.visit(function(e){if(!e.length)do++t;while(e=e.next)}),t}function nD(t){var e=[],n,r=this._root,i,o,a,s,u;for(r&&e.push(new Xt(r,this._x0,this._y0,this._x1,this._y1));n=e.pop();)if(!t(r=n.node,o=n.x0,a=n.y0,s=n.x1,u=n.y1)&&r.length){var l=(o+s)/2,c=(a+u)/2;(i=r[3])&&e.push(new Xt(i,l,c,s,u)),(i=r[2])&&e.push(new Xt(i,o,c,l,u)),(i=r[1])&&e.push(new Xt(i,l,a,s,c)),(i=r[0])&&e.push(new Xt(i,o,a,l,c))}return this}function rD(t){var e=[],n=[],r;for(this._root&&e.push(new Xt(this._root,this._x0,this._y0,this._x1,this._y1));r=e.pop();){var i=r.node;if(i.length){var o,a=r.x0,s=r.y0,u=r.x1,l=r.y1,c=(a+u)/2,f=(s+l)/2;(o=i[0])&&e.push(new Xt(o,a,s,c,f)),(o=i[1])&&e.push(new Xt(o,c,s,u,f)),(o=i[2])&&e.push(new Xt(o,a,f,c,l)),(o=i[3])&&e.push(new Xt(o,c,f,u,l))}n.push(r)}for(;r=n.pop();)t(r.node,r.x0,r.y0,r.x1,r.y1);return this}function iD(t){return t[0]}function oD(t){return arguments.length?(this._x=t,this):this._x}function aD(t){return t[1]}function sD(t){return arguments.length?(this._y=t,this):this._y}function ms(t,e,n){var r=new Zc(e??iD,n??aD,NaN,NaN,NaN,NaN);return t==null?r:r.addAll(t)}function Zc(t,e,n,r,i,o){this._x=t,this._y=e,this._x0=n,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function t1(t){for(var e={data:t.data},n=e;t=t.next;)n=n.next={data:t.data};return e}var jt=ms.prototype=Zc.prototype;jt.copy=function(){var t=new Zc(this._x,this._y,this._x0,this._y0,this._x1,this._y1),e=this._root,n,r;if(!e)return t;if(!e.length)return t._root=t1(e),t;for(n=[{source:e,target:t._root=new Array(4)}];e=n.pop();)for(var i=0;i<4;++i)(r=e.source[i])&&(r.length?n.push({source:r,target:e.target[i]=new Array(4)}):e.target[i]=t1(r));return t},jt.add=X4,jt.addAll=j4,jt.cover=V4,jt.data=q4,jt.extent=Z4,jt.find=K4,jt.remove=Q4,jt.removeAll=J4,jt.root=tD,jt.size=eD,jt.visit=nD,jt.visitAfter=rD,jt.x=oD,jt.y=sD;function Lt(t){return function(){return t}}function bn(t){return(t()-.5)*1e-6}function uD(t){return t.x+t.vx}function lD(t){return t.y+t.vy}function e1(t){var e,n,r,i=1,o=1;typeof t!="function"&&(t=Lt(t==null?1:+t));function a(){for(var l,c=e.length,f,h,p,d,g,m,y=0;y<o;++y)for(f=ms(e,uD,lD).visitAfter(s),l=0;l<c;++l)h=e[l],g=n[h.index],m=g*g,p=h.x+h.vx,d=h.y+h.vy,f.visit(b);function b(v,x,S,$,R){var T=v.data,w=v.r,P=g+w;if(T){if(T.index>h.index){var _=p-T.x-T.vx,N=d-T.y-T.vy,D=_*_+N*N;D<P*P&&(_===0&&(_=bn(r),D+=_*_),N===0&&(N=bn(r),D+=N*N),D=(P-(D=Math.sqrt(D)))/D*i,h.vx+=(_*=D)*(P=(w*=w)/(m+w)),h.vy+=(N*=D)*P,T.vx-=_*(P=1-P),T.vy-=N*P)}return}return x>p+P||$<p-P||S>d+P||R<d-P}}function s(l){if(l.data)return l.r=n[l.data.index];for(var c=l.r=0;c<4;++c)l[c]&&l[c].r>l.r&&(l.r=l[c].r)}function u(){if(e){var l,c=e.length,f;for(n=new Array(c),l=0;l<c;++l)f=e[l],n[f.index]=+t(f,l,e)}}return a.initialize=function(l,c){e=l,r=c,u()},a.iterations=function(l){return arguments.length?(o=+l,a):o},a.strength=function(l){return arguments.length?(i=+l,a):i},a.radius=function(l){return arguments.length?(t=typeof l=="function"?l:Lt(+l),u(),a):t},a}function cD(t){return t.index}function n1(t,e){var n=t.get(e);if(!n)throw new Error("node not found: "+e);return n}function fD(t){var e=cD,n=f,r,i=Lt(30),o,a,s,u,l,c=1;t==null&&(t=[]);function f(m){return 1/Math.min(s[m.source.index],s[m.target.index])}function h(m){for(var y=0,b=t.length;y<c;++y)for(var v=0,x,S,$,R,T,w,P;v<b;++v)x=t[v],S=x.source,$=x.target,R=$.x+$.vx-S.x-S.vx||bn(l),T=$.y+$.vy-S.y-S.vy||bn(l),w=Math.sqrt(R*R+T*T),w=(w-o[v])/w*m*r[v],R*=w,T*=w,$.vx-=R*(P=u[v]),$.vy-=T*P,S.vx+=R*(P=1-P),S.vy+=T*P}function p(){if(a){var m,y=a.length,b=t.length,v=new Map(a.map((S,$)=>[e(S,$,a),S])),x;for(m=0,s=new Array(y);m<b;++m)x=t[m],x.index=m,typeof x.source!="object"&&(x.source=n1(v,x.source)),typeof x.target!="object"&&(x.target=n1(v,x.target)),s[x.source.index]=(s[x.source.index]||0)+1,s[x.target.index]=(s[x.target.index]||0)+1;for(m=0,u=new Array(b);m<b;++m)x=t[m],u[m]=s[x.source.index]/(s[x.source.index]+s[x.target.index]);r=new Array(b),d(),o=new Array(b),g()}}function d(){if(a)for(var m=0,y=t.length;m<y;++m)r[m]=+n(t[m],m,t)}function g(){if(a)for(var m=0,y=t.length;m<y;++m)o[m]=+i(t[m],m,t)}return h.initialize=function(m,y){a=m,l=y,p()},h.links=function(m){return arguments.length?(t=m,p(),h):t},h.id=function(m){return arguments.length?(e=m,h):e},h.iterations=function(m){return arguments.length?(c=+m,h):c},h.strength=function(m){return arguments.length?(n=typeof m=="function"?m:Lt(+m),d(),h):n},h.distance=function(m){return arguments.length?(i=typeof m=="function"?m:Lt(+m),g(),h):i},h}const hD=1664525,pD=1013904223,r1=4294967296;function dD(){let t=1;return()=>(t=(hD*t+pD)%r1)/r1}function gD(t){return t.x}function mD(t){return t.y}var yD=10,bD=Math.PI*(3-Math.sqrt(5));function i1(t){var e,n=1,r=.001,i=1-Math.pow(r,1/300),o=0,a=.6,s=new Map,u=rs(f),l=Un("tick","end"),c=dD();t==null&&(t=[]);function f(){h(),l.call("tick",e),n<r&&(u.stop(),l.call("end",e))}function h(g){var m,y=t.length,b;g===void 0&&(g=1);for(var v=0;v<g;++v)for(n+=(o-n)*i,s.forEach(function(x){x(n)}),m=0;m<y;++m)b=t[m],b.fx==null?b.x+=b.vx*=a:(b.x=b.fx,b.vx=0),b.fy==null?b.y+=b.vy*=a:(b.y=b.fy,b.vy=0);return e}function p(){for(var g=0,m=t.length,y;g<m;++g){if(y=t[g],y.index=g,y.fx!=null&&(y.x=y.fx),y.fy!=null&&(y.y=y.fy),isNaN(y.x)||isNaN(y.y)){var b=yD*Math.sqrt(.5+g),v=g*bD;y.x=b*Math.cos(v),y.y=b*Math.sin(v)}(isNaN(y.vx)||isNaN(y.vy))&&(y.vx=y.vy=0)}}function d(g){return g.initialize&&g.initialize(t,c),g}return p(),e={tick:h,restart:function(){return u.restart(f),e},stop:function(){return u.stop(),e},nodes:function(g){return arguments.length?(t=g,p(),s.forEach(d),e):t},alpha:function(g){return arguments.length?(n=+g,e):n},alphaMin:function(g){return arguments.length?(r=+g,e):r},alphaDecay:function(g){return arguments.length?(i=+g,e):+i},alphaTarget:function(g){return arguments.length?(o=+g,e):o},velocityDecay:function(g){return arguments.length?(a=1-g,e):1-a},randomSource:function(g){return arguments.length?(c=g,s.forEach(d),e):c},force:function(g,m){return arguments.length>1?(m==null?s.delete(g):s.set(g,d(m)),e):s.get(g)},find:function(g,m,y){var b=0,v=t.length,x,S,$,R,T;for(y==null?y=1/0:y*=y,b=0;b<v;++b)R=t[b],x=g-R.x,S=m-R.y,$=x*x+S*S,$<y&&(T=R,y=$);return T},on:function(g,m){return arguments.length>1?(l.on(g,m),e):l.on(g)}}}function o1(){var t,e,n,r,i=Lt(-30),o,a=1,s=1/0,u=.81;function l(p){var d,g=t.length,m=ms(t,gD,mD).visitAfter(f);for(r=p,d=0;d<g;++d)e=t[d],m.visit(h)}function c(){if(t){var p,d=t.length,g;for(o=new Array(d),p=0;p<d;++p)g=t[p],o[g.index]=+i(g,p,t)}}function f(p){var d=0,g,m,y=0,b,v,x;if(p.length){for(b=v=x=0;x<4;++x)(g=p[x])&&(m=Math.abs(g.value))&&(d+=g.value,y+=m,b+=m*g.x,v+=m*g.y);p.x=b/y,p.y=v/y}else{g=p,g.x=g.data.x,g.y=g.data.y;do d+=o[g.data.index];while(g=g.next)}p.value=d}function h(p,d,g,m){if(!p.value)return!0;var y=p.x-e.x,b=p.y-e.y,v=m-d,x=y*y+b*b;if(v*v/u<x)return x<s&&(y===0&&(y=bn(n),x+=y*y),b===0&&(b=bn(n),x+=b*b),x<a&&(x=Math.sqrt(a*x)),e.vx+=y*p.value*r/x,e.vy+=b*p.value*r/x),!0;if(p.length||x>=s)return;(p.data!==e||p.next)&&(y===0&&(y=bn(n),x+=y*y),b===0&&(b=bn(n),x+=b*b),x<a&&(x=Math.sqrt(a*x)));do p.data!==e&&(v=o[p.data.index]*r/x,e.vx+=y*v,e.vy+=b*v);while(p=p.next)}return l.initialize=function(p,d){t=p,n=d,c()},l.strength=function(p){return arguments.length?(i=typeof p=="function"?p:Lt(+p),c(),l):i},l.distanceMin=function(p){return arguments.length?(a=p*p,l):Math.sqrt(a)},l.distanceMax=function(p){return arguments.length?(s=p*p,l):Math.sqrt(s)},l.theta=function(p){return arguments.length?(u=p*p,l):Math.sqrt(u)},l}function xD(t,e,n){var r,i=Lt(.1),o,a;typeof t!="function"&&(t=Lt(+t)),e==null&&(e=0),n==null&&(n=0);function s(l){for(var c=0,f=r.length;c<f;++c){var h=r[c],p=h.x-e||1e-6,d=h.y-n||1e-6,g=Math.sqrt(p*p+d*d),m=(a[c]-g)*o[c]*l/g;h.vx+=p*m,h.vy+=d*m}}function u(){if(r){var l,c=r.length;for(o=new Array(c),a=new Array(c),l=0;l<c;++l)a[l]=+t(r[l],l,r),o[l]=isNaN(a[l])?0:+i(r[l],l,r)}}return s.initialize=function(l){r=l,u()},s.strength=function(l){return arguments.length?(i=typeof l=="function"?l:Lt(+l),u(),s):i},s.radius=function(l){return arguments.length?(t=typeof l=="function"?l:Lt(+l),u(),s):t},s.x=function(l){return arguments.length?(e=+l,s):e},s.y=function(l){return arguments.length?(n=+l,s):n},s}function a1(t){var e=Lt(.1),n,r,i;typeof t!="function"&&(t=Lt(t==null?0:+t));function o(s){for(var u=0,l=n.length,c;u<l;++u)c=n[u],c.vx+=(i[u]-c.x)*r[u]*s}function a(){if(n){var s,u=n.length;for(r=new Array(u),i=new Array(u),s=0;s<u;++s)r[s]=isNaN(i[s]=+t(n[s],s,n))?0:+e(n[s],s,n)}}return o.initialize=function(s){n=s,a()},o.strength=function(s){return arguments.length?(e=typeof s=="function"?s:Lt(+s),a(),o):e},o.x=function(s){return arguments.length?(t=typeof s=="function"?s:Lt(+s),a(),o):t},o}function s1(t){var e=Lt(.1),n,r,i;typeof t!="function"&&(t=Lt(t==null?0:+t));function o(s){for(var u=0,l=n.length,c;u<l;++u)c=n[u],c.vy+=(i[u]-c.y)*r[u]*s}function a(){if(n){var s,u=n.length;for(r=new Array(u),i=new Array(u),s=0;s<u;++s)r[s]=isNaN(i[s]=+t(n[s],s,n))?0:+e(n[s],s,n)}}return o.initialize=function(s){n=s,a()},o.strength=function(s){return arguments.length?(e=typeof s=="function"?s:Lt(+s),a(),o):e},o.y=function(s){return arguments.length?(t=typeof s=="function"?s:Lt(+s),a(),o):t},o}function vD(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)}function ys(t,e){if((n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var n,r=t.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+t.slice(n+1)]}function Jr(t){return t=ys(Math.abs(t)),t?t[1]:NaN}function _D(t,e){return function(n,r){for(var i=n.length,o=[],a=0,s=t[0],u=0;i>0&&s>0&&(u+s+1>r&&(s=Math.max(1,r-u)),o.push(n.substring(i-=s,i+s)),!((u+=s+1)>r));)s=t[a=(a+1)%t.length];return o.reverse().join(e)}}function wD(t){return function(e){return e.replace(/[0-9]/g,function(n){return t[+n]})}}var $D=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function ti(t){if(!(e=$D.exec(t)))throw new Error("invalid format: "+t);var e;return new bs({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}ti.prototype=bs.prototype;function bs(t){this.fill=t.fill===void 0?" ":t.fill+"",this.align=t.align===void 0?">":t.align+"",this.sign=t.sign===void 0?"-":t.sign+"",this.symbol=t.symbol===void 0?"":t.symbol+"",this.zero=!!t.zero,this.width=t.width===void 0?void 0:+t.width,this.comma=!!t.comma,this.precision=t.precision===void 0?void 0:+t.precision,this.trim=!!t.trim,this.type=t.type===void 0?"":t.type+""}bs.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function SD(t){t:for(var e=t.length,n=1,r=-1,i;n<e;++n)switch(t[n]){case".":r=i=n;break;case"0":r===0&&(r=n),i=n;break;default:if(!+t[n])break t;r>0&&(r=0);break}return r>0?t.slice(0,r)+t.slice(i+1):t}var u1;function AD(t,e){var n=ys(t,e);if(!n)return t+"";var r=n[0],i=n[1],o=i-(u1=Math.max(-8,Math.min(8,Math.floor(i/3)))*3)+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+ys(t,Math.max(0,e+o-1))[0]}function l1(t,e){var n=ys(t,e);if(!n)return t+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}const c1={"%":(t,e)=>(t*100).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:vD,e:(t,e)=>t.toExponential(e),f:(t,e)=>t.toFixed(e),g:(t,e)=>t.toPrecision(e),o:t=>Math.round(t).toString(8),p:(t,e)=>l1(t*100,e),r:l1,s:AD,X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function f1(t){return t}var h1=Array.prototype.map,p1=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function d1(t){var e=t.grouping===void 0||t.thousands===void 0?f1:_D(h1.call(t.grouping,Number),t.thousands+""),n=t.currency===void 0?"":t.currency[0]+"",r=t.currency===void 0?"":t.currency[1]+"",i=t.decimal===void 0?".":t.decimal+"",o=t.numerals===void 0?f1:wD(h1.call(t.numerals,String)),a=t.percent===void 0?"%":t.percent+"",s=t.minus===void 0?"−":t.minus+"",u=t.nan===void 0?"NaN":t.nan+"";function l(f){f=ti(f);var h=f.fill,p=f.align,d=f.sign,g=f.symbol,m=f.zero,y=f.width,b=f.comma,v=f.precision,x=f.trim,S=f.type;S==="n"?(b=!0,S="g"):c1[S]||(v===void 0&&(v=12),x=!0,S="g"),(m||h==="0"&&p==="=")&&(m=!0,h="0",p="=");var $=g==="$"?n:g==="#"&&/[boxX]/.test(S)?"0"+S.toLowerCase():"",R=g==="$"?r:/[%p]/.test(S)?a:"",T=c1[S],w=/[defgprs%]/.test(S);v=v===void 0?6:/[gprs]/.test(S)?Math.max(1,Math.min(21,v)):Math.max(0,Math.min(20,v));function P(_){var N=$,D=R,A,L,M;if(S==="c")D=T(_)+D,_="";else{_=+_;var G=_<0||1/_<0;if(_=isNaN(_)?u:T(Math.abs(_),v),x&&(_=SD(_)),G&&+_==0&&d!=="+"&&(G=!1),N=(G?d==="("?d:s:d==="-"||d==="("?"":d)+N,D=(S==="s"?p1[8+u1/3]:"")+D+(G&&d==="("?")":""),w){for(A=-1,L=_.length;++A<L;)if(M=_.charCodeAt(A),48>M||M>57){D=(M===46?i+_.slice(A+1):_.slice(A))+D,_=_.slice(0,A);break}}}b&&!m&&(_=e(_,1/0));var O=N.length+_.length+D.length,E=O<y?new Array(y-O+1).join(h):"";switch(b&&m&&(_=e(E+_,E.length?y-D.length:1/0),E=""),p){case"<":_=N+_+D+E;break;case"=":_=N+E+_+D;break;case"^":_=E.slice(0,O=E.length>>1)+N+_+D+E.slice(O);break;default:_=E+N+_+D;break}return o(_)}return P.toString=function(){return f+""},P}function c(f,h){var p=l((f=ti(f),f.type="f",f)),d=Math.max(-8,Math.min(8,Math.floor(Jr(h)/3)))*3,g=Math.pow(10,-d),m=p1[8+d/3];return function(y){return p(g*y)+m}}return{format:l,formatPrefix:c}}var xs,uo,Kc;g1({thousands:",",grouping:[3],currency:["$",""]});function g1(t){return xs=d1(t),uo=xs.format,Kc=xs.formatPrefix,xs}function m1(t){return Math.max(0,-Jr(Math.abs(t)))}function y1(t,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(Jr(e)/3)))*3-Jr(Math.abs(t)))}function b1(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,Jr(e)-Jr(t))+1}var it=1e-6,lo=1e-12,ft=Math.PI,At=ft/2,vs=ft/4,Vt=ft*2,bt=180/ft,at=ft/180,pt=Math.abs,ei=Math.atan,qt=Math.atan2,et=Math.cos,_s=Math.ceil,x1=Math.exp,Qc=Math.hypot,ws=Math.log,Jc=Math.pow,J=Math.sin,me=Math.sign||function(t){return t>0?1:t<0?-1:0},It=Math.sqrt,tf=Math.tan;function v1(t){return t>1?0:t<-1?ft:Math.acos(t)}function Zt(t){return t>1?At:t<-1?-At:Math.asin(t)}function _1(t){return(t=J(t/2))*t}function wt(){}function $s(t,e){t&&$1.hasOwnProperty(t.type)&&$1[t.type](t,e)}var w1={Feature:function(t,e){$s(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r<i;)$s(n[r].geometry,e)}},$1={Sphere:function(t,e){e.sphere()},Point:function(t,e){t=t.coordinates,e.point(t[0],t[1],t[2])},MultiPoint:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)t=n[r],e.point(t[0],t[1],t[2])},LineString:function(t,e){ef(t.coordinates,e,0)},MultiLineString:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)ef(n[r],e,0)},Polygon:function(t,e){S1(t.coordinates,e)},MultiPolygon:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)S1(n[r],e)},GeometryCollection:function(t,e){for(var n=t.geometries,r=-1,i=n.length;++r<i;)$s(n[r],e)}};function ef(t,e,n){var r=-1,i=t.length-n,o;for(e.lineStart();++r<i;)o=t[r],e.point(o[0],o[1],o[2]);e.lineEnd()}function S1(t,e){var n=-1,r=t.length;for(e.polygonStart();++n<r;)ef(t[n],e,1);e.polygonEnd()}function Ce(t,e){t&&w1.hasOwnProperty(t.type)?w1[t.type](t,e):$s(t,e)}var Ss=new Ct,As=new Ct,A1,T1,nf,rf,of,ze={point:wt,lineStart:wt,lineEnd:wt,polygonStart:function(){Ss=new Ct,ze.lineStart=TD,ze.lineEnd=PD},polygonEnd:function(){var t=+Ss;As.add(t<0?Vt+t:t),this.lineStart=this.lineEnd=this.point=wt},sphere:function(){As.add(Vt)}};function TD(){ze.point=MD}function PD(){P1(A1,T1)}function MD(t,e){ze.point=P1,A1=t,T1=e,t*=at,e*=at,nf=t,rf=et(e=e/2+vs),of=J(e)}function P1(t,e){t*=at,e*=at,e=e/2+vs;var n=t-nf,r=n>=0?1:-1,i=r*n,o=et(e),a=J(e),s=of*a,u=rf*o+s*et(i),l=s*r*J(i);Ss.add(qt(l,u)),nf=t,rf=o,of=a}function DD(t){return As=new Ct,Ce(t,ze),As*2}function Ts(t){return[qt(t[1],t[0]),Zt(t[2])]}function ir(t){var e=t[0],n=t[1],r=et(n);return[r*et(e),r*J(e),J(n)]}function Ps(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function ni(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function af(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function Ms(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function Ds(t){var e=It(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}var $t,ie,Tt,ce,or,M1,D1,ri,co,xn,en,nn={point:sf,lineStart:L1,lineEnd:k1,polygonStart:function(){nn.point=R1,nn.lineStart=CD,nn.lineEnd=LD,co=new Ct,ze.polygonStart()},polygonEnd:function(){ze.polygonEnd(),nn.point=sf,nn.lineStart=L1,nn.lineEnd=k1,Ss<0?($t=-(Tt=180),ie=-(ce=90)):co>it?ce=90:co<-it&&(ie=-90),en[0]=$t,en[1]=Tt},sphere:function(){$t=-(Tt=180),ie=-(ce=90)}};function sf(t,e){xn.push(en=[$t=t,Tt=t]),e<ie&&(ie=e),e>ce&&(ce=e)}function C1(t,e){var n=ir([t*at,e*at]);if(ri){var r=ni(ri,n),i=[r[1],-r[0],0],o=ni(i,r);Ds(o),o=Ts(o);var a=t-or,s=a>0?1:-1,u=o[0]*bt*s,l,c=pt(a)>180;c^(s*or<u&&u<s*t)?(l=o[1]*bt,l>ce&&(ce=l)):(u=(u+360)%360-180,c^(s*or<u&&u<s*t)?(l=-o[1]*bt,l<ie&&(ie=l)):(e<ie&&(ie=e),e>ce&&(ce=e))),c?t<or?fe($t,t)>fe($t,Tt)&&(Tt=t):fe(t,Tt)>fe($t,Tt)&&($t=t):Tt>=$t?(t<$t&&($t=t),t>Tt&&(Tt=t)):t>or?fe($t,t)>fe($t,Tt)&&(Tt=t):fe(t,Tt)>fe($t,Tt)&&($t=t)}else xn.push(en=[$t=t,Tt=t]);e<ie&&(ie=e),e>ce&&(ce=e),ri=n,or=t}function L1(){nn.point=C1}function k1(){en[0]=$t,en[1]=Tt,nn.point=sf,ri=null}function R1(t,e){if(ri){var n=t-or;co.add(pt(n)>180?n+(n>0?360:-360):n)}else M1=t,D1=e;ze.point(t,e),C1(t,e)}function CD(){ze.lineStart()}function LD(){R1(M1,D1),ze.lineEnd(),pt(co)>it&&($t=-(Tt=180)),en[0]=$t,en[1]=Tt,ri=null}function fe(t,e){return(e-=t)<0?e+360:e}function kD(t,e){return t[0]-e[0]}function E1(t,e){return t[0]<=t[1]?t[0]<=e&&e<=t[1]:e<t[0]||t[1]<e}function RD(t){var e,n,r,i,o,a,s;if(ce=Tt=-($t=ie=1/0),xn=[],Ce(t,nn),n=xn.length){for(xn.sort(kD),e=1,r=xn[0],o=[r];e<n;++e)i=xn[e],E1(r,i[0])||E1(r,i[1])?(fe(r[0],i[1])>fe(r[0],r[1])&&(r[1]=i[1]),fe(i[0],r[1])>fe(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(a=-1/0,n=o.length-1,e=0,r=o[n];e<=n;r=i,++e)i=o[e],(s=fe(r[1],i[0]))>a&&(a=s,$t=i[0],Tt=r[1])}return xn=en=null,$t===1/0||ie===1/0?[[NaN,NaN],[NaN,NaN]]:[[$t,ie],[Tt,ce]]}var fo,Cs,Ls,ks,Rs,Es,Is,Ns,uf,lf,cf,I1,N1,Kt,Qt,Jt,Le={sphere:wt,point:ff,lineStart:B1,lineEnd:F1,polygonStart:function(){Le.lineStart=ND,Le.lineEnd=BD},polygonEnd:function(){Le.lineStart=B1,Le.lineEnd=F1}};function ff(t,e){t*=at,e*=at;var n=et(e);ho(n*et(t),n*J(t),J(e))}function ho(t,e,n){++fo,Ls+=(t-Ls)/fo,ks+=(e-ks)/fo,Rs+=(n-Rs)/fo}function B1(){Le.point=ED}function ED(t,e){t*=at,e*=at;var n=et(e);Kt=n*et(t),Qt=n*J(t),Jt=J(e),Le.point=ID,ho(Kt,Qt,Jt)}function ID(t,e){t*=at,e*=at;var n=et(e),r=n*et(t),i=n*J(t),o=J(e),a=qt(It((a=Qt*o-Jt*i)*a+(a=Jt*r-Kt*o)*a+(a=Kt*i-Qt*r)*a),Kt*r+Qt*i+Jt*o);Cs+=a,Es+=a*(Kt+(Kt=r)),Is+=a*(Qt+(Qt=i)),Ns+=a*(Jt+(Jt=o)),ho(Kt,Qt,Jt)}function F1(){Le.point=ff}function ND(){Le.point=FD}function BD(){O1(I1,N1),Le.point=ff}function FD(t,e){I1=t,N1=e,t*=at,e*=at,Le.point=O1;var n=et(e);Kt=n*et(t),Qt=n*J(t),Jt=J(e),ho(Kt,Qt,Jt)}function O1(t,e){t*=at,e*=at;var n=et(e),r=n*et(t),i=n*J(t),o=J(e),a=Qt*o-Jt*i,s=Jt*r-Kt*o,u=Kt*i-Qt*r,l=Qc(a,s,u),c=Zt(l),f=l&&-c/l;uf.add(f*a),lf.add(f*s),cf.add(f*u),Cs+=c,Es+=c*(Kt+(Kt=r)),Is+=c*(Qt+(Qt=i)),Ns+=c*(Jt+(Jt=o)),ho(Kt,Qt,Jt)}function OD(t){fo=Cs=Ls=ks=Rs=Es=Is=Ns=0,uf=new Ct,lf=new Ct,cf=new Ct,Ce(t,Le);var e=+uf,n=+lf,r=+cf,i=Qc(e,n,r);return i<lo&&(e=Es,n=Is,r=Ns,Cs<it&&(e=Ls,n=ks,r=Rs),i=Qc(e,n,r),i<lo)?[NaN,NaN]:[qt(n,e)*bt,Zt(r/i)*bt]}function ii(t){return function(){return t}}function hf(t,e){function n(r,i){return r=t(r,i),e(r[0],r[1])}return t.invert&&e.invert&&(n.invert=function(r,i){return r=e.invert(r,i),r&&t.invert(r[0],r[1])}),n}function pf(t,e){return pt(t)>ft&&(t-=Math.round(t/Vt)*Vt),[t,e]}pf.invert=pf;function df(t,e,n){return(t%=Vt)?e||n?hf(z1(t),Y1(e,n)):z1(t):e||n?Y1(e,n):pf}function G1(t){return function(e,n){return e+=t,pt(e)>ft&&(e-=Math.round(e/Vt)*Vt),[e,n]}}function z1(t){var e=G1(t);return e.invert=G1(-t),e}function Y1(t,e){var n=et(t),r=J(t),i=et(e),o=J(e);function a(s,u){var l=et(u),c=et(s)*l,f=J(s)*l,h=J(u),p=h*n+c*r;return[qt(f*i-p*o,c*n-h*r),Zt(p*i+f*o)]}return a.invert=function(s,u){var l=et(u),c=et(s)*l,f=J(s)*l,h=J(u),p=h*i-f*o;return[qt(f*i+h*o,c*n+p*r),Zt(p*n-c*r)]},a}function U1(t){t=df(t[0]*at,t[1]*at,t.length>2?t[2]*at:0);function e(n){return n=t(n[0]*at,n[1]*at),n[0]*=bt,n[1]*=bt,n}return e.invert=function(n){return n=t.invert(n[0]*at,n[1]*at),n[0]*=bt,n[1]*=bt,n},e}function W1(t,e,n,r,i,o){if(n){var a=et(e),s=J(e),u=r*n;i==null?(i=e+r*Vt,o=e-u/2):(i=H1(a,i),o=H1(a,o),(r>0?i<o:i>o)&&(i+=r*Vt));for(var l,c=i;r>0?c>o:c<o;c-=u)l=Ts([a,-s*et(c),-s*J(c)]),t.point(l[0],l[1])}}function H1(t,e){e=ir(e),e[0]-=t,Ds(e);var n=v1(-e[1]);return((-e[2]<0?-n:n)+Vt-it)%Vt}function GD(){var t=ii([0,0]),e=ii(90),n=ii(2),r,i,o={point:a};function a(u,l){r.push(u=i(u,l)),u[0]*=bt,u[1]*=bt}function s(){var u=t.apply(this,arguments),l=e.apply(this,arguments)*at,c=n.apply(this,arguments)*at;return r=[],i=df(-u[0]*at,-u[1]*at,0).invert,W1(o,l,c,1),u={type:"Polygon",coordinates:[r]},r=i=null,u}return s.center=function(u){return arguments.length?(t=typeof u=="function"?u:ii([+u[0],+u[1]]),s):t},s.radius=function(u){return arguments.length?(e=typeof u=="function"?u:ii(+u),s):e},s.precision=function(u){return arguments.length?(n=typeof u=="function"?u:ii(+u),s):n},s}function X1(){var t=[],e;return{point:function(n,r,i){e.push([n,r,i])},lineStart:function(){t.push(e=[])},lineEnd:wt,rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))},result:function(){var n=t;return t=[],e=null,n}}}function Bs(t,e){return pt(t[0]-e[0])<it&&pt(t[1]-e[1])<it}function Fs(t,e,n,r){this.x=t,this.z=e,this.o=n,this.e=r,this.v=!1,this.n=this.p=null}function j1(t,e,n,r,i){var o=[],a=[],s,u;if(t.forEach(function(d){if(!((g=d.length-1)<=0)){var g,m=d[0],y=d[g],b;if(Bs(m,y)){if(!m[2]&&!y[2]){for(i.lineStart(),s=0;s<g;++s)i.point((m=d[s])[0],m[1]);i.lineEnd();return}y[0]+=2*it}o.push(b=new Fs(m,d,null,!0)),a.push(b.o=new Fs(m,null,b,!1)),o.push(b=new Fs(y,d,null,!1)),a.push(b.o=new Fs(y,null,b,!0))}}),!!o.length){for(a.sort(e),V1(o),V1(a),s=0,u=a.length;s<u;++s)a[s].e=n=!n;for(var l=o[0],c,f;;){for(var h=l,p=!0;h.v;)if((h=h.n)===l)return;c=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(p)for(s=0,u=c.length;s<u;++s)i.point((f=c[s])[0],f[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(p)for(c=h.p.z,s=c.length-1;s>=0;--s)i.point((f=c[s])[0],f[1]);else r(h.x,h.p.x,-1,i);h=h.p}h=h.o,c=h.z,p=!p}while(!h.v);i.lineEnd()}}}function V1(t){if(e=t.length){for(var e,n=0,r=t[0],i;++n<e;)r.n=i=t[n],i.p=r,r=i;r.n=i=t[0],i.p=r}}function gf(t){return pt(t[0])<=ft?t[0]:me(t[0])*((pt(t[0])+ft)%Vt-ft)}function q1(t,e){var n=gf(e),r=e[1],i=J(r),o=[J(n),-et(n),0],a=0,s=0,u=new Ct;i===1?r=At+it:i===-1&&(r=-At-it);for(var l=0,c=t.length;l<c;++l)if(h=(f=t[l]).length)for(var f,h,p=f[h-1],d=gf(p),g=p[1]/2+vs,m=J(g),y=et(g),b=0;b<h;++b,d=x,m=$,y=R,p=v){var v=f[b],x=gf(v),S=v[1]/2+vs,$=J(S),R=et(S),T=x-d,w=T>=0?1:-1,P=w*T,_=P>ft,N=m*$;if(u.add(qt(N*w*J(P),y*R+N*et(P))),a+=_?T+w*Vt:T,_^d>=n^x>=n){var D=ni(ir(p),ir(v));Ds(D);var A=ni(o,D);Ds(A);var L=(_^T>=0?-1:1)*Zt(A[2]);(r>L||r===L&&(D[0]||D[1]))&&(s+=_^T>=0?1:-1)}}return(a<-it||a<it&&u<-lo)^s&1}function Z1(t,e,n,r){return function(i){var o=e(i),a=X1(),s=e(a),u=!1,l,c,f,h={point:p,lineStart:g,lineEnd:m,polygonStart:function(){h.point=y,h.lineStart=b,h.lineEnd=v,c=[],l=[]},polygonEnd:function(){h.point=p,h.lineStart=g,h.lineEnd=m,c=Hl(c);var x=q1(l,r);c.length?(u||(i.polygonStart(),u=!0),j1(c,YD,x,n,i)):x&&(u||(i.polygonStart(),u=!0),i.lineStart(),n(null,null,1,i),i.lineEnd()),u&&(i.polygonEnd(),u=!1),c=l=null},sphere:function(){i.polygonStart(),i.lineStart(),n(null,null,1,i),i.lineEnd(),i.polygonEnd()}};function p(x,S){t(x,S)&&i.point(x,S)}function d(x,S){o.point(x,S)}function g(){h.point=d,o.lineStart()}function m(){h.point=p,o.lineEnd()}function y(x,S){f.push([x,S]),s.point(x,S)}function b(){s.lineStart(),f=[]}function v(){y(f[0][0],f[0][1]),s.lineEnd();var x=s.clean(),S=a.result(),$,R=S.length,T,w,P;if(f.pop(),l.push(f),f=null,!!R){if(x&1){if(w=S[0],(T=w.length-1)>0){for(u||(i.polygonStart(),u=!0),i.lineStart(),$=0;$<T;++$)i.point((P=w[$])[0],P[1]);i.lineEnd()}return}R>1&&x&2&&S.push(S.pop().concat(S.shift())),c.push(S.filter(zD))}}return h}}function zD(t){return t.length>1}function YD(t,e){return((t=t.x)[0]<0?t[1]-At-it:At-t[1])-((e=e.x)[0]<0?e[1]-At-it:At-e[1])}const mf=Z1(function(){return!0},UD,HD,[-ft,-At]);function UD(t){var e=NaN,n=NaN,r=NaN,i;return{lineStart:function(){t.lineStart(),i=1},point:function(o,a){var s=o>0?ft:-ft,u=pt(o-e);pt(u-ft)<it?(t.point(e,n=(n+a)/2>0?At:-At),t.point(r,n),t.lineEnd(),t.lineStart(),t.point(s,n),t.point(o,n),i=0):r!==s&&u>=ft&&(pt(e-r)<it&&(e-=r*it),pt(o-s)<it&&(o-=s*it),n=WD(e,n,o,a),t.point(r,n),t.lineEnd(),t.lineStart(),t.point(s,n),i=0),t.point(e=o,n=a),r=s},lineEnd:function(){t.lineEnd(),e=n=NaN},clean:function(){return 2-i}}}function WD(t,e,n,r){var i,o,a=J(t-n);return pt(a)>it?ei((J(e)*(o=et(r))*J(n)-J(r)*(i=et(e))*J(t))/(i*o*a)):(e+r)/2}function HD(t,e,n,r){var i;if(t==null)i=n*At,r.point(-ft,i),r.point(0,i),r.point(ft,i),r.point(ft,0),r.point(ft,-i),r.point(0,-i),r.point(-ft,-i),r.point(-ft,0),r.point(-ft,i);else if(pt(t[0]-e[0])>it){var o=t[0]<e[0]?ft:-ft;i=n*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(e[0],e[1])}function K1(t){var e=et(t),n=2*at,r=e>0,i=pt(e)>it;function o(c,f,h,p){W1(p,t,n,h,c,f)}function a(c,f){return et(c)*et(f)>e}function s(c){var f,h,p,d,g;return{lineStart:function(){d=p=!1,g=1},point:function(m,y){var b=[m,y],v,x=a(m,y),S=r?x?0:l(m,y):x?l(m+(m<0?ft:-ft),y):0;if(!f&&(d=p=x)&&c.lineStart(),x!==p&&(v=u(f,b),(!v||Bs(f,v)||Bs(b,v))&&(b[2]=1)),x!==p)g=0,x?(c.lineStart(),v=u(b,f),c.point(v[0],v[1])):(v=u(f,b),c.point(v[0],v[1],2),c.lineEnd()),f=v;else if(i&&f&&r^x){var $;!(S&h)&&($=u(b,f,!0))&&(g=0,r?(c.lineStart(),c.point($[0][0],$[0][1]),c.point($[1][0],$[1][1]),c.lineEnd()):(c.point($[1][0],$[1][1]),c.lineEnd(),c.lineStart(),c.point($[0][0],$[0][1],3)))}x&&(!f||!Bs(f,b))&&c.point(b[0],b[1]),f=b,p=x,h=S},lineEnd:function(){p&&c.lineEnd(),f=null},clean:function(){return g|(d&&p)<<1}}}function u(c,f,h){var p=ir(c),d=ir(f),g=[1,0,0],m=ni(p,d),y=Ps(m,m),b=m[0],v=y-b*b;if(!v)return!h&&c;var x=e*y/v,S=-e*b/v,$=ni(g,m),R=Ms(g,x),T=Ms(m,S);af(R,T);var w=$,P=Ps(R,w),_=Ps(w,w),N=P*P-_*(Ps(R,R)-1);if(!(N<0)){var D=It(N),A=Ms(w,(-P-D)/_);if(af(A,R),A=Ts(A),!h)return A;var L=c[0],M=f[0],G=c[1],O=f[1],E;M<L&&(E=L,L=M,M=E);var k=M-L,C=pt(k-ft)<it,F=C||k<it;if(!C&&O<G&&(E=G,G=O,O=E),F?C?G+O>0^A[1]<(pt(A[0]-L)<it?G:O):G<=A[1]&&A[1]<=O:k>ft^(L<=A[0]&&A[0]<=M)){var X=Ms(w,(-P+D)/_);return af(X,R),[A,Ts(X)]}}}function l(c,f){var h=r?t:ft-t,p=0;return c<-h?p|=1:c>h&&(p|=2),f<-h?p|=4:f>h&&(p|=8),p}return Z1(a,s,o,r?[0,-t]:[-ft,t-ft])}function XD(t,e,n,r,i,o){var a=t[0],s=t[1],u=e[0],l=e[1],c=0,f=1,h=u-a,p=l-s,d;if(d=n-a,!(!h&&d>0)){if(d/=h,h<0){if(d<c)return;d<f&&(f=d)}else if(h>0){if(d>f)return;d>c&&(c=d)}if(d=i-a,!(!h&&d<0)){if(d/=h,h<0){if(d>f)return;d>c&&(c=d)}else if(h>0){if(d<c)return;d<f&&(f=d)}if(d=r-s,!(!p&&d>0)){if(d/=p,p<0){if(d<c)return;d<f&&(f=d)}else if(p>0){if(d>f)return;d>c&&(c=d)}if(d=o-s,!(!p&&d<0)){if(d/=p,p<0){if(d>f)return;d>c&&(c=d)}else if(p>0){if(d<c)return;d<f&&(f=d)}return c>0&&(t[0]=a+c*h,t[1]=s+c*p),f<1&&(e[0]=a+f*h,e[1]=s+f*p),!0}}}}}var po=1e9,Os=-po;function Gs(t,e,n,r){function i(l,c){return t<=l&&l<=n&&e<=c&&c<=r}function o(l,c,f,h){var p=0,d=0;if(l==null||(p=a(l,f))!==(d=a(c,f))||u(l,c)<0^f>0)do h.point(p===0||p===3?t:n,p>1?r:e);while((p=(p+f+4)%4)!==d);else h.point(c[0],c[1])}function a(l,c){return pt(l[0]-t)<it?c>0?0:3:pt(l[0]-n)<it?c>0?2:1:pt(l[1]-e)<it?c>0?1:0:c>0?3:2}function s(l,c){return u(l.x,c.x)}function u(l,c){var f=a(l,1),h=a(c,1);return f!==h?f-h:f===0?c[1]-l[1]:f===1?l[0]-c[0]:f===2?l[1]-c[1]:c[0]-l[0]}return function(l){var c=l,f=X1(),h,p,d,g,m,y,b,v,x,S,$,R={point:T,lineStart:N,lineEnd:D,polygonStart:P,polygonEnd:_};function T(L,M){i(L,M)&&c.point(L,M)}function w(){for(var L=0,M=0,G=p.length;M<G;++M)for(var O=p[M],E=1,k=O.length,C=O[0],F,X,Q=C[0],z=C[1];E<k;++E)F=Q,X=z,C=O[E],Q=C[0],z=C[1],X<=r?z>r&&(Q-F)*(r-X)>(z-X)*(t-F)&&++L:z<=r&&(Q-F)*(r-X)<(z-X)*(t-F)&&--L;return L}function P(){c=f,h=[],p=[],$=!0}function _(){var L=w(),M=$&&L,G=(h=Hl(h)).length;(M||G)&&(l.polygonStart(),M&&(l.lineStart(),o(null,null,1,l),l.lineEnd()),G&&j1(h,s,L,o,l),l.polygonEnd()),c=l,h=p=d=null}function N(){R.point=A,p&&p.push(d=[]),S=!0,x=!1,b=v=NaN}function D(){h&&(A(g,m),y&&x&&f.rejoin(),h.push(f.result())),R.point=T,x&&c.lineEnd()}function A(L,M){var G=i(L,M);if(p&&d.push([L,M]),S)g=L,m=M,y=G,S=!1,G&&(c.lineStart(),c.point(L,M));else if(G&&x)c.point(L,M);else{var O=[b=Math.max(Os,Math.min(po,b)),v=Math.max(Os,Math.min(po,v))],E=[L=Math.max(Os,Math.min(po,L)),M=Math.max(Os,Math.min(po,M))];XD(O,E,t,e,n,r)?(x||(c.lineStart(),c.point(O[0],O[1])),c.point(E[0],E[1]),G||c.lineEnd(),$=!1):G&&(c.lineStart(),c.point(L,M),$=!1)}b=L,v=M,x=G}return R}}function jD(){var t=0,e=0,n=960,r=500,i,o,a;return a={stream:function(s){return i&&o===s?i:i=Gs(t,e,n,r)(o=s)},extent:function(s){return arguments.length?(t=+s[0][0],e=+s[0][1],n=+s[1][0],r=+s[1][1],i=o=null,a):[[t,e],[n,r]]}}}var yf,bf,zs,Ys,oi={sphere:wt,point:wt,lineStart:VD,lineEnd:wt,polygonStart:wt,polygonEnd:wt};function VD(){oi.point=ZD,oi.lineEnd=qD}function qD(){oi.point=oi.lineEnd=wt}function ZD(t,e){t*=at,e*=at,bf=t,zs=J(e),Ys=et(e),oi.point=KD}function KD(t,e){t*=at,e*=at;var n=J(e),r=et(e),i=pt(t-bf),o=et(i),a=J(i),s=r*a,u=Ys*n-zs*r*o,l=zs*n+Ys*r*o;yf.add(qt(It(s*s+u*u),l)),bf=t,zs=n,Ys=r}function Q1(t){return yf=new Ct,Ce(t,oi),+yf}var xf=[null,null],QD={type:"LineString",coordinates:xf};function Us(t,e){return xf[0]=t,xf[1]=e,Q1(QD)}var J1={Feature:function(t,e){return Ws(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r<i;)if(Ws(n[r].geometry,e))return!0;return!1}},ty={Sphere:function(){return!0},Point:function(t,e){return ey(t.coordinates,e)},MultiPoint:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)if(ey(n[r],e))return!0;return!1},LineString:function(t,e){return ny(t.coordinates,e)},MultiLineString:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)if(ny(n[r],e))return!0;return!1},Polygon:function(t,e){return ry(t.coordinates,e)},MultiPolygon:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)if(ry(n[r],e))return!0;return!1},GeometryCollection:function(t,e){for(var n=t.geometries,r=-1,i=n.length;++r<i;)if(Ws(n[r],e))return!0;return!1}};function Ws(t,e){return t&&ty.hasOwnProperty(t.type)?ty[t.type](t,e):!1}function ey(t,e){return Us(t,e)===0}function ny(t,e){for(var n,r,i,o=0,a=t.length;o<a;o++){if(r=Us(t[o],e),r===0||o>0&&(i=Us(t[o],t[o-1]),i>0&&n<=i&&r<=i&&(n+r-i)*(1-Math.pow((n-r)/i,2))<lo*i))return!0;n=r}return!1}function ry(t,e){return!!q1(t.map(JD),iy(e))}function JD(t){return t=t.map(iy),t.pop(),t}function iy(t){return[t[0]*at,t[1]*at]}function t7(t,e){return(t&&J1.hasOwnProperty(t.type)?J1[t.type]:Ws)(t,e)}function oy(t,e,n){var r=pn(t,e-it,n).concat(e);return function(i){return r.map(function(o){return[i,o]})}}function ay(t,e,n){var r=pn(t,e-it,n).concat(e);return function(i){return r.map(function(o){return[o,i]})}}function sy(){var t,e,n,r,i,o,a,s,u=10,l=u,c=90,f=360,h,p,d,g,m=2.5;function y(){return{type:"MultiLineString",coordinates:b()}}function b(){return pn(_s(r/c)*c,n,c).map(d).concat(pn(_s(s/f)*f,a,f).map(g)).concat(pn(_s(e/u)*u,t,u).filter(function(v){return pt(v%c)>it}).map(h)).concat(pn(_s(o/l)*l,i,l).filter(function(v){return pt(v%f)>it}).map(p))}return y.lines=function(){return b().map(function(v){return{type:"LineString",coordinates:v}})},y.outline=function(){return{type:"Polygon",coordinates:[d(r).concat(g(a).slice(1),d(n).reverse().slice(1),g(s).reverse().slice(1))]}},y.extent=function(v){return arguments.length?y.extentMajor(v).extentMinor(v):y.extentMinor()},y.extentMajor=function(v){return arguments.length?(r=+v[0][0],n=+v[1][0],s=+v[0][1],a=+v[1][1],r>n&&(v=r,r=n,n=v),s>a&&(v=s,s=a,a=v),y.precision(m)):[[r,s],[n,a]]},y.extentMinor=function(v){return arguments.length?(e=+v[0][0],t=+v[1][0],o=+v[0][1],i=+v[1][1],e>t&&(v=e,e=t,t=v),o>i&&(v=o,o=i,i=v),y.precision(m)):[[e,o],[t,i]]},y.step=function(v){return arguments.length?y.stepMajor(v).stepMinor(v):y.stepMinor()},y.stepMajor=function(v){return arguments.length?(c=+v[0],f=+v[1],y):[c,f]},y.stepMinor=function(v){return arguments.length?(u=+v[0],l=+v[1],y):[u,l]},y.precision=function(v){return arguments.length?(m=+v,h=oy(o,i,90),p=ay(e,t,m),d=oy(s,a,90),g=ay(r,n,m),y):m},y.extentMajor([[-180,-90+it],[180,90-it]]).extentMinor([[-180,-80-it],[180,80+it]])}function e7(){return sy()()}function n7(t,e){var n=t[0]*at,r=t[1]*at,i=e[0]*at,o=e[1]*at,a=et(r),s=J(r),u=et(o),l=J(o),c=a*et(n),f=a*J(n),h=u*et(i),p=u*J(i),d=2*Zt(It(_1(o-r)+a*u*_1(i-n))),g=J(d),m=d?function(y){var b=J(y*=d)/g,v=J(d-y)/g,x=v*c+b*h,S=v*f+b*p,$=v*s+b*l;return[qt(S,x)*bt,qt($,It(x*x+S*S))*bt]}:function(){return[n*bt,r*bt]};return m.distance=d,m}const go=t=>t;var vf=new Ct,_f=new Ct,uy,ly,wf,$f,rn={point:wt,lineStart:wt,lineEnd:wt,polygonStart:function(){rn.lineStart=r7,rn.lineEnd=o7},polygonEnd:function(){rn.lineStart=rn.lineEnd=rn.point=wt,vf.add(pt(_f)),_f=new Ct},result:function(){var t=vf/2;return vf=new Ct,t}};function r7(){rn.point=i7}function i7(t,e){rn.point=cy,uy=wf=t,ly=$f=e}function cy(t,e){_f.add($f*t-wf*e),wf=t,$f=e}function o7(){cy(uy,ly)}var ai=1/0,Hs=ai,mo=-ai,Xs=mo,js={point:a7,lineStart:wt,lineEnd:wt,polygonStart:wt,polygonEnd:wt,result:function(){var t=[[ai,Hs],[mo,Xs]];return mo=Xs=-(Hs=ai=1/0),t}};function a7(t,e){t<ai&&(ai=t),t>mo&&(mo=t),e<Hs&&(Hs=e),e>Xs&&(Xs=e)}var Sf=0,Af=0,yo=0,Vs=0,qs=0,si=0,Tf=0,Pf=0,bo=0,fy,hy,Ye,Ue,ye={point:ar,lineStart:py,lineEnd:dy,polygonStart:function(){ye.lineStart=l7,ye.lineEnd=c7},polygonEnd:function(){ye.point=ar,ye.lineStart=py,ye.lineEnd=dy},result:function(){var t=bo?[Tf/bo,Pf/bo]:si?[Vs/si,qs/si]:yo?[Sf/yo,Af/yo]:[NaN,NaN];return Sf=Af=yo=Vs=qs=si=Tf=Pf=bo=0,t}};function ar(t,e){Sf+=t,Af+=e,++yo}function py(){ye.point=s7}function s7(t,e){ye.point=u7,ar(Ye=t,Ue=e)}function u7(t,e){var n=t-Ye,r=e-Ue,i=It(n*n+r*r);Vs+=i*(Ye+t)/2,qs+=i*(Ue+e)/2,si+=i,ar(Ye=t,Ue=e)}function dy(){ye.point=ar}function l7(){ye.point=f7}function c7(){gy(fy,hy)}function f7(t,e){ye.point=gy,ar(fy=Ye=t,hy=Ue=e)}function gy(t,e){var n=t-Ye,r=e-Ue,i=It(n*n+r*r);Vs+=i*(Ye+t)/2,qs+=i*(Ue+e)/2,si+=i,i=Ue*t-Ye*e,Tf+=i*(Ye+t),Pf+=i*(Ue+e),bo+=i*3,ar(Ye=t,Ue=e)}function my(t){this._context=t}my.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){this._line===0&&this._context.closePath(),this._point=NaN},point:function(t,e){switch(this._point){case 0:{this._context.moveTo(t,e),this._point=1;break}case 1:{this._context.lineTo(t,e);break}default:{this._context.moveTo(t+this._radius,e),this._context.arc(t,e,this._radius,0,Vt);break}}},result:wt};var Mf=new Ct,Df,yy,by,xo,vo,_o={point:wt,lineStart:function(){_o.point=h7},lineEnd:function(){Df&&xy(yy,by),_o.point=wt},polygonStart:function(){Df=!0},polygonEnd:function(){Df=null},result:function(){var t=+Mf;return Mf=new Ct,t}};function h7(t,e){_o.point=xy,yy=xo=t,by=vo=e}function xy(t,e){xo-=t,vo-=e,Mf.add(It(xo*xo+vo*vo)),xo=t,vo=e}let vy,Zs,_y,wy;class $y{constructor(e){this._append=e==null?Sy:p7(e),this._radius=4.5,this._=""}pointRadius(e){return this._radius=+e,this}polygonStart(){this._line=0}polygonEnd(){this._line=NaN}lineStart(){this._point=0}lineEnd(){this._line===0&&(this._+="Z"),this._point=NaN}point(e,n){switch(this._point){case 0:{this._append`M${e},${n}`,this._point=1;break}case 1:{this._append`L${e},${n}`;break}default:{if(this._append`M${e},${n}`,this._radius!==_y||this._append!==Zs){const r=this._radius,i=this._;this._="",this._append`m0,${r}a${r},${r} 0 1,1 0,${-2*r}a${r},${r} 0 1,1 0,${2*r}z`,_y=r,Zs=this._append,wy=this._,this._=i}this._+=wy;break}}}result(){const e=this._;return this._="",e.length?e:null}}function Sy(t){let e=1;this._+=t[0];for(const n=t.length;e<n;++e)this._+=arguments[e]+t[e]}function p7(t){const e=Math.floor(t);if(!(e>=0))throw new RangeError(`invalid digits: ${t}`);if(e>15)return Sy;if(e!==vy){const n=10**e;vy=e,Zs=function(i){let o=1;this._+=i[0];for(const a=i.length;o<a;++o)this._+=Math.round(arguments[o]*n)/n+i[o]}}return Zs}function d7(t,e){let n=3,r=4.5,i,o;function a(s){return s&&(typeof r=="function"&&o.pointRadius(+r.apply(this,arguments)),Ce(s,i(o))),o.result()}return a.area=function(s){return Ce(s,i(rn)),rn.result()},a.measure=function(s){return Ce(s,i(_o)),_o.result()},a.bounds=function(s){return Ce(s,i(js)),js.result()},a.centroid=function(s){return Ce(s,i(ye)),ye.result()},a.projection=function(s){return arguments.length?(i=s==null?(t=null,go):(t=s).stream,a):t},a.context=function(s){return arguments.length?(o=s==null?(e=null,new $y(n)):new my(e=s),typeof r!="function"&&o.pointRadius(r),a):e},a.pointRadius=function(s){return arguments.length?(r=typeof s=="function"?s:(o.pointRadius(+s),+s),a):r},a.digits=function(s){if(!arguments.length)return n;if(s==null)n=null;else{const u=Math.floor(s);if(!(u>=0))throw new RangeError(`invalid digits: ${s}`);n=u}return e===null&&(o=new $y(n)),a},a.projection(t).digits(n).context(e)}function g7(t){return{stream:wo(t)}}function wo(t){return function(e){var n=new Cf;for(var r in t)n[r]=t[r];return n.stream=e,n}}function Cf(){}Cf.prototype={constructor:Cf,point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};function Lf(t,e,n){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),r!=null&&t.clipExtent(null),Ce(n,t.stream(js)),e(js.result()),r!=null&&t.clipExtent(r),t}function Ks(t,e,n){return Lf(t,function(r){var i=e[1][0]-e[0][0],o=e[1][1]-e[0][1],a=Math.min(i/(r[1][0]-r[0][0]),o/(r[1][1]-r[0][1])),s=+e[0][0]+(i-a*(r[1][0]+r[0][0]))/2,u=+e[0][1]+(o-a*(r[1][1]+r[0][1]))/2;t.scale(150*a).translate([s,u])},n)}function kf(t,e,n){return Ks(t,[[0,0],e],n)}function Rf(t,e,n){return Lf(t,function(r){var i=+e,o=i/(r[1][0]-r[0][0]),a=(i-o*(r[1][0]+r[0][0]))/2,s=-o*r[0][1];t.scale(150*o).translate([a,s])},n)}function Ef(t,e,n){return Lf(t,function(r){var i=+e,o=i/(r[1][1]-r[0][1]),a=-o*r[0][0],s=(i-o*(r[1][1]+r[0][1]))/2;t.scale(150*o).translate([a,s])},n)}var Ay=16,m7=et(30*at);function Ty(t,e){return+e?b7(t,e):y7(t)}function y7(t){return wo({point:function(e,n){e=t(e,n),this.stream.point(e[0],e[1])}})}function b7(t,e){function n(r,i,o,a,s,u,l,c,f,h,p,d,g,m){var y=l-r,b=c-i,v=y*y+b*b;if(v>4*e&&g--){var x=a+h,S=s+p,$=u+d,R=It(x*x+S*S+$*$),T=Zt($/=R),w=pt(pt($)-1)<it||pt(o-f)<it?(o+f)/2:qt(S,x),P=t(w,T),_=P[0],N=P[1],D=_-r,A=N-i,L=b*D-y*A;(L*L/v>e||pt((y*D+b*A)/v-.5)>.3||a*h+s*p+u*d<m7)&&(n(r,i,o,a,s,u,_,N,w,x/=R,S/=R,$,g,m),m.point(_,N),n(_,N,w,x,S,$,l,c,f,h,p,d,g,m))}}return function(r){var i,o,a,s,u,l,c,f,h,p,d,g,m={point:y,lineStart:b,lineEnd:x,polygonStart:function(){r.polygonStart(),m.lineStart=S},polygonEnd:function(){r.polygonEnd(),m.lineStart=b}};function y(T,w){T=t(T,w),r.point(T[0],T[1])}function b(){f=NaN,m.point=v,r.lineStart()}function v(T,w){var P=ir([T,w]),_=t(T,w);n(f,h,c,p,d,g,f=_[0],h=_[1],c=T,p=P[0],d=P[1],g=P[2],Ay,r),r.point(f,h)}function x(){m.point=y,r.lineEnd()}function S(){b(),m.point=$,m.lineEnd=R}function $(T,w){v(i=T,w),o=f,a=h,s=p,u=d,l=g,m.point=v}function R(){n(f,h,c,p,d,g,o,a,i,s,u,l,Ay,r),m.lineEnd=x,x()}return m}}var x7=wo({point:function(t,e){this.stream.point(t*at,e*at)}});function v7(t){return wo({point:function(e,n){var r=t(e,n);return this.stream.point(r[0],r[1])}})}function _7(t,e,n,r,i){function o(a,s){return a*=r,s*=i,[e+t*a,n-t*s]}return o.invert=function(a,s){return[(a-e)/t*r,(n-s)/t*i]},o}function Py(t,e,n,r,i,o){if(!o)return _7(t,e,n,r,i);var a=et(o),s=J(o),u=a*t,l=s*t,c=a/t,f=s/t,h=(s*n-a*e)/t,p=(s*e+a*n)/t;function d(g,m){return g*=r,m*=i,[u*g-l*m+e,n-l*g-u*m]}return d.invert=function(g,m){return[r*(c*g-f*m+h),i*(p-f*g-c*m)]},d}function We(t){return If(function(){return t})()}function If(t){var e,n=150,r=480,i=250,o=0,a=0,s=0,u=0,l=0,c,f=0,h=1,p=1,d=null,g=mf,m=null,y,b,v,x=go,S=.5,$,R,T,w,P;function _(L){return T(L[0]*at,L[1]*at)}function N(L){return L=T.invert(L[0],L[1]),L&&[L[0]*bt,L[1]*bt]}_.stream=function(L){return w&&P===L?w:w=x7(v7(c)(g($(x(P=L)))))},_.preclip=function(L){return arguments.length?(g=L,d=void 0,A()):g},_.postclip=function(L){return arguments.length?(x=L,m=y=b=v=null,A()):x},_.clipAngle=function(L){return arguments.length?(g=+L?K1(d=L*at):(d=null,mf),A()):d*bt},_.clipExtent=function(L){return arguments.length?(x=L==null?(m=y=b=v=null,go):Gs(m=+L[0][0],y=+L[0][1],b=+L[1][0],v=+L[1][1]),A()):m==null?null:[[m,y],[b,v]]},_.scale=function(L){return arguments.length?(n=+L,D()):n},_.translate=function(L){return arguments.length?(r=+L[0],i=+L[1],D()):[r,i]},_.center=function(L){return arguments.length?(o=L[0]%360*at,a=L[1]%360*at,D()):[o*bt,a*bt]},_.rotate=function(L){return arguments.length?(s=L[0]%360*at,u=L[1]%360*at,l=L.length>2?L[2]%360*at:0,D()):[s*bt,u*bt,l*bt]},_.angle=function(L){return arguments.length?(f=L%360*at,D()):f*bt},_.reflectX=function(L){return arguments.length?(h=L?-1:1,D()):h<0},_.reflectY=function(L){return arguments.length?(p=L?-1:1,D()):p<0},_.precision=function(L){return arguments.length?($=Ty(R,S=L*L),A()):It(S)},_.fitExtent=function(L,M){return Ks(_,L,M)},_.fitSize=function(L,M){return kf(_,L,M)},_.fitWidth=function(L,M){return Rf(_,L,M)},_.fitHeight=function(L,M){return Ef(_,L,M)};function D(){var L=Py(n,0,0,h,p,f).apply(null,e(o,a)),M=Py(n,r-L[0],i-L[1],h,p,f);return c=df(s,u,l),R=hf(e,M),T=hf(c,R),$=Ty(R,S),A()}function A(){return w=P=null,_}return function(){return e=t.apply(this,arguments),_.invert=e.invert&&N,D()}}function Nf(t){var e=0,n=ft/3,r=If(t),i=r(e,n);return i.parallels=function(o){return arguments.length?r(e=o[0]*at,n=o[1]*at):[e*bt,n*bt]},i}function w7(t){var e=et(t);function n(r,i){return[r*e,J(i)/e]}return n.invert=function(r,i){return[r/e,Zt(i*e)]},n}function My(t,e){var n=J(t),r=(n+J(e))/2;if(pt(r)<it)return w7(t);var i=1+n*(2*r-n),o=It(i)/r;function a(s,u){var l=It(i-2*r*J(u))/r;return[l*J(s*=r),o-l*et(s)]}return a.invert=function(s,u){var l=o-u,c=qt(s,pt(l))*me(l);return l*r<0&&(c-=ft*me(s)*me(l)),[c/r,Zt((i-(s*s+l*l)*r*r)/(2*r))]},a}function Qs(){return Nf(My).scale(155.424).center([0,33.6442])}function Dy(){return Qs().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function $7(t){var e=t.length;return{point:function(n,r){for(var i=-1;++i<e;)t[i].point(n,r)},sphere:function(){for(var n=-1;++n<e;)t[n].sphere()},lineStart:function(){for(var n=-1;++n<e;)t[n].lineStart()},lineEnd:function(){for(var n=-1;++n<e;)t[n].lineEnd()},polygonStart:function(){for(var n=-1;++n<e;)t[n].polygonStart()},polygonEnd:function(){for(var n=-1;++n<e;)t[n].polygonEnd()}}}function S7(){var t,e,n=Dy(),r,i=Qs().rotate([154,0]).center([-2,58.5]).parallels([55,65]),o,a=Qs().rotate([157,0]).center([-3,19.9]).parallels([8,18]),s,u,l={point:function(h,p){u=[h,p]}};function c(h){var p=h[0],d=h[1];return u=null,r.point(p,d),u||(o.point(p,d),u)||(s.point(p,d),u)}c.invert=function(h){var p=n.scale(),d=n.translate(),g=(h[0]-d[0])/p,m=(h[1]-d[1])/p;return(m>=.12&&m<.234&&g>=-.425&&g<-.214?i:m>=.166&&m<.234&&g>=-.214&&g<-.115?a:n).invert(h)},c.stream=function(h){return t&&e===h?t:t=$7([n.stream(e=h),i.stream(h),a.stream(h)])},c.precision=function(h){return arguments.length?(n.precision(h),i.precision(h),a.precision(h),f()):n.precision()},c.scale=function(h){return arguments.length?(n.scale(h),i.scale(h*.35),a.scale(h),c.translate(n.translate())):n.scale()},c.translate=function(h){if(!arguments.length)return n.translate();var p=n.scale(),d=+h[0],g=+h[1];return r=n.translate(h).clipExtent([[d-.455*p,g-.238*p],[d+.455*p,g+.238*p]]).stream(l),o=i.translate([d-.307*p,g+.201*p]).clipExtent([[d-.425*p+it,g+.12*p+it],[d-.214*p-it,g+.234*p-it]]).stream(l),s=a.translate([d-.205*p,g+.212*p]).clipExtent([[d-.214*p+it,g+.166*p+it],[d-.115*p-it,g+.234*p-it]]).stream(l),f()},c.fitExtent=function(h,p){return Ks(c,h,p)},c.fitSize=function(h,p){return kf(c,h,p)},c.fitWidth=function(h,p){return Rf(c,h,p)},c.fitHeight=function(h,p){return Ef(c,h,p)};function f(){return t=e=null,c}return c.scale(1070)}function Cy(t){return function(e,n){var r=et(e),i=et(n),o=t(r*i);return o===1/0?[2,0]:[o*i*J(e),o*J(n)]}}function $o(t){return function(e,n){var r=It(e*e+n*n),i=t(r),o=J(i),a=et(i);return[qt(e*o,r*a),Zt(r&&n*o/r)]}}var Bf=Cy(function(t){return It(2/(1+t))});Bf.invert=$o(function(t){return 2*Zt(t/2)});function A7(){return We(Bf).scale(124.75).clipAngle(180-.001)}var Ff=Cy(function(t){return(t=v1(t))&&t/J(t)});Ff.invert=$o(function(t){return t});function T7(){return We(Ff).scale(79.4188).clipAngle(180-.001)}function So(t,e){return[t,ws(tf((At+e)/2))]}So.invert=function(t,e){return[t,2*ei(x1(e))-At]};function P7(){return Ly(So).scale(961/Vt)}function Ly(t){var e=We(t),n=e.center,r=e.scale,i=e.translate,o=e.clipExtent,a=null,s,u,l;e.scale=function(f){return arguments.length?(r(f),c()):r()},e.translate=function(f){return arguments.length?(i(f),c()):i()},e.center=function(f){return arguments.length?(n(f),c()):n()},e.clipExtent=function(f){return arguments.length?(f==null?a=s=u=l=null:(a=+f[0][0],s=+f[0][1],u=+f[1][0],l=+f[1][1]),c()):a==null?null:[[a,s],[u,l]]};function c(){var f=ft*r(),h=e(U1(e.rotate()).invert([0,0]));return o(a==null?[[h[0]-f,h[1]-f],[h[0]+f,h[1]+f]]:t===So?[[Math.max(h[0]-f,a),s],[Math.min(h[0]+f,u),l]]:[[a,Math.max(h[1]-f,s)],[u,Math.min(h[1]+f,l)]])}return c()}function Js(t){return tf((At+t)/2)}function ky(t,e){var n=et(t),r=t===e?J(t):ws(n/et(e))/ws(Js(e)/Js(t)),i=n*Jc(Js(t),r)/r;if(!r)return So;function o(a,s){i>0?s<-At+it&&(s=-At+it):s>At-it&&(s=At-it);var u=i/Jc(Js(s),r);return[u*J(r*a),i-u*et(r*a)]}return o.invert=function(a,s){var u=i-s,l=me(r)*It(a*a+u*u),c=qt(a,pt(u))*me(u);return u*r<0&&(c-=ft*me(a)*me(u)),[c/r,2*ei(Jc(i/l,1/r))-At]},o}function M7(){return Nf(ky).scale(109.5).parallels([30,30])}function Ao(t,e){return[t,e]}Ao.invert=Ao;function D7(){return We(Ao).scale(152.63)}function Ry(t,e){var n=et(t),r=t===e?J(t):(n-et(e))/(e-t),i=n/r+t;if(pt(r)<it)return Ao;function o(a,s){var u=i-s,l=r*a;return[u*J(l),i-u*et(l)]}return o.invert=function(a,s){var u=i-s,l=qt(a,pt(u))*me(u);return u*r<0&&(l-=ft*me(a)*me(u)),[l/r,i-me(r)*It(a*a+u*u)]},o}function C7(){return Nf(Ry).scale(131.154).center([0,13.9389])}var To=1.340264,Po=-.081106,Mo=893e-6,Do=.003796,tu=It(3)/2,L7=12;function Of(t,e){var n=Zt(tu*J(e)),r=n*n,i=r*r*r;return[t*et(n)/(tu*(To+3*Po*r+i*(7*Mo+9*Do*r))),n*(To+Po*r+i*(Mo+Do*r))]}Of.invert=function(t,e){for(var n=e,r=n*n,i=r*r*r,o=0,a,s,u;o<L7&&(s=n*(To+Po*r+i*(Mo+Do*r))-e,u=To+3*Po*r+i*(7*Mo+9*Do*r),n-=a=s/u,r=n*n,i=r*r*r,!(pt(a)<lo));++o);return[tu*t*(To+3*Po*r+i*(7*Mo+9*Do*r))/et(n),Zt(J(n)/tu)]};function k7(){return We(Of).scale(177.158)}function Gf(t,e){var n=et(e),r=et(t)*n;return[n*J(t)/r,J(e)/r]}Gf.invert=$o(ei);function R7(){return We(Gf).scale(144.049).clipAngle(60)}function E7(){var t=1,e=0,n=0,r=1,i=1,o=0,a,s,u=null,l,c,f,h=1,p=1,d=wo({point:function(x,S){var $=v([x,S]);this.stream.point($[0],$[1])}}),g=go,m,y;function b(){return h=t*r,p=t*i,m=y=null,v}function v(x){var S=x[0]*h,$=x[1]*p;if(o){var R=$*a-S*s;S=S*a+$*s,$=R}return[S+e,$+n]}return v.invert=function(x){var S=x[0]-e,$=x[1]-n;if(o){var R=$*a+S*s;S=S*a-$*s,$=R}return[S/h,$/p]},v.stream=function(x){return m&&y===x?m:m=d(g(y=x))},v.postclip=function(x){return arguments.length?(g=x,u=l=c=f=null,b()):g},v.clipExtent=function(x){return arguments.length?(g=x==null?(u=l=c=f=null,go):Gs(u=+x[0][0],l=+x[0][1],c=+x[1][0],f=+x[1][1]),b()):u==null?null:[[u,l],[c,f]]},v.scale=function(x){return arguments.length?(t=+x,b()):t},v.translate=function(x){return arguments.length?(e=+x[0],n=+x[1],b()):[e,n]},v.angle=function(x){return arguments.length?(o=x%360*at,s=J(o),a=et(o),b()):o*bt},v.reflectX=function(x){return arguments.length?(r=x?-1:1,b()):r<0},v.reflectY=function(x){return arguments.length?(i=x?-1:1,b()):i<0},v.fitExtent=function(x,S){return Ks(v,x,S)},v.fitSize=function(x,S){return kf(v,x,S)},v.fitWidth=function(x,S){return Rf(v,x,S)},v.fitHeight=function(x,S){return Ef(v,x,S)},v}function zf(t,e){var n=e*e,r=n*n;return[t*(.8707-.131979*n+r*(-.013791+r*(.003971*n-.001529*r))),e*(1.007226+n*(.015085+r*(-.044475+.028874*n-.005916*r)))]}zf.invert=function(t,e){var n=e,r=25,i;do{var o=n*n,a=o*o;n-=i=(n*(1.007226+o*(.015085+a*(-.044475+.028874*o-.005916*a)))-e)/(1.007226+o*(.015085*3+a*(-.044475*7+.028874*9*o-.005916*11*a)))}while(pt(i)>it&&--r>0);return[t/(.8707+(o=n*n)*(-.131979+o*(-.013791+o*o*o*(.003971-.001529*o)))),n]};function I7(){return We(zf).scale(175.295)}function Yf(t,e){return[et(e)*J(t),J(e)]}Yf.invert=$o(Zt);function N7(){return We(Yf).scale(249.5).clipAngle(90+it)}function Uf(t,e){var n=et(e),r=1+et(t)*n;return[n*J(t)/r,J(e)/r]}Uf.invert=$o(function(t){return 2*ei(t)});function B7(){return We(Uf).scale(250).clipAngle(142)}function Wf(t,e){return[ws(tf((At+e)/2)),-t]}Wf.invert=function(t,e){return[-e,2*ei(x1(t))-At]};function F7(){var t=Ly(Wf),e=t.center,n=t.rotate;return t.center=function(r){return arguments.length?e([-r[1],r[0]]):(r=e(),[r[1],-r[0]])},t.rotate=function(r){return arguments.length?n([r[0],r[1],r.length>2?r[2]+90:90]):(r=n(),[r[0],r[1],r[2]-90])},n([0,0,90]).scale(159.155)}function O7(t,e){return t.parent===e.parent?1:2}function G7(t){return t.reduce(z7,0)/t.length}function z7(t,e){return t+e.x}function Y7(t){return 1+t.reduce(U7,0)}function U7(t,e){return Math.max(t,e.y)}function W7(t){for(var e;e=t.children;)t=e[0];return t}function H7(t){for(var e;e=t.children;)t=e[e.length-1];return t}function X7(){var t=O7,e=1,n=1,r=!1;function i(o){var a,s=0;o.eachAfter(function(h){var p=h.children;p?(h.x=G7(p),h.y=Y7(p)):(h.x=a?s+=t(h,a):0,h.y=0,a=h)});var u=W7(o),l=H7(o),c=u.x-t(u,l)/2,f=l.x+t(l,u)/2;return o.eachAfter(r?function(h){h.x=(h.x-o.x)*e,h.y=(o.y-h.y)*n}:function(h){h.x=(h.x-c)/(f-c)*e,h.y=(1-(o.y?h.y/o.y:1))*n})}return i.separation=function(o){return arguments.length?(t=o,i):t},i.size=function(o){return arguments.length?(r=!1,e=+o[0],n=+o[1],i):r?null:[e,n]},i.nodeSize=function(o){return arguments.length?(r=!0,e=+o[0],n=+o[1],i):r?[e,n]:null},i}function j7(t){var e=0,n=t.children,r=n&&n.length;if(!r)e=1;else for(;--r>=0;)e+=n[r].value;t.value=e}function V7(){return this.eachAfter(j7)}function q7(t,e){let n=-1;for(const r of this)t.call(e,r,++n,this);return this}function Z7(t,e){for(var n=this,r=[n],i,o,a=-1;n=r.pop();)if(t.call(e,n,++a,this),i=n.children)for(o=i.length-1;o>=0;--o)r.push(i[o]);return this}function K7(t,e){for(var n=this,r=[n],i=[],o,a,s,u=-1;n=r.pop();)if(i.push(n),o=n.children)for(a=0,s=o.length;a<s;++a)r.push(o[a]);for(;n=i.pop();)t.call(e,n,++u,this);return this}function Q7(t,e){let n=-1;for(const r of this)if(t.call(e,r,++n,this))return r}function J7(t){return this.eachAfter(function(e){for(var n=+t(e.data)||0,r=e.children,i=r&&r.length;--i>=0;)n+=r[i].value;e.value=n})}function tC(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})}function eC(t){for(var e=this,n=nC(e,t),r=[e];e!==n;)e=e.parent,r.push(e);for(var i=r.length;t!==n;)r.splice(i,0,t),t=t.parent;return r}function nC(t,e){if(t===e)return t;var n=t.ancestors(),r=e.ancestors(),i=null;for(t=n.pop(),e=r.pop();t===e;)i=t,t=n.pop(),e=r.pop();return i}function rC(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e}function iC(){return Array.from(this)}function oC(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t}function aC(){var t=this,e=[];return t.each(function(n){n!==t&&e.push({source:n.parent,target:n})}),e}function*sC(){var t=this,e,n=[t],r,i,o;do for(e=n.reverse(),n=[];t=e.pop();)if(yield t,r=t.children)for(i=0,o=r.length;i<o;++i)n.push(r[i]);while(n.length)}function eu(t,e){t instanceof Map?(t=[void 0,t],e===void 0&&(e=cC)):e===void 0&&(e=lC);for(var n=new sr(t),r,i=[n],o,a,s,u;r=i.pop();)if((a=e(r.data))&&(u=(a=Array.from(a)).length))for(r.children=a,s=u-1;s>=0;--s)i.push(o=a[s]=new sr(a[s])),o.parent=r,o.depth=r.depth+1;return n.eachBefore(Ey)}function uC(){return eu(this).eachBefore(fC)}function lC(t){return t.children}function cC(t){return Array.isArray(t)?t[1]:null}function fC(t){t.data.value!==void 0&&(t.value=t.data.value),t.data=t.data.data}function Ey(t){var e=0;do t.height=e;while((t=t.parent)&&t.height<++e)}function sr(t){this.data=t,this.depth=this.height=0,this.parent=null}sr.prototype=eu.prototype={constructor:sr,count:V7,each:q7,eachAfter:K7,eachBefore:Z7,find:Q7,sum:J7,sort:tC,path:eC,ancestors:rC,descendants:iC,leaves:oC,links:aC,copy:uC,[Symbol.iterator]:sC};function nu(t){return t==null?null:Iy(t)}function Iy(t){if(typeof t!="function")throw new Error;return t}function ur(){return 0}function ui(t){return function(){return t}}const hC=1664525,pC=1013904223,Ny=4294967296;function Hf(){let t=1;return()=>(t=(hC*t+pC)%Ny)/Ny}function dC(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function gC(t,e){let n=t.length,r,i;for(;n;)i=e()*n--|0,r=t[n],t[n]=t[i],t[i]=r;return t}function mC(t){return By(t,Hf())}function By(t,e){for(var n=0,r=(t=gC(Array.from(t),e)).length,i=[],o,a;n<r;)o=t[n],a&&Fy(a,o)?++n:(a=bC(i=yC(i,o)),n=0);return a}function yC(t,e){var n,r;if(Xf(e,t))return[e];for(n=0;n<t.length;++n)if(ru(e,t[n])&&Xf(Co(t[n],e),t))return[t[n],e];for(n=0;n<t.length-1;++n)for(r=n+1;r<t.length;++r)if(ru(Co(t[n],t[r]),e)&&ru(Co(t[n],e),t[r])&&ru(Co(t[r],e),t[n])&&Xf(Oy(t[n],t[r],e),t))return[t[n],t[r],e];throw new Error}function ru(t,e){var n=t.r-e.r,r=e.x-t.x,i=e.y-t.y;return n<0||n*n<r*r+i*i}function Fy(t,e){var n=t.r-e.r+Math.max(t.r,e.r,1)*1e-9,r=e.x-t.x,i=e.y-t.y;return n>0&&n*n>r*r+i*i}function Xf(t,e){for(var n=0;n<e.length;++n)if(!Fy(t,e[n]))return!1;return!0}function bC(t){switch(t.length){case 1:return xC(t[0]);case 2:return Co(t[0],t[1]);case 3:return Oy(t[0],t[1],t[2])}}function xC(t){return{x:t.x,y:t.y,r:t.r}}function Co(t,e){var n=t.x,r=t.y,i=t.r,o=e.x,a=e.y,s=e.r,u=o-n,l=a-r,c=s-i,f=Math.sqrt(u*u+l*l);return{x:(n+o+u/f*c)/2,y:(r+a+l/f*c)/2,r:(f+i+s)/2}}function Oy(t,e,n){var r=t.x,i=t.y,o=t.r,a=e.x,s=e.y,u=e.r,l=n.x,c=n.y,f=n.r,h=r-a,p=r-l,d=i-s,g=i-c,m=u-o,y=f-o,b=r*r+i*i-o*o,v=b-a*a-s*s+u*u,x=b-l*l-c*c+f*f,S=p*d-h*g,$=(d*x-g*v)/(S*2)-r,R=(g*m-d*y)/S,T=(p*v-h*x)/(S*2)-i,w=(h*y-p*m)/S,P=R*R+w*w-1,_=2*(o+$*R+T*w),N=$*$+T*T-o*o,D=-(Math.abs(P)>1e-6?(_+Math.sqrt(_*_-4*P*N))/(2*P):N/_);return{x:r+$+R*D,y:i+T+w*D,r:D}}function Gy(t,e,n){var r=t.x-e.x,i,o,a=t.y-e.y,s,u,l=r*r+a*a;l?(o=e.r+n.r,o*=o,u=t.r+n.r,u*=u,o>u?(i=(l+u-o)/(2*l),s=Math.sqrt(Math.max(0,u/l-i*i)),n.x=t.x-i*r-s*a,n.y=t.y-i*a+s*r):(i=(l+o-u)/(2*l),s=Math.sqrt(Math.max(0,o/l-i*i)),n.x=e.x+i*r-s*a,n.y=e.y+i*a+s*r)):(n.x=e.x+n.r,n.y=e.y)}function zy(t,e){var n=t.r+e.r-1e-6,r=e.x-t.x,i=e.y-t.y;return n>0&&n*n>r*r+i*i}function Yy(t){var e=t._,n=t.next._,r=e.r+n.r,i=(e.x*n.r+n.x*e.r)/r,o=(e.y*n.r+n.y*e.r)/r;return i*i+o*o}function iu(t){this._=t,this.next=null,this.previous=null}function Uy(t,e){if(!(o=(t=dC(t)).length))return 0;var n,r,i,o,a,s,u,l,c,f,h;if(n=t[0],n.x=0,n.y=0,!(o>1))return n.r;if(r=t[1],n.x=-r.r,r.x=n.r,r.y=0,!(o>2))return n.r+r.r;Gy(r,n,i=t[2]),n=new iu(n),r=new iu(r),i=new iu(i),n.next=i.previous=r,r.next=n.previous=i,i.next=r.previous=n;t:for(u=3;u<o;++u){Gy(n._,r._,i=t[u]),i=new iu(i),l=r.next,c=n.previous,f=r._.r,h=n._.r;do if(f<=h){if(zy(l._,i._)){r=l,n.next=r,r.previous=n,--u;continue t}f+=l._.r,l=l.next}else{if(zy(c._,i._)){n=c,n.next=r,r.previous=n,--u;continue t}h+=c._.r,c=c.previous}while(l!==c.next);for(i.previous=n,i.next=r,n.next=r.previous=r=i,a=Yy(n);(i=i.next)!==r;)(s=Yy(i))<a&&(n=i,a=s);r=n.next}for(n=[r._],i=r;(i=i.next)!==r;)n.push(i._);for(i=By(n,e),u=0;u<o;++u)n=t[u],n.x-=i.x,n.y-=i.y;return i.r}function vC(t){return Uy(t,Hf()),t}function _C(t){return Math.sqrt(t.value)}function wC(){var t=null,e=1,n=1,r=ur;function i(o){const a=Hf();return o.x=e/2,o.y=n/2,t?o.eachBefore(Wy(t)).eachAfter(jf(r,.5,a)).eachBefore(Hy(1)):o.eachBefore(Wy(_C)).eachAfter(jf(ur,1,a)).eachAfter(jf(r,o.r/Math.min(e,n),a)).eachBefore(Hy(Math.min(e,n)/(2*o.r))),o}return i.radius=function(o){return arguments.length?(t=nu(o),i):t},i.size=function(o){return arguments.length?(e=+o[0],n=+o[1],i):[e,n]},i.padding=function(o){return arguments.length?(r=typeof o=="function"?o:ui(+o),i):r},i}function Wy(t){return function(e){e.children||(e.r=Math.max(0,+t(e)||0))}}function jf(t,e,n){return function(r){if(i=r.children){var i,o,a=i.length,s=t(r)*e||0,u;if(s)for(o=0;o<a;++o)i[o].r+=s;if(u=Uy(i,n),s)for(o=0;o<a;++o)i[o].r-=s;r.r=u+s}}}function Hy(t){return function(e){var n=e.parent;e.r*=t,n&&(e.x=n.x+t*e.x,e.y=n.y+t*e.y)}}function Xy(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function Lo(t,e,n,r,i){for(var o=t.children,a,s=-1,u=o.length,l=t.value&&(r-e)/t.value;++s<u;)a=o[s],a.y0=n,a.y1=i,a.x0=e,a.x1=e+=a.value*l}function $C(){var t=1,e=1,n=0,r=!1;function i(a){var s=a.height+1;return a.x0=a.y0=n,a.x1=t,a.y1=e/s,a.eachBefore(o(e,s)),r&&a.eachBefore(Xy),a}function o(a,s){return function(u){u.children&&Lo(u,u.x0,a*(u.depth+1)/s,u.x1,a*(u.depth+2)/s);var l=u.x0,c=u.y0,f=u.x1-n,h=u.y1-n;f<l&&(l=f=(l+f)/2),h<c&&(c=h=(c+h)/2),u.x0=l,u.y0=c,u.x1=f,u.y1=h}}return i.round=function(a){return arguments.length?(r=!!a,i):r},i.size=function(a){return arguments.length?(t=+a[0],e=+a[1],i):[t,e]},i.padding=function(a){return arguments.length?(n=+a,i):n},i}var SC={depth:-1},jy={},Vf={};function AC(t){return t.id}function TC(t){return t.parentId}function PC(){var t=AC,e=TC,n;function r(i){var o=Array.from(i),a=t,s=e,u,l,c,f,h,p,d,g,m=new Map;if(n!=null){const y=o.map((x,S)=>MC(n(x,S,i))),b=y.map(Vy),v=new Set(y).add("");for(const x of b)v.has(x)||(v.add(x),y.push(x),b.push(Vy(x)),o.push(Vf));a=(x,S)=>y[S],s=(x,S)=>b[S]}for(c=0,u=o.length;c<u;++c)l=o[c],p=o[c]=new sr(l),(d=a(l,c,i))!=null&&(d+="")&&(g=p.id=d,m.set(g,m.has(g)?jy:p)),(d=s(l,c,i))!=null&&(d+="")&&(p.parent=d);for(c=0;c<u;++c)if(p=o[c],d=p.parent){if(h=m.get(d),!h)throw new Error("missing: "+d);if(h===jy)throw new Error("ambiguous: "+d);h.children?h.children.push(p):h.children=[p],p.parent=h}else{if(f)throw new Error("multiple roots");f=p}if(!f)throw new Error("no root");if(n!=null){for(;f.data===Vf&&f.children.length===1;)f=f.children[0],--u;for(let y=o.length-1;y>=0&&(p=o[y],p.data===Vf);--y)p.data=null}if(f.parent=SC,f.eachBefore(function(y){y.depth=y.parent.depth+1,--u}).eachBefore(Ey),f.parent=null,u>0)throw new Error("cycle");return f}return r.id=function(i){return arguments.length?(t=nu(i),r):t},r.parentId=function(i){return arguments.length?(e=nu(i),r):e},r.path=function(i){return arguments.length?(n=nu(i),r):n},r}function MC(t){t=`${t}`;let e=t.length;return qf(t,e-1)&&!qf(t,e-2)&&(t=t.slice(0,-1)),t[0]==="/"?t:`/${t}`}function Vy(t){let e=t.length;if(e<2)return"";for(;--e>1&&!qf(t,e););return t.slice(0,e)}function qf(t,e){if(t[e]==="/"){let n=0;for(;e>0&&t[--e]==="\\";)++n;if(!(n&1))return!0}return!1}function DC(t,e){return t.parent===e.parent?1:2}function Zf(t){var e=t.children;return e?e[0]:t.t}function Kf(t){var e=t.children;return e?e[e.length-1]:t.t}function CC(t,e,n){var r=n/(e.i-t.i);e.c-=r,e.s+=n,t.c+=r,e.z+=n,e.m+=n}function LC(t){for(var e=0,n=0,r=t.children,i=r.length,o;--i>=0;)o=r[i],o.z+=e,o.m+=e,e+=o.s+(n+=o.c)}function kC(t,e,n){return t.a.parent===e.parent?t.a:n}function ou(t,e){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=e}ou.prototype=Object.create(sr.prototype);function RC(t){for(var e=new ou(t,0),n,r=[e],i,o,a,s;n=r.pop();)if(o=n._.children)for(n.children=new Array(s=o.length),a=s-1;a>=0;--a)r.push(i=n.children[a]=new ou(o[a],a)),i.parent=n;return(e.parent=new ou(null,0)).children=[e],e}function EC(){var t=DC,e=1,n=1,r=null;function i(l){var c=RC(l);if(c.eachAfter(o),c.parent.m=-c.z,c.eachBefore(a),r)l.eachBefore(u);else{var f=l,h=l,p=l;l.eachBefore(function(b){b.x<f.x&&(f=b),b.x>h.x&&(h=b),b.depth>p.depth&&(p=b)});var d=f===h?1:t(f,h)/2,g=d-f.x,m=e/(h.x+d+g),y=n/(p.depth||1);l.eachBefore(function(b){b.x=(b.x+g)*m,b.y=b.depth*y})}return l}function o(l){var c=l.children,f=l.parent.children,h=l.i?f[l.i-1]:null;if(c){LC(l);var p=(c[0].z+c[c.length-1].z)/2;h?(l.z=h.z+t(l._,h._),l.m=l.z-p):l.z=p}else h&&(l.z=h.z+t(l._,h._));l.parent.A=s(l,h,l.parent.A||f[0])}function a(l){l._.x=l.z+l.parent.m,l.m+=l.parent.m}function s(l,c,f){if(c){for(var h=l,p=l,d=c,g=h.parent.children[0],m=h.m,y=p.m,b=d.m,v=g.m,x;d=Kf(d),h=Zf(h),d&&h;)g=Zf(g),p=Kf(p),p.a=l,x=d.z+b-h.z-m+t(d._,h._),x>0&&(CC(kC(d,l,f),l,x),m+=x,y+=x),b+=d.m,m+=h.m,v+=g.m,y+=p.m;d&&!Kf(p)&&(p.t=d,p.m+=b-y),h&&!Zf(g)&&(g.t=h,g.m+=m-v,f=l)}return f}function u(l){l.x*=e,l.y=l.depth*n}return i.separation=function(l){return arguments.length?(t=l,i):t},i.size=function(l){return arguments.length?(r=!1,e=+l[0],n=+l[1],i):r?null:[e,n]},i.nodeSize=function(l){return arguments.length?(r=!0,e=+l[0],n=+l[1],i):r?[e,n]:null},i}function au(t,e,n,r,i){for(var o=t.children,a,s=-1,u=o.length,l=t.value&&(i-n)/t.value;++s<u;)a=o[s],a.x0=e,a.x1=r,a.y0=n,a.y1=n+=a.value*l}var qy=(1+Math.sqrt(5))/2;function Zy(t,e,n,r,i,o){for(var a=[],s=e.children,u,l,c=0,f=0,h=s.length,p,d,g=e.value,m,y,b,v,x,S,$;c<h;){p=i-n,d=o-r;do m=s[f++].value;while(!m&&f<h);for(y=b=m,S=Math.max(d/p,p/d)/(g*t),$=m*m*S,x=Math.max(b/$,$/y);f<h;++f){if(m+=l=s[f].value,l<y&&(y=l),l>b&&(b=l),$=m*m*S,v=Math.max(b/$,$/y),v>x){m-=l;break}x=v}a.push(u={value:m,dice:p<d,children:s.slice(c,f)}),u.dice?Lo(u,n,r,i,g?r+=d*m/g:o):au(u,n,r,g?n+=p*m/g:i,o),g-=m,c=f}return a}const Qf=function t(e){function n(r,i,o,a,s){Zy(e,r,i,o,a,s)}return n.ratio=function(r){return t((r=+r)>1?r:1)},n}(qy);function Ky(){var t=Qf,e=!1,n=1,r=1,i=[0],o=ur,a=ur,s=ur,u=ur,l=ur;function c(h){return h.x0=h.y0=0,h.x1=n,h.y1=r,h.eachBefore(f),i=[0],e&&h.eachBefore(Xy),h}function f(h){var p=i[h.depth],d=h.x0+p,g=h.y0+p,m=h.x1-p,y=h.y1-p;m<d&&(d=m=(d+m)/2),y<g&&(g=y=(g+y)/2),h.x0=d,h.y0=g,h.x1=m,h.y1=y,h.children&&(p=i[h.depth+1]=o(h)/2,d+=l(h)-p,g+=a(h)-p,m-=s(h)-p,y-=u(h)-p,m<d&&(d=m=(d+m)/2),y<g&&(g=y=(g+y)/2),t(h,d,g,m,y))}return c.round=function(h){return arguments.length?(e=!!h,c):e},c.size=function(h){return arguments.length?(n=+h[0],r=+h[1],c):[n,r]},c.tile=function(h){return arguments.length?(t=Iy(h),c):t},c.padding=function(h){return arguments.length?c.paddingInner(h).paddingOuter(h):c.paddingInner()},c.paddingInner=function(h){return arguments.length?(o=typeof h=="function"?h:ui(+h),c):o},c.paddingOuter=function(h){return arguments.length?c.paddingTop(h).paddingRight(h).paddingBottom(h).paddingLeft(h):c.paddingTop()},c.paddingTop=function(h){return arguments.length?(a=typeof h=="function"?h:ui(+h),c):a},c.paddingRight=function(h){return arguments.length?(s=typeof h=="function"?h:ui(+h),c):s},c.paddingBottom=function(h){return arguments.length?(u=typeof h=="function"?h:ui(+h),c):u},c.paddingLeft=function(h){return arguments.length?(l=typeof h=="function"?h:ui(+h),c):l},c}function IC(t,e,n,r,i){var o=t.children,a,s=o.length,u,l=new Array(s+1);for(l[0]=u=a=0;a<s;++a)l[a+1]=u+=o[a].value;c(0,s,t.value,e,n,r,i);function c(f,h,p,d,g,m,y){if(f>=h-1){var b=o[f];b.x0=d,b.y0=g,b.x1=m,b.y1=y;return}for(var v=l[f],x=p/2+v,S=f+1,$=h-1;S<$;){var R=S+$>>>1;l[R]<x?S=R+1:$=R}x-l[S-1]<l[S]-x&&f+1<S&&--S;var T=l[S]-v,w=p-T;if(m-d>y-g){var P=p?(d*w+m*T)/p:m;c(f,S,T,d,g,P,y),c(S,h,w,P,g,m,y)}else{var _=p?(g*w+y*T)/p:y;c(f,S,T,d,g,m,_),c(S,h,w,d,_,m,y)}}}function NC(t,e,n,r,i){(t.depth&1?au:Lo)(t,e,n,r,i)}const BC=function t(e){function n(r,i,o,a,s){if((u=r._squarify)&&u.ratio===e)for(var u,l,c,f,h=-1,p,d=u.length,g=r.value;++h<d;){for(l=u[h],c=l.children,f=l.value=0,p=c.length;f<p;++f)l.value+=c[f].value;l.dice?Lo(l,i,o,a,g?o+=(s-o)*l.value/g:s):au(l,i,o,g?i+=(a-i)*l.value/g:a,s),g-=l.value}else r._squarify=u=Zy(e,r,i,o,a,s),u.ratio=e}return n.ratio=function(r){return t((r=+r)>1?r:1)},n}(qy);function FC(t){for(var e=-1,n=t.length,r,i=t[n-1],o=0;++e<n;)r=i,i=t[e],o+=r[1]*i[0]-r[0]*i[1];return o/2}function OC(t){for(var e=-1,n=t.length,r=0,i=0,o,a=t[n-1],s,u=0;++e<n;)o=a,a=t[e],u+=s=o[0]*a[1]-a[0]*o[1],r+=(o[0]+a[0])*s,i+=(o[1]+a[1])*s;return u*=3,[r/u,i/u]}function GC(t,e,n){return(e[0]-t[0])*(n[1]-t[1])-(e[1]-t[1])*(n[0]-t[0])}function zC(t,e){return t[0]-e[0]||t[1]-e[1]}function Qy(t){const e=t.length,n=[0,1];let r=2,i;for(i=2;i<e;++i){for(;r>1&&GC(t[n[r-2]],t[n[r-1]],t[i])<=0;)--r;n[r++]=i}return n.slice(0,r)}function YC(t){if((n=t.length)<3)return null;var e,n,r=new Array(n),i=new Array(n);for(e=0;e<n;++e)r[e]=[+t[e][0],+t[e][1],e];for(r.sort(zC),e=0;e<n;++e)i[e]=[r[e][0],-r[e][1]];var o=Qy(r),a=Qy(i),s=a[0]===o[0],u=a[a.length-1]===o[o.length-1],l=[];for(e=o.length-1;e>=0;--e)l.push(t[r[o[e]][2]]);for(e=+s;e<a.length-u;++e)l.push(t[r[a[e]][2]]);return l}function UC(t,e){for(var n=t.length,r=t[n-1],i=e[0],o=e[1],a=r[0],s=r[1],u,l,c=!1,f=0;f<n;++f)r=t[f],u=r[0],l=r[1],l>o!=s>o&&i<(a-u)*(o-l)/(s-l)+u&&(c=!c),a=u,s=l;return c}function WC(t){for(var e=-1,n=t.length,r=t[n-1],i,o,a=r[0],s=r[1],u=0;++e<n;)i=a,o=s,r=t[e],a=r[0],s=r[1],i-=a,o-=s,u+=Math.hypot(i,o);return u}const Bt=Math.random,HC=function t(e){function n(r,i){return r=r==null?0:+r,i=i==null?1:+i,arguments.length===1?(i=r,r=0):i-=r,function(){return e()*i+r}}return n.source=t,n}(Bt),XC=function t(e){function n(r,i){return arguments.length<2&&(i=r,r=0),r=Math.floor(r),i=Math.floor(i)-r,function(){return Math.floor(e()*i+r)}}return n.source=t,n}(Bt),Jf=function t(e){function n(r,i){var o,a;return r=r==null?0:+r,i=i==null?1:+i,function(){var s;if(o!=null)s=o,o=null;else do o=e()*2-1,s=e()*2-1,a=o*o+s*s;while(!a||a>1);return r+i*s*Math.sqrt(-2*Math.log(a)/a)}}return n.source=t,n}(Bt),jC=function t(e){var n=Jf.source(e);function r(){var i=n.apply(this,arguments);return function(){return Math.exp(i())}}return r.source=t,r}(Bt),Jy=function t(e){function n(r){return(r=+r)<=0?()=>0:function(){for(var i=0,o=r;o>1;--o)i+=e();return i+o*e()}}return n.source=t,n}(Bt),VC=function t(e){var n=Jy.source(e);function r(i){if((i=+i)==0)return e;var o=n(i);return function(){return o()/i}}return r.source=t,r}(Bt),qC=function t(e){function n(r){return function(){return-Math.log1p(-e())/r}}return n.source=t,n}(Bt),ZC=function t(e){function n(r){if((r=+r)<0)throw new RangeError("invalid alpha");return r=1/-r,function(){return Math.pow(1-e(),r)}}return n.source=t,n}(Bt),KC=function t(e){function n(r){if((r=+r)<0||r>1)throw new RangeError("invalid p");return function(){return Math.floor(e()+r)}}return n.source=t,n}(Bt),tb=function t(e){function n(r){if((r=+r)<0||r>1)throw new RangeError("invalid p");return r===0?()=>1/0:r===1?()=>1:(r=Math.log1p(-r),function(){return 1+Math.floor(Math.log1p(-e())/r)})}return n.source=t,n}(Bt),th=function t(e){var n=Jf.source(e)();function r(i,o){if((i=+i)<0)throw new RangeError("invalid k");if(i===0)return()=>0;if(o=o==null?1:+o,i===1)return()=>-Math.log1p(-e())*o;var a=(i<1?i+1:i)-1/3,s=1/(3*Math.sqrt(a)),u=i<1?()=>Math.pow(e(),1/i):()=>1;return function(){do{do var l=n(),c=1+s*l;while(c<=0);c*=c*c;var f=1-e()}while(f>=1-.0331*l*l*l*l&&Math.log(f)>=.5*l*l+a*(1-c+Math.log(c)));return a*c*u()*o}}return r.source=t,r}(Bt),eb=function t(e){var n=th.source(e);function r(i,o){var a=n(i),s=n(o);return function(){var u=a();return u===0?0:u/(u+s())}}return r.source=t,r}(Bt),nb=function t(e){var n=tb.source(e),r=eb.source(e);function i(o,a){return o=+o,(a=+a)>=1?()=>o:a<=0?()=>0:function(){for(var s=0,u=o,l=a;u*l>16&&u*(1-l)>16;){var c=Math.floor((u+1)*l),f=r(c,u-c+1)();f<=l?(s+=c,u-=c,l=(l-f)/(1-f)):(u=c-1,l/=f)}for(var h=l<.5,p=h?l:1-l,d=n(p),g=d(),m=0;g<=u;++m)g+=d();return s+(h?m:u-m)}}return i.source=t,i}(Bt),QC=function t(e){function n(r,i,o){var a;return(r=+r)==0?a=s=>-Math.log(s):(r=1/r,a=s=>Math.pow(s,r)),i=i==null?0:+i,o=o==null?1:+o,function(){return i+o*a(-Math.log1p(-e()))}}return n.source=t,n}(Bt),JC=function t(e){function n(r,i){return r=r==null?0:+r,i=i==null?1:+i,function(){return r+i*Math.tan(Math.PI*e())}}return n.source=t,n}(Bt),t9=function t(e){function n(r,i){return r=r==null?0:+r,i=i==null?1:+i,function(){var o=e();return r+i*Math.log(o/(1-o))}}return n.source=t,n}(Bt),e9=function t(e){var n=th.source(e),r=nb.source(e);function i(o){return function(){for(var a=0,s=o;s>16;){var u=Math.floor(.875*s),l=n(u)();if(l>s)return a+r(u-1,s/l)();a+=u,s-=l}for(var c=-Math.log1p(-e()),f=0;c<=s;++f)c-=Math.log1p(-e());return a+f}}return i.source=t,i}(Bt),n9=1664525,r9=1013904223,rb=1/4294967296;function i9(t=Math.random()){let e=(0<=t&&t<1?t/rb:Math.abs(t))|0;return()=>(e=n9*e+r9|0,rb*(e>>>0))}function be(t,e){switch(arguments.length){case 0:break;case 1:this.range(t);break;default:this.range(e).domain(t);break}return this}function on(t,e){switch(arguments.length){case 0:break;case 1:{typeof t=="function"?this.interpolator(t):this.range(t);break}default:{this.domain(t),typeof e=="function"?this.interpolator(e):this.range(e);break}}return this}const eh=Symbol("implicit");function nh(){var t=new Bi,e=[],n=[],r=eh;function i(o){let a=t.get(o);if(a===void 0){if(r!==eh)return r;t.set(o,a=e.push(o)-1)}return n[a%n.length]}return i.domain=function(o){if(!arguments.length)return e.slice();e=[],t=new Bi;for(const a of o)t.has(a)||t.set(a,e.push(a)-1);return i},i.range=function(o){return arguments.length?(n=Array.from(o),i):n.slice()},i.unknown=function(o){return arguments.length?(r=o,i):r},i.copy=function(){return nh(e,n).unknown(r)},be.apply(i,arguments),i}function rh(){var t=nh().unknown(void 0),e=t.domain,n=t.range,r=0,i=1,o,a,s=!1,u=0,l=0,c=.5;delete t.unknown;function f(){var h=e().length,p=i<r,d=p?i:r,g=p?r:i;o=(g-d)/Math.max(1,h-u+l*2),s&&(o=Math.floor(o)),d+=(g-d-o*(h-u))*c,a=o*(1-u),s&&(d=Math.round(d),a=Math.round(a));var m=pn(h).map(function(y){return d+o*y});return n(p?m.reverse():m)}return t.domain=function(h){return arguments.length?(e(h),f()):e()},t.range=function(h){return arguments.length?([r,i]=h,r=+r,i=+i,f()):[r,i]},t.rangeRound=function(h){return[r,i]=h,r=+r,i=+i,s=!0,f()},t.bandwidth=function(){return a},t.step=function(){return o},t.round=function(h){return arguments.length?(s=!!h,f()):s},t.padding=function(h){return arguments.length?(u=Math.min(1,l=+h),f()):u},t.paddingInner=function(h){return arguments.length?(u=Math.min(1,h),f()):u},t.paddingOuter=function(h){return arguments.length?(l=+h,f()):l},t.align=function(h){return arguments.length?(c=Math.max(0,Math.min(1,h)),f()):c},t.copy=function(){return rh(e(),[r,i]).round(s).paddingInner(u).paddingOuter(l).align(c)},be.apply(f(),arguments)}function ib(t){var e=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return ib(e())},t}function ih(){return ib(rh.apply(null,arguments).paddingInner(1))}function o9(t){return function(){return t}}function su(t){return+t}var ob=[0,1];function te(t){return t}function oh(t,e){return(e-=t=+t)?function(n){return(n-t)/e}:o9(isNaN(e)?NaN:.5)}function a9(t,e){var n;return t>e&&(n=t,t=e,e=n),function(r){return Math.max(t,Math.min(e,r))}}function s9(t,e,n){var r=t[0],i=t[1],o=e[0],a=e[1];return i<r?(r=oh(i,r),o=n(a,o)):(r=oh(r,i),o=n(o,a)),function(s){return o(r(s))}}function u9(t,e,n){var r=Math.min(t.length,e.length)-1,i=new Array(r),o=new Array(r),a=-1;for(t[r]<t[0]&&(t=t.slice().reverse(),e=e.slice().reverse());++a<r;)i[a]=oh(t[a],t[a+1]),o[a]=n(e[a],e[a+1]);return function(s){var u=On(t,s,1,r)-1;return o[u](i[u](s))}}function ko(t,e){return e.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp()).unknown(t.unknown())}function uu(){var t=ob,e=ob,n=Ze,r,i,o,a=te,s,u,l;function c(){var h=Math.min(t.length,e.length);return a!==te&&(a=a9(t[0],t[h-1])),s=h>2?u9:s9,u=l=null,f}function f(h){return h==null||isNaN(h=+h)?o:(u||(u=s(t.map(r),e,n)))(r(a(h)))}return f.invert=function(h){return a(i((l||(l=s(e,t.map(r),ge)))(h)))},f.domain=function(h){return arguments.length?(t=Array.from(h,su),c()):t.slice()},f.range=function(h){return arguments.length?(e=Array.from(h),c()):e.slice()},f.rangeRound=function(h){return e=Array.from(h),n=Ka,c()},f.clamp=function(h){return arguments.length?(a=h?!0:te,c()):a!==te},f.interpolate=function(h){return arguments.length?(n=h,c()):n},f.unknown=function(h){return arguments.length?(o=h,f):o},function(h,p){return r=h,i=p,c()}}function ah(){return uu()(te,te)}function ab(t,e,n,r){var i=Ma(t,e,n),o;switch(r=ti(r??",f"),r.type){case"s":{var a=Math.max(Math.abs(t),Math.abs(e));return r.precision==null&&!isNaN(o=y1(i,a))&&(r.precision=o),Kc(r,a)}case"":case"e":case"g":case"p":case"r":{r.precision==null&&!isNaN(o=b1(i,Math.max(Math.abs(t),Math.abs(e))))&&(r.precision=o-(r.type==="e"));break}case"f":case"%":{r.precision==null&&!isNaN(o=m1(i))&&(r.precision=o-(r.type==="%")*2);break}}return uo(r)}function vn(t){var e=t.domain;return t.ticks=function(n){var r=e();return zn(r[0],r[r.length-1],n??10)},t.tickFormat=function(n,r){var i=e();return ab(i[0],i[i.length-1],n??10,r)},t.nice=function(n){n==null&&(n=10);var r=e(),i=0,o=r.length-1,a=r[i],s=r[o],u,l,c=10;for(s<a&&(l=a,a=s,s=l,l=i,i=o,o=l);c-- >0;){if(l=Yn(a,s,n),l===u)return r[i]=a,r[o]=s,e(r);if(l>0)a=Math.floor(a/l)*l,s=Math.ceil(s/l)*l;else if(l<0)a=Math.ceil(a*l)/l,s=Math.floor(s*l)/l;else break;u=l}return t},t}function Ro(){var t=ah();return t.copy=function(){return ko(t,Ro())},be.apply(t,arguments),vn(t)}function sb(t){var e;function n(r){return r==null||isNaN(r=+r)?e:r}return n.invert=n,n.domain=n.range=function(r){return arguments.length?(t=Array.from(r,su),n):t.slice()},n.unknown=function(r){return arguments.length?(e=r,n):e},n.copy=function(){return sb(t).unknown(e)},t=arguments.length?Array.from(t,su):[0,1],vn(n)}function ub(t,e){t=t.slice();var n=0,r=t.length-1,i=t[n],o=t[r],a;return o<i&&(a=n,n=r,r=a,a=i,i=o,o=a),t[n]=e.floor(i),t[r]=e.ceil(o),t}function lb(t){return Math.log(t)}function cb(t){return Math.exp(t)}function l9(t){return-Math.log(-t)}function c9(t){return-Math.exp(-t)}function f9(t){return isFinite(t)?+("1e"+t):t<0?0:t}function h9(t){return t===10?f9:t===Math.E?Math.exp:e=>Math.pow(t,e)}function p9(t){return t===Math.E?Math.log:t===10&&Math.log10||t===2&&Math.log2||(t=Math.log(t),e=>Math.log(e)/t)}function fb(t){return(e,n)=>-t(-e,n)}function sh(t){const e=t(lb,cb),n=e.domain;let r=10,i,o;function a(){return i=p9(r),o=h9(r),n()[0]<0?(i=fb(i),o=fb(o),t(l9,c9)):t(lb,cb),e}return e.base=function(s){return arguments.length?(r=+s,a()):r},e.domain=function(s){return arguments.length?(n(s),a()):n()},e.ticks=s=>{const u=n();let l=u[0],c=u[u.length-1];const f=c<l;f&&([l,c]=[c,l]);let h=i(l),p=i(c),d,g;const m=s==null?10:+s;let y=[];if(!(r%1)&&p-h<m){if(h=Math.floor(h),p=Math.ceil(p),l>0){for(;h<=p;++h)for(d=1;d<r;++d)if(g=h<0?d/o(-h):d*o(h),!(g<l)){if(g>c)break;y.push(g)}}else for(;h<=p;++h)for(d=r-1;d>=1;--d)if(g=h>0?d/o(-h):d*o(h),!(g<l)){if(g>c)break;y.push(g)}y.length*2<m&&(y=zn(l,c,m))}else y=zn(h,p,Math.min(p-h,m)).map(o);return f?y.reverse():y},e.tickFormat=(s,u)=>{if(s==null&&(s=10),u==null&&(u=r===10?"s":","),typeof u!="function"&&(!(r%1)&&(u=ti(u)).precision==null&&(u.trim=!0),u=uo(u)),s===1/0)return u;const l=Math.max(1,r*s/e.ticks().length);return c=>{let f=c/o(Math.round(i(c)));return f*r<r-.5&&(f*=r),f<=l?u(c):""}},e.nice=()=>n(ub(n(),{floor:s=>o(Math.floor(i(s))),ceil:s=>o(Math.ceil(i(s)))})),e}function hb(){const t=sh(uu()).domain([1,10]);return t.copy=()=>ko(t,hb()).base(t.base()),be.apply(t,arguments),t}function pb(t){return function(e){return Math.sign(e)*Math.log1p(Math.abs(e/t))}}function db(t){return function(e){return Math.sign(e)*Math.expm1(Math.abs(e))*t}}function uh(t){var e=1,n=t(pb(e),db(e));return n.constant=function(r){return arguments.length?t(pb(e=+r),db(e)):e},vn(n)}function gb(){var t=uh(uu());return t.copy=function(){return ko(t,gb()).constant(t.constant())},be.apply(t,arguments)}function mb(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}function d9(t){return t<0?-Math.sqrt(-t):Math.sqrt(t)}function g9(t){return t<0?-t*t:t*t}function lh(t){var e=t(te,te),n=1;function r(){return n===1?t(te,te):n===.5?t(d9,g9):t(mb(n),mb(1/n))}return e.exponent=function(i){return arguments.length?(n=+i,r()):n},vn(e)}function li(){var t=lh(uu());return t.copy=function(){return ko(t,li()).exponent(t.exponent())},be.apply(t,arguments),t}function m9(){return li.apply(null,arguments).exponent(.5)}function yb(t){return Math.sign(t)*t*t}function y9(t){return Math.sign(t)*Math.sqrt(Math.abs(t))}function bb(){var t=ah(),e=[0,1],n=!1,r;function i(o){var a=y9(t(o));return isNaN(a)?r:n?Math.round(a):a}return i.invert=function(o){return t.invert(yb(o))},i.domain=function(o){return arguments.length?(t.domain(o),i):t.domain()},i.range=function(o){return arguments.length?(t.range((e=Array.from(o,su)).map(yb)),i):e.slice()},i.rangeRound=function(o){return i.range(o).round(!0)},i.round=function(o){return arguments.length?(n=!!o,i):n},i.clamp=function(o){return arguments.length?(t.clamp(o),i):t.clamp()},i.unknown=function(o){return arguments.length?(r=o,i):r},i.copy=function(){return bb(t.domain(),e).round(n).clamp(t.clamp()).unknown(r)},be.apply(i,arguments),vn(i)}function xb(){var t=[],e=[],n=[],r;function i(){var a=0,s=Math.max(1,e.length);for(n=new Array(s-1);++a<s;)n[a-1]=Zg(t,a/s);return o}function o(a){return a==null||isNaN(a=+a)?r:e[On(n,a)]}return o.invertExtent=function(a){var s=e.indexOf(a);return s<0?[NaN,NaN]:[s>0?n[s-1]:t[0],s<n.length?n[s]:t[t.length-1]]},o.domain=function(a){if(!arguments.length)return t.slice();t=[];for(let s of a)s!=null&&!isNaN(s=+s)&&t.push(s);return t.sort(_t),i()},o.range=function(a){return arguments.length?(e=Array.from(a),i()):e.slice()},o.unknown=function(a){return arguments.length?(r=a,o):r},o.quantiles=function(){return n.slice()},o.copy=function(){return xb().domain(t).range(e).unknown(r)},be.apply(o,arguments)}function vb(){var t=0,e=1,n=1,r=[.5],i=[0,1],o;function a(u){return u!=null&&u<=u?i[On(r,u,0,n)]:o}function s(){var u=-1;for(r=new Array(n);++u<n;)r[u]=((u+1)*e-(u-n)*t)/(n+1);return a}return a.domain=function(u){return arguments.length?([t,e]=u,t=+t,e=+e,s()):[t,e]},a.range=function(u){return arguments.length?(n=(i=Array.from(u)).length-1,s()):i.slice()},a.invertExtent=function(u){var l=i.indexOf(u);return l<0?[NaN,NaN]:l<1?[t,r[0]]:l>=n?[r[n-1],e]:[r[l-1],r[l]]},a.unknown=function(u){return arguments.length&&(o=u),a},a.thresholds=function(){return r.slice()},a.copy=function(){return vb().domain([t,e]).range(i).unknown(o)},be.apply(vn(a),arguments)}function _b(){var t=[.5],e=[0,1],n,r=1;function i(o){return o!=null&&o<=o?e[On(t,o,0,r)]:n}return i.domain=function(o){return arguments.length?(t=Array.from(o),r=Math.min(t.length,e.length-1),i):t.slice()},i.range=function(o){return arguments.length?(e=Array.from(o),r=Math.min(t.length,e.length-1),i):e.slice()},i.invertExtent=function(o){var a=e.indexOf(o);return[t[a-1],t[a]]},i.unknown=function(o){return arguments.length?(n=o,i):n},i.copy=function(){return _b().domain(t).range(e).unknown(n)},be.apply(i,arguments)}const ch=new Date,fh=new Date;function Mt(t,e,n,r){function i(o){return t(o=arguments.length===0?new Date:new Date(+o)),o}return i.floor=o=>(t(o=new Date(+o)),o),i.ceil=o=>(t(o=new Date(o-1)),e(o,1),t(o),o),i.round=o=>{const a=i(o),s=i.ceil(o);return o-a<s-o?a:s},i.offset=(o,a)=>(e(o=new Date(+o),a==null?1:Math.floor(a)),o),i.range=(o,a,s)=>{const u=[];if(o=i.ceil(o),s=s==null?1:Math.floor(s),!(o<a)||!(s>0))return u;let l;do u.push(l=new Date(+o)),e(o,s),t(o);while(l<o&&o<a);return u},i.filter=o=>Mt(a=>{if(a>=a)for(;t(a),!o(a);)a.setTime(a-1)},(a,s)=>{if(a>=a)if(s<0)for(;++s<=0;)for(;e(a,-1),!o(a););else for(;--s>=0;)for(;e(a,1),!o(a););}),n&&(i.count=(o,a)=>(ch.setTime(+o),fh.setTime(+a),t(ch),t(fh),Math.floor(n(ch,fh))),i.every=o=>(o=Math.floor(o),!isFinite(o)||!(o>0)?null:o>1?i.filter(r?a=>r(a)%o===0:a=>i.count(0,a)%o===0):i)),i}const ci=Mt(()=>{},(t,e)=>{t.setTime(+t+e)},(t,e)=>e-t);ci.every=t=>(t=Math.floor(t),!isFinite(t)||!(t>0)?null:t>1?Mt(e=>{e.setTime(Math.floor(e/t)*t)},(e,n)=>{e.setTime(+e+n*t)},(e,n)=>(n-e)/t):ci);const wb=ci.range,an=1e3,xe=an*60,sn=xe*60,un=sn*24,hh=un*7,$b=un*30,ph=un*365,ln=Mt(t=>{t.setTime(t-t.getMilliseconds())},(t,e)=>{t.setTime(+t+e*an)},(t,e)=>(e-t)/an,t=>t.getUTCSeconds()),Sb=ln.range,lu=Mt(t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*an)},(t,e)=>{t.setTime(+t+e*xe)},(t,e)=>(e-t)/xe,t=>t.getMinutes()),b9=lu.range,cu=Mt(t=>{t.setUTCSeconds(0,0)},(t,e)=>{t.setTime(+t+e*xe)},(t,e)=>(e-t)/xe,t=>t.getUTCMinutes()),x9=cu.range,fu=Mt(t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*an-t.getMinutes()*xe)},(t,e)=>{t.setTime(+t+e*sn)},(t,e)=>(e-t)/sn,t=>t.getHours()),v9=fu.range,hu=Mt(t=>{t.setUTCMinutes(0,0,0)},(t,e)=>{t.setTime(+t+e*sn)},(t,e)=>(e-t)/sn,t=>t.getUTCHours()),_9=hu.range,fi=Mt(t=>t.setHours(0,0,0,0),(t,e)=>t.setDate(t.getDate()+e),(t,e)=>(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*xe)/un,t=>t.getDate()-1),w9=fi.range,Eo=Mt(t=>{t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCDate(t.getUTCDate()+e)},(t,e)=>(e-t)/un,t=>t.getUTCDate()-1),$9=Eo.range,dh=Mt(t=>{t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCDate(t.getUTCDate()+e)},(t,e)=>(e-t)/un,t=>Math.floor(t/un)),S9=dh.range;function lr(t){return Mt(e=>{e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)},(e,n)=>{e.setDate(e.getDate()+n*7)},(e,n)=>(n-e-(n.getTimezoneOffset()-e.getTimezoneOffset())*xe)/hh)}const hi=lr(0),Io=lr(1),Ab=lr(2),Tb=lr(3),cr=lr(4),Pb=lr(5),Mb=lr(6),Db=hi.range,A9=Io.range,T9=Ab.range,P9=Tb.range,M9=cr.range,D9=Pb.range,C9=Mb.range;function fr(t){return Mt(e=>{e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)},(e,n)=>{e.setUTCDate(e.getUTCDate()+n*7)},(e,n)=>(n-e)/hh)}const pi=fr(0),No=fr(1),Cb=fr(2),Lb=fr(3),hr=fr(4),kb=fr(5),Rb=fr(6),Eb=pi.range,L9=No.range,k9=Cb.range,R9=Lb.range,E9=hr.range,I9=kb.range,N9=Rb.range,pu=Mt(t=>{t.setDate(1),t.setHours(0,0,0,0)},(t,e)=>{t.setMonth(t.getMonth()+e)},(t,e)=>e.getMonth()-t.getMonth()+(e.getFullYear()-t.getFullYear())*12,t=>t.getMonth()),B9=pu.range,du=Mt(t=>{t.setUTCDate(1),t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCMonth(t.getUTCMonth()+e)},(t,e)=>e.getUTCMonth()-t.getUTCMonth()+(e.getUTCFullYear()-t.getUTCFullYear())*12,t=>t.getUTCMonth()),F9=du.range,He=Mt(t=>{t.setMonth(0,1),t.setHours(0,0,0,0)},(t,e)=>{t.setFullYear(t.getFullYear()+e)},(t,e)=>e.getFullYear()-t.getFullYear(),t=>t.getFullYear());He.every=t=>!isFinite(t=Math.floor(t))||!(t>0)?null:Mt(e=>{e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)},(e,n)=>{e.setFullYear(e.getFullYear()+n*t)});const O9=He.range,Xe=Mt(t=>{t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCFullYear(t.getUTCFullYear()+e)},(t,e)=>e.getUTCFullYear()-t.getUTCFullYear(),t=>t.getUTCFullYear());Xe.every=t=>!isFinite(t=Math.floor(t))||!(t>0)?null:Mt(e=>{e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},(e,n)=>{e.setUTCFullYear(e.getUTCFullYear()+n*t)});const G9=Xe.range;function Ib(t,e,n,r,i,o){const a=[[ln,1,an],[ln,5,5*an],[ln,15,15*an],[ln,30,30*an],[o,1,xe],[o,5,5*xe],[o,15,15*xe],[o,30,30*xe],[i,1,sn],[i,3,3*sn],[i,6,6*sn],[i,12,12*sn],[r,1,un],[r,2,2*un],[n,1,hh],[e,1,$b],[e,3,3*$b],[t,1,ph]];function s(l,c,f){const h=c<l;h&&([l,c]=[c,l]);const p=f&&typeof f.range=="function"?f:u(l,c,f),d=p?p.range(l,+c+1):[];return h?d.reverse():d}function u(l,c,f){const h=Math.abs(c-l)/f,p=Sa(([,,m])=>m).right(a,h);if(p===a.length)return t.every(Ma(l/ph,c/ph,f));if(p===0)return ci.every(Math.max(Ma(l,c,f),1));const[d,g]=a[h/a[p-1][2]<a[p][2]/h?p-1:p];return d.every(g)}return[s,u]}const[Nb,Bb]=Ib(Xe,du,pi,dh,hu,cu),[Fb,Ob]=Ib(He,pu,hi,fi,fu,lu);function gh(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function mh(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Bo(t,e,n){return{y:t,m:e,d:n,H:0,M:0,S:0,L:0}}function Gb(t){var e=t.dateTime,n=t.date,r=t.time,i=t.periods,o=t.days,a=t.shortDays,s=t.months,u=t.shortMonths,l=Fo(i),c=Oo(i),f=Fo(o),h=Oo(o),p=Fo(a),d=Oo(a),g=Fo(s),m=Oo(s),y=Fo(u),b=Oo(u),v={a:G,A:O,b:E,B:k,c:null,d:Xb,e:Xb,f:lL,g:xL,G:_L,H:aL,I:sL,j:uL,L:jb,m:cL,M:fL,p:C,q:F,Q:Jb,s:tx,S:hL,u:pL,U:dL,V:gL,w:mL,W:yL,x:null,X:null,y:bL,Y:vL,Z:wL,"%":Qb},x={a:X,A:Q,b:z,B:Z,c:null,d:qb,e:qb,f:TL,g:NL,G:FL,H:$L,I:SL,j:AL,L:Zb,m:PL,M:ML,p:Y,q,Q:Jb,s:tx,S:DL,u:CL,U:LL,V:kL,w:RL,W:EL,x:null,X:null,y:IL,Y:BL,Z:OL,"%":Qb},S={a:P,A:_,b:N,B:D,c:A,d:Wb,e:Wb,f:nL,g:Ub,G:Yb,H:Hb,I:Hb,j:Q9,L:eL,m:K9,M:J9,p:w,q:Z9,Q:iL,s:oL,S:tL,u:H9,U:X9,V:j9,w:W9,W:V9,x:L,X:M,y:Ub,Y:Yb,Z:q9,"%":rL};v.x=$(n,v),v.X=$(r,v),v.c=$(e,v),x.x=$(n,x),x.X=$(r,x),x.c=$(e,x);function $(j,rt){return function(ut){var H=[],mt=-1,ht=0,Ut=j.length,ee,st,Pt;for(ut instanceof Date||(ut=new Date(+ut));++mt<Ut;)j.charCodeAt(mt)===37&&(H.push(j.slice(ht,mt)),(st=zb[ee=j.charAt(++mt)])!=null?ee=j.charAt(++mt):st=ee==="e"?" ":"0",(Pt=rt[ee])&&(ee=Pt(ut,st)),H.push(ee),ht=mt+1);return H.push(j.slice(ht,mt)),H.join("")}}function R(j,rt){return function(ut){var H=Bo(1900,void 0,1),mt=T(H,j,ut+="",0),ht,Ut;if(mt!=ut.length)return null;if("Q"in H)return new Date(H.Q);if("s"in H)return new Date(H.s*1e3+("L"in H?H.L:0));if(rt&&!("Z"in H)&&(H.Z=0),"p"in H&&(H.H=H.H%12+H.p*12),H.m===void 0&&(H.m="q"in H?H.q:0),"V"in H){if(H.V<1||H.V>53)return null;"w"in H||(H.w=1),"Z"in H?(ht=mh(Bo(H.y,0,1)),Ut=ht.getUTCDay(),ht=Ut>4||Ut===0?No.ceil(ht):No(ht),ht=Eo.offset(ht,(H.V-1)*7),H.y=ht.getUTCFullYear(),H.m=ht.getUTCMonth(),H.d=ht.getUTCDate()+(H.w+6)%7):(ht=gh(Bo(H.y,0,1)),Ut=ht.getDay(),ht=Ut>4||Ut===0?Io.ceil(ht):Io(ht),ht=fi.offset(ht,(H.V-1)*7),H.y=ht.getFullYear(),H.m=ht.getMonth(),H.d=ht.getDate()+(H.w+6)%7)}else("W"in H||"U"in H)&&("w"in H||(H.w="u"in H?H.u%7:"W"in H?1:0),Ut="Z"in H?mh(Bo(H.y,0,1)).getUTCDay():gh(Bo(H.y,0,1)).getDay(),H.m=0,H.d="W"in H?(H.w+6)%7+H.W*7-(Ut+5)%7:H.w+H.U*7-(Ut+6)%7);return"Z"in H?(H.H+=H.Z/100|0,H.M+=H.Z%100,mh(H)):gh(H)}}function T(j,rt,ut,H){for(var mt=0,ht=rt.length,Ut=ut.length,ee,st;mt<ht;){if(H>=Ut)return-1;if(ee=rt.charCodeAt(mt++),ee===37){if(ee=rt.charAt(mt++),st=S[ee in zb?rt.charAt(mt++):ee],!st||(H=st(j,ut,H))<0)return-1}else if(ee!=ut.charCodeAt(H++))return-1}return H}function w(j,rt,ut){var H=l.exec(rt.slice(ut));return H?(j.p=c.get(H[0].toLowerCase()),ut+H[0].length):-1}function P(j,rt,ut){var H=p.exec(rt.slice(ut));return H?(j.w=d.get(H[0].toLowerCase()),ut+H[0].length):-1}function _(j,rt,ut){var H=f.exec(rt.slice(ut));return H?(j.w=h.get(H[0].toLowerCase()),ut+H[0].length):-1}function N(j,rt,ut){var H=y.exec(rt.slice(ut));return H?(j.m=b.get(H[0].toLowerCase()),ut+H[0].length):-1}function D(j,rt,ut){var H=g.exec(rt.slice(ut));return H?(j.m=m.get(H[0].toLowerCase()),ut+H[0].length):-1}function A(j,rt,ut){return T(j,e,rt,ut)}function L(j,rt,ut){return T(j,n,rt,ut)}function M(j,rt,ut){return T(j,r,rt,ut)}function G(j){return a[j.getDay()]}function O(j){return o[j.getDay()]}function E(j){return u[j.getMonth()]}function k(j){return s[j.getMonth()]}function C(j){return i[+(j.getHours()>=12)]}function F(j){return 1+~~(j.getMonth()/3)}function X(j){return a[j.getUTCDay()]}function Q(j){return o[j.getUTCDay()]}function z(j){return u[j.getUTCMonth()]}function Z(j){return s[j.getUTCMonth()]}function Y(j){return i[+(j.getUTCHours()>=12)]}function q(j){return 1+~~(j.getUTCMonth()/3)}return{format:function(j){var rt=$(j+="",v);return rt.toString=function(){return j},rt},parse:function(j){var rt=R(j+="",!1);return rt.toString=function(){return j},rt},utcFormat:function(j){var rt=$(j+="",x);return rt.toString=function(){return j},rt},utcParse:function(j){var rt=R(j+="",!0);return rt.toString=function(){return j},rt}}}var zb={"-":"",_:" ",0:"0"},Nt=/^\s*\d+/,z9=/^%/,Y9=/[\\^$*+?|[\]().{}]/g;function gt(t,e,n){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o<n?new Array(n-o+1).join(e)+i:i)}function U9(t){return t.replace(Y9,"\\$&")}function Fo(t){return new RegExp("^(?:"+t.map(U9).join("|")+")","i")}function Oo(t){return new Map(t.map((e,n)=>[e.toLowerCase(),n]))}function W9(t,e,n){var r=Nt.exec(e.slice(n,n+1));return r?(t.w=+r[0],n+r[0].length):-1}function H9(t,e,n){var r=Nt.exec(e.slice(n,n+1));return r?(t.u=+r[0],n+r[0].length):-1}function X9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.U=+r[0],n+r[0].length):-1}function j9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.V=+r[0],n+r[0].length):-1}function V9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.W=+r[0],n+r[0].length):-1}function Yb(t,e,n){var r=Nt.exec(e.slice(n,n+4));return r?(t.y=+r[0],n+r[0].length):-1}function Ub(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),n+r[0].length):-1}function q9(t,e,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(n,n+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function Z9(t,e,n){var r=Nt.exec(e.slice(n,n+1));return r?(t.q=r[0]*3-3,n+r[0].length):-1}function K9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.m=r[0]-1,n+r[0].length):-1}function Wb(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.d=+r[0],n+r[0].length):-1}function Q9(t,e,n){var r=Nt.exec(e.slice(n,n+3));return r?(t.m=0,t.d=+r[0],n+r[0].length):-1}function Hb(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.H=+r[0],n+r[0].length):-1}function J9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.M=+r[0],n+r[0].length):-1}function tL(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.S=+r[0],n+r[0].length):-1}function eL(t,e,n){var r=Nt.exec(e.slice(n,n+3));return r?(t.L=+r[0],n+r[0].length):-1}function nL(t,e,n){var r=Nt.exec(e.slice(n,n+6));return r?(t.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function rL(t,e,n){var r=z9.exec(e.slice(n,n+1));return r?n+r[0].length:-1}function iL(t,e,n){var r=Nt.exec(e.slice(n));return r?(t.Q=+r[0],n+r[0].length):-1}function oL(t,e,n){var r=Nt.exec(e.slice(n));return r?(t.s=+r[0],n+r[0].length):-1}function Xb(t,e){return gt(t.getDate(),e,2)}function aL(t,e){return gt(t.getHours(),e,2)}function sL(t,e){return gt(t.getHours()%12||12,e,2)}function uL(t,e){return gt(1+fi.count(He(t),t),e,3)}function jb(t,e){return gt(t.getMilliseconds(),e,3)}function lL(t,e){return jb(t,e)+"000"}function cL(t,e){return gt(t.getMonth()+1,e,2)}function fL(t,e){return gt(t.getMinutes(),e,2)}function hL(t,e){return gt(t.getSeconds(),e,2)}function pL(t){var e=t.getDay();return e===0?7:e}function dL(t,e){return gt(hi.count(He(t)-1,t),e,2)}function Vb(t){var e=t.getDay();return e>=4||e===0?cr(t):cr.ceil(t)}function gL(t,e){return t=Vb(t),gt(cr.count(He(t),t)+(He(t).getDay()===4),e,2)}function mL(t){return t.getDay()}function yL(t,e){return gt(Io.count(He(t)-1,t),e,2)}function bL(t,e){return gt(t.getFullYear()%100,e,2)}function xL(t,e){return t=Vb(t),gt(t.getFullYear()%100,e,2)}function vL(t,e){return gt(t.getFullYear()%1e4,e,4)}function _L(t,e){var n=t.getDay();return t=n>=4||n===0?cr(t):cr.ceil(t),gt(t.getFullYear()%1e4,e,4)}function wL(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+gt(e/60|0,"0",2)+gt(e%60,"0",2)}function qb(t,e){return gt(t.getUTCDate(),e,2)}function $L(t,e){return gt(t.getUTCHours(),e,2)}function SL(t,e){return gt(t.getUTCHours()%12||12,e,2)}function AL(t,e){return gt(1+Eo.count(Xe(t),t),e,3)}function Zb(t,e){return gt(t.getUTCMilliseconds(),e,3)}function TL(t,e){return Zb(t,e)+"000"}function PL(t,e){return gt(t.getUTCMonth()+1,e,2)}function ML(t,e){return gt(t.getUTCMinutes(),e,2)}function DL(t,e){return gt(t.getUTCSeconds(),e,2)}function CL(t){var e=t.getUTCDay();return e===0?7:e}function LL(t,e){return gt(pi.count(Xe(t)-1,t),e,2)}function Kb(t){var e=t.getUTCDay();return e>=4||e===0?hr(t):hr.ceil(t)}function kL(t,e){return t=Kb(t),gt(hr.count(Xe(t),t)+(Xe(t).getUTCDay()===4),e,2)}function RL(t){return t.getUTCDay()}function EL(t,e){return gt(No.count(Xe(t)-1,t),e,2)}function IL(t,e){return gt(t.getUTCFullYear()%100,e,2)}function NL(t,e){return t=Kb(t),gt(t.getUTCFullYear()%100,e,2)}function BL(t,e){return gt(t.getUTCFullYear()%1e4,e,4)}function FL(t,e){var n=t.getUTCDay();return t=n>=4||n===0?hr(t):hr.ceil(t),gt(t.getUTCFullYear()%1e4,e,4)}function OL(){return"+0000"}function Qb(){return"%"}function Jb(t){return+t}function tx(t){return Math.floor(+t/1e3)}var di,yh,ex,gu,bh;nx({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});function nx(t){return di=Gb(t),yh=di.format,ex=di.parse,gu=di.utcFormat,bh=di.utcParse,di}var rx="%Y-%m-%dT%H:%M:%S.%LZ";function GL(t){return t.toISOString()}var zL=Date.prototype.toISOString?GL:gu(rx);const YL=zL;function UL(t){var e=new Date(t);return isNaN(e)?null:e}var WL=+new Date("2000-01-01T00:00:00.000Z")?UL:bh(rx);const HL=WL;function XL(t){return new Date(t)}function jL(t){return t instanceof Date?+t:+new Date(+t)}function xh(t,e,n,r,i,o,a,s,u,l){var c=ah(),f=c.invert,h=c.domain,p=l(".%L"),d=l(":%S"),g=l("%I:%M"),m=l("%I %p"),y=l("%a %d"),b=l("%b %d"),v=l("%B"),x=l("%Y");function S($){return(u($)<$?p:s($)<$?d:a($)<$?g:o($)<$?m:r($)<$?i($)<$?y:b:n($)<$?v:x)($)}return c.invert=function($){return new Date(f($))},c.domain=function($){return arguments.length?h(Array.from($,jL)):h().map(XL)},c.ticks=function($){var R=h();return t(R[0],R[R.length-1],$??10)},c.tickFormat=function($,R){return R==null?S:l(R)},c.nice=function($){var R=h();return(!$||typeof $.range!="function")&&($=e(R[0],R[R.length-1],$??10)),$?h(ub(R,$)):c},c.copy=function(){return ko(c,xh(t,e,n,r,i,o,a,s,u,l))},c}function VL(){return be.apply(xh(Fb,Ob,He,pu,hi,fi,fu,lu,ln,yh).domain([new Date(2e3,0,1),new Date(2e3,0,2)]),arguments)}function qL(){return be.apply(xh(Nb,Bb,Xe,du,pi,Eo,hu,cu,ln,gu).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)]),arguments)}function mu(){var t=0,e=1,n,r,i,o,a=te,s=!1,u;function l(f){return f==null||isNaN(f=+f)?u:a(i===0?.5:(f=(o(f)-n)*i,s?Math.max(0,Math.min(1,f)):f))}l.domain=function(f){return arguments.length?([t,e]=f,n=o(t=+t),r=o(e=+e),i=n===r?0:1/(r-n),l):[t,e]},l.clamp=function(f){return arguments.length?(s=!!f,l):s},l.interpolator=function(f){return arguments.length?(a=f,l):a};function c(f){return function(h){var p,d;return arguments.length?([p,d]=h,a=f(p,d),l):[a(0),a(1)]}}return l.range=c(Ze),l.rangeRound=c(Ka),l.unknown=function(f){return arguments.length?(u=f,l):u},function(f){return o=f,n=f(t),r=f(e),i=n===r?0:1/(r-n),l}}function _n(t,e){return e.domain(t.domain()).interpolator(t.interpolator()).clamp(t.clamp()).unknown(t.unknown())}function ix(){var t=vn(mu()(te));return t.copy=function(){return _n(t,ix())},on.apply(t,arguments)}function ox(){var t=sh(mu()).domain([1,10]);return t.copy=function(){return _n(t,ox()).base(t.base())},on.apply(t,arguments)}function ax(){var t=uh(mu());return t.copy=function(){return _n(t,ax()).constant(t.constant())},on.apply(t,arguments)}function vh(){var t=lh(mu());return t.copy=function(){return _n(t,vh()).exponent(t.exponent())},on.apply(t,arguments)}function ZL(){return vh.apply(null,arguments).exponent(.5)}function sx(){var t=[],e=te;function n(r){if(r!=null&&!isNaN(r=+r))return e((On(t,r,1)-1)/(t.length-1))}return n.domain=function(r){if(!arguments.length)return t.slice();t=[];for(let i of r)i!=null&&!isNaN(i=+i)&&t.push(i);return t.sort(_t),n},n.interpolator=function(r){return arguments.length?(e=r,n):e},n.range=function(){return t.map((r,i)=>e(i/(t.length-1)))},n.quantiles=function(r){return Array.from({length:r+1},(i,o)=>Gi(t,o/r))},n.copy=function(){return sx(e).domain(t)},on.apply(n,arguments)}function yu(){var t=0,e=.5,n=1,r=1,i,o,a,s,u,l=te,c,f=!1,h;function p(g){return isNaN(g=+g)?h:(g=.5+((g=+c(g))-o)*(r*g<r*o?s:u),l(f?Math.max(0,Math.min(1,g)):g))}p.domain=function(g){return arguments.length?([t,e,n]=g,i=c(t=+t),o=c(e=+e),a=c(n=+n),s=i===o?0:.5/(o-i),u=o===a?0:.5/(a-o),r=o<i?-1:1,p):[t,e,n]},p.clamp=function(g){return arguments.length?(f=!!g,p):f},p.interpolator=function(g){return arguments.length?(l=g,p):l};function d(g){return function(m){var y,b,v;return arguments.length?([y,b,v]=m,l=um(g,[y,b,v]),p):[l(0),l(.5),l(1)]}}return p.range=d(Ze),p.rangeRound=d(Ka),p.unknown=function(g){return arguments.length?(h=g,p):h},function(g){return c=g,i=g(t),o=g(e),a=g(n),s=i===o?0:.5/(o-i),u=o===a?0:.5/(a-o),r=o<i?-1:1,p}}function ux(){var t=vn(yu()(te));return t.copy=function(){return _n(t,ux())},on.apply(t,arguments)}function lx(){var t=sh(yu()).domain([.1,1,10]);return t.copy=function(){return _n(t,lx()).base(t.base())},on.apply(t,arguments)}function cx(){var t=uh(yu());return t.copy=function(){return _n(t,cx()).constant(t.constant())},on.apply(t,arguments)}function _h(){var t=lh(yu());return t.copy=function(){return _n(t,_h()).exponent(t.exponent())},on.apply(t,arguments)}function KL(){return _h.apply(null,arguments).exponent(.5)}function ct(t){for(var e=t.length/6|0,n=new Array(e),r=0;r<e;)n[r]="#"+t.slice(r*6,++r*6);return n}const QL=ct("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),JL=ct("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),tk=ct("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),ek=ct("4269d0efb118ff725c6cc5b03ca951ff8ab7a463f297bbf59c6b4e9498a0"),nk=ct("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),rk=ct("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),ik=ct("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),ok=ct("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),ak=ct("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),sk=ct("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f"),uk=ct("4e79a7f28e2ce1575976b7b259a14fedc949af7aa1ff9da79c755fbab0ab"),xt=t=>j0(t[t.length-1]);var fx=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(ct);const lk=xt(fx);var hx=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(ct);const ck=xt(hx);var px=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(ct);const fk=xt(px);var dx=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(ct);const hk=xt(dx);var gx=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(ct);const pk=xt(gx);var mx=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(ct);const dk=xt(mx);var yx=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(ct);const gk=xt(yx);var bx=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(ct);const mk=xt(bx);var xx=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(ct);const yk=xt(xx);var vx=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(ct);const bk=xt(vx);var _x=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(ct);const xk=xt(_x);var wx=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(ct);const vk=xt(wx);var $x=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(ct);const _k=xt($x);var Sx=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(ct);const wk=xt(Sx);var Ax=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(ct);const $k=xt(Ax);var Tx=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(ct);const Sk=xt(Tx);var Px=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(ct);const Ak=xt(Px);var Mx=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(ct);const Tk=xt(Mx);var Dx=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(ct);const Pk=xt(Dx);var Cx=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(ct);const Mk=xt(Cx);var Lx=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(ct);const Dk=xt(Lx);var kx=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(ct);const Ck=xt(kx);var Rx=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(ct);const Lk=xt(Rx);var Ex=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(ct);const kk=xt(Ex);var Ix=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(ct);const Rk=xt(Ix);var Nx=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(ct);const Ek=xt(Nx);var Bx=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(ct);const Ik=xt(Bx);function Nk(t){return t=Math.max(0,Math.min(1,t)),"rgb("+Math.max(0,Math.min(255,Math.round(-4.54-t*(35.34-t*(2381.73-t*(6402.7-t*(7024.72-t*2710.57)))))))+", "+Math.max(0,Math.min(255,Math.round(32.49+t*(170.73+t*(52.82-t*(131.46-t*(176.58-t*67.37)))))))+", "+Math.max(0,Math.min(255,Math.round(81.24+t*(442.36-t*(2482.43-t*(6167.24-t*(6614.94-t*2475.67)))))))+")"}const Bk=Ja(Me(300,.5,0),Me(-240,.5,1));var Fk=Ja(Me(-100,.75,.35),Me(80,1.5,.8)),Ok=Ja(Me(260,.75,.35),Me(80,1.5,.8)),bu=Me();function Gk(t){(t<0||t>1)&&(t-=Math.floor(t));var e=Math.abs(t-.5);return bu.h=360*t-100,bu.s=1.5-1.5*e,bu.l=.8-.9*e,bu+""}var xu=Yr(),zk=Math.PI/3,Yk=Math.PI*2/3;function Uk(t){var e;return t=(.5-t)*Math.PI,xu.r=255*(e=Math.sin(t))*e,xu.g=255*(e=Math.sin(t+zk))*e,xu.b=255*(e=Math.sin(t+Yk))*e,xu+""}function Wk(t){return t=Math.max(0,Math.min(1,t)),"rgb("+Math.max(0,Math.min(255,Math.round(34.61+t*(1172.33-t*(10793.56-t*(33300.12-t*(38394.49-t*14825.05)))))))+", "+Math.max(0,Math.min(255,Math.round(23.31+t*(557.33+t*(1225.33-t*(3574.96-t*(1073.77+t*707.56)))))))+", "+Math.max(0,Math.min(255,Math.round(27.2+t*(3211.1-t*(15327.97-t*(27814-t*(22569.18-t*6838.66)))))))+")"}function vu(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}const Hk=vu(ct("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725"));var Xk=vu(ct("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),jk=vu(ct("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),Vk=vu(ct("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"));function lt(t){return function(){return t}}const Fx=Math.abs,zt=Math.atan2,cn=Math.cos,qk=Math.max,gi=Math.min,oe=Math.sin,vt=Math.sqrt,Yt=1e-12,wn=Math.PI,_u=wn/2,$n=2*wn;function Zk(t){return t>1?0:t<-1?wn:Math.acos(t)}function Ox(t){return t>=1?_u:t<=-1?-_u:Math.asin(t)}function Go(t){let e=3;return t.digits=function(n){if(!arguments.length)return e;if(n==null)e=null;else{const r=Math.floor(n);if(!(r>=0))throw new RangeError(`invalid digits: ${n}`);e=r}return t},()=>new io(e)}function Kk(t){return t.innerRadius}function Qk(t){return t.outerRadius}function Jk(t){return t.startAngle}function tR(t){return t.endAngle}function eR(t){return t&&t.padAngle}function nR(t,e,n,r,i,o,a,s){var u=n-t,l=r-e,c=a-i,f=s-o,h=f*u-c*l;if(!(h*h<Yt))return h=(c*(e-o)-f*(t-i))/h,[t+h*u,e+h*l]}function wu(t,e,n,r,i,o,a){var s=t-n,u=e-r,l=(a?o:-o)/vt(s*s+u*u),c=l*u,f=-l*s,h=t+c,p=e+f,d=n+c,g=r+f,m=(h+d)/2,y=(p+g)/2,b=d-h,v=g-p,x=b*b+v*v,S=i-o,$=h*g-d*p,R=(v<0?-1:1)*vt(qk(0,S*S*x-$*$)),T=($*v-b*R)/x,w=(-$*b-v*R)/x,P=($*v+b*R)/x,_=(-$*b+v*R)/x,N=T-m,D=w-y,A=P-m,L=_-y;return N*N+D*D>A*A+L*L&&(T=P,w=_),{cx:T,cy:w,x01:-c,y01:-f,x11:T*(i/S-1),y11:w*(i/S-1)}}function $u(){var t=Kk,e=Qk,n=lt(0),r=null,i=Jk,o=tR,a=eR,s=null,u=Go(l);function l(){var c,f,h=+t.apply(this,arguments),p=+e.apply(this,arguments),d=i.apply(this,arguments)-_u,g=o.apply(this,arguments)-_u,m=Fx(g-d),y=g>d;if(s||(s=c=u()),p<h&&(f=p,p=h,h=f),!(p>Yt))s.moveTo(0,0);else if(m>$n-Yt)s.moveTo(p*cn(d),p*oe(d)),s.arc(0,0,p,d,g,!y),h>Yt&&(s.moveTo(h*cn(g),h*oe(g)),s.arc(0,0,h,g,d,y));else{var b=d,v=g,x=d,S=g,$=m,R=m,T=a.apply(this,arguments)/2,w=T>Yt&&(r?+r.apply(this,arguments):vt(h*h+p*p)),P=gi(Fx(p-h)/2,+n.apply(this,arguments)),_=P,N=P,D,A;if(w>Yt){var L=Ox(w/h*oe(T)),M=Ox(w/p*oe(T));($-=L*2)>Yt?(L*=y?1:-1,x+=L,S-=L):($=0,x=S=(d+g)/2),(R-=M*2)>Yt?(M*=y?1:-1,b+=M,v-=M):(R=0,b=v=(d+g)/2)}var G=p*cn(b),O=p*oe(b),E=h*cn(S),k=h*oe(S);if(P>Yt){var C=p*cn(v),F=p*oe(v),X=h*cn(x),Q=h*oe(x),z;if(m<wn)if(z=nR(G,O,X,Q,C,F,E,k)){var Z=G-z[0],Y=O-z[1],q=C-z[0],j=F-z[1],rt=1/oe(Zk((Z*q+Y*j)/(vt(Z*Z+Y*Y)*vt(q*q+j*j)))/2),ut=vt(z[0]*z[0]+z[1]*z[1]);_=gi(P,(h-ut)/(rt-1)),N=gi(P,(p-ut)/(rt+1))}else _=N=0}R>Yt?N>Yt?(D=wu(X,Q,G,O,p,N,y),A=wu(C,F,E,k,p,N,y),s.moveTo(D.cx+D.x01,D.cy+D.y01),N<P?s.arc(D.cx,D.cy,N,zt(D.y01,D.x01),zt(A.y01,A.x01),!y):(s.arc(D.cx,D.cy,N,zt(D.y01,D.x01),zt(D.y11,D.x11),!y),s.arc(0,0,p,zt(D.cy+D.y11,D.cx+D.x11),zt(A.cy+A.y11,A.cx+A.x11),!y),s.arc(A.cx,A.cy,N,zt(A.y11,A.x11),zt(A.y01,A.x01),!y))):(s.moveTo(G,O),s.arc(0,0,p,b,v,!y)):s.moveTo(G,O),!(h>Yt)||!($>Yt)?s.lineTo(E,k):_>Yt?(D=wu(E,k,C,F,h,-_,y),A=wu(G,O,X,Q,h,-_,y),s.lineTo(D.cx+D.x01,D.cy+D.y01),_<P?s.arc(D.cx,D.cy,_,zt(D.y01,D.x01),zt(A.y01,A.x01),!y):(s.arc(D.cx,D.cy,_,zt(D.y01,D.x01),zt(D.y11,D.x11),!y),s.arc(0,0,h,zt(D.cy+D.y11,D.cx+D.x11),zt(A.cy+A.y11,A.cx+A.x11),y),s.arc(A.cx,A.cy,_,zt(A.y11,A.x11),zt(A.y01,A.x01),!y))):s.arc(0,0,h,S,x,y)}if(s.closePath(),c)return s=null,c+""||null}return l.centroid=function(){var c=(+t.apply(this,arguments)+ +e.apply(this,arguments))/2,f=(+i.apply(this,arguments)+ +o.apply(this,arguments))/2-wn/2;return[cn(f)*c,oe(f)*c]},l.innerRadius=function(c){return arguments.length?(t=typeof c=="function"?c:lt(+c),l):t},l.outerRadius=function(c){return arguments.length?(e=typeof c=="function"?c:lt(+c),l):e},l.cornerRadius=function(c){return arguments.length?(n=typeof c=="function"?c:lt(+c),l):n},l.padRadius=function(c){return arguments.length?(r=c==null?null:typeof c=="function"?c:lt(+c),l):r},l.startAngle=function(c){return arguments.length?(i=typeof c=="function"?c:lt(+c),l):i},l.endAngle=function(c){return arguments.length?(o=typeof c=="function"?c:lt(+c),l):o},l.padAngle=function(c){return arguments.length?(a=typeof c=="function"?c:lt(+c),l):a},l.context=function(c){return arguments.length?(s=c??null,l):s},l}var rR=Array.prototype.slice;function Su(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function Gx(t){this._context=t}Gx.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e);break}}};function Au(t){return new Gx(t)}function wh(t){return t[0]}function $h(t){return t[1]}function Tu(t,e){var n=lt(!0),r=null,i=Au,o=null,a=Go(s);t=typeof t=="function"?t:t===void 0?wh:lt(t),e=typeof e=="function"?e:e===void 0?$h:lt(e);function s(u){var l,c=(u=Su(u)).length,f,h=!1,p;for(r==null&&(o=i(p=a())),l=0;l<=c;++l)!(l<c&&n(f=u[l],l,u))===h&&((h=!h)?o.lineStart():o.lineEnd()),h&&o.point(+t(f,l,u),+e(f,l,u));if(p)return o=null,p+""||null}return s.x=function(u){return arguments.length?(t=typeof u=="function"?u:lt(+u),s):t},s.y=function(u){return arguments.length?(e=typeof u=="function"?u:lt(+u),s):e},s.defined=function(u){return arguments.length?(n=typeof u=="function"?u:lt(!!u),s):n},s.curve=function(u){return arguments.length?(i=u,r!=null&&(o=i(r)),s):i},s.context=function(u){return arguments.length?(u==null?r=o=null:o=i(r=u),s):r},s}function Sh(t,e,n){var r=null,i=lt(!0),o=null,a=Au,s=null,u=Go(l);t=typeof t=="function"?t:t===void 0?wh:lt(+t),e=typeof e=="function"?e:lt(e===void 0?0:+e),n=typeof n=="function"?n:n===void 0?$h:lt(+n);function l(f){var h,p,d,g=(f=Su(f)).length,m,y=!1,b,v=new Array(g),x=new Array(g);for(o==null&&(s=a(b=u())),h=0;h<=g;++h){if(!(h<g&&i(m=f[h],h,f))===y)if(y=!y)p=h,s.areaStart(),s.lineStart();else{for(s.lineEnd(),s.lineStart(),d=h-1;d>=p;--d)s.point(v[d],x[d]);s.lineEnd(),s.areaEnd()}y&&(v[h]=+t(m,h,f),x[h]=+e(m,h,f),s.point(r?+r(m,h,f):v[h],n?+n(m,h,f):x[h]))}if(b)return s=null,b+""||null}function c(){return Tu().defined(i).curve(a).context(o)}return l.x=function(f){return arguments.length?(t=typeof f=="function"?f:lt(+f),r=null,l):t},l.x0=function(f){return arguments.length?(t=typeof f=="function"?f:lt(+f),l):t},l.x1=function(f){return arguments.length?(r=f==null?null:typeof f=="function"?f:lt(+f),l):r},l.y=function(f){return arguments.length?(e=typeof f=="function"?f:lt(+f),n=null,l):e},l.y0=function(f){return arguments.length?(e=typeof f=="function"?f:lt(+f),l):e},l.y1=function(f){return arguments.length?(n=f==null?null:typeof f=="function"?f:lt(+f),l):n},l.lineX0=l.lineY0=function(){return c().x(t).y(e)},l.lineY1=function(){return c().x(t).y(n)},l.lineX1=function(){return c().x(r).y(e)},l.defined=function(f){return arguments.length?(i=typeof f=="function"?f:lt(!!f),l):i},l.curve=function(f){return arguments.length?(a=f,o!=null&&(s=a(o)),l):a},l.context=function(f){return arguments.length?(f==null?o=s=null:s=a(o=f),l):o},l}function iR(t,e){return e<t?-1:e>t?1:e>=t?0:NaN}function oR(t){return t}function zx(){var t=oR,e=iR,n=null,r=lt(0),i=lt($n),o=lt(0);function a(s){var u,l=(s=Su(s)).length,c,f,h=0,p=new Array(l),d=new Array(l),g=+r.apply(this,arguments),m=Math.min($n,Math.max(-$n,i.apply(this,arguments)-g)),y,b=Math.min(Math.abs(m)/l,o.apply(this,arguments)),v=b*(m<0?-1:1),x;for(u=0;u<l;++u)(x=d[p[u]=u]=+t(s[u],u,s))>0&&(h+=x);for(e!=null?p.sort(function(S,$){return e(d[S],d[$])}):n!=null&&p.sort(function(S,$){return n(s[S],s[$])}),u=0,f=h?(m-l*v)/h:0;u<l;++u,g=y)c=p[u],x=d[c],y=g+(x>0?x*f:0)+v,d[c]={data:s[c],index:u,value:x,startAngle:g,endAngle:y,padAngle:b};return d}return a.value=function(s){return arguments.length?(t=typeof s=="function"?s:lt(+s),a):t},a.sortValues=function(s){return arguments.length?(e=s,n=null,a):e},a.sort=function(s){return arguments.length?(n=s,e=null,a):n},a.startAngle=function(s){return arguments.length?(r=typeof s=="function"?s:lt(+s),a):r},a.endAngle=function(s){return arguments.length?(i=typeof s=="function"?s:lt(+s),a):i},a.padAngle=function(s){return arguments.length?(o=typeof s=="function"?s:lt(+s),a):o},a}var Yx=Ah(Au);function Ux(t){this._curve=t}Ux.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};function Ah(t){function e(n){return new Ux(t(n))}return e._curve=t,e}function zo(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(n){return arguments.length?e(Ah(n)):e()._curve},t}function Wx(){return zo(Tu().curve(Yx))}function Hx(){var t=Sh().curve(Yx),e=t.curve,n=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return zo(n())},delete t.lineX0,t.lineEndAngle=function(){return zo(r())},delete t.lineX1,t.lineInnerRadius=function(){return zo(i())},delete t.lineY0,t.lineOuterRadius=function(){return zo(o())},delete t.lineY1,t.curve=function(a){return arguments.length?e(Ah(a)):e()._curve},t}function Yo(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}class Xx{constructor(e,n){this._context=e,this._x=n}areaStart(){this._line=0}areaEnd(){this._line=NaN}lineStart(){this._point=0}lineEnd(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line}point(e,n){switch(e=+e,n=+n,this._point){case 0:{this._point=1,this._line?this._context.lineTo(e,n):this._context.moveTo(e,n);break}case 1:this._point=2;default:{this._x?this._context.bezierCurveTo(this._x0=(this._x0+e)/2,this._y0,this._x0,n,e,n):this._context.bezierCurveTo(this._x0,this._y0=(this._y0+n)/2,e,this._y0,e,n);break}}this._x0=e,this._y0=n}}class aR{constructor(e){this._context=e}lineStart(){this._point=0}lineEnd(){}point(e,n){if(e=+e,n=+n,this._point===0)this._point=1;else{const r=Yo(this._x0,this._y0),i=Yo(this._x0,this._y0=(this._y0+n)/2),o=Yo(e,this._y0),a=Yo(e,n);this._context.moveTo(...r),this._context.bezierCurveTo(...i,...o,...a)}this._x0=e,this._y0=n}}function jx(t){return new Xx(t,!0)}function Vx(t){return new Xx(t,!1)}function sR(t){return new aR(t)}function uR(t){return t.source}function lR(t){return t.target}function Pu(t){let e=uR,n=lR,r=wh,i=$h,o=null,a=null,s=Go(u);function u(){let l;const c=rR.call(arguments),f=e.apply(this,c),h=n.apply(this,c);if(o==null&&(a=t(l=s())),a.lineStart(),c[0]=f,a.point(+r.apply(this,c),+i.apply(this,c)),c[0]=h,a.point(+r.apply(this,c),+i.apply(this,c)),a.lineEnd(),l)return a=null,l+""||null}return u.source=function(l){return arguments.length?(e=l,u):e},u.target=function(l){return arguments.length?(n=l,u):n},u.x=function(l){return arguments.length?(r=typeof l=="function"?l:lt(+l),u):r},u.y=function(l){return arguments.length?(i=typeof l=="function"?l:lt(+l),u):i},u.context=function(l){return arguments.length?(l==null?o=a=null:a=t(o=l),u):o},u}function cR(){return Pu(jx)}function fR(){return Pu(Vx)}function hR(){const t=Pu(sR);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t}const pR=vt(3),qx={draw(t,e){const n=vt(e+gi(e/28,.75))*.59436,r=n/2,i=r*pR;t.moveTo(0,n),t.lineTo(0,-n),t.moveTo(-i,-r),t.lineTo(i,r),t.moveTo(-i,r),t.lineTo(i,-r)}},Mu={draw(t,e){const n=vt(e/wn);t.moveTo(n,0),t.arc(0,0,n,0,$n)}},Zx={draw(t,e){const n=vt(e/5)/2;t.moveTo(-3*n,-n),t.lineTo(-n,-n),t.lineTo(-n,-3*n),t.lineTo(n,-3*n),t.lineTo(n,-n),t.lineTo(3*n,-n),t.lineTo(3*n,n),t.lineTo(n,n),t.lineTo(n,3*n),t.lineTo(-n,3*n),t.lineTo(-n,n),t.lineTo(-3*n,n),t.closePath()}},Kx=vt(1/3),dR=Kx*2,Qx={draw(t,e){const n=vt(e/dR),r=n*Kx;t.moveTo(0,-n),t.lineTo(r,0),t.lineTo(0,n),t.lineTo(-r,0),t.closePath()}},Jx={draw(t,e){const n=vt(e)*.62625;t.moveTo(0,-n),t.lineTo(n,0),t.lineTo(0,n),t.lineTo(-n,0),t.closePath()}},tv={draw(t,e){const n=vt(e-gi(e/7,2))*.87559;t.moveTo(-n,0),t.lineTo(n,0),t.moveTo(0,n),t.lineTo(0,-n)}},ev={draw(t,e){const n=vt(e),r=-n/2;t.rect(r,r,n,n)}},nv={draw(t,e){const n=vt(e)*.4431;t.moveTo(n,n),t.lineTo(n,-n),t.lineTo(-n,-n),t.lineTo(-n,n),t.closePath()}},gR=.8908130915292852,rv=oe(wn/10)/oe(7*wn/10),mR=oe($n/10)*rv,yR=-cn($n/10)*rv,iv={draw(t,e){const n=vt(e*gR),r=mR*n,i=yR*n;t.moveTo(0,-n),t.lineTo(r,i);for(let o=1;o<5;++o){const a=$n*o/5,s=cn(a),u=oe(a);t.lineTo(u*n,-s*n),t.lineTo(s*r-u*i,u*r+s*i)}t.closePath()}},Th=vt(3),ov={draw(t,e){const n=-vt(e/(Th*3));t.moveTo(0,n*2),t.lineTo(-Th*n,-n),t.lineTo(Th*n,-n),t.closePath()}},bR=vt(3),av={draw(t,e){const n=vt(e)*.6824,r=n/2,i=n*bR/2;t.moveTo(0,-n),t.lineTo(i,r),t.lineTo(-i,r),t.closePath()}},ve=-.5,_e=vt(3)/2,Ph=1/vt(12),xR=(Ph/2+1)*3,sv={draw(t,e){const n=vt(e/xR),r=n/2,i=n*Ph,o=r,a=n*Ph+n,s=-o,u=a;t.moveTo(r,i),t.lineTo(o,a),t.lineTo(s,u),t.lineTo(ve*r-_e*i,_e*r+ve*i),t.lineTo(ve*o-_e*a,_e*o+ve*a),t.lineTo(ve*s-_e*u,_e*s+ve*u),t.lineTo(ve*r+_e*i,ve*i-_e*r),t.lineTo(ve*o+_e*a,ve*a-_e*o),t.lineTo(ve*s+_e*u,ve*u-_e*s),t.closePath()}},Mh={draw(t,e){const n=vt(e-gi(e/6,1.7))*.6189;t.moveTo(-n,-n),t.lineTo(n,n),t.moveTo(-n,n),t.lineTo(n,-n)}},uv=[Mu,Zx,Qx,ev,iv,ov,sv],vR=[Mu,tv,Mh,av,qx,nv,Jx];function _R(t,e){let n=null,r=Go(i);t=typeof t=="function"?t:lt(t||Mu),e=typeof e=="function"?e:lt(e===void 0?64:+e);function i(){let o;if(n||(n=o=r()),t.apply(this,arguments).draw(n,+e.apply(this,arguments)),o)return n=null,o+""||null}return i.type=function(o){return arguments.length?(t=typeof o=="function"?o:lt(o),i):t},i.size=function(o){return arguments.length?(e=typeof o=="function"?o:lt(+o),i):e},i.context=function(o){return arguments.length?(n=o??null,i):n},i}function Sn(){}function Du(t,e,n){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+n)/6)}function Cu(t){this._context=t}Cu.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Du(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Du(this,t,e);break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};function wR(t){return new Cu(t)}function lv(t){this._context=t}lv.prototype={areaStart:Sn,areaEnd:Sn,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x2,this._y2),this._context.closePath();break}case 2:{this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break}case 3:{this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4);break}}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:Du(this,t,e);break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};function $R(t){return new lv(t)}function cv(t){this._context=t}cv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var n=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(n,r):this._context.moveTo(n,r);break;case 3:this._point=4;default:Du(this,t,e);break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};function SR(t){return new cv(t)}function fv(t,e){this._basis=new Cu(t),this._beta=e}fv.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,n=t.length-1;if(n>0)for(var r=t[0],i=e[0],o=t[n]-r,a=e[n]-i,s=-1,u;++s<=n;)u=s/n,this._basis.point(this._beta*t[s]+(1-this._beta)*(r+u*o),this._beta*e[s]+(1-this._beta)*(i+u*a));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};const AR=function t(e){function n(r){return e===1?new Cu(r):new fv(r,e)}return n.beta=function(r){return t(+r)},n}(.85);function Lu(t,e,n){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-n),t._x2,t._y2)}function Dh(t,e){this._context=t,this._k=(1-e)/6}Dh.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:Lu(this,this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:Lu(this,t,e);break}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};const TR=function t(e){function n(r){return new Dh(r,e)}return n.tension=function(r){return t(+r)},n}(0);function Ch(t,e){this._context=t,this._k=(1-e)/6}Ch.prototype={areaStart:Sn,areaEnd:Sn,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:Lu(this,t,e);break}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};const PR=function t(e){function n(r){return new Ch(r,e)}return n.tension=function(r){return t(+r)},n}(0);function Lh(t,e){this._context=t,this._k=(1-e)/6}Lh.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Lu(this,t,e);break}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};const MR=function t(e){function n(r){return new Lh(r,e)}return n.tension=function(r){return t(+r)},n}(0);function kh(t,e,n){var r=t._x1,i=t._y1,o=t._x2,a=t._y2;if(t._l01_a>Yt){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,u=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/u,i=(i*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/u}if(t._l23_a>Yt){var l=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,c=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*l+t._x1*t._l23_2a-e*t._l12_2a)/c,a=(a*l+t._y1*t._l23_2a-n*t._l12_2a)/c}t._context.bezierCurveTo(r,i,o,a,t._x2,t._y2)}function hv(t,e){this._context=t,this._alpha=e}hv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:kh(this,t,e);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};const DR=function t(e){function n(r){return e?new hv(r,e):new Dh(r,0)}return n.alpha=function(r){return t(+r)},n}(.5);function pv(t,e){this._context=t,this._alpha=e}pv.prototype={areaStart:Sn,areaEnd:Sn,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:kh(this,t,e);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};const CR=function t(e){function n(r){return e?new pv(r,e):new Ch(r,0)}return n.alpha=function(r){return t(+r)},n}(.5);function dv(t,e){this._context=t,this._alpha=e}dv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:kh(this,t,e);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};const LR=function t(e){function n(r){return e?new dv(r,e):new Lh(r,0)}return n.alpha=function(r){return t(+r)},n}(.5);function gv(t){this._context=t}gv.prototype={areaStart:Sn,areaEnd:Sn,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}};function kR(t){return new gv(t)}function mv(t){return t<0?-1:1}function yv(t,e,n){var r=t._x1-t._x0,i=e-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),a=(n-t._y1)/(i||r<0&&-0),s=(o*i+a*r)/(r+i);return(mv(o)+mv(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(s))||0}function bv(t,e){var n=t._x1-t._x0;return n?(3*(t._y1-t._y0)/n-e)/2:e}function Rh(t,e,n){var r=t._x0,i=t._y0,o=t._x1,a=t._y1,s=(o-r)/3;t._context.bezierCurveTo(r+s,i+s*e,o-s,a-s*n,o,a)}function ku(t){this._context=t}ku.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:Rh(this,this._t0,bv(this,this._t0));break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){var n=NaN;if(t=+t,e=+e,!(t===this._x1&&e===this._y1)){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,Rh(this,bv(this,n=yv(this,t,e)),n);break;default:Rh(this,this._t0,n=yv(this,t,e));break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=n}}};function xv(t){this._context=new vv(t)}(xv.prototype=Object.create(ku.prototype)).point=function(t,e){ku.prototype.point.call(this,e,t)};function vv(t){this._context=t}vv.prototype={moveTo:function(t,e){this._context.moveTo(e,t)},closePath:function(){this._context.closePath()},lineTo:function(t,e){this._context.lineTo(e,t)},bezierCurveTo:function(t,e,n,r,i,o){this._context.bezierCurveTo(e,t,r,n,o,i)}};function RR(t){return new ku(t)}function ER(t){return new xv(t)}function _v(t){this._context=t}_v.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,e=this._y,n=t.length;if(n)if(this._line?this._context.lineTo(t[0],e[0]):this._context.moveTo(t[0],e[0]),n===2)this._context.lineTo(t[1],e[1]);else for(var r=wv(t),i=wv(e),o=0,a=1;a<n;++o,++a)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],t[a],e[a]);(this._line||this._line!==0&&n===1)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,e){this._x.push(+t),this._y.push(+e)}};function wv(t){var e,n=t.length-1,r,i=new Array(n),o=new Array(n),a=new Array(n);for(i[0]=0,o[0]=2,a[0]=t[0]+2*t[1],e=1;e<n-1;++e)i[e]=1,o[e]=4,a[e]=4*t[e]+2*t[e+1];for(i[n-1]=2,o[n-1]=7,a[n-1]=8*t[n-1]+t[n],e=1;e<n;++e)r=i[e]/o[e-1],o[e]-=r,a[e]-=r*a[e-1];for(i[n-1]=a[n-1]/o[n-1],e=n-2;e>=0;--e)i[e]=(a[e]-i[e+1])/o[e];for(o[n-1]=(t[n]+i[n-1])/2,e=0;e<n-1;++e)o[e]=2*t[e+1]-i[e+1];return[i,o]}function IR(t){return new _v(t)}function Ru(t,e){this._context=t,this._t=e}Ru.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&this._point===2&&this._context.lineTo(this._x,this._y),(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:{if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var n=this._x*(1-this._t)+t*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,e)}break}}this._x=t,this._y=e}};function NR(t){return new Ru(t,.5)}function BR(t){return new Ru(t,0)}function FR(t){return new Ru(t,1)}function mi(t,e){if((a=t.length)>1)for(var n=1,r,i,o=t[e[0]],a,s=o.length;n<a;++n)for(i=o,o=t[e[n]],r=0;r<s;++r)o[r][1]+=o[r][0]=isNaN(i[r][1])?i[r][0]:i[r][1]}function yi(t){for(var e=t.length,n=new Array(e);--e>=0;)n[e]=e;return n}function OR(t,e){return t[e]}function GR(t){const e=[];return e.key=t,e}function zR(){var t=lt([]),e=yi,n=mi,r=OR;function i(o){var a=Array.from(t.apply(this,arguments),GR),s,u=a.length,l=-1,c;for(const f of o)for(s=0,++l;s<u;++s)(a[s][l]=[0,+r(f,a[s].key,l,o)]).data=f;for(s=0,c=Su(e(a));s<u;++s)a[c[s]].index=s;return n(a,c),a}return i.keys=function(o){return arguments.length?(t=typeof o=="function"?o:lt(Array.from(o)),i):t},i.value=function(o){return arguments.length?(r=typeof o=="function"?o:lt(+o),i):r},i.order=function(o){return arguments.length?(e=o==null?yi:typeof o=="function"?o:lt(Array.from(o)),i):e},i.offset=function(o){return arguments.length?(n=o??mi,i):n},i}function YR(t,e){if((r=t.length)>0){for(var n,r,i=0,o=t[0].length,a;i<o;++i){for(a=n=0;n<r;++n)a+=t[n][i][1]||0;if(a)for(n=0;n<r;++n)t[n][i][1]/=a}mi(t,e)}}function UR(t,e){if((u=t.length)>0)for(var n,r=0,i,o,a,s,u,l=t[e[0]].length;r<l;++r)for(a=s=0,n=0;n<u;++n)(o=(i=t[e[n]][r])[1]-i[0])>0?(i[0]=a,i[1]=a+=o):o<0?(i[1]=s,i[0]=s+=o):(i[0]=0,i[1]=o)}function WR(t,e){if((i=t.length)>0){for(var n=0,r=t[e[0]],i,o=r.length;n<o;++n){for(var a=0,s=0;a<i;++a)s+=t[a][n][1]||0;r[n][1]+=r[n][0]=-s/2}mi(t,e)}}function HR(t,e){if(!(!((a=t.length)>0)||!((o=(i=t[e[0]]).length)>0))){for(var n=0,r=1,i,o,a;r<o;++r){for(var s=0,u=0,l=0;s<a;++s){for(var c=t[e[s]],f=c[r][1]||0,h=c[r-1][1]||0,p=(f-h)/2,d=0;d<s;++d){var g=t[e[d]],m=g[r][1]||0,y=g[r-1][1]||0;p+=m-y}u+=f,l+=p*f}i[r-1][1]+=i[r-1][0]=n,u&&(n-=l/u)}i[r-1][1]+=i[r-1][0]=n,mi(t,e)}}function $v(t){var e=t.map(XR);return yi(t).sort(function(n,r){return e[n]-e[r]})}function XR(t){for(var e=-1,n=0,r=t.length,i,o=-1/0;++e<r;)(i=+t[e][1])>o&&(o=i,n=e);return n}function Sv(t){var e=t.map(Av);return yi(t).sort(function(n,r){return e[n]-e[r]})}function Av(t){for(var e=0,n=-1,r=t.length,i;++n<r;)(i=+t[n][1])&&(e+=i);return e}function jR(t){return Sv(t).reverse()}function VR(t){var e=t.length,n,r,i=t.map(Av),o=$v(t),a=0,s=0,u=[],l=[];for(n=0;n<e;++n)r=o[n],a<s?(a+=i[r],u.push(r)):(s+=i[r],l.push(r));return l.reverse().concat(u)}function qR(t){return yi(t).reverse()}const Eu=t=>()=>t;function ZR(t,{sourceEvent:e,target:n,transform:r,dispatch:i}){Object.defineProperties(this,{type:{value:t,enumerable:!0,configurable:!0},sourceEvent:{value:e,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},transform:{value:r,enumerable:!0,configurable:!0},_:{value:i}})}function je(t,e,n){this.k=t,this.x=e,this.y=n}je.prototype={constructor:je,scale:function(t){return t===1?this:new je(this.k*t,this.x,this.y)},translate:function(t,e){return t===0&e===0?this:new je(this.k,this.x+this.k*t,this.y+this.k*e)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var Iu=new je(1,0,0);Tv.prototype=je.prototype;function Tv(t){for(;!t.__zoom;)if(!(t=t.parentNode))return Iu;return t.__zoom}function Eh(t){t.stopImmediatePropagation()}function Uo(t){t.preventDefault(),t.stopImmediatePropagation()}function KR(t){return(!t.ctrlKey||t.type==="wheel")&&!t.button}function QR(){var t=this;return t instanceof SVGElement?(t=t.ownerSVGElement||t,t.hasAttribute("viewBox")?(t=t.viewBox.baseVal,[[t.x,t.y],[t.x+t.width,t.y+t.height]]):[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]):[[0,0],[t.clientWidth,t.clientHeight]]}function Pv(){return this.__zoom||Iu}function JR(t){return-t.deltaY*(t.deltaMode===1?.05:t.deltaMode?1:.002)*(t.ctrlKey?10:1)}function tE(){return navigator.maxTouchPoints||"ontouchstart"in this}function eE(t,e,n){var r=t.invertX(e[0][0])-n[0][0],i=t.invertX(e[1][0])-n[1][0],o=t.invertY(e[0][1])-n[0][1],a=t.invertY(e[1][1])-n[1][1];return t.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}function Ih(){var t=KR,e=QR,n=eE,r=JR,i=tE,o=[0,1/0],a=[[-1/0,-1/0],[1/0,1/0]],s=250,u=im,l=Un("start","zoom","end"),c,f,h,p=500,d=150,g=0,m=10;function y(A){A.property("__zoom",Pv).on("wheel.zoom",T,{passive:!1}).on("mousedown.zoom",w).on("dblclick.zoom",P).filter(i).on("touchstart.zoom",_).on("touchmove.zoom",N).on("touchend.zoom touchcancel.zoom",D).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(A,L,M,G){var O=A.selection?A.selection():A;O.property("__zoom",Pv),A!==O?S(A,L,M,G):O.interrupt().each(function(){$(this,arguments).event(G).start().zoom(null,typeof L=="function"?L.apply(this,arguments):L).end()})},y.scaleBy=function(A,L,M,G){y.scaleTo(A,function(){var O=this.__zoom.k,E=typeof L=="function"?L.apply(this,arguments):L;return O*E},M,G)},y.scaleTo=function(A,L,M,G){y.transform(A,function(){var O=e.apply(this,arguments),E=this.__zoom,k=M==null?x(O):typeof M=="function"?M.apply(this,arguments):M,C=E.invert(k),F=typeof L=="function"?L.apply(this,arguments):L;return n(v(b(E,F),k,C),O,a)},M,G)},y.translateBy=function(A,L,M,G){y.transform(A,function(){return n(this.__zoom.translate(typeof L=="function"?L.apply(this,arguments):L,typeof M=="function"?M.apply(this,arguments):M),e.apply(this,arguments),a)},null,G)},y.translateTo=function(A,L,M,G,O){y.transform(A,function(){var E=e.apply(this,arguments),k=this.__zoom,C=G==null?x(E):typeof G=="function"?G.apply(this,arguments):G;return n(Iu.translate(C[0],C[1]).scale(k.k).translate(typeof L=="function"?-L.apply(this,arguments):-L,typeof M=="function"?-M.apply(this,arguments):-M),E,a)},G,O)};function b(A,L){return L=Math.max(o[0],Math.min(o[1],L)),L===A.k?A:new je(L,A.x,A.y)}function v(A,L,M){var G=L[0]-M[0]*A.k,O=L[1]-M[1]*A.k;return G===A.x&&O===A.y?A:new je(A.k,G,O)}function x(A){return[(+A[0][0]+ +A[1][0])/2,(+A[0][1]+ +A[1][1])/2]}function S(A,L,M,G){A.on("start.zoom",function(){$(this,arguments).event(G).start()}).on("interrupt.zoom end.zoom",function(){$(this,arguments).event(G).end()}).tween("zoom",function(){var O=this,E=arguments,k=$(O,E).event(G),C=e.apply(O,E),F=M==null?x(C):typeof M=="function"?M.apply(O,E):M,X=Math.max(C[1][0]-C[0][0],C[1][1]-C[0][1]),Q=O.__zoom,z=typeof L=="function"?L.apply(O,E):L,Z=u(Q.invert(F).concat(X/Q.k),z.invert(F).concat(X/z.k));return function(Y){if(Y===1)Y=z;else{var q=Z(Y),j=X/q[2];Y=new je(j,F[0]-q[0]*j,F[1]-q[1]*j)}k.zoom(null,Y)}})}function $(A,L,M){return!M&&A.__zooming||new R(A,L)}function R(A,L){this.that=A,this.args=L,this.active=0,this.sourceEvent=null,this.extent=e.apply(A,L),this.taps=0}R.prototype={event:function(A){return A&&(this.sourceEvent=A),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(A,L){return this.mouse&&A!=="mouse"&&(this.mouse[1]=L.invert(this.mouse[0])),this.touch0&&A!=="touch"&&(this.touch0[1]=L.invert(this.touch0[0])),this.touch1&&A!=="touch"&&(this.touch1[1]=L.invert(this.touch1[0])),this.that.__zoom=L,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(A){var L=V(this.that).datum();l.call(A,this.that,new ZR(A,{sourceEvent:this.sourceEvent,target:y,type:A,transform:this.that.__zoom,dispatch:l}),L)}};function T(A,...L){if(!t.apply(this,arguments))return;var M=$(this,L).event(A),G=this.__zoom,O=Math.max(o[0],Math.min(o[1],G.k*Math.pow(2,r.apply(this,arguments)))),E=le(A);if(M.wheel)(M.mouse[0][0]!==E[0]||M.mouse[0][1]!==E[1])&&(M.mouse[1]=G.invert(M.mouse[0]=E)),clearTimeout(M.wheel);else{if(G.k===O)return;M.mouse=[E,G.invert(E)],Kn(this),M.start()}Uo(A),M.wheel=setTimeout(k,d),M.zoom("mouse",n(v(b(G,O),M.mouse[0],M.mouse[1]),M.extent,a));function k(){M.wheel=null,M.end()}}function w(A,...L){if(h||!t.apply(this,arguments))return;var M=A.currentTarget,G=$(this,L,!0).event(A),O=V(A.view).on("mousemove.zoom",F,!0).on("mouseup.zoom",X,!0),E=le(A,M),k=A.clientX,C=A.clientY;Fa(A.view),Eh(A),G.mouse=[E,this.__zoom.invert(E)],Kn(this),G.start();function F(Q){if(Uo(Q),!G.moved){var z=Q.clientX-k,Z=Q.clientY-C;G.moved=z*z+Z*Z>g}G.event(Q).zoom("mouse",n(v(G.that.__zoom,G.mouse[0]=le(Q,M),G.mouse[1]),G.extent,a))}function X(Q){O.on("mousemove.zoom mouseup.zoom",null),Oa(Q.view,G.moved),Uo(Q),G.event(Q).end()}}function P(A,...L){if(t.apply(this,arguments)){var M=this.__zoom,G=le(A.changedTouches?A.changedTouches[0]:A,this),O=M.invert(G),E=M.k*(A.shiftKey?.5:2),k=n(v(b(M,E),G,O),e.apply(this,L),a);Uo(A),s>0?V(this).transition().duration(s).call(S,k,G,A):V(this).call(y.transform,k,G,A)}}function _(A,...L){if(t.apply(this,arguments)){var M=A.touches,G=M.length,O=$(this,L,A.changedTouches.length===G).event(A),E,k,C,F;for(Eh(A),k=0;k<G;++k)C=M[k],F=le(C,this),F=[F,this.__zoom.invert(F),C.identifier],O.touch0?!O.touch1&&O.touch0[2]!==F[2]&&(O.touch1=F,O.taps=0):(O.touch0=F,E=!0,O.taps=1+!!c);c&&(c=clearTimeout(c)),E&&(O.taps<2&&(f=F[0],c=setTimeout(function(){c=null},p)),Kn(this),O.start())}}function N(A,...L){if(this.__zooming){var M=$(this,L).event(A),G=A.changedTouches,O=G.length,E,k,C,F;for(Uo(A),E=0;E<O;++E)k=G[E],C=le(k,this),M.touch0&&M.touch0[2]===k.identifier?M.touch0[0]=C:M.touch1&&M.touch1[2]===k.identifier&&(M.touch1[0]=C);if(k=M.that.__zoom,M.touch1){var X=M.touch0[0],Q=M.touch0[1],z=M.touch1[0],Z=M.touch1[1],Y=(Y=z[0]-X[0])*Y+(Y=z[1]-X[1])*Y,q=(q=Z[0]-Q[0])*q+(q=Z[1]-Q[1])*q;k=b(k,Math.sqrt(Y/q)),C=[(X[0]+z[0])/2,(X[1]+z[1])/2],F=[(Q[0]+Z[0])/2,(Q[1]+Z[1])/2]}else if(M.touch0)C=M.touch0[0],F=M.touch0[1];else return;M.zoom("touch",n(v(k,C,F),M.extent,a))}}function D(A,...L){if(this.__zooming){var M=$(this,L).event(A),G=A.changedTouches,O=G.length,E,k;for(Eh(A),h&&clearTimeout(h),h=setTimeout(function(){h=null},p),E=0;E<O;++E)k=G[E],M.touch0&&M.touch0[2]===k.identifier?delete M.touch0:M.touch1&&M.touch1[2]===k.identifier&&delete M.touch1;if(M.touch1&&!M.touch0&&(M.touch0=M.touch1,delete M.touch1),M.touch0)M.touch0[1]=this.__zoom.invert(M.touch0[0]);else if(M.end(),M.taps===2&&(k=le(k,this),Math.hypot(f[0]-k[0],f[1]-k[1])<m)){var C=V(this).on("dblclick.zoom");C&&C.apply(this,arguments)}}}return y.wheelDelta=function(A){return arguments.length?(r=typeof A=="function"?A:Eu(+A),y):r},y.filter=function(A){return arguments.length?(t=typeof A=="function"?A:Eu(!!A),y):t},y.touchable=function(A){return arguments.length?(i=typeof A=="function"?A:Eu(!!A),y):i},y.extent=function(A){return arguments.length?(e=typeof A=="function"?A:Eu([[+A[0][0],+A[0][1]],[+A[1][0],+A[1][1]]]),y):e},y.scaleExtent=function(A){return arguments.length?(o[0]=+A[0],o[1]=+A[1],y):[o[0],o[1]]},y.translateExtent=function(A){return arguments.length?(a[0][0]=+A[0][0],a[1][0]=+A[1][0],a[0][1]=+A[0][1],a[1][1]=+A[1][1],y):[[a[0][0],a[0][1]],[a[1][0],a[1][1]]]},y.constrain=function(A){return arguments.length?(n=A,y):n},y.duration=function(A){return arguments.length?(s=+A,y):s},y.interpolate=function(A){return arguments.length?(u=A,y):u},y.on=function(){var A=l.on.apply(l,arguments);return A===l?y:A},y.clickDistance=function(A){return arguments.length?(g=(A=+A)*A,y):Math.sqrt(g)},y.tapDistance=function(A){return arguments.length?(m=+A,y):m},y}const Nh=Object.freeze(Object.defineProperty({__proto__:null,Adder:Ct,Delaunay:Hc,FormatSpecifier:bs,InternMap:Bi,InternSet:Gn,Node:sr,Path:io,Voronoi:Xm,ZoomTransform:je,active:oM,arc:$u,area:Sh,areaRadial:Hx,ascending:_t,autoType:D4,axisBottom:o0,axisLeft:a0,axisRight:K3,axisTop:Z3,bin:Vg,bisect:On,bisectCenter:jT,bisectLeft:XT,bisectRight:Rg,bisector:Sa,blob:k4,blur:VT,blur2:Eg,blurImage:qT,brush:bM,brushSelection:gM,brushX:mM,brushY:yM,buffer:E4,chord:vM,chordDirected:wM,chordTranspose:_M,cluster:X7,color:gn,contourDensity:VM,contours:Gc,count:Ta,create:k6,creator:Ia,cross:n3,csv:B4,csvFormat:b4,csvFormatBody:x4,csvFormatRow:_4,csvFormatRows:v4,csvFormatValue:w4,csvParse:Zm,csvParseRows:y4,cubehelix:Me,cumsum:r3,curveBasis:wR,curveBasisClosed:$R,curveBasisOpen:SR,curveBumpX:jx,curveBumpY:Vx,curveBundle:AR,curveCardinal:TR,curveCardinalClosed:PR,curveCardinalOpen:MR,curveCatmullRom:DR,curveCatmullRomClosed:CR,curveCatmullRomOpen:LR,curveLinear:Au,curveLinearClosed:kR,curveMonotoneX:RR,curveMonotoneY:ER,curveNatural:IR,curveStep:NR,curveStepAfter:FR,curveStepBefore:BR,descending:Lg,deviation:Bg,difference:F3,disjoint:O3,dispatch:Un,drag:b0,dragDisable:Fa,dragEnable:Oa,dsv:N4,dsvFormat:ds,easeBack:Tm,easeBackIn:K8,easeBackInOut:Tm,easeBackOut:Q8,easeBounce:eo,easeBounceIn:q8,easeBounceInOut:Z8,easeBounceOut:eo,easeCircle:Am,easeCircleIn:O8,easeCircleInOut:Am,easeCircleOut:G8,easeCubic:to,easeCubicIn:L8,easeCubicInOut:to,easeCubicOut:k8,easeElastic:no,easeElasticIn:J8,easeElasticInOut:tM,easeElasticOut:no,easeExp:Sm,easeExpIn:B8,easeExpInOut:Sm,easeExpOut:F8,easeLinear:M8,easePoly:vm,easePolyIn:R8,easePolyInOut:vm,easePolyOut:E8,easeQuad:xm,easeQuadIn:D8,easeQuadInOut:xm,easeQuadOut:C8,easeSin:$m,easeSinIn:I8,easeSinInOut:$m,easeSinOut:N8,every:k3,extent:Ni,fcumsum:o3,filter:E3,flatGroup:a3,flatRollup:s3,forceCenter:H4,forceCollide:e1,forceLink:fD,forceManyBody:o1,forceRadial:xD,forceSimulation:i1,forceX:a1,forceY:s1,get format(){return uo},formatDefaultLocale:g1,formatLocale:d1,get formatPrefix(){return Kc},formatSpecifier:ti,fsum:i3,geoAlbers:Dy,geoAlbersUsa:S7,geoArea:DD,geoAzimuthalEqualArea:A7,geoAzimuthalEqualAreaRaw:Bf,geoAzimuthalEquidistant:T7,geoAzimuthalEquidistantRaw:Ff,geoBounds:RD,geoCentroid:OD,geoCircle:GD,geoClipAntimeridian:mf,geoClipCircle:K1,geoClipExtent:jD,geoClipRectangle:Gs,geoConicConformal:M7,geoConicConformalRaw:ky,geoConicEqualArea:Qs,geoConicEqualAreaRaw:My,geoConicEquidistant:C7,geoConicEquidistantRaw:Ry,geoContains:t7,geoDistance:Us,geoEqualEarth:k7,geoEqualEarthRaw:Of,geoEquirectangular:D7,geoEquirectangularRaw:Ao,geoGnomonic:R7,geoGnomonicRaw:Gf,geoGraticule:sy,geoGraticule10:e7,geoIdentity:E7,geoInterpolate:n7,geoLength:Q1,geoMercator:P7,geoMercatorRaw:So,geoNaturalEarth1:I7,geoNaturalEarth1Raw:zf,geoOrthographic:N7,geoOrthographicRaw:Yf,geoPath:d7,geoProjection:We,geoProjectionMutator:If,geoRotation:U1,geoStereographic:B7,geoStereographicRaw:Uf,geoStream:Ce,geoTransform:g7,geoTransverseMercator:F7,geoTransverseMercatorRaw:Wf,gray:Q6,greatest:qg,greatestIndex:P3,group:zg,groupSort:c3,groups:Yg,hcl:ja,hierarchy:eu,histogram:Vg,hsl:Ua,html:U4,image:O4,index:u3,indexes:l3,interpolate:Ze,interpolateArray:iP,interpolateBasis:U0,interpolateBasisClosed:W0,interpolateBlues:Ck,interpolateBrBG:lk,interpolateBuGn:bk,interpolateBuPu:xk,interpolateCividis:Nk,interpolateCool:Ok,interpolateCubehelix:xP,interpolateCubehelixDefault:Bk,interpolateCubehelixLong:Ja,interpolateDate:Z0,interpolateDiscrete:sP,interpolateGnBu:vk,interpolateGreens:Lk,interpolateGreys:kk,interpolateHcl:yP,interpolateHclLong:bP,interpolateHsl:dP,interpolateHslLong:gP,interpolateHue:uP,interpolateInferno:jk,interpolateLab:mP,interpolateMagma:Xk,interpolateNumber:ge,interpolateNumberArray:fc,interpolateObject:K0,interpolateOrRd:_k,interpolateOranges:Ik,interpolatePRGn:ck,interpolatePiYG:fk,interpolatePlasma:Vk,interpolatePuBu:$k,interpolatePuBuGn:wk,interpolatePuOr:hk,interpolatePuRd:Sk,interpolatePurples:Rk,interpolateRainbow:Gk,interpolateRdBu:pk,interpolateRdGy:dk,interpolateRdPu:Ak,interpolateRdYlBu:gk,interpolateRdYlGn:mk,interpolateReds:Ek,interpolateRgb:ji,interpolateRgbBasis:j0,interpolateRgbBasisClosed:rP,interpolateRound:Ka,interpolateSinebow:Uk,interpolateSpectral:yk,interpolateString:dc,interpolateTransformCss:em,interpolateTransformSvg:nm,interpolateTurbo:Wk,interpolateViridis:Hk,interpolateWarm:Fk,interpolateYlGn:Pk,interpolateYlGnBu:Tk,interpolateYlOrBr:Mk,interpolateYlOrRd:Dk,interpolateZoom:im,interrupt:Kn,intersection:G3,interval:SP,isoFormat:YL,isoParse:HL,json:z4,lab:Xa,lch:J6,least:T3,leastIndex:Qg,line:Tu,lineRadial:Wx,link:Pu,linkHorizontal:cR,linkRadial:hR,linkVertical:fR,local:m0,map:I3,matcher:Zl,max:Fi,maxIndex:Ul,mean:b3,median:x3,medianIndex:v3,merge:Hl,min:Da,minIndex:Wl,mode:w3,namespace:Yi,namespaces:Vl,nice:zl,now:Qi,pack:wC,packEnclose:mC,packSiblings:vC,pairs:$3,partition:$C,path:Oc,pathRound:AM,permute:jg,pie:zx,piecewise:um,pointRadial:Yo,pointer:le,pointers:E6,polygonArea:FC,polygonCentroid:OC,polygonContains:UC,polygonHull:YC,polygonLength:WC,precisionFixed:m1,precisionPrefix:y1,precisionRound:b1,quadtree:ms,quantile:Gi,quantileIndex:Kg,quantileSorted:Zg,quantize:vP,quickselect:Ca,radialArea:Hx,radialLine:Wx,randomBates:VC,randomBernoulli:KC,randomBeta:eb,randomBinomial:nb,randomCauchy:JC,randomExponential:qC,randomGamma:th,randomGeometric:tb,randomInt:XC,randomIrwinHall:Jy,randomLcg:i9,randomLogNormal:jC,randomLogistic:t9,randomNormal:Jf,randomPareto:ZC,randomPoisson:e9,randomUniform:HC,randomWeibull:QC,range:pn,rank:A3,reduce:N3,reverse:B3,rgb:Yr,ribbon:RM,ribbonArrow:EM,rollup:Wg,rollups:Hg,scaleBand:rh,scaleDiverging:ux,scaleDivergingLog:lx,scaleDivergingPow:_h,scaleDivergingSqrt:KL,scaleDivergingSymlog:cx,scaleIdentity:sb,scaleImplicit:eh,scaleLinear:Ro,scaleLog:hb,scaleOrdinal:nh,scalePoint:ih,scalePow:li,scaleQuantile:xb,scaleQuantize:vb,scaleRadial:bb,scaleSequential:ix,scaleSequentialLog:ox,scaleSequentialPow:vh,scaleSequentialQuantile:sx,scaleSequentialSqrt:ZL,scaleSequentialSymlog:ax,scaleSqrt:m9,scaleSymlog:gb,scaleThreshold:_b,scaleTime:VL,scaleUtc:qL,scan:M3,schemeAccent:JL,schemeBlues:kx,schemeBrBG:fx,schemeBuGn:vx,schemeBuPu:_x,schemeCategory10:QL,schemeDark2:tk,schemeGnBu:wx,schemeGreens:Rx,schemeGreys:Ex,schemeObservable10:ek,schemeOrRd:$x,schemeOranges:Bx,schemePRGn:hx,schemePaired:nk,schemePastel1:rk,schemePastel2:ik,schemePiYG:px,schemePuBu:Ax,schemePuBuGn:Sx,schemePuOr:dx,schemePuRd:Tx,schemePurples:Ix,schemeRdBu:gx,schemeRdGy:mx,schemeRdPu:Px,schemeRdYlBu:yx,schemeRdYlGn:bx,schemeReds:Nx,schemeSet1:ok,schemeSet2:ak,schemeSet3:sk,schemeSpectral:xx,schemeTableau10:uk,schemeYlGn:Dx,schemeYlGnBu:Mx,schemeYlOrBr:Cx,schemeYlOrRd:Lx,select:V,selectAll:I6,selection:Hn,selector:Na,selectorAll:ql,shuffle:D3,shuffler:Jg,some:R3,sort:Fl,stack:zR,stackOffsetDiverging:UR,stackOffsetExpand:YR,stackOffsetNone:mi,stackOffsetSilhouette:WR,stackOffsetWiggle:HR,stackOrderAppearance:$v,stackOrderAscending:Sv,stackOrderDescending:jR,stackOrderInsideOut:VR,stackOrderNone:yi,stackOrderReverse:qR,stratify:PC,style:Wn,subset:Y3,sum:t0,superset:n0,svg:W4,symbol:_R,symbolAsterisk:qx,symbolCircle:Mu,symbolCross:Zx,symbolDiamond:Qx,symbolDiamond2:Jx,symbolPlus:tv,symbolSquare:ev,symbolSquare2:nv,symbolStar:iv,symbolTimes:Mh,symbolTriangle:ov,symbolTriangle2:av,symbolWye:sv,symbolX:Mh,symbols:uv,symbolsFill:uv,symbolsStroke:vR,text:gs,thresholdFreedmanDiaconis:m3,thresholdScott:y3,thresholdSturges:Yl,tickFormat:ab,tickIncrement:Yn,tickStep:Ma,ticks:zn,timeDay:fi,timeDays:w9,get timeFormat(){return yh},timeFormatDefaultLocale:nx,timeFormatLocale:Gb,timeFriday:Pb,timeFridays:D9,timeHour:fu,timeHours:v9,timeInterval:Mt,timeMillisecond:ci,timeMilliseconds:wb,timeMinute:lu,timeMinutes:b9,timeMonday:Io,timeMondays:A9,timeMonth:pu,timeMonths:B9,get timeParse(){return ex},timeSaturday:Mb,timeSaturdays:C9,timeSecond:ln,timeSeconds:Sb,timeSunday:hi,timeSundays:Db,timeThursday:cr,timeThursdays:M9,timeTickInterval:Ob,timeTicks:Fb,timeTuesday:Ab,timeTuesdays:T9,timeWednesday:Tb,timeWednesdays:P9,timeWeek:hi,timeWeeks:Db,timeYear:He,timeYears:O9,timeout:yc,timer:rs,timerFlush:fm,transition:ym,transpose:e0,tree:EC,treemap:Ky,treemapBinary:IC,treemapDice:Lo,treemapResquarify:BC,treemapSlice:au,treemapSliceDice:NC,treemapSquarify:Qf,tsv:F4,tsvFormat:S4,tsvFormatBody:A4,tsvFormatRow:P4,tsvFormatRows:T4,tsvFormatValue:M4,tsvParse:Km,tsvParseRows:$4,union:U3,unixDay:dh,unixDays:S9,utcDay:Eo,utcDays:$9,get utcFormat(){return gu},utcFriday:kb,utcFridays:I9,utcHour:hu,utcHours:_9,utcMillisecond:ci,utcMilliseconds:wb,utcMinute:cu,utcMinutes:x9,utcMonday:No,utcMondays:L9,utcMonth:du,utcMonths:F9,get utcParse(){return bh},utcSaturday:Rb,utcSaturdays:N9,utcSecond:ln,utcSeconds:Sb,utcSunday:pi,utcSundays:Eb,utcThursday:hr,utcThursdays:E9,utcTickInterval:Bb,utcTicks:Nb,utcTuesday:Cb,utcTuesdays:k9,utcWednesday:Lb,utcWednesdays:R9,utcWeek:pi,utcWeeks:Eb,utcYear:Xe,utcYears:G9,variance:Ng,window:Kl,xml:Y4,zip:L3,zoom:Ih,zoomIdentity:Iu,zoomTransform:Tv},Symbol.toStringTag,{value:"Module"}));function Mv(t){try{return t.node().getBBox()}catch(e){throw new Error(e)}}function nE(t,e){function n(i){var s;const o=document.createElementNS("http://www.w3.org/1999/xhtml","div");o.innerHTML='<svg xmlns="http://www.w3.org/2000/svg">'+i+"</svg>";const a=document.createDocumentFragment();for(;a&&((s=o==null?void 0:o.firstChild)!=null&&s.firstChild);)a.appendChild(o.firstChild.firstChild);return a}const r=t.node();for(;r.hasChildNodes();)r.removeChild(r.firstChild);t.node().appendChild(n(e))}function Wo(t){return t.substring(0,4)!=="ease"?to:Nh[t]??to}function Nu({axisWidth:t,innerRadius:e,outerRadius:n,padAngle:r,cornerRadius:i}){const o=Ro().domain([0,1]).range([0,t/2]),a=o(n);return $u().innerRadius(o(e)).outerRadius(a).padAngle(r).padRadius(a).cornerRadius(i)}const Bh=(t,e)=>e instanceof Function?e(t):uo(e)(t);function Dv(t,e=10){var i;const n=document.createElement("canvas").getContext("2d");return(((i=n==null?void 0:n.measureText(t))==null?void 0:i.width)??0)*e/10}function rE(t){const e=[0,0];return t.length?t.reduce((r,i)=>[i<r[0]?i:r[0],i>r[1]?i:r[1]],[t[0],t[0]]):e}function iE(t){const e=t.filter(n=>n.value!=null&&n.visible!=!1).map(n=>n.value);return rE(e)}function kt(t,e){const n=e.colors[e.colorScheme];return t==="series"?n.series[0]:t=="none"?"none":n[t]!=null?n[t]:n.primary}function An({datum:t,colorType:e,fullChartParams:n}){return e==="series"?t.color?t.color:n.colors[n.colorScheme].series[0]:e=="none"?"none":n.colors[n.colorScheme][e]!=null?n.colors[n.colorScheme][e]:n.colors[n.colorScheme].primary}function ot(t,e,n){const r=n?`--${n}`:"";return`orbcharts-${t}__${e}${r}`}function Tn(t,e){const r=Math.random().toString(36).substr(2,5);return ot(t,e,r)}function Fh(t,e){let n=new dt(()=>{});return t.each(function(){const r=rl(this,e);n=il(n,r)}),n}const pr=({selection:t,pluginName:e,clipPathID:n,seriesLabels$:r,gridContainerPosition$:i,gridAxesTransform$:o,gridGraphicTransform$:a})=>{const s=ot(e,"series"),u=ot(e,"axes"),l=ot(e,"graphic"),c=r.pipe(B((d,g)=>t.selectAll(`g.${s}`).data(d,m=>m).join(m=>m.append("g").classed(s,!0).each((y,b,v)=>{V(v[b]).selectAll(`g.${u}`).data([b]).join(x=>x.append("g").classed(u,!0).attr("clip-path",`url(#${n})`).each((S,$,R)=>{V(R[$]).selectAll("defs").data([$]).join("defs"),V(R[$]).selectAll("g").data([$]).join("g").classed(l,!0)}),x=>x,x=>x.remove())}),m=>m,m=>m.remove())),St(1));U({seriesSelection:c,gridContainerPosition:i}).pipe(W(async d=>d)).subscribe(d=>{d.seriesSelection.transition().attr("transform",(g,m)=>{const y=d.gridContainerPosition[m]??d.gridContainerPosition[0],b=y.translate,v=y.scale;return`translate(${b[0]}, ${b[1]}) scale(${v[0]}, ${v[1]})`})});const f=U({seriesSelection:c,gridAxesTransform:o}).pipe(W(async d=>d),B(d=>d.seriesSelection.select(`g.${u}`).style("transform",d.gridAxesTransform.value)),St(1)),h=f.pipe(B(d=>d.select("defs")),St(1)),p=U({axesSelection:f,gridGraphicTransform:a}).pipe(W(async d=>d),B(d=>{const g=d.axesSelection.select(`g.${l}`);return g.transition().duration(50).style("transform",d.gridGraphicTransform.value),g}),St(1));return{seriesSelection$:c,axesSelection$:f,defsSelection$:h,graphicGSelection$:p}},Cv=({fullDataFormatter$:t,gridAxesSize$:e,computedData$:n,fullChartParams$:r,gridContainerPosition$:i,layout$:o})=>{const a=new nt,s=U({fullDataFormatter:t,gridAxesSize:e,computedData:n}).pipe(W(async h=>h),B(h=>{const p=h.computedData[0]?h.computedData[0].length-1:0,d=h.fullDataFormatter.grid.groupAxis.scaleDomain[0]-h.fullDataFormatter.grid.groupAxis.scalePadding,g=h.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?p+h.fullDataFormatter.grid.groupAxis.scalePadding:h.fullDataFormatter.grid.groupAxis.scaleDomain[1]+h.fullDataFormatter.grid.groupAxis.scalePadding;return[d,g]}),St(1)),u=U({fullDataFormatter:t,computedData:n}).pipe(W(async h=>h),B(h=>h.fullDataFormatter.grid.seriesDirection==="row"?(h.computedData[0]??[]).map(p=>p.groupLabel):h.computedData.map(p=>p[0].groupLabel))),l=U({groupScaleDomain:s,groupLabels:u}).pipe(W(async h=>h),B(h=>h.groupLabels.filter((p,d)=>d>=h.groupScaleDomain[0]&&d<=h.groupScaleDomain[1]))),c=i.pipe(B(h=>h.reduce((d,g)=>g.columnIndex>d?g.columnIndex:d,0)+1),tt()),f=i.pipe(B(h=>h.reduce((d,g)=>g.rowIndex>d?g.rowIndex:d,0)+1),tt());return new dt(h=>{U({dataFormatter:t,axisSize:e,fullChartParams:r,scaleRangeGroupLabels:l,groupLabels:u,groupScaleDomain:s,columnAmount:c,rowAmount:f,layout:o}).pipe(I(a),W(async p=>p)).subscribe(p=>{const d=p.dataFormatter.grid.valueAxis.position==="right"||p.dataFormatter.grid.valueAxis.position==="bottom",g=Tg({axisLabels:p.scaleRangeGroupLabels,axisWidth:p.axisSize.width,padding:p.dataFormatter.grid.groupAxis.scalePadding,reverse:d}),m=b=>p.dataFormatter.grid.groupAxis.position==="bottom"||p.dataFormatter.grid.groupAxis.position==="top"?b.offsetX-p.fullChartParams.padding.left:b.offsetY-p.fullChartParams.padding.top,y=b=>{const v={offsetX:b.offsetX*p.columnAmount%p.layout.rootWidth,offsetY:b.offsetY*p.rowAmount%p.layout.rootHeight},x=m(v),S=g(x),$=Math.ceil(p.groupScaleDomain[0]),R=S+$;return{groupIndex:R,groupLabel:p.groupLabels[R]??""}};return h.next(y),function(){a.next(void 0)}})})},oE=({rootSelection:t,fullDataFormatter$:e,gridAxesSize$:n,computedData$:r,fullChartParams$:i,gridContainerPosition$:o,layout$:a})=>{const s=Fh(t,"mousemove"),u=U({fullDataFormatter:e,gridAxesSize:n,computedData:r}).pipe(W(async b=>b),B(b=>{const v=b.computedData[0]?b.computedData[0].length-1:0,x=b.fullDataFormatter.grid.groupAxis.scaleDomain[0]-b.fullDataFormatter.grid.groupAxis.scalePadding,S=b.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?v+b.fullDataFormatter.grid.groupAxis.scalePadding:b.fullDataFormatter.grid.groupAxis.scaleDomain[1]+b.fullDataFormatter.grid.groupAxis.scalePadding;return[x,S]}),St(1)),l=U({fullDataFormatter:e,computedData:r}).pipe(W(async b=>b),B(b=>b.fullDataFormatter.grid.seriesDirection==="row"?(b.computedData[0]??[]).map(v=>v.groupLabel):b.computedData.map(v=>v[0].groupLabel))),c=U({groupScaleDomain:u,groupLabels:l}).pipe(W(async b=>b),B(b=>b.groupLabels.filter((v,x)=>x>=b.groupScaleDomain[0]&&x<=b.groupScaleDomain[1]))),f=e.pipe(B(b=>b.grid.valueAxis.position==="right"||b.grid.valueAxis.position==="bottom")),h=U({reverse:f,gridAxesSize:n,scaleRangeGroupLabels:c,fullDataFormatter:e}).pipe(W(async b=>b),B(b=>Tg({axisLabels:b.scaleRangeGroupLabels,axisWidth:b.gridAxesSize.width,padding:b.fullDataFormatter.grid.groupAxis.scalePadding,reverse:b.reverse}))),p=o.pipe(B(b=>b.reduce((x,S)=>S.columnIndex>x?S.columnIndex:x,0)+1),tt()),d=o.pipe(B(b=>b.reduce((x,S)=>S.rowIndex>x?S.rowIndex:x,0)+1),tt()),g=U({fullDataFormatter:e,fullChartParams:i,rootMousemove:s,columnAmount:p,rowAmount:d,layout:a}).pipe(W(async b=>b),B(b=>{const v={offsetX:b.rootMousemove.offsetX*b.columnAmount%b.layout.rootWidth,offsetY:b.rootMousemove.offsetY*b.rowAmount%b.layout.rootHeight};return b.fullDataFormatter.grid.groupAxis.position==="bottom"||b.fullDataFormatter.grid.groupAxis.position==="top"?v.offsetX-b.fullChartParams.padding.left:v.offsetY-b.fullChartParams.padding.top})),m=U({xIndexScale:h,axisValue:g,groupScaleDomain:u}).pipe(W(async b=>b),B(b=>{const v=b.xIndexScale(b.axisValue),x=Math.ceil(b.groupScaleDomain[0]);return v+x})),y=U({groupIndex:m,groupLabels:l}).pipe(W(async b=>b),B(b=>b.groupLabels[b.groupIndex]??""));return U({groupIndex:m,groupLabel:y}).pipe(W(async b=>b),B(b=>({groupIndex:b.groupIndex,groupLabel:b.groupLabel})))};function aE(t="curveLinear"){return Tu().x(e=>e.axisX).y(e=>e.axisY).curve(Nh[t])}function sE(t){let e=[[]],n=0;for(let r in t){if(t[r].visible==!1||t[r].value===void 0||t[r].value===null){e[n].length&&(n++,e[n]=[]);continue}e[n].push(t[r])}return e}function uE({selection:t,pathClassName:e,segmentData:n,linePath:r,params:i}){return t.selectAll("path").data(n,(a,s)=>a.length?`${a[0].id}_${a[a.length-1].id}`:s).join(a=>a.append("path").classed(e,!0).attr("fill","none").attr("pointer-events","visibleStroke").style("vector-effect","non-scaling-stroke").style("cursor","pointer"),a=>a,a=>a.remove()).attr("stroke-width",i.lineWidth).attr("stroke",(a,s)=>a[0]&&a[0].color).attr("d",a=>r(a))}function lE({selection:t,seriesLabel:e,fullChartParams:n}){if(t.interrupt("highlight"),!e){t.transition("highlight").duration(200).style("opacity",1);return}t.each((r,i,o)=>{r===e?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}function cE({defsSelection:t,clipPathData:e,transitionDuration:n,transitionEase:r}){t.selectAll("clipPath").data(e).join(i=>i.append("clipPath"),i=>i,i=>i.remove()).attr("id",i=>i.id).each((i,o,a)=>{V(a[o]).selectAll("rect").data([i]).join(s=>{const u=s.append("rect");return u.transition().duration(n).ease(Wo(r)).tween("tween",(l,c,f)=>h=>{const p=l.width*h;u.attr("x",0).attr("y",0).attr("width",d=>p).attr("height",d=>d.height)}),u},s=>s.attr("x",0).attr("y",0).attr("width",u=>u.width).attr("height",u=>u.height),s=>s.remove())})}const Lv=(t,{selection:e,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:u,fullParams$:l,fullDataFormatter$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridAxesSize$:d,gridHighlight$:g,gridContainerPosition$:m,allContainerPosition$:y,layout$:b,event$:v})=>{const x=new nt,S=Tn(t,"clipPath-box"),$=ot(t,"path"),{seriesSelection$:R,axesSelection$:T,defsSelection$:w,graphicGSelection$:P}=pr({selection:e,pluginName:t,clipPathID:S,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:h,gridGraphicTransform$:p}),_=new dt(O=>{const E=l.pipe(I(x)).subscribe(k=>{if(!k)return;const C=aE(k.lineCurve);O.next(C)});return()=>{E.unsubscribe()}}),N=f.pipe(B(O=>O.transitionDuration),tt()),D=f.pipe(B(O=>O.transitionEase),tt());U({defsSelection:w,seriesLabels:a,axisSize:d,transitionDuration:N,transitionEase:D}).pipe(I(x),W(async O=>O)).subscribe(O=>{const k=[{id:S,width:O.axisSize.width,height:O.axisSize.height}].concat(O.seriesLabels.map(C=>({id:`orbcharts__clipPath_${C}`,width:O.axisSize.width,height:O.axisSize.height})));cE({defsSelection:O.defsSelection,clipPathData:k,transitionDuration:O.transitionDuration,transitionEase:O.transitionEase})});const A=n.pipe(B(O=>{const E=new Map;return O.flat().forEach(k=>E.set(k.id,k)),E})),L=Cv({fullDataFormatter$:c,gridAxesSize$:d,computedData$:n,fullChartParams$:f,gridContainerPosition$:y,layout$:b}),M=f.pipe(I(x),B(O=>O.highlightTarget),tt()),G=U({graphicGSelection:P,visibleComputedLayoutData:o,linePath:_,params:l}).pipe(I(x),W(async O=>O),B(O=>{let E=[];return O.graphicGSelection.each((k,C,F)=>{const X=sE(O.visibleComputedLayoutData[C]??[]);E[C]=uE({selection:V(F[C]),pathClassName:$,linePath:O.linePath,segmentData:X,params:O.params})}),E}));return U({pathSelectionArr:G,computedData:n,SeriesDataMap:s,GroupDataMap:u,highlightTarget:M,gridGroupPositionFn:L}).pipe(I(x),W(async O=>O)).subscribe(O=>{O.pathSelectionArr.forEach(E=>{E.on("mouseover",(k,C)=>{k.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:X,groupLabel:Q}=O.gridGroupPositionFn(k),Y=O.GroupDataMap.get(Q).find(q=>q.seriesLabel===F)??C[0];v.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:O.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:O.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:O.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:k,data:O.computedData})}).on("mousemove",(k,C)=>{k.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:X,groupLabel:Q}=O.gridGroupPositionFn(k),Y=O.GroupDataMap.get(Q).find(q=>q.seriesLabel===F)??C[0];v.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:O.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:O.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:O.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:k,data:O.computedData})}).on("mouseout",(k,C)=>{k.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:X,groupLabel:Q}=O.gridGroupPositionFn(k),Y=O.GroupDataMap.get(Q).find(q=>q.seriesLabel===F)??C[0];v.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:O.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:O.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:O.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:k,data:O.computedData})}).on("click",(k,C)=>{k.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:X,groupLabel:Q}=O.gridGroupPositionFn(k),Y=O.GroupDataMap.get(Q).find(q=>q.seriesLabel===F)??C[0];v.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:O.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:O.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:O.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:k,data:O.computedData})})})}),f.pipe(I(x),$i(O=>O.highlightTarget==="series"),W(O=>U({graphicGSelection:P,gridHighlight:g,DataMap:A,fullChartParams:f}).pipe(I(x),W(async E=>E)))).subscribe(O=>{const E=O.gridHighlight[0]?O.gridHighlight[0].seriesLabel:null;lE({selection:O.graphicGSelection,seriesLabel:E,fullChartParams:O.fullChartParams})}),()=>{x.next(void 0)}},fE=0,Pn=2,hE=3,kv=4,ke=5,Rv=6,Oh=7,Bu=8,pE=9,Ev="Lines",dE=ue({name:Ev,defaultParams:gr,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{lineCurve:{toBeTypes:["string"]},lineWidth:{toBeTypes:["number"]}})})(({selection:t,rootSelection:e,name:n,observer:r,subject:i})=>{const o=new nt,a=Lv(Ev,{selection:t,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullDataFormatter$:r.fullDataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,allContainerPosition$:r.gridContainerPosition$,layout$:r.layout$,event$:i.event$});return()=>{o.next(void 0),a()}});function gE(t="curveLinear",e){return Sh().x(n=>n.axisX).y0(n=>e).y1(n=>n.axisY).curve(Nh[t])}function mE(t){let e=[[]],n=0;for(let r in t){if(t[r].visible==!1||t[r].value===void 0||t[r].value===null){e[n].length&&(n++,e[n]=[]);continue}e[n].push(t[r])}return e}function yE({selection:t,pathClassName:e,segmentData:n,areaPath:r,linearGradientIds:i,params:o}){return t.selectAll("path").data(n,(s,u)=>s.length?`${s[0].id}_${s[s.length-1].id}`:u).join(s=>s.append("path").classed(e,!0).attr("fill","none").style("vector-effect","non-scaling-stroke").style("cursor","pointer"),s=>s,s=>s.remove()).attr("fill",(s,u)=>s[0]?`url(#${i[s[0].seriesIndex]})`:"").attr("d",s=>r(s))}function bE({selection:t,seriesLabel:e,fullChartParams:n}){if(t.interrupt("highlight"),!e){t.transition("highlight").duration(200).style("opacity",1);return}t.each((r,i,o)=>{r===e?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}function xE({defsSelection:t,computedData:e,linearGradientIds:n,params:r}){t.selectAll("linearGradient").data(e??[]).join(i=>i.append("linearGradient").attr("x1","0%").attr("x2","0%").attr("y1","100%").attr("y2","0%").attr("spreadMethod","pad"),i=>i,i=>i.remove()).attr("id",(i,o)=>i[0]?n[i[0].seriesIndex]:"").html((i,o)=>{const a=i[0]?i[0].color:"";return`
|
42
|
+
----> find in '${n}'`}function nD({chartType:e,config:t,initFn:n}){const r=new Xr,i=new WeakMap;let o=()=>{},a;const s=new Wg(t.defaultParams),l=new Wg({}),u=s.pipe(dc(c=>l.pipe(u0(r),Vr(f=>{try{const{status:h,columnName:p,expectToBe:d}=t.validator(f,{validateColumns:oS});if(h==="error")throw new Error(eD({columnName:p,expectToBe:d,from:`${t.name}.params$`}));h==="warning"&&console.warn(tD({columnName:p,expectToBe:d,from:`${t.name}.params$`}))}catch(h){console.error(JP(h))}return Fu(f,c)}))),KP(1));return{params$:l,name:t.name,chartType:e,defaultParams:t.defaultParams,layerIndex:t.layerIndex,init(){a&&(o=n(a)??(()=>{}),i.set(a.selection,a))},destroy(){o(),a&&(a.selection.remove(),a=void 0),r.next(void 0)},setPresetParams:c=>{s.next(Fu(c,t.defaultParams))},setContext:c=>{a=c,a.observer.fullParams$=u}}}const Ur=e=>function(t){return function(n){return class{constructor(){const r=nD({chartType:e,config:t,initFn:n});this.params$=r.params$,this.name=r.name,this.chartType=r.chartType,this.defaultParams=r.defaultParams,this.layerIndex=r.layerIndex,this.init=r.init,this.destroy=r.destroy,this.setPresetParams=r.setPresetParams,this.setContext=r.setContext}}}},Sn=Ur("series"),st=Ur("grid"),dt=Ur("multiGrid"),Hn=Ur("multiValue"),ja=Ur("relationship"),gc=Ur("tree");function Se(e,t){return e==null||t==null?NaN:e<t?-1:e>t?1:e>=t?0:NaN}function g0(e,t){return e==null||t==null?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function qa(e){let t,n,r;e.length!==2?(t=Se,n=(s,l)=>Se(e(s),l),r=(s,l)=>e(s)-l):(t=e===Se||e===g0?e:rD,n=e,r=e);function i(s,l,u=0,c=s.length){if(u<c){if(t(l,l)!==0)return c;do{const f=u+c>>>1;n(s[f],l)<0?u=f+1:c=f}while(u<c)}return u}function o(s,l,u=0,c=s.length){if(u<c){if(t(l,l)!==0)return c;do{const f=u+c>>>1;n(s[f],l)<=0?u=f+1:c=f}while(u<c)}return u}function a(s,l,u=0,c=s.length){const f=i(s,l,u,c-1);return f>u&&r(s[f-1],l)>-r(s[f],l)?f-1:f}return{left:i,center:a,right:o}}function rD(){return 0}function Za(e){return e===null?NaN:+e}function*iD(e,t){if(t===void 0)for(let n of e)n!=null&&(n=+n)>=n&&(yield n);else{let n=-1;for(let r of e)(r=t(r,++n,e))!=null&&(r=+r)>=r&&(yield r)}}const m0=qa(Se),y0=m0.right,oD=m0.left,aD=qa(Za).center,jn=y0;function sD(e,t){if(!((t=+t)>=0))throw new RangeError("invalid r");let n=e.length;if(!((n=Math.floor(n))>=0))throw new RangeError("invalid length");if(!n||!t)return e;const r=mc(t),i=e.slice();return r(e,i,0,n,1),r(i,e,0,n,1),r(e,i,0,n,1),e}const b0=x0(mc),lD=x0(uD);function x0(e){return function(t,n,r=n){if(!((n=+n)>=0))throw new RangeError("invalid rx");if(!((r=+r)>=0))throw new RangeError("invalid ry");let{data:i,width:o,height:a}=t;if(!((o=Math.floor(o))>=0))throw new RangeError("invalid width");if(!((a=Math.floor(a!==void 0?a:i.length/o))>=0))throw new RangeError("invalid height");if(!o||!a||!n&&!r)return t;const s=n&&e(n),l=r&&e(r),u=i.slice();return s&&l?(Hr(s,u,i,o,a),Hr(s,i,u,o,a),Hr(s,u,i,o,a),jr(l,i,u,o,a),jr(l,u,i,o,a),jr(l,i,u,o,a)):s?(Hr(s,i,u,o,a),Hr(s,u,i,o,a),Hr(s,i,u,o,a)):l&&(jr(l,i,u,o,a),jr(l,u,i,o,a),jr(l,i,u,o,a)),t}}function Hr(e,t,n,r,i){for(let o=0,a=r*i;o<a;)e(t,n,o,o+=r,1)}function jr(e,t,n,r,i){for(let o=0,a=r*i;o<r;++o)e(t,n,o,o+a,r)}function uD(e){const t=mc(e);return(n,r,i,o,a)=>{i<<=2,o<<=2,a<<=2,t(n,r,i+0,o+0,a),t(n,r,i+1,o+1,a),t(n,r,i+2,o+2,a),t(n,r,i+3,o+3,a)}}function mc(e){const t=Math.floor(e);if(t===e)return cD(e);const n=e-t,r=2*e+1;return(i,o,a,s,l)=>{if(!((s-=l)>=a))return;let u=t*o[a];const c=l*t,f=c+l;for(let h=a,p=a+c;h<p;h+=l)u+=o[Math.min(s,h)];for(let h=a,p=s;h<=p;h+=l)u+=o[Math.min(s,h+c)],i[h]=(u+n*(o[Math.max(a,h-f)]+o[Math.min(s,h+f)]))/r,u-=o[Math.max(a,h-c)]}}function cD(e){const t=2*e+1;return(n,r,i,o,a)=>{if(!((o-=a)>=i))return;let s=e*r[i];const l=a*e;for(let u=i,c=i+l;u<c;u+=a)s+=r[Math.min(o,u)];for(let u=i,c=o;u<=c;u+=a)s+=r[Math.min(o,u+l)],n[u]=s/t,s-=r[Math.max(i,u-l)]}}function Ka(e,t){let n=0;if(t===void 0)for(let r of e)r!=null&&(r=+r)>=r&&++n;else{let r=-1;for(let i of e)(i=t(i,++r,e))!=null&&(i=+i)>=i&&++n}return n}function fD(e){return e.length|0}function hD(e){return!(e>0)}function pD(e){return typeof e!="object"||"length"in e?e:Array.from(e)}function dD(e){return t=>e(...t)}function gD(...e){const t=typeof e[e.length-1]=="function"&&dD(e.pop());e=e.map(pD);const n=e.map(fD),r=e.length-1,i=new Array(r+1).fill(0),o=[];if(r<0||n.some(hD))return o;for(;;){o.push(i.map((s,l)=>e[l][s]));let a=r;for(;++i[a]===n[a];){if(a===0)return t?o.map(t):o;i[a--]=0}}}function mD(e,t){var n=0,r=0;return Float64Array.from(e,t===void 0?i=>n+=+i||0:i=>n+=+t(i,r++,e)||0)}function v0(e,t){let n=0,r,i=0,o=0;if(t===void 0)for(let a of e)a!=null&&(a=+a)>=a&&(r=a-i,i+=r/++n,o+=r*(a-i));else{let a=-1;for(let s of e)(s=t(s,++a,e))!=null&&(s=+s)>=s&&(r=s-i,i+=r/++n,o+=r*(s-i))}if(n>1)return o/(n-1)}function $0(e,t){const n=v0(e,t);return n&&Math.sqrt(n)}function io(e,t){let n,r;if(t===void 0)for(const i of e)i!=null&&(n===void 0?i>=i&&(n=r=i):(n>i&&(n=i),r<i&&(r=i)));else{let i=-1;for(let o of e)(o=t(o,++i,e))!=null&&(n===void 0?o>=o&&(n=r=o):(n>o&&(n=o),r<o&&(r=o)))}return[n,r]}class ke{constructor(){this._partials=new Float64Array(32),this._n=0}add(t){const n=this._partials;let r=0;for(let i=0;i<this._n&&i<32;i++){const o=n[i],a=t+o,s=Math.abs(t)<Math.abs(o)?t-(a-o):o-(a-t);s&&(n[r++]=s),t=a}return n[r]=t,this._n=r+1,this}valueOf(){const t=this._partials;let n=this._n,r,i,o,a=0;if(n>0){for(a=t[--n];n>0&&(r=a,i=t[--n],a=r+i,o=i-(a-r),!o););n>0&&(o<0&&t[n-1]<0||o>0&&t[n-1]>0)&&(i=o*2,r=a+i,i==r-a&&(a=r))}return a}}function yD(e,t){const n=new ke;if(t===void 0)for(let r of e)(r=+r)&&n.add(r);else{let r=-1;for(let i of e)(i=+t(i,++r,e))&&n.add(i)}return+n}function bD(e,t){const n=new ke;let r=-1;return Float64Array.from(e,t===void 0?i=>n.add(+i||0):i=>n.add(+t(i,++r,e)||0))}class oo extends Map{constructor(t,n=w0){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:n}}),t!=null)for(const[r,i]of t)this.set(r,i)}get(t){return super.get(yc(this,t))}has(t){return super.has(yc(this,t))}set(t,n){return super.set(_0(this,t),n)}delete(t){return super.delete(S0(this,t))}}class qn extends Set{constructor(t,n=w0){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:n}}),t!=null)for(const r of t)this.add(r)}has(t){return super.has(yc(this,t))}add(t){return super.add(_0(this,t))}delete(t){return super.delete(S0(this,t))}}function yc({_intern:e,_key:t},n){const r=t(n);return e.has(r)?e.get(r):n}function _0({_intern:e,_key:t},n){const r=t(n);return e.has(r)?e.get(r):(e.set(r,n),n)}function S0({_intern:e,_key:t},n){const r=t(n);return e.has(r)&&(n=e.get(r),e.delete(r)),n}function w0(e){return e!==null&&typeof e=="object"?e.valueOf():e}function qr(e){return e}function T0(e,...t){return Zr(e,qr,qr,t)}function A0(e,...t){return Zr(e,Array.from,qr,t)}function P0(e,t){for(let n=1,r=t.length;n<r;++n)e=e.flatMap(i=>i.pop().map(([o,a])=>[...i,o,a]));return e}function xD(e,...t){return P0(A0(e,...t),t)}function vD(e,t,...n){return P0(M0(e,t,...n),n)}function D0(e,t,...n){return Zr(e,qr,t,n)}function M0(e,t,...n){return Zr(e,Array.from,t,n)}function $D(e,...t){return Zr(e,qr,C0,t)}function _D(e,...t){return Zr(e,Array.from,C0,t)}function C0(e){if(e.length!==1)throw new Error("duplicate key");return e[0]}function Zr(e,t,n,r){return function i(o,a){if(a>=r.length)return n(o);const s=new oo,l=r[a++];let u=-1;for(const c of o){const f=l(c,++u,o),h=s.get(f);h?h.push(c):s.set(f,[c])}for(const[c,f]of s)s.set(c,i(f,a));return t(s)}(e,0)}function L0(e,t){return Array.from(t,n=>e[n])}function bc(e,...t){if(typeof e[Symbol.iterator]!="function")throw new TypeError("values is not iterable");e=Array.from(e);let[n]=t;if(n&&n.length!==2||t.length>1){const r=Uint32Array.from(e,(i,o)=>o);return t.length>1?(t=t.map(i=>e.map(i)),r.sort((i,o)=>{for(const a of t){const s=Kr(a[i],a[o]);if(s)return s}})):(n=e.map(n),r.sort((i,o)=>Kr(n[i],n[o]))),L0(e,r)}return e.sort(xc(n))}function xc(e=Se){if(e===Se)return Kr;if(typeof e!="function")throw new TypeError("compare is not a function");return(t,n)=>{const r=e(t,n);return r||r===0?r:(e(n,n)===0)-(e(t,t)===0)}}function Kr(e,t){return(e==null||!(e>=e))-(t==null||!(t>=t))||(e<t?-1:e>t?1:0)}function SD(e,t,n){return(t.length!==2?bc(D0(e,t,n),([r,i],[o,a])=>Se(i,a)||Se(r,o)):bc(T0(e,n),([r,i],[o,a])=>t(i,a)||Se(r,o))).map(([r])=>r)}var wD=Array.prototype,TD=wD.slice;function vc(e){return()=>e}const AD=Math.sqrt(50),PD=Math.sqrt(10),DD=Math.sqrt(2);function Qa(e,t,n){const r=(t-e)/Math.max(0,n),i=Math.floor(Math.log10(r)),o=r/Math.pow(10,i),a=o>=AD?10:o>=PD?5:o>=DD?2:1;let s,l,u;return i<0?(u=Math.pow(10,-i)/a,s=Math.round(e*u),l=Math.round(t*u),s/u<e&&++s,l/u>t&&--l,u=-u):(u=Math.pow(10,i)*a,s=Math.round(e/u),l=Math.round(t/u),s*u<e&&++s,l*u>t&&--l),l<s&&.5<=n&&n<2?Qa(e,t,n*2):[s,l,u]}function Zn(e,t,n){if(t=+t,e=+e,n=+n,!(n>0))return[];if(e===t)return[e];const r=t<e,[i,o,a]=r?Qa(t,e,n):Qa(e,t,n);if(!(o>=i))return[];const s=o-i+1,l=new Array(s);if(r)if(a<0)for(let u=0;u<s;++u)l[u]=(o-u)/-a;else for(let u=0;u<s;++u)l[u]=(o-u)*a;else if(a<0)for(let u=0;u<s;++u)l[u]=(i+u)/-a;else for(let u=0;u<s;++u)l[u]=(i+u)*a;return l}function Kn(e,t,n){return t=+t,e=+e,n=+n,Qa(e,t,n)[2]}function Ja(e,t,n){t=+t,e=+e,n=+n;const r=t<e,i=r?Kn(t,e,n):Kn(e,t,n);return(r?-1:1)*(i<0?1/-i:i)}function $c(e,t,n){let r;for(;;){const i=Kn(e,t,n);if(i===r||i===0||!isFinite(i))return[e,t];i>0?(e=Math.floor(e/i)*i,t=Math.ceil(t/i)*i):i<0&&(e=Math.ceil(e*i)/i,t=Math.floor(t*i)/i),r=i}}function _c(e){return Math.max(1,Math.ceil(Math.log(Ka(e))/Math.LN2)+1)}function k0(){var e=qr,t=io,n=_c;function r(i){Array.isArray(i)||(i=Array.from(i));var o,a=i.length,s,l,u=new Array(a);for(o=0;o<a;++o)u[o]=e(i[o],o,i);var c=t(u),f=c[0],h=c[1],p=n(u,f,h);if(!Array.isArray(p)){const v=h,x=+p;if(t===io&&([f,h]=$c(f,h,x)),p=Zn(f,h,x),p[0]<=f&&(l=Kn(f,h,x)),p[p.length-1]>=h)if(v>=h&&t===io){const _=Kn(f,h,x);isFinite(_)&&(_>0?h=(Math.floor(h/_)+1)*_:_<0&&(h=(Math.ceil(h*-_)+1)/-_))}else p.pop()}for(var d=p.length,m=0,g=d;p[m]<=f;)++m;for(;p[g-1]>h;)--g;(m||g<d)&&(p=p.slice(m,g),d=g-m);var y=new Array(d+1),b;for(o=0;o<=d;++o)b=y[o]=[],b.x0=o>0?p[o-1]:f,b.x1=o<d?p[o]:h;if(isFinite(l)){if(l>0)for(o=0;o<a;++o)(s=u[o])!=null&&f<=s&&s<=h&&y[Math.min(d,Math.floor((s-f)/l))].push(i[o]);else if(l<0){for(o=0;o<a;++o)if((s=u[o])!=null&&f<=s&&s<=h){const v=Math.floor((f-s)*l);y[Math.min(d,v+(p[v]<=s))].push(i[o])}}}else for(o=0;o<a;++o)(s=u[o])!=null&&f<=s&&s<=h&&y[jn(p,s,0,d)].push(i[o]);return y}return r.value=function(i){return arguments.length?(e=typeof i=="function"?i:vc(i),r):e},r.domain=function(i){return arguments.length?(t=typeof i=="function"?i:vc([i[0],i[1]]),r):t},r.thresholds=function(i){return arguments.length?(n=typeof i=="function"?i:vc(Array.isArray(i)?TD.call(i):i),r):n},r}function ao(e,t){let n;if(t===void 0)for(const r of e)r!=null&&(n<r||n===void 0&&r>=r)&&(n=r);else{let r=-1;for(let i of e)(i=t(i,++r,e))!=null&&(n<i||n===void 0&&i>=i)&&(n=i)}return n}function Sc(e,t){let n,r=-1,i=-1;if(t===void 0)for(const o of e)++i,o!=null&&(n<o||n===void 0&&o>=o)&&(n=o,r=i);else for(let o of e)(o=t(o,++i,e))!=null&&(n<o||n===void 0&&o>=o)&&(n=o,r=i);return r}function es(e,t){let n;if(t===void 0)for(const r of e)r!=null&&(n>r||n===void 0&&r>=r)&&(n=r);else{let r=-1;for(let i of e)(i=t(i,++r,e))!=null&&(n>i||n===void 0&&i>=i)&&(n=i)}return n}function wc(e,t){let n,r=-1,i=-1;if(t===void 0)for(const o of e)++i,o!=null&&(n>o||n===void 0&&o>=o)&&(n=o,r=i);else for(let o of e)(o=t(o,++i,e))!=null&&(n>o||n===void 0&&o>=o)&&(n=o,r=i);return r}function ts(e,t,n=0,r=1/0,i){if(t=Math.floor(t),n=Math.floor(Math.max(0,n)),r=Math.floor(Math.min(e.length-1,r)),!(n<=t&&t<=r))return e;for(i=i===void 0?Kr:xc(i);r>n;){if(r-n>600){const l=r-n+1,u=t-n+1,c=Math.log(l),f=.5*Math.exp(2*c/3),h=.5*Math.sqrt(c*f*(l-f)/l)*(u-l/2<0?-1:1),p=Math.max(n,Math.floor(t-u*f/l+h)),d=Math.min(r,Math.floor(t+(l-u)*f/l+h));ts(e,t,p,d,i)}const o=e[t];let a=n,s=r;for(so(e,n,t),i(e[r],o)>0&&so(e,n,r);a<s;){for(so(e,a,s),++a,--s;i(e[a],o)<0;)++a;for(;i(e[s],o)>0;)--s}i(e[n],o)===0?so(e,n,s):(++s,so(e,s,r)),s<=t&&(n=s+1),t<=s&&(r=s-1)}return e}function so(e,t,n){const r=e[t];e[t]=e[n],e[n]=r}function R0(e,t=Se){let n,r=!1;if(t.length===1){let i;for(const o of e){const a=t(o);(r?Se(a,i)>0:Se(a,a)===0)&&(n=o,i=a,r=!0)}}else for(const i of e)(r?t(i,n)>0:t(i,i)===0)&&(n=i,r=!0);return n}function lo(e,t,n){if(e=Float64Array.from(iD(e,n)),!(!(r=e.length)||isNaN(t=+t))){if(t<=0||r<2)return es(e);if(t>=1)return ao(e);var r,i=(r-1)*t,o=Math.floor(i),a=ao(ts(e,o).subarray(0,o+1)),s=es(e.subarray(o+1));return a+(s-a)*(i-o)}}function E0(e,t,n=Za){if(!(!(r=e.length)||isNaN(t=+t))){if(t<=0||r<2)return+n(e[0],0,e);if(t>=1)return+n(e[r-1],r-1,e);var r,i=(r-1)*t,o=Math.floor(i),a=+n(e[o],o,e),s=+n(e[o+1],o+1,e);return a+(s-a)*(i-o)}}function I0(e,t,n=Za){if(!isNaN(t=+t)){if(r=Float64Array.from(e,(s,l)=>Za(n(e[l],l,e))),t<=0)return wc(r);if(t>=1)return Sc(r);var r,i=Uint32Array.from(e,(s,l)=>l),o=r.length-1,a=Math.floor(o*t);return ts(i,a,0,o,(s,l)=>Kr(r[s],r[l])),a=R0(i.subarray(0,a+1),s=>r[s]),a>=0?a:-1}}function MD(e,t,n){const r=Ka(e),i=lo(e,.75)-lo(e,.25);return r&&i?Math.ceil((n-t)/(2*i*Math.pow(r,-1/3))):1}function CD(e,t,n){const r=Ka(e),i=$0(e);return r&&i?Math.ceil((n-t)*Math.cbrt(r)/(3.49*i)):1}function LD(e,t){let n=0,r=0;if(t===void 0)for(let i of e)i!=null&&(i=+i)>=i&&(++n,r+=i);else{let i=-1;for(let o of e)(o=t(o,++i,e))!=null&&(o=+o)>=o&&(++n,r+=o)}if(n)return r/n}function kD(e,t){return lo(e,.5,t)}function RD(e,t){return I0(e,.5,t)}function*ED(e){for(const t of e)yield*t}function Tc(e){return Array.from(ED(e))}function ID(e,t){const n=new oo;if(t===void 0)for(let o of e)o!=null&&o>=o&&n.set(o,(n.get(o)||0)+1);else{let o=-1;for(let a of e)(a=t(a,++o,e))!=null&&a>=a&&n.set(a,(n.get(a)||0)+1)}let r,i=0;for(const[o,a]of n)a>i&&(i=a,r=o);return r}function BD(e,t=ND){const n=[];let r,i=!1;for(const o of e)i&&n.push(t(r,o)),r=o,i=!0;return n}function ND(e,t){return[e,t]}function wn(e,t,n){e=+e,t=+t,n=(i=arguments.length)<2?(t=e,e=0,1):i<3?1:+n;for(var r=-1,i=Math.max(0,Math.ceil((t-e)/n))|0,o=new Array(i);++r<i;)o[r]=e+r*n;return o}function FD(e,t=Se){if(typeof e[Symbol.iterator]!="function")throw new TypeError("values is not iterable");let n=Array.from(e);const r=new Float64Array(n.length);t.length!==2&&(n=n.map(t),t=Se);const i=(s,l)=>t(n[s],n[l]);let o,a;return e=Uint32Array.from(n,(s,l)=>l),e.sort(t===Se?(s,l)=>Kr(n[s],n[l]):xc(i)),e.forEach((s,l)=>{const u=i(s,o===void 0?s:o);u>=0?((o===void 0||u>0)&&(o=s,a=l),r[s]=a):r[s]=NaN}),r}function zD(e,t=Se){let n,r=!1;if(t.length===1){let i;for(const o of e){const a=t(o);(r?Se(a,i)<0:Se(a,a)===0)&&(n=o,i=a,r=!0)}}else for(const i of e)(r?t(i,n)<0:t(i,i)===0)&&(n=i,r=!0);return n}function B0(e,t=Se){if(t.length===1)return wc(e,t);let n,r=-1,i=-1;for(const o of e)++i,(r<0?t(o,o)===0:t(o,n)<0)&&(n=o,r=i);return r}function OD(e,t=Se){if(t.length===1)return Sc(e,t);let n,r=-1,i=-1;for(const o of e)++i,(r<0?t(o,o)===0:t(o,n)>0)&&(n=o,r=i);return r}function GD(e,t){const n=B0(e,t);return n<0?void 0:n}const YD=N0(Math.random);function N0(e){return function(n,r=0,i=n.length){let o=i-(r=+r);for(;o;){const a=e()*o--|0,s=n[o+r];n[o+r]=n[a+r],n[a+r]=s}return n}}function Ac(e,t){let n=0;if(t===void 0)for(let r of e)(r=+r)&&(n+=r);else{let r=-1;for(let i of e)(i=+t(i,++r,e))&&(n+=i)}return n}function F0(e){if(!(o=e.length))return[];for(var t=-1,n=es(e,WD),r=new Array(n);++t<n;)for(var i=-1,o,a=r[t]=new Array(o);++i<o;)a[i]=e[i][t];return r}function WD(e){return e.length}function XD(){return F0(arguments)}function VD(e,t){if(typeof t!="function")throw new TypeError("test is not a function");let n=-1;for(const r of e)if(!t(r,++n,e))return!1;return!0}function UD(e,t){if(typeof t!="function")throw new TypeError("test is not a function");let n=-1;for(const r of e)if(t(r,++n,e))return!0;return!1}function HD(e,t){if(typeof t!="function")throw new TypeError("test is not a function");const n=[];let r=-1;for(const i of e)t(i,++r,e)&&n.push(i);return n}function jD(e,t){if(typeof e[Symbol.iterator]!="function")throw new TypeError("values is not iterable");if(typeof t!="function")throw new TypeError("mapper is not a function");return Array.from(e,(n,r)=>t(n,r,e))}function qD(e,t,n){if(typeof t!="function")throw new TypeError("reducer is not a function");const r=e[Symbol.iterator]();let i,o,a=-1;if(arguments.length<3){if({done:i,value:n}=r.next(),i)return;++a}for(;{done:i,value:o}=r.next(),!i;)n=t(n,o,++a,e);return n}function ZD(e){if(typeof e[Symbol.iterator]!="function")throw new TypeError("values is not iterable");return Array.from(e).reverse()}function KD(e,...t){e=new qn(e);for(const n of t)for(const r of n)e.delete(r);return e}function QD(e,t){const n=t[Symbol.iterator](),r=new qn;for(const i of e){if(r.has(i))return!1;let o,a;for(;({value:o,done:a}=n.next())&&!a;){if(Object.is(i,o))return!1;r.add(o)}}return!0}function JD(e,...t){e=new qn(e),t=t.map(eM);e:for(const n of e)for(const r of t)if(!r.has(n)){e.delete(n);continue e}return e}function eM(e){return e instanceof qn?e:new qn(e)}function z0(e,t){const n=e[Symbol.iterator](),r=new Set;for(const i of t){const o=O0(i);if(r.has(o))continue;let a,s;for(;{value:a,done:s}=n.next();){if(s)return!1;const l=O0(a);if(r.add(l),Object.is(o,l))break}}return!0}function O0(e){return e!==null&&typeof e=="object"?e.valueOf():e}function tM(e,t){return z0(t,e)}function nM(...e){const t=new qn;for(const n of e)for(const r of n)t.add(r);return t}function rM(e){return e}var ns=1,rs=2,Pc=3,uo=4,G0=1e-6;function iM(e){return"translate("+e+",0)"}function oM(e){return"translate(0,"+e+")"}function aM(e){return t=>+e(t)}function sM(e,t){return t=Math.max(0,e.bandwidth()-t*2)/2,e.round()&&(t=Math.round(t)),n=>+e(n)+t}function lM(){return!this.__axis}function is(e,t){var n=[],r=null,i=null,o=6,a=6,s=3,l=typeof window<"u"&&window.devicePixelRatio>1?0:.5,u=e===ns||e===uo?-1:1,c=e===uo||e===rs?"x":"y",f=e===ns||e===Pc?iM:oM;function h(p){var d=r??(t.ticks?t.ticks.apply(t,n):t.domain()),m=i??(t.tickFormat?t.tickFormat.apply(t,n):rM),g=Math.max(o,0)+s,y=t.range(),b=+y[0]+l,v=+y[y.length-1]+l,x=(t.bandwidth?sM:aM)(t.copy(),l),_=p.selection?p.selection():p,A=_.selectAll(".domain").data([null]),S=_.selectAll(".tick").data(d,t).order(),P=S.exit(),M=S.enter().append("g").attr("class","tick"),B=S.select("line"),$=S.select("text");A=A.merge(A.enter().insert("path",".tick").attr("class","domain").attr("stroke","currentColor")),S=S.merge(M),B=B.merge(M.append("line").attr("stroke","currentColor").attr(c+"2",u*o)),$=$.merge(M.append("text").attr("fill","currentColor").attr(c,u*g).attr("dy",e===ns?"0em":e===Pc?"0.71em":"0.32em")),p!==_&&(A=A.transition(p),S=S.transition(p),B=B.transition(p),$=$.transition(p),P=P.transition(p).attr("opacity",G0).attr("transform",function(k){return isFinite(k=x(k))?f(k+l):this.getAttribute("transform")}),M.attr("opacity",G0).attr("transform",function(k){var C=this.parentNode.__axis;return f((C&&isFinite(C=C(k))?C:x(k))+l)})),P.remove(),A.attr("d",e===uo||e===rs?a?"M"+u*a+","+b+"H"+l+"V"+v+"H"+u*a:"M"+l+","+b+"V"+v:a?"M"+b+","+u*a+"V"+l+"H"+v+"V"+u*a:"M"+b+","+l+"H"+v),S.attr("opacity",1).attr("transform",function(k){return f(x(k)+l)}),B.attr(c+"2",u*o),$.attr(c,u*g).text(m),_.filter(lM).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",e===rs?"start":e===uo?"end":"middle"),_.each(function(){this.__axis=x})}return h.scale=function(p){return arguments.length?(t=p,h):t},h.ticks=function(){return n=Array.from(arguments),h},h.tickArguments=function(p){return arguments.length?(n=p==null?[]:Array.from(p),h):n.slice()},h.tickValues=function(p){return arguments.length?(r=p==null?null:Array.from(p),h):r&&r.slice()},h.tickFormat=function(p){return arguments.length?(i=p,h):i},h.tickSize=function(p){return arguments.length?(o=a=+p,h):o},h.tickSizeInner=function(p){return arguments.length?(o=+p,h):o},h.tickSizeOuter=function(p){return arguments.length?(a=+p,h):a},h.tickPadding=function(p){return arguments.length?(s=+p,h):s},h.offset=function(p){return arguments.length?(l=+p,h):l},h}function uM(e){return is(ns,e)}function cM(e){return is(rs,e)}function Dc(e){return is(Pc,e)}function Mc(e){return is(uo,e)}var fM={value:()=>{}};function Qn(){for(var e=0,t=arguments.length,n={},r;e<t;++e){if(!(r=arguments[e]+"")||r in n||/[\s.]/.test(r))throw new Error("illegal type: "+r);n[r]=[]}return new os(n)}function os(e){this._=e}function hM(e,t){return e.trim().split(/^|\s+/).map(function(n){var r="",i=n.indexOf(".");if(i>=0&&(r=n.slice(i+1),n=n.slice(0,i)),n&&!t.hasOwnProperty(n))throw new Error("unknown type: "+n);return{type:n,name:r}})}os.prototype=Qn.prototype={constructor:os,on:function(e,t){var n=this._,r=hM(e+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(e=r[o]).type)&&(i=pM(n[i],e.name)))return i;return}if(t!=null&&typeof t!="function")throw new Error("invalid callback: "+t);for(;++o<a;)if(i=(e=r[o]).type)n[i]=Y0(n[i],e.name,t);else if(t==null)for(i in n)n[i]=Y0(n[i],e.name,null);return this},copy:function(){var e={},t=this._;for(var n in t)e[n]=t[n].slice();return new os(e)},call:function(e,t){if((i=arguments.length-2)>0)for(var n=new Array(i),r=0,i,o;r<i;++r)n[r]=arguments[r+2];if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(o=this._[e],r=0,i=o.length;r<i;++r)o[r].value.apply(t,n)},apply:function(e,t,n){if(!this._.hasOwnProperty(e))throw new Error("unknown type: "+e);for(var r=this._[e],i=0,o=r.length;i<o;++i)r[i].value.apply(t,n)}};function pM(e,t){for(var n=0,r=e.length,i;n<r;++n)if((i=e[n]).name===t)return i.value}function Y0(e,t,n){for(var r=0,i=e.length;r<i;++r)if(e[r].name===t){e[r]=fM,e=e.slice(0,r).concat(e.slice(r+1));break}return n!=null&&e.push({name:t,value:n}),e}var Cc="http://www.w3.org/1999/xhtml";const Lc={svg:"http://www.w3.org/2000/svg",xhtml:Cc,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function co(e){var t=e+="",n=t.indexOf(":");return n>=0&&(t=e.slice(0,n))!=="xmlns"&&(e=e.slice(n+1)),Lc.hasOwnProperty(t)?{space:Lc[t],local:e}:e}function dM(e){return function(){var t=this.ownerDocument,n=this.namespaceURI;return n===Cc&&t.documentElement.namespaceURI===Cc?t.createElement(e):t.createElementNS(n,e)}}function gM(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function as(e){var t=co(e);return(t.local?gM:dM)(t)}function mM(){}function ss(e){return e==null?mM:function(){return this.querySelector(e)}}function yM(e){typeof e!="function"&&(e=ss(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=new Array(a),l,u,c=0;c<a;++c)(l=o[c])&&(u=e.call(l,l.__data__,c,o))&&("__data__"in l&&(u.__data__=l.__data__),s[c]=u);return new He(r,this._parents)}function W0(e){return e==null?[]:Array.isArray(e)?e:Array.from(e)}function bM(){return[]}function kc(e){return e==null?bM:function(){return this.querySelectorAll(e)}}function xM(e){return function(){return W0(e.apply(this,arguments))}}function vM(e){typeof e=="function"?e=xM(e):e=kc(e);for(var t=this._groups,n=t.length,r=[],i=[],o=0;o<n;++o)for(var a=t[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&(r.push(e.call(l,l.__data__,u,a)),i.push(l));return new He(r,i)}function Rc(e){return function(){return this.matches(e)}}function X0(e){return function(t){return t.matches(e)}}var $M=Array.prototype.find;function _M(e){return function(){return $M.call(this.children,e)}}function SM(){return this.firstElementChild}function wM(e){return this.select(e==null?SM:_M(typeof e=="function"?e:X0(e)))}var TM=Array.prototype.filter;function AM(){return Array.from(this.children)}function PM(e){return function(){return TM.call(this.children,e)}}function DM(e){return this.selectAll(e==null?AM:PM(typeof e=="function"?e:X0(e)))}function MM(e){typeof e!="function"&&(e=Rc(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new He(r,this._parents)}function V0(e){return new Array(e.length)}function CM(){return new He(this._enter||this._groups.map(V0),this._parents)}function ls(e,t){this.ownerDocument=e.ownerDocument,this.namespaceURI=e.namespaceURI,this._next=null,this._parent=e,this.__data__=t}ls.prototype={constructor:ls,appendChild:function(e){return this._parent.insertBefore(e,this._next)},insertBefore:function(e,t){return this._parent.insertBefore(e,t)},querySelector:function(e){return this._parent.querySelector(e)},querySelectorAll:function(e){return this._parent.querySelectorAll(e)}};function LM(e){return function(){return e}}function kM(e,t,n,r,i,o){for(var a=0,s,l=t.length,u=o.length;a<u;++a)(s=t[a])?(s.__data__=o[a],r[a]=s):n[a]=new ls(e,o[a]);for(;a<l;++a)(s=t[a])&&(i[a]=s)}function RM(e,t,n,r,i,o,a){var s,l,u=new Map,c=t.length,f=o.length,h=new Array(c),p;for(s=0;s<c;++s)(l=t[s])&&(h[s]=p=a.call(l,l.__data__,s,t)+"",u.has(p)?i[s]=l:u.set(p,l));for(s=0;s<f;++s)p=a.call(e,o[s],s,o)+"",(l=u.get(p))?(r[s]=l,l.__data__=o[s],u.delete(p)):n[s]=new ls(e,o[s]);for(s=0;s<c;++s)(l=t[s])&&u.get(h[s])===l&&(i[s]=l)}function EM(e){return e.__data__}function IM(e,t){if(!arguments.length)return Array.from(this,EM);var n=t?RM:kM,r=this._parents,i=this._groups;typeof e!="function"&&(e=LM(e));for(var o=i.length,a=new Array(o),s=new Array(o),l=new Array(o),u=0;u<o;++u){var c=r[u],f=i[u],h=f.length,p=BM(e.call(c,c&&c.__data__,u,r)),d=p.length,m=s[u]=new Array(d),g=a[u]=new Array(d),y=l[u]=new Array(h);n(c,f,m,g,y,p,t);for(var b=0,v=0,x,_;b<d;++b)if(x=m[b]){for(b>=v&&(v=b+1);!(_=g[v])&&++v<d;);x._next=_||null}}return a=new He(a,r),a._enter=s,a._exit=l,a}function BM(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function NM(){return new He(this._exit||this._groups.map(V0),this._parents)}function FM(e,t,n){var r=this.enter(),i=this,o=this.exit();return typeof e=="function"?(r=e(r),r&&(r=r.selection())):r=r.append(e+""),t!=null&&(i=t(i),i&&(i=i.selection())),n==null?o.remove():n(o),r&&i?r.merge(i).order():i}function zM(e){for(var t=e.selection?e.selection():e,n=this._groups,r=t._groups,i=n.length,o=r.length,a=Math.min(i,o),s=new Array(i),l=0;l<a;++l)for(var u=n[l],c=r[l],f=u.length,h=s[l]=new Array(f),p,d=0;d<f;++d)(p=u[d]||c[d])&&(h[d]=p);for(;l<i;++l)s[l]=n[l];return new He(s,this._parents)}function OM(){for(var e=this._groups,t=-1,n=e.length;++t<n;)for(var r=e[t],i=r.length-1,o=r[i],a;--i>=0;)(a=r[i])&&(o&&a.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(a,o),o=a);return this}function GM(e){e||(e=YM);function t(f,h){return f&&h?e(f.__data__,h.__data__):!f-!h}for(var n=this._groups,r=n.length,i=new Array(r),o=0;o<r;++o){for(var a=n[o],s=a.length,l=i[o]=new Array(s),u,c=0;c<s;++c)(u=a[c])&&(l[c]=u);l.sort(t)}return new He(i,this._parents).order()}function YM(e,t){return e<t?-1:e>t?1:e>=t?0:NaN}function WM(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function XM(){return Array.from(this)}function VM(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length;i<o;++i){var a=r[i];if(a)return a}return null}function UM(){let e=0;for(const t of this)++e;return e}function HM(){return!this.node()}function jM(e){for(var t=this._groups,n=0,r=t.length;n<r;++n)for(var i=t[n],o=0,a=i.length,s;o<a;++o)(s=i[o])&&e.call(s,s.__data__,o,i);return this}function qM(e){return function(){this.removeAttribute(e)}}function ZM(e){return function(){this.removeAttributeNS(e.space,e.local)}}function KM(e,t){return function(){this.setAttribute(e,t)}}function QM(e,t){return function(){this.setAttributeNS(e.space,e.local,t)}}function JM(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttribute(e):this.setAttribute(e,n)}}function eC(e,t){return function(){var n=t.apply(this,arguments);n==null?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,n)}}function tC(e,t){var n=co(e);if(arguments.length<2){var r=this.node();return n.local?r.getAttributeNS(n.space,n.local):r.getAttribute(n)}return this.each((t==null?n.local?ZM:qM:typeof t=="function"?n.local?eC:JM:n.local?QM:KM)(n,t))}function Ec(e){return e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView}function nC(e){return function(){this.style.removeProperty(e)}}function rC(e,t,n){return function(){this.style.setProperty(e,t,n)}}function iC(e,t,n){return function(){var r=t.apply(this,arguments);r==null?this.style.removeProperty(e):this.style.setProperty(e,r,n)}}function oC(e,t,n){return arguments.length>1?this.each((t==null?nC:typeof t=="function"?iC:rC)(e,t,n??"")):Jn(this.node(),e)}function Jn(e,t){return e.style.getPropertyValue(t)||Ec(e).getComputedStyle(e,null).getPropertyValue(t)}function aC(e){return function(){delete this[e]}}function sC(e,t){return function(){this[e]=t}}function lC(e,t){return function(){var n=t.apply(this,arguments);n==null?delete this[e]:this[e]=n}}function uC(e,t){return arguments.length>1?this.each((t==null?aC:typeof t=="function"?lC:sC)(e,t)):this.node()[e]}function U0(e){return e.trim().split(/^|\s+/)}function Ic(e){return e.classList||new H0(e)}function H0(e){this._node=e,this._names=U0(e.getAttribute("class")||"")}H0.prototype={add:function(e){var t=this._names.indexOf(e);t<0&&(this._names.push(e),this._node.setAttribute("class",this._names.join(" ")))},remove:function(e){var t=this._names.indexOf(e);t>=0&&(this._names.splice(t,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(e){return this._names.indexOf(e)>=0}};function j0(e,t){for(var n=Ic(e),r=-1,i=t.length;++r<i;)n.add(t[r])}function q0(e,t){for(var n=Ic(e),r=-1,i=t.length;++r<i;)n.remove(t[r])}function cC(e){return function(){j0(this,e)}}function fC(e){return function(){q0(this,e)}}function hC(e,t){return function(){(t.apply(this,arguments)?j0:q0)(this,e)}}function pC(e,t){var n=U0(e+"");if(arguments.length<2){for(var r=Ic(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof t=="function"?hC:t?cC:fC)(n,t))}function dC(){this.textContent=""}function gC(e){return function(){this.textContent=e}}function mC(e){return function(){var t=e.apply(this,arguments);this.textContent=t??""}}function yC(e){return arguments.length?this.each(e==null?dC:(typeof e=="function"?mC:gC)(e)):this.node().textContent}function bC(){this.innerHTML=""}function xC(e){return function(){this.innerHTML=e}}function vC(e){return function(){var t=e.apply(this,arguments);this.innerHTML=t??""}}function $C(e){return arguments.length?this.each(e==null?bC:(typeof e=="function"?vC:xC)(e)):this.node().innerHTML}function _C(){this.nextSibling&&this.parentNode.appendChild(this)}function SC(){return this.each(_C)}function wC(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function TC(){return this.each(wC)}function AC(e){var t=typeof e=="function"?e:as(e);return this.select(function(){return this.appendChild(t.apply(this,arguments))})}function PC(){return null}function DC(e,t){var n=typeof e=="function"?e:as(e),r=t==null?PC:typeof t=="function"?t:ss(t);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function MC(){var e=this.parentNode;e&&e.removeChild(this)}function CC(){return this.each(MC)}function LC(){var e=this.cloneNode(!1),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function kC(){var e=this.cloneNode(!0),t=this.parentNode;return t?t.insertBefore(e,this.nextSibling):e}function RC(e){return this.select(e?kC:LC)}function EC(e){return arguments.length?this.property("__data__",e):this.node().__data__}function IC(e){return function(t){e.call(this,t,this.__data__)}}function BC(e){return e.trim().split(/^|\s+/).map(function(t){var n="",r=t.indexOf(".");return r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),{type:t,name:n}})}function NC(e){return function(){var t=this.__on;if(t){for(var n=0,r=-1,i=t.length,o;n<i;++n)o=t[n],(!e.type||o.type===e.type)&&o.name===e.name?this.removeEventListener(o.type,o.listener,o.options):t[++r]=o;++r?t.length=r:delete this.__on}}}function FC(e,t,n){return function(){var r=this.__on,i,o=IC(t);if(r){for(var a=0,s=r.length;a<s;++a)if((i=r[a]).type===e.type&&i.name===e.name){this.removeEventListener(i.type,i.listener,i.options),this.addEventListener(i.type,i.listener=o,i.options=n),i.value=t;return}}this.addEventListener(e.type,o,n),i={type:e.type,name:e.name,value:t,listener:o,options:n},r?r.push(i):this.__on=[i]}}function zC(e,t,n){var r=BC(e+""),i,o=r.length,a;if(arguments.length<2){var s=this.node().__on;if(s){for(var l=0,u=s.length,c;l<u;++l)for(i=0,c=s[l];i<o;++i)if((a=r[i]).type===c.type&&a.name===c.name)return c.value}return}for(s=t?FC:NC,i=0;i<o;++i)this.each(s(r[i],t,n));return this}function Z0(e,t,n){var r=Ec(e),i=r.CustomEvent;typeof i=="function"?i=new i(t,n):(i=r.document.createEvent("Event"),n?(i.initEvent(t,n.bubbles,n.cancelable),i.detail=n.detail):i.initEvent(t,!1,!1)),e.dispatchEvent(i)}function OC(e,t){return function(){return Z0(this,e,t)}}function GC(e,t){return function(){return Z0(this,e,t.apply(this,arguments))}}function YC(e,t){return this.each((typeof t=="function"?GC:OC)(e,t))}function*WC(){for(var e=this._groups,t=0,n=e.length;t<n;++t)for(var r=e[t],i=0,o=r.length,a;i<o;++i)(a=r[i])&&(yield a)}var Bc=[null];function He(e,t){this._groups=e,this._parents=t}function er(){return new He([[document.documentElement]],Bc)}function XC(){return this}He.prototype=er.prototype={constructor:He,select:yM,selectAll:vM,selectChild:wM,selectChildren:DM,filter:MM,data:IM,enter:CM,exit:NM,join:FM,merge:zM,selection:XC,order:OM,sort:GM,call:WM,nodes:XM,node:VM,size:UM,empty:HM,each:jM,attr:tC,style:oC,property:uC,classed:pC,text:yC,html:$C,raise:SC,lower:TC,append:AC,insert:DC,remove:CC,clone:RC,datum:EC,on:zC,dispatch:YC,[Symbol.iterator]:WC};function V(e){return typeof e=="string"?new He([[document.querySelector(e)]],[document.documentElement]):new He([[e]],Bc)}function VC(e){return V(as(e).call(document.documentElement))}var UC=0;function K0(){return new Nc}function Nc(){this._="@"+(++UC).toString(36)}Nc.prototype=K0.prototype={constructor:Nc,get:function(e){for(var t=this._;!(t in e);)if(!(e=e.parentNode))return;return e[t]},set:function(e,t){return e[this._]=t},remove:function(e){return this._ in e&&delete e[this._]},toString:function(){return this._}};function Q0(e){let t;for(;t=e.sourceEvent;)e=t;return e}function gt(e,t){if(e=Q0(e),t===void 0&&(t=e.currentTarget),t){var n=t.ownerSVGElement||t;if(n.createSVGPoint){var r=n.createSVGPoint();return r.x=e.clientX,r.y=e.clientY,r=r.matrixTransform(t.getScreenCTM().inverse()),[r.x,r.y]}if(t.getBoundingClientRect){var i=t.getBoundingClientRect();return[e.clientX-i.left-t.clientLeft,e.clientY-i.top-t.clientTop]}}return[e.pageX,e.pageY]}function HC(e,t){return e.target&&(e=Q0(e),t===void 0&&(t=e.currentTarget),e=e.touches||[e]),Array.from(e,n=>gt(n,t))}function jC(e){return typeof e=="string"?new He([document.querySelectorAll(e)],[document.documentElement]):new He([W0(e)],Bc)}const qC={passive:!1},fo={capture:!0,passive:!1};function Fc(e){e.stopImmediatePropagation()}function Qr(e){e.preventDefault(),e.stopImmediatePropagation()}function us(e){var t=e.document.documentElement,n=V(e).on("dragstart.drag",Qr,fo);"onselectstart"in t?n.on("selectstart.drag",Qr,fo):(t.__noselect=t.style.MozUserSelect,t.style.MozUserSelect="none")}function cs(e,t){var n=e.document.documentElement,r=V(e).on("dragstart.drag",null);t&&(r.on("click.drag",Qr,fo),setTimeout(function(){r.on("click.drag",null)},0)),"onselectstart"in n?r.on("selectstart.drag",null):(n.style.MozUserSelect=n.__noselect,delete n.__noselect)}const fs=e=>()=>e;function zc(e,{sourceEvent:t,subject:n,target:r,identifier:i,active:o,x:a,y:s,dx:l,dy:u,dispatch:c}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},subject:{value:n,enumerable:!0,configurable:!0},target:{value:r,enumerable:!0,configurable:!0},identifier:{value:i,enumerable:!0,configurable:!0},active:{value:o,enumerable:!0,configurable:!0},x:{value:a,enumerable:!0,configurable:!0},y:{value:s,enumerable:!0,configurable:!0},dx:{value:l,enumerable:!0,configurable:!0},dy:{value:u,enumerable:!0,configurable:!0},_:{value:c}})}zc.prototype.on=function(){var e=this._.on.apply(this._,arguments);return e===this._?this:e};function ZC(e){return!e.ctrlKey&&!e.button}function KC(){return this.parentNode}function QC(e,t){return t??{x:e.x,y:e.y}}function JC(){return navigator.maxTouchPoints||"ontouchstart"in this}function hs(){var e=ZC,t=KC,n=QC,r=JC,i={},o=Qn("start","drag","end"),a=0,s,l,u,c,f=0;function h(x){x.on("mousedown.drag",p).filter(r).on("touchstart.drag",g).on("touchmove.drag",y,qC).on("touchend.drag touchcancel.drag",b).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function p(x,_){if(!(c||!e.call(this,x,_))){var A=v(this,t.call(this,x,_),x,_,"mouse");A&&(V(x.view).on("mousemove.drag",d,fo).on("mouseup.drag",m,fo),us(x.view),Fc(x),u=!1,s=x.clientX,l=x.clientY,A("start",x))}}function d(x){if(Qr(x),!u){var _=x.clientX-s,A=x.clientY-l;u=_*_+A*A>f}i.mouse("drag",x)}function m(x){V(x.view).on("mousemove.drag mouseup.drag",null),cs(x.view,u),Qr(x),i.mouse("end",x)}function g(x,_){if(e.call(this,x,_)){var A=x.changedTouches,S=t.call(this,x,_),P=A.length,M,B;for(M=0;M<P;++M)(B=v(this,S,x,_,A[M].identifier,A[M]))&&(Fc(x),B("start",x,A[M]))}}function y(x){var _=x.changedTouches,A=_.length,S,P;for(S=0;S<A;++S)(P=i[_[S].identifier])&&(Qr(x),P("drag",x,_[S]))}function b(x){var _=x.changedTouches,A=_.length,S,P;for(c&&clearTimeout(c),c=setTimeout(function(){c=null},500),S=0;S<A;++S)(P=i[_[S].identifier])&&(Fc(x),P("end",x,_[S]))}function v(x,_,A,S,P,M){var B=o.copy(),$=gt(M||A,_),k,C,T;if((T=n.call(x,new zc("beforestart",{sourceEvent:A,target:h,identifier:P,active:a,x:$[0],y:$[1],dx:0,dy:0,dispatch:B}),S))!=null)return k=T.x-$[0]||0,C=T.y-$[1]||0,function w(D,F,z){var I=$,N;switch(D){case"start":i[P]=w,N=a++;break;case"end":delete i[P],--a;case"drag":$=gt(z||F,_),N=a;break}B.call(D,x,new zc(D,{sourceEvent:F,subject:T,target:h,identifier:P,active:N,x:$[0]+k,y:$[1]+C,dx:$[0]-I[0],dy:$[1]-I[1],dispatch:B}),S)}}return h.filter=function(x){return arguments.length?(e=typeof x=="function"?x:fs(!!x),h):e},h.container=function(x){return arguments.length?(t=typeof x=="function"?x:fs(x),h):t},h.subject=function(x){return arguments.length?(n=typeof x=="function"?x:fs(x),h):n},h.touchable=function(x){return arguments.length?(r=typeof x=="function"?x:fs(!!x),h):r},h.on=function(){var x=o.on.apply(o,arguments);return x===o?h:x},h.clickDistance=function(x){return arguments.length?(f=(x=+x)*x,h):Math.sqrt(f)},h}function Jr(e,t,n){e.prototype=t.prototype=n,n.constructor=e}function ho(e,t){var n=Object.create(e.prototype);for(var r in t)n[r]=t[r];return n}function Tn(){}var tr=.7,ei=1/tr,ti="\\s*([+-]?\\d+)\\s*",po="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Wt="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",eL=/^#([0-9a-f]{3,8})$/,tL=new RegExp(`^rgb\\(${ti},${ti},${ti}\\)$`),nL=new RegExp(`^rgb\\(${Wt},${Wt},${Wt}\\)$`),rL=new RegExp(`^rgba\\(${ti},${ti},${ti},${po}\\)$`),iL=new RegExp(`^rgba\\(${Wt},${Wt},${Wt},${po}\\)$`),oL=new RegExp(`^hsl\\(${po},${Wt},${Wt}\\)$`),aL=new RegExp(`^hsla\\(${po},${Wt},${Wt},${po}\\)$`),J0={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Jr(Tn,An,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:em,formatHex:em,formatHex8:sL,formatHsl:lL,formatRgb:tm,toString:tm});function em(){return this.rgb().formatHex()}function sL(){return this.rgb().formatHex8()}function lL(){return am(this).formatHsl()}function tm(){return this.rgb().formatRgb()}function An(e){var t,n;return e=(e+"").trim().toLowerCase(),(t=eL.exec(e))?(n=t[1].length,t=parseInt(t[1],16),n===6?nm(t):n===3?new Ie(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):n===8?ps(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):n===4?ps(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=tL.exec(e))?new Ie(t[1],t[2],t[3],1):(t=nL.exec(e))?new Ie(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=rL.exec(e))?ps(t[1],t[2],t[3],t[4]):(t=iL.exec(e))?ps(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=oL.exec(e))?om(t[1],t[2]/100,t[3]/100,1):(t=aL.exec(e))?om(t[1],t[2]/100,t[3]/100,t[4]):J0.hasOwnProperty(e)?nm(J0[e]):e==="transparent"?new Ie(NaN,NaN,NaN,0):null}function nm(e){return new Ie(e>>16&255,e>>8&255,e&255,1)}function ps(e,t,n,r){return r<=0&&(e=t=n=NaN),new Ie(e,t,n,r)}function Oc(e){return e instanceof Tn||(e=An(e)),e?(e=e.rgb(),new Ie(e.r,e.g,e.b,e.opacity)):new Ie}function ni(e,t,n,r){return arguments.length===1?Oc(e):new Ie(e,t,n,r??1)}function Ie(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}Jr(Ie,ni,ho(Tn,{brighter(e){return e=e==null?ei:Math.pow(ei,e),new Ie(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?tr:Math.pow(tr,e),new Ie(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new Ie(nr(this.r),nr(this.g),nr(this.b),ds(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:rm,formatHex:rm,formatHex8:uL,formatRgb:im,toString:im}));function rm(){return`#${rr(this.r)}${rr(this.g)}${rr(this.b)}`}function uL(){return`#${rr(this.r)}${rr(this.g)}${rr(this.b)}${rr((isNaN(this.opacity)?1:this.opacity)*255)}`}function im(){const e=ds(this.opacity);return`${e===1?"rgb(":"rgba("}${nr(this.r)}, ${nr(this.g)}, ${nr(this.b)}${e===1?")":`, ${e})`}`}function ds(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function nr(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function rr(e){return e=nr(e),(e<16?"0":"")+e.toString(16)}function om(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new kt(e,t,n,r)}function am(e){if(e instanceof kt)return new kt(e.h,e.s,e.l,e.opacity);if(e instanceof Tn||(e=An(e)),!e)return new kt;if(e instanceof kt)return e;e=e.rgb();var t=e.r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),o=Math.max(t,n,r),a=NaN,s=o-i,l=(o+i)/2;return s?(t===o?a=(n-r)/s+(n<r)*6:n===o?a=(r-t)/s+2:a=(t-n)/s+4,s/=l<.5?o+i:2-o-i,a*=60):s=l>0&&l<1?0:a,new kt(a,s,l,e.opacity)}function gs(e,t,n,r){return arguments.length===1?am(e):new kt(e,t,n,r??1)}function kt(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}Jr(kt,gs,ho(Tn,{brighter(e){return e=e==null?ei:Math.pow(ei,e),new kt(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?tr:Math.pow(tr,e),new kt(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,i=2*n-r;return new Ie(Gc(e>=240?e-240:e+120,i,r),Gc(e,i,r),Gc(e<120?e+240:e-120,i,r),this.opacity)},clamp(){return new kt(sm(this.h),ms(this.s),ms(this.l),ds(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=ds(this.opacity);return`${e===1?"hsl(":"hsla("}${sm(this.h)}, ${ms(this.s)*100}%, ${ms(this.l)*100}%${e===1?")":`, ${e})`}`}}));function sm(e){return e=(e||0)%360,e<0?e+360:e}function ms(e){return Math.max(0,Math.min(1,e||0))}function Gc(e,t,n){return(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)*255}const lm=Math.PI/180,um=180/Math.PI,ys=18,cm=.96422,fm=1,hm=.82521,pm=4/29,ri=6/29,dm=3*ri*ri,cL=ri*ri*ri;function gm(e){if(e instanceof Rt)return new Rt(e.l,e.a,e.b,e.opacity);if(e instanceof Xt)return ym(e);e instanceof Ie||(e=Oc(e));var t=Vc(e.r),n=Vc(e.g),r=Vc(e.b),i=Yc((.2225045*t+.7168786*n+.0606169*r)/fm),o,a;return t===n&&n===r?o=a=i:(o=Yc((.4360747*t+.3850649*n+.1430804*r)/cm),a=Yc((.0139322*t+.0971045*n+.7141733*r)/hm)),new Rt(116*i-16,500*(o-i),200*(i-a),e.opacity)}function fL(e,t){return new Rt(e,0,0,t??1)}function bs(e,t,n,r){return arguments.length===1?gm(e):new Rt(e,t,n,r??1)}function Rt(e,t,n,r){this.l=+e,this.a=+t,this.b=+n,this.opacity=+r}Jr(Rt,bs,ho(Tn,{brighter(e){return new Rt(this.l+ys*(e??1),this.a,this.b,this.opacity)},darker(e){return new Rt(this.l-ys*(e??1),this.a,this.b,this.opacity)},rgb(){var e=(this.l+16)/116,t=isNaN(this.a)?e:e+this.a/500,n=isNaN(this.b)?e:e-this.b/200;return t=cm*Wc(t),e=fm*Wc(e),n=hm*Wc(n),new Ie(Xc(3.1338561*t-1.6168667*e-.4906146*n),Xc(-.9787684*t+1.9161415*e+.033454*n),Xc(.0719453*t-.2289914*e+1.4052427*n),this.opacity)}}));function Yc(e){return e>cL?Math.pow(e,1/3):e/dm+pm}function Wc(e){return e>ri?e*e*e:dm*(e-pm)}function Xc(e){return 255*(e<=.0031308?12.92*e:1.055*Math.pow(e,1/2.4)-.055)}function Vc(e){return(e/=255)<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)}function mm(e){if(e instanceof Xt)return new Xt(e.h,e.c,e.l,e.opacity);if(e instanceof Rt||(e=gm(e)),e.a===0&&e.b===0)return new Xt(NaN,0<e.l&&e.l<100?0:NaN,e.l,e.opacity);var t=Math.atan2(e.b,e.a)*um;return new Xt(t<0?t+360:t,Math.sqrt(e.a*e.a+e.b*e.b),e.l,e.opacity)}function hL(e,t,n,r){return arguments.length===1?mm(e):new Xt(n,t,e,r??1)}function xs(e,t,n,r){return arguments.length===1?mm(e):new Xt(e,t,n,r??1)}function Xt(e,t,n,r){this.h=+e,this.c=+t,this.l=+n,this.opacity=+r}function ym(e){if(isNaN(e.h))return new Rt(e.l,0,0,e.opacity);var t=e.h*lm;return new Rt(e.l,Math.cos(t)*e.c,Math.sin(t)*e.c,e.opacity)}Jr(Xt,xs,ho(Tn,{brighter(e){return new Xt(this.h,this.c,this.l+ys*(e??1),this.opacity)},darker(e){return new Xt(this.h,this.c,this.l-ys*(e??1),this.opacity)},rgb(){return ym(this).rgb()}}));var bm=-.14861,Uc=1.78277,Hc=-.29227,vs=-.90649,go=1.97294,xm=go*vs,vm=go*Uc,$m=Uc*Hc-vs*bm;function pL(e){if(e instanceof ir)return new ir(e.h,e.s,e.l,e.opacity);e instanceof Ie||(e=Oc(e));var t=e.r/255,n=e.g/255,r=e.b/255,i=($m*r+xm*t-vm*n)/($m+xm-vm),o=r-i,a=(go*(n-i)-Hc*o)/vs,s=Math.sqrt(a*a+o*o)/(go*i*(1-i)),l=s?Math.atan2(a,o)*um-120:NaN;return new ir(l<0?l+360:l,s,i,e.opacity)}function Et(e,t,n,r){return arguments.length===1?pL(e):new ir(e,t,n,r??1)}function ir(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}Jr(ir,Et,ho(Tn,{brighter(e){return e=e==null?ei:Math.pow(ei,e),new ir(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?tr:Math.pow(tr,e),new ir(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=isNaN(this.h)?0:(this.h+120)*lm,t=+this.l,n=isNaN(this.s)?0:this.s*t*(1-t),r=Math.cos(e),i=Math.sin(e);return new Ie(255*(t+n*(bm*r+Uc*i)),255*(t+n*(Hc*r+vs*i)),255*(t+n*(go*r)),this.opacity)}}));function _m(e,t,n,r,i){var o=e*e,a=o*e;return((1-3*e+3*o-a)*t+(4-6*o+3*a)*n+(1+3*e+3*o-3*a)*r+a*i)/6}function Sm(e){var t=e.length-1;return function(n){var r=n<=0?n=0:n>=1?(n=1,t-1):Math.floor(n*t),i=e[r],o=e[r+1],a=r>0?e[r-1]:2*i-o,s=r<t-1?e[r+2]:2*o-i;return _m((n-r/t)*t,a,i,o,s)}}function wm(e){var t=e.length;return function(n){var r=Math.floor(((n%=1)<0?++n:n)*t),i=e[(r+t-1)%t],o=e[r%t],a=e[(r+1)%t],s=e[(r+2)%t];return _m((n-r/t)*t,i,o,a,s)}}const $s=e=>()=>e;function Tm(e,t){return function(n){return e+n*t}}function dL(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}function _s(e,t){var n=t-e;return n?Tm(e,n>180||n<-180?n-360*Math.round(n/360):n):$s(isNaN(e)?t:e)}function gL(e){return(e=+e)==1?Be:function(t,n){return n-t?dL(t,n,e):$s(isNaN(t)?n:t)}}function Be(e,t){var n=t-e;return n?Tm(e,n):$s(isNaN(e)?t:e)}const mo=function e(t){var n=gL(t);function r(i,o){var a=n((i=ni(i)).r,(o=ni(o)).r),s=n(i.g,o.g),l=n(i.b,o.b),u=Be(i.opacity,o.opacity);return function(c){return i.r=a(c),i.g=s(c),i.b=l(c),i.opacity=u(c),i+""}}return r.gamma=e,r}(1);function Am(e){return function(t){var n=t.length,r=new Array(n),i=new Array(n),o=new Array(n),a,s;for(a=0;a<n;++a)s=ni(t[a]),r[a]=s.r||0,i[a]=s.g||0,o[a]=s.b||0;return r=e(r),i=e(i),o=e(o),s.opacity=1,function(l){return s.r=r(l),s.g=i(l),s.b=o(l),s+""}}}var Pm=Am(Sm),mL=Am(wm);function jc(e,t){t||(t=[]);var n=e?Math.min(t.length,e.length):0,r=t.slice(),i;return function(o){for(i=0;i<n;++i)r[i]=e[i]*(1-o)+t[i]*o;return r}}function Dm(e){return ArrayBuffer.isView(e)&&!(e instanceof DataView)}function yL(e,t){return(Dm(t)?jc:Mm)(e,t)}function Mm(e,t){var n=t?t.length:0,r=e?Math.min(n,e.length):0,i=new Array(r),o=new Array(n),a;for(a=0;a<r;++a)i[a]=nn(e[a],t[a]);for(;a<n;++a)o[a]=t[a];return function(s){for(a=0;a<r;++a)o[a]=i[a](s);return o}}function Cm(e,t){var n=new Date;return e=+e,t=+t,function(r){return n.setTime(e*(1-r)+t*r),n}}function vt(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}function Lm(e,t){var n={},r={},i;(e===null||typeof e!="object")&&(e={}),(t===null||typeof t!="object")&&(t={});for(i in t)i in e?n[i]=nn(e[i],t[i]):r[i]=t[i];return function(o){for(i in n)r[i]=n[i](o);return r}}var qc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Zc=new RegExp(qc.source,"g");function bL(e){return function(){return e}}function xL(e){return function(t){return e(t)+""}}function Kc(e,t){var n=qc.lastIndex=Zc.lastIndex=0,r,i,o,a=-1,s=[],l=[];for(e=e+"",t=t+"";(r=qc.exec(e))&&(i=Zc.exec(t));)(o=i.index)>n&&(o=t.slice(n,o),s[a]?s[a]+=o:s[++a]=o),(r=r[0])===(i=i[0])?s[a]?s[a]+=i:s[++a]=i:(s[++a]=null,l.push({i:a,x:vt(r,i)})),n=Zc.lastIndex;return n<t.length&&(o=t.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?l[0]?xL(l[0].x):bL(t):(t=l.length,function(u){for(var c=0,f;c<t;++c)s[(f=l[c]).i]=f.x(u);return s.join("")})}function nn(e,t){var n=typeof t,r;return t==null||n==="boolean"?$s(t):(n==="number"?vt:n==="string"?(r=An(t))?(t=r,mo):Kc:t instanceof An?mo:t instanceof Date?Cm:Dm(t)?jc:Array.isArray(t)?Mm:typeof t.valueOf!="function"&&typeof t.toString!="function"||isNaN(t)?Lm:vt)(e,t)}function vL(e){var t=e.length;return function(n){return e[Math.max(0,Math.min(t-1,Math.floor(n*t)))]}}function $L(e,t){var n=_s(+e,+t);return function(r){var i=n(r);return i-360*Math.floor(i/360)}}function Ss(e,t){return e=+e,t=+t,function(n){return Math.round(e*(1-n)+t*n)}}var km=180/Math.PI,Qc={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function Rm(e,t,n,r,i,o){var a,s,l;return(a=Math.sqrt(e*e+t*t))&&(e/=a,t/=a),(l=e*n+t*r)&&(n-=e*l,r-=t*l),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,l/=s),e*r<t*n&&(e=-e,t=-t,l=-l,a=-a),{translateX:i,translateY:o,rotate:Math.atan2(t,e)*km,skewX:Math.atan(l)*km,scaleX:a,scaleY:s}}var ws;function _L(e){const t=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(e+"");return t.isIdentity?Qc:Rm(t.a,t.b,t.c,t.d,t.e,t.f)}function SL(e){return e==null||(ws||(ws=document.createElementNS("http://www.w3.org/2000/svg","g")),ws.setAttribute("transform",e),!(e=ws.transform.baseVal.consolidate()))?Qc:(e=e.matrix,Rm(e.a,e.b,e.c,e.d,e.e,e.f))}function Em(e,t,n,r){function i(u){return u.length?u.pop()+" ":""}function o(u,c,f,h,p,d){if(u!==f||c!==h){var m=p.push("translate(",null,t,null,n);d.push({i:m-4,x:vt(u,f)},{i:m-2,x:vt(c,h)})}else(f||h)&&p.push("translate("+f+t+h+n)}function a(u,c,f,h){u!==c?(u-c>180?c+=360:c-u>180&&(u+=360),h.push({i:f.push(i(f)+"rotate(",null,r)-2,x:vt(u,c)})):c&&f.push(i(f)+"rotate("+c+r)}function s(u,c,f,h){u!==c?h.push({i:f.push(i(f)+"skewX(",null,r)-2,x:vt(u,c)}):c&&f.push(i(f)+"skewX("+c+r)}function l(u,c,f,h,p,d){if(u!==f||c!==h){var m=p.push(i(p)+"scale(",null,",",null,")");d.push({i:m-4,x:vt(u,f)},{i:m-2,x:vt(c,h)})}else(f!==1||h!==1)&&p.push(i(p)+"scale("+f+","+h+")")}return function(u,c){var f=[],h=[];return u=e(u),c=e(c),o(u.translateX,u.translateY,c.translateX,c.translateY,f,h),a(u.rotate,c.rotate,f,h),s(u.skewX,c.skewX,f,h),l(u.scaleX,u.scaleY,c.scaleX,c.scaleY,f,h),u=c=null,function(p){for(var d=-1,m=h.length,g;++d<m;)f[(g=h[d]).i]=g.x(p);return f.join("")}}}var Im=Em(_L,"px, ","px)","deg)"),Bm=Em(SL,", ",")",")"),wL=1e-12;function Nm(e){return((e=Math.exp(e))+1/e)/2}function TL(e){return((e=Math.exp(e))-1/e)/2}function AL(e){return((e=Math.exp(2*e))-1)/(e+1)}const Fm=function e(t,n,r){function i(o,a){var s=o[0],l=o[1],u=o[2],c=a[0],f=a[1],h=a[2],p=c-s,d=f-l,m=p*p+d*d,g,y;if(m<wL)y=Math.log(h/u)/t,g=function(S){return[s+S*p,l+S*d,u*Math.exp(t*S*y)]};else{var b=Math.sqrt(m),v=(h*h-u*u+r*m)/(2*u*n*b),x=(h*h-u*u-r*m)/(2*h*n*b),_=Math.log(Math.sqrt(v*v+1)-v),A=Math.log(Math.sqrt(x*x+1)-x);y=(A-_)/t,g=function(S){var P=S*y,M=Nm(_),B=u/(n*b)*(M*AL(t*P+_)-TL(_));return[s+B*p,l+B*d,u*M/Nm(t*P+_)]}}return g.duration=y*1e3*t/Math.SQRT2,g}return i.rho=function(o){var a=Math.max(.001,+o),s=a*a,l=s*s;return e(a,s,l)},i}(Math.SQRT2,2,4);function zm(e){return function(t,n){var r=e((t=gs(t)).h,(n=gs(n)).h),i=Be(t.s,n.s),o=Be(t.l,n.l),a=Be(t.opacity,n.opacity);return function(s){return t.h=r(s),t.s=i(s),t.l=o(s),t.opacity=a(s),t+""}}}const PL=zm(_s);var DL=zm(Be);function ML(e,t){var n=Be((e=bs(e)).l,(t=bs(t)).l),r=Be(e.a,t.a),i=Be(e.b,t.b),o=Be(e.opacity,t.opacity);return function(a){return e.l=n(a),e.a=r(a),e.b=i(a),e.opacity=o(a),e+""}}function Om(e){return function(t,n){var r=e((t=xs(t)).h,(n=xs(n)).h),i=Be(t.c,n.c),o=Be(t.l,n.l),a=Be(t.opacity,n.opacity);return function(s){return t.h=r(s),t.c=i(s),t.l=o(s),t.opacity=a(s),t+""}}}const CL=Om(_s);var LL=Om(Be);function Gm(e){return function t(n){n=+n;function r(i,o){var a=e((i=Et(i)).h,(o=Et(o)).h),s=Be(i.s,o.s),l=Be(i.l,o.l),u=Be(i.opacity,o.opacity);return function(c){return i.h=a(c),i.s=s(c),i.l=l(Math.pow(c,n)),i.opacity=u(c),i+""}}return r.gamma=t,r}(1)}const kL=Gm(_s);var Ts=Gm(Be);function Ym(e,t){t===void 0&&(t=e,e=nn);for(var n=0,r=t.length-1,i=t[0],o=new Array(r<0?0:r);n<r;)o[n]=e(i,i=t[++n]);return function(a){var s=Math.max(0,Math.min(r-1,Math.floor(a*=r)));return o[s](a-s)}}function RL(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e(r/(t-1));return n}var ii=0,yo=0,bo=0,Wm=1e3,As,xo,Ps=0,or=0,Ds=0,vo=typeof performance=="object"&&performance.now?performance:Date,Xm=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(e){setTimeout(e,17)};function $o(){return or||(Xm(EL),or=vo.now()+Ds)}function EL(){or=0}function _o(){this._call=this._time=this._next=null}_o.prototype=Ms.prototype={constructor:_o,restart:function(e,t,n){if(typeof e!="function")throw new TypeError("callback is not a function");n=(n==null?$o():+n)+(t==null?0:+t),!this._next&&xo!==this&&(xo?xo._next=this:As=this,xo=this),this._call=e,this._time=n,Jc()},stop:function(){this._call&&(this._call=null,this._time=1/0,Jc())}};function Ms(e,t,n){var r=new _o;return r.restart(e,t,n),r}function Vm(){$o(),++ii;for(var e=As,t;e;)(t=or-e._time)>=0&&e._call.call(void 0,t),e=e._next;--ii}function Um(){or=(Ps=vo.now())+Ds,ii=yo=0;try{Vm()}finally{ii=0,BL(),or=0}}function IL(){var e=vo.now(),t=e-Ps;t>Wm&&(Ds-=t,Ps=e)}function BL(){for(var e,t=As,n,r=1/0;t;)t._call?(r>t._time&&(r=t._time),e=t,t=t._next):(n=t._next,t._next=null,t=e?e._next=n:As=n);xo=e,Jc(r)}function Jc(e){if(!ii){yo&&(yo=clearTimeout(yo));var t=e-or;t>24?(e<1/0&&(yo=setTimeout(Um,e-vo.now()-Ds)),bo&&(bo=clearInterval(bo))):(bo||(Ps=vo.now(),bo=setInterval(IL,Wm)),ii=1,Xm(Um))}}function ef(e,t,n){var r=new _o;return t=t==null?0:+t,r.restart(i=>{r.stop(),e(i+t)},t,n),r}function NL(e,t,n){var r=new _o,i=t;return t==null?(r.restart(e,t,n),r):(r._restart=r.restart,r.restart=function(o,a,s){a=+a,s=s==null?$o():+s,r._restart(function l(u){u+=i,r._restart(l,i+=a,s),o(u)},a,s)},r.restart(e,t,n),r)}var FL=Qn("start","end","cancel","interrupt"),zL=[],Hm=0,tf=1,nf=2,Cs=3,jm=4,rf=5,Ls=6;function ks(e,t,n,r,i,o){var a=e.__transition;if(!a)e.__transition={};else if(n in a)return;OL(e,n,{name:t,index:r,group:i,on:FL,tween:zL,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:Hm})}function of(e,t){var n=It(e,t);if(n.state>Hm)throw new Error("too late; already scheduled");return n}function Vt(e,t){var n=It(e,t);if(n.state>Cs)throw new Error("too late; already running");return n}function It(e,t){var n=e.__transition;if(!n||!(n=n[t]))throw new Error("transition not found");return n}function OL(e,t,n){var r=e.__transition,i;r[t]=n,n.timer=Ms(o,0,n.time);function o(u){n.state=tf,n.timer.restart(a,n.delay,n.time),n.delay<=u&&a(u-n.delay)}function a(u){var c,f,h,p;if(n.state!==tf)return l();for(c in r)if(p=r[c],p.name===n.name){if(p.state===Cs)return ef(a);p.state===jm?(p.state=Ls,p.timer.stop(),p.on.call("interrupt",e,e.__data__,p.index,p.group),delete r[c]):+c<t&&(p.state=Ls,p.timer.stop(),p.on.call("cancel",e,e.__data__,p.index,p.group),delete r[c])}if(ef(function(){n.state===Cs&&(n.state=jm,n.timer.restart(s,n.delay,n.time),s(u))}),n.state=nf,n.on.call("start",e,e.__data__,n.index,n.group),n.state===nf){for(n.state=Cs,i=new Array(h=n.tween.length),c=0,f=-1;c<h;++c)(p=n.tween[c].value.call(e,e.__data__,n.index,n.group))&&(i[++f]=p);i.length=f+1}}function s(u){for(var c=u<n.duration?n.ease.call(null,u/n.duration):(n.timer.restart(l),n.state=rf,1),f=-1,h=i.length;++f<h;)i[f].call(e,c);n.state===rf&&(n.on.call("end",e,e.__data__,n.index,n.group),l())}function l(){n.state=Ls,n.timer.stop(),delete r[t];for(var u in r)return;delete e.__transition}}function ar(e,t){var n=e.__transition,r,i,o=!0,a;if(n){t=t==null?null:t+"";for(a in n){if((r=n[a]).name!==t){o=!1;continue}i=r.state>nf&&r.state<rf,r.state=Ls,r.timer.stop(),r.on.call(i?"interrupt":"cancel",e,e.__data__,r.index,r.group),delete n[a]}o&&delete e.__transition}}function GL(e){return this.each(function(){ar(this,e)})}function YL(e,t){var n,r;return function(){var i=Vt(this,e),o=i.tween;if(o!==n){r=n=o;for(var a=0,s=r.length;a<s;++a)if(r[a].name===t){r=r.slice(),r.splice(a,1);break}}i.tween=r}}function WL(e,t,n){var r,i;if(typeof n!="function")throw new Error;return function(){var o=Vt(this,e),a=o.tween;if(a!==r){i=(r=a).slice();for(var s={name:t,value:n},l=0,u=i.length;l<u;++l)if(i[l].name===t){i[l]=s;break}l===u&&i.push(s)}o.tween=i}}function XL(e,t){var n=this._id;if(e+="",arguments.length<2){for(var r=It(this.node(),n).tween,i=0,o=r.length,a;i<o;++i)if((a=r[i]).name===e)return a.value;return null}return this.each((t==null?YL:WL)(n,e,t))}function af(e,t,n){var r=e._id;return e.each(function(){var i=Vt(this,r);(i.value||(i.value={}))[t]=n.apply(this,arguments)}),function(i){return It(i,r).value[t]}}function qm(e,t){var n;return(typeof t=="number"?vt:t instanceof An?mo:(n=An(t))?(t=n,mo):Kc)(e,t)}function VL(e){return function(){this.removeAttribute(e)}}function UL(e){return function(){this.removeAttributeNS(e.space,e.local)}}function HL(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttribute(e);return a===i?null:a===r?o:o=t(r=a,n)}}function jL(e,t,n){var r,i=n+"",o;return function(){var a=this.getAttributeNS(e.space,e.local);return a===i?null:a===r?o:o=t(r=a,n)}}function qL(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttribute(e):(a=this.getAttribute(e),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function ZL(e,t,n){var r,i,o;return function(){var a,s=n(this),l;return s==null?void this.removeAttributeNS(e.space,e.local):(a=this.getAttributeNS(e.space,e.local),l=s+"",a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s)))}}function KL(e,t){var n=co(e),r=n==="transform"?Bm:qm;return this.attrTween(e,typeof t=="function"?(n.local?ZL:qL)(n,r,af(this,"attr."+e,t)):t==null?(n.local?UL:VL)(n):(n.local?jL:HL)(n,r,t))}function QL(e,t){return function(n){this.setAttribute(e,t.call(this,n))}}function JL(e,t){return function(n){this.setAttributeNS(e.space,e.local,t.call(this,n))}}function e3(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&JL(e,o)),n}return i._value=t,i}function t3(e,t){var n,r;function i(){var o=t.apply(this,arguments);return o!==r&&(n=(r=o)&&QL(e,o)),n}return i._value=t,i}function n3(e,t){var n="attr."+e;if(arguments.length<2)return(n=this.tween(n))&&n._value;if(t==null)return this.tween(n,null);if(typeof t!="function")throw new Error;var r=co(e);return this.tween(n,(r.local?e3:t3)(r,t))}function r3(e,t){return function(){of(this,e).delay=+t.apply(this,arguments)}}function i3(e,t){return t=+t,function(){of(this,e).delay=t}}function o3(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?r3:i3)(t,e)):It(this.node(),t).delay}function a3(e,t){return function(){Vt(this,e).duration=+t.apply(this,arguments)}}function s3(e,t){return t=+t,function(){Vt(this,e).duration=t}}function l3(e){var t=this._id;return arguments.length?this.each((typeof e=="function"?a3:s3)(t,e)):It(this.node(),t).duration}function u3(e,t){if(typeof t!="function")throw new Error;return function(){Vt(this,e).ease=t}}function c3(e){var t=this._id;return arguments.length?this.each(u3(t,e)):It(this.node(),t).ease}function f3(e,t){return function(){var n=t.apply(this,arguments);if(typeof n!="function")throw new Error;Vt(this,e).ease=n}}function h3(e){if(typeof e!="function")throw new Error;return this.each(f3(this._id,e))}function p3(e){typeof e!="function"&&(e=Rc(e));for(var t=this._groups,n=t.length,r=new Array(n),i=0;i<n;++i)for(var o=t[i],a=o.length,s=r[i]=[],l,u=0;u<a;++u)(l=o[u])&&e.call(l,l.__data__,u,o)&&s.push(l);return new Ut(r,this._parents,this._name,this._id)}function d3(e){if(e._id!==this._id)throw new Error;for(var t=this._groups,n=e._groups,r=t.length,i=n.length,o=Math.min(r,i),a=new Array(r),s=0;s<o;++s)for(var l=t[s],u=n[s],c=l.length,f=a[s]=new Array(c),h,p=0;p<c;++p)(h=l[p]||u[p])&&(f[p]=h);for(;s<r;++s)a[s]=t[s];return new Ut(a,this._parents,this._name,this._id)}function g3(e){return(e+"").trim().split(/^|\s+/).every(function(t){var n=t.indexOf(".");return n>=0&&(t=t.slice(0,n)),!t||t==="start"})}function m3(e,t,n){var r,i,o=g3(t)?of:Vt;return function(){var a=o(this,e),s=a.on;s!==r&&(i=(r=s).copy()).on(t,n),a.on=i}}function y3(e,t){var n=this._id;return arguments.length<2?It(this.node(),n).on.on(e):this.each(m3(n,e,t))}function b3(e){return function(){var t=this.parentNode;for(var n in this.__transition)if(+n!==e)return;t&&t.removeChild(this)}}function x3(){return this.on("end.remove",b3(this._id))}function v3(e){var t=this._name,n=this._id;typeof e!="function"&&(e=ss(e));for(var r=this._groups,i=r.length,o=new Array(i),a=0;a<i;++a)for(var s=r[a],l=s.length,u=o[a]=new Array(l),c,f,h=0;h<l;++h)(c=s[h])&&(f=e.call(c,c.__data__,h,s))&&("__data__"in c&&(f.__data__=c.__data__),u[h]=f,ks(u[h],t,n,h,u,It(c,n)));return new Ut(o,this._parents,t,n)}function $3(e){var t=this._name,n=this._id;typeof e!="function"&&(e=kc(e));for(var r=this._groups,i=r.length,o=[],a=[],s=0;s<i;++s)for(var l=r[s],u=l.length,c,f=0;f<u;++f)if(c=l[f]){for(var h=e.call(c,c.__data__,f,l),p,d=It(c,n),m=0,g=h.length;m<g;++m)(p=h[m])&&ks(p,t,n,m,h,d);o.push(h),a.push(c)}return new Ut(o,a,t,n)}var _3=er.prototype.constructor;function S3(){return new _3(this._groups,this._parents)}function w3(e,t){var n,r,i;return function(){var o=Jn(this,e),a=(this.style.removeProperty(e),Jn(this,e));return o===a?null:o===n&&a===r?i:i=t(n=o,r=a)}}function Zm(e){return function(){this.style.removeProperty(e)}}function T3(e,t,n){var r,i=n+"",o;return function(){var a=Jn(this,e);return a===i?null:a===r?o:o=t(r=a,n)}}function A3(e,t,n){var r,i,o;return function(){var a=Jn(this,e),s=n(this),l=s+"";return s==null&&(l=s=(this.style.removeProperty(e),Jn(this,e))),a===l?null:a===r&&l===i?o:(i=l,o=t(r=a,s))}}function P3(e,t){var n,r,i,o="style."+t,a="end."+o,s;return function(){var l=Vt(this,e),u=l.on,c=l.value[o]==null?s||(s=Zm(t)):void 0;(u!==n||i!==c)&&(r=(n=u).copy()).on(a,i=c),l.on=r}}function D3(e,t,n){var r=(e+="")=="transform"?Im:qm;return t==null?this.styleTween(e,w3(e,r)).on("end.style."+e,Zm(e)):typeof t=="function"?this.styleTween(e,A3(e,r,af(this,"style."+e,t))).each(P3(this._id,e)):this.styleTween(e,T3(e,r,t),n).on("end.style."+e,null)}function M3(e,t,n){return function(r){this.style.setProperty(e,t.call(this,r),n)}}function C3(e,t,n){var r,i;function o(){var a=t.apply(this,arguments);return a!==i&&(r=(i=a)&&M3(e,a,n)),r}return o._value=t,o}function L3(e,t,n){var r="style."+(e+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(t==null)return this.tween(r,null);if(typeof t!="function")throw new Error;return this.tween(r,C3(e,t,n??""))}function k3(e){return function(){this.textContent=e}}function R3(e){return function(){var t=e(this);this.textContent=t??""}}function E3(e){return this.tween("text",typeof e=="function"?R3(af(this,"text",e)):k3(e==null?"":e+""))}function I3(e){return function(t){this.textContent=e.call(this,t)}}function B3(e){var t,n;function r(){var i=e.apply(this,arguments);return i!==n&&(t=(n=i)&&I3(i)),t}return r._value=e,r}function N3(e){var t="text";if(arguments.length<1)return(t=this.tween(t))&&t._value;if(e==null)return this.tween(t,null);if(typeof e!="function")throw new Error;return this.tween(t,B3(e))}function F3(){for(var e=this._name,t=this._id,n=Qm(),r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)if(l=a[u]){var c=It(l,t);ks(l,e,n,u,a,{time:c.time+c.delay+c.duration,delay:0,duration:c.duration,ease:c.ease})}return new Ut(r,this._parents,e,n)}function z3(){var e,t,n=this,r=n._id,i=n.size();return new Promise(function(o,a){var s={value:a},l={value:function(){--i===0&&o()}};n.each(function(){var u=Vt(this,r),c=u.on;c!==e&&(t=(e=c).copy(),t._.cancel.push(s),t._.interrupt.push(s),t._.end.push(l)),u.on=t}),i===0&&o()})}var O3=0;function Ut(e,t,n,r){this._groups=e,this._parents=t,this._name=n,this._id=r}function Km(e){return er().transition(e)}function Qm(){return++O3}var rn=er.prototype;Ut.prototype=Km.prototype={constructor:Ut,select:v3,selectAll:$3,selectChild:rn.selectChild,selectChildren:rn.selectChildren,filter:p3,merge:d3,selection:S3,transition:F3,call:rn.call,nodes:rn.nodes,node:rn.node,size:rn.size,empty:rn.empty,each:rn.each,on:y3,attr:KL,attrTween:n3,style:D3,styleTween:L3,text:E3,textTween:N3,remove:x3,tween:XL,delay:o3,duration:l3,ease:c3,easeVarying:h3,end:z3,[Symbol.iterator]:rn[Symbol.iterator]};const G3=e=>+e;function Y3(e){return e*e}function W3(e){return e*(2-e)}function Jm(e){return((e*=2)<=1?e*e:--e*(2-e)+1)/2}function X3(e){return e*e*e}function V3(e){return--e*e*e+1}function So(e){return((e*=2)<=1?e*e*e:(e-=2)*e*e+2)/2}var sf=3,U3=function e(t){t=+t;function n(r){return Math.pow(r,t)}return n.exponent=e,n}(sf),H3=function e(t){t=+t;function n(r){return 1-Math.pow(1-r,t)}return n.exponent=e,n}(sf),ey=function e(t){t=+t;function n(r){return((r*=2)<=1?Math.pow(r,t):2-Math.pow(2-r,t))/2}return n.exponent=e,n}(sf),ty=Math.PI,ny=ty/2;function j3(e){return+e==1?1:1-Math.cos(e*ny)}function q3(e){return Math.sin(e*ny)}function ry(e){return(1-Math.cos(ty*e))/2}function Pn(e){return(Math.pow(2,-10*e)-.0009765625)*1.0009775171065494}function Z3(e){return Pn(1-+e)}function K3(e){return 1-Pn(e)}function iy(e){return((e*=2)<=1?Pn(1-e):2-Pn(e-1))/2}function Q3(e){return 1-Math.sqrt(1-e*e)}function J3(e){return Math.sqrt(1- --e*e)}function oy(e){return((e*=2)<=1?1-Math.sqrt(1-e*e):Math.sqrt(1-(e-=2)*e)+1)/2}var lf=4/11,e5=6/11,t5=8/11,n5=3/4,r5=9/11,i5=10/11,o5=15/16,a5=21/22,s5=63/64,Rs=1/lf/lf;function l5(e){return 1-wo(1-e)}function wo(e){return(e=+e)<lf?Rs*e*e:e<t5?Rs*(e-=e5)*e+n5:e<i5?Rs*(e-=r5)*e+o5:Rs*(e-=a5)*e+s5}function u5(e){return((e*=2)<=1?1-wo(1-e):wo(e-1)+1)/2}var uf=1.70158,c5=function e(t){t=+t;function n(r){return(r=+r)*r*(t*(r-1)+r)}return n.overshoot=e,n}(uf),f5=function e(t){t=+t;function n(r){return--r*r*((r+1)*t+r)+1}return n.overshoot=e,n}(uf),ay=function e(t){t=+t;function n(r){return((r*=2)<1?r*r*((t+1)*r-t):(r-=2)*r*((t+1)*r+t)+2)/2}return n.overshoot=e,n}(uf),oi=2*Math.PI,cf=1,ff=.3,h5=function e(t,n){var r=Math.asin(1/(t=Math.max(1,t)))*(n/=oi);function i(o){return t*Pn(- --o)*Math.sin((r-o)/n)}return i.amplitude=function(o){return e(o,n*oi)},i.period=function(o){return e(t,o)},i}(cf,ff),sr=function e(t,n){var r=Math.asin(1/(t=Math.max(1,t)))*(n/=oi);function i(o){return 1-t*Pn(o=+o)*Math.sin((o+r)/n)}return i.amplitude=function(o){return e(o,n*oi)},i.period=function(o){return e(t,o)},i}(cf,ff),p5=function e(t,n){var r=Math.asin(1/(t=Math.max(1,t)))*(n/=oi);function i(o){return((o=o*2-1)<0?t*Pn(-o)*Math.sin((r-o)/n):2-t*Pn(o)*Math.sin((r+o)/n))/2}return i.amplitude=function(o){return e(o,n*oi)},i.period=function(o){return e(t,o)},i}(cf,ff),d5={time:null,delay:0,duration:250,ease:So};function g5(e,t){for(var n;!(n=e.__transition)||!(n=n[t]);)if(!(e=e.parentNode))throw new Error(`transition ${t} not found`);return n}function m5(e){var t,n;e instanceof Ut?(t=e._id,e=e._name):(t=Qm(),(n=d5).time=$o(),e=e==null?null:e+"");for(var r=this._groups,i=r.length,o=0;o<i;++o)for(var a=r[o],s=a.length,l,u=0;u<s;++u)(l=a[u])&&ks(l,e,t,u,a,n||g5(l,t));return new Ut(r,this._parents,e,t)}er.prototype.interrupt=GL,er.prototype.transition=m5;var y5=[null];function b5(e,t){var n=e.__transition,r,i;if(n){t=t==null?null:t+"";for(i in n)if((r=n[i]).state>tf&&r.name===t)return new Ut([[e]],y5,t,+i)}return null}const hf=e=>()=>e;function x5(e,{sourceEvent:t,target:n,selection:r,mode:i,dispatch:o}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},selection:{value:r,enumerable:!0,configurable:!0},mode:{value:i,enumerable:!0,configurable:!0},_:{value:o}})}function v5(e){e.stopImmediatePropagation()}function pf(e){e.preventDefault(),e.stopImmediatePropagation()}var sy={name:"drag"},df={name:"space"},ai={name:"handle"},si={name:"center"};const{abs:ly,max:Ge,min:Ye}=Math;function uy(e){return[+e[0],+e[1]]}function gf(e){return[uy(e[0]),uy(e[1])]}var Es={name:"x",handles:["w","e"].map(To),input:function(e,t){return e==null?null:[[+e[0],t[0][1]],[+e[1],t[1][1]]]},output:function(e){return e&&[e[0][0],e[1][0]]}},Is={name:"y",handles:["n","s"].map(To),input:function(e,t){return e==null?null:[[t[0][0],+e[0]],[t[1][0],+e[1]]]},output:function(e){return e&&[e[0][1],e[1][1]]}},$5={name:"xy",handles:["n","w","e","s","nw","ne","sw","se"].map(To),input:function(e){return e==null?null:gf(e)},output:function(e){return e}},on={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},cy={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},fy={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},_5={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},S5={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1};function To(e){return{type:e}}function w5(e){return!e.ctrlKey&&!e.button}function T5(){var e=this.ownerSVGElement||this;return e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]}function A5(){return navigator.maxTouchPoints||"ontouchstart"in this}function mf(e){for(;!e.__brush;)if(!(e=e.parentNode))return;return e.__brush}function P5(e){return e[0][0]===e[1][0]||e[0][1]===e[1][1]}function D5(e){var t=e.__brush;return t?t.dim.output(t.selection):null}function M5(){return yf(Es)}function C5(){return yf(Is)}function L5(){return yf($5)}function yf(e){var t=T5,n=w5,r=A5,i=!0,o=Qn("start","brush","end"),a=6,s;function l(g){var y=g.property("__brush",m).selectAll(".overlay").data([To("overlay")]);y.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",on.overlay).merge(y).each(function(){var v=mf(this).extent;V(this).attr("x",v[0][0]).attr("y",v[0][1]).attr("width",v[1][0]-v[0][0]).attr("height",v[1][1]-v[0][1])}),g.selectAll(".selection").data([To("selection")]).enter().append("rect").attr("class","selection").attr("cursor",on.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var b=g.selectAll(".handle").data(e.handles,function(v){return v.type});b.exit().remove(),b.enter().append("rect").attr("class",function(v){return"handle handle--"+v.type}).attr("cursor",function(v){return on[v.type]}),g.each(u).attr("fill","none").attr("pointer-events","all").on("mousedown.brush",h).filter(r).on("touchstart.brush",h).on("touchmove.brush",p).on("touchend.brush touchcancel.brush",d).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}l.move=function(g,y,b){g.tween?g.on("start.brush",function(v){c(this,arguments).beforestart().start(v)}).on("interrupt.brush end.brush",function(v){c(this,arguments).end(v)}).tween("brush",function(){var v=this,x=v.__brush,_=c(v,arguments),A=x.selection,S=e.input(typeof y=="function"?y.apply(this,arguments):y,x.extent),P=nn(A,S);function M(B){x.selection=B===1&&S===null?null:P(B),u.call(v),_.brush()}return A!==null&&S!==null?M:M(1)}):g.each(function(){var v=this,x=arguments,_=v.__brush,A=e.input(typeof y=="function"?y.apply(v,x):y,_.extent),S=c(v,x).beforestart();ar(v),_.selection=A===null?null:A,u.call(v),S.start(b).brush(b).end(b)})},l.clear=function(g,y){l.move(g,null,y)};function u(){var g=V(this),y=mf(this).selection;y?(g.selectAll(".selection").style("display",null).attr("x",y[0][0]).attr("y",y[0][1]).attr("width",y[1][0]-y[0][0]).attr("height",y[1][1]-y[0][1]),g.selectAll(".handle").style("display",null).attr("x",function(b){return b.type[b.type.length-1]==="e"?y[1][0]-a/2:y[0][0]-a/2}).attr("y",function(b){return b.type[0]==="s"?y[1][1]-a/2:y[0][1]-a/2}).attr("width",function(b){return b.type==="n"||b.type==="s"?y[1][0]-y[0][0]+a:a}).attr("height",function(b){return b.type==="e"||b.type==="w"?y[1][1]-y[0][1]+a:a})):g.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function c(g,y,b){var v=g.__brush.emitter;return v&&(!b||!v.clean)?v:new f(g,y,b)}function f(g,y,b){this.that=g,this.args=y,this.state=g.__brush,this.active=0,this.clean=b}f.prototype={beforestart:function(){return++this.active===1&&(this.state.emitter=this,this.starting=!0),this},start:function(g,y){return this.starting?(this.starting=!1,this.emit("start",g,y)):this.emit("brush",g),this},brush:function(g,y){return this.emit("brush",g,y),this},end:function(g,y){return--this.active===0&&(delete this.state.emitter,this.emit("end",g,y)),this},emit:function(g,y,b){var v=V(this.that).datum();o.call(g,this.that,new x5(g,{sourceEvent:y,target:l,selection:e.output(this.state.selection),mode:b,dispatch:o}),v)}};function h(g){if(s&&!g.touches||!n.apply(this,arguments))return;var y=this,b=g.target.__data__.type,v=(i&&g.metaKey?b="overlay":b)==="selection"?sy:i&&g.altKey?si:ai,x=e===Is?null:_5[b],_=e===Es?null:S5[b],A=mf(y),S=A.extent,P=A.selection,M=S[0][0],B,$,k=S[0][1],C,T,w=S[1][0],D,F,z=S[1][1],I,N,E=0,O=0,j,ie=x&&_&&i&&g.shiftKey,W,Q,X=Array.from(g.touches||[g],le=>{const De=le.identifier;return le=gt(le,y),le.point0=le.slice(),le.identifier=De,le});ar(y);var K=c(y,arguments,!0).beforestart();if(b==="overlay"){P&&(j=!0);const le=[X[0],X[1]||X[0]];A.selection=P=[[B=e===Is?M:Ye(le[0][0],le[1][0]),C=e===Es?k:Ye(le[0][1],le[1][1])],[D=e===Is?w:Ge(le[0][0],le[1][0]),I=e===Es?z:Ge(le[0][1],le[1][1])]],X.length>1&&me(g)}else B=P[0][0],C=P[0][1],D=P[1][0],I=P[1][1];$=B,T=C,F=D,N=I;var q=V(y).attr("pointer-events","none"),ne=q.selectAll(".overlay").attr("cursor",on[b]);if(g.touches)K.moved=U,K.ended=fe;else{var se=V(g.view).on("mousemove.brush",U,!0).on("mouseup.brush",fe,!0);i&&se.on("keydown.brush",Ee,!0).on("keyup.brush",it,!0),us(g.view)}u.call(y),K.start(g,v.name);function U(le){for(const De of le.changedTouches||[le])for(const da of X)da.identifier===De.identifier&&(da.cur=gt(De,y));if(ie&&!W&&!Q&&X.length===1){const De=X[0];ly(De.cur[0]-De[0])>ly(De.cur[1]-De[1])?Q=!0:W=!0}for(const De of X)De.cur&&(De[0]=De.cur[0],De[1]=De.cur[1]);j=!0,pf(le),me(le)}function me(le){const De=X[0],da=De.point0;var Fn;switch(E=De[0]-da[0],O=De[1]-da[1],v){case df:case sy:{x&&(E=Ge(M-B,Ye(w-D,E)),$=B+E,F=D+E),_&&(O=Ge(k-C,Ye(z-I,O)),T=C+O,N=I+O);break}case ai:{X[1]?(x&&($=Ge(M,Ye(w,X[0][0])),F=Ge(M,Ye(w,X[1][0])),x=1),_&&(T=Ge(k,Ye(z,X[0][1])),N=Ge(k,Ye(z,X[1][1])),_=1)):(x<0?(E=Ge(M-B,Ye(w-B,E)),$=B+E,F=D):x>0&&(E=Ge(M-D,Ye(w-D,E)),$=B,F=D+E),_<0?(O=Ge(k-C,Ye(z-C,O)),T=C+O,N=I):_>0&&(O=Ge(k-I,Ye(z-I,O)),T=C,N=I+O));break}case si:{x&&($=Ge(M,Ye(w,B-E*x)),F=Ge(M,Ye(w,D+E*x))),_&&(T=Ge(k,Ye(z,C-O*_)),N=Ge(k,Ye(z,I+O*_)));break}}F<$&&(x*=-1,Fn=B,B=D,D=Fn,Fn=$,$=F,F=Fn,b in cy&&ne.attr("cursor",on[b=cy[b]])),N<T&&(_*=-1,Fn=C,C=I,I=Fn,Fn=T,T=N,N=Fn,b in fy&&ne.attr("cursor",on[b=fy[b]])),A.selection&&(P=A.selection),W&&($=P[0][0],F=P[1][0]),Q&&(T=P[0][1],N=P[1][1]),(P[0][0]!==$||P[0][1]!==T||P[1][0]!==F||P[1][1]!==N)&&(A.selection=[[$,T],[F,N]],u.call(y),K.brush(le,v.name))}function fe(le){if(v5(le),le.touches){if(le.touches.length)return;s&&clearTimeout(s),s=setTimeout(function(){s=null},500)}else cs(le.view,j),se.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);q.attr("pointer-events","all"),ne.attr("cursor",on.overlay),A.selection&&(P=A.selection),P5(P)&&(A.selection=null,u.call(y)),K.end(le,v.name)}function Ee(le){switch(le.keyCode){case 16:{ie=x&&_;break}case 18:{v===ai&&(x&&(D=F-E*x,B=$+E*x),_&&(I=N-O*_,C=T+O*_),v=si,me(le));break}case 32:{(v===ai||v===si)&&(x<0?D=F-E:x>0&&(B=$-E),_<0?I=N-O:_>0&&(C=T-O),v=df,ne.attr("cursor",on.selection),me(le));break}default:return}pf(le)}function it(le){switch(le.keyCode){case 16:{ie&&(W=Q=ie=!1,me(le));break}case 18:{v===si&&(x<0?D=F:x>0&&(B=$),_<0?I=N:_>0&&(C=T),v=ai,me(le));break}case 32:{v===df&&(le.altKey?(x&&(D=F-E*x,B=$+E*x),_&&(I=N-O*_,C=T+O*_),v=si):(x<0?D=F:x>0&&(B=$),_<0?I=N:_>0&&(C=T),v=ai),ne.attr("cursor",on[b]),me(le));break}default:return}pf(le)}}function p(g){c(this,arguments).moved(g)}function d(g){c(this,arguments).ended(g)}function m(){var g=this.__brush||{selection:null};return g.extent=gf(t.apply(this,arguments)),g.dim=e,g}return l.extent=function(g){return arguments.length?(t=typeof g=="function"?g:hf(gf(g)),l):t},l.filter=function(g){return arguments.length?(n=typeof g=="function"?g:hf(!!g),l):n},l.touchable=function(g){return arguments.length?(r=typeof g=="function"?g:hf(!!g),l):r},l.handleSize=function(g){return arguments.length?(a=+g,l):a},l.keyModifiers=function(g){return arguments.length?(i=!!g,l):i},l.on=function(){var g=o.on.apply(o,arguments);return g===o?l:g},l}var hy=Math.abs,li=Math.cos,ui=Math.sin,py=Math.PI,Bs=py/2,dy=py*2,gy=Math.max,bf=1e-12;function xf(e,t){return Array.from({length:t-e},(n,r)=>e+r)}function k5(e){return function(t,n){return e(t.source.value+t.target.value,n.source.value+n.target.value)}}function R5(){return vf(!1,!1)}function E5(){return vf(!1,!0)}function I5(){return vf(!0,!1)}function vf(e,t){var n=0,r=null,i=null,o=null;function a(s){var l=s.length,u=new Array(l),c=xf(0,l),f=new Array(l*l),h=new Array(l),p=0,d;s=Float64Array.from({length:l*l},t?(m,g)=>s[g%l][g/l|0]:(m,g)=>s[g/l|0][g%l]);for(let m=0;m<l;++m){let g=0;for(let y=0;y<l;++y)g+=s[m*l+y]+e*s[y*l+m];p+=u[m]=g}p=gy(0,dy-n*l)/p,d=p?n:dy/l;{let m=0;r&&c.sort((g,y)=>r(u[g],u[y]));for(const g of c){const y=m;if(e){const b=xf(~l+1,l).filter(v=>v<0?s[~v*l+g]:s[g*l+v]);i&&b.sort((v,x)=>i(v<0?-s[~v*l+g]:s[g*l+v],x<0?-s[~x*l+g]:s[g*l+x]));for(const v of b)if(v<0){const x=f[~v*l+g]||(f[~v*l+g]={source:null,target:null});x.target={index:g,startAngle:m,endAngle:m+=s[~v*l+g]*p,value:s[~v*l+g]}}else{const x=f[g*l+v]||(f[g*l+v]={source:null,target:null});x.source={index:g,startAngle:m,endAngle:m+=s[g*l+v]*p,value:s[g*l+v]}}h[g]={index:g,startAngle:y,endAngle:m,value:u[g]}}else{const b=xf(0,l).filter(v=>s[g*l+v]||s[v*l+g]);i&&b.sort((v,x)=>i(s[g*l+v],s[g*l+x]));for(const v of b){let x;if(g<v?(x=f[g*l+v]||(f[g*l+v]={source:null,target:null}),x.source={index:g,startAngle:m,endAngle:m+=s[g*l+v]*p,value:s[g*l+v]}):(x=f[v*l+g]||(f[v*l+g]={source:null,target:null}),x.target={index:g,startAngle:m,endAngle:m+=s[g*l+v]*p,value:s[g*l+v]},g===v&&(x.source=x.target)),x.source&&x.target&&x.source.value<x.target.value){const _=x.source;x.source=x.target,x.target=_}}h[g]={index:g,startAngle:y,endAngle:m,value:u[g]}}m+=d}}return f=Object.values(f),f.groups=h,o?f.sort(o):f}return a.padAngle=function(s){return arguments.length?(n=gy(0,s),a):n},a.sortGroups=function(s){return arguments.length?(r=s,a):r},a.sortSubgroups=function(s){return arguments.length?(i=s,a):i},a.sortChords=function(s){return arguments.length?(s==null?o=null:(o=k5(s))._=s,a):o&&o._},a}const $f=Math.PI,_f=2*$f,lr=1e-6,B5=_f-lr;function my(e){this._+=e[0];for(let t=1,n=e.length;t<n;++t)this._+=arguments[t]+e[t]}function N5(e){let t=Math.floor(e);if(!(t>=0))throw new Error(`invalid digits: ${e}`);if(t>15)return my;const n=10**t;return function(r){this._+=r[0];for(let i=1,o=r.length;i<o;++i)this._+=Math.round(arguments[i]*n)/n+r[i]}}let Ao=class{constructor(t){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=t==null?my:N5(t)}moveTo(t,n){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+n}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._append`Z`)}lineTo(t,n){this._append`L${this._x1=+t},${this._y1=+n}`}quadraticCurveTo(t,n,r,i){this._append`Q${+t},${+n},${this._x1=+r},${this._y1=+i}`}bezierCurveTo(t,n,r,i,o,a){this._append`C${+t},${+n},${+r},${+i},${this._x1=+o},${this._y1=+a}`}arcTo(t,n,r,i,o){if(t=+t,n=+n,r=+r,i=+i,o=+o,o<0)throw new Error(`negative radius: ${o}`);let a=this._x1,s=this._y1,l=r-t,u=i-n,c=a-t,f=s-n,h=c*c+f*f;if(this._x1===null)this._append`M${this._x1=t},${this._y1=n}`;else if(h>lr)if(!(Math.abs(f*l-u*c)>lr)||!o)this._append`L${this._x1=t},${this._y1=n}`;else{let p=r-a,d=i-s,m=l*l+u*u,g=p*p+d*d,y=Math.sqrt(m),b=Math.sqrt(h),v=o*Math.tan(($f-Math.acos((m+h-g)/(2*y*b)))/2),x=v/b,_=v/y;Math.abs(x-1)>lr&&this._append`L${t+x*c},${n+x*f}`,this._append`A${o},${o},0,0,${+(f*p>c*d)},${this._x1=t+_*l},${this._y1=n+_*u}`}}arc(t,n,r,i,o,a){if(t=+t,n=+n,r=+r,a=!!a,r<0)throw new Error(`negative radius: ${r}`);let s=r*Math.cos(i),l=r*Math.sin(i),u=t+s,c=n+l,f=1^a,h=a?i-o:o-i;this._x1===null?this._append`M${u},${c}`:(Math.abs(this._x1-u)>lr||Math.abs(this._y1-c)>lr)&&this._append`L${u},${c}`,r&&(h<0&&(h=h%_f+_f),h>B5?this._append`A${r},${r},0,1,${f},${t-s},${n-l}A${r},${r},0,1,${f},${this._x1=u},${this._y1=c}`:h>lr&&this._append`A${r},${r},0,${+(h>=$f)},${f},${this._x1=t+r*Math.cos(o)},${this._y1=n+r*Math.sin(o)}`)}rect(t,n,r,i){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+n}h${r=+r}v${+i}h${-r}Z`}toString(){return this._}};function Sf(){return new Ao}Sf.prototype=Ao.prototype;function F5(e=3){return new Ao(+e)}var z5=Array.prototype.slice;function ur(e){return function(){return e}}function O5(e){return e.source}function G5(e){return e.target}function yy(e){return e.radius}function Y5(e){return e.startAngle}function W5(e){return e.endAngle}function X5(){return 0}function V5(){return 10}function by(e){var t=O5,n=G5,r=yy,i=yy,o=Y5,a=W5,s=X5,l=null;function u(){var c,f=t.apply(this,arguments),h=n.apply(this,arguments),p=s.apply(this,arguments)/2,d=z5.call(arguments),m=+r.apply(this,(d[0]=f,d)),g=o.apply(this,d)-Bs,y=a.apply(this,d)-Bs,b=+i.apply(this,(d[0]=h,d)),v=o.apply(this,d)-Bs,x=a.apply(this,d)-Bs;if(l||(l=c=Sf()),p>bf&&(hy(y-g)>p*2+bf?y>g?(g+=p,y-=p):(g-=p,y+=p):g=y=(g+y)/2,hy(x-v)>p*2+bf?x>v?(v+=p,x-=p):(v-=p,x+=p):v=x=(v+x)/2),l.moveTo(m*li(g),m*ui(g)),l.arc(0,0,m,g,y),g!==v||y!==x)if(e){var _=+e.apply(this,arguments),A=b-_,S=(v+x)/2;l.quadraticCurveTo(0,0,A*li(v),A*ui(v)),l.lineTo(b*li(S),b*ui(S)),l.lineTo(A*li(x),A*ui(x))}else l.quadraticCurveTo(0,0,b*li(v),b*ui(v)),l.arc(0,0,b,v,x);if(l.quadraticCurveTo(0,0,m*li(g),m*ui(g)),l.closePath(),c)return l=null,c+""||null}return e&&(u.headRadius=function(c){return arguments.length?(e=typeof c=="function"?c:ur(+c),u):e}),u.radius=function(c){return arguments.length?(r=i=typeof c=="function"?c:ur(+c),u):r},u.sourceRadius=function(c){return arguments.length?(r=typeof c=="function"?c:ur(+c),u):r},u.targetRadius=function(c){return arguments.length?(i=typeof c=="function"?c:ur(+c),u):i},u.startAngle=function(c){return arguments.length?(o=typeof c=="function"?c:ur(+c),u):o},u.endAngle=function(c){return arguments.length?(a=typeof c=="function"?c:ur(+c),u):a},u.padAngle=function(c){return arguments.length?(s=typeof c=="function"?c:ur(+c),u):s},u.source=function(c){return arguments.length?(t=c,u):t},u.target=function(c){return arguments.length?(n=c,u):n},u.context=function(c){return arguments.length?(l=c??null,u):l},u}function U5(){return by()}function H5(){return by(V5)}var j5=Array.prototype,xy=j5.slice;function q5(e,t){return e-t}function Z5(e){for(var t=0,n=e.length,r=e[n-1][1]*e[0][0]-e[n-1][0]*e[0][1];++t<n;)r+=e[t-1][1]*e[t][0]-e[t-1][0]*e[t][1];return r}const Dn=e=>()=>e;function K5(e,t){for(var n=-1,r=t.length,i;++n<r;)if(i=Q5(e,t[n]))return i;return 0}function Q5(e,t){for(var n=t[0],r=t[1],i=-1,o=0,a=e.length,s=a-1;o<a;s=o++){var l=e[o],u=l[0],c=l[1],f=e[s],h=f[0],p=f[1];if(J5(l,f,t))return 0;c>r!=p>r&&n<(h-u)*(r-c)/(p-c)+u&&(i=-i)}return i}function J5(e,t,n){var r;return e6(e,t,n)&&t6(e[r=+(e[0]===t[0])],n[r],t[r])}function e6(e,t,n){return(t[0]-e[0])*(n[1]-e[1])===(n[0]-e[0])*(t[1]-e[1])}function t6(e,t,n){return e<=t&&t<=n||n<=t&&t<=e}function n6(){}var an=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]];function wf(){var e=1,t=1,n=_c,r=l;function i(u){var c=n(u);if(Array.isArray(c))c=c.slice().sort(q5);else{const f=io(u,r6);for(c=Zn(...$c(f[0],f[1],c),c);c[c.length-1]>=f[1];)c.pop();for(;c[1]<f[0];)c.shift()}return c.map(f=>o(u,f))}function o(u,c){const f=c==null?NaN:+c;if(isNaN(f))throw new Error(`invalid value: ${c}`);var h=[],p=[];return a(u,f,function(d){r(d,u,f),Z5(d)>0?h.push([d]):p.push(d)}),p.forEach(function(d){for(var m=0,g=h.length,y;m<g;++m)if(K5((y=h[m])[0],d)!==-1){y.push(d);return}}),{type:"MultiPolygon",value:c,coordinates:h}}function a(u,c,f){var h=new Array,p=new Array,d,m,g,y,b,v;for(d=m=-1,y=cr(u[0],c),an[y<<1].forEach(x);++d<e-1;)g=y,y=cr(u[d+1],c),an[g|y<<1].forEach(x);for(an[y<<0].forEach(x);++m<t-1;){for(d=-1,y=cr(u[m*e+e],c),b=cr(u[m*e],c),an[y<<1|b<<2].forEach(x);++d<e-1;)g=y,y=cr(u[m*e+e+d+1],c),v=b,b=cr(u[m*e+d+1],c),an[g|y<<1|b<<2|v<<3].forEach(x);an[y|b<<3].forEach(x)}for(d=-1,b=u[m*e]>=c,an[b<<2].forEach(x);++d<e-1;)v=b,b=cr(u[m*e+d+1],c),an[b<<2|v<<3].forEach(x);an[b<<3].forEach(x);function x(_){var A=[_[0][0]+d,_[0][1]+m],S=[_[1][0]+d,_[1][1]+m],P=s(A),M=s(S),B,$;(B=p[P])?($=h[M])?(delete p[B.end],delete h[$.start],B===$?(B.ring.push(S),f(B.ring)):h[B.start]=p[$.end]={start:B.start,end:$.end,ring:B.ring.concat($.ring)}):(delete p[B.end],B.ring.push(S),p[B.end=M]=B):(B=h[M])?($=p[P])?(delete h[B.start],delete p[$.end],B===$?(B.ring.push(S),f(B.ring)):h[$.start]=p[B.end]={start:$.start,end:B.end,ring:$.ring.concat(B.ring)}):(delete h[B.start],B.ring.unshift(A),h[B.start=P]=B):h[P]=p[M]={start:P,end:M,ring:[A,S]}}}function s(u){return u[0]*2+u[1]*(e+1)*4}function l(u,c,f){u.forEach(function(h){var p=h[0],d=h[1],m=p|0,g=d|0,y=Tf(c[g*e+m]);p>0&&p<e&&m===p&&(h[0]=vy(p,Tf(c[g*e+m-1]),y,f)),d>0&&d<t&&g===d&&(h[1]=vy(d,Tf(c[(g-1)*e+m]),y,f))})}return i.contour=o,i.size=function(u){if(!arguments.length)return[e,t];var c=Math.floor(u[0]),f=Math.floor(u[1]);if(!(c>=0&&f>=0))throw new Error("invalid size");return e=c,t=f,i},i.thresholds=function(u){return arguments.length?(n=typeof u=="function"?u:Array.isArray(u)?Dn(xy.call(u)):Dn(u),i):n},i.smooth=function(u){return arguments.length?(r=u?l:n6,i):r===l},i}function r6(e){return isFinite(e)?e:NaN}function cr(e,t){return e==null?!1:+e>=t}function Tf(e){return e==null||isNaN(e=+e)?-1/0:e}function vy(e,t,n,r){const i=r-t,o=n-t,a=isFinite(i)||isFinite(o)?i/o:Math.sign(i)/Math.sign(o);return isNaN(a)?e:e+a-.5}function i6(e){return e[0]}function o6(e){return e[1]}function a6(){return 1}function s6(){var e=i6,t=o6,n=a6,r=960,i=500,o=20,a=2,s=o*3,l=r+s*2>>a,u=i+s*2>>a,c=Dn(20);function f(b){var v=new Float32Array(l*u),x=Math.pow(2,-a),_=-1;for(const C of b){var A=(e(C,++_,b)+s)*x,S=(t(C,_,b)+s)*x,P=+n(C,_,b);if(P&&A>=0&&A<l&&S>=0&&S<u){var M=Math.floor(A),B=Math.floor(S),$=A-M-.5,k=S-B-.5;v[M+B*l]+=(1-$)*(1-k)*P,v[M+1+B*l]+=$*(1-k)*P,v[M+1+(B+1)*l]+=$*k*P,v[M+(B+1)*l]+=(1-$)*k*P}}return b0({data:v,width:l,height:u},o*x),v}function h(b){var v=f(b),x=c(v),_=Math.pow(2,2*a);return Array.isArray(x)||(x=Zn(Number.MIN_VALUE,ao(v)/_,x)),wf().size([l,u]).thresholds(x.map(A=>A*_))(v).map((A,S)=>(A.value=+x[S],p(A)))}h.contours=function(b){var v=f(b),x=wf().size([l,u]),_=Math.pow(2,2*a),A=S=>{S=+S;var P=p(x.contour(v,S*_));return P.value=S,P};return Object.defineProperty(A,"max",{get:()=>ao(v)/_}),A};function p(b){return b.coordinates.forEach(d),b}function d(b){b.forEach(m)}function m(b){b.forEach(g)}function g(b){b[0]=b[0]*Math.pow(2,a)-s,b[1]=b[1]*Math.pow(2,a)-s}function y(){return s=o*3,l=r+s*2>>a,u=i+s*2>>a,h}return h.x=function(b){return arguments.length?(e=typeof b=="function"?b:Dn(+b),h):e},h.y=function(b){return arguments.length?(t=typeof b=="function"?b:Dn(+b),h):t},h.weight=function(b){return arguments.length?(n=typeof b=="function"?b:Dn(+b),h):n},h.size=function(b){if(!arguments.length)return[r,i];var v=+b[0],x=+b[1];if(!(v>=0&&x>=0))throw new Error("invalid size");return r=v,i=x,y()},h.cellSize=function(b){if(!arguments.length)return 1<<a;if(!((b=+b)>=1))throw new Error("invalid cell size");return a=Math.floor(Math.log(b)/Math.LN2),y()},h.thresholds=function(b){return arguments.length?(c=typeof b=="function"?b:Array.isArray(b)?Dn(xy.call(b)):Dn(b),h):c},h.bandwidth=function(b){if(!arguments.length)return Math.sqrt(o*(o+1));if(!((b=+b)>=0))throw new Error("invalid bandwidth");return o=(Math.sqrt(4*b*b+1)-1)/2,y()},h}const sn=11102230246251565e-32,We=134217729,l6=(3+8*sn)*sn;function Af(e,t,n,r,i){let o,a,s,l,u=t[0],c=r[0],f=0,h=0;c>u==c>-u?(o=u,u=t[++f]):(o=c,c=r[++h]);let p=0;if(f<e&&h<n)for(c>u==c>-u?(a=u+o,s=o-(a-u),u=t[++f]):(a=c+o,s=o-(a-c),c=r[++h]),o=a,s!==0&&(i[p++]=s);f<e&&h<n;)c>u==c>-u?(a=o+u,l=a-o,s=o-(a-l)+(u-l),u=t[++f]):(a=o+c,l=a-o,s=o-(a-l)+(c-l),c=r[++h]),o=a,s!==0&&(i[p++]=s);for(;f<e;)a=o+u,l=a-o,s=o-(a-l)+(u-l),u=t[++f],o=a,s!==0&&(i[p++]=s);for(;h<n;)a=o+c,l=a-o,s=o-(a-l)+(c-l),c=r[++h],o=a,s!==0&&(i[p++]=s);return(o!==0||p===0)&&(i[p++]=o),p}function u6(e,t){let n=t[0];for(let r=1;r<e;r++)n+=t[r];return n}function Po(e){return new Float64Array(e)}const c6=(3+16*sn)*sn,f6=(2+12*sn)*sn,h6=(9+64*sn)*sn*sn,ci=Po(4),$y=Po(8),_y=Po(12),Sy=Po(16),je=Po(4);function p6(e,t,n,r,i,o,a){let s,l,u,c,f,h,p,d,m,g,y,b,v,x,_,A,S,P;const M=e-i,B=n-i,$=t-o,k=r-o;x=M*k,h=We*M,p=h-(h-M),d=M-p,h=We*k,m=h-(h-k),g=k-m,_=d*g-(x-p*m-d*m-p*g),A=$*B,h=We*$,p=h-(h-$),d=$-p,h=We*B,m=h-(h-B),g=B-m,S=d*g-(A-p*m-d*m-p*g),y=_-S,f=_-y,ci[0]=_-(y+f)+(f-S),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-A,f=v-y,ci[1]=v-(y+f)+(f-A),P=b+y,f=P-b,ci[2]=b-(P-f)+(y-f),ci[3]=P;let C=u6(4,ci),T=f6*a;if(C>=T||-C>=T||(f=e-M,s=e-(M+f)+(f-i),f=n-B,u=n-(B+f)+(f-i),f=t-$,l=t-($+f)+(f-o),f=r-k,c=r-(k+f)+(f-o),s===0&&l===0&&u===0&&c===0)||(T=h6*a+l6*Math.abs(C),C+=M*c+k*s-($*u+B*l),C>=T||-C>=T))return C;x=s*k,h=We*s,p=h-(h-s),d=s-p,h=We*k,m=h-(h-k),g=k-m,_=d*g-(x-p*m-d*m-p*g),A=l*B,h=We*l,p=h-(h-l),d=l-p,h=We*B,m=h-(h-B),g=B-m,S=d*g-(A-p*m-d*m-p*g),y=_-S,f=_-y,je[0]=_-(y+f)+(f-S),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-A,f=v-y,je[1]=v-(y+f)+(f-A),P=b+y,f=P-b,je[2]=b-(P-f)+(y-f),je[3]=P;const w=Af(4,ci,4,je,$y);x=M*c,h=We*M,p=h-(h-M),d=M-p,h=We*c,m=h-(h-c),g=c-m,_=d*g-(x-p*m-d*m-p*g),A=$*u,h=We*$,p=h-(h-$),d=$-p,h=We*u,m=h-(h-u),g=u-m,S=d*g-(A-p*m-d*m-p*g),y=_-S,f=_-y,je[0]=_-(y+f)+(f-S),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-A,f=v-y,je[1]=v-(y+f)+(f-A),P=b+y,f=P-b,je[2]=b-(P-f)+(y-f),je[3]=P;const D=Af(w,$y,4,je,_y);x=s*c,h=We*s,p=h-(h-s),d=s-p,h=We*c,m=h-(h-c),g=c-m,_=d*g-(x-p*m-d*m-p*g),A=l*u,h=We*l,p=h-(h-l),d=l-p,h=We*u,m=h-(h-u),g=u-m,S=d*g-(A-p*m-d*m-p*g),y=_-S,f=_-y,je[0]=_-(y+f)+(f-S),b=x+y,f=b-x,v=x-(b-f)+(y-f),y=v-A,f=v-y,je[1]=v-(y+f)+(f-A),P=b+y,f=P-b,je[2]=b-(P-f)+(y-f),je[3]=P;const F=Af(D,_y,4,je,Sy);return Sy[F-1]}function Ns(e,t,n,r,i,o){const a=(t-o)*(n-i),s=(e-i)*(r-o),l=a-s,u=Math.abs(a+s);return Math.abs(l)>=c6*u?l:-p6(e,t,n,r,i,o,u)}const wy=Math.pow(2,-52),Fs=new Uint32Array(512);class zs{static from(t,n=b6,r=x6){const i=t.length,o=new Float64Array(i*2);for(let a=0;a<i;a++){const s=t[a];o[2*a]=n(s),o[2*a+1]=r(s)}return new zs(o)}constructor(t){const n=t.length>>1;if(n>0&&typeof t[0]!="number")throw new Error("Expected coords to contain numbers.");this.coords=t;const r=Math.max(2*n-5,0);this._triangles=new Uint32Array(r*3),this._halfedges=new Int32Array(r*3),this._hashSize=Math.ceil(Math.sqrt(n)),this._hullPrev=new Uint32Array(n),this._hullNext=new Uint32Array(n),this._hullTri=new Uint32Array(n),this._hullHash=new Int32Array(this._hashSize),this._ids=new Uint32Array(n),this._dists=new Float64Array(n),this.update()}update(){const{coords:t,_hullPrev:n,_hullNext:r,_hullTri:i,_hullHash:o}=this,a=t.length>>1;let s=1/0,l=1/0,u=-1/0,c=-1/0;for(let M=0;M<a;M++){const B=t[2*M],$=t[2*M+1];B<s&&(s=B),$<l&&(l=$),B>u&&(u=B),$>c&&(c=$),this._ids[M]=M}const f=(s+u)/2,h=(l+c)/2;let p,d,m;for(let M=0,B=1/0;M<a;M++){const $=Pf(f,h,t[2*M],t[2*M+1]);$<B&&(p=M,B=$)}const g=t[2*p],y=t[2*p+1];for(let M=0,B=1/0;M<a;M++){if(M===p)continue;const $=Pf(g,y,t[2*M],t[2*M+1]);$<B&&$>0&&(d=M,B=$)}let b=t[2*d],v=t[2*d+1],x=1/0;for(let M=0;M<a;M++){if(M===p||M===d)continue;const B=m6(g,y,b,v,t[2*M],t[2*M+1]);B<x&&(m=M,x=B)}let _=t[2*m],A=t[2*m+1];if(x===1/0){for(let $=0;$<a;$++)this._dists[$]=t[2*$]-t[0]||t[2*$+1]-t[1];fi(this._ids,this._dists,0,a-1);const M=new Uint32Array(a);let B=0;for(let $=0,k=-1/0;$<a;$++){const C=this._ids[$],T=this._dists[C];T>k&&(M[B++]=C,k=T)}this.hull=M.subarray(0,B),this.triangles=new Uint32Array(0),this.halfedges=new Uint32Array(0);return}if(Ns(g,y,b,v,_,A)<0){const M=d,B=b,$=v;d=m,b=_,v=A,m=M,_=B,A=$}const S=y6(g,y,b,v,_,A);this._cx=S.x,this._cy=S.y;for(let M=0;M<a;M++)this._dists[M]=Pf(t[2*M],t[2*M+1],S.x,S.y);fi(this._ids,this._dists,0,a-1),this._hullStart=p;let P=3;r[p]=n[m]=d,r[d]=n[p]=m,r[m]=n[d]=p,i[p]=0,i[d]=1,i[m]=2,o.fill(-1),o[this._hashKey(g,y)]=p,o[this._hashKey(b,v)]=d,o[this._hashKey(_,A)]=m,this.trianglesLen=0,this._addTriangle(p,d,m,-1,-1,-1);for(let M=0,B,$;M<this._ids.length;M++){const k=this._ids[M],C=t[2*k],T=t[2*k+1];if(M>0&&Math.abs(C-B)<=wy&&Math.abs(T-$)<=wy||(B=C,$=T,k===p||k===d||k===m))continue;let w=0;for(let N=0,E=this._hashKey(C,T);N<this._hashSize&&(w=o[(E+N)%this._hashSize],!(w!==-1&&w!==r[w]));N++);w=n[w];let D=w,F;for(;F=r[D],Ns(C,T,t[2*D],t[2*D+1],t[2*F],t[2*F+1])>=0;)if(D=F,D===w){D=-1;break}if(D===-1)continue;let z=this._addTriangle(D,k,r[D],-1,-1,i[D]);i[k]=this._legalize(z+2),i[D]=z,P++;let I=r[D];for(;F=r[I],Ns(C,T,t[2*I],t[2*I+1],t[2*F],t[2*F+1])<0;)z=this._addTriangle(I,k,F,i[k],-1,i[I]),i[k]=this._legalize(z+2),r[I]=I,P--,I=F;if(D===w)for(;F=n[D],Ns(C,T,t[2*F],t[2*F+1],t[2*D],t[2*D+1])<0;)z=this._addTriangle(F,k,D,-1,i[D],i[F]),this._legalize(z+2),i[F]=z,r[D]=D,P--,D=F;this._hullStart=n[k]=D,r[D]=n[I]=k,r[k]=I,o[this._hashKey(C,T)]=k,o[this._hashKey(t[2*D],t[2*D+1])]=D}this.hull=new Uint32Array(P);for(let M=0,B=this._hullStart;M<P;M++)this.hull[M]=B,B=r[B];this.triangles=this._triangles.subarray(0,this.trianglesLen),this.halfedges=this._halfedges.subarray(0,this.trianglesLen)}_hashKey(t,n){return Math.floor(d6(t-this._cx,n-this._cy)*this._hashSize)%this._hashSize}_legalize(t){const{_triangles:n,_halfedges:r,coords:i}=this;let o=0,a=0;for(;;){const s=r[t],l=t-t%3;if(a=l+(t+2)%3,s===-1){if(o===0)break;t=Fs[--o];continue}const u=s-s%3,c=l+(t+1)%3,f=u+(s+2)%3,h=n[a],p=n[t],d=n[c],m=n[f];if(g6(i[2*h],i[2*h+1],i[2*p],i[2*p+1],i[2*d],i[2*d+1],i[2*m],i[2*m+1])){n[t]=m,n[s]=h;const y=r[f];if(y===-1){let v=this._hullStart;do{if(this._hullTri[v]===f){this._hullTri[v]=t;break}v=this._hullPrev[v]}while(v!==this._hullStart)}this._link(t,y),this._link(s,r[a]),this._link(a,f);const b=u+(s+1)%3;o<Fs.length&&(Fs[o++]=b)}else{if(o===0)break;t=Fs[--o]}}return a}_link(t,n){this._halfedges[t]=n,n!==-1&&(this._halfedges[n]=t)}_addTriangle(t,n,r,i,o,a){const s=this.trianglesLen;return this._triangles[s]=t,this._triangles[s+1]=n,this._triangles[s+2]=r,this._link(s,i),this._link(s+1,o),this._link(s+2,a),this.trianglesLen+=3,s}}function d6(e,t){const n=e/(Math.abs(e)+Math.abs(t));return(t>0?3-n:1+n)/4}function Pf(e,t,n,r){const i=e-n,o=t-r;return i*i+o*o}function g6(e,t,n,r,i,o,a,s){const l=e-a,u=t-s,c=n-a,f=r-s,h=i-a,p=o-s,d=l*l+u*u,m=c*c+f*f,g=h*h+p*p;return l*(f*g-m*p)-u*(c*g-m*h)+d*(c*p-f*h)<0}function m6(e,t,n,r,i,o){const a=n-e,s=r-t,l=i-e,u=o-t,c=a*a+s*s,f=l*l+u*u,h=.5/(a*u-s*l),p=(u*c-s*f)*h,d=(a*f-l*c)*h;return p*p+d*d}function y6(e,t,n,r,i,o){const a=n-e,s=r-t,l=i-e,u=o-t,c=a*a+s*s,f=l*l+u*u,h=.5/(a*u-s*l),p=e+(u*c-s*f)*h,d=t+(a*f-l*c)*h;return{x:p,y:d}}function fi(e,t,n,r){if(r-n<=20)for(let i=n+1;i<=r;i++){const o=e[i],a=t[o];let s=i-1;for(;s>=n&&t[e[s]]>a;)e[s+1]=e[s--];e[s+1]=o}else{const i=n+r>>1;let o=n+1,a=r;Do(e,i,o),t[e[n]]>t[e[r]]&&Do(e,n,r),t[e[o]]>t[e[r]]&&Do(e,o,r),t[e[n]]>t[e[o]]&&Do(e,n,o);const s=e[o],l=t[s];for(;;){do o++;while(t[e[o]]<l);do a--;while(t[e[a]]>l);if(a<o)break;Do(e,o,a)}e[n+1]=e[a],e[a]=s,r-o+1>=a-n?(fi(e,t,o,r),fi(e,t,n,a-1)):(fi(e,t,n,a-1),fi(e,t,o,r))}}function Do(e,t,n){const r=e[t];e[t]=e[n],e[n]=r}function b6(e){return e[0]}function x6(e){return e[1]}const Ty=1e-6;class fr{constructor(){this._x0=this._y0=this._x1=this._y1=null,this._=""}moveTo(t,n){this._+=`M${this._x0=this._x1=+t},${this._y0=this._y1=+n}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")}lineTo(t,n){this._+=`L${this._x1=+t},${this._y1=+n}`}arc(t,n,r){t=+t,n=+n,r=+r;const i=t+r,o=n;if(r<0)throw new Error("negative radius");this._x1===null?this._+=`M${i},${o}`:(Math.abs(this._x1-i)>Ty||Math.abs(this._y1-o)>Ty)&&(this._+="L"+i+","+o),r&&(this._+=`A${r},${r},0,1,1,${t-r},${n}A${r},${r},0,1,1,${this._x1=i},${this._y1=o}`)}rect(t,n,r,i){this._+=`M${this._x0=this._x1=+t},${this._y0=this._y1=+n}h${+r}v${+i}h${-r}Z`}value(){return this._||null}}class Df{constructor(){this._=[]}moveTo(t,n){this._.push([t,n])}closePath(){this._.push(this._[0].slice())}lineTo(t,n){this._.push([t,n])}value(){return this._.length?this._:null}}class Ay{constructor(t,[n,r,i,o]=[0,0,960,500]){if(!((i=+i)>=(n=+n))||!((o=+o)>=(r=+r)))throw new Error("invalid bounds");this.delaunay=t,this._circumcenters=new Float64Array(t.points.length*2),this.vectors=new Float64Array(t.points.length*2),this.xmax=i,this.xmin=n,this.ymax=o,this.ymin=r,this._init()}update(){return this.delaunay.update(),this._init(),this}_init(){const{delaunay:{points:t,hull:n,triangles:r},vectors:i}=this;let o,a;const s=this.circumcenters=this._circumcenters.subarray(0,r.length/3*2);for(let m=0,g=0,y=r.length,b,v;m<y;m+=3,g+=2){const x=r[m]*2,_=r[m+1]*2,A=r[m+2]*2,S=t[x],P=t[x+1],M=t[_],B=t[_+1],$=t[A],k=t[A+1],C=M-S,T=B-P,w=$-S,D=k-P,F=(C*D-T*w)*2;if(Math.abs(F)<1e-9){if(o===void 0){o=a=0;for(const I of n)o+=t[I*2],a+=t[I*2+1];o/=n.length,a/=n.length}const z=1e9*Math.sign((o-S)*D-(a-P)*w);b=(S+$)/2-z*D,v=(P+k)/2+z*w}else{const z=1/F,I=C*C+T*T,N=w*w+D*D;b=S+(D*I-T*N)*z,v=P+(C*N-w*I)*z}s[g]=b,s[g+1]=v}let l=n[n.length-1],u,c=l*4,f,h=t[2*l],p,d=t[2*l+1];i.fill(0);for(let m=0;m<n.length;++m)l=n[m],u=c,f=h,p=d,c=l*4,h=t[2*l],d=t[2*l+1],i[u+2]=i[c]=p-d,i[u+3]=i[c+1]=h-f}render(t){const n=t==null?t=new fr:void 0,{delaunay:{halfedges:r,inedges:i,hull:o},circumcenters:a,vectors:s}=this;if(o.length<=1)return null;for(let c=0,f=r.length;c<f;++c){const h=r[c];if(h<c)continue;const p=Math.floor(c/3)*2,d=Math.floor(h/3)*2,m=a[p],g=a[p+1],y=a[d],b=a[d+1];this._renderSegment(m,g,y,b,t)}let l,u=o[o.length-1];for(let c=0;c<o.length;++c){l=u,u=o[c];const f=Math.floor(i[u]/3)*2,h=a[f],p=a[f+1],d=l*4,m=this._project(h,p,s[d+2],s[d+3]);m&&this._renderSegment(h,p,m[0],m[1],t)}return n&&n.value()}renderBounds(t){const n=t==null?t=new fr:void 0;return t.rect(this.xmin,this.ymin,this.xmax-this.xmin,this.ymax-this.ymin),n&&n.value()}renderCell(t,n){const r=n==null?n=new fr:void 0,i=this._clip(t);if(i===null||!i.length)return;n.moveTo(i[0],i[1]);let o=i.length;for(;i[0]===i[o-2]&&i[1]===i[o-1]&&o>1;)o-=2;for(let a=2;a<o;a+=2)(i[a]!==i[a-2]||i[a+1]!==i[a-1])&&n.lineTo(i[a],i[a+1]);return n.closePath(),r&&r.value()}*cellPolygons(){const{delaunay:{points:t}}=this;for(let n=0,r=t.length/2;n<r;++n){const i=this.cellPolygon(n);i&&(i.index=n,yield i)}}cellPolygon(t){const n=new Df;return this.renderCell(t,n),n.value()}_renderSegment(t,n,r,i,o){let a;const s=this._regioncode(t,n),l=this._regioncode(r,i);s===0&&l===0?(o.moveTo(t,n),o.lineTo(r,i)):(a=this._clipSegment(t,n,r,i,s,l))&&(o.moveTo(a[0],a[1]),o.lineTo(a[2],a[3]))}contains(t,n,r){return n=+n,n!==n||(r=+r,r!==r)?!1:this.delaunay._step(t,n,r)===t}*neighbors(t){const n=this._clip(t);if(n)for(const r of this.delaunay.neighbors(t)){const i=this._clip(r);if(i){e:for(let o=0,a=n.length;o<a;o+=2)for(let s=0,l=i.length;s<l;s+=2)if(n[o]===i[s]&&n[o+1]===i[s+1]&&n[(o+2)%a]===i[(s+l-2)%l]&&n[(o+3)%a]===i[(s+l-1)%l]){yield r;break e}}}}_cell(t){const{circumcenters:n,delaunay:{inedges:r,halfedges:i,triangles:o}}=this,a=r[t];if(a===-1)return null;const s=[];let l=a;do{const u=Math.floor(l/3);if(s.push(n[u*2],n[u*2+1]),l=l%3===2?l-2:l+1,o[l]!==t)break;l=i[l]}while(l!==a&&l!==-1);return s}_clip(t){if(t===0&&this.delaunay.hull.length===1)return[this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax,this.xmin,this.ymin];const n=this._cell(t);if(n===null)return null;const{vectors:r}=this,i=t*4;return this._simplify(r[i]||r[i+1]?this._clipInfinite(t,n,r[i],r[i+1],r[i+2],r[i+3]):this._clipFinite(t,n))}_clipFinite(t,n){const r=n.length;let i=null,o,a,s=n[r-2],l=n[r-1],u,c=this._regioncode(s,l),f,h=0;for(let p=0;p<r;p+=2)if(o=s,a=l,s=n[p],l=n[p+1],u=c,c=this._regioncode(s,l),u===0&&c===0)f=h,h=0,i?i.push(s,l):i=[s,l];else{let d,m,g,y,b;if(u===0){if((d=this._clipSegment(o,a,s,l,u,c))===null)continue;[m,g,y,b]=d}else{if((d=this._clipSegment(s,l,o,a,c,u))===null)continue;[y,b,m,g]=d,f=h,h=this._edgecode(m,g),f&&h&&this._edge(t,f,h,i,i.length),i?i.push(m,g):i=[m,g]}f=h,h=this._edgecode(y,b),f&&h&&this._edge(t,f,h,i,i.length),i?i.push(y,b):i=[y,b]}if(i)f=h,h=this._edgecode(i[0],i[1]),f&&h&&this._edge(t,f,h,i,i.length);else if(this.contains(t,(this.xmin+this.xmax)/2,(this.ymin+this.ymax)/2))return[this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax,this.xmin,this.ymin];return i}_clipSegment(t,n,r,i,o,a){const s=o<a;for(s&&([t,n,r,i,o,a]=[r,i,t,n,a,o]);;){if(o===0&&a===0)return s?[r,i,t,n]:[t,n,r,i];if(o&a)return null;let l,u,c=o||a;c&8?(l=t+(r-t)*(this.ymax-n)/(i-n),u=this.ymax):c&4?(l=t+(r-t)*(this.ymin-n)/(i-n),u=this.ymin):c&2?(u=n+(i-n)*(this.xmax-t)/(r-t),l=this.xmax):(u=n+(i-n)*(this.xmin-t)/(r-t),l=this.xmin),o?(t=l,n=u,o=this._regioncode(t,n)):(r=l,i=u,a=this._regioncode(r,i))}}_clipInfinite(t,n,r,i,o,a){let s=Array.from(n),l;if((l=this._project(s[0],s[1],r,i))&&s.unshift(l[0],l[1]),(l=this._project(s[s.length-2],s[s.length-1],o,a))&&s.push(l[0],l[1]),s=this._clipFinite(t,s))for(let u=0,c=s.length,f,h=this._edgecode(s[c-2],s[c-1]);u<c;u+=2)f=h,h=this._edgecode(s[u],s[u+1]),f&&h&&(u=this._edge(t,f,h,s,u),c=s.length);else this.contains(t,(this.xmin+this.xmax)/2,(this.ymin+this.ymax)/2)&&(s=[this.xmin,this.ymin,this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax]);return s}_edge(t,n,r,i,o){for(;n!==r;){let a,s;switch(n){case 5:n=4;continue;case 4:n=6,a=this.xmax,s=this.ymin;break;case 6:n=2;continue;case 2:n=10,a=this.xmax,s=this.ymax;break;case 10:n=8;continue;case 8:n=9,a=this.xmin,s=this.ymax;break;case 9:n=1;continue;case 1:n=5,a=this.xmin,s=this.ymin;break}(i[o]!==a||i[o+1]!==s)&&this.contains(t,a,s)&&(i.splice(o,0,a,s),o+=2)}return o}_project(t,n,r,i){let o=1/0,a,s,l;if(i<0){if(n<=this.ymin)return null;(a=(this.ymin-n)/i)<o&&(l=this.ymin,s=t+(o=a)*r)}else if(i>0){if(n>=this.ymax)return null;(a=(this.ymax-n)/i)<o&&(l=this.ymax,s=t+(o=a)*r)}if(r>0){if(t>=this.xmax)return null;(a=(this.xmax-t)/r)<o&&(s=this.xmax,l=n+(o=a)*i)}else if(r<0){if(t<=this.xmin)return null;(a=(this.xmin-t)/r)<o&&(s=this.xmin,l=n+(o=a)*i)}return[s,l]}_edgecode(t,n){return(t===this.xmin?1:t===this.xmax?2:0)|(n===this.ymin?4:n===this.ymax?8:0)}_regioncode(t,n){return(t<this.xmin?1:t>this.xmax?2:0)|(n<this.ymin?4:n>this.ymax?8:0)}_simplify(t){if(t&&t.length>4){for(let n=0;n<t.length;n+=2){const r=(n+2)%t.length,i=(n+4)%t.length;(t[n]===t[r]&&t[r]===t[i]||t[n+1]===t[r+1]&&t[r+1]===t[i+1])&&(t.splice(r,2),n-=2)}t.length||(t=null)}return t}}const v6=2*Math.PI,hi=Math.pow;function $6(e){return e[0]}function _6(e){return e[1]}function S6(e){const{triangles:t,coords:n}=e;for(let r=0;r<t.length;r+=3){const i=2*t[r],o=2*t[r+1],a=2*t[r+2];if((n[a]-n[i])*(n[o+1]-n[i+1])-(n[o]-n[i])*(n[a+1]-n[i+1])>1e-10)return!1}return!0}function w6(e,t,n){return[e+Math.sin(e+t)*n,t+Math.cos(e-t)*n]}class Mf{static from(t,n=$6,r=_6,i){return new Mf("length"in t?T6(t,n,r,i):Float64Array.from(A6(t,n,r,i)))}constructor(t){this._delaunator=new zs(t),this.inedges=new Int32Array(t.length/2),this._hullIndex=new Int32Array(t.length/2),this.points=this._delaunator.coords,this._init()}update(){return this._delaunator.update(),this._init(),this}_init(){const t=this._delaunator,n=this.points;if(t.hull&&t.hull.length>2&&S6(t)){this.collinear=Int32Array.from({length:n.length/2},(h,p)=>p).sort((h,p)=>n[2*h]-n[2*p]||n[2*h+1]-n[2*p+1]);const l=this.collinear[0],u=this.collinear[this.collinear.length-1],c=[n[2*l],n[2*l+1],n[2*u],n[2*u+1]],f=1e-8*Math.hypot(c[3]-c[1],c[2]-c[0]);for(let h=0,p=n.length/2;h<p;++h){const d=w6(n[2*h],n[2*h+1],f);n[2*h]=d[0],n[2*h+1]=d[1]}this._delaunator=new zs(n)}else delete this.collinear;const r=this.halfedges=this._delaunator.halfedges,i=this.hull=this._delaunator.hull,o=this.triangles=this._delaunator.triangles,a=this.inedges.fill(-1),s=this._hullIndex.fill(-1);for(let l=0,u=r.length;l<u;++l){const c=o[l%3===2?l-2:l+1];(r[l]===-1||a[c]===-1)&&(a[c]=l)}for(let l=0,u=i.length;l<u;++l)s[i[l]]=l;i.length<=2&&i.length>0&&(this.triangles=new Int32Array(3).fill(-1),this.halfedges=new Int32Array(3).fill(-1),this.triangles[0]=i[0],a[i[0]]=1,i.length===2&&(a[i[1]]=0,this.triangles[1]=i[1],this.triangles[2]=i[1]))}voronoi(t){return new Ay(this,t)}*neighbors(t){const{inedges:n,hull:r,_hullIndex:i,halfedges:o,triangles:a,collinear:s}=this;if(s){const f=s.indexOf(t);f>0&&(yield s[f-1]),f<s.length-1&&(yield s[f+1]);return}const l=n[t];if(l===-1)return;let u=l,c=-1;do{if(yield c=a[u],u=u%3===2?u-2:u+1,a[u]!==t)return;if(u=o[u],u===-1){const f=r[(i[t]+1)%r.length];f!==c&&(yield f);return}}while(u!==l)}find(t,n,r=0){if(t=+t,t!==t||(n=+n,n!==n))return-1;const i=r;let o;for(;(o=this._step(r,t,n))>=0&&o!==r&&o!==i;)r=o;return o}_step(t,n,r){const{inedges:i,hull:o,_hullIndex:a,halfedges:s,triangles:l,points:u}=this;if(i[t]===-1||!u.length)return(t+1)%(u.length>>1);let c=t,f=hi(n-u[t*2],2)+hi(r-u[t*2+1],2);const h=i[t];let p=h;do{let d=l[p];const m=hi(n-u[d*2],2)+hi(r-u[d*2+1],2);if(m<f&&(f=m,c=d),p=p%3===2?p-2:p+1,l[p]!==t)break;if(p=s[p],p===-1){if(p=o[(a[t]+1)%o.length],p!==d&&hi(n-u[p*2],2)+hi(r-u[p*2+1],2)<f)return p;break}}while(p!==h);return c}render(t){const n=t==null?t=new fr:void 0,{points:r,halfedges:i,triangles:o}=this;for(let a=0,s=i.length;a<s;++a){const l=i[a];if(l<a)continue;const u=o[a]*2,c=o[l]*2;t.moveTo(r[u],r[u+1]),t.lineTo(r[c],r[c+1])}return this.renderHull(t),n&&n.value()}renderPoints(t,n){n===void 0&&(!t||typeof t.moveTo!="function")&&(n=t,t=null),n=n==null?2:+n;const r=t==null?t=new fr:void 0,{points:i}=this;for(let o=0,a=i.length;o<a;o+=2){const s=i[o],l=i[o+1];t.moveTo(s+n,l),t.arc(s,l,n,0,v6)}return r&&r.value()}renderHull(t){const n=t==null?t=new fr:void 0,{hull:r,points:i}=this,o=r[0]*2,a=r.length;t.moveTo(i[o],i[o+1]);for(let s=1;s<a;++s){const l=2*r[s];t.lineTo(i[l],i[l+1])}return t.closePath(),n&&n.value()}hullPolygon(){const t=new Df;return this.renderHull(t),t.value()}renderTriangle(t,n){const r=n==null?n=new fr:void 0,{points:i,triangles:o}=this,a=o[t*=3]*2,s=o[t+1]*2,l=o[t+2]*2;return n.moveTo(i[a],i[a+1]),n.lineTo(i[s],i[s+1]),n.lineTo(i[l],i[l+1]),n.closePath(),r&&r.value()}*trianglePolygons(){const{triangles:t}=this;for(let n=0,r=t.length/3;n<r;++n)yield this.trianglePolygon(n)}trianglePolygon(t){const n=new Df;return this.renderTriangle(t,n),n.value()}}function T6(e,t,n,r){const i=e.length,o=new Float64Array(i*2);for(let a=0;a<i;++a){const s=e[a];o[a*2]=t.call(r,s,a,e),o[a*2+1]=n.call(r,s,a,e)}return o}function*A6(e,t,n,r){let i=0;for(const o of e)yield t.call(r,o,i,e),yield n.call(r,o,i,e),++i}var Py={},Cf={},Lf=34,Mo=10,kf=13;function Dy(e){return new Function("d","return {"+e.map(function(t,n){return JSON.stringify(t)+": d["+n+'] || ""'}).join(",")+"}")}function P6(e,t){var n=Dy(e);return function(r,i){return t(n(r),i,e)}}function My(e){var t=Object.create(null),n=[];return e.forEach(function(r){for(var i in r)i in t||n.push(t[i]=i)}),n}function lt(e,t){var n=e+"",r=n.length;return r<t?new Array(t-r+1).join(0)+n:n}function D6(e){return e<0?"-"+lt(-e,6):e>9999?"+"+lt(e,6):lt(e,4)}function M6(e){var t=e.getUTCHours(),n=e.getUTCMinutes(),r=e.getUTCSeconds(),i=e.getUTCMilliseconds();return isNaN(e)?"Invalid Date":D6(e.getUTCFullYear())+"-"+lt(e.getUTCMonth()+1,2)+"-"+lt(e.getUTCDate(),2)+(i?"T"+lt(t,2)+":"+lt(n,2)+":"+lt(r,2)+"."+lt(i,3)+"Z":r?"T"+lt(t,2)+":"+lt(n,2)+":"+lt(r,2)+"Z":n||t?"T"+lt(t,2)+":"+lt(n,2)+"Z":"")}function Os(e){var t=new RegExp('["'+e+`
|
43
|
+
\r]`),n=e.charCodeAt(0);function r(f,h){var p,d,m=i(f,function(g,y){if(p)return p(g,y-1);d=g,p=h?P6(g,h):Dy(g)});return m.columns=d||[],m}function i(f,h){var p=[],d=f.length,m=0,g=0,y,b=d<=0,v=!1;f.charCodeAt(d-1)===Mo&&--d,f.charCodeAt(d-1)===kf&&--d;function x(){if(b)return Cf;if(v)return v=!1,Py;var A,S=m,P;if(f.charCodeAt(S)===Lf){for(;m++<d&&f.charCodeAt(m)!==Lf||f.charCodeAt(++m)===Lf;);return(A=m)>=d?b=!0:(P=f.charCodeAt(m++))===Mo?v=!0:P===kf&&(v=!0,f.charCodeAt(m)===Mo&&++m),f.slice(S+1,A-1).replace(/""/g,'"')}for(;m<d;){if((P=f.charCodeAt(A=m++))===Mo)v=!0;else if(P===kf)v=!0,f.charCodeAt(m)===Mo&&++m;else if(P!==n)continue;return f.slice(S,A)}return b=!0,f.slice(S,d)}for(;(y=x())!==Cf;){for(var _=[];y!==Py&&y!==Cf;)_.push(y),y=x();h&&(_=h(_,g++))==null||p.push(_)}return p}function o(f,h){return f.map(function(p){return h.map(function(d){return c(p[d])}).join(e)})}function a(f,h){return h==null&&(h=My(f)),[h.map(c).join(e)].concat(o(f,h)).join(`
|
44
|
+
`)}function s(f,h){return h==null&&(h=My(f)),o(f,h).join(`
|
45
|
+
`)}function l(f){return f.map(u).join(`
|
46
|
+
`)}function u(f){return f.map(c).join(e)}function c(f){return f==null?"":f instanceof Date?M6(f):t.test(f+="")?'"'+f.replace(/"/g,'""')+'"':f}return{parse:r,parseRows:i,format:a,formatBody:s,formatRows:l,formatRow:u,formatValue:c}}var hr=Os(","),Cy=hr.parse,C6=hr.parseRows,L6=hr.format,k6=hr.formatBody,R6=hr.formatRows,E6=hr.formatRow,I6=hr.formatValue,pr=Os(" "),Ly=pr.parse,B6=pr.parseRows,N6=pr.format,F6=pr.formatBody,z6=pr.formatRows,O6=pr.formatRow,G6=pr.formatValue;function Y6(e){for(var t in e){var n=e[t].trim(),r,i;if(!n)n=null;else if(n==="true")n=!0;else if(n==="false")n=!1;else if(n==="NaN")n=NaN;else if(!isNaN(r=+n))n=r;else if(i=n.match(/^([-+]\d{2})?\d{4}(-\d{2}(-\d{2})?)?(T\d{2}:\d{2}(:\d{2}(\.\d{3})?)?(Z|[-+]\d{2}:\d{2})?)?$/))W6&&i[4]&&!i[7]&&(n=n.replace(/-/g,"/").replace(/T/," ")),n=new Date(n);else continue;e[t]=n}return e}const W6=new Date("2019-01-01T00:00").getHours()||new Date("2019-07-01T00:00").getHours();function X6(e){if(!e.ok)throw new Error(e.status+" "+e.statusText);return e.blob()}function V6(e,t){return fetch(e,t).then(X6)}function U6(e){if(!e.ok)throw new Error(e.status+" "+e.statusText);return e.arrayBuffer()}function H6(e,t){return fetch(e,t).then(U6)}function j6(e){if(!e.ok)throw new Error(e.status+" "+e.statusText);return e.text()}function Gs(e,t){return fetch(e,t).then(j6)}function ky(e){return function(t,n,r){return arguments.length===2&&typeof n=="function"&&(r=n,n=void 0),Gs(t,n).then(function(i){return e(i,r)})}}function q6(e,t,n,r){arguments.length===3&&typeof n=="function"&&(r=n,n=void 0);var i=Os(e);return Gs(t,n).then(function(o){return i.parse(o,r)})}var Z6=ky(Cy),K6=ky(Ly);function Q6(e,t){return new Promise(function(n,r){var i=new Image;for(var o in t)i[o]=t[o];i.onerror=r,i.onload=function(){n(i)},i.src=e})}function J6(e){if(!e.ok)throw new Error(e.status+" "+e.statusText);if(!(e.status===204||e.status===205))return e.json()}function e8(e,t){return fetch(e,t).then(J6)}function Rf(e){return(t,n)=>Gs(t,n).then(r=>new DOMParser().parseFromString(r,e))}const t8=Rf("application/xml");var n8=Rf("text/html"),r8=Rf("image/svg+xml");function Ef(e,t){var n,r=1;e==null&&(e=0),t==null&&(t=0);function i(){var o,a=n.length,s,l=0,u=0;for(o=0;o<a;++o)s=n[o],l+=s.x,u+=s.y;for(l=(l/a-e)*r,u=(u/a-t)*r,o=0;o<a;++o)s=n[o],s.x-=l,s.y-=u}return i.initialize=function(o){n=o},i.x=function(o){return arguments.length?(e=+o,i):e},i.y=function(o){return arguments.length?(t=+o,i):t},i.strength=function(o){return arguments.length?(r=+o,i):r},i}function i8(e){const t=+this._x.call(null,e),n=+this._y.call(null,e);return Ry(this.cover(t,n),t,n,e)}function Ry(e,t,n,r){if(isNaN(t)||isNaN(n))return e;var i,o=e._root,a={data:r},s=e._x0,l=e._y0,u=e._x1,c=e._y1,f,h,p,d,m,g,y,b;if(!o)return e._root=a,e;for(;o.length;)if((m=t>=(f=(s+u)/2))?s=f:u=f,(g=n>=(h=(l+c)/2))?l=h:c=h,i=o,!(o=o[y=g<<1|m]))return i[y]=a,e;if(p=+e._x.call(null,o.data),d=+e._y.call(null,o.data),t===p&&n===d)return a.next=o,i?i[y]=a:e._root=a,e;do i=i?i[y]=new Array(4):e._root=new Array(4),(m=t>=(f=(s+u)/2))?s=f:u=f,(g=n>=(h=(l+c)/2))?l=h:c=h;while((y=g<<1|m)===(b=(d>=h)<<1|p>=f));return i[b]=o,i[y]=a,e}function o8(e){var t,n,r=e.length,i,o,a=new Array(r),s=new Array(r),l=1/0,u=1/0,c=-1/0,f=-1/0;for(n=0;n<r;++n)isNaN(i=+this._x.call(null,t=e[n]))||isNaN(o=+this._y.call(null,t))||(a[n]=i,s[n]=o,i<l&&(l=i),i>c&&(c=i),o<u&&(u=o),o>f&&(f=o));if(l>c||u>f)return this;for(this.cover(l,u).cover(c,f),n=0;n<r;++n)Ry(this,a[n],s[n],e[n]);return this}function a8(e,t){if(isNaN(e=+e)||isNaN(t=+t))return this;var n=this._x0,r=this._y0,i=this._x1,o=this._y1;if(isNaN(n))i=(n=Math.floor(e))+1,o=(r=Math.floor(t))+1;else{for(var a=i-n||1,s=this._root,l,u;n>e||e>=i||r>t||t>=o;)switch(u=(t<r)<<1|e<n,l=new Array(4),l[u]=s,s=l,a*=2,u){case 0:i=n+a,o=r+a;break;case 1:n=i-a,o=r+a;break;case 2:i=n+a,r=o-a;break;case 3:n=i-a,r=o-a;break}this._root&&this._root.length&&(this._root=s)}return this._x0=n,this._y0=r,this._x1=i,this._y1=o,this}function s8(){var e=[];return this.visit(function(t){if(!t.length)do e.push(t.data);while(t=t.next)}),e}function l8(e){return arguments.length?this.cover(+e[0][0],+e[0][1]).cover(+e[1][0],+e[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}function qe(e,t,n,r,i){this.node=e,this.x0=t,this.y0=n,this.x1=r,this.y1=i}function u8(e,t,n){var r,i=this._x0,o=this._y0,a,s,l,u,c=this._x1,f=this._y1,h=[],p=this._root,d,m;for(p&&h.push(new qe(p,i,o,c,f)),n==null?n=1/0:(i=e-n,o=t-n,c=e+n,f=t+n,n*=n);d=h.pop();)if(!(!(p=d.node)||(a=d.x0)>c||(s=d.y0)>f||(l=d.x1)<i||(u=d.y1)<o))if(p.length){var g=(a+l)/2,y=(s+u)/2;h.push(new qe(p[3],g,y,l,u),new qe(p[2],a,y,g,u),new qe(p[1],g,s,l,y),new qe(p[0],a,s,g,y)),(m=(t>=y)<<1|e>=g)&&(d=h[h.length-1],h[h.length-1]=h[h.length-1-m],h[h.length-1-m]=d)}else{var b=e-+this._x.call(null,p.data),v=t-+this._y.call(null,p.data),x=b*b+v*v;if(x<n){var _=Math.sqrt(n=x);i=e-_,o=t-_,c=e+_,f=t+_,r=p.data}}return r}function c8(e){if(isNaN(c=+this._x.call(null,e))||isNaN(f=+this._y.call(null,e)))return this;var t,n=this._root,r,i,o,a=this._x0,s=this._y0,l=this._x1,u=this._y1,c,f,h,p,d,m,g,y;if(!n)return this;if(n.length)for(;;){if((d=c>=(h=(a+l)/2))?a=h:l=h,(m=f>=(p=(s+u)/2))?s=p:u=p,t=n,!(n=n[g=m<<1|d]))return this;if(!n.length)break;(t[g+1&3]||t[g+2&3]||t[g+3&3])&&(r=t,y=g)}for(;n.data!==e;)if(i=n,!(n=n.next))return this;return(o=n.next)&&delete n.next,i?(o?i.next=o:delete i.next,this):t?(o?t[g]=o:delete t[g],(n=t[0]||t[1]||t[2]||t[3])&&n===(t[3]||t[2]||t[1]||t[0])&&!n.length&&(r?r[y]=n:this._root=n),this):(this._root=o,this)}function f8(e){for(var t=0,n=e.length;t<n;++t)this.remove(e[t]);return this}function h8(){return this._root}function p8(){var e=0;return this.visit(function(t){if(!t.length)do++e;while(t=t.next)}),e}function d8(e){var t=[],n,r=this._root,i,o,a,s,l;for(r&&t.push(new qe(r,this._x0,this._y0,this._x1,this._y1));n=t.pop();)if(!e(r=n.node,o=n.x0,a=n.y0,s=n.x1,l=n.y1)&&r.length){var u=(o+s)/2,c=(a+l)/2;(i=r[3])&&t.push(new qe(i,u,c,s,l)),(i=r[2])&&t.push(new qe(i,o,c,u,l)),(i=r[1])&&t.push(new qe(i,u,a,s,c)),(i=r[0])&&t.push(new qe(i,o,a,u,c))}return this}function g8(e){var t=[],n=[],r;for(this._root&&t.push(new qe(this._root,this._x0,this._y0,this._x1,this._y1));r=t.pop();){var i=r.node;if(i.length){var o,a=r.x0,s=r.y0,l=r.x1,u=r.y1,c=(a+l)/2,f=(s+u)/2;(o=i[0])&&t.push(new qe(o,a,s,c,f)),(o=i[1])&&t.push(new qe(o,c,s,l,f)),(o=i[2])&&t.push(new qe(o,a,f,c,u)),(o=i[3])&&t.push(new qe(o,c,f,l,u))}n.push(r)}for(;r=n.pop();)e(r.node,r.x0,r.y0,r.x1,r.y1);return this}function m8(e){return e[0]}function y8(e){return arguments.length?(this._x=e,this):this._x}function b8(e){return e[1]}function x8(e){return arguments.length?(this._y=e,this):this._y}function Ys(e,t,n){var r=new If(t??m8,n??b8,NaN,NaN,NaN,NaN);return e==null?r:r.addAll(e)}function If(e,t,n,r,i,o){this._x=e,this._y=t,this._x0=n,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function Ey(e){for(var t={data:e.data},n=t;e=e.next;)n=n.next={data:e.data};return t}var Ze=Ys.prototype=If.prototype;Ze.copy=function(){var e=new If(this._x,this._y,this._x0,this._y0,this._x1,this._y1),t=this._root,n,r;if(!t)return e;if(!t.length)return e._root=Ey(t),e;for(n=[{source:t,target:e._root=new Array(4)}];t=n.pop();)for(var i=0;i<4;++i)(r=t.source[i])&&(r.length?n.push({source:r,target:t.target[i]=new Array(4)}):t.target[i]=Ey(r));return e},Ze.add=i8,Ze.addAll=o8,Ze.cover=a8,Ze.data=s8,Ze.extent=l8,Ze.find=u8,Ze.remove=c8,Ze.removeAll=f8,Ze.root=h8,Ze.size=p8,Ze.visit=d8,Ze.visitAfter=g8,Ze.x=y8,Ze.y=x8;function Re(e){return function(){return e}}function Mn(e){return(e()-.5)*1e-6}function v8(e){return e.x+e.vx}function $8(e){return e.y+e.vy}function Ws(e){var t,n,r,i=1,o=1;typeof e!="function"&&(e=Re(e==null?1:+e));function a(){for(var u,c=t.length,f,h,p,d,m,g,y=0;y<o;++y)for(f=Ys(t,v8,$8).visitAfter(s),u=0;u<c;++u)h=t[u],m=n[h.index],g=m*m,p=h.x+h.vx,d=h.y+h.vy,f.visit(b);function b(v,x,_,A,S){var P=v.data,M=v.r,B=m+M;if(P){if(P.index>h.index){var $=p-P.x-P.vx,k=d-P.y-P.vy,C=$*$+k*k;C<B*B&&($===0&&($=Mn(r),C+=$*$),k===0&&(k=Mn(r),C+=k*k),C=(B-(C=Math.sqrt(C)))/C*i,h.vx+=($*=C)*(B=(M*=M)/(g+M)),h.vy+=(k*=C)*B,P.vx-=$*(B=1-B),P.vy-=k*B)}return}return x>p+B||A<p-B||_>d+B||S<d-B}}function s(u){if(u.data)return u.r=n[u.data.index];for(var c=u.r=0;c<4;++c)u[c]&&u[c].r>u.r&&(u.r=u[c].r)}function l(){if(t){var u,c=t.length,f;for(n=new Array(c),u=0;u<c;++u)f=t[u],n[f.index]=+e(f,u,t)}}return a.initialize=function(u,c){t=u,r=c,l()},a.iterations=function(u){return arguments.length?(o=+u,a):o},a.strength=function(u){return arguments.length?(i=+u,a):i},a.radius=function(u){return arguments.length?(e=typeof u=="function"?u:Re(+u),l(),a):e},a}function _8(e){return e.index}function Iy(e,t){var n=e.get(t);if(!n)throw new Error("node not found: "+t);return n}function Bf(e){var t=_8,n=f,r,i=Re(30),o,a,s,l,u,c=1;e==null&&(e=[]);function f(g){return 1/Math.min(s[g.source.index],s[g.target.index])}function h(g){for(var y=0,b=e.length;y<c;++y)for(var v=0,x,_,A,S,P,M,B;v<b;++v)x=e[v],_=x.source,A=x.target,S=A.x+A.vx-_.x-_.vx||Mn(u),P=A.y+A.vy-_.y-_.vy||Mn(u),M=Math.sqrt(S*S+P*P),M=(M-o[v])/M*g*r[v],S*=M,P*=M,A.vx-=S*(B=l[v]),A.vy-=P*B,_.vx+=S*(B=1-B),_.vy+=P*B}function p(){if(a){var g,y=a.length,b=e.length,v=new Map(a.map((_,A)=>[t(_,A,a),_])),x;for(g=0,s=new Array(y);g<b;++g)x=e[g],x.index=g,typeof x.source!="object"&&(x.source=Iy(v,x.source)),typeof x.target!="object"&&(x.target=Iy(v,x.target)),s[x.source.index]=(s[x.source.index]||0)+1,s[x.target.index]=(s[x.target.index]||0)+1;for(g=0,l=new Array(b);g<b;++g)x=e[g],l[g]=s[x.source.index]/(s[x.source.index]+s[x.target.index]);r=new Array(b),d(),o=new Array(b),m()}}function d(){if(a)for(var g=0,y=e.length;g<y;++g)r[g]=+n(e[g],g,e)}function m(){if(a)for(var g=0,y=e.length;g<y;++g)o[g]=+i(e[g],g,e)}return h.initialize=function(g,y){a=g,u=y,p()},h.links=function(g){return arguments.length?(e=g,p(),h):e},h.id=function(g){return arguments.length?(t=g,h):t},h.iterations=function(g){return arguments.length?(c=+g,h):c},h.strength=function(g){return arguments.length?(n=typeof g=="function"?g:Re(+g),d(),h):n},h.distance=function(g){return arguments.length?(i=typeof g=="function"?g:Re(+g),m(),h):i},h}const S8=1664525,w8=1013904223,By=4294967296;function T8(){let e=1;return()=>(e=(S8*e+w8)%By)/By}function A8(e){return e.x}function P8(e){return e.y}var D8=10,M8=Math.PI*(3-Math.sqrt(5));function Xs(e){var t,n=1,r=.001,i=1-Math.pow(r,1/300),o=0,a=.6,s=new Map,l=Ms(f),u=Qn("tick","end"),c=T8();e==null&&(e=[]);function f(){h(),u.call("tick",t),n<r&&(l.stop(),u.call("end",t))}function h(m){var g,y=e.length,b;m===void 0&&(m=1);for(var v=0;v<m;++v)for(n+=(o-n)*i,s.forEach(function(x){x(n)}),g=0;g<y;++g)b=e[g],b.fx==null?b.x+=b.vx*=a:(b.x=b.fx,b.vx=0),b.fy==null?b.y+=b.vy*=a:(b.y=b.fy,b.vy=0);return t}function p(){for(var m=0,g=e.length,y;m<g;++m){if(y=e[m],y.index=m,y.fx!=null&&(y.x=y.fx),y.fy!=null&&(y.y=y.fy),isNaN(y.x)||isNaN(y.y)){var b=D8*Math.sqrt(.5+m),v=m*M8;y.x=b*Math.cos(v),y.y=b*Math.sin(v)}(isNaN(y.vx)||isNaN(y.vy))&&(y.vx=y.vy=0)}}function d(m){return m.initialize&&m.initialize(e,c),m}return p(),t={tick:h,restart:function(){return l.restart(f),t},stop:function(){return l.stop(),t},nodes:function(m){return arguments.length?(e=m,p(),s.forEach(d),t):e},alpha:function(m){return arguments.length?(n=+m,t):n},alphaMin:function(m){return arguments.length?(r=+m,t):r},alphaDecay:function(m){return arguments.length?(i=+m,t):+i},alphaTarget:function(m){return arguments.length?(o=+m,t):o},velocityDecay:function(m){return arguments.length?(a=1-m,t):1-a},randomSource:function(m){return arguments.length?(c=m,s.forEach(d),t):c},force:function(m,g){return arguments.length>1?(g==null?s.delete(m):s.set(m,d(g)),t):s.get(m)},find:function(m,g,y){var b=0,v=e.length,x,_,A,S,P;for(y==null?y=1/0:y*=y,b=0;b<v;++b)S=e[b],x=m-S.x,_=g-S.y,A=x*x+_*_,A<y&&(P=S,y=A);return P},on:function(m,g){return arguments.length>1?(u.on(m,g),t):u.on(m)}}}function Vs(){var e,t,n,r,i=Re(-30),o,a=1,s=1/0,l=.81;function u(p){var d,m=e.length,g=Ys(e,A8,P8).visitAfter(f);for(r=p,d=0;d<m;++d)t=e[d],g.visit(h)}function c(){if(e){var p,d=e.length,m;for(o=new Array(d),p=0;p<d;++p)m=e[p],o[m.index]=+i(m,p,e)}}function f(p){var d=0,m,g,y=0,b,v,x;if(p.length){for(b=v=x=0;x<4;++x)(m=p[x])&&(g=Math.abs(m.value))&&(d+=m.value,y+=g,b+=g*m.x,v+=g*m.y);p.x=b/y,p.y=v/y}else{m=p,m.x=m.data.x,m.y=m.data.y;do d+=o[m.data.index];while(m=m.next)}p.value=d}function h(p,d,m,g){if(!p.value)return!0;var y=p.x-t.x,b=p.y-t.y,v=g-d,x=y*y+b*b;if(v*v/l<x)return x<s&&(y===0&&(y=Mn(n),x+=y*y),b===0&&(b=Mn(n),x+=b*b),x<a&&(x=Math.sqrt(a*x)),t.vx+=y*p.value*r/x,t.vy+=b*p.value*r/x),!0;if(p.length||x>=s)return;(p.data!==t||p.next)&&(y===0&&(y=Mn(n),x+=y*y),b===0&&(b=Mn(n),x+=b*b),x<a&&(x=Math.sqrt(a*x)));do p.data!==t&&(v=o[p.data.index]*r/x,t.vx+=y*v,t.vy+=b*v);while(p=p.next)}return u.initialize=function(p,d){e=p,n=d,c()},u.strength=function(p){return arguments.length?(i=typeof p=="function"?p:Re(+p),c(),u):i},u.distanceMin=function(p){return arguments.length?(a=p*p,u):Math.sqrt(a)},u.distanceMax=function(p){return arguments.length?(s=p*p,u):Math.sqrt(s)},u.theta=function(p){return arguments.length?(l=p*p,u):Math.sqrt(l)},u}function C8(e,t,n){var r,i=Re(.1),o,a;typeof e!="function"&&(e=Re(+e)),t==null&&(t=0),n==null&&(n=0);function s(u){for(var c=0,f=r.length;c<f;++c){var h=r[c],p=h.x-t||1e-6,d=h.y-n||1e-6,m=Math.sqrt(p*p+d*d),g=(a[c]-m)*o[c]*u/m;h.vx+=p*g,h.vy+=d*g}}function l(){if(r){var u,c=r.length;for(o=new Array(c),a=new Array(c),u=0;u<c;++u)a[u]=+e(r[u],u,r),o[u]=isNaN(a[u])?0:+i(r[u],u,r)}}return s.initialize=function(u){r=u,l()},s.strength=function(u){return arguments.length?(i=typeof u=="function"?u:Re(+u),l(),s):i},s.radius=function(u){return arguments.length?(e=typeof u=="function"?u:Re(+u),l(),s):e},s.x=function(u){return arguments.length?(t=+u,s):t},s.y=function(u){return arguments.length?(n=+u,s):n},s}function Ny(e){var t=Re(.1),n,r,i;typeof e!="function"&&(e=Re(e==null?0:+e));function o(s){for(var l=0,u=n.length,c;l<u;++l)c=n[l],c.vx+=(i[l]-c.x)*r[l]*s}function a(){if(n){var s,l=n.length;for(r=new Array(l),i=new Array(l),s=0;s<l;++s)r[s]=isNaN(i[s]=+e(n[s],s,n))?0:+t(n[s],s,n)}}return o.initialize=function(s){n=s,a()},o.strength=function(s){return arguments.length?(t=typeof s=="function"?s:Re(+s),a(),o):t},o.x=function(s){return arguments.length?(e=typeof s=="function"?s:Re(+s),a(),o):e},o}function Fy(e){var t=Re(.1),n,r,i;typeof e!="function"&&(e=Re(e==null?0:+e));function o(s){for(var l=0,u=n.length,c;l<u;++l)c=n[l],c.vy+=(i[l]-c.y)*r[l]*s}function a(){if(n){var s,l=n.length;for(r=new Array(l),i=new Array(l),s=0;s<l;++s)r[s]=isNaN(i[s]=+e(n[s],s,n))?0:+t(n[s],s,n)}}return o.initialize=function(s){n=s,a()},o.strength=function(s){return arguments.length?(t=typeof s=="function"?s:Re(+s),a(),o):t},o.y=function(s){return arguments.length?(e=typeof s=="function"?s:Re(+s),a(),o):e},o}function L8(e){return Math.abs(e=Math.round(e))>=1e21?e.toLocaleString("en").replace(/,/g,""):e.toString(10)}function Us(e,t){if((n=(e=t?e.toExponential(t-1):e.toExponential()).indexOf("e"))<0)return null;var n,r=e.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+e.slice(n+1)]}function pi(e){return e=Us(Math.abs(e)),e?e[1]:NaN}function k8(e,t){return function(n,r){for(var i=n.length,o=[],a=0,s=e[0],l=0;i>0&&s>0&&(l+s+1>r&&(s=Math.max(1,r-l)),o.push(n.substring(i-=s,i+s)),!((l+=s+1)>r));)s=e[a=(a+1)%e.length];return o.reverse().join(t)}}function R8(e){return function(t){return t.replace(/[0-9]/g,function(n){return e[+n]})}}var E8=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function di(e){if(!(t=E8.exec(e)))throw new Error("invalid format: "+e);var t;return new Hs({fill:t[1],align:t[2],sign:t[3],symbol:t[4],zero:t[5],width:t[6],comma:t[7],precision:t[8]&&t[8].slice(1),trim:t[9],type:t[10]})}di.prototype=Hs.prototype;function Hs(e){this.fill=e.fill===void 0?" ":e.fill+"",this.align=e.align===void 0?">":e.align+"",this.sign=e.sign===void 0?"-":e.sign+"",this.symbol=e.symbol===void 0?"":e.symbol+"",this.zero=!!e.zero,this.width=e.width===void 0?void 0:+e.width,this.comma=!!e.comma,this.precision=e.precision===void 0?void 0:+e.precision,this.trim=!!e.trim,this.type=e.type===void 0?"":e.type+""}Hs.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function I8(e){e:for(var t=e.length,n=1,r=-1,i;n<t;++n)switch(e[n]){case".":r=i=n;break;case"0":r===0&&(r=n),i=n;break;default:if(!+e[n])break e;r>0&&(r=0);break}return r>0?e.slice(0,r)+e.slice(i+1):e}var zy;function B8(e,t){var n=Us(e,t);if(!n)return e+"";var r=n[0],i=n[1],o=i-(zy=Math.max(-8,Math.min(8,Math.floor(i/3)))*3)+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Us(e,Math.max(0,t+o-1))[0]}function Oy(e,t){var n=Us(e,t);if(!n)return e+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}const Gy={"%":(e,t)=>(e*100).toFixed(t),b:e=>Math.round(e).toString(2),c:e=>e+"",d:L8,e:(e,t)=>e.toExponential(t),f:(e,t)=>e.toFixed(t),g:(e,t)=>e.toPrecision(t),o:e=>Math.round(e).toString(8),p:(e,t)=>Oy(e*100,t),r:Oy,s:B8,X:e=>Math.round(e).toString(16).toUpperCase(),x:e=>Math.round(e).toString(16)};function Yy(e){return e}var Wy=Array.prototype.map,Xy=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function Vy(e){var t=e.grouping===void 0||e.thousands===void 0?Yy:k8(Wy.call(e.grouping,Number),e.thousands+""),n=e.currency===void 0?"":e.currency[0]+"",r=e.currency===void 0?"":e.currency[1]+"",i=e.decimal===void 0?".":e.decimal+"",o=e.numerals===void 0?Yy:R8(Wy.call(e.numerals,String)),a=e.percent===void 0?"%":e.percent+"",s=e.minus===void 0?"−":e.minus+"",l=e.nan===void 0?"NaN":e.nan+"";function u(f){f=di(f);var h=f.fill,p=f.align,d=f.sign,m=f.symbol,g=f.zero,y=f.width,b=f.comma,v=f.precision,x=f.trim,_=f.type;_==="n"?(b=!0,_="g"):Gy[_]||(v===void 0&&(v=12),x=!0,_="g"),(g||h==="0"&&p==="=")&&(g=!0,h="0",p="=");var A=m==="$"?n:m==="#"&&/[boxX]/.test(_)?"0"+_.toLowerCase():"",S=m==="$"?r:/[%p]/.test(_)?a:"",P=Gy[_],M=/[defgprs%]/.test(_);v=v===void 0?6:/[gprs]/.test(_)?Math.max(1,Math.min(21,v)):Math.max(0,Math.min(20,v));function B($){var k=A,C=S,T,w,D;if(_==="c")C=P($)+C,$="";else{$=+$;var F=$<0||1/$<0;if($=isNaN($)?l:P(Math.abs($),v),x&&($=I8($)),F&&+$==0&&d!=="+"&&(F=!1),k=(F?d==="("?d:s:d==="-"||d==="("?"":d)+k,C=(_==="s"?Xy[8+zy/3]:"")+C+(F&&d==="("?")":""),M){for(T=-1,w=$.length;++T<w;)if(D=$.charCodeAt(T),48>D||D>57){C=(D===46?i+$.slice(T+1):$.slice(T))+C,$=$.slice(0,T);break}}}b&&!g&&($=t($,1/0));var z=k.length+$.length+C.length,I=z<y?new Array(y-z+1).join(h):"";switch(b&&g&&($=t(I+$,I.length?y-C.length:1/0),I=""),p){case"<":$=k+$+C+I;break;case"=":$=k+I+$+C;break;case"^":$=I.slice(0,z=I.length>>1)+k+$+C+I.slice(z);break;default:$=I+k+$+C;break}return o($)}return B.toString=function(){return f+""},B}function c(f,h){var p=u((f=di(f),f.type="f",f)),d=Math.max(-8,Math.min(8,Math.floor(pi(h)/3)))*3,m=Math.pow(10,-d),g=Xy[8+d/3];return function(y){return p(m*y)+g}}return{format:u,formatPrefix:c}}var js,Co,Nf;Uy({thousands:",",grouping:[3],currency:["$",""]});function Uy(e){return js=Vy(e),Co=js.format,Nf=js.formatPrefix,js}function Hy(e){return Math.max(0,-pi(Math.abs(e)))}function jy(e,t){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(pi(t)/3)))*3-pi(Math.abs(e)))}function qy(e,t){return e=Math.abs(e),t=Math.abs(t)-e,Math.max(0,pi(t)-pi(e))+1}var oe=1e-6,Lo=1e-12,he=Math.PI,Ae=he/2,qs=he/4,Ke=he*2,ve=180/he,ae=he/180,ge=Math.abs,gi=Math.atan,Qe=Math.atan2,re=Math.cos,Zs=Math.ceil,Zy=Math.exp,Ff=Math.hypot,Ks=Math.log,zf=Math.pow,te=Math.sin,$t=Math.sign||function(e){return e>0?1:e<0?-1:0},Ne=Math.sqrt,Of=Math.tan;function Ky(e){return e>1?0:e<-1?he:Math.acos(e)}function Je(e){return e>1?Ae:e<-1?-Ae:Math.asin(e)}function Qy(e){return(e=te(e/2))*e}function we(){}function Qs(e,t){e&&e1.hasOwnProperty(e.type)&&e1[e.type](e,t)}var Jy={Feature:function(e,t){Qs(e.geometry,t)},FeatureCollection:function(e,t){for(var n=e.features,r=-1,i=n.length;++r<i;)Qs(n[r].geometry,t)}},e1={Sphere:function(e,t){t.sphere()},Point:function(e,t){e=e.coordinates,t.point(e[0],e[1],e[2])},MultiPoint:function(e,t){for(var n=e.coordinates,r=-1,i=n.length;++r<i;)e=n[r],t.point(e[0],e[1],e[2])},LineString:function(e,t){Gf(e.coordinates,t,0)},MultiLineString:function(e,t){for(var n=e.coordinates,r=-1,i=n.length;++r<i;)Gf(n[r],t,0)},Polygon:function(e,t){t1(e.coordinates,t)},MultiPolygon:function(e,t){for(var n=e.coordinates,r=-1,i=n.length;++r<i;)t1(n[r],t)},GeometryCollection:function(e,t){for(var n=e.geometries,r=-1,i=n.length;++r<i;)Qs(n[r],t)}};function Gf(e,t,n){var r=-1,i=e.length-n,o;for(t.lineStart();++r<i;)o=e[r],t.point(o[0],o[1],o[2]);t.lineEnd()}function t1(e,t){var n=-1,r=e.length;for(t.polygonStart();++n<r;)Gf(e[n],t,1);t.polygonEnd()}function Bt(e,t){e&&Jy.hasOwnProperty(e.type)?Jy[e.type](e,t):Qs(e,t)}var Js=new ke,el=new ke,n1,r1,Yf,Wf,Xf,Ht={point:we,lineStart:we,lineEnd:we,polygonStart:function(){Js=new ke,Ht.lineStart=N8,Ht.lineEnd=F8},polygonEnd:function(){var e=+Js;el.add(e<0?Ke+e:e),this.lineStart=this.lineEnd=this.point=we},sphere:function(){el.add(Ke)}};function N8(){Ht.point=z8}function F8(){i1(n1,r1)}function z8(e,t){Ht.point=i1,n1=e,r1=t,e*=ae,t*=ae,Yf=e,Wf=re(t=t/2+qs),Xf=te(t)}function i1(e,t){e*=ae,t*=ae,t=t/2+qs;var n=e-Yf,r=n>=0?1:-1,i=r*n,o=re(t),a=te(t),s=Xf*a,l=Wf*o+s*re(i),u=s*r*te(i);Js.add(Qe(u,l)),Yf=e,Wf=o,Xf=a}function O8(e){return el=new ke,Bt(e,Ht),el*2}function tl(e){return[Qe(e[1],e[0]),Je(e[2])]}function dr(e){var t=e[0],n=e[1],r=re(n);return[r*re(t),r*te(t),te(n)]}function nl(e,t){return e[0]*t[0]+e[1]*t[1]+e[2]*t[2]}function mi(e,t){return[e[1]*t[2]-e[2]*t[1],e[2]*t[0]-e[0]*t[2],e[0]*t[1]-e[1]*t[0]]}function Vf(e,t){e[0]+=t[0],e[1]+=t[1],e[2]+=t[2]}function rl(e,t){return[e[0]*t,e[1]*t,e[2]*t]}function il(e){var t=Ne(e[0]*e[0]+e[1]*e[1]+e[2]*e[2]);e[0]/=t,e[1]/=t,e[2]/=t}var Te,ut,Pe,mt,gr,o1,a1,yi,ko,Cn,ln,un={point:Uf,lineStart:l1,lineEnd:u1,polygonStart:function(){un.point=c1,un.lineStart=G8,un.lineEnd=Y8,ko=new ke,Ht.polygonStart()},polygonEnd:function(){Ht.polygonEnd(),un.point=Uf,un.lineStart=l1,un.lineEnd=u1,Js<0?(Te=-(Pe=180),ut=-(mt=90)):ko>oe?mt=90:ko<-oe&&(ut=-90),ln[0]=Te,ln[1]=Pe},sphere:function(){Te=-(Pe=180),ut=-(mt=90)}};function Uf(e,t){Cn.push(ln=[Te=e,Pe=e]),t<ut&&(ut=t),t>mt&&(mt=t)}function s1(e,t){var n=dr([e*ae,t*ae]);if(yi){var r=mi(yi,n),i=[r[1],-r[0],0],o=mi(i,r);il(o),o=tl(o);var a=e-gr,s=a>0?1:-1,l=o[0]*ve*s,u,c=ge(a)>180;c^(s*gr<l&&l<s*e)?(u=o[1]*ve,u>mt&&(mt=u)):(l=(l+360)%360-180,c^(s*gr<l&&l<s*e)?(u=-o[1]*ve,u<ut&&(ut=u)):(t<ut&&(ut=t),t>mt&&(mt=t))),c?e<gr?yt(Te,e)>yt(Te,Pe)&&(Pe=e):yt(e,Pe)>yt(Te,Pe)&&(Te=e):Pe>=Te?(e<Te&&(Te=e),e>Pe&&(Pe=e)):e>gr?yt(Te,e)>yt(Te,Pe)&&(Pe=e):yt(e,Pe)>yt(Te,Pe)&&(Te=e)}else Cn.push(ln=[Te=e,Pe=e]);t<ut&&(ut=t),t>mt&&(mt=t),yi=n,gr=e}function l1(){un.point=s1}function u1(){ln[0]=Te,ln[1]=Pe,un.point=Uf,yi=null}function c1(e,t){if(yi){var n=e-gr;ko.add(ge(n)>180?n+(n>0?360:-360):n)}else o1=e,a1=t;Ht.point(e,t),s1(e,t)}function G8(){Ht.lineStart()}function Y8(){c1(o1,a1),Ht.lineEnd(),ge(ko)>oe&&(Te=-(Pe=180)),ln[0]=Te,ln[1]=Pe,yi=null}function yt(e,t){return(t-=e)<0?t+360:t}function W8(e,t){return e[0]-t[0]}function f1(e,t){return e[0]<=e[1]?e[0]<=t&&t<=e[1]:t<e[0]||e[1]<t}function X8(e){var t,n,r,i,o,a,s;if(mt=Pe=-(Te=ut=1/0),Cn=[],Bt(e,un),n=Cn.length){for(Cn.sort(W8),t=1,r=Cn[0],o=[r];t<n;++t)i=Cn[t],f1(r,i[0])||f1(r,i[1])?(yt(r[0],i[1])>yt(r[0],r[1])&&(r[1]=i[1]),yt(i[0],r[1])>yt(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(a=-1/0,n=o.length-1,t=0,r=o[n];t<=n;r=i,++t)i=o[t],(s=yt(r[1],i[0]))>a&&(a=s,Te=i[0],Pe=r[1])}return Cn=ln=null,Te===1/0||ut===1/0?[[NaN,NaN],[NaN,NaN]]:[[Te,ut],[Pe,mt]]}var Ro,ol,al,sl,ll,ul,cl,fl,Hf,jf,qf,h1,p1,et,tt,nt,Nt={sphere:we,point:Zf,lineStart:d1,lineEnd:g1,polygonStart:function(){Nt.lineStart=H8,Nt.lineEnd=j8},polygonEnd:function(){Nt.lineStart=d1,Nt.lineEnd=g1}};function Zf(e,t){e*=ae,t*=ae;var n=re(t);Eo(n*re(e),n*te(e),te(t))}function Eo(e,t,n){++Ro,al+=(e-al)/Ro,sl+=(t-sl)/Ro,ll+=(n-ll)/Ro}function d1(){Nt.point=V8}function V8(e,t){e*=ae,t*=ae;var n=re(t);et=n*re(e),tt=n*te(e),nt=te(t),Nt.point=U8,Eo(et,tt,nt)}function U8(e,t){e*=ae,t*=ae;var n=re(t),r=n*re(e),i=n*te(e),o=te(t),a=Qe(Ne((a=tt*o-nt*i)*a+(a=nt*r-et*o)*a+(a=et*i-tt*r)*a),et*r+tt*i+nt*o);ol+=a,ul+=a*(et+(et=r)),cl+=a*(tt+(tt=i)),fl+=a*(nt+(nt=o)),Eo(et,tt,nt)}function g1(){Nt.point=Zf}function H8(){Nt.point=q8}function j8(){m1(h1,p1),Nt.point=Zf}function q8(e,t){h1=e,p1=t,e*=ae,t*=ae,Nt.point=m1;var n=re(t);et=n*re(e),tt=n*te(e),nt=te(t),Eo(et,tt,nt)}function m1(e,t){e*=ae,t*=ae;var n=re(t),r=n*re(e),i=n*te(e),o=te(t),a=tt*o-nt*i,s=nt*r-et*o,l=et*i-tt*r,u=Ff(a,s,l),c=Je(u),f=u&&-c/u;Hf.add(f*a),jf.add(f*s),qf.add(f*l),ol+=c,ul+=c*(et+(et=r)),cl+=c*(tt+(tt=i)),fl+=c*(nt+(nt=o)),Eo(et,tt,nt)}function Z8(e){Ro=ol=al=sl=ll=ul=cl=fl=0,Hf=new ke,jf=new ke,qf=new ke,Bt(e,Nt);var t=+Hf,n=+jf,r=+qf,i=Ff(t,n,r);return i<Lo&&(t=ul,n=cl,r=fl,ol<oe&&(t=al,n=sl,r=ll),i=Ff(t,n,r),i<Lo)?[NaN,NaN]:[Qe(n,t)*ve,Je(r/i)*ve]}function bi(e){return function(){return e}}function Kf(e,t){function n(r,i){return r=e(r,i),t(r[0],r[1])}return e.invert&&t.invert&&(n.invert=function(r,i){return r=t.invert(r,i),r&&e.invert(r[0],r[1])}),n}function Qf(e,t){return ge(e)>he&&(e-=Math.round(e/Ke)*Ke),[e,t]}Qf.invert=Qf;function Jf(e,t,n){return(e%=Ke)?t||n?Kf(b1(e),x1(t,n)):b1(e):t||n?x1(t,n):Qf}function y1(e){return function(t,n){return t+=e,ge(t)>he&&(t-=Math.round(t/Ke)*Ke),[t,n]}}function b1(e){var t=y1(e);return t.invert=y1(-e),t}function x1(e,t){var n=re(e),r=te(e),i=re(t),o=te(t);function a(s,l){var u=re(l),c=re(s)*u,f=te(s)*u,h=te(l),p=h*n+c*r;return[Qe(f*i-p*o,c*n-h*r),Je(p*i+f*o)]}return a.invert=function(s,l){var u=re(l),c=re(s)*u,f=te(s)*u,h=te(l),p=h*i-f*o;return[Qe(f*i+h*o,c*n+p*r),Je(p*n-c*r)]},a}function v1(e){e=Jf(e[0]*ae,e[1]*ae,e.length>2?e[2]*ae:0);function t(n){return n=e(n[0]*ae,n[1]*ae),n[0]*=ve,n[1]*=ve,n}return t.invert=function(n){return n=e.invert(n[0]*ae,n[1]*ae),n[0]*=ve,n[1]*=ve,n},t}function $1(e,t,n,r,i,o){if(n){var a=re(t),s=te(t),l=r*n;i==null?(i=t+r*Ke,o=t-l/2):(i=_1(a,i),o=_1(a,o),(r>0?i<o:i>o)&&(i+=r*Ke));for(var u,c=i;r>0?c>o:c<o;c-=l)u=tl([a,-s*re(c),-s*te(c)]),e.point(u[0],u[1])}}function _1(e,t){t=dr(t),t[0]-=e,il(t);var n=Ky(-t[1]);return((-t[2]<0?-n:n)+Ke-oe)%Ke}function K8(){var e=bi([0,0]),t=bi(90),n=bi(2),r,i,o={point:a};function a(l,u){r.push(l=i(l,u)),l[0]*=ve,l[1]*=ve}function s(){var l=e.apply(this,arguments),u=t.apply(this,arguments)*ae,c=n.apply(this,arguments)*ae;return r=[],i=Jf(-l[0]*ae,-l[1]*ae,0).invert,$1(o,u,c,1),l={type:"Polygon",coordinates:[r]},r=i=null,l}return s.center=function(l){return arguments.length?(e=typeof l=="function"?l:bi([+l[0],+l[1]]),s):e},s.radius=function(l){return arguments.length?(t=typeof l=="function"?l:bi(+l),s):t},s.precision=function(l){return arguments.length?(n=typeof l=="function"?l:bi(+l),s):n},s}function S1(){var e=[],t;return{point:function(n,r,i){t.push([n,r,i])},lineStart:function(){e.push(t=[])},lineEnd:we,rejoin:function(){e.length>1&&e.push(e.pop().concat(e.shift()))},result:function(){var n=e;return e=[],t=null,n}}}function hl(e,t){return ge(e[0]-t[0])<oe&&ge(e[1]-t[1])<oe}function pl(e,t,n,r){this.x=e,this.z=t,this.o=n,this.e=r,this.v=!1,this.n=this.p=null}function w1(e,t,n,r,i){var o=[],a=[],s,l;if(e.forEach(function(d){if(!((m=d.length-1)<=0)){var m,g=d[0],y=d[m],b;if(hl(g,y)){if(!g[2]&&!y[2]){for(i.lineStart(),s=0;s<m;++s)i.point((g=d[s])[0],g[1]);i.lineEnd();return}y[0]+=2*oe}o.push(b=new pl(g,d,null,!0)),a.push(b.o=new pl(g,null,b,!1)),o.push(b=new pl(y,d,null,!1)),a.push(b.o=new pl(y,null,b,!0))}}),!!o.length){for(a.sort(t),T1(o),T1(a),s=0,l=a.length;s<l;++s)a[s].e=n=!n;for(var u=o[0],c,f;;){for(var h=u,p=!0;h.v;)if((h=h.n)===u)return;c=h.z,i.lineStart();do{if(h.v=h.o.v=!0,h.e){if(p)for(s=0,l=c.length;s<l;++s)i.point((f=c[s])[0],f[1]);else r(h.x,h.n.x,1,i);h=h.n}else{if(p)for(c=h.p.z,s=c.length-1;s>=0;--s)i.point((f=c[s])[0],f[1]);else r(h.x,h.p.x,-1,i);h=h.p}h=h.o,c=h.z,p=!p}while(!h.v);i.lineEnd()}}}function T1(e){if(t=e.length){for(var t,n=0,r=e[0],i;++n<t;)r.n=i=e[n],i.p=r,r=i;r.n=i=e[0],i.p=r}}function eh(e){return ge(e[0])<=he?e[0]:$t(e[0])*((ge(e[0])+he)%Ke-he)}function A1(e,t){var n=eh(t),r=t[1],i=te(r),o=[te(n),-re(n),0],a=0,s=0,l=new ke;i===1?r=Ae+oe:i===-1&&(r=-Ae-oe);for(var u=0,c=e.length;u<c;++u)if(h=(f=e[u]).length)for(var f,h,p=f[h-1],d=eh(p),m=p[1]/2+qs,g=te(m),y=re(m),b=0;b<h;++b,d=x,g=A,y=S,p=v){var v=f[b],x=eh(v),_=v[1]/2+qs,A=te(_),S=re(_),P=x-d,M=P>=0?1:-1,B=M*P,$=B>he,k=g*A;if(l.add(Qe(k*M*te(B),y*S+k*re(B))),a+=$?P+M*Ke:P,$^d>=n^x>=n){var C=mi(dr(p),dr(v));il(C);var T=mi(o,C);il(T);var w=($^P>=0?-1:1)*Je(T[2]);(r>w||r===w&&(C[0]||C[1]))&&(s+=$^P>=0?1:-1)}}return(a<-oe||a<oe&&l<-Lo)^s&1}function P1(e,t,n,r){return function(i){var o=t(i),a=S1(),s=t(a),l=!1,u,c,f,h={point:p,lineStart:m,lineEnd:g,polygonStart:function(){h.point=y,h.lineStart=b,h.lineEnd=v,c=[],u=[]},polygonEnd:function(){h.point=p,h.lineStart=m,h.lineEnd=g,c=Tc(c);var x=A1(u,r);c.length?(l||(i.polygonStart(),l=!0),w1(c,J8,x,n,i)):x&&(l||(i.polygonStart(),l=!0),i.lineStart(),n(null,null,1,i),i.lineEnd()),l&&(i.polygonEnd(),l=!1),c=u=null},sphere:function(){i.polygonStart(),i.lineStart(),n(null,null,1,i),i.lineEnd(),i.polygonEnd()}};function p(x,_){e(x,_)&&i.point(x,_)}function d(x,_){o.point(x,_)}function m(){h.point=d,o.lineStart()}function g(){h.point=p,o.lineEnd()}function y(x,_){f.push([x,_]),s.point(x,_)}function b(){s.lineStart(),f=[]}function v(){y(f[0][0],f[0][1]),s.lineEnd();var x=s.clean(),_=a.result(),A,S=_.length,P,M,B;if(f.pop(),u.push(f),f=null,!!S){if(x&1){if(M=_[0],(P=M.length-1)>0){for(l||(i.polygonStart(),l=!0),i.lineStart(),A=0;A<P;++A)i.point((B=M[A])[0],B[1]);i.lineEnd()}return}S>1&&x&2&&_.push(_.pop().concat(_.shift())),c.push(_.filter(Q8))}}return h}}function Q8(e){return e.length>1}function J8(e,t){return((e=e.x)[0]<0?e[1]-Ae-oe:Ae-e[1])-((t=t.x)[0]<0?t[1]-Ae-oe:Ae-t[1])}const th=P1(function(){return!0},e4,n4,[-he,-Ae]);function e4(e){var t=NaN,n=NaN,r=NaN,i;return{lineStart:function(){e.lineStart(),i=1},point:function(o,a){var s=o>0?he:-he,l=ge(o-t);ge(l-he)<oe?(e.point(t,n=(n+a)/2>0?Ae:-Ae),e.point(r,n),e.lineEnd(),e.lineStart(),e.point(s,n),e.point(o,n),i=0):r!==s&&l>=he&&(ge(t-r)<oe&&(t-=r*oe),ge(o-s)<oe&&(o-=s*oe),n=t4(t,n,o,a),e.point(r,n),e.lineEnd(),e.lineStart(),e.point(s,n),i=0),e.point(t=o,n=a),r=s},lineEnd:function(){e.lineEnd(),t=n=NaN},clean:function(){return 2-i}}}function t4(e,t,n,r){var i,o,a=te(e-n);return ge(a)>oe?gi((te(t)*(o=re(r))*te(n)-te(r)*(i=re(t))*te(e))/(i*o*a)):(t+r)/2}function n4(e,t,n,r){var i;if(e==null)i=n*Ae,r.point(-he,i),r.point(0,i),r.point(he,i),r.point(he,0),r.point(he,-i),r.point(0,-i),r.point(-he,-i),r.point(-he,0),r.point(-he,i);else if(ge(e[0]-t[0])>oe){var o=e[0]<t[0]?he:-he;i=n*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(t[0],t[1])}function D1(e){var t=re(e),n=2*ae,r=t>0,i=ge(t)>oe;function o(c,f,h,p){$1(p,e,n,h,c,f)}function a(c,f){return re(c)*re(f)>t}function s(c){var f,h,p,d,m;return{lineStart:function(){d=p=!1,m=1},point:function(g,y){var b=[g,y],v,x=a(g,y),_=r?x?0:u(g,y):x?u(g+(g<0?he:-he),y):0;if(!f&&(d=p=x)&&c.lineStart(),x!==p&&(v=l(f,b),(!v||hl(f,v)||hl(b,v))&&(b[2]=1)),x!==p)m=0,x?(c.lineStart(),v=l(b,f),c.point(v[0],v[1])):(v=l(f,b),c.point(v[0],v[1],2),c.lineEnd()),f=v;else if(i&&f&&r^x){var A;!(_&h)&&(A=l(b,f,!0))&&(m=0,r?(c.lineStart(),c.point(A[0][0],A[0][1]),c.point(A[1][0],A[1][1]),c.lineEnd()):(c.point(A[1][0],A[1][1]),c.lineEnd(),c.lineStart(),c.point(A[0][0],A[0][1],3)))}x&&(!f||!hl(f,b))&&c.point(b[0],b[1]),f=b,p=x,h=_},lineEnd:function(){p&&c.lineEnd(),f=null},clean:function(){return m|(d&&p)<<1}}}function l(c,f,h){var p=dr(c),d=dr(f),m=[1,0,0],g=mi(p,d),y=nl(g,g),b=g[0],v=y-b*b;if(!v)return!h&&c;var x=t*y/v,_=-t*b/v,A=mi(m,g),S=rl(m,x),P=rl(g,_);Vf(S,P);var M=A,B=nl(S,M),$=nl(M,M),k=B*B-$*(nl(S,S)-1);if(!(k<0)){var C=Ne(k),T=rl(M,(-B-C)/$);if(Vf(T,S),T=tl(T),!h)return T;var w=c[0],D=f[0],F=c[1],z=f[1],I;D<w&&(I=w,w=D,D=I);var N=D-w,E=ge(N-he)<oe,O=E||N<oe;if(!E&&z<F&&(I=F,F=z,z=I),O?E?F+z>0^T[1]<(ge(T[0]-w)<oe?F:z):F<=T[1]&&T[1]<=z:N>he^(w<=T[0]&&T[0]<=D)){var j=rl(M,(-B+C)/$);return Vf(j,S),[T,tl(j)]}}}function u(c,f){var h=r?e:he-e,p=0;return c<-h?p|=1:c>h&&(p|=2),f<-h?p|=4:f>h&&(p|=8),p}return P1(a,s,o,r?[0,-e]:[-he,e-he])}function r4(e,t,n,r,i,o){var a=e[0],s=e[1],l=t[0],u=t[1],c=0,f=1,h=l-a,p=u-s,d;if(d=n-a,!(!h&&d>0)){if(d/=h,h<0){if(d<c)return;d<f&&(f=d)}else if(h>0){if(d>f)return;d>c&&(c=d)}if(d=i-a,!(!h&&d<0)){if(d/=h,h<0){if(d>f)return;d>c&&(c=d)}else if(h>0){if(d<c)return;d<f&&(f=d)}if(d=r-s,!(!p&&d>0)){if(d/=p,p<0){if(d<c)return;d<f&&(f=d)}else if(p>0){if(d>f)return;d>c&&(c=d)}if(d=o-s,!(!p&&d<0)){if(d/=p,p<0){if(d>f)return;d>c&&(c=d)}else if(p>0){if(d<c)return;d<f&&(f=d)}return c>0&&(e[0]=a+c*h,e[1]=s+c*p),f<1&&(t[0]=a+f*h,t[1]=s+f*p),!0}}}}}var Io=1e9,dl=-Io;function gl(e,t,n,r){function i(u,c){return e<=u&&u<=n&&t<=c&&c<=r}function o(u,c,f,h){var p=0,d=0;if(u==null||(p=a(u,f))!==(d=a(c,f))||l(u,c)<0^f>0)do h.point(p===0||p===3?e:n,p>1?r:t);while((p=(p+f+4)%4)!==d);else h.point(c[0],c[1])}function a(u,c){return ge(u[0]-e)<oe?c>0?0:3:ge(u[0]-n)<oe?c>0?2:1:ge(u[1]-t)<oe?c>0?1:0:c>0?3:2}function s(u,c){return l(u.x,c.x)}function l(u,c){var f=a(u,1),h=a(c,1);return f!==h?f-h:f===0?c[1]-u[1]:f===1?u[0]-c[0]:f===2?u[1]-c[1]:c[0]-u[0]}return function(u){var c=u,f=S1(),h,p,d,m,g,y,b,v,x,_,A,S={point:P,lineStart:k,lineEnd:C,polygonStart:B,polygonEnd:$};function P(w,D){i(w,D)&&c.point(w,D)}function M(){for(var w=0,D=0,F=p.length;D<F;++D)for(var z=p[D],I=1,N=z.length,E=z[0],O,j,ie=E[0],W=E[1];I<N;++I)O=ie,j=W,E=z[I],ie=E[0],W=E[1],j<=r?W>r&&(ie-O)*(r-j)>(W-j)*(e-O)&&++w:W<=r&&(ie-O)*(r-j)<(W-j)*(e-O)&&--w;return w}function B(){c=f,h=[],p=[],A=!0}function $(){var w=M(),D=A&&w,F=(h=Tc(h)).length;(D||F)&&(u.polygonStart(),D&&(u.lineStart(),o(null,null,1,u),u.lineEnd()),F&&w1(h,s,w,o,u),u.polygonEnd()),c=u,h=p=d=null}function k(){S.point=T,p&&p.push(d=[]),_=!0,x=!1,b=v=NaN}function C(){h&&(T(m,g),y&&x&&f.rejoin(),h.push(f.result())),S.point=P,x&&c.lineEnd()}function T(w,D){var F=i(w,D);if(p&&d.push([w,D]),_)m=w,g=D,y=F,_=!1,F&&(c.lineStart(),c.point(w,D));else if(F&&x)c.point(w,D);else{var z=[b=Math.max(dl,Math.min(Io,b)),v=Math.max(dl,Math.min(Io,v))],I=[w=Math.max(dl,Math.min(Io,w)),D=Math.max(dl,Math.min(Io,D))];r4(z,I,e,t,n,r)?(x||(c.lineStart(),c.point(z[0],z[1])),c.point(I[0],I[1]),F||c.lineEnd(),A=!1):F&&(c.lineStart(),c.point(w,D),A=!1)}b=w,v=D,x=F}return S}}function i4(){var e=0,t=0,n=960,r=500,i,o,a;return a={stream:function(s){return i&&o===s?i:i=gl(e,t,n,r)(o=s)},extent:function(s){return arguments.length?(e=+s[0][0],t=+s[0][1],n=+s[1][0],r=+s[1][1],i=o=null,a):[[e,t],[n,r]]}}}var nh,rh,ml,yl,xi={sphere:we,point:we,lineStart:o4,lineEnd:we,polygonStart:we,polygonEnd:we};function o4(){xi.point=s4,xi.lineEnd=a4}function a4(){xi.point=xi.lineEnd=we}function s4(e,t){e*=ae,t*=ae,rh=e,ml=te(t),yl=re(t),xi.point=l4}function l4(e,t){e*=ae,t*=ae;var n=te(t),r=re(t),i=ge(e-rh),o=re(i),a=te(i),s=r*a,l=yl*n-ml*r*o,u=ml*n+yl*r*o;nh.add(Qe(Ne(s*s+l*l),u)),rh=e,ml=n,yl=r}function M1(e){return nh=new ke,Bt(e,xi),+nh}var ih=[null,null],u4={type:"LineString",coordinates:ih};function bl(e,t){return ih[0]=e,ih[1]=t,M1(u4)}var C1={Feature:function(e,t){return xl(e.geometry,t)},FeatureCollection:function(e,t){for(var n=e.features,r=-1,i=n.length;++r<i;)if(xl(n[r].geometry,t))return!0;return!1}},L1={Sphere:function(){return!0},Point:function(e,t){return k1(e.coordinates,t)},MultiPoint:function(e,t){for(var n=e.coordinates,r=-1,i=n.length;++r<i;)if(k1(n[r],t))return!0;return!1},LineString:function(e,t){return R1(e.coordinates,t)},MultiLineString:function(e,t){for(var n=e.coordinates,r=-1,i=n.length;++r<i;)if(R1(n[r],t))return!0;return!1},Polygon:function(e,t){return E1(e.coordinates,t)},MultiPolygon:function(e,t){for(var n=e.coordinates,r=-1,i=n.length;++r<i;)if(E1(n[r],t))return!0;return!1},GeometryCollection:function(e,t){for(var n=e.geometries,r=-1,i=n.length;++r<i;)if(xl(n[r],t))return!0;return!1}};function xl(e,t){return e&&L1.hasOwnProperty(e.type)?L1[e.type](e,t):!1}function k1(e,t){return bl(e,t)===0}function R1(e,t){for(var n,r,i,o=0,a=e.length;o<a;o++){if(r=bl(e[o],t),r===0||o>0&&(i=bl(e[o],e[o-1]),i>0&&n<=i&&r<=i&&(n+r-i)*(1-Math.pow((n-r)/i,2))<Lo*i))return!0;n=r}return!1}function E1(e,t){return!!A1(e.map(c4),I1(t))}function c4(e){return e=e.map(I1),e.pop(),e}function I1(e){return[e[0]*ae,e[1]*ae]}function f4(e,t){return(e&&C1.hasOwnProperty(e.type)?C1[e.type]:xl)(e,t)}function B1(e,t,n){var r=wn(e,t-oe,n).concat(t);return function(i){return r.map(function(o){return[i,o]})}}function N1(e,t,n){var r=wn(e,t-oe,n).concat(t);return function(i){return r.map(function(o){return[o,i]})}}function F1(){var e,t,n,r,i,o,a,s,l=10,u=l,c=90,f=360,h,p,d,m,g=2.5;function y(){return{type:"MultiLineString",coordinates:b()}}function b(){return wn(Zs(r/c)*c,n,c).map(d).concat(wn(Zs(s/f)*f,a,f).map(m)).concat(wn(Zs(t/l)*l,e,l).filter(function(v){return ge(v%c)>oe}).map(h)).concat(wn(Zs(o/u)*u,i,u).filter(function(v){return ge(v%f)>oe}).map(p))}return y.lines=function(){return b().map(function(v){return{type:"LineString",coordinates:v}})},y.outline=function(){return{type:"Polygon",coordinates:[d(r).concat(m(a).slice(1),d(n).reverse().slice(1),m(s).reverse().slice(1))]}},y.extent=function(v){return arguments.length?y.extentMajor(v).extentMinor(v):y.extentMinor()},y.extentMajor=function(v){return arguments.length?(r=+v[0][0],n=+v[1][0],s=+v[0][1],a=+v[1][1],r>n&&(v=r,r=n,n=v),s>a&&(v=s,s=a,a=v),y.precision(g)):[[r,s],[n,a]]},y.extentMinor=function(v){return arguments.length?(t=+v[0][0],e=+v[1][0],o=+v[0][1],i=+v[1][1],t>e&&(v=t,t=e,e=v),o>i&&(v=o,o=i,i=v),y.precision(g)):[[t,o],[e,i]]},y.step=function(v){return arguments.length?y.stepMajor(v).stepMinor(v):y.stepMinor()},y.stepMajor=function(v){return arguments.length?(c=+v[0],f=+v[1],y):[c,f]},y.stepMinor=function(v){return arguments.length?(l=+v[0],u=+v[1],y):[l,u]},y.precision=function(v){return arguments.length?(g=+v,h=B1(o,i,90),p=N1(t,e,g),d=B1(s,a,90),m=N1(r,n,g),y):g},y.extentMajor([[-180,-90+oe],[180,90-oe]]).extentMinor([[-180,-80-oe],[180,80+oe]])}function h4(){return F1()()}function p4(e,t){var n=e[0]*ae,r=e[1]*ae,i=t[0]*ae,o=t[1]*ae,a=re(r),s=te(r),l=re(o),u=te(o),c=a*re(n),f=a*te(n),h=l*re(i),p=l*te(i),d=2*Je(Ne(Qy(o-r)+a*l*Qy(i-n))),m=te(d),g=d?function(y){var b=te(y*=d)/m,v=te(d-y)/m,x=v*c+b*h,_=v*f+b*p,A=v*s+b*u;return[Qe(_,x)*ve,Qe(A,Ne(x*x+_*_))*ve]}:function(){return[n*ve,r*ve]};return g.distance=d,g}const Bo=e=>e;var oh=new ke,ah=new ke,z1,O1,sh,lh,cn={point:we,lineStart:we,lineEnd:we,polygonStart:function(){cn.lineStart=d4,cn.lineEnd=m4},polygonEnd:function(){cn.lineStart=cn.lineEnd=cn.point=we,oh.add(ge(ah)),ah=new ke},result:function(){var e=oh/2;return oh=new ke,e}};function d4(){cn.point=g4}function g4(e,t){cn.point=G1,z1=sh=e,O1=lh=t}function G1(e,t){ah.add(lh*e-sh*t),sh=e,lh=t}function m4(){G1(z1,O1)}var vi=1/0,vl=vi,No=-vi,$l=No,_l={point:y4,lineStart:we,lineEnd:we,polygonStart:we,polygonEnd:we,result:function(){var e=[[vi,vl],[No,$l]];return No=$l=-(vl=vi=1/0),e}};function y4(e,t){e<vi&&(vi=e),e>No&&(No=e),t<vl&&(vl=t),t>$l&&($l=t)}var uh=0,ch=0,Fo=0,Sl=0,wl=0,$i=0,fh=0,hh=0,zo=0,Y1,W1,jt,qt,_t={point:mr,lineStart:X1,lineEnd:V1,polygonStart:function(){_t.lineStart=v4,_t.lineEnd=$4},polygonEnd:function(){_t.point=mr,_t.lineStart=X1,_t.lineEnd=V1},result:function(){var e=zo?[fh/zo,hh/zo]:$i?[Sl/$i,wl/$i]:Fo?[uh/Fo,ch/Fo]:[NaN,NaN];return uh=ch=Fo=Sl=wl=$i=fh=hh=zo=0,e}};function mr(e,t){uh+=e,ch+=t,++Fo}function X1(){_t.point=b4}function b4(e,t){_t.point=x4,mr(jt=e,qt=t)}function x4(e,t){var n=e-jt,r=t-qt,i=Ne(n*n+r*r);Sl+=i*(jt+e)/2,wl+=i*(qt+t)/2,$i+=i,mr(jt=e,qt=t)}function V1(){_t.point=mr}function v4(){_t.point=_4}function $4(){U1(Y1,W1)}function _4(e,t){_t.point=U1,mr(Y1=jt=e,W1=qt=t)}function U1(e,t){var n=e-jt,r=t-qt,i=Ne(n*n+r*r);Sl+=i*(jt+e)/2,wl+=i*(qt+t)/2,$i+=i,i=qt*e-jt*t,fh+=i*(jt+e),hh+=i*(qt+t),zo+=i*3,mr(jt=e,qt=t)}function H1(e){this._context=e}H1.prototype={_radius:4.5,pointRadius:function(e){return this._radius=e,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){this._line===0&&this._context.closePath(),this._point=NaN},point:function(e,t){switch(this._point){case 0:{this._context.moveTo(e,t),this._point=1;break}case 1:{this._context.lineTo(e,t);break}default:{this._context.moveTo(e+this._radius,t),this._context.arc(e,t,this._radius,0,Ke);break}}},result:we};var ph=new ke,dh,j1,q1,Oo,Go,Yo={point:we,lineStart:function(){Yo.point=S4},lineEnd:function(){dh&&Z1(j1,q1),Yo.point=we},polygonStart:function(){dh=!0},polygonEnd:function(){dh=null},result:function(){var e=+ph;return ph=new ke,e}};function S4(e,t){Yo.point=Z1,j1=Oo=e,q1=Go=t}function Z1(e,t){Oo-=e,Go-=t,ph.add(Ne(Oo*Oo+Go*Go)),Oo=e,Go=t}let K1,Tl,Q1,J1;class eb{constructor(t){this._append=t==null?tb:w4(t),this._radius=4.5,this._=""}pointRadius(t){return this._radius=+t,this}polygonStart(){this._line=0}polygonEnd(){this._line=NaN}lineStart(){this._point=0}lineEnd(){this._line===0&&(this._+="Z"),this._point=NaN}point(t,n){switch(this._point){case 0:{this._append`M${t},${n}`,this._point=1;break}case 1:{this._append`L${t},${n}`;break}default:{if(this._append`M${t},${n}`,this._radius!==Q1||this._append!==Tl){const r=this._radius,i=this._;this._="",this._append`m0,${r}a${r},${r} 0 1,1 0,${-2*r}a${r},${r} 0 1,1 0,${2*r}z`,Q1=r,Tl=this._append,J1=this._,this._=i}this._+=J1;break}}}result(){const t=this._;return this._="",t.length?t:null}}function tb(e){let t=1;this._+=e[0];for(const n=e.length;t<n;++t)this._+=arguments[t]+e[t]}function w4(e){const t=Math.floor(e);if(!(t>=0))throw new RangeError(`invalid digits: ${e}`);if(t>15)return tb;if(t!==K1){const n=10**t;K1=t,Tl=function(i){let o=1;this._+=i[0];for(const a=i.length;o<a;++o)this._+=Math.round(arguments[o]*n)/n+i[o]}}return Tl}function T4(e,t){let n=3,r=4.5,i,o;function a(s){return s&&(typeof r=="function"&&o.pointRadius(+r.apply(this,arguments)),Bt(s,i(o))),o.result()}return a.area=function(s){return Bt(s,i(cn)),cn.result()},a.measure=function(s){return Bt(s,i(Yo)),Yo.result()},a.bounds=function(s){return Bt(s,i(_l)),_l.result()},a.centroid=function(s){return Bt(s,i(_t)),_t.result()},a.projection=function(s){return arguments.length?(i=s==null?(e=null,Bo):(e=s).stream,a):e},a.context=function(s){return arguments.length?(o=s==null?(t=null,new eb(n)):new H1(t=s),typeof r!="function"&&o.pointRadius(r),a):t},a.pointRadius=function(s){return arguments.length?(r=typeof s=="function"?s:(o.pointRadius(+s),+s),a):r},a.digits=function(s){if(!arguments.length)return n;if(s==null)n=null;else{const l=Math.floor(s);if(!(l>=0))throw new RangeError(`invalid digits: ${s}`);n=l}return t===null&&(o=new eb(n)),a},a.projection(e).digits(n).context(t)}function A4(e){return{stream:Wo(e)}}function Wo(e){return function(t){var n=new gh;for(var r in e)n[r]=e[r];return n.stream=t,n}}function gh(){}gh.prototype={constructor:gh,point:function(e,t){this.stream.point(e,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};function mh(e,t,n){var r=e.clipExtent&&e.clipExtent();return e.scale(150).translate([0,0]),r!=null&&e.clipExtent(null),Bt(n,e.stream(_l)),t(_l.result()),r!=null&&e.clipExtent(r),e}function Al(e,t,n){return mh(e,function(r){var i=t[1][0]-t[0][0],o=t[1][1]-t[0][1],a=Math.min(i/(r[1][0]-r[0][0]),o/(r[1][1]-r[0][1])),s=+t[0][0]+(i-a*(r[1][0]+r[0][0]))/2,l=+t[0][1]+(o-a*(r[1][1]+r[0][1]))/2;e.scale(150*a).translate([s,l])},n)}function yh(e,t,n){return Al(e,[[0,0],t],n)}function bh(e,t,n){return mh(e,function(r){var i=+t,o=i/(r[1][0]-r[0][0]),a=(i-o*(r[1][0]+r[0][0]))/2,s=-o*r[0][1];e.scale(150*o).translate([a,s])},n)}function xh(e,t,n){return mh(e,function(r){var i=+t,o=i/(r[1][1]-r[0][1]),a=-o*r[0][0],s=(i-o*(r[1][1]+r[0][1]))/2;e.scale(150*o).translate([a,s])},n)}var nb=16,P4=re(30*ae);function rb(e,t){return+t?M4(e,t):D4(e)}function D4(e){return Wo({point:function(t,n){t=e(t,n),this.stream.point(t[0],t[1])}})}function M4(e,t){function n(r,i,o,a,s,l,u,c,f,h,p,d,m,g){var y=u-r,b=c-i,v=y*y+b*b;if(v>4*t&&m--){var x=a+h,_=s+p,A=l+d,S=Ne(x*x+_*_+A*A),P=Je(A/=S),M=ge(ge(A)-1)<oe||ge(o-f)<oe?(o+f)/2:Qe(_,x),B=e(M,P),$=B[0],k=B[1],C=$-r,T=k-i,w=b*C-y*T;(w*w/v>t||ge((y*C+b*T)/v-.5)>.3||a*h+s*p+l*d<P4)&&(n(r,i,o,a,s,l,$,k,M,x/=S,_/=S,A,m,g),g.point($,k),n($,k,M,x,_,A,u,c,f,h,p,d,m,g))}}return function(r){var i,o,a,s,l,u,c,f,h,p,d,m,g={point:y,lineStart:b,lineEnd:x,polygonStart:function(){r.polygonStart(),g.lineStart=_},polygonEnd:function(){r.polygonEnd(),g.lineStart=b}};function y(P,M){P=e(P,M),r.point(P[0],P[1])}function b(){f=NaN,g.point=v,r.lineStart()}function v(P,M){var B=dr([P,M]),$=e(P,M);n(f,h,c,p,d,m,f=$[0],h=$[1],c=P,p=B[0],d=B[1],m=B[2],nb,r),r.point(f,h)}function x(){g.point=y,r.lineEnd()}function _(){b(),g.point=A,g.lineEnd=S}function A(P,M){v(i=P,M),o=f,a=h,s=p,l=d,u=m,g.point=v}function S(){n(f,h,c,p,d,m,o,a,i,s,l,u,nb,r),g.lineEnd=x,x()}return g}}var C4=Wo({point:function(e,t){this.stream.point(e*ae,t*ae)}});function L4(e){return Wo({point:function(t,n){var r=e(t,n);return this.stream.point(r[0],r[1])}})}function k4(e,t,n,r,i){function o(a,s){return a*=r,s*=i,[t+e*a,n-e*s]}return o.invert=function(a,s){return[(a-t)/e*r,(n-s)/e*i]},o}function ib(e,t,n,r,i,o){if(!o)return k4(e,t,n,r,i);var a=re(o),s=te(o),l=a*e,u=s*e,c=a/e,f=s/e,h=(s*n-a*t)/e,p=(s*t+a*n)/e;function d(m,g){return m*=r,g*=i,[l*m-u*g+t,n-u*m-l*g]}return d.invert=function(m,g){return[r*(c*m-f*g+h),i*(p-f*m-c*g)]},d}function Zt(e){return vh(function(){return e})()}function vh(e){var t,n=150,r=480,i=250,o=0,a=0,s=0,l=0,u=0,c,f=0,h=1,p=1,d=null,m=th,g=null,y,b,v,x=Bo,_=.5,A,S,P,M,B;function $(w){return P(w[0]*ae,w[1]*ae)}function k(w){return w=P.invert(w[0],w[1]),w&&[w[0]*ve,w[1]*ve]}$.stream=function(w){return M&&B===w?M:M=C4(L4(c)(m(A(x(B=w)))))},$.preclip=function(w){return arguments.length?(m=w,d=void 0,T()):m},$.postclip=function(w){return arguments.length?(x=w,g=y=b=v=null,T()):x},$.clipAngle=function(w){return arguments.length?(m=+w?D1(d=w*ae):(d=null,th),T()):d*ve},$.clipExtent=function(w){return arguments.length?(x=w==null?(g=y=b=v=null,Bo):gl(g=+w[0][0],y=+w[0][1],b=+w[1][0],v=+w[1][1]),T()):g==null?null:[[g,y],[b,v]]},$.scale=function(w){return arguments.length?(n=+w,C()):n},$.translate=function(w){return arguments.length?(r=+w[0],i=+w[1],C()):[r,i]},$.center=function(w){return arguments.length?(o=w[0]%360*ae,a=w[1]%360*ae,C()):[o*ve,a*ve]},$.rotate=function(w){return arguments.length?(s=w[0]%360*ae,l=w[1]%360*ae,u=w.length>2?w[2]%360*ae:0,C()):[s*ve,l*ve,u*ve]},$.angle=function(w){return arguments.length?(f=w%360*ae,C()):f*ve},$.reflectX=function(w){return arguments.length?(h=w?-1:1,C()):h<0},$.reflectY=function(w){return arguments.length?(p=w?-1:1,C()):p<0},$.precision=function(w){return arguments.length?(A=rb(S,_=w*w),T()):Ne(_)},$.fitExtent=function(w,D){return Al($,w,D)},$.fitSize=function(w,D){return yh($,w,D)},$.fitWidth=function(w,D){return bh($,w,D)},$.fitHeight=function(w,D){return xh($,w,D)};function C(){var w=ib(n,0,0,h,p,f).apply(null,t(o,a)),D=ib(n,r-w[0],i-w[1],h,p,f);return c=Jf(s,l,u),S=Kf(t,D),P=Kf(c,S),A=rb(S,_),T()}function T(){return M=B=null,$}return function(){return t=e.apply(this,arguments),$.invert=t.invert&&k,C()}}function $h(e){var t=0,n=he/3,r=vh(e),i=r(t,n);return i.parallels=function(o){return arguments.length?r(t=o[0]*ae,n=o[1]*ae):[t*ve,n*ve]},i}function R4(e){var t=re(e);function n(r,i){return[r*t,te(i)/t]}return n.invert=function(r,i){return[r/t,Je(i*t)]},n}function ob(e,t){var n=te(e),r=(n+te(t))/2;if(ge(r)<oe)return R4(e);var i=1+n*(2*r-n),o=Ne(i)/r;function a(s,l){var u=Ne(i-2*r*te(l))/r;return[u*te(s*=r),o-u*re(s)]}return a.invert=function(s,l){var u=o-l,c=Qe(s,ge(u))*$t(u);return u*r<0&&(c-=he*$t(s)*$t(u)),[c/r,Je((i-(s*s+u*u)*r*r)/(2*r))]},a}function Pl(){return $h(ob).scale(155.424).center([0,33.6442])}function ab(){return Pl().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function E4(e){var t=e.length;return{point:function(n,r){for(var i=-1;++i<t;)e[i].point(n,r)},sphere:function(){for(var n=-1;++n<t;)e[n].sphere()},lineStart:function(){for(var n=-1;++n<t;)e[n].lineStart()},lineEnd:function(){for(var n=-1;++n<t;)e[n].lineEnd()},polygonStart:function(){for(var n=-1;++n<t;)e[n].polygonStart()},polygonEnd:function(){for(var n=-1;++n<t;)e[n].polygonEnd()}}}function I4(){var e,t,n=ab(),r,i=Pl().rotate([154,0]).center([-2,58.5]).parallels([55,65]),o,a=Pl().rotate([157,0]).center([-3,19.9]).parallels([8,18]),s,l,u={point:function(h,p){l=[h,p]}};function c(h){var p=h[0],d=h[1];return l=null,r.point(p,d),l||(o.point(p,d),l)||(s.point(p,d),l)}c.invert=function(h){var p=n.scale(),d=n.translate(),m=(h[0]-d[0])/p,g=(h[1]-d[1])/p;return(g>=.12&&g<.234&&m>=-.425&&m<-.214?i:g>=.166&&g<.234&&m>=-.214&&m<-.115?a:n).invert(h)},c.stream=function(h){return e&&t===h?e:e=E4([n.stream(t=h),i.stream(h),a.stream(h)])},c.precision=function(h){return arguments.length?(n.precision(h),i.precision(h),a.precision(h),f()):n.precision()},c.scale=function(h){return arguments.length?(n.scale(h),i.scale(h*.35),a.scale(h),c.translate(n.translate())):n.scale()},c.translate=function(h){if(!arguments.length)return n.translate();var p=n.scale(),d=+h[0],m=+h[1];return r=n.translate(h).clipExtent([[d-.455*p,m-.238*p],[d+.455*p,m+.238*p]]).stream(u),o=i.translate([d-.307*p,m+.201*p]).clipExtent([[d-.425*p+oe,m+.12*p+oe],[d-.214*p-oe,m+.234*p-oe]]).stream(u),s=a.translate([d-.205*p,m+.212*p]).clipExtent([[d-.214*p+oe,m+.166*p+oe],[d-.115*p-oe,m+.234*p-oe]]).stream(u),f()},c.fitExtent=function(h,p){return Al(c,h,p)},c.fitSize=function(h,p){return yh(c,h,p)},c.fitWidth=function(h,p){return bh(c,h,p)},c.fitHeight=function(h,p){return xh(c,h,p)};function f(){return e=t=null,c}return c.scale(1070)}function sb(e){return function(t,n){var r=re(t),i=re(n),o=e(r*i);return o===1/0?[2,0]:[o*i*te(t),o*te(n)]}}function Xo(e){return function(t,n){var r=Ne(t*t+n*n),i=e(r),o=te(i),a=re(i);return[Qe(t*o,r*a),Je(r&&n*o/r)]}}var _h=sb(function(e){return Ne(2/(1+e))});_h.invert=Xo(function(e){return 2*Je(e/2)});function B4(){return Zt(_h).scale(124.75).clipAngle(180-.001)}var Sh=sb(function(e){return(e=Ky(e))&&e/te(e)});Sh.invert=Xo(function(e){return e});function N4(){return Zt(Sh).scale(79.4188).clipAngle(180-.001)}function Vo(e,t){return[e,Ks(Of((Ae+t)/2))]}Vo.invert=function(e,t){return[e,2*gi(Zy(t))-Ae]};function F4(){return lb(Vo).scale(961/Ke)}function lb(e){var t=Zt(e),n=t.center,r=t.scale,i=t.translate,o=t.clipExtent,a=null,s,l,u;t.scale=function(f){return arguments.length?(r(f),c()):r()},t.translate=function(f){return arguments.length?(i(f),c()):i()},t.center=function(f){return arguments.length?(n(f),c()):n()},t.clipExtent=function(f){return arguments.length?(f==null?a=s=l=u=null:(a=+f[0][0],s=+f[0][1],l=+f[1][0],u=+f[1][1]),c()):a==null?null:[[a,s],[l,u]]};function c(){var f=he*r(),h=t(v1(t.rotate()).invert([0,0]));return o(a==null?[[h[0]-f,h[1]-f],[h[0]+f,h[1]+f]]:e===Vo?[[Math.max(h[0]-f,a),s],[Math.min(h[0]+f,l),u]]:[[a,Math.max(h[1]-f,s)],[l,Math.min(h[1]+f,u)]])}return c()}function Dl(e){return Of((Ae+e)/2)}function ub(e,t){var n=re(e),r=e===t?te(e):Ks(n/re(t))/Ks(Dl(t)/Dl(e)),i=n*zf(Dl(e),r)/r;if(!r)return Vo;function o(a,s){i>0?s<-Ae+oe&&(s=-Ae+oe):s>Ae-oe&&(s=Ae-oe);var l=i/zf(Dl(s),r);return[l*te(r*a),i-l*re(r*a)]}return o.invert=function(a,s){var l=i-s,u=$t(r)*Ne(a*a+l*l),c=Qe(a,ge(l))*$t(l);return l*r<0&&(c-=he*$t(a)*$t(l)),[c/r,2*gi(zf(i/u,1/r))-Ae]},o}function z4(){return $h(ub).scale(109.5).parallels([30,30])}function Uo(e,t){return[e,t]}Uo.invert=Uo;function O4(){return Zt(Uo).scale(152.63)}function cb(e,t){var n=re(e),r=e===t?te(e):(n-re(t))/(t-e),i=n/r+e;if(ge(r)<oe)return Uo;function o(a,s){var l=i-s,u=r*a;return[l*te(u),i-l*re(u)]}return o.invert=function(a,s){var l=i-s,u=Qe(a,ge(l))*$t(l);return l*r<0&&(u-=he*$t(a)*$t(l)),[u/r,i-$t(r)*Ne(a*a+l*l)]},o}function G4(){return $h(cb).scale(131.154).center([0,13.9389])}var Ho=1.340264,jo=-.081106,qo=893e-6,Zo=.003796,Ml=Ne(3)/2,Y4=12;function wh(e,t){var n=Je(Ml*te(t)),r=n*n,i=r*r*r;return[e*re(n)/(Ml*(Ho+3*jo*r+i*(7*qo+9*Zo*r))),n*(Ho+jo*r+i*(qo+Zo*r))]}wh.invert=function(e,t){for(var n=t,r=n*n,i=r*r*r,o=0,a,s,l;o<Y4&&(s=n*(Ho+jo*r+i*(qo+Zo*r))-t,l=Ho+3*jo*r+i*(7*qo+9*Zo*r),n-=a=s/l,r=n*n,i=r*r*r,!(ge(a)<Lo));++o);return[Ml*e*(Ho+3*jo*r+i*(7*qo+9*Zo*r))/re(n),Je(te(n)/Ml)]};function W4(){return Zt(wh).scale(177.158)}function Th(e,t){var n=re(t),r=re(e)*n;return[n*te(e)/r,te(t)/r]}Th.invert=Xo(gi);function X4(){return Zt(Th).scale(144.049).clipAngle(60)}function V4(){var e=1,t=0,n=0,r=1,i=1,o=0,a,s,l=null,u,c,f,h=1,p=1,d=Wo({point:function(x,_){var A=v([x,_]);this.stream.point(A[0],A[1])}}),m=Bo,g,y;function b(){return h=e*r,p=e*i,g=y=null,v}function v(x){var _=x[0]*h,A=x[1]*p;if(o){var S=A*a-_*s;_=_*a+A*s,A=S}return[_+t,A+n]}return v.invert=function(x){var _=x[0]-t,A=x[1]-n;if(o){var S=A*a+_*s;_=_*a-A*s,A=S}return[_/h,A/p]},v.stream=function(x){return g&&y===x?g:g=d(m(y=x))},v.postclip=function(x){return arguments.length?(m=x,l=u=c=f=null,b()):m},v.clipExtent=function(x){return arguments.length?(m=x==null?(l=u=c=f=null,Bo):gl(l=+x[0][0],u=+x[0][1],c=+x[1][0],f=+x[1][1]),b()):l==null?null:[[l,u],[c,f]]},v.scale=function(x){return arguments.length?(e=+x,b()):e},v.translate=function(x){return arguments.length?(t=+x[0],n=+x[1],b()):[t,n]},v.angle=function(x){return arguments.length?(o=x%360*ae,s=te(o),a=re(o),b()):o*ve},v.reflectX=function(x){return arguments.length?(r=x?-1:1,b()):r<0},v.reflectY=function(x){return arguments.length?(i=x?-1:1,b()):i<0},v.fitExtent=function(x,_){return Al(v,x,_)},v.fitSize=function(x,_){return yh(v,x,_)},v.fitWidth=function(x,_){return bh(v,x,_)},v.fitHeight=function(x,_){return xh(v,x,_)},v}function Ah(e,t){var n=t*t,r=n*n;return[e*(.8707-.131979*n+r*(-.013791+r*(.003971*n-.001529*r))),t*(1.007226+n*(.015085+r*(-.044475+.028874*n-.005916*r)))]}Ah.invert=function(e,t){var n=t,r=25,i;do{var o=n*n,a=o*o;n-=i=(n*(1.007226+o*(.015085+a*(-.044475+.028874*o-.005916*a)))-t)/(1.007226+o*(.015085*3+a*(-.044475*7+.028874*9*o-.005916*11*a)))}while(ge(i)>oe&&--r>0);return[e/(.8707+(o=n*n)*(-.131979+o*(-.013791+o*o*o*(.003971-.001529*o)))),n]};function U4(){return Zt(Ah).scale(175.295)}function Ph(e,t){return[re(t)*te(e),te(t)]}Ph.invert=Xo(Je);function H4(){return Zt(Ph).scale(249.5).clipAngle(90+oe)}function Dh(e,t){var n=re(t),r=1+re(e)*n;return[n*te(e)/r,te(t)/r]}Dh.invert=Xo(function(e){return 2*gi(e)});function j4(){return Zt(Dh).scale(250).clipAngle(142)}function Mh(e,t){return[Ks(Of((Ae+t)/2)),-e]}Mh.invert=function(e,t){return[-t,2*gi(Zy(e))-Ae]};function q4(){var e=lb(Mh),t=e.center,n=e.rotate;return e.center=function(r){return arguments.length?t([-r[1],r[0]]):(r=t(),[r[1],-r[0]])},e.rotate=function(r){return arguments.length?n([r[0],r[1],r.length>2?r[2]+90:90]):(r=n(),[r[0],r[1],r[2]-90])},n([0,0,90]).scale(159.155)}function Z4(e,t){return e.parent===t.parent?1:2}function K4(e){return e.reduce(Q4,0)/e.length}function Q4(e,t){return e+t.x}function J4(e){return 1+e.reduce(e7,0)}function e7(e,t){return Math.max(e,t.y)}function t7(e){for(var t;t=e.children;)e=t[0];return e}function n7(e){for(var t;t=e.children;)e=t[t.length-1];return e}function r7(){var e=Z4,t=1,n=1,r=!1;function i(o){var a,s=0;o.eachAfter(function(h){var p=h.children;p?(h.x=K4(p),h.y=J4(p)):(h.x=a?s+=e(h,a):0,h.y=0,a=h)});var l=t7(o),u=n7(o),c=l.x-e(l,u)/2,f=u.x+e(u,l)/2;return o.eachAfter(r?function(h){h.x=(h.x-o.x)*t,h.y=(o.y-h.y)*n}:function(h){h.x=(h.x-c)/(f-c)*t,h.y=(1-(o.y?h.y/o.y:1))*n})}return i.separation=function(o){return arguments.length?(e=o,i):e},i.size=function(o){return arguments.length?(r=!1,t=+o[0],n=+o[1],i):r?null:[t,n]},i.nodeSize=function(o){return arguments.length?(r=!0,t=+o[0],n=+o[1],i):r?[t,n]:null},i}function i7(e){var t=0,n=e.children,r=n&&n.length;if(!r)t=1;else for(;--r>=0;)t+=n[r].value;e.value=t}function o7(){return this.eachAfter(i7)}function a7(e,t){let n=-1;for(const r of this)e.call(t,r,++n,this);return this}function s7(e,t){for(var n=this,r=[n],i,o,a=-1;n=r.pop();)if(e.call(t,n,++a,this),i=n.children)for(o=i.length-1;o>=0;--o)r.push(i[o]);return this}function l7(e,t){for(var n=this,r=[n],i=[],o,a,s,l=-1;n=r.pop();)if(i.push(n),o=n.children)for(a=0,s=o.length;a<s;++a)r.push(o[a]);for(;n=i.pop();)e.call(t,n,++l,this);return this}function u7(e,t){let n=-1;for(const r of this)if(e.call(t,r,++n,this))return r}function c7(e){return this.eachAfter(function(t){for(var n=+e(t.data)||0,r=t.children,i=r&&r.length;--i>=0;)n+=r[i].value;t.value=n})}function f7(e){return this.eachBefore(function(t){t.children&&t.children.sort(e)})}function h7(e){for(var t=this,n=p7(t,e),r=[t];t!==n;)t=t.parent,r.push(t);for(var i=r.length;e!==n;)r.splice(i,0,e),e=e.parent;return r}function p7(e,t){if(e===t)return e;var n=e.ancestors(),r=t.ancestors(),i=null;for(e=n.pop(),t=r.pop();e===t;)i=e,e=n.pop(),t=r.pop();return i}function d7(){for(var e=this,t=[e];e=e.parent;)t.push(e);return t}function g7(){return Array.from(this)}function m7(){var e=[];return this.eachBefore(function(t){t.children||e.push(t)}),e}function y7(){var e=this,t=[];return e.each(function(n){n!==e&&t.push({source:n.parent,target:n})}),t}function*b7(){var e=this,t,n=[e],r,i,o;do for(t=n.reverse(),n=[];e=t.pop();)if(yield e,r=e.children)for(i=0,o=r.length;i<o;++i)n.push(r[i]);while(n.length)}function Cl(e,t){e instanceof Map?(e=[void 0,e],t===void 0&&(t=$7)):t===void 0&&(t=v7);for(var n=new yr(e),r,i=[n],o,a,s,l;r=i.pop();)if((a=t(r.data))&&(l=(a=Array.from(a)).length))for(r.children=a,s=l-1;s>=0;--s)i.push(o=a[s]=new yr(a[s])),o.parent=r,o.depth=r.depth+1;return n.eachBefore(fb)}function x7(){return Cl(this).eachBefore(_7)}function v7(e){return e.children}function $7(e){return Array.isArray(e)?e[1]:null}function _7(e){e.data.value!==void 0&&(e.value=e.data.value),e.data=e.data.data}function fb(e){var t=0;do e.height=t;while((e=e.parent)&&e.height<++t)}function yr(e){this.data=e,this.depth=this.height=0,this.parent=null}yr.prototype=Cl.prototype={constructor:yr,count:o7,each:a7,eachAfter:l7,eachBefore:s7,find:u7,sum:c7,sort:f7,path:h7,ancestors:d7,descendants:g7,leaves:m7,links:y7,copy:x7,[Symbol.iterator]:b7};function Ll(e){return e==null?null:hb(e)}function hb(e){if(typeof e!="function")throw new Error;return e}function br(){return 0}function _i(e){return function(){return e}}const S7=1664525,w7=1013904223,pb=4294967296;function Ch(){let e=1;return()=>(e=(S7*e+w7)%pb)/pb}function T7(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function A7(e,t){let n=e.length,r,i;for(;n;)i=t()*n--|0,r=e[n],e[n]=e[i],e[i]=r;return e}function P7(e){return db(e,Ch())}function db(e,t){for(var n=0,r=(e=A7(Array.from(e),t)).length,i=[],o,a;n<r;)o=e[n],a&&gb(a,o)?++n:(a=M7(i=D7(i,o)),n=0);return a}function D7(e,t){var n,r;if(Lh(t,e))return[t];for(n=0;n<e.length;++n)if(kl(t,e[n])&&Lh(Ko(e[n],t),e))return[e[n],t];for(n=0;n<e.length-1;++n)for(r=n+1;r<e.length;++r)if(kl(Ko(e[n],e[r]),t)&&kl(Ko(e[n],t),e[r])&&kl(Ko(e[r],t),e[n])&&Lh(mb(e[n],e[r],t),e))return[e[n],e[r],t];throw new Error}function kl(e,t){var n=e.r-t.r,r=t.x-e.x,i=t.y-e.y;return n<0||n*n<r*r+i*i}function gb(e,t){var n=e.r-t.r+Math.max(e.r,t.r,1)*1e-9,r=t.x-e.x,i=t.y-e.y;return n>0&&n*n>r*r+i*i}function Lh(e,t){for(var n=0;n<t.length;++n)if(!gb(e,t[n]))return!1;return!0}function M7(e){switch(e.length){case 1:return C7(e[0]);case 2:return Ko(e[0],e[1]);case 3:return mb(e[0],e[1],e[2])}}function C7(e){return{x:e.x,y:e.y,r:e.r}}function Ko(e,t){var n=e.x,r=e.y,i=e.r,o=t.x,a=t.y,s=t.r,l=o-n,u=a-r,c=s-i,f=Math.sqrt(l*l+u*u);return{x:(n+o+l/f*c)/2,y:(r+a+u/f*c)/2,r:(f+i+s)/2}}function mb(e,t,n){var r=e.x,i=e.y,o=e.r,a=t.x,s=t.y,l=t.r,u=n.x,c=n.y,f=n.r,h=r-a,p=r-u,d=i-s,m=i-c,g=l-o,y=f-o,b=r*r+i*i-o*o,v=b-a*a-s*s+l*l,x=b-u*u-c*c+f*f,_=p*d-h*m,A=(d*x-m*v)/(_*2)-r,S=(m*g-d*y)/_,P=(p*v-h*x)/(_*2)-i,M=(h*y-p*g)/_,B=S*S+M*M-1,$=2*(o+A*S+P*M),k=A*A+P*P-o*o,C=-(Math.abs(B)>1e-6?($+Math.sqrt($*$-4*B*k))/(2*B):k/$);return{x:r+A+S*C,y:i+P+M*C,r:C}}function yb(e,t,n){var r=e.x-t.x,i,o,a=e.y-t.y,s,l,u=r*r+a*a;u?(o=t.r+n.r,o*=o,l=e.r+n.r,l*=l,o>l?(i=(u+l-o)/(2*u),s=Math.sqrt(Math.max(0,l/u-i*i)),n.x=e.x-i*r-s*a,n.y=e.y-i*a+s*r):(i=(u+o-l)/(2*u),s=Math.sqrt(Math.max(0,o/u-i*i)),n.x=t.x+i*r-s*a,n.y=t.y+i*a+s*r)):(n.x=t.x+n.r,n.y=t.y)}function bb(e,t){var n=e.r+t.r-1e-6,r=t.x-e.x,i=t.y-e.y;return n>0&&n*n>r*r+i*i}function xb(e){var t=e._,n=e.next._,r=t.r+n.r,i=(t.x*n.r+n.x*t.r)/r,o=(t.y*n.r+n.y*t.r)/r;return i*i+o*o}function Rl(e){this._=e,this.next=null,this.previous=null}function vb(e,t){if(!(o=(e=T7(e)).length))return 0;var n,r,i,o,a,s,l,u,c,f,h;if(n=e[0],n.x=0,n.y=0,!(o>1))return n.r;if(r=e[1],n.x=-r.r,r.x=n.r,r.y=0,!(o>2))return n.r+r.r;yb(r,n,i=e[2]),n=new Rl(n),r=new Rl(r),i=new Rl(i),n.next=i.previous=r,r.next=n.previous=i,i.next=r.previous=n;e:for(l=3;l<o;++l){yb(n._,r._,i=e[l]),i=new Rl(i),u=r.next,c=n.previous,f=r._.r,h=n._.r;do if(f<=h){if(bb(u._,i._)){r=u,n.next=r,r.previous=n,--l;continue e}f+=u._.r,u=u.next}else{if(bb(c._,i._)){n=c,n.next=r,r.previous=n,--l;continue e}h+=c._.r,c=c.previous}while(u!==c.next);for(i.previous=n,i.next=r,n.next=r.previous=r=i,a=xb(n);(i=i.next)!==r;)(s=xb(i))<a&&(n=i,a=s);r=n.next}for(n=[r._],i=r;(i=i.next)!==r;)n.push(i._);for(i=db(n,t),l=0;l<o;++l)n=e[l],n.x-=i.x,n.y-=i.y;return i.r}function L7(e){return vb(e,Ch()),e}function k7(e){return Math.sqrt(e.value)}function R7(){var e=null,t=1,n=1,r=br;function i(o){const a=Ch();return o.x=t/2,o.y=n/2,e?o.eachBefore($b(e)).eachAfter(kh(r,.5,a)).eachBefore(_b(1)):o.eachBefore($b(k7)).eachAfter(kh(br,1,a)).eachAfter(kh(r,o.r/Math.min(t,n),a)).eachBefore(_b(Math.min(t,n)/(2*o.r))),o}return i.radius=function(o){return arguments.length?(e=Ll(o),i):e},i.size=function(o){return arguments.length?(t=+o[0],n=+o[1],i):[t,n]},i.padding=function(o){return arguments.length?(r=typeof o=="function"?o:_i(+o),i):r},i}function $b(e){return function(t){t.children||(t.r=Math.max(0,+e(t)||0))}}function kh(e,t,n){return function(r){if(i=r.children){var i,o,a=i.length,s=e(r)*t||0,l;if(s)for(o=0;o<a;++o)i[o].r+=s;if(l=vb(i,n),s)for(o=0;o<a;++o)i[o].r-=s;r.r=l+s}}}function _b(e){return function(t){var n=t.parent;t.r*=e,n&&(t.x=n.x+e*t.x,t.y=n.y+e*t.y)}}function Sb(e){e.x0=Math.round(e.x0),e.y0=Math.round(e.y0),e.x1=Math.round(e.x1),e.y1=Math.round(e.y1)}function Qo(e,t,n,r,i){for(var o=e.children,a,s=-1,l=o.length,u=e.value&&(r-t)/e.value;++s<l;)a=o[s],a.y0=n,a.y1=i,a.x0=t,a.x1=t+=a.value*u}function E7(){var e=1,t=1,n=0,r=!1;function i(a){var s=a.height+1;return a.x0=a.y0=n,a.x1=e,a.y1=t/s,a.eachBefore(o(t,s)),r&&a.eachBefore(Sb),a}function o(a,s){return function(l){l.children&&Qo(l,l.x0,a*(l.depth+1)/s,l.x1,a*(l.depth+2)/s);var u=l.x0,c=l.y0,f=l.x1-n,h=l.y1-n;f<u&&(u=f=(u+f)/2),h<c&&(c=h=(c+h)/2),l.x0=u,l.y0=c,l.x1=f,l.y1=h}}return i.round=function(a){return arguments.length?(r=!!a,i):r},i.size=function(a){return arguments.length?(e=+a[0],t=+a[1],i):[e,t]},i.padding=function(a){return arguments.length?(n=+a,i):n},i}var I7={depth:-1},wb={},Rh={};function B7(e){return e.id}function N7(e){return e.parentId}function F7(){var e=B7,t=N7,n;function r(i){var o=Array.from(i),a=e,s=t,l,u,c,f,h,p,d,m,g=new Map;if(n!=null){const y=o.map((x,_)=>z7(n(x,_,i))),b=y.map(Tb),v=new Set(y).add("");for(const x of b)v.has(x)||(v.add(x),y.push(x),b.push(Tb(x)),o.push(Rh));a=(x,_)=>y[_],s=(x,_)=>b[_]}for(c=0,l=o.length;c<l;++c)u=o[c],p=o[c]=new yr(u),(d=a(u,c,i))!=null&&(d+="")&&(m=p.id=d,g.set(m,g.has(m)?wb:p)),(d=s(u,c,i))!=null&&(d+="")&&(p.parent=d);for(c=0;c<l;++c)if(p=o[c],d=p.parent){if(h=g.get(d),!h)throw new Error("missing: "+d);if(h===wb)throw new Error("ambiguous: "+d);h.children?h.children.push(p):h.children=[p],p.parent=h}else{if(f)throw new Error("multiple roots");f=p}if(!f)throw new Error("no root");if(n!=null){for(;f.data===Rh&&f.children.length===1;)f=f.children[0],--l;for(let y=o.length-1;y>=0&&(p=o[y],p.data===Rh);--y)p.data=null}if(f.parent=I7,f.eachBefore(function(y){y.depth=y.parent.depth+1,--l}).eachBefore(fb),f.parent=null,l>0)throw new Error("cycle");return f}return r.id=function(i){return arguments.length?(e=Ll(i),r):e},r.parentId=function(i){return arguments.length?(t=Ll(i),r):t},r.path=function(i){return arguments.length?(n=Ll(i),r):n},r}function z7(e){e=`${e}`;let t=e.length;return Eh(e,t-1)&&!Eh(e,t-2)&&(e=e.slice(0,-1)),e[0]==="/"?e:`/${e}`}function Tb(e){let t=e.length;if(t<2)return"";for(;--t>1&&!Eh(e,t););return e.slice(0,t)}function Eh(e,t){if(e[t]==="/"){let n=0;for(;t>0&&e[--t]==="\\";)++n;if(!(n&1))return!0}return!1}function O7(e,t){return e.parent===t.parent?1:2}function Ih(e){var t=e.children;return t?t[0]:e.t}function Bh(e){var t=e.children;return t?t[t.length-1]:e.t}function G7(e,t,n){var r=n/(t.i-e.i);t.c-=r,t.s+=n,e.c+=r,t.z+=n,t.m+=n}function Y7(e){for(var t=0,n=0,r=e.children,i=r.length,o;--i>=0;)o=r[i],o.z+=t,o.m+=t,t+=o.s+(n+=o.c)}function W7(e,t,n){return e.a.parent===t.parent?e.a:n}function El(e,t){this._=e,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=t}El.prototype=Object.create(yr.prototype);function X7(e){for(var t=new El(e,0),n,r=[t],i,o,a,s;n=r.pop();)if(o=n._.children)for(n.children=new Array(s=o.length),a=s-1;a>=0;--a)r.push(i=n.children[a]=new El(o[a],a)),i.parent=n;return(t.parent=new El(null,0)).children=[t],t}function V7(){var e=O7,t=1,n=1,r=null;function i(u){var c=X7(u);if(c.eachAfter(o),c.parent.m=-c.z,c.eachBefore(a),r)u.eachBefore(l);else{var f=u,h=u,p=u;u.eachBefore(function(b){b.x<f.x&&(f=b),b.x>h.x&&(h=b),b.depth>p.depth&&(p=b)});var d=f===h?1:e(f,h)/2,m=d-f.x,g=t/(h.x+d+m),y=n/(p.depth||1);u.eachBefore(function(b){b.x=(b.x+m)*g,b.y=b.depth*y})}return u}function o(u){var c=u.children,f=u.parent.children,h=u.i?f[u.i-1]:null;if(c){Y7(u);var p=(c[0].z+c[c.length-1].z)/2;h?(u.z=h.z+e(u._,h._),u.m=u.z-p):u.z=p}else h&&(u.z=h.z+e(u._,h._));u.parent.A=s(u,h,u.parent.A||f[0])}function a(u){u._.x=u.z+u.parent.m,u.m+=u.parent.m}function s(u,c,f){if(c){for(var h=u,p=u,d=c,m=h.parent.children[0],g=h.m,y=p.m,b=d.m,v=m.m,x;d=Bh(d),h=Ih(h),d&&h;)m=Ih(m),p=Bh(p),p.a=u,x=d.z+b-h.z-g+e(d._,h._),x>0&&(G7(W7(d,u,f),u,x),g+=x,y+=x),b+=d.m,g+=h.m,v+=m.m,y+=p.m;d&&!Bh(p)&&(p.t=d,p.m+=b-y),h&&!Ih(m)&&(m.t=h,m.m+=g-v,f=u)}return f}function l(u){u.x*=t,u.y=u.depth*n}return i.separation=function(u){return arguments.length?(e=u,i):e},i.size=function(u){return arguments.length?(r=!1,t=+u[0],n=+u[1],i):r?null:[t,n]},i.nodeSize=function(u){return arguments.length?(r=!0,t=+u[0],n=+u[1],i):r?[t,n]:null},i}function Il(e,t,n,r,i){for(var o=e.children,a,s=-1,l=o.length,u=e.value&&(i-n)/e.value;++s<l;)a=o[s],a.x0=t,a.x1=r,a.y0=n,a.y1=n+=a.value*u}var Ab=(1+Math.sqrt(5))/2;function Pb(e,t,n,r,i,o){for(var a=[],s=t.children,l,u,c=0,f=0,h=s.length,p,d,m=t.value,g,y,b,v,x,_,A;c<h;){p=i-n,d=o-r;do g=s[f++].value;while(!g&&f<h);for(y=b=g,_=Math.max(d/p,p/d)/(m*e),A=g*g*_,x=Math.max(b/A,A/y);f<h;++f){if(g+=u=s[f].value,u<y&&(y=u),u>b&&(b=u),A=g*g*_,v=Math.max(b/A,A/y),v>x){g-=u;break}x=v}a.push(l={value:g,dice:p<d,children:s.slice(c,f)}),l.dice?Qo(l,n,r,i,m?r+=d*g/m:o):Il(l,n,r,m?n+=p*g/m:i,o),m-=g,c=f}return a}const Nh=function e(t){function n(r,i,o,a,s){Pb(t,r,i,o,a,s)}return n.ratio=function(r){return e((r=+r)>1?r:1)},n}(Ab);function Db(){var e=Nh,t=!1,n=1,r=1,i=[0],o=br,a=br,s=br,l=br,u=br;function c(h){return h.x0=h.y0=0,h.x1=n,h.y1=r,h.eachBefore(f),i=[0],t&&h.eachBefore(Sb),h}function f(h){var p=i[h.depth],d=h.x0+p,m=h.y0+p,g=h.x1-p,y=h.y1-p;g<d&&(d=g=(d+g)/2),y<m&&(m=y=(m+y)/2),h.x0=d,h.y0=m,h.x1=g,h.y1=y,h.children&&(p=i[h.depth+1]=o(h)/2,d+=u(h)-p,m+=a(h)-p,g-=s(h)-p,y-=l(h)-p,g<d&&(d=g=(d+g)/2),y<m&&(m=y=(m+y)/2),e(h,d,m,g,y))}return c.round=function(h){return arguments.length?(t=!!h,c):t},c.size=function(h){return arguments.length?(n=+h[0],r=+h[1],c):[n,r]},c.tile=function(h){return arguments.length?(e=hb(h),c):e},c.padding=function(h){return arguments.length?c.paddingInner(h).paddingOuter(h):c.paddingInner()},c.paddingInner=function(h){return arguments.length?(o=typeof h=="function"?h:_i(+h),c):o},c.paddingOuter=function(h){return arguments.length?c.paddingTop(h).paddingRight(h).paddingBottom(h).paddingLeft(h):c.paddingTop()},c.paddingTop=function(h){return arguments.length?(a=typeof h=="function"?h:_i(+h),c):a},c.paddingRight=function(h){return arguments.length?(s=typeof h=="function"?h:_i(+h),c):s},c.paddingBottom=function(h){return arguments.length?(l=typeof h=="function"?h:_i(+h),c):l},c.paddingLeft=function(h){return arguments.length?(u=typeof h=="function"?h:_i(+h),c):u},c}function U7(e,t,n,r,i){var o=e.children,a,s=o.length,l,u=new Array(s+1);for(u[0]=l=a=0;a<s;++a)u[a+1]=l+=o[a].value;c(0,s,e.value,t,n,r,i);function c(f,h,p,d,m,g,y){if(f>=h-1){var b=o[f];b.x0=d,b.y0=m,b.x1=g,b.y1=y;return}for(var v=u[f],x=p/2+v,_=f+1,A=h-1;_<A;){var S=_+A>>>1;u[S]<x?_=S+1:A=S}x-u[_-1]<u[_]-x&&f+1<_&&--_;var P=u[_]-v,M=p-P;if(g-d>y-m){var B=p?(d*M+g*P)/p:g;c(f,_,P,d,m,B,y),c(_,h,M,B,m,g,y)}else{var $=p?(m*M+y*P)/p:y;c(f,_,P,d,m,g,$),c(_,h,M,d,$,g,y)}}}function H7(e,t,n,r,i){(e.depth&1?Il:Qo)(e,t,n,r,i)}const j7=function e(t){function n(r,i,o,a,s){if((l=r._squarify)&&l.ratio===t)for(var l,u,c,f,h=-1,p,d=l.length,m=r.value;++h<d;){for(u=l[h],c=u.children,f=u.value=0,p=c.length;f<p;++f)u.value+=c[f].value;u.dice?Qo(u,i,o,a,m?o+=(s-o)*u.value/m:s):Il(u,i,o,m?i+=(a-i)*u.value/m:a,s),m-=u.value}else r._squarify=l=Pb(t,r,i,o,a,s),l.ratio=t}return n.ratio=function(r){return e((r=+r)>1?r:1)},n}(Ab);function q7(e){for(var t=-1,n=e.length,r,i=e[n-1],o=0;++t<n;)r=i,i=e[t],o+=r[1]*i[0]-r[0]*i[1];return o/2}function Z7(e){for(var t=-1,n=e.length,r=0,i=0,o,a=e[n-1],s,l=0;++t<n;)o=a,a=e[t],l+=s=o[0]*a[1]-a[0]*o[1],r+=(o[0]+a[0])*s,i+=(o[1]+a[1])*s;return l*=3,[r/l,i/l]}function K7(e,t,n){return(t[0]-e[0])*(n[1]-e[1])-(t[1]-e[1])*(n[0]-e[0])}function Q7(e,t){return e[0]-t[0]||e[1]-t[1]}function Mb(e){const t=e.length,n=[0,1];let r=2,i;for(i=2;i<t;++i){for(;r>1&&K7(e[n[r-2]],e[n[r-1]],e[i])<=0;)--r;n[r++]=i}return n.slice(0,r)}function J7(e){if((n=e.length)<3)return null;var t,n,r=new Array(n),i=new Array(n);for(t=0;t<n;++t)r[t]=[+e[t][0],+e[t][1],t];for(r.sort(Q7),t=0;t<n;++t)i[t]=[r[t][0],-r[t][1]];var o=Mb(r),a=Mb(i),s=a[0]===o[0],l=a[a.length-1]===o[o.length-1],u=[];for(t=o.length-1;t>=0;--t)u.push(e[r[o[t]][2]]);for(t=+s;t<a.length-l;++t)u.push(e[r[a[t]][2]]);return u}function ek(e,t){for(var n=e.length,r=e[n-1],i=t[0],o=t[1],a=r[0],s=r[1],l,u,c=!1,f=0;f<n;++f)r=e[f],l=r[0],u=r[1],u>o!=s>o&&i<(a-l)*(o-u)/(s-u)+l&&(c=!c),a=l,s=u;return c}function tk(e){for(var t=-1,n=e.length,r=e[n-1],i,o,a=r[0],s=r[1],l=0;++t<n;)i=a,o=s,r=e[t],a=r[0],s=r[1],i-=a,o-=s,l+=Math.hypot(i,o);return l}const Oe=Math.random,nk=function e(t){function n(r,i){return r=r==null?0:+r,i=i==null?1:+i,arguments.length===1?(i=r,r=0):i-=r,function(){return t()*i+r}}return n.source=e,n}(Oe),rk=function e(t){function n(r,i){return arguments.length<2&&(i=r,r=0),r=Math.floor(r),i=Math.floor(i)-r,function(){return Math.floor(t()*i+r)}}return n.source=e,n}(Oe),Fh=function e(t){function n(r,i){var o,a;return r=r==null?0:+r,i=i==null?1:+i,function(){var s;if(o!=null)s=o,o=null;else do o=t()*2-1,s=t()*2-1,a=o*o+s*s;while(!a||a>1);return r+i*s*Math.sqrt(-2*Math.log(a)/a)}}return n.source=e,n}(Oe),ik=function e(t){var n=Fh.source(t);function r(){var i=n.apply(this,arguments);return function(){return Math.exp(i())}}return r.source=e,r}(Oe),Cb=function e(t){function n(r){return(r=+r)<=0?()=>0:function(){for(var i=0,o=r;o>1;--o)i+=t();return i+o*t()}}return n.source=e,n}(Oe),ok=function e(t){var n=Cb.source(t);function r(i){if((i=+i)==0)return t;var o=n(i);return function(){return o()/i}}return r.source=e,r}(Oe),ak=function e(t){function n(r){return function(){return-Math.log1p(-t())/r}}return n.source=e,n}(Oe),sk=function e(t){function n(r){if((r=+r)<0)throw new RangeError("invalid alpha");return r=1/-r,function(){return Math.pow(1-t(),r)}}return n.source=e,n}(Oe),lk=function e(t){function n(r){if((r=+r)<0||r>1)throw new RangeError("invalid p");return function(){return Math.floor(t()+r)}}return n.source=e,n}(Oe),Lb=function e(t){function n(r){if((r=+r)<0||r>1)throw new RangeError("invalid p");return r===0?()=>1/0:r===1?()=>1:(r=Math.log1p(-r),function(){return 1+Math.floor(Math.log1p(-t())/r)})}return n.source=e,n}(Oe),zh=function e(t){var n=Fh.source(t)();function r(i,o){if((i=+i)<0)throw new RangeError("invalid k");if(i===0)return()=>0;if(o=o==null?1:+o,i===1)return()=>-Math.log1p(-t())*o;var a=(i<1?i+1:i)-1/3,s=1/(3*Math.sqrt(a)),l=i<1?()=>Math.pow(t(),1/i):()=>1;return function(){do{do var u=n(),c=1+s*u;while(c<=0);c*=c*c;var f=1-t()}while(f>=1-.0331*u*u*u*u&&Math.log(f)>=.5*u*u+a*(1-c+Math.log(c)));return a*c*l()*o}}return r.source=e,r}(Oe),kb=function e(t){var n=zh.source(t);function r(i,o){var a=n(i),s=n(o);return function(){var l=a();return l===0?0:l/(l+s())}}return r.source=e,r}(Oe),Rb=function e(t){var n=Lb.source(t),r=kb.source(t);function i(o,a){return o=+o,(a=+a)>=1?()=>o:a<=0?()=>0:function(){for(var s=0,l=o,u=a;l*u>16&&l*(1-u)>16;){var c=Math.floor((l+1)*u),f=r(c,l-c+1)();f<=u?(s+=c,l-=c,u=(u-f)/(1-f)):(l=c-1,u/=f)}for(var h=u<.5,p=h?u:1-u,d=n(p),m=d(),g=0;m<=l;++g)m+=d();return s+(h?g:l-g)}}return i.source=e,i}(Oe),uk=function e(t){function n(r,i,o){var a;return(r=+r)==0?a=s=>-Math.log(s):(r=1/r,a=s=>Math.pow(s,r)),i=i==null?0:+i,o=o==null?1:+o,function(){return i+o*a(-Math.log1p(-t()))}}return n.source=e,n}(Oe),ck=function e(t){function n(r,i){return r=r==null?0:+r,i=i==null?1:+i,function(){return r+i*Math.tan(Math.PI*t())}}return n.source=e,n}(Oe),fk=function e(t){function n(r,i){return r=r==null?0:+r,i=i==null?1:+i,function(){var o=t();return r+i*Math.log(o/(1-o))}}return n.source=e,n}(Oe),hk=function e(t){var n=zh.source(t),r=Rb.source(t);function i(o){return function(){for(var a=0,s=o;s>16;){var l=Math.floor(.875*s),u=n(l)();if(u>s)return a+r(l-1,s/u)();a+=l,s-=u}for(var c=-Math.log1p(-t()),f=0;c<=s;++f)c-=Math.log1p(-t());return a+f}}return i.source=e,i}(Oe),pk=1664525,dk=1013904223,Eb=1/4294967296;function gk(e=Math.random()){let t=(0<=e&&e<1?e/Eb:Math.abs(e))|0;return()=>(t=pk*t+dk|0,Eb*(t>>>0))}function St(e,t){switch(arguments.length){case 0:break;case 1:this.range(e);break;default:this.range(t).domain(e);break}return this}function fn(e,t){switch(arguments.length){case 0:break;case 1:{typeof e=="function"?this.interpolator(e):this.range(e);break}default:{this.domain(e),typeof t=="function"?this.interpolator(t):this.range(t);break}}return this}const Oh=Symbol("implicit");function Gh(){var e=new oo,t=[],n=[],r=Oh;function i(o){let a=e.get(o);if(a===void 0){if(r!==Oh)return r;e.set(o,a=t.push(o)-1)}return n[a%n.length]}return i.domain=function(o){if(!arguments.length)return t.slice();t=[],e=new oo;for(const a of o)e.has(a)||e.set(a,t.push(a)-1);return i},i.range=function(o){return arguments.length?(n=Array.from(o),i):n.slice()},i.unknown=function(o){return arguments.length?(r=o,i):r},i.copy=function(){return Gh(t,n).unknown(r)},St.apply(i,arguments),i}function Yh(){var e=Gh().unknown(void 0),t=e.domain,n=e.range,r=0,i=1,o,a,s=!1,l=0,u=0,c=.5;delete e.unknown;function f(){var h=t().length,p=i<r,d=p?i:r,m=p?r:i;o=(m-d)/Math.max(1,h-l+u*2),s&&(o=Math.floor(o)),d+=(m-d-o*(h-l))*c,a=o*(1-l),s&&(d=Math.round(d),a=Math.round(a));var g=wn(h).map(function(y){return d+o*y});return n(p?g.reverse():g)}return e.domain=function(h){return arguments.length?(t(h),f()):t()},e.range=function(h){return arguments.length?([r,i]=h,r=+r,i=+i,f()):[r,i]},e.rangeRound=function(h){return[r,i]=h,r=+r,i=+i,s=!0,f()},e.bandwidth=function(){return a},e.step=function(){return o},e.round=function(h){return arguments.length?(s=!!h,f()):s},e.padding=function(h){return arguments.length?(l=Math.min(1,u=+h),f()):l},e.paddingInner=function(h){return arguments.length?(l=Math.min(1,h),f()):l},e.paddingOuter=function(h){return arguments.length?(u=+h,f()):u},e.align=function(h){return arguments.length?(c=Math.max(0,Math.min(1,h)),f()):c},e.copy=function(){return Yh(t(),[r,i]).round(s).paddingInner(l).paddingOuter(u).align(c)},St.apply(f(),arguments)}function Ib(e){var t=e.copy;return e.padding=e.paddingOuter,delete e.paddingInner,delete e.paddingOuter,e.copy=function(){return Ib(t())},e}function Wh(){return Ib(Yh.apply(null,arguments).paddingInner(1))}function mk(e){return function(){return e}}function Bl(e){return+e}var Bb=[0,1];function rt(e){return e}function Xh(e,t){return(t-=e=+e)?function(n){return(n-e)/t}:mk(isNaN(t)?NaN:.5)}function yk(e,t){var n;return e>t&&(n=e,e=t,t=n),function(r){return Math.max(e,Math.min(t,r))}}function bk(e,t,n){var r=e[0],i=e[1],o=t[0],a=t[1];return i<r?(r=Xh(i,r),o=n(a,o)):(r=Xh(r,i),o=n(o,a)),function(s){return o(r(s))}}function xk(e,t,n){var r=Math.min(e.length,t.length)-1,i=new Array(r),o=new Array(r),a=-1;for(e[r]<e[0]&&(e=e.slice().reverse(),t=t.slice().reverse());++a<r;)i[a]=Xh(e[a],e[a+1]),o[a]=n(t[a],t[a+1]);return function(s){var l=jn(e,s,1,r)-1;return o[l](i[l](s))}}function Jo(e,t){return t.domain(e.domain()).range(e.range()).interpolate(e.interpolate()).clamp(e.clamp()).unknown(e.unknown())}function Nl(){var e=Bb,t=Bb,n=nn,r,i,o,a=rt,s,l,u;function c(){var h=Math.min(e.length,t.length);return a!==rt&&(a=yk(e[0],e[h-1])),s=h>2?xk:bk,l=u=null,f}function f(h){return h==null||isNaN(h=+h)?o:(l||(l=s(e.map(r),t,n)))(r(a(h)))}return f.invert=function(h){return a(i((u||(u=s(t,e.map(r),vt)))(h)))},f.domain=function(h){return arguments.length?(e=Array.from(h,Bl),c()):e.slice()},f.range=function(h){return arguments.length?(t=Array.from(h),c()):t.slice()},f.rangeRound=function(h){return t=Array.from(h),n=Ss,c()},f.clamp=function(h){return arguments.length?(a=h?!0:rt,c()):a!==rt},f.interpolate=function(h){return arguments.length?(n=h,c()):n},f.unknown=function(h){return arguments.length?(o=h,f):o},function(h,p){return r=h,i=p,c()}}function Vh(){return Nl()(rt,rt)}function Nb(e,t,n,r){var i=Ja(e,t,n),o;switch(r=di(r??",f"),r.type){case"s":{var a=Math.max(Math.abs(e),Math.abs(t));return r.precision==null&&!isNaN(o=jy(i,a))&&(r.precision=o),Nf(r,a)}case"":case"e":case"g":case"p":case"r":{r.precision==null&&!isNaN(o=qy(i,Math.max(Math.abs(e),Math.abs(t))))&&(r.precision=o-(r.type==="e"));break}case"f":case"%":{r.precision==null&&!isNaN(o=Hy(i))&&(r.precision=o-(r.type==="%")*2);break}}return Co(r)}function Ln(e){var t=e.domain;return e.ticks=function(n){var r=t();return Zn(r[0],r[r.length-1],n??10)},e.tickFormat=function(n,r){var i=t();return Nb(i[0],i[i.length-1],n??10,r)},e.nice=function(n){n==null&&(n=10);var r=t(),i=0,o=r.length-1,a=r[i],s=r[o],l,u,c=10;for(s<a&&(u=a,a=s,s=u,u=i,i=o,o=u);c-- >0;){if(u=Kn(a,s,n),u===l)return r[i]=a,r[o]=s,t(r);if(u>0)a=Math.floor(a/u)*u,s=Math.ceil(s/u)*u;else if(u<0)a=Math.ceil(a*u)/u,s=Math.floor(s*u)/u;else break;l=u}return e},e}function xr(){var e=Vh();return e.copy=function(){return Jo(e,xr())},St.apply(e,arguments),Ln(e)}function Fb(e){var t;function n(r){return r==null||isNaN(r=+r)?t:r}return n.invert=n,n.domain=n.range=function(r){return arguments.length?(e=Array.from(r,Bl),n):e.slice()},n.unknown=function(r){return arguments.length?(t=r,n):t},n.copy=function(){return Fb(e).unknown(t)},e=arguments.length?Array.from(e,Bl):[0,1],Ln(n)}function zb(e,t){e=e.slice();var n=0,r=e.length-1,i=e[n],o=e[r],a;return o<i&&(a=n,n=r,r=a,a=i,i=o,o=a),e[n]=t.floor(i),e[r]=t.ceil(o),e}function Ob(e){return Math.log(e)}function Gb(e){return Math.exp(e)}function vk(e){return-Math.log(-e)}function $k(e){return-Math.exp(-e)}function _k(e){return isFinite(e)?+("1e"+e):e<0?0:e}function Sk(e){return e===10?_k:e===Math.E?Math.exp:t=>Math.pow(e,t)}function wk(e){return e===Math.E?Math.log:e===10&&Math.log10||e===2&&Math.log2||(e=Math.log(e),t=>Math.log(t)/e)}function Yb(e){return(t,n)=>-e(-t,n)}function Uh(e){const t=e(Ob,Gb),n=t.domain;let r=10,i,o;function a(){return i=wk(r),o=Sk(r),n()[0]<0?(i=Yb(i),o=Yb(o),e(vk,$k)):e(Ob,Gb),t}return t.base=function(s){return arguments.length?(r=+s,a()):r},t.domain=function(s){return arguments.length?(n(s),a()):n()},t.ticks=s=>{const l=n();let u=l[0],c=l[l.length-1];const f=c<u;f&&([u,c]=[c,u]);let h=i(u),p=i(c),d,m;const g=s==null?10:+s;let y=[];if(!(r%1)&&p-h<g){if(h=Math.floor(h),p=Math.ceil(p),u>0){for(;h<=p;++h)for(d=1;d<r;++d)if(m=h<0?d/o(-h):d*o(h),!(m<u)){if(m>c)break;y.push(m)}}else for(;h<=p;++h)for(d=r-1;d>=1;--d)if(m=h>0?d/o(-h):d*o(h),!(m<u)){if(m>c)break;y.push(m)}y.length*2<g&&(y=Zn(u,c,g))}else y=Zn(h,p,Math.min(p-h,g)).map(o);return f?y.reverse():y},t.tickFormat=(s,l)=>{if(s==null&&(s=10),l==null&&(l=r===10?"s":","),typeof l!="function"&&(!(r%1)&&(l=di(l)).precision==null&&(l.trim=!0),l=Co(l)),s===1/0)return l;const u=Math.max(1,r*s/t.ticks().length);return c=>{let f=c/o(Math.round(i(c)));return f*r<r-.5&&(f*=r),f<=u?l(c):""}},t.nice=()=>n(zb(n(),{floor:s=>o(Math.floor(i(s))),ceil:s=>o(Math.ceil(i(s)))})),t}function Wb(){const e=Uh(Nl()).domain([1,10]);return e.copy=()=>Jo(e,Wb()).base(e.base()),St.apply(e,arguments),e}function Xb(e){return function(t){return Math.sign(t)*Math.log1p(Math.abs(t/e))}}function Vb(e){return function(t){return Math.sign(t)*Math.expm1(Math.abs(t))*e}}function Hh(e){var t=1,n=e(Xb(t),Vb(t));return n.constant=function(r){return arguments.length?e(Xb(t=+r),Vb(t)):t},Ln(n)}function Ub(){var e=Hh(Nl());return e.copy=function(){return Jo(e,Ub()).constant(e.constant())},St.apply(e,arguments)}function Hb(e){return function(t){return t<0?-Math.pow(-t,e):Math.pow(t,e)}}function Tk(e){return e<0?-Math.sqrt(-e):Math.sqrt(e)}function Ak(e){return e<0?-e*e:e*e}function jh(e){var t=e(rt,rt),n=1;function r(){return n===1?e(rt,rt):n===.5?e(Tk,Ak):e(Hb(n),Hb(1/n))}return t.exponent=function(i){return arguments.length?(n=+i,r()):n},Ln(t)}function kn(){var e=jh(Nl());return e.copy=function(){return Jo(e,kn()).exponent(e.exponent())},St.apply(e,arguments),e}function Pk(){return kn.apply(null,arguments).exponent(.5)}function jb(e){return Math.sign(e)*e*e}function Dk(e){return Math.sign(e)*Math.sqrt(Math.abs(e))}function qb(){var e=Vh(),t=[0,1],n=!1,r;function i(o){var a=Dk(e(o));return isNaN(a)?r:n?Math.round(a):a}return i.invert=function(o){return e.invert(jb(o))},i.domain=function(o){return arguments.length?(e.domain(o),i):e.domain()},i.range=function(o){return arguments.length?(e.range((t=Array.from(o,Bl)).map(jb)),i):t.slice()},i.rangeRound=function(o){return i.range(o).round(!0)},i.round=function(o){return arguments.length?(n=!!o,i):n},i.clamp=function(o){return arguments.length?(e.clamp(o),i):e.clamp()},i.unknown=function(o){return arguments.length?(r=o,i):r},i.copy=function(){return qb(e.domain(),t).round(n).clamp(e.clamp()).unknown(r)},St.apply(i,arguments),Ln(i)}function Zb(){var e=[],t=[],n=[],r;function i(){var a=0,s=Math.max(1,t.length);for(n=new Array(s-1);++a<s;)n[a-1]=E0(e,a/s);return o}function o(a){return a==null||isNaN(a=+a)?r:t[jn(n,a)]}return o.invertExtent=function(a){var s=t.indexOf(a);return s<0?[NaN,NaN]:[s>0?n[s-1]:e[0],s<n.length?n[s]:e[e.length-1]]},o.domain=function(a){if(!arguments.length)return e.slice();e=[];for(let s of a)s!=null&&!isNaN(s=+s)&&e.push(s);return e.sort(Se),i()},o.range=function(a){return arguments.length?(t=Array.from(a),i()):t.slice()},o.unknown=function(a){return arguments.length?(r=a,o):r},o.quantiles=function(){return n.slice()},o.copy=function(){return Zb().domain(e).range(t).unknown(r)},St.apply(o,arguments)}function Kb(){var e=0,t=1,n=1,r=[.5],i=[0,1],o;function a(l){return l!=null&&l<=l?i[jn(r,l,0,n)]:o}function s(){var l=-1;for(r=new Array(n);++l<n;)r[l]=((l+1)*t-(l-n)*e)/(n+1);return a}return a.domain=function(l){return arguments.length?([e,t]=l,e=+e,t=+t,s()):[e,t]},a.range=function(l){return arguments.length?(n=(i=Array.from(l)).length-1,s()):i.slice()},a.invertExtent=function(l){var u=i.indexOf(l);return u<0?[NaN,NaN]:u<1?[e,r[0]]:u>=n?[r[n-1],t]:[r[u-1],r[u]]},a.unknown=function(l){return arguments.length&&(o=l),a},a.thresholds=function(){return r.slice()},a.copy=function(){return Kb().domain([e,t]).range(i).unknown(o)},St.apply(Ln(a),arguments)}function Qb(){var e=[.5],t=[0,1],n,r=1;function i(o){return o!=null&&o<=o?t[jn(e,o,0,r)]:n}return i.domain=function(o){return arguments.length?(e=Array.from(o),r=Math.min(e.length,t.length-1),i):e.slice()},i.range=function(o){return arguments.length?(t=Array.from(o),r=Math.min(e.length,t.length-1),i):t.slice()},i.invertExtent=function(o){var a=t.indexOf(o);return[e[a-1],e[a]]},i.unknown=function(o){return arguments.length?(n=o,i):n},i.copy=function(){return Qb().domain(e).range(t).unknown(n)},St.apply(i,arguments)}const qh=new Date,Zh=new Date;function Ce(e,t,n,r){function i(o){return e(o=arguments.length===0?new Date:new Date(+o)),o}return i.floor=o=>(e(o=new Date(+o)),o),i.ceil=o=>(e(o=new Date(o-1)),t(o,1),e(o),o),i.round=o=>{const a=i(o),s=i.ceil(o);return o-a<s-o?a:s},i.offset=(o,a)=>(t(o=new Date(+o),a==null?1:Math.floor(a)),o),i.range=(o,a,s)=>{const l=[];if(o=i.ceil(o),s=s==null?1:Math.floor(s),!(o<a)||!(s>0))return l;let u;do l.push(u=new Date(+o)),t(o,s),e(o);while(u<o&&o<a);return l},i.filter=o=>Ce(a=>{if(a>=a)for(;e(a),!o(a);)a.setTime(a-1)},(a,s)=>{if(a>=a)if(s<0)for(;++s<=0;)for(;t(a,-1),!o(a););else for(;--s>=0;)for(;t(a,1),!o(a););}),n&&(i.count=(o,a)=>(qh.setTime(+o),Zh.setTime(+a),e(qh),e(Zh),Math.floor(n(qh,Zh))),i.every=o=>(o=Math.floor(o),!isFinite(o)||!(o>0)?null:o>1?i.filter(r?a=>r(a)%o===0:a=>i.count(0,a)%o===0):i)),i}const Si=Ce(()=>{},(e,t)=>{e.setTime(+e+t)},(e,t)=>t-e);Si.every=e=>(e=Math.floor(e),!isFinite(e)||!(e>0)?null:e>1?Ce(t=>{t.setTime(Math.floor(t/e)*e)},(t,n)=>{t.setTime(+t+n*e)},(t,n)=>(n-t)/e):Si);const Jb=Si.range,hn=1e3,wt=hn*60,pn=wt*60,dn=pn*24,Kh=dn*7,ex=dn*30,Qh=dn*365,gn=Ce(e=>{e.setTime(e-e.getMilliseconds())},(e,t)=>{e.setTime(+e+t*hn)},(e,t)=>(t-e)/hn,e=>e.getUTCSeconds()),tx=gn.range,Fl=Ce(e=>{e.setTime(e-e.getMilliseconds()-e.getSeconds()*hn)},(e,t)=>{e.setTime(+e+t*wt)},(e,t)=>(t-e)/wt,e=>e.getMinutes()),Mk=Fl.range,zl=Ce(e=>{e.setUTCSeconds(0,0)},(e,t)=>{e.setTime(+e+t*wt)},(e,t)=>(t-e)/wt,e=>e.getUTCMinutes()),Ck=zl.range,Ol=Ce(e=>{e.setTime(e-e.getMilliseconds()-e.getSeconds()*hn-e.getMinutes()*wt)},(e,t)=>{e.setTime(+e+t*pn)},(e,t)=>(t-e)/pn,e=>e.getHours()),Lk=Ol.range,Gl=Ce(e=>{e.setUTCMinutes(0,0,0)},(e,t)=>{e.setTime(+e+t*pn)},(e,t)=>(t-e)/pn,e=>e.getUTCHours()),kk=Gl.range,wi=Ce(e=>e.setHours(0,0,0,0),(e,t)=>e.setDate(e.getDate()+t),(e,t)=>(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*wt)/dn,e=>e.getDate()-1),Rk=wi.range,ea=Ce(e=>{e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCDate(e.getUTCDate()+t)},(e,t)=>(t-e)/dn,e=>e.getUTCDate()-1),Ek=ea.range,Jh=Ce(e=>{e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCDate(e.getUTCDate()+t)},(e,t)=>(t-e)/dn,e=>Math.floor(e/dn)),Ik=Jh.range;function vr(e){return Ce(t=>{t.setDate(t.getDate()-(t.getDay()+7-e)%7),t.setHours(0,0,0,0)},(t,n)=>{t.setDate(t.getDate()+n*7)},(t,n)=>(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*wt)/Kh)}const Ti=vr(0),ta=vr(1),nx=vr(2),rx=vr(3),$r=vr(4),ix=vr(5),ox=vr(6),ax=Ti.range,Bk=ta.range,Nk=nx.range,Fk=rx.range,zk=$r.range,Ok=ix.range,Gk=ox.range;function _r(e){return Ce(t=>{t.setUTCDate(t.getUTCDate()-(t.getUTCDay()+7-e)%7),t.setUTCHours(0,0,0,0)},(t,n)=>{t.setUTCDate(t.getUTCDate()+n*7)},(t,n)=>(n-t)/Kh)}const Ai=_r(0),na=_r(1),sx=_r(2),lx=_r(3),Sr=_r(4),ux=_r(5),cx=_r(6),fx=Ai.range,Yk=na.range,Wk=sx.range,Xk=lx.range,Vk=Sr.range,Uk=ux.range,Hk=cx.range,Yl=Ce(e=>{e.setDate(1),e.setHours(0,0,0,0)},(e,t)=>{e.setMonth(e.getMonth()+t)},(e,t)=>t.getMonth()-e.getMonth()+(t.getFullYear()-e.getFullYear())*12,e=>e.getMonth()),jk=Yl.range,Wl=Ce(e=>{e.setUTCDate(1),e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCMonth(e.getUTCMonth()+t)},(e,t)=>t.getUTCMonth()-e.getUTCMonth()+(t.getUTCFullYear()-e.getUTCFullYear())*12,e=>e.getUTCMonth()),qk=Wl.range,Kt=Ce(e=>{e.setMonth(0,1),e.setHours(0,0,0,0)},(e,t)=>{e.setFullYear(e.getFullYear()+t)},(e,t)=>t.getFullYear()-e.getFullYear(),e=>e.getFullYear());Kt.every=e=>!isFinite(e=Math.floor(e))||!(e>0)?null:Ce(t=>{t.setFullYear(Math.floor(t.getFullYear()/e)*e),t.setMonth(0,1),t.setHours(0,0,0,0)},(t,n)=>{t.setFullYear(t.getFullYear()+n*e)});const Zk=Kt.range,Qt=Ce(e=>{e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCFullYear(e.getUTCFullYear()+t)},(e,t)=>t.getUTCFullYear()-e.getUTCFullYear(),e=>e.getUTCFullYear());Qt.every=e=>!isFinite(e=Math.floor(e))||!(e>0)?null:Ce(t=>{t.setUTCFullYear(Math.floor(t.getUTCFullYear()/e)*e),t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},(t,n)=>{t.setUTCFullYear(t.getUTCFullYear()+n*e)});const Kk=Qt.range;function hx(e,t,n,r,i,o){const a=[[gn,1,hn],[gn,5,5*hn],[gn,15,15*hn],[gn,30,30*hn],[o,1,wt],[o,5,5*wt],[o,15,15*wt],[o,30,30*wt],[i,1,pn],[i,3,3*pn],[i,6,6*pn],[i,12,12*pn],[r,1,dn],[r,2,2*dn],[n,1,Kh],[t,1,ex],[t,3,3*ex],[e,1,Qh]];function s(u,c,f){const h=c<u;h&&([u,c]=[c,u]);const p=f&&typeof f.range=="function"?f:l(u,c,f),d=p?p.range(u,+c+1):[];return h?d.reverse():d}function l(u,c,f){const h=Math.abs(c-u)/f,p=qa(([,,g])=>g).right(a,h);if(p===a.length)return e.every(Ja(u/Qh,c/Qh,f));if(p===0)return Si.every(Math.max(Ja(u,c,f),1));const[d,m]=a[h/a[p-1][2]<a[p][2]/h?p-1:p];return d.every(m)}return[s,l]}const[px,dx]=hx(Qt,Wl,Ai,Jh,Gl,zl),[gx,mx]=hx(Kt,Yl,Ti,wi,Ol,Fl);function ep(e){if(0<=e.y&&e.y<100){var t=new Date(-1,e.m,e.d,e.H,e.M,e.S,e.L);return t.setFullYear(e.y),t}return new Date(e.y,e.m,e.d,e.H,e.M,e.S,e.L)}function tp(e){if(0<=e.y&&e.y<100){var t=new Date(Date.UTC(-1,e.m,e.d,e.H,e.M,e.S,e.L));return t.setUTCFullYear(e.y),t}return new Date(Date.UTC(e.y,e.m,e.d,e.H,e.M,e.S,e.L))}function ra(e,t,n){return{y:e,m:t,d:n,H:0,M:0,S:0,L:0}}function yx(e){var t=e.dateTime,n=e.date,r=e.time,i=e.periods,o=e.days,a=e.shortDays,s=e.months,l=e.shortMonths,u=ia(i),c=oa(i),f=ia(o),h=oa(o),p=ia(a),d=oa(a),m=ia(s),g=oa(s),y=ia(l),b=oa(l),v={a:F,A:z,b:I,B:N,c:null,d:Sx,e:Sx,f:v9,g:C9,G:k9,H:y9,I:b9,j:x9,L:wx,m:$9,M:_9,p:E,q:O,Q:Cx,s:Lx,S:S9,u:w9,U:T9,V:A9,w:P9,W:D9,x:null,X:null,y:M9,Y:L9,Z:R9,"%":Mx},x={a:j,A:ie,b:W,B:Q,c:null,d:Ax,e:Ax,f:N9,g:H9,G:q9,H:E9,I:I9,j:B9,L:Px,m:F9,M:z9,p:X,q:K,Q:Cx,s:Lx,S:O9,u:G9,U:Y9,V:W9,w:X9,W:V9,x:null,X:null,y:U9,Y:j9,Z:Z9,"%":Mx},_={a:B,A:$,b:k,B:C,c:T,d:$x,e:$x,f:p9,g:vx,G:xx,H:_x,I:_x,j:u9,L:h9,m:l9,M:c9,p:M,q:s9,Q:g9,s:m9,S:f9,u:n9,U:r9,V:i9,w:t9,W:o9,x:w,X:D,y:vx,Y:xx,Z:a9,"%":d9};v.x=A(n,v),v.X=A(r,v),v.c=A(t,v),x.x=A(n,x),x.X=A(r,x),x.c=A(t,x);function A(q,ne){return function(se){var U=[],me=-1,fe=0,Ee=q.length,it,le,De;for(se instanceof Date||(se=new Date(+se));++me<Ee;)q.charCodeAt(me)===37&&(U.push(q.slice(fe,me)),(le=bx[it=q.charAt(++me)])!=null?it=q.charAt(++me):le=it==="e"?" ":"0",(De=ne[it])&&(it=De(se,le)),U.push(it),fe=me+1);return U.push(q.slice(fe,me)),U.join("")}}function S(q,ne){return function(se){var U=ra(1900,void 0,1),me=P(U,q,se+="",0),fe,Ee;if(me!=se.length)return null;if("Q"in U)return new Date(U.Q);if("s"in U)return new Date(U.s*1e3+("L"in U?U.L:0));if(ne&&!("Z"in U)&&(U.Z=0),"p"in U&&(U.H=U.H%12+U.p*12),U.m===void 0&&(U.m="q"in U?U.q:0),"V"in U){if(U.V<1||U.V>53)return null;"w"in U||(U.w=1),"Z"in U?(fe=tp(ra(U.y,0,1)),Ee=fe.getUTCDay(),fe=Ee>4||Ee===0?na.ceil(fe):na(fe),fe=ea.offset(fe,(U.V-1)*7),U.y=fe.getUTCFullYear(),U.m=fe.getUTCMonth(),U.d=fe.getUTCDate()+(U.w+6)%7):(fe=ep(ra(U.y,0,1)),Ee=fe.getDay(),fe=Ee>4||Ee===0?ta.ceil(fe):ta(fe),fe=wi.offset(fe,(U.V-1)*7),U.y=fe.getFullYear(),U.m=fe.getMonth(),U.d=fe.getDate()+(U.w+6)%7)}else("W"in U||"U"in U)&&("w"in U||(U.w="u"in U?U.u%7:"W"in U?1:0),Ee="Z"in U?tp(ra(U.y,0,1)).getUTCDay():ep(ra(U.y,0,1)).getDay(),U.m=0,U.d="W"in U?(U.w+6)%7+U.W*7-(Ee+5)%7:U.w+U.U*7-(Ee+6)%7);return"Z"in U?(U.H+=U.Z/100|0,U.M+=U.Z%100,tp(U)):ep(U)}}function P(q,ne,se,U){for(var me=0,fe=ne.length,Ee=se.length,it,le;me<fe;){if(U>=Ee)return-1;if(it=ne.charCodeAt(me++),it===37){if(it=ne.charAt(me++),le=_[it in bx?ne.charAt(me++):it],!le||(U=le(q,se,U))<0)return-1}else if(it!=se.charCodeAt(U++))return-1}return U}function M(q,ne,se){var U=u.exec(ne.slice(se));return U?(q.p=c.get(U[0].toLowerCase()),se+U[0].length):-1}function B(q,ne,se){var U=p.exec(ne.slice(se));return U?(q.w=d.get(U[0].toLowerCase()),se+U[0].length):-1}function $(q,ne,se){var U=f.exec(ne.slice(se));return U?(q.w=h.get(U[0].toLowerCase()),se+U[0].length):-1}function k(q,ne,se){var U=y.exec(ne.slice(se));return U?(q.m=b.get(U[0].toLowerCase()),se+U[0].length):-1}function C(q,ne,se){var U=m.exec(ne.slice(se));return U?(q.m=g.get(U[0].toLowerCase()),se+U[0].length):-1}function T(q,ne,se){return P(q,t,ne,se)}function w(q,ne,se){return P(q,n,ne,se)}function D(q,ne,se){return P(q,r,ne,se)}function F(q){return a[q.getDay()]}function z(q){return o[q.getDay()]}function I(q){return l[q.getMonth()]}function N(q){return s[q.getMonth()]}function E(q){return i[+(q.getHours()>=12)]}function O(q){return 1+~~(q.getMonth()/3)}function j(q){return a[q.getUTCDay()]}function ie(q){return o[q.getUTCDay()]}function W(q){return l[q.getUTCMonth()]}function Q(q){return s[q.getUTCMonth()]}function X(q){return i[+(q.getUTCHours()>=12)]}function K(q){return 1+~~(q.getUTCMonth()/3)}return{format:function(q){var ne=A(q+="",v);return ne.toString=function(){return q},ne},parse:function(q){var ne=S(q+="",!1);return ne.toString=function(){return q},ne},utcFormat:function(q){var ne=A(q+="",x);return ne.toString=function(){return q},ne},utcParse:function(q){var ne=S(q+="",!0);return ne.toString=function(){return q},ne}}}var bx={"-":"",_:" ",0:"0"},Fe=/^\s*\d+/,Qk=/^%/,Jk=/[\\^$*+?|[\]().{}]/g;function ye(e,t,n){var r=e<0?"-":"",i=(r?-e:e)+"",o=i.length;return r+(o<n?new Array(n-o+1).join(t)+i:i)}function e9(e){return e.replace(Jk,"\\$&")}function ia(e){return new RegExp("^(?:"+e.map(e9).join("|")+")","i")}function oa(e){return new Map(e.map((t,n)=>[t.toLowerCase(),n]))}function t9(e,t,n){var r=Fe.exec(t.slice(n,n+1));return r?(e.w=+r[0],n+r[0].length):-1}function n9(e,t,n){var r=Fe.exec(t.slice(n,n+1));return r?(e.u=+r[0],n+r[0].length):-1}function r9(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.U=+r[0],n+r[0].length):-1}function i9(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.V=+r[0],n+r[0].length):-1}function o9(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.W=+r[0],n+r[0].length):-1}function xx(e,t,n){var r=Fe.exec(t.slice(n,n+4));return r?(e.y=+r[0],n+r[0].length):-1}function vx(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.y=+r[0]+(+r[0]>68?1900:2e3),n+r[0].length):-1}function a9(e,t,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(t.slice(n,n+6));return r?(e.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function s9(e,t,n){var r=Fe.exec(t.slice(n,n+1));return r?(e.q=r[0]*3-3,n+r[0].length):-1}function l9(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.m=r[0]-1,n+r[0].length):-1}function $x(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.d=+r[0],n+r[0].length):-1}function u9(e,t,n){var r=Fe.exec(t.slice(n,n+3));return r?(e.m=0,e.d=+r[0],n+r[0].length):-1}function _x(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.H=+r[0],n+r[0].length):-1}function c9(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.M=+r[0],n+r[0].length):-1}function f9(e,t,n){var r=Fe.exec(t.slice(n,n+2));return r?(e.S=+r[0],n+r[0].length):-1}function h9(e,t,n){var r=Fe.exec(t.slice(n,n+3));return r?(e.L=+r[0],n+r[0].length):-1}function p9(e,t,n){var r=Fe.exec(t.slice(n,n+6));return r?(e.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function d9(e,t,n){var r=Qk.exec(t.slice(n,n+1));return r?n+r[0].length:-1}function g9(e,t,n){var r=Fe.exec(t.slice(n));return r?(e.Q=+r[0],n+r[0].length):-1}function m9(e,t,n){var r=Fe.exec(t.slice(n));return r?(e.s=+r[0],n+r[0].length):-1}function Sx(e,t){return ye(e.getDate(),t,2)}function y9(e,t){return ye(e.getHours(),t,2)}function b9(e,t){return ye(e.getHours()%12||12,t,2)}function x9(e,t){return ye(1+wi.count(Kt(e),e),t,3)}function wx(e,t){return ye(e.getMilliseconds(),t,3)}function v9(e,t){return wx(e,t)+"000"}function $9(e,t){return ye(e.getMonth()+1,t,2)}function _9(e,t){return ye(e.getMinutes(),t,2)}function S9(e,t){return ye(e.getSeconds(),t,2)}function w9(e){var t=e.getDay();return t===0?7:t}function T9(e,t){return ye(Ti.count(Kt(e)-1,e),t,2)}function Tx(e){var t=e.getDay();return t>=4||t===0?$r(e):$r.ceil(e)}function A9(e,t){return e=Tx(e),ye($r.count(Kt(e),e)+(Kt(e).getDay()===4),t,2)}function P9(e){return e.getDay()}function D9(e,t){return ye(ta.count(Kt(e)-1,e),t,2)}function M9(e,t){return ye(e.getFullYear()%100,t,2)}function C9(e,t){return e=Tx(e),ye(e.getFullYear()%100,t,2)}function L9(e,t){return ye(e.getFullYear()%1e4,t,4)}function k9(e,t){var n=e.getDay();return e=n>=4||n===0?$r(e):$r.ceil(e),ye(e.getFullYear()%1e4,t,4)}function R9(e){var t=e.getTimezoneOffset();return(t>0?"-":(t*=-1,"+"))+ye(t/60|0,"0",2)+ye(t%60,"0",2)}function Ax(e,t){return ye(e.getUTCDate(),t,2)}function E9(e,t){return ye(e.getUTCHours(),t,2)}function I9(e,t){return ye(e.getUTCHours()%12||12,t,2)}function B9(e,t){return ye(1+ea.count(Qt(e),e),t,3)}function Px(e,t){return ye(e.getUTCMilliseconds(),t,3)}function N9(e,t){return Px(e,t)+"000"}function F9(e,t){return ye(e.getUTCMonth()+1,t,2)}function z9(e,t){return ye(e.getUTCMinutes(),t,2)}function O9(e,t){return ye(e.getUTCSeconds(),t,2)}function G9(e){var t=e.getUTCDay();return t===0?7:t}function Y9(e,t){return ye(Ai.count(Qt(e)-1,e),t,2)}function Dx(e){var t=e.getUTCDay();return t>=4||t===0?Sr(e):Sr.ceil(e)}function W9(e,t){return e=Dx(e),ye(Sr.count(Qt(e),e)+(Qt(e).getUTCDay()===4),t,2)}function X9(e){return e.getUTCDay()}function V9(e,t){return ye(na.count(Qt(e)-1,e),t,2)}function U9(e,t){return ye(e.getUTCFullYear()%100,t,2)}function H9(e,t){return e=Dx(e),ye(e.getUTCFullYear()%100,t,2)}function j9(e,t){return ye(e.getUTCFullYear()%1e4,t,4)}function q9(e,t){var n=e.getUTCDay();return e=n>=4||n===0?Sr(e):Sr.ceil(e),ye(e.getUTCFullYear()%1e4,t,4)}function Z9(){return"+0000"}function Mx(){return"%"}function Cx(e){return+e}function Lx(e){return Math.floor(+e/1e3)}var Pi,np,kx,Xl,rp;Rx({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});function Rx(e){return Pi=yx(e),np=Pi.format,kx=Pi.parse,Xl=Pi.utcFormat,rp=Pi.utcParse,Pi}var Ex="%Y-%m-%dT%H:%M:%S.%LZ";function K9(e){return e.toISOString()}var Q9=Date.prototype.toISOString?K9:Xl(Ex);const J9=Q9;function eR(e){var t=new Date(e);return isNaN(t)?null:t}var tR=+new Date("2000-01-01T00:00:00.000Z")?eR:rp(Ex);const nR=tR;function rR(e){return new Date(e)}function iR(e){return e instanceof Date?+e:+new Date(+e)}function ip(e,t,n,r,i,o,a,s,l,u){var c=Vh(),f=c.invert,h=c.domain,p=u(".%L"),d=u(":%S"),m=u("%I:%M"),g=u("%I %p"),y=u("%a %d"),b=u("%b %d"),v=u("%B"),x=u("%Y");function _(A){return(l(A)<A?p:s(A)<A?d:a(A)<A?m:o(A)<A?g:r(A)<A?i(A)<A?y:b:n(A)<A?v:x)(A)}return c.invert=function(A){return new Date(f(A))},c.domain=function(A){return arguments.length?h(Array.from(A,iR)):h().map(rR)},c.ticks=function(A){var S=h();return e(S[0],S[S.length-1],A??10)},c.tickFormat=function(A,S){return S==null?_:u(S)},c.nice=function(A){var S=h();return(!A||typeof A.range!="function")&&(A=t(S[0],S[S.length-1],A??10)),A?h(zb(S,A)):c},c.copy=function(){return Jo(c,ip(e,t,n,r,i,o,a,s,l,u))},c}function oR(){return St.apply(ip(gx,mx,Kt,Yl,Ti,wi,Ol,Fl,gn,np).domain([new Date(2e3,0,1),new Date(2e3,0,2)]),arguments)}function aR(){return St.apply(ip(px,dx,Qt,Wl,Ai,ea,Gl,zl,gn,Xl).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)]),arguments)}function Vl(){var e=0,t=1,n,r,i,o,a=rt,s=!1,l;function u(f){return f==null||isNaN(f=+f)?l:a(i===0?.5:(f=(o(f)-n)*i,s?Math.max(0,Math.min(1,f)):f))}u.domain=function(f){return arguments.length?([e,t]=f,n=o(e=+e),r=o(t=+t),i=n===r?0:1/(r-n),u):[e,t]},u.clamp=function(f){return arguments.length?(s=!!f,u):s},u.interpolator=function(f){return arguments.length?(a=f,u):a};function c(f){return function(h){var p,d;return arguments.length?([p,d]=h,a=f(p,d),u):[a(0),a(1)]}}return u.range=c(nn),u.rangeRound=c(Ss),u.unknown=function(f){return arguments.length?(l=f,u):l},function(f){return o=f,n=f(e),r=f(t),i=n===r?0:1/(r-n),u}}function Rn(e,t){return t.domain(e.domain()).interpolator(e.interpolator()).clamp(e.clamp()).unknown(e.unknown())}function Ix(){var e=Ln(Vl()(rt));return e.copy=function(){return Rn(e,Ix())},fn.apply(e,arguments)}function Bx(){var e=Uh(Vl()).domain([1,10]);return e.copy=function(){return Rn(e,Bx()).base(e.base())},fn.apply(e,arguments)}function Nx(){var e=Hh(Vl());return e.copy=function(){return Rn(e,Nx()).constant(e.constant())},fn.apply(e,arguments)}function op(){var e=jh(Vl());return e.copy=function(){return Rn(e,op()).exponent(e.exponent())},fn.apply(e,arguments)}function sR(){return op.apply(null,arguments).exponent(.5)}function Fx(){var e=[],t=rt;function n(r){if(r!=null&&!isNaN(r=+r))return t((jn(e,r,1)-1)/(e.length-1))}return n.domain=function(r){if(!arguments.length)return e.slice();e=[];for(let i of r)i!=null&&!isNaN(i=+i)&&e.push(i);return e.sort(Se),n},n.interpolator=function(r){return arguments.length?(t=r,n):t},n.range=function(){return e.map((r,i)=>t(i/(e.length-1)))},n.quantiles=function(r){return Array.from({length:r+1},(i,o)=>lo(e,o/r))},n.copy=function(){return Fx(t).domain(e)},fn.apply(n,arguments)}function Ul(){var e=0,t=.5,n=1,r=1,i,o,a,s,l,u=rt,c,f=!1,h;function p(m){return isNaN(m=+m)?h:(m=.5+((m=+c(m))-o)*(r*m<r*o?s:l),u(f?Math.max(0,Math.min(1,m)):m))}p.domain=function(m){return arguments.length?([e,t,n]=m,i=c(e=+e),o=c(t=+t),a=c(n=+n),s=i===o?0:.5/(o-i),l=o===a?0:.5/(a-o),r=o<i?-1:1,p):[e,t,n]},p.clamp=function(m){return arguments.length?(f=!!m,p):f},p.interpolator=function(m){return arguments.length?(u=m,p):u};function d(m){return function(g){var y,b,v;return arguments.length?([y,b,v]=g,u=Ym(m,[y,b,v]),p):[u(0),u(.5),u(1)]}}return p.range=d(nn),p.rangeRound=d(Ss),p.unknown=function(m){return arguments.length?(h=m,p):h},function(m){return c=m,i=m(e),o=m(t),a=m(n),s=i===o?0:.5/(o-i),l=o===a?0:.5/(a-o),r=o<i?-1:1,p}}function zx(){var e=Ln(Ul()(rt));return e.copy=function(){return Rn(e,zx())},fn.apply(e,arguments)}function Ox(){var e=Uh(Ul()).domain([.1,1,10]);return e.copy=function(){return Rn(e,Ox()).base(e.base())},fn.apply(e,arguments)}function Gx(){var e=Hh(Ul());return e.copy=function(){return Rn(e,Gx()).constant(e.constant())},fn.apply(e,arguments)}function ap(){var e=jh(Ul());return e.copy=function(){return Rn(e,ap()).exponent(e.exponent())},fn.apply(e,arguments)}function lR(){return ap.apply(null,arguments).exponent(.5)}function ce(e){for(var t=e.length/6|0,n=new Array(t),r=0;r<t;)n[r]="#"+e.slice(r*6,++r*6);return n}const uR=ce("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),cR=ce("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),fR=ce("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),hR=ce("4269d0efb118ff725c6cc5b03ca951ff8ab7a463f297bbf59c6b4e9498a0"),pR=ce("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),dR=ce("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),gR=ce("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),mR=ce("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),yR=ce("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),bR=ce("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f"),xR=ce("4e79a7f28e2ce1575976b7b259a14fedc949af7aa1ff9da79c755fbab0ab"),$e=e=>Pm(e[e.length-1]);var Yx=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(ce);const vR=$e(Yx);var Wx=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(ce);const $R=$e(Wx);var Xx=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(ce);const _R=$e(Xx);var Vx=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(ce);const SR=$e(Vx);var Ux=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(ce);const wR=$e(Ux);var Hx=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(ce);const TR=$e(Hx);var jx=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(ce);const AR=$e(jx);var qx=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(ce);const PR=$e(qx);var Zx=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(ce);const DR=$e(Zx);var Kx=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(ce);const MR=$e(Kx);var Qx=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(ce);const CR=$e(Qx);var Jx=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(ce);const LR=$e(Jx);var ev=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(ce);const kR=$e(ev);var tv=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(ce);const RR=$e(tv);var nv=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(ce);const ER=$e(nv);var rv=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(ce);const IR=$e(rv);var iv=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(ce);const BR=$e(iv);var ov=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(ce);const NR=$e(ov);var av=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(ce);const FR=$e(av);var sv=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(ce);const zR=$e(sv);var lv=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(ce);const OR=$e(lv);var uv=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(ce);const GR=$e(uv);var cv=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(ce);const YR=$e(cv);var fv=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(ce);const WR=$e(fv);var hv=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(ce);const XR=$e(hv);var pv=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(ce);const VR=$e(pv);var dv=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(ce);const UR=$e(dv);function HR(e){return e=Math.max(0,Math.min(1,e)),"rgb("+Math.max(0,Math.min(255,Math.round(-4.54-e*(35.34-e*(2381.73-e*(6402.7-e*(7024.72-e*2710.57)))))))+", "+Math.max(0,Math.min(255,Math.round(32.49+e*(170.73+e*(52.82-e*(131.46-e*(176.58-e*67.37)))))))+", "+Math.max(0,Math.min(255,Math.round(81.24+e*(442.36-e*(2482.43-e*(6167.24-e*(6614.94-e*2475.67)))))))+")"}const jR=Ts(Et(300,.5,0),Et(-240,.5,1));var qR=Ts(Et(-100,.75,.35),Et(80,1.5,.8)),ZR=Ts(Et(260,.75,.35),Et(80,1.5,.8)),Hl=Et();function KR(e){(e<0||e>1)&&(e-=Math.floor(e));var t=Math.abs(e-.5);return Hl.h=360*e-100,Hl.s=1.5-1.5*t,Hl.l=.8-.9*t,Hl+""}var jl=ni(),QR=Math.PI/3,JR=Math.PI*2/3;function eE(e){var t;return e=(.5-e)*Math.PI,jl.r=255*(t=Math.sin(e))*t,jl.g=255*(t=Math.sin(e+QR))*t,jl.b=255*(t=Math.sin(e+JR))*t,jl+""}function tE(e){return e=Math.max(0,Math.min(1,e)),"rgb("+Math.max(0,Math.min(255,Math.round(34.61+e*(1172.33-e*(10793.56-e*(33300.12-e*(38394.49-e*14825.05)))))))+", "+Math.max(0,Math.min(255,Math.round(23.31+e*(557.33+e*(1225.33-e*(3574.96-e*(1073.77+e*707.56)))))))+", "+Math.max(0,Math.min(255,Math.round(27.2+e*(3211.1-e*(15327.97-e*(27814-e*(22569.18-e*6838.66)))))))+")"}function ql(e){var t=e.length;return function(n){return e[Math.max(0,Math.min(t-1,Math.floor(n*t)))]}}const nE=ql(ce("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725"));var rE=ql(ce("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),iE=ql(ce("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),oE=ql(ce("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"));function ue(e){return function(){return e}}const gv=Math.abs,Xe=Math.atan2,mn=Math.cos,aE=Math.max,Di=Math.min,ct=Math.sin,_e=Math.sqrt,Ve=1e-12,En=Math.PI,Zl=En/2,In=2*En;function sE(e){return e>1?0:e<-1?En:Math.acos(e)}function mv(e){return e>=1?Zl:e<=-1?-Zl:Math.asin(e)}function aa(e){let t=3;return e.digits=function(n){if(!arguments.length)return t;if(n==null)t=null;else{const r=Math.floor(n);if(!(r>=0))throw new RangeError(`invalid digits: ${n}`);t=r}return e},()=>new Ao(t)}function lE(e){return e.innerRadius}function uE(e){return e.outerRadius}function cE(e){return e.startAngle}function fE(e){return e.endAngle}function hE(e){return e&&e.padAngle}function pE(e,t,n,r,i,o,a,s){var l=n-e,u=r-t,c=a-i,f=s-o,h=f*l-c*u;if(!(h*h<Ve))return h=(c*(t-o)-f*(e-i))/h,[e+h*l,t+h*u]}function Kl(e,t,n,r,i,o,a){var s=e-n,l=t-r,u=(a?o:-o)/_e(s*s+l*l),c=u*l,f=-u*s,h=e+c,p=t+f,d=n+c,m=r+f,g=(h+d)/2,y=(p+m)/2,b=d-h,v=m-p,x=b*b+v*v,_=i-o,A=h*m-d*p,S=(v<0?-1:1)*_e(aE(0,_*_*x-A*A)),P=(A*v-b*S)/x,M=(-A*b-v*S)/x,B=(A*v+b*S)/x,$=(-A*b+v*S)/x,k=P-g,C=M-y,T=B-g,w=$-y;return k*k+C*C>T*T+w*w&&(P=B,M=$),{cx:P,cy:M,x01:-c,y01:-f,x11:P*(i/_-1),y11:M*(i/_-1)}}function Ql(){var e=lE,t=uE,n=ue(0),r=null,i=cE,o=fE,a=hE,s=null,l=aa(u);function u(){var c,f,h=+e.apply(this,arguments),p=+t.apply(this,arguments),d=i.apply(this,arguments)-Zl,m=o.apply(this,arguments)-Zl,g=gv(m-d),y=m>d;if(s||(s=c=l()),p<h&&(f=p,p=h,h=f),!(p>Ve))s.moveTo(0,0);else if(g>In-Ve)s.moveTo(p*mn(d),p*ct(d)),s.arc(0,0,p,d,m,!y),h>Ve&&(s.moveTo(h*mn(m),h*ct(m)),s.arc(0,0,h,m,d,y));else{var b=d,v=m,x=d,_=m,A=g,S=g,P=a.apply(this,arguments)/2,M=P>Ve&&(r?+r.apply(this,arguments):_e(h*h+p*p)),B=Di(gv(p-h)/2,+n.apply(this,arguments)),$=B,k=B,C,T;if(M>Ve){var w=mv(M/h*ct(P)),D=mv(M/p*ct(P));(A-=w*2)>Ve?(w*=y?1:-1,x+=w,_-=w):(A=0,x=_=(d+m)/2),(S-=D*2)>Ve?(D*=y?1:-1,b+=D,v-=D):(S=0,b=v=(d+m)/2)}var F=p*mn(b),z=p*ct(b),I=h*mn(_),N=h*ct(_);if(B>Ve){var E=p*mn(v),O=p*ct(v),j=h*mn(x),ie=h*ct(x),W;if(g<En)if(W=pE(F,z,j,ie,E,O,I,N)){var Q=F-W[0],X=z-W[1],K=E-W[0],q=O-W[1],ne=1/ct(sE((Q*K+X*q)/(_e(Q*Q+X*X)*_e(K*K+q*q)))/2),se=_e(W[0]*W[0]+W[1]*W[1]);$=Di(B,(h-se)/(ne-1)),k=Di(B,(p-se)/(ne+1))}else $=k=0}S>Ve?k>Ve?(C=Kl(j,ie,F,z,p,k,y),T=Kl(E,O,I,N,p,k,y),s.moveTo(C.cx+C.x01,C.cy+C.y01),k<B?s.arc(C.cx,C.cy,k,Xe(C.y01,C.x01),Xe(T.y01,T.x01),!y):(s.arc(C.cx,C.cy,k,Xe(C.y01,C.x01),Xe(C.y11,C.x11),!y),s.arc(0,0,p,Xe(C.cy+C.y11,C.cx+C.x11),Xe(T.cy+T.y11,T.cx+T.x11),!y),s.arc(T.cx,T.cy,k,Xe(T.y11,T.x11),Xe(T.y01,T.x01),!y))):(s.moveTo(F,z),s.arc(0,0,p,b,v,!y)):s.moveTo(F,z),!(h>Ve)||!(A>Ve)?s.lineTo(I,N):$>Ve?(C=Kl(I,N,E,O,h,-$,y),T=Kl(F,z,j,ie,h,-$,y),s.lineTo(C.cx+C.x01,C.cy+C.y01),$<B?s.arc(C.cx,C.cy,$,Xe(C.y01,C.x01),Xe(T.y01,T.x01),!y):(s.arc(C.cx,C.cy,$,Xe(C.y01,C.x01),Xe(C.y11,C.x11),!y),s.arc(0,0,h,Xe(C.cy+C.y11,C.cx+C.x11),Xe(T.cy+T.y11,T.cx+T.x11),y),s.arc(T.cx,T.cy,$,Xe(T.y11,T.x11),Xe(T.y01,T.x01),!y))):s.arc(0,0,h,_,x,y)}if(s.closePath(),c)return s=null,c+""||null}return u.centroid=function(){var c=(+e.apply(this,arguments)+ +t.apply(this,arguments))/2,f=(+i.apply(this,arguments)+ +o.apply(this,arguments))/2-En/2;return[mn(f)*c,ct(f)*c]},u.innerRadius=function(c){return arguments.length?(e=typeof c=="function"?c:ue(+c),u):e},u.outerRadius=function(c){return arguments.length?(t=typeof c=="function"?c:ue(+c),u):t},u.cornerRadius=function(c){return arguments.length?(n=typeof c=="function"?c:ue(+c),u):n},u.padRadius=function(c){return arguments.length?(r=c==null?null:typeof c=="function"?c:ue(+c),u):r},u.startAngle=function(c){return arguments.length?(i=typeof c=="function"?c:ue(+c),u):i},u.endAngle=function(c){return arguments.length?(o=typeof c=="function"?c:ue(+c),u):o},u.padAngle=function(c){return arguments.length?(a=typeof c=="function"?c:ue(+c),u):a},u.context=function(c){return arguments.length?(s=c??null,u):s},u}var dE=Array.prototype.slice;function Jl(e){return typeof e=="object"&&"length"in e?e:Array.from(e)}function yv(e){this._context=e}yv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;default:this._context.lineTo(e,t);break}}};function eu(e){return new yv(e)}function sp(e){return e[0]}function lp(e){return e[1]}function tu(e,t){var n=ue(!0),r=null,i=eu,o=null,a=aa(s);e=typeof e=="function"?e:e===void 0?sp:ue(e),t=typeof t=="function"?t:t===void 0?lp:ue(t);function s(l){var u,c=(l=Jl(l)).length,f,h=!1,p;for(r==null&&(o=i(p=a())),u=0;u<=c;++u)!(u<c&&n(f=l[u],u,l))===h&&((h=!h)?o.lineStart():o.lineEnd()),h&&o.point(+e(f,u,l),+t(f,u,l));if(p)return o=null,p+""||null}return s.x=function(l){return arguments.length?(e=typeof l=="function"?l:ue(+l),s):e},s.y=function(l){return arguments.length?(t=typeof l=="function"?l:ue(+l),s):t},s.defined=function(l){return arguments.length?(n=typeof l=="function"?l:ue(!!l),s):n},s.curve=function(l){return arguments.length?(i=l,r!=null&&(o=i(r)),s):i},s.context=function(l){return arguments.length?(l==null?r=o=null:o=i(r=l),s):r},s}function up(e,t,n){var r=null,i=ue(!0),o=null,a=eu,s=null,l=aa(u);e=typeof e=="function"?e:e===void 0?sp:ue(+e),t=typeof t=="function"?t:ue(t===void 0?0:+t),n=typeof n=="function"?n:n===void 0?lp:ue(+n);function u(f){var h,p,d,m=(f=Jl(f)).length,g,y=!1,b,v=new Array(m),x=new Array(m);for(o==null&&(s=a(b=l())),h=0;h<=m;++h){if(!(h<m&&i(g=f[h],h,f))===y)if(y=!y)p=h,s.areaStart(),s.lineStart();else{for(s.lineEnd(),s.lineStart(),d=h-1;d>=p;--d)s.point(v[d],x[d]);s.lineEnd(),s.areaEnd()}y&&(v[h]=+e(g,h,f),x[h]=+t(g,h,f),s.point(r?+r(g,h,f):v[h],n?+n(g,h,f):x[h]))}if(b)return s=null,b+""||null}function c(){return tu().defined(i).curve(a).context(o)}return u.x=function(f){return arguments.length?(e=typeof f=="function"?f:ue(+f),r=null,u):e},u.x0=function(f){return arguments.length?(e=typeof f=="function"?f:ue(+f),u):e},u.x1=function(f){return arguments.length?(r=f==null?null:typeof f=="function"?f:ue(+f),u):r},u.y=function(f){return arguments.length?(t=typeof f=="function"?f:ue(+f),n=null,u):t},u.y0=function(f){return arguments.length?(t=typeof f=="function"?f:ue(+f),u):t},u.y1=function(f){return arguments.length?(n=f==null?null:typeof f=="function"?f:ue(+f),u):n},u.lineX0=u.lineY0=function(){return c().x(e).y(t)},u.lineY1=function(){return c().x(e).y(n)},u.lineX1=function(){return c().x(r).y(t)},u.defined=function(f){return arguments.length?(i=typeof f=="function"?f:ue(!!f),u):i},u.curve=function(f){return arguments.length?(a=f,o!=null&&(s=a(o)),u):a},u.context=function(f){return arguments.length?(f==null?o=s=null:s=a(o=f),u):o},u}function gE(e,t){return t<e?-1:t>e?1:t>=e?0:NaN}function mE(e){return e}function bv(){var e=mE,t=gE,n=null,r=ue(0),i=ue(In),o=ue(0);function a(s){var l,u=(s=Jl(s)).length,c,f,h=0,p=new Array(u),d=new Array(u),m=+r.apply(this,arguments),g=Math.min(In,Math.max(-In,i.apply(this,arguments)-m)),y,b=Math.min(Math.abs(g)/u,o.apply(this,arguments)),v=b*(g<0?-1:1),x;for(l=0;l<u;++l)(x=d[p[l]=l]=+e(s[l],l,s))>0&&(h+=x);for(t!=null?p.sort(function(_,A){return t(d[_],d[A])}):n!=null&&p.sort(function(_,A){return n(s[_],s[A])}),l=0,f=h?(g-u*v)/h:0;l<u;++l,m=y)c=p[l],x=d[c],y=m+(x>0?x*f:0)+v,d[c]={data:s[c],index:l,value:x,startAngle:m,endAngle:y,padAngle:b};return d}return a.value=function(s){return arguments.length?(e=typeof s=="function"?s:ue(+s),a):e},a.sortValues=function(s){return arguments.length?(t=s,n=null,a):t},a.sort=function(s){return arguments.length?(n=s,t=null,a):n},a.startAngle=function(s){return arguments.length?(r=typeof s=="function"?s:ue(+s),a):r},a.endAngle=function(s){return arguments.length?(i=typeof s=="function"?s:ue(+s),a):i},a.padAngle=function(s){return arguments.length?(o=typeof s=="function"?s:ue(+s),a):o},a}var xv=cp(eu);function vv(e){this._curve=e}vv.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(e,t){this._curve.point(t*Math.sin(e),t*-Math.cos(e))}};function cp(e){function t(n){return new vv(e(n))}return t._curve=e,t}function sa(e){var t=e.curve;return e.angle=e.x,delete e.x,e.radius=e.y,delete e.y,e.curve=function(n){return arguments.length?t(cp(n)):t()._curve},e}function $v(){return sa(tu().curve(xv))}function _v(){var e=up().curve(xv),t=e.curve,n=e.lineX0,r=e.lineX1,i=e.lineY0,o=e.lineY1;return e.angle=e.x,delete e.x,e.startAngle=e.x0,delete e.x0,e.endAngle=e.x1,delete e.x1,e.radius=e.y,delete e.y,e.innerRadius=e.y0,delete e.y0,e.outerRadius=e.y1,delete e.y1,e.lineStartAngle=function(){return sa(n())},delete e.lineX0,e.lineEndAngle=function(){return sa(r())},delete e.lineX1,e.lineInnerRadius=function(){return sa(i())},delete e.lineY0,e.lineOuterRadius=function(){return sa(o())},delete e.lineY1,e.curve=function(a){return arguments.length?t(cp(a)):t()._curve},e}function la(e,t){return[(t=+t)*Math.cos(e-=Math.PI/2),t*Math.sin(e)]}class Sv{constructor(t,n){this._context=t,this._x=n}areaStart(){this._line=0}areaEnd(){this._line=NaN}lineStart(){this._point=0}lineEnd(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line}point(t,n){switch(t=+t,n=+n,this._point){case 0:{this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break}case 1:this._point=2;default:{this._x?this._context.bezierCurveTo(this._x0=(this._x0+t)/2,this._y0,this._x0,n,t,n):this._context.bezierCurveTo(this._x0,this._y0=(this._y0+n)/2,t,this._y0,t,n);break}}this._x0=t,this._y0=n}}class yE{constructor(t){this._context=t}lineStart(){this._point=0}lineEnd(){}point(t,n){if(t=+t,n=+n,this._point===0)this._point=1;else{const r=la(this._x0,this._y0),i=la(this._x0,this._y0=(this._y0+n)/2),o=la(t,this._y0),a=la(t,n);this._context.moveTo(...r),this._context.bezierCurveTo(...i,...o,...a)}this._x0=t,this._y0=n}}function wv(e){return new Sv(e,!0)}function Tv(e){return new Sv(e,!1)}function bE(e){return new yE(e)}function xE(e){return e.source}function vE(e){return e.target}function nu(e){let t=xE,n=vE,r=sp,i=lp,o=null,a=null,s=aa(l);function l(){let u;const c=dE.call(arguments),f=t.apply(this,c),h=n.apply(this,c);if(o==null&&(a=e(u=s())),a.lineStart(),c[0]=f,a.point(+r.apply(this,c),+i.apply(this,c)),c[0]=h,a.point(+r.apply(this,c),+i.apply(this,c)),a.lineEnd(),u)return a=null,u+""||null}return l.source=function(u){return arguments.length?(t=u,l):t},l.target=function(u){return arguments.length?(n=u,l):n},l.x=function(u){return arguments.length?(r=typeof u=="function"?u:ue(+u),l):r},l.y=function(u){return arguments.length?(i=typeof u=="function"?u:ue(+u),l):i},l.context=function(u){return arguments.length?(u==null?o=a=null:a=e(o=u),l):o},l}function $E(){return nu(wv)}function _E(){return nu(Tv)}function SE(){const e=nu(bE);return e.angle=e.x,delete e.x,e.radius=e.y,delete e.y,e}const wE=_e(3),Av={draw(e,t){const n=_e(t+Di(t/28,.75))*.59436,r=n/2,i=r*wE;e.moveTo(0,n),e.lineTo(0,-n),e.moveTo(-i,-r),e.lineTo(i,r),e.moveTo(-i,r),e.lineTo(i,-r)}},ru={draw(e,t){const n=_e(t/En);e.moveTo(n,0),e.arc(0,0,n,0,In)}},Pv={draw(e,t){const n=_e(t/5)/2;e.moveTo(-3*n,-n),e.lineTo(-n,-n),e.lineTo(-n,-3*n),e.lineTo(n,-3*n),e.lineTo(n,-n),e.lineTo(3*n,-n),e.lineTo(3*n,n),e.lineTo(n,n),e.lineTo(n,3*n),e.lineTo(-n,3*n),e.lineTo(-n,n),e.lineTo(-3*n,n),e.closePath()}},Dv=_e(1/3),TE=Dv*2,Mv={draw(e,t){const n=_e(t/TE),r=n*Dv;e.moveTo(0,-n),e.lineTo(r,0),e.lineTo(0,n),e.lineTo(-r,0),e.closePath()}},Cv={draw(e,t){const n=_e(t)*.62625;e.moveTo(0,-n),e.lineTo(n,0),e.lineTo(0,n),e.lineTo(-n,0),e.closePath()}},Lv={draw(e,t){const n=_e(t-Di(t/7,2))*.87559;e.moveTo(-n,0),e.lineTo(n,0),e.moveTo(0,n),e.lineTo(0,-n)}},kv={draw(e,t){const n=_e(t),r=-n/2;e.rect(r,r,n,n)}},Rv={draw(e,t){const n=_e(t)*.4431;e.moveTo(n,n),e.lineTo(n,-n),e.lineTo(-n,-n),e.lineTo(-n,n),e.closePath()}},AE=.8908130915292852,Ev=ct(En/10)/ct(7*En/10),PE=ct(In/10)*Ev,DE=-mn(In/10)*Ev,Iv={draw(e,t){const n=_e(t*AE),r=PE*n,i=DE*n;e.moveTo(0,-n),e.lineTo(r,i);for(let o=1;o<5;++o){const a=In*o/5,s=mn(a),l=ct(a);e.lineTo(l*n,-s*n),e.lineTo(s*r-l*i,l*r+s*i)}e.closePath()}},fp=_e(3),Bv={draw(e,t){const n=-_e(t/(fp*3));e.moveTo(0,n*2),e.lineTo(-fp*n,-n),e.lineTo(fp*n,-n),e.closePath()}},ME=_e(3),Nv={draw(e,t){const n=_e(t)*.6824,r=n/2,i=n*ME/2;e.moveTo(0,-n),e.lineTo(i,r),e.lineTo(-i,r),e.closePath()}},Tt=-.5,At=_e(3)/2,hp=1/_e(12),CE=(hp/2+1)*3,Fv={draw(e,t){const n=_e(t/CE),r=n/2,i=n*hp,o=r,a=n*hp+n,s=-o,l=a;e.moveTo(r,i),e.lineTo(o,a),e.lineTo(s,l),e.lineTo(Tt*r-At*i,At*r+Tt*i),e.lineTo(Tt*o-At*a,At*o+Tt*a),e.lineTo(Tt*s-At*l,At*s+Tt*l),e.lineTo(Tt*r+At*i,Tt*i-At*r),e.lineTo(Tt*o+At*a,Tt*a-At*o),e.lineTo(Tt*s+At*l,Tt*l-At*s),e.closePath()}},pp={draw(e,t){const n=_e(t-Di(t/6,1.7))*.6189;e.moveTo(-n,-n),e.lineTo(n,n),e.moveTo(-n,n),e.lineTo(n,-n)}},zv=[ru,Pv,Mv,kv,Iv,Bv,Fv],LE=[ru,Lv,pp,Nv,Av,Rv,Cv];function kE(e,t){let n=null,r=aa(i);e=typeof e=="function"?e:ue(e||ru),t=typeof t=="function"?t:ue(t===void 0?64:+t);function i(){let o;if(n||(n=o=r()),e.apply(this,arguments).draw(n,+t.apply(this,arguments)),o)return n=null,o+""||null}return i.type=function(o){return arguments.length?(e=typeof o=="function"?o:ue(o),i):e},i.size=function(o){return arguments.length?(t=typeof o=="function"?o:ue(+o),i):t},i.context=function(o){return arguments.length?(n=o??null,i):n},i}function Bn(){}function iu(e,t,n){e._context.bezierCurveTo((2*e._x0+e._x1)/3,(2*e._y0+e._y1)/3,(e._x0+2*e._x1)/3,(e._y0+2*e._y1)/3,(e._x0+4*e._x1+t)/6,(e._y0+4*e._y1+n)/6)}function ou(e){this._context=e}ou.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:iu(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:iu(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function RE(e){return new ou(e)}function Ov(e){this._context=e}Ov.prototype={areaStart:Bn,areaEnd:Bn,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x2,this._y2),this._context.closePath();break}case 2:{this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break}case 3:{this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4);break}}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x2=e,this._y2=t;break;case 1:this._point=2,this._x3=e,this._y3=t;break;case 2:this._point=3,this._x4=e,this._y4=t,this._context.moveTo((this._x0+4*this._x1+e)/6,(this._y0+4*this._y1+t)/6);break;default:iu(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function EE(e){return new Ov(e)}function Gv(e){this._context=e}Gv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var n=(this._x0+4*this._x1+e)/6,r=(this._y0+4*this._y1+t)/6;this._line?this._context.lineTo(n,r):this._context.moveTo(n,r);break;case 3:this._point=4;default:iu(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function IE(e){return new Gv(e)}function Yv(e,t){this._basis=new ou(e),this._beta=t}Yv.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var e=this._x,t=this._y,n=e.length-1;if(n>0)for(var r=e[0],i=t[0],o=e[n]-r,a=t[n]-i,s=-1,l;++s<=n;)l=s/n,this._basis.point(this._beta*e[s]+(1-this._beta)*(r+l*o),this._beta*t[s]+(1-this._beta)*(i+l*a));this._x=this._y=null,this._basis.lineEnd()},point:function(e,t){this._x.push(+e),this._y.push(+t)}};const BE=function e(t){function n(r){return t===1?new ou(r):new Yv(r,t)}return n.beta=function(r){return e(+r)},n}(.85);function au(e,t,n){e._context.bezierCurveTo(e._x1+e._k*(e._x2-e._x0),e._y1+e._k*(e._y2-e._y0),e._x2+e._k*(e._x1-t),e._y2+e._k*(e._y1-n),e._x2,e._y2)}function dp(e,t){this._context=e,this._k=(1-t)/6}dp.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:au(this,this._x1,this._y1);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2,this._x1=e,this._y1=t;break;case 2:this._point=3;default:au(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const NE=function e(t){function n(r){return new dp(r,t)}return n.tension=function(r){return e(+r)},n}(0);function gp(e,t){this._context=e,this._k=(1-t)/6}gp.prototype={areaStart:Bn,areaEnd:Bn,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:au(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const FE=function e(t){function n(r){return new gp(r,t)}return n.tension=function(r){return e(+r)},n}(0);function mp(e,t){this._context=e,this._k=(1-t)/6}mp.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:au(this,e,t);break}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const zE=function e(t){function n(r){return new mp(r,t)}return n.tension=function(r){return e(+r)},n}(0);function yp(e,t,n){var r=e._x1,i=e._y1,o=e._x2,a=e._y2;if(e._l01_a>Ve){var s=2*e._l01_2a+3*e._l01_a*e._l12_a+e._l12_2a,l=3*e._l01_a*(e._l01_a+e._l12_a);r=(r*s-e._x0*e._l12_2a+e._x2*e._l01_2a)/l,i=(i*s-e._y0*e._l12_2a+e._y2*e._l01_2a)/l}if(e._l23_a>Ve){var u=2*e._l23_2a+3*e._l23_a*e._l12_a+e._l12_2a,c=3*e._l23_a*(e._l23_a+e._l12_a);o=(o*u+e._x1*e._l23_2a-t*e._l12_2a)/c,a=(a*u+e._y1*e._l23_2a-n*e._l12_2a)/c}e._context.bezierCurveTo(r,i,o,a,e._x2,e._y2)}function Wv(e,t){this._context=e,this._alpha=t}Wv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2);break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var n=this._x2-e,r=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3;default:yp(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const OE=function e(t){function n(r){return t?new Wv(r,t):new dp(r,0)}return n.alpha=function(r){return e(+r)},n}(.5);function Xv(e,t){this._context=e,this._alpha=t}Xv.prototype={areaStart:Bn,areaEnd:Bn,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x3,this._y3),this._context.closePath();break}case 2:{this._context.lineTo(this._x3,this._y3),this._context.closePath();break}case 3:{this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5);break}}},point:function(e,t){if(e=+e,t=+t,this._point){var n=this._x2-e,r=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:yp(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const GE=function e(t){function n(r){return t?new Xv(r,t):new gp(r,0)}return n.alpha=function(r){return e(+r)},n}(.5);function Vv(e,t){this._context=e,this._alpha=t}Vv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||this._line!==0&&this._point===3)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var n=this._x2-e,r=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:yp(this,e,t);break}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};const YE=function e(t){function n(r){return t?new Vv(r,t):new mp(r,0)}return n.alpha=function(r){return e(+r)},n}(.5);function Uv(e){this._context=e}Uv.prototype={areaStart:Bn,areaEnd:Bn,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(e,t){e=+e,t=+t,this._point?this._context.lineTo(e,t):(this._point=1,this._context.moveTo(e,t))}};function WE(e){return new Uv(e)}function Hv(e){return e<0?-1:1}function jv(e,t,n){var r=e._x1-e._x0,i=t-e._x1,o=(e._y1-e._y0)/(r||i<0&&-0),a=(n-e._y1)/(i||r<0&&-0),s=(o*i+a*r)/(r+i);return(Hv(o)+Hv(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(s))||0}function qv(e,t){var n=e._x1-e._x0;return n?(3*(e._y1-e._y0)/n-t)/2:t}function bp(e,t,n){var r=e._x0,i=e._y0,o=e._x1,a=e._y1,s=(o-r)/3;e._context.bezierCurveTo(r+s,i+s*t,o-s,a-s*n,o,a)}function su(e){this._context=e}su.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:bp(this,this._t0,qv(this,this._t0));break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){var n=NaN;if(e=+e,t=+t,!(e===this._x1&&t===this._y1)){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3,bp(this,qv(this,n=jv(this,e,t)),n);break;default:bp(this,this._t0,n=jv(this,e,t));break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t,this._t0=n}}};function Zv(e){this._context=new Kv(e)}(Zv.prototype=Object.create(su.prototype)).point=function(e,t){su.prototype.point.call(this,t,e)};function Kv(e){this._context=e}Kv.prototype={moveTo:function(e,t){this._context.moveTo(t,e)},closePath:function(){this._context.closePath()},lineTo:function(e,t){this._context.lineTo(t,e)},bezierCurveTo:function(e,t,n,r,i,o){this._context.bezierCurveTo(t,e,r,n,o,i)}};function XE(e){return new su(e)}function VE(e){return new Zv(e)}function Qv(e){this._context=e}Qv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var e=this._x,t=this._y,n=e.length;if(n)if(this._line?this._context.lineTo(e[0],t[0]):this._context.moveTo(e[0],t[0]),n===2)this._context.lineTo(e[1],t[1]);else for(var r=Jv(e),i=Jv(t),o=0,a=1;a<n;++o,++a)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],e[a],t[a]);(this._line||this._line!==0&&n===1)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(e,t){this._x.push(+e),this._y.push(+t)}};function Jv(e){var t,n=e.length-1,r,i=new Array(n),o=new Array(n),a=new Array(n);for(i[0]=0,o[0]=2,a[0]=e[0]+2*e[1],t=1;t<n-1;++t)i[t]=1,o[t]=4,a[t]=4*e[t]+2*e[t+1];for(i[n-1]=2,o[n-1]=7,a[n-1]=8*e[n-1]+e[n],t=1;t<n;++t)r=i[t]/o[t-1],o[t]-=r,a[t]-=r*a[t-1];for(i[n-1]=a[n-1]/o[n-1],t=n-2;t>=0;--t)i[t]=(a[t]-i[t+1])/o[t];for(o[n-1]=(e[n]+i[n-1])/2,t=0;t<n-1;++t)o[t]=2*e[t+1]-i[t+1];return[i,o]}function UE(e){return new Qv(e)}function lu(e,t){this._context=e,this._t=t}lu.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&this._point===2&&this._context.lineTo(this._x,this._y),(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;default:{if(this._t<=0)this._context.lineTo(this._x,t),this._context.lineTo(e,t);else{var n=this._x*(1-this._t)+e*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,t)}break}}this._x=e,this._y=t}};function HE(e){return new lu(e,.5)}function jE(e){return new lu(e,0)}function qE(e){return new lu(e,1)}function Mi(e,t){if((a=e.length)>1)for(var n=1,r,i,o=e[t[0]],a,s=o.length;n<a;++n)for(i=o,o=e[t[n]],r=0;r<s;++r)o[r][1]+=o[r][0]=isNaN(i[r][1])?i[r][0]:i[r][1]}function Ci(e){for(var t=e.length,n=new Array(t);--t>=0;)n[t]=t;return n}function ZE(e,t){return e[t]}function KE(e){const t=[];return t.key=e,t}function QE(){var e=ue([]),t=Ci,n=Mi,r=ZE;function i(o){var a=Array.from(e.apply(this,arguments),KE),s,l=a.length,u=-1,c;for(const f of o)for(s=0,++u;s<l;++s)(a[s][u]=[0,+r(f,a[s].key,u,o)]).data=f;for(s=0,c=Jl(t(a));s<l;++s)a[c[s]].index=s;return n(a,c),a}return i.keys=function(o){return arguments.length?(e=typeof o=="function"?o:ue(Array.from(o)),i):e},i.value=function(o){return arguments.length?(r=typeof o=="function"?o:ue(+o),i):r},i.order=function(o){return arguments.length?(t=o==null?Ci:typeof o=="function"?o:ue(Array.from(o)),i):t},i.offset=function(o){return arguments.length?(n=o??Mi,i):n},i}function JE(e,t){if((r=e.length)>0){for(var n,r,i=0,o=e[0].length,a;i<o;++i){for(a=n=0;n<r;++n)a+=e[n][i][1]||0;if(a)for(n=0;n<r;++n)e[n][i][1]/=a}Mi(e,t)}}function eI(e,t){if((l=e.length)>0)for(var n,r=0,i,o,a,s,l,u=e[t[0]].length;r<u;++r)for(a=s=0,n=0;n<l;++n)(o=(i=e[t[n]][r])[1]-i[0])>0?(i[0]=a,i[1]=a+=o):o<0?(i[1]=s,i[0]=s+=o):(i[0]=0,i[1]=o)}function tI(e,t){if((i=e.length)>0){for(var n=0,r=e[t[0]],i,o=r.length;n<o;++n){for(var a=0,s=0;a<i;++a)s+=e[a][n][1]||0;r[n][1]+=r[n][0]=-s/2}Mi(e,t)}}function nI(e,t){if(!(!((a=e.length)>0)||!((o=(i=e[t[0]]).length)>0))){for(var n=0,r=1,i,o,a;r<o;++r){for(var s=0,l=0,u=0;s<a;++s){for(var c=e[t[s]],f=c[r][1]||0,h=c[r-1][1]||0,p=(f-h)/2,d=0;d<s;++d){var m=e[t[d]],g=m[r][1]||0,y=m[r-1][1]||0;p+=g-y}l+=f,u+=p*f}i[r-1][1]+=i[r-1][0]=n,l&&(n-=u/l)}i[r-1][1]+=i[r-1][0]=n,Mi(e,t)}}function e$(e){var t=e.map(rI);return Ci(e).sort(function(n,r){return t[n]-t[r]})}function rI(e){for(var t=-1,n=0,r=e.length,i,o=-1/0;++t<r;)(i=+e[t][1])>o&&(o=i,n=t);return n}function t$(e){var t=e.map(n$);return Ci(e).sort(function(n,r){return t[n]-t[r]})}function n$(e){for(var t=0,n=-1,r=e.length,i;++n<r;)(i=+e[n][1])&&(t+=i);return t}function iI(e){return t$(e).reverse()}function oI(e){var t=e.length,n,r,i=e.map(n$),o=e$(e),a=0,s=0,l=[],u=[];for(n=0;n<t;++n)r=o[n],a<s?(a+=i[r],l.push(r)):(s+=i[r],u.push(r));return u.reverse().concat(l)}function aI(e){return Ci(e).reverse()}const uu=e=>()=>e;function sI(e,{sourceEvent:t,target:n,transform:r,dispatch:i}){Object.defineProperties(this,{type:{value:e,enumerable:!0,configurable:!0},sourceEvent:{value:t,enumerable:!0,configurable:!0},target:{value:n,enumerable:!0,configurable:!0},transform:{value:r,enumerable:!0,configurable:!0},_:{value:i}})}function Jt(e,t,n){this.k=e,this.x=t,this.y=n}Jt.prototype={constructor:Jt,scale:function(e){return e===1?this:new Jt(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Jt(this.k,this.x+this.k*e,this.y+this.k*t)},apply:function(e){return[e[0]*this.k+this.x,e[1]*this.k+this.y]},applyX:function(e){return e*this.k+this.x},applyY:function(e){return e*this.k+this.y},invert:function(e){return[(e[0]-this.x)/this.k,(e[1]-this.y)/this.k]},invertX:function(e){return(e-this.x)/this.k},invertY:function(e){return(e-this.y)/this.k},rescaleX:function(e){return e.copy().domain(e.range().map(this.invertX,this).map(e.invert,e))},rescaleY:function(e){return e.copy().domain(e.range().map(this.invertY,this).map(e.invert,e))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var Li=new Jt(1,0,0);r$.prototype=Jt.prototype;function r$(e){for(;!e.__zoom;)if(!(e=e.parentNode))return Li;return e.__zoom}function xp(e){e.stopImmediatePropagation()}function ua(e){e.preventDefault(),e.stopImmediatePropagation()}function lI(e){return(!e.ctrlKey||e.type==="wheel")&&!e.button}function uI(){var e=this;return e instanceof SVGElement?(e=e.ownerSVGElement||e,e.hasAttribute("viewBox")?(e=e.viewBox.baseVal,[[e.x,e.y],[e.x+e.width,e.y+e.height]]):[[0,0],[e.width.baseVal.value,e.height.baseVal.value]]):[[0,0],[e.clientWidth,e.clientHeight]]}function i$(){return this.__zoom||Li}function cI(e){return-e.deltaY*(e.deltaMode===1?.05:e.deltaMode?1:.002)*(e.ctrlKey?10:1)}function fI(){return navigator.maxTouchPoints||"ontouchstart"in this}function hI(e,t,n){var r=e.invertX(t[0][0])-n[0][0],i=e.invertX(t[1][0])-n[1][0],o=e.invertY(t[0][1])-n[0][1],a=e.invertY(t[1][1])-n[1][1];return e.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}function yn(){var e=lI,t=uI,n=hI,r=cI,i=fI,o=[0,1/0],a=[[-1/0,-1/0],[1/0,1/0]],s=250,l=Fm,u=Qn("start","zoom","end"),c,f,h,p=500,d=150,m=0,g=10;function y(T){T.property("__zoom",i$).on("wheel.zoom",P,{passive:!1}).on("mousedown.zoom",M).on("dblclick.zoom",B).filter(i).on("touchstart.zoom",$).on("touchmove.zoom",k).on("touchend.zoom touchcancel.zoom",C).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}y.transform=function(T,w,D,F){var z=T.selection?T.selection():T;z.property("__zoom",i$),T!==z?_(T,w,D,F):z.interrupt().each(function(){A(this,arguments).event(F).start().zoom(null,typeof w=="function"?w.apply(this,arguments):w).end()})},y.scaleBy=function(T,w,D,F){y.scaleTo(T,function(){var z=this.__zoom.k,I=typeof w=="function"?w.apply(this,arguments):w;return z*I},D,F)},y.scaleTo=function(T,w,D,F){y.transform(T,function(){var z=t.apply(this,arguments),I=this.__zoom,N=D==null?x(z):typeof D=="function"?D.apply(this,arguments):D,E=I.invert(N),O=typeof w=="function"?w.apply(this,arguments):w;return n(v(b(I,O),N,E),z,a)},D,F)},y.translateBy=function(T,w,D,F){y.transform(T,function(){return n(this.__zoom.translate(typeof w=="function"?w.apply(this,arguments):w,typeof D=="function"?D.apply(this,arguments):D),t.apply(this,arguments),a)},null,F)},y.translateTo=function(T,w,D,F,z){y.transform(T,function(){var I=t.apply(this,arguments),N=this.__zoom,E=F==null?x(I):typeof F=="function"?F.apply(this,arguments):F;return n(Li.translate(E[0],E[1]).scale(N.k).translate(typeof w=="function"?-w.apply(this,arguments):-w,typeof D=="function"?-D.apply(this,arguments):-D),I,a)},F,z)};function b(T,w){return w=Math.max(o[0],Math.min(o[1],w)),w===T.k?T:new Jt(w,T.x,T.y)}function v(T,w,D){var F=w[0]-D[0]*T.k,z=w[1]-D[1]*T.k;return F===T.x&&z===T.y?T:new Jt(T.k,F,z)}function x(T){return[(+T[0][0]+ +T[1][0])/2,(+T[0][1]+ +T[1][1])/2]}function _(T,w,D,F){T.on("start.zoom",function(){A(this,arguments).event(F).start()}).on("interrupt.zoom end.zoom",function(){A(this,arguments).event(F).end()}).tween("zoom",function(){var z=this,I=arguments,N=A(z,I).event(F),E=t.apply(z,I),O=D==null?x(E):typeof D=="function"?D.apply(z,I):D,j=Math.max(E[1][0]-E[0][0],E[1][1]-E[0][1]),ie=z.__zoom,W=typeof w=="function"?w.apply(z,I):w,Q=l(ie.invert(O).concat(j/ie.k),W.invert(O).concat(j/W.k));return function(X){if(X===1)X=W;else{var K=Q(X),q=j/K[2];X=new Jt(q,O[0]-K[0]*q,O[1]-K[1]*q)}N.zoom(null,X)}})}function A(T,w,D){return!D&&T.__zooming||new S(T,w)}function S(T,w){this.that=T,this.args=w,this.active=0,this.sourceEvent=null,this.extent=t.apply(T,w),this.taps=0}S.prototype={event:function(T){return T&&(this.sourceEvent=T),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(T,w){return this.mouse&&T!=="mouse"&&(this.mouse[1]=w.invert(this.mouse[0])),this.touch0&&T!=="touch"&&(this.touch0[1]=w.invert(this.touch0[0])),this.touch1&&T!=="touch"&&(this.touch1[1]=w.invert(this.touch1[0])),this.that.__zoom=w,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(T){var w=V(this.that).datum();u.call(T,this.that,new sI(T,{sourceEvent:this.sourceEvent,target:y,type:T,transform:this.that.__zoom,dispatch:u}),w)}};function P(T,...w){if(!e.apply(this,arguments))return;var D=A(this,w).event(T),F=this.__zoom,z=Math.max(o[0],Math.min(o[1],F.k*Math.pow(2,r.apply(this,arguments)))),I=gt(T);if(D.wheel)(D.mouse[0][0]!==I[0]||D.mouse[0][1]!==I[1])&&(D.mouse[1]=F.invert(D.mouse[0]=I)),clearTimeout(D.wheel);else{if(F.k===z)return;D.mouse=[I,F.invert(I)],ar(this),D.start()}ua(T),D.wheel=setTimeout(N,d),D.zoom("mouse",n(v(b(F,z),D.mouse[0],D.mouse[1]),D.extent,a));function N(){D.wheel=null,D.end()}}function M(T,...w){if(h||!e.apply(this,arguments))return;var D=T.currentTarget,F=A(this,w,!0).event(T),z=V(T.view).on("mousemove.zoom",O,!0).on("mouseup.zoom",j,!0),I=gt(T,D),N=T.clientX,E=T.clientY;us(T.view),xp(T),F.mouse=[I,this.__zoom.invert(I)],ar(this),F.start();function O(ie){if(ua(ie),!F.moved){var W=ie.clientX-N,Q=ie.clientY-E;F.moved=W*W+Q*Q>m}F.event(ie).zoom("mouse",n(v(F.that.__zoom,F.mouse[0]=gt(ie,D),F.mouse[1]),F.extent,a))}function j(ie){z.on("mousemove.zoom mouseup.zoom",null),cs(ie.view,F.moved),ua(ie),F.event(ie).end()}}function B(T,...w){if(e.apply(this,arguments)){var D=this.__zoom,F=gt(T.changedTouches?T.changedTouches[0]:T,this),z=D.invert(F),I=D.k*(T.shiftKey?.5:2),N=n(v(b(D,I),F,z),t.apply(this,w),a);ua(T),s>0?V(this).transition().duration(s).call(_,N,F,T):V(this).call(y.transform,N,F,T)}}function $(T,...w){if(e.apply(this,arguments)){var D=T.touches,F=D.length,z=A(this,w,T.changedTouches.length===F).event(T),I,N,E,O;for(xp(T),N=0;N<F;++N)E=D[N],O=gt(E,this),O=[O,this.__zoom.invert(O),E.identifier],z.touch0?!z.touch1&&z.touch0[2]!==O[2]&&(z.touch1=O,z.taps=0):(z.touch0=O,I=!0,z.taps=1+!!c);c&&(c=clearTimeout(c)),I&&(z.taps<2&&(f=O[0],c=setTimeout(function(){c=null},p)),ar(this),z.start())}}function k(T,...w){if(this.__zooming){var D=A(this,w).event(T),F=T.changedTouches,z=F.length,I,N,E,O;for(ua(T),I=0;I<z;++I)N=F[I],E=gt(N,this),D.touch0&&D.touch0[2]===N.identifier?D.touch0[0]=E:D.touch1&&D.touch1[2]===N.identifier&&(D.touch1[0]=E);if(N=D.that.__zoom,D.touch1){var j=D.touch0[0],ie=D.touch0[1],W=D.touch1[0],Q=D.touch1[1],X=(X=W[0]-j[0])*X+(X=W[1]-j[1])*X,K=(K=Q[0]-ie[0])*K+(K=Q[1]-ie[1])*K;N=b(N,Math.sqrt(X/K)),E=[(j[0]+W[0])/2,(j[1]+W[1])/2],O=[(ie[0]+Q[0])/2,(ie[1]+Q[1])/2]}else if(D.touch0)E=D.touch0[0],O=D.touch0[1];else return;D.zoom("touch",n(v(N,E,O),D.extent,a))}}function C(T,...w){if(this.__zooming){var D=A(this,w).event(T),F=T.changedTouches,z=F.length,I,N;for(xp(T),h&&clearTimeout(h),h=setTimeout(function(){h=null},p),I=0;I<z;++I)N=F[I],D.touch0&&D.touch0[2]===N.identifier?delete D.touch0:D.touch1&&D.touch1[2]===N.identifier&&delete D.touch1;if(D.touch1&&!D.touch0&&(D.touch0=D.touch1,delete D.touch1),D.touch0)D.touch0[1]=this.__zoom.invert(D.touch0[0]);else if(D.end(),D.taps===2&&(N=gt(N,this),Math.hypot(f[0]-N[0],f[1]-N[1])<g)){var E=V(this).on("dblclick.zoom");E&&E.apply(this,arguments)}}}return y.wheelDelta=function(T){return arguments.length?(r=typeof T=="function"?T:uu(+T),y):r},y.filter=function(T){return arguments.length?(e=typeof T=="function"?T:uu(!!T),y):e},y.touchable=function(T){return arguments.length?(i=typeof T=="function"?T:uu(!!T),y):i},y.extent=function(T){return arguments.length?(t=typeof T=="function"?T:uu([[+T[0][0],+T[0][1]],[+T[1][0],+T[1][1]]]),y):t},y.scaleExtent=function(T){return arguments.length?(o[0]=+T[0],o[1]=+T[1],y):[o[0],o[1]]},y.translateExtent=function(T){return arguments.length?(a[0][0]=+T[0][0],a[1][0]=+T[1][0],a[0][1]=+T[0][1],a[1][1]=+T[1][1],y):[[a[0][0],a[0][1]],[a[1][0],a[1][1]]]},y.constrain=function(T){return arguments.length?(n=T,y):n},y.duration=function(T){return arguments.length?(s=+T,y):s},y.interpolate=function(T){return arguments.length?(l=T,y):l},y.on=function(){var T=u.on.apply(u,arguments);return T===u?y:T},y.clickDistance=function(T){return arguments.length?(m=(T=+T)*T,y):Math.sqrt(m)},y.tapDistance=function(T){return arguments.length?(g=+T,y):g},y}const vp=Object.freeze(Object.defineProperty({__proto__:null,Adder:ke,Delaunay:Mf,FormatSpecifier:Hs,InternMap:oo,InternSet:qn,Node:yr,Path:Ao,Voronoi:Ay,ZoomTransform:Jt,active:b5,arc:Ql,area:up,areaRadial:_v,ascending:Se,autoType:Y6,axisBottom:Dc,axisLeft:Mc,axisRight:cM,axisTop:uM,bin:k0,bisect:jn,bisectCenter:aD,bisectLeft:oD,bisectRight:y0,bisector:qa,blob:V6,blur:sD,blur2:b0,blurImage:lD,brush:L5,brushSelection:D5,brushX:M5,brushY:C5,buffer:H6,chord:R5,chordDirected:I5,chordTranspose:E5,cluster:r7,color:An,contourDensity:s6,contours:wf,count:Ka,create:VC,creator:as,cross:gD,csv:Z6,csvFormat:L6,csvFormatBody:k6,csvFormatRow:E6,csvFormatRows:R6,csvFormatValue:I6,csvParse:Cy,csvParseRows:C6,cubehelix:Et,cumsum:mD,curveBasis:RE,curveBasisClosed:EE,curveBasisOpen:IE,curveBumpX:wv,curveBumpY:Tv,curveBundle:BE,curveCardinal:NE,curveCardinalClosed:FE,curveCardinalOpen:zE,curveCatmullRom:OE,curveCatmullRomClosed:GE,curveCatmullRomOpen:YE,curveLinear:eu,curveLinearClosed:WE,curveMonotoneX:XE,curveMonotoneY:VE,curveNatural:UE,curveStep:HE,curveStepAfter:qE,curveStepBefore:jE,descending:g0,deviation:$0,difference:KD,disjoint:QD,dispatch:Qn,drag:hs,dragDisable:us,dragEnable:cs,dsv:q6,dsvFormat:Os,easeBack:ay,easeBackIn:c5,easeBackInOut:ay,easeBackOut:f5,easeBounce:wo,easeBounceIn:l5,easeBounceInOut:u5,easeBounceOut:wo,easeCircle:oy,easeCircleIn:Q3,easeCircleInOut:oy,easeCircleOut:J3,easeCubic:So,easeCubicIn:X3,easeCubicInOut:So,easeCubicOut:V3,easeElastic:sr,easeElasticIn:h5,easeElasticInOut:p5,easeElasticOut:sr,easeExp:iy,easeExpIn:Z3,easeExpInOut:iy,easeExpOut:K3,easeLinear:G3,easePoly:ey,easePolyIn:U3,easePolyInOut:ey,easePolyOut:H3,easeQuad:Jm,easeQuadIn:Y3,easeQuadInOut:Jm,easeQuadOut:W3,easeSin:ry,easeSinIn:j3,easeSinInOut:ry,easeSinOut:q3,every:VD,extent:io,fcumsum:bD,filter:HD,flatGroup:xD,flatRollup:vD,forceCenter:Ef,forceCollide:Ws,forceLink:Bf,forceManyBody:Vs,forceRadial:C8,forceSimulation:Xs,forceX:Ny,forceY:Fy,get format(){return Co},formatDefaultLocale:Uy,formatLocale:Vy,get formatPrefix(){return Nf},formatSpecifier:di,fsum:yD,geoAlbers:ab,geoAlbersUsa:I4,geoArea:O8,geoAzimuthalEqualArea:B4,geoAzimuthalEqualAreaRaw:_h,geoAzimuthalEquidistant:N4,geoAzimuthalEquidistantRaw:Sh,geoBounds:X8,geoCentroid:Z8,geoCircle:K8,geoClipAntimeridian:th,geoClipCircle:D1,geoClipExtent:i4,geoClipRectangle:gl,geoConicConformal:z4,geoConicConformalRaw:ub,geoConicEqualArea:Pl,geoConicEqualAreaRaw:ob,geoConicEquidistant:G4,geoConicEquidistantRaw:cb,geoContains:f4,geoDistance:bl,geoEqualEarth:W4,geoEqualEarthRaw:wh,geoEquirectangular:O4,geoEquirectangularRaw:Uo,geoGnomonic:X4,geoGnomonicRaw:Th,geoGraticule:F1,geoGraticule10:h4,geoIdentity:V4,geoInterpolate:p4,geoLength:M1,geoMercator:F4,geoMercatorRaw:Vo,geoNaturalEarth1:U4,geoNaturalEarth1Raw:Ah,geoOrthographic:H4,geoOrthographicRaw:Ph,geoPath:T4,geoProjection:Zt,geoProjectionMutator:vh,geoRotation:v1,geoStereographic:j4,geoStereographicRaw:Dh,geoStream:Bt,geoTransform:A4,geoTransverseMercator:q4,geoTransverseMercatorRaw:Mh,gray:fL,greatest:R0,greatestIndex:OD,group:T0,groupSort:SD,groups:A0,hcl:xs,hierarchy:Cl,histogram:k0,hsl:gs,html:n8,image:Q6,index:$D,indexes:_D,interpolate:nn,interpolateArray:yL,interpolateBasis:Sm,interpolateBasisClosed:wm,interpolateBlues:GR,interpolateBrBG:vR,interpolateBuGn:MR,interpolateBuPu:CR,interpolateCividis:HR,interpolateCool:ZR,interpolateCubehelix:kL,interpolateCubehelixDefault:jR,interpolateCubehelixLong:Ts,interpolateDate:Cm,interpolateDiscrete:vL,interpolateGnBu:LR,interpolateGreens:YR,interpolateGreys:WR,interpolateHcl:CL,interpolateHclLong:LL,interpolateHsl:PL,interpolateHslLong:DL,interpolateHue:$L,interpolateInferno:iE,interpolateLab:ML,interpolateMagma:rE,interpolateNumber:vt,interpolateNumberArray:jc,interpolateObject:Lm,interpolateOrRd:kR,interpolateOranges:UR,interpolatePRGn:$R,interpolatePiYG:_R,interpolatePlasma:oE,interpolatePuBu:ER,interpolatePuBuGn:RR,interpolatePuOr:SR,interpolatePuRd:IR,interpolatePurples:XR,interpolateRainbow:KR,interpolateRdBu:wR,interpolateRdGy:TR,interpolateRdPu:BR,interpolateRdYlBu:AR,interpolateRdYlGn:PR,interpolateReds:VR,interpolateRgb:mo,interpolateRgbBasis:Pm,interpolateRgbBasisClosed:mL,interpolateRound:Ss,interpolateSinebow:eE,interpolateSpectral:DR,interpolateString:Kc,interpolateTransformCss:Im,interpolateTransformSvg:Bm,interpolateTurbo:tE,interpolateViridis:nE,interpolateWarm:qR,interpolateYlGn:FR,interpolateYlGnBu:NR,interpolateYlOrBr:zR,interpolateYlOrRd:OR,interpolateZoom:Fm,interrupt:ar,intersection:JD,interval:NL,isoFormat:J9,isoParse:nR,json:e8,lab:bs,lch:hL,least:zD,leastIndex:B0,line:tu,lineRadial:$v,link:nu,linkHorizontal:$E,linkRadial:SE,linkVertical:_E,local:K0,map:jD,matcher:Rc,max:ao,maxIndex:Sc,mean:LD,median:kD,medianIndex:RD,merge:Tc,min:es,minIndex:wc,mode:ID,namespace:co,namespaces:Lc,nice:$c,now:$o,pack:R7,packEnclose:P7,packSiblings:L7,pairs:BD,partition:E7,path:Sf,pathRound:F5,permute:L0,pie:bv,piecewise:Ym,pointRadial:la,pointer:gt,pointers:HC,polygonArea:q7,polygonCentroid:Z7,polygonContains:ek,polygonHull:J7,polygonLength:tk,precisionFixed:Hy,precisionPrefix:jy,precisionRound:qy,quadtree:Ys,quantile:lo,quantileIndex:I0,quantileSorted:E0,quantize:RL,quickselect:ts,radialArea:_v,radialLine:$v,randomBates:ok,randomBernoulli:lk,randomBeta:kb,randomBinomial:Rb,randomCauchy:ck,randomExponential:ak,randomGamma:zh,randomGeometric:Lb,randomInt:rk,randomIrwinHall:Cb,randomLcg:gk,randomLogNormal:ik,randomLogistic:fk,randomNormal:Fh,randomPareto:sk,randomPoisson:hk,randomUniform:nk,randomWeibull:uk,range:wn,rank:FD,reduce:qD,reverse:ZD,rgb:ni,ribbon:U5,ribbonArrow:H5,rollup:D0,rollups:M0,scaleBand:Yh,scaleDiverging:zx,scaleDivergingLog:Ox,scaleDivergingPow:ap,scaleDivergingSqrt:lR,scaleDivergingSymlog:Gx,scaleIdentity:Fb,scaleImplicit:Oh,scaleLinear:xr,scaleLog:Wb,scaleOrdinal:Gh,scalePoint:Wh,scalePow:kn,scaleQuantile:Zb,scaleQuantize:Kb,scaleRadial:qb,scaleSequential:Ix,scaleSequentialLog:Bx,scaleSequentialPow:op,scaleSequentialQuantile:Fx,scaleSequentialSqrt:sR,scaleSequentialSymlog:Nx,scaleSqrt:Pk,scaleSymlog:Ub,scaleThreshold:Qb,scaleTime:oR,scaleUtc:aR,scan:GD,schemeAccent:cR,schemeBlues:uv,schemeBrBG:Yx,schemeBuGn:Kx,schemeBuPu:Qx,schemeCategory10:uR,schemeDark2:fR,schemeGnBu:Jx,schemeGreens:cv,schemeGreys:fv,schemeObservable10:hR,schemeOrRd:ev,schemeOranges:dv,schemePRGn:Wx,schemePaired:pR,schemePastel1:dR,schemePastel2:gR,schemePiYG:Xx,schemePuBu:nv,schemePuBuGn:tv,schemePuOr:Vx,schemePuRd:rv,schemePurples:hv,schemeRdBu:Ux,schemeRdGy:Hx,schemeRdPu:iv,schemeRdYlBu:jx,schemeRdYlGn:qx,schemeReds:pv,schemeSet1:mR,schemeSet2:yR,schemeSet3:bR,schemeSpectral:Zx,schemeTableau10:xR,schemeYlGn:av,schemeYlGnBu:ov,schemeYlOrBr:sv,schemeYlOrRd:lv,select:V,selectAll:jC,selection:er,selector:ss,selectorAll:kc,shuffle:YD,shuffler:N0,some:UD,sort:bc,stack:QE,stackOffsetDiverging:eI,stackOffsetExpand:JE,stackOffsetNone:Mi,stackOffsetSilhouette:tI,stackOffsetWiggle:nI,stackOrderAppearance:e$,stackOrderAscending:t$,stackOrderDescending:iI,stackOrderInsideOut:oI,stackOrderNone:Ci,stackOrderReverse:aI,stratify:F7,style:Jn,subset:tM,sum:Ac,superset:z0,svg:r8,symbol:kE,symbolAsterisk:Av,symbolCircle:ru,symbolCross:Pv,symbolDiamond:Mv,symbolDiamond2:Cv,symbolPlus:Lv,symbolSquare:kv,symbolSquare2:Rv,symbolStar:Iv,symbolTimes:pp,symbolTriangle:Bv,symbolTriangle2:Nv,symbolWye:Fv,symbolX:pp,symbols:zv,symbolsFill:zv,symbolsStroke:LE,text:Gs,thresholdFreedmanDiaconis:MD,thresholdScott:CD,thresholdSturges:_c,tickFormat:Nb,tickIncrement:Kn,tickStep:Ja,ticks:Zn,timeDay:wi,timeDays:Rk,get timeFormat(){return np},timeFormatDefaultLocale:Rx,timeFormatLocale:yx,timeFriday:ix,timeFridays:Ok,timeHour:Ol,timeHours:Lk,timeInterval:Ce,timeMillisecond:Si,timeMilliseconds:Jb,timeMinute:Fl,timeMinutes:Mk,timeMonday:ta,timeMondays:Bk,timeMonth:Yl,timeMonths:jk,get timeParse(){return kx},timeSaturday:ox,timeSaturdays:Gk,timeSecond:gn,timeSeconds:tx,timeSunday:Ti,timeSundays:ax,timeThursday:$r,timeThursdays:zk,timeTickInterval:mx,timeTicks:gx,timeTuesday:nx,timeTuesdays:Nk,timeWednesday:rx,timeWednesdays:Fk,timeWeek:Ti,timeWeeks:ax,timeYear:Kt,timeYears:Zk,timeout:ef,timer:Ms,timerFlush:Vm,transition:Km,transpose:F0,tree:V7,treemap:Db,treemapBinary:U7,treemapDice:Qo,treemapResquarify:j7,treemapSlice:Il,treemapSliceDice:H7,treemapSquarify:Nh,tsv:K6,tsvFormat:N6,tsvFormatBody:F6,tsvFormatRow:O6,tsvFormatRows:z6,tsvFormatValue:G6,tsvParse:Ly,tsvParseRows:B6,union:nM,unixDay:Jh,unixDays:Ik,utcDay:ea,utcDays:Ek,get utcFormat(){return Xl},utcFriday:ux,utcFridays:Uk,utcHour:Gl,utcHours:kk,utcMillisecond:Si,utcMilliseconds:Jb,utcMinute:zl,utcMinutes:Ck,utcMonday:na,utcMondays:Yk,utcMonth:Wl,utcMonths:qk,get utcParse(){return rp},utcSaturday:cx,utcSaturdays:Hk,utcSecond:gn,utcSeconds:tx,utcSunday:Ai,utcSundays:fx,utcThursday:Sr,utcThursdays:Vk,utcTickInterval:dx,utcTicks:px,utcTuesday:sx,utcTuesdays:Wk,utcWednesday:lx,utcWednesdays:Xk,utcWeek:Ai,utcWeeks:fx,utcYear:Qt,utcYears:Kk,variance:v0,window:Ec,xml:t8,zip:XD,zoom:yn,zoomIdentity:Li,zoomTransform:r$},Symbol.toStringTag,{value:"Module"}));function o$(e){try{return e.node().getBBox()}catch(t){throw new Error(t)}}function pI(e,t){function n(i){var s;const o=document.createElementNS("http://www.w3.org/1999/xhtml","div");o.innerHTML='<svg xmlns="http://www.w3.org/2000/svg">'+i+"</svg>";const a=document.createDocumentFragment();for(;a&&((s=o==null?void 0:o.firstChild)!=null&&s.firstChild);)a.appendChild(o.firstChild.firstChild);return a}const r=e.node();for(;r.hasChildNodes();)r.removeChild(r.firstChild);e.node().appendChild(n(t))}function ca(e){return e.substring(0,4)!=="ease"?So:vp[e]??So}function cu({axisWidth:e,innerRadius:t,outerRadius:n,padAngle:r,cornerRadius:i}){const o=xr().domain([0,1]).range([0,e/2]),a=o(n);return Ql().innerRadius(o(t)).outerRadius(a).padAngle(r).padRadius(a).cornerRadius(i)}const wr=(e,t)=>{if(t instanceof Function){const n=t(e);return String(n??"")}return Co(t)(e)};function fa(e,t=10){var i;const n=document.createElement("canvas").getContext("2d");return(((i=n==null?void 0:n.measureText(e))==null?void 0:i.width)??0)*t/10}function be(e,t){const n=t.colors[t.colorScheme];return e==="label"?n.label[0]:e=="none"?"none":n[e]!=null?n[e]:n.primary}function Me({datum:e,colorType:t,fullChartParams:n}){return t==="label"?e.color?e.color:n.colors[n.colorScheme].label[0]:t=="none"?"none":n.colors[n.colorScheme][t]!=null?n.colors[n.colorScheme][t]:n.colors[n.colorScheme].primary}function Z(e,t,n){const r=n?`--${n}`:"";return`orbcharts-${e}__${t}${r}`}function Pt(e,t){const r=Math.random().toString(36).substr(2,5);return Z(e,t,r)}function ha(e,t){let n=new de(()=>{});return e.each(function(){const r=Iu(this,t);n=Bu(n,r)}),n}const Tr=({selection:e,pluginName:t,clipPathID:n,seriesLabels$:r,gridContainerPosition$:i,gridAxesTransform$:o,gridGraphicTransform$:a})=>{const s=Z(t,"series"),l=Z(t,"axes"),u=Z(t,"graphic"),c=r.pipe(R((d,m)=>e.selectAll(`g.${s}`).data(d,g=>g).join(g=>g.append("g").classed(s,!0).each((y,b,v)=>{V(v[b]).selectAll(`g.${l}`).data([b]).join(x=>x.append("g").classed(l,!0).attr("clip-path",`url(#${n})`).each((_,A,S)=>{V(S[A]).selectAll("defs").data([A]).join("defs"),V(S[A]).selectAll("g").data([A]).join("g").classed(u,!0)}),x=>x,x=>x.remove())}),g=>g,g=>g.remove())),pe(1));Y({seriesSelection:c,gridContainerPosition:i}).pipe(G(async d=>d)).subscribe(d=>{d.seriesSelection.transition().attr("transform",(m,g)=>{const y=d.gridContainerPosition[g]??d.gridContainerPosition[0],b=y.translate,v=y.scale;return`translate(${b[0]}, ${b[1]}) scale(${v[0]}, ${v[1]})`})});const f=Y({seriesSelection:c,gridAxesTransform:o}).pipe(G(async d=>d),R(d=>d.seriesSelection.select(`g.${l}`).style("transform",d.gridAxesTransform.value)),pe(1)),h=f.pipe(R(d=>d.select("defs")),pe(1)),p=Y({axesSelection:f,gridGraphicTransform:a}).pipe(G(async d=>d),R(d=>{const m=d.axesSelection.select(`g.${u}`);return m.transition().duration(50).style("transform",d.gridGraphicTransform.value),m}),pe(1));return{seriesSelection$:c,axesSelection$:f,defsSelection$:h,graphicGSelection$:p}},a$=({fullDataFormatter$:e,gridAxesSize$:t,computedData$:n,fullChartParams$:r,gridContainerPosition$:i,layout$:o})=>{const a=new J,s=Y({fullDataFormatter:e,gridAxesSize:t,computedData:n}).pipe(G(async h=>h),R(h=>{const p=h.computedData[0]?h.computedData[0].length-1:0,d=h.fullDataFormatter.groupAxis.scaleDomain[0]-h.fullDataFormatter.groupAxis.scalePadding,m=h.fullDataFormatter.groupAxis.scaleDomain[1]==="max"?p+h.fullDataFormatter.groupAxis.scalePadding:h.fullDataFormatter.groupAxis.scaleDomain[1]+h.fullDataFormatter.groupAxis.scalePadding;return[d,m]}),pe(1)),l=Y({fullDataFormatter:e,computedData:n}).pipe(G(async h=>h),R(h=>h.fullDataFormatter.seriesDirection==="row"?(h.computedData[0]??[]).map(p=>p.groupLabel):h.computedData.map(p=>p[0].groupLabel))),u=Y({groupScaleDomain:s,groupLabels:l}).pipe(G(async h=>h),R(h=>h.groupLabels.filter((p,d)=>d>=h.groupScaleDomain[0]&&d<=h.groupScaleDomain[1]))),c=i.pipe(R(h=>h.reduce((d,m)=>m.columnIndex>d?m.columnIndex:d,0)+1),ee()),f=i.pipe(R(h=>h.reduce((d,m)=>m.rowIndex>d?m.rowIndex:d,0)+1),ee());return new de(h=>{Y({dataFormatter:e,axisSize:t,fullChartParams:r,scaleRangeGroupLabels:u,groupLabels:l,groupScaleDomain:s,columnAmount:c,rowAmount:f,layout:o}).pipe(L(a),G(async p=>p)).subscribe(p=>{const d=p.dataFormatter.valueAxis.position==="right"||p.dataFormatter.valueAxis.position==="bottom",m=f0({axisLabels:p.scaleRangeGroupLabels,axisWidth:p.axisSize.width,padding:p.dataFormatter.groupAxis.scalePadding,reverse:d}),g=b=>p.dataFormatter.groupAxis.position==="bottom"||p.dataFormatter.groupAxis.position==="top"?b.offsetX-p.fullChartParams.padding.left:b.offsetY-p.fullChartParams.padding.top,y=b=>{const v={offsetX:b.offsetX*p.columnAmount%p.layout.rootWidth,offsetY:b.offsetY*p.rowAmount%p.layout.rootHeight},x=g(v),_=m(x),A=Math.ceil(p.groupScaleDomain[0]),S=_+A;return{groupIndex:S,groupLabel:p.groupLabels[S]??""}};return h.next(y),function(){a.next(void 0)}})})},dI=({rootSelection:e,fullDataFormatter$:t,gridAxesSize$:n,computedData$:r,fullChartParams$:i,gridContainerPosition$:o,layout$:a})=>{const s=ha(e,"mousemove"),l=Y({fullDataFormatter:t,gridAxesSize:n,computedData:r}).pipe(G(async b=>b),R(b=>{const v=b.computedData[0]?b.computedData[0].length-1:0,x=b.fullDataFormatter.groupAxis.scaleDomain[0]-b.fullDataFormatter.groupAxis.scalePadding,_=b.fullDataFormatter.groupAxis.scaleDomain[1]==="max"?v+b.fullDataFormatter.groupAxis.scalePadding:b.fullDataFormatter.groupAxis.scaleDomain[1]+b.fullDataFormatter.groupAxis.scalePadding;return[x,_]}),pe(1)),u=Y({fullDataFormatter:t,computedData:r}).pipe(G(async b=>b),R(b=>b.fullDataFormatter.seriesDirection==="row"?(b.computedData[0]??[]).map(v=>v.groupLabel):b.computedData.map(v=>v[0].groupLabel))),c=Y({groupScaleDomain:l,groupLabels:u}).pipe(G(async b=>b),R(b=>b.groupLabels.filter((v,x)=>x>=b.groupScaleDomain[0]&&x<=b.groupScaleDomain[1]))),f=t.pipe(R(b=>b.valueAxis.position==="right"||b.valueAxis.position==="bottom")),h=Y({reverse:f,gridAxesSize:n,scaleRangeGroupLabels:c,fullDataFormatter:t}).pipe(G(async b=>b),R(b=>f0({axisLabels:b.scaleRangeGroupLabels,axisWidth:b.gridAxesSize.width,padding:b.fullDataFormatter.groupAxis.scalePadding,reverse:b.reverse}))),p=o.pipe(R(b=>b.reduce((x,_)=>_.columnIndex>x?_.columnIndex:x,0)+1),ee()),d=o.pipe(R(b=>b.reduce((x,_)=>_.rowIndex>x?_.rowIndex:x,0)+1),ee()),m=Y({fullDataFormatter:t,fullChartParams:i,rootMousemove:s,columnAmount:p,rowAmount:d,layout:a}).pipe(G(async b=>b),R(b=>{const v={offsetX:b.rootMousemove.offsetX*b.columnAmount%b.layout.rootWidth,offsetY:b.rootMousemove.offsetY*b.rowAmount%b.layout.rootHeight};return b.fullDataFormatter.groupAxis.position==="bottom"||b.fullDataFormatter.groupAxis.position==="top"?v.offsetX-b.fullChartParams.padding.left:v.offsetY-b.fullChartParams.padding.top})),g=Y({xIndexScale:h,axisValue:m,groupScaleDomain:l}).pipe(G(async b=>b),R(b=>{const v=b.xIndexScale(b.axisValue),x=Math.ceil(b.groupScaleDomain[0]);return v+x})),y=Y({groupIndex:g,groupLabels:u}).pipe(G(async b=>b),R(b=>b.groupLabels[b.groupIndex]??""));return Y({groupIndex:g,groupLabel:y}).pipe(G(async b=>b),R(b=>({groupIndex:b.groupIndex,groupLabel:b.groupLabel})))};function gI(e="curveLinear"){return tu().x(t=>t.axisX).y(t=>t.axisY).curve(vp[e])}function mI(e){let t=[[]],n=0;for(let r in e){if(e[r].visible==!1||e[r].value===void 0||e[r].value===null){t[n].length&&(n++,t[n]=[]);continue}t[n].push(e[r])}return t}function yI({selection:e,pathClassName:t,segmentData:n,linePath:r,params:i}){return e.selectAll("path").data(n,(a,s)=>a.length?`${a[0].id}_${a[a.length-1].id}`:s).join(a=>a.append("path").classed(t,!0).attr("fill","none").attr("pointer-events","visibleStroke").style("vector-effect","non-scaling-stroke").style("cursor","pointer"),a=>a,a=>a.remove()).attr("stroke-width",i.lineWidth).attr("stroke",(a,s)=>a[0]&&a[0].color).attr("d",a=>r(a))}function bI({selection:e,seriesLabel:t,fullChartParams:n}){if(e.interrupt("highlight"),!t){e.transition("highlight").duration(200).style("opacity",1);return}e.each((r,i,o)=>{r===t?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}function xI({defsSelection:e,clipPathData:t,transitionDuration:n,transitionEase:r}){e.selectAll("clipPath").data(t).join(i=>i.append("clipPath"),i=>i,i=>i.remove()).attr("id",i=>i.id).each((i,o,a)=>{V(a[o]).selectAll("rect").data([i]).join(s=>{const l=s.append("rect");return l.transition().duration(n).ease(ca(r)).tween("tween",(u,c,f)=>h=>{const p=u.width*h;l.attr("x",0).attr("y",0).attr("width",d=>p).attr("height",d=>d.height)}),l},s=>s.attr("x",0).attr("y",0).attr("width",l=>l.width).attr("height",l=>l.height),s=>s.remove())})}const s$=(e,{selection:t,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:l,fullParams$:u,fullDataFormatter$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridAxesSize$:d,gridHighlight$:m,gridContainerPosition$:g,allContainerPosition$:y,layout$:b,event$:v})=>{const x=new J,_=Pt(e,"clipPath-box"),A=Z(e,"path"),{seriesSelection$:S,axesSelection$:P,defsSelection$:M,graphicGSelection$:B}=Tr({selection:t,pluginName:e,clipPathID:_,seriesLabels$:a,gridContainerPosition$:g,gridAxesTransform$:h,gridGraphicTransform$:p}),$=new de(z=>{const I=u.pipe(L(x)).subscribe(N=>{if(!N)return;const E=gI(N.lineCurve);z.next(E)});return()=>{I.unsubscribe()}}),k=f.pipe(R(z=>z.transitionDuration),ee()),C=f.pipe(R(z=>z.transitionEase),ee());Y({defsSelection:M,seriesLabels:a,axisSize:d,transitionDuration:k,transitionEase:C}).pipe(L(x),G(async z=>z)).subscribe(z=>{const N=[{id:_,width:z.axisSize.width,height:z.axisSize.height}].concat(z.seriesLabels.map(E=>({id:`orbcharts__clipPath_${E}`,width:z.axisSize.width,height:z.axisSize.height})));xI({defsSelection:z.defsSelection,clipPathData:N,transitionDuration:z.transitionDuration,transitionEase:z.transitionEase})});const T=n.pipe(R(z=>{const I=new Map;return z.flat().forEach(N=>I.set(N.id,N)),I})),w=a$({fullDataFormatter$:c,gridAxesSize$:d,computedData$:n,fullChartParams$:f,gridContainerPosition$:y,layout$:b}),D=f.pipe(L(x),R(z=>z.highlightTarget),ee()),F=Y({graphicGSelection:B,visibleComputedLayoutData:o,linePath:$,params:u}).pipe(L(x),G(async z=>z),R(z=>{let I=[];return z.graphicGSelection.each((N,E,O)=>{const j=mI(z.visibleComputedLayoutData[E]??[]);I[E]=yI({selection:V(O[E]),pathClassName:A,linePath:z.linePath,segmentData:j,params:z.params})}),I}));return Y({pathSelectionArr:F,computedData:n,SeriesDataMap:s,GroupDataMap:l,highlightTarget:D,gridGroupPositionFn:w}).pipe(L(x),G(async z=>z)).subscribe(z=>{z.pathSelectionArr.forEach(I=>{I.on("mouseover",(N,E)=>{N.stopPropagation();const O=E[0]?E[0].seriesLabel:"",{groupIndex:j,groupLabel:ie}=z.gridGroupPositionFn(N),X=z.GroupDataMap.get(ie).find(K=>K.seriesLabel===O)??E[0];v.next({type:"grid",eventName:"mouseover",pluginName:e,highlightTarget:z.highlightTarget,datum:X,gridIndex:X.gridIndex,series:z.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:z.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:N,data:z.computedData})}).on("mousemove",(N,E)=>{N.stopPropagation();const O=E[0]?E[0].seriesLabel:"",{groupIndex:j,groupLabel:ie}=z.gridGroupPositionFn(N),X=z.GroupDataMap.get(ie).find(K=>K.seriesLabel===O)??E[0];v.next({type:"grid",eventName:"mousemove",pluginName:e,highlightTarget:z.highlightTarget,datum:X,gridIndex:X.gridIndex,series:z.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:z.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:N,data:z.computedData})}).on("mouseout",(N,E)=>{N.stopPropagation();const O=E[0]?E[0].seriesLabel:"",{groupIndex:j,groupLabel:ie}=z.gridGroupPositionFn(N),X=z.GroupDataMap.get(ie).find(K=>K.seriesLabel===O)??E[0];v.next({type:"grid",eventName:"mouseout",pluginName:e,highlightTarget:z.highlightTarget,datum:X,gridIndex:X.gridIndex,series:z.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:z.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:N,data:z.computedData})}).on("click",(N,E)=>{N.stopPropagation();const O=E[0]?E[0].seriesLabel:"",{groupIndex:j,groupLabel:ie}=z.gridGroupPositionFn(N),X=z.GroupDataMap.get(ie).find(K=>K.seriesLabel===O)??E[0];v.next({type:"grid",eventName:"click",pluginName:e,highlightTarget:z.highlightTarget,datum:X,gridIndex:X.gridIndex,series:z.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:z.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:N,data:z.computedData})})})}),f.pipe(L(x),Rr(z=>z.highlightTarget==="series"),G(z=>Y({graphicGSelection:B,gridHighlight:m,DataMap:T,fullChartParams:f}).pipe(L(x),G(async I=>I)))).subscribe(z=>{const I=z.gridHighlight[0]?z.gridHighlight[0].seriesLabel:null;bI({selection:z.graphicGSelection,seriesLabel:I,fullChartParams:z.fullChartParams})}),()=>{x.next(void 0)}},l$=0,bn=2,u$=3,c$=4,bt=5,fu=6,$p=7,ki=8,Ri=9,f$="Lines",vI=st({name:f$,defaultParams:Dr,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{lineCurve:{toBeTypes:["string"]},lineWidth:{toBeTypes:["number"]}})})(({selection:e,rootSelection:t,name:n,observer:r,subject:i})=>{const o=new J,a=s$(f$,{selection:e,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullDataFormatter$:r.fullDataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,allContainerPosition$:r.gridContainerPosition$,layout$:r.layout$,event$:i.event$});return()=>{o.next(void 0),a()}});function $I(e="curveLinear",t){return up().x(n=>n.axisX).y0(n=>t).y1(n=>n.axisY).curve(vp[e])}function _I(e){let t=[[]],n=0;for(let r in e){if(e[r].visible==!1||e[r].value===void 0||e[r].value===null){t[n].length&&(n++,t[n]=[]);continue}t[n].push(e[r])}return t}function SI({selection:e,pathClassName:t,segmentData:n,areaPath:r,linearGradientIds:i,params:o}){return e.selectAll("path").data(n,(s,l)=>s.length?`${s[0].id}_${s[s.length-1].id}`:l).join(s=>s.append("path").classed(t,!0).attr("fill","none").style("vector-effect","non-scaling-stroke").style("cursor","pointer"),s=>s,s=>s.remove()).attr("fill",(s,l)=>s[0]?`url(#${i[s[0].seriesIndex]})`:"").attr("d",s=>r(s))}function wI({selection:e,seriesLabel:t,fullChartParams:n}){if(e.interrupt("highlight"),!t){e.transition("highlight").duration(200).style("opacity",1);return}e.each((r,i,o)=>{r===t?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}function TI({defsSelection:e,computedData:t,linearGradientIds:n,params:r}){e.selectAll("linearGradient").data(t??[]).join(i=>i.append("linearGradient").attr("x1","0%").attr("x2","0%").attr("y1","100%").attr("y2","0%").attr("spreadMethod","pad"),i=>i,i=>i.remove()).attr("id",(i,o)=>i[0]?n[i[0].seriesIndex]:"").html((i,o)=>{const a=i[0]?i[0].color:"";return`
|
14
47
|
<stop offset="0%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[0]}"/>
|
15
48
|
<stop offset="100%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[1]}"/>
|
16
|
-
`})}function vE({defsSelection:t,clipPathData:e,transitionDuration:n,transitionEase:r}){t.selectAll("clipPath").data(e).join(i=>i.append("clipPath"),i=>i,i=>i.remove()).attr("id",i=>i.id).each((i,o,a)=>{V(a[o]).selectAll("rect").data([i]).join(s=>{const u=s.append("rect");return u.transition().duration(n).ease(Wo(r)).tween("tween",(l,c,f)=>h=>{const p=l.width*h;u.attr("x",0).attr("y",0).attr("width",d=>p).attr("height",d=>d.height)}),u},s=>s.attr("x",0).attr("y",0).attr("width",u=>u.width).attr("height",u=>u.height),s=>s.remove())})}const Iv=(t,{selection:e,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:u,fullParams$:l,fullDataFormatter$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridAxesSize$:d,gridHighlight$:g,gridContainerPosition$:m,layout$:y,event$:b})=>{const v=new nt,x=Tn(t,"clipPath-box"),S=ot(t,"path"),{seriesSelection$:$,axesSelection$:R,defsSelection$:T,graphicGSelection$:w}=pr({selection:e,pluginName:t,clipPathID:x,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:h,gridGraphicTransform$:p}),P=p.pipe(I(v),B(E=>-E.translate[1]/E.scale[1])),_=new dt(E=>{const k=U({fullParams:l,valueAxisStart:P}).pipe(I(v)).subscribe(C=>{const F=gE(C.fullParams.lineCurve,C.valueAxisStart);E.next(F)});return()=>{k.unsubscribe()}}),N=f.pipe(B(E=>E.transitionDuration),tt()),D=f.pipe(B(E=>E.transitionEase),tt());U({defsSelection:T,seriesLabels:a,axisSize:d,transitionDuration:N,transitionEase:D}).pipe(I(v),W(async E=>E)).subscribe(E=>{const C=[{id:x,width:E.axisSize.width,height:E.axisSize.height}].concat(E.seriesLabels.map(F=>({id:`orbcharts__clipPath_${F}`,width:E.axisSize.width,height:E.axisSize.height})));vE({defsSelection:E.defsSelection,clipPathData:C,transitionDuration:E.transitionDuration,transitionEase:E.transitionEase})});const A=n.pipe(B(E=>{const k=new Map;return E.flat().forEach(C=>k.set(C.id,C)),k})),L=Cv({fullDataFormatter$:c,gridAxesSize$:d,computedData$:n,fullChartParams$:f,gridContainerPosition$:m,layout$:y}),M=f.pipe(I(v),B(E=>E.highlightTarget),tt()),G=a.pipe(I(v),B(E=>E.map((k,C)=>Tn(t,`lineargradient-${k}`)))),O=U({graphicGSelection:w,defsSelection:T,visibleComputedLayoutData:o,linearGradientIds:G,areaPath:_,params:l}).pipe(I(v),W(async E=>E),B(E=>{let k=[];return E.graphicGSelection.each((C,F,X)=>{const Q=mE(E.visibleComputedLayoutData[F]??[]);k[F]=yE({selection:V(X[F]),pathClassName:S,areaPath:E.areaPath,segmentData:Q,linearGradientIds:E.linearGradientIds,params:E.params}),xE({defsSelection:E.defsSelection,computedData:E.visibleComputedLayoutData,linearGradientIds:E.linearGradientIds,params:E.params})}),k}));return U({pathSelectionArr:O,computedData:n,SeriesDataMap:s,GroupDataMap:u,highlightTarget:M,gridGroupPositionFn:L}).pipe(I(v),W(async E=>E)).subscribe(E=>{E.pathSelectionArr.forEach(k=>{k.on("mouseover",(C,F)=>{const X=F[0]?F[0].seriesLabel:"",{groupIndex:Q,groupLabel:z}=E.gridGroupPositionFn(C),q=E.GroupDataMap.get(z).find(j=>j.seriesLabel===X)??F[0];b.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:E.highlightTarget,datum:q,gridIndex:q.gridIndex,series:E.SeriesDataMap.get(q.seriesLabel),seriesIndex:q.seriesIndex,seriesLabel:q.seriesLabel,groups:E.GroupDataMap.get(q.groupLabel),groupIndex:q.groupIndex,groupLabel:q.groupLabel,event:C,data:E.computedData})}).on("mousemove",(C,F)=>{const X=F[0]?F[0].seriesLabel:"",{groupIndex:Q,groupLabel:z}=E.gridGroupPositionFn(C),q=E.GroupDataMap.get(z).find(j=>j.seriesLabel===X)??F[0];b.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:E.highlightTarget,datum:q,gridIndex:q.gridIndex,series:E.SeriesDataMap.get(q.seriesLabel),seriesIndex:q.seriesIndex,seriesLabel:q.seriesLabel,groups:E.GroupDataMap.get(q.groupLabel),groupIndex:q.groupIndex,groupLabel:q.groupLabel,event:C,data:E.computedData})}).on("mouseout",(C,F)=>{const X=F[0]?F[0].seriesLabel:"",{groupIndex:Q,groupLabel:z}=E.gridGroupPositionFn(C),q=E.GroupDataMap.get(z).find(j=>j.seriesLabel===X)??F[0];b.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:E.highlightTarget,datum:q,gridIndex:q.gridIndex,series:E.SeriesDataMap.get(q.seriesLabel),seriesIndex:q.seriesIndex,seriesLabel:q.seriesLabel,groups:E.GroupDataMap.get(q.groupLabel),groupIndex:q.groupIndex,groupLabel:q.groupLabel,event:C,data:E.computedData})}).on("click",(C,F)=>{const X=F[0]?F[0].seriesLabel:"",{groupIndex:Q,groupLabel:z}=E.gridGroupPositionFn(C),q=E.GroupDataMap.get(z).find(j=>j.seriesLabel===X)??F[0];b.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:E.highlightTarget,datum:q,gridIndex:q.gridIndex,series:E.SeriesDataMap.get(q.seriesLabel),seriesIndex:q.seriesIndex,seriesLabel:q.seriesLabel,groups:E.GroupDataMap.get(q.groupLabel),groupIndex:q.groupIndex,groupLabel:q.groupLabel,event:C,data:E.computedData})})})}),f.pipe(I(v),$i(E=>E.highlightTarget==="series"),W(E=>U({graphicGSelection:w,gridHighlight:g,DataMap:A,fullChartParams:f}).pipe(I(v),W(async k=>k)))).subscribe(E=>{const k=E.gridHighlight[0]?E.gridHighlight[0].seriesLabel:null;bE({selection:E.graphicGSelection,seriesLabel:k,fullChartParams:E.fullChartParams})}),()=>{v.next(void 0)}},Nv="LineAreas",_E=ue({name:Nv,defaultParams:hp,layerIndex:kv,validator:(t,{validateColumns:e})=>e(t,{lineCurve:{toBeTypes:["string"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:t,name:e,observer:n,subject:r})=>{const i=new nt,o=Iv(Nv,{selection:t,computedData$:n.computedData$,visibleComputedData$:n.visibleComputedData$,computedLayoutData$:n.computedLayoutData$,visibleComputedLayoutData$:n.visibleComputedLayoutData$,seriesLabels$:n.seriesLabels$,SeriesDataMap$:n.SeriesDataMap$,GroupDataMap$:n.GroupDataMap$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridGraphicTransform$:n.gridGraphicTransform$,gridAxesSize$:n.gridAxesSize$,gridHighlight$:n.gridHighlight$,gridContainerPosition$:n.gridContainerPosition$,allContainerPosition$:n.gridContainerPosition$,layout$:n.layout$,event$:r.event$});return()=>{i.next(void 0),o()}}),Bv=.3;function Fv({axisWidth:t,groupAmount:e,barAmountOfGroup:n,barPadding:r=0,barGroupPadding:i=0}){const a=((e>1?t/(e-1):t)-i)/n-r;return a>1?a:1}function wE(t,e,n){const r=t/2,i=t*e.length+n.barPadding*e.length;return ih().domain(e).range([-i/2+r,i/2-r])}function $E(t,e){return t<=1?0:e/(t-1)*Bv}function SE(t,e){return t<=1?e:e*(1-Bv)}function AE({graphicGSelection:t,rectClassName:e,visibleComputedLayoutData:n,zeroYArr:r,groupLabels:i,barScale:o,params:a,chartParams:s,barWidth:u,transformedBarRadius:l,delayGroup:c,transitionItem:f,isSeriesSeprate:h}){const p=u/2;return t.each((g,m,y)=>{V(y[m]).selectAll(`rect.${e}`).data(n[m]??[],b=>b.id).join(b=>b.append("rect").classed(e,!0).attr("cursor","pointer").attr("height",v=>0),b=>b,b=>b.remove()).attr("transform",(b,v)=>`translate(${(b?b.axisX:0)-p}, 0)`).attr("fill",b=>b.color).attr("y",b=>b.axisY<r[m]?b.axisY:r[m]).attr("x",b=>h?0:o(b.seriesLabel)).attr("width",u).attr("rx",l[m][0]??1).attr("ry",l[m][1]??1).transition().duration(f).ease(Wo(s.transitionEase)).delay((b,v)=>b.groupIndex*c).attr("height",b=>Math.abs(b.axisYFromZero))}),t.selectAll(`rect.${e}`)}function TE({defsSelection:t,clipPathData:e}){t.selectAll("clipPath").data(e).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join(o=>o.append("rect"),o=>o,o=>o.remove()).attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}function PE({selection:t,ids:e,fullChartParams:n}){if(t.interrupt("highlight"),!e.length){t.transition("highlight").duration(200).style("opacity",1);return}t.each((r,i,o)=>{e.includes(r.id)?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const Gh=(t,{selection:e,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:u,fullParams$:l,fullChartParams$:c,gridAxesTransform$:f,gridGraphicTransform$:h,gridGraphicReverseScale$:p,gridAxesSize$:d,gridHighlight$:g,gridContainerPosition$:m,isSeriesSeprate$:y,event$:b})=>{const v=new nt,x=Tn(t,"clipPath-box"),S=ot(t,"rect"),{seriesSelection$:$,axesSelection$:R,defsSelection$:T,graphicGSelection$:w}=pr({selection:e,pluginName:t,clipPathID:x,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:f,gridGraphicTransform$:h}),P=o.pipe(I(v),B(k=>k.map(C=>C[0]?C[0].axisY-C[0].axisYFromZero:0)),tt()),_=U({computedData:n,visibleComputedData:i,params:l,gridAxesSize:d,isSeriesSeprate:y}).pipe(I(v),W(async k=>k),B(k=>k.params.barWidth?k.params.barWidth:k.isSeriesSeprate?Fv({axisWidth:k.gridAxesSize.width,groupAmount:k.computedData[0]?k.computedData[0].length:0,barAmountOfGroup:1,barPadding:k.params.barPadding,barGroupPadding:k.params.barGroupPadding}):Fv({axisWidth:k.gridAxesSize.width,groupAmount:k.computedData[0]?k.computedData[0].length:0,barAmountOfGroup:k.visibleComputedData.length,barPadding:k.params.barPadding,barGroupPadding:k.params.barGroupPadding})),tt()),N=U({computedData:n,barWidth:_,params:l,gridGraphicReverseScale:p}).pipe(I(v),W(async k=>k),B(k=>{const C=k.barWidth/2,F=k.params.barRadius===!0?C:k.params.barRadius===!1?0:typeof k.params.barRadius=="number"?k.params.barRadius:0;return k.computedData.map((X,Q)=>{const z=k.gridGraphicReverseScale[Q]??k.gridGraphicReverseScale[0];let Z=F*z[0],Y=F*z[1];if(Z>C){const q=C/Z;Z=Z*q,Y=Y*q}return[Z,Y]})})),D=i.pipe(I(v),B(k=>{const C=new Set;return k.forEach(F=>{F.forEach(X=>{C.add(X.groupLabel)})}),Array.from(C)})),A=U({seriesLabels:a,barWidth:_,params:l}).pipe(I(v),W(async k=>k),B(k=>wE(k.barWidth,k.seriesLabels,k.params))),L=c.pipe(I(v),B(k=>k.transitionDuration),tt()),M=new dt(k=>{U({groupLabels:D,transitionDuration:L}).pipe(W(async C=>C)).subscribe(C=>{const F=$E(C.groupLabels.length,C.transitionDuration);k.next(F)})}).pipe(I(v),tt()),G=new dt(k=>{U({groupLabels:D,transitionDuration:L}).pipe(W(async C=>C)).subscribe(C=>{const F=SE(C.groupLabels.length,C.transitionDuration);k.next(F)})}).pipe(I(v),tt());U({defsSelection:T,gridAxesSize:d}).pipe(I(v),W(async k=>k)).subscribe(k=>{const C=[{id:x,width:k.gridAxesSize.width,height:k.gridAxesSize.height}];TE({defsSelection:k.defsSelection,clipPathData:C})});const O=c.pipe(I(v),B(k=>k.highlightTarget),tt()),E=U({graphicGSelection:w,visibleComputedLayoutData:o,zeroYArr:P,groupLabels:D,barScale:A,params:l,chartParams:c,highlightTarget:O,barWidth:_,transformedBarRadius:N,delayGroup:M,transitionItem:G,isSeriesSeprate:y}).pipe(I(v),W(async k=>k),B(k=>AE({graphicGSelection:k.graphicGSelection,rectClassName:S,visibleComputedLayoutData:k.visibleComputedLayoutData,zeroYArr:k.zeroYArr,groupLabels:k.groupLabels,barScale:k.barScale,params:k.params,chartParams:k.chartParams,barWidth:k.barWidth,transformedBarRadius:k.transformedBarRadius,delayGroup:k.delayGroup,transitionItem:k.transitionItem,isSeriesSeprate:k.isSeriesSeprate})));return U({barSelection:E,computedData:n,highlightTarget:O,SeriesDataMap:s,GroupDataMap:u}).pipe(I(v),W(async k=>k)).subscribe(k=>{k.barSelection.on("mouseover",(C,F)=>{C.stopPropagation(),b.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:k.highlightTarget,datum:F,gridIndex:F.gridIndex,series:k.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:k.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:k.computedData})}).on("mousemove",(C,F)=>{C.stopPropagation(),b.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:k.highlightTarget,datum:F,gridIndex:F.gridIndex,series:k.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:k.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:k.computedData})}).on("mouseout",(C,F)=>{C.stopPropagation(),b.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:k.highlightTarget,datum:F,gridIndex:F.gridIndex,series:k.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:k.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:k.computedData})}).on("click",(C,F)=>{C.stopPropagation(),b.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:k.highlightTarget,datum:F,gridIndex:F.gridIndex,series:k.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:k.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:k.computedData})})}),U({barSelection:E,highlight:g.pipe(B(k=>k.map(C=>C.id))),fullChartParams:c}).pipe(I(v),W(async k=>k)).subscribe(k=>{PE({selection:k.barSelection,ids:k.highlight,fullChartParams:k.fullChartParams})}),()=>{v.next(void 0)}},Ov="Bars",ME=ue({name:Ov,defaultParams:jo,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=Gh(Ov,{selection:t,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:r.isSeriesSeprate$,event$:n.event$});return()=>{i.next(void 0),o()}}),Gv="BarsPN",DE=ue({name:Gv,defaultParams:jo,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=Gh(Gv,{selection:t,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:Qo(!0),event$:n.event$});return()=>{i.next(void 0),o()}}),zv=.3;function CE({axisWidth:t,groupAmount:e,barGroupPadding:n=0}){const i=t/(e-1)-n;return i>1?i:1}function LE(t,e){return t<=1?0:e/(t-1)*zv}function kE(t,e){return t<=1?e:e*(1-zv)}function RE({graphicGSelection:t,rectClassName:e,barData:n,zeroY:r,groupLabels:i,params:o,chartParams:a,barWidth:s,transformedBarRadius:u,delayGroup:l,transitionItem:c,isSeriesSeprate:f}){const h=s/2;return t.each((d,g,m)=>{V(m[g]).selectAll(`rect.${e}`).data(n[g]??[],y=>y.id).join(y=>y.append("rect").classed(e,!0).attr("cursor","pointer").attr("height",b=>0),y=>y,y=>y.remove()).attr("transform",(y,b)=>`translate(${(y?y.axisX:0)-h}, 0)`).attr("fill",y=>y.color).attr("y",y=>r).attr("x",y=>0).attr("width",s).attr("rx",u[g][0]??1).attr("ry",u[g][1]??1).transition().duration(c).ease(Wo(a.transitionEase)).delay((y,b)=>y.groupIndex*l).attr("y",y=>y._barStartY).attr("height",y=>Math.abs(y._barHeight))}),t.selectAll(`rect.${e}`)}function EE({defsSelection:t,clipPathData:e}){t.selectAll("clipPath").data(e).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join(o=>o.append("rect"),o=>o,o=>o.remove()).attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}function IE({selection:t,ids:e,fullChartParams:n}){if(t.interrupt("highlight"),!e.length){t.transition("highlight").duration(200).style("opacity",1);return}t.each((r,i,o)=>{e.includes(r.id)?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const Yv=(t,{selection:e,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:u,fullParams$:l,fullDataFormatter$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridGraphicReverseScale$:d,gridAxesSize$:g,gridHighlight$:m,gridContainerPosition$:y,isSeriesSeprate$:b,event$:v})=>{const x=new nt,S=Tn(t,"clipPath-box"),$=ot(t,"rect"),{seriesSelection$:R,axesSelection$:T,defsSelection$:w,graphicGSelection$:P}=pr({selection:e,pluginName:t,clipPathID:S,seriesLabels$:a,gridContainerPosition$:y,gridAxesTransform$:h,gridGraphicTransform$:p}),_=o.pipe(I(x),B(z=>z[0]&&z[0][0]?z[0][0].axisY-z[0][0].axisYFromZero:0),tt()),N=U({computedData:n,params:l,axisSize:g,isSeriesSeprate:b}).pipe(I(x),W(async z=>z),B(z=>z.params.barWidth?z.params.barWidth:CE({axisWidth:z.axisSize.width,groupAmount:z.computedData[0]?z.computedData[0].length:0,barGroupPadding:z.params.barGroupPadding})),tt()),D=U({computedData:n,barWidth:N,params:l,gridGraphicReverseScale:d}).pipe(I(x),W(async z=>z),B(z=>{const Z=z.barWidth/2,Y=z.params.barRadius===!0?Z:z.params.barRadius===!1?0:typeof z.params.barRadius=="number"?z.params.barRadius:0;return z.computedData.map((q,j)=>{const rt=z.gridGraphicReverseScale[j]??z.gridGraphicReverseScale[0],ut=Y*rt[0],H=Y*rt[1];return[ut,H]})})),A=i.pipe(I(x),B(z=>{const Z=new Set;return z.forEach(Y=>{Y.forEach(q=>{Z.add(q.groupLabel)})}),Array.from(Z)}),St(1)),L=f.pipe(I(x),B(z=>z.transitionDuration),tt()),M=new dt(z=>{U({groupLabels:A,transitionDuration:L}).pipe(W(async Z=>Z)).subscribe(Z=>{const Y=LE(Z.groupLabels.length,Z.transitionDuration);z.next(Y)})}).pipe(I(x),tt()),G=new dt(z=>{U({groupLabels:A,transitionDuration:L}).pipe(W(async Z=>Z)).subscribe(Z=>{const Y=kE(Z.groupLabels.length,Z.transitionDuration);z.next(Y)})}).pipe(I(x),tt()),O=U({computedData:n,dataFormatter:c}).pipe(I(x),W(async z=>z),B(z=>{const Z=z.computedData[0]?z.computedData[0].length-1:0,Y=z.dataFormatter.grid.groupAxis.scaleDomain[0],q=z.dataFormatter.grid.groupAxis.scaleDomain[1]==="max"?Z:z.dataFormatter.grid.groupAxis.scaleDomain[1];return[Y,q]})),E=U({visibleComputedLayoutData:o,groupScaleDomain:O}).pipe(I(x),W(async z=>z),B(z=>{const Z=z.groupScaleDomain[0],Y=z.groupScaleDomain[1],j=z.visibleComputedLayoutData.map(mt=>mt.filter((ht,Ut)=>ht.groupIndex>=Z&&ht.groupIndex<=Y)).flat();if(j.length<=1)return 1;const rt=j.reduce((mt,ht)=>ht.value>mt.value?ht:mt,j[0]),ut=rt.groupIndex,H=j.filter(mt=>mt.groupIndex===ut).reduce((mt,ht)=>mt+ht.value,0);return rt.value/H})),k=U({computedLayoutData:r,yRatio:E,zeroY:_}).pipe(I(x),B(z=>{let Z=z.computedLayoutData[0]?z.computedLayoutData[0].map(()=>z.zeroY):[];return z.computedLayoutData.map((Y,q)=>Y.map((j,rt)=>{const ut=Z[rt];let H=0;return j.visible&&(H=j.axisYFromZero*z.yRatio,Z[rt]=Z[rt]+H),{...j,_barStartY:ut,_barHeight:H}}))})),C=U({computedLayoutData:r,zeroY:_}).pipe(I(x),B(z=>z.computedLayoutData.map((Z,Y)=>Z.map((q,j)=>({...q,_barStartY:z.zeroY,_barHeight:q.axisYFromZero}))))),F=b.pipe(W(z=>Xp(()=>z,C,k)));U({defsSelection:w,gridAxesSize:g}).pipe(I(x),W(async z=>z)).subscribe(z=>{const Z=[{id:S,width:z.gridAxesSize.width,height:z.gridAxesSize.height}];EE({defsSelection:z.defsSelection,clipPathData:Z})});const X=f.pipe(I(x),B(z=>z.highlightTarget),tt()),Q=U({graphicGSelection:P,graphicData:F,zeroY:_,groupLabels:A,params:l,chartParams:f,highlightTarget:X,barWidth:N,transformedBarRadius:D,delayGroup:M,transitionItem:G,isSeriesSeprate:b}).pipe(I(x),W(async z=>z),B(z=>RE({graphicGSelection:z.graphicGSelection,rectClassName:$,barData:z.graphicData,zeroY:z.zeroY,groupLabels:z.groupLabels,params:z.params,chartParams:z.chartParams,barWidth:z.barWidth,transformedBarRadius:z.transformedBarRadius,delayGroup:z.delayGroup,transitionItem:z.transitionItem,isSeriesSeprate:z.isSeriesSeprate})));return U({barSelection:Q,computedData:n,highlightTarget:X,SeriesDataMap:s,GroupDataMap:u}).subscribe(z=>{z.barSelection.on("mouseover",(Z,Y)=>{Z.stopPropagation(),v.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:z.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:z.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:z.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:Z,data:z.computedData})}).on("mousemove",(Z,Y)=>{Z.stopPropagation(),v.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:z.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:z.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:z.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:Z,data:z.computedData})}).on("mouseout",(Z,Y)=>{Z.stopPropagation(),v.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:z.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:z.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:z.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:Z,data:z.computedData})}).on("click",(Z,Y)=>{Z.stopPropagation(),v.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:z.highlightTarget,datum:Y,gridIndex:Y.gridIndex,series:z.SeriesDataMap.get(Y.seriesLabel),seriesIndex:Y.seriesIndex,seriesLabel:Y.seriesLabel,groups:z.GroupDataMap.get(Y.groupLabel),groupIndex:Y.groupIndex,groupLabel:Y.groupLabel,event:Z,data:z.computedData})})}),U({barSelection:Q,highlight:m.pipe(B(z=>z.map(Z=>Z.id))),fullChartParams:f}).pipe(I(x),W(async z=>z)).subscribe(z=>{IE({selection:z.barSelection,ids:z.highlight,fullChartParams:z.fullChartParams})}),()=>{x.next(void 0)}},Uv="BarStack",NE=ue({name:Uv,defaultParams:dp,layerIndex:5,validator:(t,{validateColumns:e})=>e(t,{barWidth:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=Yv(Uv,{selection:t,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullDataFormatter$:r.fullDataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:r.isSeriesSeprate$,event$:n.event$});return()=>{i.next(void 0),o()}}),Wv=.3;function Hv({axisWidth:t,groupAmount:e,barAmountOfGroup:n,barPadding:r=0,barGroupPadding:i=0}){const a=(t/(e-1)-i)/n-r;return a>1?a:1}function BE(t,e,n){const r=t/2,i=t*e.length+n.barPadding*e.length;return ih().domain(e).range([-i/2+r,i/2-r])}function FE(t,e){return t<=1?0:e/(t-1)*Wv}function OE(t,e){return t<=1?e:e*(1-Wv)}function GE({graphicGSelection:t,pathGClassName:e,pathClassName:n,visibleComputedLayoutData:r,linearGradientIds:i,zeroYArr:o,groupLabels:a,barScale:s,params:u,chartParams:l,barWidth:c,delayGroup:f,transitionItem:h,isSeriesSeprate:p}){const d=c/2;return t.each((m,y,b)=>{V(b[y]).selectAll(`g.${e}`).data(r[y]??[]).join(x=>{const S=x.append("g").classed(e,!0).attr("cursor","pointer");return S.append("path").classed(n,!0).style("vector-effect","non-scaling-stroke").attr("d",$=>{const R=-d,T=o[y],w=o[y];return`M${R},${T} L${R+c/2},${w} ${R+c},${T}`}),S},x=>x,x=>x.remove()).attr("transform",x=>`translate(${p?0:s(x.seriesLabel)}, 0)`).select(`path.${n}`).attr("height",x=>Math.abs(x.axisYFromZero)).attr("y",x=>x.axisY<o[y]?x.axisY:o[y]).attr("x",x=>p?0:s(x.seriesLabel)).style("fill",x=>`url(#${i[x.seriesIndex]})`).attr("stroke",x=>x.color).attr("transform",x=>`translate(${x?x.axisX:0}, 0)`).transition().duration(h).ease(Wo(l.transitionEase)).delay((x,S)=>x.groupIndex*f).attr("d",x=>{const S=-d,$=o[y],R=x.axisY;return`M${S},${$} L${S+c/2},${R} ${S+c},${$}`})}),t.selectAll(`path.${n}`)}function zE({defsSelection:t,computedData:e,linearGradientIds:n,params:r}){t.selectAll("linearGradient").data(e??[]).join(i=>i.append("linearGradient").attr("x1","0%").attr("x2","0%").attr("y1","100%").attr("y2","0%").attr("spreadMethod","pad"),i=>i,i=>i.remove()).attr("id",(i,o)=>i[0]?n[i[0].seriesIndex]:"").html((i,o)=>{const a=i[0]?i[0].color:"";return`
|
49
|
+
`})}function AI({defsSelection:e,clipPathData:t,transitionDuration:n,transitionEase:r}){e.selectAll("clipPath").data(t).join(i=>i.append("clipPath"),i=>i,i=>i.remove()).attr("id",i=>i.id).each((i,o,a)=>{V(a[o]).selectAll("rect").data([i]).join(s=>{const l=s.append("rect");return l.transition().duration(n).ease(ca(r)).tween("tween",(u,c,f)=>h=>{const p=u.width*h;l.attr("x",0).attr("y",0).attr("width",d=>p).attr("height",d=>d.height)}),l},s=>s.attr("x",0).attr("y",0).attr("width",l=>l.width).attr("height",l=>l.height),s=>s.remove())})}const h$=(e,{selection:t,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:l,fullParams$:u,fullDataFormatter$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridAxesSize$:d,gridHighlight$:m,gridContainerPosition$:g,layout$:y,event$:b})=>{const v=new J,x=Pt(e,"clipPath-box"),_=Z(e,"path"),{seriesSelection$:A,axesSelection$:S,defsSelection$:P,graphicGSelection$:M}=Tr({selection:t,pluginName:e,clipPathID:x,seriesLabels$:a,gridContainerPosition$:g,gridAxesTransform$:h,gridGraphicTransform$:p}),B=p.pipe(L(v),R(I=>-I.translate[1]/I.scale[1])),$=new de(I=>{const N=Y({fullParams:u,valueAxisStart:B}).pipe(L(v)).subscribe(E=>{const O=$I(E.fullParams.lineCurve,E.valueAxisStart);I.next(O)});return()=>{N.unsubscribe()}}),k=f.pipe(R(I=>I.transitionDuration),ee()),C=f.pipe(R(I=>I.transitionEase),ee());Y({defsSelection:P,seriesLabels:a,axisSize:d,transitionDuration:k,transitionEase:C}).pipe(L(v),G(async I=>I)).subscribe(I=>{const E=[{id:x,width:I.axisSize.width,height:I.axisSize.height}].concat(I.seriesLabels.map(O=>({id:`orbcharts__clipPath_${O}`,width:I.axisSize.width,height:I.axisSize.height})));AI({defsSelection:I.defsSelection,clipPathData:E,transitionDuration:I.transitionDuration,transitionEase:I.transitionEase})});const T=n.pipe(R(I=>{const N=new Map;return I.flat().forEach(E=>N.set(E.id,E)),N})),w=a$({fullDataFormatter$:c,gridAxesSize$:d,computedData$:n,fullChartParams$:f,gridContainerPosition$:g,layout$:y}),D=f.pipe(L(v),R(I=>I.highlightTarget),ee()),F=a.pipe(L(v),R(I=>I.map((N,E)=>Pt(e,`lineargradient-${N}`)))),z=Y({graphicGSelection:M,defsSelection:P,visibleComputedLayoutData:o,linearGradientIds:F,areaPath:$,params:u}).pipe(L(v),G(async I=>I),R(I=>{let N=[];return I.graphicGSelection.each((E,O,j)=>{const ie=_I(I.visibleComputedLayoutData[O]??[]);N[O]=SI({selection:V(j[O]),pathClassName:_,areaPath:I.areaPath,segmentData:ie,linearGradientIds:I.linearGradientIds,params:I.params}),TI({defsSelection:I.defsSelection,computedData:I.visibleComputedLayoutData,linearGradientIds:I.linearGradientIds,params:I.params})}),N}));return Y({pathSelectionArr:z,computedData:n,SeriesDataMap:s,GroupDataMap:l,highlightTarget:D,gridGroupPositionFn:w}).pipe(L(v),G(async I=>I)).subscribe(I=>{I.pathSelectionArr.forEach(N=>{N.on("mouseover",(E,O)=>{const j=O[0]?O[0].seriesLabel:"",{groupIndex:ie,groupLabel:W}=I.gridGroupPositionFn(E),K=I.GroupDataMap.get(W).find(q=>q.seriesLabel===j)??O[0];b.next({type:"grid",eventName:"mouseover",pluginName:e,highlightTarget:I.highlightTarget,datum:K,gridIndex:K.gridIndex,series:I.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:I.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:E,data:I.computedData})}).on("mousemove",(E,O)=>{const j=O[0]?O[0].seriesLabel:"",{groupIndex:ie,groupLabel:W}=I.gridGroupPositionFn(E),K=I.GroupDataMap.get(W).find(q=>q.seriesLabel===j)??O[0];b.next({type:"grid",eventName:"mousemove",pluginName:e,highlightTarget:I.highlightTarget,datum:K,gridIndex:K.gridIndex,series:I.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:I.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:E,data:I.computedData})}).on("mouseout",(E,O)=>{const j=O[0]?O[0].seriesLabel:"",{groupIndex:ie,groupLabel:W}=I.gridGroupPositionFn(E),K=I.GroupDataMap.get(W).find(q=>q.seriesLabel===j)??O[0];b.next({type:"grid",eventName:"mouseout",pluginName:e,highlightTarget:I.highlightTarget,datum:K,gridIndex:K.gridIndex,series:I.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:I.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:E,data:I.computedData})}).on("click",(E,O)=>{const j=O[0]?O[0].seriesLabel:"",{groupIndex:ie,groupLabel:W}=I.gridGroupPositionFn(E),K=I.GroupDataMap.get(W).find(q=>q.seriesLabel===j)??O[0];b.next({type:"grid",eventName:"click",pluginName:e,highlightTarget:I.highlightTarget,datum:K,gridIndex:K.gridIndex,series:I.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:I.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:E,data:I.computedData})})})}),f.pipe(L(v),Rr(I=>I.highlightTarget==="series"),G(I=>Y({graphicGSelection:M,gridHighlight:m,DataMap:T,fullChartParams:f}).pipe(L(v),G(async N=>N)))).subscribe(I=>{const N=I.gridHighlight[0]?I.gridHighlight[0].seriesLabel:null;wI({selection:I.graphicGSelection,seriesLabel:N,fullChartParams:I.fullChartParams})}),()=>{v.next(void 0)}},p$="LineAreas",PI=st({name:p$,defaultParams:ed,layerIndex:c$,validator:(e,{validateColumns:t})=>t(e,{lineCurve:{toBeTypes:["string"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:e,name:t,observer:n,subject:r})=>{const i=new J,o=h$(p$,{selection:e,computedData$:n.computedData$,visibleComputedData$:n.visibleComputedData$,computedLayoutData$:n.computedLayoutData$,visibleComputedLayoutData$:n.visibleComputedLayoutData$,seriesLabels$:n.seriesLabels$,SeriesDataMap$:n.SeriesDataMap$,GroupDataMap$:n.GroupDataMap$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridGraphicTransform$:n.gridGraphicTransform$,gridAxesSize$:n.gridAxesSize$,gridHighlight$:n.gridHighlight$,gridContainerPosition$:n.gridContainerPosition$,allContainerPosition$:n.gridContainerPosition$,layout$:n.layout$,event$:r.event$});return()=>{i.next(void 0),o()}}),d$=.3;function g$({axisWidth:e,groupAmount:t,barAmountOfGroup:n,barPadding:r=0,barGroupPadding:i=0}){const a=((t>1?e/(t-1):e)-i)/n-r;return a>1?a:1}function DI(e,t,n){const r=e/2,i=e*t.length+n.barPadding*t.length;return Wh().domain(t).range([-i/2+r,i/2-r])}function MI(e,t){return e<=1?0:t/(e-1)*d$}function CI(e,t){return e<=1?t:t*(1-d$)}function LI({graphicGSelection:e,rectClassName:t,visibleComputedLayoutData:n,zeroYArr:r,groupLabels:i,barScale:o,params:a,chartParams:s,barWidth:l,transformedBarRadius:u,delayGroup:c,transitionItem:f,isSeriesSeprate:h}){const p=l/2;return e.each((m,g,y)=>{V(y[g]).selectAll(`rect.${t}`).data(n[g]??[],b=>b.id).join(b=>b.append("rect").classed(t,!0).attr("cursor","pointer").attr("height",v=>1),b=>b,b=>b.remove()).attr("transform",(b,v)=>`translate(${(b?b.axisX:0)-p}, 0)`).attr("fill",b=>b.color).attr("y",b=>b.axisY<r[g]?b.axisY:r[g]).attr("x",b=>h?0:o(b.seriesLabel)).attr("width",l).attr("rx",u[g][0]??1).attr("ry",u[g][1]??1).transition().duration(f).ease(ca(s.transitionEase)).delay((b,v)=>b.groupIndex*c).attr("height",b=>Math.abs(b.axisYFromZero)||1)}),e.selectAll(`rect.${t}`)}function kI({defsSelection:e,clipPathData:t}){e.selectAll("clipPath").data(t).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join(o=>o.append("rect"),o=>o,o=>o.remove()).attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}function RI({selection:e,ids:t,fullChartParams:n}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").duration(200).style("opacity",1);return}e.each((r,i,o)=>{t.includes(r.id)?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const _p=(e,{selection:t,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:l,fullParams$:u,fullChartParams$:c,gridAxesTransform$:f,gridGraphicTransform$:h,gridGraphicReverseScale$:p,gridAxesSize$:d,gridHighlight$:m,gridContainerPosition$:g,isSeriesSeprate$:y,event$:b})=>{const v=new J,x=Pt(e,"clipPath-box"),_=Z(e,"rect"),{seriesSelection$:A,axesSelection$:S,defsSelection$:P,graphicGSelection$:M}=Tr({selection:t,pluginName:e,clipPathID:x,seriesLabels$:a,gridContainerPosition$:g,gridAxesTransform$:f,gridGraphicTransform$:h}),B=o.pipe(L(v),R(N=>N.map(E=>E[0]?E[0].axisY-E[0].axisYFromZero:0)),ee()),$=Y({computedData:n,visibleComputedData:i,params:u,gridAxesSize:d,isSeriesSeprate:y}).pipe(L(v),G(async N=>N),R(N=>N.params.barWidth?N.params.barWidth:N.isSeriesSeprate?g$({axisWidth:N.gridAxesSize.width,groupAmount:N.computedData[0]?N.computedData[0].length:0,barAmountOfGroup:1,barPadding:N.params.barPadding,barGroupPadding:N.params.barGroupPadding}):g$({axisWidth:N.gridAxesSize.width,groupAmount:N.computedData[0]?N.computedData[0].length:0,barAmountOfGroup:N.visibleComputedData.length,barPadding:N.params.barPadding,barGroupPadding:N.params.barGroupPadding})),ee()),k=Y({computedData:n,barWidth:$,params:u,gridGraphicReverseScale:p}).pipe(L(v),G(async N=>N),R(N=>{const E=N.barWidth/2,O=N.params.barRadius===!0?E:N.params.barRadius===!1?0:typeof N.params.barRadius=="number"?N.params.barRadius:0;return N.computedData.map((j,ie)=>{const W=N.gridGraphicReverseScale[ie]??N.gridGraphicReverseScale[0];let Q=O*W[0],X=O*W[1];if(Q>E){const K=E/Q;Q=Q*K,X=X*K}return[Q,X]})})),C=i.pipe(L(v),R(N=>{const E=new Set;return N.forEach(O=>{O.forEach(j=>{E.add(j.groupLabel)})}),Array.from(E)})),T=Y({seriesLabels:a,barWidth:$,params:u}).pipe(L(v),G(async N=>N),R(N=>DI(N.barWidth,N.seriesLabels,N.params))),w=c.pipe(L(v),R(N=>N.transitionDuration),ee()),D=new de(N=>{Y({groupLabels:C,transitionDuration:w}).pipe(G(async E=>E)).subscribe(E=>{const O=MI(E.groupLabels.length,E.transitionDuration);N.next(O)})}).pipe(L(v),ee()),F=new de(N=>{Y({groupLabels:C,transitionDuration:w}).pipe(G(async E=>E)).subscribe(E=>{const O=CI(E.groupLabels.length,E.transitionDuration);N.next(O)})}).pipe(L(v),ee());Y({defsSelection:P,gridAxesSize:d}).pipe(L(v),G(async N=>N)).subscribe(N=>{const E=[{id:x,width:N.gridAxesSize.width,height:N.gridAxesSize.height}];kI({defsSelection:N.defsSelection,clipPathData:E})});const z=c.pipe(L(v),R(N=>N.highlightTarget),ee()),I=Y({graphicGSelection:M,visibleComputedLayoutData:o,zeroYArr:B,groupLabels:C,barScale:T,params:u,chartParams:c,highlightTarget:z,barWidth:$,transformedBarRadius:k,delayGroup:D,transitionItem:F,isSeriesSeprate:y}).pipe(L(v),G(async N=>N),R(N=>LI({graphicGSelection:N.graphicGSelection,rectClassName:_,visibleComputedLayoutData:N.visibleComputedLayoutData,zeroYArr:N.zeroYArr,groupLabels:N.groupLabels,barScale:N.barScale,params:N.params,chartParams:N.chartParams,barWidth:N.barWidth,transformedBarRadius:N.transformedBarRadius,delayGroup:N.delayGroup,transitionItem:N.transitionItem,isSeriesSeprate:N.isSeriesSeprate})));return Y({barSelection:I,computedData:n,highlightTarget:z,SeriesDataMap:s,GroupDataMap:l}).pipe(L(v),G(async N=>N)).subscribe(N=>{N.barSelection.on("mouseover",(E,O)=>{E.stopPropagation(),b.next({type:"grid",eventName:"mouseover",pluginName:e,highlightTarget:N.highlightTarget,datum:O,gridIndex:O.gridIndex,series:N.SeriesDataMap.get(O.seriesLabel),seriesIndex:O.seriesIndex,seriesLabel:O.seriesLabel,groups:N.GroupDataMap.get(O.groupLabel),groupIndex:O.groupIndex,groupLabel:O.groupLabel,event:E,data:N.computedData})}).on("mousemove",(E,O)=>{E.stopPropagation(),b.next({type:"grid",eventName:"mousemove",pluginName:e,highlightTarget:N.highlightTarget,datum:O,gridIndex:O.gridIndex,series:N.SeriesDataMap.get(O.seriesLabel),seriesIndex:O.seriesIndex,seriesLabel:O.seriesLabel,groups:N.GroupDataMap.get(O.groupLabel),groupIndex:O.groupIndex,groupLabel:O.groupLabel,event:E,data:N.computedData})}).on("mouseout",(E,O)=>{E.stopPropagation(),b.next({type:"grid",eventName:"mouseout",pluginName:e,highlightTarget:N.highlightTarget,datum:O,gridIndex:O.gridIndex,series:N.SeriesDataMap.get(O.seriesLabel),seriesIndex:O.seriesIndex,seriesLabel:O.seriesLabel,groups:N.GroupDataMap.get(O.groupLabel),groupIndex:O.groupIndex,groupLabel:O.groupLabel,event:E,data:N.computedData})}).on("click",(E,O)=>{E.stopPropagation(),b.next({type:"grid",eventName:"click",pluginName:e,highlightTarget:N.highlightTarget,datum:O,gridIndex:O.gridIndex,series:N.SeriesDataMap.get(O.seriesLabel),seriesIndex:O.seriesIndex,seriesLabel:O.seriesLabel,groups:N.GroupDataMap.get(O.groupLabel),groupIndex:O.groupIndex,groupLabel:O.groupLabel,event:E,data:N.computedData})})}),Y({barSelection:I,highlight:m.pipe(R(N=>N.map(E=>E.id))),fullChartParams:c}).pipe(L(v),G(async N=>N)).subscribe(N=>{RI({selection:N.barSelection,ids:N.highlight,fullChartParams:N.fullChartParams})}),()=>{v.next(void 0)}},m$="Bars",EI=st({name:m$,defaultParams:ga,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=_p(m$,{selection:e,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:r.isSeriesSeprate$,event$:n.event$});return()=>{i.next(void 0),o()}}),y$="BarsPN",II=st({name:y$,defaultParams:ga,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=_p(y$,{selection:e,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:_a(!0),event$:n.event$});return()=>{i.next(void 0),o()}}),b$=.3;function BI({axisWidth:e,groupAmount:t,barGroupPadding:n=0}){const i=(t>1?e/(t-1):e)-n;return i>1?i:1}function NI(e,t){return e<=1?0:t/(e-1)*b$}function FI(e,t){return e<=1?t:t*(1-b$)}function zI({graphicGSelection:e,rectClassName:t,barData:n,zeroY:r,groupLabels:i,params:o,chartParams:a,barWidth:s,transformedBarRadius:l,delayGroup:u,transitionItem:c,isSeriesSeprate:f}){const h=s/2;return e.each((d,m,g)=>{V(g[m]).selectAll(`rect.${t}`).data(n[m]??[],y=>y.id).join(y=>y.append("rect").classed(t,!0).attr("cursor","pointer").attr("height",b=>1),y=>y,y=>y.remove()).attr("transform",(y,b)=>`translate(${(y?y.axisX:0)-h}, 0)`).attr("fill",y=>y.color).attr("y",y=>r).attr("x",y=>0).attr("width",s).attr("rx",l[m][0]??1).attr("ry",l[m][1]??1).transition().duration(c).ease(ca(a.transitionEase)).delay((y,b)=>y.groupIndex*u).attr("y",y=>y._barStartY).attr("height",y=>Math.abs(y._barHeight)||1)}),e.selectAll(`rect.${t}`)}function OI({defsSelection:e,clipPathData:t}){e.selectAll("clipPath").data(t).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join(o=>o.append("rect"),o=>o,o=>o.remove()).attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}function GI({selection:e,ids:t,fullChartParams:n}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").duration(200).style("opacity",1);return}e.each((r,i,o)=>{t.includes(r.id)?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const x$=(e,{selection:t,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:l,fullParams$:u,fullDataFormatter$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridGraphicReverseScale$:d,gridAxesSize$:m,gridHighlight$:g,gridContainerPosition$:y,isSeriesSeprate$:b,event$:v})=>{const x=new J,_=Pt(e,"clipPath-box"),A=Z(e,"rect"),{seriesSelection$:S,axesSelection$:P,defsSelection$:M,graphicGSelection$:B}=Tr({selection:t,pluginName:e,clipPathID:_,seriesLabels$:a,gridContainerPosition$:y,gridAxesTransform$:h,gridGraphicTransform$:p}),$=o.pipe(L(x),R(W=>W[0]&&W[0][0]?W[0][0].axisY-W[0][0].axisYFromZero:0),ee()),k=Y({computedData:n,params:u,axisSize:m,isSeriesSeprate:b}).pipe(L(x),G(async W=>W),R(W=>W.params.barWidth?W.params.barWidth:BI({axisWidth:W.axisSize.width,groupAmount:W.computedData[0]?W.computedData[0].length:0,barGroupPadding:W.params.barGroupPadding})),ee()),C=Y({computedData:n,barWidth:k,params:u,gridGraphicReverseScale:d}).pipe(L(x),G(async W=>W),R(W=>{const Q=W.barWidth/2,X=W.params.barRadius===!0?Q:W.params.barRadius===!1?0:typeof W.params.barRadius=="number"?W.params.barRadius:0;return W.computedData.map((K,q)=>{const ne=W.gridGraphicReverseScale[q]??W.gridGraphicReverseScale[0],se=X*ne[0],U=X*ne[1];return[se,U]})})),T=i.pipe(L(x),R(W=>{const Q=new Set;return W.forEach(X=>{X.forEach(K=>{Q.add(K.groupLabel)})}),Array.from(Q)}),pe(1)),w=f.pipe(L(x),R(W=>W.transitionDuration),ee()),D=new de(W=>{Y({groupLabels:T,transitionDuration:w}).pipe(G(async Q=>Q)).subscribe(Q=>{const X=NI(Q.groupLabels.length,Q.transitionDuration);W.next(X)})}).pipe(L(x),ee()),F=new de(W=>{Y({groupLabels:T,transitionDuration:w}).pipe(G(async Q=>Q)).subscribe(Q=>{const X=FI(Q.groupLabels.length,Q.transitionDuration);W.next(X)})}).pipe(L(x),ee()),z=Y({computedData:n,dataFormatter:c}).pipe(L(x),G(async W=>W),R(W=>{const Q=W.computedData[0]?W.computedData[0].length-1:0,X=W.dataFormatter.groupAxis.scaleDomain[0],K=W.dataFormatter.groupAxis.scaleDomain[1]==="max"?Q:W.dataFormatter.groupAxis.scaleDomain[1];return[X,K]})),I=Y({visibleComputedLayoutData:o,groupScaleDomain:z}).pipe(L(x),G(async W=>W),R(W=>{const Q=W.groupScaleDomain[0],X=W.groupScaleDomain[1],q=W.visibleComputedLayoutData.map(me=>me.filter((fe,Ee)=>fe.groupIndex>=Q&&fe.groupIndex<=X)).flat();if(q.length<=1)return 1;const ne=q.reduce((me,fe)=>fe.value>me.value?fe:me,q[0]),se=ne.groupIndex,U=q.filter(me=>me.groupIndex===se).reduce((me,fe)=>me+fe.value,0);return ne.value/U})),N=Y({computedLayoutData:r,yRatio:I,zeroY:$}).pipe(L(x),R(W=>{let Q=W.computedLayoutData[0]?W.computedLayoutData[0].map(()=>W.zeroY):[];return W.computedLayoutData.map((X,K)=>X.map((q,ne)=>{const se=Q[ne];let U=0;return q.visible&&(U=q.axisYFromZero*W.yRatio,Q[ne]=Q[ne]+U),{...q,_barStartY:se,_barHeight:U}}))})),E=Y({computedLayoutData:r,zeroY:$}).pipe(L(x),R(W=>W.computedLayoutData.map((Q,X)=>Q.map((K,q)=>({...K,_barStartY:W.zeroY,_barHeight:K.axisYFromZero}))))),O=b.pipe(G(W=>Wi(()=>W,E,N)));Y({defsSelection:M,gridAxesSize:m}).pipe(L(x),G(async W=>W)).subscribe(W=>{const Q=[{id:_,width:W.gridAxesSize.width,height:W.gridAxesSize.height}];OI({defsSelection:W.defsSelection,clipPathData:Q})});const j=f.pipe(L(x),R(W=>W.highlightTarget),ee()),ie=Y({graphicGSelection:B,graphicData:O,zeroY:$,groupLabels:T,params:u,chartParams:f,highlightTarget:j,barWidth:k,transformedBarRadius:C,delayGroup:D,transitionItem:F,isSeriesSeprate:b}).pipe(L(x),G(async W=>W),R(W=>zI({graphicGSelection:W.graphicGSelection,rectClassName:A,barData:W.graphicData,zeroY:W.zeroY,groupLabels:W.groupLabels,params:W.params,chartParams:W.chartParams,barWidth:W.barWidth,transformedBarRadius:W.transformedBarRadius,delayGroup:W.delayGroup,transitionItem:W.transitionItem,isSeriesSeprate:W.isSeriesSeprate})));return Y({barSelection:ie,computedData:n,highlightTarget:j,SeriesDataMap:s,GroupDataMap:l}).subscribe(W=>{W.barSelection.on("mouseover",(Q,X)=>{Q.stopPropagation(),v.next({type:"grid",eventName:"mouseover",pluginName:e,highlightTarget:W.highlightTarget,datum:X,gridIndex:X.gridIndex,series:W.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:W.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:Q,data:W.computedData})}).on("mousemove",(Q,X)=>{Q.stopPropagation(),v.next({type:"grid",eventName:"mousemove",pluginName:e,highlightTarget:W.highlightTarget,datum:X,gridIndex:X.gridIndex,series:W.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:W.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:Q,data:W.computedData})}).on("mouseout",(Q,X)=>{Q.stopPropagation(),v.next({type:"grid",eventName:"mouseout",pluginName:e,highlightTarget:W.highlightTarget,datum:X,gridIndex:X.gridIndex,series:W.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:W.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:Q,data:W.computedData})}).on("click",(Q,X)=>{Q.stopPropagation(),v.next({type:"grid",eventName:"click",pluginName:e,highlightTarget:W.highlightTarget,datum:X,gridIndex:X.gridIndex,series:W.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:W.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:Q,data:W.computedData})})}),Y({barSelection:ie,highlight:g.pipe(R(W=>W.map(Q=>Q.id))),fullChartParams:f}).pipe(L(x),G(async W=>W)).subscribe(W=>{GI({selection:W.barSelection,ids:W.highlight,fullChartParams:W.fullChartParams})}),()=>{x.next(void 0)}},v$="StackedBar",YI=st({name:v$,defaultParams:nd,layerIndex:5,validator:(e,{validateColumns:t})=>t(e,{barWidth:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=x$(v$,{selection:e,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullDataFormatter$:r.fullDataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:r.isSeriesSeprate$,event$:n.event$});return()=>{i.next(void 0),o()}}),$$=.3;function _$({axisWidth:e,groupAmount:t,barAmountOfGroup:n,barPadding:r=0,barGroupPadding:i=0}){const a=((t>1?e/(t-1):e)-i)/n-r;return a>1?a:1}function WI(e,t,n){const r=e/2,i=e*t.length+n.barPadding*t.length;return Wh().domain(t).range([-i/2+r,i/2-r])}function XI(e,t){return e<=1?0:t/(e-1)*$$}function VI(e,t){return e<=1?t:t*(1-$$)}function UI({graphicGSelection:e,pathGClassName:t,pathClassName:n,visibleComputedLayoutData:r,linearGradientIds:i,zeroYArr:o,groupLabels:a,barScale:s,params:l,chartParams:u,barWidth:c,delayGroup:f,transitionItem:h,isSeriesSeprate:p}){const d=c/2;return e.each((g,y,b)=>{V(b[y]).selectAll(`g.${t}`).data(r[y]??[]).join(x=>{const _=x.append("g").classed(t,!0).attr("cursor","pointer");return _.append("path").classed(n,!0).style("vector-effect","non-scaling-stroke").attr("d",A=>{const S=-d,P=o[y],M=o[y];return`M${S},${P} L${S+c/2},${M} ${S+c},${P}`}),_},x=>x,x=>x.remove()).attr("transform",x=>`translate(${p?0:s(x.seriesLabel)}, 0)`).select(`path.${n}`).attr("height",x=>Math.abs(x.axisYFromZero)||1).attr("y",x=>x.axisY<o[y]?x.axisY:o[y]).attr("x",x=>p?0:s(x.seriesLabel)).style("fill",x=>`url(#${i[x.seriesIndex]})`).attr("stroke",x=>x.color).attr("transform",x=>`translate(${x?x.axisX:0}, 0)`).transition().duration(h).ease(ca(u.transitionEase)).delay((x,_)=>x.groupIndex*f).attr("d",x=>{const _=-d,A=o[y],S=x.axisY;return`M${_},${A} L${_+c/2},${S} ${_+c},${A}`})}),e.selectAll(`path.${n}`)}function HI({defsSelection:e,computedData:t,linearGradientIds:n,params:r}){e.selectAll("linearGradient").data(t??[]).join(i=>i.append("linearGradient").attr("x1","0%").attr("x2","0%").attr("y1","100%").attr("y2","0%").attr("spreadMethod","pad"),i=>i,i=>i.remove()).attr("id",(i,o)=>i[0]?n[i[0].seriesIndex]:"").html((i,o)=>{const a=i[0]?i[0].color:"";return`
|
17
50
|
<stop offset="0%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[0]}"/>
|
18
51
|
<stop offset="100%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[1]}"/>
|
19
|
-
`})}function YE({defsSelection:t,clipPathData:e}){t.selectAll("clipPath").data(e).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join(o=>o.append("rect"),o=>o,o=>o.remove()).attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}function UE({selection:t,ids:e,fullChartParams:n}){t.interrupt("highlight");const r=()=>{t.transition("highlight").duration(200).style("opacity",1)};if(!e.length){r();return}t.each((i,o,a)=>{e.includes(i.id)?V(a[o]).style("opacity",1):V(a[o]).style("opacity",n.styles.unhighlightedOpacity)})}const Xv=(t,{selection:e,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,fullDataFormatter$:a,seriesLabels$:s,SeriesDataMap$:u,GroupDataMap$:l,fullParams$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridAxesSize$:d,gridHighlight$:g,gridContainerPosition$:m,isSeriesSeprate$:y,event$:b})=>{const v=new nt,x=Tn(t,"clipPath-box"),S=ot(t,"pathG"),$=ot(t,"path"),{seriesSelection$:R,axesSelection$:T,defsSelection$:w,graphicGSelection$:P}=pr({selection:e,pluginName:t,clipPathID:x,seriesLabels$:s,gridContainerPosition$:m,gridAxesTransform$:h,gridGraphicTransform$:p});p.pipe(I(v),B(C=>-C.translate[1]/C.scale[1]));const _=o.pipe(B(C=>C.map(F=>F[0]?F[0].axisY-F[0].axisYFromZero:0)),tt()),N=U({computedData:n,visibleComputedData:i,params:c,gridAxesSize:d,isSeriesSeprate:y}).pipe(I(v),W(async C=>C),B(C=>C.params.barWidth?C.params.barWidth:C.isSeriesSeprate?Hv({axisWidth:C.gridAxesSize.width,groupAmount:C.computedData[0]?C.computedData[0].length:0,barAmountOfGroup:1,barPadding:C.params.barPadding,barGroupPadding:C.params.barGroupPadding}):Hv({axisWidth:C.gridAxesSize.width,groupAmount:C.computedData[0]?C.computedData[0].length:0,barAmountOfGroup:C.visibleComputedData.length,barPadding:C.params.barPadding,barGroupPadding:C.params.barGroupPadding}))),D=i.pipe(I(v),B(C=>{const F=new Set;return C.forEach(X=>{X.forEach(Q=>{F.add(Q.groupLabel)})}),Array.from(F)})),A=new dt(C=>{U({seriesLabels:s,barWidth:N,params:c}).pipe(I(v),W(async F=>F)).subscribe(F=>{const X=BE(F.barWidth,F.seriesLabels,F.params);C.next(X)})}),L=f.pipe(I(v),B(C=>C.transitionDuration),tt()),M=new dt(C=>{U({groupLabels:D,transitionDuration:L}).pipe(W(async F=>F)).subscribe(F=>{const X=FE(F.groupLabels.length,F.transitionDuration);C.next(X)})}).pipe(I(v),tt()),G=new dt(C=>{U({groupLabels:D,transitionDuration:L}).pipe(W(async F=>F)).subscribe(F=>{const X=OE(F.groupLabels.length,F.transitionDuration);C.next(X)})}).pipe(I(v),tt());U({defsSelection:w,gridAxesSize:d}).pipe(I(v),W(async C=>C)).subscribe(C=>{const F=[{id:x,width:C.gridAxesSize.width,height:C.gridAxesSize.height}];YE({defsSelection:C.defsSelection,clipPathData:F})});const O=f.pipe(I(v),B(C=>C.highlightTarget),tt()),E=s.pipe(I(v),B(C=>C.map((F,X)=>Tn(t,`lineargradient-${F}`)))),k=U({graphicGSelection:P,defsSelection:w,computedData:n,visibleComputedLayoutData:o,linearGradientIds:E,zeroYArr:_,groupLabels:D,barScale:A,params:c,chartParams:f,barWidth:N,delayGroup:M,transitionItem:G,isSeriesSeprate:y}).pipe(I(v),W(async C=>C),B(C=>(zE({defsSelection:C.defsSelection,computedData:C.computedData,linearGradientIds:C.linearGradientIds,params:C.params}),GE({graphicGSelection:C.graphicGSelection,pathGClassName:S,pathClassName:$,visibleComputedLayoutData:C.visibleComputedLayoutData,linearGradientIds:C.linearGradientIds,zeroYArr:C.zeroYArr,groupLabels:C.groupLabels,barScale:C.barScale,params:C.params,chartParams:C.chartParams,barWidth:C.barWidth,delayGroup:C.delayGroup,transitionItem:C.transitionItem,isSeriesSeprate:C.isSeriesSeprate}))));return U({barSelection:k,computedData:n,highlightTarget:O,SeriesDataMap:u,GroupDataMap:l}).subscribe(C=>{C.barSelection.on("mouseover",(F,X)=>{F.stopPropagation(),b.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:C.highlightTarget,datum:X,gridIndex:X.gridIndex,series:C.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:C.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:F,data:C.computedData})}).on("mousemove",(F,X)=>{F.stopPropagation(),b.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:C.highlightTarget,datum:X,gridIndex:X.gridIndex,series:C.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:C.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:F,data:C.computedData})}).on("mouseout",(F,X)=>{F.stopPropagation(),b.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:C.highlightTarget,datum:X,gridIndex:X.gridIndex,series:C.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:C.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:F,data:C.computedData})}).on("click",(F,X)=>{F.stopPropagation(),b.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:C.highlightTarget,datum:X,gridIndex:X.gridIndex,series:C.SeriesDataMap.get(X.seriesLabel),seriesIndex:X.seriesIndex,seriesLabel:X.seriesLabel,groups:C.GroupDataMap.get(X.groupLabel),groupIndex:X.groupIndex,groupLabel:X.groupLabel,event:F,data:C.computedData})})}),U({barSelection:k,highlight:g.pipe(B(C=>C.map(F=>F.id))),fullChartParams:f}).pipe(I(v),W(async C=>C)).subscribe(C=>{UE({selection:C.barSelection,ids:C.highlight,fullChartParams:C.fullChartParams})}),()=>{v.next(void 0)}},jv="BarsTriangle",WE=ue({name:jv,defaultParams:gp,layerIndex:5,validator:(t,{validateColumns:e})=>e(t,{barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=Xv(jv,{selection:t,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,fullDataFormatter$:r.fullDataFormatter$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:r.isSeriesSeprate$,event$:n.event$});return()=>{i.next(void 0),o()}});function HE({graphicGSelection:t,circleGClassName:e,circleClassName:n,visibleComputedLayoutData:r,fullParams:i,fullChartParams:o,graphicReverseScale:a}){const s=c=>{const f=c.size();return o.transitionDuration/f};let u=0;return t.each((c,f,h)=>{V(h[f]).selectAll("g").data(r[f],p=>p.id).join(p=>(u=s(p),p.append("g").classed(e,!0)),p=>p,p=>p.remove()).attr("transform",p=>`translate(${p.axisX}, ${p.axisY})`).each((p,d,g)=>{V(g[d]).selectAll("circle").data([p]).join(m=>m.append("circle").style("cursor","pointer").style("vector-effect","non-scaling-stroke").classed(n,!0).attr("opacity",0).transition().delay((y,b)=>d*u).attr("opacity",1),m=>m.transition().duration(50).attr("opacity",1),m=>m.remove()).attr("r",i.radius).attr("fill",(m,y)=>An({datum:m,colorType:i.fillColorType,fullChartParams:o})).attr("stroke",(m,y)=>An({datum:m,colorType:i.strokeColorType,fullChartParams:o})).attr("stroke-width",i.strokeWidth).attr("transform",`scale(${a[f][0]??1}, ${a[f][1]??1})`)})}),t.selectAll(`circle.${n}`)}function XE({selection:t,ids:e,onlyShowHighlighted:n,fullChartParams:r}){if(t.interrupt("highlight"),!e.length){t.transition("highlight").duration(200).style("opacity",n===!0?0:1);return}t.each((i,o,a)=>{e.includes(i.id)?V(a[o]).style("opacity",1).transition("highlight").duration(200):V(a[o]).style("opacity",n===!0?0:r.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function jE({defsSelection:t,clipPathData:e}){t.selectAll("clipPath").data(e).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join("rect").attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}const Vv=(t,{selection:e,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:u,fullParams$:l,fullChartParams$:c,gridAxesTransform$:f,gridGraphicTransform$:h,gridGraphicReverseScale$:p,gridAxesSize$:d,gridHighlight$:g,gridContainerPosition$:m,event$:y})=>{const b=new nt,v=Tn(t,"clipPath-box"),x=ot(t,"circleG"),S=ot(t,"circle"),{seriesSelection$:$,axesSelection$:R,defsSelection$:T,graphicGSelection$:w}=pr({selection:e,pluginName:t,clipPathID:v,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:f,gridGraphicTransform$:h}),P=U({computedData:n,gridGraphicReverseScale:p}).pipe(I(b),W(async A=>A),B(A=>A.computedData.map((L,M)=>A.gridGraphicReverseScale[M])));U({defsSelection:T,gridAxesSize:d}).pipe(I(b),W(async A=>A)).subscribe(A=>{const L=[{id:v,width:A.gridAxesSize.width,height:A.gridAxesSize.height}];jE({defsSelection:A.defsSelection,clipPathData:L})});const _=c.pipe(I(b),B(A=>A.highlightTarget),tt()),N=U({graphicGSelection:w,visibleComputedLayoutData:o,graphicReverseScale:P,fullChartParams:c,fullParams:l}).pipe(I(b),W(async A=>A),B(A=>HE({graphicGSelection:A.graphicGSelection,circleGClassName:x,circleClassName:S,visibleComputedLayoutData:A.visibleComputedLayoutData,fullParams:A.fullParams,fullChartParams:A.fullChartParams,graphicReverseScale:A.graphicReverseScale})));U({graphicSelection:N,computedData:n,SeriesDataMap:s,GroupDataMap:u,highlightTarget:_}).pipe(I(b),W(async A=>A)).subscribe(A=>{A.graphicSelection.on("mouseover",(L,M)=>{L.stopPropagation(),y.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:A.highlightTarget,datum:M,gridIndex:M.gridIndex,series:A.SeriesDataMap.get(M.seriesLabel),seriesIndex:M.seriesIndex,seriesLabel:M.seriesLabel,groups:A.GroupDataMap.get(M.groupLabel),groupIndex:M.groupIndex,groupLabel:M.groupLabel,event:L,data:A.computedData})}).on("mousemove",(L,M)=>{L.stopPropagation(),y.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:A.highlightTarget,data:A.computedData,datum:M,gridIndex:M.gridIndex,series:A.SeriesDataMap.get(M.seriesLabel),seriesIndex:M.seriesIndex,seriesLabel:M.seriesLabel,groups:A.GroupDataMap.get(M.groupLabel),groupIndex:M.groupIndex,groupLabel:M.groupLabel,event:L})}).on("mouseout",(L,M)=>{L.stopPropagation(),y.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:A.highlightTarget,datum:M,gridIndex:M.gridIndex,series:A.SeriesDataMap.get(M.seriesLabel),seriesIndex:M.seriesIndex,seriesLabel:M.seriesLabel,groups:A.GroupDataMap.get(M.groupLabel),groupIndex:M.groupIndex,groupLabel:M.groupLabel,event:L,data:A.computedData})}).on("click",(L,M)=>{L.stopPropagation(),y.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:A.highlightTarget,datum:M,gridIndex:M.gridIndex,series:A.SeriesDataMap.get(M.seriesLabel),seriesIndex:M.seriesIndex,seriesLabel:M.seriesLabel,groups:A.GroupDataMap.get(M.groupLabel),groupIndex:M.groupIndex,groupLabel:M.groupLabel,event:L,data:A.computedData})})});const D=l.pipe(I(b),B(A=>A.onlyShowHighlighted),tt());return U({graphicSelection:N,highlight:g.pipe(B(A=>A.map(L=>L.id))),onlyShowHighlighted:D,fullChartParams:c}).pipe(I(b),W(async A=>A)).subscribe(A=>{XE({selection:A.graphicSelection,ids:A.highlight,onlyShowHighlighted:A.onlyShowHighlighted,fullChartParams:A.fullChartParams})}),()=>{b.next(void 0)}},qv="Dots",VE=ue({name:qv,defaultParams:pp,layerIndex:Rv,validator:(t,{validateColumns:e})=>e(t,{radius:{toBeTypes:["number"]},fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},onlyShowHighlighted:{toBeTypes:["boolean"]}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=Vv(qv,{selection:t,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,event$:n.event$});return()=>{i.next(void 0),o()}}),qE={listRectWidth:14,listRectHeight:14,listRectRadius:0};function Zv(t,e){const n=t<e.colors[e.colorScheme].series.length?t:t%e.colors[e.colorScheme].series.length;return e.colors[e.colorScheme].series[n]}const Fu=(t,{rootSelection:e,seriesLabels$:n,fullParams$:r,layout$:i,fullChartParams$:o,textSizePx$:a})=>{const s=ot(t,"root-position"),u=ot(t,"legend-card"),l=ot(t,"legend-list"),c=ot(t,"legend-item"),f=new nt,h=U({seriesLabels:n,fullChartParams:o}).pipe(I(f),W(async w=>w),B(w=>{const P=new Map;let _=0;return w.seriesLabels.forEach((N,D)=>{if(!P.has(N)){const A=Zv(_,w.fullChartParams);P.set(N,A),_++}}),P})),p=n.pipe(I(f),B(w=>{const P=new Set;let _=[];return w.forEach(N=>{P.has(N)?_.push(!1):_.push(!0),P.add(N)}),_})),d=r.pipe(I(f),B(w=>w.position==="bottom"||w.position==="top"?"row":"column")),g=U({fullParams:r,layout:i}).pipe(I(f),W(async w=>w),B(w=>{const P=w.fullParams.padding*2+w.fullParams.gap*2;return w.fullParams.position==="bottom"||w.fullParams.position==="top"?w.layout.rootWidth-P:w.layout.rootHeight-P})),y=U({layout:i,fullParams:r}).pipe(I(f),W(async w=>w),B(w=>{let P=0,_=0;return w.fullParams.position==="bottom"?(_=w.layout.rootHeight,w.fullParams.justify==="start"?P=0:w.fullParams.justify==="center"?P=w.layout.rootWidth/2:w.fullParams.justify==="end"&&(P=w.layout.rootWidth)):w.fullParams.position==="right"?(P=w.layout.rootWidth,w.fullParams.justify==="start"?_=0:w.fullParams.justify==="center"?_=w.layout.rootHeight/2:w.fullParams.justify==="end"&&(_=w.layout.rootHeight)):w.fullParams.position==="top"?(_=0,w.fullParams.justify==="start"?P=0:w.fullParams.justify==="center"?P=w.layout.rootWidth/2:w.fullParams.justify==="end"&&(P=w.layout.rootWidth)):w.fullParams.position==="left"&&(P=0,w.fullParams.justify==="start"?_=0:w.fullParams.justify==="center"?_=w.layout.rootHeight/2:w.fullParams.justify==="end"&&(_=w.layout.rootHeight)),{x:P,y:_}})).pipe(I(f),B(w=>e.selectAll(`g.${s}`).data([w]).join(P=>P.append("g").classed(s,!0).attr("transform",_=>`translate(${_.x}, ${_.y})`),P=>P.transition().attr("transform",_=>`translate(${_.x}, ${_.y})`),P=>P.remove()))),b=r.pipe(I(f),B(w=>w.seriesList[0]?w.seriesList[0]:qE)),v=U({visibleList:p,fullParams:r,fullChartParams:o,seriesLabels:n,lineDirection:d,lineMaxSize:g,defaultListStyle:b,SeriesLabelColorMap:h,textSizePx:a}).pipe(I(f),W(async w=>w),B(w=>w.seriesLabels.reduce((P,_,N)=>{if(!w.visibleList[N])return P;const D=Dv(_,w.textSizePx),A=w.textSizePx*1.5+D,L=w.SeriesLabelColorMap.get(_),M=P[0]&&P[0][0]?P[P.length-1][P[P.length-1].length-1]:null,{translateX:G,translateY:O,lineIndex:E,itemIndex:k}=((F,X,Q)=>{let z=0,Z=0,Y=0,q=0;if(F.lineDirection==="column"){let j=Q?Q.translateY+F.textSizePx+F.fullParams.gap:0;if(j+F.textSizePx>F.lineMaxSize){Y=Q.lineIndex+1,q=0,Z=0;const rt=X[X.length-1].reduce((ut,H)=>H.itemWidth>ut?H.itemWidth:ut,0);z=Q.translateX+rt+F.fullParams.gap}else Y=Q?Q.lineIndex:0,q=Q?Q.itemIndex+1:0,Z=j,z=Q?Q.translateX:0}else{let j=Q?Q.translateX+Q.itemWidth+F.fullParams.gap:0;j+A>F.lineMaxSize?(Y=Q.lineIndex+1,q=0,z=0):(Y=Q?Q.lineIndex:0,q=Q?Q.itemIndex+1:0,z=j),Z=(F.textSizePx+F.fullParams.gap)*Y}return{translateX:z,translateY:Z,lineIndex:Y,itemIndex:q}})(w,P,M);P[E]||(P[E]=[]);const C=w.fullParams.seriesList[k]?w.fullParams.seriesList[k]:w.defaultListStyle;return P[E].push({id:_,seriesLabel:_,seriesIndex:N,lineIndex:E,itemIndex:k,text:_,itemWidth:A,translateX:G,translateY:O,color:L,listRectWidth:C.listRectWidth,listRectHeight:C.listRectHeight,listRectRadius:C.listRectRadius}),P},[])),St(1)),x=U({fullParams:r,fullChartParams:o,lineDirection:d,lengendItems:v,textSizePx:a}).pipe(I(f),W(async w=>w),B(w=>{const{width:P,height:_}=((N,D)=>{let A=0,L=0;if(!D.length||!D[0].length)return{width:A,height:L};const M=D[0][D[0].length-1];return N.lineDirection==="column"?(A=D.reduce((G,O)=>{const E=O.reduce((k,C)=>C.itemWidth>k?C.itemWidth:k,0);return G+E},0),A+=N.fullParams.gap*(D.length-1),L=M.translateY+N.textSizePx):(A=M.translateX+M.itemWidth,L=N.textSizePx*D.length+N.fullParams.gap*(D.length-1)),{width:A,height:L}})(w,w.lengendItems);return{direction:w.lineDirection,width:P,height:_,translateX:w.fullParams.gap,translateY:w.fullParams.gap}}),St(1)),S=U({fullParams:r,lengendList:x}).pipe(I(f),W(async w=>w),B(w=>{const P=w.lengendList.width+w.fullParams.gap*2,_=w.lengendList.height+w.fullParams.gap*2;let N=0,D=0;return w.fullParams.position==="left"?w.fullParams.justify==="start"?(N=w.fullParams.padding,D=w.fullParams.padding):w.fullParams.justify==="center"?(N=w.fullParams.padding,D=-_/2):w.fullParams.justify==="end"&&(N=w.fullParams.padding,D=-_-w.fullParams.padding):w.fullParams.position==="right"?w.fullParams.justify==="start"?(N=-P-w.fullParams.padding,D=w.fullParams.padding):w.fullParams.justify==="center"?(N=-P-w.fullParams.padding,D=-_/2):w.fullParams.justify==="end"&&(N=-P-w.fullParams.padding,D=-_-w.fullParams.padding):w.fullParams.position==="top"?w.fullParams.justify==="start"?(N=w.fullParams.padding,D=w.fullParams.padding):w.fullParams.justify==="center"?(N=-P/2,D=w.fullParams.padding):w.fullParams.justify==="end"&&(N=-P-w.fullParams.padding,D=w.fullParams.padding):w.fullParams.justify==="start"?(N=w.fullParams.padding,D=-_-w.fullParams.padding):w.fullParams.justify==="center"?(N=-P/2,D=-_-w.fullParams.padding):w.fullParams.justify==="end"&&(N=-P-w.fullParams.padding,D=-_-w.fullParams.padding),{width:P,height:_,translateX:N,translateY:D}})),$=U({rootPositionSelection:y,fullParams:r,fullChartParams:o,legendCard:S}).pipe(I(f),W(async w=>w),B(w=>w.rootPositionSelection.selectAll("g").data([w.legendCard]).join(P=>P.append("g").classed(u,!0).attr("transform",_=>`translate(${_.translateX}, ${_.translateY})`),P=>P.transition().attr("transform",_=>`translate(${_.translateX}, ${_.translateY})`),P=>P.remove()).each((P,_,N)=>{V(N[_]).selectAll("rect").data([P]).join("rect").attr("width",D=>D.width).attr("height",D=>D.height).attr("fill",kt(w.fullParams.backgroundFill,w.fullChartParams)).attr("stroke",kt(w.fullParams.backgroundStroke,w.fullChartParams))}))),R=U({lengendCardSelection:$,fullParams:r,lengendList:x}).pipe(I(f),W(async w=>w),B(w=>w.lengendCardSelection.selectAll("g").data([w.lengendList]).join(P=>P.append("g").classed(l,!0).attr("transform",_=>`translate(${_.translateX}, ${_.translateY})`),P=>P.transition().attr("transform",_=>`translate(${_.translateX}, ${_.translateY})`),P=>P.remove())));return U({lengendListSelection:R,fullParams:r,fullChartParams:o,lengendItems:v,textSizePx:a}).pipe(I(f),W(async w=>w),B(w=>{const P=w.lengendItems[0]?w.lengendItems.flat():[];return w.lengendListSelection.selectAll(`g.${c}`).data(P).join(_=>_.append("g").classed(c,!0).attr("cursor","default"),_=>_,_=>_.remove()).attr("transform",(_,N)=>`translate(${_.translateX}, ${_.translateY})`).each((_,N,D)=>{const A=w.textSizePx/2,L=-_.listRectWidth/2,M=-_.listRectHeight/2;V(D[N]).selectAll("rect").data([_]).join("rect").attr("x",A).attr("y",A).attr("width",G=>G.listRectWidth).attr("height",G=>G.listRectHeight).attr("transform",G=>`translate(${L}, ${M})`).attr("fill",G=>G.color).attr("rx",G=>G.listRectRadius),V(D[N]).selectAll("text").data([_]).join(G=>G.append("text").attr("dominant-baseline","hanging"),G=>G,G=>G.remove()).attr("x",w.textSizePx*1.5).attr("font-size",w.fullChartParams.styles.textSize).attr("fill",G=>w.fullParams.textColorType==="series"?Zv(G.seriesIndex,w.fullChartParams):kt(w.fullParams.textColorType,w.fullChartParams)).text(G=>G.text)})})).subscribe(),()=>{e.select(`g.${s}`).remove(),f.next(void 0)}},Kv="GridLegend",ZE=ue({name:Kv,defaultParams:bp,layerIndex:Bu,validator:(t,{validateColumns:e})=>e(t,{padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:t,rootSelection:e,observer:n,subject:r})=>{const i=new nt,o=n.SeriesDataMap$.pipe(I(i),B(u=>Array.from(u.keys()))),a=n.fullParams$.pipe(I(i),B(u=>{const l=[{listRectWidth:u.listRectWidth,listRectHeight:u.listRectHeight,listRectRadius:u.listRectRadius}];return{...u,seriesList:l}})),s=Fu(Kv,{rootSelection:e,seriesLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}});function KE(t,{text:e,radius:n,lineHeight:r,isBreakAll:i=!1,limit:o=0}){if(t==null||e==null){console.error("selection or text is not defined");return}n==null&&(n=t.node().getBBox().width/2);function a(p){let d;return i?d=p.split(""):d=p.split(/\s+/g),d[d.length-1]||d.pop(),d[0]||d.shift(),d}function s(p,d){return p&&d&&p.length>d&&(p=p.substring(0,d)+"..."),p}function u(p){var g;const d=document.createElement("canvas").getContext("2d");return((g=d==null?void 0:d.measureText(p))==null?void 0:g.width)??0}function l(p){const d=u(p.trim());return Math.sqrt(d*r)}function c(p,d){let g={width:0,text:""},m=1/0;const y=[];let b=" ";i&&(b="");for(let v=0,x=p.length;v<x;++v){const S=(g.text?g.text+b:"")+p[v],$=u(S);(m+$)/2<d?(g.width=m=$,g.text=S):(m=u(p[v]),g={width:m,text:p[v]},y.push(g))}return y}function f(p){let d=0;for(let g=0,m=p.length;g<m;++g){const y=(Math.abs(g-m/2+.5)+.5)*r,b=p[g].width/2;d=Math.max(d,Math.sqrt(b**2+y**2))}return d}function h(p,d){o>0&&(d=s(d,o));const g=a(d),m=l(d),y=c(g,m),b=f(y);let v=p.select("text");v.size()||(v=p.append("text")),v.attr("transform",`translate(0,0) scale(${n/b})`);const x=v.selectAll("tspan").data(y),S=x.enter().append("tspan").attr("x",0).merge(x).attr("y",($,R)=>(R-y.length/2+.8)*r).text($=>$.text);return x.exit().remove(),x.merge(S)}return h(t,e)}function Qv(t,{textArr:e,textSizePx:n,groupAxisPosition:r}){t.text(null);const i=Number(t.attr("x"));let o=Number(t.attr("y"));r==="top"&&(o-=(e.length-1)*n),t.selectAll("tspan").data(e).join("tspan").attr("x",i).attr("y",(a,s)=>o+s*n).text(a=>a)}function Jv(t,{textArr:e,textSizePx:n,quadrant:r}){t.selectAll("tspan").data(e).join("tspan").attr("x",0).attr("y",(i,o)=>r==1||r==2?-(e.length-1-o)*n:o*n).text(i=>i)}const QE=6;function JE(t,e){return t.map((n,r)=>{const i=Bh(n,e),o=typeof i=="string"?i.split(`
|
20
|
-
`):[i];return{text:i,textArr:o}})}function tI({selection:t,groupingLabelClassName:e,fullParams:n,axisLabelAlign:r,gridAxesSize:i,fullDataFormatter:o,chartParams:a,textReverseTransform:s}){const u=n.tickPadding+n.labelOffset[0],l=n.tickPadding+n.labelOffset[1];let c=0,f=0;o.grid.groupAxis.position==="bottom"?(f=l,o.grid.valueAxis.position==="left"?c=u:o.grid.valueAxis.position==="right"&&(c=-u)):o.grid.groupAxis.position==="top"?(f=-l,o.grid.valueAxis.position==="left"?c=u:o.grid.valueAxis.position==="right"&&(c=-u)):o.grid.groupAxis.position==="left"?(c=-u,o.grid.valueAxis.position==="bottom"?f=-l:o.grid.valueAxis.position==="top"&&(f=l)):o.grid.groupAxis.position==="right"&&(c=u,o.grid.valueAxis.position==="bottom"?f=-l:o.grid.valueAxis.position==="top"&&(f=l)),t.selectAll(`g.${e}`).data([n]).join("g").classed(e,!0).each((h,p,d)=>{V(d[p]).selectAll("text").data([h]).join(g=>g.append("text").style("font-weight","bold"),g=>g,g=>g.remove()).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("font-size",a.styles.textSize).style("fill",kt(n.labelColorType,a)).style("transform",s).attr("x",c).attr("y",f).text(g=>o.grid.groupAxis.label)}).attr("transform",h=>`translate(${i.width}, 0)`)}function eI({selection:t,xAxisClassName:e,fullParams:n,tickTextAlign:r,gridAxesSize:i,fullDataFormatter:o,chartParams:a,groupScale:s,groupScaleDomain:u,groupLabelData:l,textReverseTransformWithRotate:c,textSizePx:f}){const h=t.selectAll(`g.${e}`).data([n]).join("g").classed(e,!0),p=Math.floor(u[1])-Math.ceil(u[0])+1;let d=0,g=0;o.grid.groupAxis.position==="left"?(d=0,g=-n.tickPadding):o.grid.groupAxis.position==="right"?(d=0,g=n.tickPadding):o.grid.groupAxis.position==="bottom"?(d=n.tickPadding,g=0):o.grid.groupAxis.position==="top"&&(d=-n.tickPadding,g=-0);const m=o0(s).scale(s).ticks(n.ticks==="all"||n.ticks>p?p:n.ticks).tickSize(n.tickFullLine==!0?i.height:-QE).tickSizeOuter(0).tickFormat(v=>{var x;return((x=l[v])==null?void 0:x.text)??""}).tickPadding(d),y=h.transition().duration(100).call(m).on("end",(v,x)=>{h.selectAll(".tick text").each((S,$,R)=>{var w;const T=((w=l[S])==null?void 0:w.textArr)??[];Qv(V(R[$]),{textArr:T,textSizePx:f,groupAxisPosition:o.grid.groupAxis.position})})});return y.selectAll("line").style("fill","none").style("stroke",n.tickLineVisible==!0?kt(n.tickColorType,a):"none").style("stroke-dasharray",n.tickFullLineDasharray).attr("pointer-events","none"),y.selectAll("path").style("fill","none").style("stroke",n.axisLineVisible==!0?kt(n.axisLineColorType,a):"none").style("shape-rendering","crispEdges"),h.selectAll("text").attr("font-size",a.styles.textSize).attr("fill",kt(n.tickTextColorType,a)).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("x",g).style("transform",c).attr("dy",0),h}const t2=(t,{selection:e,computedData$:n,fullParams$:r,fullDataFormatter$:i,fullChartParams$:o,gridAxesTransform$:a,gridAxesReverseTransform$:s,gridAxesSize$:u,gridContainerPosition$:l,isSeriesSeprate$:c,textSizePx$:f})=>{const h=new nt,p=ot(t,"container"),d=ot(t,"xAxisG"),g=ot(t,"xAxis"),m=ot(t,"groupingLabel"),y=U({computedData:n.pipe(tt((_,N)=>_.length===N.length)),isSeriesSeprate:c}).pipe(I(h),W(async _=>_),B(_=>_.isSeriesSeprate?_.computedData:[_.computedData[0]]),B((_,N)=>e.selectAll(`g.${p}`).data(_,D=>D[0]?D[0].seriesIndex:N).join("g").classed(p,!0))),b=y.pipe(I(h),B((_,N)=>_.selectAll(`g.${d}`).data([d]).join("g").classed(d,!0)));U({containerSelection:y,gridContainerPosition:l}).pipe(I(h),W(async _=>_)).subscribe(_=>{_.containerSelection.attr("transform",(N,D)=>{const A=_.gridContainerPosition[D]??_.gridContainerPosition[0],L=A.translate,M=A.scale;return`translate(${L[0]}, ${L[1]}) scale(${M[0]}, ${M[1]})`})}),U({axisSelection:b,gridAxesTransform:a}).pipe(I(h),W(async _=>_)).subscribe(_=>{_.axisSelection.style("transform",_.gridAxesTransform.value)});const v=U({gridAxesReverseTransform:s,gridContainerPosition:l}).pipe(I(h),W(async _=>_),B(_=>{const N=`rotateX(${_.gridAxesReverseTransform.rotateX}deg) rotateY(${_.gridAxesReverseTransform.rotateY}deg)`,D=`rotate(${_.gridAxesReverseTransform.rotate}deg)`,A=`scale(${1/_.gridContainerPosition[0].scale[0]}, ${1/_.gridContainerPosition[0].scale[1]})`;return`${N} ${D} ${A}`}),tt()),x=U({textReverseTransform:v,fullParams:r}).pipe(I(h),W(async _=>_),B(_=>`${_.textReverseTransform} rotate(${_.fullParams.tickTextRotate}deg)`)),S=U({fullDataFormatter:i,gridAxesSize:u,computedData:n}).pipe(I(h),W(async _=>_),B(_=>{const N=_.computedData[0]?_.computedData[0].length-1:0,D=_.fullDataFormatter.grid.groupAxis.scaleDomain[0]-_.fullDataFormatter.grid.groupAxis.scalePadding,A=_.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?N+_.fullDataFormatter.grid.groupAxis.scalePadding:_.fullDataFormatter.grid.groupAxis.scaleDomain[1]+_.fullDataFormatter.grid.groupAxis.scalePadding;return[D,A]}),St(1)),$=U({groupScaleDomain:S,gridAxesSize:u}).pipe(I(h),W(async _=>_),B(_=>Ro().domain(_.groupScaleDomain).range([0,_.gridAxesSize.width]))),R=n.pipe(B(_=>(_[0]??[]).map(N=>N.groupLabel))),T=U({fullDataFormatter:i,fullParams:r}).pipe(I(h),W(async _=>_),B(_=>{let N="middle",D="hanging";return _.fullDataFormatter.grid.groupAxis.position==="bottom"?(N=_.fullParams.tickTextRotate?"end":"middle",D="hanging"):_.fullDataFormatter.grid.groupAxis.position==="top"?(N=_.fullParams.tickTextRotate?"start":"middle",D="auto"):_.fullDataFormatter.grid.groupAxis.position==="left"?(N="end",D="middle"):_.fullDataFormatter.grid.groupAxis.position==="right"&&(N="start",D="middle"),{textAnchor:N,dominantBaseline:D}})),w=i.pipe(I(h),B(_=>{let N="start",D="hanging";return _.grid.groupAxis.position==="bottom"?D="hanging":_.grid.groupAxis.position==="top"?D="auto":_.grid.groupAxis.position==="left"?N="end":_.grid.groupAxis.position==="right"&&(N="start"),_.grid.valueAxis.position==="left"?N="start":_.grid.valueAxis.position==="right"?N="end":_.grid.valueAxis.position==="bottom"?D="auto":_.grid.valueAxis.position==="top"&&(D="hanging"),{textAnchor:N,dominantBaseline:D}})),P=U({groupLabels:R,fullParams:r}).pipe(I(h),W(async _=>_),B(_=>JE(_.groupLabels,_.fullParams.tickFormat)));return U({axisSelection:b,fullParams:r,tickTextAlign:T,axisLabelAlign:w,gridAxesSize:u,fullDataFormatter:i,chartParams:o,groupScale:$,groupScaleDomain:S,groupLabelData:P,textReverseTransform:v,textReverseTransformWithRotate:x,textSizePx:f}).pipe(I(h),W(async _=>_)).subscribe(_=>{eI({selection:_.axisSelection,xAxisClassName:g,fullParams:_.fullParams,tickTextAlign:_.tickTextAlign,gridAxesSize:_.gridAxesSize,fullDataFormatter:_.fullDataFormatter,chartParams:_.chartParams,groupScale:_.groupScale,groupScaleDomain:_.groupScaleDomain,groupLabelData:_.groupLabelData,textReverseTransformWithRotate:_.textReverseTransformWithRotate,textSizePx:_.textSizePx}),tI({selection:_.axisSelection,groupingLabelClassName:m,fullParams:_.fullParams,axisLabelAlign:_.axisLabelAlign,gridAxesSize:_.gridAxesSize,fullDataFormatter:_.fullDataFormatter,chartParams:_.chartParams,textReverseTransform:_.textReverseTransform})}),()=>{h.next(void 0)}},e2="GroupAxis",nI=ue({name:e2,defaultParams:Uu,layerIndex:Pn,validator:(t,{validateColumns:e})=>e(t,{labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBe:'number | null | "all"',test:r=>r===null||r==="all"||typeof r=="number"},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:t,name:e,observer:n,subject:r})=>{const i=new nt,o=t2(e2,{selection:t,computedData$:n.computedData$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridAxesReverseTransform$:n.gridAxesReverseTransform$,gridAxesSize$:n.gridAxesSize$,gridContainerPosition$:n.gridContainerPosition$,isSeriesSeprate$:n.isSeriesSeprate$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),o()}}),rI=6;function iI({selection:t,textClassName:e,fullParams:n,axisLabelAlign:r,gridAxesSize:i,fullDataFormatter:o,fullChartParams:a,textReverseTransform:s}){const u=n.tickPadding-n.labelOffset[0],l=n.tickPadding+n.labelOffset[1];let c=0,f=0;o.grid.groupAxis.position==="bottom"?(f=-l,o.grid.valueAxis.position==="left"?c=-u:o.grid.valueAxis.position==="right"&&(c=u)):o.grid.groupAxis.position==="top"?(f=l,o.grid.valueAxis.position==="left"?c=-u:o.grid.valueAxis.position==="right"&&(c=u)):o.grid.groupAxis.position==="left"?(c=u,o.grid.valueAxis.position==="bottom"?f=l:o.grid.valueAxis.position==="top"&&(f=-l)):o.grid.groupAxis.position==="right"&&(c=-u,o.grid.valueAxis.position==="bottom"?f=l:o.grid.valueAxis.position==="top"&&(f=-l)),t.selectAll(`g.${e}`).data([n]).join("g").classed(e,!0).each((h,p,d)=>{V(d[p]).selectAll("text").data([h]).join(g=>g.append("text").style("font-weight","bold"),g=>g,g=>g.remove()).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("font-size",a.styles.textSize).style("fill",kt(n.labelColorType,a)).style("transform",s).attr("x",c).attr("y",f).text(g=>o.grid.valueAxis.label)}).attr("transform",h=>`translate(0, ${i.height})`)}function oI({selection:t,yAxisClassName:e,fullParams:n,tickTextAlign:r,gridAxesSize:i,fullDataFormatter:o,fullChartParams:a,valueScale:s,textReverseTransformWithRotate:u,minAndMax:l}){const c=t.selectAll(`g.${e}`).data([n]).join("g").classed(e,!0),f=l[1]-l[0];let h=0,p=0;o.grid.valueAxis.position==="left"?(h=n.tickPadding,p=0):o.grid.valueAxis.position==="right"?(h=-n.tickPadding,p=0):o.grid.valueAxis.position==="bottom"?(h=0,p=n.tickPadding):o.grid.valueAxis.position==="top"&&(h=0,p=-n.tickPadding);const d=a0(s).scale(s).ticks(f>n.ticks?n.ticks:l[0]===0&&l[1]===0?1:Math.ceil(f)).tickFormat(y=>Bh(y,n.tickFormat)).tickSize(n.tickFullLine==!0?-i.width:rI).tickPadding(h),g=c.transition().duration(100).call(d);g.selectAll("line").style("fill","none").style("stroke",n.tickLineVisible==!0?kt(n.tickColorType,a):"none").style("stroke-dasharray",n.tickFullLineDasharray).attr("pointer-events","none"),g.selectAll("path").style("fill","none").style("stroke",n.axisLineVisible==!0?kt(n.axisLineColorType,a):"none").style("shape-rendering","crispEdges");const m=c.selectAll("text").attr("font-size",a.styles.textSize).style("color",kt(n.tickTextColorType,a)).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("y",p);return m.style("transform",u),(o.grid.valueAxis.position==="bottom"||o.grid.valueAxis.position==="top")&&m.attr("dy",0),c}const bi=(t,{selection:e,computedData$:n,fullParams$:r,fullDataFormatter$:i,fullChartParams$:o,gridAxesTransform$:a,gridAxesReverseTransform$:s,gridAxesSize$:u,gridContainerPosition$:l,isSeriesSeprate$:c})=>{const f=new nt,h=ot(t,"container"),p=ot(t,"yAxisG"),d=ot(t,"yAxis"),g=ot(t,"text"),m=U({computedData:n.pipe(tt((T,w)=>T.length===w.length)),isSeriesSeprate:c}).pipe(I(f),W(async T=>T),B(T=>T.isSeriesSeprate?T.computedData:[T.computedData[0]]),B((T,w)=>e.selectAll(`g.${h}`).data(T,P=>P[0]?P[0].seriesIndex:w).join("g").classed(h,!0))),y=m.pipe(I(f),B((T,w)=>T.selectAll(`g.${p}`).data([p]).join("g").classed(p,!0)));U({containerSelection:m,gridContainerPosition:l}).pipe(I(f),W(async T=>T)).subscribe(T=>{T.containerSelection.attr("transform",(w,P)=>{const _=T.gridContainerPosition[P]??T.gridContainerPosition[0],N=_.translate,D=_.scale;return`translate(${N[0]}, ${N[1]}) scale(${D[0]}, ${D[1]})`})}),U({axisSelection:y,gridAxesTransform:a}).pipe(I(f),W(async T=>T)).subscribe(T=>{T.axisSelection.style("transform",T.gridAxesTransform.value)});const b=U({gridAxesReverseTransform:s,gridContainerPosition:l}).pipe(I(f),W(async T=>T),B(T=>{const w=`rotateX(${T.gridAxesReverseTransform.rotateX}deg) rotateY(${T.gridAxesReverseTransform.rotateY}deg)`,P=`rotate(${T.gridAxesReverseTransform.rotate}deg)`,_=`scale(${1/T.gridContainerPosition[0].scale[0]}, ${1/T.gridContainerPosition[0].scale[1]})`;return`${w} ${P} ${_}`}),tt()),v=U({textReverseTransform:b,fullParams:r}).pipe(I(f),W(async T=>T),B(T=>`${T.textReverseTransform} rotate(${T.fullParams.tickTextRotate}deg)`)),x=new dt(T=>{U({fullDataFormatter:i,gridAxesSize:u,computedData:n}).pipe(I(f),W(async w=>w)).subscribe(w=>{const P=w.computedData[0]?w.computedData[0].length-1:0,_=w.fullDataFormatter.grid.groupAxis.scaleDomain[0]-w.fullDataFormatter.grid.groupAxis.scalePadding,N=w.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?P+w.fullDataFormatter.grid.groupAxis.scalePadding:w.fullDataFormatter.grid.groupAxis.scaleDomain[1]+w.fullDataFormatter.grid.groupAxis.scalePadding,D=w.computedData.map((L,M)=>L.filter((G,O)=>O>=_&&O<=N)),A=iE(D.flat());A[0]===A[1]&&(A[0]=A[1]-1),T.next(A)})}),S=new dt(T=>{U({fullDataFormatter:i,gridAxesSize:u,minAndMax:x}).pipe(I(f),W(async w=>w)).subscribe(w=>{const P=Ag({maxValue:w.minAndMax[1],minValue:w.minAndMax[0],axisWidth:w.gridAxesSize.height,scaleDomain:w.fullDataFormatter.grid.valueAxis.scaleDomain,scaleRange:w.fullDataFormatter.grid.valueAxis.scaleRange});T.next(P)})}),$=U({fullDataFormatter:i,fullParams:r}).pipe(I(f),W(async T=>T),B(T=>{let w="start",P="hanging";return T.fullDataFormatter.grid.valueAxis.position==="left"?(w="end",P="middle"):T.fullDataFormatter.grid.valueAxis.position==="right"?(w="start",P="middle"):T.fullDataFormatter.grid.valueAxis.position==="bottom"?(w=T.fullParams.tickTextRotate?"end":"middle",P="hanging"):T.fullDataFormatter.grid.valueAxis.position==="top"&&(w=T.fullParams.tickTextRotate?"start":"middle",P="auto"),{textAnchor:w,dominantBaseline:P}})),R=i.pipe(I(f),B(T=>{let w="start",P="hanging";return T.grid.groupAxis.position==="bottom"?P="auto":T.grid.groupAxis.position==="top"?P="hanging":T.grid.groupAxis.position==="left"?w="start":T.grid.groupAxis.position==="right"&&(w="end"),T.grid.valueAxis.position==="left"?w="end":T.grid.valueAxis.position==="right"?w="start":T.grid.valueAxis.position==="bottom"?P="hanging":T.grid.valueAxis.position==="top"&&(P="auto"),{textAnchor:w,dominantBaseline:P}}));return U({axisSelection:y,fullParams:r,tickTextAlign:$,axisLabelAlign:R,computedData:n,gridAxesSize:u,fullDataFormatter:i,fullChartParams:o,valueScale:S,textReverseTransform:b,textReverseTransformWithRotate:v,minAndMax:x}).pipe(I(f),W(async T=>T)).subscribe(T=>{oI({selection:T.axisSelection,yAxisClassName:d,fullParams:T.fullParams,tickTextAlign:T.tickTextAlign,gridAxesSize:T.gridAxesSize,fullDataFormatter:T.fullDataFormatter,fullChartParams:T.fullChartParams,valueScale:T.valueScale,textReverseTransformWithRotate:T.textReverseTransformWithRotate,minAndMax:T.minAndMax}),iI({selection:T.axisSelection,textClassName:g,fullParams:T.fullParams,axisLabelAlign:T.axisLabelAlign,gridAxesSize:T.gridAxesSize,fullDataFormatter:T.fullDataFormatter,fullChartParams:T.fullChartParams,textReverseTransform:T.textReverseTransform})}),()=>{f.next(void 0)}},n2="ValueAxis",aI=ue({name:n2,defaultParams:Wu,layerIndex:Pn,validator:(t,{validateColumns:e})=>e(t,{labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:t,name:e,observer:n,subject:r})=>{const i=new nt,o=bi(n2,{selection:t,computedData$:n.computedData$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridAxesReverseTransform$:n.gridAxesReverseTransform$,gridAxesSize$:n.gridAxesSize$,gridContainerPosition$:n.gridContainerPosition$,isSeriesSeprate$:n.isSeriesSeprate$});return()=>{i.next(void 0),o()}}),r2="ValueStackAxis",sI=ue({name:r2,defaultParams:mp,layerIndex:Pn,validator:(t,{validateColumns:e})=>e(t,{labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:t,name:e,observer:n,subject:r})=>{const i=new nt,o=bi(r2,{selection:t,computedData$:n.computedStackedData$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridAxesReverseTransform$:n.gridAxesReverseTransform$,gridAxesSize$:n.gridAxesSize$,gridContainerPosition$:n.gridContainerPosition$,isSeriesSeprate$:n.isSeriesSeprate$});return()=>{i.next(void 0),o()}}),uI=ue({name:"ScalingArea",defaultParams:yp,layerIndex:fE,validator:(t,{validateColumns:e})=>({status:"success",columnName:"",expectToBe:""})})(({selection:t,rootSelection:e,name:n,observer:r,subject:i})=>{const o=new nt;let a={k:1,x:0,y:0};const s=r.computedData$.pipe(B(c=>c[0]?c[0].length-1:0),tt()),u=r.fullDataFormatter$.pipe(B(c=>c.grid.groupAxis),z_()),l=U({initGroupAxis:u,fullDataFormatter:r.fullDataFormatter$,groupMax:s,layout:r.layout$,axisSize:r.gridAxesSize$}).pipe(I(o),W(async c=>c),B(c=>{const f=c.initGroupAxis.scaleDomain[0]-c.initGroupAxis.scalePadding,h=c.initGroupAxis.scaleDomain[1]==="max"?c.groupMax+c.initGroupAxis.scalePadding:c.initGroupAxis.scaleDomain[1]+c.initGroupAxis.scalePadding;return Ag({maxValue:c.groupMax,minValue:0,axisWidth:c.axisSize.width,scaleDomain:[f,h],scaleRange:[0,1]})}));return U({groupScale:l,fullDataFormatter:r.fullDataFormatter$,groupMax:s}).pipe(I(o),W(async c=>c)).subscribe(c=>{const h=c.groupScale.copy(),p=Ih().on("zoom",function(g){const m=g.transform,y=x=>{const S=Math.round(x);return Math.min(c.groupMax,Math.max(0,S))},b=c.fullDataFormatter.grid.groupAxis.position==="bottom"||c.fullDataFormatter.grid.groupAxis.position==="top"?m.rescaleX(h).domain().map(y):m.rescaleY(h).domain().map(y);b[0]<=0&&b[1]>=c.groupMax?m.k<a.k&&(m.k=a.k,m.x=a.x,m.y=a.y):b[1]-b[0]<=1&&m.k>a.k&&(m.k=a.k,m.x=a.x,m.y=a.y),a.k=m.k,a.x=m.x,a.y=m.y;const v={...c.fullDataFormatter,grid:{...c.fullDataFormatter.grid,groupAxis:{...c.fullDataFormatter.grid.groupAxis,scaleDomain:b}}};i.dataFormatter$.next(v)});e.call(p)}),()=>{o.next(void 0),e.call(Ih().on("zoom",null))}}),Ou="GroupAux",zh=ot(Ou,"label-box"),lI={name:Ou,defaultParams:Yu,layerIndex:hE,validator:(t,{validateColumns:e})=>e(t,{showLine:{toBeTypes:["boolean"]},showLabel:{toBeTypes:["boolean"]},lineDashArray:{toBeTypes:["string"]},lineColorType:{toBeOption:"ColorType"},labelColorType:{toBeOption:"ColorType"},labelTextColorType:{toBeOption:"ColorType"},labelTextFormat:{toBeTypes:["string","Function"]},labelPadding:{toBeTypes:["number"]},labelRotate:{toBeTypes:["number"]}})};function cI({groupLabel:t,axisX:e,axisHeight:n,fullParams:r}){return r.showLine&&t?[{id:t,x1:e,x2:e,y1:0,y2:n}]:[]}function fI({groupLabel:t,axisX:e,fullParams:n,textSizePx:r}){const i=Bh(t,n.labelTextFormat),o=i.split(`
|
21
|
-
`),a=o.reduce((l,c)=>c.length>l.length?c:l,""),s=Dv(a,r),u=r*o.length;return n.showLabel&&t?[{id:t,x:e,y:-n.labelPadding,text:i,textArr:o,textWidth:s,textHeight:u}]:[]}function hI({selection:t,pluginName:e,lineData:n,fullParams:r,fullChartParams:i}){const o=ot(e,"auxline"),a=t.selectAll(`line.${o}`).data(n),s=a.enter().append("line").classed(o,!0).style("stroke",l=>kt(r.lineColorType,i)).style("stroke-width",1).style("stroke-dasharray",r.lineDashArray??"none").style("pointer-events","none"),u=a.merge(s);return a.exit().remove(),s.attr("x1",l=>l.x1).attr("y1",l=>l.y1).attr("x2",l=>l.x2).attr("y2",l=>l.y2),a.transition().duration(50).attr("x1",l=>l.x1).attr("y1",l=>l.y1).attr("x2",l=>l.x2).attr("y2",l=>l.y2),u}function pI(t){t.selectAll("line").data([]).exit().remove()}function dI({selection:t,labelData:e,fullParams:n,fullDataFormatter:r,fullChartParams:i,textReverseTransformWithRotate:o,textSizePx:a}){const s=t.selectAll(`g.${zh}`).data(e),u=s.enter().append("g").classed(zh,!0).style("cursor","pointer"),l=u.merge(s);return u.attr("transform",(c,f)=>`translate(${c.x}, ${c.y})`),s.transition().duration(50).attr("transform",(c,f)=>`translate(${c.x}, ${c.y})`),s.exit().remove(),l.each((c,f,h)=>{const p=c.textWidth+12,d=c.textHeight+6;let g=-p/2,m=-2;r.grid.groupAxis.position==="bottom"?(g=n.labelRotate?-p+d:-p/2,m=2):r.grid.groupAxis.position==="left"?(g=-p+2,m=-d/2):r.grid.groupAxis.position==="right"?(g=-2,m=-d/2):r.grid.groupAxis.position==="top"&&(g=n.labelRotate?-p+d:-p/2,m=-d+2),V(h[f]).selectAll("rect").data([c]).join(y=>y.append("rect").style("cursor","pointer").attr("rx",5).attr("ry",5),y=>y,y=>y.remove()).attr("width",y=>`${p}px`).attr("height",`${d}px`).attr("fill",y=>kt(n.labelColorType,i)).attr("x",g).attr("y",m-3).style("transform",o),V(h[f]).selectAll("text").data([c]).join(y=>y.append("text").style("dominant-baseline","hanging").style("cursor","pointer"),y=>y,y=>y.remove()).style("transform",o).attr("fill",y=>kt(n.labelTextColorType,i)).attr("font-size",i.styles.textSize).attr("x",g+6).attr("y",m).each((y,b,v)=>{Qv(V(v[b]),{textArr:c.textArr,textSizePx:a,groupAxisPosition:r.grid.groupAxis.position})})}),l}function gI(t){t.selectAll(`g.${zh}`).data([]).exit().remove()}const mI=ue(lI)(({selection:t,rootSelection:e,name:n,subject:r,observer:i})=>{const o=new nt;let a=!1;const s=e.insert("rect","g").classed(ot(Ou,"rect"),!0).attr("opacity",0),{seriesSelection$:u,axesSelection$:l,defsSelection$:c,graphicGSelection$:f}=pr({selection:t,pluginName:Ou,clipPathID:"test",seriesLabels$:i.isSeriesSeprate$.pipe(W($=>Xp(()=>$,i.seriesLabels$,i.seriesLabels$.pipe(B(R=>[R[0]]))))),gridContainerPosition$:i.gridContainerPosition$,gridAxesTransform$:i.gridAxesTransform$,gridGraphicTransform$:i.gridGraphicTransform$});i.layout$.pipe(I(o)).subscribe($=>{s.attr("width",$.rootWidth).attr("height",$.rootHeight)});const h=U({fullDataFormatter:i.fullDataFormatter$,gridAxesSize:i.gridAxesSize$,computedData:i.computedData$}).pipe(I(o),W(async $=>$),B($=>{const R=$.computedData[0]?$.computedData[0].length-1:0,T=$.fullDataFormatter.grid.groupAxis.scaleDomain[0]-$.fullDataFormatter.grid.groupAxis.scalePadding,w=$.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?R+$.fullDataFormatter.grid.groupAxis.scalePadding:$.fullDataFormatter.grid.groupAxis.scaleDomain[1]+$.fullDataFormatter.grid.groupAxis.scalePadding;return[T,w]}),St(1)),p=U({groupScaleDomain:h,gridAxesSize:i.gridAxesSize$}).pipe(I(o),W(async $=>$),B($=>Ro().domain($.groupScaleDomain).range([0,$.gridAxesSize.width]))),d=i.fullChartParams$.pipe(I(o),B($=>$.highlightTarget),tt()),g=Fh(e,"mousemove").pipe(I(o)),m=U({gridAxesReverseTransform:i.gridAxesReverseTransform$,gridContainerPosition:i.gridContainerPosition$}).pipe(I(o),W(async $=>$),B($=>{const R=`rotateX(${$.gridAxesReverseTransform.rotateX}deg) rotateY(${$.gridAxesReverseTransform.rotateY}deg)`,T=`rotate(${$.gridAxesReverseTransform.rotate}deg)`,w=`scale(${1/$.gridContainerPosition[0].scale[0]}, ${1/$.gridContainerPosition[0].scale[1]})`;return`${R} ${T} ${w}`}),tt()),y=U({textReverseTransform:m,fullParams:i.fullParams$}).pipe(I(o),W(async $=>$),B($=>`${$.textReverseTransform} rotate(${$.fullParams.labelRotate}deg)`)),b=i.gridContainerPosition$.pipe(I(o),B($=>$.reduce((T,w)=>w.columnIndex>T?w.columnIndex:T,0)+1),tt()),v=i.gridContainerPosition$.pipe(I(o),B($=>$.reduce((T,w)=>w.rowIndex>T?w.rowIndex:T,0)+1),tt()),x=oE({rootSelection:e,fullDataFormatter$:i.fullDataFormatter$,gridAxesSize$:i.gridAxesSize$,computedData$:i.computedData$,fullChartParams$:i.fullChartParams$,gridContainerPosition$:i.gridContainerPosition$,layout$:i.layout$}).pipe(I(o));U({axesSelection:l,columnAmount:b,rowAmount:v,layout:i.layout$,rootMousemove:g,gridGroupPosition:x,computedData:i.computedData$,groupScale:p,gridAxesSize:i.gridAxesSize$,fullParams:i.fullParams$,fullDataFormatter:i.fullDataFormatter$,fullChartParams:i.fullChartParams$,highlightTarget:d,textReverseTransformWithRotate:y,GroupDataMap:i.GroupDataMap$,textSizePx:i.textSizePx$}).pipe(I(o),W(async $=>$)).subscribe($=>{const{groupIndex:R,groupLabel:T}=$.gridGroupPosition,w=$.groupScale(R)??0,P=cI({groupLabel:T,axisX:w,axisHeight:$.gridAxesSize.height,fullParams:$.fullParams});hI({selection:$.axesSelection,pluginName:n,lineData:P,fullParams:$.fullParams,fullChartParams:$.fullChartParams});const _=fI({groupLabel:T,axisX:w,fullParams:$.fullParams,textSizePx:$.textSizePx});dI({selection:$.axesSelection,labelData:_,fullParams:$.fullParams,fullDataFormatter:$.fullDataFormatter,fullChartParams:$.fullChartParams,textReverseTransformWithRotate:$.textReverseTransformWithRotate,textSizePx:$.textSizePx}).on("mouseover",(D,A)=>{D.stopPropagation(),a=!0,r.event$.next({type:"grid",pluginName:n,eventName:"mouseover",highlightTarget:$.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:$.GroupDataMap.get(T)??[],groupIndex:R,groupLabel:T,event:D,data:$.computedData})}).on("mousemove",(D,A)=>{D.stopPropagation(),r.event$.next({type:"grid",pluginName:n,eventName:"mousemove",highlightTarget:$.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:$.GroupDataMap.get(T)??[],groupIndex:R,groupLabel:T,event:D,data:$.computedData})}).on("mouseout",(D,A)=>{D.stopPropagation(),a=!1,r.event$.next({type:"grid",pluginName:n,eventName:"mouseout",highlightTarget:$.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:$.GroupDataMap.get(T)??[],groupIndex:R,groupLabel:T,event:D,data:$.computedData})}).on("click",(D,A)=>{D.stopPropagation(),r.event$.next({type:"grid",pluginName:n,eventName:"click",highlightTarget:$.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:$.GroupDataMap.get(T)??[],groupIndex:R,groupLabel:T,event:D,data:$.computedData})})});const S=Fh(s,"mouseout").pipe(I(o));return U({rootRectMouseout:S,axesSelection:l}).pipe(I(o),W(async $=>$)).subscribe($=>{setTimeout(()=>{a!=!0&&(pI($.axesSelection),gI($.axesSelection))})}),()=>{o.next(void 0),s.remove()}}),i2={position:"right",justify:"end",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,gridList:[{listRectWidth:14,listRectHeight:14,listRectRadius:0}],textColorType:"primary"},Yh={labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!0,axisLineColorType:"primary",ticks:"all",tickFormat:t=>t,tickLineVisible:!0,tickPadding:20,tickFullLine:!1,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary",gridIndexes:[0]};Yh.tickFormat.toString=()=>"text => text";const Gu={labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:4,tickFormat:",.0f",tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary",gridIndexes:[0]},yI={...Gu},o2={barWidth:0,barPadding:1,barGroupPadding:40,barRadius:!1,gridIndexes:[0]},a2={barWidth:0,barGroupPadding:10,barRadius:!1,gridIndexes:[0]},s2={barWidth:0,barPadding:1,barGroupPadding:20,linearGradientOpacity:[1,0],gridIndexes:[0]},u2={lineCurve:"curveLinear",lineWidth:2,gridIndexes:[1]},l2={lineCurve:"curveLinear",linearGradientOpacity:[1,0],gridIndexes:[1]},c2={radius:4,fillColorType:"white",strokeColorType:"series",strokeWidth:2,onlyShowHighlighted:!1,gridIndexes:[1]},Uh={firstAxis:{labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:4,tickFormat:",.0f",tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary"},secondAxis:{labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:4,tickFormat:",.0f",tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary"},gridIndexes:[0,1]},f2={...Uh},h2="MultiGridLegend",bI=de({name:h2,defaultParams:i2,layerIndex:Bu,validator:(t,{validateColumns:e})=>{const n=e(t,{padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},gridList:{toBeTypes:["object[]"]},textColorType:{toBeOption:"ColorType"}});if(t.gridList){const i=t.gridList.map((o,a)=>e(o,{listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]}})).find(o=>o.status==="error");if(i)return i}return n}})(({selection:t,rootSelection:e,observer:n,subject:r})=>{const i=new nt,o=n.multiGridEachDetail$.pipe(I(i),B(l=>l.map((f,h)=>f.SeriesDataMap$.pipe(B(p=>Array.from(p.keys()))))),W(l=>U(l)),B(l=>l.flat())),a=U({fullParams:n.fullParams$,computedData:n.computedData$}).pipe(I(i),W(async l=>l),B(l=>l.computedData.map((c,f)=>{const h=al(l.fullParams.gridList[f]??{},{listRectWidth:l.fullParams.listRectWidth,listRectHeight:l.fullParams.listRectHeight,listRectRadius:l.fullParams.listRectRadius});return c.map(p=>h)}).flat())),s=U({fullParams:n.fullParams$,seriesList:a}).pipe(I(i),W(async l=>l),B(l=>({...l.fullParams,seriesList:l.seriesList}))),u=Fu(h2,{rootSelection:e,seriesLabels$:o,fullParams$:s,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),u()}}),Re=t=>{const e=t.fullParams$.pipe(B(n=>n.gridIndexes),tt(),St(1));return U({multiGridEachDetail:t.multiGridEachDetail$,gridIndexes:e}).pipe(B(n=>n.gridIndexes==="all"?n.multiGridEachDetail:n.gridIndexes.map(r=>n.multiGridEachDetail[r]??n.multiGridEachDetail[0])))},Wh="MultiBars",p2=ot(Wh,"grid"),xI=de({name:Wh,defaultParams:o2,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[];return Re(r).pipe(I(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${p2}`).data(s).join("g").attr("class",p2).each((u,l,c)=>{const f=V(c[l]),h=u.dataFormatter$.pipe(I(i),B(p=>p.grid.separateSeries),tt(),St(1));o[l]=Gh(Wh,{selection:f,computedData$:u.computedData$,visibleComputedData$:u.visibleComputedData$,computedLayoutData$:u.computedLayoutData$,visibleComputedLayoutData$:u.visibleComputedLayoutData$,seriesLabels$:u.seriesLabels$,SeriesDataMap$:u.SeriesDataMap$,GroupDataMap$:u.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:u.gridAxesTransform$,gridGraphicTransform$:u.gridGraphicTransform$,gridGraphicReverseScale$:u.gridGraphicReverseScale$,gridAxesSize$:u.gridAxesSize$,gridHighlight$:u.gridHighlight$,gridContainerPosition$:u.gridContainerPosition$,isSeriesSeprate$:h,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Hh="MultiBarStack",d2=ot(Hh,"grid"),vI=de({name:Hh,defaultParams:a2,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},barWidth:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[];return Re(r).pipe(I(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${d2}`).data(s).join("g").attr("class",d2).each((u,l,c)=>{const f=V(c[l]),h=u.dataFormatter$.pipe(I(i),B(p=>p.grid.separateSeries),tt(),St(1));o[l]=Yv(Hh,{selection:f,computedData$:u.computedData$,visibleComputedData$:u.visibleComputedData$,computedLayoutData$:u.computedLayoutData$,visibleComputedLayoutData$:u.visibleComputedLayoutData$,seriesLabels$:u.seriesLabels$,SeriesDataMap$:u.SeriesDataMap$,GroupDataMap$:u.GroupDataMap$,fullParams$:r.fullParams$,fullDataFormatter$:u.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:u.gridAxesTransform$,gridGraphicTransform$:u.gridGraphicTransform$,gridGraphicReverseScale$:u.gridGraphicReverseScale$,gridAxesSize$:u.gridAxesSize$,gridHighlight$:u.gridHighlight$,gridContainerPosition$:u.gridContainerPosition$,isSeriesSeprate$:h,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Xh="MultiBarsTriangle",g2=ot(Xh,"grid"),_I=de({name:Xh,defaultParams:s2,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[];return Re(r).pipe(I(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${g2}`).data(s).join("g").attr("class",g2).each((u,l,c)=>{const f=V(c[l]),h=u.dataFormatter$.pipe(I(i),B(p=>p.grid.separateSeries),tt(),St(1));o[l]=Xv(Xh,{selection:f,computedData$:u.computedData$,visibleComputedData$:u.visibleComputedData$,computedLayoutData$:u.computedLayoutData$,visibleComputedLayoutData$:u.visibleComputedLayoutData$,seriesLabels$:u.seriesLabels$,SeriesDataMap$:u.SeriesDataMap$,GroupDataMap$:u.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,fullDataFormatter$:u.dataFormatter$,gridAxesTransform$:u.gridAxesTransform$,gridGraphicTransform$:u.gridGraphicTransform$,gridAxesSize$:u.gridAxesSize$,gridHighlight$:u.gridHighlight$,gridContainerPosition$:u.gridContainerPosition$,isSeriesSeprate$:h,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),jh="MultiLines",m2=ot(jh,"grid"),wI=de({name:jh,defaultParams:u2,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},lineCurve:{toBeTypes:["string"]},lineWidth:{toBeTypes:["number"]}})})(({selection:t,rootSelection:e,name:n,subject:r,observer:i})=>{const o=new nt,a=[],s=i.multiGridContainerPosition$.pipe(I(o),B(l=>l.flat()));return Re(i).pipe(I(o)).subscribe(l=>{a.forEach(c=>c()),t.selectAll(`g.${m2}`).data(l).join("g").attr("class",m2).each((c,f,h)=>{const p=V(h[f]);a[f]=Lv(jh,{selection:p,computedData$:c.computedData$,computedLayoutData$:c.computedLayoutData$,visibleComputedData$:c.visibleComputedData$,visibleComputedLayoutData$:c.visibleComputedLayoutData$,seriesLabels$:c.seriesLabels$,SeriesDataMap$:c.SeriesDataMap$,GroupDataMap$:c.GroupDataMap$,fullDataFormatter$:c.dataFormatter$,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,gridAxesTransform$:c.gridAxesTransform$,gridGraphicTransform$:c.gridGraphicTransform$,gridAxesSize$:c.gridAxesSize$,gridHighlight$:c.gridHighlight$,gridContainerPosition$:c.gridContainerPosition$,allContainerPosition$:s,layout$:i.layout$,event$:r.event$})})}),()=>{o.next(void 0),a.forEach(l=>l())}}),Vh="MultiLineAreas",y2=ot(Vh,"grid"),$I=de({name:Vh,defaultParams:l2,layerIndex:kv,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},lineCurve:{toBeTypes:["string"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[],a=r.multiGridContainerPosition$.pipe(I(i),B(u=>u.flat()));return Re(r).pipe(I(i)).subscribe(u=>{o.forEach(l=>l()),t.selectAll(`g.${y2}`).data(u).join("g").attr("class",y2).each((l,c,f)=>{const h=V(f[c]);o[c]=Iv(Vh,{selection:h,computedData$:l.computedData$,computedLayoutData$:l.computedLayoutData$,visibleComputedData$:l.visibleComputedData$,visibleComputedLayoutData$:l.visibleComputedLayoutData$,seriesLabels$:l.seriesLabels$,SeriesDataMap$:l.SeriesDataMap$,GroupDataMap$:l.GroupDataMap$,fullDataFormatter$:l.dataFormatter$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:l.gridAxesTransform$,gridGraphicTransform$:l.gridGraphicTransform$,gridAxesSize$:l.gridAxesSize$,gridHighlight$:l.gridHighlight$,gridContainerPosition$:l.gridContainerPosition$,allContainerPosition$:a,layout$:r.layout$,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(u=>u())}}),qh="MultiDots",b2=ot(qh,"grid"),SI=de({name:qh,defaultParams:c2,layerIndex:Rv,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},radius:{toBeTypes:["number"]},fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},onlyShowHighlighted:{toBeTypes:["boolean"]}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[];return Re(r).pipe(I(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${b2}`).data(s).join("g").attr("class",b2).each((u,l,c)=>{const f=V(c[l]);o[l]=Vv(qh,{selection:f,computedData$:u.computedData$,visibleComputedData$:u.visibleComputedData$,computedLayoutData$:u.computedLayoutData$,visibleComputedLayoutData$:u.visibleComputedLayoutData$,seriesLabels$:u.seriesLabels$,SeriesDataMap$:u.SeriesDataMap$,GroupDataMap$:u.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:u.gridAxesTransform$,gridGraphicTransform$:u.gridGraphicTransform$,gridGraphicReverseScale$:u.gridGraphicReverseScale$,gridAxesSize$:u.gridAxesSize$,gridHighlight$:u.gridHighlight$,gridContainerPosition$:u.gridContainerPosition$,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Zh="MultiGroupAxis",x2=ot(Zh,"grid"),AI=de({name:Zh,defaultParams:Yh,layerIndex:Pn,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBe:'number | null | "all"',test:r=>r===null||r==="all"||typeof r=="number"},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[];return Re(r).pipe(I(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${x2}`).data(s).join("g").attr("class",x2).each((u,l,c)=>{const f=V(c[l]),h=u.dataFormatter$.pipe(I(i),B(p=>p.grid.separateSeries),tt(),St(1));o[l]=t2(Zh,{selection:f,computedData$:u.computedData$,fullParams$:r.fullParams$,fullDataFormatter$:u.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:u.gridAxesTransform$,gridAxesReverseTransform$:u.gridAxesReverseTransform$,gridAxesSize$:u.gridAxesSize$,gridContainerPosition$:u.gridContainerPosition$,isSeriesSeprate$:h,textSizePx$:r.textSizePx$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Kh="MultiValueAxis",v2=ot(Kh,"grid"),TI=de({name:Kh,defaultParams:Gu,layerIndex:Pn,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[];return Re(r).pipe(I(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${v2}`).data(s).join("g").attr("class",v2).each((u,l,c)=>{const f=V(c[l]),h=u.dataFormatter$.pipe(I(i),B(p=>p.grid.separateSeries),tt(),St(1));o[l]=bi(Kh,{selection:f,computedData$:u.computedData$,fullParams$:r.fullParams$,fullDataFormatter$:u.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:u.gridAxesTransform$,gridAxesReverseTransform$:u.gridAxesReverseTransform$,gridAxesSize$:u.gridAxesSize$,gridContainerPosition$:u.gridContainerPosition$,isSeriesSeprate$:h})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Qh="MultiValueStackAxis",_2=ot(Qh,"grid"),PI=de({name:Qh,defaultParams:Gu,layerIndex:Pn,validator:(t,{validateColumns:e})=>e(t,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[];return Re(r).pipe(I(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${_2}`).data(s).join("g").attr("class",_2).each((u,l,c)=>{const f=V(c[l]),h=u.dataFormatter$.pipe(I(i),B(p=>p.grid.separateSeries),tt(),St(1));o[l]=bi(Qh,{selection:f,computedData$:u.computedStackedData$,fullParams$:r.fullParams$,fullDataFormatter$:u.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:u.gridAxesTransform$,gridAxesReverseTransform$:u.gridAxesReverseTransform$,gridAxesSize$:u.gridAxesSize$,gridContainerPosition$:u.gridContainerPosition$,isSeriesSeprate$:h})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Jh="OverlappingValueAxes",w2=ot(Jh,"grid"),MI=de({name:Jh,defaultParams:Uh,layerIndex:Pn,validator:(t,{validateColumns:e})=>{const n=e(t,{firstAxis:{toBeTypes:["object"]},secondAxis:{toBeTypes:["object"]},gridIndexes:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2}});if(t.firstAxis){const r=e(t.firstAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}if(t.secondAxis){const r=e(t.secondAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}return n}})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[],a=r.fullParams$.pipe(I(i),B(c=>c.gridIndexes[0])),s=r.fullParams$.pipe(I(i),B(c=>c.gridIndexes[1])),u=U({firstGridIndex:a,secondGridIndex:s,fullDataFormatter:r.fullDataFormatter$}).pipe(I(i),W(async c=>c),B(c=>{c.fullDataFormatter.gridList[c.secondGridIndex]||(c.fullDataFormatter.gridList[c.secondGridIndex]=Object.assign({},c.fullDataFormatter.gridList[c.firstGridIndex]));const f=c.fullDataFormatter.gridList[c.firstGridIndex].valueAxis.position;let h=f;return f==="left"?h="right":f==="bottom"?h="top":f==="top"?h="bottom":f==="right"&&(h="left"),{type:"grid",visibleFilter:c.fullDataFormatter.visibleFilter,grid:{...c.fullDataFormatter.gridList[c.secondGridIndex],valueAxis:{...c.fullDataFormatter.gridList[c.secondGridIndex].valueAxis,position:h}},container:{...c.fullDataFormatter.container}}}));return Qo(r).pipe(I(i),B(c=>({...c,fullParams$:c.fullParams$.pipe(B(f=>(f.gridIndexes.length>2&&(f.gridIndexes.length=2),f)))})),W(c=>Re(c)),B(c=>c.map((f,h)=>{if(h===0)return f;const p=Pg({fullDataFormatter$:u,layout$:r.layout$}),d=Mg({gridAxesTransform$:p}),g=Dg({computedData$:f.computedData$,fullDataFormatter$:u,layout$:r.layout$});return{...f,dataFormatter$:u,gridAxesTransform$:p,gridAxesReverseTransform$:d,gridContainerPosition$:g}}))).pipe(I(i)).subscribe(c=>{o.forEach(f=>f()),t.selectAll(`g.${w2}`).data(c).join("g").attr("class",w2).each((f,h,p)=>{if(h>1)return;const d=V(p[h]);o[h]=bi(Jh,{selection:d,computedData$:f.computedData$,fullParams$:r.fullParams$.pipe(B(g=>h===0?g.firstAxis:g.secondAxis)),fullDataFormatter$:f.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:f.gridAxesTransform$,gridAxesReverseTransform$:f.gridAxesReverseTransform$,gridAxesSize$:f.gridAxesSize$,gridContainerPosition$:f.gridContainerPosition$,isSeriesSeprate$:f.isSeriesSeprate$})})}),()=>{i.next(void 0),o.forEach(c=>c())}}),tp="OverlappingValueStackAxes",$2=ot(tp,"grid"),DI=de({name:tp,defaultParams:f2,layerIndex:Pn,validator:(t,{validateColumns:e})=>{const n=e(t,{firstAxis:{toBeTypes:["object"]},secondAxis:{toBeTypes:["object"]},gridIndexes:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2}});if(t.firstAxis){const r=e(t.firstAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}if(t.secondAxis){const r=e(t.secondAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}return n}})(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=[],a=r.fullParams$.pipe(I(i),B(c=>c.gridIndexes[0])),s=r.fullParams$.pipe(I(i),B(c=>c.gridIndexes[1])),u=U({firstGridIndex:a,secondGridIndex:s,fullDataFormatter:r.fullDataFormatter$}).pipe(I(i),W(async c=>c),B(c=>{c.fullDataFormatter.gridList[c.secondGridIndex]||(c.fullDataFormatter.gridList[c.secondGridIndex]=Object.assign({},c.fullDataFormatter.gridList[c.firstGridIndex]));const f=c.fullDataFormatter.gridList[c.firstGridIndex].valueAxis.position;let h=f;return f==="left"?h="right":f==="bottom"?h="top":f==="top"?h="bottom":f==="right"&&(h="left"),{type:"grid",visibleFilter:c.fullDataFormatter.visibleFilter,grid:{...c.fullDataFormatter.gridList[c.secondGridIndex],valueAxis:{...c.fullDataFormatter.gridList[c.secondGridIndex].valueAxis,position:h}},container:{...c.fullDataFormatter.container}}}));return Qo(r).pipe(I(i),B(c=>({...c,fullParams$:c.fullParams$.pipe(B(f=>(f.gridIndexes.length>2&&(f.gridIndexes.length=2),f)))})),W(c=>Re(c)),B(c=>c.map((f,h)=>{if(h===0)return f;const p=Pg({fullDataFormatter$:u,layout$:r.layout$}),d=Mg({gridAxesTransform$:p}),g=Dg({computedData$:f.computedData$,fullDataFormatter$:u,layout$:r.layout$});return{...f,dataFormatter$:u,gridAxesTransform$:p,gridAxesReverseTransform$:d,gridContainerPosition$:g}}))).pipe(I(i)).subscribe(c=>{o.forEach(f=>f()),t.selectAll(`g.${$2}`).data(c).join("g").attr("class",$2).each((f,h,p)=>{if(h>1)return;const d=V(p[h]);o[h]=bi(tp,{selection:d,computedData$:h===0?f.computedStackedData$:f.computedData$,fullParams$:r.fullParams$.pipe(B(g=>h===0?g.firstAxis:g.secondAxis)),fullDataFormatter$:f.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:f.gridAxesTransform$,gridAxesReverseTransform$:f.gridAxesReverseTransform$,gridAxesSize$:f.gridAxesSize$,gridContainerPosition$:f.gridContainerPosition$,isSeriesSeprate$:f.isSeriesSeprate$})})}),()=>{i.next(void 0),o.forEach(c=>c())}}),CI={header:{height:36,text:[],textStyle:[]},footer:{height:0,text:[],textStyle:[]}},ep={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,textRenderFn:t=>{if(t.highlightTarget==="datum"&&t.datum)return[`${t.datum.label}: ${t.datum.value}`];if(t.highlightTarget==="series"){const e=t.seriesLabel,n=t.series.filter(i=>i.visible==!0).map(i=>i.value),r=n.length>5?n.slice(0,5).join(",")+"...":n.join(",");return[e,r]}else if(t.highlightTarget==="group"){const e=t.groupLabel,n=t.series.filter(i=>i.visible==!0).map(i=>i.value),r=n.length>5?n.slice(0,5).join(",")+"...":n.join(",");return[e,r]}else if(t.highlightTarget==="category"){const e=t.categoryLabel,n=t.category.filter(i=>i.visible==!0).map(i=>i.value),r=n.length>5?n.slice(0,5).join(",")+"...":n.join(",");return[e,r]}return[]},svgRenderFn:null};ep.textRenderFn.toString=()=>`(eventData) => {
|
52
|
+
`})}function jI({defsSelection:e,clipPathData:t}){e.selectAll("clipPath").data(t).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join(o=>o.append("rect"),o=>o,o=>o.remove()).attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}function qI({selection:e,ids:t,fullChartParams:n}){e.interrupt("highlight");const r=()=>{e.transition("highlight").duration(200).style("opacity",1)};if(!t.length){r();return}e.each((i,o,a)=>{t.includes(i.id)?V(a[o]).style("opacity",1):V(a[o]).style("opacity",n.styles.unhighlightedOpacity)})}const S$=(e,{selection:t,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,fullDataFormatter$:a,seriesLabels$:s,SeriesDataMap$:l,GroupDataMap$:u,fullParams$:c,fullChartParams$:f,gridAxesTransform$:h,gridGraphicTransform$:p,gridAxesSize$:d,gridHighlight$:m,gridContainerPosition$:g,isSeriesSeprate$:y,event$:b})=>{const v=new J,x=Pt(e,"clipPath-box"),_=Z(e,"pathG"),A=Z(e,"path"),{seriesSelection$:S,axesSelection$:P,defsSelection$:M,graphicGSelection$:B}=Tr({selection:t,pluginName:e,clipPathID:x,seriesLabels$:s,gridContainerPosition$:g,gridAxesTransform$:h,gridGraphicTransform$:p});p.pipe(L(v),R(E=>-E.translate[1]/E.scale[1]));const $=o.pipe(R(E=>E.map(O=>O[0]?O[0].axisY-O[0].axisYFromZero:0)),ee()),k=Y({computedData:n,visibleComputedData:i,params:c,gridAxesSize:d,isSeriesSeprate:y}).pipe(L(v),G(async E=>E),R(E=>E.params.barWidth?E.params.barWidth:E.isSeriesSeprate?_$({axisWidth:E.gridAxesSize.width,groupAmount:E.computedData[0]?E.computedData[0].length:0,barAmountOfGroup:1,barPadding:E.params.barPadding,barGroupPadding:E.params.barGroupPadding}):_$({axisWidth:E.gridAxesSize.width,groupAmount:E.computedData[0]?E.computedData[0].length:0,barAmountOfGroup:E.visibleComputedData.length,barPadding:E.params.barPadding,barGroupPadding:E.params.barGroupPadding}))),C=i.pipe(L(v),R(E=>{const O=new Set;return E.forEach(j=>{j.forEach(ie=>{O.add(ie.groupLabel)})}),Array.from(O)})),T=new de(E=>{Y({seriesLabels:s,barWidth:k,params:c}).pipe(L(v),G(async O=>O)).subscribe(O=>{const j=WI(O.barWidth,O.seriesLabels,O.params);E.next(j)})}),w=f.pipe(L(v),R(E=>E.transitionDuration),ee()),D=new de(E=>{Y({groupLabels:C,transitionDuration:w}).pipe(G(async O=>O)).subscribe(O=>{const j=XI(O.groupLabels.length,O.transitionDuration);E.next(j)})}).pipe(L(v),ee()),F=new de(E=>{Y({groupLabels:C,transitionDuration:w}).pipe(G(async O=>O)).subscribe(O=>{const j=VI(O.groupLabels.length,O.transitionDuration);E.next(j)})}).pipe(L(v),ee());Y({defsSelection:M,gridAxesSize:d}).pipe(L(v),G(async E=>E)).subscribe(E=>{const O=[{id:x,width:E.gridAxesSize.width,height:E.gridAxesSize.height}];jI({defsSelection:E.defsSelection,clipPathData:O})});const z=f.pipe(L(v),R(E=>E.highlightTarget),ee()),I=s.pipe(L(v),R(E=>E.map((O,j)=>Pt(e,`lineargradient-${O}`)))),N=Y({graphicGSelection:B,defsSelection:M,computedData:n,visibleComputedLayoutData:o,linearGradientIds:I,zeroYArr:$,groupLabels:C,barScale:T,params:c,chartParams:f,barWidth:k,delayGroup:D,transitionItem:F,isSeriesSeprate:y}).pipe(L(v),G(async E=>E),R(E=>(HI({defsSelection:E.defsSelection,computedData:E.computedData,linearGradientIds:E.linearGradientIds,params:E.params}),UI({graphicGSelection:E.graphicGSelection,pathGClassName:_,pathClassName:A,visibleComputedLayoutData:E.visibleComputedLayoutData,linearGradientIds:E.linearGradientIds,zeroYArr:E.zeroYArr,groupLabels:E.groupLabels,barScale:E.barScale,params:E.params,chartParams:E.chartParams,barWidth:E.barWidth,delayGroup:E.delayGroup,transitionItem:E.transitionItem,isSeriesSeprate:E.isSeriesSeprate}))));return Y({barSelection:N,computedData:n,highlightTarget:z,SeriesDataMap:l,GroupDataMap:u}).subscribe(E=>{E.barSelection.on("mouseover",(O,j)=>{O.stopPropagation(),b.next({type:"grid",eventName:"mouseover",pluginName:e,highlightTarget:E.highlightTarget,datum:j,gridIndex:j.gridIndex,series:E.SeriesDataMap.get(j.seriesLabel),seriesIndex:j.seriesIndex,seriesLabel:j.seriesLabel,groups:E.GroupDataMap.get(j.groupLabel),groupIndex:j.groupIndex,groupLabel:j.groupLabel,event:O,data:E.computedData})}).on("mousemove",(O,j)=>{O.stopPropagation(),b.next({type:"grid",eventName:"mousemove",pluginName:e,highlightTarget:E.highlightTarget,datum:j,gridIndex:j.gridIndex,series:E.SeriesDataMap.get(j.seriesLabel),seriesIndex:j.seriesIndex,seriesLabel:j.seriesLabel,groups:E.GroupDataMap.get(j.groupLabel),groupIndex:j.groupIndex,groupLabel:j.groupLabel,event:O,data:E.computedData})}).on("mouseout",(O,j)=>{O.stopPropagation(),b.next({type:"grid",eventName:"mouseout",pluginName:e,highlightTarget:E.highlightTarget,datum:j,gridIndex:j.gridIndex,series:E.SeriesDataMap.get(j.seriesLabel),seriesIndex:j.seriesIndex,seriesLabel:j.seriesLabel,groups:E.GroupDataMap.get(j.groupLabel),groupIndex:j.groupIndex,groupLabel:j.groupLabel,event:O,data:E.computedData})}).on("click",(O,j)=>{O.stopPropagation(),b.next({type:"grid",eventName:"click",pluginName:e,highlightTarget:E.highlightTarget,datum:j,gridIndex:j.gridIndex,series:E.SeriesDataMap.get(j.seriesLabel),seriesIndex:j.seriesIndex,seriesLabel:j.seriesLabel,groups:E.GroupDataMap.get(j.groupLabel),groupIndex:j.groupIndex,groupLabel:j.groupLabel,event:O,data:E.computedData})})}),Y({barSelection:N,highlight:m.pipe(R(E=>E.map(O=>O.id))),fullChartParams:f}).pipe(L(v),G(async E=>E)).subscribe(E=>{qI({selection:E.barSelection,ids:E.highlight,fullChartParams:E.fullChartParams})}),()=>{v.next(void 0)}},w$="BarsTriangle",ZI=st({name:w$,defaultParams:rd,layerIndex:5,validator:(e,{validateColumns:t})=>t(e,{barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=S$(w$,{selection:e,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,fullDataFormatter$:r.fullDataFormatter$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,isSeriesSeprate$:r.isSeriesSeprate$,event$:n.event$});return()=>{i.next(void 0),o()}});function KI({graphicGSelection:e,circleGClassName:t,circleClassName:n,visibleComputedLayoutData:r,fullParams:i,fullChartParams:o,graphicReverseScale:a}){const s=c=>{const f=c.size();return o.transitionDuration/f};let l=0;return e.each((c,f,h)=>{V(h[f]).selectAll("g").data(r[f],p=>p.id).join(p=>(l=s(p),p.append("g").classed(t,!0)),p=>p,p=>p.remove()).attr("transform",p=>`translate(${p.axisX}, ${p.axisY})`).each((p,d,m)=>{V(m[d]).selectAll("circle").data([p]).join(g=>g.append("circle").style("cursor","pointer").style("vector-effect","non-scaling-stroke").classed(n,!0).attr("opacity",0).transition().delay((y,b)=>d*l).attr("opacity",1),g=>g.transition().duration(50).attr("opacity",1),g=>g.remove()).attr("r",i.radius).attr("fill",(g,y)=>Me({datum:g,colorType:i.fillColorType,fullChartParams:o})).attr("stroke",(g,y)=>Me({datum:g,colorType:i.strokeColorType,fullChartParams:o})).attr("stroke-width",i.strokeWidth).attr("transform",`scale(${a[f][0]??1}, ${a[f][1]??1})`)})}),e.selectAll(`circle.${n}`)}function QI({selection:e,ids:t,onlyShowHighlighted:n,fullChartParams:r}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").duration(200).style("opacity",n===!0?0:1);return}e.each((i,o,a)=>{t.includes(i.id)?V(a[o]).style("opacity",1).transition("highlight").duration(200):V(a[o]).style("opacity",n===!0?0:r.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function JI({defsSelection:e,clipPathData:t}){e.selectAll("clipPath").data(t).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join("rect").attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}const T$=(e,{selection:t,computedData$:n,computedLayoutData$:r,visibleComputedData$:i,visibleComputedLayoutData$:o,seriesLabels$:a,SeriesDataMap$:s,GroupDataMap$:l,fullParams$:u,fullChartParams$:c,gridAxesTransform$:f,gridGraphicTransform$:h,gridGraphicReverseScale$:p,gridAxesSize$:d,gridHighlight$:m,gridContainerPosition$:g,event$:y})=>{const b=new J,v=Pt(e,"clipPath-box"),x=Z(e,"circleG"),_=Z(e,"circle"),{seriesSelection$:A,axesSelection$:S,defsSelection$:P,graphicGSelection$:M}=Tr({selection:t,pluginName:e,clipPathID:v,seriesLabels$:a,gridContainerPosition$:g,gridAxesTransform$:f,gridGraphicTransform$:h}),B=Y({computedData:n,gridGraphicReverseScale:p}).pipe(L(b),G(async T=>T),R(T=>T.computedData.map((w,D)=>T.gridGraphicReverseScale[D])));Y({defsSelection:P,gridAxesSize:d}).pipe(L(b),G(async T=>T)).subscribe(T=>{const w=[{id:v,width:T.gridAxesSize.width,height:T.gridAxesSize.height}];JI({defsSelection:T.defsSelection,clipPathData:w})});const $=c.pipe(L(b),R(T=>T.highlightTarget),ee()),k=Y({graphicGSelection:M,visibleComputedLayoutData:o,graphicReverseScale:B,fullChartParams:c,fullParams:u}).pipe(L(b),G(async T=>T),R(T=>KI({graphicGSelection:T.graphicGSelection,circleGClassName:x,circleClassName:_,visibleComputedLayoutData:T.visibleComputedLayoutData,fullParams:T.fullParams,fullChartParams:T.fullChartParams,graphicReverseScale:T.graphicReverseScale})));Y({graphicSelection:k,computedData:n,SeriesDataMap:s,GroupDataMap:l,highlightTarget:$}).pipe(L(b),G(async T=>T)).subscribe(T=>{T.graphicSelection.on("mouseover",(w,D)=>{y.next({type:"grid",eventName:"mouseover",pluginName:e,highlightTarget:T.highlightTarget,datum:D,gridIndex:D.gridIndex,series:T.SeriesDataMap.get(D.seriesLabel),seriesIndex:D.seriesIndex,seriesLabel:D.seriesLabel,groups:T.GroupDataMap.get(D.groupLabel),groupIndex:D.groupIndex,groupLabel:D.groupLabel,event:w,data:T.computedData})}).on("mousemove",(w,D)=>{y.next({type:"grid",eventName:"mousemove",pluginName:e,highlightTarget:T.highlightTarget,data:T.computedData,datum:D,gridIndex:D.gridIndex,series:T.SeriesDataMap.get(D.seriesLabel),seriesIndex:D.seriesIndex,seriesLabel:D.seriesLabel,groups:T.GroupDataMap.get(D.groupLabel),groupIndex:D.groupIndex,groupLabel:D.groupLabel,event:w})}).on("mouseout",(w,D)=>{y.next({type:"grid",eventName:"mouseout",pluginName:e,highlightTarget:T.highlightTarget,datum:D,gridIndex:D.gridIndex,series:T.SeriesDataMap.get(D.seriesLabel),seriesIndex:D.seriesIndex,seriesLabel:D.seriesLabel,groups:T.GroupDataMap.get(D.groupLabel),groupIndex:D.groupIndex,groupLabel:D.groupLabel,event:w,data:T.computedData})}).on("click",(w,D)=>{y.next({type:"grid",eventName:"click",pluginName:e,highlightTarget:T.highlightTarget,datum:D,gridIndex:D.gridIndex,series:T.SeriesDataMap.get(D.seriesLabel),seriesIndex:D.seriesIndex,seriesLabel:D.seriesLabel,groups:T.GroupDataMap.get(D.groupLabel),groupIndex:D.groupIndex,groupLabel:D.groupLabel,event:w,data:T.computedData})})});const C=u.pipe(L(b),R(T=>T.onlyShowHighlighted),ee());return Y({graphicSelection:k,highlight:m.pipe(R(T=>T.map(w=>w.id))),onlyShowHighlighted:C,fullChartParams:c}).pipe(L(b),G(async T=>T)).subscribe(T=>{QI({selection:T.graphicSelection,ids:T.highlight,onlyShowHighlighted:T.onlyShowHighlighted,fullChartParams:T.fullChartParams})}),()=>{b.next(void 0)}},A$="Dots",eB=st({name:A$,defaultParams:td,layerIndex:fu,validator:(e,{validateColumns:t})=>t(e,{radius:{toBeTypes:["number"]},fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},onlyShowHighlighted:{toBeTypes:["boolean"]}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=T$(A$,{selection:e,computedData$:r.computedData$,computedLayoutData$:r.computedLayoutData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,seriesLabels$:r.seriesLabels$,SeriesDataMap$:r.SeriesDataMap$,GroupDataMap$:r.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:r.gridAxesTransform$,gridGraphicTransform$:r.gridGraphicTransform$,gridGraphicReverseScale$:r.gridGraphicReverseScale$,gridAxesSize$:r.gridAxesSize$,gridHighlight$:r.gridHighlight$,gridContainerPosition$:r.gridContainerPosition$,event$:n.event$});return()=>{i.next(void 0),o()}}),tB=" - ",nB={listRectWidth:14,listRectHeight:14,listRectRadius:0};function P$(e,t){const n=e<t.colors[t.colorScheme].label.length?e:e%t.colors[t.colorScheme].label.length;return t.colors[t.colorScheme].label[n]}const Ei=(e,{rootSelection:t,legendLabels$:n,fullParams$:r,layout$:i,fullChartParams$:o,textSizePx$:a})=>{const s=Z(e,"root-position"),l=Z(e,"legend-card"),u=Z(e,"legend-list"),c=Z(e,"legend-item"),f=new J,h=Y({legendLabels:n,fullChartParams:o}).pipe(L(f),G(async $=>$),R($=>{const k=new Map;let C=0;return $.legendLabels.forEach((T,w)=>{if(!k.has(T)){const D=P$(C,$.fullChartParams);k.set(T,D),C++}}),k})),p=n.pipe(L(f),R($=>{const k=new Set;let C=[];return $.forEach(T=>{k.has(T)?C.push(!1):C.push(!0),k.add(T)}),C})),d=r.pipe(L(f),R($=>$.placement==="top"||$.placement==="top-start"||$.placement==="top-end"?"top":$.placement==="bottom"||$.placement==="bottom-start"||$.placement==="bottom-end"?"bottom":$.placement==="left"||$.placement==="left-start"||$.placement==="left-end"?"left":"right"),ee(($,k)=>$===k),pe(1)),m=r.pipe(L(f),R($=>$.placement==="top-start"||$.placement==="bottom-start"||$.placement==="left-start"||$.placement==="right-start"?"start":$.placement==="top-end"||$.placement==="bottom-end"||$.placement==="left-end"||$.placement==="right-end"?"end":($.placement==="top"||$.placement==="bottom"||$.placement==="left"||$.placement==="right","center")),ee(($,k)=>$===k),pe(1)),g=d.pipe(L(f),R($=>$==="bottom"||$==="top"?"row":"column"),ee(($,k)=>$===k),pe(1)),y=Y({fullParams:r,position:d,layout:i}).pipe(L(f),G(async $=>$),R($=>{const k=$.fullParams.padding*2+$.fullParams.gap*2;return $.position==="bottom"||$.position==="top"?$.layout.rootWidth-k:$.layout.rootHeight-k})),v=Y({layout:i,position:d,justify:m}).pipe(L(f),G(async $=>$),R($=>{let k=0,C=0;return $.position==="bottom"?(C=$.layout.rootHeight,$.justify==="start"?k=0:$.justify==="center"?k=$.layout.rootWidth/2:$.justify==="end"&&(k=$.layout.rootWidth)):$.position==="right"?(k=$.layout.rootWidth,$.justify==="start"?C=0:$.justify==="center"?C=$.layout.rootHeight/2:$.justify==="end"&&(C=$.layout.rootHeight)):$.position==="top"?(C=0,$.justify==="start"?k=0:$.justify==="center"?k=$.layout.rootWidth/2:$.justify==="end"&&(k=$.layout.rootWidth)):$.position==="left"&&(k=0,$.justify==="start"?C=0:$.justify==="center"?C=$.layout.rootHeight/2:$.justify==="end"&&(C=$.layout.rootHeight)),{x:k,y:C}})).pipe(L(f),R($=>t.selectAll(`g.${s}`).data([$]).join(k=>k.append("g").classed(s,!0).attr("transform",C=>`translate(${C.x}, ${C.y})`),k=>k.transition().attr("transform",C=>`translate(${C.x}, ${C.y})`),k=>k.remove()))),x=r.pipe(L(f),R($=>$.labelList[0]?$.labelList[0]:nB)),_=Y({visibleList:p,fullParams:r,fullChartParams:o,legendLabels:n,lineDirection:g,lineMaxSize:y,defaultListStyle:x,SeriesLabelColorMap:h,textSizePx:a}).pipe(L(f),G(async $=>$),R($=>$.legendLabels.reduce((k,C,T)=>{if(!$.visibleList[T])return k;const w=C!==""?C:tB,D=fa(w,$.textSizePx),F=$.textSizePx*1.5+D,z=$.SeriesLabelColorMap.get(C),I=k[0]&&k[0][0]?k[k.length-1][k[k.length-1].length-1]:null,{translateX:N,translateY:E,lineIndex:O,itemIndex:j}=((W,Q,X)=>{let K=0,q=0,ne=0,se=0;if(W.lineDirection==="column"){let U=X?X.translateY+W.textSizePx+W.fullParams.gap:0;if(U+W.textSizePx>W.lineMaxSize){ne=X.lineIndex+1,se=0,q=0;const me=Q[Q.length-1].reduce((fe,Ee)=>Ee.itemWidth>fe?Ee.itemWidth:fe,0);K=X.translateX+me+W.fullParams.gap}else ne=X?X.lineIndex:0,se=X?X.itemIndex+1:0,q=U,K=X?X.translateX:0}else{let U=X?X.translateX+X.itemWidth+W.fullParams.gap:0;U+F>W.lineMaxSize?(ne=X.lineIndex+1,se=0,K=0):(ne=X?X.lineIndex:0,se=X?X.itemIndex+1:0,K=U),q=(W.textSizePx+W.fullParams.gap)*ne}return{translateX:K,translateY:q,lineIndex:ne,itemIndex:se}})($,k,I);k[O]||(k[O]=[]);const ie=$.fullParams.labelList[j]?$.fullParams.labelList[j]:$.defaultListStyle;return k[O].push({id:w,seriesLabel:w,seriesIndex:T,lineIndex:O,itemIndex:j,text:w,itemWidth:F,translateX:N,translateY:E,color:z,listRectWidth:ie.listRectWidth,listRectHeight:ie.listRectHeight,listRectRadius:ie.listRectRadius}),k},[])),pe(1)),A=Y({fullParams:r,fullChartParams:o,lineDirection:g,lengendItems:_,textSizePx:a}).pipe(L(f),G(async $=>$),R($=>{const{width:k,height:C}=((T,w)=>{let D=0,F=0;if(!w.length||!w[0].length)return{width:D,height:F};const z=w[0][w[0].length-1];return T.lineDirection==="column"?(D=w.reduce((I,N)=>{const E=N.reduce((O,j)=>j.itemWidth>O?j.itemWidth:O,0);return I+E},0),D+=T.fullParams.gap*(w.length-1),F=z.translateY+T.textSizePx):(D=z.translateX+z.itemWidth,F=T.textSizePx*w.length+T.fullParams.gap*(w.length-1)),{width:D,height:F}})($,$.lengendItems);return{direction:$.lineDirection,width:k,height:C,translateX:$.fullParams.gap,translateY:$.fullParams.gap}}),pe(1)),S=Y({fullParams:r,position:d,justify:m,lengendList:A}).pipe(L(f),G(async $=>$),R($=>{const k=$.lengendList.width+$.fullParams.gap*2,C=$.lengendList.height+$.fullParams.gap*2;let T=0,w=0;return $.position==="left"?$.justify==="start"?(T=$.fullParams.padding,w=$.fullParams.padding):$.justify==="center"?(T=$.fullParams.padding,w=-C/2):$.justify==="end"&&(T=$.fullParams.padding,w=-C-$.fullParams.padding):$.position==="right"?$.justify==="start"?(T=-k-$.fullParams.padding,w=$.fullParams.padding):$.justify==="center"?(T=-k-$.fullParams.padding,w=-C/2):$.justify==="end"&&(T=-k-$.fullParams.padding,w=-C-$.fullParams.padding):$.position==="top"?$.justify==="start"?(T=$.fullParams.padding,w=$.fullParams.padding):$.justify==="center"?(T=-k/2,w=$.fullParams.padding):$.justify==="end"&&(T=-k-$.fullParams.padding,w=$.fullParams.padding):$.justify==="start"?(T=$.fullParams.padding,w=-C-$.fullParams.padding):$.justify==="center"?(T=-k/2,w=-C-$.fullParams.padding):$.justify==="end"&&(T=-k-$.fullParams.padding,w=-C-$.fullParams.padding),{width:k,height:C,translateX:T,translateY:w}})),P=Y({rootPositionSelection:v,fullParams:r,fullChartParams:o,legendCard:S}).pipe(L(f),G(async $=>$),R($=>$.rootPositionSelection.selectAll("g").data([$.legendCard]).join(k=>k.append("g").classed(l,!0).attr("transform",C=>`translate(${C.translateX}, ${C.translateY})`),k=>k.transition().attr("transform",C=>`translate(${C.translateX}, ${C.translateY})`),k=>k.remove()).each((k,C,T)=>{V(T[C]).selectAll("rect").data([k]).join("rect").attr("width",w=>w.width).attr("height",w=>w.height).attr("fill",be($.fullParams.backgroundFill,$.fullChartParams)).attr("stroke",be($.fullParams.backgroundStroke,$.fullChartParams))}))),M=Y({lengendCardSelection:P,fullParams:r,lengendList:A}).pipe(L(f),G(async $=>$),R($=>$.lengendCardSelection.selectAll("g").data([$.lengendList]).join(k=>k.append("g").classed(u,!0).attr("transform",C=>`translate(${C.translateX}, ${C.translateY})`),k=>k.transition().attr("transform",C=>`translate(${C.translateX}, ${C.translateY})`),k=>k.remove())));return Y({lengendListSelection:M,fullParams:r,fullChartParams:o,lengendItems:_,textSizePx:a}).pipe(L(f),G(async $=>$),R($=>{const k=$.lengendItems[0]?$.lengendItems.flat():[];return $.lengendListSelection.selectAll(`g.${c}`).data(k).join(C=>C.append("g").classed(c,!0).attr("cursor","default"),C=>C,C=>C.remove()).attr("transform",(C,T)=>`translate(${C.translateX}, ${C.translateY})`).each((C,T,w)=>{const D=$.textSizePx/2,F=-C.listRectWidth/2,z=-C.listRectHeight/2;V(w[T]).selectAll("rect").data([C]).join("rect").attr("x",D).attr("y",D).attr("width",I=>I.listRectWidth).attr("height",I=>I.listRectHeight).attr("transform",I=>`translate(${F}, ${z})`).attr("fill",I=>I.color).attr("rx",I=>I.listRectRadius),V(w[T]).selectAll("text").data([C]).join(I=>I.append("text").attr("dominant-baseline","hanging"),I=>I,I=>I.remove()).attr("x",$.textSizePx*1.5).attr("font-size",$.fullChartParams.styles.textSize).attr("fill",I=>$.fullParams.textColorType==="label"?P$(I.seriesIndex,$.fullChartParams):be($.fullParams.textColorType,$.fullChartParams)).text(I=>I.text)})})).subscribe(),()=>{t.select(`g.${s}`).remove(),f.next(void 0)}},D$="GridLegend",rB=st({name:D$,defaultParams:ad,layerIndex:ki,validator:(e,{validateColumns:t})=>t(e,{placement:{toBe:'"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',test:r=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].includes(r)},padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:e,rootSelection:t,observer:n,subject:r})=>{const i=new J,o=n.SeriesDataMap$.pipe(L(i),R(l=>Array.from(l.keys()))),a=n.fullParams$.pipe(L(i),R(l=>{const u=[{listRectWidth:l.listRectWidth,listRectHeight:l.listRectHeight,listRectRadius:l.listRectRadius}];return{...l,labelList:u}})),s=Ei(D$,{rootSelection:t,legendLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}});function M$(e,{text:t,radius:n,lineHeight:r,isBreakAll:i=!1,limit:o=0}){if(e==null||t==null){console.error("selection or text is not defined");return}n==null&&(n=e.node().getBBox().width/2);function a(p){let d;return i?d=p.split(""):d=p.split(/\s+/g),d[d.length-1]||d.pop(),d[0]||d.shift(),d}function s(p,d){return p&&d&&p.length>d&&(p=p.substring(0,d)+"..."),p}function l(p){var m;const d=document.createElement("canvas").getContext("2d");return((m=d==null?void 0:d.measureText(p))==null?void 0:m.width)??0}function u(p){const d=l(p.trim());return Math.sqrt(d*r)}function c(p,d){let m={width:0,text:""},g=1/0;const y=[];let b=" ";i&&(b="");for(let v=0,x=p.length;v<x;++v){const _=(m.text?m.text+b:"")+p[v],A=l(_);(g+A)/2<d?(m.width=g=A,m.text=_):(g=l(p[v]),m={width:g,text:p[v]},y.push(m))}return y}function f(p){let d=0;for(let m=0,g=p.length;m<g;++m){const y=(Math.abs(m-g/2+.5)+.5)*r,b=p[m].width/2;d=Math.max(d,Math.sqrt(b**2+y**2))}return d}function h(p,d){o>0&&(d=s(d,o));const m=a(d),g=u(d),y=c(m,g),b=f(y);let v=p.select("text");v.size()||(v=p.append("text")),v.attr("transform",`translate(0,0) scale(${n/b})`);const x=v.selectAll("tspan").data(y),_=x.enter().append("tspan").attr("x",0).merge(x).attr("y",(A,S)=>(S-y.length/2+.8)*r).text(A=>A.text);return x.exit().remove(),x.merge(_)}return h(e,t)}function Sp(e,{textArr:t,textSizePx:n,groupAxisPosition:r}){e.text(null);const i=Number(e.attr("x"));let o=Number(e.attr("y"));r==="top"&&(o-=(t.length-1)*n),e.selectAll("tspan").data(t).join("tspan").attr("x",i).attr("y",(a,s)=>o+s*n).text(a=>a)}function C$(e,{textArr:t,textSizePx:n,quadrant:r}){e.selectAll("tspan").data(t).join("tspan").attr("x",0).attr("y",(i,o)=>r==1||r==2?-(t.length-1-o)*n:o*n).text(i=>i)}const iB=6;function oB(e,t){return e.map((n,r)=>{const i=wr(n,t),o=typeof i=="string"?i.split(`
|
53
|
+
`):[i];return{text:i,textArr:o}})}function aB({selection:e,groupingLabelClassName:t,fullParams:n,axisLabelAlign:r,gridAxesSize:i,fullDataFormatter:o,chartParams:a,textReverseTransform:s}){const l=n.tickPadding+n.labelOffset[0],u=n.tickPadding+n.labelOffset[1];let c=0,f=0;o.groupAxis.position==="bottom"?(f=u,o.valueAxis.position==="left"?c=l:o.valueAxis.position==="right"&&(c=-l)):o.groupAxis.position==="top"?(f=-u,o.valueAxis.position==="left"?c=l:o.valueAxis.position==="right"&&(c=-l)):o.groupAxis.position==="left"?(c=-l,o.valueAxis.position==="bottom"?f=-u:o.valueAxis.position==="top"&&(f=u)):o.groupAxis.position==="right"&&(c=l,o.valueAxis.position==="bottom"?f=-u:o.valueAxis.position==="top"&&(f=u)),e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0).each((h,p,d)=>{V(d[p]).selectAll("text").data([h]).join(m=>m.append("text").style("font-weight","bold"),m=>m,m=>m.remove()).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("font-size",a.styles.textSize).style("fill",be(n.labelColorType,a)).style("transform",s).attr("x",c).attr("y",f).text(m=>o.groupAxis.label)}).attr("transform",h=>`translate(${i.width}, 0)`)}function sB({selection:e,xAxisClassName:t,fullParams:n,tickTextAlign:r,gridAxesSize:i,fullDataFormatter:o,chartParams:a,groupScale:s,groupScaleDomain:l,groupLabelData:u,textReverseTransformWithRotate:c,textSizePx:f}){const h=e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0),p=Math.floor(l[1])-Math.ceil(l[0])+1;let d=0,m=0;o.groupAxis.position==="left"?(d=0,m=-n.tickPadding):o.groupAxis.position==="right"?(d=0,m=n.tickPadding):o.groupAxis.position==="bottom"?(d=n.tickPadding,m=0):o.groupAxis.position==="top"&&(d=-n.tickPadding,m=-0);const g=Dc(s).scale(s).ticks(n.ticks==="all"||n.ticks>p?p:n.ticks).tickSize(n.tickFullLine==!0?i.height:-iB).tickSizeOuter(0).tickFormat(v=>{var x;return((x=u[v])==null?void 0:x.text)??""}).tickPadding(d),y=h.transition().duration(100).call(g).on("end",(v,x)=>{h.selectAll(".tick text").each((_,A,S)=>{var M;const P=((M=u[_])==null?void 0:M.textArr)??[];Sp(V(S[A]),{textArr:P,textSizePx:f,groupAxisPosition:o.groupAxis.position})})});return y.selectAll("line").style("fill","none").style("stroke",n.tickLineVisible==!0?be(n.tickColorType,a):"none").style("stroke-dasharray",n.tickFullLineDasharray).attr("pointer-events","none"),y.selectAll("path").style("fill","none").style("stroke",n.axisLineVisible==!0?be(n.axisLineColorType,a):"none").style("shape-rendering","crispEdges"),h.selectAll("text").attr("font-size",a.styles.textSize).attr("fill",be(n.tickTextColorType,a)).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("x",m).style("transform",c).attr("dy",0),h}const L$=(e,{selection:t,computedData$:n,fullParams$:r,fullDataFormatter$:i,fullChartParams$:o,gridAxesTransform$:a,gridAxesReverseTransform$:s,gridAxesSize$:l,gridContainerPosition$:u,isSeriesSeprate$:c,textSizePx$:f})=>{const h=new J,p=Z(e,"container"),d=Z(e,"xAxisG"),m=Z(e,"xAxis"),g=Z(e,"groupingLabel"),y=Y({computedData:n.pipe(ee(($,k)=>$.length===k.length)),isSeriesSeprate:c}).pipe(L(h),G(async $=>$),R($=>$.isSeriesSeprate?$.computedData:[$.computedData[0]]),R(($,k)=>t.selectAll(`g.${p}`).data($,C=>C[0]?C[0].seriesIndex:k).join("g").classed(p,!0))),b=y.pipe(L(h),R(($,k)=>$.selectAll(`g.${d}`).data([d]).join("g").classed(d,!0)));Y({containerSelection:y,gridContainerPosition:u}).pipe(L(h),G(async $=>$)).subscribe($=>{$.containerSelection.attr("transform",(k,C)=>{const T=$.gridContainerPosition[C]??$.gridContainerPosition[0],w=T.translate,D=T.scale;return`translate(${w[0]}, ${w[1]}) scale(${D[0]}, ${D[1]})`})}),Y({axisSelection:b,gridAxesTransform:a}).pipe(L(h),G(async $=>$)).subscribe($=>{$.axisSelection.style("transform",$.gridAxesTransform.value)});const v=Y({gridAxesReverseTransform:s,gridContainerPosition:u}).pipe(L(h),G(async $=>$),R($=>{const k=`rotateX(${$.gridAxesReverseTransform.rotateX}deg) rotateY(${$.gridAxesReverseTransform.rotateY}deg)`,C=`rotate(${$.gridAxesReverseTransform.rotate}deg)`,T=`scale(${1/$.gridContainerPosition[0].scale[0]}, ${1/$.gridContainerPosition[0].scale[1]})`;return`${k} ${C} ${T}`}),ee()),x=Y({textReverseTransform:v,fullParams:r}).pipe(L(h),G(async $=>$),R($=>`${$.textReverseTransform} rotate(${$.fullParams.tickTextRotate}deg)`)),_=Y({fullDataFormatter:i,gridAxesSize:l,computedData:n}).pipe(L(h),G(async $=>$),R($=>{const k=$.computedData[0]?$.computedData[0].length-1:0,C=$.fullDataFormatter.groupAxis.scaleDomain[0]-$.fullDataFormatter.groupAxis.scalePadding,T=$.fullDataFormatter.groupAxis.scaleDomain[1]==="max"?k+$.fullDataFormatter.groupAxis.scalePadding:$.fullDataFormatter.groupAxis.scaleDomain[1]+$.fullDataFormatter.groupAxis.scalePadding;return[C,T]}),pe(1)),A=Y({groupScaleDomain:_,gridAxesSize:l}).pipe(L(h),G(async $=>$),R($=>xr().domain($.groupScaleDomain).range([0,$.gridAxesSize.width]))),S=n.pipe(R($=>($[0]??[]).map(k=>k.groupLabel))),P=Y({fullDataFormatter:i,fullParams:r}).pipe(L(h),G(async $=>$),R($=>{let k="middle",C="hanging";return $.fullDataFormatter.groupAxis.position==="bottom"?(k=$.fullParams.tickTextRotate?"end":"middle",C="hanging"):$.fullDataFormatter.groupAxis.position==="top"?(k=$.fullParams.tickTextRotate?"start":"middle",C="auto"):$.fullDataFormatter.groupAxis.position==="left"?(k="end",C="middle"):$.fullDataFormatter.groupAxis.position==="right"&&(k="start",C="middle"),{textAnchor:k,dominantBaseline:C}})),M=i.pipe(L(h),R($=>{let k="start",C="hanging";return $.groupAxis.position==="bottom"?C="hanging":$.groupAxis.position==="top"?C="auto":$.groupAxis.position==="left"?k="end":$.groupAxis.position==="right"&&(k="start"),$.valueAxis.position==="left"?k="start":$.valueAxis.position==="right"?k="end":$.valueAxis.position==="bottom"?C="auto":$.valueAxis.position==="top"&&(C="hanging"),{textAnchor:k,dominantBaseline:C}})),B=Y({groupLabels:S,fullParams:r}).pipe(L(h),G(async $=>$),R($=>oB($.groupLabels,$.fullParams.tickFormat)));return Y({axisSelection:b,fullParams:r,tickTextAlign:P,axisLabelAlign:M,gridAxesSize:l,fullDataFormatter:i,chartParams:o,groupScale:A,groupScaleDomain:_,groupLabelData:B,textReverseTransform:v,textReverseTransformWithRotate:x,textSizePx:f}).pipe(L(h),G(async $=>$)).subscribe($=>{sB({selection:$.axisSelection,xAxisClassName:m,fullParams:$.fullParams,tickTextAlign:$.tickTextAlign,gridAxesSize:$.gridAxesSize,fullDataFormatter:$.fullDataFormatter,chartParams:$.chartParams,groupScale:$.groupScale,groupScaleDomain:$.groupScaleDomain,groupLabelData:$.groupLabelData,textReverseTransformWithRotate:$.textReverseTransformWithRotate,textSizePx:$.textSizePx}),aB({selection:$.axisSelection,groupingLabelClassName:g,fullParams:$.fullParams,axisLabelAlign:$.axisLabelAlign,gridAxesSize:$.gridAxesSize,fullDataFormatter:$.fullDataFormatter,chartParams:$.chartParams,textReverseTransform:$.textReverseTransform})}),()=>{h.next(void 0)}},k$="GroupAxis",lB=st({name:k$,defaultParams:xu,layerIndex:bn,validator:(e,{validateColumns:t})=>t(e,{labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBe:'number | null | "all"',test:r=>r===null||r==="all"||typeof r=="number"},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:e,name:t,observer:n,subject:r})=>{const i=new J,o=L$(k$,{selection:e,computedData$:n.computedData$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridAxesReverseTransform$:n.gridAxesReverseTransform$,gridAxesSize$:n.gridAxesSize$,gridContainerPosition$:n.gridContainerPosition$,isSeriesSeprate$:n.isSeriesSeprate$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),o()}}),uB=6;function cB({selection:e,textClassName:t,fullParams:n,axisLabelAlign:r,gridAxesSize:i,fullDataFormatter:o,fullChartParams:a,textReverseTransform:s}){const l=n.tickPadding-n.labelOffset[0],u=n.tickPadding+n.labelOffset[1];let c=0,f=0;o.groupAxis.position==="bottom"?(f=-u,o.valueAxis.position==="left"?c=-l:o.valueAxis.position==="right"&&(c=l)):o.groupAxis.position==="top"?(f=u,o.valueAxis.position==="left"?c=-l:o.valueAxis.position==="right"&&(c=l)):o.groupAxis.position==="left"?(c=l,o.valueAxis.position==="bottom"?f=u:o.valueAxis.position==="top"&&(f=-u)):o.groupAxis.position==="right"&&(c=-l,o.valueAxis.position==="bottom"?f=u:o.valueAxis.position==="top"&&(f=-u)),e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0).each((h,p,d)=>{V(d[p]).selectAll("text").data([h]).join(m=>m.append("text").style("font-weight","bold"),m=>m,m=>m.remove()).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("font-size",a.styles.textSize).style("fill",be(n.labelColorType,a)).style("transform",s).attr("x",c).attr("y",f).text(m=>o.valueAxis.label)}).attr("transform",h=>`translate(0, ${i.height})`)}function fB({selection:e,yAxisClassName:t,fullParams:n,tickTextAlign:r,gridAxesSize:i,fullDataFormatter:o,fullChartParams:a,valueScale:s,textReverseTransformWithRotate:l,filteredMinMaxValue:u}){const c=e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0);let f=0,h=0;o.valueAxis.position==="left"?(f=n.tickPadding,h=0):o.valueAxis.position==="right"?(f=-n.tickPadding,h=0):o.valueAxis.position==="bottom"?(f=0,h=n.tickPadding):o.valueAxis.position==="top"&&(f=0,h=-n.tickPadding);const p=Mc(s).scale(s).ticks(n.ticks).tickFormat(g=>wr(g,n.tickFormat)).tickSize(n.tickFullLine==!0?-i.width:uB).tickPadding(f),d=c.transition().duration(100).call(p);d.selectAll("line").style("fill","none").style("stroke",n.tickLineVisible==!0?be(n.tickColorType,a):"none").style("stroke-dasharray",n.tickFullLineDasharray).attr("pointer-events","none"),d.selectAll("path").style("fill","none").style("stroke",n.axisLineVisible==!0?be(n.axisLineColorType,a):"none").style("shape-rendering","crispEdges");const m=c.selectAll("text").attr("font-size",a.styles.textSize).style("color",be(n.tickTextColorType,a)).attr("text-anchor",r.textAnchor).attr("dominant-baseline",r.dominantBaseline).attr("y",h).attr("dy",0);return m.style("transform",l),(o.valueAxis.position==="bottom"||o.valueAxis.position==="top")&&m.attr("dy",0),c}const Ii=(e,{selection:t,computedData$:n,filteredMinMaxValue$:r,fullParams$:i,fullDataFormatter$:o,fullChartParams$:a,gridAxesTransform$:s,gridAxesReverseTransform$:l,gridAxesSize$:u,gridContainerPosition$:c,isSeriesSeprate$:f})=>{const h=new J,p=Z(e,"container"),d=Z(e,"yAxisG"),m=Z(e,"yAxis"),g=Z(e,"text"),y=Y({computedData:n.pipe(ee((P,M)=>P.length===M.length)),isSeriesSeprate:f}).pipe(L(h),G(async P=>P),R(P=>P.isSeriesSeprate?P.computedData:[P.computedData[0]]),R((P,M)=>t.selectAll(`g.${p}`).data(P,B=>B[0]?B[0].seriesIndex:M).join("g").classed(p,!0))),b=y.pipe(L(h),R((P,M)=>P.selectAll(`g.${d}`).data([d]).join("g").classed(d,!0)));Y({containerSelection:y,gridContainerPosition:c}).pipe(L(h),G(async P=>P)).subscribe(P=>{P.containerSelection.attr("transform",(M,B)=>{const $=P.gridContainerPosition[B]??P.gridContainerPosition[0],k=$.translate,C=$.scale;return`translate(${k[0]}, ${k[1]}) scale(${C[0]}, ${C[1]})`})}),Y({axisSelection:b,gridAxesTransform:s}).pipe(L(h),G(async P=>P)).subscribe(P=>{P.axisSelection.style("transform",P.gridAxesTransform.value)});const v=Y({gridAxesReverseTransform:l,gridContainerPosition:c}).pipe(L(h),G(async P=>P),R(P=>{const M=`rotateX(${P.gridAxesReverseTransform.rotateX}deg) rotateY(${P.gridAxesReverseTransform.rotateY}deg)`,B=`rotate(${P.gridAxesReverseTransform.rotate}deg)`,$=`scale(${1/P.gridContainerPosition[0].scale[0]}, ${1/P.gridContainerPosition[0].scale[1]})`;return`${M} ${B} ${$}`}),ee()),x=Y({textReverseTransform:v,fullParams:i}).pipe(L(h),G(async P=>P),R(P=>`${P.textReverseTransform} rotate(${P.fullParams.tickTextRotate}deg)`)),_=new de(P=>{Y({fullDataFormatter:o,gridAxesSize:u,filteredMinMaxValue:r}).pipe(L(h),G(async M=>M)).subscribe(M=>{let B=M.filteredMinMaxValue[1],$=M.filteredMinMaxValue[0];B===$&&B===0&&(B=1);const k=ro({maxValue:B,minValue:$,axisWidth:M.gridAxesSize.height,scaleDomain:M.fullDataFormatter.valueAxis.scaleDomain,scaleRange:M.fullDataFormatter.valueAxis.scaleRange});P.next(k)})}),A=Y({fullDataFormatter:o,fullParams:i}).pipe(L(h),G(async P=>P),R(P=>{let M="start",B="hanging";return P.fullDataFormatter.valueAxis.position==="left"?(M="end",B="middle"):P.fullDataFormatter.valueAxis.position==="right"?(M="start",B="middle"):P.fullDataFormatter.valueAxis.position==="bottom"?(M=P.fullParams.tickTextRotate?"end":"middle",B="hanging"):P.fullDataFormatter.valueAxis.position==="top"&&(M=P.fullParams.tickTextRotate?"start":"middle",B="auto"),{textAnchor:M,dominantBaseline:B}})),S=o.pipe(L(h),R(P=>{let M="start",B="hanging";return P.groupAxis.position==="bottom"?B="auto":P.groupAxis.position==="top"?B="hanging":P.groupAxis.position==="left"?M="start":P.groupAxis.position==="right"&&(M="end"),P.valueAxis.position==="left"?M="end":P.valueAxis.position==="right"?M="start":P.valueAxis.position==="bottom"?B="hanging":P.valueAxis.position==="top"&&(B="auto"),{textAnchor:M,dominantBaseline:B}}));return Y({axisSelection:b,fullParams:i,tickTextAlign:A,axisLabelAlign:S,computedData:n,gridAxesSize:u,fullDataFormatter:o,fullChartParams:a,valueScale:_,textReverseTransform:v,textReverseTransformWithRotate:x,filteredMinMaxValue:r}).pipe(L(h),G(async P=>P)).subscribe(P=>{fB({selection:P.axisSelection,yAxisClassName:m,fullParams:P.fullParams,tickTextAlign:P.tickTextAlign,gridAxesSize:P.gridAxesSize,fullDataFormatter:P.fullDataFormatter,fullChartParams:P.fullChartParams,valueScale:P.valueScale,textReverseTransformWithRotate:P.textReverseTransformWithRotate,filteredMinMaxValue:P.filteredMinMaxValue}),cB({selection:P.axisSelection,textClassName:g,fullParams:P.fullParams,axisLabelAlign:P.axisLabelAlign,gridAxesSize:P.gridAxesSize,fullDataFormatter:P.fullDataFormatter,fullChartParams:P.fullChartParams,textReverseTransform:P.textReverseTransform})}),()=>{h.next(void 0)}},R$="ValueAxis",hB=st({name:R$,defaultParams:ma,layerIndex:bn,validator:(e,{validateColumns:t})=>t(e,{labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:e,name:t,observer:n,subject:r})=>{const i=new J,o=Ii(R$,{selection:e,computedData$:n.computedData$,filteredMinMaxValue$:n.filteredMinMaxValue$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridAxesReverseTransform$:n.gridAxesReverseTransform$,gridAxesSize$:n.gridAxesSize$,gridContainerPosition$:n.gridContainerPosition$,isSeriesSeprate$:n.isSeriesSeprate$});return()=>{i.next(void 0),o()}}),E$="StackedValueAxis",pB=st({name:E$,defaultParams:id,layerIndex:bn,validator:(e,{validateColumns:t})=>t(e,{labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:e,name:t,observer:n,subject:r})=>{const i=new J,o=Ii(E$,{selection:e,computedData$:n.computedStackedData$,filteredMinMaxValue$:n.filteredMinMaxValue$,fullParams$:n.fullParams$,fullDataFormatter$:n.fullDataFormatter$,fullChartParams$:n.fullChartParams$,gridAxesTransform$:n.gridAxesTransform$,gridAxesReverseTransform$:n.gridAxesReverseTransform$,gridAxesSize$:n.gridAxesSize$,gridContainerPosition$:n.gridContainerPosition$,isSeriesSeprate$:n.isSeriesSeprate$});return()=>{i.next(void 0),o()}});function I$(e,t){const n=t.textSizePx*1.5,i=(e==null?[]:Array.isArray(e)?e:typeof e=="string"?e.split(`
|
54
|
+
`):[e]).filter(o=>o!="").map((o,a)=>`<tspan x="0" y="${a*n}">${o}</tspan>`).join("");return i?`<text font-size="${t.textSize}" fill="${t.textColor}" x="0" y="0" style="dominant-baseline:text-before-edge">
|
55
|
+
${i}
|
56
|
+
</text>`:""}function dB({rootSelection:e,pluginName:t,gClassName:n,boxClassName:r,rootWidth:i,rootHeight:o,svgString:a,tooltipStyle:s,event:l}){e.interrupt("fadeout");const u=5,c=a?[a]:[],f=a?[s]:[],p=e.selectAll(`g.${n}`).data(c).join(A=>A.append("g").classed(n,!0).attr("pointer-events","none"),A=>A,A=>A.style("opacity",0).remove()).attr("transform",()=>`translate(${l.offsetX}, ${l.offsetY})`).selectAll(`g.${r}`).data(f).join(A=>A.append("g").classed(Z(t,"box"),!0)),d=p.selectAll("rect").data(f).join(A=>A.append("rect").attr("rx",u).attr("ry",u)).attr("fill",A=>A.backgroundColor).attr("stroke",A=>A.strokeColor).attr("opacity",A=>A.backgroundOpacity),m=p.selectAll("g").data(c).join(A=>A.append("g").classed(Z(t,"content"),!0).attr("transform",()=>`translate(${s.padding}, ${s.padding})`));c.length&&pI(m,c[0]);const g=m!=null&&m.node()?o$(m):{width:0,height:0};d.attr("width",g.width+s.padding*2).attr("height",g.height+s.padding*2);const y=p!=null&&p.node()?o$(p):{width:0,height:0},b=i-y.width,v=o-y.height,x=l.offsetX+s.offset[0]>b?b-l.offsetX:s.offset[0],_=l.offsetY+s.offset[1]>v?v-l.offsetY:s.offset[1];p.attr("transform",A=>`translate(${x}, ${_})`),p.attr("transform",A=>`translate(${x}, ${_})`)}const Bi=(e,{rootSelection:t,fullParams$:n,fullChartParams$:r,layout$:i,event$:o})=>{const a=new J,s=Z(e,"g"),l=Z(e,"box"),u=o.pipe(L(a),Rr(b=>b.eventName==="mouseover"||b.eventName==="mousemove")),c=o.pipe(L(a),Rr(b=>b.eventName==="mouseout")),f=QP(r),h=Y({fullChartParams:r,fullParams:n,textSizePx:f}).pipe(L(a),G(async b=>b),R(b=>({backgroundColor:be(b.fullParams.backgroundColorType,b.fullChartParams),backgroundOpacity:b.fullParams.backgroundOpacity,strokeColor:be(b.fullParams.strokeColorType,b.fullChartParams),offset:b.fullParams.offset,padding:b.fullParams.padding,textSize:b.fullChartParams.styles.textSize,textSizePx:b.textSizePx,textColor:be(b.fullParams.textColorType,b.fullChartParams),seriesColors:b.fullChartParams.colors[b.fullChartParams.colorScheme].label}))),p=Y({fullParams:n,tooltipStyle:h}).pipe(L(a),G(async b=>b),R(b=>v=>{const x=b.fullParams.renderFn(v,{utils:{measureTextWidth:fa},styles:b.tooltipStyle});if(typeof x=="string"){const _=x.trim();if(_.slice(0,1)==="<"&&_.slice(_.length-1,_.length)===">")return x;{const S=x.split(`
|
57
|
+
`);return I$(S,b.tooltipStyle)}}else if(Array.isArray(x))return I$(x,b.tooltipStyle);return""})),d=Y({event:u,contentRenderFn:p}).pipe(L(a),G(async b=>b),R(b=>b.contentRenderFn(b.event))),m=c.pipe(L(a),R(b=>"")),g=Bu(d,m).pipe(L(a),ee((b,v)=>b===v)),y=Bu(u,c).pipe(L(a),R(b=>b.event));return Y({svgString:g,eventTooltip:y,layout:i,tooltipStyle:h}).pipe(L(a),G(async b=>b)).subscribe(b=>{dB({rootSelection:t,pluginName:e,gClassName:s,boxClassName:l,rootWidth:b.layout.rootWidth,rootHeight:b.layout.rootHeight,svgString:b.svgString,tooltipStyle:b.tooltipStyle,event:b.eventTooltip})}),()=>{a.next(void 0)}},B$="GridTooltip",gB=st({name:B$,defaultParams:vu,layerIndex:Ri,validator:(e,{validateColumns:t})=>t(e,{backgroundColorType:{toBeOption:"ColorType"},backgroundOpacity:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},offset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},padding:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"},renderFn:{toBeTypes:["Function"]}})})(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=Bi(B$,{rootSelection:t,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}}),mB=st({name:"GridZoom",defaultParams:od,layerIndex:l$,validator:(e,{validateColumns:t})=>({status:"success",columnName:"",expectToBe:""})})(({selection:e,rootSelection:t,name:n,observer:r,subject:i})=>{const o=new J;let a={k:1,x:0,y:0};const s=r.computedData$.pipe(R(c=>c[0]?c[0].length-1:0),ee()),l=r.fullDataFormatter$.pipe(R(c=>c.groupAxis),Xi()),u=Y({initGroupAxis:l,groupMaxIndex:s,layout:r.layout$,axisSize:r.gridAxesSize$}).pipe(L(o),G(async c=>c),R(c=>{const f=c.initGroupAxis.scaleDomain[0]-c.initGroupAxis.scalePadding,h=c.initGroupAxis.scaleDomain[1]==="max"?c.groupMaxIndex+c.initGroupAxis.scalePadding:c.initGroupAxis.scaleDomain[1]+c.initGroupAxis.scalePadding;return ro({maxValue:c.groupMaxIndex,minValue:0,axisWidth:c.axisSize.width,scaleDomain:[f,h],scaleRange:[0,1]})}));return Y({initGroupScale:u,fullDataFormatter:r.fullDataFormatter$,groupMaxIndex:s}).pipe(L(o),G(async c=>c)).subscribe(c=>{const h=c.initGroupScale.copy(),p=yn().on("zoom",function(m){const g=m.transform,y=x=>{const _=Math.round(x);return Math.min(c.groupMaxIndex,Math.max(0,_))},b=c.fullDataFormatter.groupAxis.position==="bottom"||c.fullDataFormatter.groupAxis.position==="top"?g.rescaleX(h).domain().map(y):g.rescaleY(h).domain().map(y);b[0]<=0&&b[1]>=c.groupMaxIndex?g.k<a.k&&(g.k=a.k,g.x=a.x,g.y=a.y):b[1]-b[0]<=1&&g.k>a.k&&(g.k=a.k,g.x=a.x,g.y=a.y),a.k=g.k,a.x=g.x,a.y=g.y;const v={...c.fullDataFormatter,groupAxis:{...c.fullDataFormatter.groupAxis,scaleDomain:b}};i.dataFormatter$.next(v)});t.call(p)}),()=>{o.next(void 0),t.call(yn().on("zoom",null))}}),hu="GroupAux",wp=Z(hu,"label-box"),yB={name:hu,defaultParams:bu,layerIndex:u$,validator:(e,{validateColumns:t})=>t(e,{showLine:{toBeTypes:["boolean"]},showLabel:{toBeTypes:["boolean"]},lineDashArray:{toBeTypes:["string"]},lineColorType:{toBeOption:"ColorType"},labelColorType:{toBeOption:"ColorType"},labelTextColorType:{toBeOption:"ColorType"},labelTextFormat:{toBeTypes:["string","Function"]},labelPadding:{toBeTypes:["number"]},labelRotate:{toBeTypes:["number"]}})};function bB({groupLabel:e,axisX:t,axisHeight:n,fullParams:r}){return r.showLine&&e?[{id:e,x1:t,x2:t,y1:0,y2:n}]:[]}function xB({groupLabel:e,axisX:t,fullParams:n,textSizePx:r,rowAmount:i}){const o=wr(e,n.labelTextFormat),a=o.split(`
|
58
|
+
`),s=a.reduce((c,f)=>f.length>c.length?f:c,""),l=fa(s,r),u=r*a.length;return n.showLabel&&e?[{id:e,x:t,y:-n.labelPadding*i,text:o,textArr:a,textWidth:l,textHeight:u}]:[]}function vB({selection:e,pluginName:t,lineData:n,fullParams:r,fullChartParams:i}){const o=Z(t,"auxline");return e.selectAll(`line.${o}`).data(n).join(s=>s.append("line").classed(o,!0).style("stroke-width",1).style("pointer-events","none").style("vector-effect","non-scaling-stroke").attr("x1",l=>l.x1).attr("y1",l=>l.y1).attr("x2",l=>l.x2).attr("y2",l=>l.y2),s=>s.transition().duration(50).attr("x1",u=>u.x1).attr("y1",u=>u.y1).attr("x2",u=>u.x2).attr("y2",u=>u.y2),s=>s.remove()).style("stroke",s=>be(r.lineColorType,i)).style("stroke-dasharray",r.lineDashArray??"none")}function $B(e){e.selectAll("line").data([]).exit().remove()}function _B({selection:e,labelData:t,fullParams:n,fullDataFormatter:r,fullChartParams:i,textReverseTransformWithRotate:o,textSizePx:a}){return e.selectAll(`g.${wp}`).data(t).join(l=>l.append("g").classed(wp,!0).style("cursor","pointer").attr("transform",(u,c)=>`translate(${u.x}, ${u.y})`),l=>l.transition().duration(50).attr("transform",(c,f)=>`translate(${c.x}, ${c.y})`),l=>l.remove()).each((l,u,c)=>{const f=l.textWidth+12,h=l.textHeight+6;let p=-f/2,d=-2;r.groupAxis.position==="bottom"?(p=n.labelRotate?-f+h:-f/2,d=2):r.groupAxis.position==="left"?(p=-f+2,d=-h/2):r.groupAxis.position==="right"?(p=-2,d=-h/2):r.groupAxis.position==="top"&&(p=n.labelRotate?-f+h:-f/2,d=-h+2),V(c[u]).selectAll("rect").data([l]).join(m=>m.append("rect").style("cursor","pointer").attr("rx",5).attr("ry",5),m=>m,m=>m.remove()).attr("width",m=>`${f}px`).attr("height",`${h}px`).attr("fill",m=>be(n.labelColorType,i)).attr("x",p).attr("y",d-3).style("transform",o),V(c[u]).selectAll("text").data([l]).join(m=>m.append("text").style("dominant-baseline","hanging").style("cursor","pointer"),m=>m,m=>m.remove()).style("transform",o).attr("fill",m=>be(n.labelTextColorType,i)).attr("font-size",i.styles.textSize).attr("x",p+6).attr("y",d).each((m,g,y)=>{Sp(V(y[g]),{textArr:l.textArr,textSizePx:a,groupAxisPosition:r.groupAxis.position})})})}function SB(e){e.selectAll(`g.${wp}`).data([]).exit().remove()}const wB=st(yB)(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J;let a=!1;const s=t.insert("rect","g").classed(Z(hu,"rect"),!0).attr("opacity",0),{seriesSelection$:l,axesSelection$:u,defsSelection$:c,graphicGSelection$:f}=Tr({selection:e,pluginName:hu,clipPathID:"test",seriesLabels$:i.isSeriesSeprate$.pipe(G(_=>Wi(()=>_,i.seriesLabels$,i.seriesLabels$.pipe(R(A=>[A[0]]))))),gridContainerPosition$:i.gridContainerPosition$,gridAxesTransform$:i.gridAxesTransform$,gridGraphicTransform$:i.gridGraphicTransform$});i.layout$.pipe(L(o)).subscribe(_=>{s.attr("width",_.rootWidth).attr("height",_.rootHeight)});const h=Y({groupScaleDomainValue:i.groupScaleDomainValue$,gridAxesSize:i.gridAxesSize$}).pipe(L(o),G(async _=>_),R(_=>xr().domain(_.groupScaleDomainValue).range([0,_.gridAxesSize.width]))),p=i.fullChartParams$.pipe(L(o),R(_=>_.highlightTarget),ee()),d=ha(t,"mousemove").pipe(L(o)),m=Y({gridAxesReverseTransform:i.gridAxesReverseTransform$,gridContainerPosition:i.gridContainerPosition$}).pipe(L(o),G(async _=>_),R(_=>{const A=`rotateX(${_.gridAxesReverseTransform.rotateX}deg) rotateY(${_.gridAxesReverseTransform.rotateY}deg)`,S=`rotate(${_.gridAxesReverseTransform.rotate}deg)`,P=`scale(${1/_.gridContainerPosition[0].scale[0]}, ${1/_.gridContainerPosition[0].scale[1]})`;return`${A} ${S} ${P}`}),ee()),g=Y({textReverseTransform:m,fullParams:i.fullParams$}).pipe(L(o),G(async _=>_),R(_=>`${_.textReverseTransform} rotate(${_.fullParams.labelRotate}deg)`)),y=i.gridContainerPosition$.pipe(L(o),R(_=>_.reduce((S,P)=>P.columnIndex>S?P.columnIndex:S,0)+1),ee()),b=i.gridContainerPosition$.pipe(L(o),R(_=>_.reduce((S,P)=>P.rowIndex>S?P.rowIndex:S,0)+1),ee()),v=dI({rootSelection:t,fullDataFormatter$:i.fullDataFormatter$,gridAxesSize$:i.gridAxesSize$,computedData$:i.computedData$,fullChartParams$:i.fullChartParams$,gridContainerPosition$:i.gridContainerPosition$,layout$:i.layout$}).pipe(L(o));Y({axesSelection:u,columnAmount:y,rowAmount:b,layout:i.layout$,rootMousemove:d,gridGroupPosition:v,computedData:i.computedData$,groupScale:h,gridAxesSize:i.gridAxesSize$,fullParams:i.fullParams$,fullDataFormatter:i.fullDataFormatter$,fullChartParams:i.fullChartParams$,highlightTarget:p,textReverseTransformWithRotate:g,GroupDataMap:i.GroupDataMap$,textSizePx:i.textSizePx$}).pipe(L(o),G(async _=>_)).subscribe(_=>{const{groupIndex:A,groupLabel:S}=_.gridGroupPosition,P=_.groupScale(A)??0,M=bB({groupLabel:S,axisX:P,axisHeight:_.gridAxesSize.height,fullParams:_.fullParams});vB({selection:_.axesSelection,pluginName:n,lineData:M,fullParams:_.fullParams,fullChartParams:_.fullChartParams});const B=xB({groupLabel:S,axisX:P,fullParams:_.fullParams,textSizePx:_.textSizePx,rowAmount:_.rowAmount});_B({selection:_.axesSelection,labelData:B,fullParams:_.fullParams,fullDataFormatter:_.fullDataFormatter,fullChartParams:_.fullChartParams,textReverseTransformWithRotate:_.textReverseTransformWithRotate,textSizePx:_.textSizePx}).on("mouseover",(k,C)=>{k.stopPropagation(),a=!0,r.event$.next({type:"grid",pluginName:n,eventName:"mouseover",highlightTarget:_.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:_.GroupDataMap.get(S)??[],groupIndex:A,groupLabel:S,event:k,data:_.computedData})}).on("mousemove",(k,C)=>{k.stopPropagation(),r.event$.next({type:"grid",pluginName:n,eventName:"mousemove",highlightTarget:_.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:_.GroupDataMap.get(S)??[],groupIndex:A,groupLabel:S,event:k,data:_.computedData})}).on("mouseout",(k,C)=>{k.stopPropagation(),a=!1,r.event$.next({type:"grid",pluginName:n,eventName:"mouseout",highlightTarget:_.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:_.GroupDataMap.get(S)??[],groupIndex:A,groupLabel:S,event:k,data:_.computedData})}).on("click",(k,C)=>{k.stopPropagation(),r.event$.next({type:"grid",pluginName:n,eventName:"click",highlightTarget:_.highlightTarget,datum:null,gridIndex:0,series:[],seriesIndex:-1,seriesLabel:"",groups:_.GroupDataMap.get(S)??[],groupIndex:A,groupLabel:S,event:k,data:_.computedData})})});const x=ha(s,"mouseout").pipe(L(o));return Y({rootRectMouseout:x,axesSelection:u}).pipe(L(o),G(async _=>_)).subscribe(_=>{setTimeout(()=>{a!=!0&&($B(_.axesSelection),SB(_.axesSelection))})}),()=>{o.next(void 0),s.remove()}}),N$={placement:"bottom",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,gridList:[{listRectWidth:14,listRectHeight:14,listRectRadius:0}],textColorType:"primary"},Tp={labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!0,axisLineColorType:"primary",ticks:"all",tickFormat:e=>e,tickLineVisible:!0,tickPadding:20,tickFullLine:!1,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary",gridIndexes:[0]};Tp.tickFormat.toString=()=>"text => text";const pu={labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:4,tickFormat:",.0f",tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary",gridIndexes:[0]},TB={...pu},F$={barWidth:0,barPadding:1,barGroupPadding:40,barRadius:!1,gridIndexes:[0]},z$={barWidth:0,barGroupPadding:10,barRadius:!1,gridIndexes:[0]},O$={barWidth:0,barPadding:1,barGroupPadding:20,linearGradientOpacity:[1,0],gridIndexes:[0]},G$={lineCurve:"curveLinear",lineWidth:2,gridIndexes:[1]},Y$={lineCurve:"curveLinear",linearGradientOpacity:[1,0],gridIndexes:[1]},W$={radius:4,fillColorType:"white",strokeColorType:"label",strokeWidth:2,onlyShowHighlighted:!1,gridIndexes:[1]},Ap={firstAxis:{labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:4,tickFormat:",.0f",tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary"},secondAxis:{labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:4,tickFormat:",.0f",tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextRotate:0,tickTextColorType:"primary"},gridIndexes:[0,1]},X$={...Ap},Pp={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,renderFn:(e,{styles:t,utils:n})=>{const r=t.textSizePx*.7,i=t.textSizePx/2-r/2,o=`<g><text dominant-baseline="hanging" font-size="${t.textSizePx}">${e.groupLabel}</text></g>`,a=e.groups.reduce((c,f)=>{const h=`${f.seriesLabel}${f.value}`;return h.length>c.length?h:c},""),l=n.measureTextWidth(a,t.textSizePx)+t.textSizePx*2,u=e.groups.map((c,f)=>{const h=f*t.textSizePx*1.5,p=c.id===(e.datum&&e.datum.id);return`<g transform="translate(0, ${t.textSizePx*2})">
|
59
|
+
<rect width="${r}" height="${r}" x="${i}" y="${h+i}" rx="${r/2}" fill="${c.color}"></rect>
|
60
|
+
<text x="${t.textSizePx*1.5}" y="${h}" font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
61
|
+
<tspan font-weight="${p?"bold":""}">${c.seriesLabel}</tspan>
|
62
|
+
<tspan font-weight="bold" text-anchor="end" x="${l}">${c.value}</tspan>
|
63
|
+
</text>
|
64
|
+
</g>`}).join("");return`${o}
|
65
|
+
${u}`}};Pp.renderFn.toString=()=>`(eventData, { styles, utils }) => {
|
66
|
+
const bulletWidth = styles.textSizePx * 0.7
|
67
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
68
|
+
|
69
|
+
const titleSvg = \`<g><text dominant-baseline="hanging" font-size="\${styles.textSizePx}">\${eventData.groupLabel}</text></g>\`
|
70
|
+
const maxLengthText = eventData.groups.reduce((acc, group) => {
|
71
|
+
const text = \`\${group.seriesLabel}\${group.value}\`
|
72
|
+
return text.length > acc.length ? text : acc
|
73
|
+
}, '')
|
74
|
+
const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
|
75
|
+
const lineEndX = maxTextWidth + styles.textSizePx * 2
|
76
|
+
const contentSvg = eventData.groups
|
77
|
+
.map((group, i) => {
|
78
|
+
const y = i * styles.textSizePx * 1.5
|
79
|
+
const isHighlight = group.id === (eventData.datum && eventData.datum.id)
|
80
|
+
return \`<g transform="translate(0, \${styles.textSizePx * 2})">
|
81
|
+
<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${y + offset}" rx="\${bulletWidth / 2}" fill="\${group.color}"></rect>
|
82
|
+
<text x="\${styles.textSizePx * 1.5}" y="\${y}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
83
|
+
<tspan font-weight="\${isHighlight ? 'bold' : ''}">\${group.seriesLabel}</tspan>
|
84
|
+
<tspan font-weight="bold" text-anchor="end" x="\${lineEndX}">\${group.value}</tspan>
|
85
|
+
</text>
|
86
|
+
</g>\`
|
87
|
+
})
|
88
|
+
.join('')
|
89
|
+
return \`\${titleSvg}
|
90
|
+
\${contentSvg}\`
|
91
|
+
}`;const V$="MultiGridLegend",AB=dt({name:V$,defaultParams:N$,layerIndex:ki,validator:(e,{validateColumns:t})=>{const n=t(e,{placement:{toBe:'"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',test:r=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].includes(r)},padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},gridList:{toBeTypes:["object[]"]},textColorType:{toBeOption:"ColorType"}});if(e.gridList){const i=e.gridList.map((o,a)=>t(o,{listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]}})).find(o=>o.status==="error");if(i)return i}return n}})(({selection:e,rootSelection:t,observer:n,subject:r})=>{const i=new J,o=n.multiGridEachDetail$.pipe(L(i),R(u=>u.map((f,h)=>f.SeriesDataMap$.pipe(R(p=>Array.from(p.keys()))))),G(u=>Y(u)),R(u=>u.flat())),a=Y({fullParams:n.fullParams$,computedData:n.computedData$}).pipe(L(i),G(async u=>u),R(u=>u.computedData.map((c,f)=>{const h=Fu(u.fullParams.gridList[f]??{},{listRectWidth:u.fullParams.listRectWidth,listRectHeight:u.fullParams.listRectHeight,listRectRadius:u.fullParams.listRectRadius});return c.map(p=>h)}).flat())),s=Y({fullParams:n.fullParams$,seriesList:a}).pipe(L(i),G(async u=>u),R(u=>({...u.fullParams,labelList:u.seriesList}))),l=Ei(V$,{rootSelection:t,legendLabels$:o,fullParams$:s,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),l()}}),Ft=e=>{const t=e.fullParams$.pipe(R(n=>n.gridIndexes),ee(),pe(1));return Y({multiGridEachDetail:e.multiGridEachDetail$,gridIndexes:t}).pipe(R(n=>n.gridIndexes==="all"?n.multiGridEachDetail:n.gridIndexes.map(r=>n.multiGridEachDetail[r]??n.multiGridEachDetail[0])))},Dp="MultiBars",U$=Z(Dp,"grid"),PB=dt({name:Dp,defaultParams:F$,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[];return Ft(r).pipe(L(i)).subscribe(s=>{o.forEach(l=>l()),e.selectAll(`g.${U$}`).data(s).join("g").attr("class",U$).each((l,u,c)=>{const f=V(c[u]),h=l.dataFormatter$.pipe(L(i),R(p=>p.separateSeries),ee(),pe(1));o[u]=_p(Dp,{selection:f,computedData$:l.computedData$,visibleComputedData$:l.visibleComputedData$,computedLayoutData$:l.computedLayoutData$,visibleComputedLayoutData$:l.visibleComputedLayoutData$,seriesLabels$:l.seriesLabels$,SeriesDataMap$:l.SeriesDataMap$,GroupDataMap$:l.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:l.gridAxesTransform$,gridGraphicTransform$:l.gridGraphicTransform$,gridGraphicReverseScale$:l.gridGraphicReverseScale$,gridAxesSize$:l.gridAxesSize$,gridHighlight$:l.gridHighlight$,gridContainerPosition$:l.gridContainerPosition$,isSeriesSeprate$:h,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Mp="MultiStackedBar",H$=Z(Mp,"grid"),DB=dt({name:Mp,defaultParams:z$,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},barWidth:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},barRadius:{toBeTypes:["number","boolean"]}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[];return Ft(r).pipe(L(i)).subscribe(s=>{o.forEach(l=>l()),e.selectAll(`g.${H$}`).data(s).join("g").attr("class",H$).each((l,u,c)=>{const f=V(c[u]),h=l.dataFormatter$.pipe(L(i),R(p=>p.separateSeries),ee(),pe(1));o[u]=x$(Mp,{selection:f,computedData$:l.computedData$,visibleComputedData$:l.visibleComputedData$,computedLayoutData$:l.computedLayoutData$,visibleComputedLayoutData$:l.visibleComputedLayoutData$,seriesLabels$:l.seriesLabels$,SeriesDataMap$:l.SeriesDataMap$,GroupDataMap$:l.GroupDataMap$,fullParams$:r.fullParams$,fullDataFormatter$:l.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:l.gridAxesTransform$,gridGraphicTransform$:l.gridGraphicTransform$,gridGraphicReverseScale$:l.gridGraphicReverseScale$,gridAxesSize$:l.gridAxesSize$,gridHighlight$:l.gridHighlight$,gridContainerPosition$:l.gridContainerPosition$,isSeriesSeprate$:h,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Cp="MultiBarsTriangle",j$=Z(Cp,"grid"),MB=dt({name:Cp,defaultParams:O$,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},barWidth:{toBeTypes:["number"]},barPadding:{toBeTypes:["number"]},barGroupPadding:{toBeTypes:["number"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[];return Ft(r).pipe(L(i)).subscribe(s=>{o.forEach(l=>l()),e.selectAll(`g.${j$}`).data(s).join("g").attr("class",j$).each((l,u,c)=>{const f=V(c[u]),h=l.dataFormatter$.pipe(L(i),R(p=>p.separateSeries),ee(),pe(1));o[u]=S$(Cp,{selection:f,computedData$:l.computedData$,visibleComputedData$:l.visibleComputedData$,computedLayoutData$:l.computedLayoutData$,visibleComputedLayoutData$:l.visibleComputedLayoutData$,seriesLabels$:l.seriesLabels$,SeriesDataMap$:l.SeriesDataMap$,GroupDataMap$:l.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,fullDataFormatter$:l.dataFormatter$,gridAxesTransform$:l.gridAxesTransform$,gridGraphicTransform$:l.gridGraphicTransform$,gridAxesSize$:l.gridAxesSize$,gridHighlight$:l.gridHighlight$,gridContainerPosition$:l.gridContainerPosition$,isSeriesSeprate$:h,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Lp="MultiLines",q$=Z(Lp,"grid"),CB=dt({name:Lp,defaultParams:G$,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},lineCurve:{toBeTypes:["string"]},lineWidth:{toBeTypes:["number"]}})})(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=[],s=i.multiGridContainerPosition$.pipe(L(o),R(u=>u.flat()));return Ft(i).pipe(L(o)).subscribe(u=>{a.forEach(c=>c()),e.selectAll(`g.${q$}`).data(u).join("g").attr("class",q$).each((c,f,h)=>{const p=V(h[f]);a[f]=s$(Lp,{selection:p,computedData$:c.computedData$,computedLayoutData$:c.computedLayoutData$,visibleComputedData$:c.visibleComputedData$,visibleComputedLayoutData$:c.visibleComputedLayoutData$,seriesLabels$:c.seriesLabels$,SeriesDataMap$:c.SeriesDataMap$,GroupDataMap$:c.GroupDataMap$,fullDataFormatter$:c.dataFormatter$,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,gridAxesTransform$:c.gridAxesTransform$,gridGraphicTransform$:c.gridGraphicTransform$,gridAxesSize$:c.gridAxesSize$,gridHighlight$:c.gridHighlight$,gridContainerPosition$:c.gridContainerPosition$,allContainerPosition$:s,layout$:i.layout$,event$:r.event$})})}),()=>{o.next(void 0),a.forEach(u=>u())}}),kp="MultiLineAreas",Z$=Z(kp,"grid"),LB=dt({name:kp,defaultParams:Y$,layerIndex:c$,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},lineCurve:{toBeTypes:["string"]},linearGradientOpacity:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[],a=r.multiGridContainerPosition$.pipe(L(i),R(l=>l.flat()));return Ft(r).pipe(L(i)).subscribe(l=>{o.forEach(u=>u()),e.selectAll(`g.${Z$}`).data(l).join("g").attr("class",Z$).each((u,c,f)=>{const h=V(f[c]);o[c]=h$(kp,{selection:h,computedData$:u.computedData$,computedLayoutData$:u.computedLayoutData$,visibleComputedData$:u.visibleComputedData$,visibleComputedLayoutData$:u.visibleComputedLayoutData$,seriesLabels$:u.seriesLabels$,SeriesDataMap$:u.SeriesDataMap$,GroupDataMap$:u.GroupDataMap$,fullDataFormatter$:u.dataFormatter$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:u.gridAxesTransform$,gridGraphicTransform$:u.gridGraphicTransform$,gridAxesSize$:u.gridAxesSize$,gridHighlight$:u.gridHighlight$,gridContainerPosition$:u.gridContainerPosition$,allContainerPosition$:a,layout$:r.layout$,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(l=>l())}}),Rp="MultiDots",K$=Z(Rp,"grid"),kB=dt({name:Rp,defaultParams:W$,layerIndex:fu,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},radius:{toBeTypes:["number"]},fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},onlyShowHighlighted:{toBeTypes:["boolean"]}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[];return Ft(r).pipe(L(i)).subscribe(s=>{o.forEach(l=>l()),e.selectAll(`g.${K$}`).data(s).join("g").attr("class",K$).each((l,u,c)=>{const f=V(c[u]);o[u]=T$(Rp,{selection:f,computedData$:l.computedData$,visibleComputedData$:l.visibleComputedData$,computedLayoutData$:l.computedLayoutData$,visibleComputedLayoutData$:l.visibleComputedLayoutData$,seriesLabels$:l.seriesLabels$,SeriesDataMap$:l.SeriesDataMap$,GroupDataMap$:l.GroupDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:l.gridAxesTransform$,gridGraphicTransform$:l.gridGraphicTransform$,gridGraphicReverseScale$:l.gridGraphicReverseScale$,gridAxesSize$:l.gridAxesSize$,gridHighlight$:l.gridHighlight$,gridContainerPosition$:l.gridContainerPosition$,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Ep="MultiGroupAxis",Q$=Z(Ep,"grid"),RB=dt({name:Ep,defaultParams:Tp,layerIndex:bn,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBe:'number | null | "all"',test:r=>r===null||r==="all"||typeof r=="number"},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[];return Ft(r).pipe(L(i)).subscribe(s=>{o.forEach(l=>l()),e.selectAll(`g.${Q$}`).data(s).join("g").attr("class",Q$).each((l,u,c)=>{const f=V(c[u]),h=l.dataFormatter$.pipe(L(i),R(p=>p.separateSeries),ee(),pe(1));o[u]=L$(Ep,{selection:f,computedData$:l.computedData$,fullParams$:r.fullParams$,fullDataFormatter$:l.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:l.gridAxesTransform$,gridAxesReverseTransform$:l.gridAxesReverseTransform$,gridAxesSize$:l.gridAxesSize$,gridContainerPosition$:l.gridContainerPosition$,isSeriesSeprate$:h,textSizePx$:r.textSizePx$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Ip="MultiValueAxis",J$=Z(Ip,"grid"),EB=dt({name:Ip,defaultParams:pu,layerIndex:bn,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[];return Ft(r).pipe(L(i)).subscribe(s=>{o.forEach(l=>l()),e.selectAll(`g.${J$}`).data(s).join("g").attr("class",J$).each((l,u,c)=>{const f=V(c[u]),h=l.dataFormatter$.pipe(L(i),R(p=>p.separateSeries),ee(),pe(1));o[u]=Ii(Ip,{selection:f,computedData$:l.computedData$,filteredMinMaxValue$:l.filteredMinMaxValue$,fullParams$:r.fullParams$,fullDataFormatter$:l.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:l.gridAxesTransform$,gridAxesReverseTransform$:l.gridAxesReverseTransform$,gridAxesSize$:l.gridAxesSize$,gridContainerPosition$:l.gridContainerPosition$,isSeriesSeprate$:h})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),e2="MultiGridTooltip",IB=dt({name:e2,defaultParams:Pp,layerIndex:Ri,validator:(e,{validateColumns:t})=>t(e,{backgroundColorType:{toBeOption:"ColorType"},backgroundOpacity:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},offset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},padding:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"},renderFn:{toBeTypes:["Function"]}})})(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=Bi(e2,{rootSelection:t,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}}),Bp="MultiStackedValueAxis",t2=Z(Bp,"grid"),BB=dt({name:Bp,defaultParams:pu,layerIndex:bn,validator:(e,{validateColumns:t})=>t(e,{gridIndexes:{toBe:'number[] | "all"',test:r=>r==="all"||Array.isArray(r)&&r.every(i=>typeof i=="number")},labelOffset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}})})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[];return Ft(r).pipe(L(i)).subscribe(s=>{o.forEach(l=>l()),e.selectAll(`g.${t2}`).data(s).join("g").attr("class",t2).each((l,u,c)=>{const f=V(c[u]),h=l.dataFormatter$.pipe(L(i),R(p=>p.separateSeries),ee(),pe(1));o[u]=Ii(Bp,{selection:f,computedData$:l.computedStackedData$,filteredMinMaxValue$:l.filteredMinMaxValue$,fullParams$:r.fullParams$,fullDataFormatter$:l.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:l.gridAxesTransform$,gridAxesReverseTransform$:l.gridAxesReverseTransform$,gridAxesSize$:l.gridAxesSize$,gridContainerPosition$:l.gridContainerPosition$,isSeriesSeprate$:h})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Np="OverlappingValueAxes",n2=Z(Np,"grid"),NB=dt({name:Np,defaultParams:Ap,layerIndex:bn,validator:(e,{validateColumns:t})=>{const n=t(e,{firstAxis:{toBeTypes:["object"]},secondAxis:{toBeTypes:["object"]},gridIndexes:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2}});if(e.firstAxis){const r=t(e.firstAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}if(e.secondAxis){const r=t(e.secondAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}return n}})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[],a=r.fullParams$.pipe(L(i),R(c=>c.gridIndexes[0])),s=r.fullParams$.pipe(L(i),R(c=>c.gridIndexes[1])),l=Y({firstGridIndex:a,secondGridIndex:s,fullDataFormatter:r.fullDataFormatter$}).pipe(L(i),G(async c=>c),R(c=>{c.fullDataFormatter.gridList[c.secondGridIndex]||(c.fullDataFormatter.gridList[c.secondGridIndex]=Object.assign({},c.fullDataFormatter.gridList[c.firstGridIndex]));const f=c.fullDataFormatter.gridList[c.firstGridIndex].valueAxis.position;let h=f;return f==="left"?h="right":f==="bottom"?h="top":f==="top"?h="bottom":f==="right"&&(h="left"),{type:"grid",visibleFilter:c.fullDataFormatter.visibleFilter,...c.fullDataFormatter.gridList[c.secondGridIndex],valueAxis:{...c.fullDataFormatter.gridList[c.secondGridIndex].valueAxis,position:h},container:{...c.fullDataFormatter.container}}}));return _a(r).pipe(L(i),R(c=>({...c,fullParams$:c.fullParams$.pipe(R(f=>(f.gridIndexes.length>2&&(f.gridIndexes.length=2),f)))})),G(c=>Ft(c)),R(c=>c.map((f,h)=>{if(h===0)return f;const p=p0({fullDataFormatter$:l,layout$:r.layout$}),d=d0({gridAxesTransform$:p}),m=h0({computedData$:f.computedData$,fullDataFormatter$:l,layout$:r.layout$});return{...f,dataFormatter$:l,gridAxesTransform$:p,gridAxesReverseTransform$:d,gridContainerPosition$:m}}))).pipe(L(i)).subscribe(c=>{o.forEach(f=>f()),e.selectAll(`g.${n2}`).data(c).join("g").attr("class",n2).each((f,h,p)=>{if(h>1)return;const d=V(p[h]);o[h]=Ii(Np,{selection:d,computedData$:f.computedData$,filteredMinMaxValue$:f.filteredMinMaxValue$,fullParams$:r.fullParams$.pipe(R(m=>h===0?m.firstAxis:m.secondAxis)),fullDataFormatter$:f.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:f.gridAxesTransform$,gridAxesReverseTransform$:f.gridAxesReverseTransform$,gridAxesSize$:f.gridAxesSize$,gridContainerPosition$:f.gridContainerPosition$,isSeriesSeprate$:f.isSeriesSeprate$})})}),()=>{i.next(void 0),o.forEach(c=>c())}}),Fp="OverlappingStackedValueAxes",r2=Z(Fp,"grid"),FB=dt({name:Fp,defaultParams:X$,layerIndex:bn,validator:(e,{validateColumns:t})=>{const n=t(e,{firstAxis:{toBeTypes:["object"]},secondAxis:{toBeTypes:["object"]},gridIndexes:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2}});if(e.firstAxis){const r=t(e.firstAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}if(e.secondAxis){const r=t(e.secondAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextRotate:{toBeTypes:["number"]},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}return n}})(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=[],a=r.fullParams$.pipe(L(i),R(c=>c.gridIndexes[0])),s=r.fullParams$.pipe(L(i),R(c=>c.gridIndexes[1])),l=Y({firstGridIndex:a,secondGridIndex:s,fullDataFormatter:r.fullDataFormatter$}).pipe(L(i),G(async c=>c),R(c=>{c.fullDataFormatter.gridList[c.secondGridIndex]||(c.fullDataFormatter.gridList[c.secondGridIndex]=Object.assign({},c.fullDataFormatter.gridList[c.firstGridIndex]));const f=c.fullDataFormatter.gridList[c.firstGridIndex].valueAxis.position;let h=f;return f==="left"?h="right":f==="bottom"?h="top":f==="top"?h="bottom":f==="right"&&(h="left"),{type:"grid",visibleFilter:c.fullDataFormatter.visibleFilter,...c.fullDataFormatter.gridList[c.secondGridIndex],valueAxis:{...c.fullDataFormatter.gridList[c.secondGridIndex].valueAxis,position:h},container:{...c.fullDataFormatter.container}}}));return _a(r).pipe(L(i),R(c=>({...c,fullParams$:c.fullParams$.pipe(R(f=>(f.gridIndexes.length>2&&(f.gridIndexes.length=2),f)))})),G(c=>Ft(c)),R(c=>c.map((f,h)=>{if(h===0)return f;const p=p0({fullDataFormatter$:l,layout$:r.layout$}),d=d0({gridAxesTransform$:p}),m=h0({computedData$:f.computedData$,fullDataFormatter$:l,layout$:r.layout$});return{...f,dataFormatter$:l,gridAxesTransform$:p,gridAxesReverseTransform$:d,gridContainerPosition$:m}}))).pipe(L(i)).subscribe(c=>{o.forEach(f=>f()),e.selectAll(`g.${r2}`).data(c).join("g").attr("class",r2).each((f,h,p)=>{if(h>1)return;const d=V(p[h]);o[h]=Ii(Fp,{selection:d,computedData$:h===0?f.computedStackedData$:f.computedData$,filteredMinMaxValue$:f.filteredMinMaxValue$,fullParams$:r.fullParams$.pipe(R(m=>h===0?m.firstAxis:m.secondAxis)),fullDataFormatter$:f.dataFormatter$,fullChartParams$:r.fullChartParams$,gridAxesTransform$:f.gridAxesTransform$,gridAxesReverseTransform$:f.gridAxesReverseTransform$,gridAxesSize$:f.gridAxesSize$,gridContainerPosition$:f.gridContainerPosition$,isSeriesSeprate$:f.isSeriesSeprate$})})}),()=>{i.next(void 0),o.forEach(c=>c())}}),i2={placement:"bottom",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,textColorType:"primary"},zp={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,renderFn:(e,{styles:t,utils:n})=>{const r=e.categoryLabel!=="",i=e.datum.label.slice(0,11)!=="multiValue_",o=t.textSizePx*.7,a=t.textSizePx/2-o/2,s=r?`<rect width="${o}" height="${o}" x="${a}" y="${a-1}" rx="${o/2}" fill="${e.datum.color}"></rect>
|
92
|
+
<text x="${t.textSizePx*1.5}" font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
93
|
+
<tspan>${e.categoryLabel}</tspan>
|
94
|
+
</text>`:"",l=i?`<tspan>${e.datum.label}</tspan> `:"",u=`<text font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
95
|
+
${l}<tspan font-weight="bold">${e.datum.value}</tspan>
|
96
|
+
</text>`;return`${s}
|
97
|
+
<g ${r?`transform="translate(0, ${t.textSizePx*2})"`:""}>
|
98
|
+
${u}
|
99
|
+
</g>`}};zp.renderFn.toString=()=>`(eventData, { styles, utils }) => {
|
100
|
+
const hasCategoryLabel = eventData.categoryLabel === '' ? false : true
|
101
|
+
const hasDatumLabel = eventData.datum.label.slice(0, 11) === 'multiValue_' ? false : true
|
102
|
+
const bulletWidth = styles.textSizePx * 0.7
|
103
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
104
|
+
const categorySvg = hasCategoryLabel
|
105
|
+
? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
|
106
|
+
<text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
107
|
+
<tspan>\${eventData.categoryLabel}</tspan>
|
108
|
+
</text>\`
|
109
|
+
: ''
|
110
|
+
const datumLabelSvg = hasDatumLabel
|
111
|
+
? \`<tspan>\${eventData.datum.label}</tspan> \`
|
112
|
+
: ''
|
113
|
+
const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
114
|
+
\${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
|
115
|
+
</text>\`
|
116
|
+
|
117
|
+
return \`\${categorySvg}
|
118
|
+
<g \${hasCategoryLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
|
119
|
+
\${datumSvg}
|
120
|
+
</g>\`
|
121
|
+
}`;const o2={radius:5,fillColorType:"label",strokeColorType:"label",strokeWidth:0},a2={fillColorType:"label",strokeColorType:"label",strokeWidth:0,valueLinearOpacity:[.8,.8],arcScaleType:"area",sizeAdjust:.5},du={xAxis:{showLine:!0,showLabel:!0,lineDashArray:"3, 3",lineColorType:"primary",labelColorType:"primary",labelTextColorType:"background",labelTextFormat:e=>String(Math.round(e)),labelPadding:20},yAxis:{showLine:!0,showLabel:!0,lineDashArray:"3, 3",lineColorType:"primary",labelColorType:"primary",labelTextColorType:"background",labelTextFormat:e=>String(Math.round(e)),labelPadding:20}};du.xAxis.labelTextFormat.toString=()=>"(value: number) => String(Math.round(value))",du.yAxis.labelTextFormat.toString=()=>"(value: number) => String(Math.round(value))";const gu={xAxis:{labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:null,tickFormat:e=>e,tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextColorType:"primary"},yAxis:{labelOffset:[0,0],labelColorType:"primary",axisLineVisible:!1,axisLineColorType:"primary",ticks:null,tickFormat:e=>e,tickLineVisible:!0,tickPadding:20,tickFullLine:!0,tickFullLineDasharray:"none",tickColorType:"secondary",tickTextColorType:"primary"}};gu.xAxis.tickFormat.toString=()=>"v => v",gu.yAxis.tickFormat.toString=()=>"v => v";const s2={},l2="MultiValueLegend",zB=Hn({name:l2,defaultParams:i2,layerIndex:ki,validator:(e,{validateColumns:t})=>t(e,{placement:{toBe:'"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',test:r=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].includes(r)},padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:e,rootSelection:t,observer:n,subject:r})=>{const i=new J,o=n.CategoryDataMap$.pipe(L(i),R(l=>Array.from(l.keys()))),a=n.fullParams$.pipe(L(i),R(l=>{const u=[{listRectWidth:l.listRectWidth,listRectHeight:l.listRectHeight,listRectRadius:l.listRectRadius}];return{...l,labelList:u}})),s=Ei(l2,{rootSelection:t,legendLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}}),u2="MultiValueTooltip",OB=Hn({name:u2,defaultParams:zp,layerIndex:Ri,validator:(e,{validateColumns:t})=>t(e,{backgroundColorType:{toBeOption:"ColorType"},backgroundOpacity:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},offset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},padding:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"},renderFn:{toBeTypes:["Function"]}})})(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=Bi(u2,{rootSelection:t,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}}),Op=({selection:e,pluginName:t,clipPathID:n,categoryLabels$:r,multiValueContainerPosition$:i,multiValueGraphicTransform$:o})=>{const a=Z(t,"category"),s=Z(t,"axes"),l=Z(t,"graphic"),u=r.pipe(R((p,d)=>e.selectAll(`g.${a}`).data(p,m=>m).join(m=>m.append("g").classed(a,!0).each((g,y,b)=>{V(b[y]).selectAll(`g.${s}`).data([y]).join(v=>v.append("g").classed(s,!0).attr("clip-path",`url(#${n})`).each((x,_,A)=>{V(A[_]).selectAll("defs").data([_]).join("defs"),V(A[_]).selectAll("g").data([_]).join("g").classed(l,!0)}),v=>v,v=>v.remove())}),m=>m,m=>m.remove())),pe(1));Y({categorySelection:u,multiValueContainerPosition:i}).pipe(G(async p=>p)).subscribe(p=>{p.categorySelection.transition().attr("transform",(d,m)=>{const g=p.multiValueContainerPosition[m]??p.multiValueContainerPosition[0],y=g.translate,b=g.scale;return`translate(${y[0]}, ${y[1]}) scale(${b[0]}, ${b[1]})`})});const c=u.pipe(R(p=>p.select(`g.${s}`)),pe(1)),f=c.pipe(R(p=>p.select("defs")),pe(1)),h=Y({axesSelection:c,multiValueGraphicTransform:o}).pipe(G(async p=>p),R(p=>{const d=p.axesSelection.select(`g.${l}`);return d.transition().duration(50).style("transform",p.multiValueGraphicTransform.value),d}),pe(1));return{categorySelection$:u,axesSelection$:c,defsSelection$:f,graphicGSelection$:h}},GB=({rootSelection:e,fullDataFormatter$:t,filteredMinMaxXYData$:n,multiValueContainerPosition$:r,layout$:i})=>{const o=ha(e,"mousemove").pipe(U_(2)),a=r.pipe(R(c=>c.reduce((h,p)=>p.columnIndex>h?p.columnIndex:h,0)+1),ee(),pe(1)),s=r.pipe(R(c=>c.reduce((h,p)=>p.rowIndex>h?p.rowIndex:h,0)+1),ee(),pe(1)),l=new de(c=>{Y({layout:i,filteredMinMaxXYData:n,fullDataFormatter:t,columnAmount:a,rowAmount:s}).pipe(G(async f=>f)).subscribe(f=>{if(!f.filteredMinMaxXYData.minXDatum||!f.filteredMinMaxXYData.maxXDatum||f.filteredMinMaxXYData.minXDatum.value[0]==null||f.filteredMinMaxXYData.maxXDatum.value[0]==null||!f.filteredMinMaxXYData.minYDatum||!f.filteredMinMaxXYData.maxYDatum||f.filteredMinMaxXYData.minYDatum.value[1]==null||f.filteredMinMaxXYData.maxYDatum.value[1]==null)return;const h=c0({maxValue:f.filteredMinMaxXYData.maxXDatum.value[0],minValue:f.filteredMinMaxXYData.minXDatum.value[0],axisWidth:f.layout.width,scaleDomain:f.fullDataFormatter.xAxis.scaleDomain,scaleRange:f.fullDataFormatter.xAxis.scaleRange}),p=c0({maxValue:f.filteredMinMaxXYData.maxYDatum.value[1],minValue:f.filteredMinMaxXYData.minYDatum.value[1],axisWidth:f.layout.height,scaleDomain:f.fullDataFormatter.yAxis.scaleDomain,scaleRange:f.fullDataFormatter.yAxis.scaleRange,reverse:!0});c.next({xScale:h,yScale:p})})}),u=Y({fullDataFormatter:t,rootMousemove:o,columnAmount:a,rowAmount:s,layout:i,multiValueContainerPosition:r}).pipe(G(async c=>c),R(c=>({x:(c.rootMousemove.offsetX-c.layout.left)/c.multiValueContainerPosition[0].scale[0]%(c.layout.rootWidth/c.columnAmount/c.multiValueContainerPosition[0].scale[0]),y:(c.rootMousemove.offsetY-c.layout.top)/c.multiValueContainerPosition[0].scale[1]%(c.layout.rootHeight/c.rowAmount/c.multiValueContainerPosition[0].scale[1])})));return Y({xyScale:l,axisValue:u}).pipe(G(async c=>c),R(c=>({x:c.axisValue.x,y:c.axisValue.y,xValue:c.xyScale.xScale(c.axisValue.x),yValue:c.xyScale.yScale(c.axisValue.y)})))},xn="Scatter",YB={name:xn,defaultParams:o2,layerIndex:fu,validator:(e,{validateColumns:t})=>t(e,{radius:{toBeTypes:["number"]},fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]}})};function WB({graphicGSelection:e,circleGClassName:t,circleClassName:n,visibleComputedLayoutData:r,fullParams:i,fullChartParams:o,graphicReverseScale:a}){const s=c=>{const f=c.size();return o.transitionDuration/f};let l=0;return e.each((c,f,h)=>{V(h[f]).selectAll("g").data(r[f],p=>p.id).join(p=>(l=s(p),p.append("g").classed(t,!0)),p=>p,p=>p.remove()).attr("transform",p=>`translate(${p.axisX}, ${p.axisY})`).each((p,d,m)=>{V(m[d]).selectAll("circle").data([p]).join(g=>g.append("circle").style("cursor","pointer").style("vector-effect","non-scaling-stroke").classed(n,!0).attr("opacity",0).transition().delay((y,b)=>d*l).attr("opacity",1),g=>g.transition().duration(50).attr("opacity",1),g=>g.remove()).attr("r",i.radius).attr("fill",(g,y)=>Me({datum:g,colorType:i.fillColorType,fullChartParams:o})).attr("stroke",(g,y)=>Me({datum:g,colorType:i.strokeColorType,fullChartParams:o})).attr("stroke-width",i.strokeWidth).attr("transform",`scale(${a[f][0]??1}, ${a[f][1]??1})`)})}),e.selectAll(`circle.${n}`)}function XB({selection:e,ids:t,fullChartParams:n}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").duration(200).style("opacity",1);return}e.each((r,i,o)=>{t.includes(r.id)?V(o[i]).style("opacity",1).transition("highlight").duration(200):V(o[i]).style("opacity",n.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function VB({defsSelection:e,clipPathData:t}){e.selectAll("clipPath").data(t).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join("rect").attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}const UB=Hn(YB)(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=Pt(xn,"clipPath-box"),a=Z(xn,"circleG"),s=Z(xn,"circle"),{categorySelection$:l,axesSelection$:u,defsSelection$:c,graphicGSelection$:f}=Op({selection:e,pluginName:xn,clipPathID:o,categoryLabels$:r.categoryLabels$,multiValueContainerPosition$:r.multiValueContainerPosition$,multiValueGraphicTransform$:r.multiValueGraphicTransform$}),h=Y({computedData:r.computedData$,multiValueGraphicReverseScale:r.multiValueGraphicReverseScale$}).pipe(L(i),G(async m=>m),R(m=>m.computedData.map((g,y)=>m.multiValueGraphicReverseScale[y])));Y({defsSelection:c,layout:r.layout$}).pipe(L(i),G(async m=>m)).subscribe(m=>{const g=[{id:o,width:m.layout.width,height:m.layout.height}];VB({defsSelection:m.defsSelection,clipPathData:g})});const p=Y({graphicGSelection:f,visibleComputedLayoutData:r.visibleComputedLayoutData$,graphicReverseScale:h,fullChartParams:r.fullChartParams$,fullParams:r.fullParams$}).pipe(L(i),G(async m=>m),R(m=>WB({graphicGSelection:m.graphicGSelection,circleGClassName:a,circleClassName:s,visibleComputedLayoutData:m.visibleComputedLayoutData,fullParams:m.fullParams,fullChartParams:m.fullChartParams,graphicReverseScale:m.graphicReverseScale}))),d=r.fullChartParams$.pipe(L(i),R(m=>m.highlightTarget),ee());return Y({graphicSelection:p,computedData:r.computedData$,CategoryDataMap:r.CategoryDataMap$,highlightTarget:d}).pipe(L(i),G(async m=>m)).subscribe(m=>{m.graphicSelection.on("mouseover",(g,y)=>{n.event$.next({type:"multiValue",eventName:"mouseover",pluginName:xn,highlightTarget:m.highlightTarget,datum:y,category:m.CategoryDataMap.get(y.categoryLabel),categoryIndex:y.categoryIndex,categoryLabel:y.categoryLabel,data:m.computedData,event:g})}).on("mousemove",(g,y)=>{n.event$.next({type:"multiValue",eventName:"mousemove",pluginName:xn,highlightTarget:m.highlightTarget,datum:y,category:m.CategoryDataMap.get(y.categoryLabel),categoryIndex:y.categoryIndex,categoryLabel:y.categoryLabel,data:m.computedData,event:g})}).on("mouseout",(g,y)=>{n.event$.next({type:"multiValue",eventName:"mouseout",pluginName:xn,highlightTarget:m.highlightTarget,datum:y,category:m.CategoryDataMap.get(y.categoryLabel),categoryIndex:y.categoryIndex,categoryLabel:y.categoryLabel,data:m.computedData,event:g})}).on("click",(g,y)=>{n.event$.next({type:"multiValue",eventName:"click",pluginName:xn,highlightTarget:m.highlightTarget,datum:y,category:m.CategoryDataMap.get(y.categoryLabel),categoryIndex:y.categoryIndex,categoryLabel:y.categoryLabel,data:m.computedData,event:g})})}),Y({graphicSelection:p,highlight:r.multiValueHighlight$.pipe(R(m=>m.map(g=>g.id))),fullChartParams:r.fullChartParams$}).pipe(L(i),G(async m=>m)).subscribe(m=>{XB({selection:m.graphicSelection,ids:m.highlight,fullChartParams:m.fullChartParams})}),()=>{i.next(void 0)}}),vn="ScatterBubbles",HB=.9,jB={name:vn,defaultParams:a2,layerIndex:fu,validator:(e,{validateColumns:t})=>t(e,{fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},valueLinearOpacity:{toBeTypes:["number[]"]},arcScaleType:{toBe:"ArcScaleType",test:r=>r==="area"||r==="radius"},sizeAdjust:{toBeTypes:["number"]}})};function qB({graphicGSelection:e,circleGClassName:t,circleClassName:n,bubbleData:r,fullParams:i,fullChartParams:o,graphicReverseScale:a}){const s=c=>{const f=c.size();return o.transitionDuration/f};let l=0;return e.each((c,f,h)=>{V(h[f]).selectAll("g").data(r[f],p=>p.id).join(p=>(l=s(p),p.append("g").classed(t,!0)),p=>p,p=>p.remove()).attr("transform",p=>`translate(${p.axisX}, ${p.axisY})`).each((p,d,m)=>{V(m[d]).selectAll("circle").data([p]).join(g=>g.append("circle").style("cursor","pointer").style("vector-effect","non-scaling-stroke").classed(n,!0).attr("opacity",0).transition().delay((y,b)=>d*l).attr("opacity",.8),g=>g.transition().duration(50).attr("opacity",.8),g=>g.remove()).attr("r",g=>g.r).attr("fill",(g,y)=>Me({datum:g,colorType:i.fillColorType,fullChartParams:o})).attr("stroke",(g,y)=>Me({datum:g,colorType:i.strokeColorType,fullChartParams:o})).attr("stroke-width",i.strokeWidth).attr("transform",`scale(${a[f][0]??1}, ${a[f][1]??1})`)})}),e.selectAll(`circle.${n}`)}function ZB({selection:e,ids:t,fullChartParams:n}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").duration(200).style("opacity",r=>r.opacity);return}e.each((r,i,o)=>{t.includes(r.id)?V(o[i]).style("opacity",s=>s.opacity).transition("highlight").duration(200):V(o[i]).style("opacity",n.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function KB({defsSelection:e,clipPathData:t}){e.selectAll("clipPath").data(t).join(n=>n.append("clipPath"),n=>n,n=>n.remove()).attr("id",n=>n.id).each((n,r,i)=>{V(i[r]).selectAll("rect").data([n]).join("rect").attr("x",0).attr("y",0).attr("width",o=>o.width).attr("height",o=>o.height)})}const QB=Hn(jB)(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=Pt(vn,"clipPath-box"),a=Z(vn,"circleG"),s=Z(vn,"circle"),{categorySelection$:l,axesSelection$:u,defsSelection$:c,graphicGSelection$:f}=Op({selection:e,pluginName:vn,clipPathID:o,categoryLabels$:r.categoryLabels$,multiValueContainerPosition$:r.multiValueContainerPosition$,multiValueGraphicTransform$:r.multiValueGraphicTransform$}),h=Y({computedData:r.computedData$,multiValueGraphicReverseScale:r.multiValueGraphicReverseScale$}).pipe(L(i),G(async S=>S),R(S=>S.computedData.map((P,M)=>S.multiValueGraphicReverseScale[M])));Y({defsSelection:c,layout:r.layout$}).pipe(L(i),G(async S=>S)).subscribe(S=>{const P=[{id:o,width:S.layout.width,height:S.layout.height}];KB({defsSelection:S.defsSelection,clipPathData:P})});const p=r.filteredMinMaxXYData$.pipe(L(i),R(S=>S.datumList.flat().map(P=>P.value[2]??0)),pe(1)),d=r.filteredMinMaxXYData$.pipe(L(i),R(S=>ic(S.datumList.flat().map(P=>P.value[2]??0)))),m=Y({filteredMinMaxValue:d,fullParams:r.fullParams$}).pipe(L(i),G(async S=>S),R(S=>xr().domain(S.filteredMinMaxValue).range(S.fullParams.valueLinearOpacity))),g=Y({layout:r.layout$,fullParams:r.fullParams$}).pipe(L(i),R(S=>Math.min(S.layout.width,S.layout.height)/2*S.fullParams.sizeAdjust)),y=p.pipe(L(i),R(S=>S.reduce((P,M)=>P+M,0)),Rr(S=>S>0)),b=Y({totalR:g,totalValue:y,fullParams:r.fullParams$}).pipe(L(i),G(async S=>S),R(S=>kn().domain([0,S.totalValue]).range([0,S.totalR]).exponent(S.fullParams.arcScaleType==="area"?.5:1))),v=Y({radiusScale:b,fullParams:r.fullParams$,totalR:g,filteredValueList:p}).pipe(L(i),G(async S=>S),R(S=>S.fullParams.arcScaleType==="area"?1:(()=>{const P=S.totalR*S.totalR*Math.PI;return Math.sqrt(P/Ac(S.filteredValueList,M=>Math.PI*Math.pow(S.radiusScale(M),2)))})())),x=Y({computedLayoutData:r.computedLayoutData$,opacityScale:m,radiusScale:b,scaleFactor:v,fullParams:r.fullParams$}).pipe(L(i),G(async S=>S),R(S=>S.computedLayoutData.map(P=>P.map(M=>{const B=M;return B.r=S.radiusScale(B.value[2])*S.scaleFactor*HB,B.opacity=S.opacityScale(B.value[2]),B})))),_=Y({graphicGSelection:f,bubbleData:x,graphicReverseScale:h,fullChartParams:r.fullChartParams$,fullParams:r.fullParams$}).pipe(L(i),G(async S=>S),R(S=>qB({graphicGSelection:S.graphicGSelection,circleGClassName:a,circleClassName:s,bubbleData:S.bubbleData,fullParams:S.fullParams,fullChartParams:S.fullChartParams,graphicReverseScale:S.graphicReverseScale}))),A=r.fullChartParams$.pipe(L(i),R(S=>S.highlightTarget),ee());return Y({graphicSelection:_,computedData:r.computedData$,CategoryDataMap:r.CategoryDataMap$,highlightTarget:A}).pipe(L(i),G(async S=>S)).subscribe(S=>{S.graphicSelection.on("mouseover",(P,M)=>{n.event$.next({type:"multiValue",eventName:"mouseover",pluginName:vn,highlightTarget:S.highlightTarget,datum:M,category:S.CategoryDataMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,data:S.computedData,event:P})}).on("mousemove",(P,M)=>{n.event$.next({type:"multiValue",eventName:"mousemove",pluginName:vn,highlightTarget:S.highlightTarget,datum:M,category:S.CategoryDataMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,data:S.computedData,event:P})}).on("mouseout",(P,M)=>{n.event$.next({type:"multiValue",eventName:"mouseout",pluginName:vn,highlightTarget:S.highlightTarget,datum:M,category:S.CategoryDataMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,data:S.computedData,event:P})}).on("click",(P,M)=>{n.event$.next({type:"multiValue",eventName:"click",pluginName:vn,highlightTarget:S.highlightTarget,datum:M,category:S.CategoryDataMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,data:S.computedData,event:P})})}),Y({graphicSelection:_,highlight:r.multiValueHighlight$.pipe(R(S=>S.map(P=>P.id))),fullChartParams:r.fullChartParams$}).pipe(L(i),G(async S=>S)).subscribe(S=>{ZB({selection:S.graphicSelection,ids:S.highlight,fullChartParams:S.fullChartParams})}),()=>{i.next(void 0)}}),mu="XYAux",Gp=Z(mu,"label-box"),JB={name:mu,defaultParams:du,layerIndex:u$,validator:(e,{validateColumns:t})=>{const n=t(e,{xAxis:{toBeTypes:["object"]},yAxis:{toBeTypes:["object"]}});if(e.xAxis){const r=t(e.xAxis,{showLine:{toBeTypes:["boolean"]},showLabel:{toBeTypes:["boolean"]},lineDashArray:{toBeTypes:["string"]},lineColorType:{toBeOption:"ColorType"},labelColorType:{toBeOption:"ColorType"},labelTextColorType:{toBeOption:"ColorType"},labelTextFormat:{toBeTypes:["string","Function"]},labelPadding:{toBeTypes:["number"]}});if(r.status==="error")return r}if(e.yAxis){const r=t(e.yAxis,{showLine:{toBeTypes:["boolean"]},showLabel:{toBeTypes:["boolean"]},lineDashArray:{toBeTypes:["string"]},lineColorType:{toBeOption:"ColorType"},labelColorType:{toBeOption:"ColorType"},labelTextColorType:{toBeOption:"ColorType"},labelTextFormat:{toBeTypes:["string","Function"]},labelPadding:{toBeTypes:["number"]}});if(r.status==="error")return r}return n}};function eN({axisX:e,axisY:t,layout:n,fullParams:r}){return e>=0&&e<=n.width&&t>=0&&t<=n.height?[{id:"line-x",x1:e,x2:e,y1:0,y2:n.height,dashArray:r.xAxis.lineDashArray??"none",colorType:r.xAxis.lineColorType},{id:"line-0",x1:0,x2:n.width,y1:t,y2:t,dashArray:r.yAxis.lineDashArray??"none",colorType:r.yAxis.lineColorType}]:[]}function tN({axisX:e,axisY:t,xValue:n,yValue:r,fullParams:i,textSizePx:o,layout:a,columnAmount:s,rowAmount:l}){if(!(e>=0&&e<=a.width&&t>=0&&t<=a.height))return[];const u=6,c=3,f=e,h=a.height+i.xAxis.labelPadding*l,p=wr(n,i.xAxis.labelTextFormat),d=p.split(`
|
122
|
+
`),m=d.reduce((E,O)=>O.length>E.length?O:E,""),g=fa(m,o),y=o*d.length,b=g+u*2,v=y+c*2,x=-b/2,_=-c,A=x+u,S=_+c,P=-(i.yAxis.labelPadding*s),M=t,B=wr(r,i.yAxis.labelTextFormat),$=B.split(`
|
123
|
+
`),k=$.reduce((E,O)=>O.length>E.length?O:E,""),C=fa(k,o),T=o*$.length,w=C+u*2,D=T+c*2,F=-C-u,z=-c-T/2,I=F+u,N=z+c;return[{id:"label-x",x:f,y:h,text:p,textArr:d,textWidth:g,textHeight:y,colorType:i.xAxis.labelColorType,textColorType:i.xAxis.labelTextColorType,rectWidth:b,rectHeight:v,rectX:x,rectY:_,textX:A,textY:S},{id:"label-y",x:P,y:M,text:B,textArr:$,textWidth:C,textHeight:T,colorType:i.yAxis.labelColorType,textColorType:i.xAxis.labelTextColorType,rectWidth:w,rectHeight:D,rectX:F,rectY:z,textX:I,textY:N}]}function nN({selection:e,pluginName:t,lineData:n,fullParams:r,fullChartParams:i}){const o=Z(t,"auxline");return e.selectAll(`line.${o}`).data(n).join(s=>s.append("line").classed(o,!0).style("stroke-width",1).style("pointer-events","none").style("vector-effect","non-scaling-stroke").attr("x1",l=>l.x1).attr("y1",l=>l.y1).attr("x2",l=>l.x2).attr("y2",l=>l.y2),s=>s.transition().duration(50).attr("x1",u=>u.x1).attr("y1",u=>u.y1).attr("x2",u=>u.x2).attr("y2",u=>u.y2),s=>s.remove()).style("stroke",s=>be(s.colorType,i)).style("stroke-dasharray",s=>s.dashArray)}function rN(e){e.selectAll("line").data([]).exit().remove()}function iN({selection:e,labelData:t,fullParams:n,fullDataFormatter:r,fullChartParams:i,textReverseTransform:o,textSizePx:a}){return e.selectAll(`g.${Gp}`).data(t).join(l=>l.append("g").classed(Gp,!0).style("cursor","pointer").attr("transform",(u,c)=>`translate(${u.x}, ${u.y})`),l=>l.transition().duration(50).attr("transform",(c,f)=>`translate(${c.x}, ${c.y})`),l=>l.remove()).each((l,u,c)=>{V(c[u]).selectAll("rect").data([l]).join(f=>f.append("rect").style("cursor","pointer").attr("rx",5).attr("ry",5),f=>f,f=>f.remove()).attr("width",f=>`${f.rectWidth}px`).attr("height",f=>`${f.rectHeight}px`).attr("fill",f=>be(f.colorType,i)).attr("x",f=>f.rectX).attr("y",f=>f.rectY).style("transform",o),V(c[u]).selectAll("text").data([l]).join(f=>f.append("text").style("dominant-baseline","hanging").style("cursor","pointer").style("pointer-events","none"),f=>f,f=>f.remove()).style("transform",o).attr("fill",f=>be(f.textColorType,i)).attr("font-size",i.styles.textSize).attr("x",f=>f.textX).attr("y",f=>f.textY).each((f,h,p)=>{Sp(V(p[h]),{textArr:l.textArr,textSizePx:a,groupAxisPosition:h===0?"bottom":"left"})})})}function oN(e){e.selectAll(`g.${Gp}`).data([]).exit().remove()}const aN=Hn(JB)(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=t.insert("rect","g").classed(Z(mu,"rect"),!0).attr("opacity",0),{categorySelection$:s,axesSelection$:l,defsSelection$:u,graphicGSelection$:c}=Op({selection:e,pluginName:mu,clipPathID:"test",categoryLabels$:i.isCategorySeprate$.pipe(G(g=>Wi(()=>g,i.categoryLabels$,i.categoryLabels$.pipe(R(y=>[y[0]]))))),multiValueContainerPosition$:i.multiValueContainerPosition$,multiValueGraphicTransform$:i.multiValueGraphicTransform$});i.layout$.pipe(L(o)).subscribe(g=>{a.attr("width",g.rootWidth).attr("height",g.rootHeight)});const f=i.multiValueContainerPosition$.pipe(R(g=>g.reduce((b,v)=>v.columnIndex>b?v.columnIndex:b,0)+1),ee()),h=i.multiValueContainerPosition$.pipe(R(g=>g.reduce((b,v)=>v.rowIndex>b?v.rowIndex:b,0)+1),ee()),p=i.multiValueContainerPosition$.pipe(L(o),G(async g=>g),R(g=>`${`scale(${1/g[0].scale[0]}, ${1/g[0].scale[1]})`}`),ee()),d=GB({rootSelection:t,fullDataFormatter$:i.fullDataFormatter$,filteredMinMaxXYData$:i.filteredMinMaxXYData$,multiValueContainerPosition$:i.multiValueContainerPosition$,layout$:i.layout$}).pipe(L(o));Y({axesSelection:l,layout:i.layout$,xyPosition:d,fullParams:i.fullParams$,fullDataFormatter:i.fullDataFormatter$,fullChartParams:i.fullChartParams$,textReverseTransform:p,textSizePx:i.textSizePx$,columnAmount:f,rowAmount:h}).pipe(L(o),G(async g=>g)).subscribe(g=>{const{x:y,y:b,xValue:v,yValue:x}=g.xyPosition,_=eN({axisX:y,axisY:b,layout:g.layout,fullParams:g.fullParams});nN({selection:g.axesSelection,pluginName:n,lineData:_,fullParams:g.fullParams,fullChartParams:g.fullChartParams});const A=tN({axisX:y,axisY:b,xValue:v,yValue:x,fullParams:g.fullParams,textSizePx:g.textSizePx,layout:g.layout,columnAmount:g.columnAmount,rowAmount:g.rowAmount});iN({selection:g.axesSelection,labelData:A,fullParams:g.fullParams,fullDataFormatter:g.fullDataFormatter,fullChartParams:g.fullChartParams,textReverseTransform:g.textReverseTransform,textSizePx:g.textSizePx})});const m=ha(a,"mouseout").pipe(L(o));return Y({rootRectMouseout:m,axesSelection:l}).pipe(L(o),G(async g=>g)).subscribe(g=>{setTimeout(()=>{rN(g.axesSelection),oN(g.axesSelection)})}),()=>{o.next(void 0),a.remove()}}),Ar="XYAxes",c2=6,sN="middle",lN="hanging",uN="start",cN="hanging",fN="end",hN="middle",pN="end",dN="auto",gN={name:Ar,defaultParams:gu,layerIndex:bn,validator:(e,{validateColumns:t})=>{const n=t(e,{xAxis:{toBeTypes:["object"]},yAxis:{toBeTypes:["object"]}});if(e.xAxis){const r=t(e.xAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}if(e.yAxis){const r=t(e.yAxis,{labelOffset:{toBe:"[number, number]",test:i=>Array.isArray(i)&&i.length===2&&typeof i[0]=="number"&&typeof i[1]=="number"},labelColorType:{toBeOption:"ColorType"},axisLineVisible:{toBeTypes:["boolean"]},axisLineColorType:{toBeOption:"ColorType"},ticks:{toBeTypes:["number","null"]},tickFormat:{toBeTypes:["string","Function"]},tickLineVisible:{toBeTypes:["boolean"]},tickPadding:{toBeTypes:["number"]},tickFullLine:{toBeTypes:["boolean"]},tickFullLineDasharray:{toBeTypes:["string"]},tickColorType:{toBeOption:"ColorType"},tickTextColorType:{toBeOption:"ColorType"}});if(r.status==="error")return r}return n}};function mN({selection:e,xLabelClassName:t,fullParams:n,layout:r,fullDataFormatter:i,fullChartParams:o,textReverseTransform:a}){const s=n.xAxis.tickPadding+n.xAxis.labelOffset[0],l=n.xAxis.tickPadding+n.xAxis.labelOffset[1];let u=s,c=l;e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0).each((f,h,p)=>{V(p[h]).selectAll("text").data([f]).join(d=>d.append("text").style("font-weight","bold"),d=>d,d=>d.remove()).attr("text-anchor",uN).attr("dominant-baseline",cN).attr("font-size",o.styles.textSize).style("fill",be(n.xAxis.labelColorType,o)).style("transform",a).attr("x",u).attr("y",c).text(d=>i.xAxis.label)}).attr("transform",f=>`translate(${r.width}, ${r.height})`)}function yN({selection:e,yLabelClassName:t,fullParams:n,layout:r,fullDataFormatter:i,fullChartParams:o,textReverseTransform:a}){const s=n.yAxis.tickPadding-n.yAxis.labelOffset[0],l=n.yAxis.tickPadding+n.yAxis.labelOffset[1];let u=-s,c=-l;e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0).each((f,h,p)=>{V(p[h]).selectAll("text").data([f]).join(d=>d.append("text").style("font-weight","bold"),d=>d,d=>d.remove()).attr("text-anchor",pN).attr("dominant-baseline",dN).attr("font-size",o.styles.textSize).style("fill",be(n.yAxis.labelColorType,o)).style("transform",a).attr("x",u).attr("y",c).text(d=>i.yAxis.label)})}function bN({selection:e,xAxisClassName:t,fullParams:n,layout:r,fullDataFormatter:i,fullChartParams:o,xScale:a,textReverseTransform:s,minMaxXY:l}){const u=e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0).attr("transform",`translate(0, ${r.height})`);let c=n.xAxis.tickPadding;const f=Dc(a).scale(a).ticks(n.xAxis.ticks).tickFormat(d=>wr(d,n.xAxis.tickFormat)).tickSize(n.xAxis.tickFullLine==!0?-r.height:c2).tickSizeOuter(-r.height).tickPadding(c),h=u.transition().duration(100).call(f);return h.selectAll("line").style("fill","none").style("stroke",n.xAxis.tickLineVisible==!0?be(n.xAxis.tickColorType,o):"none").style("stroke-dasharray",n.xAxis.tickFullLineDasharray).attr("pointer-events","none"),h.selectAll("path").style("fill","none").style("stroke",n.xAxis.axisLineVisible==!0?be(n.xAxis.axisLineColorType,o):"none").style("shape-rendering","crispEdges"),u.selectAll("text").attr("font-size",o.styles.textSize).style("color",be(n.xAxis.tickTextColorType,o)).attr("text-anchor",sN).attr("dominant-baseline",lN).attr("dy",0).attr("y",c).style("transform",s),u}function xN({selection:e,yAxisClassName:t,fullParams:n,layout:r,fullDataFormatter:i,fullChartParams:o,yScale:a,textReverseTransform:s,minMaxXY:l}){const u=e.selectAll(`g.${t}`).data([n]).join("g").classed(t,!0);let c=n.yAxis.tickPadding;const f=Mc(a).scale(a).ticks(n.xAxis.ticks).tickFormat(d=>wr(d,n.yAxis.tickFormat)).tickSize(n.yAxis.tickFullLine==!0?-r.width:c2).tickPadding(c),h=u.transition().duration(100).call(f);return h.selectAll("line").style("fill","none").style("stroke",n.yAxis.tickLineVisible==!0?be(n.yAxis.tickColorType,o):"none").style("stroke-dasharray",n.yAxis.tickFullLineDasharray).attr("pointer-events","none"),h.selectAll("path").style("fill","none").style("stroke",n.yAxis.axisLineVisible==!0?be(n.yAxis.axisLineColorType,o):"none").style("shape-rendering","crispEdges"),u.selectAll("text").attr("font-size",o.styles.textSize).style("color",be(n.yAxis.tickTextColorType,o)).attr("text-anchor",fN).attr("dominant-baseline",hN).attr("x",-c).attr("dy",0).style("transform",s),u}const vN=Hn(gN)(({selection:e,name:t,observer:n,subject:r})=>{const i=new J,o=Z(Ar,"container"),a=Z(Ar,"xAxis"),s=Z(Ar,"yAxisG"),l=Z(Ar,"yAxis"),u=Z(Ar,"xLabel"),c=Z(Ar,"yLabel"),f=Y({computedData:n.computedData$.pipe(ee((g,y)=>g.length===y.length)),isCategorySeprate:n.isCategorySeprate$}).pipe(L(i),G(async g=>g),R(g=>g.isCategorySeprate?g.computedData:[g.computedData[0]]),R((g,y)=>e.selectAll(`g.${o}`).data(g,b=>b[0]?b[0].categoryIndex:y).join("g").classed(o,!0))),h=f.pipe(L(i),R((g,y)=>g.selectAll(`g.${s}`).data([s]).join("g").classed(s,!0)));Y({containerSelection:f,gridContainerPosition:n.multiValueContainerPosition$}).pipe(L(i),G(async g=>g)).subscribe(g=>{g.containerSelection.attr("transform",(y,b)=>{const v=g.gridContainerPosition[b]??g.gridContainerPosition[0],x=v.translate,_=v.scale;return`translate(${x[0]}, ${x[1]}) scale(${_[0]}, ${_[1]})`})});const p=n.multiValueContainerPosition$.pipe(L(i),G(async g=>g),R(g=>`${`scale(${1/g[0].scale[0]}, ${1/g[0].scale[1]})`}`),ee()),d=new de(g=>{Y({fullDataFormatter:n.fullDataFormatter$,layout:n.layout$,filteredMinMaxXYData:n.filteredMinMaxXYData$}).pipe(L(i),G(async y=>y)).subscribe(y=>{if(!y.filteredMinMaxXYData.minXDatum||!y.filteredMinMaxXYData.maxXDatum||y.filteredMinMaxXYData.minXDatum.value[0]==null||y.filteredMinMaxXYData.maxXDatum.value[0]==null)return;let b=y.filteredMinMaxXYData.maxXDatum.value[0],v=y.filteredMinMaxXYData.minXDatum.value[0];b===v&&b===0&&(b=1);const x=ro({maxValue:b,minValue:v,axisWidth:y.layout.width,scaleDomain:y.fullDataFormatter.xAxis.scaleDomain,scaleRange:y.fullDataFormatter.xAxis.scaleRange});g.next(x)})}),m=new de(g=>{Y({fullDataFormatter:n.fullDataFormatter$,layout:n.layout$,filteredMinMaxXYData:n.filteredMinMaxXYData$}).pipe(L(i),G(async y=>y)).subscribe(y=>{if(!y.filteredMinMaxXYData.minYDatum||!y.filteredMinMaxXYData.maxYDatum||y.filteredMinMaxXYData.minYDatum.value[1]==null||y.filteredMinMaxXYData.maxYDatum.value[1]==null)return;let b=y.filteredMinMaxXYData.maxYDatum.value[1],v=y.filteredMinMaxXYData.minYDatum.value[1];b===v&&b===0&&(b=1);const x=ro({maxValue:b,minValue:v,axisWidth:y.layout.height,scaleDomain:y.fullDataFormatter.yAxis.scaleDomain,scaleRange:y.fullDataFormatter.yAxis.scaleRange,reverse:!0});g.next(x)})});return Y({axisSelection:h,fullParams:n.fullParams$,computedData:n.computedData$,layout:n.layout$,fullDataFormatter:n.fullDataFormatter$,fullChartParams:n.fullChartParams$,xScale:d,yScale:m,textReverseTransform:p,minMaxXY:n.minMaxXY$}).pipe(L(i),G(async g=>g)).subscribe(g=>{bN({selection:g.axisSelection,xAxisClassName:a,fullParams:g.fullParams,layout:g.layout,fullDataFormatter:g.fullDataFormatter,fullChartParams:g.fullChartParams,xScale:g.xScale,textReverseTransform:g.textReverseTransform,minMaxXY:g.minMaxXY}),xN({selection:g.axisSelection,yAxisClassName:l,fullParams:g.fullParams,layout:g.layout,fullDataFormatter:g.fullDataFormatter,fullChartParams:g.fullChartParams,yScale:g.yScale,textReverseTransform:g.textReverseTransform,minMaxXY:g.minMaxXY}),mN({selection:g.axisSelection,xLabelClassName:u,fullParams:g.fullParams,layout:g.layout,fullDataFormatter:g.fullDataFormatter,fullChartParams:g.fullChartParams,textReverseTransform:g.textReverseTransform}),yN({selection:g.axisSelection,yLabelClassName:c,fullParams:g.fullParams,layout:g.layout,fullDataFormatter:g.fullDataFormatter,fullChartParams:g.fullChartParams,textReverseTransform:g.textReverseTransform})}),()=>{i.next(void 0)}}),$N=Hn({name:"XYZoom",defaultParams:s2,layerIndex:l$,validator:(e,{validateColumns:t})=>({status:"success",columnName:"",expectToBe:""})})(({selection:e,rootSelection:t,name:n,observer:r,subject:i})=>{const o=new J;let a={k:1,x:0,y:0};const s=r.fullDataFormatter$.pipe(R(f=>f.xAxis),Xi()),l=r.fullDataFormatter$.pipe(R(f=>f.yAxis),Xi()),u=new de(f=>{Y({initXAxis:s,layout:r.layout$,minMaxXY:r.minMaxXY$}).pipe(L(o),G(async h=>h)).subscribe(h=>{const p=ro({maxValue:h.minMaxXY.maxX,minValue:h.minMaxXY.minX,axisWidth:h.layout.width,scaleDomain:h.initXAxis.scaleDomain,scaleRange:h.initXAxis.scaleRange});f.next(p)})}),c=Y({initXAxis:s,initYAxis:l,minMaxXY:r.minMaxXY$}).pipe(L(o),G(async f=>f),R(f=>{let h=f.minMaxXY.minX,p=f.minMaxXY.maxX,d=f.minMaxXY.minY,m=f.minMaxXY.maxY;return f.initXAxis.scaleDomain[0]==="auto"&&h>0&&(h=0),f.initXAxis.scaleDomain[1]==="auto"&&p<0&&(p=0),f.initYAxis.scaleDomain[0]==="auto"&&d>0&&(d=0),f.initYAxis.scaleDomain[1]==="auto"&&m<0&&(m=0),{minX:h,maxX:p,minY:d,maxY:m}}));return Y({initXScale:u,fullDataFormatter:r.fullDataFormatter$,minMaxScaleDomain:c}).pipe(L(o),G(async f=>f)).subscribe(f=>{const h=f.initXScale.copy(),p=yn().on("zoom",function(m){const g=m.transform,y=x=>{const _=Math.round(x);return Math.min(f.minMaxScaleDomain.maxX,Math.max(f.minMaxScaleDomain.minX,_))},b=g.rescaleX(h).domain().map(y);b[0]<=f.minMaxScaleDomain.minX&&b[1]>=f.minMaxScaleDomain.maxX?g.k<a.k&&(g.k=a.k,g.x=a.x,g.y=a.y):b[1]-b[0]<=1&&g.k>a.k&&(g.k=a.k,g.x=a.x,g.y=a.y),a.k=g.k,a.x=g.x,a.y=g.y;const v={...f.fullDataFormatter,xAxis:{...f.fullDataFormatter.xAxis,scaleDomain:b}};i.dataFormatter$.next(v)});t.call(p)}),()=>{o.next(void 0),t.call(yn().on("zoom",null))}}),_N={header:{height:36,text:[],textStyle:[]},footer:{height:0,text:[],textStyle:[]}},f2={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,textRenderFn:e=>{if(e.highlightTarget==="datum"&&e.datum)return[`${e.datum.label}: ${e.datum.value}`];if(e.highlightTarget==="series"){const t=e.seriesLabel,n=e.series.filter(i=>i.visible==!0).map(i=>i.value),r=n.length>5?n.slice(0,5).join(",")+"...":n.join(",");return[t,r]}else if(e.highlightTarget==="group"){const t=e.groupLabel,n=e.series.filter(i=>i.visible==!0).map(i=>i.value),r=n.length>5?n.slice(0,5).join(",")+"...":n.join(",");return[t,r]}else if(e.highlightTarget==="category"){const t=e.categoryLabel,n=e.category.filter(i=>i.visible==!0).map(i=>i.value),r=n.length>5?n.slice(0,5).join(",")+"...":n.join(",");return[t,r]}return[]},svgRenderFn:null};f2.textRenderFn.toString=()=>`(eventData) => {
|
22
124
|
if (eventData.highlightTarget === 'datum' && eventData.datum) {
|
23
125
|
return [\`\${eventData.datum.label}: \${eventData.datum.value}\`]
|
24
126
|
} else if (eventData.highlightTarget === 'series') {
|
@@ -56,12 +158,27 @@
|
|
56
158
|
return [label, value]
|
57
159
|
}
|
58
160
|
return []
|
59
|
-
}`;const
|
60
|
-
|
61
|
-
|
62
|
-
</text>`:""
|
63
|
-
|
64
|
-
|
161
|
+
}`;const Ni={dot:{radius:10,fillColorType:"label",strokeColorType:"label",strokeWidth:1,styleFn:e=>""},dotLabel:{colorType:"primary",sizeFixed:!1,styleFn:e=>"text-shadow:0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff"},arrow:{colorType:"primary",strokeWidth:1.5,pointerWidth:5,pointerHeight:5,styleFn:e=>""},arrowLabel:{colorType:"secondary",sizeFixed:!1,styleFn:e=>""},force:{nodeStrength:-500,linkDistance:100,velocityDecay:.1,alphaDecay:.05},zoomable:!0,transform:{x:0,y:0,k:1},scaleExtent:{min:0,max:1/0}};Ni.dot.styleFn.toString=()=>"(node) => ''",Ni.dotLabel.styleFn.toString=()=>"(node) => 'text-shadow:0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff'",Ni.arrow.styleFn.toString=()=>"(node) => ''",Ni.arrowLabel.styleFn.toString=()=>"(node) => ''";const Fi={bubble:{radiusMin:30,radiusMax:60,arcScaleType:"area",fillColorType:"label",strokeColorType:"label",strokeWidth:1,styleFn:e=>""},bubbleLabel:{fillRate:.8,lineHeight:1,lineLengthMin:4,colorType:"primary",styleFn:e=>""},arrow:{colorType:"primary",strokeWidthMin:1.5,strokeWidthMax:4.5,pointerWidth:5,pointerHeight:5,styleFn:e=>""},arrowLabel:{colorType:"secondary",sizeFixed:!1,styleFn:e=>""},force:{nodeStrength:-500,linkDistance:200,velocityDecay:.1,alphaDecay:.05},zoomable:!0,transform:{x:0,y:0,k:1},scaleExtent:{min:0,max:1/0}};Fi.bubble.styleFn.toString=()=>"(node) => ''",Fi.bubbleLabel.styleFn.toString=()=>"(node) => ''",Fi.arrow.styleFn.toString=()=>"(node) => ''",Fi.arrowLabel.styleFn.toString=()=>"(node) => ''";const h2={placement:"right-end",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,textColorType:"primary"},Yp={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,renderFn:(e,{styles:t,utils:n})=>{const r=!!e.categoryLabel,i=!!e.datum.label,o=t.textSizePx*.7,a=t.textSizePx/2-o/2,s=r?`<rect width="${o}" height="${o}" x="${a}" y="${a-1}" rx="${o/2}" fill="${e.datum.color}"></rect>
|
162
|
+
<text x="${t.textSizePx*1.5}" font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
163
|
+
<tspan>${e.categoryLabel}</tspan>
|
164
|
+
</text>`:"",l=i?`<tspan>${e.datum.label}</tspan> `:"",u=`<text font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
165
|
+
${l}<tspan font-weight="bold">${e.datum.value}</tspan>
|
166
|
+
</text>`;return`${s}
|
167
|
+
<g ${r?`transform="translate(0, ${t.textSizePx*2})"`:""}>
|
168
|
+
${u}
|
169
|
+
</g>`}};Yp.renderFn.toString=()=>'(eventData, { styles, utils }) => {\n const hasCategoryLabel = eventData.categoryLabel ? true : false\n const hasDatumLabel = eventData.datum.label ? true : false\n const bulletWidth = styles.textSizePx * 0.7\n const offset = (styles.textSizePx / 2) - (bulletWidth / 2)\n const categorySvg = hasCategoryLabel\n ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>\n<text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">\n <tspan>${eventData.categoryLabel}</tspan>\n</text>`\n : \'\'\n const datumLabelSvg = hasDatumLabel\n ? `<tspan>${eventData.datum.label}</tspan> `\n : \'\'\n const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">\n ${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>\n</text>`\n\n return `${categorySvg}\n<g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : \'\'}>\n ${datumSvg}\n</g>`\n}';const ze="ForceDirected",SN=Z(ze,"zoom-area"),p2=Pt(ze,"arrow"),d2=Z(ze,"arrow-marker"),wN=Z(ze,"edge-list-g"),TN=Z(ze,"edge-g"),g2=Z(ze,"edge-arrow-path"),m2=Z(ze,"edge-label-g"),y2=Z(ze,"edge-label"),AN=Z(ze,"node-list-g"),PN=Z(ze,"node-g"),b2=Z(ze,"node-circle"),x2=Z(ze,"node-label-g"),v2=Z(ze,"node-label"),DN={name:ze,defaultParams:Ni,layerIndex:bt,validator:(e,{validateColumns:t})=>{const n=t(e,{dot:{toBeTypes:["object"]},dotLabel:{toBeTypes:["object"]},arrow:{toBeTypes:["object"]},arrowLabel:{toBeTypes:["object"]},force:{toBeTypes:["object"]},zoomable:{toBeTypes:["boolean"]},transform:{toBeTypes:["object"]},scaleExtent:{toBeTypes:["object"]}});if(e.dot){const r=t(e.dot,{radius:{toBeTypes:["number"]},fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.dotLabel){const r=t(e.dotLabel,{colorType:{toBeOption:"ColorType"},sizeFixed:{toBeTypes:["boolean"]},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.arrow){const r=t(e.arrow,{colorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},pointerWidth:{toBeTypes:["number"]},pointerHeight:{toBeTypes:["number"]},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.arrowLabel){const r=t(e.arrowLabel,{colorType:{toBeOption:"ColorType"},sizeFixed:{toBeTypes:["boolean"]},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.force){const r=t(e.force,{nodeStrength:{toBeTypes:["number"]},linkDistance:{toBeTypes:["number"]},velocityDecay:{toBeTypes:["number"]},alphaDecay:{toBeTypes:["number"]}});if(r.status==="error")return r}if(e.transform){const r=t(e.transform,{x:{toBeTypes:["number"]},y:{toBeTypes:["number"]},k:{toBeTypes:["number"]}});if(r.status==="error")return r}if(e.scaleExtent){const r=t(e.scaleExtent,{min:{toBeTypes:["number"]},max:{toBeTypes:["number"]}});if(r.status==="error")return r}return n}};function MN(e,t){return Xs().velocityDecay(t.force.velocityDecay).alphaDecay(t.force.alphaDecay).force("link",Bf().id(n=>n.id).strength(1).distance(n=>t.force.linkDistance)).force("charge",Vs().strength(t.force.nodeStrength)).force("collision",Ws(t.dot.radius).strength(1)).force("center",Ef(e.width/2,e.height/2))}function CN(e){return"translate("+e.x+","+e.y+")"}function LN(e){const t=e.source.x+(e.target.x-e.source.x)/2,n=e.source.y+(e.target.y-e.source.y)/2;return"translate("+t+","+n+")"}function kN(e){return"M"+e.source.x+","+e.source.y+" L"+e.target.x+","+e.target.y}function RN(e,t){return e.selectAll(`marker.${d2}`).data([t]).join(n=>{const r=n.append("marker").classed(d2,!0).attr("id",p2).attr("viewBox",i=>`-${i.arrow.pointerWidth} -${i.arrow.pointerHeight/2} ${i.arrow.pointerWidth} ${i.arrow.pointerHeight}`).attr("orient","auto");return r.append("path").attr("d",i=>`M${-i.arrow.pointerWidth},${-i.arrow.pointerHeight/2}L0,0L${-i.arrow.pointerWidth},${i.arrow.pointerHeight/2}`),r},n=>n,n=>n.remove()).attr("markerWidth",n=>n.arrow.pointerWidth).attr("markerHeight",n=>n.arrow.pointerHeight).attr("refX",n=>(n.dot.radius+t.dot.strokeWidth/2)/n.arrow.strokeWidth-1).attr("refY",0)}function EN(e,t){function n(o){o.active||e.alphaTarget(.3).restart(),o.subject.fx=o.subject.x,o.subject.fy=o.subject.y,t.next("start")}function r(o){o.subject.fx=o.x,o.subject.fy=o.y,t.next("drag")}function i(o){o.active||e.alphaTarget(0),o.subject.fx=null,o.subject.fy=null,t.next("end")}return hs().on("start",n).on("drag",r).on("end",i)}function IN({nodeListGSelection:e,nodes:t}){return e.selectAll("g").data(t,n=>n.id).join(n=>n.append("g").classed(PN,!0),n=>n,n=>n.remove())}function BN({nodeGSelection:e,fullParams:t,fullChartParams:n}){return e.each((r,i,o)=>{V(o[i]).selectAll("circle").data([r]).join(s=>s.append("circle").classed(b2,!0).attr("cursor","pointer"),s=>s,s=>s.remove()).attr("r",t.dot.radius).attr("fill",s=>Me({datum:s,colorType:t.dot.fillColorType,fullChartParams:n})).attr("stroke",s=>Me({datum:s,colorType:t.dot.strokeColorType,fullChartParams:n})).attr("stroke-width",t.dot.strokeWidth).attr("style",s=>t.dot.styleFn(s))}),e.select(`circle.${b2}`)}function NN({nodeGSelection:e,fullParams:t}){return e.each((n,r,i)=>{V(i[r]).selectAll("g").data([n]).join(a=>a.append("g").classed(x2,!0),a=>a,a=>a.remove()).attr("transform",`translate(0, ${-t.dot.radius-10})`)}),e.select(`g.${x2}`)}function FN({nodeLabelGSelection:e,fullParams:t,fullChartParams:n}){return e.each((r,i,o)=>{V(o[i]).selectAll("text").data([r],s=>s.id).join(s=>s.append("text").classed(v2,!0).attr("text-anchor","middle").attr("pointer-events","none"),s=>s,s=>s.remove()).text(s=>s.label).attr("fill",s=>Me({datum:s,colorType:t.dotLabel.colorType,fullChartParams:n})).attr("font-size",n.styles.textSize).attr("style",s=>t.dotLabel.styleFn(s))}),e.select(`text.${v2}`)}function zN({edgeListGSelection:e,edges:t}){return e.selectAll("g").data(t,n=>n.id).join(n=>n.append("g").classed(TN,!0),n=>n,n=>n.remove())}function ON({edgeGSelection:e,fullParams:t,fullChartParams:n}){return e.each((r,i,o)=>{V(o[i]).selectAll("path").data([r]).join(s=>s.append("path").classed(g2,!0).attr("marker-end",`url(#${p2})`),s=>s,s=>s.remove()).attr("stroke",s=>Me({datum:s.data,colorType:t.arrow.colorType,fullChartParams:n})).attr("stroke-width",t.arrow.strokeWidth).attr("style",s=>t.arrow.styleFn(s))}),e.select(`path.${g2}`)}function GN({edgeGSelection:e}){return e.each((t,n,r)=>{V(r[n]).selectAll("g").data([t]).join(o=>o.append("g").classed(m2,!0),o=>o,o=>o.remove())}),e.select(`g.${m2}`)}function YN({edgeLabelGSelection:e,fullParams:t,fullChartParams:n}){return e.each((r,i,o)=>{V(o[i]).selectAll("text").data([r],s=>s.id).join(s=>s.append("text").classed(y2,!0).attr("text-anchor","middle").attr("pointer-events","none"),s=>s,s=>s.remove()).text(s=>s.label).attr("fill",s=>Me({datum:s,colorType:t.arrowLabel.colorType,fullChartParams:n})).attr("font-size",n.styles.textSize).attr("style",s=>t.arrowLabel.styleFn(s))}),e.select(`text.${y2}`)}function WN({nodeGSelection:e,edgeGSelection:t,highlightIds:n,fullChartParams:r}){if(e.interrupt("highlight"),!n.length){e.transition("highlight").style("opacity",1),t.transition("highlight").style("opacity",1);return}t.style("opacity",r.styles.unhighlightedOpacity),e.each((i,o,a)=>{const s=V(a[o]);n.includes(i.id)?s.style("opacity",1).transition("highlight").ease(sr).duration(500):s.style("opacity",r.styles.unhighlightedOpacity)})}const XN=ja(DN)(({selection:e,rootSelection:t,name:n,observer:r,subject:i})=>{const o=new J,a=e.append("g").classed(SN,!0),s=a.append("defs"),l=a.append("g").classed(wN,!0),u=a.append("g").classed(AN,!0);let c,f,h,p,d,m,g,y;const b=new Du("end"),v=new J;r.fullParams$.pipe(L(o),R(S=>RN(s,S))).subscribe();const x=r.fullParams$.pipe(L(o),R(S=>{let P=S.zoomable?yn().on("zoom",M=>{a.attr("transform",`translate(
|
170
|
+
${M.transform.x},
|
171
|
+
${M.transform.y}
|
172
|
+
) scale(
|
173
|
+
${M.transform.k}
|
174
|
+
)`),S.dotLabel.sizeFixed&&p&&p.attr("transform",`scale(${1/M.transform.k})`),S.arrowLabel.sizeFixed&&y&&y.attr("transform",`scale(${1/M.transform.k})`)}):yn().on("zoom",null);return S.scaleExtent&&P.scaleExtent([S.scaleExtent.min,S.scaleExtent.max]),t.call(P),P}));Y({d3Zoom:x,transform:r.fullParams$.pipe(L(o),R(S=>S.transform))}).pipe(L(o),G(async S=>S)).subscribe(S=>{e.call(S.d3Zoom.transform,Li.translate(S.transform.x,S.transform.y).scale(S.transform.k))});const _=Y({layout:r.layout$.pipe(Xi()),fullParams:r.fullParams$}).pipe(L(o),G(async S=>S),R(S=>MN(S.layout,S.fullParams)),pe(1)),A=r.visibleComputedData$.pipe(L(o),R(S=>({nodes:S.nodes,edges:S.edges.map(P=>{let M=P;return M.source=P.startNode,M.target=P.endNode,M})})),pe(1));return Y({renderData:A,computedData:r.computedData$,CategoryNodeMap:r.CategoryNodeMap$,simulation:_,fullParams:r.fullParams$,fullChartParams:r.fullChartParams$}).pipe(L(o),G(async S=>S)).subscribe(S=>{c=IN({nodeListGSelection:u,nodes:S.renderData.nodes}),f=BN({nodeGSelection:c,fullParams:S.fullParams,fullChartParams:S.fullChartParams}),f.call(EN(S.simulation,b)),h=NN({nodeGSelection:c,fullParams:S.fullParams}),p=FN({nodeLabelGSelection:h,fullParams:S.fullParams,fullChartParams:S.fullChartParams}),d=zN({edgeListGSelection:l,edges:S.renderData.edges}),m=ON({edgeGSelection:d,fullParams:S.fullParams,fullChartParams:S.fullChartParams}),g=GN({edgeGSelection:d}),y=YN({edgeLabelGSelection:g,fullParams:S.fullParams,fullChartParams:S.fullChartParams}),S.simulation.nodes(S.renderData.nodes).on("tick",()=>{m.attr("d",kN),c.attr("transform",CN),g.attr("transform",P=>LN(P))}),S.simulation.force("link").links(S.renderData.edges),S.simulation.alpha(.3).restart(),f.on("mouseover",(P,M)=>{P.stopPropagation(),v.next({type:"relationship",eventName:"mouseover",pluginName:ze,highlightTarget:S.fullChartParams.highlightTarget,datum:M,category:S.CategoryNodeMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,event:P,data:S.computedData})}).on("mousemove",(P,M)=>{P.stopPropagation(),v.next({type:"relationship",eventName:"mousemove",pluginName:ze,highlightTarget:S.fullChartParams.highlightTarget,datum:M,category:S.CategoryNodeMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,event:P,data:S.computedData})}).on("mouseout",(P,M)=>{P.stopPropagation(),v.next({type:"relationship",eventName:"mouseout",pluginName:ze,highlightTarget:S.fullChartParams.highlightTarget,datum:M,category:S.CategoryNodeMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,event:P,data:S.computedData})}).on("click",(P,M)=>{P.stopPropagation(),v.next({type:"relationship",eventName:"click",pluginName:ze,highlightTarget:S.fullChartParams.highlightTarget,datum:M,category:S.CategoryNodeMap.get(M.categoryLabel),categoryIndex:M.categoryIndex,categoryLabel:M.categoryLabel,event:P,data:S.computedData})})}),b.pipe(G(S=>Wi(()=>S==="end",v,va))).subscribe(S=>{i.event$.next(S)}),Y({renderData:A,highlightNodes:r.relationshipHighlightNodes$.pipe(R(S=>S.map(P=>P.id))),highlightEdges:r.relationshipHighlightEdges$.pipe(R(S=>S.map(P=>P.id))),fullChartParams:r.fullChartParams$,fullParams:r.fullParams$}).pipe(L(o),G(async S=>S)).subscribe(S=>{!c||!d||WN({nodeGSelection:c,edgeGSelection:d,highlightIds:S.highlightNodes,fullChartParams:S.fullChartParams})}),()=>{o.next(void 0)}}),Ue="ForceDirectedBubbles",$2=12,VN=Z(Ue,"zoom-area"),UN=Pt(Ue,"arrow"),_2=Z(Ue,"arrow-marker"),HN=Z(Ue,"edge-list-g"),jN=Z(Ue,"edge-g"),S2=Z(Ue,"edge-arrow-path"),w2=Z(Ue,"edge-label-g"),T2=Z(Ue,"edge-label"),qN=Z(Ue,"node-list-g"),ZN=Z(Ue,"node-g"),A2=Z(Ue,"node-circle"),KN={name:Ue,defaultParams:Fi,layerIndex:bt,validator:(e,{validateColumns:t})=>{const n=t(e,{bubble:{toBeTypes:["object"]},bubbleLabel:{toBeTypes:["object"]},arrow:{toBeTypes:["object"]},arrowLabel:{toBeTypes:["object"]},force:{toBeTypes:["object"]},zoomable:{toBeTypes:["boolean"]},transform:{toBeTypes:["object"]},scaleExtent:{toBeTypes:["object"]}});if(e.bubble){const r=t(e.bubble,{radiusMin:{toBeTypes:["number"]},radiusMax:{toBeTypes:["number"]},arcScaleType:{toBe:'"area" | "radius"',test:i=>i==="area"||i==="radius"},fillColorType:{toBeOption:"ColorType"},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.bubbleLabel){const r=t(e.bubbleLabel,{fillRate:{toBeTypes:["number"]},lineHeight:{toBeTypes:["number"]},lineLengthMin:{toBeTypes:["number"]},colorType:{toBeOption:"ColorType"},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.arrow){const r=t(e.arrow,{colorType:{toBeOption:"ColorType"},strokeWidthMin:{toBeTypes:["number"]},strokeWidthMax:{toBeTypes:["number"]},pointerWidth:{toBeTypes:["number"]},pointerHeight:{toBeTypes:["number"]},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.arrowLabel){const r=t(e.arrowLabel,{colorType:{toBeOption:"ColorType"},sizeFixed:{toBeTypes:["boolean"]},styleFn:{toBeTypes:["Function"]}});if(r.status==="error")return r}if(e.force){const r=t(e.force,{nodeStrength:{toBeTypes:["number"]},linkDistance:{toBeTypes:["number"]},velocityDecay:{toBeTypes:["number"]},alphaDecay:{toBeTypes:["number"]}});if(r.status==="error")return r}if(e.transform){const r=t(e.transform,{x:{toBeTypes:["number"]},y:{toBeTypes:["number"]},k:{toBeTypes:["number"]}});if(r.status==="error")return r}if(e.scaleExtent){const r=t(e.scaleExtent,{min:{toBeTypes:["number"]},max:{toBeTypes:["number"]}});if(r.status==="error")return r}return n}};function QN(e,t){return Xs().velocityDecay(t.force.velocityDecay).alphaDecay(t.force.alphaDecay).force("link",Bf().id(n=>n.id).strength(1).distance(n=>t.force.linkDistance)).force("charge",Vs().strength(t.force.nodeStrength)).force("collision",Ws(t.bubble.radiusMax).strength(1)).force("center",Ef(e.width/2,e.height/2))}function JN(e){return"translate("+e.x+","+e.y+")"}function eF(e){const t=e.source.x+(e.target.x-e.source.x)/2,n=e.source.y+(e.target.y-e.source.y)/2;return"translate("+t+","+n+")"}function tF(e){return"M"+e.source.x+","+e.source.y+" L"+e.target.x+","+e.target.y}function nF({defsSelection:e,markerParams:t,markerData:n}){return e.selectAll(`marker.${_2}`).data(n).join(r=>{const i=r.append("marker").classed(_2,!0).attr("viewBox",t.viewBox).attr("orient","auto");return i.append("path").attr("d",t.d),i},r=>r,r=>r.remove()).attr("id",r=>r.id).attr("markerWidth",t.pointerWidth).attr("markerHeight",t.pointerHeight).attr("refX",r=>r.refX).attr("refY",0)}function rF(e,t){function n(o){o.active||e.alphaTarget(.3).restart(),o.subject.fx=o.subject.x,o.subject.fy=o.subject.y,t.next("start")}function r(o){o.subject.fx=o.x,o.subject.fy=o.y,t.next("drag")}function i(o){o.active||e.alphaTarget(0),o.subject.fx=null,o.subject.fy=null,t.next("end")}return hs().on("start",n).on("drag",r).on("end",i)}function iF({nodeListGSelection:e,nodes:t}){return e.selectAll("g").data(t,n=>n.id).join(n=>n.append("g").classed(ZN,!0),n=>n,n=>n.remove())}function oF({nodeGSelection:e,fullParams:t,fullChartParams:n}){return e.each((r,i,o)=>{V(o[i]).selectAll("circle").data([r]).join(s=>s.append("circle").classed(A2,!0).attr("cursor","pointer"),s=>s,s=>s.remove()).attr("r",s=>s.r).attr("fill",s=>Me({datum:s,colorType:t.bubble.fillColorType,fullChartParams:n})).attr("stroke",s=>Me({datum:s,colorType:t.bubble.strokeColorType,fullChartParams:n})).attr("stroke-width",t.bubble.strokeWidth).attr("style",s=>t.bubble.styleFn(s))}).attr("text-anchor","middle").attr("font-size",$2).each((r,i,o)=>{const a=V(o[i]);let s=!0;r.label.length<=t.bubbleLabel.lineLengthMin&&(s=!1),a.call(M$,{text:r.label,radius:r.r*t.bubbleLabel.fillRate,lineHeight:$2*t.bubbleLabel.lineHeight,isBreakAll:s})}),e.select("text").attr("pointer-events","none").attr("style",r=>t.bubbleLabel.styleFn(r)),e.select(`circle.${A2}`)}function aF({edgeListGSelection:e,edges:t}){return e.selectAll("g").data(t,n=>n.id).join(n=>n.append("g").classed(jN,!0),n=>n,n=>n.remove())}function sF({edgeGSelection:e,fullParams:t,fullChartParams:n}){return e.each((r,i,o)=>{V(o[i]).selectAll("path").data([r]).join(s=>s.append("path").classed(S2,!0),s=>s,s=>s.remove()).attr("marker-end",s=>`url(#${s.markerId})`).attr("stroke",s=>Me({datum:s.data,colorType:t.arrow.colorType,fullChartParams:n})).attr("stroke-width",s=>s.strokeWidth).attr("style",s=>t.arrow.styleFn(s))}),e.select(`path.${S2}`)}function lF({edgeGSelection:e}){return e.each((t,n,r)=>{V(r[n]).selectAll("g").data([t]).join(o=>o.append("g").classed(w2,!0),o=>o,o=>o.remove())}),e.select(`g.${w2}`)}function uF({edgeLabelGSelection:e,fullParams:t,fullChartParams:n}){return e.each((r,i,o)=>{V(o[i]).selectAll("text").data([r],s=>s.id).join(s=>s.append("text").classed(T2,!0).attr("text-anchor","middle").attr("pointer-events","none"),s=>s,s=>s.remove()).text(s=>s.label).attr("fill",s=>Me({datum:s,colorType:t.arrowLabel.colorType,fullChartParams:n})).attr("font-size",n.styles.textSize).attr("style",s=>t.arrowLabel.styleFn(s))}),e.select(`text.${T2}`)}function cF({nodeGSelection:e,edgeGSelection:t,highlightIds:n,fullChartParams:r}){if(e.interrupt("highlight"),!n.length){e.transition("highlight").style("opacity",1),t.transition("highlight").style("opacity",1);return}t.style("opacity",r.styles.unhighlightedOpacity),e.each((i,o,a)=>{const s=V(a[o]);n.includes(i.id)?s.style("opacity",1).transition("highlight").ease(sr).duration(500):s.style("opacity",r.styles.unhighlightedOpacity)})}const fF=ja(KN)(({selection:e,rootSelection:t,name:n,observer:r,subject:i})=>{const o=new J,a=e.append("g").classed(VN,!0),s=a.append("defs"),l=a.append("g").classed(HN,!0),u=a.append("g").classed(qN,!0);let c,f,h,p,d,m;const g=new Du("end"),y=new J,b=r.fullParams$.pipe(L(o),R(w=>{let D=w.zoomable?yn().on("zoom",F=>{a.attr("transform",`translate(
|
175
|
+
${F.transform.x},
|
176
|
+
${F.transform.y}
|
177
|
+
) scale(
|
178
|
+
${F.transform.k}
|
179
|
+
)`),w.arrowLabel.sizeFixed&&m&&m.attr("transform",`scale(${1/F.transform.k})`)}):yn().on("zoom",null);return w.scaleExtent&&D.scaleExtent([w.scaleExtent.min,w.scaleExtent.max]),t.call(D),D}));Y({d3Zoom:b,transform:r.fullParams$.pipe(L(o),R(w=>w.transform))}).pipe(L(o),G(async w=>w)).subscribe(w=>{e.call(w.d3Zoom.transform,Li.translate(w.transform.x,w.transform.y).scale(w.transform.k))});const v=Y({layout:r.layout$.pipe(Xi()),fullParams:r.fullParams$}).pipe(L(o),G(async w=>w),R(w=>QN(w.layout,w.fullParams)),pe(1)),x=r.computedData$.pipe(L(o),R(w=>{const D=w.nodes.filter(z=>z.value!=null);if(!D.length)return[0,2];const F=ic(w.nodes.map(z=>z.value));return D.length==1||F[0]===F[1]?[F[0]-1,F[1]+1]:F}),pe(1)),_=r.computedData$.pipe(L(o),R(w=>{const D=w.edges.filter(z=>z.value!=null);if(!D.length)return[0,2];const F=ic(w.edges.map(z=>z.value));return D.length==1||F[0]===F[1]?[F[0]-1,F[1]+1]:F}),pe(1)),A=x.pipe(L(o),R(w=>(w[1]-w[0])/2)),S=_.pipe(L(o),R(w=>(w[1]-w[0])/2)),P=Y({nodeMinMaxValue:x,fullParams:r.fullParams$}).pipe(L(o),G(async w=>w),R(w=>kn().domain(w.nodeMinMaxValue).range([w.fullParams.bubble.radiusMin,w.fullParams.bubble.radiusMax]).exponent(w.fullParams.bubble.arcScaleType==="area"?.5:1))),M=Y({edgeMinMaxValue:_,fullParams:r.fullParams$}).pipe(L(o),G(async w=>w),R(w=>xr().domain(w.edgeMinMaxValue).range([w.fullParams.arrow.strokeWidthMin,w.fullParams.arrow.strokeWidthMax]))),B=Y({computedData:r.computedData$,radiusScale:P,defaultNodeValue:A}).pipe(L(o),G(async w=>w),R(w=>new Map(w.computedData.nodes.map(D=>{let F=D;return F.r=w.radiusScale(F.value??w.defaultNodeValue),[F.id,F]})))),$=Y({computedData:r.computedData$,strokeWidthScale:M,defaultEdgeValue:S}).pipe(L(o),G(async w=>w),R(w=>new Map(w.computedData.edges.map(D=>{let F=D;return F.source=D.startNode,F.target=D.endNode,F.strokeWidth=w.strokeWidthScale(F.value??w.defaultEdgeValue),F.markerId=`${UN}__${F.id}`,[F.id,F]})))),k=Y({visibleComputedData:r.visibleComputedData$,RenderNodeMap:B,RenderEdgeMap:$}).pipe(L(o),G(async w=>w),R(w=>({nodes:w.visibleComputedData.nodes.map(D=>w.RenderNodeMap.get(D.id)),edges:w.visibleComputedData.edges.map(D=>w.RenderEdgeMap.get(D.id))})),pe(1)),C=r.fullParams$.pipe(L(o),R(w=>({viewBox:`-${w.arrow.pointerWidth} -${w.arrow.pointerHeight/2} ${w.arrow.pointerWidth} ${w.arrow.pointerHeight}`,d:`M${-w.arrow.pointerWidth},${-w.arrow.pointerHeight/2}L0,0L${-w.arrow.pointerWidth},${w.arrow.pointerHeight/2}`,pointerWidth:w.arrow.pointerWidth,pointerHeight:w.arrow.pointerHeight}))),T=Y({computedData:r.computedData$,fullParams:r.fullParams$,RenderNodeMap:B,RenderEdgeMap:$}).pipe(L(o),G(async w=>w),R(w=>w.computedData.edges.map(D=>{const F=w.RenderEdgeMap.get(D.id),z=w.RenderNodeMap.get(D.endNode.id);return{id:F.markerId,edgeId:D.id,strokeWidth:F.strokeWidth,refX:(z.r+w.fullParams.bubble.strokeWidth/2)/F.strokeWidth-1}})));return Y({defsSelection:s,markerParams:C,markerData:T}).pipe(L(o),R(w=>nF({defsSelection:s,markerParams:w.markerParams,markerData:w.markerData}))).subscribe(),Y({renderData:k,computedData:r.computedData$,CategoryNodeMap:r.CategoryNodeMap$,simulation:v,fullParams:r.fullParams$,fullChartParams:r.fullChartParams$}).pipe(L(o),G(async w=>w)).subscribe(w=>{c=iF({nodeListGSelection:u,nodes:w.renderData.nodes}),f=oF({nodeGSelection:c,fullParams:w.fullParams,fullChartParams:w.fullChartParams}),f.call(rF(w.simulation,g)),h=aF({edgeListGSelection:l,edges:w.renderData.edges}),p=sF({edgeGSelection:h,fullParams:w.fullParams,fullChartParams:w.fullChartParams}),d=lF({edgeGSelection:h}),m=uF({edgeLabelGSelection:d,fullParams:w.fullParams,fullChartParams:w.fullChartParams}),w.simulation.nodes(w.renderData.nodes).on("tick",()=>{p.attr("d",tF),c.attr("transform",JN),d.attr("transform",D=>eF(D))}),w.simulation.force("link").links(w.renderData.edges),w.simulation.alpha(.3).restart(),f.on("mouseover",(D,F)=>{D.stopPropagation(),y.next({type:"relationship",eventName:"mouseover",pluginName:Ue,highlightTarget:w.fullChartParams.highlightTarget,datum:F,category:w.CategoryNodeMap.get(F.categoryLabel),categoryIndex:F.categoryIndex,categoryLabel:F.categoryLabel,event:D,data:w.computedData})}).on("mousemove",(D,F)=>{D.stopPropagation(),y.next({type:"relationship",eventName:"mousemove",pluginName:Ue,highlightTarget:w.fullChartParams.highlightTarget,datum:F,category:w.CategoryNodeMap.get(F.categoryLabel),categoryIndex:F.categoryIndex,categoryLabel:F.categoryLabel,event:D,data:w.computedData})}).on("mouseout",(D,F)=>{D.stopPropagation(),y.next({type:"relationship",eventName:"mouseout",pluginName:Ue,highlightTarget:w.fullChartParams.highlightTarget,datum:F,category:w.CategoryNodeMap.get(F.categoryLabel),categoryIndex:F.categoryIndex,categoryLabel:F.categoryLabel,event:D,data:w.computedData})}).on("click",(D,F)=>{D.stopPropagation(),y.next({type:"relationship",eventName:"click",pluginName:Ue,highlightTarget:w.fullChartParams.highlightTarget,datum:F,category:w.CategoryNodeMap.get(F.categoryLabel),categoryIndex:F.categoryIndex,categoryLabel:F.categoryLabel,event:D,data:w.computedData})})}),g.pipe(G(w=>Wi(()=>w==="end",y,va))).subscribe(w=>{i.event$.next(w)}),Y({renderData:k,highlightNodes:r.relationshipHighlightNodes$.pipe(R(w=>w.map(D=>D.id))),highlightEdges:r.relationshipHighlightEdges$.pipe(R(w=>w.map(D=>D.id))),fullChartParams:r.fullChartParams$,fullParams:r.fullParams$}).pipe(L(o),G(async w=>w)).subscribe(w=>{!c||!h||cF({nodeGSelection:c,edgeGSelection:h,highlightIds:w.highlightNodes,fullChartParams:w.fullChartParams})}),()=>{o.next(void 0)}}),P2="RelationshipLegend",hF=ja({name:P2,defaultParams:h2,layerIndex:ki,validator:(e,{validateColumns:t})=>t(e,{placement:{toBe:'"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',test:r=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].includes(r)},padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:e,rootSelection:t,observer:n,subject:r})=>{const i=new J,o=n.fullParams$.pipe(L(i),R(s=>{const l=[{listRectWidth:s.listRectWidth,listRectHeight:s.listRectHeight,listRectRadius:s.listRectRadius}];return{...s,labelList:l}})),a=Ei(P2,{rootSelection:t,legendLabels$:n.categoryLabels$,fullParams$:o,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),a()}}),D2="RelationshipTooltip",pF=ja({name:D2,defaultParams:Yp,layerIndex:Ri,validator:(e,{validateColumns:t})=>t(e,{backgroundColorType:{toBeOption:"ColorType"},backgroundOpacity:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},offset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},padding:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"},renderFn:{toBeTypes:["Function"]}})})(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=Bi(D2,{rootSelection:t,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}}),M2={force:{strength:.08,velocityDecay:.3,collisionSpacing:2},bubbleLabel:{fillRate:.6,lineHeight:1,lineLengthMin:4},arcScaleType:"area"},C2={outerRadius:.85,innerRadius:0,outerRadiusWhileHighlight:.9,startAngle:0,endAngle:Math.PI*2,padAngle:0,strokeColorType:"background",strokeWidth:1,cornerRadius:0},Wp={renderFn:e=>e.eventName==="mouseover"||e.eventName==="mousemove"?[String(e.datum.value)]:[String(Math.round(e.data.reduce((t,n)=>t+n.reduce((r,i)=>r+(i.value??0),0),0)*(e.tween??1)))],textAttrs:[{transform:"translate(0, 0)"}],textStyles:[{"font-weight":"bold","text-anchor":"middle","pointer-events":"none","dominant-baseline":"middle","font-size":64,fill:"#000"}]};Wp.renderFn.toString=()=>`(eventData) => {
|
180
|
+
if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
|
181
|
+
return [String(eventData.datum.value)]
|
65
182
|
}
|
66
183
|
return [
|
67
184
|
String(
|
@@ -70,10 +187,48 @@
|
|
70
187
|
return acc + seriesData.reduce((_acc, data) => {
|
71
188
|
return _acc + (data.value ?? 0)
|
72
189
|
}, 0)
|
73
|
-
}, 0) *
|
190
|
+
}, 0) * (eventData.tween ?? 1)
|
74
191
|
)
|
75
192
|
)
|
76
193
|
]
|
77
|
-
}`;const ip={outerRadius:.85,outerRadiusWhileHighlight:.9,startAngle:0,endAngle:Math.PI*2,labelCentroid:2.1,labelColorType:"primary",labelFn:t=>String(t.label)};ip.labelFn.toString=()=>"d => String(d.label)";const P2={outerRadius:.85,padAngle:0,strokeColorType:"background",strokeWidth:0,cornerRadius:0,arcScaleType:"area",angleIncreaseWhileHighlight:.05},op={outerRadius:.85,labelCentroid:2.1,labelFn:t=>String(t.label),labelColorType:"primary",arcScaleType:"area"};op.labelFn.toString=()=>"d => String(d.label)";const M2={position:"right",justify:"end",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,textColorType:"primary"},NI={name:"Bubbles",defaultParams:A2,layerIndex:ke,validator:(t,{validateColumns:e})=>{const n=e(t,{force:{toBeTypes:["object"]},bubbleText:{toBeTypes:["object"]},arcScaleType:{toBe:'"area" | "radius"',test:r=>r==="area"||r==="radius"}});if(t.force){const r=e(t.force,{velocityDecay:{toBeTypes:["number"]},collisionSpacing:{toBeTypes:["number"]},strength:{toBeTypes:["number"]}});if(r.status==="error")return r}if(t.bubbleText){const r=e(t.bubbleText,{fillRate:{toBeTypes:["number"]},lineHeight:{toBeTypes:["number"]},lineLengthMin:{toBeTypes:["number"]}});if(r.status==="error")return r}return n}};let Mn;function BI(t,e){return i1().velocityDecay(e.force.velocityDecay).force("collision",e1().radius(n=>n.r+e.force.collisionSpacing)).force("charge",o1().strength(n=>-Math.pow(n.r,2)*e.force.strength)).on("tick",()=>{t.attr("transform",n=>`translate(${n.x},${n.y})`)})}function FI({visibleComputedLayoutData:t,LastBubbleDataMap:e,graphicWidth:n,graphicHeight:r,SeriesContainerPositionMap:i,scaleType:o}){const a=Math.min(n,r)/2,s=t.flat(),u=s.reduce((h,p)=>h+p.value,0),l=li().domain([0,u]).range([0,a]).exponent(o==="area"?.5:1),c=o==="area"?1:(()=>{const h=a*a*Math.PI;return Math.sqrt(h/t0(s,p=>Math.PI*Math.pow(l(p.value),2)))})(),f=.9;return s.map(h=>{const p=h,d=e.get(p.id);if(d)p.x=d.x,p.y=d.y;else{const m=i.get(p.seriesLabel);p.x=Math.random()*m.width,p.y=Math.random()*m.height}const g=l(p.value??0)*c*f;return p.r=g,p._originR=g,p})}function OI({selection:t,bubblesData:e,fullParams:n,sumSeries:r}){const i=t.selectAll("g").data(e,a=>a.id).join(a=>{const s=a.append("g").attr("cursor","pointer").attr("font-size",12).style("fill","#ffffff").attr("text-anchor","middle");return s.append("circle").attr("class","node").attr("cx",0).attr("cy",0).attr("fill",u=>u.color),s.append("text").style("opacity",.8).attr("pointer-events","none"),s},a=>a,a=>a.remove()).attr("transform",a=>`translate(${a.x},${a.y})`),o=r?"seriesLabel":"label";return i.select("circle").transition().duration(200).attr("r",a=>a.r).attr("fill",a=>a.color),i.each((a,s,u)=>{const l=V(u[s]);let c=!0;a[o].length<=n.bubbleText.lineLengthMin&&(c=!1),l.call(KE,{text:a[o],radius:a.r*n.bubbleText.fillRate,lineHeight:n.bubbleText.lineHeight,isBreakAll:c})}),i}function GI(){return b0().on("start",(t,e)=>{t.active||Mn.alpha(1).restart(),e.fx=e.x,e.fy=e.y}).on("drag",(t,e)=>{t.active||Mn.alphaTarget(0),e.fx=t.x,e.fy=t.y}).on("end",(t,e)=>{e.fx=null,e.fy=null})}function zI({fullParams:t,SeriesContainerPositionMap:e}){Mn.force("x",a1().strength(t.force.strength).x(n=>e.get(n.seriesLabel).centerX)).force("y",s1().strength(t.force.strength).y(n=>e.get(n.seriesLabel).centerY)),Mn.alpha(1).restart()}function YI({bubblesSelection:t,highlightIds:e,fullChartParams:n}){if(t.interrupt("highlight"),!e.length){t.transition("highlight").style("opacity",1);return}t.each((r,i,o)=>{const a=V(o[i]);e.includes(r.id)?a.style("opacity",1).transition("highlight").ease(no).duration(500):a.style("opacity",n.styles.unhighlightedOpacity)})}const UI=Fn(NI)(({selection:t,name:e,observer:n,subject:r})=>{const i=new nt;let o=new Map;const a=n.fullDataFormatter$.pipe(B(f=>f.sumSeries),tt()),s=n.fullParams$.pipe(I(i),B(f=>f.arcScaleType),tt()),u=U({layout:n.layout$,SeriesContainerPositionMap:n.SeriesContainerPositionMap$,visibleComputedLayoutData:n.visibleComputedLayoutData$,scaleType:s}).pipe(I(i),W(async f=>f),B(f=>FI({visibleComputedLayoutData:f.visibleComputedLayoutData,LastBubbleDataMap:o,graphicWidth:f.layout.width,graphicHeight:f.layout.height,SeriesContainerPositionMap:f.SeriesContainerPositionMap,scaleType:f.scaleType})),St(1));u.subscribe(f=>{o=new Map(f.map(h=>[h.id,h]))});const l=n.fullChartParams$.pipe(I(i),B(f=>f.highlightTarget),tt()),c=U({bubblesData:u,fullParams:n.fullParams$,SeriesContainerPositionMap:n.SeriesContainerPositionMap$,sumSeries:a}).pipe(I(i),W(async f=>f),B(f=>{Mn&&Mn.stop();const h=OI({selection:t,bubblesData:f.bubblesData,fullParams:f.fullParams,sumSeries:f.sumSeries});return Mn=BI(h,f.fullParams),Mn.nodes(f.bubblesData),zI({fullParams:f.fullParams,SeriesContainerPositionMap:f.SeriesContainerPositionMap}),h}));return U({bubblesSelection:c,computedData:n.computedData$,SeriesDataMap:n.SeriesDataMap$,highlightTarget:l}).pipe(I(i),W(async f=>f)).subscribe(f=>{f.bubblesSelection.on("mouseover",(h,p)=>{r.event$.next({type:"series",eventName:"mouseover",pluginName:e,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).on("mousemove",(h,p)=>{r.event$.next({type:"series",eventName:"mousemove",pluginName:e,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).on("mouseout",(h,p)=>{r.event$.next({type:"series",eventName:"mouseout",pluginName:e,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).on("click",(h,p)=>{r.event$.next({type:"series",eventName:"click",pluginName:e,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).call(GI())}),U({bubblesSelection:c,bubblesData:u,highlight:n.seriesHighlight$.pipe(B(f=>f.map(h=>h.id))),fullChartParams:n.fullChartParams$,fullParams:n.fullParams$,sumSeries:a,SeriesContainerPositionMap:n.SeriesContainerPositionMap$}).pipe(I(i),W(async f=>f)).subscribe(f=>{YI({bubblesSelection:f.bubblesSelection,highlightIds:f.highlight,fullChartParams:f.fullChartParams})}),()=>{i.next(void 0)}});function D2({data:t,startAngle:e,endAngle:n}){return zx().startAngle(e).endAngle(n).value(o=>o.value).sort((o,a)=>o.seq-a.seq)(t).map((o,a)=>{let s=o;return s.id=o.data.id,s})}function WI({selection:t,pluginName:e,separateSeries$:n,seriesLabels$:r}){const i=ot(e,"series");return U({seriesLabels:r,separateSeries:n}).pipe(W(async o=>o),B((o,a)=>{const s=o.separateSeries?o.seriesLabels:[o.seriesLabels.join("")];return t.selectAll(`g.${i}`).data(s,u=>u).join(u=>u.append("g").classed(i,!0),u=>u,u=>u.remove())}),St(1))}const Ho=({selection:t,pluginName:e,separateSeries$:n,seriesLabels$:r,seriesContainerPosition$:i})=>{const o=WI({selection:t,pluginName:e,separateSeries$:n,seriesLabels$:r});return U({seriesCenterSelection:o,seriesContainerPosition:i}).pipe(W(async a=>a),tt((a,s)=>a.seriesContainerPosition.length===s.seriesContainerPosition.length)).subscribe(a=>{a.seriesCenterSelection.attr("transform",(s,u)=>{const l=a.seriesContainerPosition[u]??a.seriesContainerPosition[0];return`translate(${l.centerX}, ${l.centerY})`})}),U({seriesCenterSelection:o,seriesContainerPosition:i}).pipe(W(async a=>a)).subscribe(a=>{a.seriesCenterSelection.transition().attr("transform",(s,u)=>{const l=a.seriesContainerPosition[u]??a.seriesContainerPosition[0];return`translate(${l.centerX}, ${l.centerY})`})}),{seriesCenterSelection$:o}},ap="Pie",HI={name:ap,defaultParams:T2,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{outerRadius:{toBeTypes:["number"]},innerRadius:{toBeTypes:["number"]},outerRadiusWhileHighlight:{toBeTypes:["number"]},startAngle:{toBeTypes:["number"]},endAngle:{toBeTypes:["number"]},padAngle:{toBeTypes:["number"]},strokeColorType:{toBeTypes:["string"]},strokeWidth:{toBeTypes:["number"]},cornerRadius:{toBeTypes:["number"]}})};function XI({enter:t,exit:e,data:n,lastTweenData:r,fullParams:i}){return!t.size()&&!e.size()?o=>{const a=n.map((s,u)=>{const l=r[u]??{startAngle:0,endAngle:0,value:0};return{...s,startAngle:s.startAngle*o+l.startAngle*(1-o),endAngle:s.endAngle*o+l.endAngle*(1-o),value:s.value*o+l.value*(1-o)}});return sp(a,i.startAngle,i.endAngle,1)}:o=>sp(n,i.startAngle,i.endAngle,o)}function sp(t,e,n,r){return t.map((i,o)=>{const a=e+(i.startAngle-e)*r,s=a+(i.endAngle-i.startAngle)*r;return{...i,startAngle:a,endAngle:s}})}function C2({selection:t,data:e,arc:n,pathClassName:r,fullParams:i,fullChartParams:o}){return t.selectAll("path").data(e,s=>s.id).join("path").classed(r,!0).style("cursor","pointer").attr("fill",(s,u)=>s.data.color).attr("stroke",(s,u)=>An({datum:s.data,colorType:i.strokeColorType,fullChartParams:o})).attr("stroke-width",i.strokeWidth).attr("d",(s,u)=>n(s))}function jI({pathSelection:t,ids:e,fullChartParams:n,arc:r,arcHighlight:i}){if(t.interrupt("highlight"),!e.length){t.transition("highlight").style("opacity",1).attr("d",o=>r(o));return}t.each((o,a,s)=>{const u=V(s[a]);e.includes(o.data.id)?u.style("opacity",1).transition("highlight").ease(no).duration(500).attr("d",l=>i(l)):u.style("opacity",n.styles.unhighlightedOpacity).transition("highlight").attr("d",l=>r(l))})}function VI(t,e){const n=new nt,r=ot(t,"path");let i=[],o=[];const a=e.seriesContainerPosition$.pipe(I(n),B(h=>h.width<h.height?h.width:h.height),tt()),s=new dt(h=>{U({containerVisibleComputedLayoutData:e.containerVisibleComputedLayoutData$,fullParams:e.fullParams$}).pipe(I(n),W(async p=>p)).subscribe(p=>{const d=D2({data:p.containerVisibleComputedLayoutData,startAngle:p.fullParams.startAngle,endAngle:p.fullParams.endAngle});h.next(d)})}),u=new dt(h=>{U({shorterSideWith:a,fullParams:e.fullParams$}).pipe(I(n),W(async p=>p)).subscribe(p=>{const d=Nu({axisWidth:p.shorterSideWith,innerRadius:p.fullParams.innerRadius,outerRadius:p.fullParams.outerRadius,padAngle:p.fullParams.padAngle,cornerRadius:p.fullParams.cornerRadius});h.next(d)})}),l=new dt(h=>{U({shorterSideWith:a,fullParams:e.fullParams$}).pipe(I(n),W(async p=>p)).subscribe(p=>{const d=Nu({axisWidth:p.shorterSideWith,innerRadius:p.fullParams.innerRadius,outerRadius:p.fullParams.outerRadiusWhileHighlight,padAngle:p.fullParams.padAngle,cornerRadius:p.fullParams.cornerRadius});h.next(d)})}),c=e.fullChartParams$.pipe(I(n),B(h=>h.highlightTarget),tt()),f=new dt(h=>{U({pieData:s,arc:u,computedData:e.computedData$,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,highlightTarget:c}).pipe(I(n),W(async p=>p)).subscribe(p=>{e.containerSelection.interrupt("graphicMove");const d=e.containerSelection.selectAll("path").data(p.pieData,b=>b.id),g=d.enter(),m=d.exit(),y=XI({enter:g,exit:m,data:p.pieData,lastTweenData:i,fullParams:p.fullParams});e.containerSelection.transition("graphicMove").duration(p.fullChartParams.transitionDuration).tween("move",(b,v)=>x=>{o=y(x),C2({selection:e.containerSelection,data:o,arc:p.arc,pathClassName:r,fullParams:p.fullParams,fullChartParams:p.fullChartParams})}).on("end",(b,v)=>{o=sp(p.pieData,p.fullParams.startAngle,p.fullParams.endAngle,1);const x=C2({selection:e.containerSelection,data:o,arc:p.arc,pathClassName:r,fullParams:p.fullParams,fullChartParams:p.fullChartParams});h.next(x),i=Object.assign([],p.pieData),e.event$.next({type:"series",pluginName:t,eventName:"transitionEnd",event:void 0,highlightTarget:p.highlightTarget,datum:null,series:[],seriesIndex:-1,seriesLabel:"",data:p.computedData})})})}).pipe(St(1));return U({pathSelection:f,SeriesDataMap:e.SeriesDataMap$,computedData:e.computedData$,highlightTarget:c}).pipe(I(n),W(async h=>h)).subscribe(h=>{h.pathSelection.on("mouseover",(p,d)=>{p.stopPropagation(),e.event$.next({type:"series",eventName:"mouseover",pluginName:t,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})}).on("mousemove",(p,d)=>{p.stopPropagation(),e.event$.next({type:"series",eventName:"mousemove",pluginName:t,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})}).on("mouseout",(p,d)=>{p.stopPropagation(),e.event$.next({type:"series",eventName:"mouseout",pluginName:t,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})}).on("click",(p,d)=>{p.stopPropagation(),e.event$.next({type:"series",eventName:"click",pluginName:t,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})})}),U({pathSelection:f,highlight:e.seriesHighlight$.pipe(B(h=>h.map(p=>p.id))),fullChartParams:e.fullChartParams$,arc:u,arcHighlight:l}).pipe(I(n),W(async h=>h)).subscribe(h=>{jI({pathSelection:h.pathSelection,ids:h.highlight,fullChartParams:h.fullChartParams,arc:h.arc,arcHighlight:h.arcHighlight})}),()=>{n.next(void 0)}}const qI=Fn(HI)(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,{seriesCenterSelection$:o}=Ho({selection:t,pluginName:ap,separateSeries$:r.separateSeries$,seriesLabels$:r.seriesLabels$,seriesContainerPosition$:r.seriesContainerPosition$}),a=[];return o.pipe(I(i)).subscribe(s=>{a.forEach(u=>u()),s.each((u,l,c)=>{const f=V(c[l]),h=r.visibleComputedLayoutData$.pipe(I(i),B(d=>d[l]??d[0])),p=r.seriesContainerPosition$.pipe(I(i),B(d=>d[l]??d[0]));a[l]=VI(ap,{containerSelection:f,computedData$:r.computedData$,containerVisibleComputedLayoutData$:h,SeriesDataMap$:r.SeriesDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,seriesHighlight$:r.seriesHighlight$,seriesContainerPosition$:p,event$:n.event$})})}),()=>{i.next(void 0),a.forEach(s=>s())}}),zu="PieEventTexts",L2=ot(zu,"text"),ZI={name:zu,defaultParams:rp,layerIndex:Oh,validator:(t,{validateColumns:e})=>e(t,{eventFn:{toBeTypes:["Function"]},textAttrs:{toBeTypes:["object[]"]},textStyles:{toBeTypes:["object[]"]}})};function up(t,e){const n=t.selectAll(`text.${L2}`).data(e),r=n.enter().append("text").classed(L2,!0),i=n.merge(r);return i.each((o,a,s)=>{const u=V(s[a]).text(o.text);Object.keys(o.attr).forEach(l=>{u.attr(l,o.attr[l])}),Object.keys(o.style).forEach(l=>{u.style(l,o.style[l])})}),n.exit().remove(),i}function lp({eventData:t,eventName:e,t:n,eventFn:r,textAttrs:i,textStyles:o}){return r(t,e,n).map((s,u)=>({text:s,attr:i[u],style:o[u]}))}function KI(t,e){const n=new nt;let r;const i=e.fullChartParams$.pipe(I(n),B(o=>o.highlightTarget),tt());return U({computedData:e.computedData$,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,highlightTarget:i}).pipe(I(n),W(async o=>o)).subscribe(o=>{e.containerSelection.transition("move").duration(o.fullChartParams.transitionDuration).tween("move",(a,s)=>u=>{const l=lp({eventData:{type:"series",pluginName:t,eventName:"transitionMove",event:a,highlightTarget:o.highlightTarget,data:o.computedData,series:[],seriesIndex:-1,seriesLabel:"",datum:null},eventName:"transitionMove",t:u,eventFn:o.fullParams.eventFn,textAttrs:o.fullParams.textAttrs,textStyles:o.fullParams.textStyles});up(e.containerSelection,l)}).on("end",(a,s)=>{const u=lp({eventData:{type:"series",pluginName:t,eventName:"transitionEnd",event:a,highlightTarget:o.highlightTarget,data:o.computedData,series:[],seriesIndex:-1,seriesLabel:"",datum:null},eventName:"transitionMove",t:1,eventFn:o.fullParams.eventFn,textAttrs:o.fullParams.textAttrs,textStyles:o.fullParams.textStyles});up(e.containerSelection,u),r&&r.unsubscribe(),r=e.event$.subscribe(l=>{const c=lp({eventData:l,eventName:l.eventName,t:1,eventFn:o.fullParams.eventFn,textAttrs:o.fullParams.textAttrs,textStyles:o.fullParams.textStyles});up(e.containerSelection,c)})})}),()=>{n.next(void 0)}}const QI=Fn(ZI)(({selection:t,name:e,observer:n,subject:r})=>{const i=new nt,{seriesCenterSelection$:o}=Ho({selection:t,pluginName:zu,separateSeries$:n.separateSeries$,seriesLabels$:n.seriesLabels$,seriesContainerPosition$:n.seriesContainerPosition$}),a=[];return o.pipe(I(i)).subscribe(s=>{a.forEach(u=>u()),s.each((u,l,c)=>{const f=V(c[l]),h=n.computedLayoutData$.pipe(I(i),B(d=>d[l]??d[0])),p=n.seriesContainerPosition$.pipe(I(i),B(d=>d[l]??d[0]));a[l]=KI(zu,{containerSelection:f,computedData$:n.computedData$,containerComputedLayoutData$:h,SeriesDataMap$:n.SeriesDataMap$,fullParams$:n.fullParams$,fullChartParams$:n.fullChartParams$,seriesHighlight$:n.seriesHighlight$,seriesContainerPosition$:p,event$:r.event$})})}),()=>{i.next(void 0),a.forEach(s=>s())}}),xi="PieLabels",JI=ot(xi,"label-g"),tN=ot(xi,"line-g"),eN=ot(xi,"text"),k2=2,nN={name:xi,defaultParams:ip,layerIndex:Oh,validator:(t,{validateColumns:e})=>e(t,{outerRadius:{toBeTypes:["number"]},outerRadiusWhileHighlight:{toBeTypes:["number"]},startAngle:{toBeTypes:["number"]},endAngle:{toBeTypes:["number"]},labelCentroid:{toBeTypes:["number"]},labelFn:{toBeTypes:["Function"]},labelColorType:{toBeOption:"ColorType"}})};function rN({pieData:t,arc:e,arcMouseover:n,labelCentroid:r,lineStartCentroid:i,fullParams:o}){return t.map((a,s)=>{const[u,l]=e.centroid(a),[c,f]=n.centroid(a),h=o.labelFn(a.data);return{pieDatum:a,arcIndex:s,arcLabels:h.split(`
|
78
|
-
`),lineStartX:u*i,lineStartY:l*i,lineStartMouseoverX:c*i,lineStartMouseoverY:f*i,x:u*r,y:l*r,mouseoverX:c*r,mouseoverY:f*r,textWidth:0,collisionShiftX:0,collisionShiftY:0,quadrant:u>=0&&l<=0?1:u<0&&l<=0?2:u<0&&l>0?3:4}}).filter(a=>a.pieDatum.data.visible)}function iN({labelGSelection:t,data:e,fullParams:n,fullChartParams:r,textSizePx:i}){const o=t.selectAll("text").data(e,a=>a.pieDatum.id).join("text").classed(eN,!0).attr("font-weight","bold").attr("text-anchor",a=>a.quadrant==1||a.quadrant==4?"start":"end").style("dominant-baseline",a=>a.quadrant==1||a.quadrant==2?"auto":"hanging").style("cursor",a=>r.highlightTarget&&r.highlightTarget!="none"?"pointer":"none").attr("font-size",r.styles.textSize).attr("x",0).attr("y",0).attr("fill",(a,s)=>An({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).each((a,s,u)=>{Jv(V(u[s]),{textArr:a.arcLabels,textSizePx:i,quadrant:a.quadrant})});return o.transition().attr("transform",a=>"translate("+a.x+","+a.y+")"),o}function oN(t,e,n){const r=t.nodes(),i=n,o=r.map((a,s)=>{const u=a.getBBox(),l=[e[s].x,e[s].y];return{node:a,x:l[0],y:l[1],width:u.width,height:u.height}});for(let a=0;a<o.length;a++){const s=o[a];for(let u=a+1;u<o.length;u++){const l=o[u];e[a].textWidth=s.width;const c=s.x+e[a].collisionShiftX,f=s.y+e[a].collisionShiftY,h=l.x+e[u].collisionShiftX,p=l.y+e[u].collisionShiftY;if(!(c+s.width/2<h-l.width/2||c-s.width/2>h+l.width/2||f+s.height/2<p-l.height/2||f-s.height/2>p+l.height/2)){if(e[u].quadrant==2){const d=p>f?-i*2:-i;e[u].collisionShiftY+=d}else if(e[u].quadrant==4){const d=p>f?i:i*2;e[u].collisionShiftY+=d}}}}for(let a=o.length-1;a>=0;a--){const s=o[a];for(let u=a-1;u>=0;u--){const l=o[u];e[a].textWidth=s.width;const c=s.x+e[a].collisionShiftX,f=s.y+e[a].collisionShiftY,h=l.x+e[u].collisionShiftX,p=l.y+e[u].collisionShiftY;if(!(c+s.width/2<h-l.width/2||c-s.width/2>h+l.width/2||f+s.height/2<p-l.height/2||f-s.height/2>p+l.height/2)){if(e[u].quadrant==1){const d=p>f?-i*2:-i;e[u].collisionShiftY+=d}else if(e[u].quadrant==3){const d=p>f?i:i*2;e[u].collisionShiftY+=d}}}}t.data(e).transition().attr("transform",a=>`translate(${a.x+a.collisionShiftX},${a.y+a.collisionShiftY})`)}function aN({lineGSelection:t,data:e,fullParams:n,fullChartParams:r}){const i=e.filter(a=>a.collisionShiftX||a.collisionShiftY),o=t.selectAll("polyline").data(i,a=>a.pieDatum.id).join("polyline").attr("stroke",a=>An({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).attr("stroke-width",1).attr("fill","none").attr("points",a=>[[a.lineStartX,a.lineStartY],[a.lineStartX,a.lineStartY]]);return o.transition().attr("points",a=>{let s=a.x+a.collisionShiftX,u=a.y+a.collisionShiftY;return[[s,u],[a.lineStartX,a.lineStartY]]}),o}function sN({textSelection:t,lineSelection:e,ids:n,fullChartParams:r}){if(t.interrupt("highlight"),e.interrupt("highlight"),!n.length){t.transition("highlight").duration(200).attr("transform",i=>`translate(${i.x+i.collisionShiftX},${i.y+i.collisionShiftY})`).style("opacity",1),e.transition("highlight").duration(200).style("opacity",1);return}t.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.id)?s.style("opacity",1).transition("highlight").duration(200).attr("transform",u=>u.collisionShiftX||u.collisionShiftY?`translate(${u.x+u.collisionShiftX},${u.y+u.collisionShiftY})`:`translate(${u.mouseoverX+u.collisionShiftX},${u.mouseoverY+u.collisionShiftY})`):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200).attr("transform",u=>`translate(${u.x+u.collisionShiftX},${u.y+u.collisionShiftY})`)}),e.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.data.id)?s.style("opacity",1).transition("highlight").duration(200):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function uN(t,e){const n=new nt;e.containerSelection.selectAll("g").remove();const r=e.containerSelection.append("g");r.classed(tN,!0);const i=e.containerSelection.append("g");i.classed(JI,!0);const o=new nt,a=new nt;let s=[];const u=e.seriesContainerPosition$.pipe(I(n),B(c=>c.width<c.height?c.width:c.height),tt()),l=e.fullParams$.pipe(I(n),B(c=>c.labelCentroid>=k2?k2:c.labelCentroid));return U({shorterSideWith:u,containerVisibleComputedLayoutData:e.containerVisibleComputedLayoutData$,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,textSizePx:e.textSizePx$,lineStartCentroid:l}).pipe(I(n),W(async c=>c)).subscribe(c=>{const f=Nu({axisWidth:c.shorterSideWith,innerRadius:0,outerRadius:c.fullParams.outerRadius,padAngle:0,cornerRadius:0}),h=Nu({axisWidth:c.shorterSideWith,innerRadius:0,outerRadius:c.fullParams.outerRadiusWhileHighlight,padAngle:0,cornerRadius:0}),p=D2({data:c.containerVisibleComputedLayoutData,startAngle:c.fullParams.startAngle,endAngle:c.fullParams.endAngle});s=rN({pieData:p,arc:f,arcMouseover:h,labelCentroid:c.fullParams.labelCentroid,lineStartCentroid:c.lineStartCentroid,fullParams:c.fullParams}),r.selectAll("polyline").remove();const d=iN({labelGSelection:i,data:s,fullParams:c.fullParams,fullChartParams:c.fullChartParams,textSizePx:c.textSizePx});setTimeout(()=>{oN(d,s,c.textSizePx);const g=aN({lineGSelection:r,data:s,fullParams:c.fullParams,fullChartParams:c.fullChartParams});a.next(g)},1e3),o.next(d)}),U({textSelection:o,lineSelection:a,highlight:e.seriesHighlight$.pipe(B(c=>c.map(f=>f.id))),fullChartParams:e.fullChartParams$}).pipe(I(n),W(async c=>c)).subscribe(c=>{sN({textSelection:c.textSelection,lineSelection:c.lineSelection,ids:c.highlight,fullChartParams:c.fullChartParams})}),()=>{n.next(void 0)}}const lN=Fn(nN)(({selection:t,observer:e,subject:n})=>{const r=new nt,{seriesCenterSelection$:i}=Ho({selection:t,pluginName:xi,separateSeries$:e.separateSeries$,seriesLabels$:e.seriesLabels$,seriesContainerPosition$:e.seriesContainerPosition$}),o=[];return i.pipe(I(r)).subscribe(a=>{o.forEach(s=>s()),a.each((s,u,l)=>{const c=V(l[u]),f=e.visibleComputedLayoutData$.pipe(I(r),B(p=>p[u]??p[0])),h=e.seriesContainerPosition$.pipe(I(r),B(p=>p[u]??p[0]));o[u]=uN(xi,{containerSelection:c,containerVisibleComputedLayoutData$:f,fullParams$:e.fullParams$,fullChartParams$:e.fullChartParams$,textSizePx$:e.textSizePx$,seriesHighlight$:e.seriesHighlight$,seriesContainerPosition$:h,event$:n.event$})})}),()=>{r.next(void 0)}}),cp="Rose",cN=Math.PI*2,fN={name:cp,defaultParams:P2,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{outerRadius:{toBeTypes:["number"]},padAngle:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},cornerRadius:{toBeTypes:["number"]},arcScaleType:{toBe:'"area" | "radius"',test:r=>r==="area"||r==="radius"},angleIncreaseWhileHighlight:{toBeTypes:["number"]}})};function hN({cornerRadius:t,outerRadius:e,axisWidth:n,maxValue:r,arcScaleType:i,fullParams:o}){const a=n/2*e,s=i==="area"?.5:1,u=li().domain([0,r]).range([0,a]).exponent(s);return l=>{const c=u(l.prevValue),f=u(l.value),h=Ze(c,f);return p=>{const d=h(p);return $u().innerRadius(0).outerRadius(d).padAngle(o.padAngle).padRadius(d).cornerRadius(t)(l)}}}function pN({pathSelection:t,ids:e,fullParams:n,fullChartParams:r,tweenArc:i}){if(t.interrupt("highlight"),!e.length){t.transition("highlight").style("opacity",1).attr("d",o=>i(o)(1));return}t.each((o,a,s)=>{const u=V(s[a]);e.includes(o.data.id)?u.style("opacity",1).transition("highlight").ease(no).duration(500).attr("d",l=>i({...l,startAngle:l.startAngle-n.angleIncreaseWhileHighlight,endAngle:l.endAngle+n.angleIncreaseWhileHighlight})(1)):u.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").attr("d",l=>i(l)(1))})}function dN(t,e){const n=new nt,r=ot(t,"path");let i=[];const o=e.seriesContainerPosition$.pipe(I(n),B(p=>p.width<p.height?p.width:p.height),tt()),a=U({containerVisibleComputedLayoutData:e.containerVisibleComputedLayoutData$,fullParams:e.fullParams$}).pipe(I(n),W(async p=>p),B(p=>{const d=cN/p.containerVisibleComputedLayoutData.length;return p.containerVisibleComputedLayoutData.map((g,m)=>({id:g.id,data:g,index:m,value:g.value,startAngle:d*m,endAngle:d*(m+1),padAngle:p.fullParams.padAngle,prevValue:i[m]&&i[m].id===g.id?i[m].value:0}))})),s=e.fullChartParams$.pipe(I(n),B(p=>p.highlightTarget),tt()),u=e.visibleComputedLayoutData$.pipe(B(p=>Math.max(...p.flat().map(d=>d.value))),tt()),l=U({fullParams:e.fullParams$,axisWidth:o,maxValue:u}).pipe(I(n),W(async p=>p),B(p=>hN({cornerRadius:p.fullParams.cornerRadius,outerRadius:p.fullParams.outerRadius,axisWidth:p.axisWidth,maxValue:p.maxValue,arcScaleType:p.fullParams.arcScaleType,fullParams:p.fullParams}))),c=e.fullChartParams$.pipe(I(n),B(p=>p.transitionDuration),tt()),f=new J2(!1),h=new dt(p=>{U({pieData:a,tweenArc:l,transitionDuration:c,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$}).pipe(I(n),W(async d=>d)).subscribe(d=>{const g=d.pieData.map((y,b)=>(y.prevValue=i[b]&&i[b].id===y.id?i[b].value:0,y));f.next(!0);const m=e.containerSelection.selectAll("path").data(g,y=>y.id).join("path").classed(r,!0).style("cursor","pointer").attr("fill",(y,b)=>y.data.color).attr("stroke",(y,b)=>An({datum:y.data,colorType:d.fullParams.strokeColorType,fullChartParams:d.fullChartParams})).attr("stroke-width",d.fullParams.strokeWidth);m.interrupt("graphicMove"),m.transition("graphicMove").duration(d.transitionDuration).attrTween("d",d.tweenArc).on("end",()=>{p.next(m),f.next(!1)}),i=Object.assign([],g)})}).pipe(St(1));return U({pathSelection:h,SeriesDataMap:e.SeriesDataMap$,computedData:e.computedData$,highlightTarget:s}).pipe(I(n),W(async p=>p)).subscribe(p=>{p.pathSelection.on("mouseover",(d,g)=>{d.stopPropagation(),e.event$.next({type:"series",eventName:"mouseover",pluginName:t,highlightTarget:p.highlightTarget,datum:g.data,series:p.SeriesDataMap.get(g.data.seriesLabel),seriesIndex:g.data.seriesIndex,seriesLabel:g.data.seriesLabel,event:d,data:p.computedData})}).on("mousemove",(d,g)=>{d.stopPropagation(),e.event$.next({type:"series",eventName:"mousemove",pluginName:t,highlightTarget:p.highlightTarget,datum:g.data,series:p.SeriesDataMap.get(g.data.seriesLabel),seriesIndex:g.data.seriesIndex,seriesLabel:g.data.seriesLabel,event:d,data:p.computedData})}).on("mouseout",(d,g)=>{d.stopPropagation(),e.event$.next({type:"series",eventName:"mouseout",pluginName:t,highlightTarget:p.highlightTarget,datum:g.data,series:p.SeriesDataMap.get(g.data.seriesLabel),seriesIndex:g.data.seriesIndex,seriesLabel:g.data.seriesLabel,event:d,data:p.computedData})}).on("click",(d,g)=>{d.stopPropagation(),e.event$.next({type:"series",eventName:"click",pluginName:t,highlightTarget:p.highlightTarget,datum:g.data,series:p.SeriesDataMap.get(g.data.seriesLabel),seriesIndex:g.data.seriesIndex,seriesLabel:g.data.seriesLabel,event:d,data:p.computedData})})}),U({pathSelection:h,highlight:e.seriesHighlight$.pipe(B(p=>p.map(d=>d.id))),fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,tweenArc:l,isTransitionMoving:f}).pipe(I(n),W(async p=>p),$i(p=>!p.isTransitionMoving)).subscribe(p=>{pN({pathSelection:p.pathSelection,ids:p.highlight,fullParams:p.fullParams,fullChartParams:p.fullChartParams,tweenArc:p.tweenArc})}),()=>{n.next(void 0)}}const gN=Fn(fN)(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,{seriesCenterSelection$:o}=Ho({selection:t,pluginName:cp,separateSeries$:r.separateSeries$,seriesLabels$:r.seriesLabels$,seriesContainerPosition$:r.seriesContainerPosition$}),a=[];return o.pipe(I(i)).subscribe(s=>{a.forEach(u=>u()),s.each((u,l,c)=>{const f=V(c[l]),h=r.visibleComputedLayoutData$.pipe(I(i),B(d=>JSON.parse(JSON.stringify(d[l]??d[0])))),p=r.seriesContainerPosition$.pipe(I(i),B(d=>JSON.parse(JSON.stringify(d[l]??d[0]))));a[l]=dN(cp,{containerSelection:f,computedData$:r.computedData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,containerVisibleComputedLayoutData$:h,SeriesDataMap$:r.SeriesDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,seriesHighlight$:r.seriesHighlight$,seriesContainerPosition$:p,event$:n.event$})})}),()=>{i.next(void 0),a.forEach(s=>s())}}),vi="RoseLabels",mN=ot(vi,"label-g"),yN=ot(vi,"line-g"),bN=ot(vi,"text"),R2=2,xN={name:vi,defaultParams:op,layerIndex:Oh,validator:(t,{validateColumns:e})=>e(t,{outerRadius:{toBeTypes:["number"]},labelCentroid:{toBeTypes:["number"]},labelFn:{toBeTypes:["Function"]},labelColorType:{toBeOption:"ColorType"},arcScaleType:{toBe:'"area" | "radius"',test:r=>r==="area"||r==="radius"}})};function vN({pieData:t,labelCentroid:e,arcScaleType:n,maxValue:r,axisWidth:i,outerRadius:o,lineStartCentroid:a,fullParams:s}){const u=i/2*o,l=n==="area"?.5:1,c=li().domain([0,r]).range([0,u]).exponent(l);return t.map((f,h)=>{const p=c(f.value),d=$u().innerRadius(0).outerRadius(p).padAngle(0).padRadius(p).cornerRadius(0),[g,m]=d.centroid(f),[y,b]=[g,m],v=s.labelFn(f.data);return{pieDatum:f,arcIndex:h,arcLabels:v.split(`
|
79
|
-
`),lineStartX:g*a,lineStartY:m*a,lineStartMouseoverX:y*a,lineStartMouseoverY:b*a,x:g*e,y:m*e,mouseoverX:y*e,mouseoverY:b*e,textWidth:0,collisionShiftX:0,collisionShiftY:0,quadrant:g>=0&&m<=0?1:g<0&&m<=0?2:g<0&&m>0?3:4}}).filter(f=>f.pieDatum.data.visible)}function _N({labelGSelection:t,data:e,fullParams:n,fullChartParams:r,textSizePx:i}){const o=t.selectAll("text").data(e,a=>a.pieDatum.id).join("text").classed(bN,!0).attr("font-weight","bold").attr("text-anchor",a=>a.quadrant==1||a.quadrant==4?"start":"end").style("dominant-baseline",a=>a.quadrant==1||a.quadrant==2?"auto":"hanging").style("cursor",a=>r.highlightTarget&&r.highlightTarget!="none"?"pointer":"none").attr("font-size",r.styles.textSize).attr("fill",(a,s)=>An({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).each((a,s,u)=>{Jv(V(u[s]),{textArr:a.arcLabels,textSizePx:i,quadrant:a.quadrant})});return o.transition().attr("transform",a=>"translate("+a.x+","+a.y+")"),o}function wN(t,e,n){const r=t.nodes(),i=n,o=r.map((a,s)=>{const u=a.getBBox(),l=[e[s].x,e[s].y];return{node:a,x:l[0],y:l[1],width:u.width,height:u.height}});for(let a=0;a<o.length;a++){const s=o[a];for(let u=a+1;u<o.length;u++){const l=o[u];e[a].textWidth=s.width;const c=s.x+e[a].collisionShiftX,f=s.y+e[a].collisionShiftY,h=l.x+e[u].collisionShiftX,p=l.y+e[u].collisionShiftY;if(!(c+s.width/2<h-l.width/2||c-s.width/2>h+l.width/2||f+s.height/2<p-l.height/2||f-s.height/2>p+l.height/2)){if(e[u].quadrant==2){const d=p>f?-i*2:-i;e[u].collisionShiftY+=d}else if(e[u].quadrant==4){const d=p>f?i:i*2;e[u].collisionShiftY+=d}}}}for(let a=o.length-1;a>=0;a--){const s=o[a];for(let u=a-1;u>=0;u--){const l=o[u];e[a].textWidth=s.width;const c=s.x+e[a].collisionShiftX,f=s.y+e[a].collisionShiftY,h=l.x+e[u].collisionShiftX,p=l.y+e[u].collisionShiftY;if(!(c+s.width/2<h-l.width/2||c-s.width/2>h+l.width/2||f+s.height/2<p-l.height/2||f-s.height/2>p+l.height/2)){if(e[u].quadrant==1){const d=p>f?-i*2:-i;e[u].collisionShiftY+=d}else if(e[u].quadrant==3){const d=p>f?i:i*2;e[u].collisionShiftY+=d}}}}t.data(e).transition().attr("transform",a=>`translate(${a.x+a.collisionShiftX},${a.y+a.collisionShiftY})`)}function $N({lineGSelection:t,data:e,fullParams:n,fullChartParams:r}){const i=e.filter(a=>a.collisionShiftX||a.collisionShiftY),o=t.selectAll("polyline").data(i,a=>a.pieDatum.id).join("polyline").attr("stroke",a=>An({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).attr("stroke-width",1).attr("fill","none").attr("points",a=>[[a.lineStartX,a.lineStartY],[a.lineStartX,a.lineStartY]]);return o.transition().attr("points",a=>{let s=a.x+a.collisionShiftX,u=a.y+a.collisionShiftY;return[[s,u],[a.lineStartX,a.lineStartY]]}),o}function SN({textSelection:t,lineSelection:e,ids:n,fullChartParams:r}){if(t.interrupt("highlight"),e.interrupt("highlight"),!n.length){t.transition("highlight").duration(200).attr("transform",i=>`translate(${i.x+i.collisionShiftX},${i.y+i.collisionShiftY})`).style("opacity",1),e.transition("highlight").duration(200).style("opacity",1);return}t.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.data.id)?s.style("opacity",1).transition("highlight").duration(200).attr("transform",u=>`translate(${u.mouseoverX+u.collisionShiftX},${u.mouseoverY+u.collisionShiftY})`):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200).attr("transform",u=>`translate(${u.x+u.collisionShiftX},${u.y+u.collisionShiftY})`)}),e.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.data.id)?s.style("opacity",1).transition("highlight").duration(200):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function AN(t,e){const n=new nt;e.containerSelection.selectAll("g").remove();const r=e.containerSelection.append("g");r.classed(yN,!0);const i=e.containerSelection.append("g");i.classed(mN,!0);const o=new nt,a=new nt;let s=[];const u=e.seriesContainerPosition$.pipe(I(n),B(f=>f.width<f.height?f.width:f.height),tt()),l=e.visibleComputedLayoutData$.pipe(B(f=>Math.max(...f.flat().map(h=>h.value))),tt()),c=e.fullParams$.pipe(I(n),B(f=>f.labelCentroid>=R2?R2:f.labelCentroid));return U({shorterSideWith:u,containerVisibleComputedLayoutData:e.containerVisibleComputedLayoutData$,maxValue:l,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,textSizePx:e.textSizePx$,lineStartCentroid:c}).pipe(I(n),W(async f=>f)).subscribe(f=>{const h=Math.PI*2/f.containerVisibleComputedLayoutData.length,p=f.containerVisibleComputedLayoutData.map((g,m)=>({id:g.id,data:g,index:m,value:g.value,startAngle:h*m,endAngle:h*(m+1),padAngle:0}));s=vN({pieData:p,labelCentroid:f.fullParams.labelCentroid,arcScaleType:f.fullParams.arcScaleType,maxValue:f.maxValue,axisWidth:f.shorterSideWith,outerRadius:f.fullParams.outerRadius,lineStartCentroid:f.lineStartCentroid,fullParams:f.fullParams}),r.selectAll("polyline").remove();const d=_N({labelGSelection:i,data:s,fullParams:f.fullParams,fullChartParams:f.fullChartParams,textSizePx:f.textSizePx});setTimeout(()=>{wN(d,s,f.textSizePx);const g=$N({lineGSelection:r,data:s,fullParams:f.fullParams,fullChartParams:f.fullChartParams});a.next(g)},1e3),o.next(d)}),U({textSelection:o,lineSelection:a,highlight:e.seriesHighlight$.pipe(B(f=>f.map(h=>h.id))),fullChartParams:e.fullChartParams$}).pipe(I(n),W(async f=>f)).subscribe(f=>{SN({textSelection:f.textSelection,lineSelection:f.lineSelection,ids:f.highlight,fullChartParams:f.fullChartParams})}),()=>{n.next(void 0)}}const TN=Fn(xN)(({selection:t,observer:e,subject:n})=>{const r=new nt,{seriesCenterSelection$:i}=Ho({selection:t,pluginName:vi,separateSeries$:e.separateSeries$,seriesLabels$:e.seriesLabels$,seriesContainerPosition$:e.seriesContainerPosition$}),o=[];return i.pipe(I(r)).subscribe(a=>{o.forEach(s=>s()),a.each((s,u,l)=>{const c=V(l[u]),f=e.visibleComputedLayoutData$.pipe(I(r),B(p=>JSON.parse(JSON.stringify(p[u]??p[0])))),h=e.seriesContainerPosition$.pipe(I(r),B(p=>JSON.parse(JSON.stringify(p[u]??p[0]))));o[u]=AN(vi,{containerSelection:c,visibleComputedLayoutData$:e.visibleComputedLayoutData$,containerVisibleComputedLayoutData$:f,fullParams$:e.fullParams$,fullChartParams$:e.fullChartParams$,textSizePx$:e.textSizePx$,seriesHighlight$:e.seriesHighlight$,seriesContainerPosition$:h,event$:n.event$})})}),()=>{r.next(void 0)}}),E2="SeriesLegend",PN=Fn({name:E2,defaultParams:M2,layerIndex:Bu,validator:(t,{validateColumns:e})=>e(t,{padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:t,rootSelection:e,observer:n,subject:r})=>{const i=new nt,o=n.SeriesDataMap$.pipe(I(i),B(u=>Array.from(u.keys()))),a=n.fullParams$.pipe(I(i),B(u=>{const l=[{listRectWidth:u.listRectWidth,listRectHeight:u.listRectHeight,listRectRadius:u.listRectRadius}];return{...u,seriesList:l}})),s=Fu(E2,{rootSelection:e,seriesLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}}),fp={paddingInner:2,paddingOuter:2,labelColorType:"primary",squarifyRatio:1.618034,sort:(t,e)=>e.value-t.value};fp.sort.toString=()=>"(a, b) => b.value - a.value";const I2={position:"right",justify:"end",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,textColorType:"primary"},N2="TreeLegend",MN=Cg({name:N2,defaultParams:I2,layerIndex:Bu,validator:(t,{validateColumns:e})=>e(t,{padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:t,rootSelection:e,observer:n,subject:r})=>{const i=new nt,o=n.CategoryDataMap$.pipe(I(i),B(u=>Array.from(u.keys()))),a=n.fullParams$.pipe(I(i),B(u=>{const l=[{listRectWidth:u.listRectWidth,listRectHeight:u.listRectHeight,listRectRadius:u.listRectRadius}];return{...u,seriesList:l}})),s=Fu(N2,{rootSelection:e,seriesLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}}),dr="TreeMap",B2=ot(dr,"tree"),F2=ot(dr,"tile"),DN={name:dr,defaultParams:fp,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{paddingInner:{toBeTypes:["number"]},paddingOuter:{toBeTypes:["number"]},labelColorType:{toBeOption:"ColorType"},squarifyRatio:{toBeTypes:["number"]},sort:{toBeTypes:["Function"]}})};function CN({selection:t,treeData:e,fullParams:n,fullChartParams:r,textSizePx:i}){const o=i/2,a=i,s=t.selectAll(`g.${B2}`).data(e,u=>u.data.id).join("g").attr("class",B2);return s.attr("transform",u=>!u.x0||!u.y0?null:`translate(${u.x0},${u.y0})`).each((u,l,c)=>{const f=V(c[l]);f.selectAll(`rect.${F2}`).data([u],h=>h.data.id).join("rect").attr("id",h=>h.data.id).attr("class",F2).attr("cursor","pointer").attr("width",h=>h.x1-h.x0).attr("height",h=>h.y1-h.y0).attr("fill",h=>h.data.color).attr("data-name",h=>h.data.label).attr("data-category",h=>h.data.categoryLabel).attr("data-value",h=>h.data.value),f.selectAll("g").data([u]).join("g").each((h,p,d)=>{V(d[p]).selectAll("text").data([h]).join("text").text(m=>m.data.label).attr("dominant-baseline","hanging").attr("x",o).attr("y",o).attr("font-size",r.styles.textSize).each(function(m){const y=V(this),b=m.data.label.split(/\s+/).reverse();let v,x=[];const S=y.attr("x");let $=y.attr("y"),R=0,T=y.text(null).append("tspan").attr("cursor","pointer").attr("fill",kt(n.labelColorType,r)).attr("font-size",r.styles.textSize).attr("x",S).attr("y",$);for(;v=b.pop();)x.push(v),T.text(x.join(" ")),T.node().getComputedTextLength()>m.x1-m.x0-o&&(x.pop(),T.text(x.join(" ")),x=[v],R+=a,T=y.append("tspan").attr("cursor","pointer").attr("fill",kt(n.labelColorType,r)).attr("font-size",r.styles.textSize).attr("x",S).attr("y",$).attr("dy",R+"px").text(v))})})}),s}function LN({selection:t,ids:e,fullChartParams:n}){if(t.interrupt("highlight"),!e.length){t.transition("highlight").duration(200).style("opacity",1);return}t.each((r,i,o)=>{e.includes(r.data.id)?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const kN=Cg(DN)(({selection:t,name:e,subject:n,observer:r})=>{const i=new nt,o=U({layout:r.layout$,visibleComputedData:r.visibleComputedData$,fullParams:r.fullParams$,fullDataFormatter:r.fullDataFormatter$,fullChartParams:r.fullChartParams$}).pipe(I(i),W(async u=>u),B(u=>{const l=Ky().size([u.layout.width,u.layout.height]).paddingInner(u.fullParams.paddingInner).paddingOuter(u.fullParams.paddingOuter).round(!0).tile(Qf.ratio(u.fullParams.squarifyRatio)),c=eu(u.visibleComputedData).sum(h=>h.value).sort(u.fullParams.sort);return l(c),c.leaves()})),a=U({selection:Qo(t),treeData:o,fullParams:r.fullParams$,fullChartParams:r.fullChartParams$,textSizePx:r.textSizePx$}).pipe(I(i),W(async u=>u),B(u=>CN({selection:t,treeData:u.treeData,fullParams:u.fullParams,fullChartParams:u.fullChartParams,textSizePx:u.textSizePx}))),s=r.fullChartParams$.pipe(I(i),B(u=>u.highlightTarget),tt());return U({cellSelection:a,computedData:r.computedData$,treeData:o,fullParams:r.fullParams$,fullChartParams:r.fullChartParams$,highlightTarget:s,CategoryDataMap:r.CategoryDataMap$}).pipe(I(i),W(async u=>u)).subscribe(u=>{u.cellSelection.on("mouseover",(l,c)=>{l.stopPropagation(),n.event$.next({type:"tree",eventName:"mouseover",pluginName:dr,highlightTarget:u.highlightTarget,datum:c.data,category:u.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:l,data:u.computedData})}).on("mousemove",(l,c)=>{l.stopPropagation(),n.event$.next({type:"tree",eventName:"mousemove",pluginName:dr,highlightTarget:u.highlightTarget,datum:c.data,category:u.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:l,data:u.computedData})}).on("mouseout",(l,c)=>{l.stopPropagation(),n.event$.next({type:"tree",eventName:"mouseout",pluginName:dr,highlightTarget:u.highlightTarget,datum:c.data,category:u.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:l,data:u.computedData})}).on("click",(l,c)=>{l.stopPropagation(),n.event$.next({type:"tree",eventName:"click",pluginName:dr,highlightTarget:u.highlightTarget,datum:c.data,category:u.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:l,data:u.computedData})})}),U({cellSelection:a,highlight:r.treeHighlight$.pipe(B(u=>u.map(l=>l.id))),fullChartParams:r.fullChartParams$}).pipe(I(i),W(async u=>u)).subscribe(u=>{LN({selection:u.cellSelection,ids:u.highlight,fullChartParams:u.fullChartParams})}),()=>{i.next(void 0)}});K.BarStack=NE,K.Bars=ME,K.BarsPN=DE,K.BarsTriangle=WE,K.Bubbles=UI,K.CONTAINER_PLUGIN_PARAMS=CI,K.DEFAULT_BARS_DIVERGING_PARAMS=O2,K.DEFAULT_BARS_PARAMS=jo,K.DEFAULT_BARS_TRIANGLE_PARAMS=gp,K.DEFAULT_BAR_STACK_PARAMS=dp,K.DEFAULT_BUBBLES_PARAMS=A2,K.DEFAULT_DOTS_PARAMS=pp,K.DEFAULT_GRID_LEGEND_PARAMS=bp,K.DEFAULT_GROUP_AREA_PARAMS=Yu,K.DEFAULT_GROUP_AXIS_PARAMS=Uu,K.DEFAULT_LINES_PARAMS=gr,K.DEFAULT_LINE_AREAS_PARAMS=hp,K.DEFAULT_MULTI_BARS_PARAMS=o2,K.DEFAULT_MULTI_BARS_TRIANGLE_PARAMS=s2,K.DEFAULT_MULTI_BAR_STACK_PARAMS=a2,K.DEFAULT_MULTI_DOTS_PARAMS=c2,K.DEFAULT_MULTI_GRID_LEGEND_PARAMS=i2,K.DEFAULT_MULTI_GROUP_AXIS_PARAMS=Yh,K.DEFAULT_MULTI_LINES_PARAMS=u2,K.DEFAULT_MULTI_LINE_AREAS_PARAMS=l2,K.DEFAULT_MULTI_VALUE_AXIS_PARAMS=Gu,K.DEFAULT_MULTI_VALUE_STACK_AXIS_PARAMS=yI,K.DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS=Uh,K.DEFAULT_OVERLAPPING_VALUE_STACK_AXES_PARAMS=f2,K.DEFAULT_PIE_EVENT_TEXTS_PARAMS=rp,K.DEFAULT_PIE_LABELS_PARAMS=ip,K.DEFAULT_PIE_PARAMS=T2,K.DEFAULT_ROSE_LABELS_PARAMS=op,K.DEFAULT_ROSE_PARAMS=P2,K.DEFAULT_SCALING_AREA_PARAMS=yp,K.DEFAULT_SERIES_LEGEND_PARAMS=M2,K.DEFAULT_TREE_LEGEND_PARAMS=I2,K.DEFAULT_TREE_MAP_PARAMS=fp,K.DEFAULT_VALUE_AXIS_PARAMS=Wu,K.DEFAULT_VALUE_STACK_AXIS_PARAMS=mp,K.Dots=VE,K.GridLegend=ZE,K.GroupAux=mI,K.GroupAxis=nI,K.LineAreas=_E,K.Lines=dE,K.MultiBarStack=vI,K.MultiBars=xI,K.MultiBarsTriangle=_I,K.MultiDots=SI,K.MultiGridLegend=bI,K.MultiGroupAxis=AI,K.MultiLineAreas=$I,K.MultiLines=wI,K.MultiValueAxis=TI,K.MultiValueStackAxis=PI,K.OverlappingValueAxes=MI,K.OverlappingValueStackAxes=DI,K.Pie=qI,K.PieEventTexts=QI,K.PieLabels=lN,K.Rose=gN,K.RoseLabels=TN,K.ScalingArea=uI,K.SeriesLegend=PN,K.TOOLTIP_PARAMS=ep,K.Tooltip=II,K.TreeLegend=MN,K.TreeMap=kN,K.ValueAxis=aI,K.ValueStackAxis=sI,Object.defineProperty(K,Symbol.toStringTag,{value:"Module"})});
|
194
|
+
}`;const Xp={outerRadius:.85,outerRadiusWhileHighlight:.9,startAngle:0,endAngle:Math.PI*2,labelCentroid:2.1,labelColorType:"primary",labelFn:e=>String(e.label)};Xp.labelFn.toString=()=>"d => String(d.label)";const L2={outerRadius:.85,padAngle:0,strokeColorType:"background",strokeWidth:0,cornerRadius:0,arcScaleType:"area",angleIncreaseWhileHighlight:.05},Vp={outerRadius:.85,labelCentroid:2.1,labelFn:e=>String(e.label),labelColorType:"primary",arcScaleType:"area"};Vp.labelFn.toString=()=>"d => String(d.label)";const k2={placement:"right-end",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,textColorType:"primary"},Up={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,renderFn:(e,{styles:t,utils:n})=>{const r=e.seriesLabel.slice(0,7)!=="series_",i=e.datum.label.slice(0,7)!=="series_",o=t.textSizePx*.7,a=t.textSizePx/2-o/2,s=r?`<rect width="${o}" height="${o}" x="${a}" y="${a-1}" rx="${o/2}" fill="${e.datum.color}"></rect>
|
195
|
+
<text x="${t.textSizePx*1.5}" font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
196
|
+
<tspan>${e.seriesLabel}</tspan>
|
197
|
+
</text>`:"",l=i?`<tspan>${e.datum.label}</tspan> `:"",u=`<text font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
198
|
+
${l}<tspan font-weight="bold">${e.datum.value}</tspan>
|
199
|
+
</text>`;return`${s}
|
200
|
+
<g ${r?`transform="translate(0, ${t.textSizePx*2})"`:""}>
|
201
|
+
${u}
|
202
|
+
</g>`}};Up.renderFn.toString=()=>`(eventData, { styles, utils }) => {
|
203
|
+
const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
|
204
|
+
const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
|
205
|
+
const bulletWidth = styles.textSizePx * 0.7
|
206
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
207
|
+
const seriesSvg = hasSeriesLabel
|
208
|
+
? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
|
209
|
+
<text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
210
|
+
<tspan>\${eventData.seriesLabel}</tspan>
|
211
|
+
</text>\`
|
212
|
+
: ''
|
213
|
+
const datumLabelSvg = hasDatumLabel
|
214
|
+
? \`<tspan>\${eventData.datum.label}</tspan> \`
|
215
|
+
: ''
|
216
|
+
const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
217
|
+
\${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
|
218
|
+
</text>\`
|
219
|
+
|
220
|
+
return \`\${seriesSvg}
|
221
|
+
<g \${hasSeriesLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
|
222
|
+
\${datumSvg}
|
223
|
+
</g>\`
|
224
|
+
}`;const dF="Bubbles",R2=12,gF={name:dF,defaultParams:M2,layerIndex:bt,validator:(e,{validateColumns:t})=>{const n=t(e,{force:{toBeTypes:["object"]},bubbleLabel:{toBeTypes:["object"]},arcScaleType:{toBe:'"area" | "radius"',test:r=>r==="area"||r==="radius"}});if(e.force){const r=t(e.force,{velocityDecay:{toBeTypes:["number"]},collisionSpacing:{toBeTypes:["number"]},strength:{toBeTypes:["number"]}});if(r.status==="error")return r}if(e.bubbleLabel){const r=t(e.bubbleLabel,{fillRate:{toBeTypes:["number"]},lineHeight:{toBeTypes:["number"]},lineLengthMin:{toBeTypes:["number"]}});if(r.status==="error")return r}return n}};let Nn;function mF(e,t){return Xs().velocityDecay(t.force.velocityDecay).force("collision",Ws().radius(n=>n.r+t.force.collisionSpacing)).force("charge",Vs().strength(n=>-Math.pow(n.r,2)*t.force.strength)).on("tick",()=>{e.attr("transform",n=>`translate(${n.x},${n.y})`)})}function yF({visibleComputedLayoutData:e,LastBubbleDataMap:t,graphicWidth:n,graphicHeight:r,SeriesContainerPositionMap:i,scaleType:o}){const a=Math.min(n,r)/2,s=e.flat(),l=s.reduce((h,p)=>h+p.value,0),u=kn().domain([0,l]).range([0,a]).exponent(o==="area"?.5:1),c=o==="area"?1:(()=>{const h=a*a*Math.PI;return Math.sqrt(h/Ac(s,p=>Math.PI*Math.pow(u(p.value),2)))})(),f=.9;return s.map(h=>{const p=h,d=t.get(p.id);if(d)p.x=d.x,p.y=d.y;else{const g=i.get(p.seriesLabel);p.x=Math.random()*g.width,p.y=Math.random()*g.height}const m=u(p.value??0)*c*f;return p.r=m,p._originR=m,p})}function bF({selection:e,bubblesData:t,fullParams:n,sumSeries:r}){const i=e.selectAll("g").data(t,a=>a.id).join(a=>{const s=a.append("g").attr("cursor","pointer").attr("font-size",R2).style("fill","#ffffff").attr("text-anchor","middle");return s.append("circle").attr("class","node").attr("cx",0).attr("cy",0).attr("fill",l=>l.color),s.append("text").style("opacity",.8).attr("pointer-events","none"),s},a=>a,a=>a.remove()).attr("transform",a=>`translate(${a.x},${a.y})`),o=r?"seriesLabel":"label";return i.select("circle").transition().duration(200).attr("r",a=>a.r).attr("fill",a=>a.color),i.each((a,s,l)=>{const u=V(l[s]);let c=!0;a[o].length<=n.bubbleLabel.lineLengthMin&&(c=!1),u.call(M$,{text:a[o],radius:a.r*n.bubbleLabel.fillRate,lineHeight:R2*n.bubbleLabel.lineHeight,isBreakAll:c})}),i}function xF(){return hs().on("start",(e,t)=>{e.active||Nn.alpha(1).restart(),t.fx=t.x,t.fy=t.y}).on("drag",(e,t)=>{e.active||Nn.alphaTarget(0),t.fx=e.x,t.fy=e.y}).on("end",(e,t)=>{t.fx=null,t.fy=null})}function vF({fullParams:e,SeriesContainerPositionMap:t}){Nn.force("x",Ny().strength(e.force.strength).x(n=>t.get(n.seriesLabel).centerX)).force("y",Fy().strength(e.force.strength).y(n=>t.get(n.seriesLabel).centerY)),Nn.alpha(1).restart()}function $F({bubblesSelection:e,highlightIds:t,fullChartParams:n}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").style("opacity",1);return}e.each((r,i,o)=>{const a=V(o[i]);t.includes(r.id)?a.style("opacity",1).transition("highlight").ease(sr).duration(500):a.style("opacity",n.styles.unhighlightedOpacity)})}const _F=Sn(gF)(({selection:e,name:t,observer:n,subject:r})=>{const i=new J;let o=new Map;const a=n.fullDataFormatter$.pipe(R(f=>f.sumSeries),ee()),s=n.fullParams$.pipe(L(i),R(f=>f.arcScaleType),ee()),l=Y({layout:n.layout$,SeriesContainerPositionMap:n.SeriesContainerPositionMap$,visibleComputedLayoutData:n.visibleComputedLayoutData$,scaleType:s}).pipe(L(i),G(async f=>f),R(f=>yF({visibleComputedLayoutData:f.visibleComputedLayoutData,LastBubbleDataMap:o,graphicWidth:f.layout.width,graphicHeight:f.layout.height,SeriesContainerPositionMap:f.SeriesContainerPositionMap,scaleType:f.scaleType})),pe(1));l.subscribe(f=>{o=new Map(f.map(h=>[h.id,h]))});const u=n.fullChartParams$.pipe(L(i),R(f=>f.highlightTarget),ee()),c=Y({bubblesData:l,fullParams:n.fullParams$,SeriesContainerPositionMap:n.SeriesContainerPositionMap$,sumSeries:a}).pipe(L(i),G(async f=>f),R(f=>{Nn&&Nn.stop();const h=bF({selection:e,bubblesData:f.bubblesData,fullParams:f.fullParams,sumSeries:f.sumSeries});return Nn=mF(h,f.fullParams),Nn.nodes(f.bubblesData),vF({fullParams:f.fullParams,SeriesContainerPositionMap:f.SeriesContainerPositionMap}),h}));return Y({bubblesSelection:c,computedData:n.computedData$,SeriesDataMap:n.SeriesDataMap$,highlightTarget:u}).pipe(L(i),G(async f=>f)).subscribe(f=>{f.bubblesSelection.on("mouseover",(h,p)=>{r.event$.next({type:"series",eventName:"mouseover",pluginName:t,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).on("mousemove",(h,p)=>{r.event$.next({type:"series",eventName:"mousemove",pluginName:t,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).on("mouseout",(h,p)=>{r.event$.next({type:"series",eventName:"mouseout",pluginName:t,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).on("click",(h,p)=>{r.event$.next({type:"series",eventName:"click",pluginName:t,highlightTarget:f.highlightTarget,datum:p,series:f.SeriesDataMap.get(p.seriesLabel),seriesIndex:p.seriesIndex,seriesLabel:p.seriesLabel,event:h,data:f.computedData})}).call(xF())}),Y({bubblesSelection:c,bubblesData:l,highlight:n.seriesHighlight$.pipe(R(f=>f.map(h=>h.id))),fullChartParams:n.fullChartParams$,fullParams:n.fullParams$,sumSeries:a,SeriesContainerPositionMap:n.SeriesContainerPositionMap$}).pipe(L(i),G(async f=>f)).subscribe(f=>{$F({bubblesSelection:f.bubblesSelection,highlightIds:f.highlight,fullChartParams:f.fullChartParams})}),()=>{i.next(void 0)}});function E2({data:e,startAngle:t,endAngle:n}){return bv().startAngle(t).endAngle(n).value(o=>o.value).sort((o,a)=>o.seq-a.seq)(e).map((o,a)=>{let s=o;return s.id=o.data.id,s})}function SF({selection:e,pluginName:t,separateSeries$:n,seriesLabels$:r}){const i=Z(t,"series");return Y({seriesLabels:r,separateSeries:n}).pipe(G(async o=>o),R((o,a)=>{const s=o.separateSeries?o.seriesLabels:[o.seriesLabels.join("")];return e.selectAll(`g.${i}`).data(s,l=>l).join(l=>l.append("g").classed(i,!0),l=>l,l=>l.remove())}),pe(1))}const pa=({selection:e,pluginName:t,separateSeries$:n,seriesLabels$:r,seriesContainerPosition$:i})=>{const o=SF({selection:e,pluginName:t,separateSeries$:n,seriesLabels$:r});return Y({seriesCenterSelection:o,seriesContainerPosition:i}).pipe(G(async a=>a),ee((a,s)=>a.seriesContainerPosition.length===s.seriesContainerPosition.length)).subscribe(a=>{a.seriesCenterSelection.attr("transform",(s,l)=>{const u=a.seriesContainerPosition[l]??a.seriesContainerPosition[0];return`translate(${u.centerX}, ${u.centerY})`})}),Y({seriesCenterSelection:o,seriesContainerPosition:i}).pipe(G(async a=>a)).subscribe(a=>{a.seriesCenterSelection.transition().attr("transform",(s,l)=>{const u=a.seriesContainerPosition[l]??a.seriesContainerPosition[0];return`translate(${u.centerX}, ${u.centerY})`})}),{seriesCenterSelection$:o}},Hp="Pie",wF={name:Hp,defaultParams:C2,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{outerRadius:{toBeTypes:["number"]},innerRadius:{toBeTypes:["number"]},outerRadiusWhileHighlight:{toBeTypes:["number"]},startAngle:{toBeTypes:["number"]},endAngle:{toBeTypes:["number"]},padAngle:{toBeTypes:["number"]},strokeColorType:{toBeTypes:["string"]},strokeWidth:{toBeTypes:["number"]},cornerRadius:{toBeTypes:["number"]}})};function TF({enter:e,exit:t,data:n,lastTweenData:r,fullParams:i}){return!e.size()&&!t.size()?o=>{const a=n.map((s,l)=>{const u=r[l]??{startAngle:0,endAngle:0,value:0};return{...s,startAngle:s.startAngle*o+u.startAngle*(1-o),endAngle:s.endAngle*o+u.endAngle*(1-o),value:s.value*o+u.value*(1-o)}});return jp(a,i.startAngle,i.endAngle,1)}:o=>jp(n,i.startAngle,i.endAngle,o)}function jp(e,t,n,r){return e.map((i,o)=>{const a=t+(i.startAngle-t)*r,s=a+(i.endAngle-i.startAngle)*r;return{...i,startAngle:a,endAngle:s}})}function I2({selection:e,data:t,arc:n,pathClassName:r,fullParams:i,fullChartParams:o}){return e.selectAll("path").data(t,s=>s.id).join("path").classed(r,!0).style("cursor","pointer").attr("fill",(s,l)=>s.data.color).attr("stroke",(s,l)=>Me({datum:s.data,colorType:i.strokeColorType,fullChartParams:o})).attr("stroke-width",i.strokeWidth).attr("d",(s,l)=>n(s))}function AF({pathSelection:e,ids:t,fullChartParams:n,arc:r,arcHighlight:i}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").style("opacity",1).attr("d",o=>r(o));return}e.each((o,a,s)=>{const l=V(s[a]);t.includes(o.data.id)?l.style("opacity",1).transition("highlight").ease(sr).duration(500).attr("d",u=>i(u)):l.style("opacity",n.styles.unhighlightedOpacity).transition("highlight").attr("d",u=>r(u))})}function PF(e,t){const n=new J,r=Z(e,"path");let i=[],o=[];const a=t.seriesContainerPosition$.pipe(L(n),R(h=>h.width<h.height?h.width:h.height),ee()),s=new de(h=>{Y({containerVisibleComputedLayoutData:t.containerVisibleComputedLayoutData$,fullParams:t.fullParams$}).pipe(L(n),G(async p=>p)).subscribe(p=>{const d=E2({data:p.containerVisibleComputedLayoutData,startAngle:p.fullParams.startAngle,endAngle:p.fullParams.endAngle});h.next(d)})}),l=new de(h=>{Y({shorterSideWith:a,fullParams:t.fullParams$}).pipe(L(n),G(async p=>p)).subscribe(p=>{const d=cu({axisWidth:p.shorterSideWith,innerRadius:p.fullParams.innerRadius,outerRadius:p.fullParams.outerRadius,padAngle:p.fullParams.padAngle,cornerRadius:p.fullParams.cornerRadius});h.next(d)})}),u=new de(h=>{Y({shorterSideWith:a,fullParams:t.fullParams$}).pipe(L(n),G(async p=>p)).subscribe(p=>{const d=cu({axisWidth:p.shorterSideWith,innerRadius:p.fullParams.innerRadius,outerRadius:p.fullParams.outerRadiusWhileHighlight,padAngle:p.fullParams.padAngle,cornerRadius:p.fullParams.cornerRadius});h.next(d)})}),c=t.fullChartParams$.pipe(L(n),R(h=>h.highlightTarget),ee()),f=new de(h=>{Y({pieData:s,arc:l,computedData:t.computedData$,fullParams:t.fullParams$,fullChartParams:t.fullChartParams$,highlightTarget:c}).pipe(L(n),G(async p=>p)).subscribe(p=>{t.containerSelection.interrupt("graphicMove");const d=t.containerSelection.selectAll("path").data(p.pieData,b=>b.id),m=d.enter(),g=d.exit(),y=TF({enter:m,exit:g,data:p.pieData,lastTweenData:i,fullParams:p.fullParams});t.containerSelection.transition("graphicMove").duration(p.fullChartParams.transitionDuration).tween("move",(b,v)=>x=>{o=y(x),I2({selection:t.containerSelection,data:o,arc:p.arc,pathClassName:r,fullParams:p.fullParams,fullChartParams:p.fullChartParams})}).on("end",(b,v)=>{o=jp(p.pieData,p.fullParams.startAngle,p.fullParams.endAngle,1);const x=I2({selection:t.containerSelection,data:o,arc:p.arc,pathClassName:r,fullParams:p.fullParams,fullChartParams:p.fullChartParams});h.next(x),i=Object.assign([],p.pieData),t.event$.next({type:"series",pluginName:e,eventName:"transitionEnd",event:void 0,highlightTarget:p.highlightTarget,datum:null,series:[],seriesIndex:-1,seriesLabel:"",data:p.computedData})})})}).pipe(pe(1));return Y({pathSelection:f,SeriesDataMap:t.SeriesDataMap$,computedData:t.computedData$,highlightTarget:c}).pipe(L(n),G(async h=>h)).subscribe(h=>{h.pathSelection.on("mouseover",(p,d)=>{p.stopPropagation(),t.event$.next({type:"series",eventName:"mouseover",pluginName:e,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})}).on("mousemove",(p,d)=>{p.stopPropagation(),t.event$.next({type:"series",eventName:"mousemove",pluginName:e,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})}).on("mouseout",(p,d)=>{p.stopPropagation(),t.event$.next({type:"series",eventName:"mouseout",pluginName:e,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})}).on("click",(p,d)=>{p.stopPropagation(),t.event$.next({type:"series",eventName:"click",pluginName:e,highlightTarget:h.highlightTarget,datum:d.data,series:h.SeriesDataMap.get(d.data.seriesLabel),seriesIndex:d.data.seriesIndex,seriesLabel:d.data.seriesLabel,event:p,data:h.computedData})})}),Y({pathSelection:f,highlight:t.seriesHighlight$.pipe(R(h=>h.map(p=>p.id))),fullChartParams:t.fullChartParams$,arc:l,arcHighlight:u}).pipe(L(n),G(async h=>h)).subscribe(h=>{AF({pathSelection:h.pathSelection,ids:h.highlight,fullChartParams:h.fullChartParams,arc:h.arc,arcHighlight:h.arcHighlight})}),()=>{n.next(void 0)}}const DF=Sn(wF)(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,{seriesCenterSelection$:o}=pa({selection:e,pluginName:Hp,separateSeries$:r.separateSeries$,seriesLabels$:r.seriesLabels$,seriesContainerPosition$:r.seriesContainerPosition$}),a=[];return o.pipe(L(i)).subscribe(s=>{a.forEach(l=>l()),s.each((l,u,c)=>{const f=V(c[u]),h=r.visibleComputedLayoutData$.pipe(L(i),R(d=>d[u]??d[0])),p=r.seriesContainerPosition$.pipe(L(i),R(d=>d[u]??d[0]));a[u]=PF(Hp,{containerSelection:f,computedData$:r.computedData$,containerVisibleComputedLayoutData$:h,SeriesDataMap$:r.SeriesDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,seriesHighlight$:r.seriesHighlight$,seriesContainerPosition$:p,event$:n.event$})})}),()=>{i.next(void 0),a.forEach(s=>s())}}),yu="PieEventTexts",B2=Z(yu,"text"),MF={name:yu,defaultParams:Wp,layerIndex:$p,validator:(e,{validateColumns:t})=>t(e,{renderFn:{toBeTypes:["Function"]},textAttrs:{toBeTypes:["object[]"]},textStyles:{toBeTypes:["object[]"]}})};function qp(e,t){const n=e.selectAll(`text.${B2}`).data(t),r=n.enter().append("text").classed(B2,!0),i=n.merge(r);return i.each((o,a,s)=>{const l=V(s[a]).text(o.text);Object.keys(o.attr).forEach(u=>{l.attr(u,o.attr[u])}),Object.keys(o.style).forEach(u=>{l.style(u,o.style[u])})}),n.exit().remove(),i}function Zp({eventData:e,renderFn:t,textAttrs:n,textStyles:r}){const i=t(e);return(Array.isArray(i)?i:[i]).map((a,s)=>({text:a,attr:n[s],style:r[s]}))}function CF(e,t){const n=new J;let r;const i=t.fullChartParams$.pipe(L(n),R(o=>o.highlightTarget),ee());return Y({computedData:t.computedData$,fullParams:t.fullParams$,fullChartParams:t.fullChartParams$,highlightTarget:i}).pipe(L(n),G(async o=>o)).subscribe(o=>{t.containerSelection.transition("move").duration(o.fullChartParams.transitionDuration).tween("move",(a,s)=>l=>{const u=Zp({eventData:{type:"series",pluginName:e,eventName:"transitionMove",event:a,tween:l,highlightTarget:o.highlightTarget,data:o.computedData,series:[],seriesIndex:-1,seriesLabel:"",datum:null},renderFn:o.fullParams.renderFn,textAttrs:o.fullParams.textAttrs,textStyles:o.fullParams.textStyles});qp(t.containerSelection,u)}).on("end",(a,s)=>{const l=Zp({eventData:{type:"series",pluginName:e,eventName:"transitionEnd",event:a,tween:1,highlightTarget:o.highlightTarget,data:o.computedData,series:[],seriesIndex:-1,seriesLabel:"",datum:null},renderFn:o.fullParams.renderFn,textAttrs:o.fullParams.textAttrs,textStyles:o.fullParams.textStyles});qp(t.containerSelection,l),r&&r.unsubscribe(),r=t.event$.subscribe(u=>{const c=Zp({eventData:u,renderFn:o.fullParams.renderFn,textAttrs:o.fullParams.textAttrs,textStyles:o.fullParams.textStyles});qp(t.containerSelection,c)})})}),()=>{n.next(void 0)}}const LF=Sn(MF)(({selection:e,name:t,observer:n,subject:r})=>{const i=new J,{seriesCenterSelection$:o}=pa({selection:e,pluginName:yu,separateSeries$:n.separateSeries$,seriesLabels$:n.seriesLabels$,seriesContainerPosition$:n.seriesContainerPosition$}),a=[];return o.pipe(L(i)).subscribe(s=>{a.forEach(l=>l()),s.each((l,u,c)=>{const f=V(c[u]),h=n.computedLayoutData$.pipe(L(i),R(d=>d[u]??d[0])),p=n.seriesContainerPosition$.pipe(L(i),R(d=>d[u]??d[0]));a[u]=CF(yu,{containerSelection:f,computedData$:n.computedData$,containerComputedLayoutData$:h,SeriesDataMap$:n.SeriesDataMap$,fullParams$:n.fullParams$,fullChartParams$:n.fullChartParams$,seriesHighlight$:n.seriesHighlight$,seriesContainerPosition$:p,event$:r.event$})})}),()=>{i.next(void 0),a.forEach(s=>s())}}),zi="PieLabels",kF=Z(zi,"label-g"),RF=Z(zi,"line-g"),EF=Z(zi,"text"),N2=2,IF={name:zi,defaultParams:Xp,layerIndex:$p,validator:(e,{validateColumns:t})=>t(e,{outerRadius:{toBeTypes:["number"]},outerRadiusWhileHighlight:{toBeTypes:["number"]},startAngle:{toBeTypes:["number"]},endAngle:{toBeTypes:["number"]},labelCentroid:{toBeTypes:["number"]},labelFn:{toBeTypes:["Function"]},labelColorType:{toBeOption:"ColorType"}})};function BF({pieData:e,arc:t,arcMouseover:n,labelCentroid:r,lineStartCentroid:i,fullParams:o}){return e.map((a,s)=>{const[l,u]=t.centroid(a),[c,f]=n.centroid(a),h=o.labelFn(a.data);return{pieDatum:a,arcIndex:s,arcLabels:h.split(`
|
225
|
+
`),lineStartX:l*i,lineStartY:u*i,lineStartMouseoverX:c*i,lineStartMouseoverY:f*i,x:l*r,y:u*r,mouseoverX:c*r,mouseoverY:f*r,textWidth:0,collisionShiftX:0,collisionShiftY:0,quadrant:l>=0&&u<=0?1:l<0&&u<=0?2:l<0&&u>0?3:4}}).filter(a=>a.pieDatum.data.visible)}function NF({labelGSelection:e,data:t,fullParams:n,fullChartParams:r,textSizePx:i}){const o=e.selectAll("text").data(t,a=>a.pieDatum.id).join("text").classed(EF,!0).attr("font-weight","bold").attr("text-anchor",a=>a.quadrant==1||a.quadrant==4?"start":"end").style("dominant-baseline",a=>a.quadrant==1||a.quadrant==2?"auto":"hanging").style("cursor",a=>r.highlightTarget&&r.highlightTarget!="none"?"pointer":"none").attr("font-size",r.styles.textSize).attr("x",0).attr("y",0).attr("fill",(a,s)=>Me({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).each((a,s,l)=>{C$(V(l[s]),{textArr:a.arcLabels,textSizePx:i,quadrant:a.quadrant})});return o.transition().attr("transform",a=>"translate("+a.x+","+a.y+")"),o}function FF(e,t,n){const r=e.nodes(),i=n,o=r.map((a,s)=>{const l=a.getBBox(),u=[t[s].x,t[s].y];return{node:a,x:u[0],y:u[1],width:l.width,height:l.height}});for(let a=0;a<o.length;a++){const s=o[a];for(let l=a+1;l<o.length;l++){const u=o[l];t[a].textWidth=s.width;const c=s.x+t[a].collisionShiftX,f=s.y+t[a].collisionShiftY,h=u.x+t[l].collisionShiftX,p=u.y+t[l].collisionShiftY;if(!(c+s.width/2<h-u.width/2||c-s.width/2>h+u.width/2||f+s.height/2<p-u.height/2||f-s.height/2>p+u.height/2)){if(t[l].quadrant==2){const d=p>f?-i*2:-i;t[l].collisionShiftY+=d}else if(t[l].quadrant==4){const d=p>f?i:i*2;t[l].collisionShiftY+=d}}}}for(let a=o.length-1;a>=0;a--){const s=o[a];for(let l=a-1;l>=0;l--){const u=o[l];t[a].textWidth=s.width;const c=s.x+t[a].collisionShiftX,f=s.y+t[a].collisionShiftY,h=u.x+t[l].collisionShiftX,p=u.y+t[l].collisionShiftY;if(!(c+s.width/2<h-u.width/2||c-s.width/2>h+u.width/2||f+s.height/2<p-u.height/2||f-s.height/2>p+u.height/2)){if(t[l].quadrant==1){const d=p>f?-i*2:-i;t[l].collisionShiftY+=d}else if(t[l].quadrant==3){const d=p>f?i:i*2;t[l].collisionShiftY+=d}}}}e.data(t).transition().attr("transform",a=>`translate(${a.x+a.collisionShiftX},${a.y+a.collisionShiftY})`)}function zF({lineGSelection:e,data:t,fullParams:n,fullChartParams:r}){const i=t.filter(a=>a.collisionShiftX||a.collisionShiftY),o=e.selectAll("polyline").data(i,a=>a.pieDatum.id).join("polyline").attr("stroke",a=>Me({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).attr("stroke-width",1).attr("fill","none").attr("points",a=>[[a.lineStartX,a.lineStartY],[a.lineStartX,a.lineStartY]]);return o.transition().attr("points",a=>{let s=a.x+a.collisionShiftX,l=a.y+a.collisionShiftY;return[[s,l],[a.lineStartX,a.lineStartY]]}),o}function OF({textSelection:e,lineSelection:t,ids:n,fullChartParams:r}){if(e.interrupt("highlight"),t.interrupt("highlight"),!n.length){e.transition("highlight").duration(200).attr("transform",i=>`translate(${i.x+i.collisionShiftX},${i.y+i.collisionShiftY})`).style("opacity",1),t.transition("highlight").duration(200).style("opacity",1);return}e.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.id)?s.style("opacity",1).transition("highlight").duration(200).attr("transform",l=>l.collisionShiftX||l.collisionShiftY?`translate(${l.x+l.collisionShiftX},${l.y+l.collisionShiftY})`:`translate(${l.mouseoverX+l.collisionShiftX},${l.mouseoverY+l.collisionShiftY})`):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200).attr("transform",l=>`translate(${l.x+l.collisionShiftX},${l.y+l.collisionShiftY})`)}),t.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.data.id)?s.style("opacity",1).transition("highlight").duration(200):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function GF(e,t){const n=new J;t.containerSelection.selectAll("g").remove();const r=t.containerSelection.append("g");r.classed(RF,!0);const i=t.containerSelection.append("g");i.classed(kF,!0);const o=new J,a=new J;let s=[];const l=t.seriesContainerPosition$.pipe(L(n),R(c=>c.width<c.height?c.width:c.height),ee()),u=t.fullParams$.pipe(L(n),R(c=>c.labelCentroid>=N2?N2:c.labelCentroid));return Y({shorterSideWith:l,containerVisibleComputedLayoutData:t.containerVisibleComputedLayoutData$,fullParams:t.fullParams$,fullChartParams:t.fullChartParams$,textSizePx:t.textSizePx$,lineStartCentroid:u}).pipe(L(n),G(async c=>c)).subscribe(c=>{const f=cu({axisWidth:c.shorterSideWith,innerRadius:0,outerRadius:c.fullParams.outerRadius,padAngle:0,cornerRadius:0}),h=cu({axisWidth:c.shorterSideWith,innerRadius:0,outerRadius:c.fullParams.outerRadiusWhileHighlight,padAngle:0,cornerRadius:0}),p=E2({data:c.containerVisibleComputedLayoutData,startAngle:c.fullParams.startAngle,endAngle:c.fullParams.endAngle});s=BF({pieData:p,arc:f,arcMouseover:h,labelCentroid:c.fullParams.labelCentroid,lineStartCentroid:c.lineStartCentroid,fullParams:c.fullParams}),r.selectAll("polyline").remove();const d=NF({labelGSelection:i,data:s,fullParams:c.fullParams,fullChartParams:c.fullChartParams,textSizePx:c.textSizePx});setTimeout(()=>{FF(d,s,c.textSizePx);const m=zF({lineGSelection:r,data:s,fullParams:c.fullParams,fullChartParams:c.fullChartParams});a.next(m)},1e3),o.next(d)}),Y({textSelection:o,lineSelection:a,highlight:t.seriesHighlight$.pipe(R(c=>c.map(f=>f.id))),fullChartParams:t.fullChartParams$}).pipe(L(n),G(async c=>c)).subscribe(c=>{OF({textSelection:c.textSelection,lineSelection:c.lineSelection,ids:c.highlight,fullChartParams:c.fullChartParams})}),()=>{n.next(void 0)}}const YF=Sn(IF)(({selection:e,observer:t,subject:n})=>{const r=new J,{seriesCenterSelection$:i}=pa({selection:e,pluginName:zi,separateSeries$:t.separateSeries$,seriesLabels$:t.seriesLabels$,seriesContainerPosition$:t.seriesContainerPosition$}),o=[];return i.pipe(L(r)).subscribe(a=>{o.forEach(s=>s()),a.each((s,l,u)=>{const c=V(u[l]),f=t.visibleComputedLayoutData$.pipe(L(r),R(p=>p[l]??p[0])),h=t.seriesContainerPosition$.pipe(L(r),R(p=>p[l]??p[0]));o[l]=GF(zi,{containerSelection:c,containerVisibleComputedLayoutData$:f,fullParams$:t.fullParams$,fullChartParams$:t.fullChartParams$,textSizePx$:t.textSizePx$,seriesHighlight$:t.seriesHighlight$,seriesContainerPosition$:h,event$:n.event$})})}),()=>{r.next(void 0)}}),Kp="Rose",WF=Math.PI*2,XF={name:Kp,defaultParams:L2,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{outerRadius:{toBeTypes:["number"]},padAngle:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},strokeWidth:{toBeTypes:["number"]},cornerRadius:{toBeTypes:["number"]},arcScaleType:{toBe:'"area" | "radius"',test:r=>r==="area"||r==="radius"},angleIncreaseWhileHighlight:{toBeTypes:["number"]}})};function VF({cornerRadius:e,outerRadius:t,axisWidth:n,maxValue:r,arcScaleType:i,fullParams:o}){const a=n/2*t,s=i==="area"?.5:1,l=kn().domain([0,r]).range([0,a]).exponent(s);return u=>{const c=l(u.prevValue),f=l(u.value),h=nn(c,f);return p=>{const d=h(p);return Ql().innerRadius(0).outerRadius(d).padAngle(o.padAngle).padRadius(d).cornerRadius(e)(u)}}}function UF({pathSelection:e,ids:t,fullParams:n,fullChartParams:r,tweenArc:i}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").style("opacity",1).attr("d",o=>i(o)(1));return}e.each((o,a,s)=>{const l=V(s[a]);t.includes(o.data.id)?l.style("opacity",1).transition("highlight").ease(sr).duration(500).attr("d",u=>i({...u,startAngle:u.startAngle-n.angleIncreaseWhileHighlight,endAngle:u.endAngle+n.angleIncreaseWhileHighlight})(1)):l.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").attr("d",u=>i(u)(1))})}function HF(e,t){const n=new J,r=Z(e,"path");let i=[];const o=t.seriesContainerPosition$.pipe(L(n),R(p=>p.width<p.height?p.width:p.height),ee()),a=Y({containerVisibleComputedLayoutData:t.containerVisibleComputedLayoutData$,fullParams:t.fullParams$}).pipe(L(n),G(async p=>p),R(p=>{const d=WF/p.containerVisibleComputedLayoutData.length;return p.containerVisibleComputedLayoutData.map((m,g)=>({id:m.id,data:m,index:g,value:m.value,startAngle:d*g,endAngle:d*(g+1),padAngle:p.fullParams.padAngle,prevValue:i[g]&&i[g].id===m.id?i[g].value:0}))})),s=t.fullChartParams$.pipe(L(n),R(p=>p.highlightTarget),ee()),l=t.visibleComputedLayoutData$.pipe(R(p=>Math.max(...p.flat().map(d=>d.value))),ee()),u=Y({fullParams:t.fullParams$,axisWidth:o,maxValue:l}).pipe(L(n),G(async p=>p),R(p=>VF({cornerRadius:p.fullParams.cornerRadius,outerRadius:p.fullParams.outerRadius,axisWidth:p.axisWidth,maxValue:p.maxValue,arcScaleType:p.fullParams.arcScaleType,fullParams:p.fullParams}))),c=t.fullChartParams$.pipe(L(n),R(p=>p.transitionDuration),ee()),f=new Du(!1),h=new de(p=>{Y({pieData:a,tweenArc:u,transitionDuration:c,fullParams:t.fullParams$,fullChartParams:t.fullChartParams$}).pipe(L(n),G(async d=>d)).subscribe(d=>{const m=d.pieData.map((y,b)=>(y.prevValue=i[b]&&i[b].id===y.id?i[b].value:0,y));f.next(!0);const g=t.containerSelection.selectAll("path").data(m,y=>y.id).join("path").classed(r,!0).style("cursor","pointer").attr("fill",(y,b)=>y.data.color).attr("stroke",(y,b)=>Me({datum:y.data,colorType:d.fullParams.strokeColorType,fullChartParams:d.fullChartParams})).attr("stroke-width",d.fullParams.strokeWidth);g.interrupt("graphicMove"),g.transition("graphicMove").duration(d.transitionDuration).attrTween("d",d.tweenArc).on("end",()=>{p.next(g),f.next(!1)}),i=Object.assign([],m)})}).pipe(pe(1));return Y({pathSelection:h,SeriesDataMap:t.SeriesDataMap$,computedData:t.computedData$,highlightTarget:s}).pipe(L(n),G(async p=>p)).subscribe(p=>{p.pathSelection.on("mouseover",(d,m)=>{d.stopPropagation(),t.event$.next({type:"series",eventName:"mouseover",pluginName:e,highlightTarget:p.highlightTarget,datum:m.data,series:p.SeriesDataMap.get(m.data.seriesLabel),seriesIndex:m.data.seriesIndex,seriesLabel:m.data.seriesLabel,event:d,data:p.computedData})}).on("mousemove",(d,m)=>{d.stopPropagation(),t.event$.next({type:"series",eventName:"mousemove",pluginName:e,highlightTarget:p.highlightTarget,datum:m.data,series:p.SeriesDataMap.get(m.data.seriesLabel),seriesIndex:m.data.seriesIndex,seriesLabel:m.data.seriesLabel,event:d,data:p.computedData})}).on("mouseout",(d,m)=>{d.stopPropagation(),t.event$.next({type:"series",eventName:"mouseout",pluginName:e,highlightTarget:p.highlightTarget,datum:m.data,series:p.SeriesDataMap.get(m.data.seriesLabel),seriesIndex:m.data.seriesIndex,seriesLabel:m.data.seriesLabel,event:d,data:p.computedData})}).on("click",(d,m)=>{d.stopPropagation(),t.event$.next({type:"series",eventName:"click",pluginName:e,highlightTarget:p.highlightTarget,datum:m.data,series:p.SeriesDataMap.get(m.data.seriesLabel),seriesIndex:m.data.seriesIndex,seriesLabel:m.data.seriesLabel,event:d,data:p.computedData})})}),Y({pathSelection:h,highlight:t.seriesHighlight$.pipe(R(p=>p.map(d=>d.id))),fullParams:t.fullParams$,fullChartParams:t.fullChartParams$,tweenArc:u,isTransitionMoving:f}).pipe(L(n),G(async p=>p),Rr(p=>!p.isTransitionMoving)).subscribe(p=>{UF({pathSelection:p.pathSelection,ids:p.highlight,fullParams:p.fullParams,fullChartParams:p.fullChartParams,tweenArc:p.tweenArc})}),()=>{n.next(void 0)}}const jF=Sn(XF)(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,{seriesCenterSelection$:o}=pa({selection:e,pluginName:Kp,separateSeries$:r.separateSeries$,seriesLabels$:r.seriesLabels$,seriesContainerPosition$:r.seriesContainerPosition$}),a=[];return o.pipe(L(i)).subscribe(s=>{a.forEach(l=>l()),s.each((l,u,c)=>{const f=V(c[u]),h=r.visibleComputedLayoutData$.pipe(L(i),R(d=>JSON.parse(JSON.stringify(d[u]??d[0])))),p=r.seriesContainerPosition$.pipe(L(i),R(d=>JSON.parse(JSON.stringify(d[u]??d[0]))));a[u]=HF(Kp,{containerSelection:f,computedData$:r.computedData$,visibleComputedData$:r.visibleComputedData$,visibleComputedLayoutData$:r.visibleComputedLayoutData$,containerVisibleComputedLayoutData$:h,SeriesDataMap$:r.SeriesDataMap$,fullParams$:r.fullParams$,fullChartParams$:r.fullChartParams$,seriesHighlight$:r.seriesHighlight$,seriesContainerPosition$:p,event$:n.event$})})}),()=>{i.next(void 0),a.forEach(s=>s())}}),Oi="RoseLabels",qF=Z(Oi,"label-g"),ZF=Z(Oi,"line-g"),KF=Z(Oi,"text"),F2=2,QF={name:Oi,defaultParams:Vp,layerIndex:$p,validator:(e,{validateColumns:t})=>t(e,{outerRadius:{toBeTypes:["number"]},labelCentroid:{toBeTypes:["number"]},labelFn:{toBeTypes:["Function"]},labelColorType:{toBeOption:"ColorType"},arcScaleType:{toBe:'"area" | "radius"',test:r=>r==="area"||r==="radius"}})};function JF({pieData:e,labelCentroid:t,arcScaleType:n,maxValue:r,axisWidth:i,outerRadius:o,lineStartCentroid:a,fullParams:s}){const l=i/2*o,u=n==="area"?.5:1,c=kn().domain([0,r]).range([0,l]).exponent(u);return e.map((f,h)=>{const p=c(f.value),d=Ql().innerRadius(0).outerRadius(p).padAngle(0).padRadius(p).cornerRadius(0),[m,g]=d.centroid(f),[y,b]=[m,g],v=s.labelFn(f.data);return{pieDatum:f,arcIndex:h,arcLabels:v.split(`
|
226
|
+
`),lineStartX:m*a,lineStartY:g*a,lineStartMouseoverX:y*a,lineStartMouseoverY:b*a,x:m*t,y:g*t,mouseoverX:y*t,mouseoverY:b*t,textWidth:0,collisionShiftX:0,collisionShiftY:0,quadrant:m>=0&&g<=0?1:m<0&&g<=0?2:m<0&&g>0?3:4}}).filter(f=>f.pieDatum.data.visible)}function ez({labelGSelection:e,data:t,fullParams:n,fullChartParams:r,textSizePx:i}){const o=e.selectAll("text").data(t,a=>a.pieDatum.id).join("text").classed(KF,!0).attr("font-weight","bold").attr("text-anchor",a=>a.quadrant==1||a.quadrant==4?"start":"end").style("dominant-baseline",a=>a.quadrant==1||a.quadrant==2?"auto":"hanging").style("cursor",a=>r.highlightTarget&&r.highlightTarget!="none"?"pointer":"none").attr("font-size",r.styles.textSize).attr("fill",(a,s)=>Me({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).each((a,s,l)=>{C$(V(l[s]),{textArr:a.arcLabels,textSizePx:i,quadrant:a.quadrant})});return o.transition().attr("transform",a=>"translate("+a.x+","+a.y+")"),o}function tz(e,t,n){const r=e.nodes(),i=n,o=r.map((a,s)=>{const l=a.getBBox(),u=[t[s].x,t[s].y];return{node:a,x:u[0],y:u[1],width:l.width,height:l.height}});for(let a=0;a<o.length;a++){const s=o[a];for(let l=a+1;l<o.length;l++){const u=o[l];t[a].textWidth=s.width;const c=s.x+t[a].collisionShiftX,f=s.y+t[a].collisionShiftY,h=u.x+t[l].collisionShiftX,p=u.y+t[l].collisionShiftY;if(!(c+s.width/2<h-u.width/2||c-s.width/2>h+u.width/2||f+s.height/2<p-u.height/2||f-s.height/2>p+u.height/2)){if(t[l].quadrant==2){const d=p>f?-i*2:-i;t[l].collisionShiftY+=d}else if(t[l].quadrant==4){const d=p>f?i:i*2;t[l].collisionShiftY+=d}}}}for(let a=o.length-1;a>=0;a--){const s=o[a];for(let l=a-1;l>=0;l--){const u=o[l];t[a].textWidth=s.width;const c=s.x+t[a].collisionShiftX,f=s.y+t[a].collisionShiftY,h=u.x+t[l].collisionShiftX,p=u.y+t[l].collisionShiftY;if(!(c+s.width/2<h-u.width/2||c-s.width/2>h+u.width/2||f+s.height/2<p-u.height/2||f-s.height/2>p+u.height/2)){if(t[l].quadrant==1){const d=p>f?-i*2:-i;t[l].collisionShiftY+=d}else if(t[l].quadrant==3){const d=p>f?i:i*2;t[l].collisionShiftY+=d}}}}e.data(t).transition().attr("transform",a=>`translate(${a.x+a.collisionShiftX},${a.y+a.collisionShiftY})`)}function nz({lineGSelection:e,data:t,fullParams:n,fullChartParams:r}){const i=t.filter(a=>a.collisionShiftX||a.collisionShiftY),o=e.selectAll("polyline").data(i,a=>a.pieDatum.id).join("polyline").attr("stroke",a=>Me({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).attr("stroke-width",1).attr("fill","none").attr("points",a=>[[a.lineStartX,a.lineStartY],[a.lineStartX,a.lineStartY]]);return o.transition().attr("points",a=>{let s=a.x+a.collisionShiftX,l=a.y+a.collisionShiftY;return[[s,l],[a.lineStartX,a.lineStartY]]}),o}function rz({textSelection:e,lineSelection:t,ids:n,fullChartParams:r}){if(e.interrupt("highlight"),t.interrupt("highlight"),!n.length){e.transition("highlight").duration(200).attr("transform",i=>`translate(${i.x+i.collisionShiftX},${i.y+i.collisionShiftY})`).style("opacity",1),t.transition("highlight").duration(200).style("opacity",1);return}e.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.data.id)?s.style("opacity",1).transition("highlight").duration(200).attr("transform",l=>`translate(${l.mouseoverX+l.collisionShiftX},${l.mouseoverY+l.collisionShiftY})`):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200).attr("transform",l=>`translate(${l.x+l.collisionShiftX},${l.y+l.collisionShiftY})`)}),t.each((i,o,a)=>{const s=V(a[o]);n.includes(i.pieDatum.data.id)?s.style("opacity",1).transition("highlight").duration(200):s.style("opacity",r.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function iz(e,t){const n=new J;t.containerSelection.selectAll("g").remove();const r=t.containerSelection.append("g");r.classed(ZF,!0);const i=t.containerSelection.append("g");i.classed(qF,!0);const o=new J,a=new J;let s=[];const l=t.seriesContainerPosition$.pipe(L(n),R(f=>f.width<f.height?f.width:f.height),ee()),u=t.visibleComputedLayoutData$.pipe(R(f=>Math.max(...f.flat().map(h=>h.value))),ee()),c=t.fullParams$.pipe(L(n),R(f=>f.labelCentroid>=F2?F2:f.labelCentroid));return Y({shorterSideWith:l,containerVisibleComputedLayoutData:t.containerVisibleComputedLayoutData$,maxValue:u,fullParams:t.fullParams$,fullChartParams:t.fullChartParams$,textSizePx:t.textSizePx$,lineStartCentroid:c}).pipe(L(n),G(async f=>f)).subscribe(f=>{const h=Math.PI*2/f.containerVisibleComputedLayoutData.length,p=f.containerVisibleComputedLayoutData.map((m,g)=>({id:m.id,data:m,index:g,value:m.value,startAngle:h*g,endAngle:h*(g+1),padAngle:0}));s=JF({pieData:p,labelCentroid:f.fullParams.labelCentroid,arcScaleType:f.fullParams.arcScaleType,maxValue:f.maxValue,axisWidth:f.shorterSideWith,outerRadius:f.fullParams.outerRadius,lineStartCentroid:f.lineStartCentroid,fullParams:f.fullParams}),r.selectAll("polyline").remove();const d=ez({labelGSelection:i,data:s,fullParams:f.fullParams,fullChartParams:f.fullChartParams,textSizePx:f.textSizePx});setTimeout(()=>{tz(d,s,f.textSizePx);const m=nz({lineGSelection:r,data:s,fullParams:f.fullParams,fullChartParams:f.fullChartParams});a.next(m)},1e3),o.next(d)}),Y({textSelection:o,lineSelection:a,highlight:t.seriesHighlight$.pipe(R(f=>f.map(h=>h.id))),fullChartParams:t.fullChartParams$}).pipe(L(n),G(async f=>f)).subscribe(f=>{rz({textSelection:f.textSelection,lineSelection:f.lineSelection,ids:f.highlight,fullChartParams:f.fullChartParams})}),()=>{n.next(void 0)}}const oz=Sn(QF)(({selection:e,observer:t,subject:n})=>{const r=new J,{seriesCenterSelection$:i}=pa({selection:e,pluginName:Oi,separateSeries$:t.separateSeries$,seriesLabels$:t.seriesLabels$,seriesContainerPosition$:t.seriesContainerPosition$}),o=[];return i.pipe(L(r)).subscribe(a=>{o.forEach(s=>s()),a.each((s,l,u)=>{const c=V(u[l]),f=t.visibleComputedLayoutData$.pipe(L(r),R(p=>JSON.parse(JSON.stringify(p[l]??p[0])))),h=t.seriesContainerPosition$.pipe(L(r),R(p=>JSON.parse(JSON.stringify(p[l]??p[0]))));o[l]=iz(Oi,{containerSelection:c,visibleComputedLayoutData$:t.visibleComputedLayoutData$,containerVisibleComputedLayoutData$:f,fullParams$:t.fullParams$,fullChartParams$:t.fullChartParams$,textSizePx$:t.textSizePx$,seriesHighlight$:t.seriesHighlight$,seriesContainerPosition$:h,event$:n.event$})})}),()=>{r.next(void 0)}}),z2="SeriesLegend",az=Sn({name:z2,defaultParams:k2,layerIndex:ki,validator:(e,{validateColumns:t})=>t(e,{placement:{toBe:'"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',test:r=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].includes(r)},padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:e,rootSelection:t,observer:n,subject:r})=>{const i=new J,o=n.SeriesDataMap$.pipe(L(i),R(l=>Array.from(l.keys()))),a=n.fullParams$.pipe(L(i),R(l=>{const u=[{listRectWidth:l.listRectWidth,listRectHeight:l.listRectHeight,listRectRadius:l.listRectRadius}];return{...l,labelList:u}})),s=Ei(z2,{rootSelection:t,legendLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}}),O2="SeriesTooltip",sz=Sn({name:O2,defaultParams:Up,layerIndex:Ri,validator:(e,{validateColumns:t})=>t(e,{backgroundColorType:{toBeOption:"ColorType"},backgroundOpacity:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},offset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},padding:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"},renderFn:{toBeTypes:["Function"]}})})(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=Bi(O2,{rootSelection:t,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}}),Qp={paddingInner:2,paddingOuter:2,labelColorType:"primary",squarifyRatio:1.618034,sort:(e,t)=>t.value-e.value};Qp.sort.toString=()=>"(a, b) => b.value - a.value";const G2={placement:"right-end",padding:28,backgroundFill:"none",backgroundStroke:"none",gap:10,listRectWidth:14,listRectHeight:14,listRectRadius:0,textColorType:"primary"},Jp={backgroundColorType:"background",strokeColorType:"primary",backgroundOpacity:.8,textColorType:"primary",offset:[20,5],padding:10,renderFn:(e,{styles:t,utils:n})=>{const r=!!e.categoryLabel,i=!!e.datum.label,o=t.textSizePx*.7,a=t.textSizePx/2-o/2,s=r?`<rect width="${o}" height="${o}" x="${a}" y="${a-1}" rx="${o/2}" fill="${e.datum.color}"></rect>
|
227
|
+
<text x="${t.textSizePx*1.5}" font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
228
|
+
<tspan>${e.categoryLabel}</tspan>
|
229
|
+
</text>`:"",l=i?`<tspan>${e.datum.label}</tspan> `:"",u=`<text font-size="${t.textSizePx}" dominant-baseline="hanging" fill="${t.textColor}">
|
230
|
+
${l}<tspan font-weight="bold">${e.datum.value}</tspan>
|
231
|
+
</text>`;return`${s}
|
232
|
+
<g ${r?`transform="translate(0, ${t.textSizePx*2})"`:""}>
|
233
|
+
${u}
|
234
|
+
</g>`}};Jp.renderFn.toString=()=>'(eventData, { styles, utils }) => {\n const hasCategoryLabel = eventData.categoryLabel ? true : false\n const hasDatumLabel = eventData.datum.label ? true : false\n const bulletWidth = styles.textSizePx * 0.7\n const offset = (styles.textSizePx / 2) - (bulletWidth / 2)\n const categorySvg = hasCategoryLabel\n ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>\n <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">\n <tspan>${eventData.categoryLabel}</tspan>\n </text>`\n : \'\'\n const datumLabelSvg = hasDatumLabel\n ? `<tspan>${eventData.datum.label}</tspan> `\n : \'\'\n const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">\n ${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>\n </text>`\n\n return `${categorySvg}\n <g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : \'\'}>\n ${datumSvg}\n </g>`\n}';const Y2="TreeLegend",lz=gc({name:Y2,defaultParams:G2,layerIndex:ki,validator:(e,{validateColumns:t})=>t(e,{placement:{toBe:'"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',test:r=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].includes(r)},padding:{toBeTypes:["number"]},backgroundFill:{toBeOption:"ColorType"},backgroundStroke:{toBeOption:"ColorType"},gap:{toBeTypes:["number"]},listRectWidth:{toBeTypes:["number"]},listRectHeight:{toBeTypes:["number"]},listRectRadius:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"}})})(({selection:e,rootSelection:t,observer:n,subject:r})=>{const i=new J,o=n.fullParams$.pipe(L(i),R(s=>{const l=[{listRectWidth:s.listRectWidth,listRectHeight:s.listRectHeight,listRectRadius:s.listRectRadius}];return{...s,labelList:l}})),a=Ei(Y2,{rootSelection:t,legendLabels$:n.categoryLabels$,fullParams$:o,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),a()}}),Pr="TreeMap",W2=Z(Pr,"tree"),X2=Z(Pr,"tile"),uz={name:Pr,defaultParams:Qp,layerIndex:bt,validator:(e,{validateColumns:t})=>t(e,{paddingInner:{toBeTypes:["number"]},paddingOuter:{toBeTypes:["number"]},labelColorType:{toBeOption:"ColorType"},squarifyRatio:{toBeTypes:["number"]},sort:{toBeTypes:["Function"]}})};function cz({selection:e,treeData:t,fullParams:n,fullChartParams:r,textSizePx:i}){const o=i/2,a=i,s=e.selectAll(`g.${W2}`).data(t,l=>l.data.id).join("g").attr("class",W2);return s.attr("transform",l=>!l.x0||!l.y0?null:`translate(${l.x0},${l.y0})`).each((l,u,c)=>{const f=V(c[u]);f.selectAll(`rect.${X2}`).data([l],h=>h.data.id).join("rect").attr("id",h=>h.data.id).attr("class",X2).attr("cursor","pointer").attr("width",h=>h.x1-h.x0).attr("height",h=>h.y1-h.y0).attr("fill",h=>h.data.color).attr("data-name",h=>h.data.label).attr("data-category",h=>h.data.categoryLabel).attr("data-value",h=>h.data.value),f.selectAll("g").data([l]).join("g").each((h,p,d)=>{V(d[p]).selectAll("text").data([h]).join("text").text(g=>g.data.label).attr("dominant-baseline","hanging").attr("x",o).attr("y",o).attr("font-size",r.styles.textSize).each(function(g){const y=V(this),b=g.data.label.split(/\s+/).reverse();let v,x=[];const _=y.attr("x");let A=y.attr("y"),S=0,P=y.text(null).append("tspan").attr("cursor","pointer").attr("fill",be(n.labelColorType,r)).attr("font-size",r.styles.textSize).attr("x",_).attr("y",A);for(;v=b.pop();)x.push(v),P.text(x.join(" ")),P.node().getComputedTextLength()>g.x1-g.x0-o&&(x.pop(),P.text(x.join(" ")),x=[v],S+=a,P=y.append("tspan").attr("cursor","pointer").attr("fill",be(n.labelColorType,r)).attr("font-size",r.styles.textSize).attr("x",_).attr("y",A).attr("dy",S+"px").text(v))})})}),s}function fz({selection:e,ids:t,fullChartParams:n}){if(e.interrupt("highlight"),!t.length){e.transition("highlight").duration(200).style("opacity",1);return}e.each((r,i,o)=>{t.includes(r.data.id)?V(o[i]).style("opacity",1):V(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const hz=gc(uz)(({selection:e,name:t,subject:n,observer:r})=>{const i=new J,o=Y({layout:r.layout$,visibleComputedData:r.visibleComputedData$,fullParams:r.fullParams$,fullDataFormatter:r.fullDataFormatter$,fullChartParams:r.fullChartParams$}).pipe(L(i),G(async l=>l),R(l=>{const u=Db().size([l.layout.width,l.layout.height]).paddingInner(l.fullParams.paddingInner).paddingOuter(l.fullParams.paddingOuter).round(!0).tile(Nh.ratio(l.fullParams.squarifyRatio)),c=Cl(l.visibleComputedData).sum(h=>h.value).sort(l.fullParams.sort);return u(c),c.leaves()})),a=Y({selection:_a(e),treeData:o,fullParams:r.fullParams$,fullChartParams:r.fullChartParams$,textSizePx:r.textSizePx$}).pipe(L(i),G(async l=>l),R(l=>cz({selection:e,treeData:l.treeData,fullParams:l.fullParams,fullChartParams:l.fullChartParams,textSizePx:l.textSizePx}))),s=r.fullChartParams$.pipe(L(i),R(l=>l.highlightTarget),ee());return Y({cellSelection:a,computedData:r.computedData$,treeData:o,fullParams:r.fullParams$,fullChartParams:r.fullChartParams$,highlightTarget:s,CategoryDataMap:r.CategoryDataMap$}).pipe(L(i),G(async l=>l)).subscribe(l=>{l.cellSelection.on("mouseover",(u,c)=>{u.stopPropagation(),n.event$.next({type:"tree",eventName:"mouseover",pluginName:Pr,highlightTarget:l.highlightTarget,datum:c.data,category:l.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:u,data:l.computedData})}).on("mousemove",(u,c)=>{u.stopPropagation(),n.event$.next({type:"tree",eventName:"mousemove",pluginName:Pr,highlightTarget:l.highlightTarget,datum:c.data,category:l.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:u,data:l.computedData})}).on("mouseout",(u,c)=>{u.stopPropagation(),n.event$.next({type:"tree",eventName:"mouseout",pluginName:Pr,highlightTarget:l.highlightTarget,datum:c.data,category:l.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:u,data:l.computedData})}).on("click",(u,c)=>{u.stopPropagation(),n.event$.next({type:"tree",eventName:"click",pluginName:Pr,highlightTarget:l.highlightTarget,datum:c.data,category:l.CategoryDataMap.get(c.data.categoryLabel),categoryIndex:c.data.categoryIndex,categoryLabel:c.data.categoryLabel,event:u,data:l.computedData})})}),Y({cellSelection:a,highlight:r.treeHighlight$.pipe(R(l=>l.map(u=>u.id))),fullChartParams:r.fullChartParams$}).pipe(L(i),G(async l=>l)).subscribe(l=>{fz({selection:l.cellSelection,ids:l.highlight,fullChartParams:l.fullChartParams})}),()=>{i.next(void 0)}}),V2="TreeTooltip",pz=gc({name:V2,defaultParams:Jp,layerIndex:Ri,validator:(e,{validateColumns:t})=>t(e,{backgroundColorType:{toBeOption:"ColorType"},backgroundOpacity:{toBeTypes:["number"]},strokeColorType:{toBeOption:"ColorType"},offset:{toBe:"[number, number]",test:r=>Array.isArray(r)&&r.length===2&&typeof r[0]=="number"&&typeof r[1]=="number"},padding:{toBeTypes:["number"]},textColorType:{toBeOption:"ColorType"},renderFn:{toBeTypes:["Function"]}})})(({selection:e,rootSelection:t,name:n,subject:r,observer:i})=>{const o=new J,a=Bi(V2,{rootSelection:t,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}});H.Bars=EI,H.BarsPN=II,H.BarsTriangle=ZI,H.Bubbles=_F,H.CONTAINER_PLUGIN_PARAMS=_N,H.DEFAULT_BARS_DIVERGING_PARAMS=U2,H.DEFAULT_BARS_PARAMS=ga,H.DEFAULT_BARS_TRIANGLE_PARAMS=rd,H.DEFAULT_BUBBLES_PARAMS=M2,H.DEFAULT_DOTS_PARAMS=td,H.DEFAULT_FORCE_DIRECTED_BUBBLES_PARAMS=Fi,H.DEFAULT_FORCE_DIRECTED_PARAMS=Ni,H.DEFAULT_GRID_LEGEND_PARAMS=ad,H.DEFAULT_GRID_TOOLTIP_PARAMS=vu,H.DEFAULT_GRID_ZOOM_PARAMS=od,H.DEFAULT_GROUP_AUX_PARAMS=bu,H.DEFAULT_GROUP_AXIS_PARAMS=xu,H.DEFAULT_LINES_PARAMS=Dr,H.DEFAULT_LINE_AREAS_PARAMS=ed,H.DEFAULT_MULTI_BARS_PARAMS=F$,H.DEFAULT_MULTI_BARS_TRIANGLE_PARAMS=O$,H.DEFAULT_MULTI_DOTS_PARAMS=W$,H.DEFAULT_MULTI_GRID_LEGEND_PARAMS=N$,H.DEFAULT_MULTI_GRID_TOOLTIP_PARAMS=Pp,H.DEFAULT_MULTI_GROUP_AXIS_PARAMS=Tp,H.DEFAULT_MULTI_LINES_PARAMS=G$,H.DEFAULT_MULTI_LINE_AREAS_PARAMS=Y$,H.DEFAULT_MULTI_STACKED_BAR_PARAMS=z$,H.DEFAULT_MULTI_STACKED_VALUE_AXIS_PARAMS=TB,H.DEFAULT_MULTI_VALUE_AXIS_PARAMS=pu,H.DEFAULT_MULTI_VALUE_LEGEND_PARAMS=i2,H.DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS=zp,H.DEFAULT_OVERLAPPING_STACKED_VALUE_AXES_PARAMS=X$,H.DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS=Ap,H.DEFAULT_PIE_EVENT_TEXTS_PARAMS=Wp,H.DEFAULT_PIE_LABELS_PARAMS=Xp,H.DEFAULT_PIE_PARAMS=C2,H.DEFAULT_RELATIONSHIP_LEGEND_PARAMS=h2,H.DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS=Yp,H.DEFAULT_ROSE_LABELS_PARAMS=Vp,H.DEFAULT_ROSE_PARAMS=L2,H.DEFAULT_SCATTER_BUBBLES_PARAMS=a2,H.DEFAULT_SCATTER_PARAMS=o2,H.DEFAULT_SERIES_LEGEND_PARAMS=k2,H.DEFAULT_SERIES_TOOLTIP_PARAMS=Up,H.DEFAULT_STACKED_BAR_PARAMS=nd,H.DEFAULT_STACKED_VALUE_AXIS_PARAMS=id,H.DEFAULT_TREE_LEGEND_PARAMS=G2,H.DEFAULT_TREE_MAP_PARAMS=Qp,H.DEFAULT_TREE_TOOLTIP_PARAMS=Jp,H.DEFAULT_VALUE_AXIS_PARAMS=ma,H.DEFAULT_X_Y_AUX_PARAMS=du,H.DEFAULT_X_Y_AXES_PARAMS=gu,H.DEFAULT_X_Y_ZOOM_PARAMS=s2,H.Dots=eB,H.ForceDirected=XN,H.ForceDirectedBubbles=fF,H.GridLegend=rB,H.GridTooltip=gB,H.GridZoom=mB,H.GroupAux=wB,H.GroupAxis=lB,H.LineAreas=PI,H.Lines=vI,H.MultiBars=PB,H.MultiBarsTriangle=MB,H.MultiDots=kB,H.MultiGridLegend=AB,H.MultiGridTooltip=IB,H.MultiGroupAxis=RB,H.MultiLineAreas=LB,H.MultiLines=CB,H.MultiStackedBar=DB,H.MultiStackedValueAxis=BB,H.MultiValueAxis=EB,H.MultiValueLegend=zB,H.MultiValueTooltip=OB,H.OverlappingStackedValueAxes=FB,H.OverlappingValueAxes=NB,H.Pie=DF,H.PieEventTexts=LF,H.PieLabels=YF,H.RelationshipLegend=hF,H.RelationshipTooltip=pF,H.Rose=jF,H.RoseLabels=oz,H.Scatter=UB,H.ScatterBubbles=QB,H.SeriesLegend=az,H.SeriesTooltip=sz,H.StackedBar=YI,H.StackedValueAxis=pB,H.TOOLTIP_PARAMS=f2,H.TreeLegend=lz,H.TreeMap=hz,H.TreeTooltip=pz,H.ValueAxis=hB,H.XYAux=aN,H.XYAxes=vN,H.XYZoom=$N,Object.defineProperty(H,Symbol.toStringTag,{value:"Module"})});
|