@ntlab/ntjs-assets 2.99.0 → 2.100.0
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/assets/js/cdn.json +1 -1
- package/assets/js/highcharts/css/highcharts.css +0 -5
- package/assets/js/highcharts/es-modules/Accessibility/Components/MenuComponent.js +3 -1
- package/assets/js/highcharts/es-modules/Accessibility/Components/NavigatorComponent.js +5 -1
- package/assets/js/highcharts/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +3 -1
- package/assets/js/highcharts/es-modules/Accessibility/FocusBorder.js +4 -0
- package/assets/js/highcharts/es-modules/Accessibility/Options/A11yDefaults.js +12 -0
- package/assets/js/highcharts/es-modules/Core/Axis/Axis.js +4 -3
- package/assets/js/highcharts/es-modules/Core/Axis/Axis3DComposition.js +0 -3
- package/assets/js/highcharts/es-modules/Core/Axis/AxisDefaults.js +0 -8
- package/assets/js/highcharts/es-modules/Core/Axis/BrokenAxis.js +114 -90
- package/assets/js/highcharts/es-modules/Core/Axis/Color/ColorAxis.js +3 -3
- package/assets/js/highcharts/es-modules/Core/Axis/Color/ColorAxisDefaults.js +2 -3
- package/assets/js/highcharts/es-modules/Core/Axis/OrdinalAxis.js +0 -1
- package/assets/js/highcharts/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +2 -2
- package/assets/js/highcharts/es-modules/Core/Axis/RadialAxis.js +15 -3
- package/assets/js/highcharts/es-modules/Core/Axis/ScrollbarAxis.js +19 -17
- package/assets/js/highcharts/es-modules/Core/Axis/Stacking/StackingAxis.js +0 -1
- package/assets/js/highcharts/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +36 -51
- package/assets/js/highcharts/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +39 -17
- package/assets/js/highcharts/es-modules/Core/Chart/Chart.js +10 -9
- package/assets/js/highcharts/es-modules/Core/Chart/ChartDefaults.js +4 -3
- package/assets/js/highcharts/es-modules/Core/Chart/StockChart.js +42 -49
- package/assets/js/highcharts/es-modules/Core/Defaults.js +12 -7
- package/assets/js/highcharts/es-modules/Core/Geometry/CircleUtilities.js +3 -1
- package/assets/js/highcharts/es-modules/Core/Globals.js +1 -1
- package/assets/js/highcharts/es-modules/Core/Legend/Legend.js +8 -7
- package/assets/js/highcharts/es-modules/Core/Pointer.js +14 -5
- package/assets/js/highcharts/es-modules/Core/Renderer/HTML/AST.js +1 -1
- package/assets/js/highcharts/es-modules/Core/Renderer/HTML/HTMLElement.js +2 -1
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGElement.js +2 -2
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGLabel.js +10 -1
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGRenderer.js +7 -7
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/TextBuilder.js +2 -2
- package/assets/js/highcharts/es-modules/Core/Series/Point.js +9 -0
- package/assets/js/highcharts/es-modules/Core/Series/Series.js +1 -1
- package/assets/js/highcharts/es-modules/Core/Series/SeriesRegistry.js +8 -1
- package/assets/js/highcharts/es-modules/Data/Connectors/JSONConnector.js +0 -1
- package/assets/js/highcharts/es-modules/Data/Converters/HTMLTableConverter.js +1 -1
- package/assets/js/highcharts/es-modules/Data/Converters/JSONConverter.js +0 -1
- package/assets/js/highcharts/es-modules/Data/DataTable.js +1 -2
- package/assets/js/highcharts/es-modules/Data/Formula/FormulaParser.js +33 -1
- package/assets/js/highcharts/es-modules/Data/Formula/FormulaProcessor.js +97 -45
- package/assets/js/highcharts/es-modules/Data/Modifiers/DataModifier.js +1 -1
- package/assets/js/highcharts/es-modules/Data/Modifiers/FilterModifier.js +168 -0
- package/assets/js/highcharts/es-modules/Data/Modifiers/FilterModifierOptions.js +14 -0
- package/assets/js/highcharts/es-modules/Data/Modifiers/SortModifier.js +12 -3
- package/assets/js/highcharts/es-modules/Extensions/Annotations/MockPoint.js +6 -3
- package/assets/js/highcharts/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +1 -1
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Popup/PopupComposition.js +1 -1
- package/assets/js/highcharts/es-modules/Extensions/Boost/Boost.js +5 -1
- package/assets/js/highcharts/es-modules/Extensions/Boost/BoostSeries.js +31 -18
- package/assets/js/highcharts/es-modules/Extensions/Boost/WGLRenderer.js +30 -21
- package/assets/js/highcharts/es-modules/Extensions/Boost/WGLShader.js +18 -5
- package/assets/js/highcharts/es-modules/Extensions/BoostCanvas.js +0 -5
- package/assets/js/highcharts/es-modules/Extensions/BorderRadius.js +6 -2
- package/assets/js/highcharts/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +1 -1
- package/assets/js/highcharts/es-modules/Extensions/DownloadURL.js +3 -1
- package/assets/js/highcharts/es-modules/Extensions/ExportData/ExportData.js +3 -5
- package/assets/js/highcharts/es-modules/Extensions/Exporting/Exporting.js +86 -0
- package/assets/js/highcharts/es-modules/Extensions/Exporting/ExportingDefaults.js +1 -1
- package/assets/js/highcharts/es-modules/Extensions/NonCartesianSeriesZoom/NonCartesianSeriesZoom.js +25 -25
- package/assets/js/highcharts/es-modules/Extensions/OfflineExporting/OfflineExporting.js +1 -1
- package/assets/js/highcharts/es-modules/Extensions/Pane/PaneComposition.js +19 -12
- package/assets/js/highcharts/es-modules/Extensions/ScrollablePlotArea.js +29 -21
- package/assets/js/highcharts/es-modules/Extensions/Sonification/Sonification.js +1 -1
- package/assets/js/highcharts/es-modules/Extensions/StaticScale.js +13 -11
- package/assets/js/highcharts/es-modules/Extensions/TextPath.js +2 -2
- package/assets/js/highcharts/es-modules/Series/Bellcurve/BellcurveSeries.js +16 -9
- package/assets/js/highcharts/es-modules/Series/DataModifyComposition.js +0 -2
- package/assets/js/highcharts/es-modules/Series/DrawPointUtilities.js +1 -1
- package/assets/js/highcharts/es-modules/Series/Histogram/HistogramSeries.js +19 -17
- package/assets/js/highcharts/es-modules/Series/Pie/PieDataLabel.js +2 -2
- package/assets/js/highcharts/es-modules/Series/Pie/PieSeries.js +2 -2
- package/assets/js/highcharts/es-modules/Series/PolarComposition.js +36 -1
- package/assets/js/highcharts/es-modules/Series/SeriesOnPointComposition.js +0 -1
- package/assets/js/highcharts/es-modules/Series/SimulationSeriesUtilities.js +7 -0
- package/assets/js/highcharts/es-modules/Series/SolidGauge/SolidGaugeSeriesDefaults.js +13 -0
- package/assets/js/highcharts/es-modules/Series/Treegraph/TreegraphLayout.js +10 -4
- package/assets/js/highcharts/es-modules/Series/Treemap/TreemapSeries.js +4 -4
- package/assets/js/highcharts/es-modules/Series/Variwide/VariwideComposition.js +9 -11
- package/assets/js/highcharts/es-modules/Series/Waterfall/WaterfallSeries.js +6 -9
- package/assets/js/highcharts/es-modules/Series/XRange/XRangePoint.js +2 -1
- package/assets/js/highcharts/es-modules/Stock/Indicators/MACD/MACDIndicator.js +1 -1
- package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolbar.js +1 -1
- package/assets/js/highcharts/es-modules/masters/highcharts-3d.src.js +2 -2
- package/assets/js/highcharts/es-modules/masters/highcharts-gantt.src.js +8 -2
- package/assets/js/highcharts/es-modules/masters/highcharts-more.src.js +2 -2
- package/assets/js/highcharts/es-modules/masters/highcharts.src.js +2 -2
- package/assets/js/highcharts/es-modules/masters/highmaps.src.js +2 -2
- package/assets/js/highcharts/es-modules/masters/highstock.src.js +2 -2
- package/assets/js/highcharts/es-modules/masters/i18n/fr-FR.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/i18n/nb-NO.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/i18n/zh-CN.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/ao.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/apo.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/aroon.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/atr.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/cci.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/chaikin.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/cmf.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/cmo.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/dema.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/disparity-index.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/dmi.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/dpo.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/ema.src.js +0 -3
- package/assets/js/highcharts/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/indicators-all.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/indicators.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/keltner-channels.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/klinger.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/macd.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/mfi.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/momentum.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/natr.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/obv.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/pivot-points.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/ppo.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/price-channel.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/price-envelopes.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/psar.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/regressions.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/roc.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/rsi.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/stochastic.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/supertrend.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/tema.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/trendline.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/trix.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/volume-by-price.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/vwap.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/williams-r.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/wma.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/indicators/zigzag.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/accessibility.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/annotations-advanced.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/annotations.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/arc-diagram.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/arrow-symbols.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/boost-canvas.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/boost.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/bullet.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/coloraxis.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/current-date-indicator.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/cylinder.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/data-tools.src.js +2 -1
- package/assets/js/highcharts/es-modules/masters/modules/data.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/datagrouping.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/debugger.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/dependency-wheel.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/dotplot.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/drag-panes.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/draggable-points.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/drilldown.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/export-data.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/exporting.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/flowmap.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/full-screen.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/funnel.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/gantt.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/geoheatmap.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/heatmap.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/item-series.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/lollipop.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/map.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/navigator.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/networkgraph.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/non-cartesian-zoom.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/offline-exporting.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/organization.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/pareto.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/pathfinder.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/pattern-fill.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/pictorial.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/pointandfigure.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/price-indicator.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/pyramid3d.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/renko.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/sankey.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/series-label.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/series-on-point.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/sonification.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/static-scale.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/stock-tools.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/stock.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/sunburst.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/textpath.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/tiledwebmap.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/tilemap.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/timeline.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/treegraph.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/treegrid.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/treemap.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/variwide.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/vector.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/venn.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/windbarb.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/modules/xrange.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/standalone-navigator.src.js +7 -6
- package/assets/js/highcharts/es-modules/masters/themes/adaptive.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/avocado.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/brand-dark.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/brand-light.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/dark-blue.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/dark-green.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/gray.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/grid-light.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/grid.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/high-contrast-light.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/skies.src.js +1 -1
- package/assets/js/highcharts/es-modules/masters/themes/sunset.src.js +1 -1
- package/assets/js/highcharts/esm/highcharts-3d.js +3 -3
- package/assets/js/highcharts/esm/highcharts-3d.src.js +2 -5
- package/assets/js/highcharts/esm/highcharts-gantt.js +8 -2
- package/assets/js/highcharts/esm/highcharts-gantt.src.js +8 -2
- package/assets/js/highcharts/esm/highcharts-more.js +3 -3
- package/assets/js/highcharts/esm/highcharts-more.src.js +475 -31
- package/assets/js/highcharts/esm/highcharts.js +4 -4
- package/assets/js/highcharts/esm/highcharts.src.js +140 -93
- package/assets/js/highcharts/esm/highmaps.js +2 -2
- package/assets/js/highcharts/esm/highmaps.src.js +2 -2
- package/assets/js/highcharts/esm/highstock.js +2 -2
- package/assets/js/highcharts/esm/highstock.src.js +2 -2
- package/assets/js/highcharts/esm/i18n/fr-FR.js +1 -1
- package/assets/js/highcharts/esm/i18n/fr-FR.src.js +1 -1
- package/assets/js/highcharts/esm/i18n/nb-NO.js +1 -1
- package/assets/js/highcharts/esm/i18n/nb-NO.src.js +1 -1
- package/assets/js/highcharts/esm/i18n/zh-CN.js +1 -1
- package/assets/js/highcharts/esm/i18n/zh-CN.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/acceleration-bands.js +1 -1
- package/assets/js/highcharts/esm/indicators/acceleration-bands.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/accumulation-distribution.js +1 -1
- package/assets/js/highcharts/esm/indicators/accumulation-distribution.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/ao.js +1 -1
- package/assets/js/highcharts/esm/indicators/ao.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/apo.js +1 -1
- package/assets/js/highcharts/esm/indicators/apo.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/aroon-oscillator.js +1 -1
- package/assets/js/highcharts/esm/indicators/aroon-oscillator.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/aroon.js +1 -1
- package/assets/js/highcharts/esm/indicators/aroon.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/atr.js +1 -1
- package/assets/js/highcharts/esm/indicators/atr.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/bollinger-bands.js +1 -1
- package/assets/js/highcharts/esm/indicators/bollinger-bands.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/cci.js +1 -1
- package/assets/js/highcharts/esm/indicators/cci.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/chaikin.js +1 -1
- package/assets/js/highcharts/esm/indicators/chaikin.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/cmf.js +1 -1
- package/assets/js/highcharts/esm/indicators/cmf.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/cmo.js +1 -1
- package/assets/js/highcharts/esm/indicators/cmo.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/dema.js +1 -1
- package/assets/js/highcharts/esm/indicators/dema.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/disparity-index.js +1 -1
- package/assets/js/highcharts/esm/indicators/disparity-index.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/dmi.js +1 -1
- package/assets/js/highcharts/esm/indicators/dmi.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/dpo.js +1 -1
- package/assets/js/highcharts/esm/indicators/dpo.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/ema.src.js +0 -3
- package/assets/js/highcharts/esm/indicators/ichimoku-kinko-hyo.js +1 -1
- package/assets/js/highcharts/esm/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/indicators-all.js +2 -2
- package/assets/js/highcharts/esm/indicators/indicators-all.src.js +2 -2
- package/assets/js/highcharts/esm/indicators/indicators.js +1 -1
- package/assets/js/highcharts/esm/indicators/indicators.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/keltner-channels.js +1 -1
- package/assets/js/highcharts/esm/indicators/keltner-channels.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/klinger.js +1 -1
- package/assets/js/highcharts/esm/indicators/klinger.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/macd.js +2 -2
- package/assets/js/highcharts/esm/indicators/macd.src.js +2 -2
- package/assets/js/highcharts/esm/indicators/mfi.js +1 -1
- package/assets/js/highcharts/esm/indicators/mfi.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/momentum.js +1 -1
- package/assets/js/highcharts/esm/indicators/momentum.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/natr.js +1 -1
- package/assets/js/highcharts/esm/indicators/natr.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/obv.js +1 -1
- package/assets/js/highcharts/esm/indicators/obv.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/pivot-points.js +1 -1
- package/assets/js/highcharts/esm/indicators/pivot-points.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/ppo.js +1 -1
- package/assets/js/highcharts/esm/indicators/ppo.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/price-channel.js +1 -1
- package/assets/js/highcharts/esm/indicators/price-channel.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/price-envelopes.js +1 -1
- package/assets/js/highcharts/esm/indicators/price-envelopes.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/psar.js +1 -1
- package/assets/js/highcharts/esm/indicators/psar.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/regressions.js +1 -1
- package/assets/js/highcharts/esm/indicators/regressions.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/roc.js +1 -1
- package/assets/js/highcharts/esm/indicators/roc.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/rsi.js +1 -1
- package/assets/js/highcharts/esm/indicators/rsi.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/slow-stochastic.js +1 -1
- package/assets/js/highcharts/esm/indicators/slow-stochastic.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/stochastic.js +1 -1
- package/assets/js/highcharts/esm/indicators/stochastic.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/supertrend.js +1 -1
- package/assets/js/highcharts/esm/indicators/supertrend.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/tema.js +1 -1
- package/assets/js/highcharts/esm/indicators/tema.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/trendline.js +1 -1
- package/assets/js/highcharts/esm/indicators/trendline.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/trix.js +1 -1
- package/assets/js/highcharts/esm/indicators/trix.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/volume-by-price.js +1 -1
- package/assets/js/highcharts/esm/indicators/volume-by-price.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/vwap.js +1 -1
- package/assets/js/highcharts/esm/indicators/vwap.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/williams-r.js +1 -1
- package/assets/js/highcharts/esm/indicators/williams-r.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/wma.js +1 -1
- package/assets/js/highcharts/esm/indicators/wma.src.js +1 -1
- package/assets/js/highcharts/esm/indicators/zigzag.js +1 -1
- package/assets/js/highcharts/esm/indicators/zigzag.src.js +1 -1
- package/assets/js/highcharts/esm/modules/accessibility.js +2 -2
- package/assets/js/highcharts/esm/modules/accessibility.src.js +47 -21
- package/assets/js/highcharts/esm/modules/annotations-advanced.js +2 -2
- package/assets/js/highcharts/esm/modules/annotations-advanced.src.js +8 -5
- package/assets/js/highcharts/esm/modules/annotations.js +2 -2
- package/assets/js/highcharts/esm/modules/annotations.src.js +9 -6
- package/assets/js/highcharts/esm/modules/arc-diagram.js +2 -2
- package/assets/js/highcharts/esm/modules/arc-diagram.src.js +3 -3
- package/assets/js/highcharts/esm/modules/arrow-symbols.js +1 -1
- package/assets/js/highcharts/esm/modules/arrow-symbols.src.js +1 -1
- package/assets/js/highcharts/esm/modules/boost-canvas.js +2 -2
- package/assets/js/highcharts/esm/modules/boost-canvas.src.js +80 -50
- package/assets/js/highcharts/esm/modules/boost.js +2 -2
- package/assets/js/highcharts/esm/modules/boost.src.js +85 -46
- package/assets/js/highcharts/esm/modules/broken-axis.js +2 -2
- package/assets/js/highcharts/esm/modules/broken-axis.src.js +115 -91
- package/assets/js/highcharts/esm/modules/bullet.js +1 -1
- package/assets/js/highcharts/esm/modules/bullet.src.js +1 -1
- package/assets/js/highcharts/esm/modules/coloraxis.js +2 -2
- package/assets/js/highcharts/esm/modules/coloraxis.src.js +6 -7
- package/assets/js/highcharts/esm/modules/current-date-indicator.js +1 -1
- package/assets/js/highcharts/esm/modules/current-date-indicator.src.js +1 -1
- package/assets/js/highcharts/esm/modules/cylinder.js +1 -1
- package/assets/js/highcharts/esm/modules/cylinder.src.js +1 -1
- package/assets/js/highcharts/esm/modules/data-tools.js +2 -2
- package/assets/js/highcharts/esm/modules/data-tools.src.js +318 -57
- package/assets/js/highcharts/esm/modules/data.js +1 -1
- package/assets/js/highcharts/esm/modules/data.src.js +1 -1
- package/assets/js/highcharts/esm/modules/datagrouping.js +1 -1
- package/assets/js/highcharts/esm/modules/datagrouping.src.js +1 -1
- package/assets/js/highcharts/esm/modules/debugger.js +1 -1
- package/assets/js/highcharts/esm/modules/debugger.src.js +1 -1
- package/assets/js/highcharts/esm/modules/dependency-wheel.js +2 -2
- package/assets/js/highcharts/esm/modules/dependency-wheel.src.js +3 -3
- package/assets/js/highcharts/esm/modules/dotplot.js +1 -1
- package/assets/js/highcharts/esm/modules/dotplot.src.js +1 -1
- package/assets/js/highcharts/esm/modules/drag-panes.js +1 -1
- package/assets/js/highcharts/esm/modules/drag-panes.src.js +1 -1
- package/assets/js/highcharts/esm/modules/draggable-points.js +1 -1
- package/assets/js/highcharts/esm/modules/draggable-points.src.js +1 -1
- package/assets/js/highcharts/esm/modules/drilldown.js +1 -1
- package/assets/js/highcharts/esm/modules/drilldown.src.js +2 -2
- package/assets/js/highcharts/esm/modules/dumbbell.js +1 -1
- package/assets/js/highcharts/esm/modules/dumbbell.src.js +1 -1
- package/assets/js/highcharts/esm/modules/export-data.js +2 -2
- package/assets/js/highcharts/esm/modules/export-data.src.js +7 -7
- package/assets/js/highcharts/esm/modules/exporting.js +2 -2
- package/assets/js/highcharts/esm/modules/exporting.src.js +91 -3
- package/assets/js/highcharts/esm/modules/flowmap.js +1 -1
- package/assets/js/highcharts/esm/modules/flowmap.src.js +1 -1
- package/assets/js/highcharts/esm/modules/full-screen.js +1 -1
- package/assets/js/highcharts/esm/modules/full-screen.src.js +1 -1
- package/assets/js/highcharts/esm/modules/funnel.js +1 -1
- package/assets/js/highcharts/esm/modules/funnel.src.js +7 -3
- package/assets/js/highcharts/esm/modules/funnel3d.js +1 -1
- package/assets/js/highcharts/esm/modules/funnel3d.src.js +1 -1
- package/assets/js/highcharts/esm/modules/gantt.js +2 -2
- package/assets/js/highcharts/esm/modules/gantt.src.js +222 -188
- package/assets/js/highcharts/esm/modules/geoheatmap.js +1 -1
- package/assets/js/highcharts/esm/modules/geoheatmap.src.js +1 -1
- package/assets/js/highcharts/esm/modules/grid-axis.js +1 -1
- package/assets/js/highcharts/esm/modules/grid-axis.src.js +1 -1
- package/assets/js/highcharts/esm/modules/heatmap.js +1 -1
- package/assets/js/highcharts/esm/modules/heatmap.src.js +1 -1
- package/assets/js/highcharts/esm/modules/heikinashi.js +1 -1
- package/assets/js/highcharts/esm/modules/heikinashi.src.js +1 -1
- package/assets/js/highcharts/esm/modules/histogram-bellcurve.js +2 -2
- package/assets/js/highcharts/esm/modules/histogram-bellcurve.src.js +36 -27
- package/assets/js/highcharts/esm/modules/hollowcandlestick.js +1 -1
- package/assets/js/highcharts/esm/modules/hollowcandlestick.src.js +1 -1
- package/assets/js/highcharts/esm/modules/item-series.js +1 -1
- package/assets/js/highcharts/esm/modules/item-series.src.js +1 -1
- package/assets/js/highcharts/esm/modules/lollipop.js +1 -1
- package/assets/js/highcharts/esm/modules/lollipop.src.js +1 -1
- package/assets/js/highcharts/esm/modules/map.js +1 -1
- package/assets/js/highcharts/esm/modules/map.src.js +1 -1
- package/assets/js/highcharts/esm/modules/marker-clusters.js +1 -1
- package/assets/js/highcharts/esm/modules/marker-clusters.src.js +1 -1
- package/assets/js/highcharts/esm/modules/mouse-wheel-zoom.js +1 -1
- package/assets/js/highcharts/esm/modules/mouse-wheel-zoom.src.js +1 -1
- package/assets/js/highcharts/esm/modules/navigator.js +2 -2
- package/assets/js/highcharts/esm/modules/navigator.src.js +20 -18
- package/assets/js/highcharts/esm/modules/networkgraph.js +2 -2
- package/assets/js/highcharts/esm/modules/networkgraph.src.js +10 -3
- package/assets/js/highcharts/esm/modules/no-data-to-display.js +1 -1
- package/assets/js/highcharts/esm/modules/no-data-to-display.src.js +1 -1
- package/assets/js/highcharts/esm/modules/non-cartesian-zoom.js +2 -2
- package/assets/js/highcharts/esm/modules/non-cartesian-zoom.src.js +26 -26
- package/assets/js/highcharts/esm/modules/offline-exporting.js +2 -2
- package/assets/js/highcharts/esm/modules/offline-exporting.src.js +5 -3
- package/assets/js/highcharts/esm/modules/organization.js +2 -2
- package/assets/js/highcharts/esm/modules/organization.src.js +3 -3
- package/assets/js/highcharts/esm/modules/parallel-coordinates.js +1 -1
- package/assets/js/highcharts/esm/modules/parallel-coordinates.src.js +1 -1
- package/assets/js/highcharts/esm/modules/pareto.js +1 -1
- package/assets/js/highcharts/esm/modules/pareto.src.js +1 -1
- package/assets/js/highcharts/esm/modules/pathfinder.js +1 -1
- package/assets/js/highcharts/esm/modules/pathfinder.src.js +1 -1
- package/assets/js/highcharts/esm/modules/pattern-fill.js +1 -1
- package/assets/js/highcharts/esm/modules/pattern-fill.src.js +1 -1
- package/assets/js/highcharts/esm/modules/pictorial.js +1 -1
- package/assets/js/highcharts/esm/modules/pictorial.src.js +1 -1
- package/assets/js/highcharts/esm/modules/pointandfigure.js +1 -1
- package/assets/js/highcharts/esm/modules/pointandfigure.src.js +1 -1
- package/assets/js/highcharts/esm/modules/price-indicator.js +1 -1
- package/assets/js/highcharts/esm/modules/price-indicator.src.js +1 -1
- package/assets/js/highcharts/esm/modules/pyramid3d.js +1 -1
- package/assets/js/highcharts/esm/modules/pyramid3d.src.js +1 -1
- package/assets/js/highcharts/esm/modules/renko.js +1 -1
- package/assets/js/highcharts/esm/modules/renko.src.js +1 -1
- package/assets/js/highcharts/esm/modules/sankey.js +2 -2
- package/assets/js/highcharts/esm/modules/sankey.src.js +3 -3
- package/assets/js/highcharts/esm/modules/series-label.js +1 -1
- package/assets/js/highcharts/esm/modules/series-label.src.js +1 -1
- package/assets/js/highcharts/esm/modules/series-on-point.js +2 -2
- package/assets/js/highcharts/esm/modules/series-on-point.src.js +1 -9
- package/assets/js/highcharts/esm/modules/solid-gauge.js +1 -1
- package/assets/js/highcharts/esm/modules/solid-gauge.src.js +20 -3
- package/assets/js/highcharts/esm/modules/sonification.js +2 -2
- package/assets/js/highcharts/esm/modules/sonification.src.js +5 -3
- package/assets/js/highcharts/esm/modules/static-scale.js +2 -2
- package/assets/js/highcharts/esm/modules/static-scale.src.js +14 -12
- package/assets/js/highcharts/esm/modules/stock-tools.js +2 -2
- package/assets/js/highcharts/esm/modules/stock-tools.src.js +3 -3
- package/assets/js/highcharts/esm/modules/stock.js +2 -2
- package/assets/js/highcharts/esm/modules/stock.src.js +68 -76
- package/assets/js/highcharts/esm/modules/streamgraph.js +1 -1
- package/assets/js/highcharts/esm/modules/streamgraph.src.js +1 -1
- package/assets/js/highcharts/esm/modules/sunburst.js +2 -2
- package/assets/js/highcharts/esm/modules/sunburst.src.js +9 -9
- package/assets/js/highcharts/esm/modules/textpath.js +2 -2
- package/assets/js/highcharts/esm/modules/textpath.src.js +3 -3
- package/assets/js/highcharts/esm/modules/tiledwebmap.js +1 -1
- package/assets/js/highcharts/esm/modules/tiledwebmap.src.js +1 -1
- package/assets/js/highcharts/esm/modules/tilemap.js +1 -1
- package/assets/js/highcharts/esm/modules/tilemap.src.js +1 -1
- package/assets/js/highcharts/esm/modules/timeline.js +1 -1
- package/assets/js/highcharts/esm/modules/timeline.src.js +1 -1
- package/assets/js/highcharts/esm/modules/treegraph.js +2 -2
- package/assets/js/highcharts/esm/modules/treegraph.src.js +13 -7
- package/assets/js/highcharts/esm/modules/treegrid.js +2 -2
- package/assets/js/highcharts/esm/modules/treegrid.src.js +190 -159
- package/assets/js/highcharts/esm/modules/treemap.js +2 -2
- package/assets/js/highcharts/esm/modules/treemap.src.js +7 -7
- package/assets/js/highcharts/esm/modules/variable-pie.js +1 -1
- package/assets/js/highcharts/esm/modules/variable-pie.src.js +1 -1
- package/assets/js/highcharts/esm/modules/variwide.js +2 -2
- package/assets/js/highcharts/esm/modules/variwide.src.js +10 -12
- package/assets/js/highcharts/esm/modules/vector.js +1 -1
- package/assets/js/highcharts/esm/modules/vector.src.js +1 -1
- package/assets/js/highcharts/esm/modules/venn.js +2 -2
- package/assets/js/highcharts/esm/modules/venn.src.js +5 -3
- package/assets/js/highcharts/esm/modules/windbarb.js +1 -1
- package/assets/js/highcharts/esm/modules/windbarb.src.js +1 -1
- package/assets/js/highcharts/esm/modules/wordcloud.js +1 -1
- package/assets/js/highcharts/esm/modules/wordcloud.src.js +2 -2
- package/assets/js/highcharts/esm/modules/xrange.js +2 -2
- package/assets/js/highcharts/esm/modules/xrange.src.js +3 -2
- package/assets/js/highcharts/esm/standalone-navigator.js +7 -5
- package/assets/js/highcharts/esm/standalone-navigator.src.js +172 -122
- package/assets/js/highcharts/esm/themes/adaptive.js +1 -1
- package/assets/js/highcharts/esm/themes/adaptive.src.js +1 -1
- package/assets/js/highcharts/esm/themes/avocado.js +1 -1
- package/assets/js/highcharts/esm/themes/avocado.src.js +1 -1
- package/assets/js/highcharts/esm/themes/brand-dark.js +1 -1
- package/assets/js/highcharts/esm/themes/brand-dark.src.js +1 -1
- package/assets/js/highcharts/esm/themes/brand-light.js +1 -1
- package/assets/js/highcharts/esm/themes/brand-light.src.js +1 -1
- package/assets/js/highcharts/esm/themes/dark-blue.js +1 -1
- package/assets/js/highcharts/esm/themes/dark-blue.src.js +1 -1
- package/assets/js/highcharts/esm/themes/dark-green.js +1 -1
- package/assets/js/highcharts/esm/themes/dark-green.src.js +1 -1
- package/assets/js/highcharts/esm/themes/dark-unica.js +1 -1
- package/assets/js/highcharts/esm/themes/dark-unica.src.js +1 -1
- package/assets/js/highcharts/esm/themes/gray.js +1 -1
- package/assets/js/highcharts/esm/themes/gray.src.js +1 -1
- package/assets/js/highcharts/esm/themes/grid-light.js +1 -1
- package/assets/js/highcharts/esm/themes/grid-light.src.js +1 -1
- package/assets/js/highcharts/esm/themes/grid.js +1 -1
- package/assets/js/highcharts/esm/themes/grid.src.js +1 -1
- package/assets/js/highcharts/esm/themes/high-contrast-dark.js +1 -1
- package/assets/js/highcharts/esm/themes/high-contrast-dark.src.js +1 -1
- package/assets/js/highcharts/esm/themes/high-contrast-light.js +1 -1
- package/assets/js/highcharts/esm/themes/high-contrast-light.src.js +1 -1
- package/assets/js/highcharts/esm/themes/sand-signika.js +1 -1
- package/assets/js/highcharts/esm/themes/sand-signika.src.js +1 -1
- package/assets/js/highcharts/esm/themes/skies.js +1 -1
- package/assets/js/highcharts/esm/themes/skies.src.js +1 -1
- package/assets/js/highcharts/esm/themes/sunset.js +1 -1
- package/assets/js/highcharts/esm/themes/sunset.src.js +1 -1
- package/assets/js/highcharts/highcharts-3d.js +3 -3
- package/assets/js/highcharts/highcharts-3d.src.js +2 -5
- package/assets/js/highcharts/highcharts-gantt.js +10 -11
- package/assets/js/highcharts/highcharts-gantt.src.js +383 -295
- package/assets/js/highcharts/highcharts-more.js +3 -3
- package/assets/js/highcharts/highcharts-more.src.js +475 -31
- package/assets/js/highcharts/highcharts.js +4 -4
- package/assets/js/highcharts/highcharts.src.js +140 -93
- package/assets/js/highcharts/highmaps.js +4 -11
- package/assets/js/highcharts/highmaps.src.js +157 -111
- package/assets/js/highcharts/highstock.js +4 -11
- package/assets/js/highcharts/highstock.src.js +329 -266
- package/assets/js/highcharts/i18n/fr-FR.js +1 -1
- package/assets/js/highcharts/i18n/fr-FR.src.js +1 -1
- package/assets/js/highcharts/i18n/nb-NO.js +1 -1
- package/assets/js/highcharts/i18n/nb-NO.src.js +1 -1
- package/assets/js/highcharts/i18n/zh-CN.js +1 -1
- package/assets/js/highcharts/i18n/zh-CN.src.js +1 -1
- package/assets/js/highcharts/indicators/acceleration-bands.js +1 -1
- package/assets/js/highcharts/indicators/acceleration-bands.src.js +1 -1
- package/assets/js/highcharts/indicators/accumulation-distribution.js +1 -1
- package/assets/js/highcharts/indicators/accumulation-distribution.src.js +1 -1
- package/assets/js/highcharts/indicators/ao.js +1 -1
- package/assets/js/highcharts/indicators/ao.src.js +1 -1
- package/assets/js/highcharts/indicators/apo.js +1 -1
- package/assets/js/highcharts/indicators/apo.src.js +1 -1
- package/assets/js/highcharts/indicators/aroon-oscillator.js +1 -1
- package/assets/js/highcharts/indicators/aroon-oscillator.src.js +1 -1
- package/assets/js/highcharts/indicators/aroon.js +1 -1
- package/assets/js/highcharts/indicators/aroon.src.js +1 -1
- package/assets/js/highcharts/indicators/atr.js +1 -1
- package/assets/js/highcharts/indicators/atr.src.js +1 -1
- package/assets/js/highcharts/indicators/bollinger-bands.js +1 -1
- package/assets/js/highcharts/indicators/bollinger-bands.src.js +1 -1
- package/assets/js/highcharts/indicators/cci.js +1 -1
- package/assets/js/highcharts/indicators/cci.src.js +1 -1
- package/assets/js/highcharts/indicators/chaikin.js +1 -1
- package/assets/js/highcharts/indicators/chaikin.src.js +1 -1
- package/assets/js/highcharts/indicators/cmf.js +1 -1
- package/assets/js/highcharts/indicators/cmf.src.js +1 -1
- package/assets/js/highcharts/indicators/cmo.js +1 -1
- package/assets/js/highcharts/indicators/cmo.src.js +1 -1
- package/assets/js/highcharts/indicators/dema.js +1 -1
- package/assets/js/highcharts/indicators/dema.src.js +1 -1
- package/assets/js/highcharts/indicators/disparity-index.js +1 -1
- package/assets/js/highcharts/indicators/disparity-index.src.js +1 -1
- package/assets/js/highcharts/indicators/dmi.js +1 -1
- package/assets/js/highcharts/indicators/dmi.src.js +1 -1
- package/assets/js/highcharts/indicators/dpo.js +1 -1
- package/assets/js/highcharts/indicators/dpo.src.js +1 -1
- package/assets/js/highcharts/indicators/ema.src.js +0 -3
- package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.js +1 -1
- package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/assets/js/highcharts/indicators/indicators-all.js +2 -2
- package/assets/js/highcharts/indicators/indicators-all.src.js +2 -2
- package/assets/js/highcharts/indicators/indicators.js +1 -1
- package/assets/js/highcharts/indicators/indicators.src.js +1 -1
- package/assets/js/highcharts/indicators/keltner-channels.js +1 -1
- package/assets/js/highcharts/indicators/keltner-channels.src.js +1 -1
- package/assets/js/highcharts/indicators/klinger.js +1 -1
- package/assets/js/highcharts/indicators/klinger.src.js +1 -1
- package/assets/js/highcharts/indicators/macd.js +2 -2
- package/assets/js/highcharts/indicators/macd.src.js +2 -2
- package/assets/js/highcharts/indicators/mfi.js +1 -1
- package/assets/js/highcharts/indicators/mfi.src.js +1 -1
- package/assets/js/highcharts/indicators/momentum.js +1 -1
- package/assets/js/highcharts/indicators/momentum.src.js +1 -1
- package/assets/js/highcharts/indicators/natr.js +1 -1
- package/assets/js/highcharts/indicators/natr.src.js +1 -1
- package/assets/js/highcharts/indicators/obv.js +1 -1
- package/assets/js/highcharts/indicators/obv.src.js +1 -1
- package/assets/js/highcharts/indicators/pivot-points.js +1 -1
- package/assets/js/highcharts/indicators/pivot-points.src.js +1 -1
- package/assets/js/highcharts/indicators/ppo.js +1 -1
- package/assets/js/highcharts/indicators/ppo.src.js +1 -1
- package/assets/js/highcharts/indicators/price-channel.js +1 -1
- package/assets/js/highcharts/indicators/price-channel.src.js +1 -1
- package/assets/js/highcharts/indicators/price-envelopes.js +1 -1
- package/assets/js/highcharts/indicators/price-envelopes.src.js +1 -1
- package/assets/js/highcharts/indicators/psar.js +1 -1
- package/assets/js/highcharts/indicators/psar.src.js +1 -1
- package/assets/js/highcharts/indicators/regressions.js +1 -1
- package/assets/js/highcharts/indicators/regressions.src.js +1 -1
- package/assets/js/highcharts/indicators/roc.js +1 -1
- package/assets/js/highcharts/indicators/roc.src.js +1 -1
- package/assets/js/highcharts/indicators/rsi.js +1 -1
- package/assets/js/highcharts/indicators/rsi.src.js +1 -1
- package/assets/js/highcharts/indicators/slow-stochastic.js +1 -1
- package/assets/js/highcharts/indicators/slow-stochastic.src.js +1 -1
- package/assets/js/highcharts/indicators/stochastic.js +1 -1
- package/assets/js/highcharts/indicators/stochastic.src.js +1 -1
- package/assets/js/highcharts/indicators/supertrend.js +1 -1
- package/assets/js/highcharts/indicators/supertrend.src.js +1 -1
- package/assets/js/highcharts/indicators/tema.js +1 -1
- package/assets/js/highcharts/indicators/tema.src.js +1 -1
- package/assets/js/highcharts/indicators/trendline.js +1 -1
- package/assets/js/highcharts/indicators/trendline.src.js +1 -1
- package/assets/js/highcharts/indicators/trix.js +1 -1
- package/assets/js/highcharts/indicators/trix.src.js +1 -1
- package/assets/js/highcharts/indicators/volume-by-price.js +1 -1
- package/assets/js/highcharts/indicators/volume-by-price.src.js +1 -1
- package/assets/js/highcharts/indicators/vwap.js +1 -1
- package/assets/js/highcharts/indicators/vwap.src.js +1 -1
- package/assets/js/highcharts/indicators/williams-r.js +1 -1
- package/assets/js/highcharts/indicators/williams-r.src.js +1 -1
- package/assets/js/highcharts/indicators/wma.js +1 -1
- package/assets/js/highcharts/indicators/wma.src.js +1 -1
- package/assets/js/highcharts/indicators/zigzag.js +1 -1
- package/assets/js/highcharts/indicators/zigzag.src.js +1 -1
- package/assets/js/highcharts/modules/accessibility.js +2 -2
- package/assets/js/highcharts/modules/accessibility.src.js +47 -21
- package/assets/js/highcharts/modules/annotations-advanced.js +6 -6
- package/assets/js/highcharts/modules/annotations-advanced.src.js +22 -19
- package/assets/js/highcharts/modules/annotations.js +2 -2
- package/assets/js/highcharts/modules/annotations.src.js +9 -6
- package/assets/js/highcharts/modules/arc-diagram.js +2 -2
- package/assets/js/highcharts/modules/arc-diagram.src.js +3 -3
- package/assets/js/highcharts/modules/arrow-symbols.js +1 -1
- package/assets/js/highcharts/modules/arrow-symbols.src.js +1 -1
- package/assets/js/highcharts/modules/boost-canvas.js +2 -2
- package/assets/js/highcharts/modules/boost-canvas.src.js +80 -50
- package/assets/js/highcharts/modules/boost.js +2 -2
- package/assets/js/highcharts/modules/boost.src.js +85 -46
- package/assets/js/highcharts/modules/broken-axis.js +2 -2
- package/assets/js/highcharts/modules/broken-axis.src.js +115 -91
- package/assets/js/highcharts/modules/bullet.js +1 -1
- package/assets/js/highcharts/modules/bullet.src.js +1 -1
- package/assets/js/highcharts/modules/coloraxis.js +2 -2
- package/assets/js/highcharts/modules/coloraxis.src.js +6 -7
- package/assets/js/highcharts/modules/current-date-indicator.js +1 -1
- package/assets/js/highcharts/modules/current-date-indicator.src.js +1 -1
- package/assets/js/highcharts/modules/cylinder.js +1 -1
- package/assets/js/highcharts/modules/cylinder.src.js +1 -1
- package/assets/js/highcharts/modules/data-tools.js +2 -2
- package/assets/js/highcharts/modules/data-tools.src.js +318 -57
- package/assets/js/highcharts/modules/data.js +1 -1
- package/assets/js/highcharts/modules/data.src.js +1 -1
- package/assets/js/highcharts/modules/datagrouping.js +1 -1
- package/assets/js/highcharts/modules/datagrouping.src.js +1 -1
- package/assets/js/highcharts/modules/debugger.js +1 -1
- package/assets/js/highcharts/modules/debugger.src.js +1 -1
- package/assets/js/highcharts/modules/dependency-wheel.js +2 -2
- package/assets/js/highcharts/modules/dependency-wheel.src.js +3 -3
- package/assets/js/highcharts/modules/dotplot.js +1 -1
- package/assets/js/highcharts/modules/dotplot.src.js +1 -1
- package/assets/js/highcharts/modules/drag-panes.js +1 -1
- package/assets/js/highcharts/modules/drag-panes.src.js +1 -1
- package/assets/js/highcharts/modules/draggable-points.js +1 -1
- package/assets/js/highcharts/modules/draggable-points.src.js +1 -1
- package/assets/js/highcharts/modules/drilldown.js +1 -1
- package/assets/js/highcharts/modules/drilldown.src.js +2 -2
- package/assets/js/highcharts/modules/dumbbell.js +1 -1
- package/assets/js/highcharts/modules/dumbbell.src.js +1 -1
- package/assets/js/highcharts/modules/export-data.js +2 -2
- package/assets/js/highcharts/modules/export-data.src.js +7 -7
- package/assets/js/highcharts/modules/exporting.js +2 -2
- package/assets/js/highcharts/modules/exporting.src.js +91 -3
- package/assets/js/highcharts/modules/flowmap.js +1 -1
- package/assets/js/highcharts/modules/flowmap.src.js +1 -1
- package/assets/js/highcharts/modules/full-screen.js +1 -1
- package/assets/js/highcharts/modules/full-screen.src.js +1 -1
- package/assets/js/highcharts/modules/funnel.js +1 -1
- package/assets/js/highcharts/modules/funnel.src.js +7 -3
- package/assets/js/highcharts/modules/funnel3d.js +1 -1
- package/assets/js/highcharts/modules/funnel3d.src.js +1 -1
- package/assets/js/highcharts/modules/gantt.js +14 -14
- package/assets/js/highcharts/modules/gantt.src.js +241 -206
- package/assets/js/highcharts/modules/geoheatmap.js +1 -1
- package/assets/js/highcharts/modules/geoheatmap.src.js +1 -1
- package/assets/js/highcharts/modules/grid-axis.js +1 -1
- package/assets/js/highcharts/modules/grid-axis.src.js +1 -1
- package/assets/js/highcharts/modules/heatmap.js +10 -10
- package/assets/js/highcharts/modules/heatmap.src.js +20 -21
- package/assets/js/highcharts/modules/heikinashi.js +1 -1
- package/assets/js/highcharts/modules/heikinashi.src.js +1 -1
- package/assets/js/highcharts/modules/histogram-bellcurve.js +2 -2
- package/assets/js/highcharts/modules/histogram-bellcurve.src.js +36 -27
- package/assets/js/highcharts/modules/hollowcandlestick.js +1 -1
- package/assets/js/highcharts/modules/hollowcandlestick.src.js +1 -1
- package/assets/js/highcharts/modules/item-series.js +1 -1
- package/assets/js/highcharts/modules/item-series.src.js +1 -1
- package/assets/js/highcharts/modules/lollipop.js +1 -1
- package/assets/js/highcharts/modules/lollipop.src.js +1 -1
- package/assets/js/highcharts/modules/map.js +10 -10
- package/assets/js/highcharts/modules/map.src.js +21 -22
- package/assets/js/highcharts/modules/marker-clusters.js +1 -1
- package/assets/js/highcharts/modules/marker-clusters.src.js +1 -1
- package/assets/js/highcharts/modules/mouse-wheel-zoom.js +1 -1
- package/assets/js/highcharts/modules/mouse-wheel-zoom.src.js +1 -1
- package/assets/js/highcharts/modules/navigator.js +2 -2
- package/assets/js/highcharts/modules/navigator.src.js +20 -18
- package/assets/js/highcharts/modules/networkgraph.js +2 -2
- package/assets/js/highcharts/modules/networkgraph.src.js +10 -3
- package/assets/js/highcharts/modules/no-data-to-display.js +1 -1
- package/assets/js/highcharts/modules/no-data-to-display.src.js +1 -1
- package/assets/js/highcharts/modules/non-cartesian-zoom.js +2 -2
- package/assets/js/highcharts/modules/non-cartesian-zoom.src.js +26 -26
- package/assets/js/highcharts/modules/offline-exporting.js +2 -2
- package/assets/js/highcharts/modules/offline-exporting.src.js +5 -3
- package/assets/js/highcharts/modules/organization.js +2 -2
- package/assets/js/highcharts/modules/organization.src.js +3 -3
- package/assets/js/highcharts/modules/parallel-coordinates.js +1 -1
- package/assets/js/highcharts/modules/parallel-coordinates.src.js +1 -1
- package/assets/js/highcharts/modules/pareto.js +1 -1
- package/assets/js/highcharts/modules/pareto.src.js +1 -1
- package/assets/js/highcharts/modules/pathfinder.js +1 -1
- package/assets/js/highcharts/modules/pathfinder.src.js +1 -1
- package/assets/js/highcharts/modules/pattern-fill.js +1 -1
- package/assets/js/highcharts/modules/pattern-fill.src.js +1 -1
- package/assets/js/highcharts/modules/pictorial.js +1 -1
- package/assets/js/highcharts/modules/pictorial.src.js +1 -1
- package/assets/js/highcharts/modules/pointandfigure.js +1 -1
- package/assets/js/highcharts/modules/pointandfigure.src.js +1 -1
- package/assets/js/highcharts/modules/price-indicator.js +1 -1
- package/assets/js/highcharts/modules/price-indicator.src.js +1 -1
- package/assets/js/highcharts/modules/pyramid3d.js +1 -1
- package/assets/js/highcharts/modules/pyramid3d.src.js +1 -1
- package/assets/js/highcharts/modules/renko.js +1 -1
- package/assets/js/highcharts/modules/renko.src.js +1 -1
- package/assets/js/highcharts/modules/sankey.js +2 -2
- package/assets/js/highcharts/modules/sankey.src.js +3 -3
- package/assets/js/highcharts/modules/series-label.js +1 -1
- package/assets/js/highcharts/modules/series-label.src.js +1 -1
- package/assets/js/highcharts/modules/series-on-point.js +2 -2
- package/assets/js/highcharts/modules/series-on-point.src.js +6 -16
- package/assets/js/highcharts/modules/solid-gauge.js +1 -1
- package/assets/js/highcharts/modules/solid-gauge.src.js +20 -3
- package/assets/js/highcharts/modules/sonification.js +2 -2
- package/assets/js/highcharts/modules/sonification.src.js +5 -3
- package/assets/js/highcharts/modules/static-scale.js +2 -2
- package/assets/js/highcharts/modules/static-scale.src.js +14 -12
- package/assets/js/highcharts/modules/stock-tools.js +2 -2
- package/assets/js/highcharts/modules/stock-tools.src.js +3 -3
- package/assets/js/highcharts/modules/stock.js +8 -16
- package/assets/js/highcharts/modules/stock.src.js +203 -187
- package/assets/js/highcharts/modules/streamgraph.js +1 -1
- package/assets/js/highcharts/modules/streamgraph.src.js +1 -1
- package/assets/js/highcharts/modules/sunburst.js +2 -2
- package/assets/js/highcharts/modules/sunburst.src.js +9 -9
- package/assets/js/highcharts/modules/textpath.js +2 -2
- package/assets/js/highcharts/modules/textpath.src.js +3 -3
- package/assets/js/highcharts/modules/tiledwebmap.js +1 -1
- package/assets/js/highcharts/modules/tiledwebmap.src.js +1 -1
- package/assets/js/highcharts/modules/tilemap.js +1 -1
- package/assets/js/highcharts/modules/tilemap.src.js +1 -1
- package/assets/js/highcharts/modules/timeline.js +1 -1
- package/assets/js/highcharts/modules/timeline.src.js +1 -1
- package/assets/js/highcharts/modules/treegraph.js +2 -2
- package/assets/js/highcharts/modules/treegraph.src.js +13 -7
- package/assets/js/highcharts/modules/treegrid.js +2 -2
- package/assets/js/highcharts/modules/treegrid.src.js +190 -159
- package/assets/js/highcharts/modules/treemap.js +2 -2
- package/assets/js/highcharts/modules/treemap.src.js +7 -7
- package/assets/js/highcharts/modules/variable-pie.js +1 -1
- package/assets/js/highcharts/modules/variable-pie.src.js +1 -1
- package/assets/js/highcharts/modules/variwide.js +2 -2
- package/assets/js/highcharts/modules/variwide.src.js +10 -12
- package/assets/js/highcharts/modules/vector.js +1 -1
- package/assets/js/highcharts/modules/vector.src.js +1 -1
- package/assets/js/highcharts/modules/venn.js +2 -2
- package/assets/js/highcharts/modules/venn.src.js +5 -3
- package/assets/js/highcharts/modules/windbarb.js +1 -1
- package/assets/js/highcharts/modules/windbarb.src.js +1 -1
- package/assets/js/highcharts/modules/wordcloud.js +1 -1
- package/assets/js/highcharts/modules/wordcloud.src.js +2 -2
- package/assets/js/highcharts/modules/xrange.js +2 -2
- package/assets/js/highcharts/modules/xrange.src.js +3 -2
- package/assets/js/highcharts/standalone-navigator.js +7 -5
- package/assets/js/highcharts/standalone-navigator.src.js +172 -122
- package/assets/js/highcharts/themes/adaptive.js +1 -1
- package/assets/js/highcharts/themes/adaptive.src.js +1 -1
- package/assets/js/highcharts/themes/avocado.js +1 -1
- package/assets/js/highcharts/themes/avocado.src.js +1 -1
- package/assets/js/highcharts/themes/brand-dark.js +1 -1
- package/assets/js/highcharts/themes/brand-dark.src.js +1 -1
- package/assets/js/highcharts/themes/brand-light.js +1 -1
- package/assets/js/highcharts/themes/brand-light.src.js +1 -1
- package/assets/js/highcharts/themes/dark-blue.js +1 -1
- package/assets/js/highcharts/themes/dark-blue.src.js +1 -1
- package/assets/js/highcharts/themes/dark-green.js +1 -1
- package/assets/js/highcharts/themes/dark-green.src.js +1 -1
- package/assets/js/highcharts/themes/dark-unica.js +1 -1
- package/assets/js/highcharts/themes/dark-unica.src.js +1 -1
- package/assets/js/highcharts/themes/gray.js +1 -1
- package/assets/js/highcharts/themes/gray.src.js +1 -1
- package/assets/js/highcharts/themes/grid-light.js +1 -1
- package/assets/js/highcharts/themes/grid-light.src.js +1 -1
- package/assets/js/highcharts/themes/grid.js +1 -1
- package/assets/js/highcharts/themes/grid.src.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-dark.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-dark.src.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-light.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-light.src.js +1 -1
- package/assets/js/highcharts/themes/sand-signika.js +1 -1
- package/assets/js/highcharts/themes/sand-signika.src.js +1 -1
- package/assets/js/highcharts/themes/skies.js +1 -1
- package/assets/js/highcharts/themes/skies.src.js +1 -1
- package/assets/js/highcharts/themes/sunset.js +1 -1
- package/assets/js/highcharts/themes/sunset.src.js +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Highcharts JS v12.
|
|
2
|
+
* Highcharts JS v12.4.0 (2025-09-04)
|
|
3
3
|
* @module highcharts/highcharts-more
|
|
4
4
|
* @requires highcharts
|
|
5
5
|
*
|
|
6
|
-
* (c) 2009-2025
|
|
6
|
+
* (c) 2009-2025 Highsoft AS
|
|
7
7
|
*
|
|
8
8
|
* License: www.highcharts.com/license
|
|
9
|
-
*/import*as t from"./highcharts.js";var e,i,s,a,o={};o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var i in e)o.o(e,i)&&!o.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let r=t.default;var n=o.n(r);let l=t.default.SeriesRegistry;var h=o.n(l);let p=t.default.Series;var d=o.n(p);let{deg2rad:c}=n(),{fireEvent:u,isNumber:g,pick:f,relativeLength:m}=n();(e=i||(i={})).getCenter=function(){let t=this.options,e=this.chart,i=2*(t.slicedOffset||0),s=e.plotWidth-2*i,a=e.plotHeight-2*i,o=t.center,r=Math.min(s,a),n=t.thickness,l,h=t.size,p=t.innerSize||0,c,b;"string"==typeof h&&(h=parseFloat(h)),"string"==typeof p&&(p=parseFloat(p));let y=[f(o?.[0],"50%"),f(o?.[1],"50%"),f(h&&h<0?void 0:t.size,"100%"),f(p&&p<0?void 0:t.innerSize||0,"0%")];for(!e.angular||this instanceof d()||(y[3]=0),c=0;c<4;++c)b=y[c],l=c<2||2===c&&/%$/.test(b),y[c]=m(b,[s,a,r,y[2]][c])+(l?i:0);return y[3]>y[2]&&(y[3]=y[2]),g(n)&&2*n<y[2]&&n>0&&(y[3]=y[2]-2*n),u(this,"afterGetCenter",{positions:y}),y},e.getStartAndEndRadians=function(t,e){let i=g(t)?t:0,s=g(e)&&e>i&&e-i<360?e:i+360;return{start:c*(i+-90),end:c*(s+-90)}};let b=i,{addEvent:y,correctFloat:x,defined:P,pick:v}=n();function M(t){let e,i=this;return t&&i.pane.forEach(s=>{L(t.chartX-i.plotLeft,t.chartY-i.plotTop,s.center)&&(e=s)}),e}function L(t,e,i,s,a){let o=!0,r=i[0],n=i[1],l=Math.sqrt(Math.pow(t-r,2)+Math.pow(e-n,2));if(P(s)&&P(a)){let i=Math.atan2(x(e-n,8),x(t-r,8));a!==s&&(o=s>a?i>=s&&i<=Math.PI||i<=a&&i>=-Math.PI:i>=s&&i<=x(a,8))}return l<=Math.ceil(i[2]/2)&&o}function k(t){this.polar&&(t.options.inverted&&([t.x,t.y]=[t.y,t.x]),t.isInsidePlot=this.pane.some(e=>L(t.x,t.y,e.center,e.axis&&e.axis.normalizedStartAngleRad,e.axis&&e.axis.normalizedEndAngleRad)))}function w(t){let e=this.chart;t.hoverPoint&&t.hoverPoint.plotX&&t.hoverPoint.plotY&&e.hoverPane&&!L(t.hoverPoint.plotX,t.hoverPoint.plotY,e.hoverPane.center)&&(t.hoverPoint=void 0)}function A(t){let e=this.chart;e.polar?(e.hoverPane=e.getHoverPane(t),t.filter=function(i){return i.visible&&!(!t.shared&&i.directTouch)&&v(i.options.enableMouseTracking,!0)&&(!e.hoverPane||i.xAxis.pane===e.hoverPane)}):e.hoverPane=void 0}let{defaultOptions:S}=n(),N={shape:"circle",borderRadius:0,borderWidth:1,borderColor:"#cccccc",backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#ffffff"],[1,"#e6e6e6"]]},from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"},T={background:N,center:["50%","50%"],size:"85%",innerSize:"0%",startAngle:0};S.pane=T;let C={pane:T,background:N},{extend:X,merge:Y,splat:I}=n();class R{constructor(t,e){this.coll="pane",this.init(t,e)}init(t,e){this.chart=e,this.background=[],e.pane.push(this),this.setOptions(t)}setOptions(t){this.options=t=Y(C.pane,{background:this.chart.angular?{}:void 0},t)}render(){let t=this.options,e=this.chart.renderer;this.group||(this.group=e.g("pane-group").attr({zIndex:t.zIndex||0}).add()),this.updateCenter();let i=this.options.background;if(i){let t=Math.max((i=I(i)).length,this.background.length||0);for(let e=0;e<t;e++)i[e]&&this.axis?this.renderBackground(Y(C.background,i[e]),e):this.background[e]&&(this.background[e]=this.background[e].destroy(),this.background.splice(e,1))}}renderBackground(t,e){let i={class:"highcharts-pane "+(t.className||"")},s="animate";this.chart.styledMode||X(i,{fill:t.backgroundColor,stroke:t.borderColor,"stroke-width":t.borderWidth}),this.background[e]||(this.background[e]=this.chart.renderer.path().add(this.group),s="attr"),this.background[e][s]({d:this.axis.getPlotBandPath(t.from,t.to,t)}).attr(i)}updateCenter(t){this.center=(t||this.axis||{}).center=b.getCenter.call(this)}update(t,e){Y(!0,this.options,t),this.setOptions(this.options),this.render(),this.chart.axes.forEach(function(t){t.pane===this&&(t.pane=null,t.update({},e))},this)}}R.compose=function(t,e){let i=t.prototype;i.getHoverPane||(i.collectionsWithUpdate.push("pane"),i.getHoverPane=M,y(t,"afterIsInsidePlot",k),y(e,"afterGetHoverData",w),y(e,"beforeGetHoverData",A))};let{area:{prototype:{pointClass:E,pointClass:{prototype:D}}}}=h().seriesTypes,{defined:z,isNumber:O}=n(),B=class extends E{setState(){let t=this.state,e=this.series,i=e.chart.polar;z(this.plotHigh)||(this.plotHigh=e.yAxis.toPixels(this.high,!0)),z(this.plotLow)||(this.plotLow=this.plotY=e.yAxis.toPixels(this.low,!0)),e.lowerStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.upperStateMarkerGraphic,this.graphic=this.graphics&&this.graphics[1],this.plotY=this.plotHigh,i&&O(this.plotHighX)&&(this.plotX=this.plotHighX),D.setState.apply(this,arguments),this.state=t,this.plotY=this.plotLow,this.graphic=this.graphics&&this.graphics[0],i&&O(this.plotLowX)&&(this.plotX=this.plotLowX),e.upperStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.lowerStateMarkerGraphic,e.lowerStateMarkerGraphic=void 0;let s=e.modifyMarkerSettings();D.setState.apply(this,arguments),e.restoreMarkerSettings(s)}haloPath(){let t=this.series.chart.polar,e=[];return this.plotY=this.plotLow,t&&O(this.plotLowX)&&(this.plotX=this.plotLowX),this.isInside&&(e=D.haloPath.apply(this,arguments)),this.plotY=this.plotHigh,t&&O(this.plotHighX)&&(this.plotX=this.plotHighX),this.isTopInside&&(e=e.concat(D.haloPath.apply(this,arguments))),e}isValid(){return O(this.low)&&O(this.high)}},{noop:W}=n(),{area:F,area:{prototype:H},column:{prototype:G}}=h().seriesTypes,{addEvent:q,defined:V,extend:U,isArray:K,isNumber:_,pick:Z,merge:j}=n();class $ extends F{toYData(t){return[t.low,t.high]}highToXY(t){let e=this.chart,i=this.xAxis.postTranslate(t.rectPlotX||0,this.yAxis.len-(t.plotHigh||0));t.plotHighX=i.x-e.plotLeft,t.plotHigh=i.y-e.plotTop,t.plotLowX=t.plotX}getGraphPath(t){let e=[],i=[],s=H.getGraphPath,a=this.options,o=this.chart.polar,r=o&&!1!==a.connectEnds,n=a.connectNulls,l,h,p,d=a.step;for(l=(t=t||this.points).length;l--;){h=t[l];let s=o?{plotX:h.rectPlotX,plotY:h.yBottom,doCurve:!1}:{plotX:h.plotX,plotY:h.plotY,doCurve:!1};h.isNull||r||n||t[l+1]&&!t[l+1].isNull||i.push(s),p={polarPlotY:h.polarPlotY,rectPlotX:h.rectPlotX,yBottom:h.yBottom,plotX:Z(h.plotHighX,h.plotX),plotY:h.plotHigh,isNull:h.isNull},i.push(p),e.push(p),h.isNull||r||n||t[l-1]&&!t[l-1].isNull||i.push(s)}let c=s.call(this,t);d&&(!0===d&&(d="left"),a.step=({left:"right",center:"center",right:"left"})[d]);let u=s.call(this,e),g=s.call(this,i);a.step=d;let f=[].concat(c,u);return!this.chart.polar&&g[0]&&"M"===g[0][0]&&(g[0]=["L",g[0][1],g[0][2]]),this.graphPath=f,this.areaPath=c.concat(g),f.isArea=!0,f.xMap=c.xMap,this.areaPath.xMap=c.xMap,f}drawDataLabels(){let t,e,i,s,a,o=this.points,r=o.length,n=[],l=this.options.dataLabels,h=this.chart.inverted;if(l){if(K(l)?(s=l[0]||{enabled:!1},a=l[1]||{enabled:!1}):((s=U({},l)).x=l.xHigh,s.y=l.yHigh,(a=U({},l)).x=l.xLow,a.y=l.yLow),s.enabled||this.hasDataLabels?.()){for(t=r;t--;)if(e=o[t]){let{plotHigh:a=0,plotLow:o=0}=e;i=s.inside?a<o:a>o,e.y=e.high,e._plotY=e.plotY,e.plotY=a,n[t]=e.dataLabel,e.dataLabel=e.dataLabelUpper,e.below=i,h?s.align||(s.align=i?"right":"left"):s.verticalAlign||(s.verticalAlign=i?"top":"bottom")}for(this.options.dataLabels=s,H.drawDataLabels&&H.drawDataLabels.apply(this,arguments),t=r;t--;)(e=o[t])&&(e.dataLabelUpper=e.dataLabel,e.dataLabel=n[t],delete e.dataLabels,e.y=e.low,e.plotY=e._plotY)}if(a.enabled||this.hasDataLabels?.()){for(t=r;t--;)if(e=o[t]){let{plotHigh:t=0,plotLow:s=0}=e;i=a.inside?t<s:t>s,e.below=!i,h?a.align||(a.align=i?"left":"right"):a.verticalAlign||(a.verticalAlign=i?"bottom":"top")}this.options.dataLabels=a,H.drawDataLabels&&H.drawDataLabels.apply(this,arguments)}if(s.enabled)for(t=r;t--;)(e=o[t])&&(e.dataLabels=[e.dataLabelUpper,e.dataLabel].filter(function(t){return!!t}));this.options.dataLabels=l}}alignDataLabel(){G.alignDataLabel.apply(this,arguments)}modifyMarkerSettings(){let t={marker:this.options.marker,symbol:this.symbol};if(this.options.lowMarker){let{options:{marker:t,lowMarker:e}}=this;this.options.marker=j(t,e),e.symbol&&(this.symbol=e.symbol)}return t}restoreMarkerSettings(t){this.options.marker=t.marker,this.symbol=t.symbol}drawPoints(){let t,e,i=this.points.length,s=this.modifyMarkerSettings();for(H.drawPoints.apply(this,arguments),this.restoreMarkerSettings(s),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],e.origProps={plotY:e.plotY,plotX:e.plotX,isInside:e.isInside,negative:e.negative,zone:e.zone,y:e.y},(e.graphic||e.graphics[0])&&(e.graphics[0]=e.graphic),e.graphic=e.graphics[1],e.plotY=e.plotHigh,V(e.plotHighX)&&(e.plotX=e.plotHighX),e.y=Z(e.high,e.origProps.y),e.negative=e.y<(this.options.threshold||0),this.zones.length&&(e.zone=e.getZone()),this.chart.polar||(e.isInside=e.isTopInside=void 0!==e.plotY&&e.plotY>=0&&e.plotY<=this.yAxis.len&&e.plotX>=0&&e.plotX<=this.xAxis.len),t++;for(H.drawPoints.apply(this,arguments),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],(e.graphic||e.graphics[1])&&(e.graphics[1]=e.graphic),e.graphic=e.graphics[0],e.origProps&&(U(e,e.origProps),delete e.origProps),t++}hasMarkerChanged(t,e){let i=t.lowMarker,s=e.lowMarker||{};return i&&(!1===i.enabled||s.symbol!==i.symbol||s.height!==i.height||s.width!==i.width)||super.hasMarkerChanged(t,e)}}$.defaultOptions=j(F.defaultOptions,{lineWidth:1,threshold:null,tooltip:{pointFormat:'<span style="color:{series.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},trackByArea:!0,dataLabels:{align:void 0,verticalAlign:void 0,xLow:0,xHigh:0,yLow:0,yHigh:0}}),q($,"afterTranslate",function(){"low,high"===this.pointArrayMap.join(",")&&this.points.forEach(t=>{let e=t.high,i=t.plotY;t.isNull?t.plotY=void 0:(t.plotLow=i,t.plotHigh=_(e)?this.yAxis.translate(this.dataModify?this.dataModify.modifyValue(e):e,!1,!0,void 0,!0):void 0,this.dataModify&&(t.yBottom=t.plotHigh))})},{order:0}),q($,"afterTranslate",function(){this.points.forEach(t=>{if(this.chart.polar)this.highToXY(t),t.plotLow=t.plotY,t.tooltipPos=[((t.plotHighX||0)+(t.plotLowX||0))/2,((t.plotHigh||0)+(t.plotLow||0))/2];else{let e=t.pos(!1,t.plotLow),i=t.pos(!1,t.plotHigh);e&&i&&(e[0]=(e[0]+i[0])/2,e[1]=(e[1]+i[1])/2),t.tooltipPos=e}})},{order:3}),U($.prototype,{deferTranslatePolar:!0,pointArrayMap:["low","high"],pointClass:B,pointValKey:"low",setStackedPoints:W}),h().registerSeriesType("arearange",$);let Q=$,{spline:{prototype:J}}=h().seriesTypes,{merge:tt,extend:te}=n();class ti extends Q{}ti.defaultOptions=tt(Q.defaultOptions),te(ti.prototype,{getPointSpline:J.getPointSpline}),h().registerSeriesType("areasplinerange",ti);let ts=t.default.Series.types.column;var ta=o.n(ts);let{noop:to}=n(),{crisp:tr,extend:tn,merge:tl,pick:th,relativeLength:tp}=n();class td extends ta(){pointAttribs(){return{}}getWhiskerPair(t,e,i,s,a){let o=a.whiskers.strokeWidth(),r=(i,s)=>{let a=tp(i,2*t)/2,r=tr(s,o);return[["M",tr(e-a),r],["L",tr(e+a),r]]};return[...r(i,a.highPlot),...r(s,a.lowPlot)]}translate(){let t=this.yAxis,e=this.pointArrayMap;super.translate.apply(this),this.points.forEach(function(i){e.forEach(function(e){null!==i[e]&&(i[e+"Plot"]=t.translate(i[e],0,1,0,1))}),i.plotHigh=i.highPlot})}drawPoints(){let t,e,i,s,a,o,r,n,l,h,p,d=this.points,c=this.options,u=this.chart,g=u.renderer,f=!1!==this.doQuartiles,m=this.options.whiskerLength;for(let b of d){let d=(n=b.graphic)?"animate":"attr",y=b.shapeArgs,x={},P={},v={},M={},L=b.color||this.color,k=b.options.whiskerLength||m;if(void 0!==b.plotY){let w;l=y.width,p=(h=y.x)+l,t=f?b.q1Plot:b.lowPlot,e=f?b.q3Plot:b.lowPlot,i=b.highPlot,s=b.lowPlot,n||(b.graphic=n=g.g("point").add(this.group),b.stem=g.path().addClass("highcharts-boxplot-stem").add(n),m&&(b.whiskers=g.path().addClass("highcharts-boxplot-whisker").add(n)),f&&(b.box=g.path(r).addClass("highcharts-boxplot-box").add(n)),b.medianShape=g.path(o).addClass("highcharts-boxplot-median").add(n)),u.styledMode||(P.stroke=b.stemColor||c.stemColor||L,P["stroke-width"]=th(b.stemWidth,c.stemWidth,c.lineWidth),P.dashstyle=b.stemDashStyle||c.stemDashStyle||c.dashStyle,b.stem.attr(P),k&&(v.stroke=b.whiskerColor||c.whiskerColor||L,v["stroke-width"]=th(b.whiskerWidth,c.whiskerWidth,c.lineWidth),v.dashstyle=b.whiskerDashStyle||c.whiskerDashStyle||c.dashStyle,b.whiskers.attr(v)),f&&(x.fill=b.fillColor||c.fillColor||L,x.stroke=c.lineColor||L,x["stroke-width"]=c.lineWidth||0,x.dashstyle=b.boxDashStyle||c.boxDashStyle||c.dashStyle,b.box.attr(x)),M.stroke=b.medianColor||c.medianColor||L,M["stroke-width"]=th(b.medianWidth,c.medianWidth,c.lineWidth),M.dashstyle=b.medianDashStyle||c.medianDashStyle||c.dashStyle,b.medianShape.attr(M));let A=tr((b.plotX||0)+(this.pointXOffset||0)+(this.barW||0)/2,b.stem.strokeWidth());if(w=[["M",A,e],["L",A,i],["M",A,t],["L",A,s]],b.stem[d]({d:w}),f){let i=b.box.strokeWidth();t=tr(t,i),e=tr(e,i),w=[["M",h=tr(h,i),e],["L",h,t],["L",p=tr(p,i),t],["L",p,e],["L",h,e],["Z"]],b.box[d]({d:w})}if(k){let t=l/2,e=this.getWhiskerPair(t,A,b.upperWhiskerLength??c.upperWhiskerLength??k,b.lowerWhiskerLength??c.lowerWhiskerLength??k,b);b.whiskers[d]({d:e})}w=[["M",h,a=tr(b.medianPlot,b.medianShape.strokeWidth())],["L",p,a]],b.medianShape[d]({d:w})}}}toYData(t){return[t.low,t.q1,t.median,t.q3,t.high]}}td.defaultOptions=tl(ta().defaultOptions,{threshold:null,tooltip:{pointFormat:'<span style="color:{point.color}">●</span> <b>{series.name}</b><br/>Maximum: {point.high}<br/>Upper quartile: {point.q3}<br/>Median: {point.median}<br/>Lower quartile: {point.q1}<br/>Minimum: {point.low}<br/>'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,whiskerWidth:2}),tn(td.prototype,{pointArrayMap:["low","q1","median","q3","high"],pointValKey:"high",drawDataLabels:to,setStackedPoints:to}),h().registerSeriesType("boxplot",td);let tc=td,tu={borderColor:void 0,borderWidth:2,className:void 0,color:void 0,connectorClassName:void 0,connectorColor:void 0,connectorDistance:60,connectorWidth:1,enabled:!1,labels:{className:void 0,allowOverlap:!1,format:"",formatter:void 0,align:"right",style:{fontSize:"0.9em",color:"#000000"},x:0,y:0},maxSize:60,minSize:10,legendIndex:0,ranges:{value:void 0,borderColor:void 0,color:void 0,connectorColor:void 0},sizeBy:"area",sizeByAbsoluteValue:!1,zIndex:1,zThreshold:0},tg=t.default.Templating;var tf=o.n(tg);let{noop:tm}=n(),{arrayMax:tb,arrayMin:ty,isNumber:tx,merge:tP,pick:tv,stableSort:tM}=n(),tL=class{constructor(t,e){this.setState=tm,this.init(t,e)}init(t,e){this.options=t,this.visible=!0,this.chart=e.chart,this.legend=e}addToLegend(t){t.splice(this.options.legendIndex,0,this)}drawLegendSymbol(t){let e,i=tv(t.options.itemDistance,20),s=this.legendItem||{},a=this.options,o=a.ranges,r=a.connectorDistance;if(!o||!o.length||!tx(o[0].value)){t.options.bubbleLegend.autoRanges=!0;return}tM(o,function(t,e){return e.value-t.value}),this.ranges=o,this.setOptions(),this.render();let n=this.getMaxLabelSize(),l=this.ranges[0].radius,h=2*l;e=(e=r-l+n.width)>0?e:0,this.maxLabel=n,this.movementX="left"===a.labels.align?e:0,s.labelWidth=h+e+i,s.labelHeight=h+n.height/2}setOptions(){let t=this.ranges,e=this.options,i=this.chart.series[e.seriesIndex],s=this.legend.baseline,a={zIndex:e.zIndex,"stroke-width":e.borderWidth},o={zIndex:e.zIndex,"stroke-width":e.connectorWidth},r={align:this.legend.options.rtl||"left"===e.labels.align?"right":"left",zIndex:e.zIndex},n=i.options.marker.fillOpacity,l=this.chart.styledMode;t.forEach(function(h,p){l||(a.stroke=tv(h.borderColor,e.borderColor,i.color),a.fill=h.color||e.color,a.fill||(a.fill=i.color,a["fill-opacity"]=n??1),o.stroke=tv(h.connectorColor,e.connectorColor,i.color)),t[p].radius=this.getRangeRadius(h.value),t[p]=tP(t[p],{center:t[0].radius-t[p].radius+s}),l||tP(!0,t[p],{bubbleAttribs:tP(a),connectorAttribs:tP(o),labelAttribs:r})},this)}getRangeRadius(t){let e=this.options,i=this.options.seriesIndex,s=this.chart.series[i],a=e.ranges[0].value,o=e.ranges[e.ranges.length-1].value,r=e.minSize,n=e.maxSize;return s.getRadius.call(this,o,a,r,n,t)}render(){let t=this.legendItem||{},e=this.chart.renderer,i=this.options.zThreshold;for(let s of(this.symbols||(this.symbols={connectors:[],bubbleItems:[],labels:[]}),t.symbol=e.g("bubble-legend"),t.label=e.g("bubble-legend-item").css(this.legend.itemStyle||{}),t.symbol.translateX=0,t.symbol.translateY=0,t.symbol.add(t.label),t.label.add(t.group),this.ranges))s.value>=i&&this.renderRange(s);this.hideOverlappingLabels()}renderRange(t){let e=this.ranges[0],i=this.legend,s=this.options,a=s.labels,o=this.chart,r=o.series[s.seriesIndex],n=o.renderer,l=this.symbols,h=l.labels,p=t.center,d=Math.abs(t.radius),c=s.connectorDistance||0,u=a.align,g=i.options.rtl,f=s.borderWidth,m=s.connectorWidth,b=e.radius||0,y=p-d-f/2+m/2,x=(y%1?1:.5)-(m%2?0:.5),P=n.styledMode,v=g||"left"===u?-c:c;"center"===u&&(v=0,s.connectorDistance=0,t.labelAttribs.align="center"),l.bubbleItems.push(n.circle(b,p+x,d).attr(P?{}:t.bubbleAttribs).addClass((P?"highcharts-color-"+r.colorIndex+" ":"")+"highcharts-bubble-legend-symbol "+(s.className||"")).add(this.legendItem.symbol)),l.connectors.push(n.path(n.crispLine([["M",b,y],["L",b+v,y]],s.connectorWidth)).attr(P?{}:t.connectorAttribs).addClass((P?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(s.connectorClassName||"")).add(this.legendItem.symbol));let M=n.text(this.formatLabel(t)).attr(P?{}:t.labelAttribs).css(P?{}:a.style).addClass("highcharts-bubble-legend-labels "+(s.labels.className||"")).add(this.legendItem.symbol),L={x:b+v+s.labels.x,y:y+s.labels.y+.4*M.getBBox().height};M.attr(L),h.push(M),M.placed=!0,M.alignAttr=L}getMaxLabelSize(){let t,e;return this.symbols.labels.forEach(function(i){e=i.getBBox(!0),t=t?e.width>t.width?e:t:e}),t||{}}formatLabel(t){let e=this.options,i=e.labels.formatter,s=e.labels.format,{numberFormatter:a}=this.chart;return s?tf().format(s,t,this.chart):i?i.call(t):a(t.value,1)}hideOverlappingLabels(){let t=this.chart,e=this.options.labels.allowOverlap,i=this.symbols;!e&&i&&(t.hideOverlappingLabels(i.labels),i.labels.forEach(function(t,e){t.newOpacity?t.newOpacity!==t.oldOpacity&&i.connectors[e].show():i.connectors[e].hide()}))}getRanges(){let t=this.legend.bubbleLegend,e=t.chart.series,i=t.options.ranges,s,a,o=Number.MAX_VALUE,r=-Number.MAX_VALUE;return e.forEach(function(t){t.isBubble&&!t.ignoreSeries&&(a=t.getColumn("z").filter(tx)).length&&(o=tv(t.options.zMin,Math.min(o,Math.max(ty(a),!1===t.options.displayNegative?t.options.zThreshold:-Number.MAX_VALUE))),r=tv(t.options.zMax,Math.max(r,tb(a))))}),s=o===r?[{value:r}]:[{value:o},{value:(o+r)/2},{value:r,autoRanges:!0}],i.length&&i[0].radius&&s.reverse(),s.forEach(function(t,e){i&&i[e]&&(s[e]=tP(i[e],t))}),s}predictBubbleSizes(){let t=this.chart,e=t.legend.options,i=e.floating,s="horizontal"===e.layout,a=s?t.legend.lastLineHeight:0,o=t.plotSizeX,r=t.plotSizeY,n=t.series[this.options.seriesIndex],l=n.getPxExtremes(),h=Math.ceil(l.minPxSize),p=Math.ceil(l.maxPxSize),d=Math.min(r,o),c,u=n.options.maxSize;return i||!/%$/.test(u)?c=p:(c=(d+a)*(u=parseFloat(u))/100/(u/100+1),(s&&r-c>=o||!s&&o-c>=r)&&(c=p)),[h,Math.ceil(c)]}updateRanges(t,e){let i=this.legend.options.bubbleLegend;i.minSize=t,i.maxSize=e,i.ranges=this.getRanges()}correctSizes(){let t=this.legend,e=this.chart.series[this.options.seriesIndex].getPxExtremes();Math.abs(Math.ceil(e.maxPxSize)-this.options.maxSize)>1&&(this.updateRanges(this.options.minSize,e.maxPxSize),t.render())}},{setOptions:tk}=n(),{composed:tw}=n(),{addEvent:tA,objectEach:tS,pushUnique:tN,wrap:tT}=n();function tC(t,e,i){let s,a,o,r=this.legend,n=tX(this)>=0;r&&r.options.enabled&&r.bubbleLegend&&r.options.bubbleLegend.autoRanges&&n?(s=r.bubbleLegend.options,a=r.bubbleLegend.predictBubbleSizes(),r.bubbleLegend.updateRanges(a[0],a[1]),s.placed||(r.group.placed=!1,r.allItems.forEach(t=>{(o=t.legendItem||{}).group&&(o.group.translateY=void 0)})),r.render(),s.placed||(this.getMargins(),this.axes.forEach(t=>{t.setScale(),t.updateNames(),tS(t.ticks,function(t){t.isNew=!0,t.isNewLabel=!0})}),this.getMargins()),s.placed=!0,t.call(this,e,i),r.bubbleLegend.correctSizes(),tE(r,tY(r))):(t.call(this,e,i),r&&r.options.enabled&&r.bubbleLegend&&(r.render(),tE(r,tY(r))))}function tX(t){let e=t.series,i=0;for(;i<e.length;){if(e[i]&&e[i].isBubble&&e[i].visible&&e[i].dataTable.rowCount)return i;i++}return -1}function tY(t){let e=t.allItems,i=[],s=e.length,a,o,r,n=0,l=0;for(n=0;n<s;n++)if(o=e[n].legendItem||{},r=(e[n+1]||{}).legendItem||{},o.labelHeight&&(e[n].itemHeight=o.labelHeight),e[n]===e[s-1]||o.y!==r.y){for(i.push({height:0}),a=i[i.length-1];l<=n;l++)e[l].itemHeight>a.height&&(a.height=e[l].itemHeight);a.step=n}return i}function tI(t){let e=this.bubbleLegend,i=this.options,s=i.bubbleLegend,a=tX(this.chart);e&&e.ranges&&e.ranges.length&&(s.ranges.length&&(s.autoRanges=!!s.ranges[0].autoRanges),this.destroyItem(e)),a>=0&&i.enabled&&s.enabled&&(s.seriesIndex=a,this.bubbleLegend=new tL(s,this),this.bubbleLegend.addToLegend(t.allItems))}function tR(t){let e;if(t.defaultPrevented)return!1;let i=t.legendItem,s=this.chart,a=i.visible;this&&this.bubbleLegend&&(i.visible=!a,i.ignoreSeries=a,e=tX(s)>=0,this.bubbleLegend.visible!==e&&(this.update({bubbleLegend:{enabled:e}}),this.bubbleLegend.visible=e),i.visible=a)}function tE(t,e){let i=t.allItems,s=t.options.rtl,a,o,r,n,l=0;i.forEach((t,i)=>{(n=t.legendItem||{}).group&&(a=n.group.translateX||0,o=n.y||0,((r=t.movementX)||s&&t.ranges)&&(r=s?a-t.options.maxSize/2:a+r,n.group.attr({translateX:r})),i>e[l].step&&l++,n.group.attr({translateY:Math.round(o+e[l].height/2)}),n.y=o+e[l].height/2)})}let tD=function(t,e){tN(tw,"Series.BubbleLegend")&&(tk({legend:{bubbleLegend:tu}}),tT(t.prototype,"drawChartBox",tC),tA(e,"afterGetAllItems",tI),tA(e,"itemClick",tR))},tz=t.default.Point;var tO=o.n(tz);let{seriesTypes:{scatter:{prototype:{pointClass:tB}}}}=h(),{extend:tW}=n();class tF extends tB{haloPath(t){let e=(t&&this.marker&&this.marker.radius||0)+t;if(this.series.chart.inverted){let t=this.pos()||[0,0],{xAxis:i,yAxis:s,chart:a}=this.series,o=2*e;return a.renderer.symbols.circle((i?.len||0)-t[1]-e,(s?.len||0)-t[0]-e,o,o)}return tO().prototype.haloPath.call(this,e)}}tW(tF.prototype,{ttBelow:!1});let{composed:tH,noop:tG}=n(),{series:tq,seriesTypes:{column:{prototype:tV},scatter:tU}}=h(),{addEvent:tK,arrayMax:t_,arrayMin:tZ,clamp:tj,extend:t$,isNumber:tQ,merge:tJ,pick:t0,pushUnique:t1}=n();function t2(){let t=this.len,{coll:e,isXAxis:i,min:s}=this,a=(this.max||0)-(s||0),o=0,r=t,n=t/a,l;("xAxis"===e||"yAxis"===e)&&(this.series.forEach(t=>{if(t.bubblePadding&&t.reserveSpace()){this.allowZoomOutside=!0,l=!0;let e=t.getColumn(i?"x":"y");if(i&&((t.onPoint||t).getRadii(0,0,t),t.onPoint&&(t.radii=t.onPoint.radii)),a>0){let i=e.length;for(;i--;)if(tQ(e[i])&&this.dataMin<=e[i]&&e[i]<=this.max){let a=t.radii&&t.radii[i]||0;o=Math.min((e[i]-s)*n-a,o),r=Math.max((e[i]-s)*n+a,r)}}}}),l&&a>0&&!this.logarithmic&&(r-=t,n*=(t+Math.max(0,o)-Math.min(r,t))/t,[["min","userMin",o],["max","userMax",r]].forEach(t=>{void 0===t0(this.options[t[0]],this[t[1]])&&(this[t[0]]+=t[2]/n)})))}function t3(){let{ticks:t,tickPositions:e,dataMin:i=0,dataMax:s=0,categories:a}=this,o=this.options.type;if((a?.length||"category"===o)&&this.series.find(t=>t.bubblePadding)){let a=e.length;for(;a--;){let o=t[e[a]],r=o.pos||0;(r>s||r<i)&&o.label?.hide()}}}class t5 extends tU{static compose(t,e,i){tD(e,i),t1(tH,"Series.Bubble")&&(tK(t,"foundExtremes",t2),tK(t,"afterRender",t3))}animate(t){!t&&this.points.length<this.options.animationLimit&&this.points.forEach(function(t){let{graphic:e,plotX:i=0,plotY:s=0}=t;e&&e.width&&(this.hasRendered||e.attr({x:i,y:s,width:1,height:1}),e.animate(this.markerAttribs(t),this.options.animation))},this)}getRadii(){let t=this.getColumn("z"),e=this.getColumn("y"),i=[],s,a,o,r=this.chart.bubbleZExtremes,{minPxSize:n,maxPxSize:l}=this.getPxExtremes();if(!r){let t,e=Number.MAX_VALUE,i=-Number.MAX_VALUE;this.chart.series.forEach(s=>{if(s.bubblePadding&&s.reserveSpace()){let a=(s.onPoint||s).getZExtremes();a&&(e=Math.min(t0(e,a.zMin),a.zMin),i=Math.max(t0(i,a.zMax),a.zMax),t=!0)}}),t?(r={zMin:e,zMax:i},this.chart.bubbleZExtremes=r):r={zMin:0,zMax:0}}for(a=0,s=t.length;a<s;a++)o=t[a],i.push(this.getRadius(r.zMin,r.zMax,n,l,o,e&&e[a]));this.radii=i}getRadius(t,e,i,s,a,o){let r=this.options,n="width"!==r.sizeBy,l=r.zThreshold,h=e-t,p=.5;if(null===o||null===a)return null;if(tQ(a)){if(r.sizeByAbsoluteValue&&(a=Math.abs(a-l),e=h=Math.max(e-l,Math.abs(t-l)),t=0),a<t)return i/2-1;h>0&&(p=(a-t)/h)}return n&&p>=0&&(p=Math.sqrt(p)),Math.ceil(i+p*(s-i))/2}hasData(){return!!this.dataTable.rowCount}markerAttribs(t,e){let i=super.markerAttribs(t,e),{height:s=0,width:a=0}=i;return this.chart.inverted?t$(i,{x:(t.plotX||0)-a/2,y:(t.plotY||0)-s/2}):i}pointAttribs(t,e){let i=this.options.marker,s=i?.fillOpacity,a=tq.prototype.pointAttribs.call(this,t,e);return a["fill-opacity"]=s??1,a}translate(){super.translate.call(this),this.getRadii(),this.translateBubble()}translateBubble(){let{data:t,options:e,radii:i}=this,{minPxSize:s}=this.getPxExtremes(),a=t.length;for(;a--;){let o=t[a],r=i?i[a]:0;"z"===this.zoneAxis&&(o.negative=(o.z||0)<(e.zThreshold||0)),tQ(r)&&r>=s/2?(o.marker=t$(o.marker,{radius:r,width:2*r,height:2*r}),o.dlBox={x:o.plotX-r,y:o.plotY-r,width:2*r,height:2*r}):(o.shapeArgs=o.plotY=o.dlBox=void 0,o.isInside=!1)}}getPxExtremes(){let t=Math.min(this.chart.plotWidth,this.chart.plotHeight),e=e=>{let i;return"string"==typeof e&&(i=/%$/.test(e),e=parseInt(e,10)),i?t*e/100:e},i=e(t0(this.options.minSize,8)),s=Math.max(e(t0(this.options.maxSize,"20%")),i);return{minPxSize:i,maxPxSize:s}}getZExtremes(){let t=this.options,e=this.getColumn("z").filter(tQ);if(e.length){let i=t0(t.zMin,tj(tZ(e),!1===t.displayNegative?t.zThreshold||0:-Number.MAX_VALUE,Number.MAX_VALUE)),s=t0(t.zMax,t_(e));if(tQ(i)&&tQ(s))return{zMin:i,zMax:s}}}searchKDTree(t,e,i,s=tG,a=tG){return s=(t,e,i)=>{let s=t[i]||0,a=e[i]||0,o,r=!1;return s===a?o=t.index>e.index?t:e:s<0&&a<0?(o=s-(t.marker?.radius||0)>=a-(e.marker?.radius||0)?t:e,r=!0):o=s<a?t:e,[o,r]},a=(t,e,i)=>!i&&t>e||t<e,super.searchKDTree(t,e,i,s,a)}}t5.defaultOptions=tJ(tU.defaultOptions,{dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{z:e}=this.point;return tQ(e)?t(e,-1):""},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5,radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"}),t$(t5.prototype,{alignDataLabel:tV.alignDataLabel,applyZones:tG,bubblePadding:!0,isBubble:!0,keysAffectYAxis:["y"],pointArrayMap:["y","z"],pointClass:tF,parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",zoneAxis:"z"}),tK(t5,"updatedData",t=>{delete t.target.chart.bubbleZExtremes}),tK(t5,"remove",t=>{delete t.target.chart.bubbleZExtremes}),h().registerSeriesType("bubble",t5);let{seriesTypes:{column:{prototype:{pointClass:{prototype:t8}}},arearange:{prototype:{pointClass:t6}}}}=h(),{extend:t9,isNumber:t4}=n();class t7 extends t6{isValid(){return t4(this.low)}}t9(t7.prototype,{setState:t8.setState});let{noop:et}=n(),{seriesTypes:{arearange:ee,column:ei,column:{prototype:es}}}=h(),{addEvent:ea,clamp:eo,extend:er,isNumber:en,merge:el,pick:eh}=n();class ep extends ee{setOptions(){return el(!0,arguments[0],{stacking:void 0}),ee.prototype.setOptions.apply(this,arguments)}translate(){return es.translate.apply(this)}pointAttribs(){return es.pointAttribs.apply(this,arguments)}translate3dPoints(){return es.translate3dPoints.apply(this,arguments)}translate3dShapes(){return es.translate3dShapes.apply(this,arguments)}afterColumnTranslate(){let t,e,i,s,a=this.yAxis,o=this.xAxis,r=o.startAngleRad,n=this.chart,l=this.xAxis.isRadial,h=Math.max(n.chartWidth,n.chartHeight)+999;this.points.forEach(p=>{let d=p.shapeArgs||{},c=this.options.minPointLength,u=p.plotY,g=a.translate(p.high,0,1,0,1);if(en(g)&&en(u))if(p.plotHigh=eo(g,-h,h),p.plotLow=eo(u,-h,h),s=p.plotHigh,Math.abs(t=eh(p.rectPlotY,p.plotY)-p.plotHigh)<c?(e=c-t,t+=e,s-=e/2):t<0&&(t*=-1,s-=t),l&&this.polar)i=p.barX+r,p.shapeType="arc",p.shapeArgs=this.polar.arc(s+t,s,i,i+p.pointWidth);else{d.height=t,d.y=s;let{x:e=0,width:i=0}=d;p.shapeArgs=el(p.shapeArgs,this.crispCol(e,s,i,t)),p.tooltipPos=n.inverted?[a.len+a.pos-n.plotLeft-s-t/2,o.len+o.pos-n.plotTop-e-i/2,t]:[o.left-n.plotLeft+e+i/2,a.pos-n.plotTop+s+t/2,t]}})}}ep.defaultOptions=el(ei.defaultOptions,ee.defaultOptions,{borderRadius:{where:"all"},pointRange:null,legendSymbol:"rectangle",marker:null,states:{hover:{halo:!1}}}),ea(ep,"afterColumnTranslate",function(){ep.prototype.afterColumnTranslate.apply(this)},{order:5}),er(ep.prototype,{directTouch:!0,pointClass:t7,trackerGroups:["group","dataLabelsGroup"],adjustForMissingColumns:es.adjustForMissingColumns,animate:es.animate,crispCol:es.crispCol,drawGraph:et,drawPoints:es.drawPoints,getSymbol:et,drawTracker:es.drawTracker,getColumnMetrics:es.getColumnMetrics}),h().registerSeriesType("columnrange",ep);let{column:ed}=h().seriesTypes,{clamp:ec,merge:eu,pick:eg}=n();class ef extends ed{translate(){let t=this.chart,e=this.options,i=this.dense=this.closestPointRange*this.xAxis.transA<2,s=this.borderWidth=eg(e.borderWidth,+!i),a=this.yAxis,o=e.threshold,r=eg(e.minPointLength,5),n=this.getColumnMetrics(),l=n.width,h=this.pointXOffset=n.offset,p=this.translatedThreshold=a.getThreshold(o),d=this.barW=Math.max(l,1+2*s);for(let i of(t.inverted&&(p-=.5),e.pointPadding&&(d=Math.ceil(d)),super.translate(),this.points)){let s=eg(i.yBottom,p),c=999+Math.abs(s),u=ec(i.plotY,-c,a.len+c),g=d/2,f=Math.min(u,s),m=Math.max(u,s)-f,b=i.plotX+h,y,x,P,v,M,L,k,w,A,S,N;e.centerInCategory&&(b=this.adjustForMissingColumns(b,l,i,n)),i.barX=b,i.pointWidth=l,i.tooltipPos=t.inverted?[a.len+a.pos-t.plotLeft-u,this.xAxis.len-b-g,m]:[b+g,u+a.pos-t.plotTop,m],y=o+(i.total||i.y),"percent"===e.stacking&&(y=o+(i.y<0)?-100:100);let T=a.toPixels(y,!0);P=(x=t.plotHeight-T-(t.plotHeight-p))?g*(f-T)/x:0,v=x?g*(f+m-T)/x:0,L=b-P+g,k=b+P+g,w=b+v+g,A=b-v+g,S=f-r,N=f+m,i.y<0&&(S=f,N=f+m+r),t.inverted&&(M=a.width-f,x=T-(a.width-p),P=g*(T-M)/x,v=g*(T-(M-m))/x,k=(L=b+g+P)-2*P,w=b-v+g,A=b+v+g,S=f,N=f+m-r,i.y<0&&(N=f+m+r)),i.shapeType="path",i.shapeArgs={x:L,y:S,width:k-L,height:m,d:[["M",L,S],["L",k,S],["L",w,N],["L",A,N],["Z"]]}}}}ef.defaultOptions=eu(ed.defaultOptions,{}),h().registerSeriesType("columnpyramid",ef);let{arearange:em}=h().seriesTypes,{addEvent:eb,merge:ey,extend:ex}=n();class eP extends tc{getColumnMetrics(){return this.linkedParent&&this.linkedParent.columnMetrics||ta().prototype.getColumnMetrics.call(this)}drawDataLabels(){let t=this.pointValKey;if(em)for(let e of(em.prototype.drawDataLabels.call(this),this.points))e.y=e[t]}toYData(t){return[t.low,t.high]}}eP.defaultOptions=ey(tc.defaultOptions,{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'<span style="color:{point.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},whiskerWidth:null}),eb(eP,"afterTranslate",function(){for(let t of this.points)t.plotLow=t.plotY},{order:0}),ex(eP.prototype,{pointArrayMap:["low","high"],pointValKey:"high",doQuartiles:!1}),h().registerSeriesType("errorbar",eP);let{series:{prototype:{pointClass:ev}}}=h(),{noop:eM}=n(),{series:eL,seriesTypes:{column:ek}}=h(),{clamp:ew,isNumber:eA,extend:eS,merge:eN,pick:eT,pInt:eC,defined:eX}=n();class eY extends eL{translate(){let t=this.yAxis,e=this.options,i=t.center;this.generatePoints(),this.points.forEach(s=>{let a=eN(e.dial,s.dial),o=eC(a.radius)*i[2]/200,r=eC(a.baseLength)*o/100,n=eC(a.rearLength)*o/100,l=a.baseWidth,h=a.topWidth,p=e.overshoot,d=t.startAngleRad+t.translate(s.y,void 0,void 0,void 0,!0);(eA(p)||!1===e.wrap)&&(p=eA(p)?p/180*Math.PI:0,d=ew(d,t.startAngleRad-p,t.endAngleRad+p)),d=180*d/Math.PI,s.shapeType="path",s.shapeArgs={d:a.path||[["M",-n,-l/2],["L",r,-l/2],["L",o,-h/2],["L",o,h/2],["L",r,l/2],["L",-n,l/2],["Z"]],translateX:i[0],translateY:i[1],rotation:d},s.plotX=i[0],s.plotY=i[1],eX(s.y)&&t.max-t.min&&(s.percentage=(s.y-t.min)/(t.max-t.min)*100)})}drawPoints(){let t=this,e=t.chart,i=t.yAxis.center,s=t.pivot,a=t.options,o=a.pivot,r=e.renderer;t.points.forEach(i=>{let s=i.graphic,o=i.shapeArgs,n=o.d,l=eN(a.dial,i.dial);s?(s.animate(o),o.d=n):i.graphic=r[i.shapeType](o).addClass("highcharts-dial").add(t.group),e.styledMode||i.graphic[s?"animate":"attr"]({stroke:l.borderColor,"stroke-width":l.borderWidth,fill:l.backgroundColor})}),s?s.animate({translateX:i[0],translateY:i[1]}):o&&(t.pivot=r.circle(0,0,o.radius).attr({zIndex:2}).addClass("highcharts-pivot").translate(i[0],i[1]).add(t.group),e.styledMode||t.pivot.attr({fill:o.backgroundColor,stroke:o.borderColor,"stroke-width":o.borderWidth}))}animate(t){let e=this;t||e.points.forEach(t=>{let i=t.graphic;i&&(i.attr({rotation:180*e.yAxis.startAngleRad/Math.PI}),i.animate({rotation:t.shapeArgs.rotation},e.options.animation))})}render(){this.group=this.plotGroup("group","series",this.visible?"inherit":"hidden",this.options.zIndex,this.chart.seriesGroup),eL.prototype.render.call(this),this.group.clip(this.chart.clipRect)}setData(t,e){eL.prototype.setData.call(this,t,!1),this.processData(),this.generatePoints(),eT(e,!0)&&this.chart.redraw()}hasData(){return!!this.points.length}}eY.defaultOptions=eN(eL.defaultOptions,{dataLabels:{borderColor:"#cccccc",borderRadius:3,borderWidth:1,crop:!1,defer:!1,enabled:!0,verticalAlign:"top",y:15,zIndex:2},dial:{backgroundColor:"#000000",baseLength:"70%",baseWidth:3,borderColor:"#cccccc",borderWidth:0,radius:"80%",rearLength:"10%",topWidth:1},pivot:{radius:5,borderWidth:0,borderColor:"#cccccc",backgroundColor:"#000000"},tooltip:{headerFormat:""},showInLegend:!1}),eS(eY.prototype,{angular:!0,directTouch:!0,drawGraph:eM,drawTracker:ek.prototype.drawTracker,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,pointClass:class extends ev{setState(t){this.state=t}},trackerGroups:["group","dataLabelsGroup"]}),h().registerSeriesType("gauge",eY);let eI=t.default.Color;var eR=o.n(eI);let{composed:eE}=n(),{addEvent:eD,pushUnique:ez}=n();function eO(){let t,e,i,s,a=this;a.container&&(t=eD(a.container,"mousedown",t=>{e&&e(),i&&i(),(s=a.hoverPoint)&&s.series&&s.series.hasDraggableNodes&&s.series.options.draggable&&(s.series.onMouseDown(s,t),e=eD(a.container,"mousemove",t=>s&&s.series&&s.series.onMouseMove(s,t)),i=eD(a.container.ownerDocument,"mouseup",t=>(e(),i(),s&&s.series&&s.series.onMouseUp(s,t))))})),eD(a,"destroy",function(){t()})}let eB={compose:function(t){ez(eE,"DragNodes")&&eD(t,"load",eO)},onMouseDown:function(t,e){let{panKey:i}=this.chart.options.chart;if(i&&e[`${i}Key`])return;let s=this.chart.pointer?.normalize(e)||e;t.fixedPosition={chartX:s.chartX,chartY:s.chartY,plotX:t.plotX,plotY:t.plotY},t.inDragMode=!0},onMouseMove:function(t,e){if(t.fixedPosition&&t.inDragMode){let i,s,a=this.chart,o=a.pointer?.normalize(e)||e,r=t.fixedPosition.chartX-o.chartX,n=t.fixedPosition.chartY-o.chartY,l=a.graphLayoutsLookup;(Math.abs(r)>5||Math.abs(n)>5)&&(i=t.fixedPosition.plotX-r,s=t.fixedPosition.plotY-n,a.isInsidePlot(i,s)&&(t.plotX=i,t.plotY=s,t.hasDragged=!0,this.redrawHalo(t),l.forEach(t=>{t.restartSimulation()})))}},onMouseUp:function(t){t.fixedPosition&&(t.hasDragged&&(this.layout.enableSimulation?this.layout.start():this.chart.redraw()),t.inDragMode=t.hasDragged=!1,this.options.fixedDraggable||delete t.fixedPosition)},redrawHalo:function(t){t&&this.halo&&this.halo.attr({d:t.haloPath(this.options.states.hover.halo.size)})}},{setAnimation:eW}=n(),{composed:eF}=n(),{addEvent:eH,pushUnique:eG}=n();function eq(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation()}),this.redraw())}function eV(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation(!1)}),this.redraw())}function eU(){this.graphLayoutsLookup&&this.graphLayoutsLookup.forEach(t=>{t.stop()})}function eK(){let t,e=!1,i=i=>{i.maxIterations--&&isFinite(i.temperature)&&!i.isStable()&&!i.enableSimulation&&(i.beforeStep&&i.beforeStep(),i.step(),t=!1,e=!0)};if(this.graphLayoutsLookup&&!this.pointer?.hasDragged){for(eW(!1,this),this.graphLayoutsLookup.forEach(t=>t.start());!t;)t=!0,this.graphLayoutsLookup.forEach(i);e&&this.series.forEach(t=>{t&&t.layout&&t.render()})}}let e_={compose:function(t){eG(eF,"GraphLayout")&&(eH(t,"afterPrint",eq),eH(t,"beforePrint",eV),eH(t,"predraw",eU),eH(t,"render",eK))},integrations:{},layouts:{}},eZ=t.default.Chart;var ej=o.n(eZ);let{seriesTypes:{bubble:{prototype:{pointClass:e$}}}}=h(),eQ=class extends e${destroy(){return this.series?.layout&&this.series.layout.removeElementFromCollection(this,this.series.layout.nodes),tO().prototype.destroy.apply(this,arguments)}firePointEvent(){let t=this.series.options;if(this.isParentNode&&t.parentNode){let e=t.allowPointSelect;t.allowPointSelect=t.parentNode.allowPointSelect,tO().prototype.firePointEvent.apply(this,arguments),t.allowPointSelect=e}else tO().prototype.firePointEvent.apply(this,arguments)}select(){let t=this.series.chart;this.isParentNode?(t.getSelectedPoints=t.getSelectedParentNodes,tO().prototype.select.apply(this,arguments),t.getSelectedPoints=ej().prototype.getSelectedPoints):tO().prototype.select.apply(this,arguments)}setState(t,e){this?.graphic?.parentGroup?.element&&super.setState(t,e)}},{isNumber:eJ}=n(),e0={attractive:function(t,e,i){let s=t.getMass(),a=-i.x*e*this.diffTemperature,o=-i.y*e*this.diffTemperature;t.fromNode.fixedPosition||(t.fromNode.plotX-=a*s.fromNode/t.fromNode.degree,t.fromNode.plotY-=o*s.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.plotX+=a*s.toNode/t.toNode.degree,t.toNode.plotY+=o*s.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return(e-t)/t},barycenter:function(){let t=this.options.gravitationalConstant||0,e=(this.barycenter.xFactor-(this.box.left+this.box.width)/2)*t,i=(this.barycenter.yFactor-(this.box.top+this.box.height)/2)*t;this.nodes.forEach(function(t){t.fixedPosition||(t.plotX-=e/t.mass/t.degree,t.plotY-=i/t.mass/t.degree)})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.5)},integrate:function(t,e){let i=-t.options.friction,s=t.options.maxSpeed,a=e.prevX,o=e.prevY,r=(e.plotX+e.dispX-a)*i,n=(e.plotY+e.dispY-o)*i,l=Math.abs,h=l(r)/(r||1),p=l(n)/(n||1),d=h*Math.min(s,Math.abs(r)),c=p*Math.min(s,Math.abs(n));e.prevX=e.plotX+e.dispX,e.prevY=e.plotY+e.dispY,e.plotX+=d,e.plotY+=c,e.temperature=t.vectorLength({x:d,y:c})},repulsive:function(t,e,i){let s=e*this.diffTemperature/t.mass/t.degree;t.fixedPosition||(t.plotX+=i.x*s,t.plotY+=i.y*s)},repulsiveForceFunction:function(t,e){return(e-t)/t*(e>t)}},{noop:e1}=n(),e2={barycenter:function(){let t,e,i=this.options.gravitationalConstant||0,s=this.box,a=this.nodes,o=Math.sqrt(a.length);for(let r of a)if(!r.fixedPosition){let a=r.mass*o,n=r.plotX||0,l=r.plotY||0,h=r.series,p=h.parentNode;this.resolveSplitSeries(r)&&p&&!r.isParentNode?(t=p.plotX||0,e=p.plotY||0):(t=s.width/2,e=s.height/2),r.plotX=n-(n-t)*i/a,r.plotY=l-(l-e)*i/a,h.chart.hoverPoint===r&&h.redrawHalo&&h.halo&&h.redrawHalo(r)}},getK:e1,integrate:e0.integrate,repulsive:function(t,e,i,s){let a=e*this.diffTemperature/t.mass/t.degree,o=i.x*a,r=i.y*a;t.fixedPosition||(t.plotX+=o,t.plotY+=r),s.fixedPosition||(s.plotX-=o,s.plotY-=r)},repulsiveForceFunction:function(t,e,i,s){return Math.min(t,(i.marker.radius+s.marker.radius)/2)}},e3={attractive:function(t,e,i,s){let a=t.getMass(),o=i.x/s*e,r=i.y/s*e;t.fromNode.fixedPosition||(t.fromNode.dispX-=o*a.fromNode/t.fromNode.degree,t.fromNode.dispY-=r*a.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.dispX+=o*a.toNode/t.toNode.degree,t.toNode.dispY+=r*a.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return t*t/e},barycenter:function(){let t=this.options.gravitationalConstant,e=this.barycenter.xFactor,i=this.barycenter.yFactor;this.nodes.forEach(function(s){if(!s.fixedPosition){let a=s.getDegree(),o=a*(1+a/2);s.dispX+=(e-s.plotX)*t*o/s.degree,s.dispY+=(i-s.plotY)*t*o/s.degree}})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.3)},integrate:function(t,e){e.dispX+=e.dispX*t.options.friction,e.dispY+=e.dispY*t.options.friction;let i=e.temperature=t.vectorLength({x:e.dispX,y:e.dispY});0!==i&&(e.plotX+=e.dispX/i*Math.min(Math.abs(e.dispX),t.temperature),e.plotY+=e.dispY/i*Math.min(Math.abs(e.dispY),t.temperature))},repulsive:function(t,e,i,s){t.dispX+=i.x/s*e/t.degree,t.dispY+=i.y/s*e/t.degree},repulsiveForceFunction:function(t,e){return e*e/t}};class e5{constructor(t){this.body=!1,this.isEmpty=!1,this.isInternal=!1,this.nodes=[],this.box=t,this.boxSize=Math.min(t.width,t.height)}divideBox(){let t=this.box.width/2,e=this.box.height/2;this.nodes[0]=new e5({left:this.box.left,top:this.box.top,width:t,height:e}),this.nodes[1]=new e5({left:this.box.left+t,top:this.box.top,width:t,height:e}),this.nodes[2]=new e5({left:this.box.left+t,top:this.box.top+e,width:t,height:e}),this.nodes[3]=new e5({left:this.box.left,top:this.box.top+e,width:t,height:e})}getBoxPosition(t){let e=t.plotX<this.box.left+this.box.width/2,i=t.plotY<this.box.top+this.box.height/2;return e?3*!i:i?1:2}insert(t,e){let i;this.isInternal?this.nodes[this.getBoxPosition(t)].insert(t,e-1):(this.isEmpty=!1,this.body?e?(this.isInternal=!0,this.divideBox(),!0!==this.body&&(this.nodes[this.getBoxPosition(this.body)].insert(this.body,e-1),this.body=!0),this.nodes[this.getBoxPosition(t)].insert(t,e-1)):((i=new e5({top:t.plotX||NaN,left:t.plotY||NaN,width:.1,height:.1})).body=t,i.isInternal=!1,this.nodes.push(i)):(this.isInternal=!1,this.body=t))}updateMassAndCenter(){let t=0,e=0,i=0;if(this.isInternal){for(let s of this.nodes)s.isEmpty||(t+=s.mass,e+=s.plotX*s.mass,i+=s.plotY*s.mass);e/=t,i/=t}else this.body&&(t=this.body.mass,e=this.body.plotX,i=this.body.plotY);this.mass=t,this.plotX=e,this.plotY=i}}let e8=class{constructor(t,e,i,s){this.box={left:t,top:e,width:i,height:s},this.maxDepth=25,this.root=new e5(this.box),this.root.isInternal=!0,this.root.isRoot=!0,this.root.divideBox()}calculateMassAndCenter(){this.visitNodeRecursive(null,null,function(t){t.updateMassAndCenter()})}insertNodes(t){for(let e of t)this.root.insert(e,this.maxDepth)}visitNodeRecursive(t,e,i){let s;if(t||(t=this.root),t===this.root&&e&&(s=e(t)),!1!==s){for(let a of t.nodes){if(a.isInternal){if(e&&(s=e(a)),!1===s)continue;this.visitNodeRecursive(a,e,i)}else a.body&&e&&e(a.body);i&&i(a)}t===this.root&&i&&i(t)}}},{win:e6}=n(),{clamp:e9,defined:e4,isFunction:e7,fireEvent:it,pick:ie}=n();class ii{constructor(){this.box={},this.currentStep=0,this.initialRendering=!0,this.links=[],this.nodes=[],this.series=[],this.simulation=!1}static compose(t){e_.compose(t),e_.integrations.euler=e3,e_.integrations.verlet=e0,e_.layouts["reingold-fruchterman"]=ii}init(t){this.options=t,this.nodes=[],this.links=[],this.series=[],this.box={x:0,y:0,width:0,height:0},this.setInitialRendering(!0),this.integration=e_.integrations[t.integration],this.enableSimulation=t.enableSimulation,this.attractiveForce=ie(t.attractiveForce,this.integration.attractiveForceFunction),this.repulsiveForce=ie(t.repulsiveForce,this.integration.repulsiveForceFunction),this.approximation=t.approximation}updateSimulation(t){this.enableSimulation=ie(t,this.options.enableSimulation)}start(){let t=this.series,e=this.options;this.currentStep=0,this.forces=t[0]&&t[0].forces||[],this.chart=t[0]&&t[0].chart,this.initialRendering&&(this.initPositions(),t.forEach(function(t){t.finishedAnimating=!0,t.render()})),this.setK(),this.resetSimulation(e),this.enableSimulation&&this.step()}step(){let t=this.series;for(let t of(this.currentStep++,"barnes-hut"===this.approximation&&(this.createQuadTree(),this.quadTree.calculateMassAndCenter()),this.forces||[]))this[t+"Forces"](this.temperature);if(this.applyLimits(),this.temperature=this.coolDown(this.startTemperature,this.diffTemperature,this.currentStep),this.prevSystemTemperature=this.systemTemperature,this.systemTemperature=this.getSystemTemperature(),this.enableSimulation){for(let e of t)e.chart&&e.render();this.maxIterations--&&isFinite(this.temperature)&&!this.isStable()?(this.simulation&&e6.cancelAnimationFrame(this.simulation),this.simulation=e6.requestAnimationFrame(()=>this.step())):(this.simulation=!1,this.series.forEach(t=>{it(t,"afterSimulation")}))}}stop(){this.simulation&&e6.cancelAnimationFrame(this.simulation)}setArea(t,e,i,s){this.box={left:t,top:e,width:i,height:s}}setK(){this.k=this.options.linkLength||this.integration.getK(this)}addElementsToCollection(t,e){for(let i of t)-1===e.indexOf(i)&&e.push(i)}removeElementFromCollection(t,e){let i=e.indexOf(t);-1!==i&&e.splice(i,1)}clear(){this.nodes.length=0,this.links.length=0,this.series.length=0,this.resetSimulation()}resetSimulation(){this.forcedStop=!1,this.systemTemperature=0,this.setMaxIterations(),this.setTemperature(),this.setDiffTemperature()}restartSimulation(){this.simulation?this.resetSimulation():(this.setInitialRendering(!1),this.enableSimulation?this.start():this.setMaxIterations(1),this.chart&&this.chart.redraw(),this.setInitialRendering(!0))}setMaxIterations(t){this.maxIterations=ie(t,this.options.maxIterations)}setTemperature(){this.temperature=this.startTemperature=Math.sqrt(this.nodes.length)}setDiffTemperature(){this.diffTemperature=this.startTemperature/(this.options.maxIterations+1)}setInitialRendering(t){this.initialRendering=t}createQuadTree(){this.quadTree=new e8(this.box.left,this.box.top,this.box.width,this.box.height),this.quadTree.insertNodes(this.nodes)}initPositions(){let t=this.options.initialPositions;if(e7(t))for(let e of(t.call(this),this.nodes))e4(e.prevX)||(e.prevX=e.plotX),e4(e.prevY)||(e.prevY=e.plotY),e.dispX=0,e.dispY=0;else"circle"===t?this.setCircularPositions():this.setRandomPositions()}setCircularPositions(){let t,e=this.box,i=this.nodes,s=2*Math.PI/(i.length+1),a=i.filter(function(t){return 0===t.linksTo.length}),o={},r=this.options.initialPositionRadius,n=t=>{for(let e of t.linksFrom||[])o[e.toNode.id]||(o[e.toNode.id]=!0,l.push(e.toNode),n(e.toNode))},l=[];for(let t of a)l.push(t),n(t);if(l.length)for(let t of i)-1===l.indexOf(t)&&l.push(t);else l=i;for(let i=0,a=l.length;i<a;++i)(t=l[i]).plotX=t.prevX=ie(t.plotX,e.width/2+r*Math.cos(i*s)),t.plotY=t.prevY=ie(t.plotY,e.height/2+r*Math.sin(i*s)),t.dispX=0,t.dispY=0}setRandomPositions(){let t,e=this.box,i=this.nodes,s=i.length+1,a=t=>{let e=t*t/Math.PI;return e-Math.floor(e)};for(let o=0,r=i.length;o<r;++o)(t=i[o]).plotX=t.prevX=ie(t.plotX,e.width*a(o)),t.plotY=t.prevY=ie(t.plotY,e.height*a(s+o)),t.dispX=0,t.dispY=0}force(t,...e){this.integration[t].apply(this,e)}barycenterForces(){this.getBarycenter(),this.force("barycenter")}getBarycenter(){let t=0,e=0,i=0;for(let s of this.nodes)e+=s.plotX*s.mass,i+=s.plotY*s.mass,t+=s.mass;return this.barycenter={x:e,y:i,xFactor:e/t,yFactor:i/t},this.barycenter}barnesHutApproximation(t,e){let i,s,a=this.getDistXY(t,e),o=this.vectorLength(a);return t!==e&&0!==o&&(e.isInternal?e.boxSize/o<this.options.theta&&0!==o?(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o),i=!1):i=!0:(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o))),i}repulsiveForces(){if("barnes-hut"===this.approximation)for(let t of this.nodes)this.quadTree.visitNodeRecursive(null,e=>this.barnesHutApproximation(t,e));else{let t,e,i;for(let s of this.nodes)for(let a of this.nodes)s===a||s.fixedPosition||(i=this.getDistXY(s,a),0!==(e=this.vectorLength(i))&&(t=this.repulsiveForce(e,this.k),this.force("repulsive",s,t*a.mass,i,e)))}}attractiveForces(){let t,e,i;for(let s of this.links)s.fromNode&&s.toNode&&(t=this.getDistXY(s.fromNode,s.toNode),0!==(e=this.vectorLength(t))&&(i=this.attractiveForce(e,this.k),this.force("attractive",s,i,t,e)))}applyLimits(){for(let t of this.nodes)t.fixedPosition||(this.integration.integrate(this,t),this.applyLimitBox(t,this.box),t.dispX=0,t.dispY=0)}applyLimitBox(t,e){let i=t.radius;t.plotX=e9(t.plotX,e.left+i,e.width-i),t.plotY=e9(t.plotY,e.top+i,e.height-i)}coolDown(t,e,i){return t-e*i}isStable(){return 1e-5>Math.abs(this.systemTemperature-this.prevSystemTemperature)||this.temperature<=0}getSystemTemperature(){let t=0;for(let e of this.nodes)t+=e.temperature;return t}vectorLength(t){return Math.sqrt(t.x*t.x+t.y*t.y)}getDistR(t,e){let i=this.getDistXY(t,e);return this.vectorLength(i)}getDistXY(t,e){let i=t.plotX-e.plotX,s=t.plotY-e.plotY;return{x:i,y:s,absX:Math.abs(i),absY:Math.abs(s)}}}let is=ii,{addEvent:ia,defined:io,pick:ir}=n();function il(){let t=this.series,e=[];return t.forEach(t=>{t.parentNode&&t.parentNode.selected&&e.push(t.parentNode)}),e}function ih(){this.allDataPoints&&delete this.allDataPoints}class ip extends is{constructor(){super(...arguments),this.index=NaN,this.nodes=[],this.series=[]}static compose(t){is.compose(t),e_.integrations.packedbubble=e2,e_.layouts.packedbubble=ip;let e=t.prototype;e.getSelectedParentNodes||(ia(t,"beforeRedraw",ih),e.getSelectedParentNodes=il),e.allParentNodes||(e.allParentNodes=[])}beforeStep(){this.options.marker&&this.series.forEach(t=>{t&&t.calculateParentRadius()})}isStable(){let t=Math.abs(this.prevSystemTemperature-this.systemTemperature);return 1>Math.abs(10*this.systemTemperature/Math.sqrt(this.nodes.length))&&t<1e-5||this.temperature<=0}setCircularPositions(){let t=this.box,e=[...this.nodes,...this?.chart?.allParentNodes||[]],i=2*Math.PI/(e.length+1),s=this.options.initialPositionRadius,a,o,r=0;for(let n of e)this.resolveSplitSeries(n)&&!n.isParentNode?(a=n.series.parentNode.plotX,o=n.series.parentNode.plotY):(a=t.width/2,o=t.height/2),n.plotX=n.prevX=ir(n.plotX,a+s*Math.cos(n.index||r*i)),n.plotY=n.prevY=ir(n.plotY,o+s*Math.sin(n.index||r*i)),n.dispX=0,n.dispY=0,r++}repulsiveForces(){let{options:t,k:e}=this,{bubblePadding:i=0,seriesInteraction:s}=t,a=[...this.nodes,...this?.chart?.allParentNodes||[]];for(let t of a){let o=t.series,r=t.fixedPosition,n=(t.marker?.radius||0)+i;for(let i of(t.degree=t.mass,t.neighbours=0,a)){let a=i.series;if(t!==i&&!r&&(s||o===a)&&!(o===a&&(i.isParentNode||t.isParentNode))){let s,a=this.getDistXY(t,i),o=this.vectorLength(a)-(n+(i.marker?.radius||0));o<0&&(t.degree+=.01,s=this.repulsiveForce(-o/Math.sqrt(++t.neighbours),e,t,i)*i.mass),this.force("repulsive",t,s||0,a,i,o)}}}}resolveSplitSeries(t){let e=t.series?.options?.layoutAlgorithm?.splitSeries;return!io(e)&&t.series.chart?.options?.plotOptions?.packedbubble?.layoutAlgorithm?.splitSeries||e||!1}applyLimitBox(t,e){let i,s;this.resolveSplitSeries(t)&&!t.isParentNode&&this.options.parentNodeLimit&&(i=this.getDistXY(t,t.series.parentNode),(s=t.series.parentNodeRadius-t.marker.radius-this.vectorLength(i))<0&&s>-2*t.marker.radius&&(t.plotX-=.01*i.x,t.plotY-=.01*i.y)),super.applyLimitBox(t,e)}}e_.layouts.packedbubble=ip;let{merge:id,syncTimeout:ic}=n(),{animObject:iu}=n(),ig=t.default.SVGElement;var im=o.n(ig);let{deg2rad:ib}=n(),{addEvent:iy,merge:ix,uniqueKey:iP,defined:iv,extend:iM}=n();function iL(t,e){e=ix(!0,{enabled:!0,attributes:{dy:-5,startOffset:"50%",textAnchor:"middle"}},e);let i=this.renderer.url,s=this.text||this,a=s.textPath,{attributes:o,enabled:r}=e;if(t=t||a&&a.path,a&&a.undo(),t&&r){let e=iy(s,"afterModifyTree",e=>{if(t&&r){let a=t.attr("id");a||t.attr("id",a=iP());let r={x:0,y:0};iv(o.dx)&&(r.dx=o.dx,delete o.dx),iv(o.dy)&&(r.dy=o.dy,delete o.dy),s.attr(r),this.attr({transform:""}),this.box&&(this.box=this.box.destroy());let n=e.nodes.slice(0);e.nodes.length=0,e.nodes[0]={tagName:"textPath",attributes:iM(o,{"text-anchor":o.textAnchor,href:`${i}#${a}`}),children:n}}});s.textPath={path:t,undo:e}}else s.attr({dx:0,dy:0}),delete s.textPath;return this.added&&(s.textCache="",this.renderer.buildText(s)),this}function ik(t){let e=t.bBox,i=this.element?.querySelector("textPath");if(i){let t=[],{b:s,h:a}=this.renderer.fontMetrics(this.element),o=a-s,r=RegExp('(<tspan>|<tspan(?!\\sclass="highcharts-br")[^>]*>|<\\/tspan>)',"g"),n=i.innerHTML.replace(r,"").split(/<tspan class="highcharts-br"[^>]*>/),l=n.length,h=(t,e)=>{let{x:a,y:r}=e,n=(i.getRotationOfChar(t)-90)*ib,l=Math.cos(n),h=Math.sin(n);return[[a-o*l,r-o*h],[a+s*l,r+s*h]]};for(let e=0,s=0;s<l;s++){let a=n[s].length;for(let o=0;o<a;o+=5)try{let a=e+o+s,[r,n]=h(a,i.getStartPositionOfChar(a));0===o?(t.push(n),t.push(r)):(0===s&&t.unshift(n),s===l-1&&t.push(r))}catch(t){break}e+=a-1;try{let a=e+s,o=i.getEndPositionOfChar(a),[r,n]=h(a,o);t.unshift(n),t.unshift(r)}catch(t){break}}t.length&&t.push(t[0].slice()),e.polygon=t}return e}function iw(t){let e=t.labelOptions,i=t.point,s=e[i.formatPrefix+"TextPath"]||e.textPath;s&&!e.useHTML&&(this.setTextPath(i.getDataLabelPath?.(this)||i.graphic,s),i.dataLabelPath&&!s.enabled&&(i.dataLabelPath=i.dataLabelPath.destroy()))}let{parse:iA}=eR(),{noop:iS}=n(),{series:{prototype:iN},seriesTypes:{bubble:iT}}=h(),{initDataLabels:iC,initDataLabelsDefer:iX}={initDataLabels:function(){let t=this.options.dataLabels;if(!this.dataLabelsGroup){let e=this.initDataLabelsGroup();return!this.chart.styledMode&&t?.style&&e.css(t.style),e.attr({opacity:0}),this.visible&&e.show(),e}return this.dataLabelsGroup.attr(id({opacity:1},this.getPlotBox("data-labels"))),this.dataLabelsGroup},initDataLabelsDefer:function(){let t=this.options.dataLabels;t?.defer&&this.options.layoutAlgorithm?.enableSimulation?ic(()=>{this.deferDataLabels=!1},t?iu(t.animation).defer:0):this.deferDataLabels=!1}},{addEvent:iY,clamp:iI,defined:iR,extend:iE,fireEvent:iD,isArray:iz,isNumber:iO,merge:iB,pick:iW}=n();({compose:function(t){iy(t,"afterGetBBox",ik),iy(t,"beforeAddingDataLabel",iw);let e=t.prototype;e.setTextPath||(e.setTextPath=iL)}}).compose(im());class iF extends iT{constructor(){super(...arguments),this.parentNodeMass=0,this.deferDataLabels=!0}static compose(t,e,i){iT.compose(t,e,i),eB.compose(e),ip.compose(e)}accumulateAllPoints(){let t=this.chart,e=[];for(let i of t.series)if(i.is("packedbubble")&&i.reserveSpace()){let t=i.getColumn("value");for(let s=0;s<t.length;s++)e.push([null,null,t[s],i.index,s,{id:s,marker:{radius:0}}])}return e}addLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.options.chart,s=this.chart.graphLayoutsStorage,a=this.chart.graphLayoutsLookup,o;s||(this.chart.graphLayoutsStorage=s={},this.chart.graphLayoutsLookup=a=[]),(o=s[e])||(t.enableSimulation=iR(i.forExport)?!i.forExport:t.enableSimulation,s[e]=o=new e_.layouts[e],o.init(t),a.splice(o.index,0,o)),this.layout=o,this.points.forEach(t=>{t.mass=2,t.degree=1,t.collisionNmb=1}),o.setArea(0,0,this.chart.plotWidth,this.chart.plotHeight),o.addElementsToCollection([this],o.series),o.addElementsToCollection(this.points,o.nodes)}addSeriesLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.graphLayoutsStorage,s=this.chart.graphLayoutsLookup,a=iB(t,t.parentNodeOptions,{enableSimulation:this.layout.options.enableSimulation}),o=i[e+"-series"];o||(i[e+"-series"]=o=new e_.layouts[e],o.init(a),s.splice(o.index,0,o)),this.parentNodeLayout=o,this.createParentNodes()}calculateParentRadius(){let t=this.seriesBox();this.parentNodeRadius=iI(Math.sqrt(2*this.parentNodeMass/Math.PI)+20,20,t?Math.max(Math.sqrt(Math.pow(t.width,2)+Math.pow(t.height,2))/2+20,20):Math.sqrt(2*this.parentNodeMass/Math.PI)+20),this.parentNode&&(this.parentNode.marker.radius=this.parentNode.radius=this.parentNodeRadius)}calculateZExtremes(){let t=this.chart.series,e=this.options.zMin,i=this.options.zMax,s=1/0,a=-1/0;return e&&i?[e,i]:(t.forEach(t=>{t.getColumn("value").forEach(t=>{iR(t)&&(t>a&&(a=t),t<s&&(s=t))})}),[e=iW(e,s),i=iW(i,a)])}checkOverlap(t,e){let i=t[0]-e[0],s=t[1]-e[1];return Math.sqrt(i*i+s*s)-Math.abs(t[2]+e[2])<-.001}createParentNodes(){let t=this.pointClass,e=this.chart,i=this.parentNodeLayout,s=this.layout.options,a,o=this.parentNode,r={radius:this.parentNodeRadius,lineColor:this.color,fillColor:iA(this.color).brighten(.4).get()};s.parentNodeOptions&&(r=iB(s.parentNodeOptions.marker||{},r)),this.parentNodeMass=0,this.points.forEach(t=>{this.parentNodeMass+=Math.PI*Math.pow(t.marker.radius,2)}),this.calculateParentRadius(),i.nodes.forEach(t=>{t.seriesIndex===this.index&&(a=!0)}),i.setArea(0,0,e.plotWidth,e.plotHeight),a||(o||(o=new t(this,{mass:this.parentNodeRadius/2,marker:r,dataLabels:{inside:!1},states:{normal:{marker:r},hover:{marker:r}},dataLabelOnNull:!0,degree:this.parentNodeRadius,isParentNode:!0,seriesIndex:this.index}),this.chart.allParentNodes.push(o)),this.parentNode&&(o.plotX=this.parentNode.plotX,o.plotY=this.parentNode.plotY),this.parentNode=o,i.addElementsToCollection([this],i.series),i.addElementsToCollection([o],i.nodes))}deferLayout(){let t=this.options.layoutAlgorithm;this.visible&&(this.addLayout(),t.splitSeries&&this.addSeriesLayout())}destroy(){this.chart.graphLayoutsLookup&&this.chart.graphLayoutsLookup.forEach(t=>{t.removeElementFromCollection(this,t.series)},this),this.parentNode&&this.parentNodeLayout&&(this.parentNodeLayout.removeElementFromCollection(this.parentNode,this.parentNodeLayout.nodes),this.parentNode.dataLabel&&(this.parentNode.dataLabel=this.parentNode.dataLabel.destroy())),iN.destroy.apply(this,arguments)}drawDataLabels(){!this.deferDataLabels&&(iN.drawDataLabels.call(this,this.points),this.parentNode&&(this.parentNode.formatPrefix="parentNode",iN.drawDataLabels.call(this,[this.parentNode])))}drawGraph(){if(!this.layout||!this.layout.options.splitSeries)return;let t=this.chart,e=this.layout.options.parentNodeOptions.marker,i={fill:e.fillColor||iA(this.color).brighten(.4).get(),opacity:e.fillOpacity,stroke:e.lineColor||this.color,"stroke-width":iW(e.lineWidth,this.options.lineWidth)},s={};this.parentNodesGroup=this.plotGroup("parentNodesGroup","parentNode",this.visible?"inherit":"hidden",.1,t.seriesGroup),this.group?.attr({zIndex:2}),this.calculateParentRadius(),this.parentNode&&iR(this.parentNode.plotX)&&iR(this.parentNode.plotY)&&iR(this.parentNodeRadius)&&(s=iB({x:this.parentNode.plotX-this.parentNodeRadius,y:this.parentNode.plotY-this.parentNodeRadius,width:2*this.parentNodeRadius,height:2*this.parentNodeRadius},i),this.parentNode.graphic||(this.graph=this.parentNode.graphic=t.renderer.symbol(i.symbol).add(this.parentNodesGroup)),this.parentNode.graphic.attr(s))}drawTracker(){let t,e=this.parentNode;super.drawTracker(),e&&(t=iz(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[],e.graphic&&(e.graphic.element.point=e),t.forEach(t=>{(t.div||t.element).point=e}))}getPointRadius(){let t,e,i,s,a=this.chart,o=a.plotWidth,r=a.plotHeight,n=this.options,l=n.useSimulation,h=Math.min(o,r),p={},d=[],c=a.allDataPoints||[],u=c.length;["minSize","maxSize"].forEach(t=>{let e=parseInt(n[t],10),i=/%$/.test(n[t]);p[t]=i?h*e/100:e*Math.sqrt(u)}),a.minRadius=t=p.minSize/Math.sqrt(u),a.maxRadius=e=p.maxSize/Math.sqrt(u);let g=l?this.calculateZExtremes():[t,e];c.forEach((a,o)=>{i=l?iI(a[2],g[0],g[1]):a[2],0===(s=this.getRadius(g[0],g[1],t,e,i))&&(s=null),c[o][2]=s,d.push(s)}),this.radii=d}init(){return iN.init.apply(this,arguments),iX.call(this),this.eventsToUnbind.push(iY(this,"updatedData",function(){this.chart.series.forEach(t=>{t.type===this.type&&(t.isDirty=!0)},this)})),this}onMouseUp(t){if(t.fixedPosition&&!t.removed){let e,i=this.layout,s=this.parentNodeLayout;!t.isParentNode&&s&&i.options.dragBetweenSeries&&s.nodes.forEach(s=>{t&&t.marker&&s!==t.series.parentNode&&(e=i.getDistXY(t,s),i.vectorLength(e)-s.marker.radius-t.marker.radius<0&&(s.series.addPoint(iB(t.options,{plotX:t.plotX,plotY:t.plotY}),!1),i.removeElementFromCollection(t,i.nodes),t.remove()))}),eB.onMouseUp.apply(this,arguments)}}placeBubbles(t){let e=this.checkOverlap,i=this.positionBubble,s=[],a=1,o=0,r=0,n,l=[],h,p=t.sort((t,e)=>e[2]-t[2]);if(p.length){if(s.push([[0,0,p[0][2],p[0][3],p[0][4]]]),p.length>1)for(s.push([[0,0-p[1][2]-p[0][2],p[1][2],p[1][3],p[1][4]]]),h=2;h<p.length;h++)p[h][2]=p[h][2]||1,e(n=i(s[a][o],s[a-1][r],p[h]),s[a][0])?(s.push([]),r=0,s[a+1].push(i(s[a][o],s[a][0],p[h])),a++,o=0):a>1&&s[a-1][r+1]&&e(n,s[a-1][r+1])?(r++,s[a].push(i(s[a][o],s[a-1][r],p[h])),o++):(o++,s[a].push(n));this.chart.stages=s,this.chart.rawPositions=[].concat.apply([],s),this.resizeRadius(),l=this.chart.rawPositions}return l}pointAttribs(t,e){let i=this.options,s=t&&t.isParentNode,a=i.marker;s&&i.layoutAlgorithm&&i.layoutAlgorithm.parentNodeOptions&&(a=i.layoutAlgorithm.parentNodeOptions.marker);let o=a.fillOpacity,r=iN.pointAttribs.call(this,t,e);return 1!==o&&(r["fill-opacity"]=o),r}positionBubble(t,e,i){let s=Math.asin,a=Math.acos,o=Math.pow,r=Math.abs,n=(0,Math.sqrt)(o(t[0]-e[0],2)+o(t[1]-e[1],2)),l=a((o(n,2)+o(i[2]+e[2],2)-o(i[2]+t[2],2))/(2*(i[2]+e[2])*n)),h=s(r(t[0]-e[0])/n),p=(t[1]-e[1]<0?0:Math.PI)+l+h*((t[0]-e[0])*(t[1]-e[1])<0?1:-1),d=Math.cos(p),c=Math.sin(p);return[e[0]+(e[2]+i[2])*c,e[1]-(e[2]+i[2])*d,i[2],i[3],i[4]]}render(){let t=[];iN.render.apply(this,arguments),!this.options.dataLabels.allowOverlap&&(this.data.forEach(e=>{iz(e.dataLabels)&&e.dataLabels.forEach(e=>{t.push(e)})}),this.options.useSimulation&&this.chart.hideOverlappingLabels(t))}resizeRadius(){let t,e,i,s,a,o=this.chart,r=o.rawPositions,n=Math.min,l=Math.max,h=o.plotLeft,p=o.plotTop,d=o.plotHeight,c=o.plotWidth;for(let o of(t=i=Number.POSITIVE_INFINITY,e=s=Number.NEGATIVE_INFINITY,r))a=o[2],t=n(t,o[0]-a),e=l(e,o[0]+a),i=n(i,o[1]-a),s=l(s,o[1]+a);let u=[e-t,s-i],g=[(c-h)/u[0],(d-p)/u[1]],f=n.apply([],g);if(Math.abs(f-1)>1e-10){for(let t of r)t[2]*=f;this.placeBubbles(r)}else o.diffY=d/2+p-i-(s-i)/2,o.diffX=c/2+h-t-(e-t)/2}seriesBox(){let t,e=this.chart,i=this.data,s=Math.max,a=Math.min,o=[e.plotLeft,e.plotLeft+e.plotWidth,e.plotTop,e.plotTop+e.plotHeight];return i.forEach(e=>{iR(e.plotX)&&iR(e.plotY)&&e.marker.radius&&(t=e.marker.radius,o[0]=a(o[0],e.plotX-t),o[1]=s(o[1],e.plotX+t),o[2]=a(o[2],e.plotY-t),o[3]=s(o[3],e.plotY+t))}),iO(o.width/o.height)?o:null}setVisible(){let t=this;iN.setVisible.apply(t,arguments),t.parentNodeLayout&&t.graph?t.visible?(t.graph.show(),t.parentNode.dataLabel&&t.parentNode.dataLabel.show()):(t.graph.hide(),t.parentNodeLayout.removeElementFromCollection(t.parentNode,t.parentNodeLayout.nodes),t.parentNode.dataLabel&&t.parentNode.dataLabel.hide()):t.layout&&(t.visible?t.layout.addElementsToCollection(t.points,t.layout.nodes):t.points.forEach(e=>{t.layout.removeElementFromCollection(e,t.layout.nodes)}))}translate(){let t,e,i,s=this.chart,a=this.data,o=this.index,r=this.options.useSimulation;for(let n of(this.generatePoints(),iR(s.allDataPoints)||(s.allDataPoints=this.accumulateAllPoints(),this.getPointRadius()),r?i=s.allDataPoints:(i=this.placeBubbles(s.allDataPoints),this.options.draggable=!1),i))n[3]===o&&(t=a[n[4]],e=iW(n[2],void 0),r||(t.plotX=n[0]-s.plotLeft+s.diffX,t.plotY=n[1]-s.plotTop+s.diffY),iO(e)&&(t.marker=iE(t.marker,{radius:e,width:2*e,height:2*e}),t.radius=e));r&&this.deferLayout(),iD(this,"afterTranslate")}}iF.defaultOptions=iB(iT.defaultOptions,{minSize:"10%",maxSize:"50%",sizeBy:"area",zoneAxis:"y",crisp:!1,tooltip:{pointFormat:"Value: {point.value}"},draggable:!0,useSimulation:!0,parentNode:{allowPointSelect:!1},dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{value:e}=this.point;return eJ(e)?t(e,-1):""},parentNodeFormatter:function(){return this.name||""},parentNodeTextPath:{enabled:!0},padding:0,style:{transition:"opacity 2000ms"}},layoutAlgorithm:{initialPositions:"circle",initialPositionRadius:20,bubblePadding:5,parentNodeLimit:!1,seriesInteraction:!0,dragBetweenSeries:!1,parentNodeOptions:{maxIterations:400,gravitationalConstant:.03,maxSpeed:50,initialPositionRadius:100,seriesInteraction:!0,marker:{fillColor:null,fillOpacity:1,lineWidth:null,lineColor:null,symbol:"circle"}},enableSimulation:!0,type:"packedbubble",integration:"packedbubble",maxIterations:1e3,splitSeries:!1,maxSpeed:5,gravitationalConstant:.01,friction:-.981},stickyTracking:!1}),iE(iF.prototype,{pointClass:eQ,axisTypes:[],directTouch:!0,forces:["barycenter","repulsive"],hasDraggableNodes:!0,invertible:!1,isCartesian:!1,noSharedTooltip:!0,pointArrayMap:["value"],pointValKey:"value",requireSorting:!1,trackerGroups:["group","dataLabelsGroup","parentNodesGroup"],initDataLabels:iC,alignDataLabel:iN.alignDataLabel,indexateNodes:iS,onMouseDown:eB.onMouseDown,onMouseMove:eB.onMouseMove,redrawHalo:eB.redrawHalo,searchPoint:iS}),h().registerSeriesType("packedbubble",iF);let{noop:iH}=n(),{area:iG,line:iq,scatter:iV}=h().seriesTypes,{extend:iU,merge:iK}=n();class i_ extends iV{getGraphPath(){let t=iq.prototype.getGraphPath.call(this),e=t.length+1;for(;e--;)(e===t.length||"M"===t[e][0])&&e>0&&t.splice(e,0,["Z"]);return this.areaPath=t,t}drawGraph(){this.options.fillColor=this.color,iG.prototype.drawGraph.call(this)}}i_.defaultOptions=iK(iV.defaultOptions,{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0,legendSymbol:"rectangle"}),iU(i_.prototype,{type:"polygon",drawTracker:iq.prototype.drawTracker,setStackedPoints:iH}),h().registerSeriesType("polygon",i_);let iZ={circular:{gridLineWidth:1,labels:{align:void 0,x:0,y:void 0},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},radial:{gridLineInterpolation:"circle",gridLineWidth:1,labels:{align:"right",padding:5,x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},radialGauge:{endOnTick:!1,gridLineWidth:0,labels:{align:"center",distance:-25,x:0,y:void 0},lineWidth:1,minorGridLineWidth:0,minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,startOnTick:!1,tickLength:10,tickPixelInterval:100,tickPosition:"inside",tickWidth:2,title:{rotation:0,text:""},zIndex:2}},{defaultOptions:ij}=n(),{composed:i$,noop:iQ}=n(),{addEvent:iJ,correctFloat:i0,defined:i1,extend:i2,fireEvent:i3,isObject:i5,merge:i8,pick:i6,pushUnique:i9,relativeLength:i4,splat:i7,wrap:st}=n();!function(t){function e(){this.autoConnect=this.isCircular&&void 0===i6(this.userMax,this.options.max)&&i0(this.endAngleRad-this.startAngleRad)===i0(2*Math.PI),!this.isCircular&&this.chart.inverted&&this.max++,this.autoConnect&&(this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0)}function i(){return()=>{if(this.isRadial&&this.tickPositions&&this.options.labels&&!0!==this.options.labels.allowOverlap)return this.tickPositions.map(t=>this.ticks[t]?.label).filter(t=>!!t)}}function s(){return iQ}function a(t,e,i){let s=this.pane.center,a=t.value,o,r,n;return this.isCircular?(i1(a)?t.point&&(t.point.shapeArgs||{}).start&&(a=this.chart.inverted?this.translate(t.point.rectPlotY,!0):t.point.x):(r=t.chartX||0,n=t.chartY||0,a=this.translate(Math.atan2(n-i,r-e)-this.startAngleRad,!0)),r=(o=this.getPosition(a)).x,n=o.y):(i1(a)||(r=t.chartX,n=t.chartY),i1(r)&&i1(n)&&(i=s[1]+this.chart.plotTop,a=this.translate(Math.min(Math.sqrt(Math.pow(r-e,2)+Math.pow(n-i,2)),s[2]/2)-s[3]/2,!0))),[a,r||0,n||0]}function o(t,e,i){let s=this.pane.center,a=this.chart,o=this.left||0,r=this.top||0,n,l=i6(e,s[2]/2-this.offset),h;return void 0===i&&(i=this.horiz?0:this.center&&-this.center[3]/2),i&&(l+=i),this.isCircular||void 0!==e?((h=this.chart.renderer.symbols.arc(o+s[0],r+s[1],l,l,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0})).xBounds=[o+s[0]],h.yBounds=[r+s[1]-l]):(n=this.postTranslate(this.angleRad,l),h=[["M",this.center[0]+a.plotLeft,this.center[1]+a.plotTop],["L",n.x,n.y]]),h}function r(){this.constructor.prototype.getOffset.call(this),this.chart.axisOffset[this.side]=0}function l(t,e,i){let s=this.chart,a=t=>{if("string"==typeof t){let e=parseInt(t,10);return d.test(t)&&(e=e*n/100),e}return t},o=this.center,r=this.startAngleRad,n=o[2]/2,l=Math.min(this.offset,0),h=this.left||0,p=this.top||0,d=/%$/,c=this.isCircular,u,g,f,m,b,y,x=i6(a(i.outerRadius),n),P=a(i.innerRadius),v=i6(a(i.thickness),10);if("polygon"===this.options.gridLineInterpolation)y=this.getPlotLinePath({value:t}).concat(this.getPlotLinePath({value:e,reverse:!0}));else{t=Math.max(t,this.min),e=Math.min(e,this.max);let a=this.translate(t),n=this.translate(e);c||(x=a||0,P=n||0),"circle"!==i.shape&&c?(u=r+(a||0),g=r+(n||0)):(u=-Math.PI/2,g=1.5*Math.PI,b=!0),x-=l,v-=l,y=s.renderer.symbols.arc(h+o[0],p+o[1],x,x,{start:Math.min(u,g),end:Math.max(u,g),innerR:i6(P,x-v),open:b,borderRadius:i.borderRadius}),c&&(f=(g+u)/2,m=h+o[0]+o[2]/2*Math.cos(f),y.xBounds=f>-Math.PI/2&&f<Math.PI/2?[m,s.plotWidth]:[0,m],y.yBounds=[p+o[1]+o[2]/2*Math.sin(f)],y.yBounds[0]+=f>-Math.PI&&f<0||f>Math.PI?-10:10)}return y}function h(t){let e=this.pane.center,i=this.chart,s=i.inverted,a=t.reverse,o=this.pane.options.background,r=o?i7(o)[0]:{},n=r.innerRadius||"0%",l=r.outerRadius||"100%",h=e[0]+i.plotLeft,p=e[1]+i.plotTop,d=this.height,c=t.isCrosshair,u=e[3]/2,g=t.value,f,m,b,y,x,P,v,M,L,k=this.getPosition(g),w=k.x,A=k.y;if(c&&(g=(M=this.getCrosshairPosition(t,h,p))[0],w=M[1],A=M[2]),this.isCircular)m=Math.sqrt(Math.pow(w-h,2)+Math.pow(A-p,2)),b="string"==typeof n?i4(n,1):n/m,y="string"==typeof l?i4(l,1):l/m,e&&u&&(b<(f=u/m)&&(b=f),y<f&&(y=f)),L=[["M",h+b*(w-h),p-b*(p-A)],["L",w-(1-y)*(w-h),A+(1-y)*(p-A)]];else if((g=this.translate(g))&&(g<0||g>d)&&(g=0),"circle"===this.options.gridLineInterpolation)L=this.getLinePath(0,g,u);else if(L=[],i[s?"yAxis":"xAxis"].forEach(t=>{t.pane===this.pane&&(x=t)}),x){v=x.tickPositions,x.autoConnect&&(v=v.concat([v[0]])),a&&(v=v.slice().reverse()),g&&(g+=u);for(let t=0;t<v.length;t++)P=x.getPosition(v[t],g),L.push(t?["L",P.x,P.y]:["M",P.x,P.y])}return L}function p(t,e){let i=this.translate(t);return this.postTranslate(this.isCircular?i:this.angleRad,i6(this.isCircular?e:i<0?0:i,this.center[2]/2)-this.offset)}function d(){let t=this.center,e=this.chart,i=this.options.title;return{x:e.plotLeft+t[0]+(i.x||0),y:e.plotTop+t[1]-({high:.5,middle:.25,low:0})[i.align]*t[2]+(i.y||0)}}function c(t){t.beforeSetTickPositions=e,t.createLabelCollector=i,t.getCrosshairPosition=a,t.getLinePath=o,t.getOffset=r,t.getPlotBandPath=l,t.getPlotLinePath=h,t.getPosition=p,t.getTitlePosition=d,t.postTranslate=v,t.setAxisSize=L,t.setAxisTranslation=k,t.setOptions=w}function u(){let t=this.chart,e=this.options,i=t.angular&&this.isXAxis,s=this.pane,a=s?.options;if(!i&&s&&(t.angular||t.polar)){let t=2*Math.PI,i=(i6(a.startAngle,0)-90)*Math.PI/180,s=(i6(a.endAngle,i6(a.startAngle,0)+360)-90)*Math.PI/180;this.angleRad=(e.angle||0)*Math.PI/180,this.startAngleRad=i,this.endAngleRad=s,this.offset=e.offset||0;let o=(i%t+t)%t,r=(s%t+t)%t;o>Math.PI&&(o-=t),r>Math.PI&&(r-=t),this.normalizedStartAngleRad=o,this.normalizedEndAngleRad=r}}function g(t){this.isRadial&&(t.align=void 0,t.preventDefault())}function f(){if(this.chart?.labelCollectors){let t=this.labelCollector?this.chart.labelCollectors.indexOf(this.labelCollector):-1;t>=0&&this.chart.labelCollectors.splice(t,1)}}function m(t){let e,i=this.chart,a=i.angular,o=i.polar,r=this.isXAxis,n=this.coll,l=t.userOptions.pane||0,h=this.pane=i.pane&&i.pane[l];if("colorAxis"===n){this.isRadial=!1;return}if(a){if(a&&r)this.isHidden=!0,this.createLabelCollector=s,this.getOffset=iQ,this.redraw=M,this.render=M,this.setScale=iQ,this.setCategories=iQ,this.setTitle=iQ;else c(this);e=!r}else o&&(c(this),e=this.horiz);a||o?(this.isRadial=!0,this.labelCollector||(this.labelCollector=this.createLabelCollector()),this.labelCollector&&i.labelCollectors.push(this.labelCollector)):this.isRadial=!1,h&&e&&(h.axis=this),this.isCircular=e}function b(){this.isRadial&&this.beforeSetTickPositions()}function y(t){let e=this.label;if(!e)return;let i=this.axis,s=e.getBBox(),a=i.options.labels,o=(i.translate(this.pos)+i.startAngleRad+Math.PI/2)/Math.PI*180%360,r=Math.round(o),n=i1(a.y)?0:-(.3*s.height),l=a.y,h,p=20,d=a.align,c="end",u=r<0?r+360:r,g=u,f=0,m=0;i.isRadial&&(h=i.getPosition(this.pos,i.center[2]/2+i4(i6(a.distance,-25),i.center[2]/2,-i.center[2]/2)),"auto"===a.rotation?e.attr({rotation:o}):i1(l)||(l=i.chart.renderer.fontMetrics(e).b-s.height/2),i1(d)||(i.isCircular?(s.width>i.len*i.tickInterval/(i.max-i.min)&&(p=0),d=o>p&&o<180-p?"left":o>180+p&&o<360-p?"right":"center"):d="center",e.attr({align:d})),"auto"===d&&2===i.tickPositions.length&&i.isCircular&&(u>90&&u<180?u=180-u:u>270&&u<=360&&(u=540-u),g>180&&g<=360&&(g=360-g),(i.pane.options.startAngle===r||i.pane.options.startAngle===r+360||i.pane.options.startAngle===r-360)&&(c="start"),d=r>=-90&&r<=90||r>=-360&&r<=-270||r>=270&&r<=360?"start"===c?"right":"left":"start"===c?"left":"right",g>70&&g<110&&(d="center"),u<15||u>=180&&u<195?f=.3*s.height:u>=15&&u<=35?f="start"===c?0:.75*s.height:u>=195&&u<=215?f="start"===c?.75*s.height:0:u>35&&u<=90?f="start"===c?-(.25*s.height):s.height:u>215&&u<=270&&(f="start"===c?s.height:-(.25*s.height)),g<15?m="start"===c?-(.15*s.height):.15*s.height:g>165&&g<=180&&(m="start"===c?.15*s.height:-(.15*s.height)),e.attr({align:d}),e.translate(m,f+n)),t.pos.x=h.x+(a.x||0),t.pos.y=h.y+(l||0))}function x(t){this.axis.getPosition&&i2(t.pos,this.axis.getPosition(this.pos))}function P({options:e}){e.xAxis&&i8(!0,t.radialDefaultOptions.circular,e.xAxis),e.yAxis&&i8(!0,t.radialDefaultOptions.radialGauge,e.yAxis)}function v(t,e){let i=this.chart,s=this.center;return t=this.startAngleRad+t,{x:i.plotLeft+s[0]+Math.cos(t)*e,y:i.plotTop+s[1]+Math.sin(t)*e}}function M(){this.isDirty=!1}function L(){let t,e;this.constructor.prototype.setAxisSize.call(this),this.isRadial&&(this.pane.updateCenter(this),t=this.center=this.pane.center.slice(),this.isCircular?this.sector=this.endAngleRad-this.startAngleRad:(e=this.postTranslate(this.angleRad,t[3]/2),t[0]=e.x-this.chart.plotLeft,t[1]=e.y-this.chart.plotTop),this.len=this.width=this.height=(t[2]-t[3])*i6(this.sector,1)/2)}function k(){this.constructor.prototype.setAxisTranslation.call(this),this.center&&(this.isCircular?this.transA=(this.endAngleRad-this.startAngleRad)/(this.max-this.min||1):this.transA=(this.center[2]-this.center[3])/2/(this.max-this.min||1),this.isXAxis?this.minPixelPadding=this.transA*this.minPointOffset:this.minPixelPadding=0)}function w(e){let{coll:i}=this,{angular:s,inverted:a,polar:o}=this.chart,r={};s?this.isXAxis||(r=i8(ij.yAxis,t.radialDefaultOptions.radialGauge)):o&&(r=this.horiz?i8(ij.xAxis,t.radialDefaultOptions.circular):i8("xAxis"===i?ij.xAxis:ij.yAxis,t.radialDefaultOptions.radial)),a&&"yAxis"===i&&(r.stackLabels=i5(ij.yAxis,!0)?ij.yAxis.stackLabels:{},r.reversedStacks=!0);let n=this.options=i8(r,e);n.plotBands||(n.plotBands=[]),i3(this,"afterSetOptions")}function A(t,e,i,s,a,o,r){let n,l,h=this.axis;return h.isRadial?["M",e,i,"L",(n=h.getPosition(this.pos,h.center[2]/2+s)).x,n.y]:t.call(this,e,i,s,a,o,r)}t.radialDefaultOptions=i8(iZ),t.compose=function(t,e){return i9(i$,"Axis.Radial")&&(iJ(t,"afterInit",u),iJ(t,"autoLabelAlign",g),iJ(t,"destroy",f),iJ(t,"init",m),iJ(t,"initialAxisTranslation",b),iJ(e,"afterGetLabelPosition",y),iJ(e,"afterGetPosition",x),iJ(n(),"setOptions",P),st(e.prototype,"getMarkPath",A)),t}}(s||(s={}));let se=s,{animObject:si}=n(),{composed:ss}=n(),{addEvent:sa,defined:so,find:sr,isNumber:sn,merge:sl,pick:sh,pushUnique:sp,relativeLength:sd,splat:sc,uniqueKey:su,wrap:sg}=n();function sf(){(this.pane||[]).forEach(t=>{t.render()})}function sm(t){let e=t.args[0].xAxis,i=t.args[0].yAxis,s=t.args[0].chart;e&&i&&("polygon"===i.gridLineInterpolation?(e.startOnTick=!0,e.endOnTick=!0):"polygon"===e.gridLineInterpolation&&s.inverted&&(i.startOnTick=!0,i.endOnTick=!0))}function sb(){this.pane||(this.pane=[]),this.options.pane=sc(this.options.pane||{}),sc(this.userOptions.pane||{}).forEach(t=>{new R(t,this)},this)}function sy(t){let e=t.args.marker,i=this.chart.xAxis[0],s=this.chart.yAxis[0],a=this.chart.inverted,o=a?s:i,r=a?i:s;if(this.chart.polar){t.preventDefault();let i=(e.attr?e.attr("start"):e.start)-o.startAngleRad,s=e.attr?e.attr("r"):e.r,a=(e.attr?e.attr("end"):e.end)-o.startAngleRad,n=e.attr?e.attr("innerR"):e.innerR;t.result.x=i+o.pos,t.result.width=a-i,t.result.y=r.len+r.pos-s,t.result.height=s-n}}function sx(t){let e=this.chart;if(e.polar&&e.hoverPane&&e.hoverPane.axis){t.preventDefault();let i=e.hoverPane.center,s=e.mouseDownX||0,a=e.mouseDownY||0,o=t.args.chartY,r=t.args.chartX,n=2*Math.PI,l=e.hoverPane.axis.startAngleRad,h=e.hoverPane.axis.endAngleRad,p=e.inverted?e.xAxis[0]:e.yAxis[0],d={},c="arc";if(d.x=i[0]+e.plotLeft,d.y=i[1]+e.plotTop,this.zoomHor){let t=l>0?h-l:Math.abs(l)+Math.abs(h),u=Math.atan2(a-e.plotTop-i[1],s-e.plotLeft-i[0])-l,g=Math.atan2(o-e.plotTop-i[1],r-e.plotLeft-i[0])-l;d.r=i[2]/2,d.innerR=i[3]/2,u<=0&&(u+=n),g<=0&&(g+=n),g<u&&(g=[u,u=g][0]),t<n&&l+g>h+(n-t)/2&&(g=u,u=l<=0?l:0);let f=d.start=Math.max(u+l,l),m=d.end=Math.min(g+l,h);if("polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,s=f-t.startAngleRad+t.pos,a=p.getPlotLinePath({value:p.max}),o=t.toValue(s),r=t.toValue(s+(m-f));if(o<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();o=i-(e-o)}if(r<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();r=i-(e-r)}r<o&&(r=[o,o=r][0]),(a=sL(a,o,r,t)).push(["L",i[0]+e.plotLeft,e.plotTop+i[1]]),d.d=a,c="path"}}if(this.zoomVert){let t=e.inverted?e.xAxis[0]:e.yAxis[0],n=Math.sqrt(Math.pow(s-e.plotLeft-i[0],2)+Math.pow(a-e.plotTop-i[1],2)),p=Math.sqrt(Math.pow(r-e.plotLeft-i[0],2)+Math.pow(o-e.plotTop-i[1],2));if(p<n&&(n=[p,p=n][0]),p>i[2]/2&&(p=i[2]/2),n<i[3]/2&&(n=i[3]/2),this.zoomHor||(d.start=l,d.end=h),d.r=p,d.innerR=n,"polygon"===t.options.gridLineInterpolation){let e=t.toValue(t.len+t.pos-n),i=t.toValue(t.len+t.pos-p);d.d=t.getPlotLinePath({value:i}).concat(t.getPlotLinePath({value:e,reverse:!0})),c="path"}}if(this.zoomHor&&this.zoomVert&&"polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,i=d.start||0,s=d.end||0,a=i-t.startAngleRad+t.pos,o=t.toValue(a),r=t.toValue(a+(s-i));if(d.d instanceof Array){let t=d.d.slice(0,d.d.length/2),i=d.d.slice(d.d.length/2,d.d.length);i=[...i].reverse();let s=e.hoverPane.axis;t=sL(t,o,r,s),(i=sL(i,o,r,s))&&(i[0][0]="L"),i=[...i].reverse(),d.d=t.concat(i),c="path"}}t.attrs=d,t.shapeType=c}}function sP(){let t=this.chart;t.polar&&(this.polar=new sI(this),t.inverted&&(this.isRadialSeries=!0,this.is("column")&&(this.isRadialBar=!0)))}function sv(){if(this.chart.polar&&this.xAxis){let{xAxis:t,yAxis:e}=this,i=this.chart;this.kdByAngle=i.tooltip&&i.tooltip.shared,this.kdByAngle||i.inverted?this.searchPoint=sM:this.options.findNearestPointBy="xy";let s=this.points,a=s.length;for(;a--;)this.is("column")||this.is("columnrange")||this.polar.toXY(s[a]),i.hasParallelCoordinates||this.yAxis.reversed||(sh(s[a].y,Number.MIN_VALUE)<e.min||s[a].x<t.min||s[a].x>t.max?(s[a].isNull=!0,s[a].plotY=NaN):s[a].isNull=s[a].isValid&&!s[a].isValid());this.hasClipCircleSetter||(this.hasClipCircleSetter=!!this.eventsToUnbind.push(sa(this,"afterRender",function(){let t;i.polar&&!1!==this.options.clip&&(t=this.yAxis.pane.center,this.clipCircle?this.clipCircle.animate({x:t[0],y:t[1],r:t[2]/2,innerR:t[3]/2}):this.clipCircle=function(t,e,i,s,a){let o=su(),r=t.createElement("clipPath").attr({id:o}).add(t.defs),n=a?t.arc(e,i,s,a,0,2*Math.PI).add(r):t.circle(e,i,s).add(r);return n.id=o,n.clipPath=r,n}(i.renderer,t[0],t[1],t[2]/2,t[3]/2),this.group.clip(this.clipCircle),this.setClip=n().noop)})))}}function sM(t){let e=this.chart,i=this.xAxis,s=this.yAxis,a=i.pane&&i.pane.center,o=t.chartX-(a&&a[0]||0)-e.plotLeft,r=t.chartY-(a&&a[1]||0)-e.plotTop,n=e.inverted?{clientX:t.chartX-s.pos,plotY:t.chartY-i.pos}:{clientX:180+-180/Math.PI*Math.atan2(o,r)};return this.searchKDTree(n)}function sL(t,e,i,s){let a=s.tickInterval,o=s.tickPositions,r=sr(o,t=>t>=i),n=sr([...o].reverse(),t=>t<=e);return so(r)||(r=o[o.length-1]),so(n)||(n=o[0],r+=a,t[0][0]="L",t.unshift(t[t.length-3])),(t=t.slice(o.indexOf(n),o.indexOf(r)+1))[0][0]="M",t}function sk(t,e){return sr(this.pane||[],t=>t.options.id===e)||t.call(this,e)}function sw(t,e,i,s,a,o){let r,n,l,h=this.chart,p=sh(s.inside,!!this.options.stacking);if(h.polar){if(r=e.rectPlotX/Math.PI*180,h.inverted)this.forceDL=h.isInsidePlot(e.plotX,e.plotY),p&&e.shapeArgs?(n=e.shapeArgs,a=sl(a,{x:(l=this.yAxis.postTranslate(((n.start||0)+(n.end||0))/2-this.xAxis.startAngleRad,e.barX+e.pointWidth/2)).x-h.plotLeft,y:l.y-h.plotTop})):e.tooltipPos&&(a=sl(a,{x:e.tooltipPos[0],y:e.tooltipPos[1]})),s.align=sh(s.align,"center"),s.verticalAlign=sh(s.verticalAlign,"middle");else{var c;null===(c=s).align&&(c.align=r>20&&r<160?"left":r>200&&r<340?"right":"center"),null===c.verticalAlign&&(c.verticalAlign=r<45||r>315?"bottom":r>135&&r<225?"top":"middle"),s=c}d().prototype.alignDataLabel.call(this,e,i,s,a,o),this.isRadialBar&&e.shapeArgs&&e.shapeArgs.start===e.shapeArgs.end?i.hide():i.show()}else t.call(this,e,i,s,a,o)}function sA(){let t=this.options,e=t.stacking,i=this.chart,s=this.xAxis,a=this.yAxis,o=a.reversed,r=a.center,l=s.startAngleRad,h=s.endAngleRad-l,p=t.threshold,d=0,c,u,g,f,m,b=0,y=0,x,P,v,M,L,k,w,A;if(s.isRadial)for(g=(c=this.points).length,f=a.translate(a.min),m=a.translate(a.max),p=t.threshold||0,i.inverted&&sn(p)&&so(d=a.translate(p))&&(d<0?d=0:d>h&&(d=h),this.translatedThreshold=d+l);g--;){if(k=(u=c[g]).barX,P=u.x,v=u.y,u.shapeType="arc",i.inverted){u.plotY=a.translate(v),e&&a.stacking?(L=a.stacking.stacks[(v<0?"-":"")+this.stackKey],this.visible&&L&&L[P]&&!u.isNull&&(M=L[P].points[this.getStackIndicator(void 0,P,this.index).key],b=a.translate(M[0]),y=a.translate(M[1]),so(b)&&(b=n().clamp(b,0,h)))):(b=d,y=u.plotY),b>y&&(y=[b,b=y][0]),o?y>f?y=f:b<m?b=m:(b>f||y<m)&&(b=y=h):b<f?b=f:y>m?y=m:(y<f||b>m)&&(b=y=0),a.min>a.max&&(b=y=o?h:0),b+=l,y+=l,r&&(u.barX=k+=r[3]/2),w=Math.max(k,0),A=Math.max(k+u.pointWidth,0);let i=t.borderRadius,s=sd(("object"==typeof i?i.radius:i)||0,A-w);u.shapeArgs={x:r[0],y:r[1],r:A,innerR:w,start:b,end:y,borderRadius:s},u.opacity=b===y?0:void 0,u.plotY=(so(this.translatedThreshold)&&(b<this.translatedThreshold?b:y))-l}else b=k+l,u.shapeArgs=this.polar.arc(u.yBottom,u.plotY,b,b+u.pointWidth),u.shapeArgs.borderRadius=0;this.polar.toXY(u),i.inverted?(x=a.postTranslate(u.rectPlotY,k+u.pointWidth/2),u.tooltipPos=[x.x-i.plotLeft,x.y-i.plotTop]):u.tooltipPos=[u.plotX,u.plotY],r&&(u.ttBelow=u.plotY>r[1])}}function sS(t,e){let i,s,a=this;if(this.chart.polar){e=e||this.points;for(let t=0;t<e.length;t++)if(!e[t].isNull){i=t;break}!1!==this.options.connectEnds&&void 0!==i&&(this.connectEnds=!0,e.splice(e.length,0,e[i]),s=!0),e.forEach(t=>{void 0===t.polarPlotY&&a.polar.toXY(t)})}let o=t.apply(this,[].slice.call(arguments,1));return s&&e.pop(),o}function sN(t,e){let i=this.chart,s={xAxis:[],yAxis:[]};return i.polar?i.axes.forEach(t=>{if("colorAxis"===t.coll)return;let a=t.isXAxis,o=t.center,r=e.chartX-o[0]-i.plotLeft,n=e.chartY-o[1]-i.plotTop;s[a?"xAxis":"yAxis"].push({axis:t,value:t.translate(a?Math.PI-Math.atan2(r,n):Math.sqrt(Math.pow(r,2)+Math.pow(n,2)),!0)})}):s=t.call(this,e),s}function sT(t,e){this.chart.polar||t.call(this,e)}function sC(t,e){let i=this,s=this.chart,a=this.group,o=this.markerGroup,r=this.xAxis&&this.xAxis.center,l=s.plotLeft,h=s.plotTop,p=this.options.animation,d,c,u,g,f,m;s.polar?i.isRadialBar?e||(i.startAngleRad=sh(i.translatedThreshold,i.xAxis.startAngleRad),n().seriesTypes.pie.prototype.animate.call(i,e)):(p=si(p),i.is("column")?e||(c=r[3]/2,i.points.forEach(t=>{u=t.graphic,f=(g=t.shapeArgs)&&g.r,m=g&&g.innerR,u&&g&&(u.attr({r:c,innerR:c}),u.animate({r:f,innerR:m},i.options.animation))})):e?(d={translateX:r[0]+l,translateY:r[1]+h,scaleX:.001,scaleY:.001},a.attr(d),o&&o.attr(d)):(d={translateX:l,translateY:h,scaleX:1,scaleY:1},a.animate(d,p),o&&o.animate(d,p))):t.call(this,e)}function sX(t,e,i,s){let a,o;if(this.chart.polar)if(s){let t=(o=function t(e,i,s,a){let o,r,n,l,h,p,d=+!!a,c=(o=i>=0&&i<=e.length-1?i:i<0?e.length-1+i:0)-1<0?e.length-(1+d):o-1,u=o+1>e.length-1?d:o+1,g=e[c],f=e[u],m=g.plotX,b=g.plotY,y=f.plotX,x=f.plotY,P=e[o].plotX,v=e[o].plotY;r=(1.5*P+m)/2.5,n=(1.5*v+b)/2.5,l=(1.5*P+y)/2.5,h=(1.5*v+x)/2.5;let M=Math.sqrt(Math.pow(r-P,2)+Math.pow(n-v,2)),L=Math.sqrt(Math.pow(l-P,2)+Math.pow(h-v,2)),k=Math.atan2(n-v,r-P);p=Math.PI/2+(k+Math.atan2(h-v,l-P))/2,Math.abs(k-p)>Math.PI/2&&(p-=Math.PI),r=P+Math.cos(p)*M,n=v+Math.sin(p)*M;let w={rightContX:l=P+Math.cos(Math.PI+p)*L,rightContY:h=v+Math.sin(Math.PI+p)*L,leftContX:r,leftContY:n,plotX:P,plotY:v};return s&&(w.prevPointCont=t(e,c,!1,a)),w}(e,s,!0,this.connectEnds)).prevPointCont&&o.prevPointCont.rightContX,i=o.prevPointCont&&o.prevPointCont.rightContY;a=["C",sn(t)?t:o.plotX,sn(i)?i:o.plotY,sn(o.leftContX)?o.leftContX:o.plotX,sn(o.leftContY)?o.leftContY:o.plotY,o.plotX,o.plotY]}else a=["M",i.plotX,i.plotY];else a=t.call(this,e,i,s);return a}function sY(t,e,i=this.plotY){if(!this.destroyed){let{plotX:s,series:a}=this,{chart:o}=a;return o.polar&&sn(s)&&sn(i)?[s+(e?o.plotLeft:0),i+(e?o.plotTop:0)]:t.call(this,e,i)}}class sI{static compose(t,e,i,s,a,o,r,n,l,h){if(R.compose(e,i),se.compose(t,a),sp(ss,"Polar")){let t=e.prototype,a=o.prototype,p=i.prototype,d=s.prototype;if(sa(e,"afterDrawChartBox",sf),sa(e,"createAxes",sb),sa(e,"init",sm),sg(t,"get",sk),sg(p,"getCoordinates",sN),sg(p,"pinch",sT),sa(i,"getSelectionMarkerAttrs",sx),sa(i,"getSelectionBox",sy),sa(s,"afterInit",sP),sa(s,"afterTranslate",sv,{order:2}),sa(s,"afterColumnTranslate",sA,{order:4}),sg(d,"animate",sC),sg(a,"pos",sY),n){let t=n.prototype;sg(t,"alignDataLabel",sw),sg(t,"animate",sC)}if(l&&sg(l.prototype,"getGraphPath",sS),h){let t=h.prototype;sg(t,"getPointSpline",sX),r&&(r.prototype.getPointSpline=t.getPointSpline)}}}constructor(t){this.series=t}arc(t,e,i,s){let a=this.series,o=a.xAxis.center,r=a.yAxis.len,n=o[3]/2,l=r-e+n,h=r-sh(t,r)+n;return a.yAxis.reversed&&(l<0&&(l=n),h<0&&(h=n)),{x:o[0],y:o[1],r:l,innerR:h,start:i,end:s}}toXY(t){let e=this.series,i=e.chart,s=e.xAxis,a=e.yAxis,o=t.plotX,r=i.inverted,n=t.y,l=t.plotY,h=r?o:a.len-l,p;if(r&&e&&!e.isRadialBar&&(t.plotY=l=sn(n)?a.translate(n):0),t.rectPlotX=o,t.rectPlotY=l,a.center&&(h+=a.center[3]/2),sn(l)){let e=r?a.postTranslate(l,h):s.postTranslate(o,h);t.plotX=t.polarPlotX=e.x-i.plotLeft,t.plotY=t.polarPlotY=e.y-i.plotTop}e.kdByAngle?((p=(o/Math.PI*180+s.pane.options.startAngle)%360)<0&&(p+=360),t.clientX=p):t.clientX=t.plotX}}let sR=t.default.StackItem;var sE=o.n(sR);let{composed:sD}=n(),{addEvent:sz,objectEach:sO,pushUnique:sB}=n();!function(t){function e(){let t=this.waterfall?.stacks;t&&(t.changed=!1,delete t.alreadyChanged)}function i(){let t=this.options.stackLabels;t?.enabled&&this.waterfall?.stacks&&this.waterfall.renderStackTotals()}function s(){this.waterfall||(this.waterfall=new o(this))}function a(){let t=this.axes;for(let e of this.series)if(e.options.stacking){for(let e of t)!e.isXAxis&&e.waterfall&&(e.waterfall.stacks.changed=!0);break}}t.compose=function(t,o){sB(sD,"Axis.Waterfall")&&(sz(t,"init",s),sz(t,"afterBuildStacks",e),sz(t,"afterRender",i),sz(o,"beforeRedraw",a))};class o{constructor(t){this.axis=t,this.stacks={changed:!1}}renderStackTotals(){let t=this.axis,e=t.waterfall?.stacks,i=t.stacking?.stackTotalGroup,s=new(sE())(t,t.options.stackLabels||{},!1,0,void 0);this.dummyStackItem=s,i&&sO(e,t=>{sO(t,(t,e)=>{s.total=t.stackTotal,s.x=+e,t.label&&(s.label=t.label),sE().prototype.render.call(s,i),t.label=s.label,delete s.label})}),s.total=null}}t.Composition=o}(a||(a={}));let sW=a,{isNumber:sF}=n();class sH extends ta().prototype.pointClass{getClassName(){let t=tO().prototype.getClassName.call(this);return this.isSum?t+=" highcharts-sum":this.isIntermediateSum&&(t+=" highcharts-intermediate-sum"),t}isValid(){return sF(this.y)||this.isSum||!!this.isIntermediateSum}}let{column:sG,line:sq}=h().seriesTypes,{addEvent:sV,arrayMax:sU,arrayMin:sK,correctFloat:s_,crisp:sZ,extend:sj,isNumber:s$,merge:sQ,objectEach:sJ,pick:s0}=n();function s1(t,e){return Object.hasOwnProperty.call(t,e)}class s2 extends sG{generatePoints(){sG.prototype.generatePoints.apply(this);let t=this.getColumn("y",!0);for(let e=0,i=this.points.length;e<i;e++){let i=this.points[e],s=t[e];s$(s)&&(i.isIntermediateSum||i.isSum)&&(i.y=s_(s))}}processData(t){let e,i,s,a,o,r,n=this.options,l=this.getColumn("y"),h=n.data,p=l.length,d=n.threshold||0;s=i=a=o=0;for(let t=0;t<p;t++)r=l[t],e=h?.[t]||{},"sum"===r||e.isSum?l[t]=s_(s):"intermediateSum"===r||e.isIntermediateSum?(l[t]=s_(i),i=0):(s+=r,i+=r),a=Math.min(s,a),o=Math.max(s,o);super.processData.call(this,t),n.stacking||(this.dataMin=a+d,this.dataMax=o)}toYData(t){return t.isSum?"sum":t.isIntermediateSum?"intermediateSum":t.y}pointAttribs(t,e){let i=this.options.upColor;i&&!t.options.color&&s$(t.y)&&(t.color=t.y>0?i:void 0);let s=sG.prototype.pointAttribs.call(this,t,e);return delete s.dashstyle,s}getGraphPath(){return[["M",0,0]]}getCrispPath(){let t=this.data.filter(t=>s$(t.y)),e=this.yAxis,i=t.length,s=this.graph?.strokeWidth()||0,a=this.xAxis.reversed,o=this.yAxis.reversed,r=this.options.stacking,n=[];for(let l=1;l<i;l++){if(!(this.options.connectNulls||s$(this.data[t[l].index-1].y)))continue;let i=t[l].box,h=t[l-1],p=h.y||0,d=t[l-1].box;if(!i||!d)continue;let c=e.waterfall?.stacks[this.stackKey],u=p>0?-d.height:0;if(c&&d&&i){let t,p=c[l-1];if(r){let i=p.connectorThreshold;t=sZ(e.translate(i,!1,!0,!1,!0)+(o?u:0),s)}else t=sZ(d.y+(h.minPointLengthOffset||0),s);n.push(["M",(d.x||0)+(a?0:d.width||0),t],["L",(i.x||0)+(a&&i.width||0),t])}if(d&&n.length&&(!r&&p<0&&!o||p>0&&o)){let t=n[n.length-2];t&&"number"==typeof t[2]&&(t[2]+=d.height||0);let e=n[n.length-1];e&&"number"==typeof e[2]&&(e[2]+=d.height||0)}}return n}drawGraph(){sq.prototype.drawGraph.call(this),this.graph&&this.graph.attr({d:this.getCrispPath()})}setStackedPoints(t){let e=this.options,i=t.waterfall?.stacks,s=e.threshold||0,a=this.stackKey,o=this.getColumn("x"),r=this.getColumn("y"),n=o.length,l=s,h=l,p,d=0,c=0,u=0,g,f,m,b,y,x,P,v,M=(t,e,i,s)=>{if(p){if(g)for(;i<g;i++)p.stackState[i]+=s;else p.stackState[0]=t,g=p.stackState.length;p.stackState.push(p.stackState[g-1]+e)}};if(t.stacking&&i&&this.reserveSpace()){v=i.changed,(P=i.alreadyChanged)&&0>P.indexOf(a)&&(v=!0),i[a]||(i[a]={});let t=i[a];if(t)for(let i=0;i<n;i++)(!t[x=o[i]]||v)&&(t[x]={negTotal:0,posTotal:0,stackTotal:0,threshold:0,stateIndex:0,stackState:[],label:v&&t[x]?t[x].label:void 0}),p=t[x],(y=r[i])>=0?p.posTotal+=y:p.negTotal+=y,b=e.data[i],f=p.absolutePos=p.posTotal,m=p.absoluteNeg=p.negTotal,p.stackTotal=f+m,g=p.stackState.length,b?.isIntermediateSum?(M(u,c,0,u),u=c,c=s,l^=h,h^=l,l^=h):b?.isSum?(M(s,d,g,0),l=s):(M(l,y,0,d),b&&(d+=y,c+=y)),p.stateIndex++,p.threshold=l,l+=p.stackTotal;i.changed=!1,i.alreadyChanged||(i.alreadyChanged=[]),i.alreadyChanged.push(a)}}getExtremes(){let t,e,i=this.options.stacking,s=this.yAxis,a=s.waterfall?.stacks;return i&&a?(t=this.stackedYNeg=[],e=this.stackedYPos=[],"overlap"===i?sJ(a[this.stackKey],function(i){t.push(sK(i.stackState)),e.push(sU(i.stackState))}):sJ(a[this.stackKey],function(i){t.push(i.negTotal+i.threshold),e.push(i.posTotal+i.threshold)}),{dataMin:sK(t),dataMax:sU(e)}):{dataMin:this.dataMin,dataMax:this.dataMax}}}s2.defaultOptions=sQ(sG.defaultOptions,{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"Dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}}),s2.compose=sW.compose,sj(s2.prototype,{pointValKey:"y",showLine:!0,pointClass:sH}),sV(s2,"afterColumnTranslate",function(){let{options:t,points:e,yAxis:i}=this,s=s0(t.minPointLength,5),a=s/2,o=t.threshold||0,r=t.stacking,n=i.waterfall?.stacks[this.stackKey],l=this.getColumn("y",!0),h=o,p=o,d,c,u,g;for(let t=0;t<e.length;t++){let f=e[t],m=l[t],b=sj({x:0,y:0,width:0,height:0},f.shapeArgs||{});f.box=b;let y=[0,m],x=f.y||0;if(r){if(n){let e=n[t];"overlap"===r?(c=e.stackState[e.stateIndex--],d=x>=0?c:c-x,s1(e,"absolutePos")&&delete e.absolutePos,s1(e,"absoluteNeg")&&delete e.absoluteNeg):(x>=0?(c=e.threshold+e.posTotal,e.posTotal-=x,d=c):(c=e.threshold+e.negTotal,e.negTotal-=x,d=c-x),!e.posTotal&&s$(e.absolutePos)&&s1(e,"absolutePos")&&(e.posTotal=e.absolutePos,delete e.absolutePos),!e.negTotal&&s$(e.absoluteNeg)&&s1(e,"absoluteNeg")&&(e.negTotal=e.absoluteNeg,delete e.absoluteNeg)),f.isSum||(e.connectorThreshold=e.threshold+e.stackTotal),i.reversed?(u=x>=0?d-x:d+x,g=d):(u=d,g=d-x),f.below=u<=o,b.y=i.translate(u,!1,!0,!1,!0),b.height=Math.abs(b.y-i.translate(g,!1,!0,!1,!0));let s=i.waterfall?.dummyStackItem;s&&(s.x=t,s.label=n[t].label,s.setOffset(this.pointXOffset||0,this.barW||0,this.stackedYNeg[t],this.stackedYPos[t],void 0,this.xAxis))}}else d=Math.max(p,p+x)+y[0],b.y=i.translate(d,!1,!0,!1,!0),f.isSum?(b.y=i.translate(y[1],!1,!0,!1,!0),b.height=Math.min(i.translate(y[0],!1,!0,!1,!0),i.len)-b.y,f.below=y[1]<=o):f.isIntermediateSum?(x>=0?(u=y[1]+h,g=h):(u=h,g=y[1]+h),i.reversed&&(u^=g,g^=u,u^=g),b.y=i.translate(u,!1,!0,!1,!0),b.height=Math.abs(b.y-Math.min(i.translate(g,!1,!0,!1,!0),i.len)),h+=y[1],f.below=u<=o):(b.height=m>0?i.translate(p,!1,!0,!1,!0)-b.y:i.translate(p,!1,!0,!1,!0)-i.translate(p-m,!1,!0,!1,!0),f.below=(p+=m)<o),b.height<0&&(b.y+=b.height,b.height*=-1);f.plotY=b.y,f.yBottom=b.y+b.height,b.height<=s&&!f.isNull?(b.height=s,b.y-=a,f.yBottom=b.y+b.height,f.plotY=b.y,x<0?f.minPointLengthOffset=-a:f.minPointLengthOffset=a):(f.isNull&&(b.width=0),f.minPointLengthOffset=0);let P=f.plotY+(f.negative?b.height:0);f.below&&(f.plotY+=b.height),f.tooltipPos&&(this.chart.inverted?f.tooltipPos[0]=i.len-P:f.tooltipPos[1]=P),f.isInside=this.isPointInside(f);let v=sZ(f.yBottom,this.borderWidth);b.y=sZ(b.y,this.borderWidth),b.height=v-b.y,sQ(!0,f.shapeArgs,b)}},{order:2}),h().registerSeriesType("waterfall",s2);let s3=n();s3.RadialAxis=se,t5.compose(s3.Axis,s3.Chart,s3.Legend),iF.compose(s3.Axis,s3.Chart,s3.Legend),R.compose(s3.Chart,s3.Pointer),sI.compose(s3.Axis,s3.Chart,s3.Pointer,s3.Series,s3.Tick,s3.Point,h().seriesTypes.areasplinerange,h().seriesTypes.column,h().seriesTypes.line,h().seriesTypes.spline),s2.compose(s3.Axis,s3.Chart);let s5=s3;export{s5 as default};
|
|
9
|
+
*/import*as t from"./highcharts.js";var e,i,s,a,o={};o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var i in e)o.o(e,i)&&!o.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let r=t.default;var n=o.n(r);let l=t.default.SeriesRegistry;var h=o.n(l);let p=t.default.Series;var d=o.n(p);let{deg2rad:c}=n(),{fireEvent:u,isNumber:g,pick:f,relativeLength:m}=n();(e=i||(i={})).getCenter=function(){let t=this.options,e=this.chart,i=2*(t.slicedOffset||0),s=e.plotWidth-2*i,a=e.plotHeight-2*i,o=t.center,r=Math.min(s,a),n=t.thickness,l,h=t.size,p=t.innerSize||0,c,b;"string"==typeof h&&(h=parseFloat(h)),"string"==typeof p&&(p=parseFloat(p));let y=[f(o?.[0],"50%"),f(o?.[1],"50%"),f(h&&h<0?void 0:t.size,"100%"),f(p&&p<0?void 0:t.innerSize||0,"0%")];for(!e.angular||this instanceof d()||(y[3]=0),c=0;c<4;++c)b=y[c],l=c<2||2===c&&/%$/.test(b),y[c]=m(b,[s,a,r,y[2]][c])+(l?i:0);return y[3]>y[2]&&(y[3]=y[2]),g(n)&&2*n<y[2]&&n>0&&(y[3]=y[2]-2*n),u(this,"afterGetCenter",{positions:y}),y},e.getStartAndEndRadians=function(t,e){let i=g(t)?t:0,s=g(e)&&e>i&&e-i<360?e:i+360;return{start:c*(i+-90),end:c*(s+-90)}};let b=i,{addEvent:y,correctFloat:x,defined:P,pick:M}=n();function v(t){let e,i=this;return t&&i.pane.forEach(s=>{L(t.chartX-i.plotLeft,t.chartY-i.plotTop,s.center)&&(e=s)}),e}function L(t,e,i,s,a){let o=!0,r=i[0],n=i[1],l=2*Math.PI,h=Math.sqrt(Math.pow(t-r,2)+Math.pow(e-n,2));if(P(s)&&P(a)){let i=Math.atan2(x(e-n,8),x(t-r,8));i=(i+l)%l,s=(s+l)%l,Math.abs((a=(a+l)%l)-s)>1e-6&&(o=s>a?i>=s||i<=a:i>=s&&i<=a)}else o=!0;return h<=Math.ceil(i[2]/2)&&o}function k(t){this.polar&&(t.options.inverted&&([t.x,t.y]=[t.y,t.x]),t.isInsidePlot=this.pane.some(e=>L(t.x,t.y,e.center,e.axis&&e.axis.normalizedStartAngleRad,e.axis&&e.axis.normalizedEndAngleRad)))}function w(t){let e=this.chart;t.hoverPoint&&t.hoverPoint.plotX&&t.hoverPoint.plotY&&e.hoverPane&&!L(t.hoverPoint.plotX,t.hoverPoint.plotY,e.hoverPane.center)&&(t.hoverPoint=void 0)}function A(t){let e=this.chart;e.polar?(e.hoverPane=e.getHoverPane(t),t.filter=function(i){return i.visible&&!(!t.shared&&i.directTouch)&&M(i.options.enableMouseTracking,!0)&&(!e.hoverPane||i.xAxis.pane===e.hoverPane)}):e.hoverPane=void 0}let{defaultOptions:S}=n(),T={shape:"circle",borderRadius:0,borderWidth:1,borderColor:"#cccccc",backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#ffffff"],[1,"#e6e6e6"]]},from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"},N={background:T,center:["50%","50%"],size:"85%",innerSize:"0%",startAngle:0};S.pane=N;let C={pane:N,background:T},{extend:X,merge:Y,splat:R}=n();class I{constructor(t,e){this.coll="pane",this.init(t,e)}init(t,e){this.chart=e,this.background=[],e.pane.push(this),this.setOptions(t)}setOptions(t){this.options=t=Y(C.pane,{background:this.chart.angular?{}:void 0},t)}render(){let t=this.options,e=this.chart.renderer;this.group||(this.group=e.g("pane-group").attr({zIndex:t.zIndex||0}).add()),this.updateCenter();let i=this.options.background;if(i){let t=Math.max((i=R(i)).length,this.background.length||0);for(let e=0;e<t;e++)i[e]&&this.axis?this.renderBackground(Y(C.background,i[e]),e):this.background[e]&&(this.background[e]=this.background[e].destroy(),this.background.splice(e,1))}}renderBackground(t,e){let i={class:"highcharts-pane "+(t.className||"")},s="animate";this.chart.styledMode||X(i,{fill:t.backgroundColor,stroke:t.borderColor,"stroke-width":t.borderWidth}),this.background[e]||(this.background[e]=this.chart.renderer.path().add(this.group),s="attr"),this.background[e][s]({d:this.axis.getPlotBandPath(t.from,t.to,t)}).attr(i)}updateCenter(t){this.center=(t||this.axis||{}).center=b.getCenter.call(this)}update(t,e){Y(!0,this.options,t),this.setOptions(this.options),this.render(),this.chart.axes.forEach(function(t){t.pane===this&&(t.pane=null,t.update({},e))},this)}}I.compose=function(t,e){let i=t.prototype;i.getHoverPane||(i.collectionsWithUpdate.push("pane"),i.getHoverPane=v,y(t,"afterIsInsidePlot",k),y(e,"afterGetHoverData",w),y(e,"beforeGetHoverData",A))};let{area:{prototype:{pointClass:E,pointClass:{prototype:D}}}}=h().seriesTypes,{defined:z,isNumber:O}=n(),B=class extends E{setState(){let t=this.state,e=this.series,i=e.chart.polar;z(this.plotHigh)||(this.plotHigh=e.yAxis.toPixels(this.high,!0)),z(this.plotLow)||(this.plotLow=this.plotY=e.yAxis.toPixels(this.low,!0)),e.lowerStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.upperStateMarkerGraphic,this.graphic=this.graphics&&this.graphics[1],this.plotY=this.plotHigh,i&&O(this.plotHighX)&&(this.plotX=this.plotHighX),D.setState.apply(this,arguments),this.state=t,this.plotY=this.plotLow,this.graphic=this.graphics&&this.graphics[0],i&&O(this.plotLowX)&&(this.plotX=this.plotLowX),e.upperStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.lowerStateMarkerGraphic,e.lowerStateMarkerGraphic=void 0;let s=e.modifyMarkerSettings();D.setState.apply(this,arguments),e.restoreMarkerSettings(s)}haloPath(){let t=this.series.chart.polar,e=[];return this.plotY=this.plotLow,t&&O(this.plotLowX)&&(this.plotX=this.plotLowX),this.isInside&&(e=D.haloPath.apply(this,arguments)),this.plotY=this.plotHigh,t&&O(this.plotHighX)&&(this.plotX=this.plotHighX),this.isTopInside&&(e=e.concat(D.haloPath.apply(this,arguments))),e}isValid(){return O(this.low)&&O(this.high)}},{noop:W}=n(),{area:H,area:{prototype:F},column:{prototype:G}}=h().seriesTypes,{addEvent:q,defined:V,extend:U,isArray:K,isNumber:_,pick:Z,merge:j}=n();class $ extends H{toYData(t){return[t.low,t.high]}highToXY(t){let e=this.chart,i=this.xAxis.postTranslate(t.rectPlotX||0,this.yAxis.len-(t.plotHigh||0));t.plotHighX=i.x-e.plotLeft,t.plotHigh=i.y-e.plotTop,t.plotLowX=t.plotX}getGraphPath(t){let e=[],i=[],s=F.getGraphPath,a=this.options,o=this.chart.polar,r=o&&!1!==a.connectEnds,n=a.connectNulls,l,h,p,d=a.step;for(l=(t=t||this.points).length;l--;){h=t[l];let s=o?{plotX:h.rectPlotX,plotY:h.yBottom,doCurve:!1}:{plotX:h.plotX,plotY:h.plotY,doCurve:!1};h.isNull||r||n||t[l+1]&&!t[l+1].isNull||i.push(s),p={polarPlotY:h.polarPlotY,rectPlotX:h.rectPlotX,yBottom:h.yBottom,plotX:Z(h.plotHighX,h.plotX),plotY:h.plotHigh,isNull:h.isNull},i.push(p),e.push(p),h.isNull||r||n||t[l-1]&&!t[l-1].isNull||i.push(s)}let c=s.call(this,t);d&&(!0===d&&(d="left"),a.step=({left:"right",center:"center",right:"left"})[d]);let u=s.call(this,e),g=s.call(this,i);a.step=d;let f=[].concat(c,u);return!this.chart.polar&&g[0]&&"M"===g[0][0]&&(g[0]=["L",g[0][1],g[0][2]]),this.graphPath=f,this.areaPath=c.concat(g),f.isArea=!0,f.xMap=c.xMap,this.areaPath.xMap=c.xMap,f}drawDataLabels(){let t,e,i,s,a,o=this.points,r=o.length,n=[],l=this.options.dataLabels,h=this.chart.inverted;if(l){if(K(l)?(s=l[0]||{enabled:!1},a=l[1]||{enabled:!1}):((s=U({},l)).x=l.xHigh,s.y=l.yHigh,(a=U({},l)).x=l.xLow,a.y=l.yLow),s.enabled||this.hasDataLabels?.()){for(t=r;t--;)if(e=o[t]){let{plotHigh:a=0,plotLow:o=0}=e;i=s.inside?a<o:a>o,e.y=e.high,e._plotY=e.plotY,e.plotY=a,n[t]=e.dataLabel,e.dataLabel=e.dataLabelUpper,e.below=i,h?s.align||(s.align=i?"right":"left"):s.verticalAlign||(s.verticalAlign=i?"top":"bottom")}for(this.options.dataLabels=s,F.drawDataLabels&&F.drawDataLabels.apply(this,arguments),t=r;t--;)(e=o[t])&&(e.dataLabelUpper=e.dataLabel,e.dataLabel=n[t],delete e.dataLabels,e.y=e.low,e.plotY=e._plotY)}if(a.enabled||this.hasDataLabels?.()){for(t=r;t--;)if(e=o[t]){let{plotHigh:t=0,plotLow:s=0}=e;i=a.inside?t<s:t>s,e.below=!i,h?a.align||(a.align=i?"left":"right"):a.verticalAlign||(a.verticalAlign=i?"bottom":"top")}this.options.dataLabels=a,F.drawDataLabels&&F.drawDataLabels.apply(this,arguments)}if(s.enabled)for(t=r;t--;)(e=o[t])&&(e.dataLabels=[e.dataLabelUpper,e.dataLabel].filter(function(t){return!!t}));this.options.dataLabels=l}}alignDataLabel(){G.alignDataLabel.apply(this,arguments)}modifyMarkerSettings(){let t={marker:this.options.marker,symbol:this.symbol};if(this.options.lowMarker){let{options:{marker:t,lowMarker:e}}=this;this.options.marker=j(t,e),e.symbol&&(this.symbol=e.symbol)}return t}restoreMarkerSettings(t){this.options.marker=t.marker,this.symbol=t.symbol}drawPoints(){let t,e,i=this.points.length,s=this.modifyMarkerSettings();for(F.drawPoints.apply(this,arguments),this.restoreMarkerSettings(s),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],e.origProps={plotY:e.plotY,plotX:e.plotX,isInside:e.isInside,negative:e.negative,zone:e.zone,y:e.y},(e.graphic||e.graphics[0])&&(e.graphics[0]=e.graphic),e.graphic=e.graphics[1],e.plotY=e.plotHigh,V(e.plotHighX)&&(e.plotX=e.plotHighX),e.y=Z(e.high,e.origProps.y),e.negative=e.y<(this.options.threshold||0),this.zones.length&&(e.zone=e.getZone()),this.chart.polar||(e.isInside=e.isTopInside=void 0!==e.plotY&&e.plotY>=0&&e.plotY<=this.yAxis.len&&e.plotX>=0&&e.plotX<=this.xAxis.len),t++;for(F.drawPoints.apply(this,arguments),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],(e.graphic||e.graphics[1])&&(e.graphics[1]=e.graphic),e.graphic=e.graphics[0],e.origProps&&(U(e,e.origProps),delete e.origProps),t++}hasMarkerChanged(t,e){let i=t.lowMarker,s=e.lowMarker||{};return i&&(!1===i.enabled||s.symbol!==i.symbol||s.height!==i.height||s.width!==i.width)||super.hasMarkerChanged(t,e)}}$.defaultOptions=j(H.defaultOptions,{lineWidth:1,threshold:null,tooltip:{pointFormat:'<span style="color:{series.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},trackByArea:!0,dataLabels:{align:void 0,verticalAlign:void 0,xLow:0,xHigh:0,yLow:0,yHigh:0}}),q($,"afterTranslate",function(){"low,high"===this.pointArrayMap.join(",")&&this.points.forEach(t=>{let e=t.high,i=t.plotY;t.isNull?t.plotY=void 0:(t.plotLow=i,t.plotHigh=_(e)?this.yAxis.translate(this.dataModify?this.dataModify.modifyValue(e):e,!1,!0,void 0,!0):void 0,this.dataModify&&(t.yBottom=t.plotHigh))})},{order:0}),q($,"afterTranslate",function(){this.points.forEach(t=>{if(this.chart.polar)this.highToXY(t),t.plotLow=t.plotY,t.tooltipPos=[((t.plotHighX||0)+(t.plotLowX||0))/2,((t.plotHigh||0)+(t.plotLow||0))/2];else{let e=t.pos(!1,t.plotLow),i=t.pos(!1,t.plotHigh);e&&i&&(e[0]=(e[0]+i[0])/2,e[1]=(e[1]+i[1])/2),t.tooltipPos=e}})},{order:3}),U($.prototype,{deferTranslatePolar:!0,pointArrayMap:["low","high"],pointClass:B,pointValKey:"low",setStackedPoints:W}),h().registerSeriesType("arearange",$);let Q=$,{spline:{prototype:J}}=h().seriesTypes,{merge:tt,extend:te}=n();class ti extends Q{}ti.defaultOptions=tt(Q.defaultOptions),te(ti.prototype,{getPointSpline:J.getPointSpline}),h().registerSeriesType("areasplinerange",ti);let ts=t.default.Series.types.column;var ta=o.n(ts);let{noop:to}=n(),{crisp:tr,extend:tn,merge:tl,pick:th,relativeLength:tp}=n();class td extends ta(){pointAttribs(){return{}}getWhiskerPair(t,e,i,s,a){let o=a.whiskers.strokeWidth(),r=(i,s)=>{let a=tp(i,2*t)/2,r=tr(s,o);return[["M",tr(e-a),r],["L",tr(e+a),r]]};return[...r(i,a.highPlot),...r(s,a.lowPlot)]}translate(){let t=this.yAxis,e=this.pointArrayMap;super.translate.apply(this),this.points.forEach(function(i){e.forEach(function(e){null!==i[e]&&(i[e+"Plot"]=t.translate(i[e],0,1,0,1))}),i.plotHigh=i.highPlot})}drawPoints(){let t,e,i,s,a,o,r,n,l,h,p,d=this.points,c=this.options,u=this.chart,g=u.renderer,f=!1!==this.doQuartiles,m=this.options.whiskerLength;for(let b of d){let d=(n=b.graphic)?"animate":"attr",y=b.shapeArgs,x={},P={},M={},v={},L=b.color||this.color,k=b.options.whiskerLength||m;if(void 0!==b.plotY){let w;l=y.width,p=(h=y.x)+l,t=f?b.q1Plot:b.lowPlot,e=f?b.q3Plot:b.lowPlot,i=b.highPlot,s=b.lowPlot,n||(b.graphic=n=g.g("point").add(this.group),b.stem=g.path().addClass("highcharts-boxplot-stem").add(n),m&&(b.whiskers=g.path().addClass("highcharts-boxplot-whisker").add(n)),f&&(b.box=g.path(r).addClass("highcharts-boxplot-box").add(n)),b.medianShape=g.path(o).addClass("highcharts-boxplot-median").add(n)),u.styledMode||(P.stroke=b.stemColor||c.stemColor||L,P["stroke-width"]=th(b.stemWidth,c.stemWidth,c.lineWidth),P.dashstyle=b.stemDashStyle||c.stemDashStyle||c.dashStyle,b.stem.attr(P),k&&(M.stroke=b.whiskerColor||c.whiskerColor||L,M["stroke-width"]=th(b.whiskerWidth,c.whiskerWidth,c.lineWidth),M.dashstyle=b.whiskerDashStyle||c.whiskerDashStyle||c.dashStyle,b.whiskers.attr(M)),f&&(x.fill=b.fillColor||c.fillColor||L,x.stroke=c.lineColor||L,x["stroke-width"]=c.lineWidth||0,x.dashstyle=b.boxDashStyle||c.boxDashStyle||c.dashStyle,b.box.attr(x)),v.stroke=b.medianColor||c.medianColor||L,v["stroke-width"]=th(b.medianWidth,c.medianWidth,c.lineWidth),v.dashstyle=b.medianDashStyle||c.medianDashStyle||c.dashStyle,b.medianShape.attr(v));let A=tr((b.plotX||0)+(this.pointXOffset||0)+(this.barW||0)/2,b.stem.strokeWidth());if(w=[["M",A,e],["L",A,i],["M",A,t],["L",A,s]],b.stem[d]({d:w}),f){let i=b.box.strokeWidth();t=tr(t,i),e=tr(e,i),w=[["M",h=tr(h,i),e],["L",h,t],["L",p=tr(p,i),t],["L",p,e],["L",h,e],["Z"]],b.box[d]({d:w})}if(k){let t=l/2,e=this.getWhiskerPair(t,A,b.upperWhiskerLength??c.upperWhiskerLength??k,b.lowerWhiskerLength??c.lowerWhiskerLength??k,b);b.whiskers[d]({d:e})}w=[["M",h,a=tr(b.medianPlot,b.medianShape.strokeWidth())],["L",p,a]],b.medianShape[d]({d:w})}}}toYData(t){return[t.low,t.q1,t.median,t.q3,t.high]}}td.defaultOptions=tl(ta().defaultOptions,{threshold:null,tooltip:{pointFormat:'<span style="color:{point.color}">●</span> <b>{series.name}</b><br/>Maximum: {point.high}<br/>Upper quartile: {point.q3}<br/>Median: {point.median}<br/>Lower quartile: {point.q1}<br/>Minimum: {point.low}<br/>'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,whiskerWidth:2}),tn(td.prototype,{pointArrayMap:["low","q1","median","q3","high"],pointValKey:"high",drawDataLabels:to,setStackedPoints:to}),h().registerSeriesType("boxplot",td);let tc=td,tu={borderColor:void 0,borderWidth:2,className:void 0,color:void 0,connectorClassName:void 0,connectorColor:void 0,connectorDistance:60,connectorWidth:1,enabled:!1,labels:{className:void 0,allowOverlap:!1,format:"",formatter:void 0,align:"right",style:{fontSize:"0.9em",color:"#000000"},x:0,y:0},maxSize:60,minSize:10,legendIndex:0,ranges:{value:void 0,borderColor:void 0,color:void 0,connectorColor:void 0},sizeBy:"area",sizeByAbsoluteValue:!1,zIndex:1,zThreshold:0},tg=t.default.Templating;var tf=o.n(tg);let{noop:tm}=n(),{arrayMax:tb,arrayMin:ty,isNumber:tx,merge:tP,pick:tM,stableSort:tv}=n(),tL=class{constructor(t,e){this.setState=tm,this.init(t,e)}init(t,e){this.options=t,this.visible=!0,this.chart=e.chart,this.legend=e}addToLegend(t){t.splice(this.options.legendIndex,0,this)}drawLegendSymbol(t){let e,i=tM(t.options.itemDistance,20),s=this.legendItem||{},a=this.options,o=a.ranges,r=a.connectorDistance;if(!o||!o.length||!tx(o[0].value)){t.options.bubbleLegend.autoRanges=!0;return}tv(o,function(t,e){return e.value-t.value}),this.ranges=o,this.setOptions(),this.render();let n=this.getMaxLabelSize(),l=this.ranges[0].radius,h=2*l;e=(e=r-l+n.width)>0?e:0,this.maxLabel=n,this.movementX="left"===a.labels.align?e:0,s.labelWidth=h+e+i,s.labelHeight=h+n.height/2}setOptions(){let t=this.ranges,e=this.options,i=this.chart.series[e.seriesIndex],s=this.legend.baseline,a={zIndex:e.zIndex,"stroke-width":e.borderWidth},o={zIndex:e.zIndex,"stroke-width":e.connectorWidth},r={align:this.legend.options.rtl||"left"===e.labels.align?"right":"left",zIndex:e.zIndex},n=i.options.marker.fillOpacity,l=this.chart.styledMode;t.forEach(function(h,p){l||(a.stroke=tM(h.borderColor,e.borderColor,i.color),a.fill=h.color||e.color,a.fill||(a.fill=i.color,a["fill-opacity"]=n??1),o.stroke=tM(h.connectorColor,e.connectorColor,i.color)),t[p].radius=this.getRangeRadius(h.value),t[p]=tP(t[p],{center:t[0].radius-t[p].radius+s}),l||tP(!0,t[p],{bubbleAttribs:tP(a),connectorAttribs:tP(o),labelAttribs:r})},this)}getRangeRadius(t){let e=this.options,i=this.options.seriesIndex,s=this.chart.series[i],a=e.ranges[0].value,o=e.ranges[e.ranges.length-1].value,r=e.minSize,n=e.maxSize;return s.getRadius.call(this,o,a,r,n,t)}render(){let t=this.legendItem||{},e=this.chart.renderer,i=this.options.zThreshold;for(let s of(this.symbols||(this.symbols={connectors:[],bubbleItems:[],labels:[]}),t.symbol=e.g("bubble-legend"),t.label=e.g("bubble-legend-item").css(this.legend.itemStyle||{}),t.symbol.translateX=0,t.symbol.translateY=0,t.symbol.add(t.label),t.label.add(t.group),this.ranges))s.value>=i&&this.renderRange(s);this.hideOverlappingLabels()}renderRange(t){let e=this.ranges[0],i=this.legend,s=this.options,a=s.labels,o=this.chart,r=o.series[s.seriesIndex],n=o.renderer,l=this.symbols,h=l.labels,p=t.center,d=Math.abs(t.radius),c=s.connectorDistance||0,u=a.align,g=i.options.rtl,f=s.borderWidth,m=s.connectorWidth,b=e.radius||0,y=p-d-f/2+m/2,x=(y%1?1:.5)-(m%2?0:.5),P=n.styledMode,M=g||"left"===u?-c:c;"center"===u&&(M=0,s.connectorDistance=0,t.labelAttribs.align="center"),l.bubbleItems.push(n.circle(b,p+x,d).attr(P?{}:t.bubbleAttribs).addClass((P?"highcharts-color-"+r.colorIndex+" ":"")+"highcharts-bubble-legend-symbol "+(s.className||"")).add(this.legendItem.symbol)),l.connectors.push(n.path(n.crispLine([["M",b,y],["L",b+M,y]],s.connectorWidth)).attr(P?{}:t.connectorAttribs).addClass((P?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(s.connectorClassName||"")).add(this.legendItem.symbol));let v=n.text(this.formatLabel(t)).attr(P?{}:t.labelAttribs).css(P?{}:a.style).addClass("highcharts-bubble-legend-labels "+(s.labels.className||"")).add(this.legendItem.symbol),L={x:b+M+s.labels.x,y:y+s.labels.y+.4*v.getBBox().height};v.attr(L),h.push(v),v.placed=!0,v.alignAttr=L}getMaxLabelSize(){let t,e;return this.symbols.labels.forEach(function(i){e=i.getBBox(!0),t=t?e.width>t.width?e:t:e}),t||{}}formatLabel(t){let e=this.options,i=e.labels.formatter,s=e.labels.format,{numberFormatter:a}=this.chart;return s?tf().format(s,t,this.chart):i?i.call(t):a(t.value,1)}hideOverlappingLabels(){let t=this.chart,e=this.options.labels.allowOverlap,i=this.symbols;!e&&i&&(t.hideOverlappingLabels(i.labels),i.labels.forEach(function(t,e){t.newOpacity?t.newOpacity!==t.oldOpacity&&i.connectors[e].show():i.connectors[e].hide()}))}getRanges(){let t=this.legend.bubbleLegend,e=t.chart.series,i=t.options.ranges,s,a,o=Number.MAX_VALUE,r=-Number.MAX_VALUE;return e.forEach(function(t){t.isBubble&&!t.ignoreSeries&&(a=t.getColumn("z").filter(tx)).length&&(o=tM(t.options.zMin,Math.min(o,Math.max(ty(a),!1===t.options.displayNegative?t.options.zThreshold:-Number.MAX_VALUE))),r=tM(t.options.zMax,Math.max(r,tb(a))))}),s=o===r?[{value:r}]:[{value:o},{value:(o+r)/2},{value:r,autoRanges:!0}],i.length&&i[0].radius&&s.reverse(),s.forEach(function(t,e){i&&i[e]&&(s[e]=tP(i[e],t))}),s}predictBubbleSizes(){let t=this.chart,e=t.legend.options,i=e.floating,s="horizontal"===e.layout,a=s?t.legend.lastLineHeight:0,o=t.plotSizeX,r=t.plotSizeY,n=t.series[this.options.seriesIndex],l=n.getPxExtremes(),h=Math.ceil(l.minPxSize),p=Math.ceil(l.maxPxSize),d=Math.min(r,o),c,u=n.options.maxSize;return i||!/%$/.test(u)?c=p:(c=(d+a)*(u=parseFloat(u))/100/(u/100+1),(s&&r-c>=o||!s&&o-c>=r)&&(c=p)),[h,Math.ceil(c)]}updateRanges(t,e){let i=this.legend.options.bubbleLegend;i.minSize=t,i.maxSize=e,i.ranges=this.getRanges()}correctSizes(){let t=this.legend,e=this.chart.series[this.options.seriesIndex].getPxExtremes();Math.abs(Math.ceil(e.maxPxSize)-this.options.maxSize)>1&&(this.updateRanges(this.options.minSize,e.maxPxSize),t.render())}},{setOptions:tk}=n(),{composed:tw}=n(),{addEvent:tA,objectEach:tS,pushUnique:tT,wrap:tN}=n();function tC(t,e,i){let s,a,o,r=this.legend,n=tX(this)>=0;r&&r.options.enabled&&r.bubbleLegend&&r.options.bubbleLegend.autoRanges&&n?(s=r.bubbleLegend.options,a=r.bubbleLegend.predictBubbleSizes(),r.bubbleLegend.updateRanges(a[0],a[1]),s.placed||(r.group.placed=!1,r.allItems.forEach(t=>{(o=t.legendItem||{}).group&&(o.group.translateY=void 0)})),r.render(),s.placed||(this.getMargins(),this.axes.forEach(t=>{t.setScale(),t.updateNames(),tS(t.ticks,function(t){t.isNew=!0,t.isNewLabel=!0})}),this.getMargins()),s.placed=!0,t.call(this,e,i),r.bubbleLegend.correctSizes(),tE(r,tY(r))):(t.call(this,e,i),r&&r.options.enabled&&r.bubbleLegend&&(r.render(),tE(r,tY(r))))}function tX(t){let e=t.series,i=0;for(;i<e.length;){if(e[i]&&e[i].isBubble&&e[i].visible&&e[i].dataTable.rowCount)return i;i++}return -1}function tY(t){let e=t.allItems,i=[],s=e.length,a,o,r,n=0,l=0;for(n=0;n<s;n++)if(o=e[n].legendItem||{},r=(e[n+1]||{}).legendItem||{},o.labelHeight&&(e[n].itemHeight=o.labelHeight),e[n]===e[s-1]||o.y!==r.y){for(i.push({height:0}),a=i[i.length-1];l<=n;l++)e[l].itemHeight>a.height&&(a.height=e[l].itemHeight);a.step=n}return i}function tR(t){let e=this.bubbleLegend,i=this.options,s=i.bubbleLegend,a=tX(this.chart);e&&e.ranges&&e.ranges.length&&(s.ranges.length&&(s.autoRanges=!!s.ranges[0].autoRanges),this.destroyItem(e)),a>=0&&i.enabled&&s.enabled&&(s.seriesIndex=a,this.bubbleLegend=new tL(s,this),this.bubbleLegend.addToLegend(t.allItems))}function tI(t){let e;if(t.defaultPrevented)return!1;let i=t.legendItem,s=this.chart,a=i.visible;this&&this.bubbleLegend&&(i.visible=!a,i.ignoreSeries=a,e=tX(s)>=0,this.bubbleLegend.visible!==e&&(this.update({bubbleLegend:{enabled:e}}),this.bubbleLegend.visible=e),i.visible=a)}function tE(t,e){let i=t.allItems,s=t.options.rtl,a,o,r,n,l=0;i.forEach((t,i)=>{(n=t.legendItem||{}).group&&(a=n.group.translateX||0,o=n.y||0,((r=t.movementX)||s&&t.ranges)&&(r=s?a-t.options.maxSize/2:a+r,n.group.attr({translateX:r})),i>e[l].step&&l++,n.group.attr({translateY:Math.round(o+e[l].height/2)}),n.y=o+e[l].height/2)})}let tD=function(t,e){tT(tw,"Series.BubbleLegend")&&(tk({legend:{bubbleLegend:tu}}),tN(t.prototype,"drawChartBox",tC),tA(e,"afterGetAllItems",tR),tA(e,"itemClick",tI))},tz=t.default.Point;var tO=o.n(tz);let{seriesTypes:{scatter:{prototype:{pointClass:tB}}}}=h(),{extend:tW}=n();class tH extends tB{haloPath(t){let e=(t&&this.marker&&this.marker.radius||0)+t;if(this.series.chart.inverted){let t=this.pos()||[0,0],{xAxis:i,yAxis:s,chart:a}=this.series,o=2*e;return a.renderer.symbols.circle((i?.len||0)-t[1]-e,(s?.len||0)-t[0]-e,o,o)}return tO().prototype.haloPath.call(this,e)}}tW(tH.prototype,{ttBelow:!1});let{composed:tF,noop:tG}=n(),{series:tq,seriesTypes:{column:{prototype:tV},scatter:tU}}=h(),{addEvent:tK,arrayMax:t_,arrayMin:tZ,clamp:tj,extend:t$,isNumber:tQ,merge:tJ,pick:t0,pushUnique:t1}=n();function t2(){let t=this.len,{coll:e,isXAxis:i,min:s}=this,a=(this.max||0)-(s||0),o=0,r=t,n=t/a,l;("xAxis"===e||"yAxis"===e)&&(this.series.forEach(t=>{if(t.bubblePadding&&t.reserveSpace()){this.allowZoomOutside=!0,l=!0;let e=t.getColumn(i?"x":"y");if(i&&((t.onPoint||t).getRadii(0,0,t),t.onPoint&&(t.radii=t.onPoint.radii)),a>0){let i=e.length;for(;i--;)if(tQ(e[i])&&this.dataMin<=e[i]&&e[i]<=this.max){let a=t.radii&&t.radii[i]||0;o=Math.min((e[i]-s)*n-a,o),r=Math.max((e[i]-s)*n+a,r)}}}}),l&&a>0&&!this.logarithmic&&(r-=t,n*=(t+Math.max(0,o)-Math.min(r,t))/t,[["min","userMin",o],["max","userMax",r]].forEach(t=>{void 0===t0(this.options[t[0]],this[t[1]])&&(this[t[0]]+=t[2]/n)})))}function t3(){let{ticks:t,tickPositions:e,dataMin:i=0,dataMax:s=0,categories:a}=this,o=this.options.type;if((a?.length||"category"===o)&&this.series.find(t=>t.bubblePadding)){let a=e.length;for(;a--;){let o=t[e[a]],r=o.pos||0;(r>s||r<i)&&o.label?.hide()}}}class t5 extends tU{static compose(t,e,i){tD(e,i),t1(tF,"Series.Bubble")&&(tK(t,"foundExtremes",t2),tK(t,"afterRender",t3))}animate(t){!t&&this.points.length<this.options.animationLimit&&this.points.forEach(function(t){let{graphic:e,plotX:i=0,plotY:s=0}=t;e&&e.width&&(this.hasRendered||e.attr({x:i,y:s,width:1,height:1}),e.animate(this.markerAttribs(t),this.options.animation))},this)}getRadii(){let t=this.getColumn("z"),e=this.getColumn("y"),i=[],s,a,o,r=this.chart.bubbleZExtremes,{minPxSize:n,maxPxSize:l}=this.getPxExtremes();if(!r){let t,e=Number.MAX_VALUE,i=-Number.MAX_VALUE;this.chart.series.forEach(s=>{if(s.bubblePadding&&s.reserveSpace()){let a=(s.onPoint||s).getZExtremes();a&&(e=Math.min(t0(e,a.zMin),a.zMin),i=Math.max(t0(i,a.zMax),a.zMax),t=!0)}}),t?(r={zMin:e,zMax:i},this.chart.bubbleZExtremes=r):r={zMin:0,zMax:0}}for(a=0,s=t.length;a<s;a++)o=t[a],i.push(this.getRadius(r.zMin,r.zMax,n,l,o,e&&e[a]));this.radii=i}getRadius(t,e,i,s,a,o){let r=this.options,n="width"!==r.sizeBy,l=r.zThreshold,h=e-t,p=.5;if(null===o||null===a)return null;if(tQ(a)){if(r.sizeByAbsoluteValue&&(a=Math.abs(a-l),e=h=Math.max(e-l,Math.abs(t-l)),t=0),a<t)return i/2-1;h>0&&(p=(a-t)/h)}return n&&p>=0&&(p=Math.sqrt(p)),Math.ceil(i+p*(s-i))/2}hasData(){return!!this.dataTable.rowCount}markerAttribs(t,e){let i=super.markerAttribs(t,e),{height:s=0,width:a=0}=i;return this.chart.inverted?t$(i,{x:(t.plotX||0)-a/2,y:(t.plotY||0)-s/2}):i}pointAttribs(t,e){let i=this.options.marker,s=i?.fillOpacity,a=tq.prototype.pointAttribs.call(this,t,e);return a["fill-opacity"]=s??1,a}translate(){super.translate.call(this),this.getRadii(),this.translateBubble()}translateBubble(){let{data:t,options:e,radii:i}=this,{minPxSize:s}=this.getPxExtremes(),a=t.length;for(;a--;){let o=t[a],r=i?i[a]:0;"z"===this.zoneAxis&&(o.negative=(o.z||0)<(e.zThreshold||0)),tQ(r)&&r>=s/2?(o.marker=t$(o.marker,{radius:r,width:2*r,height:2*r}),o.dlBox={x:o.plotX-r,y:o.plotY-r,width:2*r,height:2*r}):(o.shapeArgs=o.plotY=o.dlBox=void 0,o.isInside=!1)}}getPxExtremes(){let t=Math.min(this.chart.plotWidth,this.chart.plotHeight),e=e=>{let i;return"string"==typeof e&&(i=/%$/.test(e),e=parseInt(e,10)),i?t*e/100:e},i=e(t0(this.options.minSize,8)),s=Math.max(e(t0(this.options.maxSize,"20%")),i);return{minPxSize:i,maxPxSize:s}}getZExtremes(){let t=this.options,e=this.getColumn("z").filter(tQ);if(e.length){let i=t0(t.zMin,tj(tZ(e),!1===t.displayNegative?t.zThreshold||0:-Number.MAX_VALUE,Number.MAX_VALUE)),s=t0(t.zMax,t_(e));if(tQ(i)&&tQ(s))return{zMin:i,zMax:s}}}searchKDTree(t,e,i,s=tG,a=tG){return s=(t,e,i)=>{let s=t[i]||0,a=e[i]||0,o,r=!1;return s===a?o=t.index>e.index?t:e:s<0&&a<0?(o=s-(t.marker?.radius||0)>=a-(e.marker?.radius||0)?t:e,r=!0):o=s<a?t:e,[o,r]},a=(t,e,i)=>!i&&t>e||t<e,super.searchKDTree(t,e,i,s,a)}}t5.defaultOptions=tJ(tU.defaultOptions,{dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{z:e}=this.point;return tQ(e)?t(e,-1):""},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5,radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"}),t$(t5.prototype,{alignDataLabel:tV.alignDataLabel,applyZones:tG,bubblePadding:!0,isBubble:!0,keysAffectYAxis:["y"],pointArrayMap:["y","z"],pointClass:tH,parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",zoneAxis:"z"}),tK(t5,"updatedData",t=>{delete t.target.chart.bubbleZExtremes}),tK(t5,"remove",t=>{delete t.target.chart.bubbleZExtremes}),h().registerSeriesType("bubble",t5);let{seriesTypes:{column:{prototype:{pointClass:{prototype:t8}}},arearange:{prototype:{pointClass:t6}}}}=h(),{extend:t9,isNumber:t4}=n();class t7 extends t6{isValid(){return t4(this.low)}}t9(t7.prototype,{setState:t8.setState});let{noop:et}=n(),{seriesTypes:{arearange:ee,column:ei,column:{prototype:es}}}=h(),{addEvent:ea,clamp:eo,extend:er,isNumber:en,merge:el,pick:eh}=n();class ep extends ee{setOptions(){return el(!0,arguments[0],{stacking:void 0}),ee.prototype.setOptions.apply(this,arguments)}translate(){return es.translate.apply(this)}pointAttribs(){return es.pointAttribs.apply(this,arguments)}translate3dPoints(){return es.translate3dPoints.apply(this,arguments)}translate3dShapes(){return es.translate3dShapes.apply(this,arguments)}afterColumnTranslate(){let t,e,i,s,a=this.yAxis,o=this.xAxis,r=o.startAngleRad,n=this.chart,l=this.xAxis.isRadial,h=Math.max(n.chartWidth,n.chartHeight)+999;this.points.forEach(p=>{let d=p.shapeArgs||{},c=this.options.minPointLength,u=p.plotY,g=a.translate(p.high,0,1,0,1);if(en(g)&&en(u))if(p.plotHigh=eo(g,-h,h),p.plotLow=eo(u,-h,h),s=p.plotHigh,Math.abs(t=eh(p.rectPlotY,p.plotY)-p.plotHigh)<c?(e=c-t,t+=e,s-=e/2):t<0&&(t*=-1,s-=t),l&&this.polar)i=p.barX+r,p.shapeType="arc",p.shapeArgs=this.polar.arc(s+t,s,i,i+p.pointWidth);else{d.height=t,d.y=s;let{x:e=0,width:i=0}=d;p.shapeArgs=el(p.shapeArgs,this.crispCol(e,s,i,t)),p.tooltipPos=n.inverted?[a.len+a.pos-n.plotLeft-s-t/2,o.len+o.pos-n.plotTop-e-i/2,t]:[o.left-n.plotLeft+e+i/2,a.pos-n.plotTop+s+t/2,t]}})}}ep.defaultOptions=el(ei.defaultOptions,ee.defaultOptions,{borderRadius:{where:"all"},pointRange:null,legendSymbol:"rectangle",marker:null,states:{hover:{halo:!1}}}),ea(ep,"afterColumnTranslate",function(){ep.prototype.afterColumnTranslate.apply(this)},{order:5}),er(ep.prototype,{directTouch:!0,pointClass:t7,trackerGroups:["group","dataLabelsGroup"],adjustForMissingColumns:es.adjustForMissingColumns,animate:es.animate,crispCol:es.crispCol,drawGraph:et,drawPoints:es.drawPoints,getSymbol:et,drawTracker:es.drawTracker,getColumnMetrics:es.getColumnMetrics}),h().registerSeriesType("columnrange",ep);let{column:ed}=h().seriesTypes,{clamp:ec,merge:eu,pick:eg}=n();class ef extends ed{translate(){let t=this.chart,e=this.options,i=this.dense=this.closestPointRange*this.xAxis.transA<2,s=this.borderWidth=eg(e.borderWidth,+!i),a=this.yAxis,o=e.threshold,r=eg(e.minPointLength,5),n=this.getColumnMetrics(),l=n.width,h=this.pointXOffset=n.offset,p=this.translatedThreshold=a.getThreshold(o),d=this.barW=Math.max(l,1+2*s);for(let i of(t.inverted&&(p-=.5),e.pointPadding&&(d=Math.ceil(d)),super.translate(),this.points)){let s=eg(i.yBottom,p),c=999+Math.abs(s),u=ec(i.plotY,-c,a.len+c),g=d/2,f=Math.min(u,s),m=Math.max(u,s)-f,b=i.plotX+h,y,x,P,M,v,L,k,w,A,S,T;e.centerInCategory&&(b=this.adjustForMissingColumns(b,l,i,n)),i.barX=b,i.pointWidth=l,i.tooltipPos=t.inverted?[a.len+a.pos-t.plotLeft-u,this.xAxis.len-b-g,m]:[b+g,u+a.pos-t.plotTop,m],y=o+(i.total||i.y),"percent"===e.stacking&&(y=o+(i.y<0)?-100:100);let N=a.toPixels(y,!0);P=(x=t.plotHeight-N-(t.plotHeight-p))?g*(f-N)/x:0,M=x?g*(f+m-N)/x:0,L=b-P+g,k=b+P+g,w=b+M+g,A=b-M+g,S=f-r,T=f+m,i.y<0&&(S=f,T=f+m+r),t.inverted&&(v=a.width-f,x=N-(a.width-p),P=g*(N-v)/x,M=g*(N-(v-m))/x,k=(L=b+g+P)-2*P,w=b-M+g,A=b+M+g,S=f,T=f+m-r,i.y<0&&(T=f+m+r)),i.shapeType="path",i.shapeArgs={x:L,y:S,width:k-L,height:m,d:[["M",L,S],["L",k,S],["L",w,T],["L",A,T],["Z"]]}}}}ef.defaultOptions=eu(ed.defaultOptions,{}),h().registerSeriesType("columnpyramid",ef);let{arearange:em}=h().seriesTypes,{addEvent:eb,merge:ey,extend:ex}=n();class eP extends tc{getColumnMetrics(){return this.linkedParent&&this.linkedParent.columnMetrics||ta().prototype.getColumnMetrics.call(this)}drawDataLabels(){let t=this.pointValKey;if(em)for(let e of(em.prototype.drawDataLabels.call(this),this.points))e.y=e[t]}toYData(t){return[t.low,t.high]}}eP.defaultOptions=ey(tc.defaultOptions,{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'<span style="color:{point.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},whiskerWidth:null}),eb(eP,"afterTranslate",function(){for(let t of this.points)t.plotLow=t.plotY},{order:0}),ex(eP.prototype,{pointArrayMap:["low","high"],pointValKey:"high",doQuartiles:!1}),h().registerSeriesType("errorbar",eP);let{series:{prototype:{pointClass:eM}}}=h(),{noop:ev}=n(),{series:eL,seriesTypes:{column:ek}}=h(),{clamp:ew,isNumber:eA,extend:eS,merge:eT,pick:eN,pInt:eC,defined:eX}=n();class eY extends eL{translate(){let t=this.yAxis,e=this.options,i=t.center;this.generatePoints(),this.points.forEach(s=>{let a=eT(e.dial,s.dial),o=eC(a.radius)*i[2]/200,r=eC(a.baseLength)*o/100,n=eC(a.rearLength)*o/100,l=a.baseWidth,h=a.topWidth,p=e.overshoot,d=t.startAngleRad+t.translate(s.y,void 0,void 0,void 0,!0);(eA(p)||!1===e.wrap)&&(p=eA(p)?p/180*Math.PI:0,d=ew(d,t.startAngleRad-p,t.endAngleRad+p)),d=180*d/Math.PI,s.shapeType="path",s.shapeArgs={d:a.path||[["M",-n,-l/2],["L",r,-l/2],["L",o,-h/2],["L",o,h/2],["L",r,l/2],["L",-n,l/2],["Z"]],translateX:i[0],translateY:i[1],rotation:d},s.plotX=i[0],s.plotY=i[1],eX(s.y)&&t.max-t.min&&(s.percentage=(s.y-t.min)/(t.max-t.min)*100)})}drawPoints(){let t=this,e=t.chart,i=t.yAxis.center,s=t.pivot,a=t.options,o=a.pivot,r=e.renderer;t.points.forEach(i=>{let s=i.graphic,o=i.shapeArgs,n=o.d,l=eT(a.dial,i.dial);s?(s.animate(o),o.d=n):i.graphic=r[i.shapeType](o).addClass("highcharts-dial").add(t.group),e.styledMode||i.graphic[s?"animate":"attr"]({stroke:l.borderColor,"stroke-width":l.borderWidth,fill:l.backgroundColor})}),s?s.animate({translateX:i[0],translateY:i[1]}):o&&(t.pivot=r.circle(0,0,o.radius).attr({zIndex:2}).addClass("highcharts-pivot").translate(i[0],i[1]).add(t.group),e.styledMode||t.pivot.attr({fill:o.backgroundColor,stroke:o.borderColor,"stroke-width":o.borderWidth}))}animate(t){let e=this;t||e.points.forEach(t=>{let i=t.graphic;i&&(i.attr({rotation:180*e.yAxis.startAngleRad/Math.PI}),i.animate({rotation:t.shapeArgs.rotation},e.options.animation))})}render(){this.group=this.plotGroup("group","series",this.visible?"inherit":"hidden",this.options.zIndex,this.chart.seriesGroup),eL.prototype.render.call(this),this.group.clip(this.chart.clipRect)}setData(t,e){eL.prototype.setData.call(this,t,!1),this.processData(),this.generatePoints(),eN(e,!0)&&this.chart.redraw()}hasData(){return!!this.points.length}}eY.defaultOptions=eT(eL.defaultOptions,{dataLabels:{borderColor:"#cccccc",borderRadius:3,borderWidth:1,crop:!1,defer:!1,enabled:!0,verticalAlign:"top",y:15,zIndex:2},dial:{backgroundColor:"#000000",baseLength:"70%",baseWidth:3,borderColor:"#cccccc",borderWidth:0,radius:"80%",rearLength:"10%",topWidth:1},pivot:{radius:5,borderWidth:0,borderColor:"#cccccc",backgroundColor:"#000000"},tooltip:{headerFormat:""},showInLegend:!1}),eS(eY.prototype,{angular:!0,directTouch:!0,drawGraph:ev,drawTracker:ek.prototype.drawTracker,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,pointClass:class extends eM{setState(t){this.state=t}},trackerGroups:["group","dataLabelsGroup"]}),h().registerSeriesType("gauge",eY);let eR=t.default.Color;var eI=o.n(eR);let{composed:eE}=n(),{addEvent:eD,pushUnique:ez}=n();function eO(){let t,e,i,s,a=this;a.container&&(t=eD(a.container,"mousedown",t=>{e&&e(),i&&i(),(s=a.hoverPoint)&&s.series&&s.series.hasDraggableNodes&&s.series.options.draggable&&(s.series.onMouseDown(s,t),e=eD(a.container,"mousemove",t=>s&&s.series&&s.series.onMouseMove(s,t)),i=eD(a.container.ownerDocument,"mouseup",t=>(e(),i(),s&&s.series&&s.series.onMouseUp(s,t))))})),eD(a,"destroy",function(){t()})}let eB={compose:function(t){ez(eE,"DragNodes")&&eD(t,"load",eO)},onMouseDown:function(t,e){let{panKey:i}=this.chart.options.chart;if(i&&e[`${i}Key`])return;let s=this.chart.pointer?.normalize(e)||e;t.fixedPosition={chartX:s.chartX,chartY:s.chartY,plotX:t.plotX,plotY:t.plotY},t.inDragMode=!0},onMouseMove:function(t,e){if(t.fixedPosition&&t.inDragMode){let i,s,a=this.chart,o=a.pointer?.normalize(e)||e,r=t.fixedPosition.chartX-o.chartX,n=t.fixedPosition.chartY-o.chartY,l=a.graphLayoutsLookup;(Math.abs(r)>5||Math.abs(n)>5)&&(i=t.fixedPosition.plotX-r,s=t.fixedPosition.plotY-n,a.isInsidePlot(i,s)&&(t.plotX=i,t.plotY=s,t.hasDragged=!0,this.redrawHalo(t),l.forEach(t=>{t.restartSimulation()})))}},onMouseUp:function(t){t.fixedPosition&&(t.hasDragged&&(this.layout.enableSimulation?this.layout.start():this.chart.redraw()),t.inDragMode=t.hasDragged=!1,this.options.fixedDraggable||delete t.fixedPosition)},redrawHalo:function(t){t&&this.halo&&this.halo.attr({d:t.haloPath(this.options.states.hover.halo.size)})}},{setAnimation:eW}=n(),{composed:eH}=n(),{addEvent:eF,pushUnique:eG}=n();function eq(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation()}),this.redraw())}function eV(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation(!1)}),this.redraw())}function eU(){this.graphLayoutsLookup&&this.graphLayoutsLookup.forEach(t=>{t.stop()})}function eK(){let t,e=!1,i=i=>{i.maxIterations--&&isFinite(i.temperature)&&!i.isStable()&&!i.enableSimulation&&(i.beforeStep&&i.beforeStep(),i.step(),t=!1,e=!0)};if(this.graphLayoutsLookup&&!this.pointer?.hasDragged){for(eW(!1,this),this.graphLayoutsLookup.forEach(t=>t.start());!t;)t=!0,this.graphLayoutsLookup.forEach(i);e&&this.series.forEach(t=>{t&&t.layout&&t.render()})}}let e_={compose:function(t){eG(eH,"GraphLayout")&&(eF(t,"afterPrint",eq),eF(t,"beforePrint",eV),eF(t,"predraw",eU),eF(t,"render",eK))},integrations:{},layouts:{}},eZ=t.default.Chart;var ej=o.n(eZ);let{seriesTypes:{bubble:{prototype:{pointClass:e$}}}}=h(),eQ=class extends e${destroy(){return this.series?.layout&&this.series.layout.removeElementFromCollection(this,this.series.layout.nodes),tO().prototype.destroy.apply(this,arguments)}firePointEvent(){let t=this.series.options;if(this.isParentNode&&t.parentNode){let e=t.allowPointSelect;t.allowPointSelect=t.parentNode.allowPointSelect,tO().prototype.firePointEvent.apply(this,arguments),t.allowPointSelect=e}else tO().prototype.firePointEvent.apply(this,arguments)}select(){let t=this.series.chart;this.isParentNode?(t.getSelectedPoints=t.getSelectedParentNodes,tO().prototype.select.apply(this,arguments),t.getSelectedPoints=ej().prototype.getSelectedPoints):tO().prototype.select.apply(this,arguments)}setState(t,e){this?.graphic?.parentGroup?.element&&super.setState(t,e)}},{isNumber:eJ}=n(),e0={attractive:function(t,e,i){let s=t.getMass(),a=-i.x*e*this.diffTemperature,o=-i.y*e*this.diffTemperature;t.fromNode.fixedPosition||(t.fromNode.plotX-=a*s.fromNode/t.fromNode.degree,t.fromNode.plotY-=o*s.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.plotX+=a*s.toNode/t.toNode.degree,t.toNode.plotY+=o*s.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return(e-t)/t},barycenter:function(){let t=this.options.gravitationalConstant||0,e=(this.barycenter.xFactor-(this.box.left+this.box.width)/2)*t,i=(this.barycenter.yFactor-(this.box.top+this.box.height)/2)*t;this.nodes.forEach(function(t){t.fixedPosition||(t.plotX-=e/t.mass/t.degree,t.plotY-=i/t.mass/t.degree)})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.5)},integrate:function(t,e){let i=-t.options.friction,s=t.options.maxSpeed,a=e.prevX,o=e.prevY,r=(e.plotX+e.dispX-a)*i,n=(e.plotY+e.dispY-o)*i,l=Math.abs,h=l(r)/(r||1),p=l(n)/(n||1),d=h*Math.min(s,Math.abs(r)),c=p*Math.min(s,Math.abs(n));e.prevX=e.plotX+e.dispX,e.prevY=e.plotY+e.dispY,e.plotX+=d,e.plotY+=c,e.temperature=t.vectorLength({x:d,y:c})},repulsive:function(t,e,i){let s=e*this.diffTemperature/t.mass/t.degree;t.fixedPosition||(t.plotX+=i.x*s,t.plotY+=i.y*s)},repulsiveForceFunction:function(t,e){return(e-t)/t*(e>t)}},{noop:e1}=n(),e2={barycenter:function(){let t,e,i=this.options.gravitationalConstant||0,s=this.box,a=this.nodes,o=Math.sqrt(a.length);for(let r of a)if(!r.fixedPosition){let a=r.mass*o,n=r.plotX||0,l=r.plotY||0,h=r.series,p=h.parentNode;this.resolveSplitSeries(r)&&p&&!r.isParentNode?(t=p.plotX||0,e=p.plotY||0):(t=s.width/2,e=s.height/2),r.plotX=n-(n-t)*i/a,r.plotY=l-(l-e)*i/a,h.chart.hoverPoint===r&&h.redrawHalo&&h.halo&&h.redrawHalo(r)}},getK:e1,integrate:e0.integrate,repulsive:function(t,e,i,s){let a=e*this.diffTemperature/t.mass/t.degree,o=i.x*a,r=i.y*a;t.fixedPosition||(t.plotX+=o,t.plotY+=r),s.fixedPosition||(s.plotX-=o,s.plotY-=r)},repulsiveForceFunction:function(t,e,i,s){return Math.min(t,(i.marker.radius+s.marker.radius)/2)}},e3={attractive:function(t,e,i,s){let a=t.getMass(),o=i.x/s*e,r=i.y/s*e;t.fromNode.fixedPosition||(t.fromNode.dispX-=o*a.fromNode/t.fromNode.degree,t.fromNode.dispY-=r*a.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.dispX+=o*a.toNode/t.toNode.degree,t.toNode.dispY+=r*a.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return t*t/e},barycenter:function(){let t=this.options.gravitationalConstant,e=this.barycenter.xFactor,i=this.barycenter.yFactor;this.nodes.forEach(function(s){if(!s.fixedPosition){let a=s.getDegree(),o=a*(1+a/2);s.dispX+=(e-s.plotX)*t*o/s.degree,s.dispY+=(i-s.plotY)*t*o/s.degree}})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.3)},integrate:function(t,e){e.dispX+=e.dispX*t.options.friction,e.dispY+=e.dispY*t.options.friction;let i=e.temperature=t.vectorLength({x:e.dispX,y:e.dispY});0!==i&&(e.plotX+=e.dispX/i*Math.min(Math.abs(e.dispX),t.temperature),e.plotY+=e.dispY/i*Math.min(Math.abs(e.dispY),t.temperature))},repulsive:function(t,e,i,s){t.dispX+=i.x/s*e/t.degree,t.dispY+=i.y/s*e/t.degree},repulsiveForceFunction:function(t,e){return e*e/t}};class e5{constructor(t){this.body=!1,this.isEmpty=!1,this.isInternal=!1,this.nodes=[],this.box=t,this.boxSize=Math.min(t.width,t.height)}divideBox(){let t=this.box.width/2,e=this.box.height/2;this.nodes[0]=new e5({left:this.box.left,top:this.box.top,width:t,height:e}),this.nodes[1]=new e5({left:this.box.left+t,top:this.box.top,width:t,height:e}),this.nodes[2]=new e5({left:this.box.left+t,top:this.box.top+e,width:t,height:e}),this.nodes[3]=new e5({left:this.box.left,top:this.box.top+e,width:t,height:e})}getBoxPosition(t){let e=t.plotX<this.box.left+this.box.width/2,i=t.plotY<this.box.top+this.box.height/2;return e?3*!i:i?1:2}insert(t,e){let i;this.isInternal?this.nodes[this.getBoxPosition(t)].insert(t,e-1):(this.isEmpty=!1,this.body?e?(this.isInternal=!0,this.divideBox(),!0!==this.body&&(this.nodes[this.getBoxPosition(this.body)].insert(this.body,e-1),this.body=!0),this.nodes[this.getBoxPosition(t)].insert(t,e-1)):((i=new e5({top:t.plotX||NaN,left:t.plotY||NaN,width:.1,height:.1})).body=t,i.isInternal=!1,this.nodes.push(i)):(this.isInternal=!1,this.body=t))}updateMassAndCenter(){let t=0,e=0,i=0;if(this.isInternal){for(let s of this.nodes)s.isEmpty||(t+=s.mass,e+=s.plotX*s.mass,i+=s.plotY*s.mass);e/=t,i/=t}else this.body&&(t=this.body.mass,e=this.body.plotX,i=this.body.plotY);this.mass=t,this.plotX=e,this.plotY=i}}let e8=class{constructor(t,e,i,s){this.box={left:t,top:e,width:i,height:s},this.maxDepth=25,this.root=new e5(this.box),this.root.isInternal=!0,this.root.isRoot=!0,this.root.divideBox()}calculateMassAndCenter(){this.visitNodeRecursive(null,null,function(t){t.updateMassAndCenter()})}insertNodes(t){for(let e of t)this.root.insert(e,this.maxDepth)}visitNodeRecursive(t,e,i){let s;if(t||(t=this.root),t===this.root&&e&&(s=e(t)),!1!==s){for(let a of t.nodes){if(a.isInternal){if(e&&(s=e(a)),!1===s)continue;this.visitNodeRecursive(a,e,i)}else a.body&&e&&e(a.body);i&&i(a)}t===this.root&&i&&i(t)}}},{win:e6}=n(),{clamp:e9,defined:e4,isFunction:e7,fireEvent:it,pick:ie}=n();class ii{constructor(){this.box={},this.currentStep=0,this.initialRendering=!0,this.links=[],this.nodes=[],this.series=[],this.simulation=!1}static compose(t){e_.compose(t),e_.integrations.euler=e3,e_.integrations.verlet=e0,e_.layouts["reingold-fruchterman"]=ii}init(t){this.options=t,this.nodes=[],this.links=[],this.series=[],this.box={x:0,y:0,width:0,height:0},this.setInitialRendering(!0),this.integration=e_.integrations[t.integration],this.enableSimulation=t.enableSimulation,this.attractiveForce=ie(t.attractiveForce,this.integration.attractiveForceFunction),this.repulsiveForce=ie(t.repulsiveForce,this.integration.repulsiveForceFunction),this.approximation=t.approximation}updateSimulation(t){this.enableSimulation=ie(t,this.options.enableSimulation)}start(){let t=this.series,e=this.options;this.currentStep=0,this.forces=t[0]&&t[0].forces||[],this.chart=t[0]&&t[0].chart,this.initialRendering&&(this.initPositions(),t.forEach(function(t){t.finishedAnimating=!0,t.render()})),this.setK(),this.resetSimulation(e),this.enableSimulation&&this.step()}step(){let t=this.series;for(let t of(this.currentStep++,"barnes-hut"===this.approximation&&(this.createQuadTree(),this.quadTree.calculateMassAndCenter()),this.forces||[]))this[t+"Forces"](this.temperature);if(this.applyLimits(),this.temperature=this.coolDown(this.startTemperature,this.diffTemperature,this.currentStep),this.prevSystemTemperature=this.systemTemperature,this.systemTemperature=this.getSystemTemperature(),this.enableSimulation){for(let e of t)e.chart&&e.render();this.maxIterations--&&isFinite(this.temperature)&&!this.isStable()?(this.simulation&&e6.cancelAnimationFrame(this.simulation),this.simulation=e6.requestAnimationFrame(()=>this.step())):(this.simulation=!1,this.series.forEach(t=>{it(t,"afterSimulation")}))}}stop(){this.simulation&&e6.cancelAnimationFrame(this.simulation)}setArea(t,e,i,s){this.box={left:t,top:e,width:i,height:s}}setK(){this.k=this.options.linkLength||this.integration.getK(this)}addElementsToCollection(t,e){for(let i of t)-1===e.indexOf(i)&&e.push(i)}removeElementFromCollection(t,e){let i=e.indexOf(t);-1!==i&&e.splice(i,1)}clear(){this.nodes.length=0,this.links.length=0,this.series.length=0,this.resetSimulation()}resetSimulation(){this.forcedStop=!1,this.systemTemperature=0,this.setMaxIterations(),this.setTemperature(),this.setDiffTemperature()}restartSimulation(){this.simulation?this.resetSimulation():(this.setInitialRendering(!1),this.enableSimulation?this.start():this.setMaxIterations(1),this.chart&&this.chart.redraw(),this.setInitialRendering(!0))}setMaxIterations(t){this.maxIterations=ie(t,this.options.maxIterations)}setTemperature(){this.temperature=this.startTemperature=Math.sqrt(this.nodes.length)}setDiffTemperature(){this.diffTemperature=this.startTemperature/(this.options.maxIterations+1)}setInitialRendering(t){this.initialRendering=t}createQuadTree(){this.quadTree=new e8(this.box.left,this.box.top,this.box.width,this.box.height),this.quadTree.insertNodes(this.nodes)}initPositions(){let t=this.options.initialPositions;if(e7(t))for(let e of(t.call(this),this.nodes))e4(e.prevX)||(e.prevX=e.plotX),e4(e.prevY)||(e.prevY=e.plotY),e.dispX=0,e.dispY=0;else"circle"===t?this.setCircularPositions():this.setRandomPositions()}setCircularPositions(){let t,e=this.box,i=this.nodes,s=2*Math.PI/(i.length+1),a=i.filter(function(t){return 0===t.linksTo.length}),o={},r=this.options.initialPositionRadius,n=t=>{for(let e of t.linksFrom||[])o[e.toNode.id]||(o[e.toNode.id]=!0,l.push(e.toNode),n(e.toNode))},l=[];for(let t of a)l.push(t),n(t);if(l.length)for(let t of i)-1===l.indexOf(t)&&l.push(t);else l=i;for(let i=0,a=l.length;i<a;++i)(t=l[i]).plotX=t.prevX=ie(t.plotX,e.width/2+r*Math.cos(i*s)),t.plotY=t.prevY=ie(t.plotY,e.height/2+r*Math.sin(i*s)),t.dispX=0,t.dispY=0}setRandomPositions(){let t,e=this.box,i=this.nodes,s=i.length+1,a=t=>{let e=t*t/Math.PI;return e-Math.floor(e)};for(let o=0,r=i.length;o<r;++o)(t=i[o]).plotX=t.prevX=ie(t.plotX,e.width*a(o)),t.plotY=t.prevY=ie(t.plotY,e.height*a(s+o)),t.dispX=0,t.dispY=0}force(t,...e){this.integration[t].apply(this,e)}barycenterForces(){this.getBarycenter(),this.force("barycenter")}getBarycenter(){let t=0,e=0,i=0;for(let s of this.nodes)e+=s.plotX*s.mass,i+=s.plotY*s.mass,t+=s.mass;return this.barycenter={x:e,y:i,xFactor:e/t,yFactor:i/t},this.barycenter}barnesHutApproximation(t,e){let i,s,a=this.getDistXY(t,e),o=this.vectorLength(a);return t!==e&&0!==o&&(e.isInternal?e.boxSize/o<this.options.theta&&0!==o?(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o),i=!1):i=!0:(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o))),i}repulsiveForces(){if("barnes-hut"===this.approximation)for(let t of this.nodes)this.quadTree.visitNodeRecursive(null,e=>this.barnesHutApproximation(t,e));else{let t,e,i;for(let s of this.nodes)for(let a of this.nodes)s===a||s.fixedPosition||(i=this.getDistXY(s,a),0!==(e=this.vectorLength(i))&&(t=this.repulsiveForce(e,this.k),this.force("repulsive",s,t*a.mass,i,e)))}}attractiveForces(){let t,e,i;for(let s of this.links)s.fromNode&&s.toNode&&(t=this.getDistXY(s.fromNode,s.toNode),0!==(e=this.vectorLength(t))&&(i=this.attractiveForce(e,this.k),this.force("attractive",s,i,t,e)))}applyLimits(){for(let t of this.nodes)t.fixedPosition||(this.integration.integrate(this,t),this.applyLimitBox(t,this.box),t.dispX=0,t.dispY=0)}applyLimitBox(t,e){let i=t.radius;t.plotX=e9(t.plotX,e.left+i,e.width-i),t.plotY=e9(t.plotY,e.top+i,e.height-i)}coolDown(t,e,i){return t-e*i}isStable(){return 1e-5>Math.abs(this.systemTemperature-this.prevSystemTemperature)||this.temperature<=0}getSystemTemperature(){let t=0;for(let e of this.nodes)t+=e.temperature;return t}vectorLength(t){return Math.sqrt(t.x*t.x+t.y*t.y)}getDistR(t,e){let i=this.getDistXY(t,e);return this.vectorLength(i)}getDistXY(t,e){let i=t.plotX-e.plotX,s=t.plotY-e.plotY;return{x:i,y:s,absX:Math.abs(i),absY:Math.abs(s)}}}let is=ii,{addEvent:ia,defined:io,pick:ir}=n();function il(){let t=this.series,e=[];return t.forEach(t=>{t.parentNode&&t.parentNode.selected&&e.push(t.parentNode)}),e}function ih(){this.allDataPoints&&delete this.allDataPoints}class ip extends is{constructor(){super(...arguments),this.index=NaN,this.nodes=[],this.series=[]}static compose(t){is.compose(t),e_.integrations.packedbubble=e2,e_.layouts.packedbubble=ip;let e=t.prototype;e.getSelectedParentNodes||(ia(t,"beforeRedraw",ih),e.getSelectedParentNodes=il),e.allParentNodes||(e.allParentNodes=[])}beforeStep(){this.options.marker&&this.series.forEach(t=>{t&&t.calculateParentRadius()})}isStable(){let t=Math.abs(this.prevSystemTemperature-this.systemTemperature);return 1>Math.abs(10*this.systemTemperature/Math.sqrt(this.nodes.length))&&t<1e-5||this.temperature<=0}setCircularPositions(){let t=this.box,e=[...this.nodes,...this?.chart?.allParentNodes||[]],i=2*Math.PI/(e.length+1),s=this.options.initialPositionRadius,a,o,r=0;for(let n of e)this.resolveSplitSeries(n)&&!n.isParentNode?(a=n.series.parentNode.plotX,o=n.series.parentNode.plotY):(a=t.width/2,o=t.height/2),n.plotX=n.prevX=ir(n.plotX,a+s*Math.cos(n.index||r*i)),n.plotY=n.prevY=ir(n.plotY,o+s*Math.sin(n.index||r*i)),n.dispX=0,n.dispY=0,r++}repulsiveForces(){let{options:t,k:e}=this,{bubblePadding:i=0,seriesInteraction:s}=t,a=[...this.nodes,...this?.chart?.allParentNodes||[]];for(let t of a){let o=t.series,r=t.fixedPosition,n=(t.marker?.radius||0)+i;for(let i of(t.degree=t.mass,t.neighbours=0,a)){let a=i.series;if(t!==i&&!r&&(s||o===a)&&!(o===a&&(i.isParentNode||t.isParentNode))){let s,a=this.getDistXY(t,i),o=this.vectorLength(a)-(n+(i.marker?.radius||0));o<0&&(t.degree+=.01,s=this.repulsiveForce(-o/Math.sqrt(++t.neighbours),e,t,i)*i.mass),this.force("repulsive",t,s||0,a,i,o)}}}}resolveSplitSeries(t){let e=t.series?.options?.layoutAlgorithm?.splitSeries;return!io(e)&&t.series.chart?.options?.plotOptions?.packedbubble?.layoutAlgorithm?.splitSeries||e||!1}applyLimitBox(t,e){let i,s;this.resolveSplitSeries(t)&&!t.isParentNode&&this.options.parentNodeLimit&&(i=this.getDistXY(t,t.series.parentNode),(s=t.series.parentNodeRadius-t.marker.radius-this.vectorLength(i))<0&&s>-2*t.marker.radius&&(t.plotX-=.01*i.x,t.plotY-=.01*i.y)),super.applyLimitBox(t,e)}}e_.layouts.packedbubble=ip;let{merge:id,syncTimeout:ic}=n(),{animObject:iu}=n(),ig=t.default.SVGElement;var im=o.n(ig);let{deg2rad:ib}=n(),{addEvent:iy,merge:ix,uniqueKey:iP,defined:iM,extend:iv}=n();function iL(t,e){e=ix(!0,{enabled:!0,attributes:{dy:-5,startOffset:"50%",textAnchor:"middle"}},e);let i=this.renderer.url,s=this.text||this,a=s.textPath,{attributes:o,enabled:r}=e;if(t=t||a&&a.path,a&&a.undo(),t&&r){let e=iy(s,"afterModifyTree",e=>{if(t&&r){let a=t.attr("id");a||t.attr("id",a=iP());let r={x:0,y:0};iM(o.dx)&&(r.dx=o.dx,delete o.dx),iM(o.dy)&&(r.dy=o.dy,delete o.dy),s.attr(r),this.attr({transform:""}),this.box&&(this.box=this.box.destroy());let n=e.nodes.slice(0);e.nodes.length=0,e.nodes[0]={tagName:"textPath",attributes:iv(o,{"text-anchor":o.textAnchor,href:`${i}#${a}`}),children:n}}});s.textPath={path:t,undo:e}}else s.attr({dx:0,dy:0}),delete s.textPath;return this.added&&(s.textCache="",this.renderer.buildText(s)),this}function ik(t){let e=t.bBox,i=this.element?.querySelector("textPath");if(i){let t=[],{b:s,h:a}=this.renderer.fontMetrics(this.element),o=a-s,r=RegExp('(<tspan>|<tspan(?!\\sclass="highcharts-br")[^>]*>|<\\/tspan>)',"g"),n=i.innerHTML.replace(r,"").split(/<tspan class="highcharts-br"[^>]*>/),l=n.length,h=(t,e)=>{let{x:a,y:r}=e,n=(i.getRotationOfChar(t)-90)*ib,l=Math.cos(n),h=Math.sin(n);return[[a-o*l,r-o*h],[a+s*l,r+s*h]]};for(let e=0,s=0;s<l;s++){let a=n[s].length;for(let o=0;o<a;o+=5)try{let a=e+o+s,[r,n]=h(a,i.getStartPositionOfChar(a));0===o?(t.push(n),t.push(r)):(0===s&&t.unshift(n),s===l-1&&t.push(r))}catch{break}e+=a-1;try{let a=e+s,o=i.getEndPositionOfChar(a),[r,n]=h(a,o);t.unshift(n),t.unshift(r)}catch{break}}t.length&&t.push(t[0].slice()),e.polygon=t}return e}function iw(t){let e=t.labelOptions,i=t.point,s=e[i.formatPrefix+"TextPath"]||e.textPath;s&&!e.useHTML&&(this.setTextPath(i.getDataLabelPath?.(this)||i.graphic,s),i.dataLabelPath&&!s.enabled&&(i.dataLabelPath=i.dataLabelPath.destroy()))}let{parse:iA}=eI(),{noop:iS}=n(),{series:{prototype:iT},seriesTypes:{bubble:iN}}=h(),{initDataLabels:iC,initDataLabelsDefer:iX}={initDataLabels:function(){let t=this.options.dataLabels;if(!this.dataLabelsGroup){let e=this.initDataLabelsGroup();return!this.chart.styledMode&&t?.style&&e.css(t.style),e.attr({opacity:0}),this.visible&&(this.options.animation&&t?.animation?e.animate({opacity:1},t?.animation):e.attr({opacity:1}),e.show()),e}return this.dataLabelsGroup.attr(id({opacity:1},this.getPlotBox("data-labels"))),this.dataLabelsGroup},initDataLabelsDefer:function(){let t=this.options.dataLabels;t?.defer&&this.options.layoutAlgorithm?.enableSimulation?ic(()=>{this.deferDataLabels=!1},t?iu(t.animation).defer:0):this.deferDataLabels=!1}},{addEvent:iY,clamp:iR,defined:iI,extend:iE,fireEvent:iD,isArray:iz,isNumber:iO,merge:iB,pick:iW}=n();({compose:function(t){iy(t,"afterGetBBox",ik),iy(t,"beforeAddingDataLabel",iw);let e=t.prototype;e.setTextPath||(e.setTextPath=iL)}}).compose(im());class iH extends iN{constructor(){super(...arguments),this.parentNodeMass=0,this.deferDataLabels=!0}static compose(t,e,i){iN.compose(t,e,i),eB.compose(e),ip.compose(e)}accumulateAllPoints(){let t=this.chart,e=[];for(let i of t.series)if(i.is("packedbubble")&&i.reserveSpace()){let t=i.getColumn("value");for(let s=0;s<t.length;s++)e.push([null,null,t[s],i.index,s,{id:s,marker:{radius:0}}])}return e}addLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.options.chart,s=this.chart.graphLayoutsStorage,a=this.chart.graphLayoutsLookup,o;s||(this.chart.graphLayoutsStorage=s={},this.chart.graphLayoutsLookup=a=[]),(o=s[e])||(t.enableSimulation=iI(i.forExport)?!i.forExport:t.enableSimulation,s[e]=o=new e_.layouts[e],o.init(t),a.splice(o.index,0,o)),this.layout=o,this.points.forEach(t=>{t.mass=2,t.degree=1,t.collisionNmb=1}),o.setArea(0,0,this.chart.plotWidth,this.chart.plotHeight),o.addElementsToCollection([this],o.series),o.addElementsToCollection(this.points,o.nodes)}addSeriesLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.graphLayoutsStorage,s=this.chart.graphLayoutsLookup,a=iB(t,t.parentNodeOptions,{enableSimulation:this.layout.options.enableSimulation}),o=i[e+"-series"];o||(i[e+"-series"]=o=new e_.layouts[e],o.init(a),s.splice(o.index,0,o)),this.parentNodeLayout=o,this.createParentNodes()}calculateParentRadius(){let t=this.seriesBox();this.parentNodeRadius=iR(Math.sqrt(2*this.parentNodeMass/Math.PI)+20,20,t?Math.max(Math.sqrt(Math.pow(t.width,2)+Math.pow(t.height,2))/2+20,20):Math.sqrt(2*this.parentNodeMass/Math.PI)+20),this.parentNode&&(this.parentNode.marker.radius=this.parentNode.radius=this.parentNodeRadius)}calculateZExtremes(){let t=this.chart.series,e=this.options.zMin,i=this.options.zMax,s=1/0,a=-1/0;return e&&i?[e,i]:(t.forEach(t=>{t.getColumn("value").forEach(t=>{iI(t)&&(t>a&&(a=t),t<s&&(s=t))})}),[e=iW(e,s),i=iW(i,a)])}checkOverlap(t,e){let i=t[0]-e[0],s=t[1]-e[1];return Math.sqrt(i*i+s*s)-Math.abs(t[2]+e[2])<-.001}createParentNodes(){let t=this.pointClass,e=this.chart,i=this.parentNodeLayout,s=this.layout.options,a,o=this.parentNode,r={radius:this.parentNodeRadius,lineColor:this.color,fillColor:iA(this.color).brighten(.4).get()};s.parentNodeOptions&&(r=iB(s.parentNodeOptions.marker||{},r)),this.parentNodeMass=0,this.points.forEach(t=>{this.parentNodeMass+=Math.PI*Math.pow(t.marker.radius,2)}),this.calculateParentRadius(),i.nodes.forEach(t=>{t.seriesIndex===this.index&&(a=!0)}),i.setArea(0,0,e.plotWidth,e.plotHeight),a||(o||(o=new t(this,{mass:this.parentNodeRadius/2,marker:r,dataLabels:{inside:!1},states:{normal:{marker:r},hover:{marker:r}},dataLabelOnNull:!0,degree:this.parentNodeRadius,isParentNode:!0,seriesIndex:this.index}),this.chart.allParentNodes.push(o)),this.parentNode&&(o.plotX=this.parentNode.plotX,o.plotY=this.parentNode.plotY),this.parentNode=o,i.addElementsToCollection([this],i.series),i.addElementsToCollection([o],i.nodes))}deferLayout(){let t=this.options.layoutAlgorithm;this.visible&&(this.addLayout(),t.splitSeries&&this.addSeriesLayout())}destroy(){this.chart.graphLayoutsLookup&&this.chart.graphLayoutsLookup.forEach(t=>{t.removeElementFromCollection(this,t.series)},this),this.parentNode&&this.parentNodeLayout&&(this.parentNodeLayout.removeElementFromCollection(this.parentNode,this.parentNodeLayout.nodes),this.parentNode.dataLabel&&(this.parentNode.dataLabel=this.parentNode.dataLabel.destroy())),iT.destroy.apply(this,arguments)}drawDataLabels(){!this.deferDataLabels&&(iT.drawDataLabels.call(this,this.points),this.parentNode&&(this.parentNode.formatPrefix="parentNode",iT.drawDataLabels.call(this,[this.parentNode])))}drawGraph(){if(!this.layout||!this.layout.options.splitSeries)return;let t=this.chart,e=this.layout.options.parentNodeOptions.marker,i={fill:e.fillColor||iA(this.color).brighten(.4).get(),opacity:e.fillOpacity,stroke:e.lineColor||this.color,"stroke-width":iW(e.lineWidth,this.options.lineWidth)},s={};this.parentNodesGroup=this.plotGroup("parentNodesGroup","parentNode",this.visible?"inherit":"hidden",.1,t.seriesGroup),this.group?.attr({zIndex:2}),this.calculateParentRadius(),this.parentNode&&iI(this.parentNode.plotX)&&iI(this.parentNode.plotY)&&iI(this.parentNodeRadius)&&(s=iB({x:this.parentNode.plotX-this.parentNodeRadius,y:this.parentNode.plotY-this.parentNodeRadius,width:2*this.parentNodeRadius,height:2*this.parentNodeRadius},i),this.parentNode.graphic||(this.graph=this.parentNode.graphic=t.renderer.symbol(i.symbol).add(this.parentNodesGroup)),this.parentNode.graphic.attr(s))}drawTracker(){let t,e=this.parentNode;super.drawTracker(),e&&(t=iz(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[],e.graphic&&(e.graphic.element.point=e),t.forEach(t=>{(t.div||t.element).point=e}))}getPointRadius(){let t,e,i,s,a=this.chart,o=a.plotWidth,r=a.plotHeight,n=this.options,l=n.useSimulation,h=Math.min(o,r),p={},d=[],c=a.allDataPoints||[],u=c.length;["minSize","maxSize"].forEach(t=>{let e=parseInt(n[t],10),i=/%$/.test(n[t]);p[t]=i?h*e/100:e*Math.sqrt(u)}),a.minRadius=t=p.minSize/Math.sqrt(u),a.maxRadius=e=p.maxSize/Math.sqrt(u);let g=l?this.calculateZExtremes():[t,e];c.forEach((a,o)=>{i=l?iR(a[2],g[0],g[1]):a[2],0===(s=this.getRadius(g[0],g[1],t,e,i))&&(s=null),c[o][2]=s,d.push(s)}),this.radii=d}init(){return iT.init.apply(this,arguments),iX.call(this),this.eventsToUnbind.push(iY(this,"updatedData",function(){this.chart.series.forEach(t=>{t.type===this.type&&(t.isDirty=!0)},this)})),this}onMouseUp(t){if(t.fixedPosition&&!t.removed){let e,i=this.layout,s=this.parentNodeLayout;!t.isParentNode&&s&&i.options.dragBetweenSeries&&s.nodes.forEach(s=>{t&&t.marker&&s!==t.series.parentNode&&(e=i.getDistXY(t,s),i.vectorLength(e)-s.marker.radius-t.marker.radius<0&&(s.series.addPoint(iB(t.options,{plotX:t.plotX,plotY:t.plotY}),!1),i.removeElementFromCollection(t,i.nodes),t.remove()))}),eB.onMouseUp.apply(this,arguments)}}placeBubbles(t){let e=this.checkOverlap,i=this.positionBubble,s=[],a=1,o=0,r=0,n,l=[],h,p=t.sort((t,e)=>e[2]-t[2]);if(p.length){if(s.push([[0,0,p[0][2],p[0][3],p[0][4]]]),p.length>1)for(s.push([[0,0-p[1][2]-p[0][2],p[1][2],p[1][3],p[1][4]]]),h=2;h<p.length;h++)p[h][2]=p[h][2]||1,e(n=i(s[a][o],s[a-1][r],p[h]),s[a][0])?(s.push([]),r=0,s[a+1].push(i(s[a][o],s[a][0],p[h])),a++,o=0):a>1&&s[a-1][r+1]&&e(n,s[a-1][r+1])?(r++,s[a].push(i(s[a][o],s[a-1][r],p[h])),o++):(o++,s[a].push(n));this.chart.stages=s,this.chart.rawPositions=[].concat.apply([],s),this.resizeRadius(),l=this.chart.rawPositions}return l}pointAttribs(t,e){let i=this.options,s=t&&t.isParentNode,a=i.marker;s&&i.layoutAlgorithm&&i.layoutAlgorithm.parentNodeOptions&&(a=i.layoutAlgorithm.parentNodeOptions.marker);let o=a.fillOpacity,r=iT.pointAttribs.call(this,t,e);return 1!==o&&(r["fill-opacity"]=o),r}positionBubble(t,e,i){let s=Math.asin,a=Math.acos,o=Math.pow,r=Math.abs,n=(0,Math.sqrt)(o(t[0]-e[0],2)+o(t[1]-e[1],2)),l=a((o(n,2)+o(i[2]+e[2],2)-o(i[2]+t[2],2))/(2*(i[2]+e[2])*n)),h=s(r(t[0]-e[0])/n),p=(t[1]-e[1]<0?0:Math.PI)+l+h*((t[0]-e[0])*(t[1]-e[1])<0?1:-1),d=Math.cos(p),c=Math.sin(p);return[e[0]+(e[2]+i[2])*c,e[1]-(e[2]+i[2])*d,i[2],i[3],i[4]]}render(){let t=[];iT.render.apply(this,arguments),!this.options.dataLabels.allowOverlap&&(this.data.forEach(e=>{iz(e.dataLabels)&&e.dataLabels.forEach(e=>{t.push(e)})}),this.options.useSimulation&&this.chart.hideOverlappingLabels(t))}resizeRadius(){let t,e,i,s,a,o=this.chart,r=o.rawPositions,n=Math.min,l=Math.max,h=o.plotLeft,p=o.plotTop,d=o.plotHeight,c=o.plotWidth;for(let o of(t=i=Number.POSITIVE_INFINITY,e=s=Number.NEGATIVE_INFINITY,r))a=o[2],t=n(t,o[0]-a),e=l(e,o[0]+a),i=n(i,o[1]-a),s=l(s,o[1]+a);let u=[e-t,s-i],g=[(c-h)/u[0],(d-p)/u[1]],f=n.apply([],g);if(Math.abs(f-1)>1e-10){for(let t of r)t[2]*=f;this.placeBubbles(r)}else o.diffY=d/2+p-i-(s-i)/2,o.diffX=c/2+h-t-(e-t)/2}seriesBox(){let t,e=this.chart,i=this.data,s=Math.max,a=Math.min,o=[e.plotLeft,e.plotLeft+e.plotWidth,e.plotTop,e.plotTop+e.plotHeight];return i.forEach(e=>{iI(e.plotX)&&iI(e.plotY)&&e.marker.radius&&(t=e.marker.radius,o[0]=a(o[0],e.plotX-t),o[1]=s(o[1],e.plotX+t),o[2]=a(o[2],e.plotY-t),o[3]=s(o[3],e.plotY+t))}),iO(o.width/o.height)?o:null}setVisible(){let t=this;iT.setVisible.apply(t,arguments),t.parentNodeLayout&&t.graph?t.visible?(t.graph.show(),t.parentNode.dataLabel&&t.parentNode.dataLabel.show()):(t.graph.hide(),t.parentNodeLayout.removeElementFromCollection(t.parentNode,t.parentNodeLayout.nodes),t.parentNode.dataLabel&&t.parentNode.dataLabel.hide()):t.layout&&(t.visible?t.layout.addElementsToCollection(t.points,t.layout.nodes):t.points.forEach(e=>{t.layout.removeElementFromCollection(e,t.layout.nodes)}))}translate(){let t,e,i,s=this.chart,a=this.data,o=this.index,r=this.options.useSimulation;for(let n of(this.generatePoints(),iI(s.allDataPoints)||(s.allDataPoints=this.accumulateAllPoints(),this.getPointRadius()),r?i=s.allDataPoints:(i=this.placeBubbles(s.allDataPoints),this.options.draggable=!1),i))n[3]===o&&(t=a[n[4]],e=iW(n[2],void 0),r||(t.plotX=n[0]-s.plotLeft+s.diffX,t.plotY=n[1]-s.plotTop+s.diffY),iO(e)&&(t.marker=iE(t.marker,{radius:e,width:2*e,height:2*e}),t.radius=e));r&&this.deferLayout(),iD(this,"afterTranslate")}}iH.defaultOptions=iB(iN.defaultOptions,{minSize:"10%",maxSize:"50%",sizeBy:"area",zoneAxis:"y",crisp:!1,tooltip:{pointFormat:"Value: {point.value}"},draggable:!0,useSimulation:!0,parentNode:{allowPointSelect:!1},dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{value:e}=this.point;return eJ(e)?t(e,-1):""},parentNodeFormatter:function(){return this.name||""},parentNodeTextPath:{enabled:!0},padding:0,style:{transition:"opacity 2000ms"}},layoutAlgorithm:{initialPositions:"circle",initialPositionRadius:20,bubblePadding:5,parentNodeLimit:!1,seriesInteraction:!0,dragBetweenSeries:!1,parentNodeOptions:{maxIterations:400,gravitationalConstant:.03,maxSpeed:50,initialPositionRadius:100,seriesInteraction:!0,marker:{fillColor:null,fillOpacity:1,lineWidth:null,lineColor:null,symbol:"circle"}},enableSimulation:!0,type:"packedbubble",integration:"packedbubble",maxIterations:1e3,splitSeries:!1,maxSpeed:5,gravitationalConstant:.01,friction:-.981},stickyTracking:!1}),iE(iH.prototype,{pointClass:eQ,axisTypes:[],directTouch:!0,forces:["barycenter","repulsive"],hasDraggableNodes:!0,invertible:!1,isCartesian:!1,noSharedTooltip:!0,pointArrayMap:["value"],pointValKey:"value",requireSorting:!1,trackerGroups:["group","dataLabelsGroup","parentNodesGroup"],initDataLabels:iC,alignDataLabel:iT.alignDataLabel,indexateNodes:iS,onMouseDown:eB.onMouseDown,onMouseMove:eB.onMouseMove,redrawHalo:eB.redrawHalo,searchPoint:iS}),h().registerSeriesType("packedbubble",iH);let{noop:iF}=n(),{area:iG,line:iq,scatter:iV}=h().seriesTypes,{extend:iU,merge:iK}=n();class i_ extends iV{getGraphPath(){let t=iq.prototype.getGraphPath.call(this),e=t.length+1;for(;e--;)(e===t.length||"M"===t[e][0])&&e>0&&t.splice(e,0,["Z"]);return this.areaPath=t,t}drawGraph(){this.options.fillColor=this.color,iG.prototype.drawGraph.call(this)}}i_.defaultOptions=iK(iV.defaultOptions,{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0,legendSymbol:"rectangle"}),iU(i_.prototype,{type:"polygon",drawTracker:iq.prototype.drawTracker,setStackedPoints:iF}),h().registerSeriesType("polygon",i_);let{defaultOptions:iZ}=n(),{noop:ij}=n(),{addEvent:i$,extend:iQ,isObject:iJ,merge:i0,relativeLength:i1}=n(),i2={radius:0,scope:"stack",where:void 0},i3=ij,i5=ij;function i8(t,e,i,s,a={}){let o=i3(t,e,i,s,a),{brStart:r=!0,brEnd:n=!0,innerR:l=0,r:h=i,start:p=0,end:d=0}=a;if(a.open||!a.borderRadius)return o;let c=d-p,u=Math.sin(c/2),g=Math.max(Math.min(i1(a.borderRadius||0,h-l),(h-l)/2,h*u/(1+u)),0),f=Math.min(g,c/Math.PI*2*l),m=o.length-1;for(;m--;)(r||0!==m&&3!==m)&&(n||1!==m&&2!==m)&&!function(t,e,i){let s,a,o,r=t[e],n=t[e+1];if("Z"===n[0]&&(n=t[0]),("M"===r[0]||"L"===r[0])&&"A"===n[0]?(s=r,a=n,o=!0):"A"===r[0]&&("M"===n[0]||"L"===n[0])&&(s=n,a=r),s&&a&&a.params){let r=a[1],n=a[5],l=a.params,{start:h,end:p,cx:d,cy:c}=l,u=n?r-i:r+i,g=u?Math.asin(i/u):0,f=n?g:-g,m=Math.cos(g)*u;o?(l.start=h+f,s[1]=d+m*Math.cos(h),s[2]=c+m*Math.sin(h),t.splice(e+1,0,["A",i,i,0,0,1,d+r*Math.cos(l.start),c+r*Math.sin(l.start)])):(l.end=p-f,a[6]=d+r*Math.cos(l.end),a[7]=c+r*Math.sin(l.end),t.splice(e+1,0,["A",i,i,0,0,1,d+m*Math.cos(p),c+m*Math.sin(p)])),a[4]=Math.abs(l.end-l.start)<Math.PI?0:1}}(o,m,m>1?f:g);return o}function i6(){if(this.options.borderRadius&&!(this.chart.is3d&&this.chart.is3d())){let{options:t,yAxis:e}=this,i="percent"===t.stacking,s=iZ.plotOptions?.[this.type]?.borderRadius,a=i9(t.borderRadius,iJ(s)?s:{}),o=e.options.reversed;for(let s of this.points){let{shapeArgs:r}=s;if("roundedRect"===s.shapeType&&r){let{width:n=0,height:l=0,y:h=0}=r,p=h,d=l;if("stack"===a.scope&&s.stackTotal){let a=e.translate(i?100:s.stackTotal,!1,!0,!1,!0),o=e.translate(t.threshold||0,!1,!0,!1,!0),r=this.crispCol(0,Math.min(a,o),0,Math.abs(a-o));p=r.y,d=r.height}let c=(s.negative?-1:1)*(o?-1:1)==-1,u=a.where;!u&&this.is("waterfall")&&Math.abs((s.yBottom||0)-(this.translatedThreshold||0))>this.borderWidth&&(u="all"),u||(u="end");let g=Math.min(i1(a.radius,n),n/2,"all"===u?l/2:1/0)||0;"end"===u&&(c&&(p-=g),d+=g),iQ(r,{brBoxHeight:d,brBoxY:p,r:g})}}}}function i9(t,e){return iJ(t)||(t={radius:t||0}),i0(i2,e,t)}function i4(){let t=i9(this.options.borderRadius);for(let e of this.points){let i=e.shapeArgs;i&&(i.borderRadius=i1(t.radius,(i.r||0)-(i.innerR||0)))}}function i7(t,e,i,s,a={}){let o=i5(t,e,i,s,a),{r=0,brBoxHeight:n=s,brBoxY:l=e}=a,h=e-l,p=l+n-(e+s),d=h-r>-.1?0:r,c=p-r>-.1?0:r,u=Math.max(d&&h,0),g=Math.max(c&&p,0),f=[t+d,e],m=[t+i-d,e],b=[t+i,e+d],y=[t+i,e+s-c],x=[t+i-c,e+s],P=[t+c,e+s],M=[t,e+s-c],v=[t,e+d],L=(t,e)=>Math.sqrt(Math.pow(t,2)-Math.pow(e,2));if(u){let t=L(d,d-u);f[0]-=t,m[0]+=t,b[1]=v[1]=e+d-u}if(s<d-u){let a=L(d,d-u-s);b[0]=y[0]=t+i-d+a,x[0]=Math.min(b[0],x[0]),P[0]=Math.max(y[0],P[0]),M[0]=v[0]=t+d-a,b[1]=v[1]=e+s}if(g){let t=L(c,c-g);x[0]+=t,P[0]-=t,y[1]=M[1]=e+s-c+g}if(s<c-g){let a=L(c,c-g-s);b[0]=y[0]=t+i-c+a,m[0]=Math.min(b[0],m[0]),f[0]=Math.max(y[0],f[0]),M[0]=v[0]=t+c-a,y[1]=M[1]=e}return o.length=0,o.push(["M",...f],["L",...m],["A",d,d,0,0,1,...b],["L",...y],["A",c,c,0,0,1,...x],["L",...P],["A",c,c,0,0,1,...M],["L",...v],["A",d,d,0,0,1,...f],["Z"]),o}let st={circular:{gridLineWidth:1,labels:{align:void 0,x:0,y:void 0},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},radial:{gridLineInterpolation:"circle",gridLineWidth:1,labels:{align:"right",padding:5,x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},radialGauge:{endOnTick:!1,gridLineWidth:0,labels:{align:"center",distance:-25,x:0,y:void 0},lineWidth:1,minorGridLineWidth:0,minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,startOnTick:!1,tickLength:10,tickPixelInterval:100,tickPosition:"inside",tickWidth:2,title:{rotation:0,text:""},zIndex:2}},{defaultOptions:se}=n(),{composed:si,noop:ss}=n(),{addEvent:sa,correctFloat:so,defined:sr,extend:sn,fireEvent:sl,isObject:sh,merge:sp,pick:sd,pushUnique:sc,relativeLength:su,splat:sg,wrap:sf}=n();!function(t){function e(){this.autoConnect=this.isCircular&&void 0===sd(this.userMax,this.options.max)&&so(this.endAngleRad-this.startAngleRad)===so(2*Math.PI),!this.isCircular&&this.chart.inverted&&this.max++,this.autoConnect&&(this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0)}function i(){return()=>{if(this.isRadial&&this.tickPositions&&this.options.labels&&!0!==this.options.labels.allowOverlap)return this.tickPositions.map(t=>this.ticks[t]?.label).filter(t=>!!t)}}function s(){return ss}function a(t,e,i){let s=this.pane.center,a=t.value,o,r,n;return this.isCircular?(sr(a)?t.point&&(t.point.shapeArgs||{}).start&&(a=this.chart.inverted?this.translate(t.point.rectPlotY,!0):t.point.x):(r=t.chartX||0,n=t.chartY||0,a=this.translate(Math.atan2(n-i,r-e)-this.startAngleRad,!0)),r=(o=this.getPosition(a)).x,n=o.y):(sr(a)||(r=t.chartX,n=t.chartY),sr(r)&&sr(n)&&(i=s[1]+this.chart.plotTop,a=this.translate(Math.min(Math.sqrt(Math.pow(r-e,2)+Math.pow(n-i,2)),s[2]/2)-s[3]/2,!0))),[a,r||0,n||0]}function o(t,e,i){let s=this.pane.center,a=this.chart,o=this.left||0,r=this.top||0,n,l=sd(e,s[2]/2-this.offset),h;return void 0===i&&(i=this.horiz?0:this.center&&-this.center[3]/2),i&&(l+=i),this.isCircular||void 0!==e?((h=this.chart.renderer.symbols.arc(o+s[0],r+s[1],l,l,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0})).xBounds=[o+s[0]],h.yBounds=[r+s[1]-l]):(n=this.postTranslate(this.angleRad,l),h=[["M",this.center[0]+a.plotLeft,this.center[1]+a.plotTop],["L",n.x,n.y]]),h}function r(){this.constructor.prototype.getOffset.call(this),this.chart.axisOffset[this.side]=0}function l(t,e,i){let s=this.chart,a=t=>{if("string"==typeof t){let e=parseInt(t,10);return c.test(t)&&(e=e*l/100),e}return t},o=this.center,r=this.startAngleRad,n=i.borderRadius,l=o[2]/2,h=Math.min(this.offset,0),p=this.left||0,d=this.top||0,c=/%$/,u=this.isCircular,g=this.options.plotBands||[],f=g.indexOf(i),m,b,y,x,P,M,v=sd(a(i.outerRadius),l),L=a(i.innerRadius),k=sd(a(i.thickness),10),w=!0,A=!0;if(n&&f>-1&&(g[f-1]&&g[f-1].to===t&&(w=!1),g[f+1]&&g[f+1].from===e&&(A=!1)),"polygon"===this.options.gridLineInterpolation)M=this.getPlotLinePath({value:t}).concat(this.getPlotLinePath({value:e,reverse:!0}));else{t=Math.max(t,this.min),e=Math.min(e,this.max);let a=this.translate(t),l=this.translate(e);u||(v=a||0,L=l||0),"circle"!==i.shape&&u?(m=r+(a||0),b=r+(l||0)):(m=-Math.PI/2,b=1.5*Math.PI,P=!0),v-=h,k-=h,M=s.renderer.symbols.arc(p+o[0],d+o[1],v,v,{start:Math.min(m,b),end:Math.max(m,b),innerR:sd(L,v-k),open:P,borderRadius:n,brStart:w,brEnd:A}),u&&(y=(b+m)/2,x=p+o[0]+o[2]/2*Math.cos(y),M.xBounds=y>-Math.PI/2&&y<Math.PI/2?[x,s.plotWidth]:[0,x],M.yBounds=[d+o[1]+o[2]/2*Math.sin(y)],M.yBounds[0]+=y>-Math.PI&&y<0||y>Math.PI?-10:10)}return M}function h(t){let e=this.pane.center,i=this.chart,s=i.inverted,a=t.reverse,o=this.pane.options.background,r=o?sg(o)[0]:{},n=r.innerRadius||"0%",l=r.outerRadius||"100%",h=e[0]+i.plotLeft,p=e[1]+i.plotTop,d=this.height,c=t.isCrosshair,u=e[3]/2,g=t.value,f,m,b,y,x,P,M,v,L,k=this.getPosition(g),w=k.x,A=k.y;if(c&&(g=(v=this.getCrosshairPosition(t,h,p))[0],w=v[1],A=v[2]),this.isCircular)m=Math.sqrt(Math.pow(w-h,2)+Math.pow(A-p,2)),b="string"==typeof n?su(n,1):n/m,y="string"==typeof l?su(l,1):l/m,e&&u&&(b<(f=u/m)&&(b=f),y<f&&(y=f)),L=[["M",h+b*(w-h),p-b*(p-A)],["L",w-(1-y)*(w-h),A+(1-y)*(p-A)]];else if((g=this.translate(g))&&(g<0||g>d)&&(g=0),"circle"===this.options.gridLineInterpolation)L=this.getLinePath(0,g,u);else if(L=[],i[s?"yAxis":"xAxis"].forEach(t=>{t.pane===this.pane&&(x=t)}),x){M=x.tickPositions,x.autoConnect&&(M=M.concat([M[0]])),a&&(M=M.slice().reverse()),g&&(g+=u);for(let t=0;t<M.length;t++)P=x.getPosition(M[t],g),L.push(t?["L",P.x,P.y]:["M",P.x,P.y])}return L}function p(t,e){let i=this.translate(t);return this.postTranslate(this.isCircular?i:this.angleRad,sd(this.isCircular?e:i<0?0:i,this.center[2]/2)-this.offset)}function d(){let t=this.center,e=this.chart,i=this.options.title;return{x:e.plotLeft+t[0]+(i.x||0),y:e.plotTop+t[1]-({high:.5,middle:.25,low:0})[i.align]*t[2]+(i.y||0)}}function c(t){t.beforeSetTickPositions=e,t.createLabelCollector=i,t.getCrosshairPosition=a,t.getLinePath=o,t.getOffset=r,t.getPlotBandPath=l,t.getPlotLinePath=h,t.getPosition=p,t.getTitlePosition=d,t.postTranslate=M,t.setAxisSize=L,t.setAxisTranslation=k,t.setOptions=w}function u(){let t=this.chart,e=this.options,i=t.angular&&this.isXAxis,s=this.pane,a=s?.options;if(!i&&s&&(t.angular||t.polar)){let t=2*Math.PI,i=(sd(a.startAngle,0)-90)*Math.PI/180,s=(sd(a.endAngle,sd(a.startAngle,0)+360)-90)*Math.PI/180;this.angleRad=(e.angle||0)*Math.PI/180,this.startAngleRad=i,this.endAngleRad=s,this.offset=e.offset||0;let o=(i%t+t)%t,r=(s%t+t)%t;o>Math.PI&&(o-=t),r>Math.PI&&(r-=t),this.normalizedStartAngleRad=o,this.normalizedEndAngleRad=r}}function g(t){this.isRadial&&(t.align=void 0,t.preventDefault())}function f(){if(this.chart?.labelCollectors){let t=this.labelCollector?this.chart.labelCollectors.indexOf(this.labelCollector):-1;t>=0&&this.chart.labelCollectors.splice(t,1)}}function m(t){let e,i=this.chart,a=i.angular,o=i.polar,r=this.isXAxis,n=this.coll,l=t.userOptions.pane||0,h=this.pane=i.pane&&i.pane[l];if("colorAxis"===n){this.isRadial=!1;return}if(a){if(a&&r)this.isHidden=!0,this.createLabelCollector=s,this.getOffset=ss,this.redraw=v,this.render=v,this.setScale=ss,this.setCategories=ss,this.setTitle=ss;else c(this);e=!r}else o&&(c(this),e=this.horiz);a||o?(this.isRadial=!0,this.labelCollector||(this.labelCollector=this.createLabelCollector()),this.labelCollector&&i.labelCollectors.push(this.labelCollector)):this.isRadial=!1,h&&e&&(h.axis=this),this.isCircular=e}function b(){this.isRadial&&this.beforeSetTickPositions()}function y(t){let e=this.label;if(!e)return;let i=this.axis,s=e.getBBox(),a=i.options.labels,o=(i.translate(this.pos)+i.startAngleRad+Math.PI/2)/Math.PI*180%360,r=Math.round(o),n=sr(a.y)?0:-(.3*s.height),l=a.y,h,p=20,d=a.align,c="end",u=r<0?r+360:r,g=u,f=0,m=0;i.isRadial&&(h=i.getPosition(this.pos,i.center[2]/2+su(sd(a.distance,-25),i.center[2]/2,-i.center[2]/2)),"auto"===a.rotation?e.attr({rotation:o}):sr(l)||(l=i.chart.renderer.fontMetrics(e).b-s.height/2),sr(d)||(i.isCircular?(s.width>i.len*i.tickInterval/(i.max-i.min)&&(p=0),d=o>p&&o<180-p?"left":o>180+p&&o<360-p?"right":"center"):d="center",e.attr({align:d})),"auto"===d&&2===i.tickPositions.length&&i.isCircular&&(u>90&&u<180?u=180-u:u>270&&u<=360&&(u=540-u),g>180&&g<=360&&(g=360-g),(i.pane.options.startAngle===r||i.pane.options.startAngle===r+360||i.pane.options.startAngle===r-360)&&(c="start"),d=r>=-90&&r<=90||r>=-360&&r<=-270||r>=270&&r<=360?"start"===c?"right":"left":"start"===c?"left":"right",g>70&&g<110&&(d="center"),u<15||u>=180&&u<195?f=.3*s.height:u>=15&&u<=35?f="start"===c?0:.75*s.height:u>=195&&u<=215?f="start"===c?.75*s.height:0:u>35&&u<=90?f="start"===c?-(.25*s.height):s.height:u>215&&u<=270&&(f="start"===c?s.height:-(.25*s.height)),g<15?m="start"===c?-(.15*s.height):.15*s.height:g>165&&g<=180&&(m="start"===c?.15*s.height:-(.15*s.height)),e.attr({align:d}),e.translate(m,f+n)),t.pos.x=h.x+(a.x||0),t.pos.y=h.y+(l||0))}function x(t){this.axis.getPosition&&sn(t.pos,this.axis.getPosition(this.pos))}function P({options:e}){e.xAxis&&sp(!0,t.radialDefaultOptions.circular,e.xAxis),e.yAxis&&sp(!0,t.radialDefaultOptions.radialGauge,e.yAxis)}function M(t,e){let i=this.chart,s=this.center;return t=this.startAngleRad+t,{x:i.plotLeft+s[0]+Math.cos(t)*e,y:i.plotTop+s[1]+Math.sin(t)*e}}function v(){this.isDirty=!1}function L(){let t,e;this.constructor.prototype.setAxisSize.call(this),this.isRadial&&(this.pane.updateCenter(this),t=this.center=this.pane.center.slice(),this.isCircular?this.sector=this.endAngleRad-this.startAngleRad:(e=this.postTranslate(this.angleRad,t[3]/2),t[0]=e.x-this.chart.plotLeft,t[1]=e.y-this.chart.plotTop),this.len=this.width=this.height=(t[2]-t[3])*sd(this.sector,1)/2)}function k(){this.constructor.prototype.setAxisTranslation.call(this),this.center&&(this.isCircular?this.transA=(this.endAngleRad-this.startAngleRad)/(this.max-this.min||1):this.transA=(this.center[2]-this.center[3])/2/(this.max-this.min||1),this.isXAxis?this.minPixelPadding=this.transA*this.minPointOffset:this.minPixelPadding=0)}function w(e){let{coll:i}=this,{angular:s,inverted:a,polar:o}=this.chart,r={};s?this.isXAxis||(r=sp(se.yAxis,t.radialDefaultOptions.radialGauge)):o&&(r=this.horiz?sp(se.xAxis,t.radialDefaultOptions.circular):sp("xAxis"===i?se.xAxis:se.yAxis,t.radialDefaultOptions.radial)),a&&"yAxis"===i&&(r.stackLabels=sh(se.yAxis,!0)?se.yAxis.stackLabels:{},r.reversedStacks=!0);let n=this.options=sp(r,e);n.plotBands||(n.plotBands=[]),sl(this,"afterSetOptions")}function A(t,e,i,s,a,o,r){let n,l,h=this.axis;return h.isRadial?["M",e,i,"L",(n=h.getPosition(this.pos,h.center[2]/2+s)).x,n.y]:t.call(this,e,i,s,a,o,r)}t.radialDefaultOptions=sp(st),t.compose=function(t,e){return sc(si,"Axis.Radial")&&(sa(t,"afterInit",u),sa(t,"autoLabelAlign",g),sa(t,"destroy",f),sa(t,"init",m),sa(t,"initialAxisTranslation",b),sa(e,"afterGetLabelPosition",y),sa(e,"afterGetPosition",x),sa(n(),"setOptions",P),sf(e.prototype,"getMarkPath",A)),t}}(s||(s={}));let sm=s,{animObject:sb}=n(),{optionsToObject:sy}={compose:function(t,e,i){let s=t.types.pie;if(!e.symbolCustomAttribs.includes("borderRadius")){let a=i.prototype.symbols;i$(t,"afterColumnTranslate",i6,{order:9}),i$(s,"afterTranslate",i4),e.symbolCustomAttribs.push("borderRadius","brBoxHeight","brBoxY","brEnd","brStart"),i3=a.arc,i5=a.roundedRect,a.arc=i8,a.roundedRect=i7}},optionsToObject:i9},{defaultOptions:sx}=n(),{composed:sP}=n(),{addEvent:sM,defined:sv,find:sL,isNumber:sk,isObject:sw,merge:sA,pick:sS,pushUnique:sT,relativeLength:sN,splat:sC,uniqueKey:sX,wrap:sY}=n();function sR(){(this.pane||[]).forEach(t=>{t.render()})}function sI(t){let e=t.args[0].xAxis,i=t.args[0].yAxis,s=t.args[0].chart;e&&i&&("polygon"===i.gridLineInterpolation?(e.startOnTick=!0,e.endOnTick=!0):"polygon"===e.gridLineInterpolation&&s.inverted&&(i.startOnTick=!0,i.endOnTick=!0))}function sE(){this.pane||(this.pane=[]),this.options.pane=sC(this.options.pane||{}),sC(this.userOptions.pane||{}).forEach(t=>{new I(t,this)},this)}function sD(t){let e=t.args.marker,i=this.chart.xAxis[0],s=this.chart.yAxis[0],a=this.chart.inverted,o=a?s:i,r=a?i:s;if(this.chart.polar){t.preventDefault();let i=(e.attr?e.attr("start"):e.start)-o.startAngleRad,s=e.attr?e.attr("r"):e.r,a=(e.attr?e.attr("end"):e.end)-o.startAngleRad,n=e.attr?e.attr("innerR"):e.innerR;t.result.x=i+o.pos,t.result.width=a-i,t.result.y=r.len+r.pos-s,t.result.height=s-n}}function sz(t){let e=this.chart;if(e.polar&&e.hoverPane&&e.hoverPane.axis){t.preventDefault();let i=e.hoverPane.center,s=e.mouseDownX||0,a=e.mouseDownY||0,o=t.args.chartY,r=t.args.chartX,n=2*Math.PI,l=e.hoverPane.axis.startAngleRad,h=e.hoverPane.axis.endAngleRad,p=e.inverted?e.xAxis[0]:e.yAxis[0],d={},c="arc";if(d.x=i[0]+e.plotLeft,d.y=i[1]+e.plotTop,this.zoomHor){let t=l>0?h-l:Math.abs(l)+Math.abs(h),u=Math.atan2(a-e.plotTop-i[1],s-e.plotLeft-i[0])-l,g=Math.atan2(o-e.plotTop-i[1],r-e.plotLeft-i[0])-l;d.r=i[2]/2,d.innerR=i[3]/2,u<=0&&(u+=n),g<=0&&(g+=n),g<u&&(g=[u,u=g][0]),t<n&&l+g>h+(n-t)/2&&(g=u,u=l<=0?l:0);let f=d.start=Math.max(u+l,l),m=d.end=Math.min(g+l,h);if("polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,s=f-t.startAngleRad+t.pos,a=p.getPlotLinePath({value:p.max}),o=t.toValue(s),r=t.toValue(s+(m-f));if(o<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();o=i-(e-o)}if(r<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();r=i-(e-r)}r<o&&(r=[o,o=r][0]),(a=sF(a,o,r,t)).push(["L",i[0]+e.plotLeft,e.plotTop+i[1]]),d.d=a,c="path"}}if(this.zoomVert){let t=e.inverted?e.xAxis[0]:e.yAxis[0],n=Math.sqrt(Math.pow(s-e.plotLeft-i[0],2)+Math.pow(a-e.plotTop-i[1],2)),p=Math.sqrt(Math.pow(r-e.plotLeft-i[0],2)+Math.pow(o-e.plotTop-i[1],2));if(p<n&&(n=[p,p=n][0]),p>i[2]/2&&(p=i[2]/2),n<i[3]/2&&(n=i[3]/2),this.zoomHor||(d.start=l,d.end=h),d.r=p,d.innerR=n,"polygon"===t.options.gridLineInterpolation){let e=t.toValue(t.len+t.pos-n),i=t.toValue(t.len+t.pos-p);d.d=t.getPlotLinePath({value:i}).concat(t.getPlotLinePath({value:e,reverse:!0})),c="path"}}if(this.zoomHor&&this.zoomVert&&"polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,i=d.start||0,s=d.end||0,a=i-t.startAngleRad+t.pos,o=t.toValue(a),r=t.toValue(a+(s-i));if(d.d instanceof Array){let t=d.d.slice(0,d.d.length/2),i=d.d.slice(d.d.length/2,d.d.length);i=[...i].reverse();let s=e.hoverPane.axis;t=sF(t,o,r,s),(i=sF(i,o,r,s))&&(i[0][0]="L"),i=[...i].reverse(),d.d=t.concat(i),c="path"}}t.attrs=d,t.shapeType=c}}function sO(){let t=this.chart;t.polar&&(this.polar=new sQ(this),t.inverted&&(this.isRadialSeries=!0,this.is("column")&&(this.isRadialBar=!0)))}function sB(){let{chart:t,options:e,yAxis:i}=this;if(e.borderRadius&&t.polar&&t.inverted){let t=sx.plotOptions?.[this.type]?.borderRadius,{scope:s,where:a="end"}=sy(e.borderRadius,sw(t)?t:{});for(let t of this.points){let{shapeArgs:o}=t;if("arc"===t.shapeType&&o){let r="all"===a,n=!0;e.stacking&&"stack"===s&&(r=t.stackY===t.y&&"all"===a,n=t.stackY===t.stackTotal),i.reversed&&([r,n]=[n,r]),o.brStart=r,o.brEnd=n}}}}function sW(){if(this.chart.polar&&this.xAxis){let{xAxis:t,yAxis:e}=this,i=this.chart;this.kdByAngle=i.tooltip&&i.tooltip.shared,this.kdByAngle||i.inverted?this.searchPoint=sH:this.options.findNearestPointBy="xy";let s=this.points,a=s.length;for(;a--;)this.is("column")||this.is("columnrange")||this.polar.toXY(s[a]),i.hasParallelCoordinates||this.yAxis.reversed||(sS(s[a].y,Number.MIN_VALUE)<e.min||s[a].x<t.min||s[a].x>t.max?(s[a].isNull=!0,s[a].plotY=NaN):s[a].isNull=s[a].isValid&&!s[a].isValid());this.hasClipCircleSetter||(this.hasClipCircleSetter=!!this.eventsToUnbind.push(sM(this,"afterRender",function(){let t;i.polar&&!1!==this.options.clip&&(t=this.yAxis.pane.center,this.clipCircle?this.clipCircle.animate({x:t[0],y:t[1],r:t[2]/2,innerR:t[3]/2}):this.clipCircle=function(t,e,i,s,a){let o=sX(),r=t.createElement("clipPath").attr({id:o}).add(t.defs),n=a?t.arc(e,i,s,a,0,2*Math.PI).add(r):t.circle(e,i,s).add(r);return n.id=o,n.clipPath=r,n}(i.renderer,t[0],t[1],t[2]/2,t[3]/2),this.group.clip(this.clipCircle),this.setClip=n().noop)})))}}function sH(t){let e=this.chart,i=this.xAxis,s=this.yAxis,a=i.pane&&i.pane.center,o=t.chartX-(a&&a[0]||0)-e.plotLeft,r=t.chartY-(a&&a[1]||0)-e.plotTop,n=e.inverted?{clientX:t.chartX-s.pos,plotY:t.chartY-i.pos}:{clientX:180+-180/Math.PI*Math.atan2(o,r)};return this.searchKDTree(n)}function sF(t,e,i,s){let a=s.tickInterval,o=s.tickPositions,r=sL(o,t=>t>=i),n=sL([...o].reverse(),t=>t<=e);return sv(r)||(r=o[o.length-1]),sv(n)||(n=o[0],r+=a,t[0][0]="L",t.unshift(t[t.length-3])),(t=t.slice(o.indexOf(n),o.indexOf(r)+1))[0][0]="M",t}function sG(t,e){return sL(this.pane||[],t=>t.options.id===e)||t.call(this,e)}function sq(t,e,i,s,a,o){let r,n,l,h=this.chart,p=sS(s.inside,!!this.options.stacking);if(h.polar){if(r=e.rectPlotX/Math.PI*180,h.inverted)this.forceDL=h.isInsidePlot(e.plotX,e.plotY),p&&e.shapeArgs?(n=e.shapeArgs,a=sA(a,{x:(l=this.yAxis.postTranslate(((n.start||0)+(n.end||0))/2-this.xAxis.startAngleRad,e.barX+e.pointWidth/2)).x-h.plotLeft,y:l.y-h.plotTop})):e.tooltipPos&&(a=sA(a,{x:e.tooltipPos[0],y:e.tooltipPos[1]})),s.align=sS(s.align,"center"),s.verticalAlign=sS(s.verticalAlign,"middle");else{var c;null===(c=s).align&&(c.align=r>20&&r<160?"left":r>200&&r<340?"right":"center"),null===c.verticalAlign&&(c.verticalAlign=r<45||r>315?"bottom":r>135&&r<225?"top":"middle"),s=c}d().prototype.alignDataLabel.call(this,e,i,s,a,o),this.isRadialBar&&e.shapeArgs&&e.shapeArgs.start===e.shapeArgs.end?i.hide():i.show()}else t.call(this,e,i,s,a,o)}function sV(){let t=this.options,e=t.stacking,i=this.chart,s=this.xAxis,a=this.yAxis,o=a.reversed,r=a.center,l=s.startAngleRad,h=s.endAngleRad-l,p=t.threshold,d=0,c,u,g,f,m,b=0,y=0,x,P,M,v,L,k,w,A;if(s.isRadial)for(g=(c=this.points).length,f=a.translate(a.min),m=a.translate(a.max),p=t.threshold||0,i.inverted&&sk(p)&&sv(d=a.translate(p))&&(d<0?d=0:d>h&&(d=h),this.translatedThreshold=d+l);g--;){if(k=(u=c[g]).barX,P=u.x,M=u.y,u.shapeType="arc",i.inverted){u.plotY=a.translate(M),e&&a.stacking?(L=a.stacking.stacks[(M<0?"-":"")+this.stackKey],this.visible&&L&&L[P]&&!u.isNull&&(v=L[P].points[this.getStackIndicator(void 0,P,this.index).key],b=a.translate(v[0]),y=a.translate(v[1]),sv(b)&&(b=n().clamp(b,0,h)))):(b=d,y=u.plotY),b>y&&(y=[b,b=y][0]),o?y>f?y=f:b<m?b=m:(b>f||y<m)&&(b=y=h):b<f?b=f:y>m?y=m:(y<f||b>m)&&(b=y=0),a.min>a.max&&(b=y=o?h:0),b+=l,y+=l,r&&(u.barX=k+=r[3]/2),w=Math.max(k,0),A=Math.max(k+u.pointWidth,0);let i=t.borderRadius,s=sN(("object"==typeof i?i.radius:i)||0,A-w);u.shapeArgs={x:r[0],y:r[1],r:A,innerR:w,start:b,end:y,borderRadius:s},u.opacity=b===y?0:void 0,u.plotY=(sv(this.translatedThreshold)&&(b<this.translatedThreshold?b:y))-l}else b=k+l,u.shapeArgs=this.polar.arc(u.yBottom,u.plotY,b,b+u.pointWidth),u.shapeArgs.borderRadius=0;this.polar.toXY(u),i.inverted?(x=a.postTranslate(u.rectPlotY,k+u.pointWidth/2),u.tooltipPos=[x.x-i.plotLeft,x.y-i.plotTop]):u.tooltipPos=[u.plotX,u.plotY],r&&(u.ttBelow=u.plotY>r[1])}}function sU(t,e){let i,s,a=this;if(this.chart.polar){e=e||this.points;for(let t=0;t<e.length;t++)if(!e[t].isNull){i=t;break}!1!==this.options.connectEnds&&void 0!==i&&(this.connectEnds=!0,e.splice(e.length,0,e[i]),s=!0),e.forEach(t=>{void 0===t.polarPlotY&&a.polar.toXY(t)})}let o=t.apply(this,[].slice.call(arguments,1));return s&&e.pop(),o}function sK(t,e){let i=this.chart,s={xAxis:[],yAxis:[]};return i.polar?i.axes.forEach(t=>{if("colorAxis"===t.coll)return;let a=t.isXAxis,o=t.center,r=e.chartX-o[0]-i.plotLeft,n=e.chartY-o[1]-i.plotTop;s[a?"xAxis":"yAxis"].push({axis:t,value:t.translate(a?Math.PI-Math.atan2(r,n):Math.sqrt(Math.pow(r,2)+Math.pow(n,2)),!0)})}):s=t.call(this,e),s}function s_(t,e){this.chart.polar||t.call(this,e)}function sZ(t,e){let i=this,s=this.chart,a=this.group,o=this.markerGroup,r=this.xAxis&&this.xAxis.center,l=s.plotLeft,h=s.plotTop,p=this.options.animation,d,c,u,g,f,m;s.polar?i.isRadialBar?e||(i.startAngleRad=sS(i.translatedThreshold,i.xAxis.startAngleRad),n().seriesTypes.pie.prototype.animate.call(i,e)):(p=sb(p),i.is("column")?e||(c=r[3]/2,i.points.forEach(t=>{u=t.graphic,f=(g=t.shapeArgs)&&g.r,m=g&&g.innerR,u&&g&&(u.attr({r:c,innerR:c}),u.animate({r:f,innerR:m},i.options.animation))})):e?(d={translateX:r[0]+l,translateY:r[1]+h,scaleX:.001,scaleY:.001},a.attr(d),o&&o.attr(d)):(d={translateX:l,translateY:h,scaleX:1,scaleY:1},a.animate(d,p),o&&o.animate(d,p))):t.call(this,e)}function sj(t,e,i,s){let a,o;if(this.chart.polar)if(s){let t=(o=function t(e,i,s,a){let o,r,n,l,h,p,d=+!!a,c=(o=i>=0&&i<=e.length-1?i:i<0?e.length-1+i:0)-1<0?e.length-(1+d):o-1,u=o+1>e.length-1?d:o+1,g=e[c],f=e[u],m=g.plotX,b=g.plotY,y=f.plotX,x=f.plotY,P=e[o].plotX,M=e[o].plotY;r=(1.5*P+m)/2.5,n=(1.5*M+b)/2.5,l=(1.5*P+y)/2.5,h=(1.5*M+x)/2.5;let v=Math.sqrt(Math.pow(r-P,2)+Math.pow(n-M,2)),L=Math.sqrt(Math.pow(l-P,2)+Math.pow(h-M,2)),k=Math.atan2(n-M,r-P);p=Math.PI/2+(k+Math.atan2(h-M,l-P))/2,Math.abs(k-p)>Math.PI/2&&(p-=Math.PI),r=P+Math.cos(p)*v,n=M+Math.sin(p)*v;let w={rightContX:l=P+Math.cos(Math.PI+p)*L,rightContY:h=M+Math.sin(Math.PI+p)*L,leftContX:r,leftContY:n,plotX:P,plotY:M};return s&&(w.prevPointCont=t(e,c,!1,a)),w}(e,s,!0,this.connectEnds)).prevPointCont&&o.prevPointCont.rightContX,i=o.prevPointCont&&o.prevPointCont.rightContY;a=["C",sk(t)?t:o.plotX,sk(i)?i:o.plotY,sk(o.leftContX)?o.leftContX:o.plotX,sk(o.leftContY)?o.leftContY:o.plotY,o.plotX,o.plotY]}else a=["M",i.plotX,i.plotY];else a=t.call(this,e,i,s);return a}function s$(t,e,i=this.plotY){if(!this.destroyed){let{plotX:s,series:a}=this,{chart:o}=a;return o.polar&&sk(s)&&sk(i)?[s+(e?o.plotLeft:0),i+(e?o.plotTop:0)]:t.call(this,e,i)}}class sQ{static compose(t,e,i,s,a,o,r,n,l,h){if(I.compose(e,i),sm.compose(t,a),sT(sP,"Polar")){let t=e.prototype,a=o.prototype,p=i.prototype,d=s.prototype;if(sM(e,"afterDrawChartBox",sR),sM(e,"createAxes",sE),sM(e,"init",sI),sY(t,"get",sG),sY(p,"getCoordinates",sK),sY(p,"pinch",s_),sM(i,"getSelectionMarkerAttrs",sz),sM(i,"getSelectionBox",sD),sM(s,"afterInit",sO),sM(s,"afterColumnTranslate",sB,{order:9}),sM(s,"afterTranslate",sW,{order:2}),sM(s,"afterColumnTranslate",sV,{order:4}),sY(d,"animate",sZ),sY(a,"pos",s$),n){let t=n.prototype;sY(t,"alignDataLabel",sq),sY(t,"animate",sZ)}if(l&&sY(l.prototype,"getGraphPath",sU),h){let t=h.prototype;sY(t,"getPointSpline",sj),r&&(r.prototype.getPointSpline=t.getPointSpline)}}}constructor(t){this.series=t}arc(t,e,i,s){let a=this.series,o=a.xAxis.center,r=a.yAxis.len,n=o[3]/2,l=r-e+n,h=r-sS(t,r)+n;return a.yAxis.reversed&&(l<0&&(l=n),h<0&&(h=n)),{x:o[0],y:o[1],r:l,innerR:h,start:i,end:s}}toXY(t){let e=this.series,i=e.chart,s=e.xAxis,a=e.yAxis,o=t.plotX,r=i.inverted,n=t.y,l=t.plotY,h=r?o:a.len-l,p;if(r&&e&&!e.isRadialBar&&(t.plotY=l=sk(n)?a.translate(n):0),t.rectPlotX=o,t.rectPlotY=l,a.center&&(h+=a.center[3]/2),sk(l)){let e=r?a.postTranslate(l,h):s.postTranslate(o,h);t.plotX=t.polarPlotX=e.x-i.plotLeft,t.plotY=t.polarPlotY=e.y-i.plotTop}e.kdByAngle?((p=(o/Math.PI*180+s.pane.options.startAngle)%360)<0&&(p+=360),t.clientX=p):t.clientX=t.plotX}}let sJ=t.default.StackItem;var s0=o.n(sJ);let{composed:s1}=n(),{addEvent:s2,objectEach:s3,pushUnique:s5}=n();!function(t){function e(){let t=this.waterfall?.stacks;t&&(t.changed=!1,delete t.alreadyChanged)}function i(){let t=this.options.stackLabels;t?.enabled&&this.waterfall?.stacks&&this.waterfall.renderStackTotals()}function s(){this.waterfall||(this.waterfall=new o(this))}function a(){let t=this.axes;for(let e of this.series)if(e.options.stacking){for(let e of t)!e.isXAxis&&e.waterfall&&(e.waterfall.stacks.changed=!0);break}}t.compose=function(t,o){s5(s1,"Axis.Waterfall")&&(s2(t,"init",s),s2(t,"afterBuildStacks",e),s2(t,"afterRender",i),s2(o,"beforeRedraw",a))};class o{constructor(t){this.axis=t,this.stacks={changed:!1}}renderStackTotals(){let t=this.axis,e=t.waterfall?.stacks,i=t.stacking?.stackTotalGroup,s=new(s0())(t,t.options.stackLabels||{},!1,0,void 0);this.dummyStackItem=s,i&&s3(e,t=>{s3(t,(t,e)=>{s.total=t.stackTotal,s.x=+e,t.label&&(s.label=t.label),s0().prototype.render.call(s,i),t.label=s.label,delete s.label})}),s.total=null}}t.Composition=o}(a||(a={}));let s8=a,{isNumber:s6}=n();class s9 extends ta().prototype.pointClass{getClassName(){let t=tO().prototype.getClassName.call(this);return this.isSum?t+=" highcharts-sum":this.isIntermediateSum&&(t+=" highcharts-intermediate-sum"),t}isValid(){return s6(this.y)||this.isSum||!!this.isIntermediateSum}}let{column:s4,line:s7}=h().seriesTypes,{addEvent:at,arrayMax:ae,arrayMin:ai,correctFloat:as,crisp:aa,extend:ao,isNumber:ar,merge:an,objectEach:al,pick:ah}=n();function ap(t,e){return Object.hasOwnProperty.call(t,e)}class ad extends s4{generatePoints(){s4.prototype.generatePoints.apply(this);let t=this.getColumn("y",!0);for(let e=0,i=this.points.length;e<i;e++){let i=this.points[e],s=t[e];ar(s)&&(i.isIntermediateSum||i.isSum)&&(i.y=as(s))}}processData(t){let e,i,s,a,o,r,n=this.options,l=this.getColumn("y"),h=n.data,p=l.length,d=n.threshold||0;s=i=a=o=0;for(let t=0;t<p;t++)r=l[t],e=h?.[t]||{},"sum"===r||e.isSum?l[t]=as(s):"intermediateSum"===r||e.isIntermediateSum?(l[t]=as(i),i=0):(s+=r,i+=r),a=Math.min(s,a),o=Math.max(s,o);super.processData.call(this,t),n.stacking||(this.dataMin=a+d,this.dataMax=o)}toYData(t){return t.isSum?"sum":t.isIntermediateSum?"intermediateSum":t.y}pointAttribs(t,e){let i=this.options.upColor;i&&!t.options.color&&ar(t.y)&&(t.color=t.y>0?i:void 0);let s=s4.prototype.pointAttribs.call(this,t,e);return delete s.dashstyle,s}getGraphPath(){return this.graph?.pathArray||[["M",0,0]]}getCrispPath(){let t=this.points.filter(t=>ar(t.y)),e=this.yAxis,i=t.length,s=this.graph?.strokeWidth()||0,a=this.xAxis.reversed,o=this.yAxis.reversed,r=this.options.stacking,n=[];for(let l=1;l<i;l++){if(!(this.options.connectNulls||ar(this.data[t[l].index-1].y)))continue;let i=t[l].box,h=t[l-1],p=h.y||0,d=t[l-1].box;if(!i||!d)continue;let c=e.waterfall?.stacks[this.stackKey],u=p>0?-d.height:0;if(c&&d&&i){let t,p=c[l-1];t=r?aa(e.translate(p.connectorThreshold||0,!1,!0,!1,!0)+(o?u:0),s):aa(d.y+(h.minPointLengthOffset||0),s),n.push(["M",(d.x||0)+(a?0:d.width||0),t],["L",(i.x||0)+(a&&i.width||0),t])}if(d&&n.length&&(!r&&p<0&&!o||p>0&&o)){let t=n[n.length-2];t&&"number"==typeof t[2]&&(t[2]+=d.height||0);let e=n[n.length-1];e&&"number"==typeof e[2]&&(e[2]+=d.height||0)}}return n}drawGraph(){s7.prototype.drawGraph.call(this),this.graph?.animate({d:this.getCrispPath()})}setStackedPoints(t){let e=this.options,i=t.waterfall?.stacks,s=e.threshold||0,a=this.stackKey,o=this.getColumn("x"),r=this.getColumn("y"),n=o.length,l=s,h=l,p,d=0,c=0,u=0,g,f,m,b,y,x,P,M,v=(t,e,i,s)=>{if(p){if(g)for(;i<g;i++)p.stackState[i]+=s;else p.stackState[0]=t,g=p.stackState.length;p.stackState.push(p.stackState[g-1]+e)}};if(t.stacking&&i&&this.reserveSpace()){M=i.changed,(P=i.alreadyChanged)&&0>P.indexOf(a)&&(M=!0),i[a]||(i[a]={});let t=i[a];if(t)for(let i=0;i<n;i++)(!t[x=o[i]]||M)&&(t[x]={negTotal:0,posTotal:0,stackTotal:0,threshold:0,stateIndex:0,stackState:[],label:M&&t[x]?t[x].label:void 0}),p=t[x],(y=r[i])>=0?p.posTotal+=y:p.negTotal+=y,b=e.data[i],f=p.absolutePos=p.posTotal,m=p.absoluteNeg=p.negTotal,p.stackTotal=f+m,g=p.stackState.length,b?.isIntermediateSum?(v(u,c,0,u),u=c,c=s,l^=h,h^=l,l^=h):b?.isSum?(v(s,d,g,0),l=s):(v(l,y,0,d),b&&(d+=y,c+=y)),p.stateIndex++,p.threshold=l,l+=p.stackTotal;i.changed=!1,i.alreadyChanged||(i.alreadyChanged=[]),i.alreadyChanged.push(a)}}getExtremes(){let t,e,i=this.options.stacking,s=this.yAxis,a=s.waterfall?.stacks;return i&&a?(t=this.stackedYNeg=[],e=this.stackedYPos=[],"overlap"===i?al(a[this.stackKey],function(i){t.push(ai(i.stackState)),e.push(ae(i.stackState))}):al(a[this.stackKey],function(i){t.push(i.negTotal+i.threshold),e.push(i.posTotal+i.threshold)}),{dataMin:ai(t),dataMax:ae(e)}):{dataMin:this.dataMin,dataMax:this.dataMax}}}ad.defaultOptions=an(s4.defaultOptions,{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"Dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}}),ad.compose=s8.compose,ao(ad.prototype,{pointValKey:"y",showLine:!0,pointClass:s9}),at(ad,"afterColumnTranslate",function(){let{options:t,points:e,yAxis:i}=this,s=ah(t.minPointLength,5),a=s/2,o=t.threshold||0,r=t.stacking,n=i.waterfall?.stacks[this.stackKey],l=this.getColumn("y",!0),h=o,p=o,d,c,u,g;for(let t=0;t<e.length;t++){let f=e[t],m=l[t],b=ao({x:0,y:0,width:0,height:0},f.shapeArgs||{});f.box=b;let y=[0,m],x=f.y||0;if(r){if(n){let e=n[t];"overlap"===r?(c=e.stackState[e.stateIndex--],d=x>=0?c:c-x,ap(e,"absolutePos")&&delete e.absolutePos,ap(e,"absoluteNeg")&&delete e.absoluteNeg):(x>=0?(c=e.threshold+e.posTotal,e.posTotal-=x,d=c):(c=e.threshold+e.negTotal,e.negTotal-=x,d=c-x),!e.posTotal&&ar(e.absolutePos)&&ap(e,"absolutePos")&&(e.posTotal=e.absolutePos,delete e.absolutePos),!e.negTotal&&ar(e.absoluteNeg)&&ap(e,"absoluteNeg")&&(e.negTotal=e.absoluteNeg,delete e.absoluteNeg)),f.isSum||(e.connectorThreshold=e.threshold+e.stackTotal),i.reversed?(u=x>=0?d-x:d+x,g=d):(u=d,g=d-x),f.below=u<=o,b.y=i.translate(u,!1,!0,!1,!0),b.height=Math.abs(b.y-i.translate(g,!1,!0,!1,!0));let s=i.waterfall?.dummyStackItem;s&&(s.x=t,s.label=n[t].label,s.setOffset(this.pointXOffset||0,this.barW||0,this.stackedYNeg[t],this.stackedYPos[t],void 0,this.xAxis))}}else d=Math.max(p,p+x)+y[0],b.y=i.translate(d,!1,!0,!1,!0),f.isSum?(b.y=i.translate(y[1],!1,!0,!1,!0),b.height=Math.min(i.translate(y[0],!1,!0,!1,!0),i.len)-b.y,f.below=y[1]<=o):f.isIntermediateSum?(x>=0?(u=y[1]+h,g=h):(u=h,g=y[1]+h),i.reversed&&(u^=g,g^=u,u^=g),b.y=i.translate(u,!1,!0,!1,!0),b.height=Math.abs(b.y-Math.min(i.translate(g,!1,!0,!1,!0),i.len)),h+=y[1],f.below=u<=o):(b.height=m>0?i.translate(p,!1,!0,!1,!0)-b.y:i.translate(p,!1,!0,!1,!0)-i.translate(p-m,!1,!0,!1,!0),f.below=(p+=m)<o),b.height<0&&(b.y+=b.height,b.height*=-1);f.plotY=b.y,f.yBottom=b.y+b.height,b.height<=s&&!f.isNull?(b.height=s,b.y-=a,f.yBottom=b.y+b.height,f.plotY=b.y,x<0?f.minPointLengthOffset=-a:f.minPointLengthOffset=a):(f.isNull&&(b.width=0),f.minPointLengthOffset=0);let P=f.plotY+(f.negative?b.height:0);f.below&&(f.plotY+=b.height),f.tooltipPos&&(this.chart.inverted?f.tooltipPos[0]=i.len-P:f.tooltipPos[1]=P),f.isInside=this.isPointInside(f);let M=aa(f.yBottom,this.borderWidth);b.y=aa(b.y,this.borderWidth),b.height=M-b.y,an(!0,f.shapeArgs,b)}},{order:2}),h().registerSeriesType("waterfall",ad);let ac=n();ac.RadialAxis=sm,t5.compose(ac.Axis,ac.Chart,ac.Legend),iH.compose(ac.Axis,ac.Chart,ac.Legend),I.compose(ac.Chart,ac.Pointer),sQ.compose(ac.Axis,ac.Chart,ac.Pointer,ac.Series,ac.Tick,ac.Point,h().seriesTypes.areasplinerange,h().seriesTypes.column,h().seriesTypes.line,h().seriesTypes.spline),ad.compose(ac.Axis,ac.Chart);let au=ac;export{au as default};
|