@orbcharts/plugins-basic 3.0.0-beta.1 → 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/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
- package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +4 -4
- package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
- package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +2 -2
- 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/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +4 -4
- package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +3 -3
- 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/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/seriesObservables.d.ts +3 -3
- 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 +13264 -10298
- package/dist/orbcharts-plugins-basic.umd.js +105 -55
- 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 -680
- 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 +385 -382
- 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 +246 -244
- package/src/grid/gridObservables.ts +554 -545
- package/src/grid/index.ts +16 -16
- 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 -107
- package/src/grid/plugins/GridTooltip.ts +66 -66
- package/src/grid/plugins/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 +224 -224
- package/src/multiGrid/index.ts +15 -15
- 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 -159
- package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
- 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 +3 -3
- 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 +206 -206
- package/src/series/index.ts +9 -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 -107
- package/src/series/plugins/SeriesTooltip.ts +66 -66
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/tree/defaults.ts +78 -78
- package/src/tree/index.ts +4 -4
- package/src/tree/plugins/TreeLegend.ts +100 -107
- package/src/tree/plugins/TreeMap.ts +333 -333
- package/src/tree/plugins/TreeTooltip.ts +66 -66
- 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/ValueStackAxis.d.ts +0 -1
- 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/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/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/BaseTooltip.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/GridTooltip.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.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/MultiGridTooltip.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 → orbcharts-plugins-basic/src}/noneData/index.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/defaults.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/index.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/SeriesTooltip.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/defaults.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.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}/tree/plugins/TreeTooltip.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,11 +1,11 @@
|
|
1
|
-
(function(
|
2
|
-
<rect width="${
|
3
|
-
<text x="${
|
4
|
-
<tspan font-weight="${
|
5
|
-
<tspan font-weight="bold" text-anchor="end" x="${
|
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
6
|
</text>
|
7
|
-
</g>`}).join("");return`${
|
8
|
-
${u}`}};
|
7
|
+
</g>`}).join("");return`${o}
|
8
|
+
${u}`}};vu.renderFn.toString=()=>`(eventData, { styles, utils }) => {
|
9
9
|
const bulletWidth = styles.textSizePx * 0.7
|
10
10
|
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
11
11
|
|
@@ -14,7 +14,7 @@ ${u}`}};ju.renderFn.toString=()=>`(eventData, { styles }) => {
|
|
14
14
|
const text = \`\${group.seriesLabel}\${group.value}\`
|
15
15
|
return text.length > acc.length ? text : acc
|
16
16
|
}, '')
|
17
|
-
const maxTextWidth = measureTextWidth(maxLengthText, styles.textSizePx)
|
17
|
+
const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
|
18
18
|
const lineEndX = maxTextWidth + styles.textSizePx * 2
|
19
19
|
const contentSvg = eventData.groups
|
20
20
|
.map((group, i) => {
|
@@ -31,38 +31,38 @@ ${u}`}};ju.renderFn.toString=()=>`(eventData, { styles }) => {
|
|
31
31
|
.join('')
|
32
32
|
return \`\${titleSvg}
|
33
33
|
\${contentSvg}\`
|
34
|
-
}`;var
|
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:
|
35
35
|
`+n.map(function(r,i){return i+1+") "+r.toString()}).join(`
|
36
|
-
`):"",this.name="UnsubscriptionError",this.errors=n}});function Ku(t,e){if(t){var n=t.indexOf(e);0<=n&&t.splice(n,1)}}var jo=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 Zu?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{Mp(d)}catch(g){o=o??[],g instanceof Zu?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 Zu(o)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)Mp(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)&&Ku(n,e)},t.prototype.remove=function(e){var n=this._finalizers;n&&Ku(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),Tp=jo.EMPTY;function Pp(t){return t instanceof jo||t&&"closed"in t&&yt(t.remove)&&yt(t.add)&&yt(t.unsubscribe)}function Mp(t){yt(t)?t():t.unsubscribe()}var Dp={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},Cp={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=Cp.delegate;return((e==null?void 0:e.clearTimeout)||clearTimeout)(t)},delegate:void 0};function Lp(t){Cp.setTimeout(function(){throw t})}function Qu(){}function Vo(t){t()}var Ju=function(t){kn(e,t);function e(n){var r=t.call(this)||this;return r.isStopped=!1,n?(r.destination=n,Pp(n)&&n.add(r)):r.destination=n_,r}return e.create=function(n,r,i){return new $i(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}(jo),J2=Function.prototype.bind;function tl(t,e){return J2.call(t,e)}var t_=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){qo(r)}},t.prototype.error=function(e){var n=this.partialObserver;if(n.error)try{n.error(e)}catch(r){qo(r)}else qo(e)},t.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(n){qo(n)}},t}(),$i=function(t){kn(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&&Dp.useDeprecatedNextContext?(s=Object.create(n),s.unsubscribe=function(){return o.unsubscribe()},a={next:n.next&&tl(n.next,s),error:n.error&&tl(n.error,s),complete:n.complete&&tl(n.complete,s)}):a=n}return o.destination=new t_(a),o}return e}(Ju);function qo(t){Lp(t)}function e_(t){throw t}var n_={closed:!0,next:Qu,error:e_,complete:Qu},el=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function xr(t){return t}function r_(t){return t.length===0?xr:t.length===1?t[0]:function(n){return t.reduce(function(r,i){return i(r)},n)}}var gt=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=o_(e)?e:new $i(e,n,r);return Vo(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=kp(n),new n(function(i,o){var a=new $i({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[el]=function(){return this},t.prototype.pipe=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return r_(e)(this)},t.prototype.toPromise=function(e){var n=this;return e=kp(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 kp(t){var e;return(e=t??Dp.Promise)!==null&&e!==void 0?e:Promise}function i_(t){return t&&yt(t.next)&&yt(t.error)&&yt(t.complete)}function o_(t){return t&&t instanceof Ju||i_(t)&&Pp(t)}function a_(t){return yt(t==null?void 0:t.lift)}function pe(t){return function(e){if(a_(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 se(t,e,n,r,i){return new s_(t,e,n,r,i)}var s_=function(t){kn(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}(Ju),u_=qu(function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}}),et=function(t){kn(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 Rp(this,this);return r.operator=n,r},e.prototype._throwIfClosed=function(){if(this.closed)throw new u_},e.prototype.next=function(n){var r=this;Vo(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;Vo(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;Vo(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?Tp:(this.currentObservers=null,s.push(n),new jo(function(){r.currentObservers=null,Ku(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 gt;return n.source=this,n},e.create=function(n,r){return new Rp(n,r)},e}(gt),Rp=function(t){kn(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:Tp},e}(et),l_=function(t){kn(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}(et),Ep={now:function(){return(Ep.delegate||Date).now()},delegate:void 0},c_=function(t){kn(e,t);function e(n,r,i){n===void 0&&(n=1/0),r===void 0&&(r=1/0),i===void 0&&(i=Ep);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}(et),Ip=new gt(function(t){return t.complete()});function f_(t){return t&&yt(t.schedule)}function nl(t){return t[t.length-1]}function h_(t){return yt(nl(t))?t.pop():void 0}function rl(t){return f_(nl(t))?t.pop():void 0}function p_(t,e){return typeof nl(t)=="number"?t.pop():e}var il=function(t){return t&&typeof t.length=="number"&&typeof t!="function"};function Np(t){return yt(t==null?void 0:t.then)}function Bp(t){return yt(t[el])}function Fp(t){return Symbol.asyncIterator&&yt(t==null?void 0:t[Symbol.asyncIterator])}function Op(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 d_(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var zp=d_();function Gp(t){return yt(t==null?void 0:t[zp])}function Yp(t){return K2(this,arguments,function(){var n,r,i,o;return Ap(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 Up(t){return yt(t==null?void 0:t.getReader)}function de(t){if(t instanceof gt)return t;if(t!=null){if(Bp(t))return g_(t);if(il(t))return m_(t);if(Np(t))return y_(t);if(Fp(t))return Wp(t);if(Gp(t))return b_(t);if(Up(t))return x_(t)}throw Op(t)}function g_(t){return new gt(function(e){var n=t[el]();if(yt(n.subscribe))return n.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function m_(t){return new gt(function(e){for(var n=0;n<t.length&&!e.closed;n++)e.next(t[n]);e.complete()})}function y_(t){return new gt(function(e){t.then(function(n){e.closed||(e.next(n),e.complete())},function(n){return e.error(n)}).then(null,Lp)})}function b_(t){return new gt(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 Wp(t){return new gt(function(e){v_(t,e).catch(function(n){return e.error(n)})})}function x_(t){return Wp(Yp(t))}function v_(t,e){var n,r,i,o;return Z2(this,void 0,void 0,function(){var a,s;return Ap(this,function(u){switch(u.label){case 0:u.trys.push([0,5,6,11]),n=Q2(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 Hp(t,e){return e===void 0&&(e=0),pe(function(n,r){n.subscribe(se(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 Xp(t,e){return e===void 0&&(e=0),pe(function(n,r){r.add(t.schedule(function(){return n.subscribe(r)},e))})}function __(t,e){return de(t).pipe(Xp(e),Hp(e))}function $_(t,e){return de(t).pipe(Xp(e),Hp(e))}function w_(t,e){return new gt(function(n){var r=0;return e.schedule(function(){r===t.length?n.complete():(n.next(t[r++]),n.closed||this.schedule())})})}function S_(t,e){return new gt(function(n){var r;return hn(n,e,function(){r=t[zp](),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 yt(r==null?void 0:r.return)&&r.return()}})}function jp(t,e){if(!t)throw new Error("Iterable cannot be null");return new gt(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 A_(t,e){return jp(Yp(t),e)}function T_(t,e){if(t!=null){if(Bp(t))return __(t,e);if(il(t))return w_(t,e);if(Np(t))return $_(t,e);if(Fp(t))return jp(t,e);if(Gp(t))return S_(t,e);if(Up(t))return A_(t,e)}throw Op(t)}function Zo(t,e){return e?T_(t,e):de(t)}function Ko(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=rl(t);return Zo(t,n)}var Vp=qu(function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}});function B(t,e){return pe(function(n,r){var i=0;n.subscribe(se(r,function(o){r.next(t.call(e,o,i++))}))})}var P_=Array.isArray;function M_(t,e){return P_(e)?t.apply(void 0,_i([],yr(e))):t(e)}function qp(t){return B(function(e){return M_(t,e)})}var D_=Array.isArray,C_=Object.getPrototypeOf,L_=Object.prototype,k_=Object.keys;function R_(t){if(t.length===1){var e=t[0];if(D_(e))return{args:e,keys:null};if(E_(e)){var n=k_(e);return{args:n.map(function(r){return e[r]}),keys:n}}}return{args:t,keys:null}}function E_(t){return t&&typeof t=="object"&&C_(t)===L_}function I_(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=rl(t),r=h_(t),i=R_(t),o=i.args,a=i.keys;if(o.length===0)return Zo([],n);var s=new gt(N_(o,n,a?function(u){return I_(a,u)}:xr));return r?s.pipe(qp(r)):s}function N_(t,e,n){return n===void 0&&(n=xr),function(r){Zp(e,function(){for(var i=t.length,o=new Array(i),a=i,s=i,u=function(c){Zp(e,function(){var f=Zo(t[c],e),h=!1;f.subscribe(se(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 Zp(t,e,n){t?hn(n,t,e):e()}function B_(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;de(n(g,c++)).subscribe(se(e,function(b){e.next(b)},function(){m=!0},void 0,function(){if(m)try{l--;for(var b=function(){var y=u.shift();a||d(y)};u.length&&l<r;)b();h()}catch(y){e.error(y)}}))};return t.subscribe(se(e,p,function(){f=!0,h()})),function(){}}function ol(t,e,n){return n===void 0&&(n=1/0),yt(e)?ol(function(r,i){return B(function(o,a){return e(r,o,i,a)})(de(t(r,i)))},n):(typeof e=="number"&&(n=e),pe(function(r,i){return B_(r,i,t,n)}))}function F_(t){return t===void 0&&(t=1/0),ol(xr,t)}function O_(t){return new gt(function(e){de(t()).subscribe(e)})}var z_=["addListener","removeListener"],G_=["addEventListener","removeEventListener"],Y_=["on","off"];function al(t,e,n,r){if(yt(n)&&(r=n,n=void 0),r)return al(t,e,n).pipe(qp(r));var i=yr(H_(t)?G_.map(function(s){return function(u){return t[s](e,u,n)}}):U_(t)?z_.map(Kp(t,e)):W_(t)?Y_.map(Kp(t,e)):[],2),o=i[0],a=i[1];if(!o&&il(t))return ol(function(s){return al(s,e,n)})(de(t));if(!o)throw new TypeError("Invalid event target");return new gt(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 Kp(t,e){return function(n){return function(r){return t[n](e,r)}}}function U_(t){return yt(t.addListener)&&yt(t.removeListener)}function W_(t){return yt(t.on)&&yt(t.off)}function H_(t){return yt(t.addEventListener)&&yt(t.removeEventListener)}function Qp(t,e,n){return O_(function(){return t()?e:n})}function sl(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=rl(t),r=p_(t,1/0),i=t;return i.length?i.length===1?de(i[0]):F_(r)(Zo(i,n)):Ip}function wi(t,e){return pe(function(n,r){var i=0;n.subscribe(se(r,function(o){return t.call(e,o,i++)&&r.next(o)}))})}function X_(t){return pe(function(e,n){var r=!1;e.subscribe(se(n,function(i){r=!0,n.next(i)},function(){r||n.next(t),n.complete()}))})}function j_(t){return t<=0?function(){return Ip}:pe(function(e,n){var r=0;e.subscribe(se(n,function(i){++r<=t&&(n.next(i),t<=r&&n.complete())}))})}function tt(t,e){return e===void 0&&(e=xr),t=t??V_,pe(function(n,r){var i,o=!0;n.subscribe(se(r,function(a){var s=e(a);(o||!t(i,s))&&(o=!1,i=s,r.next(a))}))})}function V_(t,e){return t===e}function q_(t){return t===void 0&&(t=Z_),pe(function(e,n){var r=!1;e.subscribe(se(n,function(i){r=!0,n.next(i)},function(){return r?n.complete():n.error(t())}))})}function Z_(){return new Vp}function K_(t,e){var n=arguments.length>=2;return function(r){return r.pipe(xr,j_(1),n?X_(e):q_(function(){return new Vp}))}}function Q_(t){t===void 0&&(t={});var e=t.connector,n=e===void 0?function(){return new et}: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},b=function(){m(),c=h=void 0,d=g=!1},y=function(){var _=c;b(),_==null||_.unsubscribe()};return pe(function(_,x){p++,!g&&!d&&m();var w=h=h??n();x.add(function(){p--,p===0&&!g&&!d&&(f=ul(y,u))}),w.subscribe(x),!c&&p>0&&(c=new $i({next:function($){return w.next($)},error:function($){g=!0,m(),f=ul(b,i,$),w.error($)},complete:function(){d=!0,m(),f=ul(b,a),w.complete()}}),de(_).subscribe(c))})(l)}}function ul(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 $i({next:function(){i.unsubscribe(),t()}});return de(e.apply(void 0,_i([],yr(n)))).subscribe(i)}}function vt(t,e,n){var r,i=!1;return r=t,Q_({connector:function(){return new c_(r,e,n)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:i})}function W(t,e){return pe(function(n,r){var i=null,o=0,a=!1,s=function(){return a&&!i&&r.complete()};n.subscribe(se(r,function(u){i==null||i.unsubscribe();var l=0,c=o++;de(t(u,c)).subscribe(i=se(r,function(f){return r.next(e?e(u,f,c,l++):f)},function(){i=null,s()}))},function(){a=!0,s()}))})}function N(t){return pe(function(e,n){de(t).subscribe(se(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 J_(t){return Object.prototype.toString.call(t)==="[object Function]"}function ll(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 t$(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=>J_(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 e$(t,e){const n=t$(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 Qo(t,e){return t==null||e==null?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function n$(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=Qo,n=(s,u)=>Qo(t(s),u),r=(s,u)=>t(s)-u):(e=t===Qo||t===n$?t:r$,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 r$(){return 0}function i$(t){return t===null?NaN:+t}const o$=Jp(Qo),td=o$.right;Jp(i$).center;const a$=Math.sqrt(50),s$=Math.sqrt(10),u$=Math.sqrt(2);function Jo(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>=a$?10:o>=s$?5:o>=u$?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?Jo(t,e,n*2):[s,u,l]}function l$(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?Jo(e,t,n):Jo(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 cl(t,e,n){return e=+e,t=+t,n=+n,Jo(t,e,n)[2]}function c$(t,e,n){e=+e,t=+t,n=+n;const r=e<t,i=r?cl(e,t,n):cl(t,e,n);return(r?-1:1)*(i<0?1/-i:i)}var f$={value:()=>{}};function ed(){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 ta(n)}function ta(t){this._=t}function h$(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}})}ta.prototype=ed.prototype={constructor:ta,on:function(t,e){var n=this._,r=h$(t+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(t=r[o]).type)&&(i=p$(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]=nd(n[i],t.name,e);else if(e==null)for(i in n)n[i]=nd(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 ta(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 p$(t,e){for(var n=0,r=t.length,i;n<r;++n)if((i=t[n]).name===e)return i.value}function nd(t,e,n){for(var r=0,i=t.length;r<i;++r)if(t[r].name===e){t[r]=f$,t=t.slice(0,r).concat(t.slice(r+1));break}return n!=null&&t.push({name:e,value:n}),t}var fl="http://www.w3.org/1999/xhtml";const rd={svg:"http://www.w3.org/2000/svg",xhtml:fl,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function ea(t){var e=t+="",n=e.indexOf(":");return n>=0&&(e=t.slice(0,n))!=="xmlns"&&(t=t.slice(n+1)),rd.hasOwnProperty(e)?{space:rd[e],local:t}:t}function d$(t){return function(){var e=this.ownerDocument,n=this.namespaceURI;return n===fl&&e.documentElement.namespaceURI===fl?e.createElement(t):e.createElementNS(n,t)}}function g$(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}function id(t){var e=ea(t);return(e.local?g$:d$)(e)}function m$(){}function hl(t){return t==null?m$:function(){return this.querySelector(t)}}function y$(t){typeof t!="function"&&(t=hl(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 $e(r,this._parents)}function b$(t){return t==null?[]:Array.isArray(t)?t:Array.from(t)}function x$(){return[]}function od(t){return t==null?x$:function(){return this.querySelectorAll(t)}}function v$(t){return function(){return b$(t.apply(this,arguments))}}function _$(t){typeof t=="function"?t=v$(t):t=od(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 $e(r,i)}function ad(t){return function(){return this.matches(t)}}function sd(t){return function(e){return e.matches(t)}}var $$=Array.prototype.find;function w$(t){return function(){return $$.call(this.children,t)}}function S$(){return this.firstElementChild}function A$(t){return this.select(t==null?S$:w$(typeof t=="function"?t:sd(t)))}var T$=Array.prototype.filter;function P$(){return Array.from(this.children)}function M$(t){return function(){return T$.call(this.children,t)}}function D$(t){return this.selectAll(t==null?P$:M$(typeof t=="function"?t:sd(t)))}function C$(t){typeof t!="function"&&(t=ad(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 $e(r,this._parents)}function ud(t){return new Array(t.length)}function L$(){return new $e(this._enter||this._groups.map(ud),this._parents)}function na(t,e){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=e}na.prototype={constructor:na,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 k$(t){return function(){return t}}function R$(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 na(t,o[a]);for(;a<u;++a)(s=e[a])&&(i[a]=s)}function E$(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 na(t,o[s]);for(s=0;s<c;++s)(u=e[s])&&l.get(h[s])===u&&(i[s]=u)}function I$(t){return t.__data__}function N$(t,e){if(!arguments.length)return Array.from(this,I$);var n=e?E$:R$,r=this._parents,i=this._groups;typeof t!="function"&&(t=k$(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=B$(t.call(c,c&&c.__data__,l,r)),d=p.length,g=s[l]=new Array(d),m=a[l]=new Array(d),b=u[l]=new Array(h);n(c,f,g,m,b,p,e);for(var y=0,_=0,x,w;y<d;++y)if(x=g[y]){for(y>=_&&(_=y+1);!(w=m[_])&&++_<d;);x._next=w||null}}return a=new $e(a,r),a._enter=s,a._exit=u,a}function B$(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function F$(){return new $e(this._exit||this._groups.map(ud),this._parents)}function O$(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 z$(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 $e(s,this._parents)}function G$(){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 Y$(t){t||(t=U$);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 $e(i,this._parents).order()}function U$(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function W$(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this}function H$(){return Array.from(this)}function X$(){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 j$(){let t=0;for(const e of this)++t;return t}function V$(){return!this.node()}function q$(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 Z$(t){return function(){this.removeAttribute(t)}}function K$(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Q$(t,e){return function(){this.setAttribute(t,e)}}function J$(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function tw(t,e){return function(){var n=e.apply(this,arguments);n==null?this.removeAttribute(t):this.setAttribute(t,n)}}function ew(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 nw(t,e){var n=ea(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?K$:Z$:typeof e=="function"?n.local?ew:tw:n.local?J$:Q$)(n,e))}function ld(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function rw(t){return function(){this.style.removeProperty(t)}}function iw(t,e,n){return function(){this.style.setProperty(t,e,n)}}function ow(t,e,n){return function(){var r=e.apply(this,arguments);r==null?this.style.removeProperty(t):this.style.setProperty(t,r,n)}}function aw(t,e,n){return arguments.length>1?this.each((e==null?rw:typeof e=="function"?ow:iw)(t,e,n??"")):$r(this.node(),t)}function $r(t,e){return t.style.getPropertyValue(e)||ld(t).getComputedStyle(t,null).getPropertyValue(e)}function sw(t){return function(){delete this[t]}}function uw(t,e){return function(){this[t]=e}}function lw(t,e){return function(){var n=e.apply(this,arguments);n==null?delete this[t]:this[t]=n}}function cw(t,e){return arguments.length>1?this.each((e==null?sw:typeof e=="function"?lw:uw)(t,e)):this.node()[t]}function cd(t){return t.trim().split(/^|\s+/)}function pl(t){return t.classList||new fd(t)}function fd(t){this._node=t,this._names=cd(t.getAttribute("class")||"")}fd.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 hd(t,e){for(var n=pl(t),r=-1,i=e.length;++r<i;)n.add(e[r])}function pd(t,e){for(var n=pl(t),r=-1,i=e.length;++r<i;)n.remove(e[r])}function fw(t){return function(){hd(this,t)}}function hw(t){return function(){pd(this,t)}}function pw(t,e){return function(){(e.apply(this,arguments)?hd:pd)(this,t)}}function dw(t,e){var n=cd(t+"");if(arguments.length<2){for(var r=pl(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof e=="function"?pw:e?fw:hw)(n,e))}function gw(){this.textContent=""}function mw(t){return function(){this.textContent=t}}function yw(t){return function(){var e=t.apply(this,arguments);this.textContent=e??""}}function bw(t){return arguments.length?this.each(t==null?gw:(typeof t=="function"?yw:mw)(t)):this.node().textContent}function xw(){this.innerHTML=""}function vw(t){return function(){this.innerHTML=t}}function _w(t){return function(){var e=t.apply(this,arguments);this.innerHTML=e??""}}function $w(t){return arguments.length?this.each(t==null?xw:(typeof t=="function"?_w:vw)(t)):this.node().innerHTML}function ww(){this.nextSibling&&this.parentNode.appendChild(this)}function Sw(){return this.each(ww)}function Aw(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function Tw(){return this.each(Aw)}function Pw(t){var e=typeof t=="function"?t:id(t);return this.select(function(){return this.appendChild(e.apply(this,arguments))})}function Mw(){return null}function Dw(t,e){var n=typeof t=="function"?t:id(t),r=e==null?Mw:typeof e=="function"?e:hl(e);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function Cw(){var t=this.parentNode;t&&t.removeChild(this)}function Lw(){return this.each(Cw)}function kw(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function Rw(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function Ew(t){return this.select(t?Rw:kw)}function Iw(t){return arguments.length?this.property("__data__",t):this.node().__data__}function Nw(t){return function(e){t.call(this,e,this.__data__)}}function Bw(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 Fw(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 Ow(t,e,n){return function(){var r=this.__on,i,o=Nw(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 zw(t,e,n){var r=Bw(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?Ow:Fw,i=0;i<o;++i)this.each(s(r[i],e,n));return this}function dd(t,e,n){var r=ld(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 Gw(t,e){return function(){return dd(this,t,e)}}function Yw(t,e){return function(){return dd(this,t,e.apply(this,arguments))}}function Uw(t,e){return this.each((typeof e=="function"?Yw:Gw)(t,e))}function*Ww(){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 Hw=[null];function $e(t,e){this._groups=t,this._parents=e}function Si(){return new $e([[document.documentElement]],Hw)}function Xw(){return this}$e.prototype=Si.prototype={constructor:$e,select:y$,selectAll:_$,selectChild:A$,selectChildren:D$,filter:C$,data:N$,enter:L$,exit:F$,join:O$,merge:z$,selection:Xw,order:G$,sort:Y$,call:W$,nodes:H$,node:X$,size:j$,empty:V$,each:q$,attr:nw,style:aw,property:cw,classed:dw,text:bw,html:$w,raise:Sw,lower:Tw,append:Pw,insert:Dw,remove:Lw,clone:Ew,datum:Iw,on:zw,dispatch:Uw,[Symbol.iterator]:Ww};function dl(t,e,n){t.prototype=e.prototype=n,n.constructor=t}function gd(t,e){var n=Object.create(t.prototype);for(var r in e)n[r]=e[r];return n}function Ai(){}var Ti=.7,ra=1/Ti,wr="\\s*([+-]?\\d+)\\s*",Pi="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ee="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",jw=/^#([0-9a-f]{3,8})$/,Vw=new RegExp(`^rgb\\(${wr},${wr},${wr}\\)$`),qw=new RegExp(`^rgb\\(${Ee},${Ee},${Ee}\\)$`),Zw=new RegExp(`^rgba\\(${wr},${wr},${wr},${Pi}\\)$`),Kw=new RegExp(`^rgba\\(${Ee},${Ee},${Ee},${Pi}\\)$`),Qw=new RegExp(`^hsl\\(${Pi},${Ee},${Ee}\\)$`),Jw=new RegExp(`^hsla\\(${Pi},${Ee},${Ee},${Pi}\\)$`),md={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};dl(Ai,Rn,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:yd,formatHex:yd,formatHex8:tS,formatHsl:eS,formatRgb:bd,toString:bd});function yd(){return this.rgb().formatHex()}function tS(){return this.rgb().formatHex8()}function eS(){return wd(this).formatHsl()}function bd(){return this.rgb().formatRgb()}function Rn(t){var e,n;return t=(t+"").trim().toLowerCase(),(e=jw.exec(t))?(n=e[1].length,e=parseInt(e[1],16),n===6?xd(e):n===3?new ne(e>>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):n===8?ia(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):n===4?ia(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=Vw.exec(t))?new ne(e[1],e[2],e[3],1):(e=qw.exec(t))?new ne(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=Zw.exec(t))?ia(e[1],e[2],e[3],e[4]):(e=Kw.exec(t))?ia(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=Qw.exec(t))?$d(e[1],e[2]/100,e[3]/100,1):(e=Jw.exec(t))?$d(e[1],e[2]/100,e[3]/100,e[4]):md.hasOwnProperty(t)?xd(md[t]):t==="transparent"?new ne(NaN,NaN,NaN,0):null}function xd(t){return new ne(t>>16&255,t>>8&255,t&255,1)}function ia(t,e,n,r){return r<=0&&(t=e=n=NaN),new ne(t,e,n,r)}function nS(t){return t instanceof Ai||(t=Rn(t)),t?(t=t.rgb(),new ne(t.r,t.g,t.b,t.opacity)):new ne}function gl(t,e,n,r){return arguments.length===1?nS(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}dl(ne,gl,gd(Ai,{brighter(t){return t=t==null?ra:Math.pow(ra,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(En(this.r),En(this.g),En(this.b),oa(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:vd,formatHex:vd,formatHex8:rS,formatRgb:_d,toString:_d}));function vd(){return`#${In(this.r)}${In(this.g)}${In(this.b)}`}function rS(){return`#${In(this.r)}${In(this.g)}${In(this.b)}${In((isNaN(this.opacity)?1:this.opacity)*255)}`}function _d(){const t=oa(this.opacity);return`${t===1?"rgb(":"rgba("}${En(this.r)}, ${En(this.g)}, ${En(this.b)}${t===1?")":`, ${t})`}`}function oa(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function En(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function In(t){return t=En(t),(t<16?"0":"")+t.toString(16)}function $d(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new we(t,e,n,r)}function wd(t){if(t instanceof we)return new we(t.h,t.s,t.l,t.opacity);if(t instanceof Ai||(t=Rn(t)),!t)return new we;if(t instanceof we)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 we(a,s,u,t.opacity)}function iS(t,e,n,r){return arguments.length===1?wd(t):new we(t,e,n,r??1)}function we(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}dl(we,iS,gd(Ai,{brighter(t){return t=t==null?ra:Math.pow(ra,t),new we(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?Ti:Math.pow(Ti,t),new we(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(ml(t>=240?t-240:t+120,i,r),ml(t,i,r),ml(t<120?t+240:t-120,i,r),this.opacity)},clamp(){return new we(Sd(this.h),aa(this.s),aa(this.l),oa(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=oa(this.opacity);return`${t===1?"hsl(":"hsla("}${Sd(this.h)}, ${aa(this.s)*100}%, ${aa(this.l)*100}%${t===1?")":`, ${t})`}`}}));function Sd(t){return t=(t||0)%360,t<0?t+360:t}function aa(t){return Math.max(0,Math.min(1,t||0))}function ml(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 yl=t=>()=>t;function oS(t,e){return function(n){return t+n*e}}function aS(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 sS(t){return(t=+t)==1?Ad:function(e,n){return n-e?aS(e,n,t):yl(isNaN(e)?n:e)}}function Ad(t,e){var n=e-t;return n?oS(t,n):yl(isNaN(t)?e:t)}const sa=function t(e){var n=sS(e);function r(i,o){var a=n((i=gl(i)).r,(o=gl(o)).r),s=n(i.g,o.g),u=n(i.b,o.b),l=Ad(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 uS(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 lS(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function cS(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]=vl(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 fS(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 hS(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]=vl(t[i],e[i]):r[i]=e[i];return function(o){for(i in n)r[i]=n[i](o);return r}}var bl=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,xl=new RegExp(bl.source,"g");function pS(t){return function(){return t}}function dS(t){return function(e){return t(e)+""}}function Td(t,e){var n=bl.lastIndex=xl.lastIndex=0,r,i,o,a=-1,s=[],u=[];for(t=t+"",e=e+"";(r=bl.exec(t))&&(i=xl.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=xl.lastIndex;return n<e.length&&(o=e.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?u[0]?dS(u[0].x):pS(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 vl(t,e){var n=typeof e,r;return e==null||n==="boolean"?yl(e):(n==="number"?Se:n==="string"?(r=Rn(e))?(e=r,sa):Td:e instanceof Rn?sa:e instanceof Date?fS:lS(e)?uS:Array.isArray(e)?cS:typeof e.valueOf!="function"&&typeof e.toString!="function"||isNaN(e)?hS:Se)(t,e)}function gS(t,e){return t=+t,e=+e,function(n){return Math.round(t*(1-n)+e*n)}}var Pd=180/Math.PI,Md={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function Dd(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)*Pd,skewX:Math.atan(u)*Pd,scaleX:a,scaleY:s}}var ua;function mS(t){const e=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(t+"");return e.isIdentity?Md:Dd(e.a,e.b,e.c,e.d,e.e,e.f)}function yS(t){return t==null||(ua||(ua=document.createElementNS("http://www.w3.org/2000/svg","g")),ua.setAttribute("transform",t),!(t=ua.transform.baseVal.consolidate()))?Md:(t=t.matrix,Dd(t.a,t.b,t.c,t.d,t.e,t.f))}function Cd(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 bS=Cd(mS,"px, ","px)","deg)"),xS=Cd(yS,", ",")",")"),Sr=0,Mi=0,Di=0,Ld=1e3,la,Ci,ca=0,Nn=0,fa=0,Li=typeof performance=="object"&&performance.now?performance:Date,kd=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function _l(){return Nn||(kd(vS),Nn=Li.now()+fa)}function vS(){Nn=0}function ha(){this._call=this._time=this._next=null}ha.prototype=Rd.prototype={constructor:ha,restart:function(t,e,n){if(typeof t!="function")throw new TypeError("callback is not a function");n=(n==null?_l():+n)+(e==null?0:+e),!this._next&&Ci!==this&&(Ci?Ci._next=this:la=this,Ci=this),this._call=t,this._time=n,$l()},stop:function(){this._call&&(this._call=null,this._time=1/0,$l())}};function Rd(t,e,n){var r=new ha;return r.restart(t,e,n),r}function _S(){_l(),++Sr;for(var t=la,e;t;)(e=Nn-t._time)>=0&&t._call.call(void 0,e),t=t._next;--Sr}function Ed(){Nn=(ca=Li.now())+fa,Sr=Mi=0;try{_S()}finally{Sr=0,wS(),Nn=0}}function $S(){var t=Li.now(),e=t-ca;e>Ld&&(fa-=e,ca=t)}function wS(){for(var t,e=la,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:la=n);Ci=t,$l(r)}function $l(t){if(!Sr){Mi&&(Mi=clearTimeout(Mi));var e=t-Nn;e>24?(t<1/0&&(Mi=setTimeout(Ed,t-Li.now()-fa)),Di&&(Di=clearInterval(Di))):(Di||(ca=Li.now(),Di=setInterval($S,Ld)),Sr=1,kd(Ed))}}function Id(t,e,n){var r=new ha;return e=e==null?0:+e,r.restart(i=>{r.stop(),t(i+e)},e,n),r}var SS=ed("start","end","cancel","interrupt"),AS=[],Nd=0,Bd=1,wl=2,pa=3,Fd=4,Sl=5,da=6;function ga(t,e,n,r,i,o){var a=t.__transition;if(!a)t.__transition={};else if(n in a)return;TS(t,n,{name:e,index:r,group:i,on:SS,tween:AS,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:Nd})}function Al(t,e){var n=Ae(t,e);if(n.state>Nd)throw new Error("too late; already scheduled");return n}function Ie(t,e){var n=Ae(t,e);if(n.state>pa)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 TS(t,e,n){var r=t.__transition,i;r[e]=n,n.timer=Rd(o,0,n.time);function o(l){n.state=Bd,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!==Bd)return u();for(c in r)if(p=r[c],p.name===n.name){if(p.state===pa)return Id(a);p.state===Fd?(p.state=da,p.timer.stop(),p.on.call("interrupt",t,t.__data__,p.index,p.group),delete r[c]):+c<e&&(p.state=da,p.timer.stop(),p.on.call("cancel",t,t.__data__,p.index,p.group),delete r[c])}if(Id(function(){n.state===pa&&(n.state=Fd,n.timer.restart(s,n.delay,n.time),s(l))}),n.state=wl,n.on.call("start",t,t.__data__,n.index,n.group),n.state===wl){for(n.state=pa,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=Sl,1),f=-1,h=i.length;++f<h;)i[f].call(t,c);n.state===Sl&&(n.on.call("end",t,t.__data__,n.index,n.group),u())}function u(){n.state=da,n.timer.stop(),delete r[e];for(var l in r)return;delete t.__transition}}function PS(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>wl&&r.state<Sl,r.state=da,r.timer.stop(),r.on.call(i?"interrupt":"cancel",t,t.__data__,r.index,r.group),delete n[a]}o&&delete t.__transition}}function MS(t){return this.each(function(){PS(this,t)})}function DS(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 CS(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 LS(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?DS:CS)(n,t,e))}function Tl(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 Od(t,e){var n;return(typeof e=="number"?Se:e instanceof Rn?sa:(n=Rn(e))?(e=n,sa):Td)(t,e)}function kS(t){return function(){this.removeAttribute(t)}}function RS(t){return function(){this.removeAttributeNS(t.space,t.local)}}function ES(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 IS(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 NS(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 BS(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 FS(t,e){var n=ea(t),r=n==="transform"?xS:Od;return this.attrTween(t,typeof e=="function"?(n.local?BS:NS)(n,r,Tl(this,"attr."+t,e)):e==null?(n.local?RS:kS)(n):(n.local?IS:ES)(n,r,e))}function OS(t,e){return function(n){this.setAttribute(t,e.call(this,n))}}function zS(t,e){return function(n){this.setAttributeNS(t.space,t.local,e.call(this,n))}}function GS(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&zS(t,o)),n}return i._value=e,i}function YS(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&OS(t,o)),n}return i._value=e,i}function US(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=ea(t);return this.tween(n,(r.local?GS:YS)(r,e))}function WS(t,e){return function(){Al(this,t).delay=+e.apply(this,arguments)}}function HS(t,e){return e=+e,function(){Al(this,t).delay=e}}function XS(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?WS:HS)(e,t)):Ae(this.node(),e).delay}function jS(t,e){return function(){Ie(this,t).duration=+e.apply(this,arguments)}}function VS(t,e){return e=+e,function(){Ie(this,t).duration=e}}function qS(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?jS:VS)(e,t)):Ae(this.node(),e).duration}function ZS(t,e){if(typeof e!="function")throw new Error;return function(){Ie(this,t).ease=e}}function KS(t){var e=this._id;return arguments.length?this.each(ZS(e,t)):Ae(this.node(),e).ease}function QS(t,e){return function(){var n=e.apply(this,arguments);if(typeof n!="function")throw new Error;Ie(this,t).ease=n}}function JS(t){if(typeof t!="function")throw new Error;return this.each(QS(this._id,t))}function tA(t){typeof t!="function"&&(t=ad(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 eA(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 nA(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 rA(t,e,n){var r,i,o=nA(e)?Al:Ie;return function(){var a=o(this,t),s=a.on;s!==r&&(i=(r=s).copy()).on(e,n),a.on=i}}function iA(t,e){var n=this._id;return arguments.length<2?Ae(this.node(),n).on.on(t):this.each(rA(n,t,e))}function oA(t){return function(){var e=this.parentNode;for(var n in this.__transition)if(+n!==t)return;e&&e.removeChild(this)}}function aA(){return this.on("end.remove",oA(this._id))}function sA(t){var e=this._name,n=this._id;typeof t!="function"&&(t=hl(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,ga(l[h],e,n,h,l,Ae(c,n)));return new Ve(o,this._parents,e,n)}function uA(t){var e=this._name,n=this._id;typeof t!="function"&&(t=od(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])&&ga(p,e,n,g,h,d);o.push(h),a.push(c)}return new Ve(o,a,e,n)}var lA=Si.prototype.constructor;function cA(){return new lA(this._groups,this._parents)}function fA(t,e){var n,r,i;return function(){var o=$r(this,t),a=(this.style.removeProperty(t),$r(this,t));return o===a?null:o===n&&a===r?i:i=e(n=o,r=a)}}function zd(t){return function(){this.style.removeProperty(t)}}function hA(t,e,n){var r,i=n+"",o;return function(){var a=$r(this,t);return a===i?null:a===r?o:o=e(r=a,n)}}function pA(t,e,n){var r,i,o;return function(){var a=$r(this,t),s=n(this),u=s+"";return s==null&&(u=s=(this.style.removeProperty(t),$r(this,t))),a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s))}}function dA(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=zd(e)):void 0;(l!==n||i!==c)&&(r=(n=l).copy()).on(a,i=c),u.on=r}}function gA(t,e,n){var r=(t+="")=="transform"?bS:Od;return e==null?this.styleTween(t,fA(t,r)).on("end.style."+t,zd(t)):typeof e=="function"?this.styleTween(t,pA(t,r,Tl(this,"style."+t,e))).each(dA(this._id,t)):this.styleTween(t,hA(t,r,e),n).on("end.style."+t,null)}function mA(t,e,n){return function(r){this.style.setProperty(t,e.call(this,r),n)}}function yA(t,e,n){var r,i;function o(){var a=e.apply(this,arguments);return a!==i&&(r=(i=a)&&mA(t,a,n)),r}return o._value=e,o}function bA(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,yA(t,e,n??""))}function xA(t){return function(){this.textContent=t}}function vA(t){return function(){var e=t(this);this.textContent=e??""}}function _A(t){return this.tween("text",typeof t=="function"?vA(Tl(this,"text",t)):xA(t==null?"":t+""))}function $A(t){return function(e){this.textContent=t.call(this,e)}}function wA(t){var e,n;function r(){var i=t.apply(this,arguments);return i!==n&&(e=(n=i)&&$A(i)),e}return r._value=t,r}function SA(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,wA(t))}function AA(){for(var t=this._name,e=this._id,n=Gd(),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);ga(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 TA(){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 PA=0;function Ve(t,e,n,r){this._groups=t,this._parents=e,this._name=n,this._id=r}function Gd(){return++PA}var qe=Si.prototype;Ve.prototype={constructor:Ve,select:sA,selectAll:uA,selectChild:qe.selectChild,selectChildren:qe.selectChildren,filter:tA,merge:eA,selection:cA,transition:AA,call:qe.call,nodes:qe.nodes,node:qe.node,size:qe.size,empty:qe.empty,each:qe.each,on:iA,attr:FS,attrTween:US,style:gA,styleTween:bA,text:_A,textTween:SA,remove:aA,tween:LS,delay:XS,duration:qS,ease:KS,easeVarying:JS,end:TA,[Symbol.iterator]:qe[Symbol.iterator]};function MA(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}var DA={time:null,delay:0,duration:250,ease:MA};function CA(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 LA(t){var e,n;t instanceof Ve?(e=t._id,t=t._name):(e=Gd(),(n=DA).time=_l(),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])&&ga(u,t,e,l,a,n||CA(u,e));return new Ve(r,this._parents,t,e)}Si.prototype.interrupt=MS,Si.prototype.transition=LA;function kA(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)}function ma(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=ma(Math.abs(t)),t?t[1]:NaN}function RA(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 EA(t){return function(e){return e.replace(/[0-9]/g,function(n){return t[+n]})}}var IA=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function ya(t){if(!(e=IA.exec(t)))throw new Error("invalid format: "+t);var e;return new Pl({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]})}ya.prototype=Pl.prototype;function Pl(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+""}Pl.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 NA(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 Yd;function BA(t,e){var n=ma(t,e);if(!n)return t+"";var r=n[0],i=n[1],o=i-(Yd=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")+ma(t,Math.max(0,e+o-1))[0]}function Ud(t,e){var n=ma(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 Wd={"%":(t,e)=>(t*100).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:kA,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)=>Ud(t*100,e),r:Ud,s:BA,X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function Hd(t){return t}var Xd=Array.prototype.map,jd=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function FA(t){var e=t.grouping===void 0||t.thousands===void 0?Hd:RA(Xd.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?Hd:EA(Xd.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=ya(f);var h=f.fill,p=f.align,d=f.sign,g=f.symbol,m=f.zero,b=f.width,y=f.comma,_=f.precision,x=f.trim,w=f.type;w==="n"?(y=!0,w="g"):Wd[w]||(_===void 0&&(_=12),x=!0,w="g"),(m||h==="0"&&p==="=")&&(m=!0,h="0",p="=");var $=g==="$"?n:g==="#"&&/[boxX]/.test(w)?"0"+w.toLowerCase():"",R=g==="$"?r:/[%p]/.test(w)?a:"",A=Wd[w],D=/[defgprs%]/.test(w);_=_===void 0?6:/[gprs]/.test(w)?Math.max(1,Math.min(21,_)):Math.max(0,Math.min(20,_));function I(v){var L=$,T=R,S,M,P;if(w==="c")T=A(v)+T,v="";else{v=+v;var G=v<0||1/v<0;if(v=isNaN(v)?u:A(Math.abs(v),_),x&&(v=NA(v)),G&&+v==0&&d!=="+"&&(G=!1),L=(G?d==="("?d:s:d==="-"||d==="("?"":d)+L,T=(w==="s"?jd[8+Yd/3]:"")+T+(G&&d==="("?")":""),D){for(S=-1,M=v.length;++S<M;)if(P=v.charCodeAt(S),48>P||P>57){T=(P===46?i+v.slice(S+1):v.slice(S))+T,v=v.slice(0,S);break}}}y&&!m&&(v=e(v,1/0));var O=L.length+v.length+T.length,k=O<b?new Array(b-O+1).join(h):"";switch(y&&m&&(v=e(k+v,k.length?b-T.length:1/0),k=""),p){case"<":v=L+v+T+k;break;case"=":v=L+k+v+T;break;case"^":v=k.slice(0,O=k.length>>1)+L+v+T+k.slice(O);break;default:v=k+L+v+T;break}return o(v)}return I.toString=function(){return f+""},I}function c(f,h){var p=l((f=ya(f),f.type="f",f)),d=Math.max(-8,Math.min(8,Math.floor(Ar(h)/3)))*3,g=Math.pow(10,-d),m=jd[8+d/3];return function(b){return p(g*b)+m}}return{format:l,formatPrefix:c}}var ba,Vd,qd;OA({thousands:",",grouping:[3],currency:["$",""]});function OA(t){return ba=FA(t),Vd=ba.format,qd=ba.formatPrefix,ba}function zA(t){return Math.max(0,-Ar(Math.abs(t)))}function GA(t,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(Ar(e)/3)))*3-Ar(Math.abs(t)))}function YA(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,Ar(e)-Ar(t))+1}function Zd(t,e){switch(arguments.length){case 0:break;case 1:this.range(t);break;default:this.range(e).domain(t);break}return this}function UA(t){return function(){return t}}function WA(t){return+t}var Kd=[0,1];function Tr(t){return t}function Ml(t,e){return(e-=t=+t)?function(n){return(n-t)/e}:UA(isNaN(e)?NaN:.5)}function HA(t,e){var n;return t>e&&(n=t,t=e,e=n),function(r){return Math.max(t,Math.min(e,r))}}function XA(t,e,n){var r=t[0],i=t[1],o=e[0],a=e[1];return i<r?(r=Ml(i,r),o=n(a,o)):(r=Ml(r,i),o=n(o,a)),function(s){return o(r(s))}}function jA(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]=Ml(t[a],t[a+1]),o[a]=n(e[a],e[a+1]);return function(s){var u=td(t,s,1,r)-1;return o[u](i[u](s))}}function VA(t,e){return e.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp()).unknown(t.unknown())}function qA(){var t=Kd,e=Kd,n=vl,r,i,o,a=Tr,s,u,l;function c(){var h=Math.min(t.length,e.length);return a!==Tr&&(a=HA(t[0],t[h-1])),s=h>2?jA:XA,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,WA),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=gS,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 ZA(){return qA()(Tr,Tr)}function KA(t,e,n,r){var i=c$(t,e,n),o;switch(r=ya(r??",f"),r.type){case"s":{var a=Math.max(Math.abs(t),Math.abs(e));return r.precision==null&&!isNaN(o=GA(i,a))&&(r.precision=o),qd(r,a)}case"":case"e":case"g":case"p":case"r":{r.precision==null&&!isNaN(o=YA(i,Math.max(Math.abs(t),Math.abs(e))))&&(r.precision=o-(r.type==="e"));break}case"f":case"%":{r.precision==null&&!isNaN(o=zA(i))&&(r.precision=o-(r.type==="%")*2);break}}return Vd(r)}function Qd(t){var e=t.domain;return t.ticks=function(n){var r=e();return l$(r[0],r[r.length-1],n??10)},t.tickFormat=function(n,r){var i=e();return KA(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=cl(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=ZA();return t.copy=function(){return VA(t,Jd())},Zd.apply(t,arguments),Qd(t)}function tg(){var t=0,e=1,n=1,r=[.5],i=[0,1],o;function a(u){return u!=null&&u<=u?i[td(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 tg().domain([t,e]).range(i).unknown(o)},Zd.apply(Qd(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 QA(t){let e=Math.floor(Math.sqrt(t)),n=Math.ceil(t/e);for(;e*n<t;)n++;return{rowAmount:e,columnAmount:n}}function eg(t,e,n){const{gap:r}=e,{rowAmount:i,columnAmount:o}=e.rowAmount*e.columnAmount>=n?e:QA(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 Dl=function(t,e){return Dl=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])},Dl(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");Dl(t,e);function n(){this.constructor=t}t.prototype=e===null?Object.create(e):(n.prototype=e.prototype,new n)}function JA(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 ng(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 tT(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,b){o.push([p,g,m,b])>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 eT(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 Cl(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 Ll=Cl(function(t){return function(e){t(this),this.message=e?e.length+` errors occurred during unsubscription:
|
37
|
-
`+
|
38
|
-
`):"",this.name="UnsubscriptionError",this.errors=e}});function xa(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 Ll?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{og(d)}catch(g){o=o??[],g instanceof Ll?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 Ll(o)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)og(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)&&xa(n,e)},t.prototype.remove=function(e){var n=this._finalizers;n&&xa(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),rg=Ri.EMPTY;function ig(t){return t instanceof Ri||t&&"closed"in t&&Dt(t.remove)&&Dt(t.add)&&Dt(t.unsubscribe)}function og(t){Dt(t)?t():t.unsubscribe()}var ag={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},nT={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 sg(t){nT.setTimeout(function(){throw t})}function kl(){}function va(t){t()}var Rl=function(t){Ne(e,t);function e(n){var r=t.call(this)||this;return r.isStopped=!1,n?(r.destination=n,ig(n)&&n.add(r)):r.destination=aT,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),rT=Function.prototype.bind;function El(t,e){return rT.call(t,e)}var iT=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){_a(r)}},t.prototype.error=function(e){var n=this.partialObserver;if(n.error)try{n.error(e)}catch(r){_a(r)}else _a(e)},t.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(n){_a(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&&ag.useDeprecatedNextContext?(s=Object.create(n),s.unsubscribe=function(){return o.unsubscribe()},a={next:n.next&&El(n.next,s),error:n.error&&El(n.error,s),complete:n.complete&&El(n.complete,s)}):a=n}return o.destination=new iT(a),o}return e}(Rl);function _a(t){sg(t)}function oT(t){throw t}var aT={closed:!0,next:kl,error:oT,complete:kl},Il=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function $a(t){return t}function sT(t){return t.length===0?$a:t.length===1?t[0]:function(e){return t.reduce(function(n,r){return r(n)},e)}}var ue=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=lT(e)?e:new Ei(e,n,r);return va(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=ug(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[Il]=function(){return this},t.prototype.pipe=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return sT(e)(this)},t.prototype.toPromise=function(e){var n=this;return e=ug(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 ug(t){var e;return(e=t??ag.Promise)!==null&&e!==void 0?e:Promise}function uT(t){return t&&Dt(t.next)&&Dt(t.error)&&Dt(t.complete)}function lT(t){return t&&t instanceof Rl||uT(t)&&ig(t)}function cT(t){return Dt(t==null?void 0:t.lift)}function Bn(t){return function(e){if(cT(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 Fn(t,e,n,r,i){return new fT(t,e,n,r,i)}var fT=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}(Rl),hT=Cl(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 lg(this,this);return r.operator=n,r},e.prototype._throwIfClosed=function(){if(this.closed)throw new hT},e.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=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;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)}})},e.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()}})},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?rg:(this.currentObservers=null,s.push(n),new Ri(function(){r.currentObservers=null,xa(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 ue;return n.source=this,n},e.create=function(n,r){return new lg(n,r)},e}(ue),lg=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:rg},e}(Lr),cg=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),Nl={now:function(){return(Nl.delegate||Date).now()},delegate:void 0},pT=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=Nl);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),dT=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),fg={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},gT=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),fg.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&&fg.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,xa(o,this),r!=null&&(this.id=this.recycleAsyncId(i,r,null)),this.delay=null,t.prototype.unsubscribe.call(this)}},e}(dT),hg=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=Nl.now,t}(),mT=function(t){Ne(e,t);function e(n,r){r===void 0&&(r=hg.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}(hg);new mT(gT);function yT(t){return t&&Dt(t.schedule)}function pg(t){return t[t.length-1]}function bT(t){return Dt(pg(t))?t.pop():void 0}function xT(t){return yT(pg(t))?t.pop():void 0}var dg=function(t){return t&&typeof t.length=="number"&&typeof t!="function"};function gg(t){return Dt(t==null?void 0:t.then)}function mg(t){return Dt(t[Il])}function yg(t){return Symbol.asyncIterator&&Dt(t==null?void 0:t[Symbol.asyncIterator])}function bg(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 vT(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var xg=vT();function vg(t){return Dt(t==null?void 0:t[xg])}function _g(t){return tT(this,arguments,function(){var e,n,r,i;return ng(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 $g(t){return Dt(t==null?void 0:t.getReader)}function On(t){if(t instanceof ue)return t;if(t!=null){if(mg(t))return _T(t);if(dg(t))return $T(t);if(gg(t))return wT(t);if(yg(t))return wg(t);if(vg(t))return ST(t);if($g(t))return AT(t)}throw bg(t)}function _T(t){return new ue(function(e){var n=t[Il]();if(Dt(n.subscribe))return n.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function $T(t){return new ue(function(e){for(var n=0;n<t.length&&!e.closed;n++)e.next(t[n]);e.complete()})}function wT(t){return new ue(function(e){t.then(function(n){e.closed||(e.next(n),e.complete())},function(n){return e.error(n)}).then(null,sg)})}function ST(t){return new ue(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 wg(t){return new ue(function(e){TT(t,e).catch(function(n){return e.error(n)})})}function AT(t){return wg(_g(t))}function TT(t,e){var n,r,i,o;return JA(this,void 0,void 0,function(){var a,s;return ng(this,function(u){switch(u.label){case 0:u.trys.push([0,5,6,11]),n=eT(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 pn(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 Sg(t,e){return e===void 0&&(e=0),Bn(function(n,r){n.subscribe(Fn(r,function(i){return pn(r,t,function(){return r.next(i)},e)},function(){return pn(r,t,function(){return r.complete()},e)},function(i){return pn(r,t,function(){return r.error(i)},e)}))})}function Ag(t,e){return e===void 0&&(e=0),Bn(function(n,r){r.add(t.schedule(function(){return n.subscribe(r)},e))})}function PT(t,e){return On(t).pipe(Ag(e),Sg(e))}function MT(t,e){return On(t).pipe(Ag(e),Sg(e))}function DT(t,e){return new ue(function(n){var r=0;return e.schedule(function(){r===t.length?n.complete():(n.next(t[r++]),n.closed||this.schedule())})})}function CT(t,e){return new ue(function(n){var r;return pn(n,e,function(){r=t[xg](),pn(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 Tg(t,e){if(!t)throw new Error("Iterable cannot be null");return new ue(function(n){pn(n,e,function(){var r=t[Symbol.asyncIterator]();pn(n,e,function(){r.next().then(function(i){i.done?n.complete():n.next(i.value)})},0,!0)})})}function LT(t,e){return Tg(_g(t),e)}function kT(t,e){if(t!=null){if(mg(t))return PT(t,e);if(dg(t))return DT(t,e);if(gg(t))return MT(t,e);if(yg(t))return Tg(t,e);if(vg(t))return CT(t,e);if($g(t))return LT(t,e)}throw bg(t)}function Pg(t,e){return e?kT(t,e):On(t)}Cl(function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}});function kr(t,e){return Bn(function(n,r){var i=0;n.subscribe(Fn(r,function(o){r.next(t.call(e,o,i++))}))})}var RT=Array.isArray;function ET(t,e){return RT(e)?t.apply(void 0,Dr([],Mr(e))):t(e)}function IT(t){return kr(function(e){return ET(t,e)})}var NT=Array.isArray,BT=Object.getPrototypeOf,FT=Object.prototype,OT=Object.keys;function zT(t){if(t.length===1){var e=t[0];if(NT(e))return{args:e,keys:null};if(GT(e)){var n=OT(e);return{args:n.map(function(r){return e[r]}),keys:n}}}return{args:t,keys:null}}function GT(t){return t&&typeof t=="object"&&BT(t)===FT}function YT(t,e){return t.reduce(function(n,r,i){return n[r]=e[i],n},{})}function Mg(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=xT(t),r=bT(t),i=zT(t),o=i.args,a=i.keys;if(o.length===0)return Pg([],n);var s=new ue(UT(o,n,a?function(u){return YT(a,u)}:$a));return r?s.pipe(IT(r)):s}function UT(t,e,n){return n===void 0&&(n=$a),function(r){Dg(e,function(){for(var i=t.length,o=new Array(i),a=i,s=i,u=function(c){Dg(e,function(){var f=Pg(t[c],e),h=!1;f.subscribe(Fn(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 Dg(t,e,n){t?pn(n,t,e):e()}function WT(t,e){return e===void 0&&(e=$a),t=t??HT,Bn(function(n,r){var i,o=!0;n.subscribe(Fn(r,function(a){var s=e(a);(o||!t(i,s))&&(o=!1,i=s,r.next(a))}))})}function HT(t,e){return t===e}function XT(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},b=function(){m(),c=h=void 0,d=g=!1},y=function(){var _=c;b(),_==null||_.unsubscribe()};return Bn(function(_,x){p++,!g&&!d&&m();var w=h=h??n();x.add(function(){p--,p===0&&!g&&!d&&(f=Bl(y,u))}),w.subscribe(x),!c&&p>0&&(c=new Ei({next:function($){return w.next($)},error:function($){g=!0,m(),f=Bl(b,i,$),w.error($)},complete:function(){d=!0,m(),f=Bl(b,a),w.complete()}}),On(_).subscribe(c))})(l)}}function Bl(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 On(e.apply(void 0,Dr([],Mr(n)))).subscribe(i)}}function jT(t,e,n){var r,i=!1;return r=t,XT({connector:function(){return new pT(r,e,n)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:i})}function Fl(t,e){return Bn(function(n,r){var i=null,o=0,a=!1,s=function(){return a&&!i&&r.complete()};n.subscribe(Fn(r,function(u){i==null||i.unsubscribe();var l=0,c=o++;On(t(u,c)).subscribe(i=Fn(r,function(f){return r.next(e?e(u,f,c,l++):f)},function(){i=null,s()}))},function(){a=!0,s()}))})}function Cg(t){return Bn(function(e,n){On(t).subscribe(Fn(n,function(){return n.complete()},kl)),!n.closed&&e.subscribe(n)})}const VT=t=>t.pipe(kr(e=>e.styles.textSize),WT(),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})),Lg=({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])},kg=({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 tg().domain([s,e-s]).range(i)},Rg=({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 ue(i=>(Mg({fullDataFormatter:t,layout:e}).pipe(Cg(n),Fl(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)}))},Eg=({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)`}})),Ig=({computedData$:t,fullDataFormatter$:e,layout$:n})=>Mg({computedData:t,fullDataFormatter:e,layout:n}).pipe(Fl(async r=>r),kr(r=>{if(r.fullDataFormatter.grid.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])}}));function qT(t){return`[OrbCharts warn]: ${t.message}`}function ZT({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}'
|
39
39
|
|
40
|
-
----> 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.'
|
41
41
|
|
42
|
-
----> find in '${n}'`}function QT({chartType:t,config:e,initFn:n}){const r=new Lr,i=new WeakMap;let o=()=>{},a;const s=new cg(e.defaultParams),u=new cg({}),l=s.pipe(Fl(c=>u.pipe(Cg(r),kr(f=>{try{const{status:h,columnName:p,expectToBe:d}=e.validator(f,{validateColumns:e$});if(h==="error")throw new Error(ZT({columnName:p,expectToBe:d,from:`${e.name}.params$`}));h==="warning"&&console.warn(KT({columnName:p,expectToBe:d,from:`${e.name}.params$`}))}catch(h){console.error(qT(h))}return ll(f,c)}))),jT(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(ll(c,e.defaultParams))},setContext:c=>{a=c,a.observer.fullParams$=l}}}const wa=t=>function(e){return function(n){return class{constructor(){const r=QT({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}}}},dn=wa("series"),re=wa("grid"),le=wa("multiGrid"),Ol=wa("tree");function $t(t,e){return t==null||e==null?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function Ng(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===Ng?t:JT,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 JT(){return 0}function Aa(t){return t===null?NaN:+t}function*t3(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 Bg=Sa($t),Fg=Bg.right,e3=Bg.left,n3=Sa(Aa).center,zn=Fg;function r3(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=zl(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 Og=zg(zl),i3=zg(o3);function zg(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 o3(t){const e=zl(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 zl(t){const e=Math.floor(t);if(e===t)return a3(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 a3(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 s3(t){return t.length|0}function u3(t){return!(t>0)}function l3(t){return typeof t!="object"||"length"in t?t:Array.from(t)}function c3(t){return e=>t(...e)}function f3(...t){const e=typeof t[t.length-1]=="function"&&c3(t.pop());t=t.map(l3);const n=t.map(s3),r=t.length-1,i=new Array(r+1).fill(0),o=[];if(r<0||n.some(u3))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 h3(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 Gg(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 Yg(t,e){const n=Gg(t,e);return n&&Math.sqrt(n)}function Ii(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 p3(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 d3(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 Ni extends Map{constructor(e,n=Hg){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(Gl(this,e))}has(e){return super.has(Gl(this,e))}set(e,n){return super.set(Ug(this,e),n)}delete(e){return super.delete(Wg(this,e))}}class Gn extends Set{constructor(e,n=Hg){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(Gl(this,e))}add(e){return super.add(Ug(this,e))}delete(e){return super.delete(Wg(this,e))}}function Gl({_intern:t,_key:e},n){const r=e(n);return t.has(r)?t.get(r):n}function Ug({_intern:t,_key:e},n){const r=e(n);return t.has(r)?t.get(r):(t.set(r,n),n)}function Wg({_intern:t,_key:e},n){const r=e(n);return t.has(r)&&(n=t.get(r),t.delete(r)),n}function Hg(t){return t!==null&&typeof t=="object"?t.valueOf():t}function Ir(t){return t}function Xg(t,...e){return Nr(t,Ir,Ir,e)}function jg(t,...e){return Nr(t,Array.from,Ir,e)}function Vg(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 g3(t,...e){return Vg(jg(t,...e),e)}function m3(t,e,...n){return Vg(Zg(t,e,...n),n)}function qg(t,e,...n){return Nr(t,Ir,e,n)}function Zg(t,e,...n){return Nr(t,Array.from,e,n)}function y3(t,...e){return Nr(t,Ir,Kg,e)}function b3(t,...e){return Nr(t,Array.from,Kg,e)}function Kg(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 Ni,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 Qg(t,e){return Array.from(e,n=>t[n])}function Yl(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]))),Qg(t,r)}return t.sort(Ul(n))}function Ul(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 x3(t,e,n){return(e.length!==2?Yl(qg(t,e,n),([r,i],[o,a])=>$t(i,a)||$t(r,o)):Yl(Xg(t,n),([r,i],[o,a])=>e(i,a)||$t(r,o))).map(([r])=>r)}var v3=Array.prototype,_3=v3.slice;function Wl(t){return()=>t}const $3=Math.sqrt(50),w3=Math.sqrt(10),S3=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>=$3?10:o>=w3?5:o>=S3?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 Yn(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 Un(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?Un(e,t,n):Un(t,e,n);return(r?-1:1)*(i<0?1/-i:i)}function Hl(t,e,n){let r;for(;;){const i=Un(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 Xl(t){return Math.max(1,Math.ceil(Math.log(Ta(t))/Math.LN2)+1)}function Jg(){var t=Ir,e=Ii,n=Xl;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 _=h,x=+p;if(e===Ii&&([f,h]=Hl(f,h,x)),p=Yn(f,h,x),p[0]<=f&&(u=Un(f,h,x)),p[p.length-1]>=h)if(_>=h&&e===Ii){const w=Un(f,h,x);isFinite(w)&&(w>0?h=(Math.floor(h/w)+1)*w:w<0&&(h=(Math.ceil(h*-w)+1)/-w))}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 b=new Array(d+1),y;for(o=0;o<=d;++o)y=b[o]=[],y.x0=o>0?p[o-1]:f,y.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&&b[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 _=Math.floor((f-s)*u);b[Math.min(d,_+(p[_]<=s))].push(i[o])}}}else for(o=0;o<a;++o)(s=l[o])!=null&&f<=s&&s<=h&&b[zn(p,s,0,d)].push(i[o]);return b}return r.value=function(i){return arguments.length?(t=typeof i=="function"?i:Wl(i),r):t},r.domain=function(i){return arguments.length?(e=typeof i=="function"?i:Wl([i[0],i[1]]),r):e},r.thresholds=function(i){return arguments.length?(n=typeof i=="function"?i:Wl(Array.isArray(i)?_3.call(i):i),r):n},r}function Bi(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 jl(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 Vl(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:Ul(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(Fi(t,n,e),i(t[r],o)>0&&Fi(t,n,r);a<s;){for(Fi(t,a,s),++a,--s;i(t[a],o)<0;)++a;for(;i(t[s],o)>0;)--s}i(t[n],o)===0?Fi(t,n,s):(++s,Fi(t,s,r)),s<=e&&(n=s+1),e<=s&&(r=s-1)}return t}function Fi(t,e,n){const r=t[e];t[e]=t[n],t[n]=r}function t0(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 Oi(t,e,n){if(t=Float64Array.from(t3(t,n)),!(!(r=t.length)||isNaN(e=+e))){if(e<=0||r<2)return Da(t);if(e>=1)return Bi(t);var r,i=(r-1)*e,o=Math.floor(i),a=Bi(Ca(t,o).subarray(0,o+1)),s=Da(t.subarray(o+1));return a+(s-a)*(i-o)}}function e0(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 n0(t,e,n=Aa){if(!isNaN(e=+e)){if(r=Float64Array.from(t,(s,u)=>Aa(n(t[u],u,t))),e<=0)return Vl(r);if(e>=1)return jl(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=t0(i.subarray(0,a+1),s=>r[s]),a>=0?a:-1}}function A3(t,e,n){const r=Ta(t),i=Oi(t,.75)-Oi(t,.25);return r&&i?Math.ceil((n-e)/(2*i*Math.pow(r,-1/3))):1}function T3(t,e,n){const r=Ta(t),i=Yg(t);return r&&i?Math.ceil((n-e)*Math.cbrt(r)/(3.49*i)):1}function P3(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 M3(t,e){return Oi(t,.5,e)}function D3(t,e){return n0(t,.5,e)}function*C3(t){for(const e of t)yield*e}function ql(t){return Array.from(C3(t))}function L3(t,e){const n=new Ni;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 k3(t,e=R3){const n=[];let r,i=!1;for(const o of t)i&&n.push(e(r,o)),r=o,i=!0;return n}function R3(t,e){return[t,e]}function gn(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 E3(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]):Ul(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 I3(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 r0(t,e=$t){if(e.length===1)return Vl(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 N3(t,e=$t){if(e.length===1)return jl(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 B3(t,e){const n=r0(t,e);return n<0?void 0:n}const F3=i0(Math.random);function i0(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 o0(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 a0(t){if(!(o=t.length))return[];for(var e=-1,n=Da(t,O3),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 O3(t){return t.length}function z3(){return a0(arguments)}function G3(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 Y3(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 U3(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 W3(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 H3(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 X3(t){if(typeof t[Symbol.iterator]!="function")throw new TypeError("values is not iterable");return Array.from(t).reverse()}function j3(t,...e){t=new Gn(t);for(const n of e)for(const r of n)t.delete(r);return t}function V3(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 q3(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 s0(t,e){const n=t[Symbol.iterator](),r=new Set;for(const i of e){const o=u0(i);if(r.has(o))continue;let a,s;for(;{value:a,done:s}=n.next();){if(s)return!1;const u=u0(a);if(r.add(u),Object.is(o,u))break}}return!0}function u0(t){return t!==null&&typeof t=="object"?t.valueOf():t}function K3(t,e){return s0(e,t)}function Q3(...t){const e=new Gn;for(const n of t)for(const r of n)e.add(r);return e}function J3(t){return t}var La=1,ka=2,Zl=3,zi=4,l0=1e-6;function t5(t){return"translate("+t+",0)"}function e5(t){return"translate(0,"+t+")"}function n5(t){return e=>+t(e)}function r5(t,e){return e=Math.max(0,t.bandwidth()-e*2)/2,t.round()&&(e=Math.round(e)),n=>+t(n)+e}function i5(){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===Zl?t5:e5;function h(p){var d=r??(e.ticks?e.ticks.apply(e,n):e.domain()),g=i??(e.tickFormat?e.tickFormat.apply(e,n):J3),m=Math.max(o,0)+s,b=e.range(),y=+b[0]+u,_=+b[b.length-1]+u,x=(e.bandwidth?r5:n5)(e.copy(),u),w=p.selection?p.selection():p,$=w.selectAll(".domain").data([null]),R=w.selectAll(".tick").data(d,e).order(),A=R.exit(),D=R.enter().append("g").attr("class","tick"),I=R.select("line"),v=R.select("text");$=$.merge($.enter().insert("path",".tick").attr("class","domain").attr("stroke","currentColor")),R=R.merge(D),I=I.merge(D.append("line").attr("stroke","currentColor").attr(c+"2",l*o)),v=v.merge(D.append("text").attr("fill","currentColor").attr(c,l*m).attr("dy",t===La?"0em":t===Zl?"0.71em":"0.32em")),p!==w&&($=$.transition(p),R=R.transition(p),I=I.transition(p),v=v.transition(p),A=A.transition(p).attr("opacity",l0).attr("transform",function(L){return isFinite(L=x(L))?f(L+u):this.getAttribute("transform")}),D.attr("opacity",l0).attr("transform",function(L){var T=this.parentNode.__axis;return f((T&&isFinite(T=T(L))?T:x(L))+u)})),A.remove(),$.attr("d",t===zi||t===ka?a?"M"+l*a+","+y+"H"+u+"V"+_+"H"+l*a:"M"+u+","+y+"V"+_:a?"M"+y+","+l*a+"V"+u+"H"+_+"V"+l*a:"M"+y+","+u+"H"+_),R.attr("opacity",1).attr("transform",function(L){return f(x(L)+u)}),I.attr(c+"2",l*o),v.attr(c,l*m).text(g),w.filter(i5).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",t===ka?"start":t===zi?"end":"middle"),w.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 o5(t){return Ra(La,t)}function a5(t){return Ra(ka,t)}function c0(t){return Ra(Zl,t)}function f0(t){return Ra(zi,t)}var s5={value:()=>{}};function Wn(){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 u5(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=Wn.prototype={constructor:Ea,on:function(t,e){var n=this._,r=u5(t+"",n),i,o=-1,a=r.length;if(arguments.length<2){for(;++o<a;)if((i=(t=r[o]).type)&&(i=l5(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]=h0(n[i],t.name,e);else if(e==null)for(i in n)n[i]=h0(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 l5(t,e){for(var n=0,r=t.length,i;n<r;++n)if((i=t[n]).name===e)return i.value}function h0(t,e,n){for(var r=0,i=t.length;r<i;++r)if(t[r].name===e){t[r]=s5,t=t.slice(0,r).concat(t.slice(r+1));break}return n!=null&&t.push({name:e,value:n}),t}var Kl="http://www.w3.org/1999/xhtml";const Ql={svg:"http://www.w3.org/2000/svg",xhtml:Kl,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Gi(t){var e=t+="",n=e.indexOf(":");return n>=0&&(e=t.slice(0,n))!=="xmlns"&&(t=t.slice(n+1)),Ql.hasOwnProperty(e)?{space:Ql[e],local:t}:t}function c5(t){return function(){var e=this.ownerDocument,n=this.namespaceURI;return n===Kl&&e.documentElement.namespaceURI===Kl?e.createElement(t):e.createElementNS(n,t)}}function f5(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}function Ia(t){var e=Gi(t);return(e.local?f5:c5)(e)}function h5(){}function Na(t){return t==null?h5:function(){return this.querySelector(t)}}function p5(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 p0(t){return t==null?[]:Array.isArray(t)?t:Array.from(t)}function d5(){return[]}function Jl(t){return t==null?d5:function(){return this.querySelectorAll(t)}}function g5(t){return function(){return p0(t.apply(this,arguments))}}function m5(t){typeof t=="function"?t=g5(t):t=Jl(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 tc(t){return function(){return this.matches(t)}}function d0(t){return function(e){return e.matches(t)}}var y5=Array.prototype.find;function b5(t){return function(){return y5.call(this.children,t)}}function x5(){return this.firstElementChild}function v5(t){return this.select(t==null?x5:b5(typeof t=="function"?t:d0(t)))}var _5=Array.prototype.filter;function $5(){return Array.from(this.children)}function w5(t){return function(){return _5.call(this.children,t)}}function S5(t){return this.selectAll(t==null?$5:w5(typeof t=="function"?t:d0(t)))}function A5(t){typeof t!="function"&&(t=tc(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 g0(t){return new Array(t.length)}function T5(){return new Wt(this._enter||this._groups.map(g0),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 P5(t){return function(){return t}}function M5(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 D5(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 C5(t){return t.__data__}function L5(t,e){if(!arguments.length)return Array.from(this,C5);var n=e?D5:M5,r=this._parents,i=this._groups;typeof t!="function"&&(t=P5(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=k5(t.call(c,c&&c.__data__,l,r)),d=p.length,g=s[l]=new Array(d),m=a[l]=new Array(d),b=u[l]=new Array(h);n(c,f,g,m,b,p,e);for(var y=0,_=0,x,w;y<d;++y)if(x=g[y]){for(y>=_&&(_=y+1);!(w=m[_])&&++_<d;);x._next=w||null}}return a=new Wt(a,r),a._enter=s,a._exit=u,a}function k5(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function R5(){return new Wt(this._exit||this._groups.map(g0),this._parents)}function E5(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 I5(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 N5(){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 B5(t){t||(t=F5);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 F5(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function O5(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this}function z5(){return Array.from(this)}function G5(){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 Y5(){let t=0;for(const e of this)++t;return t}function U5(){return!this.node()}function W5(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 H5(t){return function(){this.removeAttribute(t)}}function X5(t){return function(){this.removeAttributeNS(t.space,t.local)}}function j5(t,e){return function(){this.setAttribute(t,e)}}function V5(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function q5(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 K5(t,e){var n=Gi(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?X5:H5:typeof e=="function"?n.local?Z5:q5:n.local?V5:j5)(n,e))}function ec(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function Q5(t){return function(){this.style.removeProperty(t)}}function J5(t,e,n){return function(){this.style.setProperty(t,e,n)}}function tP(t,e,n){return function(){var r=e.apply(this,arguments);r==null?this.style.removeProperty(t):this.style.setProperty(t,r,n)}}function eP(t,e,n){return arguments.length>1?this.each((e==null?Q5:typeof e=="function"?tP:J5)(t,e,n??"")):Hn(this.node(),t)}function Hn(t,e){return t.style.getPropertyValue(e)||ec(t).getComputedStyle(t,null).getPropertyValue(e)}function nP(t){return function(){delete this[t]}}function rP(t,e){return function(){this[t]=e}}function iP(t,e){return function(){var n=e.apply(this,arguments);n==null?delete this[t]:this[t]=n}}function oP(t,e){return arguments.length>1?this.each((e==null?nP:typeof e=="function"?iP:rP)(t,e)):this.node()[t]}function m0(t){return t.trim().split(/^|\s+/)}function nc(t){return t.classList||new y0(t)}function y0(t){this._node=t,this._names=m0(t.getAttribute("class")||"")}y0.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 b0(t,e){for(var n=nc(t),r=-1,i=e.length;++r<i;)n.add(e[r])}function x0(t,e){for(var n=nc(t),r=-1,i=e.length;++r<i;)n.remove(e[r])}function aP(t){return function(){b0(this,t)}}function sP(t){return function(){x0(this,t)}}function uP(t,e){return function(){(e.apply(this,arguments)?b0:x0)(this,t)}}function lP(t,e){var n=m0(t+"");if(arguments.length<2){for(var r=nc(this.node()),i=-1,o=n.length;++i<o;)if(!r.contains(n[i]))return!1;return!0}return this.each((typeof e=="function"?uP:e?aP:sP)(n,e))}function cP(){this.textContent=""}function fP(t){return function(){this.textContent=t}}function hP(t){return function(){var e=t.apply(this,arguments);this.textContent=e??""}}function pP(t){return arguments.length?this.each(t==null?cP:(typeof t=="function"?hP:fP)(t)):this.node().textContent}function dP(){this.innerHTML=""}function gP(t){return function(){this.innerHTML=t}}function mP(t){return function(){var e=t.apply(this,arguments);this.innerHTML=e??""}}function yP(t){return arguments.length?this.each(t==null?dP:(typeof t=="function"?mP:gP)(t)):this.node().innerHTML}function bP(){this.nextSibling&&this.parentNode.appendChild(this)}function xP(){return this.each(bP)}function vP(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function _P(){return this.each(vP)}function $P(t){var e=typeof t=="function"?t:Ia(t);return this.select(function(){return this.appendChild(e.apply(this,arguments))})}function wP(){return null}function SP(t,e){var n=typeof t=="function"?t:Ia(t),r=e==null?wP:typeof e=="function"?e:Na(e);return this.select(function(){return this.insertBefore(n.apply(this,arguments),r.apply(this,arguments)||null)})}function AP(){var t=this.parentNode;t&&t.removeChild(this)}function TP(){return this.each(AP)}function PP(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function MP(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function DP(t){return this.select(t?MP:PP)}function CP(t){return arguments.length?this.property("__data__",t):this.node().__data__}function LP(t){return function(e){t.call(this,e,this.__data__)}}function kP(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 RP(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 EP(t,e,n){return function(){var r=this.__on,i,o=LP(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 IP(t,e,n){var r=kP(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?EP:RP,i=0;i<o;++i)this.each(s(r[i],e,n));return this}function v0(t,e,n){var r=ec(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 NP(t,e){return function(){return v0(this,t,e)}}function BP(t,e){return function(){return v0(this,t,e.apply(this,arguments))}}function FP(t,e){return this.each((typeof e=="function"?BP:NP)(t,e))}function*OP(){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 rc=[null];function Wt(t,e){this._groups=t,this._parents=e}function Xn(){return new Wt([[document.documentElement]],rc)}function zP(){return this}Wt.prototype=Xn.prototype={constructor:Wt,select:p5,selectAll:m5,selectChild:v5,selectChildren:S5,filter:A5,data:L5,enter:T5,exit:R5,join:E5,merge:I5,selection:zP,order:N5,sort:B5,call:O5,nodes:z5,node:G5,size:Y5,empty:U5,each:W5,attr:K5,style:eP,property:oP,classed:lP,text:pP,html:yP,raise:xP,lower:_P,append:$P,insert:SP,remove:TP,clone:DP,datum:CP,on:IP,dispatch:FP,[Symbol.iterator]:OP};function q(t){return typeof t=="string"?new Wt([[document.querySelector(t)]],[document.documentElement]):new Wt([[t]],rc)}function GP(t){return q(Ia(t).call(document.documentElement))}var YP=0;function _0(){return new ic}function ic(){this._="@"+(++YP).toString(36)}ic.prototype=_0.prototype={constructor:ic,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 $0(t){let e;for(;e=t.sourceEvent;)t=e;return t}function ce(t,e){if(t=$0(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 UP(t,e){return t.target&&(t=$0(t),e===void 0&&(e=t.currentTarget),t=t.touches||[t]),Array.from(t,n=>ce(n,e))}function WP(t){return typeof t=="string"?new Wt([document.querySelectorAll(t)],[document.documentElement]):new Wt([p0(t)],rc)}const HP={passive:!1},Yi={capture:!0,passive:!1};function oc(t){t.stopImmediatePropagation()}function Fr(t){t.preventDefault(),t.stopImmediatePropagation()}function Fa(t){var e=t.document.documentElement,n=q(t).on("dragstart.drag",Fr,Yi);"onselectstart"in e?n.on("selectstart.drag",Fr,Yi):(e.__noselect=e.style.MozUserSelect,e.style.MozUserSelect="none")}function Oa(t,e){var n=t.document.documentElement,r=q(t).on("dragstart.drag",null);e&&(r.on("click.drag",Fr,Yi),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 za=t=>()=>t;function ac(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}})}ac.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};function XP(t){return!t.ctrlKey&&!t.button}function jP(){return this.parentNode}function VP(t,e){return e??{x:t.x,y:t.y}}function qP(){return navigator.maxTouchPoints||"ontouchstart"in this}function w0(){var t=XP,e=jP,n=VP,r=qP,i={},o=Wn("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",b,HP).on("touchend.drag touchcancel.drag",y).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function p(x,w){if(!(c||!t.call(this,x,w))){var $=_(this,e.call(this,x,w),x,w,"mouse");$&&(q(x.view).on("mousemove.drag",d,Yi).on("mouseup.drag",g,Yi),Fa(x.view),oc(x),l=!1,s=x.clientX,u=x.clientY,$("start",x))}}function d(x){if(Fr(x),!l){var w=x.clientX-s,$=x.clientY-u;l=w*w+$*$>f}i.mouse("drag",x)}function g(x){q(x.view).on("mousemove.drag mouseup.drag",null),Oa(x.view,l),Fr(x),i.mouse("end",x)}function m(x,w){if(t.call(this,x,w)){var $=x.changedTouches,R=e.call(this,x,w),A=$.length,D,I;for(D=0;D<A;++D)(I=_(this,R,x,w,$[D].identifier,$[D]))&&(oc(x),I("start",x,$[D]))}}function b(x){var w=x.changedTouches,$=w.length,R,A;for(R=0;R<$;++R)(A=i[w[R].identifier])&&(Fr(x),A("drag",x,w[R]))}function y(x){var w=x.changedTouches,$=w.length,R,A;for(c&&clearTimeout(c),c=setTimeout(function(){c=null},500),R=0;R<$;++R)(A=i[w[R].identifier])&&(oc(x),A("end",x,w[R]))}function _(x,w,$,R,A,D){var I=o.copy(),v=ce(D||$,w),L,T,S;if((S=n.call(x,new ac("beforestart",{sourceEvent:$,target:h,identifier:A,active:a,x:v[0],y:v[1],dx:0,dy:0,dispatch:I}),R))!=null)return L=S.x-v[0]||0,T=S.y-v[1]||0,function M(P,G,O){var k=v,E;switch(P){case"start":i[A]=M,E=a++;break;case"end":delete i[A],--a;case"drag":v=ce(O||G,w),E=a;break}I.call(P,x,new ac(P,{sourceEvent:G,subject:S,target:h,identifier:A,active:E,x:v[0]+L,y:v[1]+T,dx:v[0]-k[0],dy:v[1]-k[1],dispatch:I}),R)}}return h.filter=function(x){return arguments.length?(t=typeof x=="function"?x:za(!!x),h):t},h.container=function(x){return arguments.length?(e=typeof x=="function"?x:za(x),h):e},h.subject=function(x){return arguments.length?(n=typeof x=="function"?x:za(x),h):n},h.touchable=function(x){return arguments.length?(r=typeof x=="function"?x:za(!!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 Ui(t,e){var n=Object.create(t.prototype);for(var r in e)n[r]=e[r];return n}function mn(){}var jn=.7,zr=1/jn,Gr="\\s*([+-]?\\d+)\\s*",Wi="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Be="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",ZP=/^#([0-9a-f]{3,8})$/,KP=new RegExp(`^rgb\\(${Gr},${Gr},${Gr}\\)$`),QP=new RegExp(`^rgb\\(${Be},${Be},${Be}\\)$`),JP=new RegExp(`^rgba\\(${Gr},${Gr},${Gr},${Wi}\\)$`),t6=new RegExp(`^rgba\\(${Be},${Be},${Be},${Wi}\\)$`),e6=new RegExp(`^hsl\\(${Wi},${Be},${Be}\\)$`),n6=new RegExp(`^hsla\\(${Wi},${Be},${Be},${Wi}\\)$`),S0={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(mn,yn,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:A0,formatHex:A0,formatHex8:r6,formatHsl:i6,formatRgb:T0,toString:T0});function A0(){return this.rgb().formatHex()}function r6(){return this.rgb().formatHex8()}function i6(){return L0(this).formatHsl()}function T0(){return this.rgb().formatRgb()}function yn(t){var e,n;return t=(t+"").trim().toLowerCase(),(e=ZP.exec(t))?(n=e[1].length,e=parseInt(e[1],16),n===6?P0(e):n===3?new Rt(e>>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):n===8?Ga(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):n===4?Ga(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=KP.exec(t))?new Rt(e[1],e[2],e[3],1):(e=QP.exec(t))?new Rt(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=JP.exec(t))?Ga(e[1],e[2],e[3],e[4]):(e=t6.exec(t))?Ga(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=e6.exec(t))?C0(e[1],e[2]/100,e[3]/100,1):(e=n6.exec(t))?C0(e[1],e[2]/100,e[3]/100,e[4]):S0.hasOwnProperty(t)?P0(S0[t]):t==="transparent"?new Rt(NaN,NaN,NaN,0):null}function P0(t){return new Rt(t>>16&255,t>>8&255,t&255,1)}function Ga(t,e,n,r){return r<=0&&(t=e=n=NaN),new Rt(t,e,n,r)}function sc(t){return t instanceof mn||(t=yn(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?sc(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,Ui(mn,{brighter(t){return t=t==null?zr:Math.pow(zr,t),new Rt(this.r*t,this.g*t,this.b*t,this.opacity)},darker(t){return t=t==null?jn:Math.pow(jn,t),new Rt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb(){return this},clamp(){return new Rt(Vn(this.r),Vn(this.g),Vn(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:M0,formatHex:M0,formatHex8:o6,formatRgb:D0,toString:D0}));function M0(){return`#${qn(this.r)}${qn(this.g)}${qn(this.b)}`}function o6(){return`#${qn(this.r)}${qn(this.g)}${qn(this.b)}${qn((isNaN(this.opacity)?1:this.opacity)*255)}`}function D0(){const t=Ya(this.opacity);return`${t===1?"rgb(":"rgba("}${Vn(this.r)}, ${Vn(this.g)}, ${Vn(this.b)}${t===1?")":`, ${t})`}`}function Ya(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function Vn(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function qn(t){return t=Vn(t),(t<16?"0":"")+t.toString(16)}function C0(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 L0(t){if(t instanceof Te)return new Te(t.h,t.s,t.l,t.opacity);if(t instanceof mn||(t=yn(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?L0(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,Ui(mn,{brighter(t){return t=t==null?zr:Math.pow(zr,t),new Te(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?jn:Math.pow(jn,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(uc(t>=240?t-240:t+120,i,r),uc(t,i,r),uc(t<120?t+240:t-120,i,r),this.opacity)},clamp(){return new Te(k0(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("}${k0(this.h)}, ${Wa(this.s)*100}%, ${Wa(this.l)*100}%${t===1?")":`, ${t})`}`}}));function k0(t){return t=(t||0)%360,t<0?t+360:t}function Wa(t){return Math.max(0,Math.min(1,t||0))}function uc(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 R0=Math.PI/180,E0=180/Math.PI,Ha=18,I0=.96422,N0=1,B0=.82521,F0=4/29,Ur=6/29,O0=3*Ur*Ur,a6=Ur*Ur*Ur;function z0(t){if(t instanceof Pe)return new Pe(t.l,t.a,t.b,t.opacity);if(t instanceof Fe)return Y0(t);t instanceof Rt||(t=sc(t));var e=hc(t.r),n=hc(t.g),r=hc(t.b),i=lc((.2225045*e+.7168786*n+.0606169*r)/N0),o,a;return e===n&&n===r?o=a=i:(o=lc((.4360747*e+.3850649*n+.1430804*r)/I0),a=lc((.0139322*e+.0971045*n+.7141733*r)/B0)),new Pe(116*i-16,500*(o-i),200*(i-a),t.opacity)}function s6(t,e){return new Pe(t,0,0,e??1)}function Xa(t,e,n,r){return arguments.length===1?z0(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,Ui(mn,{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=I0*cc(e),t=N0*cc(t),n=B0*cc(n),new Rt(fc(3.1338561*e-1.6168667*t-.4906146*n),fc(-.9787684*e+1.9161415*t+.033454*n),fc(.0719453*e-.2289914*t+1.4052427*n),this.opacity)}}));function lc(t){return t>a6?Math.pow(t,1/3):t/O0+F0}function cc(t){return t>Ur?t*t*t:O0*(t-F0)}function fc(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function hc(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function G0(t){if(t instanceof Fe)return new Fe(t.h,t.c,t.l,t.opacity);if(t instanceof Pe||(t=z0(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)*E0;return new Fe(e<0?e+360:e,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function u6(t,e,n,r){return arguments.length===1?G0(t):new Fe(n,e,t,r??1)}function ja(t,e,n,r){return arguments.length===1?G0(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 Y0(t){if(isNaN(t.h))return new Pe(t.l,0,0,t.opacity);var e=t.h*R0;return new Pe(t.l,Math.cos(e)*t.c,Math.sin(e)*t.c,t.opacity)}Or(Fe,ja,Ui(mn,{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 Y0(this).rgb()}}));var U0=-.14861,pc=1.78277,dc=-.29227,Va=-.90649,Hi=1.97294,W0=Hi*Va,H0=Hi*pc,X0=pc*dc-Va*U0;function l6(t){if(t instanceof Zn)return new Zn(t.h,t.s,t.l,t.opacity);t instanceof Rt||(t=sc(t));var e=t.r/255,n=t.g/255,r=t.b/255,i=(X0*r+W0*e-H0*n)/(X0+W0-H0),o=r-i,a=(Hi*(n-i)-dc*o)/Va,s=Math.sqrt(a*a+o*o)/(Hi*i*(1-i)),u=s?Math.atan2(a,o)*E0-120:NaN;return new Zn(u<0?u+360:u,s,i,t.opacity)}function Me(t,e,n,r){return arguments.length===1?l6(t):new Zn(t,e,n,r??1)}function Zn(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}Or(Zn,Me,Ui(mn,{brighter(t){return t=t==null?zr:Math.pow(zr,t),new Zn(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?jn:Math.pow(jn,t),new Zn(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=isNaN(this.h)?0:(this.h+120)*R0,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*(U0*r+pc*i)),255*(e+n*(dc*r+Va*i)),255*(e+n*(Hi*r)),this.opacity)}}));function j0(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 V0(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 j0((n-r/e)*e,a,i,o,s)}}function q0(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 j0((n-r/e)*e,i,o,a,s)}}const qa=t=>()=>t;function Z0(t,e){return function(n){return t+n*e}}function c6(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?Z0(t,n>180||n<-180?n-360*Math.round(n/360):n):qa(isNaN(t)?e:t)}function f6(t){return(t=+t)==1?Et:function(e,n){return n-e?c6(e,n,t):qa(isNaN(e)?n:e)}}function Et(t,e){var n=e-t;return n?Z0(t,n):qa(isNaN(t)?e:t)}const Xi=function t(e){var n=f6(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 K0(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 Q0=K0(V0),h6=K0(q0);function gc(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 J0(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function p6(t,e){return(J0(e)?gc:tm)(t,e)}function tm(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 em(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 nm(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 mc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,yc=new RegExp(mc.source,"g");function d6(t){return function(){return t}}function g6(t){return function(e){return t(e)+""}}function bc(t,e){var n=mc.lastIndex=yc.lastIndex=0,r,i,o,a=-1,s=[],u=[];for(t=t+"",e=e+"";(r=mc.exec(t))&&(i=yc.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=yc.lastIndex;return n<e.length&&(o=e.slice(n),s[a]?s[a]+=o:s[++a]=o),s.length<2?u[0]?g6(u[0].x):d6(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=yn(e))?(e=r,Xi):bc:e instanceof yn?Xi:e instanceof Date?em:J0(e)?gc:Array.isArray(e)?tm:typeof e.valueOf!="function"&&typeof e.toString!="function"||isNaN(e)?nm:ge)(t,e)}function m6(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}function y6(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 rm=180/Math.PI,xc={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function im(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)*rm,skewX:Math.atan(u)*rm,scaleX:a,scaleY:s}}var Qa;function b6(t){const e=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(t+"");return e.isIdentity?xc:im(e.a,e.b,e.c,e.d,e.e,e.f)}function x6(t){return t==null||(Qa||(Qa=document.createElementNS("http://www.w3.org/2000/svg","g")),Qa.setAttribute("transform",t),!(t=Qa.transform.baseVal.consolidate()))?xc:(t=t.matrix,im(t.a,t.b,t.c,t.d,t.e,t.f))}function om(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 am=om(b6,"px, ","px)","deg)"),sm=om(x6,", ",")",")"),v6=1e-12;function um(t){return((t=Math.exp(t))+1/t)/2}function _6(t){return((t=Math.exp(t))-1/t)/2}function $6(t){return((t=Math.exp(2*t))-1)/(t+1)}const lm=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,b;if(g<v6)b=Math.log(h/l)/e,m=function(R){return[s+R*p,u+R*d,l*Math.exp(e*R*b)]};else{var y=Math.sqrt(g),_=(h*h-l*l+r*g)/(2*l*n*y),x=(h*h-l*l-r*g)/(2*h*n*y),w=Math.log(Math.sqrt(_*_+1)-_),$=Math.log(Math.sqrt(x*x+1)-x);b=($-w)/e,m=function(R){var A=R*b,D=um(w),I=l/(n*y)*(D*$6(e*A+w)-_6(w));return[s+I*p,u+I*d,l*D/um(e*A+w)]}}return m.duration=b*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 cm(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 w6=cm(Za);var S6=cm(Et);function A6(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 fm(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 T6=fm(Za);var P6=fm(Et);function hm(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 M6=hm(Za);var Ja=hm(Et);function pm(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 D6(t,e){for(var n=new Array(e),r=0;r<e;++r)n[r]=t(r/(e-1));return n}var Wr=0,ji=0,Vi=0,dm=1e3,ts,qi,es=0,Kn=0,ns=0,Zi=typeof performance=="object"&&performance.now?performance:Date,gm=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function Ki(){return Kn||(gm(C6),Kn=Zi.now()+ns)}function C6(){Kn=0}function Qi(){this._call=this._time=this._next=null}Qi.prototype=rs.prototype={constructor:Qi,restart:function(t,e,n){if(typeof t!="function")throw new TypeError("callback is not a function");n=(n==null?Ki():+n)+(e==null?0:+e),!this._next&&qi!==this&&(qi?qi._next=this:ts=this,qi=this),this._call=t,this._time=n,vc()},stop:function(){this._call&&(this._call=null,this._time=1/0,vc())}};function rs(t,e,n){var r=new Qi;return r.restart(t,e,n),r}function mm(){Ki(),++Wr;for(var t=ts,e;t;)(e=Kn-t._time)>=0&&t._call.call(void 0,e),t=t._next;--Wr}function ym(){Kn=(es=Zi.now())+ns,Wr=ji=0;try{mm()}finally{Wr=0,k6(),Kn=0}}function L6(){var t=Zi.now(),e=t-es;e>dm&&(ns-=e,es=t)}function k6(){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);qi=t,vc(r)}function vc(t){if(!Wr){ji&&(ji=clearTimeout(ji));var e=t-Kn;e>24?(t<1/0&&(ji=setTimeout(ym,t-Zi.now()-ns)),Vi&&(Vi=clearInterval(Vi))):(Vi||(es=Zi.now(),Vi=setInterval(L6,dm)),Wr=1,gm(ym))}}function _c(t,e,n){var r=new Qi;return e=e==null?0:+e,r.restart(i=>{r.stop(),t(i+e)},e,n),r}function R6(t,e,n){var r=new Qi,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?Ki():+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 E6=Wn("start","end","cancel","interrupt"),I6=[],bm=0,$c=1,wc=2,is=3,xm=4,Sc=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;N6(t,n,{name:e,index:r,group:i,on:E6,tween:I6,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:bm})}function Ac(t,e){var n=De(t,e);if(n.state>bm)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 N6(t,e,n){var r=t.__transition,i;r[e]=n,n.timer=rs(o,0,n.time);function o(l){n.state=$c,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!==$c)return u();for(c in r)if(p=r[c],p.name===n.name){if(p.state===is)return _c(a);p.state===xm?(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(_c(function(){n.state===is&&(n.state=xm,n.timer.restart(s,n.delay,n.time),s(l))}),n.state=wc,n.on.call("start",t,t.__data__,n.index,n.group),n.state===wc){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=Sc,1),f=-1,h=i.length;++f<h;)i[f].call(t,c);n.state===Sc&&(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 Qn(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>wc&&r.state<Sc,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 B6(t){return this.each(function(){Qn(this,t)})}function F6(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 O6(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 z6(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?F6:O6)(n,t,e))}function Tc(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 vm(t,e){var n;return(typeof e=="number"?ge:e instanceof yn?Xi:(n=yn(e))?(e=n,Xi):bc)(t,e)}function G6(t){return function(){this.removeAttribute(t)}}function Y6(t){return function(){this.removeAttributeNS(t.space,t.local)}}function U6(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 W6(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 H6(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 X6(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 j6(t,e){var n=Gi(t),r=n==="transform"?sm:vm;return this.attrTween(t,typeof e=="function"?(n.local?X6:H6)(n,r,Tc(this,"attr."+t,e)):e==null?(n.local?Y6:G6)(n):(n.local?W6:U6)(n,r,e))}function V6(t,e){return function(n){this.setAttribute(t,e.call(this,n))}}function q6(t,e){return function(n){this.setAttributeNS(t.space,t.local,e.call(this,n))}}function Z6(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&q6(t,o)),n}return i._value=e,i}function K6(t,e){var n,r;function i(){var o=e.apply(this,arguments);return o!==r&&(n=(r=o)&&V6(t,o)),n}return i._value=e,i}function Q6(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=Gi(t);return this.tween(n,(r.local?Z6:K6)(r,e))}function J6(t,e){return function(){Ac(this,t).delay=+e.apply(this,arguments)}}function t8(t,e){return e=+e,function(){Ac(this,t).delay=e}}function e8(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?J6:t8)(e,t)):De(this.node(),e).delay}function n8(t,e){return function(){Oe(this,t).duration=+e.apply(this,arguments)}}function r8(t,e){return e=+e,function(){Oe(this,t).duration=e}}function i8(t){var e=this._id;return arguments.length?this.each((typeof t=="function"?n8:r8)(e,t)):De(this.node(),e).duration}function o8(t,e){if(typeof e!="function")throw new Error;return function(){Oe(this,t).ease=e}}function a8(t){var e=this._id;return arguments.length?this.each(o8(e,t)):De(this.node(),e).ease}function s8(t,e){return function(){var n=e.apply(this,arguments);if(typeof n!="function")throw new Error;Oe(this,t).ease=n}}function u8(t){if(typeof t!="function")throw new Error;return this.each(s8(this._id,t))}function l8(t){typeof t!="function"&&(t=tc(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 ze(r,this._parents,this._name,this._id)}function c8(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 ze(a,this._parents,this._name,this._id)}function f8(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 h8(t,e,n){var r,i,o=f8(e)?Ac:Oe;return function(){var a=o(this,t),s=a.on;s!==r&&(i=(r=s).copy()).on(e,n),a.on=i}}function p8(t,e){var n=this._id;return arguments.length<2?De(this.node(),n).on.on(t):this.each(h8(n,t,e))}function d8(t){return function(){var e=this.parentNode;for(var n in this.__transition)if(+n!==t)return;e&&e.removeChild(this)}}function g8(){return this.on("end.remove",d8(this._id))}function m8(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 ze(o,this._parents,e,n)}function y8(t){var e=this._name,n=this._id;typeof t!="function"&&(t=Jl(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 ze(o,a,e,n)}var b8=Xn.prototype.constructor;function x8(){return new b8(this._groups,this._parents)}function v8(t,e){var n,r,i;return function(){var o=Hn(this,t),a=(this.style.removeProperty(t),Hn(this,t));return o===a?null:o===n&&a===r?i:i=e(n=o,r=a)}}function _m(t){return function(){this.style.removeProperty(t)}}function _8(t,e,n){var r,i=n+"",o;return function(){var a=Hn(this,t);return a===i?null:a===r?o:o=e(r=a,n)}}function $8(t,e,n){var r,i,o;return function(){var a=Hn(this,t),s=n(this),u=s+"";return s==null&&(u=s=(this.style.removeProperty(t),Hn(this,t))),a===u?null:a===r&&u===i?o:(i=u,o=e(r=a,s))}}function w8(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=_m(e)):void 0;(l!==n||i!==c)&&(r=(n=l).copy()).on(a,i=c),u.on=r}}function S8(t,e,n){var r=(t+="")=="transform"?am:vm;return e==null?this.styleTween(t,v8(t,r)).on("end.style."+t,_m(t)):typeof e=="function"?this.styleTween(t,$8(t,r,Tc(this,"style."+t,e))).each(w8(this._id,t)):this.styleTween(t,_8(t,r,e),n).on("end.style."+t,null)}function A8(t,e,n){return function(r){this.style.setProperty(t,e.call(this,r),n)}}function T8(t,e,n){var r,i;function o(){var a=e.apply(this,arguments);return a!==i&&(r=(i=a)&&A8(t,a,n)),r}return o._value=e,o}function P8(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,T8(t,e,n??""))}function M8(t){return function(){this.textContent=t}}function D8(t){return function(){var e=t(this);this.textContent=e??""}}function C8(t){return this.tween("text",typeof t=="function"?D8(Tc(this,"text",t)):M8(t==null?"":t+""))}function L8(t){return function(e){this.textContent=t.call(this,e)}}function k8(t){var e,n;function r(){var i=t.apply(this,arguments);return i!==n&&(e=(n=i)&&L8(i)),e}return r._value=t,r}function R8(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,k8(t))}function E8(){for(var t=this._name,e=this._id,n=wm(),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 ze(r,this._parents,t,n)}function I8(){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 N8=0;function ze(t,e,n,r){this._groups=t,this._parents=e,this._name=n,this._id=r}function $m(t){return Xn().transition(t)}function wm(){return++N8}var Ke=Xn.prototype;ze.prototype=$m.prototype={constructor:ze,select:m8,selectAll:y8,selectChild:Ke.selectChild,selectChildren:Ke.selectChildren,filter:l8,merge:c8,selection:x8,transition:E8,call:Ke.call,nodes:Ke.nodes,node:Ke.node,size:Ke.size,empty:Ke.empty,each:Ke.each,on:p8,attr:j6,attrTween:Q6,style:S8,styleTween:P8,text:C8,textTween:R8,remove:g8,tween:z6,delay:e8,duration:i8,ease:a8,easeVarying:u8,end:I8,[Symbol.iterator]:Ke[Symbol.iterator]};const B8=t=>+t;function F8(t){return t*t}function O8(t){return t*(2-t)}function Sm(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}function z8(t){return t*t*t}function G8(t){return--t*t*t+1}function Ji(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}var Pc=3,Y8=function t(e){e=+e;function n(r){return Math.pow(r,e)}return n.exponent=t,n}(Pc),U8=function t(e){e=+e;function n(r){return 1-Math.pow(1-r,e)}return n.exponent=t,n}(Pc),Am=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}(Pc),Tm=Math.PI,Pm=Tm/2;function W8(t){return+t==1?1:1-Math.cos(t*Pm)}function H8(t){return Math.sin(t*Pm)}function Mm(t){return(1-Math.cos(Tm*t))/2}function bn(t){return(Math.pow(2,-10*t)-.0009765625)*1.0009775171065494}function X8(t){return bn(1-+t)}function j8(t){return 1-bn(t)}function Dm(t){return((t*=2)<=1?bn(1-t):2-bn(t-1))/2}function V8(t){return 1-Math.sqrt(1-t*t)}function q8(t){return Math.sqrt(1- --t*t)}function Cm(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}var Mc=4/11,Z8=6/11,K8=8/11,Q8=3/4,J8=9/11,tM=10/11,eM=15/16,nM=21/22,rM=63/64,ss=1/Mc/Mc;function iM(t){return 1-to(1-t)}function to(t){return(t=+t)<Mc?ss*t*t:t<K8?ss*(t-=Z8)*t+Q8:t<tM?ss*(t-=J8)*t+eM:ss*(t-=nM)*t+rM}function oM(t){return((t*=2)<=1?1-to(1-t):to(t-1)+1)/2}var Dc=1.70158,aM=function t(e){e=+e;function n(r){return(r=+r)*r*(e*(r-1)+r)}return n.overshoot=t,n}(Dc),sM=function t(e){e=+e;function n(r){return--r*r*((r+1)*e+r)+1}return n.overshoot=t,n}(Dc),Lm=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}(Dc),Hr=2*Math.PI,Cc=1,Lc=.3,uM=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Hr);function i(o){return e*bn(- --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}(Cc,Lc),eo=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Hr);function i(o){return 1-e*bn(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}(Cc,Lc),lM=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*bn(-o)*Math.sin((r-o)/n):2-e*bn(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}(Cc,Lc),cM={time:null,delay:0,duration:250,ease:Ji};function fM(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 hM(t){var e,n;t instanceof ze?(e=t._id,t=t._name):(e=wm(),(n=cM).time=Ki(),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||fM(u,e));return new ze(r,this._parents,t,e)}Xn.prototype.interrupt=B6,Xn.prototype.transition=hM;var pM=[null];function dM(t,e){var n=t.__transition,r,i;if(n){e=e==null?null:e+"";for(i in n)if((r=n[i]).state>$c&&r.name===e)return new ze([[t]],pM,e,+i)}return null}const kc=t=>()=>t;function gM(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 mM(t){t.stopImmediatePropagation()}function Rc(t){t.preventDefault(),t.stopImmediatePropagation()}var km={name:"drag"},Ec={name:"space"},Xr={name:"handle"},jr={name:"center"};const{abs:Rm,max:Ft,min:Ot}=Math;function Em(t){return[+t[0],+t[1]]}function Ic(t){return[Em(t[0]),Em(t[1])]}var us={name:"x",handles:["w","e"].map(no),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(no),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]]}},yM={name:"xy",handles:["n","w","e","s","nw","ne","sw","se"].map(no),input:function(t){return t==null?null:Ic(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"},Im={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},Nm={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},bM={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},xM={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1};function no(t){return{type:t}}function vM(t){return!t.ctrlKey&&!t.button}function _M(){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 $M(){return navigator.maxTouchPoints||"ontouchstart"in this}function Nc(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function wM(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function SM(t){var e=t.__brush;return e?e.dim.output(e.selection):null}function AM(){return Bc(us)}function TM(){return Bc(ls)}function PM(){return Bc(yM)}function Bc(t){var e=_M,n=vM,r=$M,i=!0,o=Wn("start","brush","end"),a=6,s;function u(m){var b=m.property("__brush",g).selectAll(".overlay").data([no("overlay")]);b.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",Qe.overlay).merge(b).each(function(){var _=Nc(this).extent;q(this).attr("x",_[0][0]).attr("y",_[0][1]).attr("width",_[1][0]-_[0][0]).attr("height",_[1][1]-_[0][1])}),m.selectAll(".selection").data([no("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 y=m.selectAll(".handle").data(t.handles,function(_){return _.type});y.exit().remove(),y.enter().append("rect").attr("class",function(_){return"handle handle--"+_.type}).attr("cursor",function(_){return Qe[_.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,b,y){m.tween?m.on("start.brush",function(_){c(this,arguments).beforestart().start(_)}).on("interrupt.brush end.brush",function(_){c(this,arguments).end(_)}).tween("brush",function(){var _=this,x=_.__brush,w=c(_,arguments),$=x.selection,R=t.input(typeof b=="function"?b.apply(this,arguments):b,x.extent),A=Ze($,R);function D(I){x.selection=I===1&&R===null?null:A(I),l.call(_),w.brush()}return $!==null&&R!==null?D:D(1)}):m.each(function(){var _=this,x=arguments,w=_.__brush,$=t.input(typeof b=="function"?b.apply(_,x):b,w.extent),R=c(_,x).beforestart();Qn(_),w.selection=$===null?null:$,l.call(_),R.start(y).brush(y).end(y)})},u.clear=function(m,b){u.move(m,null,b)};function l(){var m=q(this),b=Nc(this).selection;b?(m.selectAll(".selection").style("display",null).attr("x",b[0][0]).attr("y",b[0][1]).attr("width",b[1][0]-b[0][0]).attr("height",b[1][1]-b[0][1]),m.selectAll(".handle").style("display",null).attr("x",function(y){return y.type[y.type.length-1]==="e"?b[1][0]-a/2:b[0][0]-a/2}).attr("y",function(y){return y.type[0]==="s"?b[1][1]-a/2:b[0][1]-a/2}).attr("width",function(y){return y.type==="n"||y.type==="s"?b[1][0]-b[0][0]+a:a}).attr("height",function(y){return y.type==="e"||y.type==="w"?b[1][1]-b[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,b,y){var _=m.__brush.emitter;return _&&(!y||!_.clean)?_:new f(m,b,y)}function f(m,b,y){this.that=m,this.args=b,this.state=m.__brush,this.active=0,this.clean=y}f.prototype={beforestart:function(){return++this.active===1&&(this.state.emitter=this,this.starting=!0),this},start:function(m,b){return this.starting?(this.starting=!1,this.emit("start",m,b)):this.emit("brush",m),this},brush:function(m,b){return this.emit("brush",m,b),this},end:function(m,b){return--this.active===0&&(delete this.state.emitter,this.emit("end",m,b)),this},emit:function(m,b,y){var _=q(this.that).datum();o.call(m,this.that,new gM(m,{sourceEvent:b,target:u,selection:t.output(this.state.selection),mode:y,dispatch:o}),_)}};function h(m){if(s&&!m.touches||!n.apply(this,arguments))return;var b=this,y=m.target.__data__.type,_=(i&&m.metaKey?y="overlay":y)==="selection"?km:i&&m.altKey?jr:Xr,x=t===ls?null:bM[y],w=t===us?null:xM[y],$=Nc(b),R=$.extent,A=$.selection,D=R[0][0],I,v,L=R[0][1],T,S,M=R[1][0],P,G,O=R[1][1],k,E,C=0,F=0,H,J=x&&w&&i&&m.shiftKey,z,V,Y=Array.from(m.touches||[m],ut=>{const Pt=ut.identifier;return ut=ce(ut,b),ut.point0=ut.slice(),ut.identifier=Pt,ut});Qn(b);var K=c(b,arguments,!0).beforestart();if(y==="overlay"){A&&(H=!0);const ut=[Y[0],Y[1]||Y[0]];$.selection=A=[[I=t===ls?D:Ot(ut[0][0],ut[1][0]),T=t===us?L:Ot(ut[0][1],ut[1][1])],[P=t===ls?M:Ft(ut[0][0],ut[1][0]),k=t===us?O:Ft(ut[0][1],ut[1][1])]],Y.length>1&&dt(m)}else I=A[0][0],T=A[0][1],P=A[1][0],k=A[1][1];v=I,S=T,G=P,E=k;var j=q(b).attr("pointer-events","none"),nt=j.selectAll(".overlay").attr("cursor",Qe[y]);if(m.touches)K.moved=X,K.ended=ft;else{var st=q(m.view).on("mousemove.brush",X,!0).on("mouseup.brush",ft,!0);i&&st.on("keydown.brush",Ut,!0).on("keyup.brush",ee,!0),Fa(m.view)}l.call(b),K.start(m,_.name);function X(ut){for(const Pt of ut.changedTouches||[ut])for(const Ho of Y)Ho.identifier===Pt.identifier&&(Ho.cur=ce(Pt,b));if(J&&!z&&!V&&Y.length===1){const Pt=Y[0];Rm(Pt.cur[0]-Pt[0])>Rm(Pt.cur[1]-Pt[1])?V=!0:z=!0}for(const Pt of Y)Pt.cur&&(Pt[0]=Pt.cur[0],Pt[1]=Pt.cur[1]);H=!0,Rc(ut),dt(ut)}function dt(ut){const Pt=Y[0],Ho=Pt.point0;var Ln;switch(C=Pt[0]-Ho[0],F=Pt[1]-Ho[1],_){case Ec:case km:{x&&(C=Ft(D-I,Ot(M-P,C)),v=I+C,G=P+C),w&&(F=Ft(L-T,Ot(O-k,F)),S=T+F,E=k+F);break}case Xr:{Y[1]?(x&&(v=Ft(D,Ot(M,Y[0][0])),G=Ft(D,Ot(M,Y[1][0])),x=1),w&&(S=Ft(L,Ot(O,Y[0][1])),E=Ft(L,Ot(O,Y[1][1])),w=1)):(x<0?(C=Ft(D-I,Ot(M-I,C)),v=I+C,G=P):x>0&&(C=Ft(D-P,Ot(M-P,C)),v=I,G=P+C),w<0?(F=Ft(L-T,Ot(O-T,F)),S=T+F,E=k):w>0&&(F=Ft(L-k,Ot(O-k,F)),S=T,E=k+F));break}case jr:{x&&(v=Ft(D,Ot(M,I-C*x)),G=Ft(D,Ot(M,P+C*x))),w&&(S=Ft(L,Ot(O,T-F*w)),E=Ft(L,Ot(O,k+F*w)));break}}G<v&&(x*=-1,Ln=I,I=P,P=Ln,Ln=v,v=G,G=Ln,y in Im&&nt.attr("cursor",Qe[y=Im[y]])),E<S&&(w*=-1,Ln=T,T=k,k=Ln,Ln=S,S=E,E=Ln,y in Nm&&nt.attr("cursor",Qe[y=Nm[y]])),$.selection&&(A=$.selection),z&&(v=A[0][0],G=A[1][0]),V&&(S=A[0][1],E=A[1][1]),(A[0][0]!==v||A[0][1]!==S||A[1][0]!==G||A[1][1]!==E)&&($.selection=[[v,S],[G,E]],l.call(b),K.brush(ut,_.name))}function ft(ut){if(mM(ut),ut.touches){if(ut.touches.length)return;s&&clearTimeout(s),s=setTimeout(function(){s=null},500)}else Oa(ut.view,H),st.on("keydown.brush keyup.brush mousemove.brush mouseup.brush",null);j.attr("pointer-events","all"),nt.attr("cursor",Qe.overlay),$.selection&&(A=$.selection),wM(A)&&($.selection=null,l.call(b)),K.end(ut,_.name)}function Ut(ut){switch(ut.keyCode){case 16:{J=x&&w;break}case 18:{_===Xr&&(x&&(P=G-C*x,I=v+C*x),w&&(k=E-F*w,T=S+F*w),_=jr,dt(ut));break}case 32:{(_===Xr||_===jr)&&(x<0?P=G-C:x>0&&(I=v-C),w<0?k=E-F:w>0&&(T=S-F),_=Ec,nt.attr("cursor",Qe.selection),dt(ut));break}default:return}Rc(ut)}function ee(ut){switch(ut.keyCode){case 16:{J&&(z=V=J=!1,dt(ut));break}case 18:{_===jr&&(x<0?P=G:x>0&&(I=v),w<0?k=E:w>0&&(T=S),_=Xr,dt(ut));break}case 32:{_===Ec&&(ut.altKey?(x&&(P=G-C*x,I=v+C*x),w&&(k=E-F*w,T=S+F*w),_=jr):(x<0?P=G:x>0&&(I=v),w<0?k=E:w>0&&(T=S),_=Xr),nt.attr("cursor",Qe[y]),dt(ut));break}default:return}Rc(ut)}}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=Ic(e.apply(this,arguments)),m.dim=t,m}return u.extent=function(m){return arguments.length?(e=typeof m=="function"?m:kc(Ic(m)),u):e},u.filter=function(m){return arguments.length?(n=typeof m=="function"?m:kc(!!m),u):n},u.touchable=function(m){return arguments.length?(r=typeof m=="function"?m:kc(!!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 Bm=Math.abs,Vr=Math.cos,qr=Math.sin,Fm=Math.PI,cs=Fm/2,Om=Fm*2,zm=Math.max,Fc=1e-12;function Oc(t,e){return Array.from({length:e-t},(n,r)=>t+r)}function MM(t){return function(e,n){return t(e.source.value+e.target.value,n.source.value+n.target.value)}}function DM(){return zc(!1,!1)}function CM(){return zc(!1,!0)}function LM(){return zc(!0,!1)}function zc(t,e){var n=0,r=null,i=null,o=null;function a(s){var u=s.length,l=new Array(u),c=Oc(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 b=0;b<u;++b)m+=s[g*u+b]+t*s[b*u+g];p+=l[g]=m}p=zm(0,Om-n*u)/p,d=p?n:Om/u;{let g=0;r&&c.sort((m,b)=>r(l[m],l[b]));for(const m of c){const b=g;if(t){const y=Oc(~u+1,u).filter(_=>_<0?s[~_*u+m]:s[m*u+_]);i&&y.sort((_,x)=>i(_<0?-s[~_*u+m]:s[m*u+_],x<0?-s[~x*u+m]:s[m*u+x]));for(const _ of y)if(_<0){const x=f[~_*u+m]||(f[~_*u+m]={source:null,target:null});x.target={index:m,startAngle:g,endAngle:g+=s[~_*u+m]*p,value:s[~_*u+m]}}else{const x=f[m*u+_]||(f[m*u+_]={source:null,target:null});x.source={index:m,startAngle:g,endAngle:g+=s[m*u+_]*p,value:s[m*u+_]}}h[m]={index:m,startAngle:b,endAngle:g,value:l[m]}}else{const y=Oc(0,u).filter(_=>s[m*u+_]||s[_*u+m]);i&&y.sort((_,x)=>i(s[m*u+_],s[m*u+x]));for(const _ of y){let x;if(m<_?(x=f[m*u+_]||(f[m*u+_]={source:null,target:null}),x.source={index:m,startAngle:g,endAngle:g+=s[m*u+_]*p,value:s[m*u+_]}):(x=f[_*u+m]||(f[_*u+m]={source:null,target:null}),x.target={index:m,startAngle:g,endAngle:g+=s[m*u+_]*p,value:s[m*u+_]},m===_&&(x.source=x.target)),x.source&&x.target&&x.source.value<x.target.value){const w=x.source;x.source=x.target,x.target=w}}h[m]={index:m,startAngle:b,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=zm(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=MM(s))._=s,a):o&&o._},a}const Gc=Math.PI,Yc=2*Gc,Jn=1e-6,kM=Yc-Jn;function Gm(t){this._+=t[0];for(let e=1,n=t.length;e<n;++e)this._+=arguments[e]+t[e]}function RM(t){let e=Math.floor(t);if(!(e>=0))throw new Error(`invalid digits: ${t}`);if(e>15)return Gm;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 ro=class{constructor(e){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=e==null?Gm:RM(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>Jn)if(!(Math.abs(f*u-l*c)>Jn)||!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,b=Math.sqrt(g),y=Math.sqrt(h),_=o*Math.tan((Gc-Math.acos((g+h-m)/(2*b*y)))/2),x=_/y,w=_/b;Math.abs(x-1)>Jn&&this._append`L${e+x*c},${n+x*f}`,this._append`A${o},${o},0,0,${+(f*p>c*d)},${this._x1=e+w*u},${this._y1=n+w*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)>Jn||Math.abs(this._y1-c)>Jn)&&this._append`L${l},${c}`,r&&(h<0&&(h=h%Yc+Yc),h>kM?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>Jn&&this._append`A${r},${r},0,${+(h>=Gc)},${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 Uc(){return new ro}Uc.prototype=ro.prototype;function EM(t=3){return new ro(+t)}var IM=Array.prototype.slice;function tr(t){return function(){return t}}function NM(t){return t.source}function BM(t){return t.target}function Ym(t){return t.radius}function FM(t){return t.startAngle}function OM(t){return t.endAngle}function zM(){return 0}function GM(){return 10}function Um(t){var e=NM,n=BM,r=Ym,i=Ym,o=FM,a=OM,s=zM,u=null;function l(){var c,f=e.apply(this,arguments),h=n.apply(this,arguments),p=s.apply(this,arguments)/2,d=IM.call(arguments),g=+r.apply(this,(d[0]=f,d)),m=o.apply(this,d)-cs,b=a.apply(this,d)-cs,y=+i.apply(this,(d[0]=h,d)),_=o.apply(this,d)-cs,x=a.apply(this,d)-cs;if(u||(u=c=Uc()),p>Fc&&(Bm(b-m)>p*2+Fc?b>m?(m+=p,b-=p):(m-=p,b+=p):m=b=(m+b)/2,Bm(x-_)>p*2+Fc?x>_?(_+=p,x-=p):(_-=p,x+=p):_=x=(_+x)/2),u.moveTo(g*Vr(m),g*qr(m)),u.arc(0,0,g,m,b),m!==_||b!==x)if(t){var w=+t.apply(this,arguments),$=y-w,R=(_+x)/2;u.quadraticCurveTo(0,0,$*Vr(_),$*qr(_)),u.lineTo(y*Vr(R),y*qr(R)),u.lineTo($*Vr(x),$*qr(x))}else u.quadraticCurveTo(0,0,y*Vr(_),y*qr(_)),u.arc(0,0,y,_,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:tr(+c),l):t}),l.radius=function(c){return arguments.length?(r=i=typeof c=="function"?c:tr(+c),l):r},l.sourceRadius=function(c){return arguments.length?(r=typeof c=="function"?c:tr(+c),l):r},l.targetRadius=function(c){return arguments.length?(i=typeof c=="function"?c:tr(+c),l):i},l.startAngle=function(c){return arguments.length?(o=typeof c=="function"?c:tr(+c),l):o},l.endAngle=function(c){return arguments.length?(a=typeof c=="function"?c:tr(+c),l):a},l.padAngle=function(c){return arguments.length?(s=typeof c=="function"?c:tr(+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 YM(){return Um()}function UM(){return Um(GM)}var WM=Array.prototype,Wm=WM.slice;function HM(t,e){return t-e}function XM(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 xn=t=>()=>t;function jM(t,e){for(var n=-1,r=e.length,i;++n<r;)if(i=VM(t,e[n]))return i;return 0}function VM(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(qM(u,f,e))return 0;c>r!=p>r&&n<(h-l)*(r-c)/(p-c)+l&&(i=-i)}return i}function qM(t,e,n){var r;return ZM(t,e,n)&&KM(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 KM(t,e,n){return t<=e&&e<=n||n<=e&&e<=t}function QM(){}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 Wc(){var t=1,e=1,n=Xl,r=u;function i(l){var c=n(l);if(Array.isArray(c))c=c.slice().sort(HM);else{const f=Ii(l,JM);for(c=Yn(...Hl(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),XM(d)>0?h.push([d]):p.push(d)}),p.forEach(function(d){for(var g=0,m=h.length,b;g<m;++g)if(jM((b=h[g])[0],d)!==-1){b.push(d);return}}),{type:"MultiPolygon",value:c,coordinates:h}}function a(l,c,f){var h=new Array,p=new Array,d,g,m,b,y,_;for(d=g=-1,b=er(l[0],c),Je[b<<1].forEach(x);++d<t-1;)m=b,b=er(l[d+1],c),Je[m|b<<1].forEach(x);for(Je[b<<0].forEach(x);++g<e-1;){for(d=-1,b=er(l[g*t+t],c),y=er(l[g*t],c),Je[b<<1|y<<2].forEach(x);++d<t-1;)m=b,b=er(l[g*t+t+d+1],c),_=y,y=er(l[g*t+d+1],c),Je[m|b<<1|y<<2|_<<3].forEach(x);Je[b|y<<3].forEach(x)}for(d=-1,y=l[g*t]>=c,Je[y<<2].forEach(x);++d<t-1;)_=y,y=er(l[g*t+d+1],c),Je[y<<2|_<<3].forEach(x);Je[y<<3].forEach(x);function x(w){var $=[w[0][0]+d,w[0][1]+g],R=[w[1][0]+d,w[1][1]+g],A=s($),D=s(R),I,v;(I=p[A])?(v=h[D])?(delete p[I.end],delete h[v.start],I===v?(I.ring.push(R),f(I.ring)):h[I.start]=p[v.end]={start:I.start,end:v.end,ring:I.ring.concat(v.ring)}):(delete p[I.end],I.ring.push(R),p[I.end=D]=I):(I=h[D])?(v=p[A])?(delete h[I.start],delete p[v.end],I===v?(I.ring.push(R),f(I.ring)):h[v.start]=p[I.end]={start:v.start,end:I.end,ring:v.ring.concat(I.ring)}):(delete h[I.start],I.ring.unshift($),h[I.start=A]=I):h[A]=p[D]={start:A,end:D,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,b=Hc(c[m*t+g]);p>0&&p<t&&g===p&&(h[0]=Hm(p,Hc(c[m*t+g-1]),b,f)),d>0&&d<e&&m===d&&(h[1]=Hm(d,Hc(c[(m-1)*t+g]),b,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)?xn(Wm.call(l)):xn(l),i):n},i.smooth=function(l){return arguments.length?(r=l?u:QM,i):r===u},i}function JM(t){return isFinite(t)?t:NaN}function er(t,e){return t==null?!1:+t>=e}function Hc(t){return t==null||isNaN(t=+t)?-1/0:t}function Hm(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 t4(t){return t[0]}function e4(t){return t[1]}function n4(){return 1}function r4(){var t=t4,e=e4,n=n4,r=960,i=500,o=20,a=2,s=o*3,u=r+s*2>>a,l=i+s*2>>a,c=xn(20);function f(y){var _=new Float32Array(u*l),x=Math.pow(2,-a),w=-1;for(const T of y){var $=(t(T,++w,y)+s)*x,R=(e(T,w,y)+s)*x,A=+n(T,w,y);if(A&&$>=0&&$<u&&R>=0&&R<l){var D=Math.floor($),I=Math.floor(R),v=$-D-.5,L=R-I-.5;_[D+I*u]+=(1-v)*(1-L)*A,_[D+1+I*u]+=v*(1-L)*A,_[D+1+(I+1)*u]+=v*L*A,_[D+(I+1)*u]+=(1-v)*L*A}}return Og({data:_,width:u,height:l},o*x),_}function h(y){var _=f(y),x=c(_),w=Math.pow(2,2*a);return Array.isArray(x)||(x=Yn(Number.MIN_VALUE,Bi(_)/w,x)),Wc().size([u,l]).thresholds(x.map($=>$*w))(_).map(($,R)=>($.value=+x[R],p($)))}h.contours=function(y){var _=f(y),x=Wc().size([u,l]),w=Math.pow(2,2*a),$=R=>{R=+R;var A=p(x.contour(_,R*w));return A.value=R,A};return Object.defineProperty($,"max",{get:()=>Bi(_)/w}),$};function p(y){return y.coordinates.forEach(d),y}function d(y){y.forEach(g)}function g(y){y.forEach(m)}function m(y){y[0]=y[0]*Math.pow(2,a)-s,y[1]=y[1]*Math.pow(2,a)-s}function b(){return s=o*3,u=r+s*2>>a,l=i+s*2>>a,h}return h.x=function(y){return arguments.length?(t=typeof y=="function"?y:xn(+y),h):t},h.y=function(y){return arguments.length?(e=typeof y=="function"?y:xn(+y),h):e},h.weight=function(y){return arguments.length?(n=typeof y=="function"?y:xn(+y),h):n},h.size=function(y){if(!arguments.length)return[r,i];var _=+y[0],x=+y[1];if(!(_>=0&&x>=0))throw new Error("invalid size");return r=_,i=x,b()},h.cellSize=function(y){if(!arguments.length)return 1<<a;if(!((y=+y)>=1))throw new Error("invalid cell size");return a=Math.floor(Math.log(y)/Math.LN2),b()},h.thresholds=function(y){return arguments.length?(c=typeof y=="function"?y:Array.isArray(y)?xn(Wm.call(y)):xn(y),h):c},h.bandwidth=function(y){if(!arguments.length)return Math.sqrt(o*(o+1));if(!((y=+y)>=0))throw new Error("invalid bandwidth");return o=(Math.sqrt(4*y*y+1)-1)/2,b()},h}const tn=11102230246251565e-32,zt=134217729,i4=(3+8*tn)*tn;function Xc(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 o4(t,e){let n=e[0];for(let r=1;r<t;r++)n+=e[r];return n}function io(t){return new Float64Array(t)}const a4=(3+16*tn)*tn,s4=(2+12*tn)*tn,u4=(9+64*tn)*tn*tn,Zr=io(4),Xm=io(8),jm=io(12),Vm=io(16),Ht=io(4);function l4(t,e,n,r,i,o,a){let s,u,l,c,f,h,p,d,g,m,b,y,_,x,w,$,R,A;const D=t-i,I=n-i,v=e-o,L=r-o;x=D*L,h=zt*D,p=h-(h-D),d=D-p,h=zt*L,g=h-(h-L),m=L-g,w=d*m-(x-p*g-d*g-p*m),$=v*I,h=zt*v,p=h-(h-v),d=v-p,h=zt*I,g=h-(h-I),m=I-g,R=d*m-($-p*g-d*g-p*m),b=w-R,f=w-b,Zr[0]=w-(b+f)+(f-R),y=x+b,f=y-x,_=x-(y-f)+(b-f),b=_-$,f=_-b,Zr[1]=_-(b+f)+(f-$),A=y+b,f=A-y,Zr[2]=y-(A-f)+(b-f),Zr[3]=A;let T=o4(4,Zr),S=s4*a;if(T>=S||-T>=S||(f=t-D,s=t-(D+f)+(f-i),f=n-I,l=n-(I+f)+(f-i),f=e-v,u=e-(v+f)+(f-o),f=r-L,c=r-(L+f)+(f-o),s===0&&u===0&&l===0&&c===0)||(S=u4*a+i4*Math.abs(T),T+=D*c+L*s-(v*l+I*u),T>=S||-T>=S))return T;x=s*L,h=zt*s,p=h-(h-s),d=s-p,h=zt*L,g=h-(h-L),m=L-g,w=d*m-(x-p*g-d*g-p*m),$=u*I,h=zt*u,p=h-(h-u),d=u-p,h=zt*I,g=h-(h-I),m=I-g,R=d*m-($-p*g-d*g-p*m),b=w-R,f=w-b,Ht[0]=w-(b+f)+(f-R),y=x+b,f=y-x,_=x-(y-f)+(b-f),b=_-$,f=_-b,Ht[1]=_-(b+f)+(f-$),A=y+b,f=A-y,Ht[2]=y-(A-f)+(b-f),Ht[3]=A;const M=Xc(4,Zr,4,Ht,Xm);x=D*c,h=zt*D,p=h-(h-D),d=D-p,h=zt*c,g=h-(h-c),m=c-g,w=d*m-(x-p*g-d*g-p*m),$=v*l,h=zt*v,p=h-(h-v),d=v-p,h=zt*l,g=h-(h-l),m=l-g,R=d*m-($-p*g-d*g-p*m),b=w-R,f=w-b,Ht[0]=w-(b+f)+(f-R),y=x+b,f=y-x,_=x-(y-f)+(b-f),b=_-$,f=_-b,Ht[1]=_-(b+f)+(f-$),A=y+b,f=A-y,Ht[2]=y-(A-f)+(b-f),Ht[3]=A;const P=Xc(M,Xm,4,Ht,jm);x=s*c,h=zt*s,p=h-(h-s),d=s-p,h=zt*c,g=h-(h-c),m=c-g,w=d*m-(x-p*g-d*g-p*m),$=u*l,h=zt*u,p=h-(h-u),d=u-p,h=zt*l,g=h-(h-l),m=l-g,R=d*m-($-p*g-d*g-p*m),b=w-R,f=w-b,Ht[0]=w-(b+f)+(f-R),y=x+b,f=y-x,_=x-(y-f)+(b-f),b=_-$,f=_-b,Ht[1]=_-(b+f)+(f-$),A=y+b,f=A-y,Ht[2]=y-(A-f)+(b-f),Ht[3]=A;const G=Xc(P,jm,4,Ht,Vm);return Vm[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)>=a4*l?u:-l4(t,e,n,r,i,o,l)}const qm=Math.pow(2,-52),hs=new Uint32Array(512);class ps{static from(e,n=d4,r=g4){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 D=0;D<a;D++){const I=e[2*D],v=e[2*D+1];I<s&&(s=I),v<u&&(u=v),I>l&&(l=I),v>c&&(c=v),this._ids[D]=D}const f=(s+l)/2,h=(u+c)/2;let p,d,g;for(let D=0,I=1/0;D<a;D++){const v=jc(f,h,e[2*D],e[2*D+1]);v<I&&(p=D,I=v)}const m=e[2*p],b=e[2*p+1];for(let D=0,I=1/0;D<a;D++){if(D===p)continue;const v=jc(m,b,e[2*D],e[2*D+1]);v<I&&v>0&&(d=D,I=v)}let y=e[2*d],_=e[2*d+1],x=1/0;for(let D=0;D<a;D++){if(D===p||D===d)continue;const I=h4(m,b,y,_,e[2*D],e[2*D+1]);I<x&&(g=D,x=I)}let w=e[2*g],$=e[2*g+1];if(x===1/0){for(let v=0;v<a;v++)this._dists[v]=e[2*v]-e[0]||e[2*v+1]-e[1];Kr(this._ids,this._dists,0,a-1);const D=new Uint32Array(a);let I=0;for(let v=0,L=-1/0;v<a;v++){const T=this._ids[v],S=this._dists[T];S>L&&(D[I++]=T,L=S)}this.hull=D.subarray(0,I),this.triangles=new Uint32Array(0),this.halfedges=new Uint32Array(0);return}if(fs(m,b,y,_,w,$)<0){const D=d,I=y,v=_;d=g,y=w,_=$,g=D,w=I,$=v}const R=p4(m,b,y,_,w,$);this._cx=R.x,this._cy=R.y;for(let D=0;D<a;D++)this._dists[D]=jc(e[2*D],e[2*D+1],R.x,R.y);Kr(this._ids,this._dists,0,a-1),this._hullStart=p;let A=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,b)]=p,o[this._hashKey(y,_)]=d,o[this._hashKey(w,$)]=g,this.trianglesLen=0,this._addTriangle(p,d,g,-1,-1,-1);for(let D=0,I,v;D<this._ids.length;D++){const L=this._ids[D],T=e[2*L],S=e[2*L+1];if(D>0&&Math.abs(T-I)<=qm&&Math.abs(S-v)<=qm||(I=T,v=S,L===p||L===d||L===g))continue;let M=0;for(let E=0,C=this._hashKey(T,S);E<this._hashSize&&(M=o[(C+E)%this._hashSize],!(M!==-1&&M!==r[M]));E++);M=n[M];let P=M,G;for(;G=r[P],fs(T,S,e[2*P],e[2*P+1],e[2*G],e[2*G+1])>=0;)if(P=G,P===M){P=-1;break}if(P===-1)continue;let O=this._addTriangle(P,L,r[P],-1,-1,i[P]);i[L]=this._legalize(O+2),i[P]=O,A++;let k=r[P];for(;G=r[k],fs(T,S,e[2*k],e[2*k+1],e[2*G],e[2*G+1])<0;)O=this._addTriangle(k,L,G,i[L],-1,i[k]),i[L]=this._legalize(O+2),r[k]=k,A--,k=G;if(P===M)for(;G=n[P],fs(T,S,e[2*G],e[2*G+1],e[2*P],e[2*P+1])<0;)O=this._addTriangle(G,L,P,-1,i[P],i[G]),this._legalize(O+2),i[G]=O,r[P]=P,A--,P=G;this._hullStart=n[L]=P,r[P]=n[k]=L,r[L]=k,o[this._hashKey(T,S)]=L,o[this._hashKey(e[2*P],e[2*P+1])]=P}this.hull=new Uint32Array(A);for(let D=0,I=this._hullStart;D<A;D++)this.hull[D]=I,I=r[I];this.triangles=this._triangles.subarray(0,this.trianglesLen),this.halfedges=this._halfedges.subarray(0,this.trianglesLen)}_hashKey(e,n){return Math.floor(c4(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(f4(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 b=r[f];if(b===-1){let _=this._hullStart;do{if(this._hullTri[_]===f){this._hullTri[_]=e;break}_=this._hullPrev[_]}while(_!==this._hullStart)}this._link(e,b),this._link(s,r[a]),this._link(a,f);const y=l+(s+1)%3;o<hs.length&&(hs[o++]=y)}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 c4(t,e){const n=t/(Math.abs(t)+Math.abs(e));return(e>0?3-n:1+n)/4}function jc(t,e,n,r){const i=t-n,o=e-r;return i*i+o*o}function f4(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 h4(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 p4(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;oo(t,i,o),e[t[n]]>e[t[r]]&&oo(t,n,r),e[t[o]]>e[t[r]]&&oo(t,o,r),e[t[n]]>e[t[o]]&&oo(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;oo(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 oo(t,e,n){const r=t[e];t[e]=t[n],t[n]=r}function d4(t){return t[0]}function g4(t){return t[1]}const Zm=1e-6;class nr{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)>Zm||Math.abs(this._y1-o)>Zm)&&(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 Vc{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 Km{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,b=r.length,y,_;g<b;g+=3,m+=2){const x=r[g]*2,w=r[g+1]*2,$=r[g+2]*2,R=e[x],A=e[x+1],D=e[w],I=e[w+1],v=e[$],L=e[$+1],T=D-R,S=I-A,M=v-R,P=L-A,G=(T*P-S*M)*2;if(Math.abs(G)<1e-9){if(o===void 0){o=a=0;for(const k of n)o+=e[k*2],a+=e[k*2+1];o/=n.length,a/=n.length}const O=1e9*Math.sign((o-R)*P-(a-A)*M);y=(R+v)/2-O*P,_=(A+L)/2+O*M}else{const O=1/G,k=T*T+S*S,E=M*M+P*P;y=R+(P*k-S*E)*O,_=A+(T*E-M*k)*O}s[m]=y,s[m+1]=_}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 nr: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],b=a[d],y=a[d+1];this._renderSegment(g,m,b,y,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 nr: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 nr: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 Vc;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,b,y;if(l===0){if((d=this._clipSegment(o,a,s,u,l,c))===null)continue;[g,m,b,y]=d}else{if((d=this._clipSegment(s,u,o,a,c,l))===null)continue;[b,y,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(b,y),f&&h&&this._edge(e,f,h,i,i.length),i?i.push(b,y):i=[b,y]}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 m4=2*Math.PI,Qr=Math.pow;function y4(t){return t[0]}function b4(t){return t[1]}function x4(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 v4(t,e,n){return[t+Math.sin(t+e)*n,e+Math.cos(t-e)*n]}class qc{static from(e,n=y4,r=b4,i){return new qc("length"in e?_4(e,n,r,i):Float64Array.from($4(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&&x4(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=v4(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 Km(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 nr: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 nr: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,m4)}return r&&r.value()}renderHull(e){const n=e==null?e=new nr: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 Vc;return this.renderHull(e),e.value()}renderTriangle(e,n){const r=n==null?n=new nr: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 Vc;return this.renderTriangle(e,n),n.value()}}function _4(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*$4(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 Qm={},Zc={},Kc=34,ao=10,Qc=13;function Jm(t){return new Function("d","return {"+t.map(function(e,n){return JSON.stringify(e)+": d["+n+'] || ""'}).join(",")+"}")}function w4(t,e){var n=Jm(t);return function(r,i){return e(n(r),i,t)}}function t1(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 ie(t,e){var n=t+"",r=n.length;return r<e?new Array(e-r+1).join(0)+n:n}function S4(t){return t<0?"-"+ie(-t,6):t>9999?"+"+ie(t,6):ie(t,4)}function A4(t){var e=t.getUTCHours(),n=t.getUTCMinutes(),r=t.getUTCSeconds(),i=t.getUTCMilliseconds();return isNaN(t)?"Invalid Date":S4(t.getUTCFullYear())+"-"+ie(t.getUTCMonth()+1,2)+"-"+ie(t.getUTCDate(),2)+(i?"T"+ie(e,2)+":"+ie(n,2)+":"+ie(r,2)+"."+ie(i,3)+"Z":r?"T"+ie(e,2)+":"+ie(n,2)+":"+ie(r,2)+"Z":n||e?"T"+ie(e,2)+":"+ie(n,2)+"Z":"")}function ds(t){var e=new RegExp('["'+t+`
|
43
|
-
\r]`),n=
|
44
|
-
`)}function s(f,h){return h==null&&(h=
|
45
|
-
`)}function
|
46
|
-
`)}function l(f){return f.map(c).join(t)}function c(f){return f==null?"":f instanceof Date?A4(f):e.test(f+="")?'"'+f.replace(/"/g,'""')+'"':f}return{parse:r,parseRows:i,format:a,formatBody:s,formatRows:u,formatRow:l,formatValue:c}}var rr=ds(","),e1=rr.parse,T4=rr.parseRows,P4=rr.format,M4=rr.formatBody,D4=rr.formatRows,C4=rr.formatRow,L4=rr.formatValue,ir=ds(" "),n1=ir.parse,k4=ir.parseRows,R4=ir.format,E4=ir.formatBody,I4=ir.formatRows,N4=ir.formatRow,B4=ir.formatValue;function F4(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})?)?$/))O4&&i[4]&&!i[7]&&(n=n.replace(/-/g,"/").replace(/T/," ")),n=new Date(n);else continue;t[e]=n}return t}const O4=new Date("2019-01-01T00:00").getHours()||new Date("2019-07-01T00:00").getHours();function z4(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.blob()}function G4(t,e){return fetch(t,e).then(z4)}function Y4(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.arrayBuffer()}function U4(t,e){return fetch(t,e).then(Y4)}function W4(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.text()}function gs(t,e){return fetch(t,e).then(W4)}function r1(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 H4(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 X4=r1(e1),j4=r1(n1);function V4(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 q4(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(q4)}function Jc(t){return(e,n)=>gs(e,n).then(r=>new DOMParser().parseFromString(r,t))}const K4=Jc("application/xml");var Q4=Jc("text/html"),J4=Jc("image/svg+xml");function tD(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 eD(t){const e=+this._x.call(null,t),n=+this._y.call(null,t);return i1(this.cover(e,n),e,n,t)}function i1(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,b,y;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[b=m<<1|g]))return i[b]=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[b]=a:t._root=a,t;do i=i?i[b]=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((b=m<<1|g)===(y=(d>=h)<<1|p>=f));return i[y]=o,i[b]=a,t}function nD(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)i1(this,a[n],s[n],t[n]);return this}function rD(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 iD(){var t=[];return this.visit(function(e){if(!e.length)do t.push(e.data);while(e=e.next)}),t}function oD(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 aD(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,b=(s+l)/2;h.push(new Xt(p[3],m,b,u,l),new Xt(p[2],a,b,m,l),new Xt(p[1],m,s,u,b),new Xt(p[0],a,s,m,b)),(g=(e>=b)<<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 y=t-+this._x.call(null,p.data),_=e-+this._y.call(null,p.data),x=y*y+_*_;if(x<n){var w=Math.sqrt(n=x);i=t-w,o=e-w,c=t+w,f=e+w,r=p.data}}return r}function sD(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,b;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,b=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[b]=n:this._root=n),this):(this._root=o,this)}function uD(t){for(var e=0,n=t.length;e<n;++e)this.remove(t[e]);return this}function lD(){return this._root}function cD(){var t=0;return this.visit(function(e){if(!e.length)do++t;while(e=e.next)}),t}function fD(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 hD(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 pD(t){return t[0]}function dD(t){return arguments.length?(this._x=t,this):this._x}function gD(t){return t[1]}function mD(t){return arguments.length?(this._y=t,this):this._y}function ms(t,e,n){var r=new tf(e??pD,n??gD,NaN,NaN,NaN,NaN);return t==null?r:r.addAll(t)}function tf(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 o1(t){for(var e={data:t.data},n=e;t=t.next;)n=n.next={data:t.data};return e}var jt=ms.prototype=tf.prototype;jt.copy=function(){var t=new tf(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=o1(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]=o1(r));return t},jt.add=eD,jt.addAll=nD,jt.cover=rD,jt.data=iD,jt.extent=oD,jt.find=aD,jt.remove=sD,jt.removeAll=uD,jt.root=lD,jt.size=cD,jt.visit=fD,jt.visitAfter=hD,jt.x=dD,jt.y=mD;function Lt(t){return function(){return t}}function vn(t){return(t()-.5)*1e-6}function yD(t){return t.x+t.vx}function bD(t){return t.y+t.vy}function a1(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,b=0;b<o;++b)for(f=ms(e,yD,bD).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(y);function y(_,x,w,$,R){var A=_.data,D=_.r,I=g+D;if(A){if(A.index>h.index){var v=p-A.x-A.vx,L=d-A.y-A.vy,T=v*v+L*L;T<I*I&&(v===0&&(v=vn(r),T+=v*v),L===0&&(L=vn(r),T+=L*L),T=(I-(T=Math.sqrt(T)))/T*i,h.vx+=(v*=T)*(I=(D*=D)/(m+D)),h.vy+=(L*=T)*I,A.vx-=v*(I=1-I),A.vy-=L*I)}return}return x>p+I||$<p-I||w>d+I||R<d-I}}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 xD(t){return t.index}function s1(t,e){var n=t.get(e);if(!n)throw new Error("node not found: "+e);return n}function vD(t){var e=xD,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 b=0,y=t.length;b<c;++b)for(var _=0,x,w,$,R,A,D,I;_<y;++_)x=t[_],w=x.source,$=x.target,R=$.x+$.vx-w.x-w.vx||vn(l),A=$.y+$.vy-w.y-w.vy||vn(l),D=Math.sqrt(R*R+A*A),D=(D-o[_])/D*m*r[_],R*=D,A*=D,$.vx-=R*(I=u[_]),$.vy-=A*I,w.vx+=R*(I=1-I),w.vy+=A*I}function p(){if(a){var m,b=a.length,y=t.length,_=new Map(a.map((w,$)=>[e(w,$,a),w])),x;for(m=0,s=new Array(b);m<y;++m)x=t[m],x.index=m,typeof x.source!="object"&&(x.source=s1(_,x.source)),typeof x.target!="object"&&(x.target=s1(_,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(y);m<y;++m)x=t[m],u[m]=s[x.source.index]/(s[x.source.index]+s[x.target.index]);r=new Array(y),d(),o=new Array(y),g()}}function d(){if(a)for(var m=0,b=t.length;m<b;++m)r[m]=+n(t[m],m,t)}function g(){if(a)for(var m=0,b=t.length;m<b;++m)o[m]=+i(t[m],m,t)}return h.initialize=function(m,b){a=m,l=b,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 _D=1664525,$D=1013904223,u1=4294967296;function wD(){let t=1;return()=>(t=(_D*t+$D)%u1)/u1}function SD(t){return t.x}function AD(t){return t.y}var TD=10,PD=Math.PI*(3-Math.sqrt(5));function l1(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=Wn("tick","end"),c=wD();t==null&&(t=[]);function f(){h(),l.call("tick",e),n<r&&(u.stop(),l.call("end",e))}function h(g){var m,b=t.length,y;g===void 0&&(g=1);for(var _=0;_<g;++_)for(n+=(o-n)*i,s.forEach(function(x){x(n)}),m=0;m<b;++m)y=t[m],y.fx==null?y.x+=y.vx*=a:(y.x=y.fx,y.vx=0),y.fy==null?y.y+=y.vy*=a:(y.y=y.fy,y.vy=0);return e}function p(){for(var g=0,m=t.length,b;g<m;++g){if(b=t[g],b.index=g,b.fx!=null&&(b.x=b.fx),b.fy!=null&&(b.y=b.fy),isNaN(b.x)||isNaN(b.y)){var y=TD*Math.sqrt(.5+g),_=g*PD;b.x=y*Math.cos(_),b.y=y*Math.sin(_)}(isNaN(b.vx)||isNaN(b.vy))&&(b.vx=b.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,b){var y=0,_=t.length,x,w,$,R,A;for(b==null?b=1/0:b*=b,y=0;y<_;++y)R=t[y],x=g-R.x,w=m-R.y,$=x*x+w*w,$<b&&(A=R,b=$);return A},on:function(g,m){return arguments.length>1?(l.on(g,m),e):l.on(g)}}}function c1(){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,SD,AD).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,b=0,y,_,x;if(p.length){for(y=_=x=0;x<4;++x)(g=p[x])&&(m=Math.abs(g.value))&&(d+=g.value,b+=m,y+=m*g.x,_+=m*g.y);p.x=y/b,p.y=_/b}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 b=p.x-e.x,y=p.y-e.y,_=m-d,x=b*b+y*y;if(_*_/u<x)return x<s&&(b===0&&(b=vn(n),x+=b*b),y===0&&(y=vn(n),x+=y*y),x<a&&(x=Math.sqrt(a*x)),e.vx+=b*p.value*r/x,e.vy+=y*p.value*r/x),!0;if(p.length||x>=s)return;(p.data!==e||p.next)&&(b===0&&(b=vn(n),x+=b*b),y===0&&(y=vn(n),x+=y*y),x<a&&(x=Math.sqrt(a*x)));do p.data!==e&&(_=o[p.data.index]*r/x,e.vx+=b*_,e.vy+=y*_);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 MD(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 f1(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 h1(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 DD(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 CD(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 LD(t){return function(e){return e.replace(/[0-9]/g,function(n){return t[+n]})}}var kD=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function ti(t){if(!(e=kD.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 RD(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 p1;function ED(t,e){var n=ys(t,e);if(!n)return t+"";var r=n[0],i=n[1],o=i-(p1=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 d1(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 g1={"%":(t,e)=>(t*100).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:DD,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)=>d1(t*100,e),r:d1,s:ED,X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function m1(t){return t}var y1=Array.prototype.map,b1=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function x1(t){var e=t.grouping===void 0||t.thousands===void 0?m1:CD(y1.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?m1:LD(y1.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,b=f.width,y=f.comma,_=f.precision,x=f.trim,w=f.type;w==="n"?(y=!0,w="g"):g1[w]||(_===void 0&&(_=12),x=!0,w="g"),(m||h==="0"&&p==="=")&&(m=!0,h="0",p="=");var $=g==="$"?n:g==="#"&&/[boxX]/.test(w)?"0"+w.toLowerCase():"",R=g==="$"?r:/[%p]/.test(w)?a:"",A=g1[w],D=/[defgprs%]/.test(w);_=_===void 0?6:/[gprs]/.test(w)?Math.max(1,Math.min(21,_)):Math.max(0,Math.min(20,_));function I(v){var L=$,T=R,S,M,P;if(w==="c")T=A(v)+T,v="";else{v=+v;var G=v<0||1/v<0;if(v=isNaN(v)?u:A(Math.abs(v),_),x&&(v=RD(v)),G&&+v==0&&d!=="+"&&(G=!1),L=(G?d==="("?d:s:d==="-"||d==="("?"":d)+L,T=(w==="s"?b1[8+p1/3]:"")+T+(G&&d==="("?")":""),D){for(S=-1,M=v.length;++S<M;)if(P=v.charCodeAt(S),48>P||P>57){T=(P===46?i+v.slice(S+1):v.slice(S))+T,v=v.slice(0,S);break}}}y&&!m&&(v=e(v,1/0));var O=L.length+v.length+T.length,k=O<b?new Array(b-O+1).join(h):"";switch(y&&m&&(v=e(k+v,k.length?b-T.length:1/0),k=""),p){case"<":v=L+v+T+k;break;case"=":v=L+k+v+T;break;case"^":v=k.slice(0,O=k.length>>1)+L+v+T+k.slice(O);break;default:v=k+L+v+T;break}return o(v)}return I.toString=function(){return f+""},I}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=b1[8+d/3];return function(b){return p(g*b)+m}}return{format:l,formatPrefix:c}}var xs,so,ef;v1({thousands:",",grouping:[3],currency:["$",""]});function v1(t){return xs=x1(t),so=xs.format,ef=xs.formatPrefix,xs}function _1(t){return Math.max(0,-Jr(Math.abs(t)))}function $1(t,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(Jr(e)/3)))*3-Jr(Math.abs(t)))}function w1(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,Jr(e)-Jr(t))+1}var it=1e-6,uo=1e-12,ht=Math.PI,At=ht/2,vs=ht/4,Vt=ht*2,bt=180/ht,at=ht/180,pt=Math.abs,ei=Math.atan,qt=Math.atan2,rt=Math.cos,_s=Math.ceil,S1=Math.exp,nf=Math.hypot,$s=Math.log,rf=Math.pow,Q=Math.sin,me=Math.sign||function(t){return t>0?1:t<0?-1:0},It=Math.sqrt,of=Math.tan;function A1(t){return t>1?0:t<-1?ht:Math.acos(t)}function Zt(t){return t>1?At:t<-1?-At:Math.asin(t)}function T1(t){return(t=Q(t/2))*t}function wt(){}function ws(t,e){t&&M1.hasOwnProperty(t.type)&&M1[t.type](t,e)}var P1={Feature:function(t,e){ws(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r<i;)ws(n[r].geometry,e)}},M1={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){af(t.coordinates,e,0)},MultiLineString:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)af(n[r],e,0)},Polygon:function(t,e){D1(t.coordinates,e)},MultiPolygon:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)D1(n[r],e)},GeometryCollection:function(t,e){for(var n=t.geometries,r=-1,i=n.length;++r<i;)ws(n[r],e)}};function af(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 D1(t,e){var n=-1,r=t.length;for(e.polygonStart();++n<r;)af(t[n],e,1);e.polygonEnd()}function Ce(t,e){t&&P1.hasOwnProperty(t.type)?P1[t.type](t,e):ws(t,e)}var Ss=new Ct,As=new Ct,C1,L1,sf,uf,lf,Ge={point:wt,lineStart:wt,lineEnd:wt,polygonStart:function(){Ss=new Ct,Ge.lineStart=ID,Ge.lineEnd=ND},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 ID(){Ge.point=BD}function ND(){k1(C1,L1)}function BD(t,e){Ge.point=k1,C1=t,L1=e,t*=at,e*=at,sf=t,uf=rt(e=e/2+vs),lf=Q(e)}function k1(t,e){t*=at,e*=at,e=e/2+vs;var n=t-sf,r=n>=0?1:-1,i=r*n,o=rt(e),a=Q(e),s=lf*a,u=uf*o+s*rt(i),l=s*r*Q(i);Ss.add(qt(l,u)),sf=t,uf=o,lf=a}function FD(t){return As=new Ct,Ce(t,Ge),As*2}function Ts(t){return[qt(t[1],t[0]),Zt(t[2])]}function or(t){var e=t[0],n=t[1],r=rt(n);return[r*rt(e),r*Q(e),Q(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 cf(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 St,oe,Tt,fe,ar,R1,E1,ri,lo,_n,en,nn={point:ff,lineStart:N1,lineEnd:B1,polygonStart:function(){nn.point=F1,nn.lineStart=OD,nn.lineEnd=zD,lo=new Ct,Ge.polygonStart()},polygonEnd:function(){Ge.polygonEnd(),nn.point=ff,nn.lineStart=N1,nn.lineEnd=B1,Ss<0?(St=-(Tt=180),oe=-(fe=90)):lo>it?fe=90:lo<-it&&(oe=-90),en[0]=St,en[1]=Tt},sphere:function(){St=-(Tt=180),oe=-(fe=90)}};function ff(t,e){_n.push(en=[St=t,Tt=t]),e<oe&&(oe=e),e>fe&&(fe=e)}function I1(t,e){var n=or([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-ar,s=a>0?1:-1,u=o[0]*bt*s,l,c=pt(a)>180;c^(s*ar<u&&u<s*t)?(l=o[1]*bt,l>fe&&(fe=l)):(u=(u+360)%360-180,c^(s*ar<u&&u<s*t)?(l=-o[1]*bt,l<oe&&(oe=l)):(e<oe&&(oe=e),e>fe&&(fe=e))),c?t<ar?he(St,t)>he(St,Tt)&&(Tt=t):he(t,Tt)>he(St,Tt)&&(St=t):Tt>=St?(t<St&&(St=t),t>Tt&&(Tt=t)):t>ar?he(St,t)>he(St,Tt)&&(Tt=t):he(t,Tt)>he(St,Tt)&&(St=t)}else _n.push(en=[St=t,Tt=t]);e<oe&&(oe=e),e>fe&&(fe=e),ri=n,ar=t}function N1(){nn.point=I1}function B1(){en[0]=St,en[1]=Tt,nn.point=ff,ri=null}function F1(t,e){if(ri){var n=t-ar;lo.add(pt(n)>180?n+(n>0?360:-360):n)}else R1=t,E1=e;Ge.point(t,e),I1(t,e)}function OD(){Ge.lineStart()}function zD(){F1(R1,E1),Ge.lineEnd(),pt(lo)>it&&(St=-(Tt=180)),en[0]=St,en[1]=Tt,ri=null}function he(t,e){return(e-=t)<0?e+360:e}function GD(t,e){return t[0]-e[0]}function O1(t,e){return t[0]<=t[1]?t[0]<=e&&e<=t[1]:e<t[0]||t[1]<e}function YD(t){var e,n,r,i,o,a,s;if(fe=Tt=-(St=oe=1/0),_n=[],Ce(t,nn),n=_n.length){for(_n.sort(GD),e=1,r=_n[0],o=[r];e<n;++e)i=_n[e],O1(r,i[0])||O1(r,i[1])?(he(r[0],i[1])>he(r[0],r[1])&&(r[1]=i[1]),he(i[0],r[1])>he(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=he(r[1],i[0]))>a&&(a=s,St=i[0],Tt=r[1])}return _n=en=null,St===1/0||oe===1/0?[[NaN,NaN],[NaN,NaN]]:[[St,oe],[Tt,fe]]}var co,Cs,Ls,ks,Rs,Es,Is,Ns,hf,pf,df,z1,G1,Kt,Qt,Jt,Le={sphere:wt,point:gf,lineStart:Y1,lineEnd:U1,polygonStart:function(){Le.lineStart=HD,Le.lineEnd=XD},polygonEnd:function(){Le.lineStart=Y1,Le.lineEnd=U1}};function gf(t,e){t*=at,e*=at;var n=rt(e);fo(n*rt(t),n*Q(t),Q(e))}function fo(t,e,n){++co,Ls+=(t-Ls)/co,ks+=(e-ks)/co,Rs+=(n-Rs)/co}function Y1(){Le.point=UD}function UD(t,e){t*=at,e*=at;var n=rt(e);Kt=n*rt(t),Qt=n*Q(t),Jt=Q(e),Le.point=WD,fo(Kt,Qt,Jt)}function WD(t,e){t*=at,e*=at;var n=rt(e),r=n*rt(t),i=n*Q(t),o=Q(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)),fo(Kt,Qt,Jt)}function U1(){Le.point=gf}function HD(){Le.point=jD}function XD(){W1(z1,G1),Le.point=gf}function jD(t,e){z1=t,G1=e,t*=at,e*=at,Le.point=W1;var n=rt(e);Kt=n*rt(t),Qt=n*Q(t),Jt=Q(e),fo(Kt,Qt,Jt)}function W1(t,e){t*=at,e*=at;var n=rt(e),r=n*rt(t),i=n*Q(t),o=Q(e),a=Qt*o-Jt*i,s=Jt*r-Kt*o,u=Kt*i-Qt*r,l=nf(a,s,u),c=Zt(l),f=l&&-c/l;hf.add(f*a),pf.add(f*s),df.add(f*u),Cs+=c,Es+=c*(Kt+(Kt=r)),Is+=c*(Qt+(Qt=i)),Ns+=c*(Jt+(Jt=o)),fo(Kt,Qt,Jt)}function VD(t){co=Cs=Ls=ks=Rs=Es=Is=Ns=0,hf=new Ct,pf=new Ct,df=new Ct,Ce(t,Le);var e=+hf,n=+pf,r=+df,i=nf(e,n,r);return i<uo&&(e=Es,n=Is,r=Ns,Cs<it&&(e=Ls,n=ks,r=Rs),i=nf(e,n,r),i<uo)?[NaN,NaN]:[qt(n,e)*bt,Zt(r/i)*bt]}function ii(t){return function(){return t}}function mf(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 yf(t,e){return pt(t)>ht&&(t-=Math.round(t/Vt)*Vt),[t,e]}yf.invert=yf;function bf(t,e,n){return(t%=Vt)?e||n?mf(X1(t),j1(e,n)):X1(t):e||n?j1(e,n):yf}function H1(t){return function(e,n){return e+=t,pt(e)>ht&&(e-=Math.round(e/Vt)*Vt),[e,n]}}function X1(t){var e=H1(t);return e.invert=H1(-t),e}function j1(t,e){var n=rt(t),r=Q(t),i=rt(e),o=Q(e);function a(s,u){var l=rt(u),c=rt(s)*l,f=Q(s)*l,h=Q(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=rt(u),c=rt(s)*l,f=Q(s)*l,h=Q(u),p=h*i-f*o;return[qt(f*i+h*o,c*n+p*r),Zt(p*n-c*r)]},a}function V1(t){t=bf(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 q1(t,e,n,r,i,o){if(n){var a=rt(e),s=Q(e),u=r*n;i==null?(i=e+r*Vt,o=e-u/2):(i=Z1(a,i),o=Z1(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*rt(c),-s*Q(c)]),t.point(l[0],l[1])}}function Z1(t,e){e=or(e),e[0]-=t,Ds(e);var n=A1(-e[1]);return((-e[2]<0?-n:n)+Vt-it)%Vt}function qD(){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=bf(-u[0]*at,-u[1]*at,0).invert,q1(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 K1(){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 Q1(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],b=d[g],y;if(Bs(m,b)){if(!m[2]&&!b[2]){for(i.lineStart(),s=0;s<g;++s)i.point((m=d[s])[0],m[1]);i.lineEnd();return}b[0]+=2*it}o.push(y=new Fs(m,d,null,!0)),a.push(y.o=new Fs(m,null,y,!1)),o.push(y=new Fs(b,d,null,!1)),a.push(y.o=new Fs(b,null,y,!0))}}),!!o.length){for(a.sort(e),J1(o),J1(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 J1(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 xf(t){return pt(t[0])<=ht?t[0]:me(t[0])*((pt(t[0])+ht)%Vt-ht)}function ty(t,e){var n=xf(e),r=e[1],i=Q(r),o=[Q(n),-rt(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=xf(p),g=p[1]/2+vs,m=Q(g),b=rt(g),y=0;y<h;++y,d=x,m=$,b=R,p=_){var _=f[y],x=xf(_),w=_[1]/2+vs,$=Q(w),R=rt(w),A=x-d,D=A>=0?1:-1,I=D*A,v=I>ht,L=m*$;if(u.add(qt(L*D*Q(I),b*R+L*rt(I))),a+=v?A+D*Vt:A,v^d>=n^x>=n){var T=ni(or(p),or(_));Ds(T);var S=ni(o,T);Ds(S);var M=(v^A>=0?-1:1)*Zt(S[2]);(r>M||r===M&&(T[0]||T[1]))&&(s+=v^A>=0?1:-1)}}return(a<-it||a<it&&u<-uo)^s&1}function ey(t,e,n,r){return function(i){var o=e(i),a=K1(),s=e(a),u=!1,l,c,f,h={point:p,lineStart:g,lineEnd:m,polygonStart:function(){h.point=b,h.lineStart=y,h.lineEnd=_,c=[],l=[]},polygonEnd:function(){h.point=p,h.lineStart=g,h.lineEnd=m,c=ql(c);var x=ty(l,r);c.length?(u||(i.polygonStart(),u=!0),Q1(c,KD,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,w){t(x,w)&&i.point(x,w)}function d(x,w){o.point(x,w)}function g(){h.point=d,o.lineStart()}function m(){h.point=p,o.lineEnd()}function b(x,w){f.push([x,w]),s.point(x,w)}function y(){s.lineStart(),f=[]}function _(){b(f[0][0],f[0][1]),s.lineEnd();var x=s.clean(),w=a.result(),$,R=w.length,A,D,I;if(f.pop(),l.push(f),f=null,!!R){if(x&1){if(D=w[0],(A=D.length-1)>0){for(u||(i.polygonStart(),u=!0),i.lineStart(),$=0;$<A;++$)i.point((I=D[$])[0],I[1]);i.lineEnd()}return}R>1&&x&2&&w.push(w.pop().concat(w.shift())),c.push(w.filter(ZD))}}return h}}function ZD(t){return t.length>1}function KD(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 vf=ey(function(){return!0},QD,tC,[-ht,-At]);function QD(t){var e=NaN,n=NaN,r=NaN,i;return{lineStart:function(){t.lineStart(),i=1},point:function(o,a){var s=o>0?ht:-ht,u=pt(o-e);pt(u-ht)<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>=ht&&(pt(e-r)<it&&(e-=r*it),pt(o-s)<it&&(o-=s*it),n=JD(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 JD(t,e,n,r){var i,o,a=Q(t-n);return pt(a)>it?ei((Q(e)*(o=rt(r))*Q(n)-Q(r)*(i=rt(e))*Q(t))/(i*o*a)):(e+r)/2}function tC(t,e,n,r){var i;if(t==null)i=n*At,r.point(-ht,i),r.point(0,i),r.point(ht,i),r.point(ht,0),r.point(ht,-i),r.point(0,-i),r.point(-ht,-i),r.point(-ht,0),r.point(-ht,i);else if(pt(t[0]-e[0])>it){var o=t[0]<e[0]?ht:-ht;i=n*o/2,r.point(-o,i),r.point(0,i),r.point(o,i)}else r.point(e[0],e[1])}function ny(t){var e=rt(t),n=2*at,r=e>0,i=pt(e)>it;function o(c,f,h,p){q1(p,t,n,h,c,f)}function a(c,f){return rt(c)*rt(f)>e}function s(c){var f,h,p,d,g;return{lineStart:function(){d=p=!1,g=1},point:function(m,b){var y=[m,b],_,x=a(m,b),w=r?x?0:l(m,b):x?l(m+(m<0?ht:-ht),b):0;if(!f&&(d=p=x)&&c.lineStart(),x!==p&&(_=u(f,y),(!_||Bs(f,_)||Bs(y,_))&&(y[2]=1)),x!==p)g=0,x?(c.lineStart(),_=u(y,f),c.point(_[0],_[1])):(_=u(f,y),c.point(_[0],_[1],2),c.lineEnd()),f=_;else if(i&&f&&r^x){var $;!(w&h)&&($=u(y,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,y))&&c.point(y[0],y[1]),f=y,p=x,h=w},lineEnd:function(){p&&c.lineEnd(),f=null},clean:function(){return g|(d&&p)<<1}}}function u(c,f,h){var p=or(c),d=or(f),g=[1,0,0],m=ni(p,d),b=Ps(m,m),y=m[0],_=b-y*y;if(!_)return!h&&c;var x=e*b/_,w=-e*y/_,$=ni(g,m),R=Ms(g,x),A=Ms(m,w);cf(R,A);var D=$,I=Ps(R,D),v=Ps(D,D),L=I*I-v*(Ps(R,R)-1);if(!(L<0)){var T=It(L),S=Ms(D,(-I-T)/v);if(cf(S,R),S=Ts(S),!h)return S;var M=c[0],P=f[0],G=c[1],O=f[1],k;P<M&&(k=M,M=P,P=k);var E=P-M,C=pt(E-ht)<it,F=C||E<it;if(!C&&O<G&&(k=G,G=O,O=k),F?C?G+O>0^S[1]<(pt(S[0]-M)<it?G:O):G<=S[1]&&S[1]<=O:E>ht^(M<=S[0]&&S[0]<=P)){var H=Ms(D,(-I+T)/v);return cf(H,R),[S,Ts(H)]}}}function l(c,f){var h=r?t:ht-t,p=0;return c<-h?p|=1:c>h&&(p|=2),f<-h?p|=4:f>h&&(p|=8),p}return ey(a,s,o,r?[0,-t]:[-ht,t-ht])}function eC(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 ho=1e9,Os=-ho;function zs(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=K1(),h,p,d,g,m,b,y,_,x,w,$,R={point:A,lineStart:L,lineEnd:T,polygonStart:I,polygonEnd:v};function A(M,P){i(M,P)&&c.point(M,P)}function D(){for(var M=0,P=0,G=p.length;P<G;++P)for(var O=p[P],k=1,E=O.length,C=O[0],F,H,J=C[0],z=C[1];k<E;++k)F=J,H=z,C=O[k],J=C[0],z=C[1],H<=r?z>r&&(J-F)*(r-H)>(z-H)*(t-F)&&++M:z<=r&&(J-F)*(r-H)<(z-H)*(t-F)&&--M;return M}function I(){c=f,h=[],p=[],$=!0}function v(){var M=D(),P=$&&M,G=(h=ql(h)).length;(P||G)&&(l.polygonStart(),P&&(l.lineStart(),o(null,null,1,l),l.lineEnd()),G&&Q1(h,s,M,o,l),l.polygonEnd()),c=l,h=p=d=null}function L(){R.point=S,p&&p.push(d=[]),w=!0,x=!1,y=_=NaN}function T(){h&&(S(g,m),b&&x&&f.rejoin(),h.push(f.result())),R.point=A,x&&c.lineEnd()}function S(M,P){var G=i(M,P);if(p&&d.push([M,P]),w)g=M,m=P,b=G,w=!1,G&&(c.lineStart(),c.point(M,P));else if(G&&x)c.point(M,P);else{var O=[y=Math.max(Os,Math.min(ho,y)),_=Math.max(Os,Math.min(ho,_))],k=[M=Math.max(Os,Math.min(ho,M)),P=Math.max(Os,Math.min(ho,P))];eC(O,k,t,e,n,r)?(x||(c.lineStart(),c.point(O[0],O[1])),c.point(k[0],k[1]),G||c.lineEnd(),$=!1):G&&(c.lineStart(),c.point(M,P),$=!1)}y=M,_=P,x=G}return R}}function nC(){var t=0,e=0,n=960,r=500,i,o,a;return a={stream:function(s){return i&&o===s?i:i=zs(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 _f,$f,Gs,Ys,oi={sphere:wt,point:wt,lineStart:rC,lineEnd:wt,polygonStart:wt,polygonEnd:wt};function rC(){oi.point=oC,oi.lineEnd=iC}function iC(){oi.point=oi.lineEnd=wt}function oC(t,e){t*=at,e*=at,$f=t,Gs=Q(e),Ys=rt(e),oi.point=aC}function aC(t,e){t*=at,e*=at;var n=Q(e),r=rt(e),i=pt(t-$f),o=rt(i),a=Q(i),s=r*a,u=Ys*n-Gs*r*o,l=Gs*n+Ys*r*o;_f.add(qt(It(s*s+u*u),l)),$f=t,Gs=n,Ys=r}function ry(t){return _f=new Ct,Ce(t,oi),+_f}var wf=[null,null],sC={type:"LineString",coordinates:wf};function Us(t,e){return wf[0]=t,wf[1]=e,ry(sC)}var iy={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}},oy={Sphere:function(){return!0},Point:function(t,e){return ay(t.coordinates,e)},MultiPoint:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)if(ay(n[r],e))return!0;return!1},LineString:function(t,e){return sy(t.coordinates,e)},MultiLineString:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)if(sy(n[r],e))return!0;return!1},Polygon:function(t,e){return uy(t.coordinates,e)},MultiPolygon:function(t,e){for(var n=t.coordinates,r=-1,i=n.length;++r<i;)if(uy(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&&oy.hasOwnProperty(t.type)?oy[t.type](t,e):!1}function ay(t,e){return Us(t,e)===0}function sy(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))<uo*i))return!0;n=r}return!1}function uy(t,e){return!!ty(t.map(uC),ly(e))}function uC(t){return t=t.map(ly),t.pop(),t}function ly(t){return[t[0]*at,t[1]*at]}function lC(t,e){return(t&&iy.hasOwnProperty(t.type)?iy[t.type]:Ws)(t,e)}function cy(t,e,n){var r=gn(t,e-it,n).concat(e);return function(i){return r.map(function(o){return[i,o]})}}function fy(t,e,n){var r=gn(t,e-it,n).concat(e);return function(i){return r.map(function(o){return[o,i]})}}function hy(){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 b(){return{type:"MultiLineString",coordinates:y()}}function y(){return gn(_s(r/c)*c,n,c).map(d).concat(gn(_s(s/f)*f,a,f).map(g)).concat(gn(_s(e/u)*u,t,u).filter(function(_){return pt(_%c)>it}).map(h)).concat(gn(_s(o/l)*l,i,l).filter(function(_){return pt(_%f)>it}).map(p))}return b.lines=function(){return y().map(function(_){return{type:"LineString",coordinates:_}})},b.outline=function(){return{type:"Polygon",coordinates:[d(r).concat(g(a).slice(1),d(n).reverse().slice(1),g(s).reverse().slice(1))]}},b.extent=function(_){return arguments.length?b.extentMajor(_).extentMinor(_):b.extentMinor()},b.extentMajor=function(_){return arguments.length?(r=+_[0][0],n=+_[1][0],s=+_[0][1],a=+_[1][1],r>n&&(_=r,r=n,n=_),s>a&&(_=s,s=a,a=_),b.precision(m)):[[r,s],[n,a]]},b.extentMinor=function(_){return arguments.length?(e=+_[0][0],t=+_[1][0],o=+_[0][1],i=+_[1][1],e>t&&(_=e,e=t,t=_),o>i&&(_=o,o=i,i=_),b.precision(m)):[[e,o],[t,i]]},b.step=function(_){return arguments.length?b.stepMajor(_).stepMinor(_):b.stepMinor()},b.stepMajor=function(_){return arguments.length?(c=+_[0],f=+_[1],b):[c,f]},b.stepMinor=function(_){return arguments.length?(u=+_[0],l=+_[1],b):[u,l]},b.precision=function(_){return arguments.length?(m=+_,h=cy(o,i,90),p=fy(e,t,m),d=cy(s,a,90),g=fy(r,n,m),b):m},b.extentMajor([[-180,-90+it],[180,90-it]]).extentMinor([[-180,-80-it],[180,80+it]])}function cC(){return hy()()}function fC(t,e){var n=t[0]*at,r=t[1]*at,i=e[0]*at,o=e[1]*at,a=rt(r),s=Q(r),u=rt(o),l=Q(o),c=a*rt(n),f=a*Q(n),h=u*rt(i),p=u*Q(i),d=2*Zt(It(T1(o-r)+a*u*T1(i-n))),g=Q(d),m=d?function(b){var y=Q(b*=d)/g,_=Q(d-b)/g,x=_*c+y*h,w=_*f+y*p,$=_*s+y*l;return[qt(w,x)*bt,qt($,It(x*x+w*w))*bt]}:function(){return[n*bt,r*bt]};return m.distance=d,m}const po=t=>t;var Sf=new Ct,Af=new Ct,py,dy,Tf,Pf,rn={point:wt,lineStart:wt,lineEnd:wt,polygonStart:function(){rn.lineStart=hC,rn.lineEnd=dC},polygonEnd:function(){rn.lineStart=rn.lineEnd=rn.point=wt,Sf.add(pt(Af)),Af=new Ct},result:function(){var t=Sf/2;return Sf=new Ct,t}};function hC(){rn.point=pC}function pC(t,e){rn.point=gy,py=Tf=t,dy=Pf=e}function gy(t,e){Af.add(Pf*t-Tf*e),Tf=t,Pf=e}function dC(){gy(py,dy)}var ai=1/0,Hs=ai,go=-ai,Xs=go,js={point:gC,lineStart:wt,lineEnd:wt,polygonStart:wt,polygonEnd:wt,result:function(){var t=[[ai,Hs],[go,Xs]];return go=Xs=-(Hs=ai=1/0),t}};function gC(t,e){t<ai&&(ai=t),t>go&&(go=t),e<Hs&&(Hs=e),e>Xs&&(Xs=e)}var Mf=0,Df=0,mo=0,Vs=0,qs=0,si=0,Cf=0,Lf=0,yo=0,my,yy,Ye,Ue,ye={point:sr,lineStart:by,lineEnd:xy,polygonStart:function(){ye.lineStart=bC,ye.lineEnd=xC},polygonEnd:function(){ye.point=sr,ye.lineStart=by,ye.lineEnd=xy},result:function(){var t=yo?[Cf/yo,Lf/yo]:si?[Vs/si,qs/si]:mo?[Mf/mo,Df/mo]:[NaN,NaN];return Mf=Df=mo=Vs=qs=si=Cf=Lf=yo=0,t}};function sr(t,e){Mf+=t,Df+=e,++mo}function by(){ye.point=mC}function mC(t,e){ye.point=yC,sr(Ye=t,Ue=e)}function yC(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,sr(Ye=t,Ue=e)}function xy(){ye.point=sr}function bC(){ye.point=vC}function xC(){vy(my,yy)}function vC(t,e){ye.point=vy,sr(my=Ye=t,yy=Ue=e)}function vy(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,Cf+=i*(Ye+t),Lf+=i*(Ue+e),yo+=i*3,sr(Ye=t,Ue=e)}function _y(t){this._context=t}_y.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 kf=new Ct,Rf,$y,wy,bo,xo,vo={point:wt,lineStart:function(){vo.point=_C},lineEnd:function(){Rf&&Sy($y,wy),vo.point=wt},polygonStart:function(){Rf=!0},polygonEnd:function(){Rf=null},result:function(){var t=+kf;return kf=new Ct,t}};function _C(t,e){vo.point=Sy,$y=bo=t,wy=xo=e}function Sy(t,e){bo-=t,xo-=e,kf.add(It(bo*bo+xo*xo)),bo=t,xo=e}let Ay,Zs,Ty,Py;class My{constructor(e){this._append=e==null?Dy:$C(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!==Ty||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`,Ty=r,Zs=this._append,Py=this._,this._=i}this._+=Py;break}}}result(){const e=this._;return this._="",e.length?e:null}}function Dy(t){let e=1;this._+=t[0];for(const n=t.length;e<n;++e)this._+=arguments[e]+t[e]}function $C(t){const e=Math.floor(t);if(!(e>=0))throw new RangeError(`invalid digits: ${t}`);if(e>15)return Dy;if(e!==Ay){const n=10**e;Ay=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 wC(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(vo)),vo.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,po):(t=s).stream,a):t},a.context=function(s){return arguments.length?(o=s==null?(e=null,new My(n)):new _y(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 My(n)),a},a.projection(t).digits(n).context(e)}function SC(t){return{stream:_o(t)}}function _o(t){return function(e){var n=new Ef;for(var r in t)n[r]=t[r];return n.stream=e,n}}function Ef(){}Ef.prototype={constructor:Ef,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 If(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 If(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 Nf(t,e,n){return Ks(t,[[0,0],e],n)}function Bf(t,e,n){return If(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 Ff(t,e,n){return If(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 Cy=16,AC=rt(30*at);function Ly(t,e){return+e?PC(t,e):TC(t)}function TC(t){return _o({point:function(e,n){e=t(e,n),this.stream.point(e[0],e[1])}})}function PC(t,e){function n(r,i,o,a,s,u,l,c,f,h,p,d,g,m){var b=l-r,y=c-i,_=b*b+y*y;if(_>4*e&&g--){var x=a+h,w=s+p,$=u+d,R=It(x*x+w*w+$*$),A=Zt($/=R),D=pt(pt($)-1)<it||pt(o-f)<it?(o+f)/2:qt(w,x),I=t(D,A),v=I[0],L=I[1],T=v-r,S=L-i,M=y*T-b*S;(M*M/_>e||pt((b*T+y*S)/_-.5)>.3||a*h+s*p+u*d<AC)&&(n(r,i,o,a,s,u,v,L,D,x/=R,w/=R,$,g,m),m.point(v,L),n(v,L,D,x,w,$,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:b,lineStart:y,lineEnd:x,polygonStart:function(){r.polygonStart(),m.lineStart=w},polygonEnd:function(){r.polygonEnd(),m.lineStart=y}};function b(A,D){A=t(A,D),r.point(A[0],A[1])}function y(){f=NaN,m.point=_,r.lineStart()}function _(A,D){var I=or([A,D]),v=t(A,D);n(f,h,c,p,d,g,f=v[0],h=v[1],c=A,p=I[0],d=I[1],g=I[2],Cy,r),r.point(f,h)}function x(){m.point=b,r.lineEnd()}function w(){y(),m.point=$,m.lineEnd=R}function $(A,D){_(i=A,D),o=f,a=h,s=p,u=d,l=g,m.point=_}function R(){n(f,h,c,p,d,g,o,a,i,s,u,l,Cy,r),m.lineEnd=x,x()}return m}}var MC=_o({point:function(t,e){this.stream.point(t*at,e*at)}});function DC(t){return _o({point:function(e,n){var r=t(e,n);return this.stream.point(r[0],r[1])}})}function CC(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 ky(t,e,n,r,i,o){if(!o)return CC(t,e,n,r,i);var a=rt(o),s=Q(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 Of(function(){return t})()}function Of(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=vf,m=null,b,y,_,x=po,w=.5,$,R,A,D,I;function v(M){return A(M[0]*at,M[1]*at)}function L(M){return M=A.invert(M[0],M[1]),M&&[M[0]*bt,M[1]*bt]}v.stream=function(M){return D&&I===M?D:D=MC(DC(c)(g($(x(I=M)))))},v.preclip=function(M){return arguments.length?(g=M,d=void 0,S()):g},v.postclip=function(M){return arguments.length?(x=M,m=b=y=_=null,S()):x},v.clipAngle=function(M){return arguments.length?(g=+M?ny(d=M*at):(d=null,vf),S()):d*bt},v.clipExtent=function(M){return arguments.length?(x=M==null?(m=b=y=_=null,po):zs(m=+M[0][0],b=+M[0][1],y=+M[1][0],_=+M[1][1]),S()):m==null?null:[[m,b],[y,_]]},v.scale=function(M){return arguments.length?(n=+M,T()):n},v.translate=function(M){return arguments.length?(r=+M[0],i=+M[1],T()):[r,i]},v.center=function(M){return arguments.length?(o=M[0]%360*at,a=M[1]%360*at,T()):[o*bt,a*bt]},v.rotate=function(M){return arguments.length?(s=M[0]%360*at,u=M[1]%360*at,l=M.length>2?M[2]%360*at:0,T()):[s*bt,u*bt,l*bt]},v.angle=function(M){return arguments.length?(f=M%360*at,T()):f*bt},v.reflectX=function(M){return arguments.length?(h=M?-1:1,T()):h<0},v.reflectY=function(M){return arguments.length?(p=M?-1:1,T()):p<0},v.precision=function(M){return arguments.length?($=Ly(R,w=M*M),S()):It(w)},v.fitExtent=function(M,P){return Ks(v,M,P)},v.fitSize=function(M,P){return Nf(v,M,P)},v.fitWidth=function(M,P){return Bf(v,M,P)},v.fitHeight=function(M,P){return Ff(v,M,P)};function T(){var M=ky(n,0,0,h,p,f).apply(null,e(o,a)),P=ky(n,r-M[0],i-M[1],h,p,f);return c=bf(s,u,l),R=mf(e,P),A=mf(c,R),$=Ly(R,w),S()}function S(){return D=I=null,v}return function(){return e=t.apply(this,arguments),v.invert=e.invert&&L,T()}}function zf(t){var e=0,n=ht/3,r=Of(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 LC(t){var e=rt(t);function n(r,i){return[r*e,Q(i)/e]}return n.invert=function(r,i){return[r/e,Zt(i*e)]},n}function Ry(t,e){var n=Q(t),r=(n+Q(e))/2;if(pt(r)<it)return LC(t);var i=1+n*(2*r-n),o=It(i)/r;function a(s,u){var l=It(i-2*r*Q(u))/r;return[l*Q(s*=r),o-l*rt(s)]}return a.invert=function(s,u){var l=o-u,c=qt(s,pt(l))*me(l);return l*r<0&&(c-=ht*me(s)*me(l)),[c/r,Zt((i-(s*s+l*l)*r*r)/(2*r))]},a}function Qs(){return zf(Ry).scale(155.424).center([0,33.6442])}function Ey(){return Qs().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function kC(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 RC(){var t,e,n=Ey(),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=kC([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 Nf(c,h,p)},c.fitWidth=function(h,p){return Bf(c,h,p)},c.fitHeight=function(h,p){return Ff(c,h,p)};function f(){return t=e=null,c}return c.scale(1070)}function Iy(t){return function(e,n){var r=rt(e),i=rt(n),o=t(r*i);return o===1/0?[2,0]:[o*i*Q(e),o*Q(n)]}}function $o(t){return function(e,n){var r=It(e*e+n*n),i=t(r),o=Q(i),a=rt(i);return[qt(e*o,r*a),Zt(r&&n*o/r)]}}var Gf=Iy(function(t){return It(2/(1+t))});Gf.invert=$o(function(t){return 2*Zt(t/2)});function EC(){return We(Gf).scale(124.75).clipAngle(180-.001)}var Yf=Iy(function(t){return(t=A1(t))&&t/Q(t)});Yf.invert=$o(function(t){return t});function IC(){return We(Yf).scale(79.4188).clipAngle(180-.001)}function wo(t,e){return[t,$s(of((At+e)/2))]}wo.invert=function(t,e){return[t,2*ei(S1(e))-At]};function NC(){return Ny(wo).scale(961/Vt)}function Ny(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=ht*r(),h=e(V1(e.rotate()).invert([0,0]));return o(a==null?[[h[0]-f,h[1]-f],[h[0]+f,h[1]+f]]:t===wo?[[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 of((At+t)/2)}function By(t,e){var n=rt(t),r=t===e?Q(t):$s(n/rt(e))/$s(Js(e)/Js(t)),i=n*rf(Js(t),r)/r;if(!r)return wo;function o(a,s){i>0?s<-At+it&&(s=-At+it):s>At-it&&(s=At-it);var u=i/rf(Js(s),r);return[u*Q(r*a),i-u*rt(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-=ht*me(a)*me(u)),[c/r,2*ei(rf(i/l,1/r))-At]},o}function BC(){return zf(By).scale(109.5).parallels([30,30])}function So(t,e){return[t,e]}So.invert=So;function FC(){return We(So).scale(152.63)}function Fy(t,e){var n=rt(t),r=t===e?Q(t):(n-rt(e))/(e-t),i=n/r+t;if(pt(r)<it)return So;function o(a,s){var u=i-s,l=r*a;return[u*Q(l),i-u*rt(l)]}return o.invert=function(a,s){var u=i-s,l=qt(a,pt(u))*me(u);return u*r<0&&(l-=ht*me(a)*me(u)),[l/r,i-me(r)*It(a*a+u*u)]},o}function OC(){return zf(Fy).scale(131.154).center([0,13.9389])}var Ao=1.340264,To=-.081106,Po=893e-6,Mo=.003796,tu=It(3)/2,zC=12;function Uf(t,e){var n=Zt(tu*Q(e)),r=n*n,i=r*r*r;return[t*rt(n)/(tu*(Ao+3*To*r+i*(7*Po+9*Mo*r))),n*(Ao+To*r+i*(Po+Mo*r))]}Uf.invert=function(t,e){for(var n=e,r=n*n,i=r*r*r,o=0,a,s,u;o<zC&&(s=n*(Ao+To*r+i*(Po+Mo*r))-e,u=Ao+3*To*r+i*(7*Po+9*Mo*r),n-=a=s/u,r=n*n,i=r*r*r,!(pt(a)<uo));++o);return[tu*t*(Ao+3*To*r+i*(7*Po+9*Mo*r))/rt(n),Zt(Q(n)/tu)]};function GC(){return We(Uf).scale(177.158)}function Wf(t,e){var n=rt(e),r=rt(t)*n;return[n*Q(t)/r,Q(e)/r]}Wf.invert=$o(ei);function YC(){return We(Wf).scale(144.049).clipAngle(60)}function UC(){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=_o({point:function(x,w){var $=_([x,w]);this.stream.point($[0],$[1])}}),g=po,m,b;function y(){return h=t*r,p=t*i,m=b=null,_}function _(x){var w=x[0]*h,$=x[1]*p;if(o){var R=$*a-w*s;w=w*a+$*s,$=R}return[w+e,$+n]}return _.invert=function(x){var w=x[0]-e,$=x[1]-n;if(o){var R=$*a+w*s;w=w*a-$*s,$=R}return[w/h,$/p]},_.stream=function(x){return m&&b===x?m:m=d(g(b=x))},_.postclip=function(x){return arguments.length?(g=x,u=l=c=f=null,y()):g},_.clipExtent=function(x){return arguments.length?(g=x==null?(u=l=c=f=null,po):zs(u=+x[0][0],l=+x[0][1],c=+x[1][0],f=+x[1][1]),y()):u==null?null:[[u,l],[c,f]]},_.scale=function(x){return arguments.length?(t=+x,y()):t},_.translate=function(x){return arguments.length?(e=+x[0],n=+x[1],y()):[e,n]},_.angle=function(x){return arguments.length?(o=x%360*at,s=Q(o),a=rt(o),y()):o*bt},_.reflectX=function(x){return arguments.length?(r=x?-1:1,y()):r<0},_.reflectY=function(x){return arguments.length?(i=x?-1:1,y()):i<0},_.fitExtent=function(x,w){return Ks(_,x,w)},_.fitSize=function(x,w){return Nf(_,x,w)},_.fitWidth=function(x,w){return Bf(_,x,w)},_.fitHeight=function(x,w){return Ff(_,x,w)},_}function Hf(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)))]}Hf.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 WC(){return We(Hf).scale(175.295)}function Xf(t,e){return[rt(e)*Q(t),Q(e)]}Xf.invert=$o(Zt);function HC(){return We(Xf).scale(249.5).clipAngle(90+it)}function jf(t,e){var n=rt(e),r=1+rt(t)*n;return[n*Q(t)/r,Q(e)/r]}jf.invert=$o(function(t){return 2*ei(t)});function XC(){return We(jf).scale(250).clipAngle(142)}function Vf(t,e){return[$s(of((At+e)/2)),-t]}Vf.invert=function(t,e){return[-e,2*ei(S1(t))-At]};function jC(){var t=Ny(Vf),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 VC(t,e){return t.parent===e.parent?1:2}function qC(t){return t.reduce(ZC,0)/t.length}function ZC(t,e){return t+e.x}function KC(t){return 1+t.reduce(QC,0)}function QC(t,e){return Math.max(t,e.y)}function JC(t){for(var e;e=t.children;)t=e[0];return t}function t7(t){for(var e;e=t.children;)t=e[e.length-1];return t}function e7(){var t=VC,e=1,n=1,r=!1;function i(o){var a,s=0;o.eachAfter(function(h){var p=h.children;p?(h.x=qC(p),h.y=KC(p)):(h.x=a?s+=t(h,a):0,h.y=0,a=h)});var u=JC(o),l=t7(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 n7(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 r7(){return this.eachAfter(n7)}function i7(t,e){let n=-1;for(const r of this)t.call(e,r,++n,this);return this}function o7(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 a7(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 s7(t,e){let n=-1;for(const r of this)if(t.call(e,r,++n,this))return r}function u7(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 l7(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})}function c7(t){for(var e=this,n=f7(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 f7(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 h7(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e}function p7(){return Array.from(this)}function d7(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t}function g7(){var t=this,e=[];return t.each(function(n){n!==t&&e.push({source:n.parent,target:n})}),e}function*m7(){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=x7)):e===void 0&&(e=b7);for(var n=new ur(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 ur(a[s])),o.parent=r,o.depth=r.depth+1;return n.eachBefore(Oy)}function y7(){return eu(this).eachBefore(v7)}function b7(t){return t.children}function x7(t){return Array.isArray(t)?t[1]:null}function v7(t){t.data.value!==void 0&&(t.value=t.data.value),t.data=t.data.data}function Oy(t){var e=0;do t.height=e;while((t=t.parent)&&t.height<++e)}function ur(t){this.data=t,this.depth=this.height=0,this.parent=null}ur.prototype=eu.prototype={constructor:ur,count:r7,each:i7,eachAfter:a7,eachBefore:o7,find:s7,sum:u7,sort:l7,path:c7,ancestors:h7,descendants:p7,leaves:d7,links:g7,copy:y7,[Symbol.iterator]:m7};function nu(t){return t==null?null:zy(t)}function zy(t){if(typeof t!="function")throw new Error;return t}function lr(){return 0}function ui(t){return function(){return t}}const _7=1664525,$7=1013904223,Gy=4294967296;function qf(){let t=1;return()=>(t=(_7*t+$7)%Gy)/Gy}function w7(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function S7(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 A7(t){return Yy(t,qf())}function Yy(t,e){for(var n=0,r=(t=S7(Array.from(t),e)).length,i=[],o,a;n<r;)o=t[n],a&&Uy(a,o)?++n:(a=P7(i=T7(i,o)),n=0);return a}function T7(t,e){var n,r;if(Zf(e,t))return[e];for(n=0;n<t.length;++n)if(ru(e,t[n])&&Zf(Do(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(Do(t[n],t[r]),e)&&ru(Do(t[n],e),t[r])&&ru(Do(t[r],e),t[n])&&Zf(Wy(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 Uy(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 Zf(t,e){for(var n=0;n<e.length;++n)if(!Uy(t,e[n]))return!1;return!0}function P7(t){switch(t.length){case 1:return M7(t[0]);case 2:return Do(t[0],t[1]);case 3:return Wy(t[0],t[1],t[2])}}function M7(t){return{x:t.x,y:t.y,r:t.r}}function Do(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 Wy(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,b=f-o,y=r*r+i*i-o*o,_=y-a*a-s*s+u*u,x=y-l*l-c*c+f*f,w=p*d-h*g,$=(d*x-g*_)/(w*2)-r,R=(g*m-d*b)/w,A=(p*_-h*x)/(w*2)-i,D=(h*b-p*m)/w,I=R*R+D*D-1,v=2*(o+$*R+A*D),L=$*$+A*A-o*o,T=-(Math.abs(I)>1e-6?(v+Math.sqrt(v*v-4*I*L))/(2*I):L/v);return{x:r+$+R*T,y:i+A+D*T,r:T}}function Hy(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 Xy(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 jy(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 Vy(t,e){if(!(o=(t=w7(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;Hy(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){Hy(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(Xy(l._,i._)){r=l,n.next=r,r.previous=n,--u;continue t}f+=l._.r,l=l.next}else{if(Xy(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=jy(n);(i=i.next)!==r;)(s=jy(i))<a&&(n=i,a=s);r=n.next}for(n=[r._],i=r;(i=i.next)!==r;)n.push(i._);for(i=Yy(n,e),u=0;u<o;++u)n=t[u],n.x-=i.x,n.y-=i.y;return i.r}function D7(t){return Vy(t,qf()),t}function C7(t){return Math.sqrt(t.value)}function L7(){var t=null,e=1,n=1,r=lr;function i(o){const a=qf();return o.x=e/2,o.y=n/2,t?o.eachBefore(qy(t)).eachAfter(Kf(r,.5,a)).eachBefore(Zy(1)):o.eachBefore(qy(C7)).eachAfter(Kf(lr,1,a)).eachAfter(Kf(r,o.r/Math.min(e,n),a)).eachBefore(Zy(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 qy(t){return function(e){e.children||(e.r=Math.max(0,+t(e)||0))}}function Kf(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=Vy(i,n),s)for(o=0;o<a;++o)i[o].r-=s;r.r=u+s}}}function Zy(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 Ky(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 Co(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 k7(){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(Ky),a}function o(a,s){return function(u){u.children&&Co(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 R7={depth:-1},Qy={},Qf={};function E7(t){return t.id}function I7(t){return t.parentId}function N7(){var t=E7,e=I7,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 b=o.map((x,w)=>B7(n(x,w,i))),y=b.map(Jy),_=new Set(b).add("");for(const x of y)_.has(x)||(_.add(x),b.push(x),y.push(Jy(x)),o.push(Qf));a=(x,w)=>b[w],s=(x,w)=>y[w]}for(c=0,u=o.length;c<u;++c)l=o[c],p=o[c]=new ur(l),(d=a(l,c,i))!=null&&(d+="")&&(g=p.id=d,m.set(g,m.has(g)?Qy: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===Qy)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===Qf&&f.children.length===1;)f=f.children[0],--u;for(let b=o.length-1;b>=0&&(p=o[b],p.data===Qf);--b)p.data=null}if(f.parent=R7,f.eachBefore(function(b){b.depth=b.parent.depth+1,--u}).eachBefore(Oy),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 B7(t){t=`${t}`;let e=t.length;return Jf(t,e-1)&&!Jf(t,e-2)&&(t=t.slice(0,-1)),t[0]==="/"?t:`/${t}`}function Jy(t){let e=t.length;if(e<2)return"";for(;--e>1&&!Jf(t,e););return t.slice(0,e)}function Jf(t,e){if(t[e]==="/"){let n=0;for(;e>0&&t[--e]==="\\";)++n;if(!(n&1))return!0}return!1}function F7(t,e){return t.parent===e.parent?1:2}function th(t){var e=t.children;return e?e[0]:t.t}function eh(t){var e=t.children;return e?e[e.length-1]:t.t}function O7(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 z7(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 G7(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(ur.prototype);function Y7(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 U7(){var t=F7,e=1,n=1,r=null;function i(l){var c=Y7(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(y){y.x<f.x&&(f=y),y.x>h.x&&(h=y),y.depth>p.depth&&(p=y)});var d=f===h?1:t(f,h)/2,g=d-f.x,m=e/(h.x+d+g),b=n/(p.depth||1);l.eachBefore(function(y){y.x=(y.x+g)*m,y.y=y.depth*b})}return l}function o(l){var c=l.children,f=l.parent.children,h=l.i?f[l.i-1]:null;if(c){z7(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,b=p.m,y=d.m,_=g.m,x;d=eh(d),h=th(h),d&&h;)g=th(g),p=eh(p),p.a=l,x=d.z+y-h.z-m+t(d._,h._),x>0&&(O7(G7(d,l,f),l,x),m+=x,b+=x),y+=d.m,m+=h.m,_+=g.m,b+=p.m;d&&!eh(p)&&(p.t=d,p.m+=y-b),h&&!th(g)&&(g.t=h,g.m+=m-_,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 tb=(1+Math.sqrt(5))/2;function eb(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,b,y,_,x,w,$;c<h;){p=i-n,d=o-r;do m=s[f++].value;while(!m&&f<h);for(b=y=m,w=Math.max(d/p,p/d)/(g*t),$=m*m*w,x=Math.max(y/$,$/b);f<h;++f){if(m+=l=s[f].value,l<b&&(b=l),l>y&&(y=l),$=m*m*w,_=Math.max(y/$,$/b),_>x){m-=l;break}x=_}a.push(u={value:m,dice:p<d,children:s.slice(c,f)}),u.dice?Co(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 nh=function t(e){function n(r,i,o,a,s){eb(e,r,i,o,a,s)}return n.ratio=function(r){return t((r=+r)>1?r:1)},n}(tb);function nb(){var t=nh,e=!1,n=1,r=1,i=[0],o=lr,a=lr,s=lr,u=lr,l=lr;function c(h){return h.x0=h.y0=0,h.x1=n,h.y1=r,h.eachBefore(f),i=[0],e&&h.eachBefore(Ky),h}function f(h){var p=i[h.depth],d=h.x0+p,g=h.y0+p,m=h.x1-p,b=h.y1-p;m<d&&(d=m=(d+m)/2),b<g&&(g=b=(g+b)/2),h.x0=d,h.y0=g,h.x1=m,h.y1=b,h.children&&(p=i[h.depth+1]=o(h)/2,d+=l(h)-p,g+=a(h)-p,m-=s(h)-p,b-=u(h)-p,m<d&&(d=m=(d+m)/2),b<g&&(g=b=(g+b)/2),t(h,d,g,m,b))}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=zy(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 W7(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,b){if(f>=h-1){var y=o[f];y.x0=d,y.y0=g,y.x1=m,y.y1=b;return}for(var _=l[f],x=p/2+_,w=f+1,$=h-1;w<$;){var R=w+$>>>1;l[R]<x?w=R+1:$=R}x-l[w-1]<l[w]-x&&f+1<w&&--w;var A=l[w]-_,D=p-A;if(m-d>b-g){var I=p?(d*D+m*A)/p:m;c(f,w,A,d,g,I,b),c(w,h,D,I,g,m,b)}else{var v=p?(g*D+b*A)/p:b;c(f,w,A,d,g,m,v),c(w,h,D,d,v,m,b)}}}function H7(t,e,n,r,i){(t.depth&1?au:Co)(t,e,n,r,i)}const X7=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?Co(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=eb(e,r,i,o,a,s),u.ratio=e}return n.ratio=function(r){return t((r=+r)>1?r:1)},n}(tb);function j7(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 V7(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 q7(t,e,n){return(e[0]-t[0])*(n[1]-t[1])-(e[1]-t[1])*(n[0]-t[0])}function Z7(t,e){return t[0]-e[0]||t[1]-e[1]}function rb(t){const e=t.length,n=[0,1];let r=2,i;for(i=2;i<e;++i){for(;r>1&&q7(t[n[r-2]],t[n[r-1]],t[i])<=0;)--r;n[r++]=i}return n.slice(0,r)}function K7(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(Z7),e=0;e<n;++e)i[e]=[r[e][0],-r[e][1]];var o=rb(r),a=rb(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 Q7(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 J7(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,tL=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),eL=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),rh=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),nL=function t(e){var n=rh.source(e);function r(){var i=n.apply(this,arguments);return function(){return Math.exp(i())}}return r.source=t,r}(Bt),ib=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),rL=function t(e){var n=ib.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),iL=function t(e){function n(r){return function(){return-Math.log1p(-e())/r}}return n.source=t,n}(Bt),oL=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),aL=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),ob=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),ih=function t(e){var n=rh.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),ab=function t(e){var n=ih.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),sb=function t(e){var n=ob.source(e),r=ab.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),sL=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),uL=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),lL=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),cL=function t(e){var n=ih.source(e),r=sb.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),fL=1664525,hL=1013904223,ub=1/4294967296;function pL(t=Math.random()){let e=(0<=t&&t<1?t/ub:Math.abs(t))|0;return()=>(e=fL*e+hL|0,ub*(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 oh=Symbol("implicit");function ah(){var t=new Ni,e=[],n=[],r=oh;function i(o){let a=t.get(o);if(a===void 0){if(r!==oh)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 Ni;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 ah(e,n).unknown(r)},be.apply(i,arguments),i}function sh(){var t=ah().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=gn(h).map(function(b){return d+o*b});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 sh(e(),[r,i]).round(s).paddingInner(u).paddingOuter(l).align(c)},be.apply(f(),arguments)}function lb(t){var e=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,delete t.paddingOuter,t.copy=function(){return lb(e())},t}function uh(){return lb(sh.apply(null,arguments).paddingInner(1))}function dL(t){return function(){return t}}function su(t){return+t}var cb=[0,1];function te(t){return t}function lh(t,e){return(e-=t=+t)?function(n){return(n-t)/e}:dL(isNaN(e)?NaN:.5)}function gL(t,e){var n;return t>e&&(n=t,t=e,e=n),function(r){return Math.max(t,Math.min(e,r))}}function mL(t,e,n){var r=t[0],i=t[1],o=e[0],a=e[1];return i<r?(r=lh(i,r),o=n(a,o)):(r=lh(r,i),o=n(o,a)),function(s){return o(r(s))}}function yL(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]=lh(t[a],t[a+1]),o[a]=n(e[a],e[a+1]);return function(s){var u=zn(t,s,1,r)-1;return o[u](i[u](s))}}function Lo(t,e){return e.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp()).unknown(t.unknown())}function uu(){var t=cb,e=cb,n=Ze,r,i,o,a=te,s,u,l;function c(){var h=Math.min(t.length,e.length);return a!==te&&(a=gL(t[0],t[h-1])),s=h>2?yL:mL,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 ch(){return uu()(te,te)}function fb(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=$1(i,a))&&(r.precision=o),ef(r,a)}case"":case"e":case"g":case"p":case"r":{r.precision==null&&!isNaN(o=w1(i,Math.max(Math.abs(t),Math.abs(e))))&&(r.precision=o-(r.type==="e"));break}case"f":case"%":{r.precision==null&&!isNaN(o=_1(i))&&(r.precision=o-(r.type==="%")*2);break}}return so(r)}function $n(t){var e=t.domain;return t.ticks=function(n){var r=e();return Yn(r[0],r[r.length-1],n??10)},t.tickFormat=function(n,r){var i=e();return fb(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=Un(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 ko(){var t=ch();return t.copy=function(){return Lo(t,ko())},be.apply(t,arguments),$n(t)}function hb(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 hb(t).unknown(e)},t=arguments.length?Array.from(t,su):[0,1],$n(n)}function pb(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 db(t){return Math.log(t)}function gb(t){return Math.exp(t)}function bL(t){return-Math.log(-t)}function xL(t){return-Math.exp(-t)}function vL(t){return isFinite(t)?+("1e"+t):t<0?0:t}function _L(t){return t===10?vL:t===Math.E?Math.exp:e=>Math.pow(t,e)}function $L(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 mb(t){return(e,n)=>-t(-e,n)}function fh(t){const e=t(db,gb),n=e.domain;let r=10,i,o;function a(){return i=$L(r),o=_L(r),n()[0]<0?(i=mb(i),o=mb(o),t(bL,xL)):t(db,gb),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 b=[];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;b.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;b.push(g)}b.length*2<m&&(b=Yn(l,c,m))}else b=Yn(h,p,Math.min(p-h,m)).map(o);return f?b.reverse():b},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=so(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(pb(n(),{floor:s=>o(Math.floor(i(s))),ceil:s=>o(Math.ceil(i(s)))})),e}function yb(){const t=fh(uu()).domain([1,10]);return t.copy=()=>Lo(t,yb()).base(t.base()),be.apply(t,arguments),t}function bb(t){return function(e){return Math.sign(e)*Math.log1p(Math.abs(e/t))}}function xb(t){return function(e){return Math.sign(e)*Math.expm1(Math.abs(e))*t}}function hh(t){var e=1,n=t(bb(e),xb(e));return n.constant=function(r){return arguments.length?t(bb(e=+r),xb(e)):e},$n(n)}function vb(){var t=hh(uu());return t.copy=function(){return Lo(t,vb()).constant(t.constant())},be.apply(t,arguments)}function _b(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}function wL(t){return t<0?-Math.sqrt(-t):Math.sqrt(t)}function SL(t){return t<0?-t*t:t*t}function ph(t){var e=t(te,te),n=1;function r(){return n===1?t(te,te):n===.5?t(wL,SL):t(_b(n),_b(1/n))}return e.exponent=function(i){return arguments.length?(n=+i,r()):n},$n(e)}function li(){var t=ph(uu());return t.copy=function(){return Lo(t,li()).exponent(t.exponent())},be.apply(t,arguments),t}function AL(){return li.apply(null,arguments).exponent(.5)}function $b(t){return Math.sign(t)*t*t}function TL(t){return Math.sign(t)*Math.sqrt(Math.abs(t))}function wb(){var t=ch(),e=[0,1],n=!1,r;function i(o){var a=TL(t(o));return isNaN(a)?r:n?Math.round(a):a}return i.invert=function(o){return t.invert($b(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($b)),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 wb(t.domain(),e).round(n).clamp(t.clamp()).unknown(r)},be.apply(i,arguments),$n(i)}function Sb(){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]=e0(t,a/s);return o}function o(a){return a==null||isNaN(a=+a)?r:e[zn(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 Sb().domain(t).range(e).unknown(r)},be.apply(o,arguments)}function Ab(){var t=0,e=1,n=1,r=[.5],i=[0,1],o;function a(u){return u!=null&&u<=u?i[zn(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 Ab().domain([t,e]).range(i).unknown(o)},be.apply($n(a),arguments)}function Tb(){var t=[.5],e=[0,1],n,r=1;function i(o){return o!=null&&o<=o?e[zn(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 Tb().domain(t).range(e).unknown(n)},be.apply(i,arguments)}const dh=new Date,gh=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)=>(dh.setTime(+o),gh.setTime(+a),t(dh),t(gh),Math.floor(n(dh,gh))),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 Pb=ci.range,an=1e3,xe=an*60,sn=xe*60,un=sn*24,mh=un*7,Mb=un*30,yh=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()),Db=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()),PL=lu.range,cu=Mt(t=>{t.setUTCSeconds(0,0)},(t,e)=>{t.setTime(+t+e*xe)},(t,e)=>(e-t)/xe,t=>t.getUTCMinutes()),ML=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()),DL=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()),CL=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),LL=fi.range,Ro=Mt(t=>{t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCDate(t.getUTCDate()+e)},(t,e)=>(e-t)/un,t=>t.getUTCDate()-1),kL=Ro.range,bh=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)),RL=bh.range;function cr(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)/mh)}const hi=cr(0),Eo=cr(1),Cb=cr(2),Lb=cr(3),fr=cr(4),kb=cr(5),Rb=cr(6),Eb=hi.range,EL=Eo.range,IL=Cb.range,NL=Lb.range,BL=fr.range,FL=kb.range,OL=Rb.range;function hr(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)/mh)}const pi=hr(0),Io=hr(1),Ib=hr(2),Nb=hr(3),pr=hr(4),Bb=hr(5),Fb=hr(6),Ob=pi.range,zL=Io.range,GL=Ib.range,YL=Nb.range,UL=pr.range,WL=Bb.range,HL=Fb.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()),XL=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()),jL=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 VL=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 qL=Xe.range;function zb(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,mh],[e,1,Mb],[e,3,3*Mb],[t,1,yh]];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/yh,c/yh,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[Gb,Yb]=zb(Xe,du,pi,bh,hu,cu),[Ub,Wb]=zb(He,pu,hi,fi,fu,lu);function xh(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 vh(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 No(t,e,n){return{y:t,m:e,d:n,H:0,M:0,S:0,L:0}}function Hb(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=Bo(i),c=Fo(i),f=Bo(o),h=Fo(o),p=Bo(a),d=Fo(a),g=Bo(s),m=Fo(s),b=Bo(u),y=Fo(u),_={a:G,A:O,b:k,B:E,c:null,d:Kb,e:Kb,f:b9,g:M9,G:C9,H:g9,I:m9,j:y9,L:Qb,m:x9,M:v9,p:C,q:F,Q:ix,s:ox,S:_9,u:$9,U:w9,V:S9,w:A9,W:T9,x:null,X:null,y:P9,Y:D9,Z:L9,"%":rx},x={a:H,A:J,b:z,B:V,c:null,d:tx,e:tx,f:I9,g:H9,G:j9,H:k9,I:R9,j:E9,L:ex,m:N9,M:B9,p:Y,q:K,Q:ix,s:ox,S:F9,u:O9,U:z9,V:G9,w:Y9,W:U9,x:null,X:null,y:W9,Y:X9,Z:V9,"%":rx},w={a:I,A:v,b:L,B:T,c:S,d:qb,e:qb,f:f9,g:Vb,G:jb,H:Zb,I:Zb,j:s9,L:c9,m:a9,M:u9,p:D,q:o9,Q:p9,s:d9,S:l9,u:t9,U:e9,V:n9,w:JL,W:r9,x:M,X:P,y:Vb,Y:jb,Z:i9,"%":h9};_.x=$(n,_),_.X=$(r,_),_.c=$(e,_),x.x=$(n,x),x.X=$(r,x),x.c=$(e,x);function $(j,nt){return function(st){var X=[],dt=-1,ft=0,Ut=j.length,ee,ut,Pt;for(st instanceof Date||(st=new Date(+st));++dt<Ut;)j.charCodeAt(dt)===37&&(X.push(j.slice(ft,dt)),(ut=Xb[ee=j.charAt(++dt)])!=null?ee=j.charAt(++dt):ut=ee==="e"?" ":"0",(Pt=nt[ee])&&(ee=Pt(st,ut)),X.push(ee),ft=dt+1);return X.push(j.slice(ft,dt)),X.join("")}}function R(j,nt){return function(st){var X=No(1900,void 0,1),dt=A(X,j,st+="",0),ft,Ut;if(dt!=st.length)return null;if("Q"in X)return new Date(X.Q);if("s"in X)return new Date(X.s*1e3+("L"in X?X.L:0));if(nt&&!("Z"in X)&&(X.Z=0),"p"in X&&(X.H=X.H%12+X.p*12),X.m===void 0&&(X.m="q"in X?X.q:0),"V"in X){if(X.V<1||X.V>53)return null;"w"in X||(X.w=1),"Z"in X?(ft=vh(No(X.y,0,1)),Ut=ft.getUTCDay(),ft=Ut>4||Ut===0?Io.ceil(ft):Io(ft),ft=Ro.offset(ft,(X.V-1)*7),X.y=ft.getUTCFullYear(),X.m=ft.getUTCMonth(),X.d=ft.getUTCDate()+(X.w+6)%7):(ft=xh(No(X.y,0,1)),Ut=ft.getDay(),ft=Ut>4||Ut===0?Eo.ceil(ft):Eo(ft),ft=fi.offset(ft,(X.V-1)*7),X.y=ft.getFullYear(),X.m=ft.getMonth(),X.d=ft.getDate()+(X.w+6)%7)}else("W"in X||"U"in X)&&("w"in X||(X.w="u"in X?X.u%7:"W"in X?1:0),Ut="Z"in X?vh(No(X.y,0,1)).getUTCDay():xh(No(X.y,0,1)).getDay(),X.m=0,X.d="W"in X?(X.w+6)%7+X.W*7-(Ut+5)%7:X.w+X.U*7-(Ut+6)%7);return"Z"in X?(X.H+=X.Z/100|0,X.M+=X.Z%100,vh(X)):xh(X)}}function A(j,nt,st,X){for(var dt=0,ft=nt.length,Ut=st.length,ee,ut;dt<ft;){if(X>=Ut)return-1;if(ee=nt.charCodeAt(dt++),ee===37){if(ee=nt.charAt(dt++),ut=w[ee in Xb?nt.charAt(dt++):ee],!ut||(X=ut(j,st,X))<0)return-1}else if(ee!=st.charCodeAt(X++))return-1}return X}function D(j,nt,st){var X=l.exec(nt.slice(st));return X?(j.p=c.get(X[0].toLowerCase()),st+X[0].length):-1}function I(j,nt,st){var X=p.exec(nt.slice(st));return X?(j.w=d.get(X[0].toLowerCase()),st+X[0].length):-1}function v(j,nt,st){var X=f.exec(nt.slice(st));return X?(j.w=h.get(X[0].toLowerCase()),st+X[0].length):-1}function L(j,nt,st){var X=b.exec(nt.slice(st));return X?(j.m=y.get(X[0].toLowerCase()),st+X[0].length):-1}function T(j,nt,st){var X=g.exec(nt.slice(st));return X?(j.m=m.get(X[0].toLowerCase()),st+X[0].length):-1}function S(j,nt,st){return A(j,e,nt,st)}function M(j,nt,st){return A(j,n,nt,st)}function P(j,nt,st){return A(j,r,nt,st)}function G(j){return a[j.getDay()]}function O(j){return o[j.getDay()]}function k(j){return u[j.getMonth()]}function E(j){return s[j.getMonth()]}function C(j){return i[+(j.getHours()>=12)]}function F(j){return 1+~~(j.getMonth()/3)}function H(j){return a[j.getUTCDay()]}function J(j){return o[j.getUTCDay()]}function z(j){return u[j.getUTCMonth()]}function V(j){return s[j.getUTCMonth()]}function Y(j){return i[+(j.getUTCHours()>=12)]}function K(j){return 1+~~(j.getUTCMonth()/3)}return{format:function(j){var nt=$(j+="",_);return nt.toString=function(){return j},nt},parse:function(j){var nt=R(j+="",!1);return nt.toString=function(){return j},nt},utcFormat:function(j){var nt=$(j+="",x);return nt.toString=function(){return j},nt},utcParse:function(j){var nt=R(j+="",!0);return nt.toString=function(){return j},nt}}}var Xb={"-":"",_:" ",0:"0"},Nt=/^\s*\d+/,ZL=/^%/,KL=/[\\^$*+?|[\]().{}]/g;function mt(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 QL(t){return t.replace(KL,"\\$&")}function Bo(t){return new RegExp("^(?:"+t.map(QL).join("|")+")","i")}function Fo(t){return new Map(t.map((e,n)=>[e.toLowerCase(),n]))}function JL(t,e,n){var r=Nt.exec(e.slice(n,n+1));return r?(t.w=+r[0],n+r[0].length):-1}function t9(t,e,n){var r=Nt.exec(e.slice(n,n+1));return r?(t.u=+r[0],n+r[0].length):-1}function e9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.U=+r[0],n+r[0].length):-1}function n9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.V=+r[0],n+r[0].length):-1}function r9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.W=+r[0],n+r[0].length):-1}function jb(t,e,n){var r=Nt.exec(e.slice(n,n+4));return r?(t.y=+r[0],n+r[0].length):-1}function Vb(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 i9(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 o9(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 a9(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 qb(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.d=+r[0],n+r[0].length):-1}function s9(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 Zb(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.H=+r[0],n+r[0].length):-1}function u9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.M=+r[0],n+r[0].length):-1}function l9(t,e,n){var r=Nt.exec(e.slice(n,n+2));return r?(t.S=+r[0],n+r[0].length):-1}function c9(t,e,n){var r=Nt.exec(e.slice(n,n+3));return r?(t.L=+r[0],n+r[0].length):-1}function f9(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 h9(t,e,n){var r=ZL.exec(e.slice(n,n+1));return r?n+r[0].length:-1}function p9(t,e,n){var r=Nt.exec(e.slice(n));return r?(t.Q=+r[0],n+r[0].length):-1}function d9(t,e,n){var r=Nt.exec(e.slice(n));return r?(t.s=+r[0],n+r[0].length):-1}function Kb(t,e){return mt(t.getDate(),e,2)}function g9(t,e){return mt(t.getHours(),e,2)}function m9(t,e){return mt(t.getHours()%12||12,e,2)}function y9(t,e){return mt(1+fi.count(He(t),t),e,3)}function Qb(t,e){return mt(t.getMilliseconds(),e,3)}function b9(t,e){return Qb(t,e)+"000"}function x9(t,e){return mt(t.getMonth()+1,e,2)}function v9(t,e){return mt(t.getMinutes(),e,2)}function _9(t,e){return mt(t.getSeconds(),e,2)}function $9(t){var e=t.getDay();return e===0?7:e}function w9(t,e){return mt(hi.count(He(t)-1,t),e,2)}function Jb(t){var e=t.getDay();return e>=4||e===0?fr(t):fr.ceil(t)}function S9(t,e){return t=Jb(t),mt(fr.count(He(t),t)+(He(t).getDay()===4),e,2)}function A9(t){return t.getDay()}function T9(t,e){return mt(Eo.count(He(t)-1,t),e,2)}function P9(t,e){return mt(t.getFullYear()%100,e,2)}function M9(t,e){return t=Jb(t),mt(t.getFullYear()%100,e,2)}function D9(t,e){return mt(t.getFullYear()%1e4,e,4)}function C9(t,e){var n=t.getDay();return t=n>=4||n===0?fr(t):fr.ceil(t),mt(t.getFullYear()%1e4,e,4)}function L9(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+mt(e/60|0,"0",2)+mt(e%60,"0",2)}function tx(t,e){return mt(t.getUTCDate(),e,2)}function k9(t,e){return mt(t.getUTCHours(),e,2)}function R9(t,e){return mt(t.getUTCHours()%12||12,e,2)}function E9(t,e){return mt(1+Ro.count(Xe(t),t),e,3)}function ex(t,e){return mt(t.getUTCMilliseconds(),e,3)}function I9(t,e){return ex(t,e)+"000"}function N9(t,e){return mt(t.getUTCMonth()+1,e,2)}function B9(t,e){return mt(t.getUTCMinutes(),e,2)}function F9(t,e){return mt(t.getUTCSeconds(),e,2)}function O9(t){var e=t.getUTCDay();return e===0?7:e}function z9(t,e){return mt(pi.count(Xe(t)-1,t),e,2)}function nx(t){var e=t.getUTCDay();return e>=4||e===0?pr(t):pr.ceil(t)}function G9(t,e){return t=nx(t),mt(pr.count(Xe(t),t)+(Xe(t).getUTCDay()===4),e,2)}function Y9(t){return t.getUTCDay()}function U9(t,e){return mt(Io.count(Xe(t)-1,t),e,2)}function W9(t,e){return mt(t.getUTCFullYear()%100,e,2)}function H9(t,e){return t=nx(t),mt(t.getUTCFullYear()%100,e,2)}function X9(t,e){return mt(t.getUTCFullYear()%1e4,e,4)}function j9(t,e){var n=t.getUTCDay();return t=n>=4||n===0?pr(t):pr.ceil(t),mt(t.getUTCFullYear()%1e4,e,4)}function V9(){return"+0000"}function rx(){return"%"}function ix(t){return+t}function ox(t){return Math.floor(+t/1e3)}var di,_h,ax,gu,$h;sx({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 sx(t){return di=Hb(t),_h=di.format,ax=di.parse,gu=di.utcFormat,$h=di.utcParse,di}var ux="%Y-%m-%dT%H:%M:%S.%LZ";function q9(t){return t.toISOString()}var Z9=Date.prototype.toISOString?q9:gu(ux);const K9=Z9;function Q9(t){var e=new Date(t);return isNaN(e)?null:e}var J9=+new Date("2000-01-01T00:00:00.000Z")?Q9:$h(ux);const tk=J9;function ek(t){return new Date(t)}function nk(t){return t instanceof Date?+t:+new Date(+t)}function wh(t,e,n,r,i,o,a,s,u,l){var c=ch(),f=c.invert,h=c.domain,p=l(".%L"),d=l(":%S"),g=l("%I:%M"),m=l("%I %p"),b=l("%a %d"),y=l("%b %d"),_=l("%B"),x=l("%Y");function w($){return(u($)<$?p:s($)<$?d:a($)<$?g:o($)<$?m:r($)<$?i($)<$?b:y:n($)<$?_:x)($)}return c.invert=function($){return new Date(f($))},c.domain=function($){return arguments.length?h(Array.from($,nk)):h().map(ek)},c.ticks=function($){var R=h();return t(R[0],R[R.length-1],$??10)},c.tickFormat=function($,R){return R==null?w:l(R)},c.nice=function($){var R=h();return(!$||typeof $.range!="function")&&($=e(R[0],R[R.length-1],$??10)),$?h(pb(R,$)):c},c.copy=function(){return Lo(c,wh(t,e,n,r,i,o,a,s,u,l))},c}function rk(){return be.apply(wh(Ub,Wb,He,pu,hi,fi,fu,lu,ln,_h).domain([new Date(2e3,0,1),new Date(2e3,0,2)]),arguments)}function ik(){return be.apply(wh(Gb,Yb,Xe,du,pi,Ro,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 wn(t,e){return e.domain(t.domain()).interpolator(t.interpolator()).clamp(t.clamp()).unknown(t.unknown())}function lx(){var t=$n(mu()(te));return t.copy=function(){return wn(t,lx())},on.apply(t,arguments)}function cx(){var t=fh(mu()).domain([1,10]);return t.copy=function(){return wn(t,cx()).base(t.base())},on.apply(t,arguments)}function fx(){var t=hh(mu());return t.copy=function(){return wn(t,fx()).constant(t.constant())},on.apply(t,arguments)}function Sh(){var t=ph(mu());return t.copy=function(){return wn(t,Sh()).exponent(t.exponent())},on.apply(t,arguments)}function ok(){return Sh.apply(null,arguments).exponent(.5)}function hx(){var t=[],e=te;function n(r){if(r!=null&&!isNaN(r=+r))return e((zn(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)=>Oi(t,o/r))},n.copy=function(){return hx(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 b,y,_;return arguments.length?([b,y,_]=m,l=pm(g,[b,y,_]),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 px(){var t=$n(yu()(te));return t.copy=function(){return wn(t,px())},on.apply(t,arguments)}function dx(){var t=fh(yu()).domain([.1,1,10]);return t.copy=function(){return wn(t,dx()).base(t.base())},on.apply(t,arguments)}function gx(){var t=hh(yu());return t.copy=function(){return wn(t,gx()).constant(t.constant())},on.apply(t,arguments)}function Ah(){var t=ph(yu());return t.copy=function(){return wn(t,Ah()).exponent(t.exponent())},on.apply(t,arguments)}function ak(){return Ah.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 sk=ct("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),uk=ct("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),lk=ct("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),ck=ct("4269d0efb118ff725c6cc5b03ca951ff8ab7a463f297bbf59c6b4e9498a0"),fk=ct("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),hk=ct("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),pk=ct("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),dk=ct("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),gk=ct("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),mk=ct("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f"),yk=ct("4e79a7f28e2ce1575976b7b259a14fedc949af7aa1ff9da79c755fbab0ab"),xt=t=>Q0(t[t.length-1]);var mx=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(ct);const bk=xt(mx);var yx=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(ct);const xk=xt(yx);var bx=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(ct);const vk=xt(bx);var xx=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(ct);const _k=xt(xx);var vx=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(ct);const $k=xt(vx);var _x=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(ct);const wk=xt(_x);var $x=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(ct);const Sk=xt($x);var wx=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(ct);const Ak=xt(wx);var Sx=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(ct);const Tk=xt(Sx);var Ax=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(ct);const Pk=xt(Ax);var Tx=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(ct);const Mk=xt(Tx);var Px=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(ct);const Dk=xt(Px);var Mx=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(ct);const Ck=xt(Mx);var Dx=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(ct);const Lk=xt(Dx);var Cx=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(ct);const kk=xt(Cx);var Lx=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(ct);const Rk=xt(Lx);var kx=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(ct);const Ek=xt(kx);var Rx=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(ct);const Ik=xt(Rx);var Ex=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(ct);const Nk=xt(Ex);var Ix=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(ct);const Bk=xt(Ix);var Nx=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(ct);const Fk=xt(Nx);var Bx=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(ct);const Ok=xt(Bx);var Fx=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(ct);const zk=xt(Fx);var Ox=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(ct);const Gk=xt(Ox);var zx=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(ct);const Yk=xt(zx);var Gx=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(ct);const Uk=xt(Gx);var Yx=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(ct);const Wk=xt(Yx);function Hk(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 Xk=Ja(Me(300,.5,0),Me(-240,.5,1));var jk=Ja(Me(-100,.75,.35),Me(80,1.5,.8)),Vk=Ja(Me(260,.75,.35),Me(80,1.5,.8)),bu=Me();function qk(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,Kk=Math.PI*2/3;function Qk(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+Kk))*e,xu+""}function Jk(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 tR=vu(ct("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725"));var eR=vu(ct("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),nR=vu(ct("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),rR=vu(ct("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"));function lt(t){return function(){return t}}const Ux=Math.abs,Gt=Math.atan2,cn=Math.cos,iR=Math.max,gi=Math.min,ae=Math.sin,_t=Math.sqrt,Yt=1e-12,Sn=Math.PI,_u=Sn/2,An=2*Sn;function oR(t){return t>1?0:t<-1?Sn:Math.acos(t)}function Wx(t){return t>=1?_u:t<=-1?-_u:Math.asin(t)}function Oo(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 ro(e)}function aR(t){return t.innerRadius}function sR(t){return t.outerRadius}function uR(t){return t.startAngle}function lR(t){return t.endAngle}function cR(t){return t&&t.padAngle}function fR(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 $u(t,e,n,r,i,o,a){var s=t-n,u=e-r,l=(a?o:-o)/_t(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,b=(p+g)/2,y=d-h,_=g-p,x=y*y+_*_,w=i-o,$=h*g-d*p,R=(_<0?-1:1)*_t(iR(0,w*w*x-$*$)),A=($*_-y*R)/x,D=(-$*y-_*R)/x,I=($*_+y*R)/x,v=(-$*y+_*R)/x,L=A-m,T=D-b,S=I-m,M=v-b;return L*L+T*T>S*S+M*M&&(A=I,D=v),{cx:A,cy:D,x01:-c,y01:-f,x11:A*(i/w-1),y11:D*(i/w-1)}}function wu(){var t=aR,e=sR,n=lt(0),r=null,i=uR,o=lR,a=cR,s=null,u=Oo(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=Ux(g-d),b=g>d;if(s||(s=c=u()),p<h&&(f=p,p=h,h=f),!(p>Yt))s.moveTo(0,0);else if(m>An-Yt)s.moveTo(p*cn(d),p*ae(d)),s.arc(0,0,p,d,g,!b),h>Yt&&(s.moveTo(h*cn(g),h*ae(g)),s.arc(0,0,h,g,d,b));else{var y=d,_=g,x=d,w=g,$=m,R=m,A=a.apply(this,arguments)/2,D=A>Yt&&(r?+r.apply(this,arguments):_t(h*h+p*p)),I=gi(Ux(p-h)/2,+n.apply(this,arguments)),v=I,L=I,T,S;if(D>Yt){var M=Wx(D/h*ae(A)),P=Wx(D/p*ae(A));($-=M*2)>Yt?(M*=b?1:-1,x+=M,w-=M):($=0,x=w=(d+g)/2),(R-=P*2)>Yt?(P*=b?1:-1,y+=P,_-=P):(R=0,y=_=(d+g)/2)}var G=p*cn(y),O=p*ae(y),k=h*cn(w),E=h*ae(w);if(I>Yt){var C=p*cn(_),F=p*ae(_),H=h*cn(x),J=h*ae(x),z;if(m<Sn)if(z=fR(G,O,H,J,C,F,k,E)){var V=G-z[0],Y=O-z[1],K=C-z[0],j=F-z[1],nt=1/ae(oR((V*K+Y*j)/(_t(V*V+Y*Y)*_t(K*K+j*j)))/2),st=_t(z[0]*z[0]+z[1]*z[1]);v=gi(I,(h-st)/(nt-1)),L=gi(I,(p-st)/(nt+1))}else v=L=0}R>Yt?L>Yt?(T=$u(H,J,G,O,p,L,b),S=$u(C,F,k,E,p,L,b),s.moveTo(T.cx+T.x01,T.cy+T.y01),L<I?s.arc(T.cx,T.cy,L,Gt(T.y01,T.x01),Gt(S.y01,S.x01),!b):(s.arc(T.cx,T.cy,L,Gt(T.y01,T.x01),Gt(T.y11,T.x11),!b),s.arc(0,0,p,Gt(T.cy+T.y11,T.cx+T.x11),Gt(S.cy+S.y11,S.cx+S.x11),!b),s.arc(S.cx,S.cy,L,Gt(S.y11,S.x11),Gt(S.y01,S.x01),!b))):(s.moveTo(G,O),s.arc(0,0,p,y,_,!b)):s.moveTo(G,O),!(h>Yt)||!($>Yt)?s.lineTo(k,E):v>Yt?(T=$u(k,E,C,F,h,-v,b),S=$u(G,O,H,J,h,-v,b),s.lineTo(T.cx+T.x01,T.cy+T.y01),v<I?s.arc(T.cx,T.cy,v,Gt(T.y01,T.x01),Gt(S.y01,S.x01),!b):(s.arc(T.cx,T.cy,v,Gt(T.y01,T.x01),Gt(T.y11,T.x11),!b),s.arc(0,0,h,Gt(T.cy+T.y11,T.cx+T.x11),Gt(S.cy+S.y11,S.cx+S.x11),b),s.arc(S.cx,S.cy,v,Gt(S.y11,S.x11),Gt(S.y01,S.x01),!b))):s.arc(0,0,h,w,x,b)}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-Sn/2;return[cn(f)*c,ae(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 hR=Array.prototype.slice;function Su(t){return typeof t=="object"&&"length"in t?t:Array.from(t)}function Hx(t){this._context=t}Hx.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 Hx(t)}function Th(t){return t[0]}function Ph(t){return t[1]}function Tu(t,e){var n=lt(!0),r=null,i=Au,o=null,a=Oo(s);t=typeof t=="function"?t:t===void 0?Th:lt(t),e=typeof e=="function"?e:e===void 0?Ph: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 Mh(t,e,n){var r=null,i=lt(!0),o=null,a=Au,s=null,u=Oo(l);t=typeof t=="function"?t:t===void 0?Th:lt(+t),e=typeof e=="function"?e:lt(e===void 0?0:+e),n=typeof n=="function"?n:n===void 0?Ph:lt(+n);function l(f){var h,p,d,g=(f=Su(f)).length,m,b=!1,y,_=new Array(g),x=new Array(g);for(o==null&&(s=a(y=u())),h=0;h<=g;++h){if(!(h<g&&i(m=f[h],h,f))===b)if(b=!b)p=h,s.areaStart(),s.lineStart();else{for(s.lineEnd(),s.lineStart(),d=h-1;d>=p;--d)s.point(_[d],x[d]);s.lineEnd(),s.areaEnd()}b&&(_[h]=+t(m,h,f),x[h]=+e(m,h,f),s.point(r?+r(m,h,f):_[h],n?+n(m,h,f):x[h]))}if(y)return s=null,y+""||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 pR(t,e){return e<t?-1:e>t?1:e>=t?0:NaN}function dR(t){return t}function Xx(){var t=dR,e=pR,n=null,r=lt(0),i=lt(An),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(An,Math.max(-An,i.apply(this,arguments)-g)),b,y=Math.min(Math.abs(m)/l,o.apply(this,arguments)),_=y*(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(w,$){return e(d[w],d[$])}):n!=null&&p.sort(function(w,$){return n(s[w],s[$])}),u=0,f=h?(m-l*_)/h:0;u<l;++u,g=b)c=p[u],x=d[c],b=g+(x>0?x*f:0)+_,d[c]={data:s[c],index:u,value:x,startAngle:g,endAngle:b,padAngle:y};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 jx=Dh(Au);function Vx(t){this._curve=t}Vx.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 Dh(t){function e(n){return new Vx(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(Dh(n)):e()._curve},t}function qx(){return zo(Tu().curve(jx))}function Zx(){var t=Mh().curve(jx),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(Dh(a)):e()._curve},t}function Go(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}class Kx{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 gR{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=Go(this._x0,this._y0),i=Go(this._x0,this._y0=(this._y0+n)/2),o=Go(e,this._y0),a=Go(e,n);this._context.moveTo(...r),this._context.bezierCurveTo(...i,...o,...a)}this._x0=e,this._y0=n}}function Qx(t){return new Kx(t,!0)}function Jx(t){return new Kx(t,!1)}function mR(t){return new gR(t)}function yR(t){return t.source}function bR(t){return t.target}function Pu(t){let e=yR,n=bR,r=Th,i=Ph,o=null,a=null,s=Oo(u);function u(){let l;const c=hR.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 xR(){return Pu(Qx)}function vR(){return Pu(Jx)}function _R(){const t=Pu(mR);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t}const $R=_t(3),tv={draw(t,e){const n=_t(e+gi(e/28,.75))*.59436,r=n/2,i=r*$R;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=_t(e/Sn);t.moveTo(n,0),t.arc(0,0,n,0,An)}},ev={draw(t,e){const n=_t(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()}},nv=_t(1/3),wR=nv*2,rv={draw(t,e){const n=_t(e/wR),r=n*nv;t.moveTo(0,-n),t.lineTo(r,0),t.lineTo(0,n),t.lineTo(-r,0),t.closePath()}},iv={draw(t,e){const n=_t(e)*.62625;t.moveTo(0,-n),t.lineTo(n,0),t.lineTo(0,n),t.lineTo(-n,0),t.closePath()}},ov={draw(t,e){const n=_t(e-gi(e/7,2))*.87559;t.moveTo(-n,0),t.lineTo(n,0),t.moveTo(0,n),t.lineTo(0,-n)}},av={draw(t,e){const n=_t(e),r=-n/2;t.rect(r,r,n,n)}},sv={draw(t,e){const n=_t(e)*.4431;t.moveTo(n,n),t.lineTo(n,-n),t.lineTo(-n,-n),t.lineTo(-n,n),t.closePath()}},SR=.8908130915292852,uv=ae(Sn/10)/ae(7*Sn/10),AR=ae(An/10)*uv,TR=-cn(An/10)*uv,lv={draw(t,e){const n=_t(e*SR),r=AR*n,i=TR*n;t.moveTo(0,-n),t.lineTo(r,i);for(let o=1;o<5;++o){const a=An*o/5,s=cn(a),u=ae(a);t.lineTo(u*n,-s*n),t.lineTo(s*r-u*i,u*r+s*i)}t.closePath()}},Ch=_t(3),cv={draw(t,e){const n=-_t(e/(Ch*3));t.moveTo(0,n*2),t.lineTo(-Ch*n,-n),t.lineTo(Ch*n,-n),t.closePath()}},PR=_t(3),fv={draw(t,e){const n=_t(e)*.6824,r=n/2,i=n*PR/2;t.moveTo(0,-n),t.lineTo(i,r),t.lineTo(-i,r),t.closePath()}},ve=-.5,_e=_t(3)/2,Lh=1/_t(12),MR=(Lh/2+1)*3,hv={draw(t,e){const n=_t(e/MR),r=n/2,i=n*Lh,o=r,a=n*Lh+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()}},kh={draw(t,e){const n=_t(e-gi(e/6,1.7))*.6189;t.moveTo(-n,-n),t.lineTo(n,n),t.moveTo(-n,n),t.lineTo(n,-n)}},pv=[Mu,ev,rv,av,lv,cv,hv],DR=[Mu,ov,kh,fv,tv,sv,iv];function CR(t,e){let n=null,r=Oo(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 Tn(){}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 LR(t){return new Cu(t)}function dv(t){this._context=t}dv.prototype={areaStart:Tn,areaEnd:Tn,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 kR(t){return new dv(t)}function gv(t){this._context=t}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(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 RR(t){return new gv(t)}function mv(t,e){this._basis=new Cu(t),this._beta=e}mv.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 ER=function t(e){function n(r){return e===1?new Cu(r):new mv(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 Rh(t,e){this._context=t,this._k=(1-e)/6}Rh.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 IR=function t(e){function n(r){return new Rh(r,e)}return n.tension=function(r){return t(+r)},n}(0);function Eh(t,e){this._context=t,this._k=(1-e)/6}Eh.prototype={areaStart:Tn,areaEnd:Tn,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 NR=function t(e){function n(r){return new Eh(r,e)}return n.tension=function(r){return t(+r)},n}(0);function Ih(t,e){this._context=t,this._k=(1-e)/6}Ih.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 BR=function t(e){function n(r){return new Ih(r,e)}return n.tension=function(r){return t(+r)},n}(0);function Nh(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 yv(t,e){this._context=t,this._alpha=e}yv.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:Nh(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 FR=function t(e){function n(r){return e?new yv(r,e):new Rh(r,0)}return n.alpha=function(r){return t(+r)},n}(.5);function bv(t,e){this._context=t,this._alpha=e}bv.prototype={areaStart:Tn,areaEnd:Tn,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:Nh(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 OR=function t(e){function n(r){return e?new bv(r,e):new Eh(r,0)}return n.alpha=function(r){return t(+r)},n}(.5);function xv(t,e){this._context=t,this._alpha=e}xv.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:Nh(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 zR=function t(e){function n(r){return e?new xv(r,e):new Ih(r,0)}return n.alpha=function(r){return t(+r)},n}(.5);function vv(t){this._context=t}vv.prototype={areaStart:Tn,areaEnd:Tn,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 GR(t){return new vv(t)}function _v(t){return t<0?-1:1}function $v(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(_v(o)+_v(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(s))||0}function wv(t,e){var n=t._x1-t._x0;return n?(3*(t._y1-t._y0)/n-e)/2:e}function Bh(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:Bh(this,this._t0,wv(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,Bh(this,wv(this,n=$v(this,t,e)),n);break;default:Bh(this,this._t0,n=$v(this,t,e));break}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=n}}};function Sv(t){this._context=new Av(t)}(Sv.prototype=Object.create(ku.prototype)).point=function(t,e){ku.prototype.point.call(this,e,t)};function Av(t){this._context=t}Av.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 YR(t){return new ku(t)}function UR(t){return new Sv(t)}function Tv(t){this._context=t}Tv.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=Pv(t),i=Pv(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 Pv(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 WR(t){return new Tv(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 HR(t){return new Ru(t,.5)}function XR(t){return new Ru(t,0)}function jR(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 VR(t,e){return t[e]}function qR(t){const e=[];return e.key=t,e}function ZR(){var t=lt([]),e=yi,n=mi,r=VR;function i(o){var a=Array.from(t.apply(this,arguments),qR),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 KR(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 QR(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 JR(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 tE(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,b=g[r-1][1]||0;p+=m-b}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 Mv(t){var e=t.map(eE);return yi(t).sort(function(n,r){return e[n]-e[r]})}function eE(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 Dv(t){var e=t.map(Cv);return yi(t).sort(function(n,r){return e[n]-e[r]})}function Cv(t){for(var e=0,n=-1,r=t.length,i;++n<r;)(i=+t[n][1])&&(e+=i);return e}function nE(t){return Dv(t).reverse()}function rE(t){var e=t.length,n,r,i=t.map(Cv),o=Mv(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 iE(t){return yi(t).reverse()}const Eu=t=>()=>t;function oE(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);Lv.prototype=je.prototype;function Lv(t){for(;!t.__zoom;)if(!(t=t.parentNode))return Iu;return t.__zoom}function Fh(t){t.stopImmediatePropagation()}function Yo(t){t.preventDefault(),t.stopImmediatePropagation()}function aE(t){return(!t.ctrlKey||t.type==="wheel")&&!t.button}function sE(){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 kv(){return this.__zoom||Iu}function uE(t){return-t.deltaY*(t.deltaMode===1?.05:t.deltaMode?1:.002)*(t.ctrlKey?10:1)}function lE(){return navigator.maxTouchPoints||"ontouchstart"in this}function cE(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 Oh(){var t=aE,e=sE,n=cE,r=uE,i=lE,o=[0,1/0],a=[[-1/0,-1/0],[1/0,1/0]],s=250,u=lm,l=Wn("start","zoom","end"),c,f,h,p=500,d=150,g=0,m=10;function b(S){S.property("__zoom",kv).on("wheel.zoom",A,{passive:!1}).on("mousedown.zoom",D).on("dblclick.zoom",I).filter(i).on("touchstart.zoom",v).on("touchmove.zoom",L).on("touchend.zoom touchcancel.zoom",T).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}b.transform=function(S,M,P,G){var O=S.selection?S.selection():S;O.property("__zoom",kv),S!==O?w(S,M,P,G):O.interrupt().each(function(){$(this,arguments).event(G).start().zoom(null,typeof M=="function"?M.apply(this,arguments):M).end()})},b.scaleBy=function(S,M,P,G){b.scaleTo(S,function(){var O=this.__zoom.k,k=typeof M=="function"?M.apply(this,arguments):M;return O*k},P,G)},b.scaleTo=function(S,M,P,G){b.transform(S,function(){var O=e.apply(this,arguments),k=this.__zoom,E=P==null?x(O):typeof P=="function"?P.apply(this,arguments):P,C=k.invert(E),F=typeof M=="function"?M.apply(this,arguments):M;return n(_(y(k,F),E,C),O,a)},P,G)},b.translateBy=function(S,M,P,G){b.transform(S,function(){return n(this.__zoom.translate(typeof M=="function"?M.apply(this,arguments):M,typeof P=="function"?P.apply(this,arguments):P),e.apply(this,arguments),a)},null,G)},b.translateTo=function(S,M,P,G,O){b.transform(S,function(){var k=e.apply(this,arguments),E=this.__zoom,C=G==null?x(k):typeof G=="function"?G.apply(this,arguments):G;return n(Iu.translate(C[0],C[1]).scale(E.k).translate(typeof M=="function"?-M.apply(this,arguments):-M,typeof P=="function"?-P.apply(this,arguments):-P),k,a)},G,O)};function y(S,M){return M=Math.max(o[0],Math.min(o[1],M)),M===S.k?S:new je(M,S.x,S.y)}function _(S,M,P){var G=M[0]-P[0]*S.k,O=M[1]-P[1]*S.k;return G===S.x&&O===S.y?S:new je(S.k,G,O)}function x(S){return[(+S[0][0]+ +S[1][0])/2,(+S[0][1]+ +S[1][1])/2]}function w(S,M,P,G){S.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,k=arguments,E=$(O,k).event(G),C=e.apply(O,k),F=P==null?x(C):typeof P=="function"?P.apply(O,k):P,H=Math.max(C[1][0]-C[0][0],C[1][1]-C[0][1]),J=O.__zoom,z=typeof M=="function"?M.apply(O,k):M,V=u(J.invert(F).concat(H/J.k),z.invert(F).concat(H/z.k));return function(Y){if(Y===1)Y=z;else{var K=V(Y),j=H/K[2];Y=new je(j,F[0]-K[0]*j,F[1]-K[1]*j)}E.zoom(null,Y)}})}function $(S,M,P){return!P&&S.__zooming||new R(S,M)}function R(S,M){this.that=S,this.args=M,this.active=0,this.sourceEvent=null,this.extent=e.apply(S,M),this.taps=0}R.prototype={event:function(S){return S&&(this.sourceEvent=S),this},start:function(){return++this.active===1&&(this.that.__zooming=this,this.emit("start")),this},zoom:function(S,M){return this.mouse&&S!=="mouse"&&(this.mouse[1]=M.invert(this.mouse[0])),this.touch0&&S!=="touch"&&(this.touch0[1]=M.invert(this.touch0[0])),this.touch1&&S!=="touch"&&(this.touch1[1]=M.invert(this.touch1[0])),this.that.__zoom=M,this.emit("zoom"),this},end:function(){return--this.active===0&&(delete this.that.__zooming,this.emit("end")),this},emit:function(S){var M=q(this.that).datum();l.call(S,this.that,new oE(S,{sourceEvent:this.sourceEvent,target:b,type:S,transform:this.that.__zoom,dispatch:l}),M)}};function A(S,...M){if(!t.apply(this,arguments))return;var P=$(this,M).event(S),G=this.__zoom,O=Math.max(o[0],Math.min(o[1],G.k*Math.pow(2,r.apply(this,arguments)))),k=ce(S);if(P.wheel)(P.mouse[0][0]!==k[0]||P.mouse[0][1]!==k[1])&&(P.mouse[1]=G.invert(P.mouse[0]=k)),clearTimeout(P.wheel);else{if(G.k===O)return;P.mouse=[k,G.invert(k)],Qn(this),P.start()}Yo(S),P.wheel=setTimeout(E,d),P.zoom("mouse",n(_(y(G,O),P.mouse[0],P.mouse[1]),P.extent,a));function E(){P.wheel=null,P.end()}}function D(S,...M){if(h||!t.apply(this,arguments))return;var P=S.currentTarget,G=$(this,M,!0).event(S),O=q(S.view).on("mousemove.zoom",F,!0).on("mouseup.zoom",H,!0),k=ce(S,P),E=S.clientX,C=S.clientY;Fa(S.view),Fh(S),G.mouse=[k,this.__zoom.invert(k)],Qn(this),G.start();function F(J){if(Yo(J),!G.moved){var z=J.clientX-E,V=J.clientY-C;G.moved=z*z+V*V>g}G.event(J).zoom("mouse",n(_(G.that.__zoom,G.mouse[0]=ce(J,P),G.mouse[1]),G.extent,a))}function H(J){O.on("mousemove.zoom mouseup.zoom",null),Oa(J.view,G.moved),Yo(J),G.event(J).end()}}function I(S,...M){if(t.apply(this,arguments)){var P=this.__zoom,G=ce(S.changedTouches?S.changedTouches[0]:S,this),O=P.invert(G),k=P.k*(S.shiftKey?.5:2),E=n(_(y(P,k),G,O),e.apply(this,M),a);Yo(S),s>0?q(this).transition().duration(s).call(w,E,G,S):q(this).call(b.transform,E,G,S)}}function v(S,...M){if(t.apply(this,arguments)){var P=S.touches,G=P.length,O=$(this,M,S.changedTouches.length===G).event(S),k,E,C,F;for(Fh(S),E=0;E<G;++E)C=P[E],F=ce(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,k=!0,O.taps=1+!!c);c&&(c=clearTimeout(c)),k&&(O.taps<2&&(f=F[0],c=setTimeout(function(){c=null},p)),Qn(this),O.start())}}function L(S,...M){if(this.__zooming){var P=$(this,M).event(S),G=S.changedTouches,O=G.length,k,E,C,F;for(Yo(S),k=0;k<O;++k)E=G[k],C=ce(E,this),P.touch0&&P.touch0[2]===E.identifier?P.touch0[0]=C:P.touch1&&P.touch1[2]===E.identifier&&(P.touch1[0]=C);if(E=P.that.__zoom,P.touch1){var H=P.touch0[0],J=P.touch0[1],z=P.touch1[0],V=P.touch1[1],Y=(Y=z[0]-H[0])*Y+(Y=z[1]-H[1])*Y,K=(K=V[0]-J[0])*K+(K=V[1]-J[1])*K;E=y(E,Math.sqrt(Y/K)),C=[(H[0]+z[0])/2,(H[1]+z[1])/2],F=[(J[0]+V[0])/2,(J[1]+V[1])/2]}else if(P.touch0)C=P.touch0[0],F=P.touch0[1];else return;P.zoom("touch",n(_(E,C,F),P.extent,a))}}function T(S,...M){if(this.__zooming){var P=$(this,M).event(S),G=S.changedTouches,O=G.length,k,E;for(Fh(S),h&&clearTimeout(h),h=setTimeout(function(){h=null},p),k=0;k<O;++k)E=G[k],P.touch0&&P.touch0[2]===E.identifier?delete P.touch0:P.touch1&&P.touch1[2]===E.identifier&&delete P.touch1;if(P.touch1&&!P.touch0&&(P.touch0=P.touch1,delete P.touch1),P.touch0)P.touch0[1]=this.__zoom.invert(P.touch0[0]);else if(P.end(),P.taps===2&&(E=ce(E,this),Math.hypot(f[0]-E[0],f[1]-E[1])<m)){var C=q(this).on("dblclick.zoom");C&&C.apply(this,arguments)}}}return b.wheelDelta=function(S){return arguments.length?(r=typeof S=="function"?S:Eu(+S),b):r},b.filter=function(S){return arguments.length?(t=typeof S=="function"?S:Eu(!!S),b):t},b.touchable=function(S){return arguments.length?(i=typeof S=="function"?S:Eu(!!S),b):i},b.extent=function(S){return arguments.length?(e=typeof S=="function"?S:Eu([[+S[0][0],+S[0][1]],[+S[1][0],+S[1][1]]]),b):e},b.scaleExtent=function(S){return arguments.length?(o[0]=+S[0],o[1]=+S[1],b):[o[0],o[1]]},b.translateExtent=function(S){return arguments.length?(a[0][0]=+S[0][0],a[1][0]=+S[1][0],a[0][1]=+S[0][1],a[1][1]=+S[1][1],b):[[a[0][0],a[0][1]],[a[1][0],a[1][1]]]},b.constrain=function(S){return arguments.length?(n=S,b):n},b.duration=function(S){return arguments.length?(s=+S,b):s},b.interpolate=function(S){return arguments.length?(u=S,b):u},b.on=function(){var S=l.on.apply(l,arguments);return S===l?b:S},b.clickDistance=function(S){return arguments.length?(g=(S=+S)*S,b):Math.sqrt(g)},b.tapDistance=function(S){return arguments.length?(m=+S,b):m},b}const zh=Object.freeze(Object.defineProperty({__proto__:null,Adder:Ct,Delaunay:qc,FormatSpecifier:bs,InternMap:Ni,InternSet:Gn,Node:ur,Path:ro,Voronoi:Km,ZoomTransform:je,active:dM,arc:wu,area:Mh,areaRadial:Zx,ascending:$t,autoType:F4,axisBottom:c0,axisLeft:f0,axisRight:a5,axisTop:o5,bin:Jg,bisect:zn,bisectCenter:n3,bisectLeft:e3,bisectRight:Fg,bisector:Sa,blob:G4,blur:r3,blur2:Og,blurImage:i3,brush:PM,brushSelection:SM,brushX:AM,brushY:TM,buffer:U4,chord:DM,chordDirected:LM,chordTranspose:CM,cluster:e7,color:yn,contourDensity:r4,contours:Wc,count:Ta,create:GP,creator:Ia,cross:f3,csv:X4,csvFormat:P4,csvFormatBody:M4,csvFormatRow:C4,csvFormatRows:D4,csvFormatValue:L4,csvParse:e1,csvParseRows:T4,cubehelix:Me,cumsum:h3,curveBasis:LR,curveBasisClosed:kR,curveBasisOpen:RR,curveBumpX:Qx,curveBumpY:Jx,curveBundle:ER,curveCardinal:IR,curveCardinalClosed:NR,curveCardinalOpen:BR,curveCatmullRom:FR,curveCatmullRomClosed:OR,curveCatmullRomOpen:zR,curveLinear:Au,curveLinearClosed:GR,curveMonotoneX:YR,curveMonotoneY:UR,curveNatural:WR,curveStep:HR,curveStepAfter:jR,curveStepBefore:XR,descending:Ng,deviation:Yg,difference:j3,disjoint:V3,dispatch:Wn,drag:w0,dragDisable:Fa,dragEnable:Oa,dsv:H4,dsvFormat:ds,easeBack:Lm,easeBackIn:aM,easeBackInOut:Lm,easeBackOut:sM,easeBounce:to,easeBounceIn:iM,easeBounceInOut:oM,easeBounceOut:to,easeCircle:Cm,easeCircleIn:V8,easeCircleInOut:Cm,easeCircleOut:q8,easeCubic:Ji,easeCubicIn:z8,easeCubicInOut:Ji,easeCubicOut:G8,easeElastic:eo,easeElasticIn:uM,easeElasticInOut:lM,easeElasticOut:eo,easeExp:Dm,easeExpIn:X8,easeExpInOut:Dm,easeExpOut:j8,easeLinear:B8,easePoly:Am,easePolyIn:Y8,easePolyInOut:Am,easePolyOut:U8,easeQuad:Sm,easeQuadIn:F8,easeQuadInOut:Sm,easeQuadOut:O8,easeSin:Mm,easeSinIn:W8,easeSinInOut:Mm,easeSinOut:H8,every:G3,extent:Ii,fcumsum:d3,filter:U3,flatGroup:g3,flatRollup:m3,forceCenter:tD,forceCollide:a1,forceLink:vD,forceManyBody:c1,forceRadial:MD,forceSimulation:l1,forceX:f1,forceY:h1,get format(){return so},formatDefaultLocale:v1,formatLocale:x1,get formatPrefix(){return ef},formatSpecifier:ti,fsum:p3,geoAlbers:Ey,geoAlbersUsa:RC,geoArea:FD,geoAzimuthalEqualArea:EC,geoAzimuthalEqualAreaRaw:Gf,geoAzimuthalEquidistant:IC,geoAzimuthalEquidistantRaw:Yf,geoBounds:YD,geoCentroid:VD,geoCircle:qD,geoClipAntimeridian:vf,geoClipCircle:ny,geoClipExtent:nC,geoClipRectangle:zs,geoConicConformal:BC,geoConicConformalRaw:By,geoConicEqualArea:Qs,geoConicEqualAreaRaw:Ry,geoConicEquidistant:OC,geoConicEquidistantRaw:Fy,geoContains:lC,geoDistance:Us,geoEqualEarth:GC,geoEqualEarthRaw:Uf,geoEquirectangular:FC,geoEquirectangularRaw:So,geoGnomonic:YC,geoGnomonicRaw:Wf,geoGraticule:hy,geoGraticule10:cC,geoIdentity:UC,geoInterpolate:fC,geoLength:ry,geoMercator:NC,geoMercatorRaw:wo,geoNaturalEarth1:WC,geoNaturalEarth1Raw:Hf,geoOrthographic:HC,geoOrthographicRaw:Xf,geoPath:wC,geoProjection:We,geoProjectionMutator:Of,geoRotation:V1,geoStereographic:XC,geoStereographicRaw:jf,geoStream:Ce,geoTransform:SC,geoTransverseMercator:jC,geoTransverseMercatorRaw:Vf,gray:s6,greatest:t0,greatestIndex:N3,group:Xg,groupSort:x3,groups:jg,hcl:ja,hierarchy:eu,histogram:Jg,hsl:Ua,html:Q4,image:V4,index:y3,indexes:b3,interpolate:Ze,interpolateArray:p6,interpolateBasis:V0,interpolateBasisClosed:q0,interpolateBlues:Ok,interpolateBrBG:bk,interpolateBuGn:Pk,interpolateBuPu:Mk,interpolateCividis:Hk,interpolateCool:Vk,interpolateCubehelix:M6,interpolateCubehelixDefault:Xk,interpolateCubehelixLong:Ja,interpolateDate:em,interpolateDiscrete:m6,interpolateGnBu:Dk,interpolateGreens:zk,interpolateGreys:Gk,interpolateHcl:T6,interpolateHclLong:P6,interpolateHsl:w6,interpolateHslLong:S6,interpolateHue:y6,interpolateInferno:nR,interpolateLab:A6,interpolateMagma:eR,interpolateNumber:ge,interpolateNumberArray:gc,interpolateObject:nm,interpolateOrRd:Ck,interpolateOranges:Wk,interpolatePRGn:xk,interpolatePiYG:vk,interpolatePlasma:rR,interpolatePuBu:kk,interpolatePuBuGn:Lk,interpolatePuOr:_k,interpolatePuRd:Rk,interpolatePurples:Yk,interpolateRainbow:qk,interpolateRdBu:$k,interpolateRdGy:wk,interpolateRdPu:Ek,interpolateRdYlBu:Sk,interpolateRdYlGn:Ak,interpolateReds:Uk,interpolateRgb:Xi,interpolateRgbBasis:Q0,interpolateRgbBasisClosed:h6,interpolateRound:Ka,interpolateSinebow:Qk,interpolateSpectral:Tk,interpolateString:bc,interpolateTransformCss:am,interpolateTransformSvg:sm,interpolateTurbo:Jk,interpolateViridis:tR,interpolateWarm:jk,interpolateYlGn:Nk,interpolateYlGnBu:Ik,interpolateYlOrBr:Bk,interpolateYlOrRd:Fk,interpolateZoom:lm,interrupt:Qn,intersection:q3,interval:R6,isoFormat:K9,isoParse:tk,json:Z4,lab:Xa,lch:u6,least:I3,leastIndex:r0,line:Tu,lineRadial:qx,link:Pu,linkHorizontal:xR,linkRadial:_R,linkVertical:vR,local:_0,map:W3,matcher:tc,max:Bi,maxIndex:jl,mean:P3,median:M3,medianIndex:D3,merge:ql,min:Da,minIndex:Vl,mode:L3,namespace:Gi,namespaces:Ql,nice:Hl,now:Ki,pack:L7,packEnclose:A7,packSiblings:D7,pairs:k3,partition:k7,path:Uc,pathRound:EM,permute:Qg,pie:Xx,piecewise:pm,pointRadial:Go,pointer:ce,pointers:UP,polygonArea:j7,polygonCentroid:V7,polygonContains:Q7,polygonHull:K7,polygonLength:J7,precisionFixed:_1,precisionPrefix:$1,precisionRound:w1,quadtree:ms,quantile:Oi,quantileIndex:n0,quantileSorted:e0,quantize:D6,quickselect:Ca,radialArea:Zx,radialLine:qx,randomBates:rL,randomBernoulli:aL,randomBeta:ab,randomBinomial:sb,randomCauchy:uL,randomExponential:iL,randomGamma:ih,randomGeometric:ob,randomInt:eL,randomIrwinHall:ib,randomLcg:pL,randomLogNormal:nL,randomLogistic:lL,randomNormal:rh,randomPareto:oL,randomPoisson:cL,randomUniform:tL,randomWeibull:sL,range:gn,rank:E3,reduce:H3,reverse:X3,rgb:Yr,ribbon:YM,ribbonArrow:UM,rollup:qg,rollups:Zg,scaleBand:sh,scaleDiverging:px,scaleDivergingLog:dx,scaleDivergingPow:Ah,scaleDivergingSqrt:ak,scaleDivergingSymlog:gx,scaleIdentity:hb,scaleImplicit:oh,scaleLinear:ko,scaleLog:yb,scaleOrdinal:ah,scalePoint:uh,scalePow:li,scaleQuantile:Sb,scaleQuantize:Ab,scaleRadial:wb,scaleSequential:lx,scaleSequentialLog:cx,scaleSequentialPow:Sh,scaleSequentialQuantile:hx,scaleSequentialSqrt:ok,scaleSequentialSymlog:fx,scaleSqrt:AL,scaleSymlog:vb,scaleThreshold:Tb,scaleTime:rk,scaleUtc:ik,scan:B3,schemeAccent:uk,schemeBlues:Bx,schemeBrBG:mx,schemeBuGn:Ax,schemeBuPu:Tx,schemeCategory10:sk,schemeDark2:lk,schemeGnBu:Px,schemeGreens:Fx,schemeGreys:Ox,schemeObservable10:ck,schemeOrRd:Mx,schemeOranges:Yx,schemePRGn:yx,schemePaired:fk,schemePastel1:hk,schemePastel2:pk,schemePiYG:bx,schemePuBu:Cx,schemePuBuGn:Dx,schemePuOr:xx,schemePuRd:Lx,schemePurples:zx,schemeRdBu:vx,schemeRdGy:_x,schemeRdPu:kx,schemeRdYlBu:$x,schemeRdYlGn:wx,schemeReds:Gx,schemeSet1:dk,schemeSet2:gk,schemeSet3:mk,schemeSpectral:Sx,schemeTableau10:yk,schemeYlGn:Ex,schemeYlGnBu:Rx,schemeYlOrBr:Ix,schemeYlOrRd:Nx,select:q,selectAll:WP,selection:Xn,selector:Na,selectorAll:Jl,shuffle:F3,shuffler:i0,some:Y3,sort:Yl,stack:ZR,stackOffsetDiverging:QR,stackOffsetExpand:KR,stackOffsetNone:mi,stackOffsetSilhouette:JR,stackOffsetWiggle:tE,stackOrderAppearance:Mv,stackOrderAscending:Dv,stackOrderDescending:nE,stackOrderInsideOut:rE,stackOrderNone:yi,stackOrderReverse:iE,stratify:N7,style:Hn,subset:K3,sum:o0,superset:s0,svg:J4,symbol:CR,symbolAsterisk:tv,symbolCircle:Mu,symbolCross:ev,symbolDiamond:rv,symbolDiamond2:iv,symbolPlus:ov,symbolSquare:av,symbolSquare2:sv,symbolStar:lv,symbolTimes:kh,symbolTriangle:cv,symbolTriangle2:fv,symbolWye:hv,symbolX:kh,symbols:pv,symbolsFill:pv,symbolsStroke:DR,text:gs,thresholdFreedmanDiaconis:A3,thresholdScott:T3,thresholdSturges:Xl,tickFormat:fb,tickIncrement:Un,tickStep:Ma,ticks:Yn,timeDay:fi,timeDays:LL,get timeFormat(){return _h},timeFormatDefaultLocale:sx,timeFormatLocale:Hb,timeFriday:kb,timeFridays:FL,timeHour:fu,timeHours:DL,timeInterval:Mt,timeMillisecond:ci,timeMilliseconds:Pb,timeMinute:lu,timeMinutes:PL,timeMonday:Eo,timeMondays:EL,timeMonth:pu,timeMonths:XL,get timeParse(){return ax},timeSaturday:Rb,timeSaturdays:OL,timeSecond:ln,timeSeconds:Db,timeSunday:hi,timeSundays:Eb,timeThursday:fr,timeThursdays:BL,timeTickInterval:Wb,timeTicks:Ub,timeTuesday:Cb,timeTuesdays:IL,timeWednesday:Lb,timeWednesdays:NL,timeWeek:hi,timeWeeks:Eb,timeYear:He,timeYears:VL,timeout:_c,timer:rs,timerFlush:mm,transition:$m,transpose:a0,tree:U7,treemap:nb,treemapBinary:W7,treemapDice:Co,treemapResquarify:X7,treemapSlice:au,treemapSliceDice:H7,treemapSquarify:nh,tsv:j4,tsvFormat:R4,tsvFormatBody:E4,tsvFormatRow:N4,tsvFormatRows:I4,tsvFormatValue:B4,tsvParse:n1,tsvParseRows:k4,union:Q3,unixDay:bh,unixDays:RL,utcDay:Ro,utcDays:kL,get utcFormat(){return gu},utcFriday:Bb,utcFridays:WL,utcHour:hu,utcHours:CL,utcMillisecond:ci,utcMilliseconds:Pb,utcMinute:cu,utcMinutes:ML,utcMonday:Io,utcMondays:zL,utcMonth:du,utcMonths:jL,get utcParse(){return $h},utcSaturday:Fb,utcSaturdays:HL,utcSecond:ln,utcSeconds:Db,utcSunday:pi,utcSundays:Ob,utcThursday:pr,utcThursdays:UL,utcTickInterval:Yb,utcTicks:Gb,utcTuesday:Ib,utcTuesdays:GL,utcWednesday:Nb,utcWednesdays:YL,utcWeek:pi,utcWeeks:Ob,utcYear:Xe,utcYears:qL,variance:Gg,window:ec,xml:K4,zip:z3,zoom:Oh,zoomIdentity:Iu,zoomTransform:Lv},Symbol.toStringTag,{value:"Module"}));function Rv(t){try{return t.node().getBBox()}catch(e){throw new Error(e)}}function fE(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 Uo(t){return t.substring(0,4)!=="ease"?Ji:zh[t]??Ji}function Nu({axisWidth:t,innerRadius:e,outerRadius:n,padAngle:r,cornerRadius:i}){const o=ko().domain([0,1]).range([0,t/2]),a=o(n);return wu().innerRadius(o(e)).outerRadius(a).padAngle(r).padRadius(a).cornerRadius(i)}const Gh=(t,e)=>e instanceof Function?e(t):so(e)(t);function hE(t){const e=t.filter(n=>n.value!=null&&n.visible!=!1).map(n=>n.value);return V2(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 Pn({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 Mn(t,e){const r=Math.random().toString(36).substr(2,5);return ot(t,e,r)}function Yh(t,e){let n=new gt(()=>{});return t.each(function(){const r=al(this,e);n=sl(n,r)}),n}const dr=({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((b,y,_)=>{q(_[y]).selectAll(`g.${u}`).data([y]).join(x=>x.append("g").classed(u,!0).attr("clip-path",`url(#${n})`).each((w,$,R)=>{q(R[$]).selectAll("defs").data([$]).join("defs"),q(R[$]).selectAll("g").data([$]).join("g").classed(l,!0)}),x=>x,x=>x.remove())}),m=>m,m=>m.remove())),vt(1));U({seriesSelection:c,gridContainerPosition:i}).pipe(W(async d=>d)).subscribe(d=>{d.seriesSelection.transition().attr("transform",(g,m)=>{const b=d.gridContainerPosition[m]??d.gridContainerPosition[0],y=b.translate,_=b.scale;return`translate(${y[0]}, ${y[1]}) scale(${_[0]}, ${_[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)),vt(1)),h=f.pipe(B(d=>d.select("defs")),vt(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}),vt(1));return{seriesSelection$:c,axesSelection$:f,defsSelection$:h,graphicGSelection$:p}},Ev=({fullDataFormatter$:t,gridAxesSize$:e,computedData$:n,fullChartParams$:r,gridContainerPosition$:i,layout$:o})=>{const a=new et,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]}),vt(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 gt(h=>{U({dataFormatter:t,axisSize:e,fullChartParams:r,scaleRangeGroupLabels:l,groupLabels:u,groupScaleDomain:s,columnAmount:c,rowAmount:f,layout:o}).pipe(N(a),W(async p=>p)).subscribe(p=>{const d=p.dataFormatter.grid.valueAxis.position==="right"||p.dataFormatter.grid.valueAxis.position==="bottom",g=kg({axisLabels:p.scaleRangeGroupLabels,axisWidth:p.axisSize.width,padding:p.dataFormatter.grid.groupAxis.scalePadding,reverse:d}),m=y=>p.dataFormatter.grid.groupAxis.position==="bottom"||p.dataFormatter.grid.groupAxis.position==="top"?y.offsetX-p.fullChartParams.padding.left:y.offsetY-p.fullChartParams.padding.top,b=y=>{const _={offsetX:y.offsetX*p.columnAmount%p.layout.rootWidth,offsetY:y.offsetY*p.rowAmount%p.layout.rootHeight},x=m(_),w=g(x),$=Math.ceil(p.groupScaleDomain[0]),R=w+$;return{groupIndex:R,groupLabel:p.groupLabels[R]??""}};return h.next(b),function(){a.next(void 0)}})})},pE=({rootSelection:t,fullDataFormatter$:e,gridAxesSize$:n,computedData$:r,fullChartParams$:i,gridContainerPosition$:o,layout$:a})=>{const s=Yh(t,"mousemove"),u=U({fullDataFormatter:e,gridAxesSize:n,computedData:r}).pipe(W(async y=>y),B(y=>{const _=y.computedData[0]?y.computedData[0].length-1:0,x=y.fullDataFormatter.grid.groupAxis.scaleDomain[0]-y.fullDataFormatter.grid.groupAxis.scalePadding,w=y.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?_+y.fullDataFormatter.grid.groupAxis.scalePadding:y.fullDataFormatter.grid.groupAxis.scaleDomain[1]+y.fullDataFormatter.grid.groupAxis.scalePadding;return[x,w]}),vt(1)),l=U({fullDataFormatter:e,computedData:r}).pipe(W(async y=>y),B(y=>y.fullDataFormatter.grid.seriesDirection==="row"?(y.computedData[0]??[]).map(_=>_.groupLabel):y.computedData.map(_=>_[0].groupLabel))),c=U({groupScaleDomain:u,groupLabels:l}).pipe(W(async y=>y),B(y=>y.groupLabels.filter((_,x)=>x>=y.groupScaleDomain[0]&&x<=y.groupScaleDomain[1]))),f=e.pipe(B(y=>y.grid.valueAxis.position==="right"||y.grid.valueAxis.position==="bottom")),h=U({reverse:f,gridAxesSize:n,scaleRangeGroupLabels:c,fullDataFormatter:e}).pipe(W(async y=>y),B(y=>kg({axisLabels:y.scaleRangeGroupLabels,axisWidth:y.gridAxesSize.width,padding:y.fullDataFormatter.grid.groupAxis.scalePadding,reverse:y.reverse}))),p=o.pipe(B(y=>y.reduce((x,w)=>w.columnIndex>x?w.columnIndex:x,0)+1),tt()),d=o.pipe(B(y=>y.reduce((x,w)=>w.rowIndex>x?w.rowIndex:x,0)+1),tt()),g=U({fullDataFormatter:e,fullChartParams:i,rootMousemove:s,columnAmount:p,rowAmount:d,layout:a}).pipe(W(async y=>y),B(y=>{const _={offsetX:y.rootMousemove.offsetX*y.columnAmount%y.layout.rootWidth,offsetY:y.rootMousemove.offsetY*y.rowAmount%y.layout.rootHeight};return y.fullDataFormatter.grid.groupAxis.position==="bottom"||y.fullDataFormatter.grid.groupAxis.position==="top"?_.offsetX-y.fullChartParams.padding.left:_.offsetY-y.fullChartParams.padding.top})),m=U({xIndexScale:h,axisValue:g,groupScaleDomain:u}).pipe(W(async y=>y),B(y=>{const _=y.xIndexScale(y.axisValue),x=Math.ceil(y.groupScaleDomain[0]);return _+x})),b=U({groupIndex:m,groupLabels:l}).pipe(W(async y=>y),B(y=>y.groupLabels[y.groupIndex]??""));return U({groupIndex:m,groupLabel:b}).pipe(W(async y=>y),B(y=>({groupIndex:y.groupIndex,groupLabel:y.groupLabel})))};function dE(t="curveLinear"){return Tu().x(e=>e.axisX).y(e=>e.axisY).curve(zh[t])}function gE(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 mE({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 yE({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?q(o[i]).style("opacity",1):q(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}function bE({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)=>{q(a[o]).selectAll("rect").data([i]).join(s=>{const u=s.append("rect");return u.transition().duration(n).ease(Uo(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,allContainerPosition$:b,layout$:y,event$:_})=>{const x=new et,w=Mn(t,"clipPath-box"),$=ot(t,"path"),{seriesSelection$:R,axesSelection$:A,defsSelection$:D,graphicGSelection$:I}=dr({selection:e,pluginName:t,clipPathID:w,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:h,gridGraphicTransform$:p}),v=new gt(O=>{const k=l.pipe(N(x)).subscribe(E=>{if(!E)return;const C=dE(E.lineCurve);O.next(C)});return()=>{k.unsubscribe()}}),L=f.pipe(B(O=>O.transitionDuration),tt()),T=f.pipe(B(O=>O.transitionEase),tt());U({defsSelection:D,seriesLabels:a,axisSize:d,transitionDuration:L,transitionEase:T}).pipe(N(x),W(async O=>O)).subscribe(O=>{const E=[{id:w,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})));bE({defsSelection:O.defsSelection,clipPathData:E,transitionDuration:O.transitionDuration,transitionEase:O.transitionEase})});const S=n.pipe(B(O=>{const k=new Map;return O.flat().forEach(E=>k.set(E.id,E)),k})),M=Ev({fullDataFormatter$:c,gridAxesSize$:d,computedData$:n,fullChartParams$:f,gridContainerPosition$:b,layout$:y}),P=f.pipe(N(x),B(O=>O.highlightTarget),tt()),G=U({graphicGSelection:I,visibleComputedLayoutData:o,linePath:v,params:l}).pipe(N(x),W(async O=>O),B(O=>{let k=[];return O.graphicGSelection.each((E,C,F)=>{const H=gE(O.visibleComputedLayoutData[C]??[]);k[C]=mE({selection:q(F[C]),pathClassName:$,linePath:O.linePath,segmentData:H,params:O.params})}),k}));return U({pathSelectionArr:G,computedData:n,SeriesDataMap:s,GroupDataMap:u,highlightTarget:P,gridGroupPositionFn:M}).pipe(N(x),W(async O=>O)).subscribe(O=>{O.pathSelectionArr.forEach(k=>{k.on("mouseover",(E,C)=>{E.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:H,groupLabel:J}=O.gridGroupPositionFn(E),Y=O.GroupDataMap.get(J).find(K=>K.seriesLabel===F)??C[0];_.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:E,data:O.computedData})}).on("mousemove",(E,C)=>{E.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:H,groupLabel:J}=O.gridGroupPositionFn(E),Y=O.GroupDataMap.get(J).find(K=>K.seriesLabel===F)??C[0];_.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:E,data:O.computedData})}).on("mouseout",(E,C)=>{E.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:H,groupLabel:J}=O.gridGroupPositionFn(E),Y=O.GroupDataMap.get(J).find(K=>K.seriesLabel===F)??C[0];_.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:E,data:O.computedData})}).on("click",(E,C)=>{E.stopPropagation();const F=C[0]?C[0].seriesLabel:"",{groupIndex:H,groupLabel:J}=O.gridGroupPositionFn(E),Y=O.GroupDataMap.get(J).find(K=>K.seriesLabel===F)??C[0];_.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:E,data:O.computedData})})})}),f.pipe(N(x),wi(O=>O.highlightTarget==="series"),W(O=>U({graphicGSelection:I,gridHighlight:g,DataMap:S,fullChartParams:f}).pipe(N(x),W(async k=>k)))).subscribe(O=>{const k=O.gridHighlight[0]?O.gridHighlight[0].seriesLabel:null;yE({selection:O.graphicGSelection,seriesLabel:k,fullChartParams:O.fullChartParams})}),()=>{x.next(void 0)}},xE=0,Dn=2,vE=3,Nv=4,ke=5,Bv=6,Uh=7,Bu=8,Fu=9,Fv="Lines",_E=re({name:Fv,defaultParams:yp,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 et,a=Iv(Fv,{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 $E(t="curveLinear",e){return Mh().x(n=>n.axisX).y0(n=>e).y1(n=>n.axisY).curve(zh[t])}function wE(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 SE({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 AE({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?q(o[i]).style("opacity",1):q(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}function TE({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`
|
47
47
|
<stop offset="0%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[0]}"/>
|
48
48
|
<stop offset="100%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[1]}"/>
|
49
|
-
`})}function PE({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)=>{q(a[o]).selectAll("rect").data([i]).join(s=>{const u=s.append("rect");return u.transition().duration(n).ease(Uo(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 Ov=(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$:b,event$:y})=>{const _=new et,x=Mn(t,"clipPath-box"),w=ot(t,"path"),{seriesSelection$:$,axesSelection$:R,defsSelection$:A,graphicGSelection$:D}=dr({selection:e,pluginName:t,clipPathID:x,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:h,gridGraphicTransform$:p}),I=p.pipe(N(_),B(k=>-k.translate[1]/k.scale[1])),v=new gt(k=>{const E=U({fullParams:l,valueAxisStart:I}).pipe(N(_)).subscribe(C=>{const F=$E(C.fullParams.lineCurve,C.valueAxisStart);k.next(F)});return()=>{E.unsubscribe()}}),L=f.pipe(B(k=>k.transitionDuration),tt()),T=f.pipe(B(k=>k.transitionEase),tt());U({defsSelection:A,seriesLabels:a,axisSize:d,transitionDuration:L,transitionEase:T}).pipe(N(_),W(async k=>k)).subscribe(k=>{const C=[{id:x,width:k.axisSize.width,height:k.axisSize.height}].concat(k.seriesLabels.map(F=>({id:`orbcharts__clipPath_${F}`,width:k.axisSize.width,height:k.axisSize.height})));PE({defsSelection:k.defsSelection,clipPathData:C,transitionDuration:k.transitionDuration,transitionEase:k.transitionEase})});const S=n.pipe(B(k=>{const E=new Map;return k.flat().forEach(C=>E.set(C.id,C)),E})),M=Ev({fullDataFormatter$:c,gridAxesSize$:d,computedData$:n,fullChartParams$:f,gridContainerPosition$:m,layout$:b}),P=f.pipe(N(_),B(k=>k.highlightTarget),tt()),G=a.pipe(N(_),B(k=>k.map((E,C)=>Mn(t,`lineargradient-${E}`)))),O=U({graphicGSelection:D,defsSelection:A,visibleComputedLayoutData:o,linearGradientIds:G,areaPath:v,params:l}).pipe(N(_),W(async k=>k),B(k=>{let E=[];return k.graphicGSelection.each((C,F,H)=>{const J=wE(k.visibleComputedLayoutData[F]??[]);E[F]=SE({selection:q(H[F]),pathClassName:w,areaPath:k.areaPath,segmentData:J,linearGradientIds:k.linearGradientIds,params:k.params}),TE({defsSelection:k.defsSelection,computedData:k.visibleComputedLayoutData,linearGradientIds:k.linearGradientIds,params:k.params})}),E}));return U({pathSelectionArr:O,computedData:n,SeriesDataMap:s,GroupDataMap:u,highlightTarget:P,gridGroupPositionFn:M}).pipe(N(_),W(async k=>k)).subscribe(k=>{k.pathSelectionArr.forEach(E=>{E.on("mouseover",(C,F)=>{const H=F[0]?F[0].seriesLabel:"",{groupIndex:J,groupLabel:z}=k.gridGroupPositionFn(C),K=k.GroupDataMap.get(z).find(j=>j.seriesLabel===H)??F[0];y.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:k.highlightTarget,datum:K,gridIndex:K.gridIndex,series:k.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:k.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:C,data:k.computedData})}).on("mousemove",(C,F)=>{const H=F[0]?F[0].seriesLabel:"",{groupIndex:J,groupLabel:z}=k.gridGroupPositionFn(C),K=k.GroupDataMap.get(z).find(j=>j.seriesLabel===H)??F[0];y.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:k.highlightTarget,datum:K,gridIndex:K.gridIndex,series:k.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:k.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:C,data:k.computedData})}).on("mouseout",(C,F)=>{const H=F[0]?F[0].seriesLabel:"",{groupIndex:J,groupLabel:z}=k.gridGroupPositionFn(C),K=k.GroupDataMap.get(z).find(j=>j.seriesLabel===H)??F[0];y.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:k.highlightTarget,datum:K,gridIndex:K.gridIndex,series:k.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:k.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:C,data:k.computedData})}).on("click",(C,F)=>{const H=F[0]?F[0].seriesLabel:"",{groupIndex:J,groupLabel:z}=k.gridGroupPositionFn(C),K=k.GroupDataMap.get(z).find(j=>j.seriesLabel===H)??F[0];y.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:k.highlightTarget,datum:K,gridIndex:K.gridIndex,series:k.SeriesDataMap.get(K.seriesLabel),seriesIndex:K.seriesIndex,seriesLabel:K.seriesLabel,groups:k.GroupDataMap.get(K.groupLabel),groupIndex:K.groupIndex,groupLabel:K.groupLabel,event:C,data:k.computedData})})})}),f.pipe(N(_),wi(k=>k.highlightTarget==="series"),W(k=>U({graphicGSelection:D,gridHighlight:g,DataMap:S,fullChartParams:f}).pipe(N(_),W(async E=>E)))).subscribe(k=>{const E=k.gridHighlight[0]?k.gridHighlight[0].seriesLabel:null;AE({selection:k.graphicGSelection,seriesLabel:E,fullChartParams:k.fullChartParams})}),()=>{_.next(void 0)}},zv="LineAreas",ME=re({name:zv,defaultParams:bp,layerIndex:Nv,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 et,o=Ov(zv,{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()}}),Gv=.3;function Yv({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 DE(t,e,n){const r=t/2,i=t*e.length+n.barPadding*e.length;return uh().domain(e).range([-i/2+r,i/2-r])}function CE(t,e){return t<=1?0:e/(t-1)*Gv}function LE(t,e){return t<=1?e:e*(1-Gv)}function kE({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,b)=>{q(b[m]).selectAll(`rect.${e}`).data(n[m]??[],y=>y.id).join(y=>y.append("rect").classed(e,!0).attr("cursor","pointer").attr("height",_=>0),y=>y,y=>y.remove()).attr("transform",(y,_)=>`translate(${(y?y.axisX:0)-p}, 0)`).attr("fill",y=>y.color).attr("y",y=>y.axisY<r[m]?y.axisY:r[m]).attr("x",y=>h?0:o(y.seriesLabel)).attr("width",u).attr("rx",l[m][0]??1).attr("ry",l[m][1]??1).transition().duration(f).ease(Uo(s.transitionEase)).delay((y,_)=>y.groupIndex*c).attr("height",y=>Math.abs(y.axisYFromZero))}),t.selectAll(`rect.${e}`)}function RE({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)=>{q(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 EE({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)?q(o[i]).style("opacity",1):q(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const Wh=(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$:b,event$:y})=>{const _=new et,x=Mn(t,"clipPath-box"),w=ot(t,"rect"),{seriesSelection$:$,axesSelection$:R,defsSelection$:A,graphicGSelection$:D}=dr({selection:e,pluginName:t,clipPathID:x,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:f,gridGraphicTransform$:h}),I=o.pipe(N(_),B(E=>E.map(C=>C[0]?C[0].axisY-C[0].axisYFromZero:0)),tt()),v=U({computedData:n,visibleComputedData:i,params:l,gridAxesSize:d,isSeriesSeprate:b}).pipe(N(_),W(async E=>E),B(E=>E.params.barWidth?E.params.barWidth:E.isSeriesSeprate?Yv({axisWidth:E.gridAxesSize.width,groupAmount:E.computedData[0]?E.computedData[0].length:0,barAmountOfGroup:1,barPadding:E.params.barPadding,barGroupPadding:E.params.barGroupPadding}):Yv({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})),tt()),L=U({computedData:n,barWidth:v,params:l,gridGraphicReverseScale:p}).pipe(N(_),W(async E=>E),B(E=>{const C=E.barWidth/2,F=E.params.barRadius===!0?C:E.params.barRadius===!1?0:typeof E.params.barRadius=="number"?E.params.barRadius:0;return E.computedData.map((H,J)=>{const z=E.gridGraphicReverseScale[J]??E.gridGraphicReverseScale[0];let V=F*z[0],Y=F*z[1];if(V>C){const K=C/V;V=V*K,Y=Y*K}return[V,Y]})})),T=i.pipe(N(_),B(E=>{const C=new Set;return E.forEach(F=>{F.forEach(H=>{C.add(H.groupLabel)})}),Array.from(C)})),S=U({seriesLabels:a,barWidth:v,params:l}).pipe(N(_),W(async E=>E),B(E=>DE(E.barWidth,E.seriesLabels,E.params))),M=c.pipe(N(_),B(E=>E.transitionDuration),tt()),P=new gt(E=>{U({groupLabels:T,transitionDuration:M}).pipe(W(async C=>C)).subscribe(C=>{const F=CE(C.groupLabels.length,C.transitionDuration);E.next(F)})}).pipe(N(_),tt()),G=new gt(E=>{U({groupLabels:T,transitionDuration:M}).pipe(W(async C=>C)).subscribe(C=>{const F=LE(C.groupLabels.length,C.transitionDuration);E.next(F)})}).pipe(N(_),tt());U({defsSelection:A,gridAxesSize:d}).pipe(N(_),W(async E=>E)).subscribe(E=>{const C=[{id:x,width:E.gridAxesSize.width,height:E.gridAxesSize.height}];RE({defsSelection:E.defsSelection,clipPathData:C})});const O=c.pipe(N(_),B(E=>E.highlightTarget),tt()),k=U({graphicGSelection:D,visibleComputedLayoutData:o,zeroYArr:I,groupLabels:T,barScale:S,params:l,chartParams:c,highlightTarget:O,barWidth:v,transformedBarRadius:L,delayGroup:P,transitionItem:G,isSeriesSeprate:b}).pipe(N(_),W(async E=>E),B(E=>kE({graphicGSelection:E.graphicGSelection,rectClassName:w,visibleComputedLayoutData:E.visibleComputedLayoutData,zeroYArr:E.zeroYArr,groupLabels:E.groupLabels,barScale:E.barScale,params:E.params,chartParams:E.chartParams,barWidth:E.barWidth,transformedBarRadius:E.transformedBarRadius,delayGroup:E.delayGroup,transitionItem:E.transitionItem,isSeriesSeprate:E.isSeriesSeprate})));return U({barSelection:k,computedData:n,highlightTarget:O,SeriesDataMap:s,GroupDataMap:u}).pipe(N(_),W(async E=>E)).subscribe(E=>{E.barSelection.on("mouseover",(C,F)=>{C.stopPropagation(),y.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:E.highlightTarget,datum:F,gridIndex:F.gridIndex,series:E.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:E.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:E.computedData})}).on("mousemove",(C,F)=>{C.stopPropagation(),y.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:E.highlightTarget,datum:F,gridIndex:F.gridIndex,series:E.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:E.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:E.computedData})}).on("mouseout",(C,F)=>{C.stopPropagation(),y.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:E.highlightTarget,datum:F,gridIndex:F.gridIndex,series:E.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:E.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:E.computedData})}).on("click",(C,F)=>{C.stopPropagation(),y.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:E.highlightTarget,datum:F,gridIndex:F.gridIndex,series:E.SeriesDataMap.get(F.seriesLabel),seriesIndex:F.seriesIndex,seriesLabel:F.seriesLabel,groups:E.GroupDataMap.get(F.groupLabel),groupIndex:F.groupIndex,groupLabel:F.groupLabel,event:C,data:E.computedData})})}),U({barSelection:k,highlight:g.pipe(B(E=>E.map(C=>C.id))),fullChartParams:c}).pipe(N(_),W(async E=>E)).subscribe(E=>{EE({selection:E.barSelection,ids:E.highlight,fullChartParams:E.fullChartParams})}),()=>{_.next(void 0)}},Uv="Bars",IE=re({name:Uv,defaultParams:Xo,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 et,o=Wh(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$,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="BarsPN",NE=re({name:Wv,defaultParams:Xo,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 et,o=Wh(Wv,{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$:Ko(!0),event$:n.event$});return()=>{i.next(void 0),o()}}),Hv=.3;function BE({axisWidth:t,groupAmount:e,barGroupPadding:n=0}){const i=t/(e-1)-n;return i>1?i:1}function FE(t,e){return t<=1?0:e/(t-1)*Hv}function OE(t,e){return t<=1?e:e*(1-Hv)}function zE({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)=>{q(m[g]).selectAll(`rect.${e}`).data(n[g]??[],b=>b.id).join(b=>b.append("rect").classed(e,!0).attr("cursor","pointer").attr("height",y=>0),b=>b,b=>b.remove()).attr("transform",(b,y)=>`translate(${(b?b.axisX:0)-h}, 0)`).attr("fill",b=>b.color).attr("y",b=>r).attr("x",b=>0).attr("width",s).attr("rx",u[g][0]??1).attr("ry",u[g][1]??1).transition().duration(c).ease(Uo(a.transitionEase)).delay((b,y)=>b.groupIndex*l).attr("y",b=>b._barStartY).attr("height",b=>Math.abs(b._barHeight))}),t.selectAll(`rect.${e}`)}function GE({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)=>{q(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 YE({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)?q(o[i]).style("opacity",1):q(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const Xv=(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$:b,isSeriesSeprate$:y,event$:_})=>{const x=new et,w=Mn(t,"clipPath-box"),$=ot(t,"rect"),{seriesSelection$:R,axesSelection$:A,defsSelection$:D,graphicGSelection$:I}=dr({selection:e,pluginName:t,clipPathID:w,seriesLabels$:a,gridContainerPosition$:b,gridAxesTransform$:h,gridGraphicTransform$:p}),v=o.pipe(N(x),B(z=>z[0]&&z[0][0]?z[0][0].axisY-z[0][0].axisYFromZero:0),tt()),L=U({computedData:n,params:l,axisSize:g,isSeriesSeprate:y}).pipe(N(x),W(async z=>z),B(z=>z.params.barWidth?z.params.barWidth:BE({axisWidth:z.axisSize.width,groupAmount:z.computedData[0]?z.computedData[0].length:0,barGroupPadding:z.params.barGroupPadding})),tt()),T=U({computedData:n,barWidth:L,params:l,gridGraphicReverseScale:d}).pipe(N(x),W(async z=>z),B(z=>{const V=z.barWidth/2,Y=z.params.barRadius===!0?V:z.params.barRadius===!1?0:typeof z.params.barRadius=="number"?z.params.barRadius:0;return z.computedData.map((K,j)=>{const nt=z.gridGraphicReverseScale[j]??z.gridGraphicReverseScale[0],st=Y*nt[0],X=Y*nt[1];return[st,X]})})),S=i.pipe(N(x),B(z=>{const V=new Set;return z.forEach(Y=>{Y.forEach(K=>{V.add(K.groupLabel)})}),Array.from(V)}),vt(1)),M=f.pipe(N(x),B(z=>z.transitionDuration),tt()),P=new gt(z=>{U({groupLabels:S,transitionDuration:M}).pipe(W(async V=>V)).subscribe(V=>{const Y=FE(V.groupLabels.length,V.transitionDuration);z.next(Y)})}).pipe(N(x),tt()),G=new gt(z=>{U({groupLabels:S,transitionDuration:M}).pipe(W(async V=>V)).subscribe(V=>{const Y=OE(V.groupLabels.length,V.transitionDuration);z.next(Y)})}).pipe(N(x),tt()),O=U({computedData:n,dataFormatter:c}).pipe(N(x),W(async z=>z),B(z=>{const V=z.computedData[0]?z.computedData[0].length-1:0,Y=z.dataFormatter.grid.groupAxis.scaleDomain[0],K=z.dataFormatter.grid.groupAxis.scaleDomain[1]==="max"?V:z.dataFormatter.grid.groupAxis.scaleDomain[1];return[Y,K]})),k=U({visibleComputedLayoutData:o,groupScaleDomain:O}).pipe(N(x),W(async z=>z),B(z=>{const V=z.groupScaleDomain[0],Y=z.groupScaleDomain[1],j=z.visibleComputedLayoutData.map(dt=>dt.filter((ft,Ut)=>ft.groupIndex>=V&&ft.groupIndex<=Y)).flat();if(j.length<=1)return 1;const nt=j.reduce((dt,ft)=>ft.value>dt.value?ft:dt,j[0]),st=nt.groupIndex,X=j.filter(dt=>dt.groupIndex===st).reduce((dt,ft)=>dt+ft.value,0);return nt.value/X})),E=U({computedLayoutData:r,yRatio:k,zeroY:v}).pipe(N(x),B(z=>{let V=z.computedLayoutData[0]?z.computedLayoutData[0].map(()=>z.zeroY):[];return z.computedLayoutData.map((Y,K)=>Y.map((j,nt)=>{const st=V[nt];let X=0;return j.visible&&(X=j.axisYFromZero*z.yRatio,V[nt]=V[nt]+X),{...j,_barStartY:st,_barHeight:X}}))})),C=U({computedLayoutData:r,zeroY:v}).pipe(N(x),B(z=>z.computedLayoutData.map((V,Y)=>V.map((K,j)=>({...K,_barStartY:z.zeroY,_barHeight:K.axisYFromZero}))))),F=y.pipe(W(z=>Qp(()=>z,C,E)));U({defsSelection:D,gridAxesSize:g}).pipe(N(x),W(async z=>z)).subscribe(z=>{const V=[{id:w,width:z.gridAxesSize.width,height:z.gridAxesSize.height}];GE({defsSelection:z.defsSelection,clipPathData:V})});const H=f.pipe(N(x),B(z=>z.highlightTarget),tt()),J=U({graphicGSelection:I,graphicData:F,zeroY:v,groupLabels:S,params:l,chartParams:f,highlightTarget:H,barWidth:L,transformedBarRadius:T,delayGroup:P,transitionItem:G,isSeriesSeprate:y}).pipe(N(x),W(async z=>z),B(z=>zE({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:J,computedData:n,highlightTarget:H,SeriesDataMap:s,GroupDataMap:u}).subscribe(z=>{z.barSelection.on("mouseover",(V,Y)=>{V.stopPropagation(),_.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:V,data:z.computedData})}).on("mousemove",(V,Y)=>{V.stopPropagation(),_.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:V,data:z.computedData})}).on("mouseout",(V,Y)=>{V.stopPropagation(),_.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:V,data:z.computedData})}).on("click",(V,Y)=>{V.stopPropagation(),_.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:V,data:z.computedData})})}),U({barSelection:J,highlight:m.pipe(B(z=>z.map(V=>V.id))),fullChartParams:f}).pipe(N(x),W(async z=>z)).subscribe(z=>{YE({selection:z.barSelection,ids:z.highlight,fullChartParams:z.fullChartParams})}),()=>{x.next(void 0)}},jv="BarStack",UE=re({name:jv,defaultParams:vp,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 et,o=Xv(jv,{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()}}),Vv=.3;function qv({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 WE(t,e,n){const r=t/2,i=t*e.length+n.barPadding*e.length;return uh().domain(e).range([-i/2+r,i/2-r])}function HE(t,e){return t<=1?0:e/(t-1)*Vv}function XE(t,e){return t<=1?e:e*(1-Vv)}function jE({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,b,y)=>{q(y[b]).selectAll(`g.${e}`).data(r[b]??[]).join(x=>{const w=x.append("g").classed(e,!0).attr("cursor","pointer");return w.append("path").classed(n,!0).style("vector-effect","non-scaling-stroke").attr("d",$=>{const R=-d,A=o[b],D=o[b];return`M${R},${A} L${R+c/2},${D} ${R+c},${A}`}),w},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[b]?x.axisY:o[b]).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(Uo(l.transitionEase)).delay((x,w)=>x.groupIndex*f).attr("d",x=>{const w=-d,$=o[b],R=x.axisY;return`M${w},${$} L${w+c/2},${R} ${w+c},${$}`})}),t.selectAll(`path.${n}`)}function VE({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`
|
50
50
|
<stop offset="0%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[0]}"/>
|
51
51
|
<stop offset="100%" stop-color="${a}" stop-opacity="${r.linearGradientOpacity[1]}"/>
|
52
|
-
`})}function qE({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)=>{q(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 ZE({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)?q(a[o]).style("opacity",1):q(a[o]).style("opacity",n.styles.unhighlightedOpacity)})}const Zv=(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$:b,event$:y})=>{const _=new et,x=Mn(t,"clipPath-box"),w=ot(t,"pathG"),$=ot(t,"path"),{seriesSelection$:R,axesSelection$:A,defsSelection$:D,graphicGSelection$:I}=dr({selection:e,pluginName:t,clipPathID:x,seriesLabels$:s,gridContainerPosition$:m,gridAxesTransform$:h,gridGraphicTransform$:p});p.pipe(N(_),B(C=>-C.translate[1]/C.scale[1]));const v=o.pipe(B(C=>C.map(F=>F[0]?F[0].axisY-F[0].axisYFromZero:0)),tt()),L=U({computedData:n,visibleComputedData:i,params:c,gridAxesSize:d,isSeriesSeprate:b}).pipe(N(_),W(async C=>C),B(C=>C.params.barWidth?C.params.barWidth:C.isSeriesSeprate?qv({axisWidth:C.gridAxesSize.width,groupAmount:C.computedData[0]?C.computedData[0].length:0,barAmountOfGroup:1,barPadding:C.params.barPadding,barGroupPadding:C.params.barGroupPadding}):qv({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}))),T=i.pipe(N(_),B(C=>{const F=new Set;return C.forEach(H=>{H.forEach(J=>{F.add(J.groupLabel)})}),Array.from(F)})),S=new gt(C=>{U({seriesLabels:s,barWidth:L,params:c}).pipe(N(_),W(async F=>F)).subscribe(F=>{const H=WE(F.barWidth,F.seriesLabels,F.params);C.next(H)})}),M=f.pipe(N(_),B(C=>C.transitionDuration),tt()),P=new gt(C=>{U({groupLabels:T,transitionDuration:M}).pipe(W(async F=>F)).subscribe(F=>{const H=HE(F.groupLabels.length,F.transitionDuration);C.next(H)})}).pipe(N(_),tt()),G=new gt(C=>{U({groupLabels:T,transitionDuration:M}).pipe(W(async F=>F)).subscribe(F=>{const H=XE(F.groupLabels.length,F.transitionDuration);C.next(H)})}).pipe(N(_),tt());U({defsSelection:D,gridAxesSize:d}).pipe(N(_),W(async C=>C)).subscribe(C=>{const F=[{id:x,width:C.gridAxesSize.width,height:C.gridAxesSize.height}];qE({defsSelection:C.defsSelection,clipPathData:F})});const O=f.pipe(N(_),B(C=>C.highlightTarget),tt()),k=s.pipe(N(_),B(C=>C.map((F,H)=>Mn(t,`lineargradient-${F}`)))),E=U({graphicGSelection:I,defsSelection:D,computedData:n,visibleComputedLayoutData:o,linearGradientIds:k,zeroYArr:v,groupLabels:T,barScale:S,params:c,chartParams:f,barWidth:L,delayGroup:P,transitionItem:G,isSeriesSeprate:b}).pipe(N(_),W(async C=>C),B(C=>(VE({defsSelection:C.defsSelection,computedData:C.computedData,linearGradientIds:C.linearGradientIds,params:C.params}),jE({graphicGSelection:C.graphicGSelection,pathGClassName:w,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:E,computedData:n,highlightTarget:O,SeriesDataMap:u,GroupDataMap:l}).subscribe(C=>{C.barSelection.on("mouseover",(F,H)=>{F.stopPropagation(),y.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:C.highlightTarget,datum:H,gridIndex:H.gridIndex,series:C.SeriesDataMap.get(H.seriesLabel),seriesIndex:H.seriesIndex,seriesLabel:H.seriesLabel,groups:C.GroupDataMap.get(H.groupLabel),groupIndex:H.groupIndex,groupLabel:H.groupLabel,event:F,data:C.computedData})}).on("mousemove",(F,H)=>{F.stopPropagation(),y.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:C.highlightTarget,datum:H,gridIndex:H.gridIndex,series:C.SeriesDataMap.get(H.seriesLabel),seriesIndex:H.seriesIndex,seriesLabel:H.seriesLabel,groups:C.GroupDataMap.get(H.groupLabel),groupIndex:H.groupIndex,groupLabel:H.groupLabel,event:F,data:C.computedData})}).on("mouseout",(F,H)=>{F.stopPropagation(),y.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:C.highlightTarget,datum:H,gridIndex:H.gridIndex,series:C.SeriesDataMap.get(H.seriesLabel),seriesIndex:H.seriesIndex,seriesLabel:H.seriesLabel,groups:C.GroupDataMap.get(H.groupLabel),groupIndex:H.groupIndex,groupLabel:H.groupLabel,event:F,data:C.computedData})}).on("click",(F,H)=>{F.stopPropagation(),y.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:C.highlightTarget,datum:H,gridIndex:H.gridIndex,series:C.SeriesDataMap.get(H.seriesLabel),seriesIndex:H.seriesIndex,seriesLabel:H.seriesLabel,groups:C.GroupDataMap.get(H.groupLabel),groupIndex:H.groupIndex,groupLabel:H.groupLabel,event:F,data:C.computedData})})}),U({barSelection:E,highlight:g.pipe(B(C=>C.map(F=>F.id))),fullChartParams:f}).pipe(N(_),W(async C=>C)).subscribe(C=>{ZE({selection:C.barSelection,ids:C.highlight,fullChartParams:C.fullChartParams})}),()=>{_.next(void 0)}},Kv="BarsTriangle",KE=re({name:Kv,defaultParams:_p,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 et,o=Zv(Kv,{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 QE({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)=>{q(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)=>{q(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((b,y)=>d*u).attr("opacity",1),m=>m.transition().duration(50).attr("opacity",1),m=>m.remove()).attr("r",i.radius).attr("fill",(m,b)=>Pn({datum:m,colorType:i.fillColorType,fullChartParams:o})).attr("stroke",(m,b)=>Pn({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 JE({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)?q(a[o]).style("opacity",1).transition("highlight").duration(200):q(a[o]).style("opacity",n===!0?0:r.styles.unhighlightedOpacity).transition("highlight").duration(200)})}function tI({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)=>{q(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 Qv=(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$:b})=>{const y=new et,_=Mn(t,"clipPath-box"),x=ot(t,"circleG"),w=ot(t,"circle"),{seriesSelection$:$,axesSelection$:R,defsSelection$:A,graphicGSelection$:D}=dr({selection:e,pluginName:t,clipPathID:_,seriesLabels$:a,gridContainerPosition$:m,gridAxesTransform$:f,gridGraphicTransform$:h}),I=U({computedData:n,gridGraphicReverseScale:p}).pipe(N(y),W(async S=>S),B(S=>S.computedData.map((M,P)=>S.gridGraphicReverseScale[P])));U({defsSelection:A,gridAxesSize:d}).pipe(N(y),W(async S=>S)).subscribe(S=>{const M=[{id:_,width:S.gridAxesSize.width,height:S.gridAxesSize.height}];tI({defsSelection:S.defsSelection,clipPathData:M})});const v=c.pipe(N(y),B(S=>S.highlightTarget),tt()),L=U({graphicGSelection:D,visibleComputedLayoutData:o,graphicReverseScale:I,fullChartParams:c,fullParams:l}).pipe(N(y),W(async S=>S),B(S=>QE({graphicGSelection:S.graphicGSelection,circleGClassName:x,circleClassName:w,visibleComputedLayoutData:S.visibleComputedLayoutData,fullParams:S.fullParams,fullChartParams:S.fullChartParams,graphicReverseScale:S.graphicReverseScale})));U({graphicSelection:L,computedData:n,SeriesDataMap:s,GroupDataMap:u,highlightTarget:v}).pipe(N(y),W(async S=>S)).subscribe(S=>{S.graphicSelection.on("mouseover",(M,P)=>{b.next({type:"grid",eventName:"mouseover",pluginName:t,highlightTarget:S.highlightTarget,datum:P,gridIndex:P.gridIndex,series:S.SeriesDataMap.get(P.seriesLabel),seriesIndex:P.seriesIndex,seriesLabel:P.seriesLabel,groups:S.GroupDataMap.get(P.groupLabel),groupIndex:P.groupIndex,groupLabel:P.groupLabel,event:M,data:S.computedData})}).on("mousemove",(M,P)=>{b.next({type:"grid",eventName:"mousemove",pluginName:t,highlightTarget:S.highlightTarget,data:S.computedData,datum:P,gridIndex:P.gridIndex,series:S.SeriesDataMap.get(P.seriesLabel),seriesIndex:P.seriesIndex,seriesLabel:P.seriesLabel,groups:S.GroupDataMap.get(P.groupLabel),groupIndex:P.groupIndex,groupLabel:P.groupLabel,event:M})}).on("mouseout",(M,P)=>{b.next({type:"grid",eventName:"mouseout",pluginName:t,highlightTarget:S.highlightTarget,datum:P,gridIndex:P.gridIndex,series:S.SeriesDataMap.get(P.seriesLabel),seriesIndex:P.seriesIndex,seriesLabel:P.seriesLabel,groups:S.GroupDataMap.get(P.groupLabel),groupIndex:P.groupIndex,groupLabel:P.groupLabel,event:M,data:S.computedData})}).on("click",(M,P)=>{b.next({type:"grid",eventName:"click",pluginName:t,highlightTarget:S.highlightTarget,datum:P,gridIndex:P.gridIndex,series:S.SeriesDataMap.get(P.seriesLabel),seriesIndex:P.seriesIndex,seriesLabel:P.seriesLabel,groups:S.GroupDataMap.get(P.groupLabel),groupIndex:P.groupIndex,groupLabel:P.groupLabel,event:M,data:S.computedData})})});const T=l.pipe(N(y),B(S=>S.onlyShowHighlighted),tt());return U({graphicSelection:L,highlight:g.pipe(B(S=>S.map(M=>M.id))),onlyShowHighlighted:T,fullChartParams:c}).pipe(N(y),W(async S=>S)).subscribe(S=>{JE({selection:S.graphicSelection,ids:S.highlight,onlyShowHighlighted:S.onlyShowHighlighted,fullChartParams:S.fullChartParams})}),()=>{y.next(void 0)}},Jv="Dots",eI=re({name:Jv,defaultParams:xp,layerIndex:Bv,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 et,o=Qv(Jv,{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()}}),nI={listRectWidth:14,listRectHeight:14,listRectRadius:0};function t2(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 Ou=(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 et,h=U({seriesLabels:n,fullChartParams:o}).pipe(N(f),W(async v=>v),B(v=>{const L=new Map;let T=0;return v.seriesLabels.forEach((S,M)=>{if(!L.has(S)){const P=t2(T,v.fullChartParams);L.set(S,P),T++}}),L})),p=n.pipe(N(f),B(v=>{const L=new Set;let T=[];return v.forEach(S=>{L.has(S)?T.push(!1):T.push(!0),L.add(S)}),T})),d=r.pipe(N(f),B(v=>v.placement==="top"||v.placement==="top-start"||v.placement==="top-end"?"top":v.placement==="bottom"||v.placement==="bottom-start"||v.placement==="bottom-end"?"bottom":v.placement==="left"||v.placement==="left-start"||v.placement==="left-end"?"left":"right"),tt((v,L)=>v===L),vt(1)),g=r.pipe(N(f),B(v=>v.placement==="top-start"||v.placement==="bottom-start"||v.placement==="left-start"||v.placement==="right-start"?"start":v.placement==="top-end"||v.placement==="bottom-end"||v.placement==="left-end"||v.placement==="right-end"?"end":(v.placement==="top"||v.placement==="bottom"||v.placement==="left"||v.placement==="right","center")),tt((v,L)=>v===L),vt(1)),m=d.pipe(N(f),B(v=>v==="bottom"||v==="top"?"row":"column"),tt((v,L)=>v===L),vt(1)),b=U({fullParams:r,position:d,layout:i}).pipe(N(f),W(async v=>v),B(v=>{const L=v.fullParams.padding*2+v.fullParams.gap*2;return v.position==="bottom"||v.position==="top"?v.layout.rootWidth-L:v.layout.rootHeight-L})),_=U({layout:i,position:d,justify:g}).pipe(N(f),W(async v=>v),B(v=>{let L=0,T=0;return v.position==="bottom"?(T=v.layout.rootHeight,v.justify==="start"?L=0:v.justify==="center"?L=v.layout.rootWidth/2:v.justify==="end"&&(L=v.layout.rootWidth)):v.position==="right"?(L=v.layout.rootWidth,v.justify==="start"?T=0:v.justify==="center"?T=v.layout.rootHeight/2:v.justify==="end"&&(T=v.layout.rootHeight)):v.position==="top"?(T=0,v.justify==="start"?L=0:v.justify==="center"?L=v.layout.rootWidth/2:v.justify==="end"&&(L=v.layout.rootWidth)):v.position==="left"&&(L=0,v.justify==="start"?T=0:v.justify==="center"?T=v.layout.rootHeight/2:v.justify==="end"&&(T=v.layout.rootHeight)),{x:L,y:T}})).pipe(N(f),B(v=>e.selectAll(`g.${s}`).data([v]).join(L=>L.append("g").classed(s,!0).attr("transform",T=>`translate(${T.x}, ${T.y})`),L=>L.transition().attr("transform",T=>`translate(${T.x}, ${T.y})`),L=>L.remove()))),x=r.pipe(N(f),B(v=>v.seriesList[0]?v.seriesList[0]:nI)),w=U({visibleList:p,fullParams:r,fullChartParams:o,seriesLabels:n,lineDirection:m,lineMaxSize:b,defaultListStyle:x,SeriesLabelColorMap:h,textSizePx:a}).pipe(N(f),W(async v=>v),B(v=>v.seriesLabels.reduce((L,T,S)=>{if(!v.visibleList[S])return L;const M=fn(T,v.textSizePx),P=v.textSizePx*1.5+M,G=v.SeriesLabelColorMap.get(T),O=L[0]&&L[0][0]?L[L.length-1][L[L.length-1].length-1]:null,{translateX:k,translateY:E,lineIndex:C,itemIndex:F}=((J,z,V)=>{let Y=0,K=0,j=0,nt=0;if(J.lineDirection==="column"){let st=V?V.translateY+J.textSizePx+J.fullParams.gap:0;if(st+J.textSizePx>J.lineMaxSize){j=V.lineIndex+1,nt=0,K=0;const X=z[z.length-1].reduce((dt,ft)=>ft.itemWidth>dt?ft.itemWidth:dt,0);Y=V.translateX+X+J.fullParams.gap}else j=V?V.lineIndex:0,nt=V?V.itemIndex+1:0,K=st,Y=V?V.translateX:0}else{let st=V?V.translateX+V.itemWidth+J.fullParams.gap:0;st+P>J.lineMaxSize?(j=V.lineIndex+1,nt=0,Y=0):(j=V?V.lineIndex:0,nt=V?V.itemIndex+1:0,Y=st),K=(J.textSizePx+J.fullParams.gap)*j}return{translateX:Y,translateY:K,lineIndex:j,itemIndex:nt}})(v,L,O);L[C]||(L[C]=[]);const H=v.fullParams.seriesList[F]?v.fullParams.seriesList[F]:v.defaultListStyle;return L[C].push({id:T,seriesLabel:T,seriesIndex:S,lineIndex:C,itemIndex:F,text:T,itemWidth:P,translateX:k,translateY:E,color:G,listRectWidth:H.listRectWidth,listRectHeight:H.listRectHeight,listRectRadius:H.listRectRadius}),L},[])),vt(1)),$=U({fullParams:r,fullChartParams:o,lineDirection:m,lengendItems:w,textSizePx:a}).pipe(N(f),W(async v=>v),B(v=>{const{width:L,height:T}=((S,M)=>{let P=0,G=0;if(!M.length||!M[0].length)return{width:P,height:G};const O=M[0][M[0].length-1];return S.lineDirection==="column"?(P=M.reduce((k,E)=>{const C=E.reduce((F,H)=>H.itemWidth>F?H.itemWidth:F,0);return k+C},0),P+=S.fullParams.gap*(M.length-1),G=O.translateY+S.textSizePx):(P=O.translateX+O.itemWidth,G=S.textSizePx*M.length+S.fullParams.gap*(M.length-1)),{width:P,height:G}})(v,v.lengendItems);return{direction:v.lineDirection,width:L,height:T,translateX:v.fullParams.gap,translateY:v.fullParams.gap}}),vt(1)),R=U({fullParams:r,position:d,justify:g,lengendList:$}).pipe(N(f),W(async v=>v),B(v=>{const L=v.lengendList.width+v.fullParams.gap*2,T=v.lengendList.height+v.fullParams.gap*2;let S=0,M=0;return v.position==="left"?v.justify==="start"?(S=v.fullParams.padding,M=v.fullParams.padding):v.justify==="center"?(S=v.fullParams.padding,M=-T/2):v.justify==="end"&&(S=v.fullParams.padding,M=-T-v.fullParams.padding):v.position==="right"?v.justify==="start"?(S=-L-v.fullParams.padding,M=v.fullParams.padding):v.justify==="center"?(S=-L-v.fullParams.padding,M=-T/2):v.justify==="end"&&(S=-L-v.fullParams.padding,M=-T-v.fullParams.padding):v.position==="top"?v.justify==="start"?(S=v.fullParams.padding,M=v.fullParams.padding):v.justify==="center"?(S=-L/2,M=v.fullParams.padding):v.justify==="end"&&(S=-L-v.fullParams.padding,M=v.fullParams.padding):v.justify==="start"?(S=v.fullParams.padding,M=-T-v.fullParams.padding):v.justify==="center"?(S=-L/2,M=-T-v.fullParams.padding):v.justify==="end"&&(S=-L-v.fullParams.padding,M=-T-v.fullParams.padding),{width:L,height:T,translateX:S,translateY:M}})),A=U({rootPositionSelection:_,fullParams:r,fullChartParams:o,legendCard:R}).pipe(N(f),W(async v=>v),B(v=>v.rootPositionSelection.selectAll("g").data([v.legendCard]).join(L=>L.append("g").classed(u,!0).attr("transform",T=>`translate(${T.translateX}, ${T.translateY})`),L=>L.transition().attr("transform",T=>`translate(${T.translateX}, ${T.translateY})`),L=>L.remove()).each((L,T,S)=>{q(S[T]).selectAll("rect").data([L]).join("rect").attr("width",M=>M.width).attr("height",M=>M.height).attr("fill",kt(v.fullParams.backgroundFill,v.fullChartParams)).attr("stroke",kt(v.fullParams.backgroundStroke,v.fullChartParams))}))),D=U({lengendCardSelection:A,fullParams:r,lengendList:$}).pipe(N(f),W(async v=>v),B(v=>v.lengendCardSelection.selectAll("g").data([v.lengendList]).join(L=>L.append("g").classed(l,!0).attr("transform",T=>`translate(${T.translateX}, ${T.translateY})`),L=>L.transition().attr("transform",T=>`translate(${T.translateX}, ${T.translateY})`),L=>L.remove())));return U({lengendListSelection:D,fullParams:r,fullChartParams:o,lengendItems:w,textSizePx:a}).pipe(N(f),W(async v=>v),B(v=>{const L=v.lengendItems[0]?v.lengendItems.flat():[];return v.lengendListSelection.selectAll(`g.${c}`).data(L).join(T=>T.append("g").classed(c,!0).attr("cursor","default"),T=>T,T=>T.remove()).attr("transform",(T,S)=>`translate(${T.translateX}, ${T.translateY})`).each((T,S,M)=>{const P=v.textSizePx/2,G=-T.listRectWidth/2,O=-T.listRectHeight/2;q(M[S]).selectAll("rect").data([T]).join("rect").attr("x",P).attr("y",P).attr("width",k=>k.listRectWidth).attr("height",k=>k.listRectHeight).attr("transform",k=>`translate(${G}, ${O})`).attr("fill",k=>k.color).attr("rx",k=>k.listRectRadius),q(M[S]).selectAll("text").data([T]).join(k=>k.append("text").attr("dominant-baseline","hanging"),k=>k,k=>k.remove()).attr("x",v.textSizePx*1.5).attr("font-size",v.fullChartParams.styles.textSize).attr("fill",k=>v.fullParams.textColorType==="series"?t2(k.seriesIndex,v.fullChartParams):kt(v.fullParams.textColorType,v.fullChartParams)).text(k=>k.text)})})).subscribe(),()=>{e.select(`g.${s}`).remove(),f.next(void 0)}},e2="GridLegend",rI=re({name:e2,defaultParams:Sp,layerIndex:Bu,validator:(t,{validateColumns:e})=>e(t,{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:t,rootSelection:e,observer:n,subject:r})=>{const i=new et,o=n.SeriesDataMap$.pipe(N(i),B(u=>Array.from(u.keys()))),a=n.fullParams$.pipe(N(i),B(u=>{const l=[{listRectWidth:u.listRectWidth,listRectHeight:u.listRectHeight,listRectRadius:u.listRectRadius}];return{...u,seriesList:l}})),s=Ou(e2,{rootSelection:e,seriesLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}});function iI(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 b=[];let y=" ";i&&(y="");for(let _=0,x=p.length;_<x;++_){const w=(g.text?g.text+y:"")+p[_],$=u(w);(m+$)/2<d?(g.width=m=$,g.text=w):(m=u(p[_]),g={width:m,text:p[_]},b.push(g))}return b}function f(p){let d=0;for(let g=0,m=p.length;g<m;++g){const b=(Math.abs(g-m/2+.5)+.5)*r,y=p[g].width/2;d=Math.max(d,Math.sqrt(y**2+b**2))}return d}function h(p,d){o>0&&(d=s(d,o));const g=a(d),m=l(d),b=c(g,m),y=f(b);let _=p.select("text");_.size()||(_=p.append("text")),_.attr("transform",`translate(0,0) scale(${n/y})`);const x=_.selectAll("tspan").data(b),w=x.enter().append("tspan").attr("x",0).merge(x).attr("y",($,R)=>(R-b.length/2+.8)*r).text($=>$.text);return x.exit().remove(),x.merge(w)}return h(t,e)}function n2(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 r2(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 oI=6;function aI(t,e){return t.map((n,r)=>{const i=Gh(n,e),o=typeof i=="string"?i.split(`
|
53
|
-
`):[i];return{text:i,textArr:o}})}function sI({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)=>{q(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 uI({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=c0(s).scale(s).ticks(n.ticks==="all"||n.ticks>p?p:n.ticks).tickSize(n.tickFullLine==!0?i.height:-oI).tickSizeOuter(0).tickFormat(_=>{var x;return((x=l[_])==null?void 0:x.text)??""}).tickPadding(d),b=h.transition().duration(100).call(m).on("end",(_,x)=>{h.selectAll(".tick text").each((w,$,R)=>{var D;const A=((D=l[w])==null?void 0:D.textArr)??[];n2(q(R[$]),{textArr:A,textSizePx:f,groupAxisPosition:o.grid.groupAxis.position})})});return b.selectAll("line").style("fill","none").style("stroke",n.tickLineVisible==!0?kt(n.tickColorType,a):"none").style("stroke-dasharray",n.tickFullLineDasharray).attr("pointer-events","none"),b.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 i2=(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 et,p=ot(t,"container"),d=ot(t,"xAxisG"),g=ot(t,"xAxis"),m=ot(t,"groupingLabel"),b=U({computedData:n.pipe(tt((v,L)=>v.length===L.length)),isSeriesSeprate:c}).pipe(N(h),W(async v=>v),B(v=>v.isSeriesSeprate?v.computedData:[v.computedData[0]]),B((v,L)=>e.selectAll(`g.${p}`).data(v,T=>T[0]?T[0].seriesIndex:L).join("g").classed(p,!0))),y=b.pipe(N(h),B((v,L)=>v.selectAll(`g.${d}`).data([d]).join("g").classed(d,!0)));U({containerSelection:b,gridContainerPosition:l}).pipe(N(h),W(async v=>v)).subscribe(v=>{v.containerSelection.attr("transform",(L,T)=>{const S=v.gridContainerPosition[T]??v.gridContainerPosition[0],M=S.translate,P=S.scale;return`translate(${M[0]}, ${M[1]}) scale(${P[0]}, ${P[1]})`})}),U({axisSelection:y,gridAxesTransform:a}).pipe(N(h),W(async v=>v)).subscribe(v=>{v.axisSelection.style("transform",v.gridAxesTransform.value)});const _=U({gridAxesReverseTransform:s,gridContainerPosition:l}).pipe(N(h),W(async v=>v),B(v=>{const L=`rotateX(${v.gridAxesReverseTransform.rotateX}deg) rotateY(${v.gridAxesReverseTransform.rotateY}deg)`,T=`rotate(${v.gridAxesReverseTransform.rotate}deg)`,S=`scale(${1/v.gridContainerPosition[0].scale[0]}, ${1/v.gridContainerPosition[0].scale[1]})`;return`${L} ${T} ${S}`}),tt()),x=U({textReverseTransform:_,fullParams:r}).pipe(N(h),W(async v=>v),B(v=>`${v.textReverseTransform} rotate(${v.fullParams.tickTextRotate}deg)`)),w=U({fullDataFormatter:i,gridAxesSize:u,computedData:n}).pipe(N(h),W(async v=>v),B(v=>{const L=v.computedData[0]?v.computedData[0].length-1:0,T=v.fullDataFormatter.grid.groupAxis.scaleDomain[0]-v.fullDataFormatter.grid.groupAxis.scalePadding,S=v.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?L+v.fullDataFormatter.grid.groupAxis.scalePadding:v.fullDataFormatter.grid.groupAxis.scaleDomain[1]+v.fullDataFormatter.grid.groupAxis.scalePadding;return[T,S]}),vt(1)),$=U({groupScaleDomain:w,gridAxesSize:u}).pipe(N(h),W(async v=>v),B(v=>ko().domain(v.groupScaleDomain).range([0,v.gridAxesSize.width]))),R=n.pipe(B(v=>(v[0]??[]).map(L=>L.groupLabel))),A=U({fullDataFormatter:i,fullParams:r}).pipe(N(h),W(async v=>v),B(v=>{let L="middle",T="hanging";return v.fullDataFormatter.grid.groupAxis.position==="bottom"?(L=v.fullParams.tickTextRotate?"end":"middle",T="hanging"):v.fullDataFormatter.grid.groupAxis.position==="top"?(L=v.fullParams.tickTextRotate?"start":"middle",T="auto"):v.fullDataFormatter.grid.groupAxis.position==="left"?(L="end",T="middle"):v.fullDataFormatter.grid.groupAxis.position==="right"&&(L="start",T="middle"),{textAnchor:L,dominantBaseline:T}})),D=i.pipe(N(h),B(v=>{let L="start",T="hanging";return v.grid.groupAxis.position==="bottom"?T="hanging":v.grid.groupAxis.position==="top"?T="auto":v.grid.groupAxis.position==="left"?L="end":v.grid.groupAxis.position==="right"&&(L="start"),v.grid.valueAxis.position==="left"?L="start":v.grid.valueAxis.position==="right"?L="end":v.grid.valueAxis.position==="bottom"?T="auto":v.grid.valueAxis.position==="top"&&(T="hanging"),{textAnchor:L,dominantBaseline:T}})),I=U({groupLabels:R,fullParams:r}).pipe(N(h),W(async v=>v),B(v=>aI(v.groupLabels,v.fullParams.tickFormat)));return U({axisSelection:y,fullParams:r,tickTextAlign:A,axisLabelAlign:D,gridAxesSize:u,fullDataFormatter:i,chartParams:o,groupScale:$,groupScaleDomain:w,groupLabelData:I,textReverseTransform:_,textReverseTransformWithRotate:x,textSizePx:f}).pipe(N(h),W(async v=>v)).subscribe(v=>{uI({selection:v.axisSelection,xAxisClassName:g,fullParams:v.fullParams,tickTextAlign:v.tickTextAlign,gridAxesSize:v.gridAxesSize,fullDataFormatter:v.fullDataFormatter,chartParams:v.chartParams,groupScale:v.groupScale,groupScaleDomain:v.groupScaleDomain,groupLabelData:v.groupLabelData,textReverseTransformWithRotate:v.textReverseTransformWithRotate,textSizePx:v.textSizePx}),sI({selection:v.axisSelection,groupingLabelClassName:m,fullParams:v.fullParams,axisLabelAlign:v.axisLabelAlign,gridAxesSize:v.gridAxesSize,fullDataFormatter:v.fullDataFormatter,chartParams:v.chartParams,textReverseTransform:v.textReverseTransform})}),()=>{h.next(void 0)}},o2="GroupAxis",lI=re({name:o2,defaultParams:Hu,layerIndex:Dn,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 et,o=i2(o2,{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()}}),cI=6;function fI({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)=>{q(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 hI({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=f0(s).scale(s).ticks(f>n.ticks?n.ticks:l[0]===0&&l[1]===0?1:Math.ceil(f)).tickFormat(b=>Gh(b,n.tickFormat)).tickSize(n.tickFullLine==!0?-i.width:cI).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 et,h=ot(t,"container"),p=ot(t,"yAxisG"),d=ot(t,"yAxis"),g=ot(t,"text"),m=U({computedData:n.pipe(tt((A,D)=>A.length===D.length)),isSeriesSeprate:c}).pipe(N(f),W(async A=>A),B(A=>A.isSeriesSeprate?A.computedData:[A.computedData[0]]),B((A,D)=>e.selectAll(`g.${h}`).data(A,I=>I[0]?I[0].seriesIndex:D).join("g").classed(h,!0))),b=m.pipe(N(f),B((A,D)=>A.selectAll(`g.${p}`).data([p]).join("g").classed(p,!0)));U({containerSelection:m,gridContainerPosition:l}).pipe(N(f),W(async A=>A)).subscribe(A=>{A.containerSelection.attr("transform",(D,I)=>{const v=A.gridContainerPosition[I]??A.gridContainerPosition[0],L=v.translate,T=v.scale;return`translate(${L[0]}, ${L[1]}) scale(${T[0]}, ${T[1]})`})}),U({axisSelection:b,gridAxesTransform:a}).pipe(N(f),W(async A=>A)).subscribe(A=>{A.axisSelection.style("transform",A.gridAxesTransform.value)});const y=U({gridAxesReverseTransform:s,gridContainerPosition:l}).pipe(N(f),W(async A=>A),B(A=>{const D=`rotateX(${A.gridAxesReverseTransform.rotateX}deg) rotateY(${A.gridAxesReverseTransform.rotateY}deg)`,I=`rotate(${A.gridAxesReverseTransform.rotate}deg)`,v=`scale(${1/A.gridContainerPosition[0].scale[0]}, ${1/A.gridContainerPosition[0].scale[1]})`;return`${D} ${I} ${v}`}),tt()),_=U({textReverseTransform:y,fullParams:r}).pipe(N(f),W(async A=>A),B(A=>`${A.textReverseTransform} rotate(${A.fullParams.tickTextRotate}deg)`)),x=new gt(A=>{U({fullDataFormatter:i,gridAxesSize:u,computedData:n}).pipe(N(f),W(async D=>D)).subscribe(D=>{const I=D.computedData[0]?D.computedData[0].length-1:0,v=D.fullDataFormatter.grid.groupAxis.scaleDomain[0]-D.fullDataFormatter.grid.groupAxis.scalePadding,L=D.fullDataFormatter.grid.groupAxis.scaleDomain[1]==="max"?I+D.fullDataFormatter.grid.groupAxis.scalePadding:D.fullDataFormatter.grid.groupAxis.scaleDomain[1]+D.fullDataFormatter.grid.groupAxis.scalePadding,T=D.computedData.map((M,P)=>M.filter((G,O)=>O>=v&&O<=L)),S=hE(T.flat());S[0]===S[1]&&(S[0]=S[1]-1),A.next(S)})}),w=new gt(A=>{U({fullDataFormatter:i,gridAxesSize:u,minAndMax:x}).pipe(N(f),W(async D=>D)).subscribe(D=>{const I=Lg({maxValue:D.minAndMax[1],minValue:D.minAndMax[0],axisWidth:D.gridAxesSize.height,scaleDomain:D.fullDataFormatter.grid.valueAxis.scaleDomain,scaleRange:D.fullDataFormatter.grid.valueAxis.scaleRange});A.next(I)})}),$=U({fullDataFormatter:i,fullParams:r}).pipe(N(f),W(async A=>A),B(A=>{let D="start",I="hanging";return A.fullDataFormatter.grid.valueAxis.position==="left"?(D="end",I="middle"):A.fullDataFormatter.grid.valueAxis.position==="right"?(D="start",I="middle"):A.fullDataFormatter.grid.valueAxis.position==="bottom"?(D=A.fullParams.tickTextRotate?"end":"middle",I="hanging"):A.fullDataFormatter.grid.valueAxis.position==="top"&&(D=A.fullParams.tickTextRotate?"start":"middle",I="auto"),{textAnchor:D,dominantBaseline:I}})),R=i.pipe(N(f),B(A=>{let D="start",I="hanging";return A.grid.groupAxis.position==="bottom"?I="auto":A.grid.groupAxis.position==="top"?I="hanging":A.grid.groupAxis.position==="left"?D="start":A.grid.groupAxis.position==="right"&&(D="end"),A.grid.valueAxis.position==="left"?D="end":A.grid.valueAxis.position==="right"?D="start":A.grid.valueAxis.position==="bottom"?I="hanging":A.grid.valueAxis.position==="top"&&(I="auto"),{textAnchor:D,dominantBaseline:I}}));return U({axisSelection:b,fullParams:r,tickTextAlign:$,axisLabelAlign:R,computedData:n,gridAxesSize:u,fullDataFormatter:i,fullChartParams:o,valueScale:w,textReverseTransform:y,textReverseTransformWithRotate:_,minAndMax:x}).pipe(N(f),W(async A=>A)).subscribe(A=>{hI({selection:A.axisSelection,yAxisClassName:d,fullParams:A.fullParams,tickTextAlign:A.tickTextAlign,gridAxesSize:A.gridAxesSize,fullDataFormatter:A.fullDataFormatter,fullChartParams:A.fullChartParams,valueScale:A.valueScale,textReverseTransformWithRotate:A.textReverseTransformWithRotate,minAndMax:A.minAndMax}),fI({selection:A.axisSelection,textClassName:g,fullParams:A.fullParams,axisLabelAlign:A.axisLabelAlign,gridAxesSize:A.gridAxesSize,fullDataFormatter:A.fullDataFormatter,fullChartParams:A.fullChartParams,textReverseTransform:A.textReverseTransform})}),()=>{f.next(void 0)}},a2="ValueAxis",pI=re({name:a2,defaultParams:Xu,layerIndex:Dn,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 et,o=bi(a2,{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()}}),s2="ValueStackAxis",dI=re({name:s2,defaultParams:$p,layerIndex:Dn,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 et,o=bi(s2,{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()}});function u2(t,e){const n=e.textSizePx*1.5,i=(t==null?[]:Array.isArray(t)?t:typeof t=="string"?t.split(`
|
54
|
-
`):[
|
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
55
|
${i}
|
56
|
-
</text>`:""}function
|
57
|
-
`);return
|
58
|
-
`),a
|
59
|
-
<rect width="${
|
60
|
-
<text x="${
|
61
|
-
<tspan font-weight="${
|
62
|
-
<tspan font-weight="bold" text-anchor="end" x="${
|
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
63
|
</text>
|
64
|
-
</g>`}).join("");return`${
|
65
|
-
${u}`}};
|
64
|
+
</g>`}).join("");return`${o}
|
65
|
+
${u}`}};Pp.renderFn.toString=()=>`(eventData, { styles, utils }) => {
|
66
66
|
const bulletWidth = styles.textSizePx * 0.7
|
67
67
|
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
68
68
|
|
@@ -71,7 +71,7 @@ ${u}`}};Vh.renderFn.toString=()=>`(eventData, { styles }) => {
|
|
71
71
|
const text = \`\${group.seriesLabel}\${group.value}\`
|
72
72
|
return text.length > acc.length ? text : acc
|
73
73
|
}, '')
|
74
|
-
const maxTextWidth = measureTextWidth(maxLengthText, styles.textSizePx)
|
74
|
+
const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
|
75
75
|
const lineEndX = maxTextWidth + styles.textSizePx * 2
|
76
76
|
const contentSvg = eventData.groups
|
77
77
|
.map((group, i) => {
|
@@ -88,7 +88,39 @@ ${u}`}};Vh.renderFn.toString=()=>`(eventData, { styles }) => {
|
|
88
88
|
.join('')
|
89
89
|
return \`\${titleSvg}
|
90
90
|
\${contentSvg}\`
|
91
|
-
}`;const b2="MultiGridLegend",PI=le({name:b2,defaultParams:c2,layerIndex:Bu,validator:(t,{validateColumns:e})=>{const n=e(t,{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(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 et,o=n.multiGridEachDetail$.pipe(N(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(N(i),W(async l=>l),B(l=>l.computedData.map((c,f)=>{const h=ll(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(N(i),W(async l=>l),B(l=>({...l.fullParams,seriesList:l.seriesList}))),u=Ou(b2,{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(),vt(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])))},qh="MultiBars",x2=ot(qh,"grid"),MI=le({name:qh,defaultParams:f2,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 et,o=[];return Re(r).pipe(N(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${x2}`).data(s).join("g").attr("class",x2).each((u,l,c)=>{const f=q(c[l]),h=u.dataFormatter$.pipe(N(i),B(p=>p.grid.separateSeries),tt(),vt(1));o[l]=Wh(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$,isSeriesSeprate$:h,event$:n.event$})})}),()=>{i.next(void 0),o.forEach(s=>s())}}),Zh="MultiBarStack",v2=ot(Zh,"grid"),DI=le({name:Zh,defaultParams:h2,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 et,o=[];return Re(r).pipe(N(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${v2}`).data(s).join("g").attr("class",v2).each((u,l,c)=>{const f=q(c[l]),h=u.dataFormatter$.pipe(N(i),B(p=>p.grid.separateSeries),tt(),vt(1));o[l]=Xv(Zh,{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())}}),Kh="MultiBarsTriangle",_2=ot(Kh,"grid"),CI=le({name:Kh,defaultParams:p2,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 et,o=[];return Re(r).pipe(N(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${_2}`).data(s).join("g").attr("class",_2).each((u,l,c)=>{const f=q(c[l]),h=u.dataFormatter$.pipe(N(i),B(p=>p.grid.separateSeries),tt(),vt(1));o[l]=Zv(Kh,{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())}}),Qh="MultiLines",$2=ot(Qh,"grid"),LI=le({name:Qh,defaultParams:d2,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 et,a=[],s=i.multiGridContainerPosition$.pipe(N(o),B(l=>l.flat()));return Re(i).pipe(N(o)).subscribe(l=>{a.forEach(c=>c()),t.selectAll(`g.${$2}`).data(l).join("g").attr("class",$2).each((c,f,h)=>{const p=q(h[f]);a[f]=Iv(Qh,{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())}}),Jh="MultiLineAreas",w2=ot(Jh,"grid"),kI=le({name:Jh,defaultParams:g2,layerIndex:Nv,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 et,o=[],a=r.multiGridContainerPosition$.pipe(N(i),B(u=>u.flat()));return Re(r).pipe(N(i)).subscribe(u=>{o.forEach(l=>l()),t.selectAll(`g.${w2}`).data(u).join("g").attr("class",w2).each((l,c,f)=>{const h=q(f[c]);o[c]=Ov(Jh,{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())}}),tp="MultiDots",S2=ot(tp,"grid"),RI=le({name:tp,defaultParams:m2,layerIndex:Bv,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 et,o=[];return Re(r).pipe(N(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${S2}`).data(s).join("g").attr("class",S2).each((u,l,c)=>{const f=q(c[l]);o[l]=Qv(tp,{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())}}),ep="MultiGroupAxis",A2=ot(ep,"grid"),EI=le({name:ep,defaultParams:Xh,layerIndex:Dn,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 et,o=[];return Re(r).pipe(N(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${A2}`).data(s).join("g").attr("class",A2).each((u,l,c)=>{const f=q(c[l]),h=u.dataFormatter$.pipe(N(i),B(p=>p.grid.separateSeries),tt(),vt(1));o[l]=i2(ep,{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())}}),np="MultiValueAxis",T2=ot(np,"grid"),II=le({name:np,defaultParams:Yu,layerIndex:Dn,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 et,o=[];return Re(r).pipe(N(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${T2}`).data(s).join("g").attr("class",T2).each((u,l,c)=>{const f=q(c[l]),h=u.dataFormatter$.pipe(N(i),B(p=>p.grid.separateSeries),tt(),vt(1));o[l]=bi(np,{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())}}),P2="MultiGridTooltip",NI=le({name:P2,defaultParams:Vh,layerIndex:Fu,validator:(t,{validateColumns:e})=>e(t,{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:t,rootSelection:e,name:n,subject:r,observer:i})=>{const o=new et,a=zu(P2,{rootSelection:e,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}}),rp="MultiValueStackAxis",M2=ot(rp,"grid"),BI=le({name:rp,defaultParams:Yu,layerIndex:Dn,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 et,o=[];return Re(r).pipe(N(i)).subscribe(s=>{o.forEach(u=>u()),t.selectAll(`g.${M2}`).data(s).join("g").attr("class",M2).each((u,l,c)=>{const f=q(c[l]),h=u.dataFormatter$.pipe(N(i),B(p=>p.grid.separateSeries),tt(),vt(1));o[l]=bi(rp,{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())}}),ip="OverlappingValueAxes",D2=ot(ip,"grid"),FI=le({name:ip,defaultParams:jh,layerIndex:Dn,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 et,o=[],a=r.fullParams$.pipe(N(i),B(c=>c.gridIndexes[0])),s=r.fullParams$.pipe(N(i),B(c=>c.gridIndexes[1])),u=U({firstGridIndex:a,secondGridIndex:s,fullDataFormatter:r.fullDataFormatter$}).pipe(N(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 Ko(r).pipe(N(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=Rg({fullDataFormatter$:u,layout$:r.layout$}),d=Eg({gridAxesTransform$:p}),g=Ig({computedData$:f.computedData$,fullDataFormatter$:u,layout$:r.layout$});return{...f,dataFormatter$:u,gridAxesTransform$:p,gridAxesReverseTransform$:d,gridContainerPosition$:g}}))).pipe(N(i)).subscribe(c=>{o.forEach(f=>f()),t.selectAll(`g.${D2}`).data(c).join("g").attr("class",D2).each((f,h,p)=>{if(h>1)return;const d=q(p[h]);o[h]=bi(ip,{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())}}),op="OverlappingValueStackAxes",C2=ot(op,"grid"),OI=le({name:op,defaultParams:y2,layerIndex:Dn,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 et,o=[],a=r.fullParams$.pipe(N(i),B(c=>c.gridIndexes[0])),s=r.fullParams$.pipe(N(i),B(c=>c.gridIndexes[1])),u=U({firstGridIndex:a,secondGridIndex:s,fullDataFormatter:r.fullDataFormatter$}).pipe(N(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 Ko(r).pipe(N(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=Rg({fullDataFormatter$:u,layout$:r.layout$}),d=Eg({gridAxesTransform$:p}),g=Ig({computedData$:f.computedData$,fullDataFormatter$:u,layout$:r.layout$});return{...f,dataFormatter$:u,gridAxesTransform$:p,gridAxesReverseTransform$:d,gridContainerPosition$:g}}))).pipe(N(i)).subscribe(c=>{o.forEach(f=>f()),t.selectAll(`g.${C2}`).data(c).join("g").attr("class",C2).each((f,h,p)=>{if(h>1)return;const d=q(p[h]);o[h]=bi(op,{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())}}),zI={header:{height:36,text:[],textStyle:[]},footer:{height:0,text:[],textStyle:[]}},L2={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};L2.textRenderFn.toString=()=>`(eventData) => {
|
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) => {
|
92
124
|
if (eventData.highlightTarget === 'datum' && eventData.datum) {
|
93
125
|
return [\`\${eventData.datum.label}: \${eventData.datum.value}\`]
|
94
126
|
} else if (eventData.highlightTarget === 'series') {
|
@@ -126,9 +158,27 @@ ${u}`}};Vh.renderFn.toString=()=>`(eventData, { styles }) => {
|
|
126
158
|
return [label, value]
|
127
159
|
}
|
128
160
|
return []
|
129
|
-
}`;const
|
130
|
-
|
131
|
-
|
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)]
|
132
182
|
}
|
133
183
|
return [
|
134
184
|
String(
|
@@ -137,19 +187,19 @@ ${u}`}};Vh.renderFn.toString=()=>`(eventData, { styles }) => {
|
|
137
187
|
return acc + seriesData.reduce((_acc, data) => {
|
138
188
|
return _acc + (data.value ?? 0)
|
139
189
|
}, 0)
|
140
|
-
}, 0) *
|
190
|
+
}, 0) * (eventData.tween ?? 1)
|
141
191
|
)
|
142
192
|
)
|
143
193
|
]
|
144
|
-
}`;const
|
145
|
-
<text x="${
|
146
|
-
<tspan>${
|
147
|
-
</text>`:"",
|
148
|
-
${
|
149
|
-
</text>`;return`${
|
150
|
-
<g ${
|
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})"`:""}>
|
151
201
|
${u}
|
152
|
-
</g>`}};
|
202
|
+
</g>`}};Up.renderFn.toString=()=>`(eventData, { styles, utils }) => {
|
153
203
|
const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
|
154
204
|
const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
|
155
205
|
const bulletWidth = styles.textSizePx * 0.7
|
@@ -171,14 +221,14 @@ ${u}`}};Vh.renderFn.toString=()=>`(eventData, { styles }) => {
|
|
171
221
|
<g \${hasSeriesLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
|
172
222
|
\${datumSvg}
|
173
223
|
</g>\`
|
174
|
-
}`;const GI={name:"Bubbles",defaultParams:k2,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 Cn;function YI(t,e){return l1().velocityDecay(e.force.velocityDecay).force("collision",a1().radius(n=>n.r+e.force.collisionSpacing)).force("charge",c1().strength(n=>-Math.pow(n.r,2)*e.force.strength)).on("tick",()=>{t.attr("transform",n=>`translate(${n.x},${n.y})`)})}function UI({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/o0(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 WI({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=q(u[s]);let c=!0;a[o].length<=n.bubbleText.lineLengthMin&&(c=!1),l.call(iI,{text:a[o],radius:a.r*n.bubbleText.fillRate,lineHeight:n.bubbleText.lineHeight,isBreakAll:c})}),i}function HI(){return w0().on("start",(t,e)=>{t.active||Cn.alpha(1).restart(),e.fx=e.x,e.fy=e.y}).on("drag",(t,e)=>{t.active||Cn.alphaTarget(0),e.fx=t.x,e.fy=t.y}).on("end",(t,e)=>{e.fx=null,e.fy=null})}function XI({fullParams:t,SeriesContainerPositionMap:e}){Cn.force("x",f1().strength(t.force.strength).x(n=>e.get(n.seriesLabel).centerX)).force("y",h1().strength(t.force.strength).y(n=>e.get(n.seriesLabel).centerY)),Cn.alpha(1).restart()}function jI({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=q(o[i]);e.includes(r.id)?a.style("opacity",1).transition("highlight").ease(eo).duration(500):a.style("opacity",n.styles.unhighlightedOpacity)})}const VI=dn(GI)(({selection:t,name:e,observer:n,subject:r})=>{const i=new et;let o=new Map;const a=n.fullDataFormatter$.pipe(B(f=>f.sumSeries),tt()),s=n.fullParams$.pipe(N(i),B(f=>f.arcScaleType),tt()),u=U({layout:n.layout$,SeriesContainerPositionMap:n.SeriesContainerPositionMap$,visibleComputedLayoutData:n.visibleComputedLayoutData$,scaleType:s}).pipe(N(i),W(async f=>f),B(f=>UI({visibleComputedLayoutData:f.visibleComputedLayoutData,LastBubbleDataMap:o,graphicWidth:f.layout.width,graphicHeight:f.layout.height,SeriesContainerPositionMap:f.SeriesContainerPositionMap,scaleType:f.scaleType})),vt(1));u.subscribe(f=>{o=new Map(f.map(h=>[h.id,h]))});const l=n.fullChartParams$.pipe(N(i),B(f=>f.highlightTarget),tt()),c=U({bubblesData:u,fullParams:n.fullParams$,SeriesContainerPositionMap:n.SeriesContainerPositionMap$,sumSeries:a}).pipe(N(i),W(async f=>f),B(f=>{Cn&&Cn.stop();const h=WI({selection:t,bubblesData:f.bubblesData,fullParams:f.fullParams,sumSeries:f.sumSeries});return Cn=YI(h,f.fullParams),Cn.nodes(f.bubblesData),XI({fullParams:f.fullParams,SeriesContainerPositionMap:f.SeriesContainerPositionMap}),h}));return U({bubblesSelection:c,computedData:n.computedData$,SeriesDataMap:n.SeriesDataMap$,highlightTarget:l}).pipe(N(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(HI())}),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(N(i),W(async f=>f)).subscribe(f=>{jI({bubblesSelection:f.bubblesSelection,highlightIds:f.highlight,fullChartParams:f.fullChartParams})}),()=>{i.next(void 0)}});function N2({data:t,startAngle:e,endAngle:n}){return Xx().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 qI({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())}),vt(1))}const Wo=({selection:t,pluginName:e,separateSeries$:n,seriesLabels$:r,seriesContainerPosition$:i})=>{const o=qI({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}},cp="Pie",ZI={name:cp,defaultParams:R2,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 KI({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 fp(a,i.startAngle,i.endAngle,1)}:o=>fp(n,i.startAngle,i.endAngle,o)}function fp(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 B2({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)=>Pn({datum:s.data,colorType:i.strokeColorType,fullChartParams:o})).attr("stroke-width",i.strokeWidth).attr("d",(s,u)=>n(s))}function QI({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=q(s[a]);e.includes(o.data.id)?u.style("opacity",1).transition("highlight").ease(eo).duration(500).attr("d",l=>i(l)):u.style("opacity",n.styles.unhighlightedOpacity).transition("highlight").attr("d",l=>r(l))})}function JI(t,e){const n=new et,r=ot(t,"path");let i=[],o=[];const a=e.seriesContainerPosition$.pipe(N(n),B(h=>h.width<h.height?h.width:h.height),tt()),s=new gt(h=>{U({containerVisibleComputedLayoutData:e.containerVisibleComputedLayoutData$,fullParams:e.fullParams$}).pipe(N(n),W(async p=>p)).subscribe(p=>{const d=N2({data:p.containerVisibleComputedLayoutData,startAngle:p.fullParams.startAngle,endAngle:p.fullParams.endAngle});h.next(d)})}),u=new gt(h=>{U({shorterSideWith:a,fullParams:e.fullParams$}).pipe(N(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 gt(h=>{U({shorterSideWith:a,fullParams:e.fullParams$}).pipe(N(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(N(n),B(h=>h.highlightTarget),tt()),f=new gt(h=>{U({pieData:s,arc:u,computedData:e.computedData$,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,highlightTarget:c}).pipe(N(n),W(async p=>p)).subscribe(p=>{e.containerSelection.interrupt("graphicMove");const d=e.containerSelection.selectAll("path").data(p.pieData,y=>y.id),g=d.enter(),m=d.exit(),b=KI({enter:g,exit:m,data:p.pieData,lastTweenData:i,fullParams:p.fullParams});e.containerSelection.transition("graphicMove").duration(p.fullChartParams.transitionDuration).tween("move",(y,_)=>x=>{o=b(x),B2({selection:e.containerSelection,data:o,arc:p.arc,pathClassName:r,fullParams:p.fullParams,fullChartParams:p.fullChartParams})}).on("end",(y,_)=>{o=fp(p.pieData,p.fullParams.startAngle,p.fullParams.endAngle,1);const x=B2({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(vt(1));return U({pathSelection:f,SeriesDataMap:e.SeriesDataMap$,computedData:e.computedData$,highlightTarget:c}).pipe(N(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(N(n),W(async h=>h)).subscribe(h=>{QI({pathSelection:h.pathSelection,ids:h.highlight,fullChartParams:h.fullChartParams,arc:h.arc,arcHighlight:h.arcHighlight})}),()=>{n.next(void 0)}}const tN=dn(ZI)(({selection:t,name:e,subject:n,observer:r})=>{const i=new et,{seriesCenterSelection$:o}=Wo({selection:t,pluginName:cp,separateSeries$:r.separateSeries$,seriesLabels$:r.seriesLabels$,seriesContainerPosition$:r.seriesContainerPosition$}),a=[];return o.pipe(N(i)).subscribe(s=>{a.forEach(u=>u()),s.each((u,l,c)=>{const f=q(c[l]),h=r.visibleComputedLayoutData$.pipe(N(i),B(d=>d[l]??d[0])),p=r.seriesContainerPosition$.pipe(N(i),B(d=>d[l]??d[0]));a[l]=JI(cp,{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())}}),Uu="PieEventTexts",F2=ot(Uu,"text"),eN={name:Uu,defaultParams:ap,layerIndex:Uh,validator:(t,{validateColumns:e})=>e(t,{eventFn:{toBeTypes:["Function"]},textAttrs:{toBeTypes:["object[]"]},textStyles:{toBeTypes:["object[]"]}})};function hp(t,e){const n=t.selectAll(`text.${F2}`).data(e),r=n.enter().append("text").classed(F2,!0),i=n.merge(r);return i.each((o,a,s)=>{const u=q(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 pp({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 nN(t,e){const n=new et;let r;const i=e.fullChartParams$.pipe(N(n),B(o=>o.highlightTarget),tt());return U({computedData:e.computedData$,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,highlightTarget:i}).pipe(N(n),W(async o=>o)).subscribe(o=>{e.containerSelection.transition("move").duration(o.fullChartParams.transitionDuration).tween("move",(a,s)=>u=>{const l=pp({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});hp(e.containerSelection,l)}).on("end",(a,s)=>{const u=pp({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});hp(e.containerSelection,u),r&&r.unsubscribe(),r=e.event$.subscribe(l=>{const c=pp({eventData:l,eventName:l.eventName,t:1,eventFn:o.fullParams.eventFn,textAttrs:o.fullParams.textAttrs,textStyles:o.fullParams.textStyles});hp(e.containerSelection,c)})})}),()=>{n.next(void 0)}}const rN=dn(eN)(({selection:t,name:e,observer:n,subject:r})=>{const i=new et,{seriesCenterSelection$:o}=Wo({selection:t,pluginName:Uu,separateSeries$:n.separateSeries$,seriesLabels$:n.seriesLabels$,seriesContainerPosition$:n.seriesContainerPosition$}),a=[];return o.pipe(N(i)).subscribe(s=>{a.forEach(u=>u()),s.each((u,l,c)=>{const f=q(c[l]),h=n.computedLayoutData$.pipe(N(i),B(d=>d[l]??d[0])),p=n.seriesContainerPosition$.pipe(N(i),B(d=>d[l]??d[0]));a[l]=nN(Uu,{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",iN=ot(xi,"label-g"),oN=ot(xi,"line-g"),aN=ot(xi,"text"),O2=2,sN={name:xi,defaultParams:sp,layerIndex:Uh,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 uN({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(`
|
175
|
-
`),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 lN({labelGSelection:t,data:e,fullParams:n,fullChartParams:r,textSizePx:i}){const o=t.selectAll("text").data(e,a=>a.pieDatum.id).join("text").classed(aN,!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)=>Pn({datum:a.pieDatum.data,colorType:n.labelColorType,fullChartParams:r})).each((a,s,u)=>{r2(q(u[s]),{textArr:a.arcLabels,textSizePx:i,quadrant:a.quadrant})});return o.transition().attr("transform",a=>"translate("+a.x+","+a.y+")"),o}function cN(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 fN({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=>Pn({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 hN({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=q(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=q(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 pN(t,e){const n=new et;e.containerSelection.selectAll("g").remove();const r=e.containerSelection.append("g");r.classed(oN,!0);const i=e.containerSelection.append("g");i.classed(iN,!0);const o=new et,a=new et;let s=[];const u=e.seriesContainerPosition$.pipe(N(n),B(c=>c.width<c.height?c.width:c.height),tt()),l=e.fullParams$.pipe(N(n),B(c=>c.labelCentroid>=O2?O2:c.labelCentroid));return U({shorterSideWith:u,containerVisibleComputedLayoutData:e.containerVisibleComputedLayoutData$,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$,textSizePx:e.textSizePx$,lineStartCentroid:l}).pipe(N(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=N2({data:c.containerVisibleComputedLayoutData,startAngle:c.fullParams.startAngle,endAngle:c.fullParams.endAngle});s=uN({pieData:p,arc:f,arcMouseover:h,labelCentroid:c.fullParams.labelCentroid,lineStartCentroid:c.lineStartCentroid,fullParams:c.fullParams}),r.selectAll("polyline").remove();const d=lN({labelGSelection:i,data:s,fullParams:c.fullParams,fullChartParams:c.fullChartParams,textSizePx:c.textSizePx});setTimeout(()=>{cN(d,s,c.textSizePx);const g=fN({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(N(n),W(async c=>c)).subscribe(c=>{hN({textSelection:c.textSelection,lineSelection:c.lineSelection,ids:c.highlight,fullChartParams:c.fullChartParams})}),()=>{n.next(void 0)}}const dN=dn(sN)(({selection:t,observer:e,subject:n})=>{const r=new et,{seriesCenterSelection$:i}=Wo({selection:t,pluginName:xi,separateSeries$:e.separateSeries$,seriesLabels$:e.seriesLabels$,seriesContainerPosition$:e.seriesContainerPosition$}),o=[];return i.pipe(N(r)).subscribe(a=>{o.forEach(s=>s()),a.each((s,u,l)=>{const c=q(l[u]),f=e.visibleComputedLayoutData$.pipe(N(r),B(p=>p[u]??p[0])),h=e.seriesContainerPosition$.pipe(N(r),B(p=>p[u]??p[0]));o[u]=pN(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)}}),dp="Rose",gN=Math.PI*2,mN={name:dp,defaultParams:E2,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 yN({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 wu().innerRadius(0).outerRadius(d).padAngle(o.padAngle).padRadius(d).cornerRadius(t)(l)}}}function bN({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=q(s[a]);e.includes(o.data.id)?u.style("opacity",1).transition("highlight").ease(eo).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 xN(t,e){const n=new et,r=ot(t,"path");let i=[];const o=e.seriesContainerPosition$.pipe(N(n),B(p=>p.width<p.height?p.width:p.height),tt()),a=U({containerVisibleComputedLayoutData:e.containerVisibleComputedLayoutData$,fullParams:e.fullParams$}).pipe(N(n),W(async p=>p),B(p=>{const d=gN/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(N(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(N(n),W(async p=>p),B(p=>yN({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(N(n),B(p=>p.transitionDuration),tt()),f=new l_(!1),h=new gt(p=>{U({pieData:a,tweenArc:l,transitionDuration:c,fullParams:e.fullParams$,fullChartParams:e.fullChartParams$}).pipe(N(n),W(async d=>d)).subscribe(d=>{const g=d.pieData.map((b,y)=>(b.prevValue=i[y]&&i[y].id===b.id?i[y].value:0,b));f.next(!0);const m=e.containerSelection.selectAll("path").data(g,b=>b.id).join("path").classed(r,!0).style("cursor","pointer").attr("fill",(b,y)=>b.data.color).attr("stroke",(b,y)=>Pn({datum:b.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(vt(1));return U({pathSelection:h,SeriesDataMap:e.SeriesDataMap$,computedData:e.computedData$,highlightTarget:s}).pipe(N(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(N(n),W(async p=>p),wi(p=>!p.isTransitionMoving)).subscribe(p=>{bN({pathSelection:p.pathSelection,ids:p.highlight,fullParams:p.fullParams,fullChartParams:p.fullChartParams,tweenArc:p.tweenArc})}),()=>{n.next(void 0)}}const vN=dn(mN)(({selection:t,name:e,subject:n,observer:r})=>{const i=new et,{seriesCenterSelection$:o}=Wo({selection:t,pluginName:dp,separateSeries$:r.separateSeries$,seriesLabels$:r.seriesLabels$,seriesContainerPosition$:r.seriesContainerPosition$}),a=[];return o.pipe(N(i)).subscribe(s=>{a.forEach(u=>u()),s.each((u,l,c)=>{const f=q(c[l]),h=r.visibleComputedLayoutData$.pipe(N(i),B(d=>JSON.parse(JSON.stringify(d[l]??d[0])))),p=r.seriesContainerPosition$.pipe(N(i),B(d=>JSON.parse(JSON.stringify(d[l]??d[0]))));a[l]=xN(dp,{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",_N=ot(vi,"label-g"),$N=ot(vi,"line-g"),wN=ot(vi,"text"),z2=2,SN={name:vi,defaultParams:up,layerIndex:Uh,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 AN({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=wu().innerRadius(0).outerRadius(p).padAngle(0).padRadius(p).cornerRadius(0),[g,m]=d.centroid(f),[b,y]=[g,m],_=s.labelFn(f.data);return{pieDatum:f,arcIndex:h,arcLabels:_.split(`
|
176
|
-
`),lineStartX:
|
177
|
-
<text x="${
|
178
|
-
<tspan>${
|
179
|
-
</text>`:"",
|
180
|
-
${
|
181
|
-
</text>`;return`${
|
182
|
-
<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})"`:""}>
|
183
233
|
${u}
|
184
|
-
</g>`}};mp.renderFn.toString=()=>'(eventData, { styles }) => {\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 W2="TreeLegend",EN=Ol({name:W2,defaultParams:U2,layerIndex:Bu,validator:(t,{validateColumns:e})=>e(t,{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:t,rootSelection:e,observer:n,subject:r})=>{const i=new et,o=n.CategoryDataMap$.pipe(N(i),B(u=>Array.from(u.keys()))),a=n.fullParams$.pipe(N(i),B(u=>{const l=[{listRectWidth:u.listRectWidth,listRectHeight:u.listRectHeight,listRectRadius:u.listRectRadius}];return{...u,seriesList:l}})),s=Ou(W2,{rootSelection:e,seriesLabels$:o,fullParams$:a,layout$:n.layout$,fullChartParams$:n.fullChartParams$,textSizePx$:n.textSizePx$});return()=>{i.next(void 0),s()}}),gr="TreeMap",H2=ot(gr,"tree"),X2=ot(gr,"tile"),IN={name:gr,defaultParams:gp,layerIndex:ke,validator:(t,{validateColumns:e})=>e(t,{paddingInner:{toBeTypes:["number"]},paddingOuter:{toBeTypes:["number"]},labelColorType:{toBeOption:"ColorType"},squarifyRatio:{toBeTypes:["number"]},sort:{toBeTypes:["Function"]}})};function NN({selection:t,treeData:e,fullParams:n,fullChartParams:r,textSizePx:i}){const o=i/2,a=i,s=t.selectAll(`g.${H2}`).data(e,u=>u.data.id).join("g").attr("class",H2);return s.attr("transform",u=>!u.x0||!u.y0?null:`translate(${u.x0},${u.y0})`).each((u,l,c)=>{const f=q(c[l]);f.selectAll(`rect.${X2}`).data([u],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([u]).join("g").each((h,p,d)=>{q(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 b=q(this),y=m.data.label.split(/\s+/).reverse();let _,x=[];const w=b.attr("x");let $=b.attr("y"),R=0,A=b.text(null).append("tspan").attr("cursor","pointer").attr("fill",kt(n.labelColorType,r)).attr("font-size",r.styles.textSize).attr("x",w).attr("y",$);for(;_=y.pop();)x.push(_),A.text(x.join(" ")),A.node().getComputedTextLength()>m.x1-m.x0-o&&(x.pop(),A.text(x.join(" ")),x=[_],R+=a,A=b.append("tspan").attr("cursor","pointer").attr("fill",kt(n.labelColorType,r)).attr("font-size",r.styles.textSize).attr("x",w).attr("y",$).attr("dy",R+"px").text(_))})})}),s}function BN({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)?q(o[i]).style("opacity",1):q(o[i]).style("opacity",n.styles.unhighlightedOpacity)})}const FN=Ol(IN)(({selection:t,name:e,subject:n,observer:r})=>{const i=new et,o=U({layout:r.layout$,visibleComputedData:r.visibleComputedData$,fullParams:r.fullParams$,fullDataFormatter:r.fullDataFormatter$,fullChartParams:r.fullChartParams$}).pipe(N(i),W(async u=>u),B(u=>{const l=nb().size([u.layout.width,u.layout.height]).paddingInner(u.fullParams.paddingInner).paddingOuter(u.fullParams.paddingOuter).round(!0).tile(nh.ratio(u.fullParams.squarifyRatio)),c=eu(u.visibleComputedData).sum(h=>h.value).sort(u.fullParams.sort);return l(c),c.leaves()})),a=U({selection:Ko(t),treeData:o,fullParams:r.fullParams$,fullChartParams:r.fullChartParams$,textSizePx:r.textSizePx$}).pipe(N(i),W(async u=>u),B(u=>NN({selection:t,treeData:u.treeData,fullParams:u.fullParams,fullChartParams:u.fullChartParams,textSizePx:u.textSizePx}))),s=r.fullChartParams$.pipe(N(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(N(i),W(async u=>u)).subscribe(u=>{u.cellSelection.on("mouseover",(l,c)=>{l.stopPropagation(),n.event$.next({type:"tree",eventName:"mouseover",pluginName:gr,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:gr,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:gr,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:gr,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(N(i),W(async u=>u)).subscribe(u=>{BN({selection:u.cellSelection,ids:u.highlight,fullChartParams:u.fullChartParams})}),()=>{i.next(void 0)}}),j2="TreeTooltip",ON=Ol({name:j2,defaultParams:mp,layerIndex:Fu,validator:(t,{validateColumns:e})=>e(t,{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:t,rootSelection:e,name:n,subject:r,observer:i})=>{const o=new et,a=zu(j2,{rootSelection:e,fullParams$:i.fullParams$,fullChartParams$:i.fullChartParams$,layout$:i.layout$,event$:r.event$});return()=>{o.next(void 0),a()}});Z.BarStack=UE,Z.Bars=IE,Z.BarsPN=NE,Z.BarsTriangle=KE,Z.Bubbles=VI,Z.CONTAINER_PLUGIN_PARAMS=zI,Z.DEFAULT_BARS_DIVERGING_PARAMS=q2,Z.DEFAULT_BARS_PARAMS=Xo,Z.DEFAULT_BARS_TRIANGLE_PARAMS=_p,Z.DEFAULT_BAR_STACK_PARAMS=vp,Z.DEFAULT_BUBBLES_PARAMS=k2,Z.DEFAULT_DOTS_PARAMS=xp,Z.DEFAULT_GRID_LEGEND_PARAMS=Sp,Z.DEFAULT_GRID_TOOLTIP_PARAMS=ju,Z.DEFAULT_GRID_ZOOM_PARAMS=wp,Z.DEFAULT_GROUP_AREA_PARAMS=Wu,Z.DEFAULT_GROUP_AXIS_PARAMS=Hu,Z.DEFAULT_LINES_PARAMS=yp,Z.DEFAULT_LINE_AREAS_PARAMS=bp,Z.DEFAULT_MULTI_BARS_PARAMS=f2,Z.DEFAULT_MULTI_BARS_TRIANGLE_PARAMS=p2,Z.DEFAULT_MULTI_BAR_STACK_PARAMS=h2,Z.DEFAULT_MULTI_DOTS_PARAMS=m2,Z.DEFAULT_MULTI_GRID_LEGEND_PARAMS=c2,Z.DEFAULT_MULTI_GRID_TOOLTIP_PARAMS=Vh,Z.DEFAULT_MULTI_GROUP_AXIS_PARAMS=Xh,Z.DEFAULT_MULTI_LINES_PARAMS=d2,Z.DEFAULT_MULTI_LINE_AREAS_PARAMS=g2,Z.DEFAULT_MULTI_VALUE_AXIS_PARAMS=Yu,Z.DEFAULT_MULTI_VALUE_STACK_AXIS_PARAMS=TI,Z.DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS=jh,Z.DEFAULT_OVERLAPPING_VALUE_STACK_AXES_PARAMS=y2,Z.DEFAULT_PIE_EVENT_TEXTS_PARAMS=ap,Z.DEFAULT_PIE_LABELS_PARAMS=sp,Z.DEFAULT_PIE_PARAMS=R2,Z.DEFAULT_ROSE_LABELS_PARAMS=up,Z.DEFAULT_ROSE_PARAMS=E2,Z.DEFAULT_SERIES_LEGEND_PARAMS=I2,Z.DEFAULT_SERIES_TOOLTIP_PARAMS=lp,Z.DEFAULT_TREE_LEGEND_PARAMS=U2,Z.DEFAULT_TREE_MAP_PARAMS=gp,Z.DEFAULT_TREE_TOOLTIP_PARAMS=mp,Z.DEFAULT_VALUE_AXIS_PARAMS=Xu,Z.DEFAULT_VALUE_STACK_AXIS_PARAMS=$p,Z.Dots=eI,Z.GridLegend=rI,Z.GridTooltip=mI,Z.GridZoom=yI,Z.GroupAux=AI,Z.GroupAxis=lI,Z.LineAreas=ME,Z.Lines=_E,Z.MultiBarStack=DI,Z.MultiBars=MI,Z.MultiBarsTriangle=CI,Z.MultiDots=RI,Z.MultiGridLegend=PI,Z.MultiGridTooltip=NI,Z.MultiGroupAxis=EI,Z.MultiLineAreas=kI,Z.MultiLines=LI,Z.MultiValueAxis=II,Z.MultiValueStackAxis=BI,Z.OverlappingValueAxes=FI,Z.OverlappingValueStackAxes=OI,Z.Pie=tN,Z.PieEventTexts=rN,Z.PieLabels=dN,Z.Rose=vN,Z.RoseLabels=LN,Z.SeriesLegend=kN,Z.SeriesTooltip=RN,Z.TOOLTIP_PARAMS=L2,Z.TreeLegend=EN,Z.TreeMap=FN,Z.TreeTooltip=ON,Z.ValueAxis=pI,Z.ValueStackAxis=dI,Object.defineProperty(Z,Symbol.toStringTag,{value:"Module"})});
|
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"})});
|